proto-ikons-wc 0.1.8 → 0.1.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.
- package/dist/cjs/acura-ikon_119.cjs.entry.js +1 -1
- package/dist/cjs/{index-CkY7rCgw.js → index-Cp-uZPEm.js} +18 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/proto-ikons-wc.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/components/index.js +1 -1
- package/dist/esm/acura-ikon_119.entry.js +1 -1
- package/dist/esm/{index-C62V3lWn.js → index-DNYLcofk.js} +18 -1
- package/dist/esm/loader.js +2 -2
- package/dist/esm/proto-ikons-wc.js +3 -3
- package/dist/proto-ikons-wc/{p-e4155a12.entry.js → p-29b6c3e9.entry.js} +1 -1
- package/dist/proto-ikons-wc/p-DNYLcofk.js +2 -0
- package/dist/proto-ikons-wc/proto-ikons-wc.esm.js +1 -1
- package/dist/types/stencil-public-runtime.d.ts +19 -0
- package/package.json +4 -3
- package/dist/proto-ikons-wc/p-C62V3lWn.js +0 -2
|
@@ -4,7 +4,7 @@ const NAMESPACE = 'proto-ikons-wc';
|
|
|
4
4
|
const BUILD = /* proto-ikons-wc */ { hydratedSelectorName: "hydrated", lazyLoad: true, updatable: true, watchCallback: false };
|
|
5
5
|
|
|
6
6
|
/*
|
|
7
|
-
Stencil Client Platform v4.
|
|
7
|
+
Stencil Client Platform v4.30.0 | MIT Licensed | https://stenciljs.com
|
|
8
8
|
*/
|
|
9
9
|
var __defProp = Object.defineProperty;
|
|
10
10
|
var __export = (target, all) => {
|
|
@@ -149,6 +149,11 @@ function queryNonceMetaTagContent(doc) {
|
|
|
149
149
|
return (_c = (_b = (_a = doc.head) == null ? void 0 : _a.querySelector('meta[name="csp-nonce"]')) == null ? void 0 : _b.getAttribute("content")) != null ? _c : void 0;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
+
// src/utils/regular-expression.ts
|
|
153
|
+
var escapeRegExpSpecialCharacters = (text) => {
|
|
154
|
+
return text.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
155
|
+
};
|
|
156
|
+
|
|
152
157
|
// src/utils/result.ts
|
|
153
158
|
var result_exports = {};
|
|
154
159
|
__export(result_exports, {
|
|
@@ -275,6 +280,18 @@ var newVNode = (tag, text) => {
|
|
|
275
280
|
};
|
|
276
281
|
var Host = {};
|
|
277
282
|
var isHost = (node) => node && node.$tag$ === Host;
|
|
283
|
+
var createSupportsRuleRe = (selector) => {
|
|
284
|
+
const safeSelector2 = escapeRegExpSpecialCharacters(selector);
|
|
285
|
+
return new RegExp(
|
|
286
|
+
// First capture group: match any context before the selector that's not inside @supports selector()
|
|
287
|
+
// Using negative lookahead to avoid matching inside @supports selector(...) condition
|
|
288
|
+
`(^|[^@]|@(?!supports\\s+selector\\s*\\([^{]*?${safeSelector2}))(${safeSelector2}\\b)`,
|
|
289
|
+
"g"
|
|
290
|
+
);
|
|
291
|
+
};
|
|
292
|
+
createSupportsRuleRe("::slotted");
|
|
293
|
+
createSupportsRuleRe(":host");
|
|
294
|
+
createSupportsRuleRe(":host-context");
|
|
278
295
|
var parsePropertyValue = (propValue, propType) => {
|
|
279
296
|
if (propValue != null && !isComplexType(propValue)) {
|
|
280
297
|
if (propType & 4 /* Boolean */) {
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var index = require('./index-
|
|
3
|
+
var index = require('./index-Cp-uZPEm.js');
|
|
4
4
|
var appGlobals = require('./app-globals-V2Kpy_OQ.js');
|
|
5
5
|
|
|
6
6
|
var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
|
|
7
7
|
/*
|
|
8
|
-
Stencil Client Patch Browser v4.
|
|
8
|
+
Stencil Client Patch Browser v4.30.0 | MIT Licensed | https://stenciljs.com
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
var patchBrowser = () => {
|
package/dist/components/index.js
CHANGED
|
@@ -2,7 +2,7 @@ const NAMESPACE = 'proto-ikons-wc';
|
|
|
2
2
|
const BUILD = /* proto-ikons-wc */ { hydratedSelectorName: "hydrated", lazyLoad: true, updatable: true, watchCallback: false };
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
|
-
Stencil Client Platform v4.
|
|
5
|
+
Stencil Client Platform v4.30.0 | MIT Licensed | https://stenciljs.com
|
|
6
6
|
*/
|
|
7
7
|
var __defProp = Object.defineProperty;
|
|
8
8
|
var __export = (target, all) => {
|
|
@@ -147,6 +147,11 @@ function queryNonceMetaTagContent(doc) {
|
|
|
147
147
|
return (_c = (_b = (_a = doc.head) == null ? void 0 : _a.querySelector('meta[name="csp-nonce"]')) == null ? void 0 : _b.getAttribute("content")) != null ? _c : void 0;
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
+
// src/utils/regular-expression.ts
|
|
151
|
+
var escapeRegExpSpecialCharacters = (text) => {
|
|
152
|
+
return text.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
153
|
+
};
|
|
154
|
+
|
|
150
155
|
// src/utils/result.ts
|
|
151
156
|
var result_exports = {};
|
|
152
157
|
__export(result_exports, {
|
|
@@ -273,6 +278,18 @@ var newVNode = (tag, text) => {
|
|
|
273
278
|
};
|
|
274
279
|
var Host = {};
|
|
275
280
|
var isHost = (node) => node && node.$tag$ === Host;
|
|
281
|
+
var createSupportsRuleRe = (selector) => {
|
|
282
|
+
const safeSelector2 = escapeRegExpSpecialCharacters(selector);
|
|
283
|
+
return new RegExp(
|
|
284
|
+
// First capture group: match any context before the selector that's not inside @supports selector()
|
|
285
|
+
// Using negative lookahead to avoid matching inside @supports selector(...) condition
|
|
286
|
+
`(^|[^@]|@(?!supports\\s+selector\\s*\\([^{]*?${safeSelector2}))(${safeSelector2}\\b)`,
|
|
287
|
+
"g"
|
|
288
|
+
);
|
|
289
|
+
};
|
|
290
|
+
createSupportsRuleRe("::slotted");
|
|
291
|
+
createSupportsRuleRe(":host");
|
|
292
|
+
createSupportsRuleRe(":host-context");
|
|
276
293
|
var parsePropertyValue = (propValue, propType) => {
|
|
277
294
|
if (propValue != null && !isComplexType(propValue)) {
|
|
278
295
|
if (propType & 4 /* Boolean */) {
|
package/dist/esm/loader.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { b as bootstrapLazy } from './index-DNYLcofk.js';
|
|
2
|
+
export { s as setNonce } from './index-DNYLcofk.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-DQuL1Twl.js';
|
|
4
4
|
|
|
5
5
|
const defineCustomElements = async (win, options) => {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-DNYLcofk.js';
|
|
2
|
+
export { s as setNonce } from './index-DNYLcofk.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-DQuL1Twl.js';
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
|
-
Stencil Client Patch Browser v4.
|
|
6
|
+
Stencil Client Patch Browser v4.30.0 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
var patchBrowser = () => {
|