houdini-svelte 1.0.10 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/plugin/index.d.ts +5 -0
- package/build/plugin-cjs/index.js +457 -229
- package/build/plugin-esm/index.js +457 -229
- package/build/preprocess-cjs/index.js +497 -216
- package/build/preprocess-esm/index.js +497 -216
- package/build/runtime/fragments.d.ts +4 -4
- package/build/runtime/stores/base.d.ts +1 -1
- package/build/runtime/stores/fragment.d.ts +7 -2
- package/build/runtime/stores/pagination/cursor.d.ts +4 -3
- package/build/runtime/stores/pagination/fragment.d.ts +3 -2
- package/build/runtime/stores/pagination/offset.d.ts +3 -3
- package/build/runtime/types.d.ts +2 -2
- package/build/runtime-cjs/fragments.d.ts +4 -4
- package/build/runtime-cjs/stores/base.d.ts +1 -1
- package/build/runtime-cjs/stores/base.js +2 -1
- package/build/runtime-cjs/stores/fragment.d.ts +7 -2
- package/build/runtime-cjs/stores/fragment.js +41 -5
- package/build/runtime-cjs/stores/pagination/cursor.d.ts +4 -3
- package/build/runtime-cjs/stores/pagination/cursor.js +14 -11
- package/build/runtime-cjs/stores/pagination/fragment.d.ts +3 -2
- package/build/runtime-cjs/stores/pagination/fragment.js +74 -32
- package/build/runtime-cjs/stores/pagination/offset.d.ts +3 -3
- package/build/runtime-cjs/stores/pagination/offset.js +5 -6
- package/build/runtime-cjs/stores/pagination/query.js +5 -2
- package/build/runtime-cjs/stores/query.js +2 -2
- package/build/runtime-cjs/types.d.ts +2 -2
- package/build/runtime-esm/fragments.d.ts +4 -4
- package/build/runtime-esm/stores/base.d.ts +1 -1
- package/build/runtime-esm/stores/base.js +2 -1
- package/build/runtime-esm/stores/fragment.d.ts +7 -2
- package/build/runtime-esm/stores/fragment.js +37 -7
- package/build/runtime-esm/stores/pagination/cursor.d.ts +4 -3
- package/build/runtime-esm/stores/pagination/cursor.js +15 -12
- package/build/runtime-esm/stores/pagination/fragment.d.ts +3 -2
- package/build/runtime-esm/stores/pagination/fragment.js +74 -32
- package/build/runtime-esm/stores/pagination/offset.d.ts +3 -3
- package/build/runtime-esm/stores/pagination/offset.js +5 -6
- package/build/runtime-esm/stores/pagination/query.js +6 -3
- package/build/runtime-esm/stores/query.js +2 -2
- package/build/runtime-esm/types.d.ts +2 -2
- package/build/test-cjs/index.js +1420 -767
- package/build/test-esm/index.js +1420 -767
- package/package.json +2 -2
package/build/plugin/index.d.ts
CHANGED
|
@@ -29,6 +29,11 @@ export type HoudiniSvelteConfig = {
|
|
|
29
29
|
* @default false
|
|
30
30
|
*/
|
|
31
31
|
static?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* set the framework to use. It should be automatically detected but you can override it here.
|
|
34
|
+
* @default undefined
|
|
35
|
+
*/
|
|
36
|
+
framework: 'kit' | 'svelte' | undefined;
|
|
32
37
|
/**
|
|
33
38
|
* Override the classes used when building stores for documents. Values should take the form package.export
|
|
34
39
|
* For example, if you have a store exported from $lib/stores you should set the value to "$lib/stores.CustomStore".
|