@everymatrix/casino-tournament-banner 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-tournament-banner/casino-tournament-banner.esm.js +1 -1
- package/dist/casino-tournament-banner/p-6e64cd47.entry.js +9 -0
- package/dist/casino-tournament-banner/p-ac8cc1ef.js +2 -0
- package/dist/cjs/casino-tournament-banner.cjs.js +2 -2
- package/dist/cjs/casino-tournament-banner_2.cjs.entry.js +366 -369
- package/dist/cjs/{index-ceec4c54.js → index-0c7c7ceb.js} +7 -41
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +2 -2
- package/dist/esm/casino-tournament-banner.js +3 -3
- package/dist/esm/casino-tournament-banner_2.entry.js +366 -369
- package/dist/esm/{index-4d03c228.js → index-4dc9a6b7.js} +7 -41
- package/dist/esm/loader.js +2 -2
- package/dist/types/stencil-public-runtime.d.ts +0 -6
- package/package.json +1 -1
- package/dist/casino-tournament-banner/p-890a4a7f.js +0 -2
- package/dist/casino-tournament-banner/p-cf75bb37.entry.js +0 -9
|
@@ -24,7 +24,7 @@ const NAMESPACE = 'casino-tournament-banner';
|
|
|
24
24
|
const BUILD = /* casino-tournament-banner */ { 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: false, 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: false, propString: true, reflect: true, scoped: false, scopedSlotTextContentFix: false, scriptDataOpts: false, shadowDelegatesFocus: false, shadowDom: true, slot: false, slotChildNodesFix: false, slotRelocation: false, state: true, style: true, svg: true, taskQueue: true, transformTagName: false, updatable: true, vdomAttribute: true, vdomClass: true, vdomFunctional: false, vdomKey: true, vdomListener: true, vdomPropOrAttr: true, vdomRef: false, vdomRender: true, vdomStyle: false, 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) => {
|
|
@@ -380,31 +380,7 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
|
|
|
380
380
|
if (nonce != null) {
|
|
381
381
|
styleElm.setAttribute("nonce", nonce);
|
|
382
382
|
}
|
|
383
|
-
|
|
384
|
-
if (styleContainerNode.nodeName === "HEAD") {
|
|
385
|
-
const preconnectLinks = styleContainerNode.querySelectorAll("link[rel=preconnect]");
|
|
386
|
-
const referenceNode2 = preconnectLinks.length > 0 ? preconnectLinks[preconnectLinks.length - 1].nextSibling : styleContainerNode.querySelector("style");
|
|
387
|
-
styleContainerNode.insertBefore(styleElm, referenceNode2);
|
|
388
|
-
} else if ("host" in styleContainerNode) {
|
|
389
|
-
if (supportsConstructableStylesheets) {
|
|
390
|
-
const stylesheet = new CSSStyleSheet();
|
|
391
|
-
stylesheet.replaceSync(style);
|
|
392
|
-
styleContainerNode.adoptedStyleSheets = [stylesheet, ...styleContainerNode.adoptedStyleSheets];
|
|
393
|
-
} else {
|
|
394
|
-
const existingStyleContainer = styleContainerNode.querySelector("style");
|
|
395
|
-
if (existingStyleContainer) {
|
|
396
|
-
existingStyleContainer.innerHTML = style + existingStyleContainer.innerHTML;
|
|
397
|
-
} else {
|
|
398
|
-
styleContainerNode.prepend(styleElm);
|
|
399
|
-
}
|
|
400
|
-
}
|
|
401
|
-
} else {
|
|
402
|
-
styleContainerNode.append(styleElm);
|
|
403
|
-
}
|
|
404
|
-
}
|
|
405
|
-
if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */ && styleContainerNode.nodeName !== "HEAD") {
|
|
406
|
-
styleContainerNode.insertBefore(styleElm, null);
|
|
407
|
-
}
|
|
383
|
+
styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector("link"));
|
|
408
384
|
}
|
|
409
385
|
if (cmpMeta.$flags$ & 4 /* hasSlotRelocation */) {
|
|
410
386
|
styleElm.innerHTML += SLOT_FB_CSS;
|
|
@@ -427,7 +403,7 @@ var attachStyles = (hostRef) => {
|
|
|
427
403
|
const scopeId2 = addStyle(
|
|
428
404
|
elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(),
|
|
429
405
|
cmpMeta);
|
|
430
|
-
if (flags & 10 /* needsScopedEncapsulation */
|
|
406
|
+
if (flags & 10 /* needsScopedEncapsulation */) {
|
|
431
407
|
elm["s-sc"] = scopeId2;
|
|
432
408
|
elm.classList.add(scopeId2 + "-h");
|
|
433
409
|
}
|
|
@@ -471,11 +447,7 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
|
|
|
471
447
|
if (memberName === "list") {
|
|
472
448
|
isProp = false;
|
|
473
449
|
} else if (oldValue == null || elm[memberName] != n) {
|
|
474
|
-
|
|
475
|
-
elm[memberName] = n;
|
|
476
|
-
} else {
|
|
477
|
-
elm.setAttribute(memberName, n);
|
|
478
|
-
}
|
|
450
|
+
elm[memberName] = n;
|
|
479
451
|
}
|
|
480
452
|
} else {
|
|
481
453
|
elm[memberName] = newValue;
|
|
@@ -555,9 +527,7 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
|
|
|
555
527
|
{
|
|
556
528
|
updateElement(null, newVNode2, isSvgMode);
|
|
557
529
|
}
|
|
558
|
-
|
|
559
|
-
const isElementWithinShadowRoot = !rootNode.querySelector("body");
|
|
560
|
-
if (!isElementWithinShadowRoot && BUILD.scoped && isDef(scopeId) && elm["s-si"] !== scopeId) {
|
|
530
|
+
if (isDef(scopeId) && elm["s-si"] !== scopeId) {
|
|
561
531
|
elm.classList.add(elm["s-si"] = scopeId);
|
|
562
532
|
}
|
|
563
533
|
if (newVNode2.$children$) {
|
|
@@ -721,10 +691,7 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
|
|
|
721
691
|
elm.textContent = "";
|
|
722
692
|
}
|
|
723
693
|
addVnodes(elm, null, newVNode2, newChildren, 0, newChildren.length - 1);
|
|
724
|
-
} else if (
|
|
725
|
-
// don't do this on initial render as it can cause non-hydrated content to be removed
|
|
726
|
-
!isInitialRender && BUILD.updatable && oldChildren !== null
|
|
727
|
-
) {
|
|
694
|
+
} else if (oldChildren !== null) {
|
|
728
695
|
removeVnodes(oldChildren, 0, oldChildren.length - 1);
|
|
729
696
|
}
|
|
730
697
|
if (isSvgMode && tag === "svg") {
|
|
@@ -993,8 +960,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
993
960
|
if (this.hasOwnProperty(propName)) {
|
|
994
961
|
newValue = this[propName];
|
|
995
962
|
delete this[propName];
|
|
996
|
-
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" &&
|
|
997
|
-
this[propName] == newValue) {
|
|
963
|
+
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" && this[propName] == newValue) {
|
|
998
964
|
return;
|
|
999
965
|
} else if (propName == null) {
|
|
1000
966
|
const hostRef = getHostRef(this);
|
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-0c7c7ceb.js');
|
|
6
6
|
const appGlobals = require('./app-globals-3a1e7e63.js');
|
|
7
7
|
|
|
8
8
|
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-4dc9a6b7.js';
|
|
2
|
+
export { s as setNonce } from './index-4dc9a6b7.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.19.2 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
var patchBrowser = () => {
|
|
9
9
|
const importMeta = import.meta.url;
|