houdini-svelte 1.0.0-next.9 → 1.0.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 (42) hide show
  1. package/README.md +4 -1
  2. package/build/plugin/transforms/index.d.ts +2 -0
  3. package/build/plugin-cjs/index.js +4773 -686
  4. package/build/plugin-esm/index.js +4773 -686
  5. package/build/preprocess/index.d.ts +1 -0
  6. package/build/preprocess-cjs/index.js +4651 -601
  7. package/build/preprocess-esm/index.js +4651 -601
  8. package/build/runtime/stores/fragment.d.ts +2 -2
  9. package/build/runtime/stores/mutation.d.ts +2 -2
  10. package/build/runtime/stores/pagination/cursor.d.ts +2 -1
  11. package/build/runtime/stores/pagination/fragment.d.ts +3 -3
  12. package/build/runtime/stores/pagination/offset.d.ts +2 -1
  13. package/build/runtime/stores/query.d.ts +5 -6
  14. package/build/runtime/stores/subscription.d.ts +4 -2
  15. package/build/runtime-cjs/stores/fragment.d.ts +2 -2
  16. package/build/runtime-cjs/stores/mutation.d.ts +2 -2
  17. package/build/runtime-cjs/stores/mutation.js +2 -2
  18. package/build/runtime-cjs/stores/pagination/cursor.d.ts +2 -1
  19. package/build/runtime-cjs/stores/pagination/cursor.js +3 -1
  20. package/build/runtime-cjs/stores/pagination/fragment.d.ts +3 -3
  21. package/build/runtime-cjs/stores/pagination/offset.d.ts +2 -1
  22. package/build/runtime-cjs/stores/pagination/offset.js +3 -1
  23. package/build/runtime-cjs/stores/query.d.ts +5 -6
  24. package/build/runtime-cjs/stores/query.js +22 -13
  25. package/build/runtime-cjs/stores/subscription.d.ts +4 -2
  26. package/build/runtime-cjs/stores/subscription.js +7 -2
  27. package/build/runtime-esm/stores/fragment.d.ts +2 -2
  28. package/build/runtime-esm/stores/mutation.d.ts +2 -2
  29. package/build/runtime-esm/stores/mutation.js +2 -2
  30. package/build/runtime-esm/stores/pagination/cursor.d.ts +2 -1
  31. package/build/runtime-esm/stores/pagination/cursor.js +3 -1
  32. package/build/runtime-esm/stores/pagination/fragment.d.ts +3 -3
  33. package/build/runtime-esm/stores/pagination/offset.d.ts +2 -1
  34. package/build/runtime-esm/stores/pagination/offset.js +3 -1
  35. package/build/runtime-esm/stores/query.d.ts +5 -6
  36. package/build/runtime-esm/stores/query.js +23 -14
  37. package/build/runtime-esm/stores/subscription.d.ts +4 -2
  38. package/build/runtime-esm/stores/subscription.js +7 -2
  39. package/build/test-cjs/index.js +9790 -1437
  40. package/build/test-esm/index.js +9790 -1437
  41. package/package.json +6 -8
  42. package/build/plugin/transforms/reactive.d.ts +0 -3
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  <div align="center">
2
- <img alt="houdini" height="200" src="https://raw.githubusercontent.com/HoudiniGraphql/houdini/main/.github/assets/houdini-v5.png" />
2
+ <picture>
3
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/HoudiniGraphql/houdini/main/.github/assetss/logo_l.svg">
4
+ <img height="140" alt="Houdini's logo (dark or light)" src="https://raw.githubusercontent.com/HoudiniGraphql/houdini/main/.github/assets/logo_d.svg">
5
+ </picture>
3
6
  <br />
4
7
  <br />
5
8
  <strong>
@@ -1,5 +1,7 @@
1
1
  import type { TransformPage } from 'houdini/vite';
2
+ import type { SourceMapInput } from 'rollup';
2
3
  import type { Framework } from '../kit';
3
4
  export default function apply_transforms(framework: Framework, page: TransformPage): Promise<{
4
5
  code: string;
6
+ map?: SourceMapInput;
5
7
  }>;