@everymatrix/casino-engagement-suite-tournament 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-tournament/casino-engagement-suite-tournament.esm.js +1 -1
- package/dist/casino-engagement-suite-tournament/index.esm.js +1 -1
- package/dist/casino-engagement-suite-tournament/p-36511cf5.js +15 -0
- package/dist/casino-engagement-suite-tournament/{p-9c24a103.entry.js → p-6e87f006.entry.js} +1 -1
- package/dist/casino-engagement-suite-tournament/p-7dd52ef4.js +2 -0
- package/dist/cjs/casino-engagement-suite-progress-bar_3.cjs.entry.js +2 -2
- package/dist/cjs/{casino-engagement-suite-tournament-d2f62483.js → casino-engagement-suite-tournament-dea6117d.js} +186 -149
- package/dist/cjs/casino-engagement-suite-tournament.cjs.js +2 -2
- package/dist/cjs/{index-4eb9b2e6.js → index-9b5a5304.js} +7 -50
- 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-progress-bar_3.entry.js +2 -2
- package/dist/esm/{casino-engagement-suite-tournament-66512e26.js → casino-engagement-suite-tournament-520e74da.js} +186 -149
- package/dist/esm/casino-engagement-suite-tournament.js +3 -3
- package/dist/esm/{index-3124114b.js → index-e8e1e68e.js} +7 -50
- package/dist/esm/index.js +2 -2
- package/dist/esm/loader.js +2 -2
- package/dist/types/components/casino-engagement-suite-tournament/casino-engagement-suite-tournament.d.ts +7 -2
- package/dist/types/stencil-public-runtime.d.ts +0 -6
- package/dist/types/utils/api.apdater.d.ts +30 -2
- package/package.json +1 -1
- package/dist/casino-engagement-suite-tournament/p-1cd75583.js +0 -2
- package/dist/casino-engagement-suite-tournament/p-94b7b68e.js +0 -1
|
@@ -24,7 +24,7 @@ const NAMESPACE = 'casino-engagement-suite-tournament';
|
|
|
24
24
|
const BUILD = /* casino-engagement-suite-tournament */ { 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: true, 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: false, propNumber: true, propString: true, reflect: true, scoped: false, scopedSlotTextContentFix: false, scriptDataOpts: false, shadowDelegatesFocus: false, shadowDom: true, slot: true, slotChildNodesFix: false, slotRelocation: true, 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: true, vdomRender: true, vdomStyle: true, vdomText: true, vdomXlink: true, 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) => {
|
|
@@ -392,31 +392,7 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
|
|
|
392
392
|
if (nonce != null) {
|
|
393
393
|
styleElm.setAttribute("nonce", nonce);
|
|
394
394
|
}
|
|
395
|
-
|
|
396
|
-
if (styleContainerNode.nodeName === "HEAD") {
|
|
397
|
-
const preconnectLinks = styleContainerNode.querySelectorAll("link[rel=preconnect]");
|
|
398
|
-
const referenceNode2 = preconnectLinks.length > 0 ? preconnectLinks[preconnectLinks.length - 1].nextSibling : styleContainerNode.querySelector("style");
|
|
399
|
-
styleContainerNode.insertBefore(styleElm, referenceNode2);
|
|
400
|
-
} else if ("host" in styleContainerNode) {
|
|
401
|
-
if (supportsConstructableStylesheets) {
|
|
402
|
-
const stylesheet = new CSSStyleSheet();
|
|
403
|
-
stylesheet.replaceSync(style);
|
|
404
|
-
styleContainerNode.adoptedStyleSheets = [stylesheet, ...styleContainerNode.adoptedStyleSheets];
|
|
405
|
-
} else {
|
|
406
|
-
const existingStyleContainer = styleContainerNode.querySelector("style");
|
|
407
|
-
if (existingStyleContainer) {
|
|
408
|
-
existingStyleContainer.innerHTML = style + existingStyleContainer.innerHTML;
|
|
409
|
-
} else {
|
|
410
|
-
styleContainerNode.prepend(styleElm);
|
|
411
|
-
}
|
|
412
|
-
}
|
|
413
|
-
} else {
|
|
414
|
-
styleContainerNode.append(styleElm);
|
|
415
|
-
}
|
|
416
|
-
}
|
|
417
|
-
if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */ && styleContainerNode.nodeName !== "HEAD") {
|
|
418
|
-
styleContainerNode.insertBefore(styleElm, null);
|
|
419
|
-
}
|
|
395
|
+
styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector("link"));
|
|
420
396
|
}
|
|
421
397
|
if (cmpMeta.$flags$ & 4 /* hasSlotRelocation */) {
|
|
422
398
|
styleElm.innerHTML += SLOT_FB_CSS;
|
|
@@ -439,7 +415,7 @@ var attachStyles = (hostRef) => {
|
|
|
439
415
|
const scopeId2 = addStyle(
|
|
440
416
|
elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(),
|
|
441
417
|
cmpMeta);
|
|
442
|
-
if (flags & 10 /* needsScopedEncapsulation */
|
|
418
|
+
if (flags & 10 /* needsScopedEncapsulation */) {
|
|
443
419
|
elm["s-sc"] = scopeId2;
|
|
444
420
|
elm.classList.add(scopeId2 + "-h");
|
|
445
421
|
}
|
|
@@ -508,11 +484,7 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
|
|
|
508
484
|
if (memberName === "list") {
|
|
509
485
|
isProp = false;
|
|
510
486
|
} else if (oldValue == null || elm[memberName] != n) {
|
|
511
|
-
|
|
512
|
-
elm[memberName] = n;
|
|
513
|
-
} else {
|
|
514
|
-
elm.setAttribute(memberName, n);
|
|
515
|
-
}
|
|
487
|
+
elm[memberName] = n;
|
|
516
488
|
}
|
|
517
489
|
} else {
|
|
518
490
|
elm[memberName] = newValue;
|
|
@@ -621,9 +593,7 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
|
|
|
621
593
|
{
|
|
622
594
|
updateElement(null, newVNode2, isSvgMode);
|
|
623
595
|
}
|
|
624
|
-
|
|
625
|
-
const isElementWithinShadowRoot = !rootNode.querySelector("body");
|
|
626
|
-
if (!isElementWithinShadowRoot && BUILD.scoped && isDef(scopeId) && elm["s-si"] !== scopeId) {
|
|
596
|
+
if (isDef(scopeId) && elm["s-si"] !== scopeId) {
|
|
627
597
|
elm.classList.add(elm["s-si"] = scopeId);
|
|
628
598
|
}
|
|
629
599
|
if (newVNode2.$children$) {
|
|
@@ -807,15 +777,6 @@ var updateChildren = (parentElm, oldCh, newVNode2, newCh, isInitialRender = fals
|
|
|
807
777
|
var isSameVnode = (leftVNode, rightVNode, isInitialRender = false) => {
|
|
808
778
|
if (leftVNode.$tag$ === rightVNode.$tag$) {
|
|
809
779
|
if (leftVNode.$tag$ === "slot") {
|
|
810
|
-
if (
|
|
811
|
-
// The component gets hydrated and no VDOM has been initialized.
|
|
812
|
-
// Here the comparison can't happen as $name$ property is not set for `leftNode`.
|
|
813
|
-
"$nodeId$" in leftVNode && isInitialRender && // `leftNode` is not from type HTMLComment which would cause many
|
|
814
|
-
// hydration comments to be removed
|
|
815
|
-
leftVNode.$elm$.nodeType !== 8
|
|
816
|
-
) {
|
|
817
|
-
return false;
|
|
818
|
-
}
|
|
819
780
|
return leftVNode.$name$ === rightVNode.$name$;
|
|
820
781
|
}
|
|
821
782
|
if (!isInitialRender) {
|
|
@@ -849,10 +810,7 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
|
|
|
849
810
|
elm.textContent = "";
|
|
850
811
|
}
|
|
851
812
|
addVnodes(elm, null, newVNode2, newChildren, 0, newChildren.length - 1);
|
|
852
|
-
} else if (
|
|
853
|
-
// don't do this on initial render as it can cause non-hydrated content to be removed
|
|
854
|
-
!isInitialRender && BUILD.updatable && oldChildren !== null
|
|
855
|
-
) {
|
|
813
|
+
} else if (oldChildren !== null) {
|
|
856
814
|
removeVnodes(oldChildren, 0, oldChildren.length - 1);
|
|
857
815
|
}
|
|
858
816
|
} else if ((defaultHolder = elm["s-cr"])) {
|
|
@@ -1286,8 +1244,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
1286
1244
|
if (this.hasOwnProperty(propName)) {
|
|
1287
1245
|
newValue = this[propName];
|
|
1288
1246
|
delete this[propName];
|
|
1289
|
-
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" &&
|
|
1290
|
-
this[propName] == newValue) {
|
|
1247
|
+
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" && this[propName] == newValue) {
|
|
1291
1248
|
return;
|
|
1292
1249
|
} else if (propName == null) {
|
|
1293
1250
|
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 casinoEngagementSuiteTournament = require('./casino-engagement-suite-tournament-
|
|
6
|
-
require('./index-
|
|
5
|
+
const casinoEngagementSuiteTournament = require('./casino-engagement-suite-tournament-dea6117d.js');
|
|
6
|
+
require('./index-9b5a5304.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-9b5a5304.js');
|
|
6
6
|
const appGlobals = require('./app-globals-3a1e7e63.js');
|
|
7
7
|
|
|
8
8
|
const defineCustomElements = async (win, options) => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { r as registerInstance, h, g as getElement } from './index-
|
|
2
|
-
export { C as casino_engagement_suite_tournament } from './casino-engagement-suite-tournament-
|
|
1
|
+
import { r as registerInstance, h, g as getElement } from './index-e8e1e68e.js';
|
|
2
|
+
export { C as casino_engagement_suite_tournament } from './casino-engagement-suite-tournament-520e74da.js';
|
|
3
3
|
|
|
4
4
|
const casinoEngagementSuiteProgressBarCss = ":host{display:block;font-family:inherit}:host(.Desktop) .ProgressBarPercent{font-size:var(--emw--font-size-small, 14px);line-height:14px}@keyframes indeterminate{0%{left:-200%;right:100%}60%{left:110%;right:-10%}to{left:110%;right:-10%}}.ProgressBarBackground{height:8px;background-color:var(--emw--color-gray-300, #666178);border-radius:var(--emw--border-radius-small, 4px);position:relative;overflow:hidden}.ProgressBarLine{position:absolute;left:0;top:0;bottom:0;border-radius:var(--emw--border-radius-small, 4px);background:var(--emw--engagement-suite-gradient-button, linear-gradient(98.25deg, #FF9400 22.48%, #FEF746 131.02%, #FFE24A 131.9%));transition:width ease-out 0.3s}.ProgressBarLine.Indeterminate{animation:indeterminate 1s linear infinite}.ProgressBarInfo{margin-bottom:8px;display:flex;justify-content:space-between;align-items:center}.ProgressBarPercent{font-weight:var(--emw--font-weight-bold, 700);font-size:var(--emw--font-size-x-small, 12px);line-height:12px}.HidePercent .ProgressBarPercent{display:none}.ProgressBar:not(.Disabled) .ProgressBarPercent{background:var(--emw--engagement-suite-gradient-button, linear-gradient(98.25deg, #FF9400 22.48%, #FEF746 131.02%, #FFE24A 131.9%));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.ProgressBar.Disabled .ProgressBarPercent{color:var(--emw--color-gray-300, #666178)}.ProgressBar.Disabled .ProgressBarLine{background:var(--emw--color-background-secondary, #474668)}";
|
|
5
5
|
const CasinoEngagementSuiteProgressBarStyle0 = casinoEngagementSuiteProgressBarCss;
|