@stencil/core 5.0.0-alpha.1 → 5.0.0-alpha.10

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 (50) hide show
  1. package/dist/app-data/index.d.ts +2 -0
  2. package/dist/{runtime/app-data → app-data}/index.js +17 -12
  3. package/dist/{client-B1nuvCd2.mjs → client-aTQ7xHxx.mjs} +2432 -2278
  4. package/dist/compiler/index.d.mts +6 -6
  5. package/dist/compiler/index.mjs +2 -2
  6. package/dist/compiler/utils/index.d.mts +2 -2
  7. package/dist/compiler/utils/index.mjs +3 -3
  8. package/dist/{compiler-LX4_RKKd.mjs → compiler-lTINDSgw.mjs} +14854 -13500
  9. package/dist/declarations/stencil-public-compiler.d.ts +4374 -2
  10. package/dist/declarations/stencil-public-compiler.js +2 -4
  11. package/dist/declarations/stencil-public-docs.d.ts +504 -1
  12. package/dist/declarations/stencil-public-runtime.d.ts +1982 -2
  13. package/dist/{index-fIuYTL9f.d.mts → index-BvkyxSY6.d.mts} +29 -2
  14. package/dist/{index-D-LlB2nw.d.mts → index-vY35H18z.d.mts} +795 -1188
  15. package/dist/{index-BONzXKJt.d.ts → index-xAkMgLX_.d.ts} +88 -39
  16. package/dist/index.d.mts +1 -1
  17. package/dist/index.mjs +2 -2
  18. package/dist/jsx-runtime.d.mts +18 -0
  19. package/dist/jsx-runtime.mjs +2 -0
  20. package/dist/{node-SxQIOCZE.mjs → node--akYC-sG.mjs} +20 -30
  21. package/dist/regular-expression-CFVJOTUh.mjs +508 -0
  22. package/dist/{runtime-CF9DJtSu.js → runtime/client/lazy.js} +2675 -2493
  23. package/dist/runtime/client/{index.d.ts → runtime.d.ts} +106 -78
  24. package/dist/runtime/client/{index.js → runtime.js} +2545 -2487
  25. package/dist/runtime/index.d.ts +58 -29
  26. package/dist/runtime/index.js +4795 -2
  27. package/dist/runtime/server/index.d.mts +103 -70
  28. package/dist/runtime/server/index.mjs +2545 -2350
  29. package/dist/runtime/server/runner.d.mts +44 -48
  30. package/dist/runtime/server/runner.mjs +347 -751
  31. package/dist/signals/index.d.ts +47 -0
  32. package/dist/signals/index.js +199 -0
  33. package/dist/sys/node/index.d.mts +1 -1
  34. package/dist/sys/node/index.mjs +1 -1
  35. package/dist/sys/node/worker.mjs +2 -2
  36. package/dist/testing/index.d.mts +97 -3
  37. package/dist/testing/index.mjs +367 -59
  38. package/dist/{validation-CaCgjw-f.mjs → validation-ByxKj8bC.mjs} +116 -99
  39. package/package.json +47 -38
  40. package/dist/index-CHjZtib0.d.ts +0 -30
  41. package/dist/jsx-runtime-DBzBJLKk.d.ts +0 -28
  42. package/dist/jsx-runtime.d.ts +0 -2
  43. package/dist/jsx-runtime.js +0 -2
  44. package/dist/runtime/app-data/index.d.ts +0 -2
  45. package/dist/serialize-BkYHk7Mi.mjs +0 -766
  46. package/dist/stencil-public-compiler-C_X1iolo.d.ts +0 -4455
  47. package/dist/stencil-public-runtime-DlV8o7-z.d.ts +0 -1845
  48. /package/dist/{runtime/app-globals → app-globals}/index.d.ts +0 -0
  49. /package/dist/{runtime/app-globals → app-globals}/index.js +0 -0
  50. /package/dist/{chunk-CjcI7cDX.mjs → chunk-z9aeyW2b.mjs} +0 -0
@@ -0,0 +1,2 @@
1
+ import { n as Env, r as NAMESPACE, t as BUILD } from "../index-xAkMgLX_.js";
2
+ export { BUILD, Env, NAMESPACE };
@@ -15,7 +15,7 @@
15
15
  * }
16
16
  * ```
17
17
  *
18
- * `virtual:app-data`, the module that `BUILD` is imported from, is an alias for the `@stencil/core/runtime/app-data`, and is
18
+ * `virtual:app-data`, the module that `BUILD` is imported from, is an alias for `@stencil/core/app-data`, and is
19
19
  * partially referenced by {@link STENCIL_APP_DATA_ID}. The `src/compiler/bundle/app-data-plugin.ts` references
20
20
  * `STENCIL_APP_DATA_ID` uses it to replace these defaults with {@link BuildConditionals} that are derived from a
21
21
  * Stencil project's contents (i.e. metadata from the components). This replacement happens at a Stencil project's
@@ -30,7 +30,6 @@ const BUILD = {
30
30
  hostListenerTargetWindow: true,
31
31
  hostListenerTargetDocument: true,
32
32
  hostListenerTargetBody: true,
33
- hostListenerTargetParent: false,
34
33
  hostListenerTarget: true,
35
34
  member: true,
36
35
  method: true,
@@ -41,11 +40,12 @@ const BUILD = {
41
40
  reflect: true,
42
41
  scoped: true,
43
42
  shadowDom: true,
43
+ shadowModeClosed: false,
44
44
  slot: true,
45
45
  cssAnnotations: true,
46
46
  state: true,
47
47
  style: true,
48
- formAssociated: false,
48
+ formAssociated: true,
49
49
  svg: true,
50
50
  updatable: true,
51
51
  vdomAttribute: true,
@@ -61,6 +61,13 @@ const BUILD = {
61
61
  vdomText: true,
62
62
  propChangeCallback: true,
63
63
  taskQueue: true,
64
+ lifecycle: true,
65
+ serializer: true,
66
+ deserializer: true,
67
+ patchAll: true,
68
+ patchChildren: true,
69
+ patchClone: true,
70
+ patchInsert: true,
64
71
  hotModuleReplacement: false,
65
72
  isDebug: false,
66
73
  isDev: false,
@@ -71,14 +78,15 @@ const BUILD = {
71
78
  lazyLoad: false,
72
79
  profile: false,
73
80
  slotRelocation: true,
74
- appendChildSlotFix: false,
75
- cloneNodeFix: false,
81
+ lightDomPatches: true,
82
+ slotChildNodes: true,
83
+ slotCloneNode: true,
84
+ slotDomMutations: true,
85
+ slotTextContent: true,
76
86
  hydratedAttribute: false,
77
87
  hydratedClass: true,
78
- scopedSlotTextContentFix: false,
79
- shadowDomShim: false,
80
- slotChildNodesFix: false,
81
88
  invisiblePrehydration: true,
89
+ staticHydrationStyles: false,
82
90
  propBoolean: true,
83
91
  propNumber: true,
84
92
  propString: true,
@@ -88,10 +96,7 @@ const BUILD = {
88
96
  shadowSlotAssignmentManual: false,
89
97
  initializeNextTick: false,
90
98
  asyncLoading: true,
91
- asyncQueue: false,
92
- transformTagName: false,
93
- attachStyles: true,
94
- experimentalSlotFixes: false
99
+ asyncQueue: false
95
100
  };
96
101
  const Env = {};
97
102
  const NAMESPACE = "app";