diff --git a/.changeset/smart-buckets-slide.md b/.changeset/smart-buckets-slide.md new file mode 100644 index 00000000000..ce7cd5cddd7 --- /dev/null +++ b/.changeset/smart-buckets-slide.md @@ -0,0 +1,5 @@ +--- +'@qwik.dev/core': minor +--- + +feat: improve client resume responsiveness by splitting state processing into smaller tasks diff --git a/packages/docs/src/routes/api/qwik-server/api.json b/packages/docs/src/routes/api/qwik-server/api.json index c940ad06e20..54857208065 100644 --- a/packages/docs/src/routes/api/qwik-server/api.json +++ b/packages/docs/src/routes/api/qwik-server/api.json @@ -152,7 +152,7 @@ } ], "kind": "Interface", - "content": "```typescript\nexport interface RenderOptions extends SerializeDocumentOptions \n```\n**Extends:** [SerializeDocumentOptions](#serializedocumentoptions)\n\n\n
| \n\nProperty\n\n\n | \n\nModifiers\n\n\n | \n\nType\n\n\n | \n\nDescription\n\n\n |
|---|---|---|---|
| \n\nbase?\n\n\n | \n\n\n | \n\nstring \\| ((options: [RenderOptions](#renderoptions)) => string)\n\n\n | \n\n_(Optional)_ Specifies the root of the JS files of the client build. Setting a base, will cause the render of the `q:base` attribute in the `q:container` element.\n\n\n |
| \n\ncontainerAttributes?\n\n\n | \n\n\n | \n\nRecord<string, string>\n\n\n | \n\n_(Optional)_\n\n\n |
| \n\ncontainerTagName?\n\n\n | \n\n\n | \n\nstring\n\n\n | \n\n_(Optional)_ When set, the app is serialized into a fragment. And the returned html is not a complete document. Defaults to `html`\n\n\n |
| \n\nlocale?\n\n\n | \n\n\n | \n\nstring \\| ((options: [RenderOptions](#renderoptions)) => string)\n\n\n | \n\n_(Optional)_ Language to use when rendering the document.\n\n\n |
| \n\npreloader?\n\n\n | \n\n\n | \n\n[PreloaderOptions](#preloaderoptions) \\| false\n\n\n | \n\n_(Optional)_ Specifies how preloading is handled. This ensures that code is instantly available when needed.\n\n\n |
| \n\nqwikLoader?\n\n\n | \n\n\n | \n\n[QwikLoaderOptions](#qwikloaderoptions)\n\n\n | \n\n_(Optional)_ Specifies how the Qwik Loader is included in the document. This enables interactivity and lazy loading.\n\n`module`: Use a ` + + |