@public-ui/hydrate 1.7.27 → 1.7.28
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/index.d.ts +29 -11
- package/dist/index.js +393 -360
- package/dist/index.mjs +42761 -0
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
7
7
|
|
|
8
|
+
var stream = require('stream');
|
|
9
|
+
|
|
8
10
|
function hydrateFactory($stencilWindow, $stencilHydrateOpts, $stencilHydrateResults, $stencilAfterHydrate, $stencilHydrateResolve) {
|
|
9
11
|
var globalThis = $stencilWindow;
|
|
10
12
|
var self = $stencilWindow;
|
|
@@ -128,7 +130,7 @@ const NAMESPACE = 'kolibri';
|
|
|
128
130
|
const BUILD = /* kolibri */ { allRenderFn: true, appendChildSlotFix: false, asyncLoading: true, attachStyles: true, cloneNodeFix: false, cmpDidLoad: true, cmpDidRender: true, cmpDidUnload: false, cmpDidUpdate: false, cmpShouldUpdate: false, cmpWillLoad: true, cmpWillRender: true, cmpWillUpdate: false, connectedCallback: true, constructableCSS: false, cssAnnotations: true, devTools: false, disconnectedCallback: true, 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: true, hydrateServerSide: true, hydratedAttribute: false, hydratedClass: true, hydratedSelectorName: "hydrated", invisiblePrehydration: true, isDebug: false, isDev: false, isTesting: false, lazyLoad: true, lifecycle: true, lifecycleDOMEvents: false, member: true, method: true, mode: true, 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, shadowDomShim: true, slot: true, slotChildNodesFix: false, slotRelocation: true, state: true, style: true, svg: true, taskQueue: true, updatable: true, vdomAttribute: true, vdomClass: true, vdomFunctional: true, vdomKey: true, vdomListener: true, vdomPropOrAttr: true, vdomRef: true, vdomRender: true, vdomStyle: true, vdomText: true, vdomXlink: true, watchCallback: true };
|
|
129
131
|
|
|
130
132
|
/*
|
|
131
|
-
Stencil Hydrate Platform v4.
|
|
133
|
+
Stencil Hydrate Platform v4.20.0 | MIT Licensed | https://stenciljs.com
|
|
132
134
|
*/
|
|
133
135
|
var __defProp = Object.defineProperty;
|
|
134
136
|
var __export = (target, all) => {
|
|
@@ -147,7 +149,6 @@ var isComplexType = (o) => {
|
|
|
147
149
|
o = typeof o;
|
|
148
150
|
return o === "object" || o === "function";
|
|
149
151
|
};
|
|
150
|
-
var isPromise = (v) => !!v && (typeof v === "object" || typeof v === "function") && typeof v.then === "function";
|
|
151
152
|
|
|
152
153
|
// src/utils/query-nonce-meta-tag-content.ts
|
|
153
154
|
function queryNonceMetaTagContent(doc2) {
|
|
@@ -415,17 +416,6 @@ var clientHydrate = (parentVNode, childRenderNodes, slotNodes, shadowRootNodes,
|
|
|
415
416
|
}
|
|
416
417
|
}
|
|
417
418
|
}
|
|
418
|
-
for (i2 = node.childNodes.length - 1; i2 >= 0; i2--) {
|
|
419
|
-
clientHydrate(
|
|
420
|
-
parentVNode,
|
|
421
|
-
childRenderNodes,
|
|
422
|
-
slotNodes,
|
|
423
|
-
shadowRootNodes,
|
|
424
|
-
hostElm,
|
|
425
|
-
node.childNodes[i2],
|
|
426
|
-
hostId
|
|
427
|
-
);
|
|
428
|
-
}
|
|
429
419
|
if (node.shadowRoot) {
|
|
430
420
|
for (i2 = node.shadowRoot.childNodes.length - 1; i2 >= 0; i2--) {
|
|
431
421
|
clientHydrate(
|
|
@@ -439,6 +429,17 @@ var clientHydrate = (parentVNode, childRenderNodes, slotNodes, shadowRootNodes,
|
|
|
439
429
|
);
|
|
440
430
|
}
|
|
441
431
|
}
|
|
432
|
+
for (i2 = node.childNodes.length - 1; i2 >= 0; i2--) {
|
|
433
|
+
clientHydrate(
|
|
434
|
+
parentVNode,
|
|
435
|
+
childRenderNodes,
|
|
436
|
+
slotNodes,
|
|
437
|
+
shadowRootNodes,
|
|
438
|
+
hostElm,
|
|
439
|
+
node.childNodes[i2],
|
|
440
|
+
hostId
|
|
441
|
+
);
|
|
442
|
+
}
|
|
442
443
|
} else if (node.nodeType === 8 /* CommentNode */) {
|
|
443
444
|
childIdSplt = node.nodeValue.split(".");
|
|
444
445
|
if (childIdSplt[1] === hostId || childIdSplt[1] === "0") {
|
|
@@ -516,14 +517,14 @@ var clientHydrate = (parentVNode, childRenderNodes, slotNodes, shadowRootNodes,
|
|
|
516
517
|
var initializeDocumentHydrate = (node, orgLocNodes) => {
|
|
517
518
|
if (node.nodeType === 1 /* ElementNode */) {
|
|
518
519
|
let i2 = 0;
|
|
519
|
-
for (; i2 < node.childNodes.length; i2++) {
|
|
520
|
-
initializeDocumentHydrate(node.childNodes[i2], orgLocNodes);
|
|
521
|
-
}
|
|
522
520
|
if (node.shadowRoot) {
|
|
523
|
-
for (
|
|
521
|
+
for (; i2 < node.shadowRoot.childNodes.length; i2++) {
|
|
524
522
|
initializeDocumentHydrate(node.shadowRoot.childNodes[i2], orgLocNodes);
|
|
525
523
|
}
|
|
526
524
|
}
|
|
525
|
+
for (i2 = 0; i2 < node.childNodes.length; i2++) {
|
|
526
|
+
initializeDocumentHydrate(node.childNodes[i2], orgLocNodes);
|
|
527
|
+
}
|
|
527
528
|
} else if (node.nodeType === 8 /* CommentNode */) {
|
|
528
529
|
const childIdSplt = node.nodeValue.split(".");
|
|
529
530
|
if (childIdSplt[0] === ORG_LOCATION_ID) {
|
|
@@ -588,10 +589,21 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
|
|
|
588
589
|
if (nonce != null) {
|
|
589
590
|
styleElm.setAttribute("nonce", nonce);
|
|
590
591
|
}
|
|
591
|
-
{
|
|
592
|
+
if (cmpMeta.$flags$ & 2 /* scopedCssEncapsulation */) {
|
|
592
593
|
styleElm.setAttribute(HYDRATED_STYLE_ID, scopeId2);
|
|
593
594
|
}
|
|
594
|
-
|
|
595
|
+
const injectStyle = (
|
|
596
|
+
/**
|
|
597
|
+
* we render a scoped component
|
|
598
|
+
*/
|
|
599
|
+
!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) || /**
|
|
600
|
+
* we are using shadow dom and render the style tag within the shadowRoot
|
|
601
|
+
*/
|
|
602
|
+
cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */ && styleContainerNode.nodeName !== "HEAD"
|
|
603
|
+
);
|
|
604
|
+
if (injectStyle) {
|
|
605
|
+
styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector("link"));
|
|
606
|
+
}
|
|
595
607
|
}
|
|
596
608
|
if (cmpMeta.$flags$ & 4 /* hasSlotRelocation */) {
|
|
597
609
|
styleElm.innerHTML += SLOT_FB_CSS;
|
|
@@ -610,11 +622,11 @@ var attachStyles = (hostRef) => {
|
|
|
610
622
|
const flags = cmpMeta.$flags$;
|
|
611
623
|
const endAttachStyles = createTime("attachStyles", cmpMeta.$tagName$);
|
|
612
624
|
const scopeId2 = addStyle(
|
|
613
|
-
elm.getRootNode(),
|
|
625
|
+
elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(),
|
|
614
626
|
cmpMeta,
|
|
615
627
|
hostRef.$modeName$
|
|
616
628
|
);
|
|
617
|
-
if (flags & 10 /* needsScopedEncapsulation */) {
|
|
629
|
+
if (flags & 10 /* needsScopedEncapsulation */ && flags & 2 /* scopedCssEncapsulation */) {
|
|
618
630
|
elm["s-sc"] = scopeId2;
|
|
619
631
|
elm.classList.add(scopeId2 + "-h");
|
|
620
632
|
}
|
|
@@ -787,7 +799,7 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
|
|
|
787
799
|
}
|
|
788
800
|
elm = newVNode2.$elm$ = doc.createElementNS(
|
|
789
801
|
isSvgMode ? SVG_NS : HTML_NS,
|
|
790
|
-
newVNode2.$flags$ & 2 /* isSlotFallback */ ? "slot-fb" : newVNode2.$tag$
|
|
802
|
+
!useNativeShadowDom && BUILD.slotRelocation && newVNode2.$flags$ & 2 /* isSlotFallback */ ? "slot-fb" : newVNode2.$tag$
|
|
791
803
|
) ;
|
|
792
804
|
if (isSvgMode && newVNode2.$tag$ === "foreignObject") {
|
|
793
805
|
isSvgMode = false;
|
|
@@ -795,7 +807,9 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
|
|
|
795
807
|
{
|
|
796
808
|
updateElement(null, newVNode2, isSvgMode);
|
|
797
809
|
}
|
|
798
|
-
|
|
810
|
+
const rootNode = elm.getRootNode();
|
|
811
|
+
const isElementWithinShadowRoot = !rootNode.querySelector("body");
|
|
812
|
+
if (!isElementWithinShadowRoot && BUILD.scoped && isDef(scopeId) && elm["s-si"] !== scopeId) {
|
|
799
813
|
elm.classList.add(elm["s-si"] = scopeId);
|
|
800
814
|
}
|
|
801
815
|
if (newVNode2.$children$) {
|
|
@@ -986,6 +1000,15 @@ var updateChildren = (parentElm, oldCh, newVNode2, newCh, isInitialRender = fals
|
|
|
986
1000
|
var isSameVnode = (leftVNode, rightVNode, isInitialRender = false) => {
|
|
987
1001
|
if (leftVNode.$tag$ === rightVNode.$tag$) {
|
|
988
1002
|
if (leftVNode.$tag$ === "slot") {
|
|
1003
|
+
if (
|
|
1004
|
+
// The component gets hydrated and no VDOM has been initialized.
|
|
1005
|
+
// Here the comparison can't happen as $name$ property is not set for `leftNode`.
|
|
1006
|
+
"$nodeId$" in leftVNode && isInitialRender && // `leftNode` is not from type HTMLComment which would cause many
|
|
1007
|
+
// hydration comments to be removed
|
|
1008
|
+
leftVNode.$elm$.nodeType !== 8
|
|
1009
|
+
) {
|
|
1010
|
+
return false;
|
|
1011
|
+
}
|
|
989
1012
|
return leftVNode.$name$ === rightVNode.$name$;
|
|
990
1013
|
}
|
|
991
1014
|
if (!isInitialRender) {
|
|
@@ -1022,7 +1045,10 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
|
|
|
1022
1045
|
elm.textContent = "";
|
|
1023
1046
|
}
|
|
1024
1047
|
addVnodes(elm, null, newVNode2, newChildren, 0, newChildren.length - 1);
|
|
1025
|
-
} else if (
|
|
1048
|
+
} else if (
|
|
1049
|
+
// don't do this on initial render as it can cause non-hydrated content to be removed
|
|
1050
|
+
!isInitialRender && BUILD.updatable && oldChildren !== null
|
|
1051
|
+
) {
|
|
1026
1052
|
removeVnodes(oldChildren, 0, oldChildren.length - 1);
|
|
1027
1053
|
}
|
|
1028
1054
|
if (isSvgMode && tag === "svg") {
|
|
@@ -1162,7 +1188,7 @@ var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
|
|
|
1162
1188
|
{
|
|
1163
1189
|
scopeId = hostElm["s-sc"];
|
|
1164
1190
|
}
|
|
1165
|
-
useNativeShadowDom =
|
|
1191
|
+
useNativeShadowDom = (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) !== 0;
|
|
1166
1192
|
{
|
|
1167
1193
|
contentRef = hostElm["s-cr"];
|
|
1168
1194
|
checkSlotFallbackVisibility = false;
|
|
@@ -1279,7 +1305,10 @@ var dispatchHooks = (hostRef, isInitialLoad) => {
|
|
|
1279
1305
|
endSchedule();
|
|
1280
1306
|
return enqueue(maybePromise, () => updateComponent(hostRef, instance, isInitialLoad));
|
|
1281
1307
|
};
|
|
1282
|
-
var enqueue = (maybePromise, fn) => isPromisey(maybePromise) ? maybePromise.then(fn)
|
|
1308
|
+
var enqueue = (maybePromise, fn) => isPromisey(maybePromise) ? maybePromise.then(fn).catch((err2) => {
|
|
1309
|
+
console.error(err2);
|
|
1310
|
+
fn();
|
|
1311
|
+
}) : fn();
|
|
1283
1312
|
var isPromisey = (maybePromise) => maybePromise instanceof Promise || maybePromise && maybePromise.then && typeof maybePromise.then === "function";
|
|
1284
1313
|
var updateComponent = async (hostRef, instance, isInitialLoad) => {
|
|
1285
1314
|
var _a;
|
|
@@ -1460,13 +1489,13 @@ var setValue = (ref, propName, newVal, cmpMeta) => {
|
|
|
1460
1489
|
|
|
1461
1490
|
// src/runtime/proxy-component.ts
|
|
1462
1491
|
var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
1463
|
-
var _a;
|
|
1492
|
+
var _a, _b;
|
|
1464
1493
|
const prototype = Cstr.prototype;
|
|
1465
|
-
if (cmpMeta.$members$) {
|
|
1466
|
-
if (Cstr.watchers) {
|
|
1494
|
+
if (cmpMeta.$members$ || (cmpMeta.$watchers$ || Cstr.watchers)) {
|
|
1495
|
+
if (Cstr.watchers && !cmpMeta.$watchers$) {
|
|
1467
1496
|
cmpMeta.$watchers$ = Cstr.watchers;
|
|
1468
1497
|
}
|
|
1469
|
-
const members = Object.entries(cmpMeta.$members$);
|
|
1498
|
+
const members = Object.entries((_a = cmpMeta.$members$) != null ? _a : {});
|
|
1470
1499
|
members.map(([memberName, [memberFlags]]) => {
|
|
1471
1500
|
if ((memberFlags & 31 /* Prop */ || (flags & 2 /* proxyState */) && memberFlags & 32 /* State */)) {
|
|
1472
1501
|
Object.defineProperty(prototype, memberName, {
|
|
@@ -1501,7 +1530,8 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
1501
1530
|
if (this.hasOwnProperty(propName)) {
|
|
1502
1531
|
newValue = this[propName];
|
|
1503
1532
|
delete this[propName];
|
|
1504
|
-
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" &&
|
|
1533
|
+
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" && // cast type to number to avoid TS compiler issues
|
|
1534
|
+
this[propName] == newValue) {
|
|
1505
1535
|
return;
|
|
1506
1536
|
} else if (propName == null) {
|
|
1507
1537
|
const hostRef = getHostRef(this);
|
|
@@ -1522,7 +1552,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
1522
1552
|
};
|
|
1523
1553
|
Cstr.observedAttributes = Array.from(
|
|
1524
1554
|
/* @__PURE__ */ new Set([
|
|
1525
|
-
...Object.keys((
|
|
1555
|
+
...Object.keys((_b = cmpMeta.$watchers$) != null ? _b : {}),
|
|
1526
1556
|
...members.filter(([_, m]) => m[0] & 15 /* HasAttribute */).map(([propName, m]) => {
|
|
1527
1557
|
var _a2;
|
|
1528
1558
|
const attrName = m[1] || propName;
|
|
@@ -1587,11 +1617,13 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
1587
1617
|
customElements.whenDefined(cmpTag).then(() => hostRef.$flags$ |= 128 /* isWatchReady */);
|
|
1588
1618
|
}
|
|
1589
1619
|
if (Cstr && Cstr.style) {
|
|
1590
|
-
let style
|
|
1591
|
-
if (typeof style
|
|
1620
|
+
let style;
|
|
1621
|
+
if (typeof Cstr.style === "string") {
|
|
1622
|
+
style = Cstr.style;
|
|
1623
|
+
} else if (typeof Cstr.style !== "string") {
|
|
1592
1624
|
hostRef.$modeName$ = computeMode(elm);
|
|
1593
1625
|
if (hostRef.$modeName$) {
|
|
1594
|
-
style = style[hostRef.$modeName$];
|
|
1626
|
+
style = Cstr.style[hostRef.$modeName$];
|
|
1595
1627
|
}
|
|
1596
1628
|
if (hostRef.$modeName$) {
|
|
1597
1629
|
elm.setAttribute("s-mode", hostRef.$modeName$);
|
|
@@ -1631,6 +1663,10 @@ var connectedCallback = (elm) => {
|
|
|
1631
1663
|
{
|
|
1632
1664
|
hostId = elm.getAttribute(HYDRATE_ID);
|
|
1633
1665
|
if (hostId) {
|
|
1666
|
+
if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) {
|
|
1667
|
+
const scopeId2 = addStyle(elm.shadowRoot, cmpMeta, elm.getAttribute("s-mode")) ;
|
|
1668
|
+
elm.classList.remove(scopeId2 + "-h", scopeId2 + "-s");
|
|
1669
|
+
}
|
|
1634
1670
|
initializeClientHydrate(elm, cmpMeta.$tagName$, hostId, hostRef);
|
|
1635
1671
|
}
|
|
1636
1672
|
}
|
|
@@ -1724,6 +1760,7 @@ var insertVdomAnnotations = (doc2, staticComponents) => {
|
|
|
1724
1760
|
}
|
|
1725
1761
|
};
|
|
1726
1762
|
var parseVNodeAnnotations = (doc2, node, docData, orgLocationNodes) => {
|
|
1763
|
+
var _a;
|
|
1727
1764
|
if (node == null) {
|
|
1728
1765
|
return;
|
|
1729
1766
|
}
|
|
@@ -1731,7 +1768,8 @@ var parseVNodeAnnotations = (doc2, node, docData, orgLocationNodes) => {
|
|
|
1731
1768
|
orgLocationNodes.push(node);
|
|
1732
1769
|
}
|
|
1733
1770
|
if (node.nodeType === 1 /* ElementNode */) {
|
|
1734
|
-
node.childNodes.
|
|
1771
|
+
const childNodes = [...Array.from(node.childNodes), ...Array.from(((_a = node.shadowRoot) == null ? void 0 : _a.childNodes) || [])];
|
|
1772
|
+
childNodes.forEach((childNode) => {
|
|
1735
1773
|
const hostRef = getHostRef(childNode);
|
|
1736
1774
|
if (hostRef != null && !docData.staticComponents.has(childNode.nodeName.toLowerCase())) {
|
|
1737
1775
|
const cmpData = {
|
|
@@ -1812,19 +1850,17 @@ var insertChildVNodeAnnotations = (doc2, vnodeChild, cmpData, hostId, depth, ind
|
|
|
1812
1850
|
var hAsync = (nodeName, vnodeData, ...children) => {
|
|
1813
1851
|
if (Array.isArray(children) && children.length > 0) {
|
|
1814
1852
|
const flatChildren = children.flat(Infinity);
|
|
1815
|
-
if (flatChildren.some(
|
|
1853
|
+
if (flatChildren.some((child) => child instanceof Promise)) {
|
|
1816
1854
|
return Promise.all(flatChildren).then((resolvedChildren) => {
|
|
1817
1855
|
return h$1(nodeName, vnodeData, ...resolvedChildren);
|
|
1818
1856
|
}).catch((err2) => {
|
|
1819
1857
|
return h$1(nodeName, vnodeData);
|
|
1820
1858
|
});
|
|
1821
1859
|
}
|
|
1822
|
-
return h$1(nodeName, vnodeData, ...
|
|
1860
|
+
return h$1(nodeName, vnodeData, ...flatChildren);
|
|
1823
1861
|
}
|
|
1824
1862
|
return h$1(nodeName, vnodeData);
|
|
1825
1863
|
};
|
|
1826
|
-
|
|
1827
|
-
// src/hydrate/platform/proxy-host-element.ts
|
|
1828
1864
|
function proxyHostElement(elm, cmpMeta) {
|
|
1829
1865
|
if (typeof elm.componentOnReady !== "function") {
|
|
1830
1866
|
elm.componentOnReady = componentOnReady;
|
|
@@ -1832,24 +1868,33 @@ function proxyHostElement(elm, cmpMeta) {
|
|
|
1832
1868
|
if (typeof elm.forceUpdate !== "function") {
|
|
1833
1869
|
elm.forceUpdate = forceUpdate2;
|
|
1834
1870
|
}
|
|
1835
|
-
if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) {
|
|
1836
|
-
|
|
1871
|
+
if (!elm.shadowRoot && !!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */)) {
|
|
1872
|
+
{
|
|
1873
|
+
elm.attachShadow({ mode: "open" });
|
|
1874
|
+
}
|
|
1837
1875
|
}
|
|
1838
1876
|
if (cmpMeta.$members$ != null) {
|
|
1839
1877
|
const hostRef = getHostRef(elm);
|
|
1840
1878
|
const members = Object.entries(cmpMeta.$members$);
|
|
1841
1879
|
members.forEach(([memberName, m]) => {
|
|
1880
|
+
var _a, _b;
|
|
1842
1881
|
const memberFlags = m[0];
|
|
1843
1882
|
if (memberFlags & 31 /* Prop */) {
|
|
1844
1883
|
const attributeName = m[1] || memberName;
|
|
1845
|
-
|
|
1884
|
+
let attrValue = elm.getAttribute(attributeName);
|
|
1885
|
+
if ((attrValue == null ? void 0 : attrValue.startsWith("{")) && attrValue.endsWith("}") || (attrValue == null ? void 0 : attrValue.startsWith("[")) && attrValue.endsWith("]")) {
|
|
1886
|
+
try {
|
|
1887
|
+
attrValue = JSON.parse(attrValue);
|
|
1888
|
+
} catch (e) {
|
|
1889
|
+
}
|
|
1890
|
+
}
|
|
1846
1891
|
if (attrValue != null) {
|
|
1847
1892
|
const parsedAttrValue = parsePropertyValue(attrValue, memberFlags);
|
|
1848
|
-
hostRef.$instanceValues
|
|
1893
|
+
(_a = hostRef == null ? void 0 : hostRef.$instanceValues$) == null ? void 0 : _a.set(memberName, parsedAttrValue);
|
|
1849
1894
|
}
|
|
1850
1895
|
const ownValue = elm[memberName];
|
|
1851
1896
|
if (ownValue !== void 0) {
|
|
1852
|
-
hostRef.$instanceValues
|
|
1897
|
+
(_b = hostRef == null ? void 0 : hostRef.$instanceValues$) == null ? void 0 : _b.set(memberName, ownValue);
|
|
1853
1898
|
delete elm[memberName];
|
|
1854
1899
|
}
|
|
1855
1900
|
Object.defineProperty(elm, memberName, {
|
|
@@ -1865,8 +1910,12 @@ function proxyHostElement(elm, cmpMeta) {
|
|
|
1865
1910
|
} else if (memberFlags & 64 /* Method */) {
|
|
1866
1911
|
Object.defineProperty(elm, memberName, {
|
|
1867
1912
|
value(...args) {
|
|
1913
|
+
var _a2;
|
|
1868
1914
|
const ref = getHostRef(this);
|
|
1869
|
-
return ref.$onInstancePromise
|
|
1915
|
+
return (_a2 = ref == null ? void 0 : ref.$onInstancePromise$) == null ? void 0 : _a2.then(() => {
|
|
1916
|
+
var _a3;
|
|
1917
|
+
return (_a3 = ref == null ? void 0 : ref.$lazyInstance$) == null ? void 0 : _a3[memberName](...args);
|
|
1918
|
+
}).catch(consoleError);
|
|
1870
1919
|
}
|
|
1871
1920
|
});
|
|
1872
1921
|
}
|
|
@@ -1874,7 +1923,8 @@ function proxyHostElement(elm, cmpMeta) {
|
|
|
1874
1923
|
}
|
|
1875
1924
|
}
|
|
1876
1925
|
function componentOnReady() {
|
|
1877
|
-
|
|
1926
|
+
var _a;
|
|
1927
|
+
return (_a = getHostRef(this)) == null ? void 0 : _a.$onReadyPromise$;
|
|
1878
1928
|
}
|
|
1879
1929
|
function forceUpdate2() {
|
|
1880
1930
|
}
|
|
@@ -1890,7 +1940,7 @@ function hydrateApp(win2, opts, results, afterHydrate, resolve) {
|
|
|
1890
1940
|
let tmrId;
|
|
1891
1941
|
let ranCompleted = false;
|
|
1892
1942
|
function hydratedComplete() {
|
|
1893
|
-
|
|
1943
|
+
globalThis.clearTimeout(tmrId);
|
|
1894
1944
|
createdElements.clear();
|
|
1895
1945
|
connectedElements.clear();
|
|
1896
1946
|
if (!ranCompleted) {
|
|
@@ -1948,7 +1998,7 @@ function hydrateApp(win2, opts, results, afterHydrate, resolve) {
|
|
|
1948
1998
|
if (isValidComponent(elm, opts) && results.hydratedCount < opts.maxHydrateCount) {
|
|
1949
1999
|
if (!connectedElements.has(elm) && shouldHydrate(elm)) {
|
|
1950
2000
|
connectedElements.add(elm);
|
|
1951
|
-
return hydrateComponent(win2, results, elm.nodeName, elm, waitingElements);
|
|
2001
|
+
return hydrateComponent.call(elm, win2, results, elm.nodeName, elm, waitingElements);
|
|
1952
2002
|
}
|
|
1953
2003
|
}
|
|
1954
2004
|
return resolved2;
|
|
@@ -1969,7 +2019,7 @@ function hydrateApp(win2, opts, results, afterHydrate, resolve) {
|
|
|
1969
2019
|
patchElement2(elm);
|
|
1970
2020
|
return elm;
|
|
1971
2021
|
};
|
|
1972
|
-
tmrId =
|
|
2022
|
+
tmrId = globalThis.setTimeout(timeoutExceeded, opts.timeout);
|
|
1973
2023
|
plt.$resourcesUrl$ = new URL(opts.resourcesUrl || "./", doc.baseURI).href;
|
|
1974
2024
|
patchChild2(win2.document.body);
|
|
1975
2025
|
waitLoop2().then(hydratedComplete).catch(hydratedError);
|
|
@@ -1988,6 +2038,7 @@ async function hydrateComponent(win2, results, tagName, elm, waitingElements) {
|
|
|
1988
2038
|
const cmpMeta = Cstr.cmpMeta;
|
|
1989
2039
|
if (cmpMeta != null) {
|
|
1990
2040
|
waitingElements.add(elm);
|
|
2041
|
+
getHostRef(this);
|
|
1991
2042
|
try {
|
|
1992
2043
|
connectedCallback(elm);
|
|
1993
2044
|
await elm.componentOnReady();
|
|
@@ -2158,7 +2209,7 @@ var registerComponents = (Cstrs) => {
|
|
|
2158
2209
|
var win = window;
|
|
2159
2210
|
var doc = win.document;
|
|
2160
2211
|
var writeTask = (cb) => {
|
|
2161
|
-
|
|
2212
|
+
nextTick(() => {
|
|
2162
2213
|
try {
|
|
2163
2214
|
cb();
|
|
2164
2215
|
} catch (e) {
|
|
@@ -2183,7 +2234,7 @@ var plt = {
|
|
|
2183
2234
|
rel: (el, eventName, listener, opts) => el.removeEventListener(eventName, listener, opts),
|
|
2184
2235
|
ce: (eventName, opts) => new win.CustomEvent(eventName, opts)
|
|
2185
2236
|
};
|
|
2186
|
-
var supportsShadow =
|
|
2237
|
+
var supportsShadow = BUILD.shadowDom;
|
|
2187
2238
|
var hostRefs = /* @__PURE__ */ new WeakMap();
|
|
2188
2239
|
var getHostRef = (ref) => hostRefs.get(ref);
|
|
2189
2240
|
var registerInstance = (lazyInstance, hostRef) => hostRefs.set(hostRef.$lazyInstance$ = lazyInstance, hostRef);
|
|
@@ -3979,7 +4030,7 @@ let KolSelectTag = 'kol-select';
|
|
|
3979
4030
|
let KolSpanWcTag = 'kol-span-wc';
|
|
3980
4031
|
let KolTooltipWcTag = 'kol-tooltip-wc';
|
|
3981
4032
|
|
|
3982
|
-
const defaultStyleCss$I = "
|
|
4033
|
+
const defaultStyleCss$I = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host>abbr{cursor:help}";
|
|
3983
4034
|
var KolAbbrDefaultStyle0 = defaultStyleCss$I;
|
|
3984
4035
|
|
|
3985
4036
|
class KolAbbr {
|
|
@@ -4048,7 +4099,7 @@ const watchHeadingLevel = (component, value) => {
|
|
|
4048
4099
|
});
|
|
4049
4100
|
};
|
|
4050
4101
|
|
|
4051
|
-
const defaultStyleCss$H = "
|
|
4102
|
+
const defaultStyleCss$H = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:block}.wrapper{display:grid;grid-template-rows:0fr;overflow:hidden;transition:grid-template-rows 0.3s}.accordion.open .wrapper{grid-template-rows:1fr}.animation-wrapper{min-height:0;transition:visibility 0.3s;visibility:hidden}.accordion.open .animation-wrapper{visibility:visible}@media (prefers-reduced-motion){.animation-wrapper,.wrapper{transition-duration:0s}}@media print{.accordion:not(.open) .animation-wrapper{display:none}}.accordion .kol-heading-wc .kol-button-wc button .kol-span-wc{justify-items:start}";
|
|
4052
4103
|
var KolAccordionDefaultStyle0 = defaultStyleCss$H;
|
|
4053
4104
|
|
|
4054
4105
|
featureHint(`[KolAccordion] Anfrage nach einer KolAccordionGroup bei dem immer nur ein Accordion geöffnet ist.
|
|
@@ -4142,7 +4193,7 @@ class KolAccordion {
|
|
|
4142
4193
|
}; }
|
|
4143
4194
|
}
|
|
4144
4195
|
|
|
4145
|
-
const defaultStyleCss$G = "
|
|
4196
|
+
const defaultStyleCss$G = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:block}.kol-alert-wc{display:grid}.kol-alert-wc .heading{display:flex;place-items:center}.kol-alert-wc .heading>div{flex-grow:1}";
|
|
4146
4197
|
var KolAlertDefaultStyle0 = defaultStyleCss$G;
|
|
4147
4198
|
|
|
4148
4199
|
class KolAlert {
|
|
@@ -6843,7 +6894,7 @@ class KolAlertWc {
|
|
|
6843
6894
|
}; }
|
|
6844
6895
|
}
|
|
6845
6896
|
|
|
6846
|
-
const defaultStyleCss$F = "
|
|
6897
|
+
const defaultStyleCss$F = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:block}.container{border-radius:50%;overflow:hidden;width:100px;height:100px}.image{width:100%;height:100%}.initials{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:#d3d3d3;font-size:calc(32rem / var(--kolibri-root-font-size, 16))}";
|
|
6847
6898
|
var KolAvatarDefaultStyle0 = defaultStyleCss$F;
|
|
6848
6899
|
|
|
6849
6900
|
class KolAvatar {
|
|
@@ -7483,7 +7534,7 @@ const handleColorChange = (value) => {
|
|
|
7483
7534
|
};
|
|
7484
7535
|
};
|
|
7485
7536
|
|
|
7486
|
-
const defaultStyleCss$E = "
|
|
7537
|
+
const defaultStyleCss$E = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host>span{display:inline-flex;place-items:center}:host>span>.kol-button-wc button{color:inherit}";
|
|
7487
7538
|
var KolBadgeDefaultStyle0 = defaultStyleCss$E;
|
|
7488
7539
|
|
|
7489
7540
|
featureHint(`[KolBadge] Optimierung des _color-Properties (rgba, rgb, hex usw.).`);
|
|
@@ -7590,7 +7641,7 @@ const watchNavLinks = (className, component, value) => {
|
|
|
7590
7641
|
uiUxHintMillerscheZahl(className, component.state._links.length);
|
|
7591
7642
|
};
|
|
7592
7643
|
|
|
7593
|
-
const defaultStyleCss$D = "
|
|
7644
|
+
const defaultStyleCss$D = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}li,ul{margin:0;padding:0;list-style:none;display:flex;gap:0.5em;flex-wrap:wrap;place-items:center}.kol-icon::part(separator){font-weight:900;font-size:0.7em}.kol-icon::part(separator):before{content:\"\\f054\";font-family:\"Font Awesome 6 Free\"}";
|
|
7594
7645
|
var KolBreadcrumbDefaultStyle0 = defaultStyleCss$D;
|
|
7595
7646
|
|
|
7596
7647
|
class KolBreadcrumb {
|
|
@@ -7659,7 +7710,7 @@ class KolBreadcrumb {
|
|
|
7659
7710
|
}; }
|
|
7660
7711
|
}
|
|
7661
7712
|
|
|
7662
|
-
const defaultStyleCss$C = "
|
|
7713
|
+
const defaultStyleCss$C = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:inline-block}:is(a,button){display:inline-flex;place-items:center;text-align:center;text-decoration-line:none}:is(a,button)>.kol-span-wc{margin:auto;width:100%}:is(button):disabled{cursor:not-allowed;opacity:0.5}";
|
|
7663
7714
|
var KolButtonDefaultStyle0 = defaultStyleCss$C;
|
|
7664
7715
|
|
|
7665
7716
|
class KolButton {
|
|
@@ -7739,7 +7790,7 @@ class KolButton {
|
|
|
7739
7790
|
}; }
|
|
7740
7791
|
}
|
|
7741
7792
|
|
|
7742
|
-
const defaultStyleCss$B = "
|
|
7793
|
+
const defaultStyleCss$B = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host>.kol-button-group-wc{display:flex;flex-wrap:wrap}";
|
|
7743
7794
|
var KolButtonGroupDefaultStyle0 = defaultStyleCss$B;
|
|
7744
7795
|
|
|
7745
7796
|
class KolButtonGroup {
|
|
@@ -7782,7 +7833,7 @@ class KolButtonGroupWc {
|
|
|
7782
7833
|
}; }
|
|
7783
7834
|
}
|
|
7784
7835
|
|
|
7785
|
-
const defaultStyleCss$A = "
|
|
7836
|
+
const defaultStyleCss$A = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:inline-block}:is(a,button){align-items:baseline;display:inline-flex;place-items:center;text-align:left;text-decoration-line:underline}:is(a,button):is(:focus,:hover){text-decoration-thickness:0.2em}.skip{left:-99999px;overflow:hidden;position:absolute;z-index:9999999;line-height:1em}.skip:focus{background-color:#fff;left:unset;padding:1em;position:unset}.kol-icon.external-link-icon{display:inline-flex}";
|
|
7786
7837
|
var KolButtonLinkDefaultStyle0 = defaultStyleCss$A;
|
|
7787
7838
|
|
|
7788
7839
|
class KolButtonLink {
|
|
@@ -8529,7 +8580,7 @@ const validateHasFooter = (component, value) => {
|
|
|
8529
8580
|
watchBoolean(component, '_hasFooter', value);
|
|
8530
8581
|
};
|
|
8531
8582
|
|
|
8532
|
-
const defaultStyleCss$z = "
|
|
8583
|
+
const defaultStyleCss$z = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host>div.card{height:100%;position:relative}.close{position:absolute;top:0;right:0}";
|
|
8533
8584
|
var KolCardDefaultStyle0 = defaultStyleCss$z;
|
|
8534
8585
|
|
|
8535
8586
|
class KolCard {
|
|
@@ -8694,7 +8745,7 @@ class DetailsAnimationController {
|
|
|
8694
8745
|
}
|
|
8695
8746
|
}
|
|
8696
8747
|
|
|
8697
|
-
const defaultStyleCss$y = "
|
|
8748
|
+
const defaultStyleCss$y = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:block}details{display:grid}details>summary{cursor:pointer;display:flex;place-items:center}details>summary>span{border-bottom-color:grey;border-bottom-style:solid}details>summary:focus>span,details>summary:hover>span,details[open]>summary>span{border-bottom-color:#000}.content{overflow:hidden}details>.kol-indented-text{margin:0.25em 0 0 0.5em}";
|
|
8698
8749
|
var KolDetailsDefaultStyle0 = defaultStyleCss$y;
|
|
8699
8750
|
|
|
8700
8751
|
class KolDetails {
|
|
@@ -8884,7 +8935,7 @@ class KolForm {
|
|
|
8884
8935
|
}; }
|
|
8885
8936
|
}
|
|
8886
8937
|
|
|
8887
|
-
const defaultStyleCss$x = "
|
|
8938
|
+
const defaultStyleCss$x = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host>.kol-heading-wc{display:grid}:host>.kol-heading-wc>.overline{order:1}:host>.kol-heading-wc>.headline{order:2}";
|
|
8888
8939
|
var KolHeadingDefaultStyle0 = defaultStyleCss$x;
|
|
8889
8940
|
|
|
8890
8941
|
class KolHeading {
|
|
@@ -9000,7 +9051,7 @@ class KolHeadingWc {
|
|
|
9000
9051
|
}; }
|
|
9001
9052
|
}
|
|
9002
9053
|
|
|
9003
|
-
const defaultStyleCss$w = "@font-face{font-family:\"codicon\";font-display:block;src:url(\"./codicon.ttf?0e5b0adf625a37fbcd638d31f0fe72aa\") format(\"truetype\")}/*!@.codicon[class*=codicon-]*/.codicon[class*=codicon-].sc-kol-icon-default{font:normal normal normal 16px/1 codicon;display:inline-block;text-decoration:none;text-rendering:auto;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;user-select:none;-webkit-user-select:none;-ms-user-select:none}@keyframes codicon-spin{100%{transform:rotate(360deg)}}/*!@.codicon-sync.codicon-modifier-spin,\n.codicon-loading.codicon-modifier-spin,\n.codicon-gear.codicon-modifier-spin*/.codicon-sync.codicon-modifier-spin.sc-kol-icon-default,.codicon-loading.codicon-modifier-spin.sc-kol-icon-default,.codicon-gear.codicon-modifier-spin.sc-kol-icon-default{animation:codicon-spin 1.5s steps(30) infinite}/*!@.codicon-modifier-disabled*/.codicon-modifier-disabled.sc-kol-icon-default{opacity:0.5}/*!@.codicon-modifier-hidden*/.codicon-modifier-hidden.sc-kol-icon-default{opacity:0}/*!@.codicon-loading*/.codicon-loading.sc-kol-icon-default{animation-duration:1s !important;animation-timing-function:cubic-bezier(0.53, 0.21, 0.29, 0.67) !important}/*!@.codicon-add:before*/.codicon-add.sc-kol-icon-default:before{content:\"\\ea60\"}/*!@.codicon-plus:before*/.codicon-plus.sc-kol-icon-default:before{content:\"\\ea60\"}/*!@.codicon-gist-new:before*/.codicon-gist-new.sc-kol-icon-default:before{content:\"\\ea60\"}/*!@.codicon-repo-create:before*/.codicon-repo-create.sc-kol-icon-default:before{content:\"\\ea60\"}/*!@.codicon-lightbulb:before*/.codicon-lightbulb.sc-kol-icon-default:before{content:\"\\ea61\"}/*!@.codicon-light-bulb:before*/.codicon-light-bulb.sc-kol-icon-default:before{content:\"\\ea61\"}/*!@.codicon-repo:before*/.codicon-repo.sc-kol-icon-default:before{content:\"\\ea62\"}/*!@.codicon-repo-delete:before*/.codicon-repo-delete.sc-kol-icon-default:before{content:\"\\ea62\"}/*!@.codicon-gist-fork:before*/.codicon-gist-fork.sc-kol-icon-default:before{content:\"\\ea63\"}/*!@.codicon-repo-forked:before*/.codicon-repo-forked.sc-kol-icon-default:before{content:\"\\ea63\"}/*!@.codicon-git-pull-request:before*/.codicon-git-pull-request.sc-kol-icon-default:before{content:\"\\ea64\"}/*!@.codicon-git-pull-request-abandoned:before*/.codicon-git-pull-request-abandoned.sc-kol-icon-default:before{content:\"\\ea64\"}/*!@.codicon-record-keys:before*/.codicon-record-keys.sc-kol-icon-default:before{content:\"\\ea65\"}/*!@.codicon-keyboard:before*/.codicon-keyboard.sc-kol-icon-default:before{content:\"\\ea65\"}/*!@.codicon-tag:before*/.codicon-tag.sc-kol-icon-default:before{content:\"\\ea66\"}/*!@.codicon-tag-add:before*/.codicon-tag-add.sc-kol-icon-default:before{content:\"\\ea66\"}/*!@.codicon-tag-remove:before*/.codicon-tag-remove.sc-kol-icon-default:before{content:\"\\ea66\"}/*!@.codicon-person:before*/.codicon-person.sc-kol-icon-default:before{content:\"\\ea67\"}/*!@.codicon-person-follow:before*/.codicon-person-follow.sc-kol-icon-default:before{content:\"\\ea67\"}/*!@.codicon-person-outline:before*/.codicon-person-outline.sc-kol-icon-default:before{content:\"\\ea67\"}/*!@.codicon-person-filled:before*/.codicon-person-filled.sc-kol-icon-default:before{content:\"\\ea67\"}/*!@.codicon-git-branch:before*/.codicon-git-branch.sc-kol-icon-default:before{content:\"\\ea68\"}/*!@.codicon-git-branch-create:before*/.codicon-git-branch-create.sc-kol-icon-default:before{content:\"\\ea68\"}/*!@.codicon-git-branch-delete:before*/.codicon-git-branch-delete.sc-kol-icon-default:before{content:\"\\ea68\"}/*!@.codicon-source-control:before*/.codicon-source-control.sc-kol-icon-default:before{content:\"\\ea68\"}/*!@.codicon-mirror:before*/.codicon-mirror.sc-kol-icon-default:before{content:\"\\ea69\"}/*!@.codicon-mirror-public:before*/.codicon-mirror-public.sc-kol-icon-default:before{content:\"\\ea69\"}/*!@.codicon-star:before*/.codicon-star.sc-kol-icon-default:before{content:\"\\ea6a\"}/*!@.codicon-star-add:before*/.codicon-star-add.sc-kol-icon-default:before{content:\"\\ea6a\"}/*!@.codicon-star-delete:before*/.codicon-star-delete.sc-kol-icon-default:before{content:\"\\ea6a\"}/*!@.codicon-star-empty:before*/.codicon-star-empty.sc-kol-icon-default:before{content:\"\\ea6a\"}/*!@.codicon-comment:before*/.codicon-comment.sc-kol-icon-default:before{content:\"\\ea6b\"}/*!@.codicon-comment-add:before*/.codicon-comment-add.sc-kol-icon-default:before{content:\"\\ea6b\"}/*!@.codicon-alert:before*/.codicon-alert.sc-kol-icon-default:before{content:\"\\ea6c\"}/*!@.codicon-warning:before*/.codicon-warning.sc-kol-icon-default:before{content:\"\\ea6c\"}/*!@.codicon-search:before*/.codicon-search.sc-kol-icon-default:before{content:\"\\ea6d\"}/*!@.codicon-search-save:before*/.codicon-search-save.sc-kol-icon-default:before{content:\"\\ea6d\"}/*!@.codicon-log-out:before*/.codicon-log-out.sc-kol-icon-default:before{content:\"\\ea6e\"}/*!@.codicon-sign-out:before*/.codicon-sign-out.sc-kol-icon-default:before{content:\"\\ea6e\"}/*!@.codicon-log-in:before*/.codicon-log-in.sc-kol-icon-default:before{content:\"\\ea6f\"}/*!@.codicon-sign-in:before*/.codicon-sign-in.sc-kol-icon-default:before{content:\"\\ea6f\"}/*!@.codicon-eye:before*/.codicon-eye.sc-kol-icon-default:before{content:\"\\ea70\"}/*!@.codicon-eye-unwatch:before*/.codicon-eye-unwatch.sc-kol-icon-default:before{content:\"\\ea70\"}/*!@.codicon-eye-watch:before*/.codicon-eye-watch.sc-kol-icon-default:before{content:\"\\ea70\"}/*!@.codicon-circle-filled:before*/.codicon-circle-filled.sc-kol-icon-default:before{content:\"\\ea71\"}/*!@.codicon-primitive-dot:before*/.codicon-primitive-dot.sc-kol-icon-default:before{content:\"\\ea71\"}/*!@.codicon-close-dirty:before*/.codicon-close-dirty.sc-kol-icon-default:before{content:\"\\ea71\"}/*!@.codicon-debug-breakpoint:before*/.codicon-debug-breakpoint.sc-kol-icon-default:before{content:\"\\ea71\"}/*!@.codicon-debug-breakpoint-disabled:before*/.codicon-debug-breakpoint-disabled.sc-kol-icon-default:before{content:\"\\ea71\"}/*!@.codicon-debug-hint:before*/.codicon-debug-hint.sc-kol-icon-default:before{content:\"\\ea71\"}/*!@.codicon-primitive-square:before*/.codicon-primitive-square.sc-kol-icon-default:before{content:\"\\ea72\"}/*!@.codicon-edit:before*/.codicon-edit.sc-kol-icon-default:before{content:\"\\ea73\"}/*!@.codicon-pencil:before*/.codicon-pencil.sc-kol-icon-default:before{content:\"\\ea73\"}/*!@.codicon-info:before*/.codicon-info.sc-kol-icon-default:before{content:\"\\ea74\"}/*!@.codicon-issue-opened:before*/.codicon-issue-opened.sc-kol-icon-default:before{content:\"\\ea74\"}/*!@.codicon-gist-private:before*/.codicon-gist-private.sc-kol-icon-default:before{content:\"\\ea75\"}/*!@.codicon-git-fork-private:before*/.codicon-git-fork-private.sc-kol-icon-default:before{content:\"\\ea75\"}/*!@.codicon-lock:before*/.codicon-lock.sc-kol-icon-default:before{content:\"\\ea75\"}/*!@.codicon-mirror-private:before*/.codicon-mirror-private.sc-kol-icon-default:before{content:\"\\ea75\"}/*!@.codicon-close:before*/.codicon-close.sc-kol-icon-default:before{content:\"\\ea76\"}/*!@.codicon-remove-close:before*/.codicon-remove-close.sc-kol-icon-default:before{content:\"\\ea76\"}/*!@.codicon-x:before*/.codicon-x.sc-kol-icon-default:before{content:\"\\ea76\"}/*!@.codicon-repo-sync:before*/.codicon-repo-sync.sc-kol-icon-default:before{content:\"\\ea77\"}/*!@.codicon-sync:before*/.codicon-sync.sc-kol-icon-default:before{content:\"\\ea77\"}/*!@.codicon-clone:before*/.codicon-clone.sc-kol-icon-default:before{content:\"\\ea78\"}/*!@.codicon-desktop-download:before*/.codicon-desktop-download.sc-kol-icon-default:before{content:\"\\ea78\"}/*!@.codicon-beaker:before*/.codicon-beaker.sc-kol-icon-default:before{content:\"\\ea79\"}/*!@.codicon-microscope:before*/.codicon-microscope.sc-kol-icon-default:before{content:\"\\ea79\"}/*!@.codicon-vm:before*/.codicon-vm.sc-kol-icon-default:before{content:\"\\ea7a\"}/*!@.codicon-device-desktop:before*/.codicon-device-desktop.sc-kol-icon-default:before{content:\"\\ea7a\"}/*!@.codicon-file:before*/.codicon-file.sc-kol-icon-default:before{content:\"\\ea7b\"}/*!@.codicon-file-text:before*/.codicon-file-text.sc-kol-icon-default:before{content:\"\\ea7b\"}/*!@.codicon-more:before*/.codicon-more.sc-kol-icon-default:before{content:\"\\ea7c\"}/*!@.codicon-ellipsis:before*/.codicon-ellipsis.sc-kol-icon-default:before{content:\"\\ea7c\"}/*!@.codicon-kebab-horizontal:before*/.codicon-kebab-horizontal.sc-kol-icon-default:before{content:\"\\ea7c\"}/*!@.codicon-mail-reply:before*/.codicon-mail-reply.sc-kol-icon-default:before{content:\"\\ea7d\"}/*!@.codicon-reply:before*/.codicon-reply.sc-kol-icon-default:before{content:\"\\ea7d\"}/*!@.codicon-organization:before*/.codicon-organization.sc-kol-icon-default:before{content:\"\\ea7e\"}/*!@.codicon-organization-filled:before*/.codicon-organization-filled.sc-kol-icon-default:before{content:\"\\ea7e\"}/*!@.codicon-organization-outline:before*/.codicon-organization-outline.sc-kol-icon-default:before{content:\"\\ea7e\"}/*!@.codicon-new-file:before*/.codicon-new-file.sc-kol-icon-default:before{content:\"\\ea7f\"}/*!@.codicon-file-add:before*/.codicon-file-add.sc-kol-icon-default:before{content:\"\\ea7f\"}/*!@.codicon-new-folder:before*/.codicon-new-folder.sc-kol-icon-default:before{content:\"\\ea80\"}/*!@.codicon-file-directory-create:before*/.codicon-file-directory-create.sc-kol-icon-default:before{content:\"\\ea80\"}/*!@.codicon-trash:before*/.codicon-trash.sc-kol-icon-default:before{content:\"\\ea81\"}/*!@.codicon-trashcan:before*/.codicon-trashcan.sc-kol-icon-default:before{content:\"\\ea81\"}/*!@.codicon-history:before*/.codicon-history.sc-kol-icon-default:before{content:\"\\ea82\"}/*!@.codicon-clock:before*/.codicon-clock.sc-kol-icon-default:before{content:\"\\ea82\"}/*!@.codicon-folder:before*/.codicon-folder.sc-kol-icon-default:before{content:\"\\ea83\"}/*!@.codicon-file-directory:before*/.codicon-file-directory.sc-kol-icon-default:before{content:\"\\ea83\"}/*!@.codicon-symbol-folder:before*/.codicon-symbol-folder.sc-kol-icon-default:before{content:\"\\ea83\"}/*!@.codicon-logo-github:before*/.codicon-logo-github.sc-kol-icon-default:before{content:\"\\ea84\"}/*!@.codicon-mark-github:before*/.codicon-mark-github.sc-kol-icon-default:before{content:\"\\ea84\"}/*!@.codicon-github:before*/.codicon-github.sc-kol-icon-default:before{content:\"\\ea84\"}/*!@.codicon-terminal:before*/.codicon-terminal.sc-kol-icon-default:before{content:\"\\ea85\"}/*!@.codicon-console:before*/.codicon-console.sc-kol-icon-default:before{content:\"\\ea85\"}/*!@.codicon-repl:before*/.codicon-repl.sc-kol-icon-default:before{content:\"\\ea85\"}/*!@.codicon-zap:before*/.codicon-zap.sc-kol-icon-default:before{content:\"\\ea86\"}/*!@.codicon-symbol-event:before*/.codicon-symbol-event.sc-kol-icon-default:before{content:\"\\ea86\"}/*!@.codicon-error:before*/.codicon-error.sc-kol-icon-default:before{content:\"\\ea87\"}/*!@.codicon-stop:before*/.codicon-stop.sc-kol-icon-default:before{content:\"\\ea87\"}/*!@.codicon-variable:before*/.codicon-variable.sc-kol-icon-default:before{content:\"\\ea88\"}/*!@.codicon-symbol-variable:before*/.codicon-symbol-variable.sc-kol-icon-default:before{content:\"\\ea88\"}/*!@.codicon-array:before*/.codicon-array.sc-kol-icon-default:before{content:\"\\ea8a\"}/*!@.codicon-symbol-array:before*/.codicon-symbol-array.sc-kol-icon-default:before{content:\"\\ea8a\"}/*!@.codicon-symbol-module:before*/.codicon-symbol-module.sc-kol-icon-default:before{content:\"\\ea8b\"}/*!@.codicon-symbol-package:before*/.codicon-symbol-package.sc-kol-icon-default:before{content:\"\\ea8b\"}/*!@.codicon-symbol-namespace:before*/.codicon-symbol-namespace.sc-kol-icon-default:before{content:\"\\ea8b\"}/*!@.codicon-symbol-object:before*/.codicon-symbol-object.sc-kol-icon-default:before{content:\"\\ea8b\"}/*!@.codicon-symbol-method:before*/.codicon-symbol-method.sc-kol-icon-default:before{content:\"\\ea8c\"}/*!@.codicon-symbol-function:before*/.codicon-symbol-function.sc-kol-icon-default:before{content:\"\\ea8c\"}/*!@.codicon-symbol-constructor:before*/.codicon-symbol-constructor.sc-kol-icon-default:before{content:\"\\ea8c\"}/*!@.codicon-symbol-boolean:before*/.codicon-symbol-boolean.sc-kol-icon-default:before{content:\"\\ea8f\"}/*!@.codicon-symbol-null:before*/.codicon-symbol-null.sc-kol-icon-default:before{content:\"\\ea8f\"}/*!@.codicon-symbol-numeric:before*/.codicon-symbol-numeric.sc-kol-icon-default:before{content:\"\\ea90\"}/*!@.codicon-symbol-number:before*/.codicon-symbol-number.sc-kol-icon-default:before{content:\"\\ea90\"}/*!@.codicon-symbol-structure:before*/.codicon-symbol-structure.sc-kol-icon-default:before{content:\"\\ea91\"}/*!@.codicon-symbol-struct:before*/.codicon-symbol-struct.sc-kol-icon-default:before{content:\"\\ea91\"}/*!@.codicon-symbol-parameter:before*/.codicon-symbol-parameter.sc-kol-icon-default:before{content:\"\\ea92\"}/*!@.codicon-symbol-type-parameter:before*/.codicon-symbol-type-parameter.sc-kol-icon-default:before{content:\"\\ea92\"}/*!@.codicon-symbol-key:before*/.codicon-symbol-key.sc-kol-icon-default:before{content:\"\\ea93\"}/*!@.codicon-symbol-text:before*/.codicon-symbol-text.sc-kol-icon-default:before{content:\"\\ea93\"}/*!@.codicon-symbol-reference:before*/.codicon-symbol-reference.sc-kol-icon-default:before{content:\"\\ea94\"}/*!@.codicon-go-to-file:before*/.codicon-go-to-file.sc-kol-icon-default:before{content:\"\\ea94\"}/*!@.codicon-symbol-enum:before*/.codicon-symbol-enum.sc-kol-icon-default:before{content:\"\\ea95\"}/*!@.codicon-symbol-value:before*/.codicon-symbol-value.sc-kol-icon-default:before{content:\"\\ea95\"}/*!@.codicon-symbol-ruler:before*/.codicon-symbol-ruler.sc-kol-icon-default:before{content:\"\\ea96\"}/*!@.codicon-symbol-unit:before*/.codicon-symbol-unit.sc-kol-icon-default:before{content:\"\\ea96\"}/*!@.codicon-activate-breakpoints:before*/.codicon-activate-breakpoints.sc-kol-icon-default:before{content:\"\\ea97\"}/*!@.codicon-archive:before*/.codicon-archive.sc-kol-icon-default:before{content:\"\\ea98\"}/*!@.codicon-arrow-both:before*/.codicon-arrow-both.sc-kol-icon-default:before{content:\"\\ea99\"}/*!@.codicon-arrow-down:before*/.codicon-arrow-down.sc-kol-icon-default:before{content:\"\\ea9a\"}/*!@.codicon-arrow-left:before*/.codicon-arrow-left.sc-kol-icon-default:before{content:\"\\ea9b\"}/*!@.codicon-arrow-right:before*/.codicon-arrow-right.sc-kol-icon-default:before{content:\"\\ea9c\"}/*!@.codicon-arrow-small-down:before*/.codicon-arrow-small-down.sc-kol-icon-default:before{content:\"\\ea9d\"}/*!@.codicon-arrow-small-left:before*/.codicon-arrow-small-left.sc-kol-icon-default:before{content:\"\\ea9e\"}/*!@.codicon-arrow-small-right:before*/.codicon-arrow-small-right.sc-kol-icon-default:before{content:\"\\ea9f\"}/*!@.codicon-arrow-small-up:before*/.codicon-arrow-small-up.sc-kol-icon-default:before{content:\"\\eaa0\"}/*!@.codicon-arrow-up:before*/.codicon-arrow-up.sc-kol-icon-default:before{content:\"\\eaa1\"}/*!@.codicon-bell:before*/.codicon-bell.sc-kol-icon-default:before{content:\"\\eaa2\"}/*!@.codicon-bold:before*/.codicon-bold.sc-kol-icon-default:before{content:\"\\eaa3\"}/*!@.codicon-book:before*/.codicon-book.sc-kol-icon-default:before{content:\"\\eaa4\"}/*!@.codicon-bookmark:before*/.codicon-bookmark.sc-kol-icon-default:before{content:\"\\eaa5\"}/*!@.codicon-debug-breakpoint-conditional-unverified:before*/.codicon-debug-breakpoint-conditional-unverified.sc-kol-icon-default:before{content:\"\\eaa6\"}/*!@.codicon-debug-breakpoint-conditional:before*/.codicon-debug-breakpoint-conditional.sc-kol-icon-default:before{content:\"\\eaa7\"}/*!@.codicon-debug-breakpoint-conditional-disabled:before*/.codicon-debug-breakpoint-conditional-disabled.sc-kol-icon-default:before{content:\"\\eaa7\"}/*!@.codicon-debug-breakpoint-data-unverified:before*/.codicon-debug-breakpoint-data-unverified.sc-kol-icon-default:before{content:\"\\eaa8\"}/*!@.codicon-debug-breakpoint-data:before*/.codicon-debug-breakpoint-data.sc-kol-icon-default:before{content:\"\\eaa9\"}/*!@.codicon-debug-breakpoint-data-disabled:before*/.codicon-debug-breakpoint-data-disabled.sc-kol-icon-default:before{content:\"\\eaa9\"}/*!@.codicon-debug-breakpoint-log-unverified:before*/.codicon-debug-breakpoint-log-unverified.sc-kol-icon-default:before{content:\"\\eaaa\"}/*!@.codicon-debug-breakpoint-log:before*/.codicon-debug-breakpoint-log.sc-kol-icon-default:before{content:\"\\eaab\"}/*!@.codicon-debug-breakpoint-log-disabled:before*/.codicon-debug-breakpoint-log-disabled.sc-kol-icon-default:before{content:\"\\eaab\"}/*!@.codicon-briefcase:before*/.codicon-briefcase.sc-kol-icon-default:before{content:\"\\eaac\"}/*!@.codicon-broadcast:before*/.codicon-broadcast.sc-kol-icon-default:before{content:\"\\eaad\"}/*!@.codicon-browser:before*/.codicon-browser.sc-kol-icon-default:before{content:\"\\eaae\"}/*!@.codicon-bug:before*/.codicon-bug.sc-kol-icon-default:before{content:\"\\eaaf\"}/*!@.codicon-calendar:before*/.codicon-calendar.sc-kol-icon-default:before{content:\"\\eab0\"}/*!@.codicon-case-sensitive:before*/.codicon-case-sensitive.sc-kol-icon-default:before{content:\"\\eab1\"}/*!@.codicon-check:before*/.codicon-check.sc-kol-icon-default:before{content:\"\\eab2\"}/*!@.codicon-checklist:before*/.codicon-checklist.sc-kol-icon-default:before{content:\"\\eab3\"}/*!@.codicon-chevron-down:before*/.codicon-chevron-down.sc-kol-icon-default:before{content:\"\\eab4\"}/*!@.codicon-chevron-left:before*/.codicon-chevron-left.sc-kol-icon-default:before{content:\"\\eab5\"}/*!@.codicon-chevron-right:before*/.codicon-chevron-right.sc-kol-icon-default:before{content:\"\\eab6\"}/*!@.codicon-chevron-up:before*/.codicon-chevron-up.sc-kol-icon-default:before{content:\"\\eab7\"}/*!@.codicon-chrome-close:before*/.codicon-chrome-close.sc-kol-icon-default:before{content:\"\\eab8\"}/*!@.codicon-chrome-maximize:before*/.codicon-chrome-maximize.sc-kol-icon-default:before{content:\"\\eab9\"}/*!@.codicon-chrome-minimize:before*/.codicon-chrome-minimize.sc-kol-icon-default:before{content:\"\\eaba\"}/*!@.codicon-chrome-restore:before*/.codicon-chrome-restore.sc-kol-icon-default:before{content:\"\\eabb\"}/*!@.codicon-circle-outline:before*/.codicon-circle-outline.sc-kol-icon-default:before{content:\"\\eabc\"}/*!@.codicon-debug-breakpoint-unverified:before*/.codicon-debug-breakpoint-unverified.sc-kol-icon-default:before{content:\"\\eabc\"}/*!@.codicon-circle-slash:before*/.codicon-circle-slash.sc-kol-icon-default:before{content:\"\\eabd\"}/*!@.codicon-circuit-board:before*/.codicon-circuit-board.sc-kol-icon-default:before{content:\"\\eabe\"}/*!@.codicon-clear-all:before*/.codicon-clear-all.sc-kol-icon-default:before{content:\"\\eabf\"}/*!@.codicon-clippy:before*/.codicon-clippy.sc-kol-icon-default:before{content:\"\\eac0\"}/*!@.codicon-close-all:before*/.codicon-close-all.sc-kol-icon-default:before{content:\"\\eac1\"}/*!@.codicon-cloud-download:before*/.codicon-cloud-download.sc-kol-icon-default:before{content:\"\\eac2\"}/*!@.codicon-cloud-upload:before*/.codicon-cloud-upload.sc-kol-icon-default:before{content:\"\\eac3\"}/*!@.codicon-code:before*/.codicon-code.sc-kol-icon-default:before{content:\"\\eac4\"}/*!@.codicon-collapse-all:before*/.codicon-collapse-all.sc-kol-icon-default:before{content:\"\\eac5\"}/*!@.codicon-color-mode:before*/.codicon-color-mode.sc-kol-icon-default:before{content:\"\\eac6\"}/*!@.codicon-comment-discussion:before*/.codicon-comment-discussion.sc-kol-icon-default:before{content:\"\\eac7\"}/*!@.codicon-credit-card:before*/.codicon-credit-card.sc-kol-icon-default:before{content:\"\\eac9\"}/*!@.codicon-dash:before*/.codicon-dash.sc-kol-icon-default:before{content:\"\\eacc\"}/*!@.codicon-dashboard:before*/.codicon-dashboard.sc-kol-icon-default:before{content:\"\\eacd\"}/*!@.codicon-database:before*/.codicon-database.sc-kol-icon-default:before{content:\"\\eace\"}/*!@.codicon-debug-continue:before*/.codicon-debug-continue.sc-kol-icon-default:before{content:\"\\eacf\"}/*!@.codicon-debug-disconnect:before*/.codicon-debug-disconnect.sc-kol-icon-default:before{content:\"\\ead0\"}/*!@.codicon-debug-pause:before*/.codicon-debug-pause.sc-kol-icon-default:before{content:\"\\ead1\"}/*!@.codicon-debug-restart:before*/.codicon-debug-restart.sc-kol-icon-default:before{content:\"\\ead2\"}/*!@.codicon-debug-start:before*/.codicon-debug-start.sc-kol-icon-default:before{content:\"\\ead3\"}/*!@.codicon-debug-step-into:before*/.codicon-debug-step-into.sc-kol-icon-default:before{content:\"\\ead4\"}/*!@.codicon-debug-step-out:before*/.codicon-debug-step-out.sc-kol-icon-default:before{content:\"\\ead5\"}/*!@.codicon-debug-step-over:before*/.codicon-debug-step-over.sc-kol-icon-default:before{content:\"\\ead6\"}/*!@.codicon-debug-stop:before*/.codicon-debug-stop.sc-kol-icon-default:before{content:\"\\ead7\"}/*!@.codicon-debug:before*/.codicon-debug.sc-kol-icon-default:before{content:\"\\ead8\"}/*!@.codicon-device-camera-video:before*/.codicon-device-camera-video.sc-kol-icon-default:before{content:\"\\ead9\"}/*!@.codicon-device-camera:before*/.codicon-device-camera.sc-kol-icon-default:before{content:\"\\eada\"}/*!@.codicon-device-mobile:before*/.codicon-device-mobile.sc-kol-icon-default:before{content:\"\\eadb\"}/*!@.codicon-diff-added:before*/.codicon-diff-added.sc-kol-icon-default:before{content:\"\\eadc\"}/*!@.codicon-diff-ignored:before*/.codicon-diff-ignored.sc-kol-icon-default:before{content:\"\\eadd\"}/*!@.codicon-diff-modified:before*/.codicon-diff-modified.sc-kol-icon-default:before{content:\"\\eade\"}/*!@.codicon-diff-removed:before*/.codicon-diff-removed.sc-kol-icon-default:before{content:\"\\eadf\"}/*!@.codicon-diff-renamed:before*/.codicon-diff-renamed.sc-kol-icon-default:before{content:\"\\eae0\"}/*!@.codicon-diff:before*/.codicon-diff.sc-kol-icon-default:before{content:\"\\eae1\"}/*!@.codicon-discard:before*/.codicon-discard.sc-kol-icon-default:before{content:\"\\eae2\"}/*!@.codicon-editor-layout:before*/.codicon-editor-layout.sc-kol-icon-default:before{content:\"\\eae3\"}/*!@.codicon-empty-window:before*/.codicon-empty-window.sc-kol-icon-default:before{content:\"\\eae4\"}/*!@.codicon-exclude:before*/.codicon-exclude.sc-kol-icon-default:before{content:\"\\eae5\"}/*!@.codicon-extensions:before*/.codicon-extensions.sc-kol-icon-default:before{content:\"\\eae6\"}/*!@.codicon-eye-closed:before*/.codicon-eye-closed.sc-kol-icon-default:before{content:\"\\eae7\"}/*!@.codicon-file-binary:before*/.codicon-file-binary.sc-kol-icon-default:before{content:\"\\eae8\"}/*!@.codicon-file-code:before*/.codicon-file-code.sc-kol-icon-default:before{content:\"\\eae9\"}/*!@.codicon-file-media:before*/.codicon-file-media.sc-kol-icon-default:before{content:\"\\eaea\"}/*!@.codicon-file-pdf:before*/.codicon-file-pdf.sc-kol-icon-default:before{content:\"\\eaeb\"}/*!@.codicon-file-submodule:before*/.codicon-file-submodule.sc-kol-icon-default:before{content:\"\\eaec\"}/*!@.codicon-file-symlink-directory:before*/.codicon-file-symlink-directory.sc-kol-icon-default:before{content:\"\\eaed\"}/*!@.codicon-file-symlink-file:before*/.codicon-file-symlink-file.sc-kol-icon-default:before{content:\"\\eaee\"}/*!@.codicon-file-zip:before*/.codicon-file-zip.sc-kol-icon-default:before{content:\"\\eaef\"}/*!@.codicon-files:before*/.codicon-files.sc-kol-icon-default:before{content:\"\\eaf0\"}/*!@.codicon-filter:before*/.codicon-filter.sc-kol-icon-default:before{content:\"\\eaf1\"}/*!@.codicon-flame:before*/.codicon-flame.sc-kol-icon-default:before{content:\"\\eaf2\"}/*!@.codicon-fold-down:before*/.codicon-fold-down.sc-kol-icon-default:before{content:\"\\eaf3\"}/*!@.codicon-fold-up:before*/.codicon-fold-up.sc-kol-icon-default:before{content:\"\\eaf4\"}/*!@.codicon-fold:before*/.codicon-fold.sc-kol-icon-default:before{content:\"\\eaf5\"}/*!@.codicon-folder-active:before*/.codicon-folder-active.sc-kol-icon-default:before{content:\"\\eaf6\"}/*!@.codicon-folder-opened:before*/.codicon-folder-opened.sc-kol-icon-default:before{content:\"\\eaf7\"}/*!@.codicon-gear:before*/.codicon-gear.sc-kol-icon-default:before{content:\"\\eaf8\"}/*!@.codicon-gift:before*/.codicon-gift.sc-kol-icon-default:before{content:\"\\eaf9\"}/*!@.codicon-gist-secret:before*/.codicon-gist-secret.sc-kol-icon-default:before{content:\"\\eafa\"}/*!@.codicon-gist:before*/.codicon-gist.sc-kol-icon-default:before{content:\"\\eafb\"}/*!@.codicon-git-commit:before*/.codicon-git-commit.sc-kol-icon-default:before{content:\"\\eafc\"}/*!@.codicon-git-compare:before*/.codicon-git-compare.sc-kol-icon-default:before{content:\"\\eafd\"}/*!@.codicon-compare-changes:before*/.codicon-compare-changes.sc-kol-icon-default:before{content:\"\\eafd\"}/*!@.codicon-git-merge:before*/.codicon-git-merge.sc-kol-icon-default:before{content:\"\\eafe\"}/*!@.codicon-github-action:before*/.codicon-github-action.sc-kol-icon-default:before{content:\"\\eaff\"}/*!@.codicon-github-alt:before*/.codicon-github-alt.sc-kol-icon-default:before{content:\"\\eb00\"}/*!@.codicon-globe:before*/.codicon-globe.sc-kol-icon-default:before{content:\"\\eb01\"}/*!@.codicon-grabber:before*/.codicon-grabber.sc-kol-icon-default:before{content:\"\\eb02\"}/*!@.codicon-graph:before*/.codicon-graph.sc-kol-icon-default:before{content:\"\\eb03\"}/*!@.codicon-gripper:before*/.codicon-gripper.sc-kol-icon-default:before{content:\"\\eb04\"}/*!@.codicon-heart:before*/.codicon-heart.sc-kol-icon-default:before{content:\"\\eb05\"}/*!@.codicon-home:before*/.codicon-home.sc-kol-icon-default:before{content:\"\\eb06\"}/*!@.codicon-horizontal-rule:before*/.codicon-horizontal-rule.sc-kol-icon-default:before{content:\"\\eb07\"}/*!@.codicon-hubot:before*/.codicon-hubot.sc-kol-icon-default:before{content:\"\\eb08\"}/*!@.codicon-inbox:before*/.codicon-inbox.sc-kol-icon-default:before{content:\"\\eb09\"}/*!@.codicon-issue-reopened:before*/.codicon-issue-reopened.sc-kol-icon-default:before{content:\"\\eb0b\"}/*!@.codicon-issues:before*/.codicon-issues.sc-kol-icon-default:before{content:\"\\eb0c\"}/*!@.codicon-italic:before*/.codicon-italic.sc-kol-icon-default:before{content:\"\\eb0d\"}/*!@.codicon-jersey:before*/.codicon-jersey.sc-kol-icon-default:before{content:\"\\eb0e\"}/*!@.codicon-json:before*/.codicon-json.sc-kol-icon-default:before{content:\"\\eb0f\"}/*!@.codicon-kebab-vertical:before*/.codicon-kebab-vertical.sc-kol-icon-default:before{content:\"\\eb10\"}/*!@.codicon-key:before*/.codicon-key.sc-kol-icon-default:before{content:\"\\eb11\"}/*!@.codicon-law:before*/.codicon-law.sc-kol-icon-default:before{content:\"\\eb12\"}/*!@.codicon-lightbulb-autofix:before*/.codicon-lightbulb-autofix.sc-kol-icon-default:before{content:\"\\eb13\"}/*!@.codicon-link-external:before*/.codicon-link-external.sc-kol-icon-default:before{content:\"\\eb14\"}/*!@.codicon-link:before*/.codicon-link.sc-kol-icon-default:before{content:\"\\eb15\"}/*!@.codicon-list-ordered:before*/.codicon-list-ordered.sc-kol-icon-default:before{content:\"\\eb16\"}/*!@.codicon-list-unordered:before*/.codicon-list-unordered.sc-kol-icon-default:before{content:\"\\eb17\"}/*!@.codicon-live-share:before*/.codicon-live-share.sc-kol-icon-default:before{content:\"\\eb18\"}/*!@.codicon-loading:before*/.codicon-loading.sc-kol-icon-default:before{content:\"\\eb19\"}/*!@.codicon-location:before*/.codicon-location.sc-kol-icon-default:before{content:\"\\eb1a\"}/*!@.codicon-mail-read:before*/.codicon-mail-read.sc-kol-icon-default:before{content:\"\\eb1b\"}/*!@.codicon-mail:before*/.codicon-mail.sc-kol-icon-default:before{content:\"\\eb1c\"}/*!@.codicon-markdown:before*/.codicon-markdown.sc-kol-icon-default:before{content:\"\\eb1d\"}/*!@.codicon-megaphone:before*/.codicon-megaphone.sc-kol-icon-default:before{content:\"\\eb1e\"}/*!@.codicon-mention:before*/.codicon-mention.sc-kol-icon-default:before{content:\"\\eb1f\"}/*!@.codicon-milestone:before*/.codicon-milestone.sc-kol-icon-default:before{content:\"\\eb20\"}/*!@.codicon-mortar-board:before*/.codicon-mortar-board.sc-kol-icon-default:before{content:\"\\eb21\"}/*!@.codicon-move:before*/.codicon-move.sc-kol-icon-default:before{content:\"\\eb22\"}/*!@.codicon-multiple-windows:before*/.codicon-multiple-windows.sc-kol-icon-default:before{content:\"\\eb23\"}/*!@.codicon-mute:before*/.codicon-mute.sc-kol-icon-default:before{content:\"\\eb24\"}/*!@.codicon-no-newline:before*/.codicon-no-newline.sc-kol-icon-default:before{content:\"\\eb25\"}/*!@.codicon-note:before*/.codicon-note.sc-kol-icon-default:before{content:\"\\eb26\"}/*!@.codicon-octoface:before*/.codicon-octoface.sc-kol-icon-default:before{content:\"\\eb27\"}/*!@.codicon-open-preview:before*/.codicon-open-preview.sc-kol-icon-default:before{content:\"\\eb28\"}/*!@.codicon-package:before*/.codicon-package.sc-kol-icon-default:before{content:\"\\eb29\"}/*!@.codicon-paintcan:before*/.codicon-paintcan.sc-kol-icon-default:before{content:\"\\eb2a\"}/*!@.codicon-pin:before*/.codicon-pin.sc-kol-icon-default:before{content:\"\\eb2b\"}/*!@.codicon-play:before*/.codicon-play.sc-kol-icon-default:before{content:\"\\eb2c\"}/*!@.codicon-run:before*/.codicon-run.sc-kol-icon-default:before{content:\"\\eb2c\"}/*!@.codicon-plug:before*/.codicon-plug.sc-kol-icon-default:before{content:\"\\eb2d\"}/*!@.codicon-preserve-case:before*/.codicon-preserve-case.sc-kol-icon-default:before{content:\"\\eb2e\"}/*!@.codicon-preview:before*/.codicon-preview.sc-kol-icon-default:before{content:\"\\eb2f\"}/*!@.codicon-project:before*/.codicon-project.sc-kol-icon-default:before{content:\"\\eb30\"}/*!@.codicon-pulse:before*/.codicon-pulse.sc-kol-icon-default:before{content:\"\\eb31\"}/*!@.codicon-question:before*/.codicon-question.sc-kol-icon-default:before{content:\"\\eb32\"}/*!@.codicon-quote:before*/.codicon-quote.sc-kol-icon-default:before{content:\"\\eb33\"}/*!@.codicon-radio-tower:before*/.codicon-radio-tower.sc-kol-icon-default:before{content:\"\\eb34\"}/*!@.codicon-reactions:before*/.codicon-reactions.sc-kol-icon-default:before{content:\"\\eb35\"}/*!@.codicon-references:before*/.codicon-references.sc-kol-icon-default:before{content:\"\\eb36\"}/*!@.codicon-refresh:before*/.codicon-refresh.sc-kol-icon-default:before{content:\"\\eb37\"}/*!@.codicon-regex:before*/.codicon-regex.sc-kol-icon-default:before{content:\"\\eb38\"}/*!@.codicon-remote-explorer:before*/.codicon-remote-explorer.sc-kol-icon-default:before{content:\"\\eb39\"}/*!@.codicon-remote:before*/.codicon-remote.sc-kol-icon-default:before{content:\"\\eb3a\"}/*!@.codicon-remove:before*/.codicon-remove.sc-kol-icon-default:before{content:\"\\eb3b\"}/*!@.codicon-replace-all:before*/.codicon-replace-all.sc-kol-icon-default:before{content:\"\\eb3c\"}/*!@.codicon-replace:before*/.codicon-replace.sc-kol-icon-default:before{content:\"\\eb3d\"}/*!@.codicon-repo-clone:before*/.codicon-repo-clone.sc-kol-icon-default:before{content:\"\\eb3e\"}/*!@.codicon-repo-force-push:before*/.codicon-repo-force-push.sc-kol-icon-default:before{content:\"\\eb3f\"}/*!@.codicon-repo-pull:before*/.codicon-repo-pull.sc-kol-icon-default:before{content:\"\\eb40\"}/*!@.codicon-repo-push:before*/.codicon-repo-push.sc-kol-icon-default:before{content:\"\\eb41\"}/*!@.codicon-report:before*/.codicon-report.sc-kol-icon-default:before{content:\"\\eb42\"}/*!@.codicon-request-changes:before*/.codicon-request-changes.sc-kol-icon-default:before{content:\"\\eb43\"}/*!@.codicon-rocket:before*/.codicon-rocket.sc-kol-icon-default:before{content:\"\\eb44\"}/*!@.codicon-root-folder-opened:before*/.codicon-root-folder-opened.sc-kol-icon-default:before{content:\"\\eb45\"}/*!@.codicon-root-folder:before*/.codicon-root-folder.sc-kol-icon-default:before{content:\"\\eb46\"}/*!@.codicon-rss:before*/.codicon-rss.sc-kol-icon-default:before{content:\"\\eb47\"}/*!@.codicon-ruby:before*/.codicon-ruby.sc-kol-icon-default:before{content:\"\\eb48\"}/*!@.codicon-save-all:before*/.codicon-save-all.sc-kol-icon-default:before{content:\"\\eb49\"}/*!@.codicon-save-as:before*/.codicon-save-as.sc-kol-icon-default:before{content:\"\\eb4a\"}/*!@.codicon-save:before*/.codicon-save.sc-kol-icon-default:before{content:\"\\eb4b\"}/*!@.codicon-screen-full:before*/.codicon-screen-full.sc-kol-icon-default:before{content:\"\\eb4c\"}/*!@.codicon-screen-normal:before*/.codicon-screen-normal.sc-kol-icon-default:before{content:\"\\eb4d\"}/*!@.codicon-search-stop:before*/.codicon-search-stop.sc-kol-icon-default:before{content:\"\\eb4e\"}/*!@.codicon-server:before*/.codicon-server.sc-kol-icon-default:before{content:\"\\eb50\"}/*!@.codicon-settings-gear:before*/.codicon-settings-gear.sc-kol-icon-default:before{content:\"\\eb51\"}/*!@.codicon-settings:before*/.codicon-settings.sc-kol-icon-default:before{content:\"\\eb52\"}/*!@.codicon-shield:before*/.codicon-shield.sc-kol-icon-default:before{content:\"\\eb53\"}/*!@.codicon-smiley:before*/.codicon-smiley.sc-kol-icon-default:before{content:\"\\eb54\"}/*!@.codicon-sort-precedence:before*/.codicon-sort-precedence.sc-kol-icon-default:before{content:\"\\eb55\"}/*!@.codicon-split-horizontal:before*/.codicon-split-horizontal.sc-kol-icon-default:before{content:\"\\eb56\"}/*!@.codicon-split-vertical:before*/.codicon-split-vertical.sc-kol-icon-default:before{content:\"\\eb57\"}/*!@.codicon-squirrel:before*/.codicon-squirrel.sc-kol-icon-default:before{content:\"\\eb58\"}/*!@.codicon-star-full:before*/.codicon-star-full.sc-kol-icon-default:before{content:\"\\eb59\"}/*!@.codicon-star-half:before*/.codicon-star-half.sc-kol-icon-default:before{content:\"\\eb5a\"}/*!@.codicon-symbol-class:before*/.codicon-symbol-class.sc-kol-icon-default:before{content:\"\\eb5b\"}/*!@.codicon-symbol-color:before*/.codicon-symbol-color.sc-kol-icon-default:before{content:\"\\eb5c\"}/*!@.codicon-symbol-constant:before*/.codicon-symbol-constant.sc-kol-icon-default:before{content:\"\\eb5d\"}/*!@.codicon-symbol-enum-member:before*/.codicon-symbol-enum-member.sc-kol-icon-default:before{content:\"\\eb5e\"}/*!@.codicon-symbol-field:before*/.codicon-symbol-field.sc-kol-icon-default:before{content:\"\\eb5f\"}/*!@.codicon-symbol-file:before*/.codicon-symbol-file.sc-kol-icon-default:before{content:\"\\eb60\"}/*!@.codicon-symbol-interface:before*/.codicon-symbol-interface.sc-kol-icon-default:before{content:\"\\eb61\"}/*!@.codicon-symbol-keyword:before*/.codicon-symbol-keyword.sc-kol-icon-default:before{content:\"\\eb62\"}/*!@.codicon-symbol-misc:before*/.codicon-symbol-misc.sc-kol-icon-default:before{content:\"\\eb63\"}/*!@.codicon-symbol-operator:before*/.codicon-symbol-operator.sc-kol-icon-default:before{content:\"\\eb64\"}/*!@.codicon-symbol-property:before*/.codicon-symbol-property.sc-kol-icon-default:before{content:\"\\eb65\"}/*!@.codicon-wrench:before*/.codicon-wrench.sc-kol-icon-default:before{content:\"\\eb65\"}/*!@.codicon-wrench-subaction:before*/.codicon-wrench-subaction.sc-kol-icon-default:before{content:\"\\eb65\"}/*!@.codicon-symbol-snippet:before*/.codicon-symbol-snippet.sc-kol-icon-default:before{content:\"\\eb66\"}/*!@.codicon-tasklist:before*/.codicon-tasklist.sc-kol-icon-default:before{content:\"\\eb67\"}/*!@.codicon-telescope:before*/.codicon-telescope.sc-kol-icon-default:before{content:\"\\eb68\"}/*!@.codicon-text-size:before*/.codicon-text-size.sc-kol-icon-default:before{content:\"\\eb69\"}/*!@.codicon-three-bars:before*/.codicon-three-bars.sc-kol-icon-default:before{content:\"\\eb6a\"}/*!@.codicon-thumbsdown:before*/.codicon-thumbsdown.sc-kol-icon-default:before{content:\"\\eb6b\"}/*!@.codicon-thumbsup:before*/.codicon-thumbsup.sc-kol-icon-default:before{content:\"\\eb6c\"}/*!@.codicon-tools:before*/.codicon-tools.sc-kol-icon-default:before{content:\"\\eb6d\"}/*!@.codicon-triangle-down:before*/.codicon-triangle-down.sc-kol-icon-default:before{content:\"\\eb6e\"}/*!@.codicon-triangle-left:before*/.codicon-triangle-left.sc-kol-icon-default:before{content:\"\\eb6f\"}/*!@.codicon-triangle-right:before*/.codicon-triangle-right.sc-kol-icon-default:before{content:\"\\eb70\"}/*!@.codicon-triangle-up:before*/.codicon-triangle-up.sc-kol-icon-default:before{content:\"\\eb71\"}/*!@.codicon-twitter:before*/.codicon-twitter.sc-kol-icon-default:before{content:\"\\eb72\"}/*!@.codicon-unfold:before*/.codicon-unfold.sc-kol-icon-default:before{content:\"\\eb73\"}/*!@.codicon-unlock:before*/.codicon-unlock.sc-kol-icon-default:before{content:\"\\eb74\"}/*!@.codicon-unmute:before*/.codicon-unmute.sc-kol-icon-default:before{content:\"\\eb75\"}/*!@.codicon-unverified:before*/.codicon-unverified.sc-kol-icon-default:before{content:\"\\eb76\"}/*!@.codicon-verified:before*/.codicon-verified.sc-kol-icon-default:before{content:\"\\eb77\"}/*!@.codicon-versions:before*/.codicon-versions.sc-kol-icon-default:before{content:\"\\eb78\"}/*!@.codicon-vm-active:before*/.codicon-vm-active.sc-kol-icon-default:before{content:\"\\eb79\"}/*!@.codicon-vm-outline:before*/.codicon-vm-outline.sc-kol-icon-default:before{content:\"\\eb7a\"}/*!@.codicon-vm-running:before*/.codicon-vm-running.sc-kol-icon-default:before{content:\"\\eb7b\"}/*!@.codicon-watch:before*/.codicon-watch.sc-kol-icon-default:before{content:\"\\eb7c\"}/*!@.codicon-whitespace:before*/.codicon-whitespace.sc-kol-icon-default:before{content:\"\\eb7d\"}/*!@.codicon-whole-word:before*/.codicon-whole-word.sc-kol-icon-default:before{content:\"\\eb7e\"}/*!@.codicon-window:before*/.codicon-window.sc-kol-icon-default:before{content:\"\\eb7f\"}/*!@.codicon-word-wrap:before*/.codicon-word-wrap.sc-kol-icon-default:before{content:\"\\eb80\"}/*!@.codicon-zoom-in:before*/.codicon-zoom-in.sc-kol-icon-default:before{content:\"\\eb81\"}/*!@.codicon-zoom-out:before*/.codicon-zoom-out.sc-kol-icon-default:before{content:\"\\eb82\"}/*!@.codicon-list-filter:before*/.codicon-list-filter.sc-kol-icon-default:before{content:\"\\eb83\"}/*!@.codicon-list-flat:before*/.codicon-list-flat.sc-kol-icon-default:before{content:\"\\eb84\"}/*!@.codicon-list-selection:before*/.codicon-list-selection.sc-kol-icon-default:before{content:\"\\eb85\"}/*!@.codicon-selection:before*/.codicon-selection.sc-kol-icon-default:before{content:\"\\eb85\"}/*!@.codicon-list-tree:before*/.codicon-list-tree.sc-kol-icon-default:before{content:\"\\eb86\"}/*!@.codicon-debug-breakpoint-function-unverified:before*/.codicon-debug-breakpoint-function-unverified.sc-kol-icon-default:before{content:\"\\eb87\"}/*!@.codicon-debug-breakpoint-function:before*/.codicon-debug-breakpoint-function.sc-kol-icon-default:before{content:\"\\eb88\"}/*!@.codicon-debug-breakpoint-function-disabled:before*/.codicon-debug-breakpoint-function-disabled.sc-kol-icon-default:before{content:\"\\eb88\"}/*!@.codicon-debug-stackframe-active:before*/.codicon-debug-stackframe-active.sc-kol-icon-default:before{content:\"\\eb89\"}/*!@.codicon-circle-small-filled:before*/.codicon-circle-small-filled.sc-kol-icon-default:before{content:\"\\eb8a\"}/*!@.codicon-debug-stackframe-dot:before*/.codicon-debug-stackframe-dot.sc-kol-icon-default:before{content:\"\\eb8a\"}/*!@.codicon-debug-stackframe:before*/.codicon-debug-stackframe.sc-kol-icon-default:before{content:\"\\eb8b\"}/*!@.codicon-debug-stackframe-focused:before*/.codicon-debug-stackframe-focused.sc-kol-icon-default:before{content:\"\\eb8b\"}/*!@.codicon-debug-breakpoint-unsupported:before*/.codicon-debug-breakpoint-unsupported.sc-kol-icon-default:before{content:\"\\eb8c\"}/*!@.codicon-symbol-string:before*/.codicon-symbol-string.sc-kol-icon-default:before{content:\"\\eb8d\"}/*!@.codicon-debug-reverse-continue:before*/.codicon-debug-reverse-continue.sc-kol-icon-default:before{content:\"\\eb8e\"}/*!@.codicon-debug-step-back:before*/.codicon-debug-step-back.sc-kol-icon-default:before{content:\"\\eb8f\"}/*!@.codicon-debug-restart-frame:before*/.codicon-debug-restart-frame.sc-kol-icon-default:before{content:\"\\eb90\"}/*!@.codicon-debug-alt:before*/.codicon-debug-alt.sc-kol-icon-default:before{content:\"\\eb91\"}/*!@.codicon-call-incoming:before*/.codicon-call-incoming.sc-kol-icon-default:before{content:\"\\eb92\"}/*!@.codicon-call-outgoing:before*/.codicon-call-outgoing.sc-kol-icon-default:before{content:\"\\eb93\"}/*!@.codicon-menu:before*/.codicon-menu.sc-kol-icon-default:before{content:\"\\eb94\"}/*!@.codicon-expand-all:before*/.codicon-expand-all.sc-kol-icon-default:before{content:\"\\eb95\"}/*!@.codicon-feedback:before*/.codicon-feedback.sc-kol-icon-default:before{content:\"\\eb96\"}/*!@.codicon-group-by-ref-type:before*/.codicon-group-by-ref-type.sc-kol-icon-default:before{content:\"\\eb97\"}/*!@.codicon-ungroup-by-ref-type:before*/.codicon-ungroup-by-ref-type.sc-kol-icon-default:before{content:\"\\eb98\"}/*!@.codicon-account:before*/.codicon-account.sc-kol-icon-default:before{content:\"\\eb99\"}/*!@.codicon-bell-dot:before*/.codicon-bell-dot.sc-kol-icon-default:before{content:\"\\eb9a\"}/*!@.codicon-debug-console:before*/.codicon-debug-console.sc-kol-icon-default:before{content:\"\\eb9b\"}/*!@.codicon-library:before*/.codicon-library.sc-kol-icon-default:before{content:\"\\eb9c\"}/*!@.codicon-output:before*/.codicon-output.sc-kol-icon-default:before{content:\"\\eb9d\"}/*!@.codicon-run-all:before*/.codicon-run-all.sc-kol-icon-default:before{content:\"\\eb9e\"}/*!@.codicon-sync-ignored:before*/.codicon-sync-ignored.sc-kol-icon-default:before{content:\"\\eb9f\"}/*!@.codicon-pinned:before*/.codicon-pinned.sc-kol-icon-default:before{content:\"\\eba0\"}/*!@.codicon-github-inverted:before*/.codicon-github-inverted.sc-kol-icon-default:before{content:\"\\eba1\"}/*!@.codicon-server-process:before*/.codicon-server-process.sc-kol-icon-default:before{content:\"\\eba2\"}/*!@.codicon-server-environment:before*/.codicon-server-environment.sc-kol-icon-default:before{content:\"\\eba3\"}/*!@.codicon-pass:before*/.codicon-pass.sc-kol-icon-default:before{content:\"\\eba4\"}/*!@.codicon-issue-closed:before*/.codicon-issue-closed.sc-kol-icon-default:before{content:\"\\eba4\"}/*!@.codicon-stop-circle:before*/.codicon-stop-circle.sc-kol-icon-default:before{content:\"\\eba5\"}/*!@.codicon-play-circle:before*/.codicon-play-circle.sc-kol-icon-default:before{content:\"\\eba6\"}/*!@.codicon-record:before*/.codicon-record.sc-kol-icon-default:before{content:\"\\eba7\"}/*!@.codicon-debug-alt-small:before*/.codicon-debug-alt-small.sc-kol-icon-default:before{content:\"\\eba8\"}/*!@.codicon-vm-connect:before*/.codicon-vm-connect.sc-kol-icon-default:before{content:\"\\eba9\"}/*!@.codicon-cloud:before*/.codicon-cloud.sc-kol-icon-default:before{content:\"\\ebaa\"}/*!@.codicon-merge:before*/.codicon-merge.sc-kol-icon-default:before{content:\"\\ebab\"}/*!@.codicon-export:before*/.codicon-export.sc-kol-icon-default:before{content:\"\\ebac\"}/*!@.codicon-graph-left:before*/.codicon-graph-left.sc-kol-icon-default:before{content:\"\\ebad\"}/*!@.codicon-magnet:before*/.codicon-magnet.sc-kol-icon-default:before{content:\"\\ebae\"}/*!@.codicon-notebook:before*/.codicon-notebook.sc-kol-icon-default:before{content:\"\\ebaf\"}/*!@.codicon-redo:before*/.codicon-redo.sc-kol-icon-default:before{content:\"\\ebb0\"}/*!@.codicon-check-all:before*/.codicon-check-all.sc-kol-icon-default:before{content:\"\\ebb1\"}/*!@.codicon-pinned-dirty:before*/.codicon-pinned-dirty.sc-kol-icon-default:before{content:\"\\ebb2\"}/*!@.codicon-pass-filled:before*/.codicon-pass-filled.sc-kol-icon-default:before{content:\"\\ebb3\"}/*!@.codicon-circle-large-filled:before*/.codicon-circle-large-filled.sc-kol-icon-default:before{content:\"\\ebb4\"}/*!@.codicon-circle-large-outline:before*/.codicon-circle-large-outline.sc-kol-icon-default:before{content:\"\\ebb5\"}/*!@.codicon-combine:before*/.codicon-combine.sc-kol-icon-default:before{content:\"\\ebb6\"}/*!@.codicon-gather:before*/.codicon-gather.sc-kol-icon-default:before{content:\"\\ebb6\"}/*!@.codicon-table:before*/.codicon-table.sc-kol-icon-default:before{content:\"\\ebb7\"}/*!@.codicon-variable-group:before*/.codicon-variable-group.sc-kol-icon-default:before{content:\"\\ebb8\"}/*!@.codicon-type-hierarchy:before*/.codicon-type-hierarchy.sc-kol-icon-default:before{content:\"\\ebb9\"}/*!@.codicon-type-hierarchy-sub:before*/.codicon-type-hierarchy-sub.sc-kol-icon-default:before{content:\"\\ebba\"}/*!@.codicon-type-hierarchy-super:before*/.codicon-type-hierarchy-super.sc-kol-icon-default:before{content:\"\\ebbb\"}/*!@.codicon-git-pull-request-create:before*/.codicon-git-pull-request-create.sc-kol-icon-default:before{content:\"\\ebbc\"}/*!@.codicon-run-above:before*/.codicon-run-above.sc-kol-icon-default:before{content:\"\\ebbd\"}/*!@.codicon-run-below:before*/.codicon-run-below.sc-kol-icon-default:before{content:\"\\ebbe\"}/*!@.codicon-notebook-template:before*/.codicon-notebook-template.sc-kol-icon-default:before{content:\"\\ebbf\"}/*!@.codicon-debug-rerun:before*/.codicon-debug-rerun.sc-kol-icon-default:before{content:\"\\ebc0\"}/*!@.codicon-workspace-trusted:before*/.codicon-workspace-trusted.sc-kol-icon-default:before{content:\"\\ebc1\"}/*!@.codicon-workspace-untrusted:before*/.codicon-workspace-untrusted.sc-kol-icon-default:before{content:\"\\ebc2\"}/*!@.codicon-workspace-unknown:before*/.codicon-workspace-unknown.sc-kol-icon-default:before{content:\"\\ebc3\"}/*!@.codicon-terminal-cmd:before*/.codicon-terminal-cmd.sc-kol-icon-default:before{content:\"\\ebc4\"}/*!@.codicon-terminal-debian:before*/.codicon-terminal-debian.sc-kol-icon-default:before{content:\"\\ebc5\"}/*!@.codicon-terminal-linux:before*/.codicon-terminal-linux.sc-kol-icon-default:before{content:\"\\ebc6\"}/*!@.codicon-terminal-powershell:before*/.codicon-terminal-powershell.sc-kol-icon-default:before{content:\"\\ebc7\"}/*!@.codicon-terminal-tmux:before*/.codicon-terminal-tmux.sc-kol-icon-default:before{content:\"\\ebc8\"}/*!@.codicon-terminal-ubuntu:before*/.codicon-terminal-ubuntu.sc-kol-icon-default:before{content:\"\\ebc9\"}/*!@.codicon-terminal-bash:before*/.codicon-terminal-bash.sc-kol-icon-default:before{content:\"\\ebca\"}/*!@.codicon-arrow-swap:before*/.codicon-arrow-swap.sc-kol-icon-default:before{content:\"\\ebcb\"}/*!@.codicon-copy:before*/.codicon-copy.sc-kol-icon-default:before{content:\"\\ebcc\"}/*!@.codicon-person-add:before*/.codicon-person-add.sc-kol-icon-default:before{content:\"\\ebcd\"}/*!@.codicon-filter-filled:before*/.codicon-filter-filled.sc-kol-icon-default:before{content:\"\\ebce\"}/*!@.codicon-wand:before*/.codicon-wand.sc-kol-icon-default:before{content:\"\\ebcf\"}/*!@.codicon-debug-line-by-line:before*/.codicon-debug-line-by-line.sc-kol-icon-default:before{content:\"\\ebd0\"}/*!@.codicon-inspect:before*/.codicon-inspect.sc-kol-icon-default:before{content:\"\\ebd1\"}/*!@.codicon-layers:before*/.codicon-layers.sc-kol-icon-default:before{content:\"\\ebd2\"}/*!@.codicon-layers-dot:before*/.codicon-layers-dot.sc-kol-icon-default:before{content:\"\\ebd3\"}/*!@.codicon-layers-active:before*/.codicon-layers-active.sc-kol-icon-default:before{content:\"\\ebd4\"}/*!@.codicon-compass:before*/.codicon-compass.sc-kol-icon-default:before{content:\"\\ebd5\"}/*!@.codicon-compass-dot:before*/.codicon-compass-dot.sc-kol-icon-default:before{content:\"\\ebd6\"}/*!@.codicon-compass-active:before*/.codicon-compass-active.sc-kol-icon-default:before{content:\"\\ebd7\"}/*!@.codicon-azure:before*/.codicon-azure.sc-kol-icon-default:before{content:\"\\ebd8\"}/*!@.codicon-issue-draft:before*/.codicon-issue-draft.sc-kol-icon-default:before{content:\"\\ebd9\"}/*!@.codicon-git-pull-request-closed:before*/.codicon-git-pull-request-closed.sc-kol-icon-default:before{content:\"\\ebda\"}/*!@.codicon-git-pull-request-draft:before*/.codicon-git-pull-request-draft.sc-kol-icon-default:before{content:\"\\ebdb\"}/*!@.codicon-debug-all:before*/.codicon-debug-all.sc-kol-icon-default:before{content:\"\\ebdc\"}/*!@.codicon-debug-coverage:before*/.codicon-debug-coverage.sc-kol-icon-default:before{content:\"\\ebdd\"}/*!@.codicon-run-errors:before*/.codicon-run-errors.sc-kol-icon-default:before{content:\"\\ebde\"}/*!@.codicon-folder-library:before*/.codicon-folder-library.sc-kol-icon-default:before{content:\"\\ebdf\"}/*!@.codicon-debug-continue-small:before*/.codicon-debug-continue-small.sc-kol-icon-default:before{content:\"\\ebe0\"}/*!@.codicon-beaker-stop:before*/.codicon-beaker-stop.sc-kol-icon-default:before{content:\"\\ebe1\"}/*!@.codicon-graph-line:before*/.codicon-graph-line.sc-kol-icon-default:before{content:\"\\ebe2\"}/*!@.codicon-graph-scatter:before*/.codicon-graph-scatter.sc-kol-icon-default:before{content:\"\\ebe3\"}/*!@.codicon-pie-chart:before*/.codicon-pie-chart.sc-kol-icon-default:before{content:\"\\ebe4\"}/*!@.codicon-bracket:before*/.codicon-bracket.sc-kol-icon-default:before{content:\"\\eb0f\"}/*!@.codicon-bracket-dot:before*/.codicon-bracket-dot.sc-kol-icon-default:before{content:\"\\ebe5\"}/*!@.codicon-bracket-error:before*/.codicon-bracket-error.sc-kol-icon-default:before{content:\"\\ebe6\"}/*!@.codicon-lock-small:before*/.codicon-lock-small.sc-kol-icon-default:before{content:\"\\ebe7\"}/*!@.codicon-azure-devops:before*/.codicon-azure-devops.sc-kol-icon-default:before{content:\"\\ebe8\"}/*!@.codicon-verified-filled:before*/.codicon-verified-filled.sc-kol-icon-default:before{content:\"\\ebe9\"}/*!@.codicon-newline:before*/.codicon-newline.sc-kol-icon-default:before{content:\"\\ebea\"}/*!@.codicon-layout:before*/.codicon-layout.sc-kol-icon-default:before{content:\"\\ebeb\"}/*!@.codicon-layout-activitybar-left:before*/.codicon-layout-activitybar-left.sc-kol-icon-default:before{content:\"\\ebec\"}/*!@.codicon-layout-activitybar-right:before*/.codicon-layout-activitybar-right.sc-kol-icon-default:before{content:\"\\ebed\"}/*!@.codicon-layout-panel-left:before*/.codicon-layout-panel-left.sc-kol-icon-default:before{content:\"\\ebee\"}/*!@.codicon-layout-panel-center:before*/.codicon-layout-panel-center.sc-kol-icon-default:before{content:\"\\ebef\"}/*!@.codicon-layout-panel-justify:before*/.codicon-layout-panel-justify.sc-kol-icon-default:before{content:\"\\ebf0\"}/*!@.codicon-layout-panel-right:before*/.codicon-layout-panel-right.sc-kol-icon-default:before{content:\"\\ebf1\"}/*!@.codicon-layout-panel:before*/.codicon-layout-panel.sc-kol-icon-default:before{content:\"\\ebf2\"}/*!@.codicon-layout-sidebar-left:before*/.codicon-layout-sidebar-left.sc-kol-icon-default:before{content:\"\\ebf3\"}/*!@.codicon-layout-sidebar-right:before*/.codicon-layout-sidebar-right.sc-kol-icon-default:before{content:\"\\ebf4\"}/*!@.codicon-layout-statusbar:before*/.codicon-layout-statusbar.sc-kol-icon-default:before{content:\"\\ebf5\"}/*!@.codicon-layout-menubar:before*/.codicon-layout-menubar.sc-kol-icon-default:before{content:\"\\ebf6\"}/*!@.codicon-layout-centered:before*/.codicon-layout-centered.sc-kol-icon-default:before{content:\"\\ebf7\"}/*!@.codicon-target:before*/.codicon-target.sc-kol-icon-default:before{content:\"\\ebf8\"}/*!@.codicon-indent:before*/.codicon-indent.sc-kol-icon-default:before{content:\"\\ebf9\"}/*!@.codicon-record-small:before*/.codicon-record-small.sc-kol-icon-default:before{content:\"\\ebfa\"}/*!@.codicon-error-small:before*/.codicon-error-small.sc-kol-icon-default:before{content:\"\\ebfb\"}/*!@.codicon-arrow-circle-down:before*/.codicon-arrow-circle-down.sc-kol-icon-default:before{content:\"\\ebfc\"}/*!@.codicon-arrow-circle-left:before*/.codicon-arrow-circle-left.sc-kol-icon-default:before{content:\"\\ebfd\"}/*!@.codicon-arrow-circle-right:before*/.codicon-arrow-circle-right.sc-kol-icon-default:before{content:\"\\ebfe\"}/*!@.codicon-arrow-circle-up:before*/.codicon-arrow-circle-up.sc-kol-icon-default:before{content:\"\\ebff\"}/*!@.codicon-layout-sidebar-right-off:before*/.codicon-layout-sidebar-right-off.sc-kol-icon-default:before{content:\"\\ec00\"}/*!@.codicon-layout-panel-off:before*/.codicon-layout-panel-off.sc-kol-icon-default:before{content:\"\\ec01\"}/*!@.codicon-layout-sidebar-left-off:before*/.codicon-layout-sidebar-left-off.sc-kol-icon-default:before{content:\"\\ec02\"}/*!@.codicon-blank:before*/.codicon-blank.sc-kol-icon-default:before{content:\"\\ec03\"}/*!@.codicon-heart-filled:before*/.codicon-heart-filled.sc-kol-icon-default:before{content:\"\\ec04\"}/*!@.codicon-map:before*/.codicon-map.sc-kol-icon-default:before{content:\"\\ec05\"}/*!@.codicon-map-filled:before*/.codicon-map-filled.sc-kol-icon-default:before{content:\"\\ec06\"}/*!@.codicon-circle-small:before*/.codicon-circle-small.sc-kol-icon-default:before{content:\"\\ec07\"}/*!@.codicon-bell-slash:before*/.codicon-bell-slash.sc-kol-icon-default:before{content:\"\\ec08\"}/*!@.codicon-bell-slash-dot:before*/.codicon-bell-slash-dot.sc-kol-icon-default:before{content:\"\\ec09\"}/*!@.codicon-comment-unresolved:before*/.codicon-comment-unresolved.sc-kol-icon-default:before{content:\"\\ec0a\"}/*!@.codicon-git-pull-request-go-to-changes:before*/.codicon-git-pull-request-go-to-changes.sc-kol-icon-default:before{content:\"\\ec0b\"}/*!@.codicon-git-pull-request-new-changes:before*/.codicon-git-pull-request-new-changes.sc-kol-icon-default:before{content:\"\\ec0c\"}/*!@:host*/.sc-kol-icon-default-h{color:inherit;display:contents;height:1em;line-height:inherit;width:1em}/*!@:host > i*/.sc-kol-icon-default-h>i.sc-kol-icon-default{height:1em;width:1em}/*!@:host > i,\n:host > i:before*/.sc-kol-icon-default-h>i.sc-kol-icon-default,.sc-kol-icon-default-h>i.sc-kol-icon-default:before{font-size:inherit !important}";
|
|
9054
|
+
const defaultStyleCss$w = "@font-face{font-family:\"codicon\";font-display:block;src:url(\"./codicon.ttf?0e5b0adf625a37fbcd638d31f0fe72aa\") format(\"truetype\")}.codicon[class*=codicon-]{font:normal normal normal 16px/1 codicon;display:inline-block;text-decoration:none;text-rendering:auto;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;user-select:none;-webkit-user-select:none;-ms-user-select:none}@keyframes codicon-spin{100%{transform:rotate(360deg)}}.codicon-sync.codicon-modifier-spin,.codicon-loading.codicon-modifier-spin,.codicon-gear.codicon-modifier-spin{animation:codicon-spin 1.5s steps(30) infinite}.codicon-modifier-disabled{opacity:0.5}.codicon-modifier-hidden{opacity:0}.codicon-loading{animation-duration:1s !important;animation-timing-function:cubic-bezier(0.53, 0.21, 0.29, 0.67) !important}.codicon-add:before{content:\"\\ea60\"}.codicon-plus:before{content:\"\\ea60\"}.codicon-gist-new:before{content:\"\\ea60\"}.codicon-repo-create:before{content:\"\\ea60\"}.codicon-lightbulb:before{content:\"\\ea61\"}.codicon-light-bulb:before{content:\"\\ea61\"}.codicon-repo:before{content:\"\\ea62\"}.codicon-repo-delete:before{content:\"\\ea62\"}.codicon-gist-fork:before{content:\"\\ea63\"}.codicon-repo-forked:before{content:\"\\ea63\"}.codicon-git-pull-request:before{content:\"\\ea64\"}.codicon-git-pull-request-abandoned:before{content:\"\\ea64\"}.codicon-record-keys:before{content:\"\\ea65\"}.codicon-keyboard:before{content:\"\\ea65\"}.codicon-tag:before{content:\"\\ea66\"}.codicon-tag-add:before{content:\"\\ea66\"}.codicon-tag-remove:before{content:\"\\ea66\"}.codicon-person:before{content:\"\\ea67\"}.codicon-person-follow:before{content:\"\\ea67\"}.codicon-person-outline:before{content:\"\\ea67\"}.codicon-person-filled:before{content:\"\\ea67\"}.codicon-git-branch:before{content:\"\\ea68\"}.codicon-git-branch-create:before{content:\"\\ea68\"}.codicon-git-branch-delete:before{content:\"\\ea68\"}.codicon-source-control:before{content:\"\\ea68\"}.codicon-mirror:before{content:\"\\ea69\"}.codicon-mirror-public:before{content:\"\\ea69\"}.codicon-star:before{content:\"\\ea6a\"}.codicon-star-add:before{content:\"\\ea6a\"}.codicon-star-delete:before{content:\"\\ea6a\"}.codicon-star-empty:before{content:\"\\ea6a\"}.codicon-comment:before{content:\"\\ea6b\"}.codicon-comment-add:before{content:\"\\ea6b\"}.codicon-alert:before{content:\"\\ea6c\"}.codicon-warning:before{content:\"\\ea6c\"}.codicon-search:before{content:\"\\ea6d\"}.codicon-search-save:before{content:\"\\ea6d\"}.codicon-log-out:before{content:\"\\ea6e\"}.codicon-sign-out:before{content:\"\\ea6e\"}.codicon-log-in:before{content:\"\\ea6f\"}.codicon-sign-in:before{content:\"\\ea6f\"}.codicon-eye:before{content:\"\\ea70\"}.codicon-eye-unwatch:before{content:\"\\ea70\"}.codicon-eye-watch:before{content:\"\\ea70\"}.codicon-circle-filled:before{content:\"\\ea71\"}.codicon-primitive-dot:before{content:\"\\ea71\"}.codicon-close-dirty:before{content:\"\\ea71\"}.codicon-debug-breakpoint:before{content:\"\\ea71\"}.codicon-debug-breakpoint-disabled:before{content:\"\\ea71\"}.codicon-debug-hint:before{content:\"\\ea71\"}.codicon-primitive-square:before{content:\"\\ea72\"}.codicon-edit:before{content:\"\\ea73\"}.codicon-pencil:before{content:\"\\ea73\"}.codicon-info:before{content:\"\\ea74\"}.codicon-issue-opened:before{content:\"\\ea74\"}.codicon-gist-private:before{content:\"\\ea75\"}.codicon-git-fork-private:before{content:\"\\ea75\"}.codicon-lock:before{content:\"\\ea75\"}.codicon-mirror-private:before{content:\"\\ea75\"}.codicon-close:before{content:\"\\ea76\"}.codicon-remove-close:before{content:\"\\ea76\"}.codicon-x:before{content:\"\\ea76\"}.codicon-repo-sync:before{content:\"\\ea77\"}.codicon-sync:before{content:\"\\ea77\"}.codicon-clone:before{content:\"\\ea78\"}.codicon-desktop-download:before{content:\"\\ea78\"}.codicon-beaker:before{content:\"\\ea79\"}.codicon-microscope:before{content:\"\\ea79\"}.codicon-vm:before{content:\"\\ea7a\"}.codicon-device-desktop:before{content:\"\\ea7a\"}.codicon-file:before{content:\"\\ea7b\"}.codicon-file-text:before{content:\"\\ea7b\"}.codicon-more:before{content:\"\\ea7c\"}.codicon-ellipsis:before{content:\"\\ea7c\"}.codicon-kebab-horizontal:before{content:\"\\ea7c\"}.codicon-mail-reply:before{content:\"\\ea7d\"}.codicon-reply:before{content:\"\\ea7d\"}.codicon-organization:before{content:\"\\ea7e\"}.codicon-organization-filled:before{content:\"\\ea7e\"}.codicon-organization-outline:before{content:\"\\ea7e\"}.codicon-new-file:before{content:\"\\ea7f\"}.codicon-file-add:before{content:\"\\ea7f\"}.codicon-new-folder:before{content:\"\\ea80\"}.codicon-file-directory-create:before{content:\"\\ea80\"}.codicon-trash:before{content:\"\\ea81\"}.codicon-trashcan:before{content:\"\\ea81\"}.codicon-history:before{content:\"\\ea82\"}.codicon-clock:before{content:\"\\ea82\"}.codicon-folder:before{content:\"\\ea83\"}.codicon-file-directory:before{content:\"\\ea83\"}.codicon-symbol-folder:before{content:\"\\ea83\"}.codicon-logo-github:before{content:\"\\ea84\"}.codicon-mark-github:before{content:\"\\ea84\"}.codicon-github:before{content:\"\\ea84\"}.codicon-terminal:before{content:\"\\ea85\"}.codicon-console:before{content:\"\\ea85\"}.codicon-repl:before{content:\"\\ea85\"}.codicon-zap:before{content:\"\\ea86\"}.codicon-symbol-event:before{content:\"\\ea86\"}.codicon-error:before{content:\"\\ea87\"}.codicon-stop:before{content:\"\\ea87\"}.codicon-variable:before{content:\"\\ea88\"}.codicon-symbol-variable:before{content:\"\\ea88\"}.codicon-array:before{content:\"\\ea8a\"}.codicon-symbol-array:before{content:\"\\ea8a\"}.codicon-symbol-module:before{content:\"\\ea8b\"}.codicon-symbol-package:before{content:\"\\ea8b\"}.codicon-symbol-namespace:before{content:\"\\ea8b\"}.codicon-symbol-object:before{content:\"\\ea8b\"}.codicon-symbol-method:before{content:\"\\ea8c\"}.codicon-symbol-function:before{content:\"\\ea8c\"}.codicon-symbol-constructor:before{content:\"\\ea8c\"}.codicon-symbol-boolean:before{content:\"\\ea8f\"}.codicon-symbol-null:before{content:\"\\ea8f\"}.codicon-symbol-numeric:before{content:\"\\ea90\"}.codicon-symbol-number:before{content:\"\\ea90\"}.codicon-symbol-structure:before{content:\"\\ea91\"}.codicon-symbol-struct:before{content:\"\\ea91\"}.codicon-symbol-parameter:before{content:\"\\ea92\"}.codicon-symbol-type-parameter:before{content:\"\\ea92\"}.codicon-symbol-key:before{content:\"\\ea93\"}.codicon-symbol-text:before{content:\"\\ea93\"}.codicon-symbol-reference:before{content:\"\\ea94\"}.codicon-go-to-file:before{content:\"\\ea94\"}.codicon-symbol-enum:before{content:\"\\ea95\"}.codicon-symbol-value:before{content:\"\\ea95\"}.codicon-symbol-ruler:before{content:\"\\ea96\"}.codicon-symbol-unit:before{content:\"\\ea96\"}.codicon-activate-breakpoints:before{content:\"\\ea97\"}.codicon-archive:before{content:\"\\ea98\"}.codicon-arrow-both:before{content:\"\\ea99\"}.codicon-arrow-down:before{content:\"\\ea9a\"}.codicon-arrow-left:before{content:\"\\ea9b\"}.codicon-arrow-right:before{content:\"\\ea9c\"}.codicon-arrow-small-down:before{content:\"\\ea9d\"}.codicon-arrow-small-left:before{content:\"\\ea9e\"}.codicon-arrow-small-right:before{content:\"\\ea9f\"}.codicon-arrow-small-up:before{content:\"\\eaa0\"}.codicon-arrow-up:before{content:\"\\eaa1\"}.codicon-bell:before{content:\"\\eaa2\"}.codicon-bold:before{content:\"\\eaa3\"}.codicon-book:before{content:\"\\eaa4\"}.codicon-bookmark:before{content:\"\\eaa5\"}.codicon-debug-breakpoint-conditional-unverified:before{content:\"\\eaa6\"}.codicon-debug-breakpoint-conditional:before{content:\"\\eaa7\"}.codicon-debug-breakpoint-conditional-disabled:before{content:\"\\eaa7\"}.codicon-debug-breakpoint-data-unverified:before{content:\"\\eaa8\"}.codicon-debug-breakpoint-data:before{content:\"\\eaa9\"}.codicon-debug-breakpoint-data-disabled:before{content:\"\\eaa9\"}.codicon-debug-breakpoint-log-unverified:before{content:\"\\eaaa\"}.codicon-debug-breakpoint-log:before{content:\"\\eaab\"}.codicon-debug-breakpoint-log-disabled:before{content:\"\\eaab\"}.codicon-briefcase:before{content:\"\\eaac\"}.codicon-broadcast:before{content:\"\\eaad\"}.codicon-browser:before{content:\"\\eaae\"}.codicon-bug:before{content:\"\\eaaf\"}.codicon-calendar:before{content:\"\\eab0\"}.codicon-case-sensitive:before{content:\"\\eab1\"}.codicon-check:before{content:\"\\eab2\"}.codicon-checklist:before{content:\"\\eab3\"}.codicon-chevron-down:before{content:\"\\eab4\"}.codicon-chevron-left:before{content:\"\\eab5\"}.codicon-chevron-right:before{content:\"\\eab6\"}.codicon-chevron-up:before{content:\"\\eab7\"}.codicon-chrome-close:before{content:\"\\eab8\"}.codicon-chrome-maximize:before{content:\"\\eab9\"}.codicon-chrome-minimize:before{content:\"\\eaba\"}.codicon-chrome-restore:before{content:\"\\eabb\"}.codicon-circle-outline:before{content:\"\\eabc\"}.codicon-debug-breakpoint-unverified:before{content:\"\\eabc\"}.codicon-circle-slash:before{content:\"\\eabd\"}.codicon-circuit-board:before{content:\"\\eabe\"}.codicon-clear-all:before{content:\"\\eabf\"}.codicon-clippy:before{content:\"\\eac0\"}.codicon-close-all:before{content:\"\\eac1\"}.codicon-cloud-download:before{content:\"\\eac2\"}.codicon-cloud-upload:before{content:\"\\eac3\"}.codicon-code:before{content:\"\\eac4\"}.codicon-collapse-all:before{content:\"\\eac5\"}.codicon-color-mode:before{content:\"\\eac6\"}.codicon-comment-discussion:before{content:\"\\eac7\"}.codicon-credit-card:before{content:\"\\eac9\"}.codicon-dash:before{content:\"\\eacc\"}.codicon-dashboard:before{content:\"\\eacd\"}.codicon-database:before{content:\"\\eace\"}.codicon-debug-continue:before{content:\"\\eacf\"}.codicon-debug-disconnect:before{content:\"\\ead0\"}.codicon-debug-pause:before{content:\"\\ead1\"}.codicon-debug-restart:before{content:\"\\ead2\"}.codicon-debug-start:before{content:\"\\ead3\"}.codicon-debug-step-into:before{content:\"\\ead4\"}.codicon-debug-step-out:before{content:\"\\ead5\"}.codicon-debug-step-over:before{content:\"\\ead6\"}.codicon-debug-stop:before{content:\"\\ead7\"}.codicon-debug:before{content:\"\\ead8\"}.codicon-device-camera-video:before{content:\"\\ead9\"}.codicon-device-camera:before{content:\"\\eada\"}.codicon-device-mobile:before{content:\"\\eadb\"}.codicon-diff-added:before{content:\"\\eadc\"}.codicon-diff-ignored:before{content:\"\\eadd\"}.codicon-diff-modified:before{content:\"\\eade\"}.codicon-diff-removed:before{content:\"\\eadf\"}.codicon-diff-renamed:before{content:\"\\eae0\"}.codicon-diff:before{content:\"\\eae1\"}.codicon-discard:before{content:\"\\eae2\"}.codicon-editor-layout:before{content:\"\\eae3\"}.codicon-empty-window:before{content:\"\\eae4\"}.codicon-exclude:before{content:\"\\eae5\"}.codicon-extensions:before{content:\"\\eae6\"}.codicon-eye-closed:before{content:\"\\eae7\"}.codicon-file-binary:before{content:\"\\eae8\"}.codicon-file-code:before{content:\"\\eae9\"}.codicon-file-media:before{content:\"\\eaea\"}.codicon-file-pdf:before{content:\"\\eaeb\"}.codicon-file-submodule:before{content:\"\\eaec\"}.codicon-file-symlink-directory:before{content:\"\\eaed\"}.codicon-file-symlink-file:before{content:\"\\eaee\"}.codicon-file-zip:before{content:\"\\eaef\"}.codicon-files:before{content:\"\\eaf0\"}.codicon-filter:before{content:\"\\eaf1\"}.codicon-flame:before{content:\"\\eaf2\"}.codicon-fold-down:before{content:\"\\eaf3\"}.codicon-fold-up:before{content:\"\\eaf4\"}.codicon-fold:before{content:\"\\eaf5\"}.codicon-folder-active:before{content:\"\\eaf6\"}.codicon-folder-opened:before{content:\"\\eaf7\"}.codicon-gear:before{content:\"\\eaf8\"}.codicon-gift:before{content:\"\\eaf9\"}.codicon-gist-secret:before{content:\"\\eafa\"}.codicon-gist:before{content:\"\\eafb\"}.codicon-git-commit:before{content:\"\\eafc\"}.codicon-git-compare:before{content:\"\\eafd\"}.codicon-compare-changes:before{content:\"\\eafd\"}.codicon-git-merge:before{content:\"\\eafe\"}.codicon-github-action:before{content:\"\\eaff\"}.codicon-github-alt:before{content:\"\\eb00\"}.codicon-globe:before{content:\"\\eb01\"}.codicon-grabber:before{content:\"\\eb02\"}.codicon-graph:before{content:\"\\eb03\"}.codicon-gripper:before{content:\"\\eb04\"}.codicon-heart:before{content:\"\\eb05\"}.codicon-home:before{content:\"\\eb06\"}.codicon-horizontal-rule:before{content:\"\\eb07\"}.codicon-hubot:before{content:\"\\eb08\"}.codicon-inbox:before{content:\"\\eb09\"}.codicon-issue-reopened:before{content:\"\\eb0b\"}.codicon-issues:before{content:\"\\eb0c\"}.codicon-italic:before{content:\"\\eb0d\"}.codicon-jersey:before{content:\"\\eb0e\"}.codicon-json:before{content:\"\\eb0f\"}.codicon-kebab-vertical:before{content:\"\\eb10\"}.codicon-key:before{content:\"\\eb11\"}.codicon-law:before{content:\"\\eb12\"}.codicon-lightbulb-autofix:before{content:\"\\eb13\"}.codicon-link-external:before{content:\"\\eb14\"}.codicon-link:before{content:\"\\eb15\"}.codicon-list-ordered:before{content:\"\\eb16\"}.codicon-list-unordered:before{content:\"\\eb17\"}.codicon-live-share:before{content:\"\\eb18\"}.codicon-loading:before{content:\"\\eb19\"}.codicon-location:before{content:\"\\eb1a\"}.codicon-mail-read:before{content:\"\\eb1b\"}.codicon-mail:before{content:\"\\eb1c\"}.codicon-markdown:before{content:\"\\eb1d\"}.codicon-megaphone:before{content:\"\\eb1e\"}.codicon-mention:before{content:\"\\eb1f\"}.codicon-milestone:before{content:\"\\eb20\"}.codicon-mortar-board:before{content:\"\\eb21\"}.codicon-move:before{content:\"\\eb22\"}.codicon-multiple-windows:before{content:\"\\eb23\"}.codicon-mute:before{content:\"\\eb24\"}.codicon-no-newline:before{content:\"\\eb25\"}.codicon-note:before{content:\"\\eb26\"}.codicon-octoface:before{content:\"\\eb27\"}.codicon-open-preview:before{content:\"\\eb28\"}.codicon-package:before{content:\"\\eb29\"}.codicon-paintcan:before{content:\"\\eb2a\"}.codicon-pin:before{content:\"\\eb2b\"}.codicon-play:before{content:\"\\eb2c\"}.codicon-run:before{content:\"\\eb2c\"}.codicon-plug:before{content:\"\\eb2d\"}.codicon-preserve-case:before{content:\"\\eb2e\"}.codicon-preview:before{content:\"\\eb2f\"}.codicon-project:before{content:\"\\eb30\"}.codicon-pulse:before{content:\"\\eb31\"}.codicon-question:before{content:\"\\eb32\"}.codicon-quote:before{content:\"\\eb33\"}.codicon-radio-tower:before{content:\"\\eb34\"}.codicon-reactions:before{content:\"\\eb35\"}.codicon-references:before{content:\"\\eb36\"}.codicon-refresh:before{content:\"\\eb37\"}.codicon-regex:before{content:\"\\eb38\"}.codicon-remote-explorer:before{content:\"\\eb39\"}.codicon-remote:before{content:\"\\eb3a\"}.codicon-remove:before{content:\"\\eb3b\"}.codicon-replace-all:before{content:\"\\eb3c\"}.codicon-replace:before{content:\"\\eb3d\"}.codicon-repo-clone:before{content:\"\\eb3e\"}.codicon-repo-force-push:before{content:\"\\eb3f\"}.codicon-repo-pull:before{content:\"\\eb40\"}.codicon-repo-push:before{content:\"\\eb41\"}.codicon-report:before{content:\"\\eb42\"}.codicon-request-changes:before{content:\"\\eb43\"}.codicon-rocket:before{content:\"\\eb44\"}.codicon-root-folder-opened:before{content:\"\\eb45\"}.codicon-root-folder:before{content:\"\\eb46\"}.codicon-rss:before{content:\"\\eb47\"}.codicon-ruby:before{content:\"\\eb48\"}.codicon-save-all:before{content:\"\\eb49\"}.codicon-save-as:before{content:\"\\eb4a\"}.codicon-save:before{content:\"\\eb4b\"}.codicon-screen-full:before{content:\"\\eb4c\"}.codicon-screen-normal:before{content:\"\\eb4d\"}.codicon-search-stop:before{content:\"\\eb4e\"}.codicon-server:before{content:\"\\eb50\"}.codicon-settings-gear:before{content:\"\\eb51\"}.codicon-settings:before{content:\"\\eb52\"}.codicon-shield:before{content:\"\\eb53\"}.codicon-smiley:before{content:\"\\eb54\"}.codicon-sort-precedence:before{content:\"\\eb55\"}.codicon-split-horizontal:before{content:\"\\eb56\"}.codicon-split-vertical:before{content:\"\\eb57\"}.codicon-squirrel:before{content:\"\\eb58\"}.codicon-star-full:before{content:\"\\eb59\"}.codicon-star-half:before{content:\"\\eb5a\"}.codicon-symbol-class:before{content:\"\\eb5b\"}.codicon-symbol-color:before{content:\"\\eb5c\"}.codicon-symbol-constant:before{content:\"\\eb5d\"}.codicon-symbol-enum-member:before{content:\"\\eb5e\"}.codicon-symbol-field:before{content:\"\\eb5f\"}.codicon-symbol-file:before{content:\"\\eb60\"}.codicon-symbol-interface:before{content:\"\\eb61\"}.codicon-symbol-keyword:before{content:\"\\eb62\"}.codicon-symbol-misc:before{content:\"\\eb63\"}.codicon-symbol-operator:before{content:\"\\eb64\"}.codicon-symbol-property:before{content:\"\\eb65\"}.codicon-wrench:before{content:\"\\eb65\"}.codicon-wrench-subaction:before{content:\"\\eb65\"}.codicon-symbol-snippet:before{content:\"\\eb66\"}.codicon-tasklist:before{content:\"\\eb67\"}.codicon-telescope:before{content:\"\\eb68\"}.codicon-text-size:before{content:\"\\eb69\"}.codicon-three-bars:before{content:\"\\eb6a\"}.codicon-thumbsdown:before{content:\"\\eb6b\"}.codicon-thumbsup:before{content:\"\\eb6c\"}.codicon-tools:before{content:\"\\eb6d\"}.codicon-triangle-down:before{content:\"\\eb6e\"}.codicon-triangle-left:before{content:\"\\eb6f\"}.codicon-triangle-right:before{content:\"\\eb70\"}.codicon-triangle-up:before{content:\"\\eb71\"}.codicon-twitter:before{content:\"\\eb72\"}.codicon-unfold:before{content:\"\\eb73\"}.codicon-unlock:before{content:\"\\eb74\"}.codicon-unmute:before{content:\"\\eb75\"}.codicon-unverified:before{content:\"\\eb76\"}.codicon-verified:before{content:\"\\eb77\"}.codicon-versions:before{content:\"\\eb78\"}.codicon-vm-active:before{content:\"\\eb79\"}.codicon-vm-outline:before{content:\"\\eb7a\"}.codicon-vm-running:before{content:\"\\eb7b\"}.codicon-watch:before{content:\"\\eb7c\"}.codicon-whitespace:before{content:\"\\eb7d\"}.codicon-whole-word:before{content:\"\\eb7e\"}.codicon-window:before{content:\"\\eb7f\"}.codicon-word-wrap:before{content:\"\\eb80\"}.codicon-zoom-in:before{content:\"\\eb81\"}.codicon-zoom-out:before{content:\"\\eb82\"}.codicon-list-filter:before{content:\"\\eb83\"}.codicon-list-flat:before{content:\"\\eb84\"}.codicon-list-selection:before{content:\"\\eb85\"}.codicon-selection:before{content:\"\\eb85\"}.codicon-list-tree:before{content:\"\\eb86\"}.codicon-debug-breakpoint-function-unverified:before{content:\"\\eb87\"}.codicon-debug-breakpoint-function:before{content:\"\\eb88\"}.codicon-debug-breakpoint-function-disabled:before{content:\"\\eb88\"}.codicon-debug-stackframe-active:before{content:\"\\eb89\"}.codicon-circle-small-filled:before{content:\"\\eb8a\"}.codicon-debug-stackframe-dot:before{content:\"\\eb8a\"}.codicon-debug-stackframe:before{content:\"\\eb8b\"}.codicon-debug-stackframe-focused:before{content:\"\\eb8b\"}.codicon-debug-breakpoint-unsupported:before{content:\"\\eb8c\"}.codicon-symbol-string:before{content:\"\\eb8d\"}.codicon-debug-reverse-continue:before{content:\"\\eb8e\"}.codicon-debug-step-back:before{content:\"\\eb8f\"}.codicon-debug-restart-frame:before{content:\"\\eb90\"}.codicon-debug-alt:before{content:\"\\eb91\"}.codicon-call-incoming:before{content:\"\\eb92\"}.codicon-call-outgoing:before{content:\"\\eb93\"}.codicon-menu:before{content:\"\\eb94\"}.codicon-expand-all:before{content:\"\\eb95\"}.codicon-feedback:before{content:\"\\eb96\"}.codicon-group-by-ref-type:before{content:\"\\eb97\"}.codicon-ungroup-by-ref-type:before{content:\"\\eb98\"}.codicon-account:before{content:\"\\eb99\"}.codicon-bell-dot:before{content:\"\\eb9a\"}.codicon-debug-console:before{content:\"\\eb9b\"}.codicon-library:before{content:\"\\eb9c\"}.codicon-output:before{content:\"\\eb9d\"}.codicon-run-all:before{content:\"\\eb9e\"}.codicon-sync-ignored:before{content:\"\\eb9f\"}.codicon-pinned:before{content:\"\\eba0\"}.codicon-github-inverted:before{content:\"\\eba1\"}.codicon-server-process:before{content:\"\\eba2\"}.codicon-server-environment:before{content:\"\\eba3\"}.codicon-pass:before{content:\"\\eba4\"}.codicon-issue-closed:before{content:\"\\eba4\"}.codicon-stop-circle:before{content:\"\\eba5\"}.codicon-play-circle:before{content:\"\\eba6\"}.codicon-record:before{content:\"\\eba7\"}.codicon-debug-alt-small:before{content:\"\\eba8\"}.codicon-vm-connect:before{content:\"\\eba9\"}.codicon-cloud:before{content:\"\\ebaa\"}.codicon-merge:before{content:\"\\ebab\"}.codicon-export:before{content:\"\\ebac\"}.codicon-graph-left:before{content:\"\\ebad\"}.codicon-magnet:before{content:\"\\ebae\"}.codicon-notebook:before{content:\"\\ebaf\"}.codicon-redo:before{content:\"\\ebb0\"}.codicon-check-all:before{content:\"\\ebb1\"}.codicon-pinned-dirty:before{content:\"\\ebb2\"}.codicon-pass-filled:before{content:\"\\ebb3\"}.codicon-circle-large-filled:before{content:\"\\ebb4\"}.codicon-circle-large-outline:before{content:\"\\ebb5\"}.codicon-combine:before{content:\"\\ebb6\"}.codicon-gather:before{content:\"\\ebb6\"}.codicon-table:before{content:\"\\ebb7\"}.codicon-variable-group:before{content:\"\\ebb8\"}.codicon-type-hierarchy:before{content:\"\\ebb9\"}.codicon-type-hierarchy-sub:before{content:\"\\ebba\"}.codicon-type-hierarchy-super:before{content:\"\\ebbb\"}.codicon-git-pull-request-create:before{content:\"\\ebbc\"}.codicon-run-above:before{content:\"\\ebbd\"}.codicon-run-below:before{content:\"\\ebbe\"}.codicon-notebook-template:before{content:\"\\ebbf\"}.codicon-debug-rerun:before{content:\"\\ebc0\"}.codicon-workspace-trusted:before{content:\"\\ebc1\"}.codicon-workspace-untrusted:before{content:\"\\ebc2\"}.codicon-workspace-unknown:before{content:\"\\ebc3\"}.codicon-terminal-cmd:before{content:\"\\ebc4\"}.codicon-terminal-debian:before{content:\"\\ebc5\"}.codicon-terminal-linux:before{content:\"\\ebc6\"}.codicon-terminal-powershell:before{content:\"\\ebc7\"}.codicon-terminal-tmux:before{content:\"\\ebc8\"}.codicon-terminal-ubuntu:before{content:\"\\ebc9\"}.codicon-terminal-bash:before{content:\"\\ebca\"}.codicon-arrow-swap:before{content:\"\\ebcb\"}.codicon-copy:before{content:\"\\ebcc\"}.codicon-person-add:before{content:\"\\ebcd\"}.codicon-filter-filled:before{content:\"\\ebce\"}.codicon-wand:before{content:\"\\ebcf\"}.codicon-debug-line-by-line:before{content:\"\\ebd0\"}.codicon-inspect:before{content:\"\\ebd1\"}.codicon-layers:before{content:\"\\ebd2\"}.codicon-layers-dot:before{content:\"\\ebd3\"}.codicon-layers-active:before{content:\"\\ebd4\"}.codicon-compass:before{content:\"\\ebd5\"}.codicon-compass-dot:before{content:\"\\ebd6\"}.codicon-compass-active:before{content:\"\\ebd7\"}.codicon-azure:before{content:\"\\ebd8\"}.codicon-issue-draft:before{content:\"\\ebd9\"}.codicon-git-pull-request-closed:before{content:\"\\ebda\"}.codicon-git-pull-request-draft:before{content:\"\\ebdb\"}.codicon-debug-all:before{content:\"\\ebdc\"}.codicon-debug-coverage:before{content:\"\\ebdd\"}.codicon-run-errors:before{content:\"\\ebde\"}.codicon-folder-library:before{content:\"\\ebdf\"}.codicon-debug-continue-small:before{content:\"\\ebe0\"}.codicon-beaker-stop:before{content:\"\\ebe1\"}.codicon-graph-line:before{content:\"\\ebe2\"}.codicon-graph-scatter:before{content:\"\\ebe3\"}.codicon-pie-chart:before{content:\"\\ebe4\"}.codicon-bracket:before{content:\"\\eb0f\"}.codicon-bracket-dot:before{content:\"\\ebe5\"}.codicon-bracket-error:before{content:\"\\ebe6\"}.codicon-lock-small:before{content:\"\\ebe7\"}.codicon-azure-devops:before{content:\"\\ebe8\"}.codicon-verified-filled:before{content:\"\\ebe9\"}.codicon-newline:before{content:\"\\ebea\"}.codicon-layout:before{content:\"\\ebeb\"}.codicon-layout-activitybar-left:before{content:\"\\ebec\"}.codicon-layout-activitybar-right:before{content:\"\\ebed\"}.codicon-layout-panel-left:before{content:\"\\ebee\"}.codicon-layout-panel-center:before{content:\"\\ebef\"}.codicon-layout-panel-justify:before{content:\"\\ebf0\"}.codicon-layout-panel-right:before{content:\"\\ebf1\"}.codicon-layout-panel:before{content:\"\\ebf2\"}.codicon-layout-sidebar-left:before{content:\"\\ebf3\"}.codicon-layout-sidebar-right:before{content:\"\\ebf4\"}.codicon-layout-statusbar:before{content:\"\\ebf5\"}.codicon-layout-menubar:before{content:\"\\ebf6\"}.codicon-layout-centered:before{content:\"\\ebf7\"}.codicon-target:before{content:\"\\ebf8\"}.codicon-indent:before{content:\"\\ebf9\"}.codicon-record-small:before{content:\"\\ebfa\"}.codicon-error-small:before{content:\"\\ebfb\"}.codicon-arrow-circle-down:before{content:\"\\ebfc\"}.codicon-arrow-circle-left:before{content:\"\\ebfd\"}.codicon-arrow-circle-right:before{content:\"\\ebfe\"}.codicon-arrow-circle-up:before{content:\"\\ebff\"}.codicon-layout-sidebar-right-off:before{content:\"\\ec00\"}.codicon-layout-panel-off:before{content:\"\\ec01\"}.codicon-layout-sidebar-left-off:before{content:\"\\ec02\"}.codicon-blank:before{content:\"\\ec03\"}.codicon-heart-filled:before{content:\"\\ec04\"}.codicon-map:before{content:\"\\ec05\"}.codicon-map-filled:before{content:\"\\ec06\"}.codicon-circle-small:before{content:\"\\ec07\"}.codicon-bell-slash:before{content:\"\\ec08\"}.codicon-bell-slash-dot:before{content:\"\\ec09\"}.codicon-comment-unresolved:before{content:\"\\ec0a\"}.codicon-git-pull-request-go-to-changes:before{content:\"\\ec0b\"}.codicon-git-pull-request-new-changes:before{content:\"\\ec0c\"}:host{color:inherit;display:contents;height:1em;line-height:inherit;width:1em}:host>i{height:1em;width:1em}:host>i,:host>i:before{font-size:inherit !important}";
|
|
9004
9055
|
var KolIconDefaultStyle0 = defaultStyleCss$w;
|
|
9005
9056
|
|
|
9006
9057
|
class KolIcon {
|
|
@@ -9125,7 +9176,7 @@ function validateLoading(component, value) {
|
|
|
9125
9176
|
watchValidator(component, '_loading', (value) => value === 'eager' || value === 'lazy', AVAILABLE_LOADING_VALUES, value);
|
|
9126
9177
|
}
|
|
9127
9178
|
|
|
9128
|
-
const defaultStyleCss$v = "
|
|
9179
|
+
const defaultStyleCss$v = ":host{display:inline-block}img{max-height:100%;max-width:100%}";
|
|
9129
9180
|
var KolImageDefaultStyle0 = defaultStyleCss$v;
|
|
9130
9181
|
|
|
9131
9182
|
class KolImage {
|
|
@@ -9198,7 +9249,7 @@ class KolImage {
|
|
|
9198
9249
|
}; }
|
|
9199
9250
|
}
|
|
9200
9251
|
|
|
9201
|
-
const defaultStyleCss$u = "
|
|
9252
|
+
const defaultStyleCss$u = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:block}:host>div{border-left-style:solid;padding-left:0.5em}";
|
|
9202
9253
|
var KolIndentedTextDefaultStyle0 = defaultStyleCss$u;
|
|
9203
9254
|
|
|
9204
9255
|
class KolIndentedText {
|
|
@@ -9737,7 +9788,7 @@ class InputCheckboxController extends InputCheckboxRadioController {
|
|
|
9737
9788
|
}
|
|
9738
9789
|
}
|
|
9739
9790
|
|
|
9740
|
-
const defaultStyleCss$t = "/*!@:host*/.sc-kol-input-checkbox-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n}\n\n/*!@**/*.sc-kol-input-checkbox-default {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n}\n\n\n\n\n\n\n/*!@[role=button],\nbutton:not([role=link]),\n.kol-input .input*/[role=button].sc-kol-input-checkbox-default, button.sc-kol-input-checkbox-default:not([role=link]), .kol-input.sc-kol-input-checkbox-default .input.sc-kol-input-checkbox-default {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n}\n\n\n/*!@a,\nbutton,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\ninput,\noption,\nselect,\ntextarea*/a.sc-kol-input-checkbox-default, button.sc-kol-input-checkbox-default, h1.sc-kol-input-checkbox-default, h2.sc-kol-input-checkbox-default, h3.sc-kol-input-checkbox-default, h4.sc-kol-input-checkbox-default, h5.sc-kol-input-checkbox-default, h6.sc-kol-input-checkbox-default, input.sc-kol-input-checkbox-default, option.sc-kol-input-checkbox-default, select.sc-kol-input-checkbox-default, textarea.sc-kol-input-checkbox-default {\n \n font-family: inherit;\n \n font-size: inherit;\n}\n\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-checkbox-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n\n/*!@:is(a, button)*/.sc-kol-input-checkbox-default:is(a, button).sc-kol-input-checkbox-default {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n}\n\n\n/*!@[hidden]*/[hidden].sc-kol-input-checkbox-default {\n display: none !important;\n}\n\n/*!@:host*/.sc-kol-input-checkbox-default-h {\n \n max-width: 100%;\n}\n\n/*!@**/*.sc-kol-input-checkbox-default {\n \n box-sizing: border-box;\n}\n\n\n/*!@.kol-span-wc*/.kol-span-wc.sc-kol-input-checkbox-default {\n display: grid;\n place-items: center;\n}\n\n\n/*!@.kol-span-wc > span*/.kol-span-wc.sc-kol-input-checkbox-default > span.sc-kol-input-checkbox-default {\n display: flex;\n place-items: center;\n}\n\n/*!@a,\nbutton*/a.sc-kol-input-checkbox-default, button.sc-kol-input-checkbox-default {\n cursor: pointer;\n}\n\n\n/*!@.icon-only > .kol-span-wc > span > span*/.icon-only.sc-kol-input-checkbox-default > .kol-span-wc.sc-kol-input-checkbox-default > span.sc-kol-input-checkbox-default > span.sc-kol-input-checkbox-default {\n display: none;\n}\n\n/*!@.hidden*/.hidden.sc-kol-input-checkbox-default {\n display: none;\n visibility: hidden;\n}\n\n/*!@.required label > span::after,\n.required legend > span::after*/.required.sc-kol-input-checkbox-default label.sc-kol-input-checkbox-default > span.sc-kol-input-checkbox-default::after, .required.sc-kol-input-checkbox-default legend.sc-kol-input-checkbox-default > span.sc-kol-input-checkbox-default::after {\n content: \"*\";\n}\n\n/*!@:host*/.sc-kol-input-checkbox-default-h {\n display: block;\n}\n\n/*!@input,\ntextarea*/input.sc-kol-input-checkbox-default, textarea.sc-kol-input-checkbox-default {\n cursor: text;\n}\n\n/*!@input[type=checkbox],\ninput[type=color],\ninput[type=file],\ninput[type=radio],\ninput[type=range],\nlabel,\noption,\nselect*/input[type=checkbox].sc-kol-input-checkbox-default, input[type=color].sc-kol-input-checkbox-default, input[type=file].sc-kol-input-checkbox-default, input[type=radio].sc-kol-input-checkbox-default, input[type=range].sc-kol-input-checkbox-default, label.sc-kol-input-checkbox-default, option.sc-kol-input-checkbox-default, select.sc-kol-input-checkbox-default {\n cursor: pointer;\n}\n\n\n\n\n/*!@input[type=color],\ninput[type=date],\ninput[type=datetime-local],\ninput[type=email],\ninput[type=file],\ninput[type=month],\ninput[type=number],\ninput[type=password],\ninput[type=search],\ninput[type=tel],\ninput[type=text],\ninput[type=time],\ninput[type=url],\ninput[type=week],\nselect,\nselect[multiple] option,\ntextarea*/input[type=color].sc-kol-input-checkbox-default, input[type=date].sc-kol-input-checkbox-default, input[type=datetime-local].sc-kol-input-checkbox-default, input[type=email].sc-kol-input-checkbox-default, input[type=file].sc-kol-input-checkbox-default, input[type=month].sc-kol-input-checkbox-default, input[type=number].sc-kol-input-checkbox-default, input[type=password].sc-kol-input-checkbox-default, input[type=search].sc-kol-input-checkbox-default, input[type=tel].sc-kol-input-checkbox-default, input[type=text].sc-kol-input-checkbox-default, input[type=time].sc-kol-input-checkbox-default, input[type=url].sc-kol-input-checkbox-default, input[type=week].sc-kol-input-checkbox-default, select.sc-kol-input-checkbox-default, select[multiple].sc-kol-input-checkbox-default option.sc-kol-input-checkbox-default, textarea.sc-kol-input-checkbox-default {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n}\n\n\n/*!@input[type=file]*/input[type=file].sc-kol-input-checkbox-default {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n}\n\n\n/*!@select[multiple] option*/select[multiple].sc-kol-input-checkbox-default option.sc-kol-input-checkbox-default {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n}\n\n/*!@.kol-input.disabled :is(button, input, option, select, textarea, .input-label)*/.kol-input.disabled.sc-kol-input-checkbox-default .sc-kol-input-checkbox-default:is(button, input.sc-kol-input-checkbox-default, option.sc-kol-input-checkbox-default, select.sc-kol-input-checkbox-default, textarea.sc-kol-input-checkbox-default, .input-label).sc-kol-input-checkbox-default {\n cursor: not-allowed;\n opacity: 0.5;\n}\n\n/*!@label*/label.sc-kol-input-checkbox-default {\n cursor: pointer;\n}\n\n/*!@.kol-input*/.kol-input.sc-kol-input-checkbox-default {\n align-items: center;\n display: grid;\n justify-items: left;\n}\n\n/*!@.kol-input.default,\n.kol-input.switch*/.kol-input.default.sc-kol-input-checkbox-default, .kol-input.switch.sc-kol-input-checkbox-default {\n grid-template-columns: auto 1fr;\n}\n\n/*!@.kol-input .input*/.kol-input.sc-kol-input-checkbox-default .input.sc-kol-input-checkbox-default {\n align-items: center;\n display: grid;\n order: 1;\n}\n\n/*!@.kol-input .input div*/.kol-input.sc-kol-input-checkbox-default .input.sc-kol-input-checkbox-default div.sc-kol-input-checkbox-default {\n display: inline-flex;\n}\n\n/*!@.kol-input .input input*/.kol-input.sc-kol-input-checkbox-default .input.sc-kol-input-checkbox-default input.sc-kol-input-checkbox-default {\n margin: 0;\n}\n\n/*!@.kol-input label*/.kol-input.sc-kol-input-checkbox-default label.sc-kol-input-checkbox-default {\n order: 2;\n}\n\n/*!@.kol-input .hint,\n.kol-input.error > .kol-alert*/.kol-input.sc-kol-input-checkbox-default .hint.sc-kol-input-checkbox-default, .kol-input.error.sc-kol-input-checkbox-default > .kol-alert.sc-kol-input-checkbox-default {\n grid-column: span 2;\n}\n\n/*!@.kol-input .kol-alert.error*/.kol-input.sc-kol-input-checkbox-default .kol-alert.error.sc-kol-input-checkbox-default {\n order: 3;\n}\n\n/*!@.kol-input .hint*/.kol-input.sc-kol-input-checkbox-default .hint.sc-kol-input-checkbox-default {\n order: 4;\n}\n\n/*!@input*/input.sc-kol-input-checkbox-default {\n border-style: solid;\n border-width: 2px;\n line-height: 24px;\n}\n\n/*!@input[type=checkbox]*/input[type=checkbox].sc-kol-input-checkbox-default {\n appearance: none;\n background-color: #fff;\n cursor: pointer;\n transition: 0.5s;\n}\n\n/*!@input[type=checkbox].kol-disabled:before*/input[type=checkbox].kol-disabled.sc-kol-input-checkbox-default:before {\n cursor: not-allowed;\n}\n\n/*!@input[type=checkbox]:before*/input[type=checkbox].sc-kol-input-checkbox-default:before {\n content: \"\";\n cursor: pointer;\n}\n\n/*!@.kol-input.required .tooltip-content .span-label::after*/.kol-input.required.sc-kol-input-checkbox-default .tooltip-content.sc-kol-input-checkbox-default .span-label.sc-kol-input-checkbox-default::after {\n content: \"*\";\n}\n\n/*!@.button*/.button.sc-kol-input-checkbox-default {\n display: grid;\n grid-template-columns: var(--a11y-min-size) auto;\n grid-template-areas: \"error error\" \"input label\" \"hint hint\";\n}\n\n/*!@.button:focus-within*/.button.sc-kol-input-checkbox-default:focus-within {\n \n cursor: inherit;\n outline-color: black;\n outline-style: solid;\n}\n\n/*!@.button > .error*/.button.sc-kol-input-checkbox-default > .error.sc-kol-input-checkbox-default {\n grid-area: error;\n}\n\n/*!@.button > label*/.button.sc-kol-input-checkbox-default > label.sc-kol-input-checkbox-default {\n grid-area: label;\n}\n\n/*!@.button > .input*/.button.sc-kol-input-checkbox-default > .input.sc-kol-input-checkbox-default {\n grid-area: input;\n}\n\n/*!@.button > .hint*/.button.sc-kol-input-checkbox-default > .hint.sc-kol-input-checkbox-default {\n grid-area: hint;\n}\n\n/*!@.button .icon*/.button.sc-kol-input-checkbox-default .icon.sc-kol-input-checkbox-default {\n display: flex;\n align-items: center;\n justify-content: center;\n width: var(--a11y-min-size);\n height: var(--a11y-min-size);\n}\n\n@layer kol-component {\n .default .checkbox-container {\n align-items: center;\n display: flex;\n height: var(--a11y-min-size);\n justify-content: center;\n position: relative;\n width: var(--a11y-min-size);\n }\n .default .icon {\n display: block;\n inset: auto;\n position: absolute;\n z-index: 1;\n }\n .default:not(.checked):not(.indeterminate) .icon::part(icon) {\n display: none;\n }\n .default .checkbox-input-element {\n width: 22px;\n height: 22px;\n }\n}\n@layer kol-component {\n .switch .input {\n position: relative;\n }\n .switch input[type=checkbox] {\n display: inline-block;\n height: 1.7em;\n min-width: 3.2em;\n position: relative;\n width: 3.2em;\n }\n .switch input[type=checkbox]::before {\n background-color: #000;\n height: 1.2em;\n left: calc(0.25em - 2px);\n top: calc(0.25em - 2px);\n position: absolute;\n transition: 0.5s;\n width: 1.2em;\n }\n .switch input[type=checkbox]:checked::before {\n transform: translateX(1.5em);\n }\n .switch input[type=checkbox]:indeterminate::before {\n transform: translateX(0.75em);\n }\n .switch .icon {\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 1.2em;\n height: 1.2em;\n position: absolute;\n z-index: 1;\n top: 50%;\n left: 4px;\n transform: translate(0, -50%);\n transition: 0.5s;\n color: #000;\n }\n .switch.checked .icon {\n transform: translate(1.5em, -50%);\n }\n .switch.indeterminate .icon {\n transform: translate(0.75em, -50%);\n }\n}";
|
|
9791
|
+
const defaultStyleCss$t = "/*\n * This file contains all rules for accessibility.\n */\n:host {\n /*\n * Minimum size of interactive elements.\n */\n --a11y-min-size: 44px;\n /*\n * No element should be used without a background and font color whose contrast ratio has\n * not been checked. By initially setting the background color to white and the font color\n * to black, the contrast ratio is ensured and explicit adjustment is forced.\n */\n background-color: white;\n color: black;\n /*\n * Verdana is an accessible font that can be used without requiring additional loading time.\n */\n font-family: Verdana;\n}\n\n* {\n /*\n * This rule enables the word dividing for all texts. That is important for high zoom levels.\n */\n hyphens: auto;\n /*\n * Letter spacing is required for all texts.\n */\n letter-spacing: inherit;\n /*\n * This rule enables the word dividing for all texts. That is important for high zoom levels.\n */\n word-break: break-word;\n /*\n * Word spacing is required for all texts.\n */\n word-spacing: inherit;\n}\n\n/*\n * All interactive elements should have a minimum size of 44px.\n */\n/* input:not([type='checkbox'], [type='radio'], [type='range']), */\n/* option, */\n/* select, */\n/* textarea, */\n[role=button],\nbutton:not([role=link]),\n.kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n}\n\n/*\n * Some interactive elements should not inherit the font-family and font-size.\n */\na,\nbutton,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\ninput,\noption,\nselect,\ntextarea {\n /*\n * All elements should inherit the font family from his parent element.\n */\n font-family: inherit;\n /*\n * All elements should inherit the font size from his parent element.\n */\n font-size: inherit;\n}\n\n/**\n * Sometimes we need the semantic element for accessibility reasons,\n * but we don't want to show it.\n *\n * - https://www.a11yproject.com/posts/how-to-hide-content/\n */\n.visually-hidden {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n/*\n * Dieses CSS stellt sicher, dass der Standard-Style\n * von A und Button resettet werden.\n */\n:is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; /* 100% needed for custom width from outside */\n}\n\n/*\n\t * Ensure elements with hidden attribute to be actually not visible\n\t * @see https://meowni.ca/hidden.is.a.lie.html\n\t */\n[hidden] {\n display: none !important;\n}\n\n:host {\n /*\n * The max-width is needed to prevent the table from overflowing the\n * parent node, if the table is wider than the parent node.\n */\n max-width: 100%;\n}\n\n* {\n /*\n * We prefer to box-sizing: border-box for all elements.\n */\n box-sizing: border-box;\n}\n\n/* KolSpan is a layout component with icons in all directions and a label text in the middle. */\n.kol-span-wc {\n display: grid;\n place-items: center;\n}\n\n/* The sub span in KolSpan is the horizontal span with icon left and right and the label text in the middle. */\n.kol-span-wc > span {\n display: flex;\n place-items: center;\n}\n\na,\nbutton {\n cursor: pointer;\n}\n\n/* This is the text label. */\n.icon-only > .kol-span-wc > span > span {\n display: none;\n}\n\n.hidden {\n display: none;\n visibility: hidden;\n}\n\n.required label > span::after,\n.required legend > span::after {\n content: \"*\";\n}\n\n:host {\n display: block;\n}\n\ninput,\ntextarea {\n cursor: text;\n}\n\ninput[type=checkbox],\ninput[type=color],\ninput[type=file],\ninput[type=radio],\ninput[type=range],\nlabel,\noption,\nselect {\n cursor: pointer;\n}\n\n/* input[type='checkbox'], */\n/* input[type='radio'], */\n/* input[type='range'], */\ninput[type=color],\ninput[type=date],\ninput[type=datetime-local],\ninput[type=email],\ninput[type=file],\ninput[type=month],\ninput[type=number],\ninput[type=password],\ninput[type=search],\ninput[type=tel],\ninput[type=text],\ninput[type=time],\ninput[type=url],\ninput[type=week],\nselect,\nselect[multiple] option,\ntextarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n}\n\n/* needed hack for vertical alignment */\ninput[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n}\n\n/* needed hack for vertical alignment */\nselect[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n}\n\n.kol-input.disabled :is(button, input, option, select, textarea, .input-label) {\n cursor: not-allowed;\n opacity: 0.5;\n}\n\nlabel {\n cursor: pointer;\n}\n\n.kol-input {\n align-items: center;\n display: grid;\n justify-items: left;\n}\n\n.kol-input.default,\n.kol-input.switch {\n grid-template-columns: auto 1fr;\n}\n\n.kol-input .input {\n align-items: center;\n display: grid;\n order: 1;\n}\n\n.kol-input .input div {\n display: inline-flex;\n}\n\n.kol-input .input input {\n margin: 0;\n}\n\n.kol-input label {\n order: 2;\n}\n\n.kol-input .hint,\n.kol-input.error > .kol-alert {\n grid-column: span 2;\n}\n\n.kol-input .kol-alert.error {\n order: 3;\n}\n\n.kol-input .hint {\n order: 4;\n}\n\ninput {\n border-style: solid;\n border-width: 2px;\n line-height: 24px;\n}\n\ninput[type=checkbox] {\n appearance: none;\n background-color: #fff;\n cursor: pointer;\n transition: 0.5s;\n}\n\ninput[type=checkbox].kol-disabled:before {\n cursor: not-allowed;\n}\n\ninput[type=checkbox]:before {\n content: \"\";\n cursor: pointer;\n}\n\n.kol-input.required .tooltip-content .span-label::after {\n content: \"*\";\n}\n\n.button {\n display: grid;\n grid-template-columns: var(--a11y-min-size) auto;\n grid-template-areas: \"error error\" \"input label\" \"hint hint\";\n}\n\n.button:focus-within {\n /* override global `[tabindex]:focus` style */\n cursor: inherit;\n outline-color: black;\n outline-style: solid;\n}\n\n.button > .error {\n grid-area: error;\n}\n\n.button > label {\n grid-area: label;\n}\n\n.button > .input {\n grid-area: input;\n}\n\n.button > .hint {\n grid-area: hint;\n}\n\n.button .icon {\n display: flex;\n align-items: center;\n justify-content: center;\n width: var(--a11y-min-size);\n height: var(--a11y-min-size);\n}\n\n@layer kol-component {\n .default .checkbox-container {\n align-items: center;\n display: flex;\n height: var(--a11y-min-size);\n justify-content: center;\n position: relative;\n width: var(--a11y-min-size);\n }\n .default .icon {\n display: block;\n inset: auto;\n position: absolute;\n z-index: 1;\n }\n .default:not(.checked):not(.indeterminate) .icon::part(icon) {\n display: none;\n }\n .default .checkbox-input-element {\n width: 22px;\n height: 22px;\n }\n}\n@layer kol-component {\n .switch .input {\n position: relative;\n }\n .switch input[type=checkbox] {\n display: inline-block;\n height: 1.7em;\n min-width: 3.2em;\n position: relative;\n width: 3.2em;\n }\n .switch input[type=checkbox]::before {\n background-color: #000;\n height: 1.2em;\n left: calc(0.25em - 2px);\n top: calc(0.25em - 2px);\n position: absolute;\n transition: 0.5s;\n width: 1.2em;\n }\n .switch input[type=checkbox]:checked::before {\n transform: translateX(1.5em);\n }\n .switch input[type=checkbox]:indeterminate::before {\n transform: translateX(0.75em);\n }\n .switch .icon {\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 1.2em;\n height: 1.2em;\n position: absolute;\n z-index: 1;\n top: 50%;\n left: 4px;\n transform: translate(0, -50%);\n transition: 0.5s;\n color: #000;\n }\n .switch.checked .icon {\n transform: translate(1.5em, -50%);\n }\n .switch.indeterminate .icon {\n transform: translate(0.75em, -50%);\n }\n}";
|
|
9741
9792
|
var KolInputCheckboxDefaultStyle0 = defaultStyleCss$t;
|
|
9742
9793
|
|
|
9743
9794
|
class KolInputCheckbox {
|
|
@@ -10028,7 +10079,7 @@ class InputColorController extends InputIconController {
|
|
|
10028
10079
|
}
|
|
10029
10080
|
}
|
|
10030
10081
|
|
|
10031
|
-
const defaultStyleCss$s = "
|
|
10082
|
+
const defaultStyleCss$s = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.required label>span::after,.required legend>span::after{content:\"*\"}:host{display:block}input,textarea{cursor:text}input[type=checkbox],input[type=color],input[type=file],input[type=radio],input[type=range],label,option,select{cursor:pointer}input[type=color],input[type=date],input[type=datetime-local],input[type=email],input[type=file],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,select[multiple] option,textarea{font-size:calc(16rem / var(--kolibri-root-font-size, 16));width:100%}input[type=file]{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em}select[multiple] option{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em}.kol-input.disabled :is(button,input,option,select,textarea,.input-label){cursor:not-allowed;opacity:0.5}.kol-input{display:grid}.kol-input .input-slot{flex-grow:1}input:not([type=checkbox],[type=radio]),select:not([multiple],[size]){height:2.75em}input:focus,option:focus,select:focus,textarea:focus{outline:0}.input{display:flex;align-items:center}.input>.kol-icon{display:grid;height:var(--a11y-min-size);place-items:center}.kol-input.required .input-tooltip .span-label::after{content:\"*\"}div.input{cursor:pointer}";
|
|
10032
10083
|
var KolInputColorDefaultStyle0 = defaultStyleCss$s;
|
|
10033
10084
|
|
|
10034
10085
|
class KolInputColor {
|
|
@@ -10347,7 +10398,7 @@ InputDateController.isoTimeRegex = /^[0-2]\d:[0-5]\d(:[0-5]\d(?:\.\d+)?)?/;
|
|
|
10347
10398
|
InputDateController.isoWeekRegex = /^\d{4}-W(?:[0-4]\d|5[0-3])$/;
|
|
10348
10399
|
InputDateController.DEFAULT_MAX_DATE = new Date(9999, 11, 31, 23, 59, 59);
|
|
10349
10400
|
|
|
10350
|
-
const defaultStyleCss$r = "
|
|
10401
|
+
const defaultStyleCss$r = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.required label>span::after,.required legend>span::after{content:\"*\"}:host{display:block}input,textarea{cursor:text}input[type=checkbox],input[type=color],input[type=file],input[type=radio],input[type=range],label,option,select{cursor:pointer}input[type=color],input[type=date],input[type=datetime-local],input[type=email],input[type=file],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,select[multiple] option,textarea{font-size:calc(16rem / var(--kolibri-root-font-size, 16));width:100%}input[type=file]{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em}select[multiple] option{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em}.kol-input.disabled :is(button,input,option,select,textarea,.input-label){cursor:not-allowed;opacity:0.5}.kol-input{display:grid}.kol-input .input-slot{flex-grow:1}input:not([type=checkbox],[type=radio]),select:not([multiple],[size]){height:2.75em}input:focus,option:focus,select:focus,textarea:focus{outline:0}.input{display:flex;align-items:center}.input>.kol-icon{display:grid;height:var(--a11y-min-size);place-items:center}.kol-input.required .input-tooltip .span-label::after{content:\"*\"}.kol-input-number{display:block}";
|
|
10351
10402
|
var KolInputDateDefaultStyle0 = defaultStyleCss$r;
|
|
10352
10403
|
|
|
10353
10404
|
class KolInputDate {
|
|
@@ -10680,7 +10731,7 @@ class InputEmailController extends InputTextEmailController {
|
|
|
10680
10731
|
}
|
|
10681
10732
|
}
|
|
10682
10733
|
|
|
10683
|
-
const defaultStyleCss$q = "
|
|
10734
|
+
const defaultStyleCss$q = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.required label>span::after,.required legend>span::after{content:\"*\"}:host{display:block}input,textarea{cursor:text}input[type=checkbox],input[type=color],input[type=file],input[type=radio],input[type=range],label,option,select{cursor:pointer}input[type=color],input[type=date],input[type=datetime-local],input[type=email],input[type=file],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,select[multiple] option,textarea{font-size:calc(16rem / var(--kolibri-root-font-size, 16));width:100%}input[type=file]{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em}select[multiple] option{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em}.kol-input.disabled :is(button,input,option,select,textarea,.input-label){cursor:not-allowed;opacity:0.5}.kol-input{display:grid}.kol-input .input-slot{flex-grow:1}input:not([type=checkbox],[type=radio]),select:not([multiple],[size]){height:2.75em}input:focus,option:focus,select:focus,textarea:focus{outline:0}.input{display:flex;align-items:center}.input>.kol-icon{display:grid;height:var(--a11y-min-size);place-items:center}.kol-input.required .input-tooltip .span-label::after{content:\"*\"}";
|
|
10684
10735
|
var KolInputEmailDefaultStyle0 = defaultStyleCss$q;
|
|
10685
10736
|
|
|
10686
10737
|
class KolInputEmail {
|
|
@@ -10950,7 +11001,7 @@ class InputFileController extends InputIconController {
|
|
|
10950
11001
|
}
|
|
10951
11002
|
}
|
|
10952
11003
|
|
|
10953
|
-
const defaultStyleCss$p = "@charset \"UTF-8\"
|
|
11004
|
+
const defaultStyleCss$p = "@charset \"UTF-8\";:host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.required label>span::after,.required legend>span::after{content:\"*\"}:host{display:block}input,textarea{cursor:text}input[type=checkbox],input[type=color],input[type=file],input[type=radio],input[type=range],label,option,select{cursor:pointer}input[type=color],input[type=date],input[type=datetime-local],input[type=email],input[type=file],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,select[multiple] option,textarea{font-size:calc(16rem / var(--kolibri-root-font-size, 16));width:100%}input[type=file]{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em}select[multiple] option{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em}.kol-input.disabled :is(button,input,option,select,textarea,.input-label){cursor:not-allowed;opacity:0.5}.kol-input{display:grid}.kol-input .input-slot{flex-grow:1}input:not([type=checkbox],[type=radio]),select:not([multiple],[size]){height:2.75em}input:focus,option:focus,select:focus,textarea:focus{outline:0}.input{display:flex;align-items:center}.input>.kol-icon{display:grid;height:var(--a11y-min-size);place-items:center}.kol-input.required .input-tooltip .span-label::after{content:\"*\"}label input[type=file]::-webkit-file-upload-button{display:none}label input[type=file]:before{content:\"Datei auswählen\"}label input[multiple]:before{content:\"Dateien auswählen\"}div.input{cursor:pointer}";
|
|
10954
11005
|
var KolInputFileDefaultStyle0 = defaultStyleCss$p;
|
|
10955
11006
|
|
|
10956
11007
|
class KolInputFile {
|
|
@@ -11227,7 +11278,7 @@ class InputNumberController extends InputIconController {
|
|
|
11227
11278
|
}
|
|
11228
11279
|
}
|
|
11229
11280
|
|
|
11230
|
-
const defaultStyleCss$o = "
|
|
11281
|
+
const defaultStyleCss$o = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.required label>span::after,.required legend>span::after{content:\"*\"}:host{display:block}input,textarea{cursor:text}input[type=checkbox],input[type=color],input[type=file],input[type=radio],input[type=range],label,option,select{cursor:pointer}input[type=color],input[type=date],input[type=datetime-local],input[type=email],input[type=file],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,select[multiple] option,textarea{font-size:calc(16rem / var(--kolibri-root-font-size, 16));width:100%}input[type=file]{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em}select[multiple] option{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em}.kol-input.disabled :is(button,input,option,select,textarea,.input-label){cursor:not-allowed;opacity:0.5}.kol-input{display:grid}.kol-input .input-slot{flex-grow:1}input:not([type=checkbox],[type=radio]),select:not([multiple],[size]){height:2.75em}input:focus,option:focus,select:focus,textarea:focus{outline:0}.input{display:flex;align-items:center}.input>.kol-icon{display:grid;height:var(--a11y-min-size);place-items:center}.kol-input.required .input-tooltip .span-label::after{content:\"*\"}";
|
|
11231
11282
|
var KolInputNumberDefaultStyle0 = defaultStyleCss$o;
|
|
11232
11283
|
|
|
11233
11284
|
class KolInputNumber {
|
|
@@ -11467,7 +11518,7 @@ class KolInputNumber {
|
|
|
11467
11518
|
}; }
|
|
11468
11519
|
}
|
|
11469
11520
|
|
|
11470
|
-
const defaultStyleCss$n = "
|
|
11521
|
+
const defaultStyleCss$n = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.required label>span::after,.required legend>span::after{content:\"*\"}:host{display:block}input,textarea{cursor:text}input[type=checkbox],input[type=color],input[type=file],input[type=radio],input[type=range],label,option,select{cursor:pointer}input[type=color],input[type=date],input[type=datetime-local],input[type=email],input[type=file],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,select[multiple] option,textarea{font-size:calc(16rem / var(--kolibri-root-font-size, 16));width:100%}input[type=file]{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em}select[multiple] option{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em}.kol-input.disabled :is(button,input,option,select,textarea,.input-label){cursor:not-allowed;opacity:0.5}.kol-input{display:grid}.kol-input .input-slot{flex-grow:1}input:not([type=checkbox],[type=radio]),select:not([multiple],[size]){height:2.75em}input:focus,option:focus,select:focus,textarea:focus{outline:0}.input{display:flex;align-items:center}.input>.kol-icon{display:grid;height:var(--a11y-min-size);place-items:center}.kol-input.required .input-tooltip .span-label::after{content:\"*\"}";
|
|
11471
11522
|
var KolInputPasswordDefaultStyle0 = defaultStyleCss$n;
|
|
11472
11523
|
|
|
11473
11524
|
class KolInputPassword {
|
|
@@ -11696,7 +11747,7 @@ class KolInputPassword {
|
|
|
11696
11747
|
}; }
|
|
11697
11748
|
}
|
|
11698
11749
|
|
|
11699
|
-
const defaultStyleCss$m = "
|
|
11750
|
+
const defaultStyleCss$m = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.required label>span::after,.required legend>span::after{content:\"*\"}:host{display:block}input,textarea{cursor:text}input[type=checkbox],input[type=color],input[type=file],input[type=radio],input[type=range],label,option,select{cursor:pointer}input[type=color],input[type=date],input[type=datetime-local],input[type=email],input[type=file],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,select[multiple] option,textarea{font-size:calc(16rem / var(--kolibri-root-font-size, 16));width:100%}input[type=file]{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em}select[multiple] option{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em}.kol-input.disabled :is(button,input,option,select,textarea,.input-label){cursor:not-allowed;opacity:0.5}:host{--border-width:2px;--input-size:1.5em}.kol-input .icons{display:none}label{cursor:pointer}input{appearance:none;border-width:var(--border-width);border-style:solid;border-radius:100%;cursor:pointer;display:flex;height:var(--input-size);margin:0;min-height:var(--input-size);min-width:var(--input-size);padding:0;width:var(--input-size)}input:before{border-radius:100%;content:\"\";margin:auto;height:calc(var(--input-size) / 2);width:calc(var(--input-size) / 2)}input:checked:before{background-color:#000}@media (forced-colors: active){input:checked:before{background:highlight !important}}fieldset{display:flex}fieldset.vertical{flex-direction:column}fieldset .input-slot{align-items:center;display:flex}.required label>span::after{content:\"\"}";
|
|
11700
11751
|
var KolInputRadioDefaultStyle0 = defaultStyleCss$m;
|
|
11701
11752
|
|
|
11702
11753
|
class KolInputRadio {
|
|
@@ -11997,7 +12048,7 @@ class InputRangeController extends InputIconController {
|
|
|
11997
12048
|
}
|
|
11998
12049
|
}
|
|
11999
12050
|
|
|
12000
|
-
const defaultStyleCss$l = "
|
|
12051
|
+
const defaultStyleCss$l = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.required label>span::after,.required legend>span::after{content:\"*\"}:host{display:block}input,textarea{cursor:text}input[type=checkbox],input[type=color],input[type=file],input[type=radio],input[type=range],label,option,select{cursor:pointer}input[type=color],input[type=date],input[type=datetime-local],input[type=email],input[type=file],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,select[multiple] option,textarea{font-size:calc(16rem / var(--kolibri-root-font-size, 16));width:100%}input[type=file]{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em}select[multiple] option{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em}.kol-input.disabled :is(button,input,option,select,textarea,.input-label){cursor:not-allowed;opacity:0.5}.kol-input{display:grid}.kol-input .input-slot{flex-grow:1}input:not([type=checkbox],[type=radio]),select:not([multiple],[size]){height:2.75em}input:focus,option:focus,select:focus,textarea:focus{outline:0}.input{display:flex;align-items:center}.input>.kol-icon{display:grid;height:var(--a11y-min-size);place-items:center}.kol-input.required .input-tooltip .span-label::after{content:\"*\"}.inputs-wrapper{align-items:center;display:flex;flex-direction:row}input[type=number]{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size);width:var(--kolibri-input-range--input-number--width)}input[type=range]{appearance:none;background-color:#d3d3d3;border:1px solid #000;display:inline-block;flex-grow:1;height:calc(8rem / var(--kolibri-root-font-size, 16));line-height:1.5em;padding:0;margin:0;width:0}input[type=range]::-webkit-slider-thumb{box-sizing:border-box;background-color:#000;height:20px;width:20px;border-radius:20px;cursor:pointer;-webkit-appearance:none}input[type=range]::-moz-range-thumb{box-sizing:border-box;background-color:#000;height:20px;width:20px;border-radius:20px;cursor:pointer;-moz-appearance:none}@media (prefers-contrast: more){::-webkit-slider-thumb{outline:1px solid currentColor}}";
|
|
12001
12052
|
var KolInputRangeDefaultStyle0 = defaultStyleCss$l;
|
|
12002
12053
|
|
|
12003
12054
|
class KolInputRange {
|
|
@@ -12233,7 +12284,7 @@ const validateAlert = (component, value) => {
|
|
|
12233
12284
|
watchBoolean(component, '_alert', value);
|
|
12234
12285
|
};
|
|
12235
12286
|
|
|
12236
|
-
const defaultStyleCss$k = "
|
|
12287
|
+
const defaultStyleCss$k = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.required label>span::after,.required legend>span::after{content:\"*\"}:host{display:block}input,textarea{cursor:text}input[type=checkbox],input[type=color],input[type=file],input[type=radio],input[type=range],label,option,select{cursor:pointer}input[type=color],input[type=date],input[type=datetime-local],input[type=email],input[type=file],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,select[multiple] option,textarea{font-size:calc(16rem / var(--kolibri-root-font-size, 16));width:100%}input[type=file]{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em}select[multiple] option{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em}.kol-input.disabled :is(button,input,option,select,textarea,.input-label){cursor:not-allowed;opacity:0.5}.kol-input{display:grid}.kol-input .input-slot{flex-grow:1}input:not([type=checkbox],[type=radio]),select:not([multiple],[size]){height:2.75em}input:focus,option:focus,select:focus,textarea:focus{outline:0}.input{display:flex;align-items:center}.input>.kol-icon{display:grid;height:var(--a11y-min-size);place-items:center}.kol-input.required .input-tooltip .span-label::after{content:\"*\"}";
|
|
12237
12288
|
var KolInputTextDefaultStyle0 = defaultStyleCss$k;
|
|
12238
12289
|
|
|
12239
12290
|
featureHint(`[KolInputText] Pre- und post-Label für Währung usw.`);
|
|
@@ -12490,7 +12541,7 @@ class KolInputText {
|
|
|
12490
12541
|
}; }
|
|
12491
12542
|
}
|
|
12492
12543
|
|
|
12493
|
-
const defaultStyleCss$j = "
|
|
12544
|
+
const defaultStyleCss$j = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:inline-block}text{font-size:90px;letter-spacing:normal;word-spacing:normal}svg{max-height:100%}";
|
|
12494
12545
|
var KolKolibriDefaultStyle0 = defaultStyleCss$j;
|
|
12495
12546
|
|
|
12496
12547
|
class KolKolibri {
|
|
@@ -12562,7 +12613,7 @@ class KolKolibri {
|
|
|
12562
12613
|
}; }
|
|
12563
12614
|
}
|
|
12564
12615
|
|
|
12565
|
-
const defaultStyleCss$i = "
|
|
12616
|
+
const defaultStyleCss$i = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:inline-block}:is(a,button){align-items:baseline;display:inline-flex;place-items:center;text-align:left;text-decoration-line:underline}:is(a,button):is(:focus,:hover){text-decoration-thickness:0.2em}.skip{left:-99999px;overflow:hidden;position:absolute;z-index:9999999;line-height:1em}.skip:focus{background-color:#fff;left:unset;padding:1em;position:unset}.kol-icon.external-link-icon{display:inline-flex}";
|
|
12566
12617
|
var KolLinkDefaultStyle0 = defaultStyleCss$i;
|
|
12567
12618
|
|
|
12568
12619
|
class KolLink {
|
|
@@ -12636,7 +12687,7 @@ class KolLink {
|
|
|
12636
12687
|
}; }
|
|
12637
12688
|
}
|
|
12638
12689
|
|
|
12639
|
-
const defaultStyleCss$h = "
|
|
12690
|
+
const defaultStyleCss$h = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:inline-block}:is(a,button){display:inline-flex;place-items:center;text-align:center;text-decoration-line:none}:is(a,button)>.kol-span-wc{margin:auto;width:100%}:is(button):disabled{cursor:not-allowed;opacity:0.5}";
|
|
12640
12691
|
var KolLinkButtonDefaultStyle0 = defaultStyleCss$h;
|
|
12641
12692
|
|
|
12642
12693
|
class KolLinkButton {
|
|
@@ -12708,7 +12759,7 @@ class KolLinkButton {
|
|
|
12708
12759
|
}; }
|
|
12709
12760
|
}
|
|
12710
12761
|
|
|
12711
|
-
const defaultStyleCss$g = "
|
|
12762
|
+
const defaultStyleCss$g = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}ul{list-style:none;margin:0;padding:0}nav.horizontal ul{display:flex;flex-wrap:wrap}nav.horizontal li{margin-left:calc(20rem / var(--kolibri-root-font-size, 16));margin-right:calc(4rem / var(--kolibri-root-font-size, 16))}nav.horizontal li:first-child{margin-left:0}nav.horizontal li:last-child{margin-right:0}nav.vertical li{margin-left:calc(28rem / var(--kolibri-root-font-size, 16));margin-right:calc(8rem / var(--kolibri-root-font-size, 16))}li.list-none{list-style-type:none !important;margin-left:0}";
|
|
12712
12763
|
var KolLinkGroupDefaultStyle0 = defaultStyleCss$g;
|
|
12713
12764
|
|
|
12714
12765
|
const ListItem = (props) => {
|
|
@@ -13301,7 +13352,7 @@ BUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesinstitut für Arzneimittel und Mediz
|
|
|
13301
13352
|
BUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesinstitut für Bevölkerungsforschung'], ['Bundesinstitut', 'für Bevölkerungsforschung']);
|
|
13302
13353
|
BUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesinstitut für Sportwissenschaft'], ['Bundesinstitut', 'für Sportwissenschaft']);
|
|
13303
13354
|
|
|
13304
|
-
const defaultStyleCss$f = "
|
|
13355
|
+
const defaultStyleCss$f = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:inline-block}text{font-size:16px;letter-spacing:normal;word-spacing:normal}svg{max-height:100%}";
|
|
13305
13356
|
var KolLogoDefaultStyle0 = defaultStyleCss$f;
|
|
13306
13357
|
|
|
13307
13358
|
function enumToArray(enumeration, enumAsMap = new Map()) {
|
|
@@ -13477,7 +13528,7 @@ class ModalService {
|
|
|
13477
13528
|
}
|
|
13478
13529
|
}
|
|
13479
13530
|
|
|
13480
|
-
const defaultStyleCss$e = "
|
|
13531
|
+
const defaultStyleCss$e = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.overlay{background-color:rgba(0, 0, 0, 0.33);display:flex;height:100%;inset:0;position:fixed;width:100%;z-index:100}.modal{margin:auto;max-height:100%;max-width:100%}";
|
|
13481
13532
|
var KolModalDefaultStyle0 = defaultStyleCss$e;
|
|
13482
13533
|
|
|
13483
13534
|
const modalService = new ModalService();
|
|
@@ -13604,7 +13655,7 @@ const validateHasCompactButton = (component, value) => {
|
|
|
13604
13655
|
watchBoolean(component, '_hasCompactButton', value);
|
|
13605
13656
|
};
|
|
13606
13657
|
|
|
13607
|
-
const defaultStyleCss$d = "
|
|
13658
|
+
const defaultStyleCss$d = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host>div{display:grid;place-items:center}nav{width:100%}.list{display:flex;list-style:none;margin:0;padding:0}.list.vertical{flex-direction:column}.entry{display:flex}.entry .kol-button-wc:first-child,.entry .kol-link-wc,.entry .kol-span-wc{flex-grow:1}.entry .kol-span-wc{justify-items:start}";
|
|
13608
13659
|
var KolNavDefaultStyle0 = defaultStyleCss$d;
|
|
13609
13660
|
|
|
13610
13661
|
class KolNav {
|
|
@@ -13777,7 +13828,7 @@ const validateMax = (component, value, options) => {
|
|
|
13777
13828
|
watchNumber(component, '_max', value, options);
|
|
13778
13829
|
};
|
|
13779
13830
|
|
|
13780
|
-
const defaultStyleCss$c = "@charset \"UTF-8\"
|
|
13831
|
+
const defaultStyleCss$c = "@charset \"UTF-8\";:host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.navigation-list{list-style:none}.separator:before{content:\"•••\"}";
|
|
13781
13832
|
var KolPaginationDefaultStyle0 = defaultStyleCss$c;
|
|
13782
13833
|
|
|
13783
13834
|
const leftDoubleArrowIcon = {
|
|
@@ -15429,10 +15480,14 @@ function getOverflowAncestors(node, list, traverseIframes) {
|
|
|
15429
15480
|
const isBody = scrollableAncestor === ((_node$ownerDocument2 = node.ownerDocument) == null ? void 0 : _node$ownerDocument2.body);
|
|
15430
15481
|
const win = getWindow(scrollableAncestor);
|
|
15431
15482
|
if (isBody) {
|
|
15432
|
-
|
|
15483
|
+
const frameElement = getFrameElement(win);
|
|
15484
|
+
return list.concat(win, win.visualViewport || [], isOverflowElement(scrollableAncestor) ? scrollableAncestor : [], frameElement && traverseIframes ? getOverflowAncestors(frameElement) : []);
|
|
15433
15485
|
}
|
|
15434
15486
|
return list.concat(scrollableAncestor, getOverflowAncestors(scrollableAncestor, [], traverseIframes));
|
|
15435
15487
|
}
|
|
15488
|
+
function getFrameElement(win) {
|
|
15489
|
+
return Object.getPrototypeOf(win.parent) ? win.frameElement : null;
|
|
15490
|
+
}
|
|
15436
15491
|
|
|
15437
15492
|
function getCssDimensions(element) {
|
|
15438
15493
|
const css = getComputedStyle(element);
|
|
@@ -15536,7 +15591,7 @@ function getBoundingClientRect(element, includeScale, isFixedStrategy, offsetPar
|
|
|
15536
15591
|
const win = getWindow(domElement);
|
|
15537
15592
|
const offsetWin = offsetParent && isElement(offsetParent) ? getWindow(offsetParent) : offsetParent;
|
|
15538
15593
|
let currentWin = win;
|
|
15539
|
-
let currentIFrame = currentWin
|
|
15594
|
+
let currentIFrame = getFrameElement(currentWin);
|
|
15540
15595
|
while (currentIFrame && offsetParent && offsetWin !== currentWin) {
|
|
15541
15596
|
const iframeScale = getScale(currentIFrame);
|
|
15542
15597
|
const iframeRect = currentIFrame.getBoundingClientRect();
|
|
@@ -15550,7 +15605,7 @@ function getBoundingClientRect(element, includeScale, isFixedStrategy, offsetPar
|
|
|
15550
15605
|
x += left;
|
|
15551
15606
|
y += top;
|
|
15552
15607
|
currentWin = getWindow(currentIFrame);
|
|
15553
|
-
currentIFrame = currentWin
|
|
15608
|
+
currentIFrame = getFrameElement(currentWin);
|
|
15554
15609
|
}
|
|
15555
15610
|
}
|
|
15556
15611
|
return rectToClientRect({
|
|
@@ -16292,7 +16347,7 @@ var KoliBriProgressVariantEnum;
|
|
|
16292
16347
|
KoliBriProgressVariantEnum["cycle-label-value"] = "cycle-label-value";
|
|
16293
16348
|
})(KoliBriProgressVariantEnum || (KoliBriProgressVariantEnum = {}));
|
|
16294
16349
|
|
|
16295
|
-
const defaultStyleCss$b = "
|
|
16350
|
+
const defaultStyleCss$b = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}progress{display:block;height:0;overflow:hidden;width:0}.bar .border{fill:transparent;stroke:black}.bar .background{fill:lightgray;stroke:white}.bar .progress{fill:#0075ff;stroke:transparent;transition:250ms ease-in-out 50ms}.cycle .background{fill:transparent;stroke:lightgray}.cycle .border{fill:transparent;stroke:black}.cycle .whitespace{fill:transparent;stroke:white}.cycle .progress{fill:transparent;stroke:#0075ff;transform-origin:50% 50%;transform:rotate(-90deg);transition:250ms ease-in-out 50ms}@media (prefers-reduced-motion){.progress{transition-duration:0s;transition-delay:0s}}";
|
|
16296
16351
|
var KolProgressDefaultStyle0 = defaultStyleCss$b;
|
|
16297
16352
|
|
|
16298
16353
|
const VALID_VARIANTS = Object.keys(KoliBriProgressVariantEnum);
|
|
@@ -16407,7 +16462,7 @@ class KolProcess {
|
|
|
16407
16462
|
}; }
|
|
16408
16463
|
}
|
|
16409
16464
|
|
|
16410
|
-
const defaultStyleCss$a = "@charset \"UTF-8\"
|
|
16465
|
+
const defaultStyleCss$a = "@charset \"UTF-8\";:host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}cite,figure,q+figcaption{display:inline;margin:0;padding:0}blockquote:before{content:open-quote}blockquote::after{content:close-quote}cite:before{content:\"—\"}.block cite:before{padding-right:0.5em}.inline cite:before{padding:0.5em}";
|
|
16411
16466
|
var KolQuoteDefaultStyle0 = defaultStyleCss$a;
|
|
16412
16467
|
|
|
16413
16468
|
class KolQuote {
|
|
@@ -16579,7 +16634,7 @@ class SelectController extends InputIconController {
|
|
|
16579
16634
|
}
|
|
16580
16635
|
}
|
|
16581
16636
|
|
|
16582
|
-
const defaultStyleCss$9 = "
|
|
16637
|
+
const defaultStyleCss$9 = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.required label>span::after,.required legend>span::after{content:\"*\"}:host{display:block}input,textarea{cursor:text}input[type=checkbox],input[type=color],input[type=file],input[type=radio],input[type=range],label,option,select{cursor:pointer}input[type=color],input[type=date],input[type=datetime-local],input[type=email],input[type=file],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,select[multiple] option,textarea{font-size:calc(16rem / var(--kolibri-root-font-size, 16));width:100%}input[type=file]{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em}select[multiple] option{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em}.kol-input.disabled :is(button,input,option,select,textarea,.input-label){cursor:not-allowed;opacity:0.5}.kol-input{display:grid}.kol-input .input-slot{flex-grow:1}input:not([type=checkbox],[type=radio]),select:not([multiple],[size]){height:2.75em}input:focus,option:focus,select:focus,textarea:focus{outline:0}.input{display:flex;align-items:center}.input>.kol-icon{display:grid;height:var(--a11y-min-size);place-items:center}.kol-input.required .input-tooltip .span-label::after{content:\"*\"}";
|
|
16583
16638
|
var KolSelectDefaultStyle0 = defaultStyleCss$9;
|
|
16584
16639
|
|
|
16585
16640
|
const isSelected = (valueList, optionValue) => {
|
|
@@ -16824,7 +16879,7 @@ class KolSelect {
|
|
|
16824
16879
|
}; }
|
|
16825
16880
|
}
|
|
16826
16881
|
|
|
16827
|
-
const defaultStyleCss$8 = "
|
|
16882
|
+
const defaultStyleCss$8 = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}ul{display:grid;list-style:none;place-items:center}ul li{height:0}.kol-link-wc a{left:-99999px;overflow:hidden;position:absolute;z-index:9999999;line-height:1em}.kol-link-wc a:focus{background-color:#fff;left:unset;position:unset}";
|
|
16828
16883
|
var KolSkipNavDefaultStyle0 = defaultStyleCss$8;
|
|
16829
16884
|
|
|
16830
16885
|
class KolSkipNav {
|
|
@@ -25299,7 +25354,7 @@ const validateSpinVariant = (component, value) => {
|
|
|
25299
25354
|
watchValidator(component, '_variant', (value) => value === 'cycle' || value === 'dot' || value === 'none', new Set(['cycle', 'dot', 'none']), value);
|
|
25300
25355
|
};
|
|
25301
25356
|
|
|
25302
|
-
const defaultStyleCss$7 = "
|
|
25357
|
+
const defaultStyleCss$7 = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.spin.cycle{width:calc(48rem / var(--kolibri-root-font-size, 16));height:calc(48rem / var(--kolibri-root-font-size, 16))}.spin.cycle>.loader{display:block;width:100%;height:100%;border-radius:50%;position:relative;animation:2s linear infinite rotate}.spin.cycle>.loader::before{content:\"\";box-sizing:border-box;position:absolute;inset:0px;border-radius:50%;border:5px solid #333;animation:3s linear infinite prixClipFix}@keyframes rotate{100%{transform:rotate(360deg)}}@keyframes prixClipFix{0%{border-color:#fff;clip-path:polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)}25%{border-color:#666;clip-path:polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)}50%{border-color:#fc0;clip-path:polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)}75%{border-color:red;clip-path:polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)}100%{border-color:#000;clip-path:polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)}}@media (prefers-reduced-motion){.spin.cycle>.loader{animation-duration:4s}.spin.cycle>.loader::before{animation-duration:6s}}.spin.dot{height:calc(16rem / var(--kolibri-root-font-size, 16));width:calc(48rem / var(--kolibri-root-font-size, 16))}.spin.dot>span{animation-timing-function:cubic-bezier(0, 1, 1, 0);border-radius:50%;border:calc(1.6rem / var(--kolibri-root-font-size, 16)) solid #fff;height:calc(12.8rem / var(--kolibri-root-font-size, 16));position:absolute;top:calc(1.6rem / var(--kolibri-root-font-size, 16));width:calc(12.8rem / var(--kolibri-root-font-size, 16))}.spin.dot>span:first-child{background-color:#fc0;z-index:0;animation:1s infinite spin1;left:calc(0.16rem / var(--kolibri-root-font-size, 16))}.spin.dot>span:nth-child(2){background-color:red;z-index:1;animation:1s infinite spin2;left:calc(0.16rem / var(--kolibri-root-font-size, 16))}.spin.dot>span:nth-child(3){background-color:#000;z-index:1;animation:1s infinite spin2;left:calc(17.6rem / var(--kolibri-root-font-size, 16))}.spin.dot>span:nth-child(4){background-color:#666;z-index:0;animation:1s infinite spin3;left:calc(33.6rem / var(--kolibri-root-font-size, 16))}@keyframes spin1{0%{transform:scale(0)}100%{transform:scale(1)}}@keyframes spin2{0%{transform:translate(0, 0)}100%{transform:translate(calc(16rem / var(--kolibri-root-font-size, 16)), 0)}}@keyframes spin3{0%{transform:scale(1)}100%{transform:scale(0)}}@media (prefers-reduced-motion){.spin.dot>span:first-child,.spin.dot>span:nth-child(2),.spin.dot>span:nth-child(3),.spin.dot>span:nth-child(4){animation-duration:2s}}.spin{display:block;padding:calc(2rem / var(--kolibri-root-font-size, 16));position:relative}";
|
|
25303
25358
|
var KolSpinDefaultStyle0 = defaultStyleCss$7;
|
|
25304
25359
|
|
|
25305
25360
|
function renderSpin(variant) {
|
|
@@ -25360,7 +25415,7 @@ class KolSpin {
|
|
|
25360
25415
|
}; }
|
|
25361
25416
|
}
|
|
25362
25417
|
|
|
25363
|
-
const defaultStyleCss$6 = "
|
|
25418
|
+
const defaultStyleCss$6 = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:flex;position:relative}.main-button{flex-grow:1;text-align:left}.main-button .kol-span-wc{place-items:start}.secondary-button button{height:100%}.horizontal-line{background-color:rgba(0, 0, 0, 0.2);border-radius:2px;height:70%;margin-block:auto;width:1px}.popover{height:0;left:0;min-width:100%;overflow:hidden;position:absolute;top:100%;transition:height 0.3s ease-in-out}.popover-content{inset:0 0 auto 0;min-width:100%;position:absolute}";
|
|
25364
25419
|
var KolSplitButtonDefaultStyle0 = defaultStyleCss$6;
|
|
25365
25420
|
|
|
25366
25421
|
class KolSplitButton {
|
|
@@ -25560,7 +25615,7 @@ class KolSymbol {
|
|
|
25560
25615
|
}; }
|
|
25561
25616
|
}
|
|
25562
25617
|
|
|
25563
|
-
const defaultStyleCss$5 = "
|
|
25618
|
+
const defaultStyleCss$5 = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:block}:host{display:grid}:host>div.table{max-width:100%;order:1;overflow-x:auto;overflow-y:hidden}:host>div.table table{width:100%}caption{text-align:start}.focus-element{font-size:0}.focus-element:focus{outline:0 !important}.table:has(.focus-element:focus){outline:5px auto Highlight;outline:5px auto -webkit-focus-ring-color;outline-offset:2px}th>div{display:grid;grid-template-columns:1fr auto;place-items:center}.table-sort-button .button{color:inherit}th.align-left{text-align:left}th.align-left .table-sort-button .button-inner{justify-items:start}th.align-center{text-align:center}th.align-center .table-sort-button .button-inner{justify-items:center}th.align-right{text-align:right}th.align-right .table-sort-button .button-inner{justify-items:end}div.pagination{order:2}div.pagination,div.pagination>div:last-child{display:grid;place-items:center}@media (min-width: 1024px){div.pagination,div.pagination>div:last-child{grid-auto-flow:column}div.pagination .kol-pagination{display:flex}}";
|
|
25564
25619
|
var KolTableDefaultStyle0 = defaultStyleCss$5;
|
|
25565
25620
|
|
|
25566
25621
|
const PAGINATION_OPTIONS = [10, 20, 50, 100];
|
|
@@ -26107,7 +26162,7 @@ class KolTable {
|
|
|
26107
26162
|
}; }
|
|
26108
26163
|
}
|
|
26109
26164
|
|
|
26110
|
-
const defaultStyleCss$4 = "
|
|
26165
|
+
const defaultStyleCss$4 = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:block}.kol-button-group-wc{display:inline-flex;flex-wrap:wrap}.kol-button-group-wc button{border-bottom-color:transparent;border-bottom-style:solid;display:block}div.grid,div[role=tabpanel]{height:100%}:host>.tabs-align-right{display:grid;grid-template-columns:1fr auto}:host>.tabs-align-right .kol-button-group-wc{display:grid;order:2}:host>.tabs-align-left{display:grid;grid-template-columns:auto 1fr}:host>.tabs-align-left .kol-button-group-wc{display:grid;order:0}:host>.tabs-align-bottom{display:grid;grid-template-rows:1fr auto}:host>.tabs-align-bottom .kol-button-group-wc{order:2}:host>.tabs-align-bottom .kol-button-group-wc>div{display:flex}:host>.tabs-align-bottom>.kol-button-group-wc>div>div:first-child{margin:0 1em 0 0}:host>.tabs-align-bottom>.kol-button-group-wc>div>div{margin:0 1em}:host>.tabs-align-top{display:grid;grid-template-rows:auto 1fr}:host>.tabs-align-top .kol-button-group-wc{order:0}:host>.tabs-align-top .kol-button-group-wc>div{display:flex}:host>.tabs-align-top>.kol-button-group-wc>div>div:first-child{margin:0 1em 0 0}:host>.tabs-align-top>.kol-button-group-wc>div>div{margin:0 1em}:host>div{display:grid}:host>.tabs-align-left .kol-button-group-wc,:host>.tabs-align-top .kol-button-group-wc{order:0}:host>.tabs-align-bottom .kol-button-group-wc,:host>.tabs-align-right .kol-button-group-wc{order:1}:host>div.tabs-align-left .kol-button-group-wc>div,:host>div.tabs-align-left .kol-button-group-wc>div>div,:host>div.tabs-align-right .kol-button-group-wc>div,:host>div.tabs-align-right .kol-button-group-wc>div>div{display:grid}:host>div.tabs-align-left .kol-button-group-wc>div>div .kol-button-wc,:host>div.tabs-align-right .kol-button-group-wc>div>div .kol-button-wc{width:100%}:host>div.tabs-align-bottom .kol-button-group-wc div,:host>div.tabs-align-top .kol-button-group-wc div{display:flex;flex-wrap:wrap}";
|
|
26111
26166
|
var KolTabsDefaultStyle0 = defaultStyleCss$4;
|
|
26112
26167
|
|
|
26113
26168
|
class KolTabs {
|
|
@@ -26458,7 +26513,7 @@ class TextareaController extends InputController {
|
|
|
26458
26513
|
}
|
|
26459
26514
|
}
|
|
26460
26515
|
|
|
26461
|
-
const defaultStyleCss$3 = "
|
|
26516
|
+
const defaultStyleCss$3 = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}.required label>span::after,.required legend>span::after{content:\"*\"}:host{display:block}input,textarea{cursor:text}input[type=checkbox],input[type=color],input[type=file],input[type=radio],input[type=range],label,option,select{cursor:pointer}input[type=color],input[type=date],input[type=datetime-local],input[type=email],input[type=file],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,select[multiple] option,textarea{font-size:calc(16rem / var(--kolibri-root-font-size, 16));width:100%}input[type=file]{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em}select[multiple] option{padding:calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em}.kol-input.disabled :is(button,input,option,select,textarea,.input-label){cursor:not-allowed;opacity:0.5}.kol-input{display:grid}.kol-input .input-slot{flex-grow:1}input:not([type=checkbox],[type=radio]),select:not([multiple],[size]){height:2.75em}input:focus,option:focus,select:focus,textarea:focus{outline:0}.input{display:flex;align-items:center}.input>.kol-icon{display:grid;height:var(--a11y-min-size);place-items:center}.kol-input.required .input-tooltip .span-label::after{content:\"*\"}";
|
|
26462
26517
|
var KolTextareaDefaultStyle0 = defaultStyleCss$3;
|
|
26463
26518
|
|
|
26464
26519
|
const increaseTextareaHeight = (el) => {
|
|
@@ -26680,7 +26735,7 @@ class KolTextarea {
|
|
|
26680
26735
|
}; }
|
|
26681
26736
|
}
|
|
26682
26737
|
|
|
26683
|
-
const defaultStyleCss$2 = "
|
|
26738
|
+
const defaultStyleCss$2 = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}:host{display:block}:host>div{background-color:#fff;height:0;left:0;position:fixed;top:0;width:100%;z-index:200}:host>div>.kol-alert{display:block;margin:auto;max-width:750px}:host>div>.kol-button-wc{display:block;margin:auto;position:relative;top:0;width:1em}";
|
|
26684
26739
|
var KolToastDefaultStyle0 = defaultStyleCss$2;
|
|
26685
26740
|
|
|
26686
26741
|
class KolToast {
|
|
@@ -26812,7 +26867,7 @@ const InternalToast = ({ toastState, onClose, key }) => {
|
|
|
26812
26867
|
hAsync("div", { ref: handleRef }, typeof toastState.toast.description === 'string' ? toastState.toast.description : null))));
|
|
26813
26868
|
};
|
|
26814
26869
|
|
|
26815
|
-
const defaultStyleCss$1 = "@layer kol-component {\n
|
|
26870
|
+
const defaultStyleCss$1 = "@layer kol-component {\n :host {\n display: flex;\n flex-direction: column;\n position: fixed;\n z-index: 200;\n }\n .close-all {\n align-self: flex-end;\n }\n}";
|
|
26816
26871
|
var KolToastContainerDefaultStyle0 = defaultStyleCss$1;
|
|
26817
26872
|
|
|
26818
26873
|
const TRANSITION_TIMEOUT = 300;
|
|
@@ -27125,7 +27180,7 @@ var Farbspektrum;
|
|
|
27125
27180
|
Farbspektrum["Hellgrau"] = "#bec5c9";
|
|
27126
27181
|
})(Farbspektrum || (Farbspektrum = {}));
|
|
27127
27182
|
|
|
27128
|
-
const defaultStyleCss = "
|
|
27183
|
+
const defaultStyleCss = ":host{--a11y-min-size:44px;background-color:white;color:black;font-family:Verdana}*{hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}[role=button],button:not([role=link]),.kol-input .input{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}a,button,h1,h2,h3,h4,h5,h6,input,option,select,textarea{font-family:inherit;font-size:inherit}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}:is(a,button){background-color:transparent;border:none;margin:0;padding:0;width:100%;}[hidden]{display:none !important}:host{max-width:100%}*{box-sizing:border-box}.kol-span-wc{display:grid;place-items:center}.kol-span-wc>span{display:flex;place-items:center}a,button{cursor:pointer}.icon-only>.kol-span-wc>span>span{display:none}.hidden{display:none;visibility:hidden}";
|
|
27129
27184
|
var KolVersionDefaultStyle0 = defaultStyleCss;
|
|
27130
27185
|
|
|
27131
27186
|
class KolVersion {
|
|
@@ -27250,7 +27305,7 @@ exports.hydrateApp = hydrateApp;
|
|
|
27250
27305
|
}
|
|
27251
27306
|
|
|
27252
27307
|
/*
|
|
27253
|
-
Stencil Hydrate Runner v4.
|
|
27308
|
+
Stencil Hydrate Runner v4.20.0 | MIT Licensed | https://stenciljs.com
|
|
27254
27309
|
*/
|
|
27255
27310
|
var __defProp = Object.defineProperty;
|
|
27256
27311
|
var __export = (target, all) => {
|
|
@@ -37648,67 +37703,50 @@ function humanReadableList(items) {
|
|
|
37648
37703
|
}
|
|
37649
37704
|
|
|
37650
37705
|
// src/mock-doc/serialize-node.ts
|
|
37651
|
-
function
|
|
37706
|
+
function normalizeSerializationOptions(opts = {}) {
|
|
37707
|
+
return {
|
|
37708
|
+
...opts,
|
|
37709
|
+
outerHtml: typeof opts.outerHtml !== "boolean" ? false : opts.outerHtml,
|
|
37710
|
+
...opts.prettyHtml ? {
|
|
37711
|
+
indentSpaces: typeof opts.indentSpaces !== "number" ? 2 : opts.indentSpaces,
|
|
37712
|
+
newLines: typeof opts.newLines !== "boolean" ? true : opts.newLines
|
|
37713
|
+
} : {
|
|
37714
|
+
prettyHtml: false,
|
|
37715
|
+
indentSpaces: typeof opts.indentSpaces !== "number" ? 0 : opts.indentSpaces,
|
|
37716
|
+
newLines: typeof opts.newLines !== "boolean" ? false : opts.newLines
|
|
37717
|
+
},
|
|
37718
|
+
approximateLineWidth: typeof opts.approximateLineWidth !== "number" ? -1 : opts.approximateLineWidth,
|
|
37719
|
+
removeEmptyAttributes: typeof opts.removeEmptyAttributes !== "boolean" ? true : opts.removeEmptyAttributes,
|
|
37720
|
+
removeAttributeQuotes: typeof opts.removeAttributeQuotes !== "boolean" ? false : opts.removeAttributeQuotes,
|
|
37721
|
+
removeBooleanAttributeQuotes: typeof opts.removeBooleanAttributeQuotes !== "boolean" ? false : opts.removeBooleanAttributeQuotes,
|
|
37722
|
+
removeHtmlComments: typeof opts.removeHtmlComments !== "boolean" ? false : opts.removeHtmlComments,
|
|
37723
|
+
serializeShadowRoot: typeof opts.serializeShadowRoot !== "boolean" ? true : opts.serializeShadowRoot,
|
|
37724
|
+
fullDocument: typeof opts.fullDocument !== "boolean" ? true : opts.fullDocument
|
|
37725
|
+
};
|
|
37726
|
+
}
|
|
37727
|
+
function serializeNodeToHtml(elm, serializationOptions = {}) {
|
|
37728
|
+
const opts = normalizeSerializationOptions(serializationOptions);
|
|
37652
37729
|
const output = {
|
|
37653
37730
|
currentLineWidth: 0,
|
|
37654
37731
|
indent: 0,
|
|
37655
37732
|
isWithinBody: false,
|
|
37656
37733
|
text: []
|
|
37657
37734
|
};
|
|
37658
|
-
|
|
37659
|
-
|
|
37660
|
-
|
|
37661
|
-
|
|
37662
|
-
|
|
37663
|
-
|
|
37664
|
-
}
|
|
37665
|
-
opts.approximateLineWidth = -1;
|
|
37666
|
-
} else {
|
|
37667
|
-
opts.prettyHtml = false;
|
|
37668
|
-
if (typeof opts.newLines !== "boolean") {
|
|
37669
|
-
opts.newLines = false;
|
|
37670
|
-
}
|
|
37671
|
-
if (typeof opts.indentSpaces !== "number") {
|
|
37672
|
-
opts.indentSpaces = 0;
|
|
37673
|
-
}
|
|
37674
|
-
}
|
|
37675
|
-
if (typeof opts.approximateLineWidth !== "number") {
|
|
37676
|
-
opts.approximateLineWidth = -1;
|
|
37677
|
-
}
|
|
37678
|
-
if (typeof opts.removeEmptyAttributes !== "boolean") {
|
|
37679
|
-
opts.removeEmptyAttributes = true;
|
|
37680
|
-
}
|
|
37681
|
-
if (typeof opts.removeAttributeQuotes !== "boolean") {
|
|
37682
|
-
opts.removeAttributeQuotes = false;
|
|
37683
|
-
}
|
|
37684
|
-
if (typeof opts.removeBooleanAttributeQuotes !== "boolean") {
|
|
37685
|
-
opts.removeBooleanAttributeQuotes = false;
|
|
37686
|
-
}
|
|
37687
|
-
if (typeof opts.removeHtmlComments !== "boolean") {
|
|
37688
|
-
opts.removeHtmlComments = false;
|
|
37689
|
-
}
|
|
37690
|
-
if (typeof opts.serializeShadowRoot !== "boolean") {
|
|
37691
|
-
opts.serializeShadowRoot = false;
|
|
37692
|
-
}
|
|
37693
|
-
if (opts.outerHtml) {
|
|
37694
|
-
serializeToHtml(elm, opts, output, false);
|
|
37695
|
-
} else {
|
|
37696
|
-
for (let i = 0, ii = elm.childNodes.length; i < ii; i++) {
|
|
37697
|
-
serializeToHtml(elm.childNodes[i], opts, output, false);
|
|
37698
|
-
}
|
|
37699
|
-
}
|
|
37700
|
-
if (output.text[0] === "\n") {
|
|
37701
|
-
output.text.shift();
|
|
37702
|
-
}
|
|
37703
|
-
if (output.text[output.text.length - 1] === "\n") {
|
|
37704
|
-
output.text.pop();
|
|
37735
|
+
let renderedNode = "";
|
|
37736
|
+
const children = !opts.fullDocument && elm.body ? Array.from(elm.body.childNodes) : opts.outerHtml ? [elm] : Array.from(elm.childNodes);
|
|
37737
|
+
for (let i = 0, ii = children.length; i < ii; i++) {
|
|
37738
|
+
const child = children[i];
|
|
37739
|
+
const chunks = Array.from(streamToHtml(child, opts, output));
|
|
37740
|
+
renderedNode += chunks.join("");
|
|
37705
37741
|
}
|
|
37706
|
-
return
|
|
37742
|
+
return renderedNode.trim();
|
|
37707
37743
|
}
|
|
37708
|
-
|
|
37744
|
+
var shadowRootTag = "mock:shadow-root";
|
|
37745
|
+
function* streamToHtml(node, opts, output) {
|
|
37709
37746
|
var _a2, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p;
|
|
37747
|
+
const isShadowRoot = node.nodeType === 11 /* DOCUMENT_FRAGMENT_NODE */;
|
|
37710
37748
|
if (node.nodeType === 1 /* ELEMENT_NODE */ || isShadowRoot) {
|
|
37711
|
-
const tagName = isShadowRoot ?
|
|
37749
|
+
const tagName = isShadowRoot ? shadowRootTag : getTagName(node);
|
|
37712
37750
|
if (tagName === "body") {
|
|
37713
37751
|
output.isWithinBody = true;
|
|
37714
37752
|
}
|
|
@@ -37716,17 +37754,23 @@ function serializeToHtml(node, opts, output, isShadowRoot) {
|
|
|
37716
37754
|
if (ignoreTag === false) {
|
|
37717
37755
|
const isWithinWhitespaceSensitiveNode = opts.newLines || ((_a2 = opts.indentSpaces) != null ? _a2 : 0) > 0 ? isWithinWhitespaceSensitive(node) : false;
|
|
37718
37756
|
if (opts.newLines && !isWithinWhitespaceSensitiveNode) {
|
|
37719
|
-
|
|
37757
|
+
yield "\n";
|
|
37720
37758
|
output.currentLineWidth = 0;
|
|
37721
37759
|
}
|
|
37722
37760
|
if (((_b = opts.indentSpaces) != null ? _b : 0) > 0 && !isWithinWhitespaceSensitiveNode) {
|
|
37723
37761
|
for (let i = 0; i < output.indent; i++) {
|
|
37724
|
-
|
|
37762
|
+
yield " ";
|
|
37725
37763
|
}
|
|
37726
37764
|
output.currentLineWidth += output.indent;
|
|
37727
37765
|
}
|
|
37728
|
-
|
|
37729
|
-
|
|
37766
|
+
const tag = tagName === shadowRootTag ? "template" : tagName;
|
|
37767
|
+
yield "<" + tag;
|
|
37768
|
+
output.currentLineWidth += tag.length + 1;
|
|
37769
|
+
if (tag === "template") {
|
|
37770
|
+
const mode = ` shadowrootmode="open"`;
|
|
37771
|
+
yield mode;
|
|
37772
|
+
output.currentLineWidth += mode.length;
|
|
37773
|
+
}
|
|
37730
37774
|
const attrsLength = node.attributes.length;
|
|
37731
37775
|
const attributes = opts.prettyHtml && attrsLength > 1 ? cloneAttributes(node.attributes, true) : node.attributes;
|
|
37732
37776
|
for (let i = 0; i < attrsLength; i++) {
|
|
@@ -37743,27 +37787,27 @@ function serializeToHtml(node, opts, output, isShadowRoot) {
|
|
|
37743
37787
|
if (attrNamespaceURI == null) {
|
|
37744
37788
|
output.currentLineWidth += attrName.length + 1;
|
|
37745
37789
|
if (opts.approximateLineWidth && opts.approximateLineWidth > 0 && output.currentLineWidth > opts.approximateLineWidth) {
|
|
37746
|
-
|
|
37790
|
+
yield "\n" + attrName;
|
|
37747
37791
|
output.currentLineWidth = 0;
|
|
37748
37792
|
} else {
|
|
37749
|
-
|
|
37793
|
+
yield " " + attrName;
|
|
37750
37794
|
}
|
|
37751
37795
|
} else if (attrNamespaceURI === "http://www.w3.org/XML/1998/namespace") {
|
|
37752
|
-
|
|
37796
|
+
yield " xml:" + attrName;
|
|
37753
37797
|
output.currentLineWidth += attrName.length + 5;
|
|
37754
37798
|
} else if (attrNamespaceURI === "http://www.w3.org/2000/xmlns/") {
|
|
37755
37799
|
if (attrName !== "xmlns") {
|
|
37756
|
-
|
|
37800
|
+
yield " xmlns:" + attrName;
|
|
37757
37801
|
output.currentLineWidth += attrName.length + 7;
|
|
37758
37802
|
} else {
|
|
37759
|
-
|
|
37803
|
+
yield " " + attrName;
|
|
37760
37804
|
output.currentLineWidth += attrName.length + 1;
|
|
37761
37805
|
}
|
|
37762
37806
|
} else if (attrNamespaceURI === XLINK_NS) {
|
|
37763
|
-
|
|
37807
|
+
yield " xlink:" + attrName;
|
|
37764
37808
|
output.currentLineWidth += attrName.length + 7;
|
|
37765
37809
|
} else {
|
|
37766
|
-
|
|
37810
|
+
yield " " + attrNamespaceURI + ":" + attrName;
|
|
37767
37811
|
output.currentLineWidth += attrNamespaceURI.length + attrName.length + 2;
|
|
37768
37812
|
}
|
|
37769
37813
|
if (opts.prettyHtml && attrName === "class") {
|
|
@@ -37778,43 +37822,45 @@ function serializeToHtml(node, opts, output, isShadowRoot) {
|
|
|
37778
37822
|
}
|
|
37779
37823
|
}
|
|
37780
37824
|
if (opts.removeAttributeQuotes && CAN_REMOVE_ATTR_QUOTES.test(attrValue)) {
|
|
37781
|
-
|
|
37825
|
+
yield "=" + escapeString(attrValue, true);
|
|
37782
37826
|
output.currentLineWidth += attrValue.length + 1;
|
|
37783
37827
|
} else {
|
|
37784
|
-
|
|
37828
|
+
yield '="' + escapeString(attrValue, true) + '"';
|
|
37785
37829
|
output.currentLineWidth += attrValue.length + 3;
|
|
37786
37830
|
}
|
|
37787
37831
|
}
|
|
37788
37832
|
if (node.hasAttribute("style")) {
|
|
37789
37833
|
const cssText = node.style.cssText;
|
|
37790
37834
|
if (opts.approximateLineWidth && opts.approximateLineWidth > 0 && output.currentLineWidth + cssText.length + 10 > opts.approximateLineWidth) {
|
|
37791
|
-
|
|
37792
|
-
style="${cssText}"
|
|
37835
|
+
yield `
|
|
37836
|
+
style="${cssText}">`;
|
|
37793
37837
|
output.currentLineWidth = 0;
|
|
37794
37838
|
} else {
|
|
37795
|
-
|
|
37839
|
+
yield ` style="${cssText}">`;
|
|
37796
37840
|
output.currentLineWidth += cssText.length + 10;
|
|
37797
37841
|
}
|
|
37798
37842
|
} else {
|
|
37799
|
-
|
|
37843
|
+
yield ">";
|
|
37800
37844
|
output.currentLineWidth += 1;
|
|
37801
37845
|
}
|
|
37802
37846
|
}
|
|
37803
37847
|
if (EMPTY_ELEMENTS.has(tagName) === false) {
|
|
37804
|
-
|
|
37848
|
+
const shadowRoot = node.shadowRoot;
|
|
37849
|
+
if (shadowRoot != null && opts.serializeShadowRoot) {
|
|
37805
37850
|
output.indent = output.indent + ((_c = opts.indentSpaces) != null ? _c : 0);
|
|
37806
|
-
|
|
37851
|
+
yield* streamToHtml(shadowRoot, opts, output);
|
|
37807
37852
|
output.indent = output.indent - ((_d = opts.indentSpaces) != null ? _d : 0);
|
|
37808
37853
|
if (opts.newLines && (node.childNodes.length === 0 || node.childNodes.length === 1 && node.childNodes[0].nodeType === 3 /* TEXT_NODE */ && ((_e = node.childNodes[0].nodeValue) == null ? void 0 : _e.trim()) === "")) {
|
|
37809
|
-
|
|
37854
|
+
yield "\n";
|
|
37810
37855
|
output.currentLineWidth = 0;
|
|
37811
37856
|
for (let i = 0; i < output.indent; i++) {
|
|
37812
|
-
|
|
37857
|
+
yield " ";
|
|
37813
37858
|
}
|
|
37814
37859
|
output.currentLineWidth += output.indent;
|
|
37815
37860
|
}
|
|
37816
37861
|
}
|
|
37817
37862
|
if (opts.excludeTagContent == null || opts.excludeTagContent.includes(tagName) === false) {
|
|
37863
|
+
const tag = tagName === shadowRootTag ? "template" : tagName;
|
|
37818
37864
|
const childNodes = tagName === "template" ? node.content.childNodes : node.childNodes;
|
|
37819
37865
|
const childNodeLength = childNodes.length;
|
|
37820
37866
|
if (childNodeLength > 0) {
|
|
@@ -37825,17 +37871,17 @@ style="${cssText}">`);
|
|
|
37825
37871
|
output.indent = output.indent + ((_h = opts.indentSpaces) != null ? _h : 0);
|
|
37826
37872
|
}
|
|
37827
37873
|
for (let i = 0; i < childNodeLength; i++) {
|
|
37828
|
-
|
|
37874
|
+
yield* streamToHtml(childNodes[i], opts, output);
|
|
37829
37875
|
}
|
|
37830
37876
|
if (ignoreTag === false) {
|
|
37831
37877
|
if (opts.newLines && !isWithinWhitespaceSensitiveNode) {
|
|
37832
|
-
|
|
37878
|
+
yield "\n";
|
|
37833
37879
|
output.currentLineWidth = 0;
|
|
37834
37880
|
}
|
|
37835
37881
|
if (((_i = opts.indentSpaces) != null ? _i : 0) > 0 && !isWithinWhitespaceSensitiveNode) {
|
|
37836
37882
|
output.indent = output.indent - ((_j = opts.indentSpaces) != null ? _j : 0);
|
|
37837
37883
|
for (let i = 0; i < output.indent; i++) {
|
|
37838
|
-
|
|
37884
|
+
yield " ";
|
|
37839
37885
|
}
|
|
37840
37886
|
output.currentLineWidth += output.indent;
|
|
37841
37887
|
}
|
|
@@ -37843,13 +37889,13 @@ style="${cssText}">`);
|
|
|
37843
37889
|
}
|
|
37844
37890
|
}
|
|
37845
37891
|
if (ignoreTag === false) {
|
|
37846
|
-
|
|
37847
|
-
output.currentLineWidth +=
|
|
37892
|
+
yield "</" + tag + ">";
|
|
37893
|
+
output.currentLineWidth += tag.length + 3;
|
|
37848
37894
|
}
|
|
37849
37895
|
}
|
|
37850
37896
|
}
|
|
37851
37897
|
if (((_k = opts.approximateLineWidth) != null ? _k : 0) > 0 && STRUCTURE_ELEMENTS.has(tagName)) {
|
|
37852
|
-
|
|
37898
|
+
yield "\n";
|
|
37853
37899
|
output.currentLineWidth = 0;
|
|
37854
37900
|
}
|
|
37855
37901
|
if (tagName === "body") {
|
|
@@ -37861,27 +37907,27 @@ style="${cssText}">`);
|
|
|
37861
37907
|
const trimmedTextContent = textContent.trim();
|
|
37862
37908
|
if (trimmedTextContent === "") {
|
|
37863
37909
|
if (isWithinWhitespaceSensitive(node)) {
|
|
37864
|
-
|
|
37910
|
+
yield textContent;
|
|
37865
37911
|
output.currentLineWidth += textContent.length;
|
|
37866
37912
|
} else if (((_l = opts.approximateLineWidth) != null ? _l : 0) > 0 && !output.isWithinBody) {
|
|
37867
37913
|
} else if (!opts.prettyHtml) {
|
|
37868
37914
|
output.currentLineWidth += 1;
|
|
37869
37915
|
if (opts.approximateLineWidth && opts.approximateLineWidth > 0 && output.currentLineWidth > opts.approximateLineWidth) {
|
|
37870
|
-
|
|
37916
|
+
yield "\n";
|
|
37871
37917
|
output.currentLineWidth = 0;
|
|
37872
37918
|
} else {
|
|
37873
|
-
|
|
37919
|
+
yield " ";
|
|
37874
37920
|
}
|
|
37875
37921
|
}
|
|
37876
37922
|
} else {
|
|
37877
37923
|
const isWithinWhitespaceSensitiveNode = opts.newLines || ((_m = opts.indentSpaces) != null ? _m : 0) > 0 || opts.prettyHtml ? isWithinWhitespaceSensitive(node) : false;
|
|
37878
37924
|
if (opts.newLines && !isWithinWhitespaceSensitiveNode) {
|
|
37879
|
-
|
|
37925
|
+
yield "\n";
|
|
37880
37926
|
output.currentLineWidth = 0;
|
|
37881
37927
|
}
|
|
37882
37928
|
if (((_n = opts.indentSpaces) != null ? _n : 0) > 0 && !isWithinWhitespaceSensitiveNode) {
|
|
37883
37929
|
for (let i = 0; i < output.indent; i++) {
|
|
37884
|
-
|
|
37930
|
+
yield " ";
|
|
37885
37931
|
}
|
|
37886
37932
|
output.currentLineWidth += output.indent;
|
|
37887
37933
|
}
|
|
@@ -37890,15 +37936,15 @@ style="${cssText}">`);
|
|
|
37890
37936
|
const parentTagName = node.parentNode != null && node.parentNode.nodeType === 1 /* ELEMENT_NODE */ ? node.parentNode.nodeName : null;
|
|
37891
37937
|
if (typeof parentTagName === "string" && NON_ESCAPABLE_CONTENT.has(parentTagName)) {
|
|
37892
37938
|
if (isWithinWhitespaceSensitive(node)) {
|
|
37893
|
-
|
|
37939
|
+
yield textContent;
|
|
37894
37940
|
} else {
|
|
37895
|
-
|
|
37941
|
+
yield trimmedTextContent;
|
|
37896
37942
|
textContentLength = trimmedTextContent.length;
|
|
37897
37943
|
}
|
|
37898
37944
|
output.currentLineWidth += textContentLength;
|
|
37899
37945
|
} else {
|
|
37900
37946
|
if (opts.prettyHtml && !isWithinWhitespaceSensitiveNode) {
|
|
37901
|
-
|
|
37947
|
+
yield escapeString(textContent.replace(/\s\s+/g, " ").trim(), false);
|
|
37902
37948
|
output.currentLineWidth += textContentLength;
|
|
37903
37949
|
} else {
|
|
37904
37950
|
if (isWithinWhitespaceSensitive(node)) {
|
|
@@ -37920,7 +37966,7 @@ style="${cssText}">`);
|
|
|
37920
37966
|
}
|
|
37921
37967
|
output.currentLineWidth += textContentLength;
|
|
37922
37968
|
}
|
|
37923
|
-
|
|
37969
|
+
yield escapeString(textContent, false);
|
|
37924
37970
|
}
|
|
37925
37971
|
}
|
|
37926
37972
|
}
|
|
@@ -37928,27 +37974,27 @@ style="${cssText}">`);
|
|
|
37928
37974
|
}
|
|
37929
37975
|
} else if (node.nodeType === 8 /* COMMENT_NODE */) {
|
|
37930
37976
|
const nodeValue = node.nodeValue;
|
|
37931
|
-
|
|
37932
|
-
|
|
37933
|
-
|
|
37934
|
-
return;
|
|
37935
|
-
}
|
|
37977
|
+
const isHydrateAnnotation = (nodeValue == null ? void 0 : nodeValue.startsWith(CONTENT_REF_ID + ".")) || (nodeValue == null ? void 0 : nodeValue.startsWith(ORG_LOCATION_ID + ".")) || (nodeValue == null ? void 0 : nodeValue.startsWith(SLOT_NODE_ID + ".")) || (nodeValue == null ? void 0 : nodeValue.startsWith(TEXT_NODE_ID + "."));
|
|
37978
|
+
if (opts.removeHtmlComments && !isHydrateAnnotation) {
|
|
37979
|
+
return;
|
|
37936
37980
|
}
|
|
37937
37981
|
const isWithinWhitespaceSensitiveNode = opts.newLines || ((_o = opts.indentSpaces) != null ? _o : 0) > 0 ? isWithinWhitespaceSensitive(node) : false;
|
|
37938
37982
|
if (opts.newLines && !isWithinWhitespaceSensitiveNode) {
|
|
37939
|
-
|
|
37983
|
+
yield "\n";
|
|
37940
37984
|
output.currentLineWidth = 0;
|
|
37941
37985
|
}
|
|
37942
37986
|
if (((_p = opts.indentSpaces) != null ? _p : 0) > 0 && !isWithinWhitespaceSensitiveNode) {
|
|
37943
37987
|
for (let i = 0; i < output.indent; i++) {
|
|
37944
|
-
|
|
37988
|
+
yield " ";
|
|
37945
37989
|
}
|
|
37946
37990
|
output.currentLineWidth += output.indent;
|
|
37947
37991
|
}
|
|
37948
|
-
|
|
37949
|
-
|
|
37992
|
+
yield "<!--" + nodeValue + "-->";
|
|
37993
|
+
if (nodeValue) {
|
|
37994
|
+
output.currentLineWidth += nodeValue.length + 7;
|
|
37995
|
+
}
|
|
37950
37996
|
} else if (node.nodeType === 10 /* DOCUMENT_TYPE_NODE */) {
|
|
37951
|
-
|
|
37997
|
+
yield "<!doctype html>";
|
|
37952
37998
|
}
|
|
37953
37999
|
}
|
|
37954
38000
|
var AMP_REGEX = /&/g;
|
|
@@ -37973,7 +38019,7 @@ function escapeString(str, attrMode) {
|
|
|
37973
38019
|
}
|
|
37974
38020
|
function isWithinWhitespaceSensitive(node) {
|
|
37975
38021
|
let _node = node;
|
|
37976
|
-
while (_node
|
|
38022
|
+
while (_node == null ? void 0 : _node.nodeName) {
|
|
37977
38023
|
if (WHITESPACE_SENSITIVE.has(_node.nodeName)) {
|
|
37978
38024
|
return true;
|
|
37979
38025
|
}
|
|
@@ -38289,6 +38335,10 @@ Testing components with ElementInternals is fully supported in e2e tests.`
|
|
|
38289
38335
|
get shadowRoot() {
|
|
38290
38336
|
return this.__shadowRoot || null;
|
|
38291
38337
|
}
|
|
38338
|
+
/**
|
|
38339
|
+
* Set shadow root for element
|
|
38340
|
+
* @param shadowRoot - ShadowRoot to set
|
|
38341
|
+
*/
|
|
38292
38342
|
set shadowRoot(shadowRoot) {
|
|
38293
38343
|
if (shadowRoot != null) {
|
|
38294
38344
|
shadowRoot.host = this;
|
|
@@ -40075,14 +40125,16 @@ var WINDOW_PROPS = [
|
|
|
40075
40125
|
];
|
|
40076
40126
|
var GLOBAL_CONSTRUCTORS = [
|
|
40077
40127
|
["CustomEvent", MockCustomEvent],
|
|
40128
|
+
["DocumentFragment", MockDocumentFragment],
|
|
40129
|
+
["DOMParser", MockDOMParser],
|
|
40078
40130
|
["Event", MockEvent],
|
|
40079
|
-
["Headers", MockHeaders],
|
|
40080
40131
|
["FocusEvent", MockFocusEvent],
|
|
40132
|
+
["Headers", MockHeaders],
|
|
40081
40133
|
["KeyboardEvent", MockKeyboardEvent],
|
|
40082
40134
|
["MouseEvent", MockMouseEvent],
|
|
40083
40135
|
["Request", MockRequest],
|
|
40084
40136
|
["Response", MockResponse],
|
|
40085
|
-
["
|
|
40137
|
+
["ShadowRoot", MockDocumentFragment],
|
|
40086
40138
|
["HTMLAnchorElement", MockAnchorElement],
|
|
40087
40139
|
["HTMLBaseElement", MockBaseElement],
|
|
40088
40140
|
["HTMLButtonElement", MockButtonElement],
|
|
@@ -40293,6 +40345,7 @@ var nativeClearTimeout = clearTimeout;
|
|
|
40293
40345
|
var nativeSetInterval = setInterval;
|
|
40294
40346
|
var nativeSetTimeout = setTimeout;
|
|
40295
40347
|
var nativeURL = URL;
|
|
40348
|
+
var nativeWindow = globalThis.window;
|
|
40296
40349
|
var MockWindow = class {
|
|
40297
40350
|
constructor(html = null) {
|
|
40298
40351
|
if (html !== false) {
|
|
@@ -40319,10 +40372,10 @@ var MockWindow = class {
|
|
|
40319
40372
|
blur() {
|
|
40320
40373
|
}
|
|
40321
40374
|
cancelAnimationFrame(id) {
|
|
40322
|
-
this.__clearTimeout(id);
|
|
40375
|
+
this.__clearTimeout.call(nativeWindow || this, id);
|
|
40323
40376
|
}
|
|
40324
40377
|
cancelIdleCallback(id) {
|
|
40325
|
-
this.__clearTimeout(id);
|
|
40378
|
+
this.__clearTimeout.call(nativeWindow || this, id);
|
|
40326
40379
|
}
|
|
40327
40380
|
get CharacterData() {
|
|
40328
40381
|
if (this.__charDataCstr == null) {
|
|
@@ -40340,10 +40393,10 @@ var MockWindow = class {
|
|
|
40340
40393
|
this.__charDataCstr = charDataCstr;
|
|
40341
40394
|
}
|
|
40342
40395
|
clearInterval(id) {
|
|
40343
|
-
this.__clearInterval(id);
|
|
40396
|
+
this.__clearInterval.call(nativeWindow || this, id);
|
|
40344
40397
|
}
|
|
40345
40398
|
clearTimeout(id) {
|
|
40346
|
-
this.__clearTimeout(id);
|
|
40399
|
+
this.__clearTimeout.call(nativeWindow || this, id);
|
|
40347
40400
|
}
|
|
40348
40401
|
close() {
|
|
40349
40402
|
resetWindow(this);
|
|
@@ -40643,20 +40696,24 @@ var MockWindow = class {
|
|
|
40643
40696
|
}
|
|
40644
40697
|
return intervalId;
|
|
40645
40698
|
}
|
|
40646
|
-
const timeoutId = this.__setTimeout(
|
|
40647
|
-
|
|
40648
|
-
|
|
40649
|
-
|
|
40650
|
-
|
|
40651
|
-
|
|
40652
|
-
|
|
40653
|
-
|
|
40654
|
-
|
|
40655
|
-
|
|
40699
|
+
const timeoutId = this.__setTimeout.call(
|
|
40700
|
+
nativeWindow || this,
|
|
40701
|
+
() => {
|
|
40702
|
+
if (this.__timeouts) {
|
|
40703
|
+
this.__timeouts.delete(timeoutId);
|
|
40704
|
+
try {
|
|
40705
|
+
callback(...args);
|
|
40706
|
+
} catch (e) {
|
|
40707
|
+
if (this.console) {
|
|
40708
|
+
this.console.error(e);
|
|
40709
|
+
} else {
|
|
40710
|
+
console.error(e);
|
|
40711
|
+
}
|
|
40656
40712
|
}
|
|
40657
40713
|
}
|
|
40658
|
-
}
|
|
40659
|
-
|
|
40714
|
+
},
|
|
40715
|
+
ms
|
|
40716
|
+
);
|
|
40660
40717
|
if (this.__timeouts) {
|
|
40661
40718
|
this.__timeouts.add(timeoutId);
|
|
40662
40719
|
}
|
|
@@ -40667,20 +40724,24 @@ var MockWindow = class {
|
|
|
40667
40724
|
this.__timeouts = /* @__PURE__ */ new Set();
|
|
40668
40725
|
}
|
|
40669
40726
|
ms = Math.min(ms, this.__maxTimeout);
|
|
40670
|
-
const timeoutId = this.__setTimeout(
|
|
40671
|
-
|
|
40672
|
-
|
|
40673
|
-
|
|
40674
|
-
|
|
40675
|
-
|
|
40676
|
-
|
|
40677
|
-
|
|
40678
|
-
|
|
40679
|
-
|
|
40727
|
+
const timeoutId = this.__setTimeout.call(
|
|
40728
|
+
nativeWindow || this,
|
|
40729
|
+
() => {
|
|
40730
|
+
if (this.__timeouts) {
|
|
40731
|
+
this.__timeouts.delete(timeoutId);
|
|
40732
|
+
try {
|
|
40733
|
+
callback(...args);
|
|
40734
|
+
} catch (e) {
|
|
40735
|
+
if (this.console) {
|
|
40736
|
+
this.console.error(e);
|
|
40737
|
+
} else {
|
|
40738
|
+
console.error(e);
|
|
40739
|
+
}
|
|
40680
40740
|
}
|
|
40681
40741
|
}
|
|
40682
|
-
}
|
|
40683
|
-
|
|
40742
|
+
},
|
|
40743
|
+
ms
|
|
40744
|
+
);
|
|
40684
40745
|
if (this.__timeouts) {
|
|
40685
40746
|
this.__timeouts.add(timeoutId);
|
|
40686
40747
|
}
|
|
@@ -41255,7 +41316,6 @@ function createWindowFromHtml(templateHtml, uniqueId) {
|
|
|
41255
41316
|
|
|
41256
41317
|
// src/utils/helpers.ts
|
|
41257
41318
|
var isString = (v) => typeof v === "string";
|
|
41258
|
-
var isPromise = (v) => !!v && (typeof v === "object" || typeof v === "function") && typeof v.then === "function";
|
|
41259
41319
|
|
|
41260
41320
|
// src/utils/message-utils.ts
|
|
41261
41321
|
var catchError = (diagnostics, err2, msg) => {
|
|
@@ -41346,6 +41406,7 @@ var unwrapErr = (result) => {
|
|
|
41346
41406
|
|
|
41347
41407
|
// src/compiler/html/canonical-link.ts
|
|
41348
41408
|
var updateCanonicalLink = (doc, href) => {
|
|
41409
|
+
var _a2;
|
|
41349
41410
|
let canonicalLinkElm = doc.head.querySelector('link[rel="canonical"]');
|
|
41350
41411
|
if (typeof href === "string") {
|
|
41351
41412
|
if (canonicalLinkElm == null) {
|
|
@@ -41358,7 +41419,7 @@ var updateCanonicalLink = (doc, href) => {
|
|
|
41358
41419
|
if (canonicalLinkElm != null) {
|
|
41359
41420
|
const existingHref = canonicalLinkElm.getAttribute("href");
|
|
41360
41421
|
if (!existingHref) {
|
|
41361
|
-
canonicalLinkElm.parentNode.removeChild(canonicalLinkElm);
|
|
41422
|
+
(_a2 = canonicalLinkElm.parentNode) == null ? void 0 : _a2.removeChild(canonicalLinkElm);
|
|
41362
41423
|
}
|
|
41363
41424
|
}
|
|
41364
41425
|
}
|
|
@@ -42125,7 +42186,7 @@ var removeUnusedStyleText = (usedSelectors, diagnostics, styleElm) => {
|
|
|
42125
42186
|
|
|
42126
42187
|
// src/hydrate/runner/inspect-element.ts
|
|
42127
42188
|
function inspectElement(results, elm, depth) {
|
|
42128
|
-
const children = elm.children;
|
|
42189
|
+
const children = [...Array.from(elm.children), ...Array.from(elm.shadowRoot ? elm.shadowRoot.children : [])];
|
|
42129
42190
|
for (let i = 0, ii = children.length; i < ii; i++) {
|
|
42130
42191
|
const childElm = children[i];
|
|
42131
42192
|
const tagName = childElm.nodeName.toLowerCase();
|
|
@@ -42392,10 +42453,10 @@ function renderBuildDiagnostic(results, level, header, msg) {
|
|
|
42392
42453
|
return diagnostic;
|
|
42393
42454
|
}
|
|
42394
42455
|
function renderBuildError(results, msg) {
|
|
42395
|
-
return renderBuildDiagnostic(results, "error", "Hydrate Error", msg);
|
|
42456
|
+
return renderBuildDiagnostic(results, "error", "Hydrate Error", msg || "");
|
|
42396
42457
|
}
|
|
42397
42458
|
function renderCatchError(results, err2) {
|
|
42398
|
-
const diagnostic = renderBuildError(results
|
|
42459
|
+
const diagnostic = renderBuildError(results);
|
|
42399
42460
|
if (err2 != null) {
|
|
42400
42461
|
if (err2.stack != null) {
|
|
42401
42462
|
diagnostic.messageText = err2.stack.toString();
|
|
@@ -42457,10 +42518,11 @@ function runtimeLog(pathname, type, msgs) {
|
|
|
42457
42518
|
|
|
42458
42519
|
// src/hydrate/runner/window-initialize.ts
|
|
42459
42520
|
function initializeWindow(win, doc, opts, results) {
|
|
42460
|
-
|
|
42461
|
-
|
|
42462
|
-
|
|
42463
|
-
|
|
42521
|
+
if (typeof opts.url === "string") {
|
|
42522
|
+
try {
|
|
42523
|
+
win.location.href = opts.url;
|
|
42524
|
+
} catch (e) {
|
|
42525
|
+
}
|
|
42464
42526
|
}
|
|
42465
42527
|
if (typeof opts.userAgent === "string") {
|
|
42466
42528
|
try {
|
|
@@ -42510,134 +42572,99 @@ function initializeWindow(win, doc, opts, results) {
|
|
|
42510
42572
|
}
|
|
42511
42573
|
|
|
42512
42574
|
// src/hydrate/runner/render.ts
|
|
42513
|
-
|
|
42575
|
+
var NOOP = () => {
|
|
42576
|
+
};
|
|
42577
|
+
function streamToString(html, option) {
|
|
42578
|
+
return renderToString(html, option, true);
|
|
42579
|
+
}
|
|
42580
|
+
function renderToString(html, options, asStream) {
|
|
42514
42581
|
const opts = normalizeHydrateOptions(options);
|
|
42515
42582
|
opts.serializeToHtml = true;
|
|
42516
|
-
|
|
42517
|
-
|
|
42518
|
-
|
|
42519
|
-
|
|
42520
|
-
|
|
42521
|
-
|
|
42522
|
-
|
|
42523
|
-
|
|
42524
|
-
|
|
42525
|
-
|
|
42526
|
-
|
|
42527
|
-
|
|
42528
|
-
|
|
42529
|
-
|
|
42530
|
-
|
|
42531
|
-
|
|
42532
|
-
|
|
42533
|
-
|
|
42583
|
+
opts.fullDocument = typeof opts.fullDocument === "boolean" ? opts.fullDocument : true;
|
|
42584
|
+
opts.serializeShadowRoot = typeof opts.serializeShadowRoot === "boolean" ? opts.serializeShadowRoot : true;
|
|
42585
|
+
opts.constrainTimeouts = false;
|
|
42586
|
+
return hydrateDocument(html, opts, asStream);
|
|
42587
|
+
}
|
|
42588
|
+
function hydrateDocument(doc, options, asStream) {
|
|
42589
|
+
const opts = normalizeHydrateOptions(options);
|
|
42590
|
+
let win = null;
|
|
42591
|
+
const results = generateHydrateResults(opts);
|
|
42592
|
+
if (hasError(results.diagnostics)) {
|
|
42593
|
+
return Promise.resolve(results);
|
|
42594
|
+
}
|
|
42595
|
+
if (typeof doc === "string") {
|
|
42596
|
+
try {
|
|
42597
|
+
opts.destroyWindow = true;
|
|
42598
|
+
opts.destroyDocument = true;
|
|
42599
|
+
win = new MockWindow(doc);
|
|
42600
|
+
if (!asStream) {
|
|
42601
|
+
return render(win, opts, results).then(() => results);
|
|
42534
42602
|
}
|
|
42535
|
-
|
|
42536
|
-
|
|
42537
|
-
|
|
42538
|
-
win
|
|
42539
|
-
render(win, opts, results, resolve);
|
|
42540
|
-
} catch (e) {
|
|
42541
|
-
if (win && win.close) {
|
|
42542
|
-
win.close();
|
|
42543
|
-
}
|
|
42544
|
-
win = null;
|
|
42545
|
-
renderCatchError(results, e);
|
|
42546
|
-
resolve(results);
|
|
42603
|
+
return renderStream(win, opts, results);
|
|
42604
|
+
} catch (e) {
|
|
42605
|
+
if (win && win.close) {
|
|
42606
|
+
win.close();
|
|
42547
42607
|
}
|
|
42548
|
-
|
|
42549
|
-
|
|
42550
|
-
resolve(results);
|
|
42608
|
+
win = null;
|
|
42609
|
+
renderCatchError(results, e);
|
|
42610
|
+
return Promise.resolve(results);
|
|
42551
42611
|
}
|
|
42552
|
-
}
|
|
42553
|
-
|
|
42554
|
-
|
|
42555
|
-
|
|
42556
|
-
|
|
42557
|
-
|
|
42558
|
-
|
|
42559
|
-
const results = generateHydrateResults(opts);
|
|
42560
|
-
if (hasError(results.diagnostics)) {
|
|
42561
|
-
resolve(results);
|
|
42562
|
-
} else if (typeof doc === "string") {
|
|
42563
|
-
try {
|
|
42564
|
-
opts.destroyWindow = true;
|
|
42565
|
-
opts.destroyDocument = true;
|
|
42566
|
-
win = new MockWindow(doc);
|
|
42567
|
-
render(win, opts, results, resolve);
|
|
42568
|
-
} catch (e) {
|
|
42569
|
-
if (win && win.close) {
|
|
42570
|
-
win.close();
|
|
42571
|
-
}
|
|
42572
|
-
win = null;
|
|
42573
|
-
renderCatchError(results, e);
|
|
42574
|
-
resolve(results);
|
|
42612
|
+
}
|
|
42613
|
+
if (isValidDocument(doc)) {
|
|
42614
|
+
try {
|
|
42615
|
+
opts.destroyDocument = false;
|
|
42616
|
+
win = patchDomImplementation(doc, opts);
|
|
42617
|
+
if (!asStream) {
|
|
42618
|
+
return render(win, opts, results).then(() => results);
|
|
42575
42619
|
}
|
|
42576
|
-
|
|
42577
|
-
|
|
42578
|
-
|
|
42579
|
-
win
|
|
42580
|
-
render(win, opts, results, resolve);
|
|
42581
|
-
} catch (e) {
|
|
42582
|
-
if (win && win.close) {
|
|
42583
|
-
win.close();
|
|
42584
|
-
}
|
|
42585
|
-
win = null;
|
|
42586
|
-
renderCatchError(results, e);
|
|
42587
|
-
resolve(results);
|
|
42620
|
+
return renderStream(win, opts, results);
|
|
42621
|
+
} catch (e) {
|
|
42622
|
+
if (win && win.close) {
|
|
42623
|
+
win.close();
|
|
42588
42624
|
}
|
|
42589
|
-
|
|
42590
|
-
|
|
42591
|
-
resolve(results);
|
|
42625
|
+
win = null;
|
|
42626
|
+
renderCatchError(results, e);
|
|
42627
|
+
return Promise.resolve(results);
|
|
42592
42628
|
}
|
|
42593
|
-
}
|
|
42629
|
+
}
|
|
42630
|
+
renderBuildError(results, `Invalid html or document. Must be either a valid "html" string, or DOM "document".`);
|
|
42631
|
+
return Promise.resolve(results);
|
|
42594
42632
|
}
|
|
42595
|
-
function render(win, opts, results
|
|
42596
|
-
if (!process.__stencilErrors) {
|
|
42633
|
+
async function render(win, opts, results) {
|
|
42634
|
+
if ("process" in globalThis && typeof process.on === "function" && !process.__stencilErrors) {
|
|
42597
42635
|
process.__stencilErrors = true;
|
|
42598
42636
|
process.on("unhandledRejection", (e) => {
|
|
42599
42637
|
console.log("unhandledRejection", e);
|
|
42600
42638
|
});
|
|
42601
42639
|
}
|
|
42602
42640
|
initializeWindow(win, win.document, opts, results);
|
|
42603
|
-
|
|
42604
|
-
|
|
42605
|
-
|
|
42606
|
-
|
|
42607
|
-
|
|
42608
|
-
|
|
42609
|
-
|
|
42610
|
-
} else {
|
|
42611
|
-
hydrateFactory(win, opts, results, afterHydrate, resolve);
|
|
42612
|
-
}
|
|
42613
|
-
} catch (e) {
|
|
42614
|
-
renderCatchError(results, e);
|
|
42615
|
-
finalizeHydrate(win, win.document, opts, results, resolve);
|
|
42616
|
-
}
|
|
42617
|
-
} else {
|
|
42618
|
-
hydrateFactory(win, opts, results, afterHydrate, resolve);
|
|
42641
|
+
const beforeHydrateFn = typeof opts.beforeHydrate === "function" ? opts.beforeHydrate : NOOP;
|
|
42642
|
+
try {
|
|
42643
|
+
await Promise.resolve(beforeHydrateFn(win.document));
|
|
42644
|
+
return new Promise((resolve) => hydrateFactory(win, opts, results, afterHydrate, resolve));
|
|
42645
|
+
} catch (e) {
|
|
42646
|
+
renderCatchError(results, e);
|
|
42647
|
+
return finalizeHydrate(win, win.document, opts, results);
|
|
42619
42648
|
}
|
|
42620
42649
|
}
|
|
42621
|
-
function
|
|
42622
|
-
|
|
42623
|
-
|
|
42624
|
-
|
|
42625
|
-
|
|
42626
|
-
|
|
42627
|
-
|
|
42628
|
-
|
|
42629
|
-
|
|
42630
|
-
|
|
42631
|
-
|
|
42632
|
-
|
|
42633
|
-
|
|
42634
|
-
|
|
42635
|
-
|
|
42636
|
-
} else {
|
|
42637
|
-
finalizeHydrate(win, win.document, opts, results, resolve);
|
|
42650
|
+
function renderStream(win, opts, results) {
|
|
42651
|
+
async function* processRender() {
|
|
42652
|
+
const renderResult = await render(win, opts, results);
|
|
42653
|
+
yield renderResult.html;
|
|
42654
|
+
}
|
|
42655
|
+
return stream.Readable.from(processRender());
|
|
42656
|
+
}
|
|
42657
|
+
async function afterHydrate(win, opts, results, resolve) {
|
|
42658
|
+
const afterHydrateFn = typeof opts.afterHydrate === "function" ? opts.afterHydrate : NOOP;
|
|
42659
|
+
try {
|
|
42660
|
+
await Promise.resolve(afterHydrateFn(win.document));
|
|
42661
|
+
return resolve(finalizeHydrate(win, win.document, opts, results));
|
|
42662
|
+
} catch (e) {
|
|
42663
|
+
renderCatchError(results, e);
|
|
42664
|
+
return resolve(finalizeHydrate(win, win.document, opts, results));
|
|
42638
42665
|
}
|
|
42639
42666
|
}
|
|
42640
|
-
function finalizeHydrate(win, doc, opts, results
|
|
42667
|
+
function finalizeHydrate(win, doc, opts, results) {
|
|
42641
42668
|
try {
|
|
42642
42669
|
inspectElement(results, doc.documentElement, 0);
|
|
42643
42670
|
if (opts.removeUnusedStyles !== false) {
|
|
@@ -42689,20 +42716,24 @@ function finalizeHydrate(win, doc, opts, results, resolve) {
|
|
|
42689
42716
|
} catch (e) {
|
|
42690
42717
|
renderCatchError(results, e);
|
|
42691
42718
|
}
|
|
42692
|
-
|
|
42693
|
-
|
|
42694
|
-
|
|
42695
|
-
|
|
42696
|
-
|
|
42697
|
-
|
|
42698
|
-
|
|
42699
|
-
|
|
42700
|
-
|
|
42701
|
-
|
|
42702
|
-
|
|
42719
|
+
destroyWindow(win, doc, opts, results);
|
|
42720
|
+
return results;
|
|
42721
|
+
}
|
|
42722
|
+
function destroyWindow(win, doc, opts, results) {
|
|
42723
|
+
if (!opts.destroyWindow) {
|
|
42724
|
+
return;
|
|
42725
|
+
}
|
|
42726
|
+
try {
|
|
42727
|
+
if (!opts.destroyDocument) {
|
|
42728
|
+
win.document = null;
|
|
42729
|
+
doc.defaultView = null;
|
|
42703
42730
|
}
|
|
42731
|
+
if (win.close) {
|
|
42732
|
+
win.close();
|
|
42733
|
+
}
|
|
42734
|
+
} catch (e) {
|
|
42735
|
+
renderCatchError(results, e);
|
|
42704
42736
|
}
|
|
42705
|
-
resolve(results);
|
|
42706
42737
|
}
|
|
42707
42738
|
function serializeDocumentToString(doc, opts) {
|
|
42708
42739
|
return serializeNodeToHtml(doc, {
|
|
@@ -42713,7 +42744,8 @@ function serializeDocumentToString(doc, opts) {
|
|
|
42713
42744
|
removeBooleanAttributeQuotes: opts.removeBooleanAttributeQuotes,
|
|
42714
42745
|
removeEmptyAttributes: opts.removeEmptyAttributes,
|
|
42715
42746
|
removeHtmlComments: opts.removeHtmlComments,
|
|
42716
|
-
serializeShadowRoot:
|
|
42747
|
+
serializeShadowRoot: opts.serializeShadowRoot,
|
|
42748
|
+
fullDocument: opts.fullDocument
|
|
42717
42749
|
});
|
|
42718
42750
|
}
|
|
42719
42751
|
function isValidDocument(doc) {
|
|
@@ -42734,3 +42766,4 @@ exports.createWindowFromHtml = createWindowFromHtml;
|
|
|
42734
42766
|
exports.hydrateDocument = hydrateDocument;
|
|
42735
42767
|
exports.renderToString = renderToString;
|
|
42736
42768
|
exports.serializeDocumentToString = serializeDocumentToString;
|
|
42769
|
+
exports.streamToString = streamToString;
|