@everymatrix/casino-engagement-suite-luckywheel-list 1.55.0 → 1.56.2
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/casino-engagement-suite-luckywheel-list/casino-engagement-suite-luckywheel-list.esm.js +1 -1
- package/dist/casino-engagement-suite-luckywheel-list/index.esm.js +1 -1
- package/dist/casino-engagement-suite-luckywheel-list/p-b1637276.js +2 -0
- package/dist/casino-engagement-suite-luckywheel-list/{p-85d47702.entry.js → p-bfe195ea.entry.js} +1 -1
- package/dist/casino-engagement-suite-luckywheel-list/p-d338274b.js +1 -0
- package/dist/cjs/{casino-engagement-suite-luckywheel-list-165ce85c.js → casino-engagement-suite-luckywheel-list-f932b388.js} +185 -143
- package/dist/cjs/casino-engagement-suite-luckywheel-list.cjs.js +2 -2
- package/dist/cjs/casino-engagement-suite-luckywheel-list_2.cjs.entry.js +2 -2
- package/dist/cjs/{index-3815b8e0.js → index-c93b88f6.js} +7 -41
- package/dist/cjs/index.cjs.js +2 -2
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +2 -2
- package/dist/esm/{casino-engagement-suite-luckywheel-list-22ab01f5.js → casino-engagement-suite-luckywheel-list-4e9fb36c.js} +185 -143
- package/dist/esm/casino-engagement-suite-luckywheel-list.js +3 -3
- package/dist/esm/casino-engagement-suite-luckywheel-list_2.entry.js +2 -2
- package/dist/esm/{index-68de30f0.js → index-8671bc92.js} +7 -41
- package/dist/esm/index.js +2 -2
- package/dist/esm/loader.js +2 -2
- package/dist/types/components/casino-engagement-suite-luckywheel-list/casino-engagement-suite-luckywheel-list.d.ts +2 -2
- package/dist/types/stencil-public-runtime.d.ts +0 -6
- package/package.json +1 -1
- package/dist/casino-engagement-suite-luckywheel-list/p-40284e0b.js +0 -1
- package/dist/casino-engagement-suite-luckywheel-list/p-c227cdc7.js +0 -2
|
@@ -24,7 +24,7 @@ const NAMESPACE = 'casino-engagement-suite-luckywheel-list';
|
|
|
24
24
|
const BUILD = /* casino-engagement-suite-luckywheel-list */ { allRenderFn: true, appendChildSlotFix: false, asyncLoading: true, asyncQueue: false, attachStyles: true, cloneNodeFix: false, cmpDidLoad: false, cmpDidRender: true, cmpDidUnload: false, cmpDidUpdate: false, cmpShouldUpdate: false, cmpWillLoad: true, cmpWillRender: false, cmpWillUpdate: false, connectedCallback: false, constructableCSS: true, cssAnnotations: true, devTools: false, disconnectedCallback: true, element: false, event: true, experimentalScopedSlotChanges: false, experimentalSlotFixes: false, formAssociated: false, hasRenderFn: true, hostListener: true, hostListenerTarget: true, hostListenerTargetBody: false, hostListenerTargetDocument: false, hostListenerTargetParent: false, hostListenerTargetWindow: true, 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: true, lifecycleDOMEvents: false, member: true, method: false, mode: false, observeAttribute: true, profile: false, prop: true, propBoolean: true, propMutable: true, propNumber: true, propString: true, reflect: true, scoped: false, scopedSlotTextContentFix: false, scriptDataOpts: false, shadowDelegatesFocus: false, shadowDom: true, slot: true, slotChildNodesFix: false, slotRelocation: false, state: true, style: true, svg: false, taskQueue: true, transformTagName: false, updatable: true, vdomAttribute: true, vdomClass: true, vdomFunctional: false, vdomKey: true, vdomListener: true, vdomPropOrAttr: true, vdomRef: false, vdomRender: true, vdomStyle: true, vdomText: true, vdomXlink: false, watchCallback: true };
|
|
25
25
|
|
|
26
26
|
/*
|
|
27
|
-
Stencil Client Platform v4.
|
|
27
|
+
Stencil Client Platform v4.19.2 | MIT Licensed | https://stenciljs.com
|
|
28
28
|
*/
|
|
29
29
|
var __defProp = Object.defineProperty;
|
|
30
30
|
var __export = (target, all) => {
|
|
@@ -381,31 +381,7 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
|
|
|
381
381
|
if (nonce != null) {
|
|
382
382
|
styleElm.setAttribute("nonce", nonce);
|
|
383
383
|
}
|
|
384
|
-
|
|
385
|
-
if (styleContainerNode.nodeName === "HEAD") {
|
|
386
|
-
const preconnectLinks = styleContainerNode.querySelectorAll("link[rel=preconnect]");
|
|
387
|
-
const referenceNode2 = preconnectLinks.length > 0 ? preconnectLinks[preconnectLinks.length - 1].nextSibling : styleContainerNode.querySelector("style");
|
|
388
|
-
styleContainerNode.insertBefore(styleElm, referenceNode2);
|
|
389
|
-
} else if ("host" in styleContainerNode) {
|
|
390
|
-
if (supportsConstructableStylesheets) {
|
|
391
|
-
const stylesheet = new CSSStyleSheet();
|
|
392
|
-
stylesheet.replaceSync(style);
|
|
393
|
-
styleContainerNode.adoptedStyleSheets = [stylesheet, ...styleContainerNode.adoptedStyleSheets];
|
|
394
|
-
} else {
|
|
395
|
-
const existingStyleContainer = styleContainerNode.querySelector("style");
|
|
396
|
-
if (existingStyleContainer) {
|
|
397
|
-
existingStyleContainer.innerHTML = style + existingStyleContainer.innerHTML;
|
|
398
|
-
} else {
|
|
399
|
-
styleContainerNode.prepend(styleElm);
|
|
400
|
-
}
|
|
401
|
-
}
|
|
402
|
-
} else {
|
|
403
|
-
styleContainerNode.append(styleElm);
|
|
404
|
-
}
|
|
405
|
-
}
|
|
406
|
-
if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */ && styleContainerNode.nodeName !== "HEAD") {
|
|
407
|
-
styleContainerNode.insertBefore(styleElm, null);
|
|
408
|
-
}
|
|
384
|
+
styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector("link"));
|
|
409
385
|
}
|
|
410
386
|
if (cmpMeta.$flags$ & 4 /* hasSlotRelocation */) {
|
|
411
387
|
styleElm.innerHTML += SLOT_FB_CSS;
|
|
@@ -428,7 +404,7 @@ var attachStyles = (hostRef) => {
|
|
|
428
404
|
const scopeId2 = addStyle(
|
|
429
405
|
elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(),
|
|
430
406
|
cmpMeta);
|
|
431
|
-
if (flags & 10 /* needsScopedEncapsulation */
|
|
407
|
+
if (flags & 10 /* needsScopedEncapsulation */) {
|
|
432
408
|
elm["s-sc"] = scopeId2;
|
|
433
409
|
elm.classList.add(scopeId2 + "-h");
|
|
434
410
|
}
|
|
@@ -493,11 +469,7 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
|
|
|
493
469
|
if (memberName === "list") {
|
|
494
470
|
isProp = false;
|
|
495
471
|
} else if (oldValue == null || elm[memberName] != n) {
|
|
496
|
-
|
|
497
|
-
elm[memberName] = n;
|
|
498
|
-
} else {
|
|
499
|
-
elm.setAttribute(memberName, n);
|
|
500
|
-
}
|
|
472
|
+
elm[memberName] = n;
|
|
501
473
|
}
|
|
502
474
|
} else {
|
|
503
475
|
elm[memberName] = newValue;
|
|
@@ -570,9 +542,7 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
|
|
|
570
542
|
{
|
|
571
543
|
updateElement(null, newVNode2, isSvgMode);
|
|
572
544
|
}
|
|
573
|
-
|
|
574
|
-
const isElementWithinShadowRoot = !rootNode.querySelector("body");
|
|
575
|
-
if (!isElementWithinShadowRoot && BUILD.scoped && isDef(scopeId) && elm["s-si"] !== scopeId) {
|
|
545
|
+
if (isDef(scopeId) && elm["s-si"] !== scopeId) {
|
|
576
546
|
elm.classList.add(elm["s-si"] = scopeId);
|
|
577
547
|
}
|
|
578
548
|
if (newVNode2.$children$) {
|
|
@@ -726,10 +696,7 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
|
|
|
726
696
|
elm.textContent = "";
|
|
727
697
|
}
|
|
728
698
|
addVnodes(elm, null, newVNode2, newChildren, 0, newChildren.length - 1);
|
|
729
|
-
} else if (
|
|
730
|
-
// don't do this on initial render as it can cause non-hydrated content to be removed
|
|
731
|
-
!isInitialRender && BUILD.updatable && oldChildren !== null
|
|
732
|
-
) {
|
|
699
|
+
} else if (oldChildren !== null) {
|
|
733
700
|
removeVnodes(oldChildren, 0, oldChildren.length - 1);
|
|
734
701
|
}
|
|
735
702
|
} else if (oldVNode.$text$ !== text) {
|
|
@@ -995,8 +962,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
995
962
|
if (this.hasOwnProperty(propName)) {
|
|
996
963
|
newValue = this[propName];
|
|
997
964
|
delete this[propName];
|
|
998
|
-
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" &&
|
|
999
|
-
this[propName] == newValue) {
|
|
965
|
+
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" && this[propName] == newValue) {
|
|
1000
966
|
return;
|
|
1001
967
|
} else if (propName == null) {
|
|
1002
968
|
const hostRef = getHostRef(this);
|
package/dist/cjs/index.cjs.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const casinoEngagementSuiteLuckywheelList = require('./casino-engagement-suite-luckywheel-list-
|
|
6
|
-
require('./index-
|
|
5
|
+
const casinoEngagementSuiteLuckywheelList = require('./casino-engagement-suite-luckywheel-list-f932b388.js');
|
|
6
|
+
require('./index-c93b88f6.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
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-c93b88f6.js');
|
|
6
6
|
const appGlobals = require('./app-globals-3a1e7e63.js');
|
|
7
7
|
|
|
8
8
|
const defineCustomElements = async (win, options) => {
|