@qwik.dev/core 2.0.0-alpha.7 → 2.0.0-alpha.9

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 (38) hide show
  1. package/bindings/qwik.darwin-arm64.node +0 -0
  2. package/bindings/qwik.darwin-x64.node +0 -0
  3. package/bindings/qwik.linux-x64-gnu.node +0 -0
  4. package/bindings/qwik.win32-x64-msvc.node +0 -0
  5. package/bindings/qwik_wasm_bg.wasm +0 -0
  6. package/dist/build/package.json +1 -1
  7. package/dist/cli.cjs +2 -2
  8. package/dist/core-internal.d.ts +245 -20
  9. package/dist/core.cjs +7280 -7339
  10. package/dist/core.cjs.map +1 -1
  11. package/dist/core.min.mjs +1 -1
  12. package/dist/core.mjs +7273 -7339
  13. package/dist/core.mjs.map +1 -1
  14. package/dist/core.prod.cjs +1646 -1735
  15. package/dist/core.prod.mjs +2737 -2849
  16. package/dist/insights/index.qwik.cjs +1854 -1958
  17. package/dist/insights/index.qwik.mjs +1854 -1958
  18. package/dist/insights/insights.d.ts +1 -1
  19. package/dist/loader/package.json +1 -1
  20. package/dist/optimizer.cjs +65 -18
  21. package/dist/optimizer.d.ts +1 -1
  22. package/dist/optimizer.mjs +62 -18
  23. package/dist/prefetch/package.json +1 -1
  24. package/dist/server.cjs +42 -41
  25. package/dist/server.mjs +42 -41
  26. package/dist/starters/features/auth/package.json +1 -1
  27. package/dist/starters/features/tailwind/package.json +2 -2
  28. package/dist/starters/features/tailwind-v3/.vscode/settings.json +3 -0
  29. package/dist/starters/features/tailwind-v3/package.json +21 -0
  30. package/dist/starters/features/tailwind-v3/postcss.config.cjs +6 -0
  31. package/dist/starters/features/tailwind-v3/src/global.css +7 -0
  32. package/dist/starters/features/tailwind-v3/tailwind.config.js +8 -0
  33. package/dist/testing/index.cjs +3723 -3615
  34. package/dist/testing/index.d.ts +2 -1
  35. package/dist/testing/index.mjs +3995 -3888
  36. package/dist/testing/package.json +1 -1
  37. package/package.json +3 -3
  38. package/public.d.ts +6 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qwik.dev/core/testing",
3
- "version": "2.0.0-alpha.7-dev+a26598a",
3
+ "version": "2.0.0-alpha.9-dev+56ed5bd",
4
4
  "main": "index.mjs",
5
5
  "types": "index.d.ts",
6
6
  "private": true,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@qwik.dev/core",
3
3
  "description": "An open source framework for building instant loading web apps at any scale, without the extra effort.",
4
- "version": "2.0.0-alpha.7",
4
+ "version": "2.0.0-alpha.9",
5
5
  "author": "Qwik Team",
6
6
  "bin": {
7
7
  "qwik": "./qwik-cli.cjs"
@@ -16,8 +16,8 @@
16
16
  "kleur": "4.1.5",
17
17
  "prettier": "3.4.2",
18
18
  "ts-morph": "23.0.0",
19
- "vitest": "2.1.4",
20
- "@qwik.dev/core": "2.0.0-alpha.7",
19
+ "vitest": "3.0.8",
20
+ "@qwik.dev/core": "2.0.0-alpha.9",
21
21
  "@qwik.dev/dom": "2.1.19"
22
22
  },
23
23
  "engines": {
package/public.d.ts CHANGED
@@ -6,6 +6,7 @@ export {
6
6
  ComputedSignal,
7
7
  ContextId,
8
8
  createComputed$,
9
+ createSerializer$,
9
10
  createContextId,
10
11
  createSignal,
11
12
  CSSProperties,
@@ -28,6 +29,8 @@ export {
28
29
  JSXOutput,
29
30
  noSerialize,
30
31
  NoSerialize,
32
+ NoSerializeSymbol,
33
+ SerializerSymbol,
31
34
  OnVisibleTaskOptions,
32
35
  PrefetchGraph,
33
36
  PrefetchServiceWorker,
@@ -36,6 +39,8 @@ export {
36
39
  // TODO should this be used instead of EventHandler?
37
40
  QRLEventHandlerMulti,
38
41
  QwikIntrinsicElements,
42
+ QwikHTMLElements,
43
+ QwikSVGElements,
39
44
  QwikJSX as JSX,
40
45
  QwikJSX,
41
46
  ReadonlySignal,
@@ -61,6 +66,7 @@ export {
61
66
  useOnDocument,
62
67
  useOnWindow,
63
68
  useResource$,
69
+ useSerializer$,
64
70
  useServerData,
65
71
  useSignal,
66
72
  useStore,