proto-ikons-wc 0.0.172 → 0.0.173
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-5786646b.js → index-0e3c76da.js} +16 -16
- 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/esm/acura-ikon_119.entry.js +1 -1
- package/dist/esm/{index-c097ad36.js → index-f25fbb04.js} +16 -16
- package/dist/esm/loader.js +2 -2
- package/dist/esm/proto-ikons-wc.js +3 -3
- package/dist/proto-ikons-wc/{p-b2a4308d.entry.js → p-5763be3c.entry.js} +1 -1
- package/dist/proto-ikons-wc/{p-94739343.js → p-d4d82d99.js} +2 -2
- package/dist/proto-ikons-wc/proto-ikons-wc.esm.js +1 -1
- package/package.json +2 -2
|
@@ -24,7 +24,7 @@ const NAMESPACE = 'proto-ikons-wc';
|
|
|
24
24
|
const BUILD = /* proto-ikons-wc */ { allRenderFn: true, appendChildSlotFix: false, asyncLoading: true, asyncQueue: false, attachStyles: true, cloneNodeFix: false, cmpDidLoad: false, cmpDidRender: false, cmpDidUnload: false, cmpDidUpdate: false, cmpShouldUpdate: false, cmpWillLoad: false, cmpWillRender: false, cmpWillUpdate: false, connectedCallback: false, constructableCSS: true, cssAnnotations: true, devTools: false, disconnectedCallback: false, element: false, event: false, experimentalScopedSlotChanges: false, experimentalSlotFixes: false, formAssociated: false, hasRenderFn: true, hostListener: false, hostListenerTarget: false, hostListenerTargetBody: false, hostListenerTargetDocument: false, hostListenerTargetParent: false, hostListenerTargetWindow: false, hotModuleReplacement: false, hydrateClientSide: false, hydrateServerSide: false, hydratedAttribute: false, hydratedClass: true, hydratedSelectorName: "hydrated", initializeNextTick: false, invisiblePrehydration: true, isDebug: false, isDev: false, isTesting: false, lazyLoad: true, lifecycle: false, lifecycleDOMEvents: false, member: true, method: false, mode: false, modernPropertyDecls: false, observeAttribute: true, profile: false, prop: true, propBoolean: true, propMutable: false, propNumber: true, propString: true, reflect: false, scoped: false, scopedSlotTextContentFix: false, scriptDataOpts: false, shadowDelegatesFocus: false, shadowDom: false, slot: false, slotChildNodesFix: false, slotRelocation: false, state: false, style: true, svg: true, taskQueue: true, transformTagName: false, updatable: true, vdomAttribute: true, vdomClass: true, vdomFunctional: false, vdomKey: true, vdomListener: false, vdomPropOrAttr: true, vdomRef: false, vdomRender: true, vdomStyle: false, vdomText: true, vdomXlink: true, watchCallback: false };
|
|
25
25
|
|
|
26
26
|
/*
|
|
27
|
-
Stencil Client Platform v4.
|
|
27
|
+
Stencil Client Platform v4.25.0 | MIT Licensed | https://stenciljs.com
|
|
28
28
|
*/
|
|
29
29
|
var __defProp = Object.defineProperty;
|
|
30
30
|
var __export = (target, all) => {
|
|
@@ -79,12 +79,17 @@ var loadModule = (cmpMeta, hostRef, hmrVersionId) => {
|
|
|
79
79
|
/* webpackExclude: /\.system\.entry\.js$/ */
|
|
80
80
|
/* webpackMode: "lazy" */
|
|
81
81
|
`./${bundleId}.entry.js${""}`
|
|
82
|
-
)); }).then(
|
|
83
|
-
{
|
|
84
|
-
|
|
82
|
+
)); }).then(
|
|
83
|
+
(importedModule) => {
|
|
84
|
+
{
|
|
85
|
+
cmpModules.set(bundleId, importedModule);
|
|
86
|
+
}
|
|
87
|
+
return importedModule[exportName];
|
|
88
|
+
},
|
|
89
|
+
(e) => {
|
|
90
|
+
consoleError(e, hostRef.$hostElement$);
|
|
85
91
|
}
|
|
86
|
-
|
|
87
|
-
}, consoleError);
|
|
92
|
+
);
|
|
88
93
|
};
|
|
89
94
|
|
|
90
95
|
// src/client/client-style.ts
|
|
@@ -1004,9 +1009,8 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
1004
1009
|
let Cstr;
|
|
1005
1010
|
if ((hostRef.$flags$ & 32 /* hasInitializedComponent */) === 0) {
|
|
1006
1011
|
hostRef.$flags$ |= 32 /* hasInitializedComponent */;
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
const CstrImport = loadModule(cmpMeta);
|
|
1012
|
+
{
|
|
1013
|
+
const CstrImport = loadModule(cmpMeta, hostRef);
|
|
1010
1014
|
if (CstrImport && "then" in CstrImport) {
|
|
1011
1015
|
const endLoad = uniqueTime();
|
|
1012
1016
|
Cstr = await CstrImport;
|
|
@@ -1028,16 +1032,12 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
1028
1032
|
try {
|
|
1029
1033
|
new Cstr(hostRef);
|
|
1030
1034
|
} catch (e) {
|
|
1031
|
-
consoleError(e);
|
|
1035
|
+
consoleError(e, elm);
|
|
1032
1036
|
}
|
|
1033
1037
|
{
|
|
1034
1038
|
hostRef.$flags$ &= ~8 /* isConstructingInstance */;
|
|
1035
1039
|
}
|
|
1036
1040
|
endNewInstance();
|
|
1037
|
-
} else {
|
|
1038
|
-
Cstr = elm.constructor;
|
|
1039
|
-
const cmpTag = elm.localName;
|
|
1040
|
-
customElements.whenDefined(cmpTag).then(() => hostRef.$flags$ |= 128 /* isWatchReady */);
|
|
1041
1041
|
}
|
|
1042
1042
|
if (Cstr && Cstr.style) {
|
|
1043
1043
|
let style;
|
|
@@ -1060,7 +1060,7 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
1060
1060
|
schedule();
|
|
1061
1061
|
}
|
|
1062
1062
|
};
|
|
1063
|
-
var fireConnectedCallback = (instance) => {
|
|
1063
|
+
var fireConnectedCallback = (instance, elm) => {
|
|
1064
1064
|
};
|
|
1065
1065
|
|
|
1066
1066
|
// src/runtime/connected-callback.ts
|
|
@@ -1100,7 +1100,7 @@ var connectedCallback = (elm) => {
|
|
|
1100
1100
|
endConnected();
|
|
1101
1101
|
}
|
|
1102
1102
|
};
|
|
1103
|
-
var disconnectInstance = (instance) => {
|
|
1103
|
+
var disconnectInstance = (instance, elm) => {
|
|
1104
1104
|
};
|
|
1105
1105
|
var disconnectedCallback = async (elm) => {
|
|
1106
1106
|
if ((plt.$flags$ & 1 /* isTmpDisconnected */) === 0) {
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-0e3c76da.js');
|
|
6
6
|
const appGlobals = require('./app-globals-3a1e7e63.js');
|
|
7
7
|
|
|
8
8
|
const defineCustomElements = async (win, options) => {
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-0e3c76da.js');
|
|
6
6
|
const appGlobals = require('./app-globals-3a1e7e63.js');
|
|
7
7
|
|
|
8
8
|
/*
|
|
9
|
-
Stencil Client Patch Browser v4.
|
|
9
|
+
Stencil Client Patch Browser v4.25.0 | MIT Licensed | https://stenciljs.com
|
|
10
10
|
*/
|
|
11
11
|
var patchBrowser = () => {
|
|
12
12
|
const importMeta = (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('proto-ikons-wc.cjs.js', document.baseURI).href));
|
|
@@ -2,7 +2,7 @@ const NAMESPACE = 'proto-ikons-wc';
|
|
|
2
2
|
const BUILD = /* proto-ikons-wc */ { allRenderFn: true, appendChildSlotFix: false, asyncLoading: true, asyncQueue: false, attachStyles: true, cloneNodeFix: false, cmpDidLoad: false, cmpDidRender: false, cmpDidUnload: false, cmpDidUpdate: false, cmpShouldUpdate: false, cmpWillLoad: false, cmpWillRender: false, cmpWillUpdate: false, connectedCallback: false, constructableCSS: true, cssAnnotations: true, devTools: false, disconnectedCallback: false, element: false, event: false, experimentalScopedSlotChanges: false, experimentalSlotFixes: false, formAssociated: false, hasRenderFn: true, hostListener: false, hostListenerTarget: false, hostListenerTargetBody: false, hostListenerTargetDocument: false, hostListenerTargetParent: false, hostListenerTargetWindow: false, hotModuleReplacement: false, hydrateClientSide: false, hydrateServerSide: false, hydratedAttribute: false, hydratedClass: true, hydratedSelectorName: "hydrated", initializeNextTick: false, invisiblePrehydration: true, isDebug: false, isDev: false, isTesting: false, lazyLoad: true, lifecycle: false, lifecycleDOMEvents: false, member: true, method: false, mode: false, modernPropertyDecls: false, observeAttribute: true, profile: false, prop: true, propBoolean: true, propMutable: false, propNumber: true, propString: true, reflect: false, scoped: false, scopedSlotTextContentFix: false, scriptDataOpts: false, shadowDelegatesFocus: false, shadowDom: false, slot: false, slotChildNodesFix: false, slotRelocation: false, state: false, style: true, svg: true, taskQueue: true, transformTagName: false, updatable: true, vdomAttribute: true, vdomClass: true, vdomFunctional: false, vdomKey: true, vdomListener: false, vdomPropOrAttr: true, vdomRef: false, vdomRender: true, vdomStyle: false, vdomText: true, vdomXlink: true, watchCallback: false };
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
|
-
Stencil Client Platform v4.
|
|
5
|
+
Stencil Client Platform v4.25.0 | MIT Licensed | https://stenciljs.com
|
|
6
6
|
*/
|
|
7
7
|
var __defProp = Object.defineProperty;
|
|
8
8
|
var __export = (target, all) => {
|
|
@@ -57,12 +57,17 @@ var loadModule = (cmpMeta, hostRef, hmrVersionId) => {
|
|
|
57
57
|
/* webpackExclude: /\.system\.entry\.js$/ */
|
|
58
58
|
/* webpackMode: "lazy" */
|
|
59
59
|
`./${bundleId}.entry.js${""}`
|
|
60
|
-
).then(
|
|
61
|
-
{
|
|
62
|
-
|
|
60
|
+
).then(
|
|
61
|
+
(importedModule) => {
|
|
62
|
+
{
|
|
63
|
+
cmpModules.set(bundleId, importedModule);
|
|
64
|
+
}
|
|
65
|
+
return importedModule[exportName];
|
|
66
|
+
},
|
|
67
|
+
(e) => {
|
|
68
|
+
consoleError(e, hostRef.$hostElement$);
|
|
63
69
|
}
|
|
64
|
-
|
|
65
|
-
}, consoleError);
|
|
70
|
+
);
|
|
66
71
|
};
|
|
67
72
|
|
|
68
73
|
// src/client/client-style.ts
|
|
@@ -982,9 +987,8 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
982
987
|
let Cstr;
|
|
983
988
|
if ((hostRef.$flags$ & 32 /* hasInitializedComponent */) === 0) {
|
|
984
989
|
hostRef.$flags$ |= 32 /* hasInitializedComponent */;
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
const CstrImport = loadModule(cmpMeta);
|
|
990
|
+
{
|
|
991
|
+
const CstrImport = loadModule(cmpMeta, hostRef);
|
|
988
992
|
if (CstrImport && "then" in CstrImport) {
|
|
989
993
|
const endLoad = uniqueTime();
|
|
990
994
|
Cstr = await CstrImport;
|
|
@@ -1006,16 +1010,12 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
1006
1010
|
try {
|
|
1007
1011
|
new Cstr(hostRef);
|
|
1008
1012
|
} catch (e) {
|
|
1009
|
-
consoleError(e);
|
|
1013
|
+
consoleError(e, elm);
|
|
1010
1014
|
}
|
|
1011
1015
|
{
|
|
1012
1016
|
hostRef.$flags$ &= ~8 /* isConstructingInstance */;
|
|
1013
1017
|
}
|
|
1014
1018
|
endNewInstance();
|
|
1015
|
-
} else {
|
|
1016
|
-
Cstr = elm.constructor;
|
|
1017
|
-
const cmpTag = elm.localName;
|
|
1018
|
-
customElements.whenDefined(cmpTag).then(() => hostRef.$flags$ |= 128 /* isWatchReady */);
|
|
1019
1019
|
}
|
|
1020
1020
|
if (Cstr && Cstr.style) {
|
|
1021
1021
|
let style;
|
|
@@ -1038,7 +1038,7 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
1038
1038
|
schedule();
|
|
1039
1039
|
}
|
|
1040
1040
|
};
|
|
1041
|
-
var fireConnectedCallback = (instance) => {
|
|
1041
|
+
var fireConnectedCallback = (instance, elm) => {
|
|
1042
1042
|
};
|
|
1043
1043
|
|
|
1044
1044
|
// src/runtime/connected-callback.ts
|
|
@@ -1078,7 +1078,7 @@ var connectedCallback = (elm) => {
|
|
|
1078
1078
|
endConnected();
|
|
1079
1079
|
}
|
|
1080
1080
|
};
|
|
1081
|
-
var disconnectInstance = (instance) => {
|
|
1081
|
+
var disconnectInstance = (instance, elm) => {
|
|
1082
1082
|
};
|
|
1083
1083
|
var disconnectedCallback = async (elm) => {
|
|
1084
1084
|
if ((plt.$flags$ & 1 /* isTmpDisconnected */) === 0) {
|
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-f25fbb04.js';
|
|
2
|
+
export { s as setNonce } from './index-f25fbb04.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-0f993ce5.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-f25fbb04.js';
|
|
2
|
+
export { s as setNonce } from './index-f25fbb04.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-0f993ce5.js';
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
|
-
Stencil Client Patch Browser v4.
|
|
6
|
+
Stencil Client Patch Browser v4.25.0 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
var patchBrowser = () => {
|
|
9
9
|
const importMeta = import.meta.url;
|