@stencil/core 4.33.0 → 4.33.1-dev.1749013599.af2acd4

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/cli/index.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI (CommonJS) v4.33.0 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI (CommonJS) v4.33.1-dev.1749013599.af2acd4 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  "use strict";
5
5
  var __create = Object.create;
@@ -275,7 +275,7 @@ var require_figures = __commonJS({
275
275
  line: "\u2500",
276
276
  pointer: "\u276F"
277
277
  };
278
- var win = {
278
+ var win2 = {
279
279
  arrowUp: main.arrowUp,
280
280
  arrowDown: main.arrowDown,
281
281
  arrowLeft: main.arrowLeft,
@@ -289,7 +289,7 @@ var require_figures = __commonJS({
289
289
  line: "\u2500",
290
290
  pointer: ">"
291
291
  };
292
- var figures = process.platform === "win32" ? win : main;
292
+ var figures = process.platform === "win32" ? win2 : main;
293
293
  module2.exports = figures;
294
294
  }
295
295
  });
@@ -300,13 +300,13 @@ var require_style = __commonJS({
300
300
  "use strict";
301
301
  var c = require_kleur();
302
302
  var figures = require_figures();
303
- var styles = Object.freeze({
303
+ var styles2 = Object.freeze({
304
304
  password: { scale: 1, render: (input) => "*".repeat(input.length) },
305
305
  emoji: { scale: 2, render: (input) => "\u{1F603}".repeat(input.length) },
306
306
  invisible: { scale: 0, render: (input) => "" },
307
307
  default: { scale: 1, render: (input) => `${input}` }
308
308
  });
309
- var render = (type) => styles[type] || styles.default;
309
+ var render2 = (type) => styles2[type] || styles2.default;
310
310
  var symbols = Object.freeze({
311
311
  aborted: c.red(figures.cross),
312
312
  done: c.green(figures.tick),
@@ -317,8 +317,8 @@ var require_style = __commonJS({
317
317
  var delimiter = (completing) => c.gray(completing ? figures.ellipsis : figures.pointerSmall);
318
318
  var item = (expandable, expanded) => c.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line);
319
319
  module2.exports = {
320
- styles,
321
- render,
320
+ styles: styles2,
321
+ render: render2,
322
322
  symbols,
323
323
  symbol,
324
324
  delimiter,
@@ -1330,7 +1330,7 @@ var require_number = __commonJS({
1330
1330
  var { cursor, erase } = require_src();
1331
1331
  var { style, figures, clear, lines } = require_util();
1332
1332
  var isNumber = /[0-9]/;
1333
- var isDef = (any) => any !== void 0;
1333
+ var isDef2 = (any) => any !== void 0;
1334
1334
  var round = (number, precision) => {
1335
1335
  let factor = Math.pow(10, precision);
1336
1336
  return Math.round(number * factor) / factor;
@@ -1340,12 +1340,12 @@ var require_number = __commonJS({
1340
1340
  super(opts);
1341
1341
  this.transform = style.render(opts.style);
1342
1342
  this.msg = opts.message;
1343
- this.initial = isDef(opts.initial) ? opts.initial : "";
1343
+ this.initial = isDef2(opts.initial) ? opts.initial : "";
1344
1344
  this.float = !!opts.float;
1345
1345
  this.round = opts.round || 2;
1346
1346
  this.inc = opts.increment || 1;
1347
- this.min = isDef(opts.min) ? opts.min : -Infinity;
1348
- this.max = isDef(opts.max) ? opts.max : Infinity;
1347
+ this.min = isDef2(opts.min) ? opts.min : -Infinity;
1348
+ this.max = isDef2(opts.max) ? opts.max : Infinity;
1349
1349
  this.errorMsg = opts.error || `Please Enter A Valid Value`;
1350
1350
  this.validator = opts.validate || (() => true);
1351
1351
  this.color = `cyan`;
@@ -2710,6 +2710,11 @@ var pathComponents = (path, rootLength) => {
2710
2710
  var isOutputTargetHydrate = (o) => o.type === DIST_HYDRATE_SCRIPT;
2711
2711
  var isOutputTargetDocs = (o) => o.type === DOCS_README || o.type === DOCS_JSON || o.type === DOCS_CUSTOM || o.type === DOCS_VSCODE;
2712
2712
 
2713
+ // src/utils/regular-expression.ts
2714
+ var escapeRegExpSpecialCharacters = (text) => {
2715
+ return text.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
2716
+ };
2717
+
2713
2718
  // src/utils/result.ts
2714
2719
  var result_exports = {};
2715
2720
  __export(result_exports, {
@@ -2759,6 +2764,152 @@ var unwrapErr = (result) => {
2759
2764
  }
2760
2765
  };
2761
2766
 
2767
+ // src/app-data/index.ts
2768
+ var BUILD = {
2769
+ allRenderFn: false,
2770
+ element: true,
2771
+ event: true,
2772
+ hasRenderFn: true,
2773
+ hostListener: true,
2774
+ hostListenerTargetWindow: true,
2775
+ hostListenerTargetDocument: true,
2776
+ hostListenerTargetBody: true,
2777
+ hostListenerTargetParent: false,
2778
+ hostListenerTarget: true,
2779
+ member: true,
2780
+ method: true,
2781
+ mode: true,
2782
+ observeAttribute: true,
2783
+ prop: true,
2784
+ propMutable: true,
2785
+ reflect: true,
2786
+ scoped: true,
2787
+ shadowDom: true,
2788
+ slot: true,
2789
+ cssAnnotations: true,
2790
+ state: true,
2791
+ style: true,
2792
+ formAssociated: false,
2793
+ svg: true,
2794
+ updatable: true,
2795
+ vdomAttribute: true,
2796
+ vdomXlink: true,
2797
+ vdomClass: true,
2798
+ vdomFunctional: true,
2799
+ vdomKey: true,
2800
+ vdomListener: true,
2801
+ vdomRef: true,
2802
+ vdomPropOrAttr: true,
2803
+ vdomRender: true,
2804
+ vdomStyle: true,
2805
+ vdomText: true,
2806
+ watchCallback: true,
2807
+ taskQueue: true,
2808
+ hotModuleReplacement: false,
2809
+ isDebug: false,
2810
+ isDev: false,
2811
+ isTesting: false,
2812
+ hydrateServerSide: false,
2813
+ hydrateClientSide: false,
2814
+ lifecycleDOMEvents: false,
2815
+ lazyLoad: false,
2816
+ profile: false,
2817
+ slotRelocation: true,
2818
+ // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
2819
+ appendChildSlotFix: false,
2820
+ // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
2821
+ cloneNodeFix: false,
2822
+ hydratedAttribute: false,
2823
+ hydratedClass: true,
2824
+ // TODO(STENCIL-1305): remove this option
2825
+ scriptDataOpts: false,
2826
+ // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
2827
+ scopedSlotTextContentFix: false,
2828
+ // TODO(STENCIL-854): Remove code related to legacy shadowDomShim field
2829
+ shadowDomShim: false,
2830
+ // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
2831
+ slotChildNodesFix: false,
2832
+ invisiblePrehydration: true,
2833
+ propBoolean: true,
2834
+ propNumber: true,
2835
+ propString: true,
2836
+ constructableCSS: true,
2837
+ devTools: false,
2838
+ shadowDelegatesFocus: true,
2839
+ initializeNextTick: false,
2840
+ asyncLoading: true,
2841
+ asyncQueue: false,
2842
+ transformTagName: false,
2843
+ attachStyles: true,
2844
+ // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
2845
+ experimentalSlotFixes: false
2846
+ };
2847
+
2848
+ // src/client/client-build.ts
2849
+ var Build = {
2850
+ isDev: BUILD.isDev ? true : false,
2851
+ isBrowser: true,
2852
+ isServer: false,
2853
+ isTesting: BUILD.isTesting ? true : false
2854
+ };
2855
+
2856
+ // src/client/client-log.ts
2857
+ var STENCIL_DEV_MODE = BUILD.isTesting ? ["STENCIL:"] : [
2858
+ "%cstencil",
2859
+ "color: white;background:#4c47ff;font-weight: bold; font-size:10px; padding:2px 6px; border-radius: 5px"
2860
+ ];
2861
+
2862
+ // src/client/client-window.ts
2863
+ var win = typeof window !== "undefined" ? window : {};
2864
+ var H = win.HTMLElement || class {
2865
+ };
2866
+ var supportsShadow = BUILD.shadowDom;
2867
+ var supportsConstructableStylesheets = BUILD.constructableCSS ? /* @__PURE__ */ (() => {
2868
+ try {
2869
+ new CSSStyleSheet();
2870
+ return typeof new CSSStyleSheet().replaceSync === "function";
2871
+ } catch (e) {
2872
+ }
2873
+ return false;
2874
+ })() : false;
2875
+
2876
+ // src/utils/shadow-css.ts
2877
+ /**
2878
+ * @license
2879
+ * Copyright Google Inc. All Rights Reserved.
2880
+ *
2881
+ * Use of this source code is governed by an MIT-style license that can be
2882
+ * found in the LICENSE file at https://angular.io/license
2883
+ *
2884
+ * This file is a port of shadowCSS from `webcomponents.js` to TypeScript.
2885
+ * https://github.com/webcomponents/webcomponentsjs/blob/4efecd7e0e/src/ShadowCSS/ShadowCSS.js
2886
+ * https://github.com/angular/angular/blob/master/packages/compiler/src/shadow_css.ts
2887
+ */
2888
+ var _polyfillHost = "-shadowcsshost";
2889
+ var _polyfillSlotted = "-shadowcssslotted";
2890
+ var _polyfillHostContext = "-shadowcsscontext";
2891
+ var _parenSuffix = ")(?:\\(((?:\\([^)(]*\\)|[^)(]*)+?)\\))?([^,{]*)";
2892
+ var _cssColonHostRe = new RegExp("(" + _polyfillHost + _parenSuffix, "gim");
2893
+ var _cssColonHostContextRe = new RegExp("(" + _polyfillHostContext + _parenSuffix, "gim");
2894
+ var _cssColonSlottedRe = new RegExp("(" + _polyfillSlotted + _parenSuffix, "gim");
2895
+ var _polyfillHostNoCombinator = _polyfillHost + "-no-combinator";
2896
+ var createSupportsRuleRe = (selector) => {
2897
+ const safeSelector = escapeRegExpSpecialCharacters(selector);
2898
+ return new RegExp(
2899
+ // First capture group: match any context before the selector that's not inside @supports selector()
2900
+ // Using negative lookahead to avoid matching inside @supports selector(...) condition
2901
+ `(^|[^@]|@(?!supports\\s+selector\\s*\\([^{]*?${safeSelector}))(${safeSelector}\\b)`,
2902
+ "g"
2903
+ );
2904
+ };
2905
+ var _colonSlottedRe = createSupportsRuleRe("::slotted");
2906
+ var _colonHostRe = createSupportsRuleRe(":host");
2907
+ var _colonHostContextRe = createSupportsRuleRe(":host-context");
2908
+
2909
+ // src/runtime/vdom/set-accessor.ts
2910
+ var CAPTURE_EVENT_SUFFIX = "Capture";
2911
+ var CAPTURE_EVENT_REGEX = new RegExp(CAPTURE_EVENT_SUFFIX + "$");
2912
+
2762
2913
  // src/utils/util.ts
2763
2914
  var lowerPathParam = (fn) => (p) => fn(p.toLowerCase());
2764
2915
  var isDtsFile = lowerPathParam((p) => p.endsWith(".d.ts") || p.endsWith(".d.mts") || p.endsWith(".d.cts"));
package/cli/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI v4.33.0 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI v4.33.1-dev.1749013599.af2acd4 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  var __create = Object.create;
5
5
  var __defProp = Object.defineProperty;
@@ -279,7 +279,7 @@ var require_figures = __commonJS({
279
279
  line: "\u2500",
280
280
  pointer: "\u276F"
281
281
  };
282
- var win = {
282
+ var win2 = {
283
283
  arrowUp: main.arrowUp,
284
284
  arrowDown: main.arrowDown,
285
285
  arrowLeft: main.arrowLeft,
@@ -293,7 +293,7 @@ var require_figures = __commonJS({
293
293
  line: "\u2500",
294
294
  pointer: ">"
295
295
  };
296
- var figures = process.platform === "win32" ? win : main;
296
+ var figures = process.platform === "win32" ? win2 : main;
297
297
  module.exports = figures;
298
298
  }
299
299
  });
@@ -304,13 +304,13 @@ var require_style = __commonJS({
304
304
  "use strict";
305
305
  var c = require_kleur();
306
306
  var figures = require_figures();
307
- var styles = Object.freeze({
307
+ var styles2 = Object.freeze({
308
308
  password: { scale: 1, render: (input) => "*".repeat(input.length) },
309
309
  emoji: { scale: 2, render: (input) => "\u{1F603}".repeat(input.length) },
310
310
  invisible: { scale: 0, render: (input) => "" },
311
311
  default: { scale: 1, render: (input) => `${input}` }
312
312
  });
313
- var render = (type) => styles[type] || styles.default;
313
+ var render2 = (type) => styles2[type] || styles2.default;
314
314
  var symbols = Object.freeze({
315
315
  aborted: c.red(figures.cross),
316
316
  done: c.green(figures.tick),
@@ -321,8 +321,8 @@ var require_style = __commonJS({
321
321
  var delimiter = (completing) => c.gray(completing ? figures.ellipsis : figures.pointerSmall);
322
322
  var item = (expandable, expanded) => c.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line);
323
323
  module.exports = {
324
- styles,
325
- render,
324
+ styles: styles2,
325
+ render: render2,
326
326
  symbols,
327
327
  symbol,
328
328
  delimiter,
@@ -1334,7 +1334,7 @@ var require_number = __commonJS({
1334
1334
  var { cursor, erase } = require_src();
1335
1335
  var { style, figures, clear, lines } = require_util();
1336
1336
  var isNumber = /[0-9]/;
1337
- var isDef = (any) => any !== void 0;
1337
+ var isDef2 = (any) => any !== void 0;
1338
1338
  var round = (number, precision) => {
1339
1339
  let factor = Math.pow(10, precision);
1340
1340
  return Math.round(number * factor) / factor;
@@ -1344,12 +1344,12 @@ var require_number = __commonJS({
1344
1344
  super(opts);
1345
1345
  this.transform = style.render(opts.style);
1346
1346
  this.msg = opts.message;
1347
- this.initial = isDef(opts.initial) ? opts.initial : "";
1347
+ this.initial = isDef2(opts.initial) ? opts.initial : "";
1348
1348
  this.float = !!opts.float;
1349
1349
  this.round = opts.round || 2;
1350
1350
  this.inc = opts.increment || 1;
1351
- this.min = isDef(opts.min) ? opts.min : -Infinity;
1352
- this.max = isDef(opts.max) ? opts.max : Infinity;
1351
+ this.min = isDef2(opts.min) ? opts.min : -Infinity;
1352
+ this.max = isDef2(opts.max) ? opts.max : Infinity;
1353
1353
  this.errorMsg = opts.error || `Please Enter A Valid Value`;
1354
1354
  this.validator = opts.validate || (() => true);
1355
1355
  this.color = `cyan`;
@@ -2704,6 +2704,11 @@ var pathComponents = (path, rootLength) => {
2704
2704
  var isOutputTargetHydrate = (o) => o.type === DIST_HYDRATE_SCRIPT;
2705
2705
  var isOutputTargetDocs = (o) => o.type === DOCS_README || o.type === DOCS_JSON || o.type === DOCS_CUSTOM || o.type === DOCS_VSCODE;
2706
2706
 
2707
+ // src/utils/regular-expression.ts
2708
+ var escapeRegExpSpecialCharacters = (text) => {
2709
+ return text.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
2710
+ };
2711
+
2707
2712
  // src/utils/result.ts
2708
2713
  var result_exports = {};
2709
2714
  __export(result_exports, {
@@ -2753,6 +2758,152 @@ var unwrapErr = (result) => {
2753
2758
  }
2754
2759
  };
2755
2760
 
2761
+ // src/app-data/index.ts
2762
+ var BUILD = {
2763
+ allRenderFn: false,
2764
+ element: true,
2765
+ event: true,
2766
+ hasRenderFn: true,
2767
+ hostListener: true,
2768
+ hostListenerTargetWindow: true,
2769
+ hostListenerTargetDocument: true,
2770
+ hostListenerTargetBody: true,
2771
+ hostListenerTargetParent: false,
2772
+ hostListenerTarget: true,
2773
+ member: true,
2774
+ method: true,
2775
+ mode: true,
2776
+ observeAttribute: true,
2777
+ prop: true,
2778
+ propMutable: true,
2779
+ reflect: true,
2780
+ scoped: true,
2781
+ shadowDom: true,
2782
+ slot: true,
2783
+ cssAnnotations: true,
2784
+ state: true,
2785
+ style: true,
2786
+ formAssociated: false,
2787
+ svg: true,
2788
+ updatable: true,
2789
+ vdomAttribute: true,
2790
+ vdomXlink: true,
2791
+ vdomClass: true,
2792
+ vdomFunctional: true,
2793
+ vdomKey: true,
2794
+ vdomListener: true,
2795
+ vdomRef: true,
2796
+ vdomPropOrAttr: true,
2797
+ vdomRender: true,
2798
+ vdomStyle: true,
2799
+ vdomText: true,
2800
+ watchCallback: true,
2801
+ taskQueue: true,
2802
+ hotModuleReplacement: false,
2803
+ isDebug: false,
2804
+ isDev: false,
2805
+ isTesting: false,
2806
+ hydrateServerSide: false,
2807
+ hydrateClientSide: false,
2808
+ lifecycleDOMEvents: false,
2809
+ lazyLoad: false,
2810
+ profile: false,
2811
+ slotRelocation: true,
2812
+ // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
2813
+ appendChildSlotFix: false,
2814
+ // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
2815
+ cloneNodeFix: false,
2816
+ hydratedAttribute: false,
2817
+ hydratedClass: true,
2818
+ // TODO(STENCIL-1305): remove this option
2819
+ scriptDataOpts: false,
2820
+ // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
2821
+ scopedSlotTextContentFix: false,
2822
+ // TODO(STENCIL-854): Remove code related to legacy shadowDomShim field
2823
+ shadowDomShim: false,
2824
+ // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
2825
+ slotChildNodesFix: false,
2826
+ invisiblePrehydration: true,
2827
+ propBoolean: true,
2828
+ propNumber: true,
2829
+ propString: true,
2830
+ constructableCSS: true,
2831
+ devTools: false,
2832
+ shadowDelegatesFocus: true,
2833
+ initializeNextTick: false,
2834
+ asyncLoading: true,
2835
+ asyncQueue: false,
2836
+ transformTagName: false,
2837
+ attachStyles: true,
2838
+ // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
2839
+ experimentalSlotFixes: false
2840
+ };
2841
+
2842
+ // src/client/client-build.ts
2843
+ var Build = {
2844
+ isDev: BUILD.isDev ? true : false,
2845
+ isBrowser: true,
2846
+ isServer: false,
2847
+ isTesting: BUILD.isTesting ? true : false
2848
+ };
2849
+
2850
+ // src/client/client-log.ts
2851
+ var STENCIL_DEV_MODE = BUILD.isTesting ? ["STENCIL:"] : [
2852
+ "%cstencil",
2853
+ "color: white;background:#4c47ff;font-weight: bold; font-size:10px; padding:2px 6px; border-radius: 5px"
2854
+ ];
2855
+
2856
+ // src/client/client-window.ts
2857
+ var win = typeof window !== "undefined" ? window : {};
2858
+ var H = win.HTMLElement || class {
2859
+ };
2860
+ var supportsShadow = BUILD.shadowDom;
2861
+ var supportsConstructableStylesheets = BUILD.constructableCSS ? /* @__PURE__ */ (() => {
2862
+ try {
2863
+ new CSSStyleSheet();
2864
+ return typeof new CSSStyleSheet().replaceSync === "function";
2865
+ } catch (e) {
2866
+ }
2867
+ return false;
2868
+ })() : false;
2869
+
2870
+ // src/utils/shadow-css.ts
2871
+ /**
2872
+ * @license
2873
+ * Copyright Google Inc. All Rights Reserved.
2874
+ *
2875
+ * Use of this source code is governed by an MIT-style license that can be
2876
+ * found in the LICENSE file at https://angular.io/license
2877
+ *
2878
+ * This file is a port of shadowCSS from `webcomponents.js` to TypeScript.
2879
+ * https://github.com/webcomponents/webcomponentsjs/blob/4efecd7e0e/src/ShadowCSS/ShadowCSS.js
2880
+ * https://github.com/angular/angular/blob/master/packages/compiler/src/shadow_css.ts
2881
+ */
2882
+ var _polyfillHost = "-shadowcsshost";
2883
+ var _polyfillSlotted = "-shadowcssslotted";
2884
+ var _polyfillHostContext = "-shadowcsscontext";
2885
+ var _parenSuffix = ")(?:\\(((?:\\([^)(]*\\)|[^)(]*)+?)\\))?([^,{]*)";
2886
+ var _cssColonHostRe = new RegExp("(" + _polyfillHost + _parenSuffix, "gim");
2887
+ var _cssColonHostContextRe = new RegExp("(" + _polyfillHostContext + _parenSuffix, "gim");
2888
+ var _cssColonSlottedRe = new RegExp("(" + _polyfillSlotted + _parenSuffix, "gim");
2889
+ var _polyfillHostNoCombinator = _polyfillHost + "-no-combinator";
2890
+ var createSupportsRuleRe = (selector) => {
2891
+ const safeSelector = escapeRegExpSpecialCharacters(selector);
2892
+ return new RegExp(
2893
+ // First capture group: match any context before the selector that's not inside @supports selector()
2894
+ // Using negative lookahead to avoid matching inside @supports selector(...) condition
2895
+ `(^|[^@]|@(?!supports\\s+selector\\s*\\([^{]*?${safeSelector}))(${safeSelector}\\b)`,
2896
+ "g"
2897
+ );
2898
+ };
2899
+ var _colonSlottedRe = createSupportsRuleRe("::slotted");
2900
+ var _colonHostRe = createSupportsRuleRe(":host");
2901
+ var _colonHostContextRe = createSupportsRuleRe(":host-context");
2902
+
2903
+ // src/runtime/vdom/set-accessor.ts
2904
+ var CAPTURE_EVENT_SUFFIX = "Capture";
2905
+ var CAPTURE_EVENT_REGEX = new RegExp(CAPTURE_EVENT_SUFFIX + "$");
2906
+
2756
2907
  // src/utils/util.ts
2757
2908
  var lowerPathParam = (fn) => (p) => fn(p.toLowerCase());
2758
2909
  var isDtsFile = lowerPathParam((p) => p.endsWith(".d.ts") || p.endsWith(".d.mts") || p.endsWith(".d.cts"));
package/cli/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/cli",
3
- "version": "4.33.0",
3
+ "version": "4.33.1-dev.1749013599.af2acd4",
4
4
  "description": "Stencil CLI.",
5
5
  "main": "./index.cjs",
6
6
  "module": "./index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/compiler",
3
- "version": "4.33.0",
3
+ "version": "4.33.1-dev.1749013599.af2acd4",
4
4
  "description": "Stencil Compiler.",
5
5
  "main": "./stencil.js",
6
6
  "types": "./stencil.d.ts",