@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.
@@ -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.1769750503.cce1e23",
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
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil Mock Doc (CommonJS) v4.41.3-dev.1769750503.cce1e23 | MIT Licensed | https://stenciljs.com
2
+ Stencil Mock Doc (CommonJS) v4.41.3-dev.1769983353.193885d | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  "use strict";
5
5
  var __defProp = Object.defineProperty;
package/mock-doc/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil Mock Doc v4.41.3-dev.1769750503.cce1e23 | MIT Licensed | https://stenciljs.com
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;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/mock-doc",
3
- "version": "4.41.3-dev.1769750503.cce1e23",
3
+ "version": "4.41.3-dev.1769983353.193885d",
4
4
  "description": "Mock window, document and DOM outside of a browser environment.",
5
5
  "main": "./index.cjs",
6
6
  "module": "./index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core",
3
- "version": "4.41.3-dev.1769750503.cce1e23",
3
+ "version": "4.41.3-dev.1769983353.193885d",
4
4
  "license": "MIT",
5
5
  "main": "./internal/stencil-core/index.cjs",
6
6
  "module": "./internal/stencil-core/index.js",
@@ -1,5 +1,5 @@
1
1
  /*
2
- Stencil Screenshot v4.41.3-dev.1769750503.cce1e23 | MIT Licensed | https://stenciljs.com
2
+ Stencil Screenshot v4.41.3-dev.1769983353.193885d | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  "use strict";
5
5
  var __create = Object.create;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/screenshot",
3
- "version": "4.41.3-dev.1769750503.cce1e23",
3
+ "version": "4.41.3-dev.1769983353.193885d",
4
4
  "description": "Stencil Screenshot.",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -1,5 +1,5 @@
1
1
  /*
2
- Stencil Screenshot Pixel Match v4.41.3-dev.1769750503.cce1e23 | MIT Licensed | https://stenciljs.com
2
+ Stencil Screenshot Pixel Match v4.41.3-dev.1769983353.193885d | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  "use strict";
5
5
  var __create = Object.create;