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.
Files changed (43) hide show
  1. package/build/plugin/index.d.ts +5 -0
  2. package/build/plugin-cjs/index.js +457 -229
  3. package/build/plugin-esm/index.js +457 -229
  4. package/build/preprocess-cjs/index.js +497 -216
  5. package/build/preprocess-esm/index.js +497 -216
  6. package/build/runtime/fragments.d.ts +4 -4
  7. package/build/runtime/stores/base.d.ts +1 -1
  8. package/build/runtime/stores/fragment.d.ts +7 -2
  9. package/build/runtime/stores/pagination/cursor.d.ts +4 -3
  10. package/build/runtime/stores/pagination/fragment.d.ts +3 -2
  11. package/build/runtime/stores/pagination/offset.d.ts +3 -3
  12. package/build/runtime/types.d.ts +2 -2
  13. package/build/runtime-cjs/fragments.d.ts +4 -4
  14. package/build/runtime-cjs/stores/base.d.ts +1 -1
  15. package/build/runtime-cjs/stores/base.js +2 -1
  16. package/build/runtime-cjs/stores/fragment.d.ts +7 -2
  17. package/build/runtime-cjs/stores/fragment.js +41 -5
  18. package/build/runtime-cjs/stores/pagination/cursor.d.ts +4 -3
  19. package/build/runtime-cjs/stores/pagination/cursor.js +14 -11
  20. package/build/runtime-cjs/stores/pagination/fragment.d.ts +3 -2
  21. package/build/runtime-cjs/stores/pagination/fragment.js +74 -32
  22. package/build/runtime-cjs/stores/pagination/offset.d.ts +3 -3
  23. package/build/runtime-cjs/stores/pagination/offset.js +5 -6
  24. package/build/runtime-cjs/stores/pagination/query.js +5 -2
  25. package/build/runtime-cjs/stores/query.js +2 -2
  26. package/build/runtime-cjs/types.d.ts +2 -2
  27. package/build/runtime-esm/fragments.d.ts +4 -4
  28. package/build/runtime-esm/stores/base.d.ts +1 -1
  29. package/build/runtime-esm/stores/base.js +2 -1
  30. package/build/runtime-esm/stores/fragment.d.ts +7 -2
  31. package/build/runtime-esm/stores/fragment.js +37 -7
  32. package/build/runtime-esm/stores/pagination/cursor.d.ts +4 -3
  33. package/build/runtime-esm/stores/pagination/cursor.js +15 -12
  34. package/build/runtime-esm/stores/pagination/fragment.d.ts +3 -2
  35. package/build/runtime-esm/stores/pagination/fragment.js +74 -32
  36. package/build/runtime-esm/stores/pagination/offset.d.ts +3 -3
  37. package/build/runtime-esm/stores/pagination/offset.js +5 -6
  38. package/build/runtime-esm/stores/pagination/query.js +6 -3
  39. package/build/runtime-esm/stores/query.js +2 -2
  40. package/build/runtime-esm/types.d.ts +2 -2
  41. package/build/test-cjs/index.js +1420 -767
  42. package/build/test-esm/index.js +1420 -767
  43. package/package.json +2 -2
@@ -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".