@stencil/core 4.22.3-dev.1732597307.7bdf128 → 4.22.3-dev.1732683708.a15bc5d

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/sys/node",
3
- "version": "4.22.3-dev.1732597307.7bdf128",
3
+ "version": "4.22.3-dev.1732683708.a15bc5d",
4
4
  "description": "Stencil Node System.",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -1,4 +1,4 @@
1
1
  /*!
2
- Stencil Node System Worker v4.22.3-dev.1732597307.7bdf128 | MIT Licensed | https://stenciljs.com
2
+ Stencil Node System Worker v4.22.3-dev.1732683708.a15bc5d | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  "use strict";var f=Object.create;var d=Object.defineProperty;var p=Object.getOwnPropertyDescriptor;var E=Object.getOwnPropertyNames;var y=Object.getPrototypeOf,R=Object.prototype.hasOwnProperty;var g=(n,t,r,s)=>{if(t&&typeof t=="object"||typeof t=="function")for(let e of E(t))!R.call(n,e)&&e!==r&&d(n,e,{get:()=>t[e],enumerable:!(s=p(t,e))||s.enumerable});return n};var c=(n,t,r)=>(r=n!=null?f(y(n)):{},g(t||!n||!n.__esModule?d(r,"default",{value:n,enumerable:!0}):r,n));var l=c(require("../../compiler/stencil.js")),m=c(require("../../sys/node/index.js"));var a=(n,t)=>{let r=e=>{e&&e.code==="ERR_IPC_CHANNEL_CLOSED"&&n.exit(0)},s=(e,o)=>{let i={stencilId:e,stencilRtnValue:null,stencilRtnError:"Error"};typeof o=="string"?i.stencilRtnError+=": "+o:o&&(o.stack?i.stencilRtnError+=": "+o.stack:o.message&&(i.stencilRtnError+=":"+o.message)),n.send(i,r)};n.on("message",async e=>{if(e&&typeof e.stencilId=="number")try{let o={stencilId:e.stencilId,stencilRtnValue:await t(e),stencilRtnError:null};n.send(o,r)}catch(o){s(e.stencilId,o)}}),n.on("unhandledRejection",e=>{s(-1,e)})};var k=m.createNodeSys({process}),M=l.createWorkerMessageHandler(k);a(process,M);
package/testing/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil Testing v4.22.3-dev.1732597307.7bdf128 | MIT Licensed | https://stenciljs.com
2
+ Stencil Testing v4.22.3-dev.1732683708.a15bc5d | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  "use strict";
5
5
 
@@ -1907,6 +1907,12 @@ var formatFlags = (compilerProperty) => {
1907
1907
  if (compilerProperty.reflect) {
1908
1908
  type |= 512 /* ReflectAttr */;
1909
1909
  }
1910
+ if (compilerProperty.getter) {
1911
+ type |= 2048 /* Getter */;
1912
+ }
1913
+ if (compilerProperty.setter) {
1914
+ type |= 4096 /* Setter */;
1915
+ }
1910
1916
  return type;
1911
1917
  };
1912
1918
  var formatAttrName = (compilerProperty) => {
@@ -7114,12 +7120,14 @@ var validateConfig = (userConfig = {}, bootstrapConfig) => {
7114
7120
  validatedConfig.extras.scriptDataOpts = !!validatedConfig.extras.scriptDataOpts;
7115
7121
  validatedConfig.extras.initializeNextTick = !!validatedConfig.extras.initializeNextTick;
7116
7122
  validatedConfig.extras.tagNameTransform = !!validatedConfig.extras.tagNameTransform;
7123
+ validatedConfig.extras.experimentalScopedSlotChanges = !!validatedConfig.extras.experimentalScopedSlotChanges;
7117
7124
  if (validatedConfig.extras.experimentalSlotFixes === true) {
7118
7125
  const possibleFlags = [
7119
7126
  "appendChildSlotFix",
7120
7127
  "slotChildNodesFix",
7121
7128
  "cloneNodeFix",
7122
- "scopedSlotTextContentFix"
7129
+ "scopedSlotTextContentFix",
7130
+ "experimentalScopedSlotChanges"
7123
7131
  ];
7124
7132
  const conflictingFlags = possibleFlags.filter((flag) => validatedConfig.extras[flag] === false);
7125
7133
  if (conflictingFlags.length > 0) {
@@ -7142,7 +7150,6 @@ var validateConfig = (userConfig = {}, bootstrapConfig) => {
7142
7150
  validatedConfig.extras.slotChildNodesFix = !!validatedConfig.extras.slotChildNodesFix;
7143
7151
  validatedConfig.extras.scopedSlotTextContentFix = !!validatedConfig.extras.scopedSlotTextContentFix;
7144
7152
  }
7145
- validatedConfig.extras.experimentalScopedSlotChanges = !!validatedConfig.extras.experimentalScopedSlotChanges;
7146
7153
  setBooleanConfig(
7147
7154
  validatedConfig,
7148
7155
  "sourceMap",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/testing",
3
- "version": "4.22.3-dev.1732597307.7bdf128",
3
+ "version": "4.22.3-dev.1732683708.a15bc5d",
4
4
  "description": "Stencil testing suite.",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",