@stencil/core 4.41.3-dev.1769750503.cce1e23 → 4.41.3-dev.1769983353.193885d
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 +1 -1
- package/cli/index.js +1 -1
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +65 -8
- package/dev-server/client/index.js +1 -1
- package/dev-server/client/package.json +1 -1
- package/dev-server/connector.html +2 -2
- package/dev-server/index.js +1 -1
- package/dev-server/package.json +1 -1
- package/dev-server/server-process.js +2 -2
- package/internal/app-data/package.json +1 -1
- package/internal/app-globals/package.json +1 -1
- package/internal/client/index.js +18 -1
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +18 -1
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +1 -1
- package/internal/package.json +1 -1
- package/internal/stencil-private.d.ts +7 -0
- package/internal/testing/index.js +17 -0
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +1 -1
- package/mock-doc/index.js +1 -1
- package/mock-doc/package.json +1 -1
- package/package.json +1 -1
- package/screenshot/index.js +1 -1
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +1 -1
- package/sys/node/index.js +30 -30
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +1 -1
- package/testing/package.json +1 -1
|
@@ -4186,6 +4186,23 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags, initialRen
|
|
|
4186
4186
|
plt.ael(elm, memberName, newValue, capture);
|
|
4187
4187
|
}
|
|
4188
4188
|
}
|
|
4189
|
+
} else if (import_app_data11.BUILD.vdomPropOrAttr && memberName[0] === "a" && memberName.startsWith("attr:")) {
|
|
4190
|
+
const attrName = memberName.slice(5);
|
|
4191
|
+
if (newValue == null || newValue === false) {
|
|
4192
|
+
if (newValue !== false || elm.getAttribute(attrName) === "") {
|
|
4193
|
+
elm.removeAttribute(attrName);
|
|
4194
|
+
}
|
|
4195
|
+
} else {
|
|
4196
|
+
elm.setAttribute(attrName, newValue === true ? "" : newValue);
|
|
4197
|
+
}
|
|
4198
|
+
return;
|
|
4199
|
+
} else if (import_app_data11.BUILD.vdomPropOrAttr && memberName[0] === "p" && memberName.startsWith("prop:")) {
|
|
4200
|
+
const propName = memberName.slice(5);
|
|
4201
|
+
try {
|
|
4202
|
+
elm[propName] = newValue;
|
|
4203
|
+
} catch (e) {
|
|
4204
|
+
}
|
|
4205
|
+
return;
|
|
4189
4206
|
} else if (import_app_data11.BUILD.vdomPropOrAttr) {
|
|
4190
4207
|
const isComplex = isComplexType(newValue);
|
|
4191
4208
|
if ((isProp || isComplex && newValue !== null) && !isSvg) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stencil/core/internal/testing",
|
|
3
|
-
"version": "4.41.3-dev.
|
|
3
|
+
"version": "4.41.3-dev.1769983353.193885d",
|
|
4
4
|
"description": "Stencil internal testing platform to be imported by the Stencil Compiler. Breaking changes can and will happen at any time.",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"private": true
|
package/mock-doc/index.cjs
CHANGED
package/mock-doc/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil Mock Doc v4.41.3-dev.
|
|
2
|
+
Stencil Mock Doc v4.41.3-dev.1769983353.193885d | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
5
5
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
package/mock-doc/package.json
CHANGED
package/package.json
CHANGED
package/screenshot/index.js
CHANGED
package/screenshot/package.json
CHANGED