@public-ui/hydrate 2.0.0-rc.2 → 2.0.0-rc.4
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.js +174 -225
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
7
7
|
|
|
8
8
|
/*!
|
|
9
|
-
Stencil Mock Doc v4.
|
|
9
|
+
Stencil Mock Doc v4.6.0 | MIT Licensed | https://stenciljs.com
|
|
10
10
|
*/
|
|
11
11
|
const CONTENT_REF_ID = 'r';
|
|
12
12
|
const ORG_LOCATION_ID = 'o';
|
|
@@ -7649,15 +7649,19 @@ class ModalService {
|
|
|
7649
7649
|
lockedElements.forEach(this.unlockElement.bind(this));
|
|
7650
7650
|
}
|
|
7651
7651
|
lockFocus(hostElement, excludeElement) {
|
|
7652
|
-
|
|
7653
|
-
if (hostElement instanceof HTMLElement) {
|
|
7654
|
-
|
|
7655
|
-
|
|
7656
|
-
|
|
7657
|
-
|
|
7658
|
-
|
|
7652
|
+
try {
|
|
7653
|
+
if (hostElement !== excludeElement && (hostElement instanceof HTMLElement || hostElement instanceof ShadowRoot)) {
|
|
7654
|
+
if (hostElement instanceof HTMLElement) {
|
|
7655
|
+
this.lockElement(hostElement);
|
|
7656
|
+
this.lockFocus(hostElement.shadowRoot, excludeElement);
|
|
7657
|
+
}
|
|
7658
|
+
for (let i = 0; i < hostElement.children.length; i++) {
|
|
7659
|
+
this.lockFocus(hostElement.children[i], excludeElement);
|
|
7660
|
+
}
|
|
7659
7661
|
}
|
|
7660
7662
|
}
|
|
7663
|
+
catch (error) {
|
|
7664
|
+
}
|
|
7661
7665
|
}
|
|
7662
7666
|
renderModalIfExists(activeElement) {
|
|
7663
7667
|
if (activeElement instanceof HTMLElement) {
|
|
@@ -7846,7 +7850,7 @@ const initKoliBri = () => {
|
|
|
7846
7850
|
| . ' | .-. | | | ,--. | .-. \\ | .--' ,--.
|
|
7847
7851
|
| |\\ \\ | '-' | | | | | | '--' / | | | |
|
|
7848
7852
|
\`--' \`--´ \`---´ \`--' \`--' \`------´ \`--' \`--'
|
|
7849
|
-
🚹 The accessible HTML-Standard | 👉 https://public-ui.github.io | 2.0.0-rc.
|
|
7853
|
+
🚹 The accessible HTML-Standard | 👉 https://public-ui.github.io | 2.0.0-rc.4
|
|
7850
7854
|
`, {
|
|
7851
7855
|
forceLog: true,
|
|
7852
7856
|
});
|
|
@@ -7884,8 +7888,12 @@ if (processEnv === 'test') {
|
|
|
7884
7888
|
|
|
7885
7889
|
var appGlobalScript = async () => {
|
|
7886
7890
|
setMode((elm) => {
|
|
7887
|
-
|
|
7888
|
-
|
|
7891
|
+
try {
|
|
7892
|
+
if (elm.shadowRoot instanceof ShadowRoot) {
|
|
7893
|
+
setThemeStyle(elm, getThemeDetails(elm));
|
|
7894
|
+
}
|
|
7895
|
+
}
|
|
7896
|
+
catch (error) {
|
|
7889
7897
|
}
|
|
7890
7898
|
return 'default';
|
|
7891
7899
|
});
|
|
@@ -7938,7 +7946,7 @@ function hydrateApp(e, t, o, n, s) {
|
|
|
7938
7946
|
let p, h = !1;
|
|
7939
7947
|
try {
|
|
7940
7948
|
function u() {
|
|
7941
|
-
return
|
|
7949
|
+
return L(this);
|
|
7942
7950
|
}
|
|
7943
7951
|
function f(e) {
|
|
7944
7952
|
if (isValidComponent(e, t) && !getHostRef(e)) {
|
|
@@ -7982,7 +7990,14 @@ function hydrateApp(e, t, o, n, s) {
|
|
|
7982
7990
|
}(e, t.cmpMeta));
|
|
7983
7991
|
}
|
|
7984
7992
|
}
|
|
7985
|
-
function g(
|
|
7993
|
+
function g(e) {
|
|
7994
|
+
if (null != e && 1 === e.nodeType) {
|
|
7995
|
+
f(e);
|
|
7996
|
+
const t = e.children;
|
|
7997
|
+
for (let e = 0, o = t.length; e < o; e++) g(t[e]);
|
|
7998
|
+
}
|
|
7999
|
+
}
|
|
8000
|
+
function L(n) {
|
|
7986
8001
|
return i.delete(n), isValidComponent(n, t) && o.hydratedCount < t.maxHydrateCount && !r.has(n) && shouldHydrate(n) ? (r.add(n),
|
|
7987
8002
|
async function s(e, t, o, n, l) {
|
|
7988
8003
|
o = o.toLowerCase();
|
|
@@ -8008,29 +8023,24 @@ function hydrateApp(e, t, o, n, s) {
|
|
|
8008
8023
|
}
|
|
8009
8024
|
}(e, o, n.nodeName, n, d)) : m;
|
|
8010
8025
|
}
|
|
8026
|
+
function y() {
|
|
8027
|
+
const e = Array.from(i).filter((e => e.parentElement));
|
|
8028
|
+
return e.length > 0 ? Promise.all(e.map(L)).then(y) : m;
|
|
8029
|
+
}
|
|
8011
8030
|
e.document.createElement = function t(o) {
|
|
8012
8031
|
const n = c.call(e.document, o);
|
|
8013
8032
|
return f(n), n;
|
|
8014
8033
|
}, e.document.createElementNS = function t(o, n) {
|
|
8015
8034
|
const s = $.call(e.document, o, n);
|
|
8016
8035
|
return f(s), s;
|
|
8017
|
-
}, p = global.setTimeout((function
|
|
8036
|
+
}, p = global.setTimeout((function D() {
|
|
8018
8037
|
a(`Hydrate exceeded timeout${function e(t) {
|
|
8019
8038
|
return Array.from(t).map(waitingOnElementMsg);
|
|
8020
8039
|
}(d)}`);
|
|
8021
8040
|
}), t.timeout), plt.$resourcesUrl$ = new URL(t.resourcesUrl || "./", doc.baseURI).href,
|
|
8022
|
-
globalScripts(),
|
|
8023
|
-
|
|
8024
|
-
|
|
8025
|
-
const o = t.children;
|
|
8026
|
-
for (let t = 0, n = o.length; t < n; t++) e(o[t]);
|
|
8027
|
-
}
|
|
8028
|
-
}(e.document.body), function e() {
|
|
8029
|
-
const t = Array.from(i).filter((e => e.parentElement));
|
|
8030
|
-
return t.length > 0 ? Promise.all(t.map(g)).then(e) : m;
|
|
8031
|
-
}().then(l).catch(a);
|
|
8032
|
-
} catch (y) {
|
|
8033
|
-
a(y);
|
|
8041
|
+
globalScripts(), g(e.document.body), y().then(l).catch(a);
|
|
8042
|
+
} catch (I) {
|
|
8043
|
+
a(I);
|
|
8034
8044
|
}
|
|
8035
8045
|
}
|
|
8036
8046
|
|
|
@@ -10016,6 +10026,7 @@ const ariaCurrentSubject = new Subject();
|
|
|
10016
10026
|
class KoliBriDevHelper {
|
|
10017
10027
|
}
|
|
10018
10028
|
KoliBriDevHelper.patchTheme = patchTheme;
|
|
10029
|
+
KoliBriDevHelper.patchThemeTag = patchThemeTag;
|
|
10019
10030
|
KoliBriDevHelper.querySelector = koliBriQuerySelector;
|
|
10020
10031
|
KoliBriDevHelper.querySelectorAll = koliBriQuerySelectorAll;
|
|
10021
10032
|
KoliBriDevHelper.stringifyJson = stringifyJson;
|
|
@@ -10069,7 +10080,7 @@ const validateTooltipAlign = (component, value) => {
|
|
|
10069
10080
|
validateAlignment(component, '_tooltipAlign', value);
|
|
10070
10081
|
};
|
|
10071
10082
|
|
|
10072
|
-
const defaultStyleCss$
|
|
10083
|
+
const defaultStyleCss$I = "@layer kol-global {\n\t\n\t.sc-kol-abbr-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-abbr-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-abbr-default-h > abbr {\n\t\tcursor: help;\n\t}\n}";
|
|
10073
10084
|
|
|
10074
10085
|
class KolAbbr {
|
|
10075
10086
|
constructor(hostRef) {
|
|
@@ -10100,7 +10111,7 @@ class KolAbbr {
|
|
|
10100
10111
|
"_tooltipAlign": ["validateTooltipAlign"]
|
|
10101
10112
|
}; }
|
|
10102
10113
|
static get style() { return {
|
|
10103
|
-
default: defaultStyleCss$
|
|
10114
|
+
default: defaultStyleCss$I
|
|
10104
10115
|
}; }
|
|
10105
10116
|
static get cmpMeta() { return {
|
|
10106
10117
|
"$flags$": 41,
|
|
@@ -10129,7 +10140,7 @@ const watchHeadingLevel = (component, value) => {
|
|
|
10129
10140
|
});
|
|
10130
10141
|
};
|
|
10131
10142
|
|
|
10132
|
-
const defaultStyleCss$
|
|
10143
|
+
const defaultStyleCss$H = "@layer kol-global {\n\t\n\t.sc-kol-accordion-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-accordion-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-accordion-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\t\n\t.wrapper {\n\t\tdisplay: grid;\n\t\tgrid-template-rows: 0fr;\n\t\toverflow: hidden;\n\t\ttransition: grid-template-rows 0.3s;\n\t}\n\n\t.accordion.open .wrapper {\n\t\tgrid-template-rows: 1fr;\n\t}\n\n\t.animation-wrapper {\n\t\tmin-height: 0;\n\t\ttransition: visibility 0.3s;\n\t\t\n\t\tvisibility: hidden;\n\t}\n\n\t.accordion.open .animation-wrapper {\n\t\tvisibility: visible;\n\t}\n\n\t@media (prefers-reduced-motion) {\n\t\t.animation-wrapper,\n\t\t.wrapper {\n\t\t\ttransition-duration: 0s;\n\t\t}\n\t} \n\t.accordion kol-heading-wc kol-button-wc button kol-span-wc {\n\t\tjustify-items: start;\n\t}\n}";
|
|
10133
10144
|
|
|
10134
10145
|
featureHint(`[KolAccordion] Anfrage nach einer KolAccordionGroup bei dem immer nur ein Accordion geöffnet ist.
|
|
10135
10146
|
|
|
@@ -10192,7 +10203,7 @@ class KolAccordion {
|
|
|
10192
10203
|
"_open": ["validateOpen"]
|
|
10193
10204
|
}; }
|
|
10194
10205
|
static get style() { return {
|
|
10195
|
-
default: defaultStyleCss$
|
|
10206
|
+
default: defaultStyleCss$H
|
|
10196
10207
|
}; }
|
|
10197
10208
|
static get cmpMeta() { return {
|
|
10198
10209
|
"$flags$": 41,
|
|
@@ -10210,7 +10221,7 @@ class KolAccordion {
|
|
|
10210
10221
|
}; }
|
|
10211
10222
|
}
|
|
10212
10223
|
|
|
10213
|
-
const defaultStyleCss$
|
|
10224
|
+
const defaultStyleCss$G = "@layer kol-global {\n\t\n\t.sc-kol-alert-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-alert-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-alert-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tkol-alert-wc {\n\t\tdisplay: grid;\n\t}\n\n\tkol-alert-wc .heading {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\tkol-alert-wc .heading > div {\n\t\tflex-grow: 1;\n\t}\n}";
|
|
10214
10225
|
|
|
10215
10226
|
class KolAlert {
|
|
10216
10227
|
constructor(hostRef) {
|
|
@@ -10230,7 +10241,7 @@ class KolAlert {
|
|
|
10230
10241
|
return (hAsync(Host, null, hAsync("kol-alert-wc", { _alert: this._alert, _hasCloser: this._hasCloser, _label: this._label, _level: this._level, _on: this._on, _type: this._type, _variant: this._variant }, hAsync("slot", null))));
|
|
10231
10242
|
}
|
|
10232
10243
|
static get style() { return {
|
|
10233
|
-
default: defaultStyleCss$
|
|
10244
|
+
default: defaultStyleCss$G
|
|
10234
10245
|
}; }
|
|
10235
10246
|
static get cmpMeta() { return {
|
|
10236
10247
|
"$flags$": 41,
|
|
@@ -10478,7 +10489,7 @@ class KolAlertWc {
|
|
|
10478
10489
|
}; }
|
|
10479
10490
|
}
|
|
10480
10491
|
|
|
10481
|
-
const defaultStyleCss$
|
|
10492
|
+
const defaultStyleCss$F = "@layer kol-global {\n\t\n\t.sc-kol-avatar-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-avatar-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-avatar-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\t.container {\n\t\tborder-radius: 50%;\n\t\toverflow: hidden;\n\t\t\n\t\twidth: 100px;\n\t\theight: 100px;\n\t}\n\n\t.image {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t}\n\n\t.initials {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\t\n\t\tbackground: #d3d3d3;\n\t\tfont-size: 2rem;\n\t}\n}";
|
|
10482
10493
|
|
|
10483
10494
|
class KolAvatar {
|
|
10484
10495
|
constructor(hostRef) {
|
|
@@ -10490,7 +10501,7 @@ class KolAvatar {
|
|
|
10490
10501
|
return (hAsync(Host, null, hAsync("kol-avatar-wc", { _src: this._src, _label: this._label })));
|
|
10491
10502
|
}
|
|
10492
10503
|
static get style() { return {
|
|
10493
|
-
default: defaultStyleCss$
|
|
10504
|
+
default: defaultStyleCss$F
|
|
10494
10505
|
}; }
|
|
10495
10506
|
static get cmpMeta() { return {
|
|
10496
10507
|
"$flags$": 41,
|
|
@@ -11088,7 +11099,7 @@ const handleColorChange = (value) => {
|
|
|
11088
11099
|
};
|
|
11089
11100
|
};
|
|
11090
11101
|
|
|
11091
|
-
const defaultStyleCss$
|
|
11102
|
+
const defaultStyleCss$E = "@layer kol-global {\n\t\n\t.sc-kol-badge-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-badge-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-badge-default-h > span {\n\t\tdisplay: inline-flex;\n\t\tplace-items: center;\n\t}\n\n\t.sc-kol-badge-default-h > span > kol-button-wc button {\n\t\tcolor: inherit;\n\t}\n}";
|
|
11092
11103
|
|
|
11093
11104
|
featureHint(`[KolBadge] Optimierung des _color-Properties (rgba, rgb, hex usw.).`);
|
|
11094
11105
|
class KolBadge {
|
|
@@ -11152,7 +11163,7 @@ class KolBadge {
|
|
|
11152
11163
|
"_smartButton": ["validateSmartButton"]
|
|
11153
11164
|
}; }
|
|
11154
11165
|
static get style() { return {
|
|
11155
|
-
default: defaultStyleCss$
|
|
11166
|
+
default: defaultStyleCss$E
|
|
11156
11167
|
}; }
|
|
11157
11168
|
static get cmpMeta() { return {
|
|
11158
11169
|
"$flags$": 41,
|
|
@@ -11188,7 +11199,7 @@ const watchNavLinks = (className, component, value) => {
|
|
|
11188
11199
|
uiUxHintMillerscheZahl(className, component.state._links.length);
|
|
11189
11200
|
};
|
|
11190
11201
|
|
|
11191
|
-
const defaultStyleCss$
|
|
11202
|
+
const defaultStyleCss$D = "@layer kol-global {\n\t\n\t.sc-kol-breadcrumb-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-breadcrumb-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\tli,\n\tul {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tlist-style: none;\n\t\tdisplay: flex;\n\t\tgap: 0.5em;\n\t\tflex-wrap: wrap;\n\t\tplace-items: center;\n\t}\n\n\tkol-icon::part(separator) {\n\t\tfont-weight: 900;\n\t\tfont-size: 0.7em;\n\t}\n\n\tkol-icon::part(separator):before {\n\t\tcontent: '\\f054';\n\t\tfont-family: 'Font Awesome 6 Free';\n\t}\n}";
|
|
11192
11203
|
|
|
11193
11204
|
class KolBreadcrumb {
|
|
11194
11205
|
constructor(hostRef) {
|
|
@@ -11230,7 +11241,7 @@ class KolBreadcrumb {
|
|
|
11230
11241
|
"_links": ["validateLinks"]
|
|
11231
11242
|
}; }
|
|
11232
11243
|
static get style() { return {
|
|
11233
|
-
default: defaultStyleCss$
|
|
11244
|
+
default: defaultStyleCss$D
|
|
11234
11245
|
}; }
|
|
11235
11246
|
static get cmpMeta() { return {
|
|
11236
11247
|
"$flags$": 41,
|
|
@@ -11246,7 +11257,7 @@ class KolBreadcrumb {
|
|
|
11246
11257
|
}; }
|
|
11247
11258
|
}
|
|
11248
11259
|
|
|
11249
|
-
const defaultStyleCss$
|
|
11260
|
+
const defaultStyleCss$C = "@layer kol-global {\n\t\n\t.sc-kol-button-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-button-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-button-default-h {\n\t\tdisplay: inline-block;\n\t}\n\t:is(a, button) {\n\t\tdisplay: inline-flex;\n\t\tplace-items: center;\n\t\ttext-align: center;\n\t\ttext-decoration-line: none;\n\t}\n\t\n\t:is(a, button) > kol-span-wc {\n\t\tmargin: auto;\n\t\twidth: 100%;\n\t}\n\t:is(button):disabled {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}";
|
|
11250
11261
|
|
|
11251
11262
|
class KolButton {
|
|
11252
11263
|
constructor(hostRef) {
|
|
@@ -11283,7 +11294,7 @@ class KolButton {
|
|
|
11283
11294
|
}
|
|
11284
11295
|
get host() { return getElement(this); }
|
|
11285
11296
|
static get style() { return {
|
|
11286
|
-
default: defaultStyleCss$
|
|
11297
|
+
default: defaultStyleCss$C
|
|
11287
11298
|
}; }
|
|
11288
11299
|
static get cmpMeta() { return {
|
|
11289
11300
|
"$flags$": 41,
|
|
@@ -11314,7 +11325,7 @@ class KolButton {
|
|
|
11314
11325
|
}; }
|
|
11315
11326
|
}
|
|
11316
11327
|
|
|
11317
|
-
const defaultStyleCss$
|
|
11328
|
+
const defaultStyleCss$B = "@layer kol-global {\n\t\n\t.sc-kol-button-group-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-button-group-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-button-group-default-h > kol-button-group-wc {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t}\n}";
|
|
11318
11329
|
|
|
11319
11330
|
class KolButtonGroup {
|
|
11320
11331
|
constructor(hostRef) {
|
|
@@ -11324,7 +11335,7 @@ class KolButtonGroup {
|
|
|
11324
11335
|
return (hAsync(Host, null, hAsync("kol-button-group-wc", null, hAsync("slot", null))));
|
|
11325
11336
|
}
|
|
11326
11337
|
static get style() { return {
|
|
11327
|
-
default: defaultStyleCss$
|
|
11338
|
+
default: defaultStyleCss$B
|
|
11328
11339
|
}; }
|
|
11329
11340
|
static get cmpMeta() { return {
|
|
11330
11341
|
"$flags$": 41,
|
|
@@ -11356,7 +11367,7 @@ class KolButtonGroupWc {
|
|
|
11356
11367
|
}; }
|
|
11357
11368
|
}
|
|
11358
11369
|
|
|
11359
|
-
const defaultStyleCss$
|
|
11370
|
+
const defaultStyleCss$A = "@layer kol-global {\n\t\n\t.sc-kol-button-link-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-button-link-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-button-link-default-h {\n\t\tdisplay: inline-block;\n\t}\n\n\t:is(a, button) {\n\t\talign-items: baseline;\n\t\tdisplay: inline-flex;\n\t\tplace-items: center;\n\t\ttext-align: left;\n\t\ttext-decoration-line: underline;\n\t}\n\n\t:is(a, button):is(:focus, :hover) {\n\t\ttext-decoration-thickness: 0.2em;\n\t}\n\n\t.hidden {\n\t\tdisplay: none;\n\t\tvisibility: hidden;\n\t}\n\n\t.skip {\n\t\tleft: -99999px;\n\t\toverflow: hidden;\n\t\tposition: absolute;\n\t\tz-index: 9999999;\n\t\tline-height: 1em;\n\t}\n\n\t.skip:focus {\n\t\tbackground-color: #fff;\n\t\tleft: unset;\n\t\tpadding: 1em;\n\t\tposition: unset;\n\t}\n\n\tkol-icon.external-link-icon {\n\t\tdisplay: inline-flex;\n\t}\n}";
|
|
11360
11371
|
|
|
11361
11372
|
class KolButtonLink {
|
|
11362
11373
|
constructor(hostRef) {
|
|
@@ -11387,7 +11398,7 @@ class KolButtonLink {
|
|
|
11387
11398
|
}
|
|
11388
11399
|
get host() { return getElement(this); }
|
|
11389
11400
|
static get style() { return {
|
|
11390
|
-
default: defaultStyleCss$
|
|
11401
|
+
default: defaultStyleCss$A
|
|
11391
11402
|
}; }
|
|
11392
11403
|
static get cmpMeta() { return {
|
|
11393
11404
|
"$flags$": 41,
|
|
@@ -11605,22 +11616,24 @@ const searchFormElement = (el) => {
|
|
|
11605
11616
|
console.log(el);
|
|
11606
11617
|
}
|
|
11607
11618
|
while (el instanceof HTMLElement && el.tagName !== 'FORM' && el.tagName !== 'KOL-FORM') {
|
|
11608
|
-
|
|
11609
|
-
|
|
11610
|
-
|
|
11611
|
-
|
|
11612
|
-
|
|
11619
|
+
try {
|
|
11620
|
+
if (el.parentElement instanceof HTMLElement) {
|
|
11621
|
+
el = el.parentElement;
|
|
11622
|
+
}
|
|
11623
|
+
else if (el.parentNode instanceof ShadowRoot) {
|
|
11624
|
+
el = el.parentNode.host;
|
|
11625
|
+
}
|
|
11626
|
+
else {
|
|
11627
|
+
el = null;
|
|
11628
|
+
}
|
|
11613
11629
|
}
|
|
11614
|
-
|
|
11615
|
-
el = null;
|
|
11630
|
+
catch (error) {
|
|
11616
11631
|
}
|
|
11617
11632
|
if (getExperimentalMode()) {
|
|
11618
11633
|
console.log(el);
|
|
11634
|
+
devHint(`↑ Search form element finished.`);
|
|
11619
11635
|
}
|
|
11620
11636
|
}
|
|
11621
|
-
if (getExperimentalMode()) {
|
|
11622
|
-
devHint(`↑ Search form element finished.`);
|
|
11623
|
-
}
|
|
11624
11637
|
return el;
|
|
11625
11638
|
};
|
|
11626
11639
|
const propagateResetEventToForm = (options = {}) => {
|
|
@@ -11656,6 +11669,7 @@ const propagateSubmitEventToForm = (options = {}) => {
|
|
|
11656
11669
|
if (form.tagName === 'FORM') {
|
|
11657
11670
|
setEventTarget(event, form);
|
|
11658
11671
|
form.dispatchEvent(event);
|
|
11672
|
+
form.submit();
|
|
11659
11673
|
}
|
|
11660
11674
|
else if (form.tagName === 'KOL-FORM') {
|
|
11661
11675
|
setEventTarget(event, KoliBriDevHelper.querySelector('form', form));
|
|
@@ -11814,11 +11828,12 @@ class KolButtonWc {
|
|
|
11814
11828
|
render() {
|
|
11815
11829
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
11816
11830
|
return (hAsync(Host, null, hAsync("button", Object.assign({ ref: this.catchRef, "aria-controls": this.state._ariaControls, "aria-expanded": mapBoolean2String(this.state._ariaExpanded), "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, "aria-selected": mapStringOrBoolean2String(this.state._ariaSelected), class: {
|
|
11831
|
+
button: true,
|
|
11817
11832
|
[this.state._variant]: this.state._variant !== 'custom',
|
|
11818
11833
|
[this.state._customClass]: this.state._variant === 'custom' && typeof this.state._customClass === 'string' && this.state._customClass.length > 0,
|
|
11819
11834
|
'icon-only': this.state._hideLabel === true,
|
|
11820
11835
|
'hide-label': this.state._hideLabel === true,
|
|
11821
|
-
}, disabled: this.state._disabled, id: this.state._id, name: this.state._name }, this.state._on, { onClick: this.onClick, role: this.state._role, tabIndex: this.state._tabIndex, type: this.state._type }), hAsync("kol-span-wc", { _icons: this.state._icons, _hideLabel: this.state._hideLabel, _label: hasExpertSlot ? '' : this.state._label }, hAsync("slot", { name: "expert", slot: "expert" }))), hAsync("kol-tooltip-wc", { "aria-hidden": "true", hidden: hasExpertSlot || !this.state._hideLabel, _align: this.state._tooltipAlign, _label: typeof this.state._label === 'string' ? this.state._label : '' })));
|
|
11836
|
+
}, disabled: this.state._disabled, id: this.state._id, name: this.state._name }, this.state._on, { onClick: this.onClick, role: this.state._role, tabIndex: this.state._tabIndex, type: this.state._type }), hAsync("kol-span-wc", { class: "button-inner", _icons: this.state._icons, _hideLabel: this.state._hideLabel, _label: hasExpertSlot ? '' : this.state._label }, hAsync("slot", { name: "expert", slot: "expert" }))), hAsync("kol-tooltip-wc", { "aria-hidden": "true", hidden: hasExpertSlot || !this.state._hideLabel, _align: this.state._tooltipAlign, _label: typeof this.state._label === 'string' ? this.state._label : '' })));
|
|
11822
11837
|
}
|
|
11823
11838
|
constructor(hostRef) {
|
|
11824
11839
|
registerInstance(this, hostRef);
|
|
@@ -12006,7 +12021,7 @@ class KolButtonWc {
|
|
|
12006
12021
|
}; }
|
|
12007
12022
|
}
|
|
12008
12023
|
|
|
12009
|
-
const defaultStyleCss$
|
|
12024
|
+
const defaultStyleCss$z = "@layer kol-global {\n\t\n\t.sc-kol-card-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-card-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-card-default-h > div.card {\n\t\theight: 100%;\n\t\tposition: relative;\n\t}\n\n\t.close {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t}\n}";
|
|
12010
12025
|
|
|
12011
12026
|
class KolCard {
|
|
12012
12027
|
constructor(hostRef) {
|
|
@@ -12065,7 +12080,7 @@ class KolCard {
|
|
|
12065
12080
|
"_level": ["validateLevel"]
|
|
12066
12081
|
}; }
|
|
12067
12082
|
static get style() { return {
|
|
12068
|
-
default: defaultStyleCss$
|
|
12083
|
+
default: defaultStyleCss$z
|
|
12069
12084
|
}; }
|
|
12070
12085
|
static get cmpMeta() { return {
|
|
12071
12086
|
"$flags$": 41,
|
|
@@ -12149,7 +12164,7 @@ class DetailsAnimationController {
|
|
|
12149
12164
|
}
|
|
12150
12165
|
}
|
|
12151
12166
|
|
|
12152
|
-
const defaultStyleCss$
|
|
12167
|
+
const defaultStyleCss$y = "@layer kol-global {\n\t\n\t.sc-kol-details-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-details-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-details-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tdetails {\n\t\tdisplay: grid;\n\t}\n\n\tdetails > summary {\n\t\tcursor: pointer;\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\tdetails > summary > span {\n\t\tborder-bottom-color: grey;\n\t\tborder-bottom-style: solid;\n\t}\n\n\tdetails > summary:focus > span,\n\tdetails > summary:hover > span,\n\tdetails[open] > summary > span {\n\t\tborder-bottom-color: #000;\n\t}\n\n\tdetails > kol-indented-text {\n\t\tmargin: 0.25em 0 0 0.5em;\n\t}\n}\n/*!@.icon.is-open::part(icon)*/.icon.is-open.sc-kol-details-default::part(icon) {\n\ttransform: rotate(90deg);\n}";
|
|
12153
12168
|
|
|
12154
12169
|
class KolDetails {
|
|
12155
12170
|
constructor(hostRef) {
|
|
@@ -12212,7 +12227,7 @@ class KolDetails {
|
|
|
12212
12227
|
"_open": ["validateOpen"]
|
|
12213
12228
|
}; }
|
|
12214
12229
|
static get style() { return {
|
|
12215
|
-
default: defaultStyleCss$
|
|
12230
|
+
default: defaultStyleCss$y
|
|
12216
12231
|
}; }
|
|
12217
12232
|
static get cmpMeta() { return {
|
|
12218
12233
|
"$flags$": 41,
|
|
@@ -12290,7 +12305,7 @@ class KolForm {
|
|
|
12290
12305
|
}; }
|
|
12291
12306
|
}
|
|
12292
12307
|
|
|
12293
|
-
const defaultStyleCss$
|
|
12308
|
+
const defaultStyleCss$x = "@layer kol-global {\n\t\n\t.sc-kol-heading-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-heading-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-heading-default-h > kol-heading-wc {\n\t\tdisplay: grid;\n\t}\n\n\t.sc-kol-heading-default-h > kol-heading-wc > .overline {\n\t\torder: 1;\n\t}\n\n\t.sc-kol-heading-default-h > kol-heading-wc > .headline {\n\t\torder: 2;\n\t}\n}";
|
|
12294
12309
|
|
|
12295
12310
|
class KolHeading {
|
|
12296
12311
|
constructor(hostRef) {
|
|
@@ -12303,7 +12318,7 @@ class KolHeading {
|
|
|
12303
12318
|
return (hAsync("kol-heading-wc", { _label: this._label, _level: this._level, _secondaryHeadline: this._secondaryHeadline }, hAsync("slot", null)));
|
|
12304
12319
|
}
|
|
12305
12320
|
static get style() { return {
|
|
12306
|
-
default: defaultStyleCss$
|
|
12321
|
+
default: defaultStyleCss$x
|
|
12307
12322
|
}; }
|
|
12308
12323
|
static get cmpMeta() { return {
|
|
12309
12324
|
"$flags$": 41,
|
|
@@ -12403,7 +12418,7 @@ class KolHeadingWc {
|
|
|
12403
12418
|
}; }
|
|
12404
12419
|
}
|
|
12405
12420
|
|
|
12406
|
-
const defaultStyleCss$x = "@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}";
|
|
12421
|
+
const defaultStyleCss$w = "@font-face {\n\tfont-family: \"codicon\";\n\tfont-display: block;\n\tsrc: url(\"./codicon.ttf?0e5b0adf625a37fbcd638d31f0fe72aa\") format(\"truetype\");\n}\n\n/*!@.codicon[class*='codicon-']*/.codicon[class*='codicon-'].sc-kol-icon-default {\n\tfont: normal normal normal 16px/1 codicon;\n\tdisplay: inline-block;\n\ttext-decoration: none;\n\ttext-rendering: auto;\n\ttext-align: center;\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n\tuser-select: none;\n\t-webkit-user-select: none;\n\t-ms-user-select: none;\n}\n\n\n\n@keyframes codicon-spin {\n\t100% {\n\t\ttransform:rotate(360deg);\n\t}\n}\n\n/*!@.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 {\n\t\n\tanimation: codicon-spin 1.5s steps(30) infinite;\n}\n\n/*!@.codicon-modifier-disabled*/.codicon-modifier-disabled.sc-kol-icon-default {\n\topacity: 0.5;\n}\n\n/*!@.codicon-modifier-hidden*/.codicon-modifier-hidden.sc-kol-icon-default {\n\topacity: 0;\n}\n\n\n/*!@.codicon-loading*/.codicon-loading.sc-kol-icon-default {\n\tanimation-duration: 1s !important;\n\tanimation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67) !important;\n}\n\n\n\n/*!@.codicon-add:before*/.codicon-add.sc-kol-icon-default:before { content: \"\\ea60\" }\n/*!@.codicon-plus:before*/.codicon-plus.sc-kol-icon-default:before { content: \"\\ea60\" }\n/*!@.codicon-gist-new:before*/.codicon-gist-new.sc-kol-icon-default:before { content: \"\\ea60\" }\n/*!@.codicon-repo-create:before*/.codicon-repo-create.sc-kol-icon-default:before { content: \"\\ea60\" }\n/*!@.codicon-lightbulb:before*/.codicon-lightbulb.sc-kol-icon-default:before { content: \"\\ea61\" }\n/*!@.codicon-light-bulb:before*/.codicon-light-bulb.sc-kol-icon-default:before { content: \"\\ea61\" }\n/*!@.codicon-repo:before*/.codicon-repo.sc-kol-icon-default:before { content: \"\\ea62\" }\n/*!@.codicon-repo-delete:before*/.codicon-repo-delete.sc-kol-icon-default:before { content: \"\\ea62\" }\n/*!@.codicon-gist-fork:before*/.codicon-gist-fork.sc-kol-icon-default:before { content: \"\\ea63\" }\n/*!@.codicon-repo-forked:before*/.codicon-repo-forked.sc-kol-icon-default:before { content: \"\\ea63\" }\n/*!@.codicon-git-pull-request:before*/.codicon-git-pull-request.sc-kol-icon-default:before { content: \"\\ea64\" }\n/*!@.codicon-git-pull-request-abandoned:before*/.codicon-git-pull-request-abandoned.sc-kol-icon-default:before { content: \"\\ea64\" }\n/*!@.codicon-record-keys:before*/.codicon-record-keys.sc-kol-icon-default:before { content: \"\\ea65\" }\n/*!@.codicon-keyboard:before*/.codicon-keyboard.sc-kol-icon-default:before { content: \"\\ea65\" }\n/*!@.codicon-tag:before*/.codicon-tag.sc-kol-icon-default:before { content: \"\\ea66\" }\n/*!@.codicon-tag-add:before*/.codicon-tag-add.sc-kol-icon-default:before { content: \"\\ea66\" }\n/*!@.codicon-tag-remove:before*/.codicon-tag-remove.sc-kol-icon-default:before { content: \"\\ea66\" }\n/*!@.codicon-person:before*/.codicon-person.sc-kol-icon-default:before { content: \"\\ea67\" }\n/*!@.codicon-person-follow:before*/.codicon-person-follow.sc-kol-icon-default:before { content: \"\\ea67\" }\n/*!@.codicon-person-outline:before*/.codicon-person-outline.sc-kol-icon-default:before { content: \"\\ea67\" }\n/*!@.codicon-person-filled:before*/.codicon-person-filled.sc-kol-icon-default:before { content: \"\\ea67\" }\n/*!@.codicon-git-branch:before*/.codicon-git-branch.sc-kol-icon-default:before { content: \"\\ea68\" }\n/*!@.codicon-git-branch-create:before*/.codicon-git-branch-create.sc-kol-icon-default:before { content: \"\\ea68\" }\n/*!@.codicon-git-branch-delete:before*/.codicon-git-branch-delete.sc-kol-icon-default:before { content: \"\\ea68\" }\n/*!@.codicon-source-control:before*/.codicon-source-control.sc-kol-icon-default:before { content: \"\\ea68\" }\n/*!@.codicon-mirror:before*/.codicon-mirror.sc-kol-icon-default:before { content: \"\\ea69\" }\n/*!@.codicon-mirror-public:before*/.codicon-mirror-public.sc-kol-icon-default:before { content: \"\\ea69\" }\n/*!@.codicon-star:before*/.codicon-star.sc-kol-icon-default:before { content: \"\\ea6a\" }\n/*!@.codicon-star-add:before*/.codicon-star-add.sc-kol-icon-default:before { content: \"\\ea6a\" }\n/*!@.codicon-star-delete:before*/.codicon-star-delete.sc-kol-icon-default:before { content: \"\\ea6a\" }\n/*!@.codicon-star-empty:before*/.codicon-star-empty.sc-kol-icon-default:before { content: \"\\ea6a\" }\n/*!@.codicon-comment:before*/.codicon-comment.sc-kol-icon-default:before { content: \"\\ea6b\" }\n/*!@.codicon-comment-add:before*/.codicon-comment-add.sc-kol-icon-default:before { content: \"\\ea6b\" }\n/*!@.codicon-alert:before*/.codicon-alert.sc-kol-icon-default:before { content: \"\\ea6c\" }\n/*!@.codicon-warning:before*/.codicon-warning.sc-kol-icon-default:before { content: \"\\ea6c\" }\n/*!@.codicon-search:before*/.codicon-search.sc-kol-icon-default:before { content: \"\\ea6d\" }\n/*!@.codicon-search-save:before*/.codicon-search-save.sc-kol-icon-default:before { content: \"\\ea6d\" }\n/*!@.codicon-log-out:before*/.codicon-log-out.sc-kol-icon-default:before { content: \"\\ea6e\" }\n/*!@.codicon-sign-out:before*/.codicon-sign-out.sc-kol-icon-default:before { content: \"\\ea6e\" }\n/*!@.codicon-log-in:before*/.codicon-log-in.sc-kol-icon-default:before { content: \"\\ea6f\" }\n/*!@.codicon-sign-in:before*/.codicon-sign-in.sc-kol-icon-default:before { content: \"\\ea6f\" }\n/*!@.codicon-eye:before*/.codicon-eye.sc-kol-icon-default:before { content: \"\\ea70\" }\n/*!@.codicon-eye-unwatch:before*/.codicon-eye-unwatch.sc-kol-icon-default:before { content: \"\\ea70\" }\n/*!@.codicon-eye-watch:before*/.codicon-eye-watch.sc-kol-icon-default:before { content: \"\\ea70\" }\n/*!@.codicon-circle-filled:before*/.codicon-circle-filled.sc-kol-icon-default:before { content: \"\\ea71\" }\n/*!@.codicon-primitive-dot:before*/.codicon-primitive-dot.sc-kol-icon-default:before { content: \"\\ea71\" }\n/*!@.codicon-close-dirty:before*/.codicon-close-dirty.sc-kol-icon-default:before { content: \"\\ea71\" }\n/*!@.codicon-debug-breakpoint:before*/.codicon-debug-breakpoint.sc-kol-icon-default:before { content: \"\\ea71\" }\n/*!@.codicon-debug-breakpoint-disabled:before*/.codicon-debug-breakpoint-disabled.sc-kol-icon-default:before { content: \"\\ea71\" }\n/*!@.codicon-debug-hint:before*/.codicon-debug-hint.sc-kol-icon-default:before { content: \"\\ea71\" }\n/*!@.codicon-primitive-square:before*/.codicon-primitive-square.sc-kol-icon-default:before { content: \"\\ea72\" }\n/*!@.codicon-edit:before*/.codicon-edit.sc-kol-icon-default:before { content: \"\\ea73\" }\n/*!@.codicon-pencil:before*/.codicon-pencil.sc-kol-icon-default:before { content: \"\\ea73\" }\n/*!@.codicon-info:before*/.codicon-info.sc-kol-icon-default:before { content: \"\\ea74\" }\n/*!@.codicon-issue-opened:before*/.codicon-issue-opened.sc-kol-icon-default:before { content: \"\\ea74\" }\n/*!@.codicon-gist-private:before*/.codicon-gist-private.sc-kol-icon-default:before { content: \"\\ea75\" }\n/*!@.codicon-git-fork-private:before*/.codicon-git-fork-private.sc-kol-icon-default:before { content: \"\\ea75\" }\n/*!@.codicon-lock:before*/.codicon-lock.sc-kol-icon-default:before { content: \"\\ea75\" }\n/*!@.codicon-mirror-private:before*/.codicon-mirror-private.sc-kol-icon-default:before { content: \"\\ea75\" }\n/*!@.codicon-close:before*/.codicon-close.sc-kol-icon-default:before { content: \"\\ea76\" }\n/*!@.codicon-remove-close:before*/.codicon-remove-close.sc-kol-icon-default:before { content: \"\\ea76\" }\n/*!@.codicon-x:before*/.codicon-x.sc-kol-icon-default:before { content: \"\\ea76\" }\n/*!@.codicon-repo-sync:before*/.codicon-repo-sync.sc-kol-icon-default:before { content: \"\\ea77\" }\n/*!@.codicon-sync:before*/.codicon-sync.sc-kol-icon-default:before { content: \"\\ea77\" }\n/*!@.codicon-clone:before*/.codicon-clone.sc-kol-icon-default:before { content: \"\\ea78\" }\n/*!@.codicon-desktop-download:before*/.codicon-desktop-download.sc-kol-icon-default:before { content: \"\\ea78\" }\n/*!@.codicon-beaker:before*/.codicon-beaker.sc-kol-icon-default:before { content: \"\\ea79\" }\n/*!@.codicon-microscope:before*/.codicon-microscope.sc-kol-icon-default:before { content: \"\\ea79\" }\n/*!@.codicon-vm:before*/.codicon-vm.sc-kol-icon-default:before { content: \"\\ea7a\" }\n/*!@.codicon-device-desktop:before*/.codicon-device-desktop.sc-kol-icon-default:before { content: \"\\ea7a\" }\n/*!@.codicon-file:before*/.codicon-file.sc-kol-icon-default:before { content: \"\\ea7b\" }\n/*!@.codicon-file-text:before*/.codicon-file-text.sc-kol-icon-default:before { content: \"\\ea7b\" }\n/*!@.codicon-more:before*/.codicon-more.sc-kol-icon-default:before { content: \"\\ea7c\" }\n/*!@.codicon-ellipsis:before*/.codicon-ellipsis.sc-kol-icon-default:before { content: \"\\ea7c\" }\n/*!@.codicon-kebab-horizontal:before*/.codicon-kebab-horizontal.sc-kol-icon-default:before { content: \"\\ea7c\" }\n/*!@.codicon-mail-reply:before*/.codicon-mail-reply.sc-kol-icon-default:before { content: \"\\ea7d\" }\n/*!@.codicon-reply:before*/.codicon-reply.sc-kol-icon-default:before { content: \"\\ea7d\" }\n/*!@.codicon-organization:before*/.codicon-organization.sc-kol-icon-default:before { content: \"\\ea7e\" }\n/*!@.codicon-organization-filled:before*/.codicon-organization-filled.sc-kol-icon-default:before { content: \"\\ea7e\" }\n/*!@.codicon-organization-outline:before*/.codicon-organization-outline.sc-kol-icon-default:before { content: \"\\ea7e\" }\n/*!@.codicon-new-file:before*/.codicon-new-file.sc-kol-icon-default:before { content: \"\\ea7f\" }\n/*!@.codicon-file-add:before*/.codicon-file-add.sc-kol-icon-default:before { content: \"\\ea7f\" }\n/*!@.codicon-new-folder:before*/.codicon-new-folder.sc-kol-icon-default:before { content: \"\\ea80\" }\n/*!@.codicon-file-directory-create:before*/.codicon-file-directory-create.sc-kol-icon-default:before { content: \"\\ea80\" }\n/*!@.codicon-trash:before*/.codicon-trash.sc-kol-icon-default:before { content: \"\\ea81\" }\n/*!@.codicon-trashcan:before*/.codicon-trashcan.sc-kol-icon-default:before { content: \"\\ea81\" }\n/*!@.codicon-history:before*/.codicon-history.sc-kol-icon-default:before { content: \"\\ea82\" }\n/*!@.codicon-clock:before*/.codicon-clock.sc-kol-icon-default:before { content: \"\\ea82\" }\n/*!@.codicon-folder:before*/.codicon-folder.sc-kol-icon-default:before { content: \"\\ea83\" }\n/*!@.codicon-file-directory:before*/.codicon-file-directory.sc-kol-icon-default:before { content: \"\\ea83\" }\n/*!@.codicon-symbol-folder:before*/.codicon-symbol-folder.sc-kol-icon-default:before { content: \"\\ea83\" }\n/*!@.codicon-logo-github:before*/.codicon-logo-github.sc-kol-icon-default:before { content: \"\\ea84\" }\n/*!@.codicon-mark-github:before*/.codicon-mark-github.sc-kol-icon-default:before { content: \"\\ea84\" }\n/*!@.codicon-github:before*/.codicon-github.sc-kol-icon-default:before { content: \"\\ea84\" }\n/*!@.codicon-terminal:before*/.codicon-terminal.sc-kol-icon-default:before { content: \"\\ea85\" }\n/*!@.codicon-console:before*/.codicon-console.sc-kol-icon-default:before { content: \"\\ea85\" }\n/*!@.codicon-repl:before*/.codicon-repl.sc-kol-icon-default:before { content: \"\\ea85\" }\n/*!@.codicon-zap:before*/.codicon-zap.sc-kol-icon-default:before { content: \"\\ea86\" }\n/*!@.codicon-symbol-event:before*/.codicon-symbol-event.sc-kol-icon-default:before { content: \"\\ea86\" }\n/*!@.codicon-error:before*/.codicon-error.sc-kol-icon-default:before { content: \"\\ea87\" }\n/*!@.codicon-stop:before*/.codicon-stop.sc-kol-icon-default:before { content: \"\\ea87\" }\n/*!@.codicon-variable:before*/.codicon-variable.sc-kol-icon-default:before { content: \"\\ea88\" }\n/*!@.codicon-symbol-variable:before*/.codicon-symbol-variable.sc-kol-icon-default:before { content: \"\\ea88\" }\n/*!@.codicon-array:before*/.codicon-array.sc-kol-icon-default:before { content: \"\\ea8a\" }\n/*!@.codicon-symbol-array:before*/.codicon-symbol-array.sc-kol-icon-default:before { content: \"\\ea8a\" }\n/*!@.codicon-symbol-module:before*/.codicon-symbol-module.sc-kol-icon-default:before { content: \"\\ea8b\" }\n/*!@.codicon-symbol-package:before*/.codicon-symbol-package.sc-kol-icon-default:before { content: \"\\ea8b\" }\n/*!@.codicon-symbol-namespace:before*/.codicon-symbol-namespace.sc-kol-icon-default:before { content: \"\\ea8b\" }\n/*!@.codicon-symbol-object:before*/.codicon-symbol-object.sc-kol-icon-default:before { content: \"\\ea8b\" }\n/*!@.codicon-symbol-method:before*/.codicon-symbol-method.sc-kol-icon-default:before { content: \"\\ea8c\" }\n/*!@.codicon-symbol-function:before*/.codicon-symbol-function.sc-kol-icon-default:before { content: \"\\ea8c\" }\n/*!@.codicon-symbol-constructor:before*/.codicon-symbol-constructor.sc-kol-icon-default:before { content: \"\\ea8c\" }\n/*!@.codicon-symbol-boolean:before*/.codicon-symbol-boolean.sc-kol-icon-default:before { content: \"\\ea8f\" }\n/*!@.codicon-symbol-null:before*/.codicon-symbol-null.sc-kol-icon-default:before { content: \"\\ea8f\" }\n/*!@.codicon-symbol-numeric:before*/.codicon-symbol-numeric.sc-kol-icon-default:before { content: \"\\ea90\" }\n/*!@.codicon-symbol-number:before*/.codicon-symbol-number.sc-kol-icon-default:before { content: \"\\ea90\" }\n/*!@.codicon-symbol-structure:before*/.codicon-symbol-structure.sc-kol-icon-default:before { content: \"\\ea91\" }\n/*!@.codicon-symbol-struct:before*/.codicon-symbol-struct.sc-kol-icon-default:before { content: \"\\ea91\" }\n/*!@.codicon-symbol-parameter:before*/.codicon-symbol-parameter.sc-kol-icon-default:before { content: \"\\ea92\" }\n/*!@.codicon-symbol-type-parameter:before*/.codicon-symbol-type-parameter.sc-kol-icon-default:before { content: \"\\ea92\" }\n/*!@.codicon-symbol-key:before*/.codicon-symbol-key.sc-kol-icon-default:before { content: \"\\ea93\" }\n/*!@.codicon-symbol-text:before*/.codicon-symbol-text.sc-kol-icon-default:before { content: \"\\ea93\" }\n/*!@.codicon-symbol-reference:before*/.codicon-symbol-reference.sc-kol-icon-default:before { content: \"\\ea94\" }\n/*!@.codicon-go-to-file:before*/.codicon-go-to-file.sc-kol-icon-default:before { content: \"\\ea94\" }\n/*!@.codicon-symbol-enum:before*/.codicon-symbol-enum.sc-kol-icon-default:before { content: \"\\ea95\" }\n/*!@.codicon-symbol-value:before*/.codicon-symbol-value.sc-kol-icon-default:before { content: \"\\ea95\" }\n/*!@.codicon-symbol-ruler:before*/.codicon-symbol-ruler.sc-kol-icon-default:before { content: \"\\ea96\" }\n/*!@.codicon-symbol-unit:before*/.codicon-symbol-unit.sc-kol-icon-default:before { content: \"\\ea96\" }\n/*!@.codicon-activate-breakpoints:before*/.codicon-activate-breakpoints.sc-kol-icon-default:before { content: \"\\ea97\" }\n/*!@.codicon-archive:before*/.codicon-archive.sc-kol-icon-default:before { content: \"\\ea98\" }\n/*!@.codicon-arrow-both:before*/.codicon-arrow-both.sc-kol-icon-default:before { content: \"\\ea99\" }\n/*!@.codicon-arrow-down:before*/.codicon-arrow-down.sc-kol-icon-default:before { content: \"\\ea9a\" }\n/*!@.codicon-arrow-left:before*/.codicon-arrow-left.sc-kol-icon-default:before { content: \"\\ea9b\" }\n/*!@.codicon-arrow-right:before*/.codicon-arrow-right.sc-kol-icon-default:before { content: \"\\ea9c\" }\n/*!@.codicon-arrow-small-down:before*/.codicon-arrow-small-down.sc-kol-icon-default:before { content: \"\\ea9d\" }\n/*!@.codicon-arrow-small-left:before*/.codicon-arrow-small-left.sc-kol-icon-default:before { content: \"\\ea9e\" }\n/*!@.codicon-arrow-small-right:before*/.codicon-arrow-small-right.sc-kol-icon-default:before { content: \"\\ea9f\" }\n/*!@.codicon-arrow-small-up:before*/.codicon-arrow-small-up.sc-kol-icon-default:before { content: \"\\eaa0\" }\n/*!@.codicon-arrow-up:before*/.codicon-arrow-up.sc-kol-icon-default:before { content: \"\\eaa1\" }\n/*!@.codicon-bell:before*/.codicon-bell.sc-kol-icon-default:before { content: \"\\eaa2\" }\n/*!@.codicon-bold:before*/.codicon-bold.sc-kol-icon-default:before { content: \"\\eaa3\" }\n/*!@.codicon-book:before*/.codicon-book.sc-kol-icon-default:before { content: \"\\eaa4\" }\n/*!@.codicon-bookmark:before*/.codicon-bookmark.sc-kol-icon-default:before { content: \"\\eaa5\" }\n/*!@.codicon-debug-breakpoint-conditional-unverified:before*/.codicon-debug-breakpoint-conditional-unverified.sc-kol-icon-default:before { content: \"\\eaa6\" }\n/*!@.codicon-debug-breakpoint-conditional:before*/.codicon-debug-breakpoint-conditional.sc-kol-icon-default:before { content: \"\\eaa7\" }\n/*!@.codicon-debug-breakpoint-conditional-disabled:before*/.codicon-debug-breakpoint-conditional-disabled.sc-kol-icon-default:before { content: \"\\eaa7\" }\n/*!@.codicon-debug-breakpoint-data-unverified:before*/.codicon-debug-breakpoint-data-unverified.sc-kol-icon-default:before { content: \"\\eaa8\" }\n/*!@.codicon-debug-breakpoint-data:before*/.codicon-debug-breakpoint-data.sc-kol-icon-default:before { content: \"\\eaa9\" }\n/*!@.codicon-debug-breakpoint-data-disabled:before*/.codicon-debug-breakpoint-data-disabled.sc-kol-icon-default:before { content: \"\\eaa9\" }\n/*!@.codicon-debug-breakpoint-log-unverified:before*/.codicon-debug-breakpoint-log-unverified.sc-kol-icon-default:before { content: \"\\eaaa\" }\n/*!@.codicon-debug-breakpoint-log:before*/.codicon-debug-breakpoint-log.sc-kol-icon-default:before { content: \"\\eaab\" }\n/*!@.codicon-debug-breakpoint-log-disabled:before*/.codicon-debug-breakpoint-log-disabled.sc-kol-icon-default:before { content: \"\\eaab\" }\n/*!@.codicon-briefcase:before*/.codicon-briefcase.sc-kol-icon-default:before { content: \"\\eaac\" }\n/*!@.codicon-broadcast:before*/.codicon-broadcast.sc-kol-icon-default:before { content: \"\\eaad\" }\n/*!@.codicon-browser:before*/.codicon-browser.sc-kol-icon-default:before { content: \"\\eaae\" }\n/*!@.codicon-bug:before*/.codicon-bug.sc-kol-icon-default:before { content: \"\\eaaf\" }\n/*!@.codicon-calendar:before*/.codicon-calendar.sc-kol-icon-default:before { content: \"\\eab0\" }\n/*!@.codicon-case-sensitive:before*/.codicon-case-sensitive.sc-kol-icon-default:before { content: \"\\eab1\" }\n/*!@.codicon-check:before*/.codicon-check.sc-kol-icon-default:before { content: \"\\eab2\" }\n/*!@.codicon-checklist:before*/.codicon-checklist.sc-kol-icon-default:before { content: \"\\eab3\" }\n/*!@.codicon-chevron-down:before*/.codicon-chevron-down.sc-kol-icon-default:before { content: \"\\eab4\" }\n/*!@.codicon-chevron-left:before*/.codicon-chevron-left.sc-kol-icon-default:before { content: \"\\eab5\" }\n/*!@.codicon-chevron-right:before*/.codicon-chevron-right.sc-kol-icon-default:before { content: \"\\eab6\" }\n/*!@.codicon-chevron-up:before*/.codicon-chevron-up.sc-kol-icon-default:before { content: \"\\eab7\" }\n/*!@.codicon-chrome-close:before*/.codicon-chrome-close.sc-kol-icon-default:before { content: \"\\eab8\" }\n/*!@.codicon-chrome-maximize:before*/.codicon-chrome-maximize.sc-kol-icon-default:before { content: \"\\eab9\" }\n/*!@.codicon-chrome-minimize:before*/.codicon-chrome-minimize.sc-kol-icon-default:before { content: \"\\eaba\" }\n/*!@.codicon-chrome-restore:before*/.codicon-chrome-restore.sc-kol-icon-default:before { content: \"\\eabb\" }\n/*!@.codicon-circle-outline:before*/.codicon-circle-outline.sc-kol-icon-default:before { content: \"\\eabc\" }\n/*!@.codicon-debug-breakpoint-unverified:before*/.codicon-debug-breakpoint-unverified.sc-kol-icon-default:before { content: \"\\eabc\" }\n/*!@.codicon-circle-slash:before*/.codicon-circle-slash.sc-kol-icon-default:before { content: \"\\eabd\" }\n/*!@.codicon-circuit-board:before*/.codicon-circuit-board.sc-kol-icon-default:before { content: \"\\eabe\" }\n/*!@.codicon-clear-all:before*/.codicon-clear-all.sc-kol-icon-default:before { content: \"\\eabf\" }\n/*!@.codicon-clippy:before*/.codicon-clippy.sc-kol-icon-default:before { content: \"\\eac0\" }\n/*!@.codicon-close-all:before*/.codicon-close-all.sc-kol-icon-default:before { content: \"\\eac1\" }\n/*!@.codicon-cloud-download:before*/.codicon-cloud-download.sc-kol-icon-default:before { content: \"\\eac2\" }\n/*!@.codicon-cloud-upload:before*/.codicon-cloud-upload.sc-kol-icon-default:before { content: \"\\eac3\" }\n/*!@.codicon-code:before*/.codicon-code.sc-kol-icon-default:before { content: \"\\eac4\" }\n/*!@.codicon-collapse-all:before*/.codicon-collapse-all.sc-kol-icon-default:before { content: \"\\eac5\" }\n/*!@.codicon-color-mode:before*/.codicon-color-mode.sc-kol-icon-default:before { content: \"\\eac6\" }\n/*!@.codicon-comment-discussion:before*/.codicon-comment-discussion.sc-kol-icon-default:before { content: \"\\eac7\" }\n/*!@.codicon-credit-card:before*/.codicon-credit-card.sc-kol-icon-default:before { content: \"\\eac9\" }\n/*!@.codicon-dash:before*/.codicon-dash.sc-kol-icon-default:before { content: \"\\eacc\" }\n/*!@.codicon-dashboard:before*/.codicon-dashboard.sc-kol-icon-default:before { content: \"\\eacd\" }\n/*!@.codicon-database:before*/.codicon-database.sc-kol-icon-default:before { content: \"\\eace\" }\n/*!@.codicon-debug-continue:before*/.codicon-debug-continue.sc-kol-icon-default:before { content: \"\\eacf\" }\n/*!@.codicon-debug-disconnect:before*/.codicon-debug-disconnect.sc-kol-icon-default:before { content: \"\\ead0\" }\n/*!@.codicon-debug-pause:before*/.codicon-debug-pause.sc-kol-icon-default:before { content: \"\\ead1\" }\n/*!@.codicon-debug-restart:before*/.codicon-debug-restart.sc-kol-icon-default:before { content: \"\\ead2\" }\n/*!@.codicon-debug-start:before*/.codicon-debug-start.sc-kol-icon-default:before { content: \"\\ead3\" }\n/*!@.codicon-debug-step-into:before*/.codicon-debug-step-into.sc-kol-icon-default:before { content: \"\\ead4\" }\n/*!@.codicon-debug-step-out:before*/.codicon-debug-step-out.sc-kol-icon-default:before { content: \"\\ead5\" }\n/*!@.codicon-debug-step-over:before*/.codicon-debug-step-over.sc-kol-icon-default:before { content: \"\\ead6\" }\n/*!@.codicon-debug-stop:before*/.codicon-debug-stop.sc-kol-icon-default:before { content: \"\\ead7\" }\n/*!@.codicon-debug:before*/.codicon-debug.sc-kol-icon-default:before { content: \"\\ead8\" }\n/*!@.codicon-device-camera-video:before*/.codicon-device-camera-video.sc-kol-icon-default:before { content: \"\\ead9\" }\n/*!@.codicon-device-camera:before*/.codicon-device-camera.sc-kol-icon-default:before { content: \"\\eada\" }\n/*!@.codicon-device-mobile:before*/.codicon-device-mobile.sc-kol-icon-default:before { content: \"\\eadb\" }\n/*!@.codicon-diff-added:before*/.codicon-diff-added.sc-kol-icon-default:before { content: \"\\eadc\" }\n/*!@.codicon-diff-ignored:before*/.codicon-diff-ignored.sc-kol-icon-default:before { content: \"\\eadd\" }\n/*!@.codicon-diff-modified:before*/.codicon-diff-modified.sc-kol-icon-default:before { content: \"\\eade\" }\n/*!@.codicon-diff-removed:before*/.codicon-diff-removed.sc-kol-icon-default:before { content: \"\\eadf\" }\n/*!@.codicon-diff-renamed:before*/.codicon-diff-renamed.sc-kol-icon-default:before { content: \"\\eae0\" }\n/*!@.codicon-diff:before*/.codicon-diff.sc-kol-icon-default:before { content: \"\\eae1\" }\n/*!@.codicon-discard:before*/.codicon-discard.sc-kol-icon-default:before { content: \"\\eae2\" }\n/*!@.codicon-editor-layout:before*/.codicon-editor-layout.sc-kol-icon-default:before { content: \"\\eae3\" }\n/*!@.codicon-empty-window:before*/.codicon-empty-window.sc-kol-icon-default:before { content: \"\\eae4\" }\n/*!@.codicon-exclude:before*/.codicon-exclude.sc-kol-icon-default:before { content: \"\\eae5\" }\n/*!@.codicon-extensions:before*/.codicon-extensions.sc-kol-icon-default:before { content: \"\\eae6\" }\n/*!@.codicon-eye-closed:before*/.codicon-eye-closed.sc-kol-icon-default:before { content: \"\\eae7\" }\n/*!@.codicon-file-binary:before*/.codicon-file-binary.sc-kol-icon-default:before { content: \"\\eae8\" }\n/*!@.codicon-file-code:before*/.codicon-file-code.sc-kol-icon-default:before { content: \"\\eae9\" }\n/*!@.codicon-file-media:before*/.codicon-file-media.sc-kol-icon-default:before { content: \"\\eaea\" }\n/*!@.codicon-file-pdf:before*/.codicon-file-pdf.sc-kol-icon-default:before { content: \"\\eaeb\" }\n/*!@.codicon-file-submodule:before*/.codicon-file-submodule.sc-kol-icon-default:before { content: \"\\eaec\" }\n/*!@.codicon-file-symlink-directory:before*/.codicon-file-symlink-directory.sc-kol-icon-default:before { content: \"\\eaed\" }\n/*!@.codicon-file-symlink-file:before*/.codicon-file-symlink-file.sc-kol-icon-default:before { content: \"\\eaee\" }\n/*!@.codicon-file-zip:before*/.codicon-file-zip.sc-kol-icon-default:before { content: \"\\eaef\" }\n/*!@.codicon-files:before*/.codicon-files.sc-kol-icon-default:before { content: \"\\eaf0\" }\n/*!@.codicon-filter:before*/.codicon-filter.sc-kol-icon-default:before { content: \"\\eaf1\" }\n/*!@.codicon-flame:before*/.codicon-flame.sc-kol-icon-default:before { content: \"\\eaf2\" }\n/*!@.codicon-fold-down:before*/.codicon-fold-down.sc-kol-icon-default:before { content: \"\\eaf3\" }\n/*!@.codicon-fold-up:before*/.codicon-fold-up.sc-kol-icon-default:before { content: \"\\eaf4\" }\n/*!@.codicon-fold:before*/.codicon-fold.sc-kol-icon-default:before { content: \"\\eaf5\" }\n/*!@.codicon-folder-active:before*/.codicon-folder-active.sc-kol-icon-default:before { content: \"\\eaf6\" }\n/*!@.codicon-folder-opened:before*/.codicon-folder-opened.sc-kol-icon-default:before { content: \"\\eaf7\" }\n/*!@.codicon-gear:before*/.codicon-gear.sc-kol-icon-default:before { content: \"\\eaf8\" }\n/*!@.codicon-gift:before*/.codicon-gift.sc-kol-icon-default:before { content: \"\\eaf9\" }\n/*!@.codicon-gist-secret:before*/.codicon-gist-secret.sc-kol-icon-default:before { content: \"\\eafa\" }\n/*!@.codicon-gist:before*/.codicon-gist.sc-kol-icon-default:before { content: \"\\eafb\" }\n/*!@.codicon-git-commit:before*/.codicon-git-commit.sc-kol-icon-default:before { content: \"\\eafc\" }\n/*!@.codicon-git-compare:before*/.codicon-git-compare.sc-kol-icon-default:before { content: \"\\eafd\" }\n/*!@.codicon-compare-changes:before*/.codicon-compare-changes.sc-kol-icon-default:before { content: \"\\eafd\" }\n/*!@.codicon-git-merge:before*/.codicon-git-merge.sc-kol-icon-default:before { content: \"\\eafe\" }\n/*!@.codicon-github-action:before*/.codicon-github-action.sc-kol-icon-default:before { content: \"\\eaff\" }\n/*!@.codicon-github-alt:before*/.codicon-github-alt.sc-kol-icon-default:before { content: \"\\eb00\" }\n/*!@.codicon-globe:before*/.codicon-globe.sc-kol-icon-default:before { content: \"\\eb01\" }\n/*!@.codicon-grabber:before*/.codicon-grabber.sc-kol-icon-default:before { content: \"\\eb02\" }\n/*!@.codicon-graph:before*/.codicon-graph.sc-kol-icon-default:before { content: \"\\eb03\" }\n/*!@.codicon-gripper:before*/.codicon-gripper.sc-kol-icon-default:before { content: \"\\eb04\" }\n/*!@.codicon-heart:before*/.codicon-heart.sc-kol-icon-default:before { content: \"\\eb05\" }\n/*!@.codicon-home:before*/.codicon-home.sc-kol-icon-default:before { content: \"\\eb06\" }\n/*!@.codicon-horizontal-rule:before*/.codicon-horizontal-rule.sc-kol-icon-default:before { content: \"\\eb07\" }\n/*!@.codicon-hubot:before*/.codicon-hubot.sc-kol-icon-default:before { content: \"\\eb08\" }\n/*!@.codicon-inbox:before*/.codicon-inbox.sc-kol-icon-default:before { content: \"\\eb09\" }\n/*!@.codicon-issue-reopened:before*/.codicon-issue-reopened.sc-kol-icon-default:before { content: \"\\eb0b\" }\n/*!@.codicon-issues:before*/.codicon-issues.sc-kol-icon-default:before { content: \"\\eb0c\" }\n/*!@.codicon-italic:before*/.codicon-italic.sc-kol-icon-default:before { content: \"\\eb0d\" }\n/*!@.codicon-jersey:before*/.codicon-jersey.sc-kol-icon-default:before { content: \"\\eb0e\" }\n/*!@.codicon-json:before*/.codicon-json.sc-kol-icon-default:before { content: \"\\eb0f\" }\n/*!@.codicon-kebab-vertical:before*/.codicon-kebab-vertical.sc-kol-icon-default:before { content: \"\\eb10\" }\n/*!@.codicon-key:before*/.codicon-key.sc-kol-icon-default:before { content: \"\\eb11\" }\n/*!@.codicon-law:before*/.codicon-law.sc-kol-icon-default:before { content: \"\\eb12\" }\n/*!@.codicon-lightbulb-autofix:before*/.codicon-lightbulb-autofix.sc-kol-icon-default:before { content: \"\\eb13\" }\n/*!@.codicon-link-external:before*/.codicon-link-external.sc-kol-icon-default:before { content: \"\\eb14\" }\n/*!@.codicon-link:before*/.codicon-link.sc-kol-icon-default:before { content: \"\\eb15\" }\n/*!@.codicon-list-ordered:before*/.codicon-list-ordered.sc-kol-icon-default:before { content: \"\\eb16\" }\n/*!@.codicon-list-unordered:before*/.codicon-list-unordered.sc-kol-icon-default:before { content: \"\\eb17\" }\n/*!@.codicon-live-share:before*/.codicon-live-share.sc-kol-icon-default:before { content: \"\\eb18\" }\n/*!@.codicon-loading:before*/.codicon-loading.sc-kol-icon-default:before { content: \"\\eb19\" }\n/*!@.codicon-location:before*/.codicon-location.sc-kol-icon-default:before { content: \"\\eb1a\" }\n/*!@.codicon-mail-read:before*/.codicon-mail-read.sc-kol-icon-default:before { content: \"\\eb1b\" }\n/*!@.codicon-mail:before*/.codicon-mail.sc-kol-icon-default:before { content: \"\\eb1c\" }\n/*!@.codicon-markdown:before*/.codicon-markdown.sc-kol-icon-default:before { content: \"\\eb1d\" }\n/*!@.codicon-megaphone:before*/.codicon-megaphone.sc-kol-icon-default:before { content: \"\\eb1e\" }\n/*!@.codicon-mention:before*/.codicon-mention.sc-kol-icon-default:before { content: \"\\eb1f\" }\n/*!@.codicon-milestone:before*/.codicon-milestone.sc-kol-icon-default:before { content: \"\\eb20\" }\n/*!@.codicon-mortar-board:before*/.codicon-mortar-board.sc-kol-icon-default:before { content: \"\\eb21\" }\n/*!@.codicon-move:before*/.codicon-move.sc-kol-icon-default:before { content: \"\\eb22\" }\n/*!@.codicon-multiple-windows:before*/.codicon-multiple-windows.sc-kol-icon-default:before { content: \"\\eb23\" }\n/*!@.codicon-mute:before*/.codicon-mute.sc-kol-icon-default:before { content: \"\\eb24\" }\n/*!@.codicon-no-newline:before*/.codicon-no-newline.sc-kol-icon-default:before { content: \"\\eb25\" }\n/*!@.codicon-note:before*/.codicon-note.sc-kol-icon-default:before { content: \"\\eb26\" }\n/*!@.codicon-octoface:before*/.codicon-octoface.sc-kol-icon-default:before { content: \"\\eb27\" }\n/*!@.codicon-open-preview:before*/.codicon-open-preview.sc-kol-icon-default:before { content: \"\\eb28\" }\n/*!@.codicon-package:before*/.codicon-package.sc-kol-icon-default:before { content: \"\\eb29\" }\n/*!@.codicon-paintcan:before*/.codicon-paintcan.sc-kol-icon-default:before { content: \"\\eb2a\" }\n/*!@.codicon-pin:before*/.codicon-pin.sc-kol-icon-default:before { content: \"\\eb2b\" }\n/*!@.codicon-play:before*/.codicon-play.sc-kol-icon-default:before { content: \"\\eb2c\" }\n/*!@.codicon-run:before*/.codicon-run.sc-kol-icon-default:before { content: \"\\eb2c\" }\n/*!@.codicon-plug:before*/.codicon-plug.sc-kol-icon-default:before { content: \"\\eb2d\" }\n/*!@.codicon-preserve-case:before*/.codicon-preserve-case.sc-kol-icon-default:before { content: \"\\eb2e\" }\n/*!@.codicon-preview:before*/.codicon-preview.sc-kol-icon-default:before { content: \"\\eb2f\" }\n/*!@.codicon-project:before*/.codicon-project.sc-kol-icon-default:before { content: \"\\eb30\" }\n/*!@.codicon-pulse:before*/.codicon-pulse.sc-kol-icon-default:before { content: \"\\eb31\" }\n/*!@.codicon-question:before*/.codicon-question.sc-kol-icon-default:before { content: \"\\eb32\" }\n/*!@.codicon-quote:before*/.codicon-quote.sc-kol-icon-default:before { content: \"\\eb33\" }\n/*!@.codicon-radio-tower:before*/.codicon-radio-tower.sc-kol-icon-default:before { content: \"\\eb34\" }\n/*!@.codicon-reactions:before*/.codicon-reactions.sc-kol-icon-default:before { content: \"\\eb35\" }\n/*!@.codicon-references:before*/.codicon-references.sc-kol-icon-default:before { content: \"\\eb36\" }\n/*!@.codicon-refresh:before*/.codicon-refresh.sc-kol-icon-default:before { content: \"\\eb37\" }\n/*!@.codicon-regex:before*/.codicon-regex.sc-kol-icon-default:before { content: \"\\eb38\" }\n/*!@.codicon-remote-explorer:before*/.codicon-remote-explorer.sc-kol-icon-default:before { content: \"\\eb39\" }\n/*!@.codicon-remote:before*/.codicon-remote.sc-kol-icon-default:before { content: \"\\eb3a\" }\n/*!@.codicon-remove:before*/.codicon-remove.sc-kol-icon-default:before { content: \"\\eb3b\" }\n/*!@.codicon-replace-all:before*/.codicon-replace-all.sc-kol-icon-default:before { content: \"\\eb3c\" }\n/*!@.codicon-replace:before*/.codicon-replace.sc-kol-icon-default:before { content: \"\\eb3d\" }\n/*!@.codicon-repo-clone:before*/.codicon-repo-clone.sc-kol-icon-default:before { content: \"\\eb3e\" }\n/*!@.codicon-repo-force-push:before*/.codicon-repo-force-push.sc-kol-icon-default:before { content: \"\\eb3f\" }\n/*!@.codicon-repo-pull:before*/.codicon-repo-pull.sc-kol-icon-default:before { content: \"\\eb40\" }\n/*!@.codicon-repo-push:before*/.codicon-repo-push.sc-kol-icon-default:before { content: \"\\eb41\" }\n/*!@.codicon-report:before*/.codicon-report.sc-kol-icon-default:before { content: \"\\eb42\" }\n/*!@.codicon-request-changes:before*/.codicon-request-changes.sc-kol-icon-default:before { content: \"\\eb43\" }\n/*!@.codicon-rocket:before*/.codicon-rocket.sc-kol-icon-default:before { content: \"\\eb44\" }\n/*!@.codicon-root-folder-opened:before*/.codicon-root-folder-opened.sc-kol-icon-default:before { content: \"\\eb45\" }\n/*!@.codicon-root-folder:before*/.codicon-root-folder.sc-kol-icon-default:before { content: \"\\eb46\" }\n/*!@.codicon-rss:before*/.codicon-rss.sc-kol-icon-default:before { content: \"\\eb47\" }\n/*!@.codicon-ruby:before*/.codicon-ruby.sc-kol-icon-default:before { content: \"\\eb48\" }\n/*!@.codicon-save-all:before*/.codicon-save-all.sc-kol-icon-default:before { content: \"\\eb49\" }\n/*!@.codicon-save-as:before*/.codicon-save-as.sc-kol-icon-default:before { content: \"\\eb4a\" }\n/*!@.codicon-save:before*/.codicon-save.sc-kol-icon-default:before { content: \"\\eb4b\" }\n/*!@.codicon-screen-full:before*/.codicon-screen-full.sc-kol-icon-default:before { content: \"\\eb4c\" }\n/*!@.codicon-screen-normal:before*/.codicon-screen-normal.sc-kol-icon-default:before { content: \"\\eb4d\" }\n/*!@.codicon-search-stop:before*/.codicon-search-stop.sc-kol-icon-default:before { content: \"\\eb4e\" }\n/*!@.codicon-server:before*/.codicon-server.sc-kol-icon-default:before { content: \"\\eb50\" }\n/*!@.codicon-settings-gear:before*/.codicon-settings-gear.sc-kol-icon-default:before { content: \"\\eb51\" }\n/*!@.codicon-settings:before*/.codicon-settings.sc-kol-icon-default:before { content: \"\\eb52\" }\n/*!@.codicon-shield:before*/.codicon-shield.sc-kol-icon-default:before { content: \"\\eb53\" }\n/*!@.codicon-smiley:before*/.codicon-smiley.sc-kol-icon-default:before { content: \"\\eb54\" }\n/*!@.codicon-sort-precedence:before*/.codicon-sort-precedence.sc-kol-icon-default:before { content: \"\\eb55\" }\n/*!@.codicon-split-horizontal:before*/.codicon-split-horizontal.sc-kol-icon-default:before { content: \"\\eb56\" }\n/*!@.codicon-split-vertical:before*/.codicon-split-vertical.sc-kol-icon-default:before { content: \"\\eb57\" }\n/*!@.codicon-squirrel:before*/.codicon-squirrel.sc-kol-icon-default:before { content: \"\\eb58\" }\n/*!@.codicon-star-full:before*/.codicon-star-full.sc-kol-icon-default:before { content: \"\\eb59\" }\n/*!@.codicon-star-half:before*/.codicon-star-half.sc-kol-icon-default:before { content: \"\\eb5a\" }\n/*!@.codicon-symbol-class:before*/.codicon-symbol-class.sc-kol-icon-default:before { content: \"\\eb5b\" }\n/*!@.codicon-symbol-color:before*/.codicon-symbol-color.sc-kol-icon-default:before { content: \"\\eb5c\" }\n/*!@.codicon-symbol-constant:before*/.codicon-symbol-constant.sc-kol-icon-default:before { content: \"\\eb5d\" }\n/*!@.codicon-symbol-enum-member:before*/.codicon-symbol-enum-member.sc-kol-icon-default:before { content: \"\\eb5e\" }\n/*!@.codicon-symbol-field:before*/.codicon-symbol-field.sc-kol-icon-default:before { content: \"\\eb5f\" }\n/*!@.codicon-symbol-file:before*/.codicon-symbol-file.sc-kol-icon-default:before { content: \"\\eb60\" }\n/*!@.codicon-symbol-interface:before*/.codicon-symbol-interface.sc-kol-icon-default:before { content: \"\\eb61\" }\n/*!@.codicon-symbol-keyword:before*/.codicon-symbol-keyword.sc-kol-icon-default:before { content: \"\\eb62\" }\n/*!@.codicon-symbol-misc:before*/.codicon-symbol-misc.sc-kol-icon-default:before { content: \"\\eb63\" }\n/*!@.codicon-symbol-operator:before*/.codicon-symbol-operator.sc-kol-icon-default:before { content: \"\\eb64\" }\n/*!@.codicon-symbol-property:before*/.codicon-symbol-property.sc-kol-icon-default:before { content: \"\\eb65\" }\n/*!@.codicon-wrench:before*/.codicon-wrench.sc-kol-icon-default:before { content: \"\\eb65\" }\n/*!@.codicon-wrench-subaction:before*/.codicon-wrench-subaction.sc-kol-icon-default:before { content: \"\\eb65\" }\n/*!@.codicon-symbol-snippet:before*/.codicon-symbol-snippet.sc-kol-icon-default:before { content: \"\\eb66\" }\n/*!@.codicon-tasklist:before*/.codicon-tasklist.sc-kol-icon-default:before { content: \"\\eb67\" }\n/*!@.codicon-telescope:before*/.codicon-telescope.sc-kol-icon-default:before { content: \"\\eb68\" }\n/*!@.codicon-text-size:before*/.codicon-text-size.sc-kol-icon-default:before { content: \"\\eb69\" }\n/*!@.codicon-three-bars:before*/.codicon-three-bars.sc-kol-icon-default:before { content: \"\\eb6a\" }\n/*!@.codicon-thumbsdown:before*/.codicon-thumbsdown.sc-kol-icon-default:before { content: \"\\eb6b\" }\n/*!@.codicon-thumbsup:before*/.codicon-thumbsup.sc-kol-icon-default:before { content: \"\\eb6c\" }\n/*!@.codicon-tools:before*/.codicon-tools.sc-kol-icon-default:before { content: \"\\eb6d\" }\n/*!@.codicon-triangle-down:before*/.codicon-triangle-down.sc-kol-icon-default:before { content: \"\\eb6e\" }\n/*!@.codicon-triangle-left:before*/.codicon-triangle-left.sc-kol-icon-default:before { content: \"\\eb6f\" }\n/*!@.codicon-triangle-right:before*/.codicon-triangle-right.sc-kol-icon-default:before { content: \"\\eb70\" }\n/*!@.codicon-triangle-up:before*/.codicon-triangle-up.sc-kol-icon-default:before { content: \"\\eb71\" }\n/*!@.codicon-twitter:before*/.codicon-twitter.sc-kol-icon-default:before { content: \"\\eb72\" }\n/*!@.codicon-unfold:before*/.codicon-unfold.sc-kol-icon-default:before { content: \"\\eb73\" }\n/*!@.codicon-unlock:before*/.codicon-unlock.sc-kol-icon-default:before { content: \"\\eb74\" }\n/*!@.codicon-unmute:before*/.codicon-unmute.sc-kol-icon-default:before { content: \"\\eb75\" }\n/*!@.codicon-unverified:before*/.codicon-unverified.sc-kol-icon-default:before { content: \"\\eb76\" }\n/*!@.codicon-verified:before*/.codicon-verified.sc-kol-icon-default:before { content: \"\\eb77\" }\n/*!@.codicon-versions:before*/.codicon-versions.sc-kol-icon-default:before { content: \"\\eb78\" }\n/*!@.codicon-vm-active:before*/.codicon-vm-active.sc-kol-icon-default:before { content: \"\\eb79\" }\n/*!@.codicon-vm-outline:before*/.codicon-vm-outline.sc-kol-icon-default:before { content: \"\\eb7a\" }\n/*!@.codicon-vm-running:before*/.codicon-vm-running.sc-kol-icon-default:before { content: \"\\eb7b\" }\n/*!@.codicon-watch:before*/.codicon-watch.sc-kol-icon-default:before { content: \"\\eb7c\" }\n/*!@.codicon-whitespace:before*/.codicon-whitespace.sc-kol-icon-default:before { content: \"\\eb7d\" }\n/*!@.codicon-whole-word:before*/.codicon-whole-word.sc-kol-icon-default:before { content: \"\\eb7e\" }\n/*!@.codicon-window:before*/.codicon-window.sc-kol-icon-default:before { content: \"\\eb7f\" }\n/*!@.codicon-word-wrap:before*/.codicon-word-wrap.sc-kol-icon-default:before { content: \"\\eb80\" }\n/*!@.codicon-zoom-in:before*/.codicon-zoom-in.sc-kol-icon-default:before { content: \"\\eb81\" }\n/*!@.codicon-zoom-out:before*/.codicon-zoom-out.sc-kol-icon-default:before { content: \"\\eb82\" }\n/*!@.codicon-list-filter:before*/.codicon-list-filter.sc-kol-icon-default:before { content: \"\\eb83\" }\n/*!@.codicon-list-flat:before*/.codicon-list-flat.sc-kol-icon-default:before { content: \"\\eb84\" }\n/*!@.codicon-list-selection:before*/.codicon-list-selection.sc-kol-icon-default:before { content: \"\\eb85\" }\n/*!@.codicon-selection:before*/.codicon-selection.sc-kol-icon-default:before { content: \"\\eb85\" }\n/*!@.codicon-list-tree:before*/.codicon-list-tree.sc-kol-icon-default:before { content: \"\\eb86\" }\n/*!@.codicon-debug-breakpoint-function-unverified:before*/.codicon-debug-breakpoint-function-unverified.sc-kol-icon-default:before { content: \"\\eb87\" }\n/*!@.codicon-debug-breakpoint-function:before*/.codicon-debug-breakpoint-function.sc-kol-icon-default:before { content: \"\\eb88\" }\n/*!@.codicon-debug-breakpoint-function-disabled:before*/.codicon-debug-breakpoint-function-disabled.sc-kol-icon-default:before { content: \"\\eb88\" }\n/*!@.codicon-debug-stackframe-active:before*/.codicon-debug-stackframe-active.sc-kol-icon-default:before { content: \"\\eb89\" }\n/*!@.codicon-circle-small-filled:before*/.codicon-circle-small-filled.sc-kol-icon-default:before { content: \"\\eb8a\" }\n/*!@.codicon-debug-stackframe-dot:before*/.codicon-debug-stackframe-dot.sc-kol-icon-default:before { content: \"\\eb8a\" }\n/*!@.codicon-debug-stackframe:before*/.codicon-debug-stackframe.sc-kol-icon-default:before { content: \"\\eb8b\" }\n/*!@.codicon-debug-stackframe-focused:before*/.codicon-debug-stackframe-focused.sc-kol-icon-default:before { content: \"\\eb8b\" }\n/*!@.codicon-debug-breakpoint-unsupported:before*/.codicon-debug-breakpoint-unsupported.sc-kol-icon-default:before { content: \"\\eb8c\" }\n/*!@.codicon-symbol-string:before*/.codicon-symbol-string.sc-kol-icon-default:before { content: \"\\eb8d\" }\n/*!@.codicon-debug-reverse-continue:before*/.codicon-debug-reverse-continue.sc-kol-icon-default:before { content: \"\\eb8e\" }\n/*!@.codicon-debug-step-back:before*/.codicon-debug-step-back.sc-kol-icon-default:before { content: \"\\eb8f\" }\n/*!@.codicon-debug-restart-frame:before*/.codicon-debug-restart-frame.sc-kol-icon-default:before { content: \"\\eb90\" }\n/*!@.codicon-debug-alt:before*/.codicon-debug-alt.sc-kol-icon-default:before { content: \"\\eb91\" }\n/*!@.codicon-call-incoming:before*/.codicon-call-incoming.sc-kol-icon-default:before { content: \"\\eb92\" }\n/*!@.codicon-call-outgoing:before*/.codicon-call-outgoing.sc-kol-icon-default:before { content: \"\\eb93\" }\n/*!@.codicon-menu:before*/.codicon-menu.sc-kol-icon-default:before { content: \"\\eb94\" }\n/*!@.codicon-expand-all:before*/.codicon-expand-all.sc-kol-icon-default:before { content: \"\\eb95\" }\n/*!@.codicon-feedback:before*/.codicon-feedback.sc-kol-icon-default:before { content: \"\\eb96\" }\n/*!@.codicon-group-by-ref-type:before*/.codicon-group-by-ref-type.sc-kol-icon-default:before { content: \"\\eb97\" }\n/*!@.codicon-ungroup-by-ref-type:before*/.codicon-ungroup-by-ref-type.sc-kol-icon-default:before { content: \"\\eb98\" }\n/*!@.codicon-account:before*/.codicon-account.sc-kol-icon-default:before { content: \"\\eb99\" }\n/*!@.codicon-bell-dot:before*/.codicon-bell-dot.sc-kol-icon-default:before { content: \"\\eb9a\" }\n/*!@.codicon-debug-console:before*/.codicon-debug-console.sc-kol-icon-default:before { content: \"\\eb9b\" }\n/*!@.codicon-library:before*/.codicon-library.sc-kol-icon-default:before { content: \"\\eb9c\" }\n/*!@.codicon-output:before*/.codicon-output.sc-kol-icon-default:before { content: \"\\eb9d\" }\n/*!@.codicon-run-all:before*/.codicon-run-all.sc-kol-icon-default:before { content: \"\\eb9e\" }\n/*!@.codicon-sync-ignored:before*/.codicon-sync-ignored.sc-kol-icon-default:before { content: \"\\eb9f\" }\n/*!@.codicon-pinned:before*/.codicon-pinned.sc-kol-icon-default:before { content: \"\\eba0\" }\n/*!@.codicon-github-inverted:before*/.codicon-github-inverted.sc-kol-icon-default:before { content: \"\\eba1\" }\n/*!@.codicon-server-process:before*/.codicon-server-process.sc-kol-icon-default:before { content: \"\\eba2\" }\n/*!@.codicon-server-environment:before*/.codicon-server-environment.sc-kol-icon-default:before { content: \"\\eba3\" }\n/*!@.codicon-pass:before*/.codicon-pass.sc-kol-icon-default:before { content: \"\\eba4\" }\n/*!@.codicon-issue-closed:before*/.codicon-issue-closed.sc-kol-icon-default:before { content: \"\\eba4\" }\n/*!@.codicon-stop-circle:before*/.codicon-stop-circle.sc-kol-icon-default:before { content: \"\\eba5\" }\n/*!@.codicon-play-circle:before*/.codicon-play-circle.sc-kol-icon-default:before { content: \"\\eba6\" }\n/*!@.codicon-record:before*/.codicon-record.sc-kol-icon-default:before { content: \"\\eba7\" }\n/*!@.codicon-debug-alt-small:before*/.codicon-debug-alt-small.sc-kol-icon-default:before { content: \"\\eba8\" }\n/*!@.codicon-vm-connect:before*/.codicon-vm-connect.sc-kol-icon-default:before { content: \"\\eba9\" }\n/*!@.codicon-cloud:before*/.codicon-cloud.sc-kol-icon-default:before { content: \"\\ebaa\" }\n/*!@.codicon-merge:before*/.codicon-merge.sc-kol-icon-default:before { content: \"\\ebab\" }\n/*!@.codicon-export:before*/.codicon-export.sc-kol-icon-default:before { content: \"\\ebac\" }\n/*!@.codicon-graph-left:before*/.codicon-graph-left.sc-kol-icon-default:before { content: \"\\ebad\" }\n/*!@.codicon-magnet:before*/.codicon-magnet.sc-kol-icon-default:before { content: \"\\ebae\" }\n/*!@.codicon-notebook:before*/.codicon-notebook.sc-kol-icon-default:before { content: \"\\ebaf\" }\n/*!@.codicon-redo:before*/.codicon-redo.sc-kol-icon-default:before { content: \"\\ebb0\" }\n/*!@.codicon-check-all:before*/.codicon-check-all.sc-kol-icon-default:before { content: \"\\ebb1\" }\n/*!@.codicon-pinned-dirty:before*/.codicon-pinned-dirty.sc-kol-icon-default:before { content: \"\\ebb2\" }\n/*!@.codicon-pass-filled:before*/.codicon-pass-filled.sc-kol-icon-default:before { content: \"\\ebb3\" }\n/*!@.codicon-circle-large-filled:before*/.codicon-circle-large-filled.sc-kol-icon-default:before { content: \"\\ebb4\" }\n/*!@.codicon-circle-large-outline:before*/.codicon-circle-large-outline.sc-kol-icon-default:before { content: \"\\ebb5\" }\n/*!@.codicon-combine:before*/.codicon-combine.sc-kol-icon-default:before { content: \"\\ebb6\" }\n/*!@.codicon-gather:before*/.codicon-gather.sc-kol-icon-default:before { content: \"\\ebb6\" }\n/*!@.codicon-table:before*/.codicon-table.sc-kol-icon-default:before { content: \"\\ebb7\" }\n/*!@.codicon-variable-group:before*/.codicon-variable-group.sc-kol-icon-default:before { content: \"\\ebb8\" }\n/*!@.codicon-type-hierarchy:before*/.codicon-type-hierarchy.sc-kol-icon-default:before { content: \"\\ebb9\" }\n/*!@.codicon-type-hierarchy-sub:before*/.codicon-type-hierarchy-sub.sc-kol-icon-default:before { content: \"\\ebba\" }\n/*!@.codicon-type-hierarchy-super:before*/.codicon-type-hierarchy-super.sc-kol-icon-default:before { content: \"\\ebbb\" }\n/*!@.codicon-git-pull-request-create:before*/.codicon-git-pull-request-create.sc-kol-icon-default:before { content: \"\\ebbc\" }\n/*!@.codicon-run-above:before*/.codicon-run-above.sc-kol-icon-default:before { content: \"\\ebbd\" }\n/*!@.codicon-run-below:before*/.codicon-run-below.sc-kol-icon-default:before { content: \"\\ebbe\" }\n/*!@.codicon-notebook-template:before*/.codicon-notebook-template.sc-kol-icon-default:before { content: \"\\ebbf\" }\n/*!@.codicon-debug-rerun:before*/.codicon-debug-rerun.sc-kol-icon-default:before { content: \"\\ebc0\" }\n/*!@.codicon-workspace-trusted:before*/.codicon-workspace-trusted.sc-kol-icon-default:before { content: \"\\ebc1\" }\n/*!@.codicon-workspace-untrusted:before*/.codicon-workspace-untrusted.sc-kol-icon-default:before { content: \"\\ebc2\" }\n/*!@.codicon-workspace-unknown:before*/.codicon-workspace-unknown.sc-kol-icon-default:before { content: \"\\ebc3\" }\n/*!@.codicon-terminal-cmd:before*/.codicon-terminal-cmd.sc-kol-icon-default:before { content: \"\\ebc4\" }\n/*!@.codicon-terminal-debian:before*/.codicon-terminal-debian.sc-kol-icon-default:before { content: \"\\ebc5\" }\n/*!@.codicon-terminal-linux:before*/.codicon-terminal-linux.sc-kol-icon-default:before { content: \"\\ebc6\" }\n/*!@.codicon-terminal-powershell:before*/.codicon-terminal-powershell.sc-kol-icon-default:before { content: \"\\ebc7\" }\n/*!@.codicon-terminal-tmux:before*/.codicon-terminal-tmux.sc-kol-icon-default:before { content: \"\\ebc8\" }\n/*!@.codicon-terminal-ubuntu:before*/.codicon-terminal-ubuntu.sc-kol-icon-default:before { content: \"\\ebc9\" }\n/*!@.codicon-terminal-bash:before*/.codicon-terminal-bash.sc-kol-icon-default:before { content: \"\\ebca\" }\n/*!@.codicon-arrow-swap:before*/.codicon-arrow-swap.sc-kol-icon-default:before { content: \"\\ebcb\" }\n/*!@.codicon-copy:before*/.codicon-copy.sc-kol-icon-default:before { content: \"\\ebcc\" }\n/*!@.codicon-person-add:before*/.codicon-person-add.sc-kol-icon-default:before { content: \"\\ebcd\" }\n/*!@.codicon-filter-filled:before*/.codicon-filter-filled.sc-kol-icon-default:before { content: \"\\ebce\" }\n/*!@.codicon-wand:before*/.codicon-wand.sc-kol-icon-default:before { content: \"\\ebcf\" }\n/*!@.codicon-debug-line-by-line:before*/.codicon-debug-line-by-line.sc-kol-icon-default:before { content: \"\\ebd0\" }\n/*!@.codicon-inspect:before*/.codicon-inspect.sc-kol-icon-default:before { content: \"\\ebd1\" }\n/*!@.codicon-layers:before*/.codicon-layers.sc-kol-icon-default:before { content: \"\\ebd2\" }\n/*!@.codicon-layers-dot:before*/.codicon-layers-dot.sc-kol-icon-default:before { content: \"\\ebd3\" }\n/*!@.codicon-layers-active:before*/.codicon-layers-active.sc-kol-icon-default:before { content: \"\\ebd4\" }\n/*!@.codicon-compass:before*/.codicon-compass.sc-kol-icon-default:before { content: \"\\ebd5\" }\n/*!@.codicon-compass-dot:before*/.codicon-compass-dot.sc-kol-icon-default:before { content: \"\\ebd6\" }\n/*!@.codicon-compass-active:before*/.codicon-compass-active.sc-kol-icon-default:before { content: \"\\ebd7\" }\n/*!@.codicon-azure:before*/.codicon-azure.sc-kol-icon-default:before { content: \"\\ebd8\" }\n/*!@.codicon-issue-draft:before*/.codicon-issue-draft.sc-kol-icon-default:before { content: \"\\ebd9\" }\n/*!@.codicon-git-pull-request-closed:before*/.codicon-git-pull-request-closed.sc-kol-icon-default:before { content: \"\\ebda\" }\n/*!@.codicon-git-pull-request-draft:before*/.codicon-git-pull-request-draft.sc-kol-icon-default:before { content: \"\\ebdb\" }\n/*!@.codicon-debug-all:before*/.codicon-debug-all.sc-kol-icon-default:before { content: \"\\ebdc\" }\n/*!@.codicon-debug-coverage:before*/.codicon-debug-coverage.sc-kol-icon-default:before { content: \"\\ebdd\" }\n/*!@.codicon-run-errors:before*/.codicon-run-errors.sc-kol-icon-default:before { content: \"\\ebde\" }\n/*!@.codicon-folder-library:before*/.codicon-folder-library.sc-kol-icon-default:before { content: \"\\ebdf\" }\n/*!@.codicon-debug-continue-small:before*/.codicon-debug-continue-small.sc-kol-icon-default:before { content: \"\\ebe0\" }\n/*!@.codicon-beaker-stop:before*/.codicon-beaker-stop.sc-kol-icon-default:before { content: \"\\ebe1\" }\n/*!@.codicon-graph-line:before*/.codicon-graph-line.sc-kol-icon-default:before { content: \"\\ebe2\" }\n/*!@.codicon-graph-scatter:before*/.codicon-graph-scatter.sc-kol-icon-default:before { content: \"\\ebe3\" }\n/*!@.codicon-pie-chart:before*/.codicon-pie-chart.sc-kol-icon-default:before { content: \"\\ebe4\" }\n/*!@.codicon-bracket:before*/.codicon-bracket.sc-kol-icon-default:before { content: \"\\eb0f\" }\n/*!@.codicon-bracket-dot:before*/.codicon-bracket-dot.sc-kol-icon-default:before { content: \"\\ebe5\" }\n/*!@.codicon-bracket-error:before*/.codicon-bracket-error.sc-kol-icon-default:before { content: \"\\ebe6\" }\n/*!@.codicon-lock-small:before*/.codicon-lock-small.sc-kol-icon-default:before { content: \"\\ebe7\" }\n/*!@.codicon-azure-devops:before*/.codicon-azure-devops.sc-kol-icon-default:before { content: \"\\ebe8\" }\n/*!@.codicon-verified-filled:before*/.codicon-verified-filled.sc-kol-icon-default:before { content: \"\\ebe9\" }\n/*!@.codicon-newline:before*/.codicon-newline.sc-kol-icon-default:before { content: \"\\ebea\" }\n/*!@.codicon-layout:before*/.codicon-layout.sc-kol-icon-default:before { content: \"\\ebeb\" }\n/*!@.codicon-layout-activitybar-left:before*/.codicon-layout-activitybar-left.sc-kol-icon-default:before { content: \"\\ebec\" }\n/*!@.codicon-layout-activitybar-right:before*/.codicon-layout-activitybar-right.sc-kol-icon-default:before { content: \"\\ebed\" }\n/*!@.codicon-layout-panel-left:before*/.codicon-layout-panel-left.sc-kol-icon-default:before { content: \"\\ebee\" }\n/*!@.codicon-layout-panel-center:before*/.codicon-layout-panel-center.sc-kol-icon-default:before { content: \"\\ebef\" }\n/*!@.codicon-layout-panel-justify:before*/.codicon-layout-panel-justify.sc-kol-icon-default:before { content: \"\\ebf0\" }\n/*!@.codicon-layout-panel-right:before*/.codicon-layout-panel-right.sc-kol-icon-default:before { content: \"\\ebf1\" }\n/*!@.codicon-layout-panel:before*/.codicon-layout-panel.sc-kol-icon-default:before { content: \"\\ebf2\" }\n/*!@.codicon-layout-sidebar-left:before*/.codicon-layout-sidebar-left.sc-kol-icon-default:before { content: \"\\ebf3\" }\n/*!@.codicon-layout-sidebar-right:before*/.codicon-layout-sidebar-right.sc-kol-icon-default:before { content: \"\\ebf4\" }\n/*!@.codicon-layout-statusbar:before*/.codicon-layout-statusbar.sc-kol-icon-default:before { content: \"\\ebf5\" }\n/*!@.codicon-layout-menubar:before*/.codicon-layout-menubar.sc-kol-icon-default:before { content: \"\\ebf6\" }\n/*!@.codicon-layout-centered:before*/.codicon-layout-centered.sc-kol-icon-default:before { content: \"\\ebf7\" }\n/*!@.codicon-target:before*/.codicon-target.sc-kol-icon-default:before { content: \"\\ebf8\" }\n/*!@.codicon-indent:before*/.codicon-indent.sc-kol-icon-default:before { content: \"\\ebf9\" }\n/*!@.codicon-record-small:before*/.codicon-record-small.sc-kol-icon-default:before { content: \"\\ebfa\" }\n/*!@.codicon-error-small:before*/.codicon-error-small.sc-kol-icon-default:before { content: \"\\ebfb\" }\n/*!@.codicon-arrow-circle-down:before*/.codicon-arrow-circle-down.sc-kol-icon-default:before { content: \"\\ebfc\" }\n/*!@.codicon-arrow-circle-left:before*/.codicon-arrow-circle-left.sc-kol-icon-default:before { content: \"\\ebfd\" }\n/*!@.codicon-arrow-circle-right:before*/.codicon-arrow-circle-right.sc-kol-icon-default:before { content: \"\\ebfe\" }\n/*!@.codicon-arrow-circle-up:before*/.codicon-arrow-circle-up.sc-kol-icon-default:before { content: \"\\ebff\" }\n/*!@.codicon-layout-sidebar-right-off:before*/.codicon-layout-sidebar-right-off.sc-kol-icon-default:before { content: \"\\ec00\" }\n/*!@.codicon-layout-panel-off:before*/.codicon-layout-panel-off.sc-kol-icon-default:before { content: \"\\ec01\" }\n/*!@.codicon-layout-sidebar-left-off:before*/.codicon-layout-sidebar-left-off.sc-kol-icon-default:before { content: \"\\ec02\" }\n/*!@.codicon-blank:before*/.codicon-blank.sc-kol-icon-default:before { content: \"\\ec03\" }\n/*!@.codicon-heart-filled:before*/.codicon-heart-filled.sc-kol-icon-default:before { content: \"\\ec04\" }\n/*!@.codicon-map:before*/.codicon-map.sc-kol-icon-default:before { content: \"\\ec05\" }\n/*!@.codicon-map-filled:before*/.codicon-map-filled.sc-kol-icon-default:before { content: \"\\ec06\" }\n/*!@.codicon-circle-small:before*/.codicon-circle-small.sc-kol-icon-default:before { content: \"\\ec07\" }\n/*!@.codicon-bell-slash:before*/.codicon-bell-slash.sc-kol-icon-default:before { content: \"\\ec08\" }\n/*!@.codicon-bell-slash-dot:before*/.codicon-bell-slash-dot.sc-kol-icon-default:before { content: \"\\ec09\" }\n/*!@.codicon-comment-unresolved:before*/.codicon-comment-unresolved.sc-kol-icon-default:before { content: \"\\ec0a\" }\n/*!@.codicon-git-pull-request-go-to-changes:before*/.codicon-git-pull-request-go-to-changes.sc-kol-icon-default:before { content: \"\\ec0b\" }\n/*!@.codicon-git-pull-request-new-changes:before*/.codicon-git-pull-request-new-changes.sc-kol-icon-default:before { content: \"\\ec0c\" }\n\n@layer kol-component {\n\t.sc-kol-icon-default-h {\n\t\tcolor: inherit;\n\t\tdisplay: contents;\n\t\theight: 1em;\n\t\tline-height: inherit;\n\t\twidth: 1em;\n\t}\n\n\t.sc-kol-icon-default-h > i {\n\t\theight: 1em;\n\t\twidth: 1em;\n\t}\n\n\t\n\t.sc-kol-icon-default-h > i,\n\t.sc-kol-icon-default-h > i:before {\n\t\tfont-size: inherit !important;\n\t}\n}";
|
|
12407
12422
|
|
|
12408
12423
|
class KolIcon {
|
|
12409
12424
|
constructor(hostRef) {
|
|
@@ -12434,7 +12449,7 @@ class KolIcon {
|
|
|
12434
12449
|
"_label": ["validateLabel"]
|
|
12435
12450
|
}; }
|
|
12436
12451
|
static get style() { return {
|
|
12437
|
-
default: defaultStyleCss$
|
|
12452
|
+
default: defaultStyleCss$w
|
|
12438
12453
|
}; }
|
|
12439
12454
|
static get cmpMeta() { return {
|
|
12440
12455
|
"$flags$": 41,
|
|
@@ -12455,7 +12470,7 @@ function validateLoading(component, value) {
|
|
|
12455
12470
|
watchValidator(component, '_loading', (value) => value === 'eager' || value === 'lazy', AVAILABLE_LOADING_VALUES, value);
|
|
12456
12471
|
}
|
|
12457
12472
|
|
|
12458
|
-
const defaultStyleCss$
|
|
12473
|
+
const defaultStyleCss$v = "@layer kol-component {\n\timg {\n\t\tmax-height: 100%;\n\t\tmax-width: 100%;\n\t}\n}";
|
|
12459
12474
|
|
|
12460
12475
|
class KolImage {
|
|
12461
12476
|
constructor(hostRef) {
|
|
@@ -12508,7 +12523,7 @@ class KolImage {
|
|
|
12508
12523
|
"_srcset": ["validateSrcset"]
|
|
12509
12524
|
}; }
|
|
12510
12525
|
static get style() { return {
|
|
12511
|
-
default: defaultStyleCss$
|
|
12526
|
+
default: defaultStyleCss$v
|
|
12512
12527
|
}; }
|
|
12513
12528
|
static get cmpMeta() { return {
|
|
12514
12529
|
"$flags$": 41,
|
|
@@ -12527,7 +12542,7 @@ class KolImage {
|
|
|
12527
12542
|
}; }
|
|
12528
12543
|
}
|
|
12529
12544
|
|
|
12530
|
-
const defaultStyleCss$
|
|
12545
|
+
const defaultStyleCss$u = "@layer kol-global {\n\t\n\t.sc-kol-indented-text-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-indented-text-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-indented-text-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-indented-text-default-h > div {\n\t\tborder-left-style: solid;\n\t\tpadding-left: 0.5em;\n\t}\n}";
|
|
12531
12546
|
|
|
12532
12547
|
class KolIndentedText {
|
|
12533
12548
|
constructor(hostRef) {
|
|
@@ -12538,7 +12553,7 @@ class KolIndentedText {
|
|
|
12538
12553
|
return (hAsync(Host, null, hAsync("div", null, hAsync("slot", null))));
|
|
12539
12554
|
}
|
|
12540
12555
|
static get style() { return {
|
|
12541
|
-
default: defaultStyleCss$
|
|
12556
|
+
default: defaultStyleCss$u
|
|
12542
12557
|
}; }
|
|
12543
12558
|
static get cmpMeta() { return {
|
|
12544
12559
|
"$flags$": 41,
|
|
@@ -13017,7 +13032,7 @@ class InputCheckboxController extends InputCheckboxRadioController {
|
|
|
13017
13032
|
}
|
|
13018
13033
|
}
|
|
13019
13034
|
|
|
13020
|
-
const defaultStyleCss$u = "/*!@:host*/.sc-kol-input-checkbox-default-h{--a11y-min-size:44px;font-size:inherit}/*!@**/*.sc-kol-input-checkbox-default{font-family:Verdana;hyphens:auto;letter-spacing:inherit;word-break:break-word;word-spacing:inherit}/*!@[role='button'],\nbutton:not([role='link']),\nkol-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{min-height:var(--a11y-min-size);min-width:var(--a11y-min-size)}/*!@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{font-family:inherit;font-size:inherit}/*!@:is(a, button)*/.sc-kol-input-checkbox-default:is(a,button).sc-kol-input-checkbox-default{background-color:transparent;border:none;margin:0;padding:0;width:100%}/*!@:host*/.sc-kol-input-checkbox-default-h{max-width:100%}/*!@**/*.sc-kol-input-checkbox-default{box-sizing:border-box}/*!@kol-span-wc*/kol-span-wc.sc-kol-input-checkbox-default{display:grid;place-items:center}/*!@kol-span-wc > span*/kol-span-wc.sc-kol-input-checkbox-default>span.sc-kol-input-checkbox-default{display:flex;place-items:center}/*!@a,\nbutton*/a.sc-kol-input-checkbox-default,button.sc-kol-input-checkbox-default{cursor:pointer}/*!@button,\ninput,\noption,\nselect,\ntextarea*/button.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{font-family:inherit}/*!@.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{display:none}/*!@.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{content:'*'}/*!@:host*/.sc-kol-input-checkbox-default-h{display:block}/*!@input,\ntextarea*/input.sc-kol-input-checkbox-default,textarea.sc-kol-input-checkbox-default{cursor:text}/*!@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{cursor:pointer}/*!@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{font-size:1rem;width:100%}/*!@input[type='file']*/input[type='file'].sc-kol-input-checkbox-default{padding:calc((var(--a11y-min-size) - 1rem) / 10) 0.5em}/*!@select[multiple] option*/select[multiple].sc-kol-input-checkbox-default option.sc-kol-input-checkbox-default{padding:calc((var(--a11y-min-size) - 1rem) / 2) 0.5em}/*!@kol-input.disabled :is(button, input, label, option, select, textarea)*/kol-input.disabled.sc-kol-input-checkbox-default .sc-kol-input-checkbox-default:is(button,input.sc-kol-input-checkbox-default,label.sc-kol-input-checkbox-default,option.sc-kol-input-checkbox-default,select.sc-kol-input-checkbox-default,textarea).sc-kol-input-checkbox-default{cursor:not-allowed;opacity:0.5}/*!@label*/label.sc-kol-input-checkbox-default{cursor:pointer}/*!@kol-input*/kol-input.sc-kol-input-checkbox-default{align-items:center;display:grid;justify-items:left}/*!@kol-input.default,\nkol-input.switch*/kol-input.default.sc-kol-input-checkbox-default,kol-input.switch.sc-kol-input-checkbox-default{grid-template-columns:auto 1fr}/*!@kol-input .input*/kol-input.sc-kol-input-checkbox-default .input.sc-kol-input-checkbox-default{align-items:center;display:grid;order:1}/*!@kol-input .input div*/kol-input.sc-kol-input-checkbox-default .input.sc-kol-input-checkbox-default div.sc-kol-input-checkbox-default{display:inline-flex}/*!@kol-input .input input*/kol-input.sc-kol-input-checkbox-default .input.sc-kol-input-checkbox-default input.sc-kol-input-checkbox-default{margin:0}/*!@kol-input label*/kol-input.sc-kol-input-checkbox-default label.sc-kol-input-checkbox-default{order:2}/*!@kol-input .hint,\nkol-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{grid-column:span 2}/*!@kol-input kol-alert.error*/kol-input.sc-kol-input-checkbox-default kol-alert.error.sc-kol-input-checkbox-default{order:3}/*!@kol-input .hint*/kol-input.sc-kol-input-checkbox-default .hint.sc-kol-input-checkbox-default{order:4}/*!@.error.hidden*/.error.hidden.sc-kol-input-checkbox-default{display:none}/*!@input*/input.sc-kol-input-checkbox-default{border-style:solid;border-width:2px;line-height:24px}/*!@input[type='checkbox']*/input[type='checkbox'].sc-kol-input-checkbox-default{appearance:none;background-color:#fff;cursor:pointer;transition:0.5s}/*!@input[type='checkbox'].kol-disabled:before*/input[type='checkbox'].kol-disabled.sc-kol-input-checkbox-default:before{cursor:not-allowed}/*!@input[type='checkbox']:before*/input[type='checkbox'].sc-kol-input-checkbox-default:before{content:'';cursor:pointer}/*!@.default kol-icon*/.default.sc-kol-input-checkbox-default kol-icon.sc-kol-input-checkbox-default{display:none}/*!@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{content:'*'}/*!@.button*/.button.sc-kol-input-checkbox-default{display:grid;grid-template-columns:var(--a11y-min-size) auto;grid-template-areas:'error error' 'input label' 'hint hint'}/*!@.button[tabindex]:focus*/.button[tabindex].sc-kol-input-checkbox-default:focus{cursor:inherit}/*!@.button input*/.button.sc-kol-input-checkbox-default input.sc-kol-input-checkbox-default{display:none}/*!@.button > .error*/.button.sc-kol-input-checkbox-default>.error.sc-kol-input-checkbox-default{grid-area:error}/*!@.button > label*/.button.sc-kol-input-checkbox-default>label.sc-kol-input-checkbox-default{grid-area:label}/*!@.button > .input*/.button.sc-kol-input-checkbox-default>.input.sc-kol-input-checkbox-default{grid-area:input}/*!@.button > .hint*/.button.sc-kol-input-checkbox-default>.hint.sc-kol-input-checkbox-default{grid-area:hint}/*!@.button .icon*/.button.sc-kol-input-checkbox-default .icon.sc-kol-input-checkbox-default{display:flex;align-items:center;justify-content:center;width:var(--a11y-min-size);height:var(--a11y-min-size)}/*!@.default input[type='checkbox']*/.default.sc-kol-input-checkbox-default input[type='checkbox'].sc-kol-input-checkbox-default{height:1.5em;width:1.5em}/*!@.default input[type='checkbox']:before*/.default.sc-kol-input-checkbox-default input[type='checkbox'].sc-kol-input-checkbox-default:before{display:block;height:1.5em;position:relative;width:1.5em}/*!@.default input[type='checkbox']:checked:before*/.default.sc-kol-input-checkbox-default input[type='checkbox'].sc-kol-input-checkbox-default:checked:before{border-radius:1px;border-style:solid;border-width:0 3px 3px 0;height:0.75em;left:calc(0.375em - 2px);transform:rotate(40deg) translate(-50%, -50%);top:calc(0.7125em - 2px);width:0.375em}/*!@.default input[type='checkbox']:indeterminate:before*/.default.sc-kol-input-checkbox-default input[type='checkbox'].sc-kol-input-checkbox-default:indeterminate:before{background-color:#000;height:0.2em;left:0.24em;top:0.575em;width:0.8em}/*!@.switch .input*/.switch.sc-kol-input-checkbox-default .input.sc-kol-input-checkbox-default{position:relative}/*!@.switch input[type='checkbox']*/.switch.sc-kol-input-checkbox-default input[type='checkbox'].sc-kol-input-checkbox-default{display:inline-block;height:1.7em;min-width:3.2em;position:relative;width:3.2em}/*!@.switch input[type='checkbox']::before*/.switch.sc-kol-input-checkbox-default input[type='checkbox'].sc-kol-input-checkbox-default::before{background-color:#000;height:1.2em;left:calc(0.25em - 2px);top:calc(0.25em - 2px);position:absolute;transition:0.5s;width:1.2em}/*!@.switch input[type='checkbox']:checked::before*/.switch.sc-kol-input-checkbox-default input[type='checkbox'].sc-kol-input-checkbox-default:checked::before{transform:translateX(1.5em)}/*!@.switch input[type='checkbox']:indeterminate::before*/.switch.sc-kol-input-checkbox-default input[type='checkbox'].sc-kol-input-checkbox-default:indeterminate::before{transform:translateX(0.75em)}/*!@.switch .icon*/.switch.sc-kol-input-checkbox-default .icon.sc-kol-input-checkbox-default{cursor:pointer;display:flex;align-items:center;justify-content:center;width:1.2em;height:1.2em;position:absolute;z-index:1;top:50%;left:4px;transform:translate(0, -50%);transition:0.5s;color:#000}/*!@.switch:has(input:checked) .icon*/.switch.sc-kol-input-checkbox-default:has(input:checked) .icon.sc-kol-input-checkbox-default{transform:translate(1.5em, -50%)}/*!@.switch:has(input:indeterminate) .icon*/.switch.sc-kol-input-checkbox-default:has(input:indeterminate) .icon.sc-kol-input-checkbox-default{transform:translate(0.75em, -50%)}";
|
|
13035
|
+
const defaultStyleCss$t = "@layer kol-global {\n\t\n\t.sc-kol-input-checkbox-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-input-checkbox-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.required label > span::after,\n\t.required legend > span::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-input-checkbox-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tinput,\n\ttextarea {\n\t\tcursor: text;\n\t}\n\n\tinput[type='checkbox'],\n\tinput[type='color'],\n\tinput[type='file'],\n\tinput[type='radio'],\n\tinput[type='range'],\n\tlabel,\n\toption,\n\tselect {\n\t\tcursor: pointer;\n\t}\n\n\t\n\t\n\t\n\tinput[type='color'],\n\tinput[type='date'],\n\tinput[type='datetime-local'],\n\tinput[type='email'],\n\tinput[type='file'],\n\tinput[type='month'],\n\tinput[type='number'],\n\tinput[type='password'],\n\tinput[type='search'],\n\tinput[type='tel'],\n\tinput[type='text'],\n\tinput[type='time'],\n\tinput[type='url'],\n\tinput[type='week'],\n\tselect,\n\tselect[multiple] option,\n\ttextarea {\n\t\tfont-size: 1rem;\n\t\twidth: 100%;\n\t}\n\n\t\n\tinput[type='file'] {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 10) 0.5em;\n\t}\n\n\t\n\tselect[multiple] option {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 2) 0.5em;\n\t}\n\n\tkol-input.disabled :is(button, input, label, option, select, textarea) {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}\n\n@layer kol-component {\n\tlabel {\n\t\tcursor: pointer;\n\t}\n\n\tkol-input {\n\t\talign-items: center;\n\t\tdisplay: grid;\n\t\tjustify-items: left;\n\t}\n\n\tkol-input.default,\n\tkol-input.switch {\n\t\tgrid-template-columns: auto 1fr;\n\t}\n\n\tkol-input .input {\n\t\talign-items: center;\n\t\tdisplay: grid;\n\t\torder: 1;\n\t}\n\n\tkol-input .input div {\n\t\tdisplay: inline-flex;\n\t}\n\n\tkol-input .input input {\n\t\tmargin: 0;\n\t}\n\n\tkol-input label {\n\t\torder: 2;\n\t}\n\n\tkol-input .hint,\n\tkol-input.error > kol-alert {\n\t\tgrid-column: span 2;\n\t}\n\n\tkol-input kol-alert.error {\n\t\torder: 3;\n\t}\n\n\tkol-input .hint {\n\t\torder: 4;\n\t}\n\n\t.error.hidden {\n\t\tdisplay: none;\n\t}\n\n\tinput {\n\t\tborder-style: solid;\n\t\tborder-width: 2px;\n\t\tline-height: 24px;\n\t}\n\n\tinput[type='checkbox'] {\n\t\tappearance: none;\n\t\tbackground-color: #fff;\n\t\tcursor: pointer;\n\t\ttransition: 0.5s;\n\t}\n\n\tinput[type='checkbox'].kol-disabled:before {\n\t\tcursor: not-allowed;\n\t}\n\n\tinput[type='checkbox']:before {\n\t\tcontent: '';\n\t\tcursor: pointer;\n\t}\n\n\t.default kol-icon {\n\t\tdisplay: none;\n\t}\n\n\tkol-input.required .tooltip-content .span-label::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.button {\n\t\tdisplay: grid;\n\t\tgrid-template-columns: var(--a11y-min-size) auto;\n\t\tgrid-template-areas: 'error error' 'input label' 'hint hint';\n\t}\n\n\t.button[tabindex]:focus {\n\t\t\n\t\tcursor: inherit;\n\t}\n\n\t.button input {\n\t\tdisplay: none;\n\t}\n\n\t.button > .error {\n\t\tgrid-area: error;\n\t}\n\n\t.button > label {\n\t\tgrid-area: label;\n\t}\n\n\t.button > .input {\n\t\tgrid-area: input;\n\t}\n\n\t.button > .hint {\n\t\tgrid-area: hint;\n\t}\n\n\t.button .icon {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: var(--a11y-min-size);\n\t\theight: var(--a11y-min-size);\n\t}\n}\n\n@layer kol-component {\n\t.default input[type='checkbox'] {\n\t\theight: 1.5em;\n\t\twidth: 1.5em;\n\t}\n\n\t.default input[type='checkbox']:before {\n\t\tdisplay: block;\n\t\theight: 1.5em;\n\t\tposition: relative;\n\t\twidth: 1.5em;\n\t}\n\n\t.default input[type='checkbox']:checked:before {\n\t\tborder-radius: 1px;\n\t\tborder-style: solid;\n\t\tborder-width: 0 3px 3px 0;\n\t\theight: 0.75em;\n\t\tleft: calc(0.375em - 2px);\n\t\ttransform: rotate(40deg) translate(-50%, -50%);\n\t\ttop: calc(0.7125em - 2px);\n\t\twidth: 0.375em;\n\t}\n\n\t.default input[type='checkbox']:indeterminate:before {\n\t\tbackground-color: #000;\n\t\theight: 0.2em;\n\t\tleft: 0.24em;\n\t\ttop: 0.575em;\n\t\twidth: 0.8em;\n\t}\n}\n\n@layer kol-component {\n\t.switch .input {\n\t\tposition: relative;\n\t}\n\n\t.switch input[type='checkbox'] {\n\t\tdisplay: inline-block;\n\t\theight: 1.7em;\n\t\tmin-width: 3.2em;\n\t\tposition: relative;\n\t\twidth: 3.2em;\n\t}\n\n\t.switch input[type='checkbox']::before {\n\t\tbackground-color: #000;\n\t\theight: 1.2em;\n\t\tleft: calc(0.25em - 2px);\n\t\ttop: calc(0.25em - 2px);\n\t\tposition: absolute;\n\t\ttransition: 0.5s;\n\t\twidth: 1.2em;\n\t}\n\n\t.switch input[type='checkbox']:checked::before {\n\t\ttransform: translateX(1.5em);\n\t}\n\n\t.switch input[type='checkbox']:indeterminate::before {\n\t\ttransform: translateX(0.75em);\n\t}\n\n\t.switch .icon {\n\t\tcursor: pointer;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 1.2em;\n\t\theight: 1.2em;\n\t\tposition: absolute;\n\t\tz-index: 1;\n\t\ttop: 50%;\n\t\tleft: 4px;\n\t\ttransform: translate(0, -50%);\n\t\ttransition: 0.5s;\n\t\tcolor: #000;\n\t}\n\n\t.switch:has(input:checked) .icon {\n\t\ttransform: translate(1.5em, -50%);\n\t}\n\n\t.switch:has(input:indeterminate) .icon {\n\t\ttransform: translate(0.75em, -50%);\n\t}\n}";
|
|
13021
13036
|
|
|
13022
13037
|
class KolInputCheckbox {
|
|
13023
13038
|
render() {
|
|
@@ -13179,7 +13194,7 @@ class KolInputCheckbox {
|
|
|
13179
13194
|
"_variant": ["validateVariant"]
|
|
13180
13195
|
}; }
|
|
13181
13196
|
static get style() { return {
|
|
13182
|
-
default: defaultStyleCss$
|
|
13197
|
+
default: defaultStyleCss$t
|
|
13183
13198
|
}; }
|
|
13184
13199
|
static get cmpMeta() { return {
|
|
13185
13200
|
"$flags$": 41,
|
|
@@ -13304,7 +13319,7 @@ class InputColorController extends InputIconController {
|
|
|
13304
13319
|
}
|
|
13305
13320
|
}
|
|
13306
13321
|
|
|
13307
|
-
const defaultStyleCss$
|
|
13322
|
+
const defaultStyleCss$s = "@layer kol-global {\n\t\n\t.sc-kol-input-color-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-input-color-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.required label > span::after,\n\t.required legend > span::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-input-color-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tinput,\n\ttextarea {\n\t\tcursor: text;\n\t}\n\n\tinput[type='checkbox'],\n\tinput[type='color'],\n\tinput[type='file'],\n\tinput[type='radio'],\n\tinput[type='range'],\n\tlabel,\n\toption,\n\tselect {\n\t\tcursor: pointer;\n\t}\n\n\t\n\t\n\t\n\tinput[type='color'],\n\tinput[type='date'],\n\tinput[type='datetime-local'],\n\tinput[type='email'],\n\tinput[type='file'],\n\tinput[type='month'],\n\tinput[type='number'],\n\tinput[type='password'],\n\tinput[type='search'],\n\tinput[type='tel'],\n\tinput[type='text'],\n\tinput[type='time'],\n\tinput[type='url'],\n\tinput[type='week'],\n\tselect,\n\tselect[multiple] option,\n\ttextarea {\n\t\tfont-size: 1rem;\n\t\twidth: 100%;\n\t}\n\n\t\n\tinput[type='file'] {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 10) 0.5em;\n\t}\n\n\t\n\tselect[multiple] option {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 2) 0.5em;\n\t}\n\n\tkol-input.disabled :is(button, input, label, option, select, textarea) {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}\n\n@layer kol-component {\n\tkol-input {\n\t\tdisplay: grid;\n\t}\n\n\tkol-input .input-slot {\n\t\tflex-grow: 1;\n\t}\n\n\tinput:not([type='checkbox'], [type='radio']),\n\tselect:not([multiple], [size]) {\n\t\theight: 2.75em;\n\t}\n\n\tinput:focus,\n\toption:focus,\n\tselect:focus,\n\ttextarea:focus {\n\t\toutline: 0;\n\t}\n\n\t.input {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t}\n\n\t.input > kol-icon {\n\t\tdisplay: grid;\n\t\theight: var(--a11y-min-size);\n\t\tplace-items: center;\n\t}\n\n\tkol-input.required .input-tooltip .span-label::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\tdiv.input {\n\t\tcursor: pointer;\n\t}\n\n\t.error.hidden {\n\t\tdisplay: none;\n\t}\n}";
|
|
13308
13323
|
|
|
13309
13324
|
class KolInputColor {
|
|
13310
13325
|
render() {
|
|
@@ -13436,7 +13451,7 @@ class KolInputColor {
|
|
|
13436
13451
|
"_value": ["validateValue"]
|
|
13437
13452
|
}; }
|
|
13438
13453
|
static get style() { return {
|
|
13439
|
-
default: defaultStyleCss$
|
|
13454
|
+
default: defaultStyleCss$s
|
|
13440
13455
|
}; }
|
|
13441
13456
|
static get cmpMeta() { return {
|
|
13442
13457
|
"$flags$": 41,
|
|
@@ -13621,7 +13636,7 @@ InputDateController.isoTimeRegex = /^[0-2]\d:[0-5]\d(:[0-5]\d(?:\.\d+)?)?/;
|
|
|
13621
13636
|
InputDateController.isoWeekRegex = /^\d{4}-W(?:[0-4]\d|5[0-3])$/;
|
|
13622
13637
|
InputDateController.DEFAULT_MAX_DATE = new Date(9999, 11, 31, 23, 59, 59);
|
|
13623
13638
|
|
|
13624
|
-
const defaultStyleCss$
|
|
13639
|
+
const defaultStyleCss$r = "@layer kol-global {\n\t\n\t.sc-kol-input-date-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-input-date-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.required label > span::after,\n\t.required legend > span::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-input-date-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tinput,\n\ttextarea {\n\t\tcursor: text;\n\t}\n\n\tinput[type='checkbox'],\n\tinput[type='color'],\n\tinput[type='file'],\n\tinput[type='radio'],\n\tinput[type='range'],\n\tlabel,\n\toption,\n\tselect {\n\t\tcursor: pointer;\n\t}\n\n\t\n\t\n\t\n\tinput[type='color'],\n\tinput[type='date'],\n\tinput[type='datetime-local'],\n\tinput[type='email'],\n\tinput[type='file'],\n\tinput[type='month'],\n\tinput[type='number'],\n\tinput[type='password'],\n\tinput[type='search'],\n\tinput[type='tel'],\n\tinput[type='text'],\n\tinput[type='time'],\n\tinput[type='url'],\n\tinput[type='week'],\n\tselect,\n\tselect[multiple] option,\n\ttextarea {\n\t\tfont-size: 1rem;\n\t\twidth: 100%;\n\t}\n\n\t\n\tinput[type='file'] {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 10) 0.5em;\n\t}\n\n\t\n\tselect[multiple] option {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 2) 0.5em;\n\t}\n\n\tkol-input.disabled :is(button, input, label, option, select, textarea) {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}\n\n@layer kol-component {\n\tkol-input {\n\t\tdisplay: grid;\n\t}\n\n\tkol-input .input-slot {\n\t\tflex-grow: 1;\n\t}\n\n\tinput:not([type='checkbox'], [type='radio']),\n\tselect:not([multiple], [size]) {\n\t\theight: 2.75em;\n\t}\n\n\tinput:focus,\n\toption:focus,\n\tselect:focus,\n\ttextarea:focus {\n\t\toutline: 0;\n\t}\n\n\t.input {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t}\n\n\t.input > kol-icon {\n\t\tdisplay: grid;\n\t\theight: var(--a11y-min-size);\n\t\tplace-items: center;\n\t}\n\n\tkol-input.required .input-tooltip .span-label::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\tkol-input-number {\n\t\tdisplay: block;\n\t}\n\n\t.error.hidden {\n\t\tdisplay: none;\n\t}\n}";
|
|
13625
13640
|
|
|
13626
13641
|
class KolInputDate {
|
|
13627
13642
|
render() {
|
|
@@ -13802,7 +13817,7 @@ class KolInputDate {
|
|
|
13802
13817
|
"_value": ["validateValue"]
|
|
13803
13818
|
}; }
|
|
13804
13819
|
static get style() { return {
|
|
13805
|
-
default: defaultStyleCss$
|
|
13820
|
+
default: defaultStyleCss$r
|
|
13806
13821
|
}; }
|
|
13807
13822
|
static get cmpMeta() { return {
|
|
13808
13823
|
"$flags$": 41,
|
|
@@ -13987,7 +14002,7 @@ class InputEmailController extends InputTextEmailController {
|
|
|
13987
14002
|
}
|
|
13988
14003
|
}
|
|
13989
14004
|
|
|
13990
|
-
const defaultStyleCss$
|
|
14005
|
+
const defaultStyleCss$q = "@layer kol-global {\n\t\n\t.sc-kol-input-email-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-input-email-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.required label > span::after,\n\t.required legend > span::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-input-email-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tinput,\n\ttextarea {\n\t\tcursor: text;\n\t}\n\n\tinput[type='checkbox'],\n\tinput[type='color'],\n\tinput[type='file'],\n\tinput[type='radio'],\n\tinput[type='range'],\n\tlabel,\n\toption,\n\tselect {\n\t\tcursor: pointer;\n\t}\n\n\t\n\t\n\t\n\tinput[type='color'],\n\tinput[type='date'],\n\tinput[type='datetime-local'],\n\tinput[type='email'],\n\tinput[type='file'],\n\tinput[type='month'],\n\tinput[type='number'],\n\tinput[type='password'],\n\tinput[type='search'],\n\tinput[type='tel'],\n\tinput[type='text'],\n\tinput[type='time'],\n\tinput[type='url'],\n\tinput[type='week'],\n\tselect,\n\tselect[multiple] option,\n\ttextarea {\n\t\tfont-size: 1rem;\n\t\twidth: 100%;\n\t}\n\n\t\n\tinput[type='file'] {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 10) 0.5em;\n\t}\n\n\t\n\tselect[multiple] option {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 2) 0.5em;\n\t}\n\n\tkol-input.disabled :is(button, input, label, option, select, textarea) {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}\n\n@layer kol-component {\n\tkol-input {\n\t\tdisplay: grid;\n\t}\n\n\tkol-input .input-slot {\n\t\tflex-grow: 1;\n\t}\n\n\tinput:not([type='checkbox'], [type='radio']),\n\tselect:not([multiple], [size]) {\n\t\theight: 2.75em;\n\t}\n\n\tinput:focus,\n\toption:focus,\n\tselect:focus,\n\ttextarea:focus {\n\t\toutline: 0;\n\t}\n\n\t.input {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t}\n\n\t.input > kol-icon {\n\t\tdisplay: grid;\n\t\theight: var(--a11y-min-size);\n\t\tplace-items: center;\n\t}\n\n\tkol-input.required .input-tooltip .span-label::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.error.hidden {\n\t\tdisplay: none;\n\t}\n}";
|
|
13991
14006
|
|
|
13992
14007
|
class KolInputEmail {
|
|
13993
14008
|
render() {
|
|
@@ -14169,7 +14184,7 @@ class KolInputEmail {
|
|
|
14169
14184
|
"_value": ["validateValue"]
|
|
14170
14185
|
}; }
|
|
14171
14186
|
static get style() { return {
|
|
14172
|
-
default: defaultStyleCss$
|
|
14187
|
+
default: defaultStyleCss$q
|
|
14173
14188
|
}; }
|
|
14174
14189
|
static get cmpMeta() { return {
|
|
14175
14190
|
"$flags$": 41,
|
|
@@ -14249,7 +14264,7 @@ class InputFileController extends InputIconController {
|
|
|
14249
14264
|
}
|
|
14250
14265
|
}
|
|
14251
14266
|
|
|
14252
|
-
const defaultStyleCss$
|
|
14267
|
+
const defaultStyleCss$p = "@layer kol-global {\n\t\n\t.sc-kol-input-file-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-input-file-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.required label > span::after,\n\t.required legend > span::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-input-file-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tinput,\n\ttextarea {\n\t\tcursor: text;\n\t}\n\n\tinput[type='checkbox'],\n\tinput[type='color'],\n\tinput[type='file'],\n\tinput[type='radio'],\n\tinput[type='range'],\n\tlabel,\n\toption,\n\tselect {\n\t\tcursor: pointer;\n\t}\n\n\t\n\t\n\t\n\tinput[type='color'],\n\tinput[type='date'],\n\tinput[type='datetime-local'],\n\tinput[type='email'],\n\tinput[type='file'],\n\tinput[type='month'],\n\tinput[type='number'],\n\tinput[type='password'],\n\tinput[type='search'],\n\tinput[type='tel'],\n\tinput[type='text'],\n\tinput[type='time'],\n\tinput[type='url'],\n\tinput[type='week'],\n\tselect,\n\tselect[multiple] option,\n\ttextarea {\n\t\tfont-size: 1rem;\n\t\twidth: 100%;\n\t}\n\n\t\n\tinput[type='file'] {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 10) 0.5em;\n\t}\n\n\t\n\tselect[multiple] option {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 2) 0.5em;\n\t}\n\n\tkol-input.disabled :is(button, input, label, option, select, textarea) {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}\n\n@layer kol-component {\n\tkol-input {\n\t\tdisplay: grid;\n\t}\n\n\tkol-input .input-slot {\n\t\tflex-grow: 1;\n\t}\n\n\tinput:not([type='checkbox'], [type='radio']),\n\tselect:not([multiple], [size]) {\n\t\theight: 2.75em;\n\t}\n\n\tinput:focus,\n\toption:focus,\n\tselect:focus,\n\ttextarea:focus {\n\t\toutline: 0;\n\t}\n\n\t.input {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t}\n\n\t.input > kol-icon {\n\t\tdisplay: grid;\n\t\theight: var(--a11y-min-size);\n\t\tplace-items: center;\n\t}\n\n\tkol-input.required .input-tooltip .span-label::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\tlabel input[type='file']::-webkit-file-upload-button {\n\t\tdisplay: none;\n\t}\n\n\tlabel input[type='file']:before {\n\t\tcontent: 'Datei auswählen';\n\t}\n\n\tlabel input[multiple]:before {\n\t\tcontent: 'Dateien auswählen';\n\t}\n\n\tdiv.input {\n\t\tcursor: pointer;\n\t}\n\n\t.error.hidden {\n\t\tdisplay: none;\n\t}\n}";
|
|
14253
14268
|
|
|
14254
14269
|
class KolInputFile {
|
|
14255
14270
|
render() {
|
|
@@ -14395,7 +14410,7 @@ class KolInputFile {
|
|
|
14395
14410
|
"_value": ["validateValue"]
|
|
14396
14411
|
}; }
|
|
14397
14412
|
static get style() { return {
|
|
14398
|
-
default: defaultStyleCss$
|
|
14413
|
+
default: defaultStyleCss$p
|
|
14399
14414
|
}; }
|
|
14400
14415
|
static get cmpMeta() { return {
|
|
14401
14416
|
"$flags$": 41,
|
|
@@ -14524,7 +14539,7 @@ class InputNumberController extends InputIconController {
|
|
|
14524
14539
|
}
|
|
14525
14540
|
}
|
|
14526
14541
|
|
|
14527
|
-
const defaultStyleCss$
|
|
14542
|
+
const defaultStyleCss$o = "@layer kol-global {\n\t\n\t.sc-kol-input-number-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-input-number-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.required label > span::after,\n\t.required legend > span::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-input-number-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tinput,\n\ttextarea {\n\t\tcursor: text;\n\t}\n\n\tinput[type='checkbox'],\n\tinput[type='color'],\n\tinput[type='file'],\n\tinput[type='radio'],\n\tinput[type='range'],\n\tlabel,\n\toption,\n\tselect {\n\t\tcursor: pointer;\n\t}\n\n\t\n\t\n\t\n\tinput[type='color'],\n\tinput[type='date'],\n\tinput[type='datetime-local'],\n\tinput[type='email'],\n\tinput[type='file'],\n\tinput[type='month'],\n\tinput[type='number'],\n\tinput[type='password'],\n\tinput[type='search'],\n\tinput[type='tel'],\n\tinput[type='text'],\n\tinput[type='time'],\n\tinput[type='url'],\n\tinput[type='week'],\n\tselect,\n\tselect[multiple] option,\n\ttextarea {\n\t\tfont-size: 1rem;\n\t\twidth: 100%;\n\t}\n\n\t\n\tinput[type='file'] {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 10) 0.5em;\n\t}\n\n\t\n\tselect[multiple] option {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 2) 0.5em;\n\t}\n\n\tkol-input.disabled :is(button, input, label, option, select, textarea) {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}\n\n@layer kol-component {\n\tkol-input {\n\t\tdisplay: grid;\n\t}\n\n\tkol-input .input-slot {\n\t\tflex-grow: 1;\n\t}\n\n\tinput:not([type='checkbox'], [type='radio']),\n\tselect:not([multiple], [size]) {\n\t\theight: 2.75em;\n\t}\n\n\tinput:focus,\n\toption:focus,\n\tselect:focus,\n\ttextarea:focus {\n\t\toutline: 0;\n\t}\n\n\t.input {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t}\n\n\t.input > kol-icon {\n\t\tdisplay: grid;\n\t\theight: var(--a11y-min-size);\n\t\tplace-items: center;\n\t}\n\n\tkol-input.required .input-tooltip .span-label::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.error.hidden {\n\t\tdisplay: none;\n\t}\n}";
|
|
14528
14543
|
|
|
14529
14544
|
class KolInputNumber {
|
|
14530
14545
|
render() {
|
|
@@ -14706,7 +14721,7 @@ class KolInputNumber {
|
|
|
14706
14721
|
"_value": ["validateValue"]
|
|
14707
14722
|
}; }
|
|
14708
14723
|
static get style() { return {
|
|
14709
|
-
default: defaultStyleCss$
|
|
14724
|
+
default: defaultStyleCss$o
|
|
14710
14725
|
}; }
|
|
14711
14726
|
static get cmpMeta() { return {
|
|
14712
14727
|
"$flags$": 41,
|
|
@@ -14746,7 +14761,7 @@ class KolInputNumber {
|
|
|
14746
14761
|
}; }
|
|
14747
14762
|
}
|
|
14748
14763
|
|
|
14749
|
-
const defaultStyleCss$
|
|
14764
|
+
const defaultStyleCss$n = "@layer kol-global {\n\t\n\t.sc-kol-input-password-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-input-password-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.required label > span::after,\n\t.required legend > span::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-input-password-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tinput,\n\ttextarea {\n\t\tcursor: text;\n\t}\n\n\tinput[type='checkbox'],\n\tinput[type='color'],\n\tinput[type='file'],\n\tinput[type='radio'],\n\tinput[type='range'],\n\tlabel,\n\toption,\n\tselect {\n\t\tcursor: pointer;\n\t}\n\n\t\n\t\n\t\n\tinput[type='color'],\n\tinput[type='date'],\n\tinput[type='datetime-local'],\n\tinput[type='email'],\n\tinput[type='file'],\n\tinput[type='month'],\n\tinput[type='number'],\n\tinput[type='password'],\n\tinput[type='search'],\n\tinput[type='tel'],\n\tinput[type='text'],\n\tinput[type='time'],\n\tinput[type='url'],\n\tinput[type='week'],\n\tselect,\n\tselect[multiple] option,\n\ttextarea {\n\t\tfont-size: 1rem;\n\t\twidth: 100%;\n\t}\n\n\t\n\tinput[type='file'] {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 10) 0.5em;\n\t}\n\n\t\n\tselect[multiple] option {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 2) 0.5em;\n\t}\n\n\tkol-input.disabled :is(button, input, label, option, select, textarea) {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}\n\n@layer kol-component {\n\tkol-input {\n\t\tdisplay: grid;\n\t}\n\n\tkol-input .input-slot {\n\t\tflex-grow: 1;\n\t}\n\n\tinput:not([type='checkbox'], [type='radio']),\n\tselect:not([multiple], [size]) {\n\t\theight: 2.75em;\n\t}\n\n\tinput:focus,\n\toption:focus,\n\tselect:focus,\n\ttextarea:focus {\n\t\toutline: 0;\n\t}\n\n\t.input {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t}\n\n\t.input > kol-icon {\n\t\tdisplay: grid;\n\t\theight: var(--a11y-min-size);\n\t\tplace-items: center;\n\t}\n\n\tkol-input.required .input-tooltip .span-label::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.error.hidden {\n\t\tdisplay: none;\n\t}\n}";
|
|
14750
14765
|
|
|
14751
14766
|
class KolInputPassword {
|
|
14752
14767
|
render() {
|
|
@@ -14922,7 +14937,7 @@ class KolInputPassword {
|
|
|
14922
14937
|
"_value": ["validateValue"]
|
|
14923
14938
|
}; }
|
|
14924
14939
|
static get style() { return {
|
|
14925
|
-
default: defaultStyleCss$
|
|
14940
|
+
default: defaultStyleCss$n
|
|
14926
14941
|
}; }
|
|
14927
14942
|
static get cmpMeta() { return {
|
|
14928
14943
|
"$flags$": 41,
|
|
@@ -14961,7 +14976,7 @@ class KolInputPassword {
|
|
|
14961
14976
|
}; }
|
|
14962
14977
|
}
|
|
14963
14978
|
|
|
14964
|
-
const defaultStyleCss$
|
|
14979
|
+
const defaultStyleCss$m = "@layer kol-global {\n\t\n\t.sc-kol-input-radio-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-input-radio-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.required label > span::after,\n\t.required legend > span::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-input-radio-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tinput,\n\ttextarea {\n\t\tcursor: text;\n\t}\n\n\tinput[type='checkbox'],\n\tinput[type='color'],\n\tinput[type='file'],\n\tinput[type='radio'],\n\tinput[type='range'],\n\tlabel,\n\toption,\n\tselect {\n\t\tcursor: pointer;\n\t}\n\n\t\n\t\n\t\n\tinput[type='color'],\n\tinput[type='date'],\n\tinput[type='datetime-local'],\n\tinput[type='email'],\n\tinput[type='file'],\n\tinput[type='month'],\n\tinput[type='number'],\n\tinput[type='password'],\n\tinput[type='search'],\n\tinput[type='tel'],\n\tinput[type='text'],\n\tinput[type='time'],\n\tinput[type='url'],\n\tinput[type='week'],\n\tselect,\n\tselect[multiple] option,\n\ttextarea {\n\t\tfont-size: 1rem;\n\t\twidth: 100%;\n\t}\n\n\t\n\tinput[type='file'] {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 10) 0.5em;\n\t}\n\n\t\n\tselect[multiple] option {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 2) 0.5em;\n\t}\n\n\tkol-input.disabled :is(button, input, label, option, select, textarea) {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-input-radio-default-h {\n\t\t--border-width: 2px;\n\t\t--input-size: 1.5em;\n\t}\n\n\tkol-input .icons {\n\t\tdisplay: none;\n\t}\n\n\tlabel {\n\t\tcursor: pointer;\n\t}\n\n\tinput {\n\t\tappearance: none;\n\t\tborder-width: var(--border-width);\n\t\tborder-style: solid;\n\t\tborder-radius: 100%;\n\t\tcursor: pointer;\n\t\tdisplay: flex;\n\t\theight: var(--input-size);\n\t\tmargin: 0;\n\t\tmin-height: var(--input-size);\n\t\tmin-width: var(--input-size);\n\t\tpadding: 0;\n\t\twidth: var(--input-size);\n\t}\n\n\tinput:before {\n\t\tborder-radius: 100%;\n\t\tcontent: '';\n\t\tmargin: auto;\n\t\theight: calc(var(--input-size) / 2);\n\t\twidth: calc(var(--input-size) / 2);\n\t}\n\n\tinput:checked:before {\n\t\tbackground-color: #000;\n\t}\n\n\tfieldset {\n\t\tdisplay: flex;\n\t}\n\n\tfieldset.vertical {\n\t\tflex-direction: column;\n\t}\n\n\tfieldset .input-slot {\n\t\talign-items: center;\n\t\tdisplay: flex;\n\t}\n\n\t\n\t.required label > span::after {\n\t\tcontent: '';\n\t}\n\n\t.error.hidden {\n\t\tdisplay: none;\n\t}\n}";
|
|
14965
14980
|
|
|
14966
14981
|
class KolInputRadio {
|
|
14967
14982
|
render() {
|
|
@@ -15114,7 +15129,7 @@ class KolInputRadio {
|
|
|
15114
15129
|
"_value": ["validateValue"]
|
|
15115
15130
|
}; }
|
|
15116
15131
|
static get style() { return {
|
|
15117
|
-
default: defaultStyleCss$
|
|
15132
|
+
default: defaultStyleCss$m
|
|
15118
15133
|
}; }
|
|
15119
15134
|
static get cmpMeta() { return {
|
|
15120
15135
|
"$flags$": 41,
|
|
@@ -15194,7 +15209,7 @@ class InputRangeController extends InputIconController {
|
|
|
15194
15209
|
}
|
|
15195
15210
|
}
|
|
15196
15211
|
|
|
15197
|
-
const defaultStyleCss$
|
|
15212
|
+
const defaultStyleCss$l = "@layer kol-global {\n\t\n\t.sc-kol-input-range-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-input-range-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.required label > span::after,\n\t.required legend > span::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-input-range-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tinput,\n\ttextarea {\n\t\tcursor: text;\n\t}\n\n\tinput[type='checkbox'],\n\tinput[type='color'],\n\tinput[type='file'],\n\tinput[type='radio'],\n\tinput[type='range'],\n\tlabel,\n\toption,\n\tselect {\n\t\tcursor: pointer;\n\t}\n\n\t\n\t\n\t\n\tinput[type='color'],\n\tinput[type='date'],\n\tinput[type='datetime-local'],\n\tinput[type='email'],\n\tinput[type='file'],\n\tinput[type='month'],\n\tinput[type='number'],\n\tinput[type='password'],\n\tinput[type='search'],\n\tinput[type='tel'],\n\tinput[type='text'],\n\tinput[type='time'],\n\tinput[type='url'],\n\tinput[type='week'],\n\tselect,\n\tselect[multiple] option,\n\ttextarea {\n\t\tfont-size: 1rem;\n\t\twidth: 100%;\n\t}\n\n\t\n\tinput[type='file'] {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 10) 0.5em;\n\t}\n\n\t\n\tselect[multiple] option {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 2) 0.5em;\n\t}\n\n\tkol-input.disabled :is(button, input, label, option, select, textarea) {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}\n\n@layer kol-component {\n\tkol-input {\n\t\tdisplay: grid;\n\t}\n\n\tkol-input .input-slot {\n\t\tflex-grow: 1;\n\t}\n\n\tinput:not([type='checkbox'], [type='radio']),\n\tselect:not([multiple], [size]) {\n\t\theight: 2.75em;\n\t}\n\n\tinput:focus,\n\toption:focus,\n\tselect:focus,\n\ttextarea:focus {\n\t\toutline: 0;\n\t}\n\n\t.input {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t}\n\n\t.input > kol-icon {\n\t\tdisplay: grid;\n\t\theight: var(--a11y-min-size);\n\t\tplace-items: center;\n\t}\n\n\tkol-input.required .input-tooltip .span-label::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.inputs-wrapper {\n\t\talign-items: center;\n\t\tdisplay: flex;\n\t\tflex-direction: row;\n\t}\n\n\tinput[type='number'] {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t\twidth: var(--kolibri-input-range--input-number--width);\n\t}\n\n\t\n\tinput[type='range'] {\n\t\tappearance: none;\n\t\tbackground-color: #d3d3d3;\n\t\tborder: 1px solid #000;\n\t\tdisplay: inline-block;\n\t\tflex-grow: 1;\n\t\theight: 0.5rem;\n\t\tline-height: 1.5em;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\twidth: 0; \n\t}\n\n\tinput[type='range']::-webkit-slider-thumb {\n\t\tbox-sizing: border-box;\n\t\tbackground-color: #000;\n\t\theight: 20px;\n\t\twidth: 20px;\n\t\tborder-radius: 20px;\n\t\tcursor: pointer;\n\t\t-webkit-appearance: none;\n\t}\n\n\tinput[type='range']::-moz-range-thumb {\n\t\tbox-sizing: border-box;\n\t\tbackground-color: #000;\n\t\theight: 20px;\n\t\twidth: 20px;\n\t\tborder-radius: 20px;\n\t\tcursor: pointer;\n\t\t-moz-appearance: none;\n\t}\n\n\t.error.hidden {\n\t\tdisplay: none;\n\t}\n}\n\n\n@media (prefers-contrast: more) {\n\t/*!@::-webkit-slider-thumb*/.sc-kol-input-range-default::-webkit-slider-thumb {\n\t\toutline: 1px solid currentColor;\n\t}\n}";
|
|
15198
15213
|
|
|
15199
15214
|
class KolInputRange {
|
|
15200
15215
|
render() {
|
|
@@ -15369,7 +15384,7 @@ class KolInputRange {
|
|
|
15369
15384
|
"_value": ["validateValue"]
|
|
15370
15385
|
}; }
|
|
15371
15386
|
static get style() { return {
|
|
15372
|
-
default: defaultStyleCss$
|
|
15387
|
+
default: defaultStyleCss$l
|
|
15373
15388
|
}; }
|
|
15374
15389
|
static get cmpMeta() { return {
|
|
15375
15390
|
"$flags$": 41,
|
|
@@ -15409,7 +15424,7 @@ const validateAlert = (component, value) => {
|
|
|
15409
15424
|
watchBoolean(component, '_alert', value);
|
|
15410
15425
|
};
|
|
15411
15426
|
|
|
15412
|
-
const defaultStyleCss$
|
|
15427
|
+
const defaultStyleCss$k = "@layer kol-global {\n\t\n\t.sc-kol-input-text-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-input-text-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.required label > span::after,\n\t.required legend > span::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-input-text-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tinput,\n\ttextarea {\n\t\tcursor: text;\n\t}\n\n\tinput[type='checkbox'],\n\tinput[type='color'],\n\tinput[type='file'],\n\tinput[type='radio'],\n\tinput[type='range'],\n\tlabel,\n\toption,\n\tselect {\n\t\tcursor: pointer;\n\t}\n\n\t\n\t\n\t\n\tinput[type='color'],\n\tinput[type='date'],\n\tinput[type='datetime-local'],\n\tinput[type='email'],\n\tinput[type='file'],\n\tinput[type='month'],\n\tinput[type='number'],\n\tinput[type='password'],\n\tinput[type='search'],\n\tinput[type='tel'],\n\tinput[type='text'],\n\tinput[type='time'],\n\tinput[type='url'],\n\tinput[type='week'],\n\tselect,\n\tselect[multiple] option,\n\ttextarea {\n\t\tfont-size: 1rem;\n\t\twidth: 100%;\n\t}\n\n\t\n\tinput[type='file'] {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 10) 0.5em;\n\t}\n\n\t\n\tselect[multiple] option {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 2) 0.5em;\n\t}\n\n\tkol-input.disabled :is(button, input, label, option, select, textarea) {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}\n\n@layer kol-component {\n\tkol-input {\n\t\tdisplay: grid;\n\t}\n\n\tkol-input .input-slot {\n\t\tflex-grow: 1;\n\t}\n\n\tinput:not([type='checkbox'], [type='radio']),\n\tselect:not([multiple], [size]) {\n\t\theight: 2.75em;\n\t}\n\n\tinput:focus,\n\toption:focus,\n\tselect:focus,\n\ttextarea:focus {\n\t\toutline: 0;\n\t}\n\n\t.input {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t}\n\n\t.input > kol-icon {\n\t\tdisplay: grid;\n\t\theight: var(--a11y-min-size);\n\t\tplace-items: center;\n\t}\n\n\tkol-input.required .input-tooltip .span-label::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.error.hidden {\n\t\tdisplay: none;\n\t}\n}";
|
|
15413
15428
|
|
|
15414
15429
|
featureHint(`[KolInputText] Pre- und post-Label für Währung usw.`);
|
|
15415
15430
|
class KolInputText {
|
|
@@ -15611,7 +15626,7 @@ class KolInputText {
|
|
|
15611
15626
|
"_value": ["validateValue"]
|
|
15612
15627
|
}; }
|
|
15613
15628
|
static get style() { return {
|
|
15614
|
-
default: defaultStyleCss$
|
|
15629
|
+
default: defaultStyleCss$k
|
|
15615
15630
|
}; }
|
|
15616
15631
|
static get cmpMeta() { return {
|
|
15617
15632
|
"$flags$": 41,
|
|
@@ -15652,7 +15667,7 @@ class KolInputText {
|
|
|
15652
15667
|
}; }
|
|
15653
15668
|
}
|
|
15654
15669
|
|
|
15655
|
-
const defaultStyleCss$
|
|
15670
|
+
const defaultStyleCss$j = "@layer kol-global {\n\t\n\t.sc-kol-kolibri-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-kolibri-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-kolibri-default-h {\n\t\tdisplay: inline-block;\n\t}\n\n\ttext {\n\t\tfont-size: 90px;\n\t\tletter-spacing: normal;\n\t\tword-spacing: normal;\n\t}\n\n\tsvg {\n\t\tmax-height: 100%;\n\t}\n}";
|
|
15656
15671
|
|
|
15657
15672
|
const max$1 = 360;
|
|
15658
15673
|
function degreeToRadians(degree) {
|
|
@@ -15736,7 +15751,7 @@ class KolKolibri {
|
|
|
15736
15751
|
"_labeled": ["validateLabeled"]
|
|
15737
15752
|
}; }
|
|
15738
15753
|
static get style() { return {
|
|
15739
|
-
default: defaultStyleCss$
|
|
15754
|
+
default: defaultStyleCss$j
|
|
15740
15755
|
}; }
|
|
15741
15756
|
static get cmpMeta() { return {
|
|
15742
15757
|
"$flags$": 41,
|
|
@@ -15753,7 +15768,7 @@ class KolKolibri {
|
|
|
15753
15768
|
}; }
|
|
15754
15769
|
}
|
|
15755
15770
|
|
|
15756
|
-
const defaultStyleCss$
|
|
15771
|
+
const defaultStyleCss$i = "@layer kol-global {\n\t\n\t.sc-kol-link-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-link-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-link-default-h {\n\t\tdisplay: inline-block;\n\t}\n\n\t:is(a, button) {\n\t\talign-items: baseline;\n\t\tdisplay: inline-flex;\n\t\tplace-items: center;\n\t\ttext-align: left;\n\t\ttext-decoration-line: underline;\n\t}\n\n\t:is(a, button):is(:focus, :hover) {\n\t\ttext-decoration-thickness: 0.2em;\n\t}\n\n\t.hidden {\n\t\tdisplay: none;\n\t\tvisibility: hidden;\n\t}\n\n\t.skip {\n\t\tleft: -99999px;\n\t\toverflow: hidden;\n\t\tposition: absolute;\n\t\tz-index: 9999999;\n\t\tline-height: 1em;\n\t}\n\n\t.skip:focus {\n\t\tbackground-color: #fff;\n\t\tleft: unset;\n\t\tpadding: 1em;\n\t\tposition: unset;\n\t}\n\n\tkol-icon.external-link-icon {\n\t\tdisplay: inline-flex;\n\t}\n}";
|
|
15757
15772
|
|
|
15758
15773
|
class KolLink {
|
|
15759
15774
|
constructor(hostRef) {
|
|
@@ -15780,7 +15795,7 @@ class KolLink {
|
|
|
15780
15795
|
}
|
|
15781
15796
|
get host() { return getElement(this); }
|
|
15782
15797
|
static get style() { return {
|
|
15783
|
-
default: defaultStyleCss$
|
|
15798
|
+
default: defaultStyleCss$i
|
|
15784
15799
|
}; }
|
|
15785
15800
|
static get cmpMeta() { return {
|
|
15786
15801
|
"$flags$": 41,
|
|
@@ -15805,7 +15820,7 @@ class KolLink {
|
|
|
15805
15820
|
}; }
|
|
15806
15821
|
}
|
|
15807
15822
|
|
|
15808
|
-
const defaultStyleCss$
|
|
15823
|
+
const defaultStyleCss$h = "@layer kol-global {\n\t\n\t.sc-kol-link-button-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-link-button-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-link-button-default-h {\n\t\tdisplay: inline-block;\n\t}\n\t:is(a, button) {\n\t\tdisplay: inline-flex;\n\t\tplace-items: center;\n\t\ttext-align: center;\n\t\ttext-decoration-line: none;\n\t}\n\t\n\t:is(a, button) > kol-span-wc {\n\t\tmargin: auto;\n\t\twidth: 100%;\n\t}\n\t:is(button):disabled {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}";
|
|
15809
15824
|
|
|
15810
15825
|
class KolLinkButton {
|
|
15811
15826
|
constructor(hostRef) {
|
|
@@ -15838,7 +15853,7 @@ class KolLinkButton {
|
|
|
15838
15853
|
}
|
|
15839
15854
|
get host() { return getElement(this); }
|
|
15840
15855
|
static get style() { return {
|
|
15841
|
-
default: defaultStyleCss$
|
|
15856
|
+
default: defaultStyleCss$h
|
|
15842
15857
|
}; }
|
|
15843
15858
|
static get cmpMeta() { return {
|
|
15844
15859
|
"$flags$": 41,
|
|
@@ -15865,7 +15880,7 @@ class KolLinkButton {
|
|
|
15865
15880
|
}; }
|
|
15866
15881
|
}
|
|
15867
15882
|
|
|
15868
|
-
const defaultStyleCss$
|
|
15883
|
+
const defaultStyleCss$g = "@layer kol-global {\n\t\n\t.sc-kol-link-group-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-link-group-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\tul {\n\t\tlist-style: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\tnav.horizontal ul {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t}\n\n\tnav.horizontal li {\n\t\tmargin-left: 1.25rem;\n\t\tmargin-right: 0.25rem;\n\t}\n\n\tnav.horizontal li:first-child {\n\t\tmargin-left: 0;\n\t}\n\n\tnav.horizontal li:last-child {\n\t\tmargin-right: 0;\n\t}\n\n\tnav.vertical li {\n\t\tmargin-left: 1.75rem;\n\t\tmargin-right: 0.5rem;\n\t}\n\n\tli.list-none {\n\t\tlist-style-type: none !important;\n\t\tmargin-left: 0;\n\t}\n}";
|
|
15869
15884
|
|
|
15870
15885
|
const ListItem = (props) => {
|
|
15871
15886
|
const list = [];
|
|
@@ -15956,7 +15971,7 @@ class KolLinkGroup {
|
|
|
15956
15971
|
"_orientation": ["validateOrientation"]
|
|
15957
15972
|
}; }
|
|
15958
15973
|
static get style() { return {
|
|
15959
|
-
default: defaultStyleCss$
|
|
15974
|
+
default: defaultStyleCss$g
|
|
15960
15975
|
}; }
|
|
15961
15976
|
static get cmpMeta() { return {
|
|
15962
15977
|
"$flags$": 41,
|
|
@@ -16333,7 +16348,7 @@ BUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesinstitut für Arzneimittel und Mediz
|
|
|
16333
16348
|
BUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesinstitut für Bevölkerungsforschung'], ['Bundesinstitut', 'für Bevölkerungsforschung']);
|
|
16334
16349
|
BUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesinstitut für Sportwissenschaft'], ['Bundesinstitut', 'für Sportwissenschaft']);
|
|
16335
16350
|
|
|
16336
|
-
const defaultStyleCss$
|
|
16351
|
+
const defaultStyleCss$f = "@layer kol-global {\n\t\n\t.sc-kol-logo-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-logo-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-logo-default-h {\n\t\tdisplay: inline-block;\n\t}\n\n\ttext {\n\t\tfont-size: 16px;\n\t\tletter-spacing: normal;\n\t\tword-spacing: normal;\n\t}\n\n\tsvg {\n\t\tmax-height: 100%;\n\t}\n}";
|
|
16337
16352
|
|
|
16338
16353
|
function enumToArray(enumeration, enumAsMap = new Map()) {
|
|
16339
16354
|
Object.entries(enumeration).map(([key, value]) => {
|
|
@@ -16380,7 +16395,7 @@ class KolLogo {
|
|
|
16380
16395
|
"_org": ["validateOrg"]
|
|
16381
16396
|
}; }
|
|
16382
16397
|
static get style() { return {
|
|
16383
|
-
default: defaultStyleCss$
|
|
16398
|
+
default: defaultStyleCss$f
|
|
16384
16399
|
}; }
|
|
16385
16400
|
static get cmpMeta() { return {
|
|
16386
16401
|
"$flags$": 41,
|
|
@@ -16395,7 +16410,7 @@ class KolLogo {
|
|
|
16395
16410
|
}; }
|
|
16396
16411
|
}
|
|
16397
16412
|
|
|
16398
|
-
const defaultStyleCss$
|
|
16413
|
+
const defaultStyleCss$e = "@layer kol-global {\n\t\n\t.sc-kol-modal-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-modal-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.overlay {\n\t\tbackground-color: rgba(0, 0, 0, 0.33);\n\t\tdisplay: flex;\n\t\theight: 100%;\n\t\tinset: 0;\n\t\tposition: fixed;\n\t\twidth: 100%;\n\t\tz-index: 100;\n\t}\n\n\t.modal {\n\t\tmargin: auto;\n\t\tmax-height: 100%;\n\t\tmax-width: 100%;\n\t}\n}";
|
|
16399
16414
|
|
|
16400
16415
|
class KolModal {
|
|
16401
16416
|
constructor(hostRef) {
|
|
@@ -16486,7 +16501,7 @@ class KolModal {
|
|
|
16486
16501
|
"_width": ["validateWidth"]
|
|
16487
16502
|
}; }
|
|
16488
16503
|
static get style() { return {
|
|
16489
|
-
default: defaultStyleCss$
|
|
16504
|
+
default: defaultStyleCss$e
|
|
16490
16505
|
}; }
|
|
16491
16506
|
static get cmpMeta() { return {
|
|
16492
16507
|
"$flags$": 41,
|
|
@@ -16512,7 +16527,7 @@ const validateHasCompactButton = (component, value) => {
|
|
|
16512
16527
|
watchBoolean(component, '_hasCompactButton', value);
|
|
16513
16528
|
};
|
|
16514
16529
|
|
|
16515
|
-
const defaultStyleCss$
|
|
16530
|
+
const defaultStyleCss$d = "@layer kol-global {\n\t\n\t.sc-kol-nav-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-nav-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-nav-default-h > div {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\tnav {\n\t\twidth: 100%;\n\t}\n\n\t.list {\n\t\tdisplay: flex;\n\t\tlist-style: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\t.list.vertical {\n\t\tflex-direction: column;\n\t}\n\n\t.entry {\n\t\tdisplay: flex;\n\t}\n\n\t.entry kol-button-wc:first-child,\n\t.entry kol-link-wc,\n\t.entry kol-span-wc {\n\t\tflex-grow: 1;\n\t}\n\n\t.entry kol-span-wc {\n\t\tjustify-items: start;\n\t}\n}";
|
|
16516
16531
|
|
|
16517
16532
|
class KolNav {
|
|
16518
16533
|
constructor(hostRef) {
|
|
@@ -16633,7 +16648,7 @@ class KolNav {
|
|
|
16633
16648
|
"_orientation": ["validateOrientation"]
|
|
16634
16649
|
}; }
|
|
16635
16650
|
static get style() { return {
|
|
16636
|
-
default: defaultStyleCss$
|
|
16651
|
+
default: defaultStyleCss$d
|
|
16637
16652
|
}; }
|
|
16638
16653
|
static get cmpMeta() { return {
|
|
16639
16654
|
"$flags$": 41,
|
|
@@ -16658,7 +16673,7 @@ const validateMax = (component, value, options) => {
|
|
|
16658
16673
|
watchNumber(component, '_max', value, options);
|
|
16659
16674
|
};
|
|
16660
16675
|
|
|
16661
|
-
const defaultStyleCss$
|
|
16676
|
+
const defaultStyleCss$c = "@layer kol-global {\n\t\n\t.sc-kol-pagination-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-pagination-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-pagination-default-h {\n\t\talign-items: center;\n\t\tdisplay: grid;\n\t\tgap: 1rem;\n\t\tgrid-template-columns: 1fr auto;\n\t}\n\t.navigation-list {\n\t\talign-items: center;\n\t\tdisplay: inline-flex;\n\t\tflex-wrap: wrap;\n\t\tgap: 0.5em;\n\t\tlist-style: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\t.separator:before {\n\t\tcontent: '•••';\n\t}\n}";
|
|
16662
16677
|
|
|
16663
16678
|
const leftDoubleArrowIcon = {
|
|
16664
16679
|
left: 'codicon codicon-debug-reverse-continue',
|
|
@@ -16782,7 +16797,6 @@ class KolPagination {
|
|
|
16782
16797
|
this._siblingCount = 1;
|
|
16783
16798
|
this._tooltipAlign = 'top';
|
|
16784
16799
|
this._max = undefined;
|
|
16785
|
-
this._variant = 'normal';
|
|
16786
16800
|
this.state = {
|
|
16787
16801
|
_boundaryCount: 1,
|
|
16788
16802
|
_label: translate('kol-pagination'),
|
|
@@ -16800,7 +16814,6 @@ class KolPagination {
|
|
|
16800
16814
|
_pageSizeOptions: [],
|
|
16801
16815
|
_siblingCount: 1,
|
|
16802
16816
|
_max: 0,
|
|
16803
|
-
_variant: 'normal',
|
|
16804
16817
|
};
|
|
16805
16818
|
}
|
|
16806
16819
|
render() {
|
|
@@ -16829,19 +16842,19 @@ class KolPagination {
|
|
|
16829
16842
|
return null;
|
|
16830
16843
|
}
|
|
16831
16844
|
});
|
|
16832
|
-
return (hAsync(Host, null, hAsync("nav", { "aria-label": this.state._label }, hAsync("ul", { class: "navigation-list" }, this.state._hasButtons.first && (hAsync("li", null, hAsync("kol-button", { class: "first", exportparts: "icon", _customClass: this.state._customClass, _disabled: this.state._page <= 1, _icons: leftDoubleArrowIcon, _hideLabel: true, _label: translate('kol-page-first'), _on: this.onGoToFirst,
|
|
16845
|
+
return (hAsync(Host, null, hAsync("nav", { "aria-label": this.state._label }, hAsync("ul", { class: "navigation-list" }, this.state._hasButtons.first && (hAsync("li", null, hAsync("kol-button-wc", { class: "first", exportparts: "icon", _customClass: this.state._customClass, _disabled: this.state._page <= 1, _icons: leftDoubleArrowIcon, _hideLabel: true, _label: translate('kol-page-first'), _on: this.onGoToFirst, _tooltipAlign: this.state._tooltipAlign }))), this.state._hasButtons.previous && (hAsync("li", null, hAsync("kol-button-wc", { class: "previous", exportparts: "icon", _customClass: this.state._customClass, _disabled: this.state._page <= 1, _icons: leftSingleArrow, _hideLabel: true, _label: translate('kol-page-back'), _on: this.onGoBackward, _tooltipAlign: this.state._tooltipAlign }))), pageButtons, this.state._hasButtons.next && (hAsync("li", null, hAsync("kol-button-wc", { class: "next", exportparts: "icon", _customClass: this.state._customClass, _disabled: count <= this.state._page, _icons: rightSingleArrowIcon, _hideLabel: true, _label: translate('kol-page-next'), _on: this.onGoForward, _tooltipAlign: this.state._tooltipAlign }))), this.state._hasButtons.last && (hAsync("li", null, hAsync("kol-button-wc", { class: "last", exportparts: "icon", _customClass: this.state._customClass, _disabled: count <= this.state._page, _icons: rightDoubleArrowIcon, _hideLabel: true, _label: translate('kol-page-last'), _on: this.onGoToEnd, _tooltipAlign: this.state._tooltipAlign }))))), ((_a = this.state._pageSizeOptions) === null || _a === void 0 ? void 0 : _a.length) > 0 && (hAsync("kol-select", { _hideLabel: true, _id: `pagination-size-${this.nonce}`, _label: translate('kol-entries-per-site'), _options: this.state._pageSizeOptions, _on: {
|
|
16833
16846
|
onChange: this.onChangePageSize,
|
|
16834
16847
|
}, _value: [this.state._pageSize] }))));
|
|
16835
16848
|
}
|
|
16836
16849
|
getUnselectedPageButton(page) {
|
|
16837
|
-
return (hAsync("li", null, hAsync("kol-button", { exportparts: "icon", key: `${this.nonce}-${page}`, _customClass: this.state._customClass, _label: `${page}`, _on: {
|
|
16850
|
+
return (hAsync("li", null, hAsync("kol-button-wc", { exportparts: "icon", key: `${this.nonce}-${page}`, _customClass: this.state._customClass, _label: `${page}`, _on: {
|
|
16838
16851
|
onClick: (event) => {
|
|
16839
16852
|
this.onClick(event, page);
|
|
16840
16853
|
},
|
|
16841
|
-
}
|
|
16854
|
+
} })));
|
|
16842
16855
|
}
|
|
16843
16856
|
getSelectedPageButton(page) {
|
|
16844
|
-
return (hAsync("li", null, hAsync("kol-button-wc", { class: "selected", key: `${this.nonce}-selected`, _customClass: this.state._customClass, _disabled: true, _label: `${page}
|
|
16857
|
+
return (hAsync("li", null, hAsync("kol-button-wc", { class: "selected", key: `${this.nonce}-selected`, _customClass: this.state._customClass, _disabled: true, _label: `${page}` })));
|
|
16845
16858
|
}
|
|
16846
16859
|
validateBoundaryCount(value) {
|
|
16847
16860
|
watchNumber(this, '_boundaryCount', Math.max(0, value !== null && value !== void 0 ? value : 1));
|
|
@@ -16940,9 +16953,6 @@ class KolPagination {
|
|
|
16940
16953
|
validateTooltipAlign(value) {
|
|
16941
16954
|
validateTooltipAlign(this, value);
|
|
16942
16955
|
}
|
|
16943
|
-
validateVariant(value) {
|
|
16944
|
-
validateButtonVariant(this, value);
|
|
16945
|
-
}
|
|
16946
16956
|
componentWillLoad() {
|
|
16947
16957
|
this.validateBoundaryCount(this._boundaryCount);
|
|
16948
16958
|
this.validateCustomClass(this._customClass);
|
|
@@ -16955,7 +16965,6 @@ class KolPagination {
|
|
|
16955
16965
|
this.validateSiblingCount(this._siblingCount);
|
|
16956
16966
|
this.validateTooltipAlign(this._tooltipAlign);
|
|
16957
16967
|
this.validateMax(this._max);
|
|
16958
|
-
this.validateVariant(this._variant);
|
|
16959
16968
|
this.validatePage(this._page);
|
|
16960
16969
|
}
|
|
16961
16970
|
disconnectedCallback() {
|
|
@@ -16972,11 +16981,10 @@ class KolPagination {
|
|
|
16972
16981
|
"_pageSizeOptions": ["validatePageSizeOptions"],
|
|
16973
16982
|
"_siblingCount": ["validateSiblingCount"],
|
|
16974
16983
|
"_max": ["validateMax"],
|
|
16975
|
-
"_tooltipAlign": ["validateTooltipAlign"]
|
|
16976
|
-
"_variant": ["validateVariant"]
|
|
16984
|
+
"_tooltipAlign": ["validateTooltipAlign"]
|
|
16977
16985
|
}; }
|
|
16978
16986
|
static get style() { return {
|
|
16979
|
-
default: defaultStyleCss$
|
|
16987
|
+
default: defaultStyleCss$c
|
|
16980
16988
|
}; }
|
|
16981
16989
|
static get cmpMeta() { return {
|
|
16982
16990
|
"$flags$": 41,
|
|
@@ -16993,7 +17001,6 @@ class KolPagination {
|
|
|
16993
17001
|
"_siblingCount": [2, "_sibling-count"],
|
|
16994
17002
|
"_tooltipAlign": [1, "_tooltip-align"],
|
|
16995
17003
|
"_max": [2],
|
|
16996
|
-
"_variant": [1],
|
|
16997
17004
|
"state": [32]
|
|
16998
17005
|
},
|
|
16999
17006
|
"$listeners$": undefined,
|
|
@@ -18393,7 +18400,7 @@ const validateShow = (component, value, hooks) => {
|
|
|
18393
18400
|
watchBoolean(component, '_show', value, hooks);
|
|
18394
18401
|
};
|
|
18395
18402
|
|
|
18396
|
-
const styleCss$1 = ":host{--a11y-min-size:44px
|
|
18403
|
+
const styleCss$1 = "@layer kol-global {\n\t/*\n\t * This file contains all rules for accessibility.\n\t */\n\t:host {\n\t\t/*\n\t\t * Minimum size of interactive elements.\n\t\t */\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t/*\n\t\t * Verdana is an accessible font that can be used without requiring additional loading time.\n\t\t */\n\t\tfont-family: Verdana;\n\t\t/*\n\t\t * This rule enables the word dividing for all texts. That is important for high zoom levels.\n\t\t */\n\t\thyphens: auto;\n\t\t/*\n\t\t * Letter spacing is required for all texts.\n\t\t */\n\t\tletter-spacing: inherit;\n\t\t/*\n\t\t * This rule enables the word dividing for all texts. That is important for high zoom levels.\n\t\t */\n\t\tword-break: break-word;\n\t\t/*\n\t\t * Word spacing is required for all texts.\n\t\t */\n\t\tword-spacing: inherit;\n\t}\n\n\t/*\n\t * All interactive elements should have a minimum size of 44px.\n\t */\n\t/* input:not([type='checkbox'], [type='radio'], [type='range']), */\n\t/* option, */\n\t/* select, */\n\t/* textarea, */\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t/*\n\t * Some interactive elements should not inherit the font-family and font-size.\n\t */\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t/*\n\t\t * All elements should inherit the font family from his parent element.\n\t\t */\n\t\tfont-family: inherit;\n\t\t/*\n\t\t * All elements should inherit the font size from his parent element.\n\t\t */\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t/*\n\t * Dieses CSS stellt sicher, dass der Standard-Style\n\t * von A und Button resettet werden.\n\t */\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; /* 100% needed for custom width from outside */\n\t}\n}\n\n@layer kol-global {\n\t:host {\n\t\t/*\n\t\t * The max-width is needed to prevent the table from overflowing the\n\t\t * parent node, if the table is wider than the parent node.\n\t\t */\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t/*\n\t\t * We prefer to box-sizing: border-box for all elements.\n\t\t */\n\t\tbox-sizing: border-box;\n\t}\n\n\t/* KolSpan is a layout component with icons in all directions and a label text in the middle. */\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t/* The sub span in KolSpan is the horizontal span with icon left and right and the label text in the middle. */\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t/* font-family is NOT inherited all HTML elements. */\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t/* This is the text label. */\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\tkol-popover {\n\t\theight: 0;\n\t\tposition: absolute;\n\t}\n\n\tkol-popover .popover {\n\t\tbackground-color: #fff;\n\t\tmin-height: max-content;\n\t\tmin-width: max-content;\n\t\topacity: 0;\n\t\tposition: absolute;\n\t}\n\n\tkol-popover .hidden {\n\t\tdisplay: none;\n\t}\n\n\tkol-popover .show {\n\t\tanimation: 0.3s ease-in forwards fadeInOpacity;\n\t}\n\n\tkol-popover .disappear {\n\t\tanimation: 0.3s ease-in backwards fadeInOpacity;\n\t}\n\n\tkol-popover .arrow {\n\t\tbackground-color: inherit;\n\t\theight: var(--font-size);\n\t\tposition: absolute;\n\t\trotate: 0.125turn;\n\t\twidth: var(--font-size);\n\t\tz-index: -1;\n\t}\n\n\t@keyframes fadeInOpacity {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n}\n";
|
|
18397
18404
|
|
|
18398
18405
|
class KolPopover {
|
|
18399
18406
|
constructor(hostRef) {
|
|
@@ -18554,7 +18561,7 @@ var KoliBriProgressVariantEnum;
|
|
|
18554
18561
|
KoliBriProgressVariantEnum["cycle-label-value"] = "cycle-label-value";
|
|
18555
18562
|
})(KoliBriProgressVariantEnum || (KoliBriProgressVariantEnum = {}));
|
|
18556
18563
|
|
|
18557
|
-
const defaultStyleCss$
|
|
18564
|
+
const defaultStyleCss$b = "@layer kol-global {\n\t\n\t.sc-kol-progress-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-progress-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\tprogress {\n\t\tdisplay: block;\n\t\theight: 0;\n\t\toverflow: hidden;\n\t\twidth: 0;\n\t}\n\n\t.bar .border {\n\t\tfill: transparent;\n\t\tstroke: black;\n\t}\n\n\t.bar .background {\n\t\tfill: lightgray;\n\t\tstroke: white;\n\t}\n\n\t.bar .progress {\n\t\tfill: #0075ff;\n\t\tstroke: transparent;\n\t\ttransition: 250ms ease-in-out 50ms;\n\t}\n\n\t.cycle .background {\n\t\tfill: transparent;\n\t\tstroke: lightgray;\n\t}\n\n\t.cycle .border {\n\t\tfill: transparent;\n\t\tstroke: black;\n\t}\n\n\t.cycle .whitespace {\n\t\tfill: transparent;\n\t\tstroke: white;\n\t}\n\n\t.cycle .progress {\n\t\tfill: transparent;\n\t\tstroke: #0075ff;\n\t\ttransform-origin: 50% 50%;\n\t\ttransform: rotate(-90deg);\n\t\ttransition: 250ms ease-in-out 50ms;\n\t}\n\n\t\n\t@media (prefers-reduced-motion) {\n\t\t.progress {\n\t\t\ttransition-duration: 0s;\n\t\t\ttransition-delay: 0s;\n\t\t}\n\t}\n}";
|
|
18558
18565
|
|
|
18559
18566
|
const VALID_VARIANTS = Object.keys(KoliBriProgressVariantEnum);
|
|
18560
18567
|
const createProgressSVG = (state) => {
|
|
@@ -18643,7 +18650,7 @@ class KolProcess {
|
|
|
18643
18650
|
"_variant": ["validateVariant"]
|
|
18644
18651
|
}; }
|
|
18645
18652
|
static get style() { return {
|
|
18646
|
-
default: defaultStyleCss$
|
|
18653
|
+
default: defaultStyleCss$b
|
|
18647
18654
|
}; }
|
|
18648
18655
|
static get cmpMeta() { return {
|
|
18649
18656
|
"$flags$": 41,
|
|
@@ -18662,7 +18669,7 @@ class KolProcess {
|
|
|
18662
18669
|
}; }
|
|
18663
18670
|
}
|
|
18664
18671
|
|
|
18665
|
-
const defaultStyleCss$
|
|
18672
|
+
const defaultStyleCss$a = "@layer kol-global {\n\t\n\t.sc-kol-quote-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-quote-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\tcite,\n\tfigure,\n\tq + figcaption {\n\t\tdisplay: inline;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\tblockquote:before {\n\t\tcontent: open-quote;\n\t}\n\n\tblockquote::after {\n\t\tcontent: close-quote;\n\t}\n\n\tcite:before {\n\t\tcontent: '—';\n\t}\n\n\t.block cite:before {\n\t\tpadding-right: 0.5em;\n\t}\n\n\t.inline cite:before {\n\t\tpadding: 0.5em;\n\t}\n}";
|
|
18666
18673
|
|
|
18667
18674
|
class KolQuote {
|
|
18668
18675
|
constructor(hostRef) {
|
|
@@ -18712,7 +18719,7 @@ class KolQuote {
|
|
|
18712
18719
|
"_variant": ["validateVariant"]
|
|
18713
18720
|
}; }
|
|
18714
18721
|
static get style() { return {
|
|
18715
|
-
default: defaultStyleCss$
|
|
18722
|
+
default: defaultStyleCss$a
|
|
18716
18723
|
}; }
|
|
18717
18724
|
static get cmpMeta() { return {
|
|
18718
18725
|
"$flags$": 41,
|
|
@@ -18828,7 +18835,7 @@ class SelectController extends InputIconController {
|
|
|
18828
18835
|
}
|
|
18829
18836
|
}
|
|
18830
18837
|
|
|
18831
|
-
const defaultStyleCss$
|
|
18838
|
+
const defaultStyleCss$9 = "@layer kol-global {\n\t\n\t.sc-kol-select-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-select-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.required label > span::after,\n\t.required legend > span::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-select-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tinput,\n\ttextarea {\n\t\tcursor: text;\n\t}\n\n\tinput[type='checkbox'],\n\tinput[type='color'],\n\tinput[type='file'],\n\tinput[type='radio'],\n\tinput[type='range'],\n\tlabel,\n\toption,\n\tselect {\n\t\tcursor: pointer;\n\t}\n\n\t\n\t\n\t\n\tinput[type='color'],\n\tinput[type='date'],\n\tinput[type='datetime-local'],\n\tinput[type='email'],\n\tinput[type='file'],\n\tinput[type='month'],\n\tinput[type='number'],\n\tinput[type='password'],\n\tinput[type='search'],\n\tinput[type='tel'],\n\tinput[type='text'],\n\tinput[type='time'],\n\tinput[type='url'],\n\tinput[type='week'],\n\tselect,\n\tselect[multiple] option,\n\ttextarea {\n\t\tfont-size: 1rem;\n\t\twidth: 100%;\n\t}\n\n\t\n\tinput[type='file'] {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 10) 0.5em;\n\t}\n\n\t\n\tselect[multiple] option {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 2) 0.5em;\n\t}\n\n\tkol-input.disabled :is(button, input, label, option, select, textarea) {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}\n\n@layer kol-component {\n\tkol-input {\n\t\tdisplay: grid;\n\t}\n\n\tkol-input .input-slot {\n\t\tflex-grow: 1;\n\t}\n\n\tinput:not([type='checkbox'], [type='radio']),\n\tselect:not([multiple], [size]) {\n\t\theight: 2.75em;\n\t}\n\n\tinput:focus,\n\toption:focus,\n\tselect:focus,\n\ttextarea:focus {\n\t\toutline: 0;\n\t}\n\n\t.input {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t}\n\n\t.input > kol-icon {\n\t\tdisplay: grid;\n\t\theight: var(--a11y-min-size);\n\t\tplace-items: center;\n\t}\n\n\tkol-input.required .input-tooltip .span-label::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.error.hidden {\n\t\tdisplay: none;\n\t}\n}";
|
|
18832
18839
|
|
|
18833
18840
|
const isSelected = (valueList, optionValue) => {
|
|
18834
18841
|
return Array.isArray(valueList) && valueList.includes(optionValue);
|
|
@@ -19005,7 +19012,7 @@ class KolSelect {
|
|
|
19005
19012
|
"_value": ["validateValue"]
|
|
19006
19013
|
}; }
|
|
19007
19014
|
static get style() { return {
|
|
19008
|
-
default: defaultStyleCss$
|
|
19015
|
+
default: defaultStyleCss$9
|
|
19009
19016
|
}; }
|
|
19010
19017
|
static get cmpMeta() { return {
|
|
19011
19018
|
"$flags$": 41,
|
|
@@ -19040,7 +19047,7 @@ class KolSelect {
|
|
|
19040
19047
|
}; }
|
|
19041
19048
|
}
|
|
19042
19049
|
|
|
19043
|
-
const defaultStyleCss$
|
|
19050
|
+
const defaultStyleCss$8 = "@layer kol-global {\n\t\n\t.sc-kol-skip-nav-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-skip-nav-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\tul {\n\t\tdisplay: grid;\n\t\tlist-style: none;\n\t\tplace-items: center;\n\t}\n\n\tul li {\n\t\theight: 0;\n\t}\n\n\tkol-link-wc a {\n\t\tleft: -99999px;\n\t\toverflow: hidden;\n\t\tposition: absolute;\n\t\tz-index: 9999999;\n\t\tline-height: 1em;\n\t}\n\n\tkol-link-wc a:focus {\n\t\tbackground-color: #fff;\n\t\tleft: unset;\n\t\tposition: unset;\n\t}\n}";
|
|
19044
19051
|
|
|
19045
19052
|
class KolSkipNav {
|
|
19046
19053
|
constructor(hostRef) {
|
|
@@ -19079,7 +19086,7 @@ class KolSkipNav {
|
|
|
19079
19086
|
"_links": ["validateLinks"]
|
|
19080
19087
|
}; }
|
|
19081
19088
|
static get style() { return {
|
|
19082
|
-
default: defaultStyleCss$
|
|
19089
|
+
default: defaultStyleCss$8
|
|
19083
19090
|
}; }
|
|
19084
19091
|
static get cmpMeta() { return {
|
|
19085
19092
|
"$flags$": 41,
|
|
@@ -19095,7 +19102,7 @@ class KolSkipNav {
|
|
|
19095
19102
|
}; }
|
|
19096
19103
|
}
|
|
19097
19104
|
|
|
19098
|
-
const defaultStyleCss$
|
|
19105
|
+
const defaultStyleCss$7 = "@layer kol-global {\n\t\n\t.sc-kol-span-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-span-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}";
|
|
19099
19106
|
|
|
19100
19107
|
class KolSpan {
|
|
19101
19108
|
constructor(hostRef) {
|
|
@@ -19108,7 +19115,7 @@ class KolSpan {
|
|
|
19108
19115
|
return (hAsync("kol-span-wc", { _icons: this._icons, _hideLabel: this._hideLabel, _label: this._label }, hAsync("slot", { name: "expert", slot: "expert" })));
|
|
19109
19116
|
}
|
|
19110
19117
|
static get style() { return {
|
|
19111
|
-
default: defaultStyleCss$
|
|
19118
|
+
default: defaultStyleCss$7
|
|
19112
19119
|
}; }
|
|
19113
19120
|
static get cmpMeta() { return {
|
|
19114
19121
|
"$flags$": 41,
|
|
@@ -31405,7 +31412,7 @@ const validateSpinVariant = (component, value) => {
|
|
|
31405
31412
|
watchValidator(component, '_variant', (value) => value === 'cycle' || value === 'dot' || value === 'none', new Set(['cycle', 'dot', 'none']), value);
|
|
31406
31413
|
};
|
|
31407
31414
|
|
|
31408
|
-
const defaultStyleCss$
|
|
31415
|
+
const defaultStyleCss$6 = "@layer kol-global {\n\t\n\t.sc-kol-spin-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-spin-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.spin.cycle {\n\t\twidth: 3rem;\n\t\theight: 3rem;\n\t}\n\n\t.spin.cycle > .loader {\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tborder-radius: 50%;\n\t\tposition: relative;\n\t\tanimation: 2s linear infinite rotate;\n\t}\n\n\t.spin.cycle > .loader::before {\n\t\tcontent: '';\n\t\tbox-sizing: border-box;\n\t\tposition: absolute;\n\t\tinset: 0px;\n\t\tborder-radius: 50%;\n\t\tborder: 5px solid #333;\n\t\tanimation: 3s linear infinite prixClipFix;\n\t}\n\n\t@keyframes rotate {\n\t\t100% {\n\t\t\ttransform: rotate(360deg);\n\t\t}\n\t}\n\t@keyframes prixClipFix {\n\t\t0% {\n\t\t\tborder-color: #fff;\n\t\t\tclip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);\n\t\t}\n\t\t25% {\n\t\t\tborder-color: #666;\n\t\t\tclip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);\n\t\t}\n\t\t50% {\n\t\t\tborder-color: #fc0;\n\t\t\tclip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);\n\t\t}\n\t\t75% {\n\t\t\tborder-color: red;\n\t\t\tclip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);\n\t\t}\n\t\t100% {\n\t\t\tborder-color: #000;\n\t\t\tclip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);\n\t\t}\n\t} \n\t@media (prefers-reduced-motion) {\n\t\t.spin.cycle > .loader {\n\t\t\tanimation-duration: 4s;\n\t\t}\n\n\t\t.spin.cycle > .loader::before {\n\t\t\tanimation-duration: 6s;\n\t\t}\n\t}\n}\n\n@layer kol-component {\n\t.spin.dot {\n\t\theight: 1rem;\n\t\twidth: 3rem;\n\t}\n\n\t.spin.dot > span {\n\t\tanimation-timing-function: cubic-bezier(0, 1, 1, 0);\n\t\tborder-radius: 50%;\n\t\tborder: 0.1rem solid #fff;\n\t\theight: 0.8rem;\n\t\tposition: absolute;\n\t\ttop: 0.1rem;\n\t\twidth: 0.8rem;\n\t}\n\n\t.spin.dot > span:first-child {\n\t\tbackground-color: #fc0;\n\t\tz-index: 0;\n\t\tanimation: 1s infinite spin1;\n\t\tleft: 0.1rem;\n\t}\n\n\t.spin.dot > span:nth-child(2) {\n\t\tbackground-color: red;\n\t\tz-index: 1;\n\t\tanimation: 1s infinite spin2;\n\t\tleft: 0.1rem;\n\t}\n\n\t.spin.dot > span:nth-child(3) {\n\t\tbackground-color: #000;\n\t\tz-index: 1;\n\t\tanimation: 1s infinite spin2;\n\t\tleft: 1.1rem;\n\t}\n\n\t.spin.dot > span:nth-child(4) {\n\t\tbackground-color: #666;\n\t\tz-index: 0;\n\t\tanimation: 1s infinite spin3;\n\t\tleft: 2.1rem;\n\t}\n\n\t@keyframes spin1 {\n\t\t0% {\n\t\t\ttransform: scale(0);\n\t\t}\n\t\t100% {\n\t\t\ttransform: scale(1);\n\t\t}\n\t}\n\t@keyframes spin2 {\n\t\t0% {\n\t\t\ttransform: translate(0, 0);\n\t\t}\n\t\t100% {\n\t\t\ttransform: translate(1rem, 0);\n\t\t}\n\t}\n\t@keyframes spin3 {\n\t\t0% {\n\t\t\ttransform: scale(1);\n\t\t}\n\t\t100% {\n\t\t\ttransform: scale(0);\n\t\t}\n\t} \n\t@media (prefers-reduced-motion) {\n\t\t.spin.dot > span:first-child,\n\t\t.spin.dot > span:nth-child(2),\n\t\t.spin.dot > span:nth-child(3),\n\t\t.spin.dot > span:nth-child(4) {\n\t\t\tanimation-duration: 2s;\n\t\t}\n\t}\n}\n\n@layer kol-component {\n\t.spin {\n\t\tdisplay: block;\n\t\tpadding: 0.125rem;\n\t\tposition: relative;\n\t}\n}";
|
|
31409
31416
|
|
|
31410
31417
|
function renderSpin(variant) {
|
|
31411
31418
|
switch (variant) {
|
|
@@ -31449,7 +31456,7 @@ class KolSpin {
|
|
|
31449
31456
|
"_variant": ["validateVariant"]
|
|
31450
31457
|
}; }
|
|
31451
31458
|
static get style() { return {
|
|
31452
|
-
default: defaultStyleCss$
|
|
31459
|
+
default: defaultStyleCss$6
|
|
31453
31460
|
}; }
|
|
31454
31461
|
static get cmpMeta() { return {
|
|
31455
31462
|
"$flags$": 41,
|
|
@@ -31465,7 +31472,7 @@ class KolSpin {
|
|
|
31465
31472
|
}; }
|
|
31466
31473
|
}
|
|
31467
31474
|
|
|
31468
|
-
const defaultStyleCss$
|
|
31475
|
+
const defaultStyleCss$5 = "@layer kol-global {\n\t\n\t.sc-kol-split-button-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-split-button-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-split-button-default-h {\n\t\tdisplay: flex;\n\t\tposition: relative;\n\t}\n\n\t.main-button {\n\t\tflex-grow: 1;\n\t\ttext-align: left;\n\t}\n\n\t.main-button kol-span-wc {\n\t\tplace-items: start;\n\t}\n\n\t.secondary-button button {\n\t\theight: 100%;\n\t}\n\n\t.horizontal-line {\n\t\tbackground-color: rgba(0, 0, 0, 0.2);\n\t\tborder-radius: 2px;\n\t\theight: 70%;\n\t\tmargin-block: auto;\n\t\twidth: 1px;\n\t}\n\n\t\n\t.popover {\n\t\theight: 0;\n\t\tleft: 0;\n\t\tmin-width: 100%;\n\t\toverflow: hidden;\n\t\tposition: absolute;\n\t\ttop: 100%;\n\t\ttransition: height 0.3s ease-in-out;\n\t}\n\n\t.popover-content {\n\t\tinset: 0 0 auto 0;\n\t\tmin-width: 100%;\n\t\tposition: absolute;\n\t}\n}";
|
|
31469
31476
|
|
|
31470
31477
|
class KolSplitButton {
|
|
31471
31478
|
constructor(hostRef) {
|
|
@@ -31540,7 +31547,7 @@ class KolSplitButton {
|
|
|
31540
31547
|
}, _ariaControls: this._ariaControls, _ariaExpanded: this._ariaExpanded, _ariaSelected: this._ariaSelected, _customClass: this._customClass, _disabled: this._disabled, _icons: this._icons, _hideLabel: this._hideLabel, _label: this._label, _name: this._name, _on: this.clickButtonHandler, _role: this._role, _syncValueBySelector: this._syncValueBySelector, _tabIndex: this._tabIndex, _tooltipAlign: this._tooltipAlign, _type: this._type, _value: this._value, _variant: this._variant }), hAsync("div", { class: "horizontal-line" }), hAsync("kol-button-wc", { class: "secondary-button", _disabled: this._disabled, _hideLabel: true, _icons: "codicon codicon-triangle-down", _label: `dropdown ${this.state._show ? 'schließen' : 'öffnen'}`, _on: this.clickToggleHandler }), hAsync("div", { class: "popover", ref: this.catchDropdownElements }, hAsync("div", { class: "popover-content" }, hAsync("slot", null)))));
|
|
31541
31548
|
}
|
|
31542
31549
|
static get style() { return {
|
|
31543
|
-
default: defaultStyleCss$
|
|
31550
|
+
default: defaultStyleCss$5
|
|
31544
31551
|
}; }
|
|
31545
31552
|
static get cmpMeta() { return {
|
|
31546
31553
|
"$flags$": 41,
|
|
@@ -31615,7 +31622,7 @@ class KolSymbol {
|
|
|
31615
31622
|
}; }
|
|
31616
31623
|
}
|
|
31617
31624
|
|
|
31618
|
-
const defaultStyleCss$
|
|
31625
|
+
const defaultStyleCss$4 = "@layer kol-global {\n\t\n\t.sc-kol-table-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-table-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-table-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-table-default-h {\n\t\tdisplay: grid;\n\t}\n\n\t.sc-kol-table-default-h > div.table {\n\t\tmax-width: 100%;\n\t\torder: 1;\n\t\toverflow-x: auto;\n\t\toverflow-y: hidden;\n\t}\n\n\t.sc-kol-table-default-h > div.table table {\n\t\twidth: 100%;\n\t}\n\n\tth > div {\n\t\tdisplay: grid;\n\t\tgrid-template-columns: 1fr auto;\n\t\tplace-items: center;\n\t}\n\n\tdiv.pagination {\n\t\torder: 2;\n\t}\n\n\tdiv.pagination,\n\tdiv.pagination > div:last-child {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t@media (min-width: 1024px) {\n\t\tdiv.pagination,\n\t\tdiv.pagination > div:last-child {\n\t\t\tgrid-auto-flow: column;\n\t\t}\n\n\t\tdiv.pagination kol-pagination {\n\t\t\tdisplay: flex;\n\t\t}\n\t}\n}";
|
|
31619
31626
|
|
|
31620
31627
|
const PAGINATION_OPTIONS = [10, 20, 50, 100];
|
|
31621
31628
|
const CELL_REFS = new Map();
|
|
@@ -32127,7 +32134,7 @@ class KolTable {
|
|
|
32127
32134
|
"_pagination": ["validatePagination"]
|
|
32128
32135
|
}; }
|
|
32129
32136
|
static get style() { return {
|
|
32130
|
-
default: defaultStyleCss$
|
|
32137
|
+
default: defaultStyleCss$4
|
|
32131
32138
|
}; }
|
|
32132
32139
|
static get cmpMeta() { return {
|
|
32133
32140
|
"$flags$": 41,
|
|
@@ -32147,7 +32154,7 @@ class KolTable {
|
|
|
32147
32154
|
}; }
|
|
32148
32155
|
}
|
|
32149
32156
|
|
|
32150
|
-
const defaultStyleCss$
|
|
32157
|
+
const defaultStyleCss$3 = "@layer kol-global {\n\t\n\t.sc-kol-tabs-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-tabs-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-tabs-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tkol-button-group-wc {\n\t\tdisplay: inline-flex;\n\t\tflex-wrap: wrap;\n\t}\n\n\tkol-button-group-wc button {\n\t\tborder-bottom-color: transparent;\n\t\tborder-bottom-style: solid;\n\t\tdisplay: block;\n\t}\n\n\tdiv.grid,\n\tdiv[role='tabpanel'] {\n\t\theight: 100%;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-right {\n\t\tdisplay: grid;\n\t\tgrid-template-columns: 1fr auto;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-right kol-button-group-wc {\n\t\tdisplay: grid;\n\t\torder: 2;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-left {\n\t\tdisplay: grid;\n\t\tgrid-template-columns: auto 1fr;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-left kol-button-group-wc {\n\t\tdisplay: grid;\n\t\torder: 0;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-bottom {\n\t\tdisplay: grid;\n\t\tgrid-template-rows: 1fr auto;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-bottom kol-button-group-wc {\n\t\torder: 2;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-bottom kol-button-group-wc > div {\n\t\tdisplay: flex;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-bottom > kol-button-group-wc > div > div:first-child {\n\t\tmargin: 0 1em 0 0;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-bottom > kol-button-group-wc > div > div {\n\t\tmargin: 0 1em;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-top {\n\t\tdisplay: grid;\n\t\tgrid-template-rows: auto 1fr;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-top kol-button-group-wc {\n\t\torder: 0;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-top kol-button-group-wc > div {\n\t\tdisplay: flex;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-top > kol-button-group-wc > div > div:first-child {\n\t\tmargin: 0 1em 0 0;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-top > kol-button-group-wc > div > div {\n\t\tmargin: 0 1em;\n\t}\n\n\t.sc-kol-tabs-default-h > div {\n\t\tdisplay: grid;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-left kol-button-group-wc,\n\t.sc-kol-tabs-default-h > .tabs-align-top kol-button-group-wc {\n\t\torder: 0;\n\t}\n\n\t.sc-kol-tabs-default-h > .tabs-align-bottom kol-button-group-wc,\n\t.sc-kol-tabs-default-h > .tabs-align-right kol-button-group-wc {\n\t\torder: 1;\n\t}\n\n\t.sc-kol-tabs-default-h > div.tabs-align-left kol-button-group-wc > div,\n\t.sc-kol-tabs-default-h > div.tabs-align-left kol-button-group-wc > div > div,\n\t.sc-kol-tabs-default-h > div.tabs-align-right kol-button-group-wc > div,\n\t.sc-kol-tabs-default-h > div.tabs-align-right kol-button-group-wc > div > div {\n\t\tdisplay: grid;\n\t}\n\n\t.sc-kol-tabs-default-h > div.tabs-align-left kol-button-group-wc > div > div kol-button-wc,\n\t.sc-kol-tabs-default-h > div.tabs-align-right kol-button-group-wc > div > div kol-button-wc {\n\t\twidth: 100%;\n\t}\n\n\t.sc-kol-tabs-default-h > div.tabs-align-bottom kol-button-group-wc div,\n\t.sc-kol-tabs-default-h > div.tabs-align-top kol-button-group-wc div {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t}\n}";
|
|
32151
32158
|
|
|
32152
32159
|
class KolTabs {
|
|
32153
32160
|
constructor(hostRef) {
|
|
@@ -32410,7 +32417,7 @@ class KolTabs {
|
|
|
32410
32417
|
"_tabs": ["validateTabs"]
|
|
32411
32418
|
}; }
|
|
32412
32419
|
static get style() { return {
|
|
32413
|
-
default: defaultStyleCss$
|
|
32420
|
+
default: defaultStyleCss$3
|
|
32414
32421
|
}; }
|
|
32415
32422
|
static get cmpMeta() { return {
|
|
32416
32423
|
"$flags$": 41,
|
|
@@ -32502,7 +32509,7 @@ class TextareaController extends InputController {
|
|
|
32502
32509
|
}
|
|
32503
32510
|
}
|
|
32504
32511
|
|
|
32505
|
-
const defaultStyleCss$
|
|
32512
|
+
const defaultStyleCss$2 = "@layer kol-global {\n\t\n\t.sc-kol-textarea-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-textarea-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\t.required label > span::after,\n\t.required legend > span::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.sc-kol-textarea-default-h {\n\t\tdisplay: block;\n\t}\n}\n\n@layer kol-component {\n\tinput,\n\ttextarea {\n\t\tcursor: text;\n\t}\n\n\tinput[type='checkbox'],\n\tinput[type='color'],\n\tinput[type='file'],\n\tinput[type='radio'],\n\tinput[type='range'],\n\tlabel,\n\toption,\n\tselect {\n\t\tcursor: pointer;\n\t}\n\n\t\n\t\n\t\n\tinput[type='color'],\n\tinput[type='date'],\n\tinput[type='datetime-local'],\n\tinput[type='email'],\n\tinput[type='file'],\n\tinput[type='month'],\n\tinput[type='number'],\n\tinput[type='password'],\n\tinput[type='search'],\n\tinput[type='tel'],\n\tinput[type='text'],\n\tinput[type='time'],\n\tinput[type='url'],\n\tinput[type='week'],\n\tselect,\n\tselect[multiple] option,\n\ttextarea {\n\t\tfont-size: 1rem;\n\t\twidth: 100%;\n\t}\n\n\t\n\tinput[type='file'] {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 10) 0.5em;\n\t}\n\n\t\n\tselect[multiple] option {\n\t\tpadding: calc((var(--a11y-min-size) - 1rem) / 2) 0.5em;\n\t}\n\n\tkol-input.disabled :is(button, input, label, option, select, textarea) {\n\t\tcursor: not-allowed;\n\t\topacity: 0.5;\n\t}\n}\n\n@layer kol-component {\n\tkol-input {\n\t\tdisplay: grid;\n\t}\n\n\tkol-input .input-slot {\n\t\tflex-grow: 1;\n\t}\n\n\tinput:not([type='checkbox'], [type='radio']),\n\tselect:not([multiple], [size]) {\n\t\theight: 2.75em;\n\t}\n\n\tinput:focus,\n\toption:focus,\n\tselect:focus,\n\ttextarea:focus {\n\t\toutline: 0;\n\t}\n\n\t.input {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t}\n\n\t.input > kol-icon {\n\t\tdisplay: grid;\n\t\theight: var(--a11y-min-size);\n\t\tplace-items: center;\n\t}\n\n\tkol-input.required .input-tooltip .span-label::after {\n\t\tcontent: '*';\n\t}\n}\n\n@layer kol-component {\n\t.error.hidden {\n\t\tdisplay: none;\n\t}\n}";
|
|
32506
32513
|
|
|
32507
32514
|
const increaseTextareaHeight = (el) => {
|
|
32508
32515
|
el.style.overflow = 'hidden';
|
|
@@ -32673,7 +32680,7 @@ class KolTextarea {
|
|
|
32673
32680
|
"_value": ["validateValue"]
|
|
32674
32681
|
}; }
|
|
32675
32682
|
static get style() { return {
|
|
32676
|
-
default: defaultStyleCss$
|
|
32683
|
+
default: defaultStyleCss$2
|
|
32677
32684
|
}; }
|
|
32678
32685
|
static get cmpMeta() { return {
|
|
32679
32686
|
"$flags$": 41,
|
|
@@ -32711,80 +32718,18 @@ class KolTextarea {
|
|
|
32711
32718
|
}; }
|
|
32712
32719
|
}
|
|
32713
32720
|
|
|
32714
|
-
const
|
|
32715
|
-
|
|
32716
|
-
|
|
32717
|
-
|
|
32718
|
-
class KolToast {
|
|
32719
|
-
constructor(hostRef) {
|
|
32720
|
-
registerInstance(this, hostRef);
|
|
32721
|
-
this.close = () => {
|
|
32722
|
-
var _a;
|
|
32723
|
-
if (((_a = this._on) === null || _a === void 0 ? void 0 : _a.onClose) !== undefined) {
|
|
32724
|
-
this._on.onClose(new Event('Close'));
|
|
32725
|
-
}
|
|
32726
|
-
};
|
|
32727
|
-
this.on = {
|
|
32728
|
-
onClose: this.close,
|
|
32729
|
-
};
|
|
32730
|
-
this._label = undefined;
|
|
32731
|
-
this._on = undefined;
|
|
32732
|
-
this._status = undefined;
|
|
32733
|
-
this._type = 'default';
|
|
32734
|
-
this.state = {
|
|
32735
|
-
_label: '...',
|
|
32736
|
-
_status: 'adding',
|
|
32737
|
-
};
|
|
32738
|
-
}
|
|
32739
|
-
validateLabel(value) {
|
|
32740
|
-
validateLabel(this, value);
|
|
32741
|
-
}
|
|
32742
|
-
validateOn(value) {
|
|
32743
|
-
if (typeof value === 'object' && (typeof (value === null || value === void 0 ? void 0 : value.onClose) === 'function' || value.onClose === true)) {
|
|
32744
|
-
setState(this, '_on', { onClose: value.onClose });
|
|
32721
|
+
const InternalToast = ({ toastState, onClose, key }) => {
|
|
32722
|
+
const handleRef = (element) => {
|
|
32723
|
+
if (typeof toastState.toast.render === 'function' && element) {
|
|
32724
|
+
toastState.toast.render(element, { close: () => onClose() });
|
|
32745
32725
|
}
|
|
32746
|
-
}
|
|
32747
|
-
|
|
32748
|
-
|
|
32749
|
-
|
|
32750
|
-
|
|
32751
|
-
watchValidator(this, '_type', (value) => typeof value === 'string' && (value === 'default' || value === 'error' || value === 'info' || value === 'success' || value === 'warning'), new Set('String {success, info, warning, error}'), value);
|
|
32752
|
-
}
|
|
32753
|
-
componentWillLoad() {
|
|
32754
|
-
this.validateLabel(this._label);
|
|
32755
|
-
this.validateOn(this._on);
|
|
32756
|
-
this.validateStatus(this._status);
|
|
32757
|
-
this.validateType(this._type);
|
|
32758
|
-
}
|
|
32759
|
-
render() {
|
|
32760
|
-
return (hAsync("div", { class: `toast ${this.state._status}` }, hAsync("kol-alert", { class: "alert", _alert: true, _label: this.state._label, _level: 0, _hasCloser: true, _type: this.state._type, _variant: "card", _on: this.on }, hAsync("slot", null))));
|
|
32761
|
-
}
|
|
32762
|
-
static get watchers() { return {
|
|
32763
|
-
"_label": ["validateLabel"],
|
|
32764
|
-
"_on": ["validateOn"],
|
|
32765
|
-
"_status": ["validateStatus"],
|
|
32766
|
-
"_type": ["validateType"]
|
|
32767
|
-
}; }
|
|
32768
|
-
static get style() { return {
|
|
32769
|
-
default: defaultStyleCss$2
|
|
32770
|
-
}; }
|
|
32771
|
-
static get cmpMeta() { return {
|
|
32772
|
-
"$flags$": 41,
|
|
32773
|
-
"$tagName$": "kol-toast",
|
|
32774
|
-
"$members$": {
|
|
32775
|
-
"_label": [1],
|
|
32776
|
-
"_on": [16],
|
|
32777
|
-
"_status": [1],
|
|
32778
|
-
"_type": [1],
|
|
32779
|
-
"state": [32]
|
|
32780
|
-
},
|
|
32781
|
-
"$listeners$": undefined,
|
|
32782
|
-
"$lazyBundleId$": "-",
|
|
32783
|
-
"$attrsToReflect$": []
|
|
32784
|
-
}; }
|
|
32785
|
-
}
|
|
32726
|
+
};
|
|
32727
|
+
return (hAsync("div", { class: `toast ${toastState.status}`, key: key },
|
|
32728
|
+
hAsync("kol-alert", { class: "alert", _alert: true, _label: toastState.toast.label, _level: 0, _hasCloser: true, _type: toastState.toast.type, _variant: "card", _on: { onClose } },
|
|
32729
|
+
hAsync("div", { ref: handleRef }, typeof toastState.toast.description === 'string' ? toastState.toast.description : null))));
|
|
32730
|
+
};
|
|
32786
32731
|
|
|
32787
|
-
const defaultStyleCss$1 = "
|
|
32732
|
+
const defaultStyleCss$1 = "@layer kol-component {\n\t.sc-kol-toast-container-default-h {\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\tposition: fixed;\n\t\tz-index: 200;\n\t}\n\n\t.close-all {\n\t\talign-self: flex-end;\n\t}\n}";
|
|
32788
32733
|
|
|
32789
32734
|
const TRANSITION_TIMEOUT = 300;
|
|
32790
32735
|
class KolToastContainer {
|
|
@@ -32824,7 +32769,7 @@ class KolToastContainer {
|
|
|
32824
32769
|
}, TRANSITION_TIMEOUT);
|
|
32825
32770
|
}
|
|
32826
32771
|
render() {
|
|
32827
|
-
return (hAsync(Fragment, null, this.state._toastStates.length > 1 && (hAsync("kol-button", { _label: translate('kol-toast-close-all'), class: "close-all", _on: { onClick: this.handleCloseAllClick.bind(this) } })), this.state._toastStates.map((toastState) => (hAsync(
|
|
32772
|
+
return (hAsync(Fragment, null, this.state._toastStates.length > 1 && (hAsync("kol-button", { _label: translate('kol-toast-close-all'), class: "close-all", _on: { onClick: this.handleCloseAllClick.bind(this) } })), this.state._toastStates.map((toastState) => (hAsync(InternalToast, { toastState: toastState, onClose: () => this.handleClose(toastState), key: toastState.id })))));
|
|
32828
32773
|
}
|
|
32829
32774
|
static get style() { return {
|
|
32830
32775
|
default: defaultStyleCss$1
|
|
@@ -32864,7 +32809,7 @@ function hideOverlay(overlay) {
|
|
|
32864
32809
|
}
|
|
32865
32810
|
}
|
|
32866
32811
|
|
|
32867
|
-
const styleCss = ":host{--a11y-min-size:44px
|
|
32812
|
+
const styleCss = "@layer kol-global {\n\t/*\n\t * This file contains all rules for accessibility.\n\t */\n\t:host {\n\t\t/*\n\t\t * Minimum size of interactive elements.\n\t\t */\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t/*\n\t\t * Verdana is an accessible font that can be used without requiring additional loading time.\n\t\t */\n\t\tfont-family: Verdana;\n\t\t/*\n\t\t * This rule enables the word dividing for all texts. That is important for high zoom levels.\n\t\t */\n\t\thyphens: auto;\n\t\t/*\n\t\t * Letter spacing is required for all texts.\n\t\t */\n\t\tletter-spacing: inherit;\n\t\t/*\n\t\t * This rule enables the word dividing for all texts. That is important for high zoom levels.\n\t\t */\n\t\tword-break: break-word;\n\t\t/*\n\t\t * Word spacing is required for all texts.\n\t\t */\n\t\tword-spacing: inherit;\n\t}\n\n\t/*\n\t * All interactive elements should have a minimum size of 44px.\n\t */\n\t/* input:not([type='checkbox'], [type='radio'], [type='range']), */\n\t/* option, */\n\t/* select, */\n\t/* textarea, */\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t/*\n\t * Some interactive elements should not inherit the font-family and font-size.\n\t */\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t/*\n\t\t * All elements should inherit the font family from his parent element.\n\t\t */\n\t\tfont-family: inherit;\n\t\t/*\n\t\t * All elements should inherit the font size from his parent element.\n\t\t */\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t/*\n\t * Dieses CSS stellt sicher, dass der Standard-Style\n\t * von A und Button resettet werden.\n\t */\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; /* 100% needed for custom width from outside */\n\t}\n}\n\n@layer kol-global {\n\t:host {\n\t\t/*\n\t\t * The max-width is needed to prevent the table from overflowing the\n\t\t * parent node, if the table is wider than the parent node.\n\t\t */\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t/*\n\t\t * We prefer to box-sizing: border-box for all elements.\n\t\t */\n\t\tbox-sizing: border-box;\n\t}\n\n\t/* KolSpan is a layout component with icons in all directions and a label text in the middle. */\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t/* The sub span in KolSpan is the horizontal span with icon left and right and the label text in the middle. */\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t/* font-family is NOT inherited all HTML elements. */\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t/* This is the text label. */\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}\n\n@layer kol-component {\n\tkol-tooltip-wc .tooltip-floating {\n\t\tanimation-duration: 0.5s;\n\t\tanimation-iteration-count: 1;\n\t\tanimation-name: fadeInOpacity;\n\t\tanimation-timing-function: ease-in;\n\t\tbox-sizing: border-box;\n\t\tdisplay: none;\n\t\tposition: absolute;\n\t\tvisibility: hidden;\n\t\t/* Avoid layout interference - see https://floating-ui.com/docs/computePosition */\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tmax-width: 90vw;\n\t\tmax-height: 90vh;\n\t}\n\n\t/* Shared between content and arrow */\n\tkol-tooltip-wc .tooltip-area {\n\t\tbackground-color: #fff;\n\t\tcolor: #000;\n\t}\n\n\tkol-tooltip-wc .tooltip-arrow {\n\t\theight: 10px;\n\t\tposition: absolute;\n\t\ttransform: rotate(45deg);\n\t\twidth: 10px;\n\t\tz-index: 999;\n\t}\n\n\tkol-tooltip-wc .tooltip-content {\n\t\tposition: relative;\n\t\tz-index: 1000;\n\t}\n\n\t@keyframes fadeInOpacity {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n}\n";
|
|
32868
32813
|
|
|
32869
32814
|
class KolTooltip {
|
|
32870
32815
|
constructor(hostRef) {
|
|
@@ -33062,7 +33007,7 @@ class KolTooltip {
|
|
|
33062
33007
|
}; }
|
|
33063
33008
|
}
|
|
33064
33009
|
|
|
33065
|
-
const defaultStyleCss = "
|
|
33010
|
+
const defaultStyleCss = "@layer kol-global {\n\t\n\t.sc-kol-version-default-h {\n\t\t\n\t\t--a11y-min-size: 44px;\n\t\tfont-size: inherit;\n\t}\n\n\t* {\n\t\t\n\t\tfont-family: Verdana;\n\t\t\n\t\thyphens: auto;\n\t\t\n\t\tletter-spacing: inherit;\n\t\t\n\t\tword-break: break-word;\n\t\t\n\t\tword-spacing: inherit;\n\t}\n\n\t\n\t\n\t\n\t\n\t\n\t[role='button'],\n\tbutton:not([role='link']),\n\tkol-input .input {\n\t\tmin-height: var(--a11y-min-size);\n\t\tmin-width: var(--a11y-min-size);\n\t}\n\n\t\n\ta,\n\tbutton,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\t\n\t\tfont-family: inherit;\n\t\t\n\t\tfont-size: inherit;\n\t}\n}\n\n@layer kol-global {\n\t\n\t:is(a, button) {\n\t\tbackground-color: transparent;\n\t\tborder: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twidth: 100%; \n\t}\n}\n\n@layer kol-global {\n\t.sc-kol-version-default-h {\n\t\t\n\t\tmax-width: 100%;\n\t}\n\n\t* {\n\t\t\n\t\tbox-sizing: border-box;\n\t}\n\n\t\n\tkol-span-wc {\n\t\tdisplay: grid;\n\t\tplace-items: center;\n\t}\n\n\t\n\tkol-span-wc > span {\n\t\tdisplay: flex;\n\t\tplace-items: center;\n\t}\n\n\ta,\n\tbutton {\n\t\tcursor: pointer;\n\t}\n\n\t\n\tbutton,\n\tinput,\n\toption,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t}\n\n\t\n\t.icon-only > kol-span-wc > span > span {\n\t\tdisplay: none;\n\t}\n}";
|
|
33066
33011
|
|
|
33067
33012
|
class KolVersion {
|
|
33068
33013
|
constructor(hostRef) {
|
|
@@ -33156,7 +33101,6 @@ registerComponents([
|
|
|
33156
33101
|
KolTable,
|
|
33157
33102
|
KolTabs,
|
|
33158
33103
|
KolTextarea,
|
|
33159
|
-
KolToast,
|
|
33160
33104
|
KolToastContainer,
|
|
33161
33105
|
KolTooltip,
|
|
33162
33106
|
KolVersion,
|
|
@@ -33268,8 +33212,9 @@ class ToasterService {
|
|
|
33268
33212
|
}
|
|
33269
33213
|
}
|
|
33270
33214
|
async enqueue(toast) {
|
|
33271
|
-
|
|
33272
|
-
|
|
33215
|
+
if (this.toastContainerElement && typeof this.toastContainerElement.enqueue === 'function') {
|
|
33216
|
+
await this.toastContainerElement.enqueue(toast);
|
|
33217
|
+
}
|
|
33273
33218
|
}
|
|
33274
33219
|
}
|
|
33275
33220
|
ToasterService.instances = new Map();
|
|
@@ -33326,16 +33271,20 @@ var reprodAccordionDoesNotToggleWithOpen$1 = /*#__PURE__*/Object.freeze({
|
|
|
33326
33271
|
|
|
33327
33272
|
const detailsElement = document.getElementById('details');
|
|
33328
33273
|
const buttonElement = document.getElementById('button');
|
|
33329
|
-
detailsElement
|
|
33330
|
-
|
|
33331
|
-
|
|
33332
|
-
|
|
33333
|
-
}
|
|
33334
|
-
|
|
33335
|
-
|
|
33336
|
-
|
|
33337
|
-
|
|
33338
|
-
|
|
33274
|
+
if (detailsElement) {
|
|
33275
|
+
detailsElement._on = {
|
|
33276
|
+
onToggle: (_event, open) => {
|
|
33277
|
+
buttonElement._label = `👆Details ${open ? 'schließen' : 'öffnen'}`;
|
|
33278
|
+
},
|
|
33279
|
+
};
|
|
33280
|
+
}
|
|
33281
|
+
if (buttonElement) {
|
|
33282
|
+
buttonElement._on = {
|
|
33283
|
+
onClick: () => {
|
|
33284
|
+
detailsElement._open = !detailsElement._open;
|
|
33285
|
+
},
|
|
33286
|
+
};
|
|
33287
|
+
}
|
|
33339
33288
|
var detailsSyncedOpenState = {};
|
|
33340
33289
|
|
|
33341
33290
|
var detailsSyncedOpenState$1 = /*#__PURE__*/Object.freeze({
|