@public-ui/hydrate 2.0.9 → 2.0.11
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 +553 -384
- package/package.json +8 -5
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.13.0 | MIT Licensed | https://stenciljs.com
|
|
10
10
|
*/
|
|
11
11
|
const CONTENT_REF_ID = 'r';
|
|
12
12
|
const ORG_LOCATION_ID = 'o';
|
|
@@ -385,6 +385,14 @@ class MockCustomElementRegistry {
|
|
|
385
385
|
}
|
|
386
386
|
return undefined;
|
|
387
387
|
}
|
|
388
|
+
getName(cstr) {
|
|
389
|
+
for (const [tagName, def] of this.__registry.entries()) {
|
|
390
|
+
if (def.cstr === cstr) {
|
|
391
|
+
return tagName;
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
return undefined;
|
|
395
|
+
}
|
|
388
396
|
upgrade(_rootNode) {
|
|
389
397
|
//
|
|
390
398
|
}
|
|
@@ -7458,7 +7466,7 @@ function rgba(str) {
|
|
|
7458
7466
|
|
|
7459
7467
|
var rgbaConvert = rgbaConvert$1.exports;
|
|
7460
7468
|
|
|
7461
|
-
var n=.2126,r=.7152,t=.0722,e=1/12.92;function u(n){return Math.pow((n+.055)/1.055,2.4)}function a(a){var i=a[0]/255,c=a[1]/255,o=a[2]/255,s=i<=.03928?i*e:u(i),f=c<=.03928?c*e:u(c),l=o<=.03928?o*e:u(o);return s*n+f*r+l*t}function i(n){var r=255;8===(n=n.replace(/^#/,"")).length&&(r=parseInt(n.slice(6,8),16),n=n.substring(0,6)),4===n.length&&(r=parseInt(n.slice(3,4).repeat(2),16),n=n.substring(0,3)),3===n.length&&(n=n[0]+n[0]+n[1]+n[1]+n[2]+n[2]);var t=parseInt(n,16);return [t>>16,t>>8&255,255&t,r]}function c(n,r){return (Math.max(n,r)+.05)/(Math.min(n,r)+.05)}function o(n,r){return c(a(n),a(r))}function s(n,r){return o(i(n),i(r))}function f(n){return n>=7?"AAA":n>=4.5?"AA":n>=3?"AA Large":"Fail"}
|
|
7469
|
+
var n=.2126,r$1=.7152,t=.0722,e=1/12.92;function u(n){return Math.pow((n+.055)/1.055,2.4)}function a(a){var i=a[0]/255,c=a[1]/255,o=a[2]/255,s=i<=.03928?i*e:u(i),f=c<=.03928?c*e:u(c),l=o<=.03928?o*e:u(o);return s*n+f*r$1+l*t}function i(n){var r=255;8===(n=n.replace(/^#/,"")).length&&(r=parseInt(n.slice(6,8),16),n=n.substring(0,6)),4===n.length&&(r=parseInt(n.slice(3,4).repeat(2),16),n=n.substring(0,3)),3===n.length&&(n=n[0]+n[0]+n[1]+n[1]+n[2]+n[2]);var t=parseInt(n,16);return [t>>16,t>>8&255,255&t,r]}function c(n,r){return (Math.max(n,r)+.05)/(Math.min(n,r)+.05)}function o(n,r){return c(a(n),a(r))}function s(n,r){return o(i(n),i(r))}function f(n){return n>=7?"AAA":n>=4.5?"AA":n>=3?"AA Large":"Fail"}
|
|
7462
7470
|
|
|
7463
7471
|
var colorName = {
|
|
7464
7472
|
"aliceblue": [240, 248, 255],
|
|
@@ -8942,6 +8950,10 @@ const validateMax = (component, value, options) => {
|
|
|
8942
8950
|
watchNumber(component, "_max", value, options);
|
|
8943
8951
|
};
|
|
8944
8952
|
|
|
8953
|
+
const validateMsg = (component, value) => {
|
|
8954
|
+
watchValidator(component, `_msg`, (value2) => typeof value2 === "object", /* @__PURE__ */ new Set(["Object"]), value);
|
|
8955
|
+
};
|
|
8956
|
+
|
|
8945
8957
|
const validateMultiple = (component, value) => {
|
|
8946
8958
|
watchBoolean(component, "_multiple", value);
|
|
8947
8959
|
};
|
|
@@ -9040,8 +9052,6 @@ const orientationOptions = ["horizontal", "vertical"];
|
|
|
9040
9052
|
var KoliBriProgressVariantEnum = /* @__PURE__ */ ((KoliBriProgressVariantEnum2) => {
|
|
9041
9053
|
KoliBriProgressVariantEnum2["bar"] = "bar";
|
|
9042
9054
|
KoliBriProgressVariantEnum2["cycle"] = "cycle";
|
|
9043
|
-
KoliBriProgressVariantEnum2["cycle-value-label"] = "cycle-value-label";
|
|
9044
|
-
KoliBriProgressVariantEnum2["cycle-label-value"] = "cycle-label-value";
|
|
9045
9055
|
return KoliBriProgressVariantEnum2;
|
|
9046
9056
|
})(KoliBriProgressVariantEnum || {});
|
|
9047
9057
|
|
|
@@ -9426,24 +9436,29 @@ const createTime = (e, t = "") => {
|
|
|
9426
9436
|
let scopeId, contentRef, hostTagName, useNativeShadowDom = !1, checkSlotFallbackVisibility = !1, checkSlotRelocate = !1, isSvgMode = !1;
|
|
9427
9437
|
|
|
9428
9438
|
const createElm = (e, t, o, n) => {
|
|
9429
|
-
|
|
9430
|
-
|
|
9431
|
-
|
|
9432
|
-
|
|
9433
|
-
|
|
9434
|
-
isSvgMode && "
|
|
9435
|
-
|
|
9436
|
-
|
|
9437
|
-
|
|
9438
|
-
|
|
9439
|
+
var s;
|
|
9440
|
+
const l = t.$children$[o];
|
|
9441
|
+
let a, r, i, d = 0;
|
|
9442
|
+
if (!useNativeShadowDom && (checkSlotRelocate = !0, "slot" === l.$tag$ && (scopeId && n.classList.add(scopeId + "-s"),
|
|
9443
|
+
l.$flags$ |= l.$children$ ? 2 : 1)), null !== l.$text$) a = l.$elm$ = doc.createTextNode(l.$text$); else if (1 & l.$flags$) a = l.$elm$ = slotReferenceDebugNode(l) ; else {
|
|
9444
|
+
if (!isSvgMode && (isSvgMode = "svg" === l.$tag$), a = l.$elm$ = doc.createElementNS(isSvgMode ? "http://www.w3.org/2000/svg" : "http://www.w3.org/1999/xhtml", 2 & l.$flags$ ? "slot-fb" : l.$tag$) ,
|
|
9445
|
+
isSvgMode && "foreignObject" === l.$tag$ && (isSvgMode = !1), updateElement(null, l, isSvgMode),
|
|
9446
|
+
null != scopeId && a["s-si"] !== scopeId && a.classList.add(a["s-si"] = scopeId),
|
|
9447
|
+
l.$children$) for (d = 0; d < l.$children$.length; ++d) r = createElm(e, l, d, a),
|
|
9448
|
+
r && a.appendChild(r);
|
|
9449
|
+
("svg" === l.$tag$ ? isSvgMode = !1 : "foreignObject" === a.tagName && (isSvgMode = !0));
|
|
9439
9450
|
}
|
|
9440
|
-
return
|
|
9441
|
-
|
|
9442
|
-
|
|
9443
|
-
|
|
9451
|
+
return a["s-hn"] = hostTagName, 3 & l.$flags$ && (a["s-sr"] = !0,
|
|
9452
|
+
a["s-cr"] = contentRef, a["s-sn"] = l.$name$ || "", a["s-rf"] = null === (s = l.$attrs$) || void 0 === s ? void 0 : s.ref,
|
|
9453
|
+
i = e && e.$children$ && e.$children$[o], i && i.$tag$ === l.$tag$ && e.$elm$ && (putBackInOriginalLocation(e.$elm$, !1))),
|
|
9454
|
+
a;
|
|
9444
9455
|
}, putBackInOriginalLocation = (e, t) => {
|
|
9445
9456
|
plt.$flags$ |= 1;
|
|
9446
|
-
const o = e.childNodes;
|
|
9457
|
+
const o = Array.from(e.childNodes);
|
|
9458
|
+
if (e["s-sr"] && BUILD.experimentalSlotFixes) {
|
|
9459
|
+
let t = e;
|
|
9460
|
+
for (;t = t.nextSibling; ) t && t["s-sn"] === e["s-sn"] && t["s-sh"] === hostTagName && o.push(t);
|
|
9461
|
+
}
|
|
9447
9462
|
for (let e = o.length - 1; e >= 0; e--) {
|
|
9448
9463
|
const n = o[e];
|
|
9449
9464
|
n["s-hn"] !== hostTagName && n["s-ol"] && (parentReferenceNode(n).insertBefore(n, referenceNode(n)),
|
|
@@ -9565,7 +9580,8 @@ const createElm = (e, t, o, n) => {
|
|
|
9565
9580
|
}
|
|
9566
9581
|
}
|
|
9567
9582
|
(!o && e !== t.parentNode || t.nextSibling !== o) && t !== o && (t["s-hn"] || !t["s-ol"] || (t["s-hn"] = t["s-ol"].parentNode.nodeName),
|
|
9568
|
-
e.insertBefore(t, o), 1 === t.nodeType && (t.hidden = null !== (l = t["s-ih"]) && void 0 !== l && l))
|
|
9583
|
+
e.insertBefore(t, o), 1 === t.nodeType && (t.hidden = null !== (l = t["s-ih"]) && void 0 !== l && l)),
|
|
9584
|
+
t && "function" == typeof r["s-rf"] && r["s-rf"](t);
|
|
9569
9585
|
} else 1 === t.nodeType && (o && (t["s-ih"] = null !== (a = t.hidden) && void 0 !== a && a),
|
|
9570
9586
|
t.hidden = !0);
|
|
9571
9587
|
}
|
|
@@ -9722,7 +9738,7 @@ const callRender = (e, t, o, n) => {
|
|
|
9722
9738
|
return e;
|
|
9723
9739
|
}, initializeComponent = async (e, t, o, n) => {
|
|
9724
9740
|
let s;
|
|
9725
|
-
if (
|
|
9741
|
+
if (!(32 & t.$flags$)) {
|
|
9726
9742
|
t.$flags$ |= 32;
|
|
9727
9743
|
const n = o.$lazyBundleId$;
|
|
9728
9744
|
if (n) {
|
|
@@ -9756,7 +9772,7 @@ const callRender = (e, t, o, n) => {
|
|
|
9756
9772
|
}, fireConnectedCallback = e => {
|
|
9757
9773
|
safeCall(e, "connectedCallback");
|
|
9758
9774
|
}, connectedCallback = e => {
|
|
9759
|
-
if (
|
|
9775
|
+
if (!(1 & plt.$flags$)) {
|
|
9760
9776
|
const t = getHostRef(e), o = t.$cmpMeta$, n = createTime("connectedCallback", o.$tagName$);
|
|
9761
9777
|
if (1 & t.$flags$) addHostEventListeners(e, t, o.$listeners$), (null == t ? void 0 : t.$lazyInstance$) ? fireConnectedCallback(t.$lazyInstance$) : (null == t ? void 0 : t.$onReadyPromise$) && t.$onReadyPromise$.then((() => fireConnectedCallback(t.$lazyInstance$))); else {
|
|
9762
9778
|
let n;
|
|
@@ -9799,7 +9815,7 @@ const callRender = (e, t, o, n) => {
|
|
|
9799
9815
|
} catch (e) {
|
|
9800
9816
|
consoleError(e);
|
|
9801
9817
|
}
|
|
9802
|
-
}, hostListenerOpts = e =>
|
|
9818
|
+
}, hostListenerOpts = e => !!(2 & e), insertVdomAnnotations = (e, t) => {
|
|
9803
9819
|
if (null != e) {
|
|
9804
9820
|
const o = {
|
|
9805
9821
|
hostIds: 0,
|
|
@@ -9961,21 +9977,16 @@ const getKoliBri$1 = () => {
|
|
|
9961
9977
|
};
|
|
9962
9978
|
const initKoliBri = () => {
|
|
9963
9979
|
initMeta();
|
|
9964
|
-
|
|
9965
|
-
|
|
9966
|
-
|
|
9967
|
-
|
|
9968
|
-
|
|
9969
|
-
|
|
9970
|
-
|
|
9971
|
-
|
|
9972
|
-
|
|
9973
|
-
|
|
9974
|
-
});
|
|
9975
|
-
}
|
|
9976
|
-
else {
|
|
9977
|
-
console.warn(`You can only initialize KoliBri once.`);
|
|
9978
|
-
}
|
|
9980
|
+
Log.debug(`
|
|
9981
|
+
,--. ,--. ,--. ,--. ,-----. ,--.
|
|
9982
|
+
| .' / ,---. | | \`--' | |) /_ ,--.--. \`--'
|
|
9983
|
+
| . ' | .-. | | | ,--. | .-. \\ | .--' ,--.
|
|
9984
|
+
| |\\ \\ | '-' | | | | | | '--' / | | | |
|
|
9985
|
+
\`--' \`--´ \`---´ \`--' \`--' \`------´ \`--' \`--'
|
|
9986
|
+
🚹 The accessible HTML-Standard | 👉 https://public-ui.github.io | 2.0.8
|
|
9987
|
+
`, {
|
|
9988
|
+
forceLog: true,
|
|
9989
|
+
});
|
|
9979
9990
|
};
|
|
9980
9991
|
const renderDevAdvice = () => {
|
|
9981
9992
|
if (getKoliBri$1().adviceShown !== true) {
|
|
@@ -9997,6 +10008,27 @@ if (processEnv === 'test') {
|
|
|
9997
10008
|
nonce = () => 'nonce';
|
|
9998
10009
|
}
|
|
9999
10010
|
|
|
10011
|
+
let KolAlertTag = 'kol-alert';
|
|
10012
|
+
let KolAlertWcTag = 'kol-alert-wc';
|
|
10013
|
+
let KolAvatarWcTag = 'kol-avatar-wc';
|
|
10014
|
+
let KolBadgeTag = 'kol-badge';
|
|
10015
|
+
let KolButtonTag = 'kol-button';
|
|
10016
|
+
let KolButtonWcTag = 'kol-button-wc';
|
|
10017
|
+
let KolButtonGroupWcTag = 'kol-button-group-wc';
|
|
10018
|
+
let KolHeadingWcTag = 'kol-heading-wc';
|
|
10019
|
+
let KolIconTag = 'kol-icon';
|
|
10020
|
+
let KolIndentedTextTag = 'kol-indented-text';
|
|
10021
|
+
let KolInputTag = 'kol-input';
|
|
10022
|
+
let KolLinkTag = 'kol-link';
|
|
10023
|
+
let KolLinkWcTag = 'kol-link-wc';
|
|
10024
|
+
let KolPaginationTag = 'kol-pagination';
|
|
10025
|
+
let KolSelectTag = 'kol-select';
|
|
10026
|
+
let KolSpanWcTag = 'kol-span-wc';
|
|
10027
|
+
let KolToastContainerTag = 'kol-toast-container';
|
|
10028
|
+
let KolTooltipWcTag = 'kol-tooltip-wc';
|
|
10029
|
+
let KolTreeItemWcTag = 'kol-tree-item-wc';
|
|
10030
|
+
let KolTreeWcTag = 'kol-tree-wc';
|
|
10031
|
+
|
|
10000
10032
|
const defaultStyleCss$K = "@layer kol-global {\n .sc-kol-abbr-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-abbr-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-abbr-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-abbr-default-h > abbr {\n cursor: help;\n }\n}";
|
|
10001
10033
|
var KolAbbrDefaultStyle0 = defaultStyleCss$K;
|
|
10002
10034
|
|
|
@@ -10012,7 +10044,7 @@ class KolAbbr {
|
|
|
10012
10044
|
};
|
|
10013
10045
|
}
|
|
10014
10046
|
render() {
|
|
10015
|
-
return (hAsync(Host, { key: '
|
|
10047
|
+
return (hAsync(Host, { key: 'c925b5b379b596db99404d6c7d4507275d70496d', class: "kol-abbr" }, hAsync("abbr", { key: 'c7a6a3482ea02fca65278aa28ea115f7a9a11f74', "aria-labelledby": this.nonce, role: "definition", tabindex: "0", title: this.state._label }, hAsync("span", { key: '7179f3b594f6815c06c46dd465739376734ea940', title: "" }, hAsync("slot", { key: '00590edd1ae4afeb4f4f066f0a16ce54c8af28a9' }))), hAsync(KolTooltipWcTag, { key: '2c44fa51a1849dabb59d0541a0d9dcc192e52bcd', _align: this.state._tooltipAlign, _id: this.nonce, _label: this.state._label })));
|
|
10016
10048
|
}
|
|
10017
10049
|
validateLabel(value) {
|
|
10018
10050
|
validateLabel(this, value, {
|
|
@@ -10092,11 +10124,11 @@ class KolAccordion {
|
|
|
10092
10124
|
};
|
|
10093
10125
|
}
|
|
10094
10126
|
render() {
|
|
10095
|
-
return (hAsync(Host, { key: '
|
|
10127
|
+
return (hAsync(Host, { key: '375071dab3f67a8a9ea41166c5e5955a905ba04a', class: "kol-accordion" }, hAsync("div", { key: '44e8a90eed884c991797ea6e0e727777075d6d00', class: {
|
|
10096
10128
|
accordion: true,
|
|
10097
10129
|
disabled: this.state._disabled === true,
|
|
10098
10130
|
open: this.state._open === true,
|
|
10099
|
-
} }, hAsync(
|
|
10131
|
+
} }, hAsync(KolHeadingWcTag, { key: '6fdf9427c74afbcc932fa05c1840e8cb6b606b9a', _label: "", _level: this.state._level, class: "accordion-heading" }, hAsync(KolButtonWcTag, { key: '4e82eb30cd0ff1fef25262dc0e34a3408b0aaad6', class: "accordion-button", ref: this.catchRef, slot: "expert", _ariaControls: this.nonce, _ariaExpanded: this.state._open, _disabled: this.state._disabled, _icons: this.state._open ? 'codicon codicon-remove' : 'codicon codicon-add', _label: this.state._label, _on: { onClick: this.onClick } })), hAsync("div", { key: '0835efe279a9deb62190997682ef0e8fe4a1edf2', class: "wrapper" }, hAsync("div", { key: 'f7244e8b9807223dd80f0b261ec1e2b730f95e85', class: "animation-wrapper" }, hAsync("div", { key: '4ef5849701c39fe7f738cd34661e5c0fc9f29efc', "aria-hidden": this.state._open === false ? 'true' : undefined, class: "content", id: this.nonce }, hAsync("slot", { key: '324bf4086448b8c5700c98d6fa7d830846e362af' })))))));
|
|
10100
10132
|
}
|
|
10101
10133
|
validateDisabled(value) {
|
|
10102
10134
|
validateDisabled(this, value);
|
|
@@ -10170,7 +10202,7 @@ class KolAlert {
|
|
|
10170
10202
|
};
|
|
10171
10203
|
}
|
|
10172
10204
|
render() {
|
|
10173
|
-
return (hAsync(Host, { key: '
|
|
10205
|
+
return (hAsync(Host, { key: 'e521d298e8e47493ec537aad97c8d501ccab0676', class: "kol-alert" }, hAsync(KolAlertWcTag, { key: 'ed49e80a84167a1d5122c2d74e948c8899113e52', _alert: this._alert, _hasCloser: this._hasCloser, _label: this._label, _level: this._level, _on: this._on, _type: this._type, _variant: this._variant }, hAsync("slot", { key: 'd0e51952a1c60fbd7b9678d367c8022b077623b8' }))));
|
|
10174
10206
|
}
|
|
10175
10207
|
static get style() { return {
|
|
10176
10208
|
default: KolAlertDefaultStyle0
|
|
@@ -12704,7 +12736,7 @@ if (processEnv === 'test') {
|
|
|
12704
12736
|
}
|
|
12705
12737
|
|
|
12706
12738
|
const Icon = (props) => {
|
|
12707
|
-
return hAsync(
|
|
12739
|
+
return hAsync(KolIconTag, { class: "heading-icon", _label: typeof props.label === 'string' && props.label.length > 0 ? '' : props.ariaLabel, _icons: props.icon });
|
|
12708
12740
|
};
|
|
12709
12741
|
const AlertIcon = (props) => {
|
|
12710
12742
|
switch (props.type) {
|
|
@@ -12757,13 +12789,13 @@ class KolAlertWc {
|
|
|
12757
12789
|
this.validateAlert(false);
|
|
12758
12790
|
}, 10000);
|
|
12759
12791
|
}
|
|
12760
|
-
return (hAsync(Host, { key: '
|
|
12792
|
+
return (hAsync(Host, { key: '056ebeba8b0ebc0d76a98e3855a0022e1c689e09', class: {
|
|
12761
12793
|
'kol-alert-wc': true,
|
|
12762
12794
|
alert: true,
|
|
12763
12795
|
[this.state._type]: true,
|
|
12764
12796
|
[this.state._variant]: true,
|
|
12765
12797
|
hasCloser: !!this.state._hasCloser,
|
|
12766
|
-
}, role: this.state._alert ? 'alert' : undefined }, hAsync("div", { key: '
|
|
12798
|
+
}, role: this.state._alert ? 'alert' : undefined }, hAsync("div", { key: 'e2807b51c729dc7814aa46bc40f371d9b785b590', class: "heading" }, hAsync(AlertIcon, { key: '207367acb5c59e0977feb68adefb0a7cdb0f4668', label: this.state._label, type: this.state._type }), hAsync("div", { key: '1d9b3c352e84393eb31fbd056a6aa9ec639d13cd', class: "heading-content" }, typeof this.state._label === 'string' && ((_a = this.state._label) === null || _a === void 0 ? void 0 : _a.length) > 0 && (hAsync(KolHeadingWcTag, { _label: this.state._label, _level: this.state._level })), this.state._variant === 'msg' && (hAsync("div", { class: "content" }, hAsync("slot", null)))), this.state._hasCloser && (hAsync(KolButtonWcTag, { class: "close", _hideLabel: true, _icons: {
|
|
12767
12799
|
left: {
|
|
12768
12800
|
icon: 'codicon codicon-close',
|
|
12769
12801
|
},
|
|
@@ -12831,7 +12863,7 @@ class KolAlertWc {
|
|
|
12831
12863
|
}; }
|
|
12832
12864
|
}
|
|
12833
12865
|
|
|
12834
|
-
const defaultStyleCss$H = "@layer kol-global {\n .sc-kol-avatar-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-avatar-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-avatar-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-avatar-default-h {\n display: block;\n }\n}\n@layer kol-component {\n .container {\n border-radius: 50%;\n overflow: hidden;\n \n outline: transparent solid 1px;\n \n width: 100px;\n height: 100px;\n }\n .image {\n width: 100%;\n height: 100%;\n }\n .initials {\n width: 100%;\n height: 100%;\n display: flex;\n align-items: center;\n justify-content: center;\n \n background: #d3d3d3;\n font-size:
|
|
12866
|
+
const defaultStyleCss$H = "@layer kol-global {\n .sc-kol-avatar-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-avatar-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-avatar-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-avatar-default-h {\n display: block;\n }\n}\n@layer kol-component {\n .container {\n border-radius: 50%;\n overflow: hidden;\n \n outline: transparent solid 1px;\n \n width: 100px;\n height: 100px;\n }\n .image {\n width: 100%;\n height: 100%;\n }\n .initials {\n width: 100%;\n height: 100%;\n display: flex;\n align-items: center;\n justify-content: center;\n \n background: #d3d3d3;\n font-size: calc(32rem / var(--kolibri-root-font-size, 16));\n }\n}";
|
|
12835
12867
|
var KolAvatarDefaultStyle0 = defaultStyleCss$H;
|
|
12836
12868
|
|
|
12837
12869
|
class KolAvatar {
|
|
@@ -12841,7 +12873,7 @@ class KolAvatar {
|
|
|
12841
12873
|
this._label = undefined;
|
|
12842
12874
|
}
|
|
12843
12875
|
render() {
|
|
12844
|
-
return (hAsync(Host, { key: '
|
|
12876
|
+
return (hAsync(Host, { key: '0df334a0e4d8d0293355420ed5c36dbbcf2d8d6c', class: "kol-avatar" }, hAsync(KolAvatarWcTag, { key: '31e4127b2530c95b357e181df773df114a2b74a5', _src: this._src, _label: this._label })));
|
|
12845
12877
|
}
|
|
12846
12878
|
static get style() { return {
|
|
12847
12879
|
default: KolAvatarDefaultStyle0
|
|
@@ -12945,16 +12977,16 @@ class KolBadge {
|
|
|
12945
12977
|
};
|
|
12946
12978
|
}
|
|
12947
12979
|
renderSmartButton(props) {
|
|
12948
|
-
return (hAsync(
|
|
12980
|
+
return (hAsync(KolButtonWcTag, { _ariaControls: this.id, _customClass: props._customClass, _disabled: props._disabled, _hideLabel: true, _icons: props._icons, _id: props._id, _label: props._label, _on: props._on, _tooltipAlign: props._tooltipAlign, _variant: props._variant }));
|
|
12949
12981
|
}
|
|
12950
12982
|
render() {
|
|
12951
12983
|
const hasSmartButton = typeof this.state._smartButton === 'object' && this.state._smartButton !== null;
|
|
12952
|
-
return (hAsync(Host, { key: '
|
|
12984
|
+
return (hAsync(Host, { key: '53553ba5c140ed0317b07f3614c178a06f48b5f6', class: "kol-badge" }, hAsync("span", { key: 'eb2dd60af4f8c1a3db15d91b9419434917d0cecd', class: {
|
|
12953
12985
|
'smart-button': typeof this.state._smartButton === 'object' && this.state._smartButton !== null,
|
|
12954
12986
|
}, style: {
|
|
12955
12987
|
backgroundColor: this.bgColorStr,
|
|
12956
12988
|
color: this.colorStr,
|
|
12957
|
-
} }, hAsync(
|
|
12989
|
+
} }, hAsync(KolSpanWcTag, { key: '00a6f9b5dfb4c4402505c61d7a318e58a67982f9', id: hasSmartButton ? this.id : undefined, _allowMarkdown: true, _icons: this._icons, _label: this._label }), hasSmartButton && this.renderSmartButton(this.state._smartButton))));
|
|
12958
12990
|
}
|
|
12959
12991
|
validateColor(value) {
|
|
12960
12992
|
validateColor(this, value, {
|
|
@@ -13027,7 +13059,7 @@ class KolBreadcrumb {
|
|
|
13027
13059
|
registerInstance(this, hostRef);
|
|
13028
13060
|
this.renderLink = (link, index) => {
|
|
13029
13061
|
const lastIndex = this.state._links.length - 1;
|
|
13030
|
-
return (hAsync("li", { key: index }, index !== 0 && hAsync(
|
|
13062
|
+
return (hAsync("li", { key: index }, index !== 0 && hAsync(KolIconTag, { _label: "", _icons: "codicon codicon-chevron-right" }), index === lastIndex ? (hAsync("span", null, link._hideLabel ? (hAsync(KolIconTag, { _label: link._label, _icons: typeof link._icons === 'string' ? link._icons : 'codicon codicon-symbol-event' })) : (hAsync(Fragment, null, link._label)))) : (hAsync(KolLinkTag, Object.assign({}, link)))));
|
|
13031
13063
|
};
|
|
13032
13064
|
this._label = undefined;
|
|
13033
13065
|
this._links = undefined;
|
|
@@ -13037,7 +13069,7 @@ class KolBreadcrumb {
|
|
|
13037
13069
|
};
|
|
13038
13070
|
}
|
|
13039
13071
|
render() {
|
|
13040
|
-
return (hAsync(Host, { key: '
|
|
13072
|
+
return (hAsync(Host, { key: '8207d01dbede825fd138abd0f162601a2a614073', class: "kol-breadcrumb" }, hAsync("nav", { key: '4e88e8fbfa6c1d992f5a2774a150abf0f62fb201', "aria-label": this.state._label }, hAsync("ul", { key: '965b241c1bdab7d6fd533b8624701aa3a18e2ad5' }, this.state._links.length === 0 && (hAsync("li", null, hAsync(KolIconTag, { _label: "", _icons: "codicon codicon-home" }), "\u2026")), this.state._links.map(this.renderLink)))));
|
|
13041
13073
|
}
|
|
13042
13074
|
validateLabel(value, _oldValue, initial = false) {
|
|
13043
13075
|
if (!initial) {
|
|
@@ -13113,11 +13145,11 @@ class KolButton {
|
|
|
13113
13145
|
return this._value;
|
|
13114
13146
|
}
|
|
13115
13147
|
render() {
|
|
13116
|
-
return (hAsync(Host, { key: '
|
|
13148
|
+
return (hAsync(Host, { key: '67fdae48e99dbeff6328fcc24853e293a249d3e1', class: "kol-button" }, hAsync(KolButtonWcTag, { key: '2ecce25536995648275992c63f5dd953e8bcf034', ref: this.catchRef, class: {
|
|
13117
13149
|
button: true,
|
|
13118
13150
|
[this._variant]: this._variant !== 'custom',
|
|
13119
13151
|
[this._customClass]: this._variant === 'custom' && typeof this._customClass === 'string' && this._customClass.length > 0,
|
|
13120
|
-
}, _accessKey: this._accessKey, _ariaControls: this._ariaControls, _ariaExpanded: this._ariaExpanded, _ariaSelected: this._ariaSelected, _customClass: this._customClass, _disabled: this._disabled, _hideLabel: this._hideLabel, _icons: this._icons, _id: this._id, _label: this._label, _name: this._name, _on: this._on, _role: this._role, _syncValueBySelector: this._syncValueBySelector, _tabIndex: this._tabIndex, _tooltipAlign: this._tooltipAlign, _type: this._type, _value: this._value, _variant: this._variant }, hAsync("slot", { key: '
|
|
13152
|
+
}, _accessKey: this._accessKey, _ariaControls: this._ariaControls, _ariaExpanded: this._ariaExpanded, _ariaSelected: this._ariaSelected, _customClass: this._customClass, _disabled: this._disabled, _hideLabel: this._hideLabel, _icons: this._icons, _id: this._id, _label: this._label, _name: this._name, _on: this._on, _role: this._role, _syncValueBySelector: this._syncValueBySelector, _tabIndex: this._tabIndex, _tooltipAlign: this._tooltipAlign, _type: this._type, _value: this._value, _variant: this._variant }, hAsync("slot", { key: 'cf135329e77904298eab357d91d14f4a2083f0c8', name: "expert", slot: "expert" }))));
|
|
13121
13153
|
}
|
|
13122
13154
|
get host() { return getElement(this); }
|
|
13123
13155
|
static get style() { return {
|
|
@@ -13162,7 +13194,7 @@ class KolButtonGroup {
|
|
|
13162
13194
|
registerInstance(this, hostRef);
|
|
13163
13195
|
}
|
|
13164
13196
|
render() {
|
|
13165
|
-
return (hAsync(Host, { key: '
|
|
13197
|
+
return (hAsync(Host, { key: '7822a4906cddb538912fb5dc9ab78e5f8ff571a1', class: "kol-button-group" }, hAsync(KolButtonGroupWcTag, { key: '4acc5421feeaba4738090429852cb7dedca67e5e' }, hAsync("slot", { key: 'c7514820bb0933ed067c979c06077f6957396f7b' }))));
|
|
13166
13198
|
}
|
|
13167
13199
|
static get style() { return {
|
|
13168
13200
|
default: KolButtonGroupDefaultStyle0
|
|
@@ -13228,7 +13260,7 @@ class KolButtonLink {
|
|
|
13228
13260
|
return this._value;
|
|
13229
13261
|
}
|
|
13230
13262
|
render() {
|
|
13231
|
-
return (hAsync(Host, { key: '
|
|
13263
|
+
return (hAsync(Host, { key: '81dd5ca6f4756ef3a97184dff6a36f19e75a3682', class: "kol-button-link" }, hAsync(KolButtonWcTag, { key: '8333cafecd10ff34bb401dd4d2fb28c52d07a84d', ref: this.catchRef, _accessKey: this._accessKey, _ariaControls: this._ariaControls, _ariaExpanded: this._ariaExpanded, _ariaSelected: this._ariaSelected, _disabled: this._disabled, _icons: this._icons, _hideLabel: this._hideLabel, _id: this._id, _label: this._label, _name: this._name, _on: this._on, _role: "link", _syncValueBySelector: this._syncValueBySelector, _tabIndex: this._tabIndex, _tooltipAlign: this._tooltipAlign, _type: this._type, _value: this._value }, hAsync("slot", { key: '097b08bd7bfe43f999db5e73b176b423d270b0fe', name: "expert", slot: "expert" }))));
|
|
13232
13264
|
}
|
|
13233
13265
|
get host() { return getElement(this); }
|
|
13234
13266
|
static get style() { return {
|
|
@@ -13530,13 +13562,13 @@ class AssociatedInputController {
|
|
|
13530
13562
|
class KolButtonWc {
|
|
13531
13563
|
render() {
|
|
13532
13564
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
13533
|
-
return (hAsync(Host, { key: '
|
|
13565
|
+
return (hAsync(Host, { key: 'dd5a9e3afb3250b04a4a2d012ca2885736d234e4', class: "kol-button-wc" }, hAsync("button", Object.assign({ key: '9d985bf2bd663f8039ad7805ab81816c08abcd45', ref: this.catchRef, accessKey: this.state._accessKey || undefined, "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: {
|
|
13534
13566
|
button: true,
|
|
13535
13567
|
disabled: this.state._disabled === true,
|
|
13536
13568
|
[this.state._variant]: this.state._variant !== 'custom',
|
|
13537
13569
|
[this.state._customClass]: this.state._variant === 'custom' && typeof this.state._customClass === 'string' && this.state._customClass.length > 0,
|
|
13538
13570
|
'hide-label': this.state._hideLabel === true,
|
|
13539
|
-
}, 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(
|
|
13571
|
+
}, 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(KolSpanWcTag, { key: '2d1ac0b37da70e0fc2ec049a1c6bf835fededa56', class: "button-inner", _accessKey: this.state._accessKey, _icons: this.state._icons, _hideLabel: this.state._hideLabel, _label: hasExpertSlot ? '' : this.state._label }, hAsync("slot", { key: 'fc4422ac22bb63edb8ba2ecf768802392854b882', name: "expert", slot: "expert" }))), hAsync(KolTooltipWcTag, { key: '0228c4d7ecbeb88dcd16e244e5bc4e9b9becf1b0', "aria-hidden": "true", hidden: hasExpertSlot || !this.state._hideLabel, _accessKey: this._accessKey, _align: this.state._tooltipAlign, _label: typeof this.state._label === 'string' ? this.state._label : '' })));
|
|
13540
13572
|
}
|
|
13541
13573
|
constructor(hostRef) {
|
|
13542
13574
|
registerInstance(this, hostRef);
|
|
@@ -13755,7 +13787,7 @@ class KolCard {
|
|
|
13755
13787
|
};
|
|
13756
13788
|
}
|
|
13757
13789
|
render() {
|
|
13758
|
-
return (hAsync(Host, { key: '
|
|
13790
|
+
return (hAsync(Host, { key: '3a58c3891d1edac983aa496b5edac9ec3aa8e2b4', class: "kol-card" }, hAsync("div", { key: '50bc445f86ca4c282600b7351bfbff4539c0decd', class: "card" }, hAsync("div", { key: '9e5d76560aead613b5fea37975e5bc43592808c5', class: "header" }, hAsync(KolHeadingWcTag, { key: '278917cdfa2ed7b7034f0572796c149bb7fb8197', _label: this.state._label, _level: this.state._level })), hAsync("div", { key: '37c5183d5efcdc6b948f0baa1ab892ad4df07558', class: "content" }, hAsync("slot", { key: '3d57f3d4911c7b7c5983a9b296e1bfee73a10f8b' })), this.state._hasCloser && (hAsync(KolButtonWcTag, { class: "close", _hideLabel: true, _icons: {
|
|
13759
13791
|
left: {
|
|
13760
13792
|
icon: 'codicon codicon-close',
|
|
13761
13793
|
},
|
|
@@ -13918,10 +13950,10 @@ class KolDetails {
|
|
|
13918
13950
|
};
|
|
13919
13951
|
}
|
|
13920
13952
|
render() {
|
|
13921
|
-
return (hAsync(Host, { key: '
|
|
13953
|
+
return (hAsync(Host, { key: 'cda9e87d6f6a6a7803fd921180faf7a973f232b9', class: "kol-details" }, hAsync("details", { key: 'f2b66dfeda3759ec143d6fcf6fccd26189dd3580', ref: this.catchDetails, class: {
|
|
13922
13954
|
disabled: this.state._disabled === true,
|
|
13923
13955
|
open: this.state._open === true,
|
|
13924
|
-
}, onToggle: this.handleToggle }, hAsync("summary", { key: '
|
|
13956
|
+
}, onToggle: this.handleToggle }, hAsync("summary", { key: '8e0742051d3344cab3e790915c974919c8ce2a4a', ref: this.catchSummary, "aria-disabled": this.state._disabled ? 'true' : undefined, onClick: this.preventToggleIfDisabled, onKeyPress: this.preventToggleIfDisabled, tabIndex: this.state._disabled ? -1 : undefined }, hAsync(KolIconTag, { key: '39775945cdfbfc846138121bac62fc6f9e3a69dd', _label: "", _icons: "codicon codicon-chevron-right", class: `icon ${this.state._open ? 'is-open' : ''}` }), hAsync("span", { key: 'f990cbbe0104f5ae5d92cb81b24df94253e245c4' }, this.state._label)), hAsync("div", { key: 'd753895b96f482f7a8248f1fc41ac00359534444', "aria-hidden": this.state._open === false ? 'true' : undefined, class: "content", ref: (element) => (this.contentElement = element) }, hAsync(KolIndentedTextTag, { key: '6394a852168af08b09f3912245161332f2257af6' }, hAsync("slot", { key: '24dd7a5270024763791410594a0ccc9030781e20' }))))));
|
|
13925
13957
|
}
|
|
13926
13958
|
validateDisabled(value) {
|
|
13927
13959
|
validateDisabled(this, value);
|
|
@@ -14016,10 +14048,19 @@ class KolForm {
|
|
|
14016
14048
|
this.state = {};
|
|
14017
14049
|
}
|
|
14018
14050
|
render() {
|
|
14019
|
-
return (hAsync(Host, { key: '
|
|
14051
|
+
return (hAsync(Host, { key: '65d715836bb74ba26265a82596c68938518f1bd6', class: "kol-form" }, this._errorList && this._errorList.length > 0 && (hAsync(KolAlertTag, { _type: "error" }, translate('kol-error-list-message'), hAsync("nav", { "aria-label": translate('kol-error-list') }, hAsync("ul", null, this._errorList.map((error, index) => (hAsync("li", { key: index }, hAsync(KolLinkTag, { _href: error.selector, _label: error.message, _on: { onClick: this.handleLinkClick }, ref: (el) => {
|
|
14020
14052
|
if (index === 0)
|
|
14021
14053
|
this.errorListElement = el;
|
|
14022
|
-
} })))))))), this.state._requiredText === true ? (hAsync("p", null, hAsync(
|
|
14054
|
+
} })))))))), hAsync("form", { key: '47ab1f7b0e6ab78c81d63e073b9cde8baf007f39', method: "post", onSubmit: this.onSubmit, onReset: this.onReset, autoComplete: "off", noValidate: true }, this.state._requiredText === true ? (hAsync("p", null, hAsync(KolIndentedTextTag, null, translate('kol-form-description')))) : typeof this.state._requiredText === 'string' && this.state._requiredText.length > 0 ? (hAsync("p", null, hAsync(KolIndentedTextTag, null, this.state._requiredText))) : null, hAsync("slot", { key: '235d3db4100f7f872803573a909f11c137f4504c' }))));
|
|
14055
|
+
}
|
|
14056
|
+
async focusErrorList() {
|
|
14057
|
+
setTimeout(() => {
|
|
14058
|
+
var _a;
|
|
14059
|
+
if (this._errorList && this._errorList.length > 0) {
|
|
14060
|
+
(_a = this.errorListElement) === null || _a === void 0 ? void 0 : _a.focus();
|
|
14061
|
+
}
|
|
14062
|
+
}, 300);
|
|
14063
|
+
return Promise.resolve();
|
|
14023
14064
|
}
|
|
14024
14065
|
validateOn(value) {
|
|
14025
14066
|
if (typeof value === 'object' && value !== null) {
|
|
@@ -14042,12 +14083,6 @@ class KolForm {
|
|
|
14042
14083
|
this.validateRequiredText(this._requiredText);
|
|
14043
14084
|
this.validateErrorList(this._errorList);
|
|
14044
14085
|
}
|
|
14045
|
-
componentDidRender() {
|
|
14046
|
-
var _a;
|
|
14047
|
-
if (this._errorList && this._errorList.length > 0) {
|
|
14048
|
-
(_a = this.errorListElement) === null || _a === void 0 ? void 0 : _a.focus();
|
|
14049
|
-
}
|
|
14050
|
-
}
|
|
14051
14086
|
static get watchers() { return {
|
|
14052
14087
|
"_on": ["validateOn"],
|
|
14053
14088
|
"_requiredText": ["validateRequiredText"],
|
|
@@ -14060,7 +14095,8 @@ class KolForm {
|
|
|
14060
14095
|
"_on": [16],
|
|
14061
14096
|
"_requiredText": [8, "_required-text"],
|
|
14062
14097
|
"_errorList": [16],
|
|
14063
|
-
"state": [32]
|
|
14098
|
+
"state": [32],
|
|
14099
|
+
"focusErrorList": [64]
|
|
14064
14100
|
},
|
|
14065
14101
|
"$listeners$": undefined,
|
|
14066
14102
|
"$lazyBundleId$": "-",
|
|
@@ -14080,7 +14116,7 @@ class KolHeading {
|
|
|
14080
14116
|
this._variant = undefined;
|
|
14081
14117
|
}
|
|
14082
14118
|
render() {
|
|
14083
|
-
return (hAsync(
|
|
14119
|
+
return (hAsync(KolHeadingWcTag, { key: '8685c39e6bfc5bb7d6885e43112d9742cc539a6e', _label: this._label, _level: this._level, _secondaryHeadline: this._secondaryHeadline, _variant: this._variant, class: "kol-heading" }, hAsync("slot", { key: '5fcf1c3ade332ba647c330985ee459a0f8e89421', name: "expert", slot: "expert" })));
|
|
14084
14120
|
}
|
|
14085
14121
|
static get style() { return {
|
|
14086
14122
|
default: KolHeadingDefaultStyle0
|
|
@@ -14333,10 +14369,12 @@ class KolIndentedText {
|
|
|
14333
14369
|
}; }
|
|
14334
14370
|
}
|
|
14335
14371
|
|
|
14336
|
-
|
|
14372
|
+
function r(e){var t,f,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=" "),n+=f);}else for(f in e)e[f]&&(n&&(n+=" "),n+=f);return n}function clsx(){for(var e,t,f=0,n="",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r(e))&&(n&&(n+=" "),n+=t);return n}
|
|
14373
|
+
|
|
14374
|
+
const FormFieldMsg = ({ _alert, _msg, _hideError, _id }) => (hAsync(KolAlertWcTag, Object.assign({ "aria-hidden": "true", id: `${_id}-error`, _alert: _alert, _type: "error", class: {
|
|
14337
14375
|
error: true,
|
|
14338
14376
|
'visually-hidden': _hideError === true,
|
|
14339
|
-
} },
|
|
14377
|
+
} }, _msg), (_msg === null || _msg === void 0 ? void 0 : _msg._description) || undefined));
|
|
14340
14378
|
|
|
14341
14379
|
class KolInput {
|
|
14342
14380
|
constructor(hostRef) {
|
|
@@ -14349,7 +14387,6 @@ class KolInput {
|
|
|
14349
14387
|
this._alert = true;
|
|
14350
14388
|
this._currentLength = undefined;
|
|
14351
14389
|
this._disabled = false;
|
|
14352
|
-
this._error = '';
|
|
14353
14390
|
this._hasCounter = false;
|
|
14354
14391
|
this._hideError = false;
|
|
14355
14392
|
this._hideLabel = false;
|
|
@@ -14358,6 +14395,7 @@ class KolInput {
|
|
|
14358
14395
|
this._id = undefined;
|
|
14359
14396
|
this._label = undefined;
|
|
14360
14397
|
this._maxLength = undefined;
|
|
14398
|
+
this._msg = undefined;
|
|
14361
14399
|
this._readOnly = false;
|
|
14362
14400
|
this._renderNoLabel = false;
|
|
14363
14401
|
this._required = false;
|
|
@@ -14374,24 +14412,37 @@ class KolInput {
|
|
|
14374
14412
|
return icon && typeof icon === 'object' && icon.style ? icon.style : {};
|
|
14375
14413
|
}
|
|
14376
14414
|
render() {
|
|
14377
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
14378
|
-
const
|
|
14415
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
|
|
14416
|
+
const isMessageValidError = Boolean(((_a = this._msg) === null || _a === void 0 ? void 0 : _a._type) === 'error' && this._msg._description && ((_b = this._msg._description) === null || _b === void 0 ? void 0 : _b.length) > 0);
|
|
14417
|
+
const hasError = !this._readOnly && isMessageValidError && this._touched === true;
|
|
14418
|
+
const showFormFieldMsg = Boolean(hasError || (((_c = this._msg) === null || _c === void 0 ? void 0 : _c._type) !== 'error' && ((_d = this._msg) === null || _d === void 0 ? void 0 : _d._description)));
|
|
14379
14419
|
const hasExpertSlot = showExpertSlot(this._label);
|
|
14380
14420
|
const hasHint = typeof this._hint === 'string' && this._hint.length > 0;
|
|
14381
14421
|
const useTooltopInsteadOfLabel = !hasExpertSlot && this._hideLabel;
|
|
14382
|
-
return (hAsync(Host, { key: '
|
|
14383
|
-
'kol-input': true,
|
|
14422
|
+
return (hAsync(Host, { key: 'acb6294dbb3bb30298be633a4728d890d24c6dc7', class: clsx('kol-input', this.getModifierClassNameByMsgType(), {
|
|
14384
14423
|
disabled: this._disabled === true,
|
|
14385
14424
|
error: hasError === true,
|
|
14386
14425
|
'read-only': this._readOnly === true,
|
|
14387
14426
|
required: this._required === true,
|
|
14388
14427
|
touched: this._touched === true,
|
|
14389
14428
|
'hidden-error': this._hideError === true,
|
|
14390
|
-
} }, hAsync("label", { key: '
|
|
14429
|
+
}) }, hAsync("label", { key: '356dbae7d6b7b02202e1020131dc7e8bb70a69c2', class: "input-label", id: !useTooltopInsteadOfLabel ? `${this._id}-label` : undefined, hidden: useTooltopInsteadOfLabel, htmlFor: this._id }, hAsync("span", { key: 'c5ee06729ca4bb5c1458085068ac6a64fcfeae1a', class: "input-label-span" }, hAsync("slot", { key: '146aeb9bef32ebc54b1fcbf282841d7d44fd5730', name: "label" }))), hasHint && (hAsync("span", { class: "hint", id: `${this._id}-hint` }, this._hint)), hAsync("div", { key: '755e40c1da91b382387ddea16935235e793fff1b', class: {
|
|
14391
14430
|
input: true,
|
|
14392
|
-
'icon-left': typeof ((
|
|
14393
|
-
'icon-right': typeof ((
|
|
14394
|
-
} }, ((
|
|
14431
|
+
'icon-left': typeof ((_e = this._icons) === null || _e === void 0 ? void 0 : _e.left) === 'object',
|
|
14432
|
+
'icon-right': typeof ((_f = this._icons) === null || _f === void 0 ? void 0 : _f.right) === 'object',
|
|
14433
|
+
} }, ((_g = this._icons) === null || _g === void 0 ? void 0 : _g.left) && (hAsync(KolIconTag, { _label: "", _icons: ((_h = this._icons) === null || _h === void 0 ? void 0 : _h.left).icon, style: this.getIconStyles((_j = this._icons) === null || _j === void 0 ? void 0 : _j.left) })), hAsync("div", { key: '49c2557719125b83a696987ee88ec72a254b5077', ref: this.catchInputSlot, id: this.slotName, class: "input-slot" }), typeof this._smartButton === 'object' && this._smartButton !== null && (hAsync(KolButtonWcTag, { _customClass: this._smartButton._customClass, _disabled: this._smartButton._disabled, _icons: this._smartButton._icons, _hideLabel: true, _id: this._smartButton._id, _label: this._smartButton._label, _on: this._smartButton._on, _tooltipAlign: this._smartButton._tooltipAlign, _variant: this._smartButton._variant })), ((_k = this._icons) === null || _k === void 0 ? void 0 : _k.right) && (hAsync(KolIconTag, { _label: "", _icons: ((_l = this._icons) === null || _l === void 0 ? void 0 : _l.right).icon, style: this.getIconStyles((_m = this._icons) === null || _m === void 0 ? void 0 : _m.right) }))), useTooltopInsteadOfLabel && (hAsync(KolTooltipWcTag, { "aria-hidden": "true", class: "input-tooltip", _accessKey: this._accessKey, _align: this._tooltipAlign, _id: this._hideLabel ? `${this._id}-label` : undefined, _label: this._label })), showFormFieldMsg && hAsync(FormFieldMsg, { _alert: this._alert, _hideError: this._hideError, _msg: this._msg, _id: this._id }), Array.isArray(this._suggestions) && this._suggestions.length > 0 && (hAsync("datalist", { id: `${this._id}-list` }, this._suggestions.map((option) => (hAsync("option", { value: option }))))), this._hasCounter && (hAsync("span", { class: "counter", "aria-atomic": "true", "aria-live": "polite" }, this._currentLength, this._maxLength && (hAsync(Fragment, null, hAsync("span", { "aria-label": translate('kol-of'), role: "img" }, "/"), this._maxLength)), ' ', hAsync("span", null, translate('kol-characters'))))));
|
|
14434
|
+
}
|
|
14435
|
+
getModifierClassNameByMsgType() {
|
|
14436
|
+
var _a, _b;
|
|
14437
|
+
if ((_a = this._msg) === null || _a === void 0 ? void 0 : _a._type) {
|
|
14438
|
+
return {
|
|
14439
|
+
default: 'msg-type-default',
|
|
14440
|
+
info: 'msg-type-info',
|
|
14441
|
+
success: 'msg-type-success',
|
|
14442
|
+
warning: 'msg-type-warning',
|
|
14443
|
+
error: 'msg-type-error',
|
|
14444
|
+
}[(_b = this._msg) === null || _b === void 0 ? void 0 : _b._type];
|
|
14445
|
+
}
|
|
14395
14446
|
}
|
|
14396
14447
|
get host() { return getElement(this); }
|
|
14397
14448
|
static get cmpMeta() { return {
|
|
@@ -14402,7 +14453,6 @@ class KolInput {
|
|
|
14402
14453
|
"_alert": [4],
|
|
14403
14454
|
"_currentLength": [2, "_current-length"],
|
|
14404
14455
|
"_disabled": [4],
|
|
14405
|
-
"_error": [1],
|
|
14406
14456
|
"_hasCounter": [4, "_has-counter"],
|
|
14407
14457
|
"_hideError": [4, "_hide-error"],
|
|
14408
14458
|
"_hideLabel": [4, "_hide-label"],
|
|
@@ -14411,6 +14461,7 @@ class KolInput {
|
|
|
14411
14461
|
"_id": [1],
|
|
14412
14462
|
"_label": [1],
|
|
14413
14463
|
"_maxLength": [2, "_max-length"],
|
|
14464
|
+
"_msg": [16],
|
|
14414
14465
|
"_readOnly": [4, "_read-only"],
|
|
14415
14466
|
"_renderNoLabel": [4, "_render-no-label"],
|
|
14416
14467
|
"_required": [4],
|
|
@@ -14427,7 +14478,9 @@ class KolInput {
|
|
|
14427
14478
|
}
|
|
14428
14479
|
|
|
14429
14480
|
const getRenderStates = (state) => {
|
|
14430
|
-
|
|
14481
|
+
var _a, _b;
|
|
14482
|
+
const isMessageValidError = Boolean(((_a = state._msg) === null || _a === void 0 ? void 0 : _a._type) === 'error' && state._msg._description && ((_b = state._msg._description) === null || _b === void 0 ? void 0 : _b.length) > 0);
|
|
14483
|
+
const hasError = isMessageValidError && state._touched === true;
|
|
14431
14484
|
const hasHint = typeof state._hint === 'string' && state._hint.length > 0;
|
|
14432
14485
|
const ariaDescribedBy = [];
|
|
14433
14486
|
if (hasError === true) {
|
|
@@ -14483,6 +14536,7 @@ class InputController extends ControlledInputController {
|
|
|
14483
14536
|
onChange: this.onChange.bind(this),
|
|
14484
14537
|
onClick: this.onClick.bind(this),
|
|
14485
14538
|
onFocus: this.onFocus.bind(this),
|
|
14539
|
+
onInput: this.onInput.bind(this),
|
|
14486
14540
|
};
|
|
14487
14541
|
this.component = component;
|
|
14488
14542
|
}
|
|
@@ -14499,7 +14553,13 @@ class InputController extends ControlledInputController {
|
|
|
14499
14553
|
}
|
|
14500
14554
|
}
|
|
14501
14555
|
validateError(value) {
|
|
14502
|
-
|
|
14556
|
+
const message = value
|
|
14557
|
+
? {
|
|
14558
|
+
_description: value,
|
|
14559
|
+
_type: 'error',
|
|
14560
|
+
}
|
|
14561
|
+
: undefined;
|
|
14562
|
+
this.validateMsg(message);
|
|
14503
14563
|
}
|
|
14504
14564
|
validateHideError(value) {
|
|
14505
14565
|
validateHideError(this.component, value, {
|
|
@@ -14544,6 +14604,9 @@ class InputController extends ControlledInputController {
|
|
|
14544
14604
|
required: true,
|
|
14545
14605
|
});
|
|
14546
14606
|
}
|
|
14607
|
+
validateMsg(value) {
|
|
14608
|
+
validateMsg(this.component, value);
|
|
14609
|
+
}
|
|
14547
14610
|
validateOn(value) {
|
|
14548
14611
|
if (typeof value === 'object') {
|
|
14549
14612
|
setState(this.component, '_on', value);
|
|
@@ -14567,6 +14630,7 @@ class InputController extends ControlledInputController {
|
|
|
14567
14630
|
this.validateAccessKey(this.component._accessKey);
|
|
14568
14631
|
this.validateAdjustHeight(this.component._adjustHeight);
|
|
14569
14632
|
this.validateError(this.component._error);
|
|
14633
|
+
this.validateMsg(this.component._msg);
|
|
14570
14634
|
this.validateDisabled(this.component._disabled);
|
|
14571
14635
|
this.validateHideError(this.component._hideError);
|
|
14572
14636
|
this.validateHideLabel(this.component._hideLabel);
|
|
@@ -14591,12 +14655,23 @@ class InputController extends ControlledInputController {
|
|
|
14591
14655
|
var _a;
|
|
14592
14656
|
const value = event.target.value;
|
|
14593
14657
|
tryToDispatchKoliBriEvent('change', this.host, value);
|
|
14594
|
-
this.setFormAssociatedValue(value);
|
|
14595
14658
|
if (typeof ((_a = this.component._on) === null || _a === void 0 ? void 0 : _a.onChange) === 'function') {
|
|
14596
14659
|
this.component._on.onChange(event, value);
|
|
14597
14660
|
}
|
|
14598
14661
|
this.valueChangeListeners.forEach((listener) => listener(value));
|
|
14599
14662
|
}
|
|
14663
|
+
onInput(event, shouldSetFormAssociatedValue = true) {
|
|
14664
|
+
var _a;
|
|
14665
|
+
const value = event.target.value;
|
|
14666
|
+
stopPropagation(event);
|
|
14667
|
+
tryToDispatchKoliBriEvent('input', this.host);
|
|
14668
|
+
if (shouldSetFormAssociatedValue) {
|
|
14669
|
+
this.setFormAssociatedValue(value);
|
|
14670
|
+
}
|
|
14671
|
+
if (typeof ((_a = this.component._on) === null || _a === void 0 ? void 0 : _a.onInput) === 'function') {
|
|
14672
|
+
this.component._on.onInput(event);
|
|
14673
|
+
}
|
|
14674
|
+
}
|
|
14600
14675
|
onClick(event) {
|
|
14601
14676
|
var _a;
|
|
14602
14677
|
stopPropagation(event);
|
|
@@ -14650,26 +14725,11 @@ class InputRadioController extends InputCheckboxRadioController {
|
|
|
14650
14725
|
super(component, name, host);
|
|
14651
14726
|
this.keyOptionMap = new Map();
|
|
14652
14727
|
this.getOptionByKey = (key) => this.keyOptionMap.get(key);
|
|
14653
|
-
this.isValueInOptions = (value, options) => {
|
|
14654
|
-
return options.find((option) => option.value === value) !== undefined;
|
|
14655
|
-
};
|
|
14656
14728
|
this.afterPatchOptions = (value, _state, _component, key) => {
|
|
14657
14729
|
if (key === '_value') {
|
|
14658
14730
|
this.setFormAssociatedValue(value);
|
|
14659
14731
|
}
|
|
14660
14732
|
};
|
|
14661
|
-
this.beforePatchOptions = (_value, nextState) => {
|
|
14662
|
-
const options = nextState.has('_options') ? nextState.get('_options') : this.component.state._options;
|
|
14663
|
-
if (Array.isArray(options) && options.length > 0) {
|
|
14664
|
-
this.keyOptionMap.clear();
|
|
14665
|
-
fillKeyOptionMap(this.keyOptionMap, options);
|
|
14666
|
-
const value = nextState.has('_value') ? nextState.get('_value') : this.component.state._value;
|
|
14667
|
-
if (this.isValueInOptions(value, options) === false) {
|
|
14668
|
-
nextState.set('_value', options[0].value);
|
|
14669
|
-
this.onStateChange();
|
|
14670
|
-
}
|
|
14671
|
-
}
|
|
14672
|
-
};
|
|
14673
14733
|
this.component = component;
|
|
14674
14734
|
}
|
|
14675
14735
|
validateOrientation(value) {
|
|
@@ -14681,7 +14741,6 @@ class InputRadioController extends InputCheckboxRadioController {
|
|
|
14681
14741
|
validateOptions(this.component, value, {
|
|
14682
14742
|
hooks: {
|
|
14683
14743
|
afterPatch: this.afterPatchOptions,
|
|
14684
|
-
beforePatch: this.beforePatchOptions,
|
|
14685
14744
|
},
|
|
14686
14745
|
});
|
|
14687
14746
|
}
|
|
@@ -14690,19 +14749,10 @@ class InputRadioController extends InputCheckboxRadioController {
|
|
|
14690
14749
|
value = Array.isArray(value) ? value[0] : value;
|
|
14691
14750
|
setState(this.component, '_value', value, {
|
|
14692
14751
|
afterPatch: this.afterPatchOptions,
|
|
14693
|
-
beforePatch: this.beforePatchOptions,
|
|
14694
14752
|
});
|
|
14695
14753
|
}
|
|
14696
|
-
componentWillLoad(
|
|
14754
|
+
componentWillLoad() {
|
|
14697
14755
|
super.componentWillLoad();
|
|
14698
|
-
this.onStateChange = () => {
|
|
14699
|
-
if (typeof onChange === 'function') {
|
|
14700
|
-
const timeout = setTimeout(() => {
|
|
14701
|
-
clearTimeout(timeout);
|
|
14702
|
-
onChange(STATE_CHANGE_EVENT);
|
|
14703
|
-
});
|
|
14704
|
-
}
|
|
14705
|
-
};
|
|
14706
14756
|
this.validateOrientation(this.component._orientation);
|
|
14707
14757
|
this.validateOptions(this.component._options);
|
|
14708
14758
|
this.validateValue(this.component._value);
|
|
@@ -14757,7 +14807,7 @@ class InputCheckboxController extends InputCheckboxRadioController {
|
|
|
14757
14807
|
}
|
|
14758
14808
|
}
|
|
14759
14809
|
|
|
14760
|
-
const defaultStyleCss$v = "@layer kol-global {\n .sc-kol-input-checkbox-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-checkbox-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-checkbox-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-checkbox-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size:
|
|
14810
|
+
const defaultStyleCss$v = "@layer kol-global {\n .sc-kol-input-checkbox-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-checkbox-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-checkbox-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-checkbox-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n }\n \n input[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n }\n \n select[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n }\n}\n@layer kol-component {\n label {\n cursor: pointer;\n }\n .kol-input {\n align-items: center;\n display: grid;\n justify-items: left;\n }\n .kol-input.default,\n .kol-input.switch {\n grid-template-columns: auto 1fr;\n }\n .kol-input .input {\n align-items: center;\n display: grid;\n order: 1;\n }\n .kol-input .input div {\n display: inline-flex;\n }\n .kol-input .input input {\n margin: 0;\n }\n .kol-input label {\n order: 2;\n }\n .kol-input .hint,\n .kol-input.error > .kol-alert {\n grid-column: span 2;\n }\n .kol-input .kol-alert.error {\n order: 3;\n }\n .kol-input .hint {\n order: 4;\n }\n input {\n border-style: solid;\n border-width: 2px;\n line-height: 24px;\n }\n input[type=checkbox] {\n appearance: none;\n background-color: #fff;\n cursor: pointer;\n transition: 0.5s;\n }\n input[type=checkbox]:before {\n content: \"\";\n cursor: pointer;\n }\n input[type=checkbox]:disabled:before {\n cursor: not-allowed;\n }\n .kol-input.required .tooltip-content .span-label::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .button {\n display: grid;\n grid-template-columns: var(--a11y-min-size) auto;\n grid-template-areas: \"error error\" \"input label\" \"hint hint\";\n }\n .button:focus-within {\n \n cursor: inherit;\n outline-color: black;\n outline-style: solid;\n }\n .button > .error {\n grid-area: error;\n }\n .button > label {\n grid-area: label;\n }\n .button > .input {\n grid-area: input;\n }\n .button > .hint {\n grid-area: hint;\n }\n .button .icon {\n display: flex;\n align-items: center;\n justify-content: center;\n width: var(--a11y-min-size);\n height: var(--a11y-min-size);\n }\n}\n@layer kol-component {\n .default .checkbox-container {\n align-items: center;\n display: flex;\n height: var(--a11y-min-size);\n justify-content: center;\n position: relative;\n width: var(--a11y-min-size);\n }\n .default .icon {\n display: block;\n inset: auto;\n position: absolute;\n z-index: 1;\n }\n .default:not(.checked):not(.indeterminate) .icon::part(icon) {\n display: none;\n }\n .default .checkbox-input-element {\n width: 22px;\n height: 22px;\n }\n}\n@layer kol-component {\n .switch .input {\n position: relative;\n }\n .switch input[type=checkbox] {\n display: inline-block;\n height: 1.7em;\n min-width: 3.2em;\n position: relative;\n width: 3.2em;\n }\n .switch input[type=checkbox]::before {\n background-color: #000;\n height: 1.2em;\n left: calc(0.25em - 2px);\n top: calc(0.25em - 2px);\n position: absolute;\n transition: 0.5s;\n width: 1.2em;\n }\n .switch input[type=checkbox]:checked::before {\n transform: translateX(1.5em);\n }\n .switch input[type=checkbox]:indeterminate::before {\n transform: translateX(0.75em);\n }\n .switch .icon {\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 1.2em;\n height: 1.2em;\n position: absolute;\n z-index: 1;\n top: 50%;\n left: 4px;\n transform: translate(0, -50%);\n transition: 0.5s;\n color: #000;\n }\n .switch.checked .icon {\n transform: translate(1.5em, -50%);\n }\n .switch.indeterminate .icon {\n transform: translate(0.75em, -50%);\n }\n}\n\n@layer kol-global {\n .sc-kol-input-checkbox-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-checkbox-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-checkbox-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-input-checkbox-default-h {\n display: block;\n }\n}\n@layer kol-component {\n .kol-alert-wc {\n display: grid;\n }\n .kol-alert-wc .heading {\n display: flex;\n place-items: center;\n }\n .kol-alert-wc .heading > div {\n flex-grow: 1;\n }\n .close {\n \n outline: transparent solid 1px;\n }\n}";
|
|
14761
14811
|
var KolInputCheckboxDefaultStyle0 = defaultStyleCss$v;
|
|
14762
14812
|
|
|
14763
14813
|
class KolInputCheckbox {
|
|
@@ -14768,13 +14818,13 @@ class KolInputCheckbox {
|
|
|
14768
14818
|
render() {
|
|
14769
14819
|
const { ariaDescribedBy } = getRenderStates(this.state);
|
|
14770
14820
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
14771
|
-
return (hAsync(Host, { key: '
|
|
14821
|
+
return (hAsync(Host, { key: 'ad1a6426df92ed8ca3ee3699982a505dc8bb498c', class: "kol-input-checkbox" }, hAsync(KolInputTag, { key: 'fb671b770db21dcfa6961e9d563b17ff24bd4dea', class: {
|
|
14772
14822
|
checkbox: true,
|
|
14773
14823
|
[this.state._variant]: true,
|
|
14774
14824
|
'hide-label': !!this.state._hideLabel,
|
|
14775
14825
|
checked: this.state._checked,
|
|
14776
14826
|
indeterminate: this.state._indeterminate,
|
|
14777
|
-
}, "data-role": this.state._variant === 'button' ? 'button' : undefined,
|
|
14827
|
+
}, "data-role": this.state._variant === 'button' ? 'button' : undefined, _accessKey: this.state._accessKey, _alert: this.state._alert, _disabled: this.state._disabled, _msg: this.state._msg, _hideError: this.state._hideError, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _id: this.state._id, _label: this.state._label, _required: this.state._required, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched }, hAsync("span", { key: 'd5ad2e86464c31f00150d11c94ef3d213e247e1a', slot: "label" }, hasExpertSlot ? (hAsync("slot", { name: "expert" })) : typeof this.state._accessKey === 'string' ? (hAsync(Fragment, null, hAsync(InternalUnderlinedAccessKey, { accessKey: this.state._accessKey, label: this.state._label }), ' ', hAsync("span", { class: "access-key-hint", "aria-hidden": "true" }, this.state._accessKey))) : (hAsync("span", null, this.state._label))), hAsync("label", { key: 'b1d00e32ffa9ce39aa6caf0e573cad21ac12a435', slot: "input", class: "checkbox-container" }, hAsync(KolIconTag, { key: 'e5eda2b2e5525f4b0726f22db91dd32cda42c72f', class: "icon", _icons: this.state._indeterminate ? this.state._icons.indeterminate : this.state._checked ? this.state._icons.checked : this.state._icons.unchecked, _label: "" }), hAsync("input", Object.assign({ key: '239b9a3961b17458a789235339574b7a62c20bfb', class: `checkbox-input-element${this.state._variant === 'button' ? ' visually-hidden' : ''}`, ref: this.catchRef, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, checked: this.state._checked, disabled: this.state._disabled, id: this.state._id, indeterminate: this.state._indeterminate, name: this.state._name, required: this.state._required, tabIndex: this.state._tabIndex, type: "checkbox" }, this.controller.onFacade, { onChange: this.onChange, onClick: undefined }))))));
|
|
14778
14828
|
}
|
|
14779
14829
|
constructor(hostRef) {
|
|
14780
14830
|
registerInstance(this, hostRef);
|
|
@@ -14805,6 +14855,7 @@ class KolInputCheckbox {
|
|
|
14805
14855
|
this._id = undefined;
|
|
14806
14856
|
this._indeterminate = undefined;
|
|
14807
14857
|
this._label = undefined;
|
|
14858
|
+
this._msg = undefined;
|
|
14808
14859
|
this._name = undefined;
|
|
14809
14860
|
this._on = undefined;
|
|
14810
14861
|
this._required = false;
|
|
@@ -14866,6 +14917,9 @@ class KolInputCheckbox {
|
|
|
14866
14917
|
validateLabel(value) {
|
|
14867
14918
|
this.controller.validateLabel(value);
|
|
14868
14919
|
}
|
|
14920
|
+
validateMsg(value) {
|
|
14921
|
+
this.controller.validateMsg(value);
|
|
14922
|
+
}
|
|
14869
14923
|
validateName(value) {
|
|
14870
14924
|
this.controller.validateName(value);
|
|
14871
14925
|
}
|
|
@@ -14909,6 +14963,7 @@ class KolInputCheckbox {
|
|
|
14909
14963
|
"_id": ["validateId"],
|
|
14910
14964
|
"_indeterminate": ["validateIndeterminate"],
|
|
14911
14965
|
"_label": ["validateLabel"],
|
|
14966
|
+
"_msg": ["validateMsg"],
|
|
14912
14967
|
"_name": ["validateName"],
|
|
14913
14968
|
"_on": ["validateOn"],
|
|
14914
14969
|
"_required": ["validateRequired"],
|
|
@@ -14937,6 +14992,7 @@ class KolInputCheckbox {
|
|
|
14937
14992
|
"_id": [1],
|
|
14938
14993
|
"_indeterminate": [1540],
|
|
14939
14994
|
"_label": [1],
|
|
14995
|
+
"_msg": [16],
|
|
14940
14996
|
"_name": [1],
|
|
14941
14997
|
"_on": [16],
|
|
14942
14998
|
"_required": [4],
|
|
@@ -15021,7 +15077,7 @@ class InputColorController extends InputIconController {
|
|
|
15021
15077
|
}
|
|
15022
15078
|
}
|
|
15023
15079
|
|
|
15024
|
-
const defaultStyleCss$u = "@layer kol-global {\n .sc-kol-input-color-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-color-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-color-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-color-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size:
|
|
15080
|
+
const defaultStyleCss$u = "@layer kol-global {\n .sc-kol-input-color-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-color-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-color-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-color-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n }\n \n input[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n }\n \n select[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n }\n}\n@layer kol-component {\n .kol-input {\n display: grid;\n }\n .kol-input .input-slot {\n flex-grow: 1;\n }\n input:not([type=checkbox], [type=radio]),\n select:not([multiple], [size]) {\n height: 2.75em;\n }\n input:focus,\n option:focus,\n select:focus,\n textarea:focus {\n outline: 0;\n }\n .input {\n display: flex;\n align-items: center;\n }\n .input > .kol-icon {\n display: grid;\n height: var(--a11y-min-size);\n place-items: center;\n }\n .kol-input.required .input-tooltip .span-label::after {\n content: \"*\";\n }\n}\n\n@layer kol-global {\n .sc-kol-input-color-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-color-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-color-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-input-color-default-h {\n display: block;\n }\n}\n@layer kol-component {\n .kol-alert-wc {\n display: grid;\n }\n .kol-alert-wc .heading {\n display: flex;\n place-items: center;\n }\n .kol-alert-wc .heading > div {\n flex-grow: 1;\n }\n .close {\n \n outline: transparent solid 1px;\n }\n}\n@layer kol-component {\n div.input {\n cursor: pointer;\n }\n}";
|
|
15025
15081
|
var KolInputColorDefaultStyle0 = defaultStyleCss$u;
|
|
15026
15082
|
|
|
15027
15083
|
class KolInputColor {
|
|
@@ -15033,10 +15089,10 @@ class KolInputColor {
|
|
|
15033
15089
|
const { ariaDescribedBy } = getRenderStates(this.state);
|
|
15034
15090
|
const hasSuggestions = Array.isArray(this.state._suggestions) && this.state._suggestions.length > 0;
|
|
15035
15091
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
15036
|
-
return (hAsync(Host, { key: '
|
|
15092
|
+
return (hAsync(Host, { key: '5252dc45d3a28e5f0c90e98b0cfcb893ac854b0e', class: "kol-input-color" }, hAsync(KolInputTag, { key: 'f4a07a4e0c94ebbc7ce1b05d449366c903ee4b92', class: {
|
|
15037
15093
|
color: true,
|
|
15038
15094
|
'hide-label': !!this.state._hideLabel,
|
|
15039
|
-
}, _accessKey: this.state._accessKey, _disabled: this.state._disabled,
|
|
15095
|
+
}, _accessKey: this.state._accessKey, _disabled: this.state._disabled, _msg: this.state._msg, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _icons: this.state._icons, _hideError: this.state._hideError, _id: this.state._id, _label: this.state._label, _suggestions: this.state._suggestions, _smartButton: this.state._smartButton, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched, onClick: () => { var _a; return (_a = this.ref) === null || _a === void 0 ? void 0 : _a.focus(); }, role: `presentation` }, hAsync("span", { key: '0a4c4f562dae568f1aa18639a36d7b253ad14411', slot: "label" }, hasExpertSlot ? (hAsync("slot", { name: "expert" })) : typeof this.state._accessKey === 'string' ? (hAsync(Fragment, null, hAsync(InternalUnderlinedAccessKey, { accessKey: this.state._accessKey, label: this.state._label }), ' ', hAsync("span", { class: "access-key-hint", "aria-hidden": "true" }, this.state._accessKey))) : (hAsync("span", null, this.state._label))), hAsync("div", { key: '34a3f44f57bc464c61198efcdcd3cf7c4c98a624', slot: "input" }, hAsync("input", Object.assign({ key: '840bccd81c703e6c1813ecfc3a531b4487d66e18', ref: this.catchRef, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, autoCapitalize: "off", autoComplete: this.state._autoComplete, autoCorrect: "off", disabled: this.state._disabled, id: this.state._id, list: hasSuggestions ? `${this.state._id}-list` : undefined, name: this.state._name, slot: "input", spellcheck: "false", type: "color", value: this.state._value }, this.controller.onFacade))))));
|
|
15040
15096
|
}
|
|
15041
15097
|
constructor(hostRef) {
|
|
15042
15098
|
registerInstance(this, hostRef);
|
|
@@ -15055,6 +15111,7 @@ class KolInputColor {
|
|
|
15055
15111
|
this._icons = undefined;
|
|
15056
15112
|
this._id = undefined;
|
|
15057
15113
|
this._label = undefined;
|
|
15114
|
+
this._msg = undefined;
|
|
15058
15115
|
this._name = undefined;
|
|
15059
15116
|
this._on = undefined;
|
|
15060
15117
|
this._smartButton = undefined;
|
|
@@ -15106,6 +15163,9 @@ class KolInputColor {
|
|
|
15106
15163
|
validateLabel(value) {
|
|
15107
15164
|
this.controller.validateLabel(value);
|
|
15108
15165
|
}
|
|
15166
|
+
validateMsg(value) {
|
|
15167
|
+
this.controller.validateMsg(value);
|
|
15168
|
+
}
|
|
15109
15169
|
validateName(value) {
|
|
15110
15170
|
this.controller.validateName(value);
|
|
15111
15171
|
}
|
|
@@ -15148,6 +15208,7 @@ class KolInputColor {
|
|
|
15148
15208
|
"_icons": ["validateIcons"],
|
|
15149
15209
|
"_id": ["validateId"],
|
|
15150
15210
|
"_label": ["validateLabel"],
|
|
15211
|
+
"_msg": ["validateMsg"],
|
|
15151
15212
|
"_name": ["validateName"],
|
|
15152
15213
|
"_on": ["validateOn"],
|
|
15153
15214
|
"_smartButton": ["validateSmartButton"],
|
|
@@ -15175,6 +15236,7 @@ class KolInputColor {
|
|
|
15175
15236
|
"_icons": [1],
|
|
15176
15237
|
"_id": [1],
|
|
15177
15238
|
"_label": [1],
|
|
15239
|
+
"_msg": [16],
|
|
15178
15240
|
"_name": [1],
|
|
15179
15241
|
"_on": [16],
|
|
15180
15242
|
"_smartButton": [1, "_smart-button"],
|
|
@@ -15327,7 +15389,7 @@ InputDateController.isoTimeRegex = /^[0-2]\d:[0-5]\d(:[0-5]\d(?:\.\d+)?)?/;
|
|
|
15327
15389
|
InputDateController.isoWeekRegex = /^\d{4}-W(?:[0-4]\d|5[0-3])$/;
|
|
15328
15390
|
InputDateController.DEFAULT_MAX_DATE = new Date(9999, 11, 31, 23, 59, 59);
|
|
15329
15391
|
|
|
15330
|
-
const defaultStyleCss$t = "@layer kol-global {\n .sc-kol-input-date-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-date-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-date-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-date-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size:
|
|
15392
|
+
const defaultStyleCss$t = "@layer kol-global {\n .sc-kol-input-date-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-date-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-date-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-date-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n }\n \n input[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n }\n \n select[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n }\n}\n@layer kol-component {\n .kol-input {\n display: grid;\n }\n .kol-input .input-slot {\n flex-grow: 1;\n }\n input:not([type=checkbox], [type=radio]),\n select:not([multiple], [size]) {\n height: 2.75em;\n }\n input:focus,\n option:focus,\n select:focus,\n textarea:focus {\n outline: 0;\n }\n .input {\n display: flex;\n align-items: center;\n }\n .input > .kol-icon {\n display: grid;\n height: var(--a11y-min-size);\n place-items: center;\n }\n .kol-input.required .input-tooltip .span-label::after {\n content: \"*\";\n }\n}\n\n@layer kol-global {\n .sc-kol-input-date-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-date-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-date-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-input-date-default-h {\n display: block;\n }\n}\n@layer kol-component {\n .kol-alert-wc {\n display: grid;\n }\n .kol-alert-wc .heading {\n display: flex;\n place-items: center;\n }\n .kol-alert-wc .heading > div {\n flex-grow: 1;\n }\n .close {\n \n outline: transparent solid 1px;\n }\n}\n@layer kol-component {\n .kol-input-number {\n display: block;\n }\n}";
|
|
15331
15393
|
var KolInputDateDefaultStyle0 = defaultStyleCss$t;
|
|
15332
15394
|
|
|
15333
15395
|
class KolInputDate {
|
|
@@ -15339,10 +15401,10 @@ class KolInputDate {
|
|
|
15339
15401
|
const { ariaDescribedBy } = getRenderStates(this.state);
|
|
15340
15402
|
const hasSuggestions = Array.isArray(this.state._suggestions) && this.state._suggestions.length > 0;
|
|
15341
15403
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
15342
|
-
return (hAsync(Host, { key: '
|
|
15404
|
+
return (hAsync(Host, { key: 'f1bdc61d56c11e78681581e7b5b2e31380fd4601', class: { 'kol-input-date': true, 'has-value': this.state._hasValue } }, hAsync(KolInputTag, { key: 'ce3ef3b3941944bee5504e05000ff420d60c7bc5', class: {
|
|
15343
15405
|
[this.state._type]: true,
|
|
15344
15406
|
'hide-label': !!this.state._hideLabel,
|
|
15345
|
-
}, _accessKey: this.state._accessKey, _disabled: this.state._disabled,
|
|
15407
|
+
}, _accessKey: this.state._accessKey, _disabled: this.state._disabled, _msg: this.state._msg, _hideError: this.state._hideError, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _icons: this.state._icons, _id: this.state._id, _label: this.state._label, _suggestions: this.state._suggestions, _readOnly: this.state._readOnly, _required: this.state._required, _smartButton: this.state._smartButton, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched }, hAsync("span", { key: '7fc902dd7815dc389041d3915204e6ec5fe65a7d', slot: "label" }, hasExpertSlot ? (hAsync("slot", { name: "expert" })) : typeof this.state._accessKey === 'string' ? (hAsync(Fragment, null, hAsync(InternalUnderlinedAccessKey, { accessKey: this.state._accessKey, label: this.state._label }), ' ', hAsync("span", { class: "access-key-hint", "aria-hidden": "true" }, this.state._accessKey))) : (hAsync("span", null, this.state._label))), hAsync("div", { key: '26b9d1222d08b1db41977f4eef761e88c3ddf39e', slot: "input" }, hAsync("input", Object.assign({ key: 'd4757b23bb9d52acb6a97eb49bc6bc695b5fa1d3', ref: this.catchRef, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, autoCapitalize: "off", autoComplete: this.state._autoComplete, autoCorrect: "off", disabled: this.state._disabled, id: this.state._id, list: hasSuggestions ? `${this.state._id}-list` : undefined, max: this.state._max, min: this.state._min, name: this.state._name, readOnly: this.state._readOnly, required: this.state._required, step: this.state._step, spellcheck: "false", type: this.state._type, value: this.state._value }, this.controller.onFacade, { onKeyDown: this.onKeyDown }))))));
|
|
15346
15408
|
}
|
|
15347
15409
|
constructor(hostRef) {
|
|
15348
15410
|
registerInstance(this, hostRef);
|
|
@@ -15357,9 +15419,6 @@ class KolInputDate {
|
|
|
15357
15419
|
ref: this.ref,
|
|
15358
15420
|
});
|
|
15359
15421
|
}
|
|
15360
|
-
else {
|
|
15361
|
-
this.controller.onFacade.onChange(event);
|
|
15362
|
-
}
|
|
15363
15422
|
};
|
|
15364
15423
|
this._accessKey = undefined;
|
|
15365
15424
|
this._alert = true;
|
|
@@ -15374,6 +15433,7 @@ class KolInputDate {
|
|
|
15374
15433
|
this._label = undefined;
|
|
15375
15434
|
this._max = undefined;
|
|
15376
15435
|
this._min = undefined;
|
|
15436
|
+
this._msg = undefined;
|
|
15377
15437
|
this._name = undefined;
|
|
15378
15438
|
this._on = undefined;
|
|
15379
15439
|
this._readOnly = false;
|
|
@@ -15437,6 +15497,9 @@ class KolInputDate {
|
|
|
15437
15497
|
validateMin(value) {
|
|
15438
15498
|
this.controller.validateMin(value);
|
|
15439
15499
|
}
|
|
15500
|
+
validateMsg(value) {
|
|
15501
|
+
this.controller.validateMsg(value);
|
|
15502
|
+
}
|
|
15440
15503
|
validateName(value) {
|
|
15441
15504
|
this.controller.validateName(value);
|
|
15442
15505
|
}
|
|
@@ -15499,6 +15562,7 @@ class KolInputDate {
|
|
|
15499
15562
|
"_label": ["validateLabel"],
|
|
15500
15563
|
"_max": ["validateMax"],
|
|
15501
15564
|
"_min": ["validateMin"],
|
|
15565
|
+
"_msg": ["validateMsg"],
|
|
15502
15566
|
"_name": ["validateName"],
|
|
15503
15567
|
"_on": ["validateOn"],
|
|
15504
15568
|
"_readOnly": ["validateReadOnly"],
|
|
@@ -15532,6 +15596,7 @@ class KolInputDate {
|
|
|
15532
15596
|
"_label": [1],
|
|
15533
15597
|
"_max": [1],
|
|
15534
15598
|
"_min": [1],
|
|
15599
|
+
"_msg": [16],
|
|
15535
15600
|
"_name": [1],
|
|
15536
15601
|
"_on": [16],
|
|
15537
15602
|
"_readOnly": [4, "_read-only"],
|
|
@@ -15655,7 +15720,7 @@ class InputEmailController extends InputTextEmailController {
|
|
|
15655
15720
|
}
|
|
15656
15721
|
}
|
|
15657
15722
|
|
|
15658
|
-
const defaultStyleCss$s = "@layer kol-global {\n .sc-kol-input-email-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-email-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-email-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-email-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size:
|
|
15723
|
+
const defaultStyleCss$s = "@layer kol-global {\n .sc-kol-input-email-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-email-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-email-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-email-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n }\n \n input[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n }\n \n select[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n }\n}\n@layer kol-component {\n .kol-input {\n display: grid;\n }\n .kol-input .input-slot {\n flex-grow: 1;\n }\n input:not([type=checkbox], [type=radio]),\n select:not([multiple], [size]) {\n height: 2.75em;\n }\n input:focus,\n option:focus,\n select:focus,\n textarea:focus {\n outline: 0;\n }\n .input {\n display: flex;\n align-items: center;\n }\n .input > .kol-icon {\n display: grid;\n height: var(--a11y-min-size);\n place-items: center;\n }\n .kol-input.required .input-tooltip .span-label::after {\n content: \"*\";\n }\n}\n\n@layer kol-global {\n .sc-kol-input-email-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-email-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-email-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-input-email-default-h {\n display: block;\n }\n}\n@layer kol-component {\n .kol-alert-wc {\n display: grid;\n }\n .kol-alert-wc .heading {\n display: flex;\n place-items: center;\n }\n .kol-alert-wc .heading > div {\n flex-grow: 1;\n }\n .close {\n \n outline: transparent solid 1px;\n }\n}\n@layer kol-component {}";
|
|
15659
15724
|
var KolInputEmailDefaultStyle0 = defaultStyleCss$s;
|
|
15660
15725
|
|
|
15661
15726
|
class KolInputEmail {
|
|
@@ -15667,10 +15732,10 @@ class KolInputEmail {
|
|
|
15667
15732
|
const { ariaDescribedBy } = getRenderStates(this.state);
|
|
15668
15733
|
const hasSuggestions = Array.isArray(this.state._suggestions) && this.state._suggestions.length > 0;
|
|
15669
15734
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
15670
|
-
return (hAsync(Host, { key: '
|
|
15735
|
+
return (hAsync(Host, { key: 'f8d566bc0ff56a27c292e3957bdfa96c0b734e0e', class: {
|
|
15671
15736
|
'kol-input-email': true,
|
|
15672
15737
|
'has-value': this.state._hasValue,
|
|
15673
|
-
} }, hAsync(
|
|
15738
|
+
} }, hAsync(KolInputTag, { key: '12a7676f8a854208440a554b180895677a55e116', class: { email: true, 'hide-label': !!this.state._hideLabel }, _accessKey: this.state._accessKey, _alert: this.state._alert, _currentLength: this.state._currentLength, _disabled: this.state._disabled, _msg: this.state._msg, _hideError: this.state._hideError, _hasCounter: this.state._hasCounter, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _icons: this.state._icons, _id: this.state._id, _label: this.state._label, _suggestions: this.state._suggestions, _maxLength: this.state._maxLength, _readOnly: this.state._readOnly, _required: this.state._required, _smartButton: this.state._smartButton, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched, onClick: () => { var _a; return (_a = this.ref) === null || _a === void 0 ? void 0 : _a.focus(); }, role: `presentation` }, hAsync("span", { key: '2da3355f87e14234c4718e087b3cca1e2a283d0b', slot: "label" }, hasExpertSlot ? (hAsync("slot", { name: "expert" })) : typeof this.state._accessKey === 'string' ? (hAsync(Fragment, null, hAsync(InternalUnderlinedAccessKey, { accessKey: this.state._accessKey, label: this.state._label }), ' ', hAsync("span", { class: "access-key-hint", "aria-hidden": "true" }, this.state._accessKey))) : (hAsync("span", null, this.state._label))), hAsync("div", { key: 'b70d04c05d1156b06f0c6880c1983eee5d5dc585', slot: "input" }, hAsync("input", Object.assign({ key: 'b67a71356ffff59cb3238c105a69dc25d128c7f0', ref: this.catchRef, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, autoCapitalize: "off", autoComplete: this.state._autoComplete, autoCorrect: "off", disabled: this.state._disabled, multiple: this.state._multiple, id: this.state._id, list: hasSuggestions ? `${this.state._id}-list` : undefined, maxlength: this.state._maxLength, name: this.state._name, pattern: this.state._pattern, placeholder: this.state._placeholder, readOnly: this.state._readOnly, required: this.state._required, spellcheck: "false", type: "email", value: this.state._value }, this.controller.onFacade, { onKeyDown: this.onKeyDown, onInput: this.onInput }))))));
|
|
15674
15739
|
}
|
|
15675
15740
|
constructor(hostRef) {
|
|
15676
15741
|
registerInstance(this, hostRef);
|
|
@@ -15679,16 +15744,16 @@ class KolInputEmail {
|
|
|
15679
15744
|
propagateFocus(this.host, this.ref);
|
|
15680
15745
|
};
|
|
15681
15746
|
this.onKeyDown = (event) => {
|
|
15682
|
-
setState(this, '_currentLength', event.target.value.length);
|
|
15683
15747
|
if (event.code === 'Enter' || event.code === 'NumpadEnter') {
|
|
15684
15748
|
propagateSubmitEventToForm({
|
|
15685
15749
|
form: this.host,
|
|
15686
15750
|
ref: this.ref,
|
|
15687
15751
|
});
|
|
15688
15752
|
}
|
|
15689
|
-
|
|
15690
|
-
|
|
15691
|
-
|
|
15753
|
+
};
|
|
15754
|
+
this.onInput = (event) => {
|
|
15755
|
+
setState(this, '_currentLength', event.target.value.length);
|
|
15756
|
+
this.controller.onFacade.onInput(event);
|
|
15692
15757
|
};
|
|
15693
15758
|
this._accessKey = undefined;
|
|
15694
15759
|
this._alert = true;
|
|
@@ -15703,6 +15768,7 @@ class KolInputEmail {
|
|
|
15703
15768
|
this._id = undefined;
|
|
15704
15769
|
this._label = undefined;
|
|
15705
15770
|
this._maxLength = undefined;
|
|
15771
|
+
this._msg = undefined;
|
|
15706
15772
|
this._multiple = false;
|
|
15707
15773
|
this._name = undefined;
|
|
15708
15774
|
this._on = undefined;
|
|
@@ -15767,6 +15833,9 @@ class KolInputEmail {
|
|
|
15767
15833
|
validateMaxLength(value) {
|
|
15768
15834
|
this.controller.validateMaxLength(value);
|
|
15769
15835
|
}
|
|
15836
|
+
validateMsg(value) {
|
|
15837
|
+
this.controller.validateMsg(value);
|
|
15838
|
+
}
|
|
15770
15839
|
validateMultiple(value) {
|
|
15771
15840
|
this.controller.validateMultiple(value);
|
|
15772
15841
|
}
|
|
@@ -15828,6 +15897,7 @@ class KolInputEmail {
|
|
|
15828
15897
|
"_id": ["validateId"],
|
|
15829
15898
|
"_label": ["validateLabel"],
|
|
15830
15899
|
"_maxLength": ["validateMaxLength"],
|
|
15900
|
+
"_msg": ["validateMsg"],
|
|
15831
15901
|
"_multiple": ["validateMultiple"],
|
|
15832
15902
|
"_name": ["validateName"],
|
|
15833
15903
|
"_on": ["validateOn"],
|
|
@@ -15862,6 +15932,7 @@ class KolInputEmail {
|
|
|
15862
15932
|
"_id": [1],
|
|
15863
15933
|
"_label": [1],
|
|
15864
15934
|
"_maxLength": [2, "_max-length"],
|
|
15935
|
+
"_msg": [16],
|
|
15865
15936
|
"_multiple": [4],
|
|
15866
15937
|
"_name": [1],
|
|
15867
15938
|
"_on": [16],
|
|
@@ -15912,7 +15983,7 @@ class InputFileController extends InputIconController {
|
|
|
15912
15983
|
}
|
|
15913
15984
|
}
|
|
15914
15985
|
|
|
15915
|
-
const defaultStyleCss$r = "@charset \"UTF-8\";\n\n@layer kol-global {\n .sc-kol-input-file-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-file-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-file-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-file-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size:
|
|
15986
|
+
const defaultStyleCss$r = "@charset \"UTF-8\";\n\n@layer kol-global {\n .sc-kol-input-file-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-file-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-file-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-file-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n }\n \n input[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n }\n \n select[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n }\n}\n@layer kol-component {\n .kol-input {\n display: grid;\n }\n .kol-input .input-slot {\n flex-grow: 1;\n }\n input:not([type=checkbox], [type=radio]),\n select:not([multiple], [size]) {\n height: 2.75em;\n }\n input:focus,\n option:focus,\n select:focus,\n textarea:focus {\n outline: 0;\n }\n .input {\n display: flex;\n align-items: center;\n }\n .input > .kol-icon {\n display: grid;\n height: var(--a11y-min-size);\n place-items: center;\n }\n .kol-input.required .input-tooltip .span-label::after {\n content: \"*\";\n }\n}\n\n@layer kol-global {\n .sc-kol-input-file-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-file-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-file-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-input-file-default-h {\n display: block;\n }\n}\n@layer kol-component {\n .kol-alert-wc {\n display: grid;\n }\n .kol-alert-wc .heading {\n display: flex;\n place-items: center;\n }\n .kol-alert-wc .heading > div {\n flex-grow: 1;\n }\n .close {\n \n outline: transparent solid 1px;\n }\n}\n@layer kol-component {\n label input[type=file]::-webkit-file-upload-button {\n display: none;\n }\n label input[type=file]:before {\n content: \"Datei auswählen\";\n }\n label input[multiple]:before {\n content: \"Dateien auswählen\";\n }\n div.input {\n cursor: pointer;\n }\n}";
|
|
15916
15987
|
var KolInputFileDefaultStyle0 = defaultStyleCss$r;
|
|
15917
15988
|
|
|
15918
15989
|
class KolInputFile {
|
|
@@ -15923,10 +15994,10 @@ class KolInputFile {
|
|
|
15923
15994
|
render() {
|
|
15924
15995
|
const { ariaDescribedBy } = getRenderStates(this.state);
|
|
15925
15996
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
15926
|
-
return (hAsync(Host, { key: '
|
|
15997
|
+
return (hAsync(Host, { key: '4890bf15ab5137bde1aa60d58a0fb086d9488b55', class: "kol-input-file" }, hAsync(KolInputTag, { key: '70cbafeae056ce204a84654063039a1aab97f4dd', class: {
|
|
15927
15998
|
file: true,
|
|
15928
15999
|
'hide-label': !!this.state._hideLabel,
|
|
15929
|
-
}, _accessKey: this.state._accessKey, _disabled: this.state._disabled,
|
|
16000
|
+
}, _accessKey: this.state._accessKey, _disabled: this.state._disabled, _msg: this.state._msg, _hideError: this.state._hideError, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _icons: this.state._icons, _id: this.state._id, _label: this.state._label, _required: this.state._required, _smartButton: this.state._smartButton, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched, onClick: () => { var _a; return (_a = this.ref) === null || _a === void 0 ? void 0 : _a.focus(); }, role: `presentation` }, hAsync("span", { key: 'da09a95616192874a4435bca143e170600e3bf7d', slot: "label" }, hasExpertSlot ? (hAsync("slot", { name: "expert" })) : typeof this.state._accessKey === 'string' ? (hAsync(Fragment, null, hAsync(InternalUnderlinedAccessKey, { accessKey: this.state._accessKey, label: this.state._label }), ' ', hAsync("span", { class: "access-key-hint", "aria-hidden": "true" }, this.state._accessKey))) : (hAsync("span", null, this.state._label))), hAsync("div", { key: 'ebd9ab6e463dc2f1c25d85d44933319f9d331482', slot: "input" }, hAsync("input", Object.assign({ key: '50ef2e666ce96c077da3482ea758a3148c79406b', ref: this.catchRef, title: "", accept: this.state._accept, accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, autoCapitalize: "off", autoCorrect: "off", disabled: this.state._disabled, id: this.state._id, multiple: this.state._multiple, name: this.state._name, required: this.state._required, spellcheck: "false", type: "file", value: this.state._value }, this.controller.onFacade, { onChange: this.onChange, onInput: this.onInput }))))));
|
|
15930
16001
|
}
|
|
15931
16002
|
constructor(hostRef) {
|
|
15932
16003
|
registerInstance(this, hostRef);
|
|
@@ -15935,17 +16006,15 @@ class KolInputFile {
|
|
|
15935
16006
|
propagateFocus(this.host, this.ref);
|
|
15936
16007
|
};
|
|
15937
16008
|
this.onChange = (event) => {
|
|
15938
|
-
var _a;
|
|
15939
16009
|
if (this.ref instanceof HTMLInputElement && this.ref.type === 'file') {
|
|
15940
16010
|
const value = this.ref.files;
|
|
15941
|
-
|
|
15942
|
-
tryToDispatchKoliBriEvent('change', this.host, value);
|
|
16011
|
+
this.controller.onFacade.onChange(event);
|
|
15943
16012
|
this.controller.setFormAssociatedValue(value);
|
|
15944
|
-
if (typeof ((_a = this.state._on) === null || _a === void 0 ? void 0 : _a.onChange) === 'function') {
|
|
15945
|
-
this.state._on.onChange(event, value);
|
|
15946
|
-
}
|
|
15947
16013
|
}
|
|
15948
16014
|
};
|
|
16015
|
+
this.onInput = (event) => {
|
|
16016
|
+
this.controller.onFacade.onInput(event, false);
|
|
16017
|
+
};
|
|
15949
16018
|
this._accept = undefined;
|
|
15950
16019
|
this._accessKey = undefined;
|
|
15951
16020
|
this._alert = true;
|
|
@@ -15957,6 +16026,7 @@ class KolInputFile {
|
|
|
15957
16026
|
this._icons = undefined;
|
|
15958
16027
|
this._id = undefined;
|
|
15959
16028
|
this._label = undefined;
|
|
16029
|
+
this._msg = undefined;
|
|
15960
16030
|
this._multiple = false;
|
|
15961
16031
|
this._name = undefined;
|
|
15962
16032
|
this._on = undefined;
|
|
@@ -16007,6 +16077,9 @@ class KolInputFile {
|
|
|
16007
16077
|
validateLabel(value) {
|
|
16008
16078
|
this.controller.validateLabel(value);
|
|
16009
16079
|
}
|
|
16080
|
+
validateMsg(value) {
|
|
16081
|
+
this.controller.validateMsg(value);
|
|
16082
|
+
}
|
|
16010
16083
|
validateMultiple(value) {
|
|
16011
16084
|
this.controller.validateMultiple(value);
|
|
16012
16085
|
}
|
|
@@ -16052,6 +16125,7 @@ class KolInputFile {
|
|
|
16052
16125
|
"_icons": ["validateIcons"],
|
|
16053
16126
|
"_id": ["validateId"],
|
|
16054
16127
|
"_label": ["validateLabel"],
|
|
16128
|
+
"_msg": ["validateMsg"],
|
|
16055
16129
|
"_multiple": ["validateMultiple"],
|
|
16056
16130
|
"_name": ["validateName"],
|
|
16057
16131
|
"_on": ["validateOn"],
|
|
@@ -16080,6 +16154,7 @@ class KolInputFile {
|
|
|
16080
16154
|
"_icons": [1],
|
|
16081
16155
|
"_id": [1],
|
|
16082
16156
|
"_label": [1],
|
|
16157
|
+
"_msg": [16],
|
|
16083
16158
|
"_multiple": [4],
|
|
16084
16159
|
"_name": [1],
|
|
16085
16160
|
"_on": [16],
|
|
@@ -16181,7 +16256,7 @@ class InputNumberController extends InputIconController {
|
|
|
16181
16256
|
}
|
|
16182
16257
|
}
|
|
16183
16258
|
|
|
16184
|
-
const defaultStyleCss$q = "@layer kol-global {\n .sc-kol-input-number-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-number-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-number-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-number-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size:
|
|
16259
|
+
const defaultStyleCss$q = "@layer kol-global {\n .sc-kol-input-number-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-number-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-number-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-number-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n }\n \n input[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n }\n \n select[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n }\n}\n@layer kol-component {\n .kol-input {\n display: grid;\n }\n .kol-input .input-slot {\n flex-grow: 1;\n }\n input:not([type=checkbox], [type=radio]),\n select:not([multiple], [size]) {\n height: 2.75em;\n }\n input:focus,\n option:focus,\n select:focus,\n textarea:focus {\n outline: 0;\n }\n .input {\n display: flex;\n align-items: center;\n }\n .input > .kol-icon {\n display: grid;\n height: var(--a11y-min-size);\n place-items: center;\n }\n .kol-input.required .input-tooltip .span-label::after {\n content: \"*\";\n }\n}\n\n@layer kol-global {\n .sc-kol-input-number-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-number-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-number-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-input-number-default-h {\n display: block;\n }\n}\n@layer kol-component {\n .kol-alert-wc {\n display: grid;\n }\n .kol-alert-wc .heading {\n display: flex;\n place-items: center;\n }\n .kol-alert-wc .heading > div {\n flex-grow: 1;\n }\n .close {\n \n outline: transparent solid 1px;\n }\n}\n@layer kol-component {}";
|
|
16185
16260
|
var KolInputNumberDefaultStyle0 = defaultStyleCss$q;
|
|
16186
16261
|
|
|
16187
16262
|
class KolInputNumber {
|
|
@@ -16193,13 +16268,13 @@ class KolInputNumber {
|
|
|
16193
16268
|
const { ariaDescribedBy } = getRenderStates(this.state);
|
|
16194
16269
|
const hasSuggestions = Array.isArray(this.state._suggestions) && this.state._suggestions.length > 0;
|
|
16195
16270
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
16196
|
-
return (hAsync(Host, { key: '
|
|
16271
|
+
return (hAsync(Host, { key: 'a6601f1735978325f3817aecc82a344253636d73', class: {
|
|
16197
16272
|
'kol-input-number': true,
|
|
16198
16273
|
'has-value': this.state._hasValue,
|
|
16199
|
-
} }, hAsync(
|
|
16274
|
+
} }, hAsync(KolInputTag, { key: 'd3ea3a283e20920a8cf2599cc81a58652840a5d1', class: {
|
|
16200
16275
|
number: true,
|
|
16201
16276
|
'hide-label': !!this.state._hideLabel,
|
|
16202
|
-
}, _accessKey: this.state._accessKey, _disabled: this.state._disabled,
|
|
16277
|
+
}, _accessKey: this.state._accessKey, _disabled: this.state._disabled, _msg: this.state._msg, _hideError: this.state._hideError, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _icons: this.state._icons, _id: this.state._id, _label: this.state._label, _suggestions: this.state._suggestions, _readOnly: this.state._readOnly, _required: this.state._required, _smartButton: this.state._smartButton, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched }, hAsync("span", { key: '1e93c3efc780ba3bb651201d0499879f36815939', slot: "label" }, hasExpertSlot ? (hAsync("slot", { name: "expert" })) : typeof this.state._accessKey === 'string' ? (hAsync(Fragment, null, hAsync(InternalUnderlinedAccessKey, { accessKey: this.state._accessKey, label: this.state._label }), ' ', hAsync("span", { class: "access-key-hint", "aria-hidden": "true" }, this.state._accessKey))) : (hAsync("span", null, this.state._label))), hAsync("div", { key: 'b5fbae94cdbc2f68acc30f4aa2720d32e7776ce2', slot: "input" }, hAsync("input", Object.assign({ key: 'af7d91f2d8ffd84c2dcd7d58149fc6e08c1c96a9', ref: this.catchRef, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, autoCapitalize: "off", autoComplete: this.state._autoComplete, autoCorrect: "off", disabled: this.state._disabled, id: this.state._id, list: hasSuggestions ? `${this.state._id}-list` : undefined, max: this.state._max, min: this.state._min, name: this.state._name, readOnly: this.state._readOnly, required: this.state._required, placeholder: this.state._placeholder, step: this.state._step, spellcheck: "false", type: "number", value: this.state._value }, this.controller.onFacade, { onKeyDown: this.onKeyDown }))))));
|
|
16203
16278
|
}
|
|
16204
16279
|
constructor(hostRef) {
|
|
16205
16280
|
registerInstance(this, hostRef);
|
|
@@ -16214,9 +16289,6 @@ class KolInputNumber {
|
|
|
16214
16289
|
ref: this.ref,
|
|
16215
16290
|
});
|
|
16216
16291
|
}
|
|
16217
|
-
else {
|
|
16218
|
-
this.controller.onFacade.onChange(event);
|
|
16219
|
-
}
|
|
16220
16292
|
};
|
|
16221
16293
|
this._accessKey = undefined;
|
|
16222
16294
|
this._alert = true;
|
|
@@ -16231,6 +16303,7 @@ class KolInputNumber {
|
|
|
16231
16303
|
this._label = undefined;
|
|
16232
16304
|
this._max = undefined;
|
|
16233
16305
|
this._min = undefined;
|
|
16306
|
+
this._msg = undefined;
|
|
16234
16307
|
this._name = undefined;
|
|
16235
16308
|
this._on = undefined;
|
|
16236
16309
|
this._placeholder = undefined;
|
|
@@ -16293,6 +16366,9 @@ class KolInputNumber {
|
|
|
16293
16366
|
validateMin(value) {
|
|
16294
16367
|
this.controller.validateMin(value);
|
|
16295
16368
|
}
|
|
16369
|
+
validateMsg(value) {
|
|
16370
|
+
this.controller.validateMsg(value);
|
|
16371
|
+
}
|
|
16296
16372
|
validateName(value) {
|
|
16297
16373
|
this.controller.validateName(value);
|
|
16298
16374
|
}
|
|
@@ -16355,6 +16431,7 @@ class KolInputNumber {
|
|
|
16355
16431
|
"_label": ["validateLabel"],
|
|
16356
16432
|
"_max": ["validateMax"],
|
|
16357
16433
|
"_min": ["validateMin"],
|
|
16434
|
+
"_msg": ["validateMsg"],
|
|
16358
16435
|
"_name": ["validateName"],
|
|
16359
16436
|
"_on": ["validateOn"],
|
|
16360
16437
|
"_placeholder": ["validatePlaceholder"],
|
|
@@ -16388,6 +16465,7 @@ class KolInputNumber {
|
|
|
16388
16465
|
"_label": [1],
|
|
16389
16466
|
"_max": [8],
|
|
16390
16467
|
"_min": [8],
|
|
16468
|
+
"_msg": [16],
|
|
16391
16469
|
"_name": [1],
|
|
16392
16470
|
"_on": [16],
|
|
16393
16471
|
"_placeholder": [1],
|
|
@@ -16410,7 +16488,7 @@ class KolInputNumber {
|
|
|
16410
16488
|
}; }
|
|
16411
16489
|
}
|
|
16412
16490
|
|
|
16413
|
-
const defaultStyleCss$p = "@layer kol-global {\n .sc-kol-input-password-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-password-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-password-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-password-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size:
|
|
16491
|
+
const defaultStyleCss$p = "@layer kol-global {\n .sc-kol-input-password-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-password-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-password-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-password-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n }\n \n input[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n }\n \n select[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n }\n}\n@layer kol-component {\n .kol-input {\n display: grid;\n }\n .kol-input .input-slot {\n flex-grow: 1;\n }\n input:not([type=checkbox], [type=radio]),\n select:not([multiple], [size]) {\n height: 2.75em;\n }\n input:focus,\n option:focus,\n select:focus,\n textarea:focus {\n outline: 0;\n }\n .input {\n display: flex;\n align-items: center;\n }\n .input > .kol-icon {\n display: grid;\n height: var(--a11y-min-size);\n place-items: center;\n }\n .kol-input.required .input-tooltip .span-label::after {\n content: \"*\";\n }\n}\n\n@layer kol-global {\n .sc-kol-input-password-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-password-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-password-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-input-password-default-h {\n display: block;\n }\n}\n@layer kol-component {\n .kol-alert-wc {\n display: grid;\n }\n .kol-alert-wc .heading {\n display: flex;\n place-items: center;\n }\n .kol-alert-wc .heading > div {\n flex-grow: 1;\n }\n .close {\n \n outline: transparent solid 1px;\n }\n}\n@layer kol-component {}";
|
|
16414
16492
|
var KolInputPasswordDefaultStyle0 = defaultStyleCss$p;
|
|
16415
16493
|
|
|
16416
16494
|
class KolInputPassword {
|
|
@@ -16421,13 +16499,13 @@ class KolInputPassword {
|
|
|
16421
16499
|
render() {
|
|
16422
16500
|
const { ariaDescribedBy } = getRenderStates(this.state);
|
|
16423
16501
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
16424
|
-
return (hAsync(Host, { key: '
|
|
16502
|
+
return (hAsync(Host, { key: '307fa02b26068d98edcb52788bfd492dd64e4ad5', class: {
|
|
16425
16503
|
'kol-input-password': true,
|
|
16426
16504
|
'has-value': this.state._hasValue,
|
|
16427
|
-
} }, hAsync(
|
|
16505
|
+
} }, hAsync(KolInputTag, { key: '3e91ac067006d00988682fe50d3a097b42cc56e0', class: {
|
|
16428
16506
|
'hide-label': !!this.state._hideLabel,
|
|
16429
16507
|
password: true,
|
|
16430
|
-
}, _accessKey: this.state._accessKey, _currentLength: this.state._currentLength, _disabled: this.state._disabled,
|
|
16508
|
+
}, _accessKey: this.state._accessKey, _currentLength: this.state._currentLength, _disabled: this.state._disabled, _msg: this.state._msg, _hasCounter: this.state._hasCounter, _hideError: this.state._hideError, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _icons: this.state._icons, _id: this.state._id, _label: this.state._label, _maxLength: this.state._maxLength, _readOnly: this.state._readOnly, _required: this.state._required, _smartButton: this.state._smartButton, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched, onClick: () => { var _a; return (_a = this.ref) === null || _a === void 0 ? void 0 : _a.focus(); }, role: `presentation` }, hAsync("span", { key: 'afb582660e9f8c96b9441afeca33e1d842f91d59', slot: "label" }, hasExpertSlot ? (hAsync("slot", { name: "expert" })) : typeof this.state._accessKey === 'string' ? (hAsync(Fragment, null, hAsync(InternalUnderlinedAccessKey, { accessKey: this.state._accessKey, label: this.state._label }), ' ', hAsync("span", { class: "access-key-hint", "aria-hidden": "true" }, this.state._accessKey))) : (hAsync("span", null, this.state._label))), hAsync("div", { key: 'f7258071e04606bf9ac2baf18640cb3b73c454c2', slot: "input" }, hAsync("input", Object.assign({ key: 'e4bc5ffe2bc97456d676b9a19dbb014f17cc319a', ref: this.catchRef, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, autoCapitalize: "off", autoComplete: this.state._autoComplete, autoCorrect: "off", disabled: this.state._disabled, id: this.state._id, maxlength: this.state._maxLength, name: this.state._name, pattern: this.state._pattern, placeholder: this.state._placeholder, readOnly: this.state._readOnly, required: this.state._required, spellcheck: "false", type: "password", value: this.state._value }, this.controller.onFacade, { onKeyDown: this.onKeyDown, onInput: this.onInput }))))));
|
|
16431
16509
|
}
|
|
16432
16510
|
constructor(hostRef) {
|
|
16433
16511
|
registerInstance(this, hostRef);
|
|
@@ -16436,16 +16514,16 @@ class KolInputPassword {
|
|
|
16436
16514
|
propagateFocus(this.host, this.ref);
|
|
16437
16515
|
};
|
|
16438
16516
|
this.onKeyDown = (event) => {
|
|
16439
|
-
setState(this, '_currentLength', event.target.value.length);
|
|
16440
16517
|
if (event.code === 'Enter' || event.code === 'NumpadEnter') {
|
|
16441
16518
|
propagateSubmitEventToForm({
|
|
16442
16519
|
form: this.host,
|
|
16443
16520
|
ref: this.ref,
|
|
16444
16521
|
});
|
|
16445
16522
|
}
|
|
16446
|
-
|
|
16447
|
-
|
|
16448
|
-
|
|
16523
|
+
};
|
|
16524
|
+
this.onInput = (event) => {
|
|
16525
|
+
setState(this, '_currentLength', event.target.value.length);
|
|
16526
|
+
this.controller.onFacade.onInput(event);
|
|
16449
16527
|
};
|
|
16450
16528
|
this._accessKey = undefined;
|
|
16451
16529
|
this._alert = true;
|
|
@@ -16460,6 +16538,7 @@ class KolInputPassword {
|
|
|
16460
16538
|
this._id = undefined;
|
|
16461
16539
|
this._label = undefined;
|
|
16462
16540
|
this._maxLength = undefined;
|
|
16541
|
+
this._msg = undefined;
|
|
16463
16542
|
this._name = undefined;
|
|
16464
16543
|
this._on = undefined;
|
|
16465
16544
|
this._pattern = undefined;
|
|
@@ -16524,6 +16603,9 @@ class KolInputPassword {
|
|
|
16524
16603
|
validateMaxLength(value) {
|
|
16525
16604
|
this.controller.validateMaxLength(value);
|
|
16526
16605
|
}
|
|
16606
|
+
validateMsg(value) {
|
|
16607
|
+
this.controller.validateMsg(value);
|
|
16608
|
+
}
|
|
16527
16609
|
validateName(value) {
|
|
16528
16610
|
this.controller.validateName(value);
|
|
16529
16611
|
}
|
|
@@ -16579,6 +16661,7 @@ class KolInputPassword {
|
|
|
16579
16661
|
"_id": ["validateId"],
|
|
16580
16662
|
"_label": ["validateLabel"],
|
|
16581
16663
|
"_maxLength": ["validateMaxLength"],
|
|
16664
|
+
"_msg": ["validateMsg"],
|
|
16582
16665
|
"_name": ["validateName"],
|
|
16583
16666
|
"_on": ["validateOn"],
|
|
16584
16667
|
"_pattern": ["validatePattern"],
|
|
@@ -16611,6 +16694,7 @@ class KolInputPassword {
|
|
|
16611
16694
|
"_id": [1],
|
|
16612
16695
|
"_label": [1],
|
|
16613
16696
|
"_maxLength": [2, "_max-length"],
|
|
16697
|
+
"_msg": [16],
|
|
16614
16698
|
"_name": [1],
|
|
16615
16699
|
"_on": [16],
|
|
16616
16700
|
"_pattern": [1],
|
|
@@ -16632,7 +16716,7 @@ class KolInputPassword {
|
|
|
16632
16716
|
}; }
|
|
16633
16717
|
}
|
|
16634
16718
|
|
|
16635
|
-
const defaultStyleCss$o = "@layer kol-global {\n .sc-kol-input-radio-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-radio-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-radio-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-radio-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size:
|
|
16719
|
+
const defaultStyleCss$o = "@layer kol-global {\n .sc-kol-input-radio-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-radio-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-radio-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-radio-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n }\n \n input[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n }\n \n select[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n }\n}\n\n@layer kol-global {\n .sc-kol-input-radio-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-radio-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-radio-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-input-radio-default-h {\n display: block;\n }\n}\n@layer kol-component {\n .kol-alert-wc {\n display: grid;\n }\n .kol-alert-wc .heading {\n display: flex;\n place-items: center;\n }\n .kol-alert-wc .heading > div {\n flex-grow: 1;\n }\n .close {\n \n outline: transparent solid 1px;\n }\n}\n@layer kol-component {\n .sc-kol-input-radio-default-h {\n --border-width: 2px;\n --input-size: 1.5em;\n }\n .kol-input .icons {\n display: none;\n }\n label {\n cursor: pointer;\n }\n input {\n appearance: none;\n border-width: var(--border-width);\n border-style: solid;\n border-radius: 100%;\n cursor: pointer;\n display: flex;\n height: var(--input-size);\n margin: 0;\n min-height: var(--input-size);\n min-width: var(--input-size);\n padding: 0;\n width: var(--input-size);\n }\n input:before {\n border-radius: 100%;\n content: \"\";\n margin: auto;\n height: calc(var(--input-size) / 2);\n width: calc(var(--input-size) / 2);\n }\n input:checked:before {\n background-color: #000;\n }\n @media (forced-colors: active) {\n input:checked:before {\n \n background: highlight !important;\n }\n }\n fieldset {\n display: flex;\n }\n fieldset.vertical {\n flex-direction: column;\n }\n fieldset .input-slot {\n align-items: center;\n display: flex;\n }\n \n .required label > span::after {\n content: \"\";\n }\n}";
|
|
16636
16720
|
var KolInputRadioDefaultStyle0 = defaultStyleCss$o;
|
|
16637
16721
|
|
|
16638
16722
|
class KolInputRadio {
|
|
@@ -16642,26 +16726,27 @@ class KolInputRadio {
|
|
|
16642
16726
|
render() {
|
|
16643
16727
|
const { ariaDescribedBy, hasError } = getRenderStates(this.state);
|
|
16644
16728
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
16645
|
-
return (hAsync(Host, { key: '
|
|
16729
|
+
return (hAsync(Host, { key: '8ecbb61c14eb1ab1e691b7fb33805698deee6227', class: "kol-input-radio" }, hAsync("fieldset", { key: 'a3c0c25bdac11fb58cb36dcc02ef4304aa8f1c19', class: {
|
|
16646
16730
|
fieldset: true,
|
|
16647
16731
|
disabled: this.state._disabled === true,
|
|
16648
16732
|
error: hasError === true,
|
|
16649
16733
|
required: this.state._required === true,
|
|
16650
16734
|
'hidden-error': this._hideError === true,
|
|
16651
16735
|
[this.state._orientation]: true,
|
|
16652
|
-
} }, hAsync("legend", { key: '
|
|
16736
|
+
} }, hAsync("legend", { key: '3af90527febcde9277bd6e1f5f6be05335d8a434', class: "block w-full mb-1 leading-normal" }, hAsync("span", { key: 'a5255df9fdffd9184eb14f3da96148bfa1629b12' }, hAsync("span", { key: '5c25d8de758d3c04049a04f1224433c47ace635d', slot: "label" }, hasExpertSlot ? (hAsync("slot", { name: "expert" })) : typeof this._accessKey === 'string' ? (hAsync(InternalUnderlinedAccessKey, { accessKey: this._accessKey, label: this._label })) : (this._label)))), this.state._options.map((option, index) => {
|
|
16653
16737
|
const customId = `${this.state._id}-${index}`;
|
|
16654
16738
|
const slotName = `radio-${index}`;
|
|
16655
|
-
|
|
16739
|
+
const selected = this.state._value === option.value;
|
|
16740
|
+
return (hAsync(KolInputTag, { class: {
|
|
16656
16741
|
radio: true,
|
|
16657
16742
|
disabled: Boolean(this.state._disabled || option.disabled),
|
|
16658
|
-
}, key: customId, _accessKey: this.state._accessKey, _disabled: this.state._disabled || option.disabled, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _id: customId, _label: option.label, _renderNoLabel: true, _required: this.state._required, _slotName: slotName, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched }, hAsync("div", { slot: slotName, class: "radio-input-wrapper" }, hAsync("input", Object.assign({ ref: this.state._value === option.value ? this.catchRef : undefined, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof option.label === 'string' ? option.label : undefined, type: "radio", id: customId, checked:
|
|
16743
|
+
}, key: customId, _accessKey: this.state._accessKey, _disabled: this.state._disabled || option.disabled, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _id: customId, _label: option.label, _renderNoLabel: true, _required: this.state._required, _slotName: slotName, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched }, hAsync("div", { slot: slotName, class: "radio-input-wrapper" }, hAsync("input", Object.assign({ ref: this.state._value === option.value ? this.catchRef : undefined, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof option.label === 'string' ? option.label : undefined, type: "radio", id: customId, checked: selected, name: this.state._name || this.state._id, disabled: this.state._disabled || option.disabled, required: this.state._required, tabIndex: this.state._tabIndex, value: `-${index}` }, this.controller.onFacade, { onChange: this.onChange, onClick: undefined })), hAsync("label", { class: "radio-label", htmlFor: `${customId}`, style: {
|
|
16659
16744
|
height: this.state._hideLabel ? '0' : undefined,
|
|
16660
16745
|
margin: this.state._hideLabel ? '0' : undefined,
|
|
16661
16746
|
padding: this.state._hideLabel ? '0' : undefined,
|
|
16662
16747
|
visibility: this.state._hideLabel ? 'hidden' : undefined,
|
|
16663
16748
|
} }, hAsync("span", null, hAsync("span", { class: "radio-label-span-inner" }, option.label))))));
|
|
16664
|
-
}), hasError && hAsync(FormFieldMsg, { _alert: this.state._alert, _hideError: this.state._hideError,
|
|
16749
|
+
}), hasError && hAsync(FormFieldMsg, { _alert: this.state._alert, _hideError: this.state._hideError, _msg: this.state._msg, _id: this.state._id }))));
|
|
16665
16750
|
}
|
|
16666
16751
|
constructor(hostRef) {
|
|
16667
16752
|
registerInstance(this, hostRef);
|
|
@@ -16692,6 +16777,7 @@ class KolInputRadio {
|
|
|
16692
16777
|
this._hint = '';
|
|
16693
16778
|
this._id = undefined;
|
|
16694
16779
|
this._label = undefined;
|
|
16780
|
+
this._msg = undefined;
|
|
16695
16781
|
this._name = undefined;
|
|
16696
16782
|
this._on = undefined;
|
|
16697
16783
|
this._options = undefined;
|
|
@@ -16738,6 +16824,9 @@ class KolInputRadio {
|
|
|
16738
16824
|
validateLabel(value) {
|
|
16739
16825
|
this.controller.validateLabel(value);
|
|
16740
16826
|
}
|
|
16827
|
+
validateMsg(value) {
|
|
16828
|
+
this.controller.validateMsg(value);
|
|
16829
|
+
}
|
|
16741
16830
|
validateName(value) {
|
|
16742
16831
|
this.controller.validateName(value);
|
|
16743
16832
|
}
|
|
@@ -16769,7 +16858,7 @@ class KolInputRadio {
|
|
|
16769
16858
|
this._alert = this._alert === true;
|
|
16770
16859
|
this._touched = this._touched === true;
|
|
16771
16860
|
this.currentValue = this._value;
|
|
16772
|
-
this.controller.componentWillLoad(
|
|
16861
|
+
this.controller.componentWillLoad();
|
|
16773
16862
|
}
|
|
16774
16863
|
get host() { return getElement(this); }
|
|
16775
16864
|
static get watchers() { return {
|
|
@@ -16782,6 +16871,7 @@ class KolInputRadio {
|
|
|
16782
16871
|
"_hint": ["validateHint"],
|
|
16783
16872
|
"_id": ["validateId"],
|
|
16784
16873
|
"_label": ["validateLabel"],
|
|
16874
|
+
"_msg": ["validateMsg"],
|
|
16785
16875
|
"_name": ["validateName"],
|
|
16786
16876
|
"_on": ["validateOn"],
|
|
16787
16877
|
"_options": ["validateOptions"],
|
|
@@ -16808,6 +16898,7 @@ class KolInputRadio {
|
|
|
16808
16898
|
"_hint": [1],
|
|
16809
16899
|
"_id": [1],
|
|
16810
16900
|
"_label": [1],
|
|
16901
|
+
"_msg": [16],
|
|
16811
16902
|
"_name": [1],
|
|
16812
16903
|
"_on": [16],
|
|
16813
16904
|
"_options": [1],
|
|
@@ -16862,7 +16953,7 @@ class InputRangeController extends InputIconController {
|
|
|
16862
16953
|
}
|
|
16863
16954
|
}
|
|
16864
16955
|
|
|
16865
|
-
const defaultStyleCss$n = "@layer kol-global {\n .sc-kol-input-range-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-range-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-range-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .
|
|
16956
|
+
const defaultStyleCss$n = "@layer kol-global {\n .sc-kol-input-range-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-range-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-range-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-input-range-default-h {\n display: block;\n }\n}\n\n@layer kol-global {\n .sc-kol-input-range-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-range-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-range-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-range-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n }\n \n input[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n }\n \n select[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n }\n}\n@layer kol-component {\n .kol-input {\n display: grid;\n }\n .kol-input .input-slot {\n flex-grow: 1;\n }\n input:not([type=checkbox], [type=radio]),\n select:not([multiple], [size]) {\n height: 2.75em;\n }\n input:focus,\n option:focus,\n select:focus,\n textarea:focus {\n outline: 0;\n }\n .input {\n display: flex;\n align-items: center;\n }\n .input > .kol-icon {\n display: grid;\n height: var(--a11y-min-size);\n place-items: center;\n }\n .kol-input.required .input-tooltip .span-label::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .kol-alert-wc {\n display: grid;\n }\n .kol-alert-wc .heading {\n display: flex;\n place-items: center;\n }\n .kol-alert-wc .heading > div {\n flex-grow: 1;\n }\n .close {\n \n outline: transparent solid 1px;\n }\n}\n@layer kol-component {\n .inputs-wrapper {\n align-items: center;\n display: flex;\n flex-direction: row;\n }\n input[type=number] {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n width: var(--kolibri-input-range--input-number--width);\n }\n \n input[type=range] {\n appearance: none;\n background-color: #d3d3d3;\n border: 1px solid #000;\n display: inline-block;\n flex-grow: 1;\n height: calc(8rem / var(--kolibri-root-font-size, 16));\n line-height: 1.5em;\n padding: 0;\n margin: 0;\n \n width: 0;\n }\n input[type=range]::-webkit-slider-thumb {\n box-sizing: border-box;\n background-color: #000;\n height: 20px;\n width: 20px;\n border-radius: 20px;\n cursor: pointer;\n -webkit-appearance: none;\n }\n input[type=range]::-moz-range-thumb {\n box-sizing: border-box;\n background-color: #000;\n height: 20px;\n width: 20px;\n border-radius: 20px;\n cursor: pointer;\n -moz-appearance: none;\n }\n}\n\n@media (prefers-contrast: more) {\n /*!@::-webkit-slider-thumb*/.sc-kol-input-range-default::-webkit-slider-thumb {\n outline: 1px solid currentColor;\n }\n}";
|
|
16866
16957
|
var KolInputRangeDefaultStyle0 = defaultStyleCss$n;
|
|
16867
16958
|
|
|
16868
16959
|
class KolInputRange {
|
|
@@ -16892,12 +16983,12 @@ class KolInputRange {
|
|
|
16892
16983
|
const { ariaDescribedBy } = getRenderStates(this.state);
|
|
16893
16984
|
const hasSuggestions = Array.isArray(this.state._suggestions) && this.state._suggestions.length > 0;
|
|
16894
16985
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
16895
|
-
return (hAsync(Host, { key: '
|
|
16986
|
+
return (hAsync(Host, { key: '8234d5062e120e1d233fde4839d9deb1572db10d', class: "kol-input-range" }, hAsync(KolInputTag, { key: '6999f8fcdecc07dddbd8d087e246f74997e28391', class: {
|
|
16896
16987
|
range: true,
|
|
16897
16988
|
'hide-label': !!this.state._hideLabel,
|
|
16898
|
-
}, _accessKey: this.state._accessKey, _disabled: this.state._disabled,
|
|
16989
|
+
}, _accessKey: this.state._accessKey, _disabled: this.state._disabled, _msg: this.state._msg, _hideError: this.state._hideError, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _icons: this.state._icons, _id: this.state._id, _label: this.state._label, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched }, hAsync("span", { key: 'bd070fe9c62d8c4c3131a2b1a29b5f10b830b38b', slot: "label" }, hasExpertSlot ? (hAsync("slot", { name: "expert" })) : typeof this.state._accessKey === 'string' ? (hAsync(Fragment, null, hAsync(InternalUnderlinedAccessKey, { accessKey: this.state._accessKey, label: this.state._label }), ' ', hAsync("span", { class: "access-key-hint", "aria-hidden": "true" }, this.state._accessKey))) : (hAsync("span", null, this.state._label))), hAsync("div", { key: '32917c47012e3654b248e92c7d193c7e46bb76c8', slot: "input" }, hAsync("div", { key: 'c83767854f103c4cdc26c210419b3eb640c62037', class: "inputs-wrapper", style: {
|
|
16899
16990
|
'--kolibri-input-range--input-number--width': `${this.state._max}`.length + 0.5 + 'em',
|
|
16900
|
-
} }, hAsync("input", Object.assign({ key: '
|
|
16991
|
+
} }, hAsync("input", Object.assign({ key: 'e1f1ba155cdccd374927854ab18d8e93b8a5abd0', ref: this.catchInputRangeRef, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, "aria-hidden": "true", autoCapitalize: "off", autoComplete: this.state._autoComplete, autoCorrect: "off", disabled: this.state._disabled, list: hasSuggestions ? `${this.state._id}-list` : undefined, max: this.state._max, min: this.state._min, name: this.state._name ? `${this.state._name}-range` : undefined, spellcheck: "false", step: this.state._step, tabIndex: -1, type: "range", value: this.state._value }, this.controller.onFacade, { onChange: this.onChange })), hAsync("input", Object.assign({ key: '0b725315e18c898d94f2a9cab2683fe92bcff897', ref: this.catchInputNumberRef, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, autoCapitalize: "off", autoComplete: this.state._autoComplete, autoCorrect: "off", disabled: this.state._disabled, id: this.state._id, list: hasSuggestions ? `${this.state._id}-list` : undefined, max: this.state._max, min: this.state._min, name: this.state._name ? `${this.state._name}-number` : undefined, step: this.state._step, type: "number", value: this.state._value }, this.controller.onFacade, { onKeyDown: this.onKeyDown, onChange: this.onChange }))), hasSuggestions && [
|
|
16901
16992
|
hAsync("datalist", { id: `${this.state._id}-list` }, this.state._suggestions.map((option) => (hAsync("option", { value: option })))),
|
|
16902
16993
|
]))));
|
|
16903
16994
|
}
|
|
@@ -16934,9 +17025,6 @@ class KolInputRange {
|
|
|
16934
17025
|
ref: this.refInputNumber,
|
|
16935
17026
|
});
|
|
16936
17027
|
}
|
|
16937
|
-
else {
|
|
16938
|
-
this.onChange(event);
|
|
16939
|
-
}
|
|
16940
17028
|
};
|
|
16941
17029
|
this._accessKey = undefined;
|
|
16942
17030
|
this._alert = true;
|
|
@@ -16951,6 +17039,7 @@ class KolInputRange {
|
|
|
16951
17039
|
this._label = undefined;
|
|
16952
17040
|
this._max = undefined;
|
|
16953
17041
|
this._min = undefined;
|
|
17042
|
+
this._msg = undefined;
|
|
16954
17043
|
this._name = undefined;
|
|
16955
17044
|
this._on = undefined;
|
|
16956
17045
|
this._step = undefined;
|
|
@@ -17008,6 +17097,9 @@ class KolInputRange {
|
|
|
17008
17097
|
validateMin(value) {
|
|
17009
17098
|
this.controller.validateMin(value);
|
|
17010
17099
|
}
|
|
17100
|
+
validateMsg(value) {
|
|
17101
|
+
this.controller.validateMsg(value);
|
|
17102
|
+
}
|
|
17011
17103
|
validateName(value) {
|
|
17012
17104
|
this.controller.validateName(value);
|
|
17013
17105
|
}
|
|
@@ -17052,6 +17144,7 @@ class KolInputRange {
|
|
|
17052
17144
|
"_label": ["validateLabel"],
|
|
17053
17145
|
"_max": ["validateMax"],
|
|
17054
17146
|
"_min": ["validateMin"],
|
|
17147
|
+
"_msg": ["validateMsg"],
|
|
17055
17148
|
"_name": ["validateName"],
|
|
17056
17149
|
"_on": ["validateOn"],
|
|
17057
17150
|
"_step": ["validateStep"],
|
|
@@ -17081,6 +17174,7 @@ class KolInputRange {
|
|
|
17081
17174
|
"_label": [1],
|
|
17082
17175
|
"_max": [2],
|
|
17083
17176
|
"_min": [2],
|
|
17177
|
+
"_msg": [16],
|
|
17084
17178
|
"_name": [1],
|
|
17085
17179
|
"_on": [16],
|
|
17086
17180
|
"_step": [2],
|
|
@@ -17099,7 +17193,7 @@ class KolInputRange {
|
|
|
17099
17193
|
}; }
|
|
17100
17194
|
}
|
|
17101
17195
|
|
|
17102
|
-
const defaultStyleCss$m = "@layer kol-global {\n .sc-kol-input-text-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-text-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-text-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-text-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size:
|
|
17196
|
+
const defaultStyleCss$m = "@layer kol-global {\n .sc-kol-input-text-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-text-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-text-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-input-text-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n }\n \n input[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n }\n \n select[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n }\n}\n@layer kol-component {\n .kol-input {\n display: grid;\n }\n .kol-input .input-slot {\n flex-grow: 1;\n }\n input:not([type=checkbox], [type=radio]),\n select:not([multiple], [size]) {\n height: 2.75em;\n }\n input:focus,\n option:focus,\n select:focus,\n textarea:focus {\n outline: 0;\n }\n .input {\n display: flex;\n align-items: center;\n }\n .input > .kol-icon {\n display: grid;\n height: var(--a11y-min-size);\n place-items: center;\n }\n .kol-input.required .input-tooltip .span-label::after {\n content: \"*\";\n }\n}\n\n@layer kol-global {\n .sc-kol-input-text-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-input-text-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-input-text-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-input-text-default-h {\n display: block;\n }\n}\n@layer kol-component {\n .kol-alert-wc {\n display: grid;\n }\n .kol-alert-wc .heading {\n display: flex;\n place-items: center;\n }\n .kol-alert-wc .heading > div {\n flex-grow: 1;\n }\n .close {\n \n outline: transparent solid 1px;\n }\n}\n@layer kol-component {}";
|
|
17103
17197
|
var KolInputTextDefaultStyle0 = defaultStyleCss$m;
|
|
17104
17198
|
|
|
17105
17199
|
class KolInputText {
|
|
@@ -17111,41 +17205,38 @@ class KolInputText {
|
|
|
17111
17205
|
const { ariaDescribedBy } = getRenderStates(this.state);
|
|
17112
17206
|
const hasSuggestions = Array.isArray(this.state._suggestions) && this.state._suggestions.length > 0;
|
|
17113
17207
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
17114
|
-
return (hAsync(Host, { key: '
|
|
17208
|
+
return (hAsync(Host, { key: '4f46675b039f9f89859cec3776c078fa2e5e2ebf', class: {
|
|
17115
17209
|
'has-value': this.state._hasValue,
|
|
17116
|
-
} }, hAsync(
|
|
17210
|
+
} }, hAsync(KolInputTag, { key: '0bc1bec6966a48c94f742dd1a350523cf0c5b0e5', class: {
|
|
17117
17211
|
'kol-input-text': true,
|
|
17118
17212
|
[this.state._type]: true,
|
|
17119
17213
|
'hide-label': !!this.state._hideLabel,
|
|
17120
|
-
}, _accessKey: this.state._accessKey, _currentLength: this.state._currentLength, _disabled: this.state._disabled,
|
|
17214
|
+
}, _accessKey: this.state._accessKey, _currentLength: this.state._currentLength, _disabled: this.state._disabled, _hasCounter: this.state._hasCounter, _hideError: this.state._hideError, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _icons: this.state._icons, _id: this.state._id, _label: this.state._label, _maxLength: this.state._maxLength, _msg: this.state._msg, _readOnly: this.state._readOnly, _required: this.state._required, _smartButton: this.state._smartButton, _suggestions: this.state._suggestions, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched, onClick: () => { var _a; return (_a = this.ref) === null || _a === void 0 ? void 0 : _a.focus(); }, role: `presentation` }, hAsync("span", { key: 'b19b9098e12872ccce579a4e00fcf7656f4c6d3d', slot: "label" }, hasExpertSlot ? (hAsync("slot", { name: "expert" })) : typeof this.state._accessKey === 'string' ? (hAsync(Fragment, null, hAsync(InternalUnderlinedAccessKey, { accessKey: this.state._accessKey, label: this.state._label }), ' ', hAsync("span", { class: "access-key-hint", "aria-hidden": "true" }, this.state._accessKey))) : (hAsync("span", null, this.state._label))), hAsync("div", { key: '65bece26b31241c1daaa1bd3215777f3de2ac224', slot: "input" }, hAsync("input", Object.assign({ key: '6b656d80de53c9bc6d1b1b161ed3e6f3fc299600', ref: this.catchRef, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, autoCapitalize: "off", autoComplete: this.state._autoComplete, autoCorrect: "off", disabled: this.state._disabled, id: this.state._id, list: hasSuggestions ? `${this.state._id}-list` : undefined, maxlength: this.state._maxLength, name: this.state._name, pattern: this.state._pattern, placeholder: this.state._placeholder, readOnly: this.state._readOnly, required: this.state._required, spellcheck: "false", type: this.state._type, value: this.state._value }, this.controller.onFacade, { onChange: this.onChange, onInput: this.onInput, onKeyDown: this.onKeyDown }))))));
|
|
17121
17215
|
}
|
|
17122
17216
|
constructor(hostRef) {
|
|
17123
17217
|
registerInstance(this, hostRef);
|
|
17124
17218
|
this.catchRef = (ref) => {
|
|
17125
|
-
var _a;
|
|
17126
17219
|
this.ref = ref;
|
|
17127
17220
|
propagateFocus(this.host, this.ref);
|
|
17128
|
-
this.disconnectedCallback();
|
|
17129
|
-
(_a = this.ref) === null || _a === void 0 ? void 0 : _a.addEventListener('search', this.onChange);
|
|
17130
17221
|
};
|
|
17131
|
-
this.
|
|
17222
|
+
this.onChange = (event) => {
|
|
17223
|
+
var _a, _b;
|
|
17224
|
+
if (this.oldValue !== ((_a = this.ref) === null || _a === void 0 ? void 0 : _a.value)) {
|
|
17225
|
+
this.oldValue = (_b = this.ref) === null || _b === void 0 ? void 0 : _b.value;
|
|
17226
|
+
this.controller.onFacade.onChange(event);
|
|
17227
|
+
}
|
|
17228
|
+
};
|
|
17229
|
+
this.onInput = (event) => {
|
|
17132
17230
|
setState(this, '_currentLength', event.target.value.length);
|
|
17231
|
+
this.controller.onFacade.onInput(event);
|
|
17232
|
+
};
|
|
17233
|
+
this.onKeyDown = (event) => {
|
|
17133
17234
|
if (event.code === 'Enter' || event.code === 'NumpadEnter') {
|
|
17134
17235
|
propagateSubmitEventToForm({
|
|
17135
17236
|
form: this.host,
|
|
17136
17237
|
ref: this.ref,
|
|
17137
17238
|
});
|
|
17138
17239
|
}
|
|
17139
|
-
else {
|
|
17140
|
-
this.onChange(event);
|
|
17141
|
-
}
|
|
17142
|
-
};
|
|
17143
|
-
this.onChange = (event) => {
|
|
17144
|
-
var _a, _b;
|
|
17145
|
-
if (this.oldValue !== ((_a = this.ref) === null || _a === void 0 ? void 0 : _a.value)) {
|
|
17146
|
-
this.oldValue = (_b = this.ref) === null || _b === void 0 ? void 0 : _b.value;
|
|
17147
|
-
this.controller.onFacade.onChange(event);
|
|
17148
|
-
}
|
|
17149
17240
|
};
|
|
17150
17241
|
this._accessKey = undefined;
|
|
17151
17242
|
this._alert = true;
|
|
@@ -17160,6 +17251,7 @@ class KolInputText {
|
|
|
17160
17251
|
this._id = undefined;
|
|
17161
17252
|
this._label = undefined;
|
|
17162
17253
|
this._maxLength = undefined;
|
|
17254
|
+
this._msg = undefined;
|
|
17163
17255
|
this._name = undefined;
|
|
17164
17256
|
this._on = undefined;
|
|
17165
17257
|
this._pattern = undefined;
|
|
@@ -17225,6 +17317,9 @@ class KolInputText {
|
|
|
17225
17317
|
validateMaxLength(value) {
|
|
17226
17318
|
this.controller.validateMaxLength(value);
|
|
17227
17319
|
}
|
|
17320
|
+
validateMsg(value) {
|
|
17321
|
+
this.controller.validateMsg(value);
|
|
17322
|
+
}
|
|
17228
17323
|
validateName(value) {
|
|
17229
17324
|
this.controller.validateName(value);
|
|
17230
17325
|
}
|
|
@@ -17272,10 +17367,6 @@ class KolInputText {
|
|
|
17272
17367
|
this.state._hasValue = !!this.state._value;
|
|
17273
17368
|
this.controller.addValueChangeListener((v) => (this.state._hasValue = !!v));
|
|
17274
17369
|
}
|
|
17275
|
-
disconnectedCallback() {
|
|
17276
|
-
var _a;
|
|
17277
|
-
(_a = this.ref) === null || _a === void 0 ? void 0 : _a.removeEventListener('search', this.onChange);
|
|
17278
|
-
}
|
|
17279
17370
|
get host() { return getElement(this); }
|
|
17280
17371
|
static get watchers() { return {
|
|
17281
17372
|
"_accessKey": ["validateAccessKey"],
|
|
@@ -17291,6 +17382,7 @@ class KolInputText {
|
|
|
17291
17382
|
"_id": ["validateId"],
|
|
17292
17383
|
"_label": ["validateLabel"],
|
|
17293
17384
|
"_maxLength": ["validateMaxLength"],
|
|
17385
|
+
"_msg": ["validateMsg"],
|
|
17294
17386
|
"_name": ["validateName"],
|
|
17295
17387
|
"_on": ["validateOn"],
|
|
17296
17388
|
"_pattern": ["validatePattern"],
|
|
@@ -17325,6 +17417,7 @@ class KolInputText {
|
|
|
17325
17417
|
"_id": [1],
|
|
17326
17418
|
"_label": [1],
|
|
17327
17419
|
"_maxLength": [2, "_max-length"],
|
|
17420
|
+
"_msg": [16],
|
|
17328
17421
|
"_name": [1],
|
|
17329
17422
|
"_on": [16],
|
|
17330
17423
|
"_pattern": [1],
|
|
@@ -17444,7 +17537,7 @@ class KolLink {
|
|
|
17444
17537
|
this._tooltipAlign = 'right';
|
|
17445
17538
|
}
|
|
17446
17539
|
render() {
|
|
17447
|
-
return (hAsync(Host, { key: '
|
|
17540
|
+
return (hAsync(Host, { key: '74b031ab364b68c9faea1c242c385c2c391eb0e4', class: "kol-link" }, hAsync(KolLinkWcTag, { key: '99c07f7de1e1c30cdcd360d359b4239cf2c76c04', ref: this.catchRef, _accessKey: this._accessKey, _ariaCurrentValue: this._ariaCurrentValue, _disabled: this._disabled, _download: this._download, _hideLabel: this._hideLabel, _href: this._href, _icons: this._icons, _label: this._label, _on: this._on, _role: this._role, _tabIndex: this._tabIndex, _target: this._target, _tooltipAlign: this._tooltipAlign }, hAsync("slot", { key: '96bfdc2a811e8834b4b299cd36c5f83ece3505c0', name: "expert", slot: "expert" }))));
|
|
17448
17541
|
}
|
|
17449
17542
|
get host() { return getElement(this); }
|
|
17450
17543
|
static get style() { return {
|
|
@@ -17500,11 +17593,11 @@ class KolLinkButton {
|
|
|
17500
17593
|
this._variant = 'normal';
|
|
17501
17594
|
}
|
|
17502
17595
|
render() {
|
|
17503
|
-
return (hAsync(Host, { key: '
|
|
17596
|
+
return (hAsync(Host, { key: 'a5abcbb151ab1f14195d4a3a1fdb4b1e195ca26b', class: "kol-link-button" }, hAsync(KolLinkWcTag, { key: '3bf83a6270b0405165152ad3770022b86c8cae4e', ref: this.catchRef, class: {
|
|
17504
17597
|
button: true,
|
|
17505
17598
|
[this._variant]: this._variant !== 'custom',
|
|
17506
17599
|
[this._customClass]: this._variant === 'custom' && typeof this._customClass === 'string' && this._customClass.length > 0,
|
|
17507
|
-
}, _accessKey: this._accessKey, _ariaCurrentValue: this._ariaCurrentValue, _disabled: this._disabled, _download: this._download, _hideLabel: this._hideLabel, _href: this._href, _icons: this._icons, _label: this._label, _on: this._on, _role: "button", _tabIndex: this._tabIndex, _target: this._target, _tooltipAlign: this._tooltipAlign }, hAsync("slot", { key: '
|
|
17600
|
+
}, _accessKey: this._accessKey, _ariaCurrentValue: this._ariaCurrentValue, _disabled: this._disabled, _download: this._download, _hideLabel: this._hideLabel, _href: this._href, _icons: this._icons, _label: this._label, _on: this._on, _role: "button", _tabIndex: this._tabIndex, _target: this._target, _tooltipAlign: this._tooltipAlign }, hAsync("slot", { key: '7136106e0323b7f972d50444bc7c984a4a5c2e8a', name: "expert", slot: "expert" }))));
|
|
17508
17601
|
}
|
|
17509
17602
|
get host() { return getElement(this); }
|
|
17510
17603
|
static get style() { return {
|
|
@@ -17536,7 +17629,7 @@ class KolLinkButton {
|
|
|
17536
17629
|
}; }
|
|
17537
17630
|
}
|
|
17538
17631
|
|
|
17539
|
-
const defaultStyleCss$i = "@layer kol-global {\n .sc-kol-link-group-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-link-group-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-link-group-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n ul {\n list-style: none;\n margin: 0;\n padding: 0;\n }\n
|
|
17632
|
+
const defaultStyleCss$i = "@layer kol-global {\n .sc-kol-link-group-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-link-group-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-link-group-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n ul {\n list-style: none;\n margin: 0;\n padding: 0;\n }\n :is(ol, ul).horizontal {\n display: flex;\n flex-wrap: wrap;\n }\n :is(ol, ul).horizontal li {\n margin-left: calc(20rem / var(--kolibri-root-font-size, 16));\n margin-right: calc(4rem / var(--kolibri-root-font-size, 16));\n }\n :is(ol, ul).horizontal li:first-child {\n margin-left: 0;\n }\n :is(ol, ul).horizontal li:last-child {\n margin-right: 0;\n }\n :is(ol, ul).vertical li {\n margin-left: calc(28rem / var(--kolibri-root-font-size, 16));\n margin-right: calc(8rem / var(--kolibri-root-font-size, 16));\n }\n li.list-none {\n list-style-type: none !important;\n margin-left: 0;\n }\n}";
|
|
17540
17633
|
var KolLinkGroupDefaultStyle0 = defaultStyleCss$i;
|
|
17541
17634
|
|
|
17542
17635
|
const ListItem = (props) => {
|
|
@@ -17547,7 +17640,7 @@ const ListItem = (props) => {
|
|
|
17547
17640
|
'list-none': index === 0 && props.orientation === 'horizontal',
|
|
17548
17641
|
}, style: {
|
|
17549
17642
|
listStyleType: props.listStyleType,
|
|
17550
|
-
} }, hAsync(
|
|
17643
|
+
} }, hAsync(KolLinkTag, Object.assign({}, link)))));
|
|
17551
17644
|
});
|
|
17552
17645
|
return list;
|
|
17553
17646
|
};
|
|
@@ -17560,26 +17653,24 @@ class KolLinkGroup {
|
|
|
17560
17653
|
this._links = undefined;
|
|
17561
17654
|
this._orientation = 'vertical';
|
|
17562
17655
|
this.state = {
|
|
17563
|
-
_label: '',
|
|
17564
17656
|
_listStyleType: 'disc',
|
|
17565
17657
|
_links: [],
|
|
17566
17658
|
_orientation: 'vertical',
|
|
17567
17659
|
};
|
|
17568
17660
|
}
|
|
17569
17661
|
render() {
|
|
17570
|
-
|
|
17662
|
+
const ListTag = this.isUl ? 'ul' : 'ol';
|
|
17663
|
+
return (hAsync(Host, { key: '790e8cdb692babb2d5dc021a2b3f846e08edf239', class: "kol-link-group" }, hAsync(ListTag, { key: 'b778db5aaa11c82746df40a3c214898cd14ae215', "aria-label": this.state._label, class: {
|
|
17571
17664
|
vertical: this.state._orientation === 'vertical',
|
|
17572
17665
|
horizontal: this.state._orientation === 'horizontal',
|
|
17573
|
-
} },
|
|
17666
|
+
} }, hAsync(ListItem, { key: '904c59094b31d541e5bb9769ea8420d9aaac1c50', links: this.state._links, orientation: this.state._orientation, listStyleType: this.state._listStyleType }))));
|
|
17574
17667
|
}
|
|
17575
17668
|
validateLabel(value, _oldValue, initial = false) {
|
|
17576
|
-
if (!initial) {
|
|
17669
|
+
if (!initial && this.state._label) {
|
|
17577
17670
|
removeNavLabel(this.state._label);
|
|
17578
17671
|
}
|
|
17579
|
-
validateLabel(this, value
|
|
17580
|
-
|
|
17581
|
-
});
|
|
17582
|
-
addNavLabel(this.state._label);
|
|
17672
|
+
validateLabel(this, value);
|
|
17673
|
+
this.state._label && addNavLabel(this.state._label);
|
|
17583
17674
|
}
|
|
17584
17675
|
validateListStyleType(value) {
|
|
17585
17676
|
watchValidator(this, '_listStyleType', (value) => {
|
|
@@ -17621,7 +17712,7 @@ class KolLinkGroup {
|
|
|
17621
17712
|
this.validateOrientation(this._orientation);
|
|
17622
17713
|
}
|
|
17623
17714
|
disconnectedCallback() {
|
|
17624
|
-
removeNavLabel(this.state._label);
|
|
17715
|
+
this.state._label && removeNavLabel(this.state._label);
|
|
17625
17716
|
}
|
|
17626
17717
|
static get watchers() { return {
|
|
17627
17718
|
"_label": ["validateLabel"],
|
|
@@ -17711,13 +17802,13 @@ class KolLinkWc {
|
|
|
17711
17802
|
render() {
|
|
17712
17803
|
const { isExternal, tagAttrs } = this.getRenderValues();
|
|
17713
17804
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
17714
|
-
return (hAsync(Host, { key: '
|
|
17805
|
+
return (hAsync(Host, { key: '504f0f2fe9bed749d0847c0fbd150e76c7871bcd', class: "kol-link-wc" }, hAsync("a", Object.assign({ key: 'a5a83b52474683ce841ed0397e72ff8ae087af87', ref: this.catchRef }, tagAttrs, { accessKey: this.state._accessKey, "aria-current": this.state._ariaCurrent, "aria-disabled": this.state._disabled ? 'true' : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string'
|
|
17715
17806
|
? `${this.state._label}${isExternal ? ` (${translate('kol-open-link-in-tab')})` : ''}`
|
|
17716
17807
|
: undefined, class: {
|
|
17717
17808
|
disabled: this.state._disabled === true,
|
|
17718
17809
|
'external-link': isExternal,
|
|
17719
17810
|
'hide-label': this.state._hideLabel === true,
|
|
17720
|
-
} }, this.state._on, { onClick: this.onClick, onKeyPress: this.onClick, role: this.state._role, tabIndex: this.state._disabled ? -1 : this.state._tabIndex }), hAsync(
|
|
17811
|
+
} }, this.state._on, { onClick: this.onClick, onKeyPress: this.onClick, role: this.state._role, tabIndex: this.state._disabled ? -1 : this.state._tabIndex }), hAsync(KolSpanWcTag, { key: '41a0a0a0ef71a2f54025e6c60238d2a804963584', _accessKey: this.state._accessKey, _icons: this.state._icons, _hideLabel: this.state._hideLabel, _label: hasExpertSlot ? '' : this.state._label || this.state._href }, hAsync("slot", { key: 'f4e727bbf7c7a9fb2fc0e19218cf516fd0910c2b', name: "expert", slot: "expert" })), isExternal && (hAsync(KolIconTag, { class: "external-link-icon", _label: this.state._hideLabel ? '' : translate('kol-open-link-in-tab'), _icons: 'codicon codicon-link-external', "aria-hidden": this.state._hideLabel }))), hAsync(KolTooltipWcTag, { key: '9d203ab09e2ba58b2ed7c1999b1968d3d486367c', "aria-hidden": "true", hidden: hasExpertSlot || !this.state._hideLabel, _accessKey: this.state._accessKey, _align: this.state._tooltipAlign, _label: this.state._label || this.state._href })));
|
|
17721
17812
|
}
|
|
17722
17813
|
validateAccessKey(value) {
|
|
17723
17814
|
validateAccessKey(this, value);
|
|
@@ -18031,7 +18122,7 @@ class KolLogo {
|
|
|
18031
18122
|
}
|
|
18032
18123
|
render() {
|
|
18033
18124
|
var _a;
|
|
18034
|
-
return (hAsync(Host, { key: '
|
|
18125
|
+
return (hAsync(Host, { key: 'e99716f0d792fa12a8f211ceb9dbf20608b02404', class: "kol-logo" }, hAsync("svg", { key: '7e660a9ecfefc16c37846bbf42e7bf92eb8b8abb', "aria-label": translate('kol-logo-description', { placeholders: { orgShort: this.state._org, orgLong: getAriaLabel(this.state._org) } }), role: "img", viewBox: "0 0 225 100" }, hAsync("rect", { key: '9ce71f1b7e4c7643f7430591f2042fa6e3edef22', width: "100%", height: "100%", fill: "white" }), hAsync("svg", { key: '819c6dc3223544570a7c1f0b31d180942e140eb8', x: "0", y: "4", height: "75" }, hAsync(Adler, { key: 'd51c74d633ed6d7d9e5fea268e1cc965a8fde42e' })), hAsync("svg", { key: 'bd7b4dbd0084babd5818366a935874d0dc1014c3', x: "40.5", y: "3.5", height: "100" }, hAsync("rect", { key: 'ef334c27c11f68f3e716f86926e8abb2c8f830d0', width: "5", height: "30" }), hAsync("rect", { key: '8e965aaca880244457a2f4e4da65c201a79a002b', y: "30", width: "5", height: "30", fill: "red" }), hAsync("rect", { key: 'f2b406859435e5771f1cfa5ee1262e83d93e4b6f', y: "60", width: "5", height: "30", fill: "#fc0" })), hAsync("svg", { key: '05150ad82cbd57c88c616ddbe1a35e8aae35fbcc', x: "50", y: "0" }, hAsync("text", { key: '279f02ee9463f090328c5b4043e0102858eea34f', x: "0", y: "-0.05em", "font-family": "BundesSans Web", style: { backgroundColor: 'white', color: 'black' } }, BUND_LOGO_TEXT_MAP.has(this.state._org) ? (hAsync("tspan", null, (_a = BUND_LOGO_TEXT_MAP.get(this.state._org)) === null || _a === void 0 ? void 0 : _a.map((text, index) => {
|
|
18035
18126
|
return (hAsync("tspan", { x: "0", dy: "1.1em", key: `kol-logo-text-${index}` }, text));
|
|
18036
18127
|
}))) : (hAsync("tspan", { fill: "red" }, hAsync("tspan", { x: "0", dy: "1.1em" }, "Der Schl\u00FCsselwert"), hAsync("tspan", { x: "0", dy: "1.1em", "font-weight": "bold" }, "'", this.state._org, "'"), hAsync("tspan", { x: "0", dy: "1.1em" }, "ist nicht definiert."), hAsync("tspan", { x: "0", dy: "1.1em" }, "oder freigegeben."))))))));
|
|
18037
18128
|
}
|
|
@@ -18203,7 +18294,7 @@ class KolModal {
|
|
|
18203
18294
|
}
|
|
18204
18295
|
}
|
|
18205
18296
|
render() {
|
|
18206
|
-
return (hAsync(Host, { key: '
|
|
18297
|
+
return (hAsync(Host, { key: '2819e0a6275d7f69108ec59713aa22432bad6465', class: "kol-modal", ref: (el) => {
|
|
18207
18298
|
this.hostElement = el;
|
|
18208
18299
|
} }, this.state._activeElement && (hAsync("div", { class: "overlay" }, hAsync("div", { class: "modal", style: {
|
|
18209
18300
|
width: this.state._width,
|
|
@@ -18281,6 +18372,13 @@ class KolModal {
|
|
|
18281
18372
|
const defaultStyleCss$f = "@layer kol-global {\n .sc-kol-nav-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-nav-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-nav-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-nav-default-h > div {\n display: grid;\n place-items: center;\n }\n :not(.is-compact) nav {\n width: 100%;\n }\n .list {\n display: flex;\n list-style: none;\n margin: 0;\n padding: 0;\n }\n .list.vertical {\n flex-direction: column;\n }\n .entry {\n display: flex;\n }\n .entry-item {\n flex-grow: 1;\n }\n}";
|
|
18282
18373
|
var KolNavDefaultStyle0 = defaultStyleCss$f;
|
|
18283
18374
|
|
|
18375
|
+
const entryIsLink = (entryProps) => {
|
|
18376
|
+
return typeof entryProps._href === 'string';
|
|
18377
|
+
};
|
|
18378
|
+
const entryIsButton = (entryProps) => {
|
|
18379
|
+
var _a;
|
|
18380
|
+
return entryProps._href === undefined && typeof ((_a = entryProps._on) === null || _a === void 0 ? void 0 : _a.onClick) === 'function';
|
|
18381
|
+
};
|
|
18284
18382
|
class KolNav {
|
|
18285
18383
|
constructor(hostRef) {
|
|
18286
18384
|
registerInstance(this, hostRef);
|
|
@@ -18323,14 +18421,23 @@ class KolNav {
|
|
|
18323
18421
|
collapseChildren(children) {
|
|
18324
18422
|
this.state = Object.assign(Object.assign({}, this.state), { _expandedChildren: this.state._expandedChildren.filter((searchChildren) => searchChildren != children) });
|
|
18325
18423
|
}
|
|
18326
|
-
entry(collapsible, hideLabel, hasChildren,
|
|
18424
|
+
entry(collapsible, hideLabel, hasChildren, entry, expanded) {
|
|
18327
18425
|
const icons = this.state._hasIconsWhenExpanded || this.state._hideLabel
|
|
18328
|
-
?
|
|
18426
|
+
? entry._icons || (this.state._hideLabel ? 'codicon codicon-symbol-method' : undefined)
|
|
18329
18427
|
: undefined;
|
|
18330
|
-
return (hAsync("div", { class: { entry: true, 'hide-label': hideLabel } },
|
|
18428
|
+
return (hAsync("div", { class: { entry: true, 'hide-label': hideLabel } }, entryIsLink(entry) ? (hAsync(KolLinkWcTag, Object.assign({ class: "entry-item" }, entry, { _hideLabel: hideLabel, _icons: icons }))) : (hAsync(KolButtonWcTag, { class: "entry-item", _label: entry._label, _hideLabel: hideLabel, _icons: icons, _on: {
|
|
18429
|
+
onClick: (event, value) => {
|
|
18430
|
+
if (entryIsButton(entry) && typeof entry._on.onClick === 'function') {
|
|
18431
|
+
entry._on.onClick(event, value);
|
|
18432
|
+
}
|
|
18433
|
+
else {
|
|
18434
|
+
this.handleToggleExpansionClick(entry._children);
|
|
18435
|
+
}
|
|
18436
|
+
},
|
|
18437
|
+
} })), hasChildren ? this.expandButton(collapsible, entry, expanded) : ''));
|
|
18331
18438
|
}
|
|
18332
18439
|
expandButton(collapsible, link, expanded) {
|
|
18333
|
-
return (hAsync(
|
|
18440
|
+
return (hAsync(KolButtonWcTag, { class: "expand-button", _ariaExpanded: expanded, _disabled: !collapsible, _icons: 'codicon codicon-' + (expanded ? 'remove' : 'add'), _hideLabel: true, _label: `Untermenü zu ${link._label} ${expanded ? 'schließen' : 'öffnen'}`, _on: { onClick: () => this.handleToggleExpansionClick(link._children) } }));
|
|
18334
18441
|
}
|
|
18335
18442
|
li(collapsible, hideLabel, deep, index, link, orientation) {
|
|
18336
18443
|
const active = !!link._active;
|
|
@@ -18371,11 +18478,11 @@ class KolNav {
|
|
|
18371
18478
|
const collapsible = this.state._collapsible === true;
|
|
18372
18479
|
const hideLabel = this.state._hideLabel === true;
|
|
18373
18480
|
const orientation = this.state._orientation;
|
|
18374
|
-
return (hAsync(Host, { key: '
|
|
18481
|
+
return (hAsync(Host, { key: '8e055bdf686c2adc6338cf663dc5f873836eaba6', class: "kol-nav" }, hAsync("div", { key: '8f095f7c3370e33d085d96cfe36b464d904747af', class: {
|
|
18375
18482
|
nav: true,
|
|
18376
18483
|
[orientation]: true,
|
|
18377
18484
|
'is-compact': this.state._hideLabel,
|
|
18378
|
-
} }, hAsync("nav", { key: '
|
|
18485
|
+
} }, hAsync("nav", { key: 'd9070f9c00f1e19154ca3c571ac94318dfba3c9f', "aria-label": this.state._label, id: "nav" }, hAsync(this.linkList, { key: 'e4d91d4e2221db954a0cb1c4daedddd1fcce70af', collapsible: collapsible, hideLabel: hideLabel, deep: 0, links: this.state._links, orientation: orientation })), hasCompactButton && (hAsync("div", { class: "compact" }, hAsync(KolButtonTag, { _ariaControls: "nav", _ariaExpanded: !hideLabel, _icons: hideLabel ? 'codicon codicon-chevron-right' : 'codicon codicon-chevron-left', _hideLabel: true, _label: translate(hideLabel ? 'kol-nav-maximize' : 'kol-nav-minimize'), _on: {
|
|
18379
18486
|
onClick: () => {
|
|
18380
18487
|
this.state = Object.assign(Object.assign({}, this.state), { _hideLabel: this.state._hideLabel === false });
|
|
18381
18488
|
},
|
|
@@ -18456,7 +18563,7 @@ class KolNav {
|
|
|
18456
18563
|
}; }
|
|
18457
18564
|
}
|
|
18458
18565
|
|
|
18459
|
-
const defaultStyleCss$e = "@charset \"UTF-8\";\n\n@layer kol-global {\n .sc-kol-pagination-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-pagination-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-pagination-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-pagination-default-h {\n align-items: center;\n display: grid;\n gap:
|
|
18566
|
+
const defaultStyleCss$e = "@charset \"UTF-8\";\n\n@layer kol-global {\n .sc-kol-pagination-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-pagination-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-pagination-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-pagination-default-h {\n align-items: center;\n display: grid;\n gap: calc(16rem / var(--kolibri-root-font-size, 16));\n grid-template-columns: 1fr auto;\n }\n .navigation-list {\n align-items: center;\n display: inline-flex;\n flex-wrap: wrap;\n gap: 0.5em;\n list-style: none;\n margin: 0;\n padding: 0;\n }\n .separator:before {\n content: \"•••\";\n }\n}";
|
|
18460
18567
|
var KolPaginationDefaultStyle0 = defaultStyleCss$e;
|
|
18461
18568
|
|
|
18462
18569
|
const leftDoubleArrowIcon = {
|
|
@@ -18626,19 +18733,19 @@ class KolPagination {
|
|
|
18626
18733
|
return null;
|
|
18627
18734
|
}
|
|
18628
18735
|
});
|
|
18629
|
-
return (hAsync(Host, { class: "kol-pagination" }, hAsync("nav", { "aria-label": this.state._label }, hAsync("ul", { class: "navigation-list" }, this.state._hasButtons.first && (hAsync("li", null, hAsync(
|
|
18736
|
+
return (hAsync(Host, { class: "kol-pagination" }, hAsync("nav", { "aria-label": this.state._label }, hAsync("ul", { class: "navigation-list" }, this.state._hasButtons.first && (hAsync("li", null, hAsync(KolButtonWcTag, { 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(KolButtonWcTag, { 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(KolButtonWcTag, { 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(KolButtonWcTag, { 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(KolSelectTag, { _hideLabel: true, _id: `pagination-size-${this.nonce}`, _label: translate('kol-entries-per-site'), _options: this.state._pageSizeOptions, _on: {
|
|
18630
18737
|
onChange: this.onChangePageSize,
|
|
18631
18738
|
}, _value: [this.state._pageSize] }))));
|
|
18632
18739
|
}
|
|
18633
18740
|
getUnselectedPageButton(page) {
|
|
18634
|
-
return (hAsync("li", null, hAsync(
|
|
18741
|
+
return (hAsync("li", null, hAsync(KolButtonWcTag, { exportparts: "icon", key: `${this.nonce}-${page}`, _customClass: this.state._customClass, _label: "", _on: {
|
|
18635
18742
|
onClick: (event) => {
|
|
18636
18743
|
this.onClick(event, page);
|
|
18637
18744
|
},
|
|
18638
18745
|
} }, hAsync("span", { slot: "expert" }, hAsync("span", { class: "visually-hidden" }, translate('kol-page')), " ", page))));
|
|
18639
18746
|
}
|
|
18640
18747
|
getSelectedPageButton(page) {
|
|
18641
|
-
return (hAsync("li", null, hAsync(
|
|
18748
|
+
return (hAsync("li", null, hAsync(KolButtonWcTag, { class: "selected", key: `${this.nonce}-selected`, _customClass: this.state._customClass, _disabled: true, _label: "" }, hAsync("span", { slot: "expert" }, hAsync("span", { class: "visually-hidden" }, translate('kol-page')), " ", page))));
|
|
18642
18749
|
}
|
|
18643
18750
|
validateBoundaryCount(value) {
|
|
18644
18751
|
watchNumber(this, '_boundaryCount', Math.max(0, value !== null && value !== void 0 ? value : 1));
|
|
@@ -20847,7 +20954,7 @@ class KolPopover {
|
|
|
20847
20954
|
});
|
|
20848
20955
|
}
|
|
20849
20956
|
render() {
|
|
20850
|
-
return (hAsync(Host, { key: '
|
|
20957
|
+
return (hAsync(Host, { key: '75411d41cdaa39bfb0038556b160d4ed35b21341', ref: this.catchHostAndTriggerElement, class: "kol-popover-wc" }, hAsync("div", { key: '6802b4f0ab7ad5aababaca54048bc62e1179e4e3', class: { popover: true, hidden: !this.state._show, show: this.state._visible }, ref: this.catchPopoverElement }, hAsync("div", { key: 'b122939f481081627e2ed57ff3a75799a33c94fe', class: `arrow ${this.state._align}`, ref: this.catchArrowElement }), hAsync("slot", { key: '38bfe558dd55f601bdf43cc3f0d8478791d9afca' }))));
|
|
20851
20958
|
}
|
|
20852
20959
|
validateAlign(value) {
|
|
20853
20960
|
validateAlign(this, value);
|
|
@@ -20880,27 +20987,30 @@ class KolPopover {
|
|
|
20880
20987
|
}; }
|
|
20881
20988
|
}
|
|
20882
20989
|
|
|
20883
|
-
const defaultStyleCss$d = "@layer kol-global {\n .sc-kol-progress-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-progress-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-progress-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n progress {\n display: block;\n height: 0;\n overflow: hidden;\n width: 0;\n }\n .bar .border {\n fill: transparent;\n stroke: black;\n }\n .bar .background {\n fill: lightgray;\n stroke: white;\n }\n .bar .progress {\n fill: #0075ff;\n stroke: transparent;\n transition: 250ms ease-in-out 50ms;\n }\n .cycle .background {\n fill: transparent;\n stroke: lightgray;\n }\n .cycle .border {\n fill: transparent;\n stroke: black;\n }\n .cycle .whitespace {\n fill: transparent;\n stroke: white;\n }\n .cycle .progress {\n fill: transparent;\n stroke: #0075ff;\n transform-origin: 50% 50%;\n transform: rotate(-90deg);\n transition: 250ms ease-in-out 50ms;\n }\n \n @media (prefers-reduced-motion) {\n .progress {\n transition-duration: 0s;\n transition-delay: 0s;\n }\n }\n}";
|
|
20990
|
+
const defaultStyleCss$d = "@layer kol-global {\n .sc-kol-progress-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-progress-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-progress-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n progress {\n display: block;\n height: 0;\n overflow: hidden;\n width: 0;\n }\n .bar {\n width: 150px;\n }\n .bar .border {\n fill: transparent;\n stroke: black;\n }\n .bar .background {\n fill: lightgray;\n stroke: white;\n }\n .bar .progress {\n fill: #0075ff;\n stroke: transparent;\n transition: 250ms ease-in-out 50ms;\n }\n .cycle .background {\n fill: transparent;\n stroke: lightgray;\n }\n .cycle .border {\n fill: transparent;\n stroke: black;\n }\n .cycle .whitespace {\n fill: transparent;\n stroke: white;\n }\n .cycle .progress {\n fill: transparent;\n stroke: #0075ff;\n transform-origin: 50% 50%;\n transform: rotate(-90deg);\n transition: 250ms ease-in-out 50ms;\n }\n \n @media (prefers-reduced-motion) {\n .progress {\n transition-duration: 0s;\n transition-delay: 0s;\n }\n }\n}";
|
|
20884
20991
|
var KolProgressDefaultStyle0 = defaultStyleCss$d;
|
|
20885
20992
|
|
|
20886
20993
|
const VALID_VARIANTS = Object.keys(KoliBriProgressVariantEnum);
|
|
20887
|
-
const
|
|
20994
|
+
const CycleSvg = ({ state }) => {
|
|
20888
20995
|
const fullCircle = 342;
|
|
20889
20996
|
const textPositionTop = '43%';
|
|
20890
20997
|
const textPositionBottom = '57%';
|
|
20891
|
-
|
|
20892
|
-
|
|
20998
|
+
const valueY = state._label ? textPositionBottom : '50%';
|
|
20999
|
+
return (hAsync("svg", { class: "cycle", width: "100", viewBox: "0 0 120 120", xmlns: "http://www.w3.org/2000/svg" }, hAsync("circle", { class: "background", cx: "60", cy: "60", r: "54.5", fill: "currentColor", stroke: "currentColor", "stroke-width": "8" }), hAsync("circle", { class: "whitespace", cx: "60", cy: "60", r: "59", fill: "currentColor", stroke: "currentColor", "stroke-width": "3" }), hAsync("circle", { class: "border", cx: "60", cy: "60", r: "59", fill: "currentColor", stroke: "currentColor", "stroke-width": "1" }), hAsync("circle", { class: "whitespace", cx: "60", cy: "60", r: "51", fill: "currentColor", stroke: "currentColor", "stroke-width": "1" }), hAsync("circle", { class: "border", cx: "60", cy: "60", r: "50", fill: "currentColor", stroke: "currentColor", "stroke-width": "1" }), hAsync("circle", { class: "progress", fill: "currentColor", stroke: "currentColor", "stroke-linecap": "round", "stroke-dasharray": `${Math.round((state._value / state._max) * fullCircle)}px ${fullCircle}px`, "stroke-width": "6", cx: "60", cy: "60", r: "54.5" }), state._label && (hAsync("text", { "aria-hidden": "true", x: "50%", y: textPositionTop, "text-anchor": "middle", fill: "currentColor" }, state._label)), hAsync("text", { "aria-hidden": "true", x: "50%", y: valueY, "text-anchor": "middle", fill: "currentColor" }, state._value, state._unit)));
|
|
21000
|
+
};
|
|
21001
|
+
const BarSvg = ({ state }) => {
|
|
21002
|
+
const textLabelPadding = 'var(--kolibri-text-label-padding, 45px)';
|
|
21003
|
+
const percentage = 100 * (state._value / state._max);
|
|
21004
|
+
return (hAsync("div", { class: "bar" }, state._label && hAsync("div", null, state._label), hAsync("svg", { xmlns: "http://www.w3.org/2000/svg", width: "100%", height: "12", overflow: "visible" }, hAsync("rect", { class: "background", x: "1", y: "1", height: "10", rx: "5", fill: "currentColor", stroke: "currentColor", "stroke-width": "3", style: { width: `calc(100% - 2px - ${textLabelPadding})` } }), hAsync("rect", { class: "border", x: "1", y: "1", height: "10", rx: "5", fill: "currentColor", stroke: "currentColor", "stroke-width": "1", style: { width: `calc(100% - 2px - ${textLabelPadding})` } }), hAsync("rect", { class: "progress", x: "2.5", y: "2.5", height: "7", rx: "3.5", fill: "currentColor", stroke: "currentColor", "stroke-width": "3", style: { width: `calc(${percentage}% - 5px - (${textLabelPadding} / 100 * ${percentage}))` } }), hAsync("text", { "aria-hidden": "true", "text-anchor": "end", "dominant-baseline": "middle", fill: "currentColor", x: "100%", y: "50%" }, state._value, state._unit))));
|
|
21005
|
+
};
|
|
21006
|
+
const createProgressSVG = (state) => {
|
|
20893
21007
|
switch (state._variant) {
|
|
20894
|
-
case 'cycle-value-label':
|
|
20895
|
-
if (state._label) {
|
|
20896
|
-
labelY = textPositionBottom;
|
|
20897
|
-
valueY = textPositionTop;
|
|
20898
|
-
}
|
|
20899
21008
|
case 'cycle':
|
|
20900
|
-
|
|
20901
|
-
|
|
21009
|
+
return hAsync(CycleSvg, { state: state });
|
|
21010
|
+
case 'bar':
|
|
21011
|
+
return hAsync(BarSvg, { state: state });
|
|
20902
21012
|
default:
|
|
20903
|
-
|
|
21013
|
+
throw new Error(`Progress variant ${state._variant} not implemented.`);
|
|
20904
21014
|
}
|
|
20905
21015
|
};
|
|
20906
21016
|
class KolProcess {
|
|
@@ -20920,7 +21030,7 @@ class KolProcess {
|
|
|
20920
21030
|
};
|
|
20921
21031
|
}
|
|
20922
21032
|
render() {
|
|
20923
|
-
return (hAsync(Host, { key: '
|
|
21033
|
+
return (hAsync(Host, { key: '6e573e27abc2de814058aff6ce7b4eb2ea7b4e4a', class: "kol-progress" }, createProgressSVG(this.state), hAsync("progress", { key: '76a25c51eaed944dbe7a737df7797b129252fee9', "aria-busy": this.state._value < this.state._max ? 'true' : 'false', max: this.state._max, value: this.state._value }), hAsync("span", { key: '849cbbea9914c5ab5e348aab70b4cf6607a47c3c', "aria-live": "polite", "aria-relevant": "removals text", class: "visually-hidden" }, this.state._liveValue, " von ", this.state._max, " ", this.state._unit)));
|
|
20924
21034
|
}
|
|
20925
21035
|
validateLabel(value) {
|
|
20926
21036
|
validateLabel(this, value);
|
|
@@ -21029,9 +21139,9 @@ class KolQuote {
|
|
|
21029
21139
|
}
|
|
21030
21140
|
render() {
|
|
21031
21141
|
const hasExpertSlot = showExpertSlot(this.state._quote);
|
|
21032
|
-
return (hAsync(Host, { key: '
|
|
21142
|
+
return (hAsync(Host, { key: '93d15f42ad5eaeb21002ff90c0281ec3dbd74c52', class: "kol-quote" }, hAsync("figure", { key: '9275bb3e226b2bbdf7d050417e243851556846c7', class: {
|
|
21033
21143
|
[this.state._variant]: true,
|
|
21034
|
-
} }, this.state._variant === 'block' ? (hAsync("blockquote", { cite: this.state._href }, this.state._quote, hAsync("span", { "aria-hidden": !hasExpertSlot ? 'true' : undefined, hidden: !hasExpertSlot }, hAsync("slot", { name: "expert" })))) : (hAsync("q", { cite: this.state._href }, this.state._quote, hAsync("span", { "aria-hidden": !hasExpertSlot ? 'true' : undefined, hidden: !hasExpertSlot }, hAsync("slot", { name: "expert" })))), typeof this.state._label === 'string' && this.state._label.length > 0 && (hAsync("figcaption", null, hAsync("cite", null, hAsync(
|
|
21144
|
+
} }, this.state._variant === 'block' ? (hAsync("blockquote", { cite: this.state._href }, this.state._quote, hAsync("span", { "aria-hidden": !hasExpertSlot ? 'true' : undefined, hidden: !hasExpertSlot }, hAsync("slot", { name: "expert" })))) : (hAsync("q", { cite: this.state._href }, this.state._quote, hAsync("span", { "aria-hidden": !hasExpertSlot ? 'true' : undefined, hidden: !hasExpertSlot }, hAsync("slot", { name: "expert" })))), typeof this.state._label === 'string' && this.state._label.length > 0 && (hAsync("figcaption", null, hAsync("cite", null, hAsync(KolLinkTag, { _href: this.state._href, _label: this.state._label, _target: "_blank" })))))));
|
|
21035
21145
|
}
|
|
21036
21146
|
static get watchers() { return {
|
|
21037
21147
|
"_label": ["validateLabel"],
|
|
@@ -21147,7 +21257,7 @@ class SelectController extends InputIconController {
|
|
|
21147
21257
|
}
|
|
21148
21258
|
}
|
|
21149
21259
|
|
|
21150
|
-
const defaultStyleCss$b = "@layer kol-global {\n .sc-kol-select-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-select-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-select-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-select-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size:
|
|
21260
|
+
const defaultStyleCss$b = "@layer kol-global {\n .sc-kol-select-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-select-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-select-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-select-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n }\n \n input[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n }\n \n select[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n }\n}\n@layer kol-component {\n .kol-input {\n display: grid;\n }\n .kol-input .input-slot {\n flex-grow: 1;\n }\n input:not([type=checkbox], [type=radio]),\n select:not([multiple], [size]) {\n height: 2.75em;\n }\n input:focus,\n option:focus,\n select:focus,\n textarea:focus {\n outline: 0;\n }\n .input {\n display: flex;\n align-items: center;\n }\n .input > .kol-icon {\n display: grid;\n height: var(--a11y-min-size);\n place-items: center;\n }\n .kol-input.required .input-tooltip .span-label::after {\n content: \"*\";\n }\n}\n@layer kol-component {}";
|
|
21151
21261
|
var KolSelectDefaultStyle0 = defaultStyleCss$b;
|
|
21152
21262
|
|
|
21153
21263
|
const isSelected = (valueList, optionValue) => {
|
|
@@ -21172,12 +21282,10 @@ class KolSelect {
|
|
|
21172
21282
|
render() {
|
|
21173
21283
|
const { ariaDescribedBy } = getRenderStates(this.state);
|
|
21174
21284
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
21175
|
-
return (hAsync(Host, { key: '
|
|
21285
|
+
return (hAsync(Host, { key: '6a99ca9939b8feea22389b24047e75df7de3fb07', class: { 'kol-select': true, 'has-value': this.state._hasValue } }, hAsync(KolInputTag, { key: 'c0fd316f7e13fa499b7a0f2672347d607fe01fbc', class: {
|
|
21176
21286
|
'hide-label': !!this.state._hideLabel,
|
|
21177
21287
|
select: true,
|
|
21178
|
-
}, _accessKey: this.state._accessKey, _disabled: this.state._disabled,
|
|
21179
|
-
onBlur: this.controller.onFacade.onBlur,
|
|
21180
|
-
onFocus: this.controller.onFacade.onFocus, onChange: this.onChange }, this.state._options.map((option, index) => {
|
|
21288
|
+
}, _accessKey: this.state._accessKey, _disabled: this.state._disabled, _hideError: this.state._hideError, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _icons: this.state._icons, _id: this.state._id, _label: this.state._label, _msg: this.state._msg, _required: this.state._required, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched, onClick: () => { var _a; return (_a = this.ref) === null || _a === void 0 ? void 0 : _a.focus(); }, role: `presentation` }, hAsync("span", { key: '43a8853f439b9a23d3832802f9968308a8639e2e', slot: "label" }, hasExpertSlot ? (hAsync("slot", { name: "expert" })) : typeof this.state._accessKey === 'string' ? (hAsync(Fragment, null, hAsync(InternalUnderlinedAccessKey, { accessKey: this.state._accessKey, label: this.state._label }), ' ', hAsync("span", { class: "access-key-hint", "aria-hidden": "true" }, this.state._accessKey))) : (hAsync("span", null, this.state._label))), hAsync("div", { key: '859d4531edb77433a4f833d4d67088fba62a7b33', slot: "input" }, hAsync("select", Object.assign({ key: '4e4b7d220c3ef009c5ccf46a6fa3f9b15f9eee0a', ref: this.catchRef, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, autoCapitalize: "off", autoCorrect: "off", disabled: this.state._disabled, id: this.state._id, multiple: this.state._multiple, name: this.state._name, required: this.state._required, size: this.state._rows, spellcheck: "false" }, this.controller.onFacade, { onChange: this.onChange }), this.state._options.map((option, index) => {
|
|
21181
21289
|
const key = `-${index}`;
|
|
21182
21290
|
if (Array.isArray(option.options)) {
|
|
21183
21291
|
return this.renderOptgroup(option, key);
|
|
@@ -21215,6 +21323,7 @@ class KolSelect {
|
|
|
21215
21323
|
this._icons = undefined;
|
|
21216
21324
|
this._id = undefined;
|
|
21217
21325
|
this._label = undefined;
|
|
21326
|
+
this._msg = undefined;
|
|
21218
21327
|
this._multiple = false;
|
|
21219
21328
|
this._name = undefined;
|
|
21220
21329
|
this._on = undefined;
|
|
@@ -21267,6 +21376,9 @@ class KolSelect {
|
|
|
21267
21376
|
validateLabel(value) {
|
|
21268
21377
|
this.controller.validateLabel(value);
|
|
21269
21378
|
}
|
|
21379
|
+
validateMsg(value) {
|
|
21380
|
+
this.controller.validateMsg(value);
|
|
21381
|
+
}
|
|
21270
21382
|
validateMultiple(value) {
|
|
21271
21383
|
this.controller.validateMultiple(value);
|
|
21272
21384
|
}
|
|
@@ -21316,6 +21428,7 @@ class KolSelect {
|
|
|
21316
21428
|
"_icons": ["validateIcons"],
|
|
21317
21429
|
"_id": ["validateId"],
|
|
21318
21430
|
"_label": ["validateLabel"],
|
|
21431
|
+
"_msg": ["validateMsg"],
|
|
21319
21432
|
"_multiple": ["validateMultiple"],
|
|
21320
21433
|
"_name": ["validateName"],
|
|
21321
21434
|
"_on": ["validateOn"],
|
|
@@ -21344,6 +21457,7 @@ class KolSelect {
|
|
|
21344
21457
|
"_icons": [1],
|
|
21345
21458
|
"_id": [1],
|
|
21346
21459
|
"_label": [1],
|
|
21460
|
+
"_msg": [16],
|
|
21347
21461
|
"_multiple": [4],
|
|
21348
21462
|
"_name": [1],
|
|
21349
21463
|
"_on": [16],
|
|
@@ -21378,8 +21492,8 @@ class KolSkipNav {
|
|
|
21378
21492
|
};
|
|
21379
21493
|
}
|
|
21380
21494
|
render() {
|
|
21381
|
-
return (hAsync(Host, { key: '
|
|
21382
|
-
return (hAsync("li", { key: index }, hAsync(
|
|
21495
|
+
return (hAsync(Host, { key: 'b9f4d1caf5aaf6b063c1ecdd0dd1baf65999f61a', class: "kol-skip-nav" }, hAsync("nav", { key: 'e22cfe4a60de60505fb646377b3b908315958f4f', "aria-label": this.state._label }, hAsync("ul", { key: '8bf62af710317512ab379226d441fbce34aef8b6' }, this.state._links.map((link, index) => {
|
|
21496
|
+
return (hAsync("li", { key: index }, hAsync(KolLinkWcTag, Object.assign({}, link))));
|
|
21383
21497
|
})))));
|
|
21384
21498
|
}
|
|
21385
21499
|
validateLabel(value, _oldValue, initial = false) {
|
|
@@ -21434,7 +21548,7 @@ class KolSpan {
|
|
|
21434
21548
|
this._label = undefined;
|
|
21435
21549
|
}
|
|
21436
21550
|
render() {
|
|
21437
|
-
return (hAsync(
|
|
21551
|
+
return (hAsync(KolSpanWcTag, { key: '200891a3b4cfb837d7cff1c93664a905f95600d7', _icons: this._icons, _hideLabel: this._hideLabel, _label: this._label, _accessKey: this._accessKey, class: "kol-span" }, hAsync("slot", { key: 'b23c76157a0f8831111f9d8f661145b0d8ee8425', name: "expert", slot: "expert" })));
|
|
21438
21552
|
}
|
|
21439
21553
|
static get style() { return {
|
|
21440
21554
|
default: KolSpanDefaultStyle0
|
|
@@ -21994,18 +22108,21 @@ var Any = /[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBF
|
|
|
21994
22108
|
|
|
21995
22109
|
var Cc = /[\0-\x1F\x7F-\x9F]/;
|
|
21996
22110
|
|
|
21997
|
-
var regex = /[\xAD\u0600-\u0605\u061C\u06DD\u070F\u0890\u0891\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD80D[\uDC30-\uDC3F]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/;
|
|
22111
|
+
var regex$1 = /[\xAD\u0600-\u0605\u061C\u06DD\u070F\u0890\u0891\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD80D[\uDC30-\uDC3F]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/;
|
|
21998
22112
|
|
|
21999
22113
|
var P = /[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061D-\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1B7D\u1B7E\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4F\u2E52-\u2E5D\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDEAD\uDF55-\uDF59\uDF86-\uDF89]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5A\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDEB9\uDF3C-\uDF3E]|\uD806[\uDC3B\uDD44-\uDD46\uDDE2\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2\uDF00-\uDF09]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8\uDF43-\uDF4F\uDFFF]|\uD809[\uDC70-\uDC74]|\uD80B[\uDFF1\uDFF2]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A\uDFE2]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/;
|
|
22000
22114
|
|
|
22115
|
+
var regex = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u0888\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20C0\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFF\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u31EF\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC2\uFD40-\uFD4F\uFDCF\uFDFC-\uFDFF\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD833[\uDF50-\uDFC3]|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDEA\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEDC-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF76\uDF7B-\uDFD9\uDFE0-\uDFEB\uDFF0]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDE53\uDE60-\uDE6D\uDE70-\uDE7C\uDE80-\uDE88\uDE90-\uDEBD\uDEBF-\uDEC5\uDECE-\uDEDB\uDEE0-\uDEE8\uDEF0-\uDEF8\uDF00-\uDF92\uDF94-\uDFCA]/;
|
|
22116
|
+
|
|
22001
22117
|
var Z = /[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/;
|
|
22002
22118
|
|
|
22003
22119
|
var ucmicro = /*#__PURE__*/Object.freeze({
|
|
22004
22120
|
__proto__: null,
|
|
22005
22121
|
Any: Any,
|
|
22006
22122
|
Cc: Cc,
|
|
22007
|
-
Cf: regex,
|
|
22123
|
+
Cf: regex$1,
|
|
22008
22124
|
P: P,
|
|
22125
|
+
S: regex,
|
|
22009
22126
|
Z: Z
|
|
22010
22127
|
});
|
|
22011
22128
|
|
|
@@ -22720,7 +22837,7 @@ function isWhiteSpace (code) {
|
|
|
22720
22837
|
|
|
22721
22838
|
// Currently without astral characters support.
|
|
22722
22839
|
function isPunctChar (ch) {
|
|
22723
|
-
return P.test(ch)
|
|
22840
|
+
return P.test(ch) || regex.test(ch)
|
|
22724
22841
|
}
|
|
22725
22842
|
|
|
22726
22843
|
// Markdown ASCII punctuation characters.
|
|
@@ -22907,7 +23024,6 @@ function parseLinkDestination (str, start, max) {
|
|
|
22907
23024
|
const result = {
|
|
22908
23025
|
ok: false,
|
|
22909
23026
|
pos: 0,
|
|
22910
|
-
lines: 0,
|
|
22911
23027
|
str: ''
|
|
22912
23028
|
};
|
|
22913
23029
|
|
|
@@ -22976,52 +23092,66 @@ function parseLinkDestination (str, start, max) {
|
|
|
22976
23092
|
|
|
22977
23093
|
// Parse link title
|
|
22978
23094
|
|
|
22979
|
-
|
|
22980
|
-
|
|
22981
|
-
|
|
23095
|
+
// Parse link title within `str` in [start, max] range,
|
|
23096
|
+
// or continue previous parsing if `prev_state` is defined (equal to result of last execution).
|
|
23097
|
+
//
|
|
23098
|
+
function parseLinkTitle (str, start, max, prev_state) {
|
|
23099
|
+
let code;
|
|
22982
23100
|
let pos = start;
|
|
22983
23101
|
|
|
22984
|
-
const
|
|
23102
|
+
const state = {
|
|
23103
|
+
// if `true`, this is a valid link title
|
|
22985
23104
|
ok: false,
|
|
23105
|
+
// if `true`, this link can be continued on the next line
|
|
23106
|
+
can_continue: false,
|
|
23107
|
+
// if `ok`, it's the position of the first character after the closing marker
|
|
22986
23108
|
pos: 0,
|
|
22987
|
-
|
|
22988
|
-
str: ''
|
|
23109
|
+
// if `ok`, it's the unescaped title
|
|
23110
|
+
str: '',
|
|
23111
|
+
// expected closing marker character code
|
|
23112
|
+
marker: 0
|
|
22989
23113
|
};
|
|
22990
23114
|
|
|
22991
|
-
if (
|
|
23115
|
+
if (prev_state) {
|
|
23116
|
+
// this is a continuation of a previous parseLinkTitle call on the next line,
|
|
23117
|
+
// used in reference links only
|
|
23118
|
+
state.str = prev_state.str;
|
|
23119
|
+
state.marker = prev_state.marker;
|
|
23120
|
+
} else {
|
|
23121
|
+
if (pos >= max) { return state }
|
|
22992
23122
|
|
|
22993
|
-
|
|
23123
|
+
let marker = str.charCodeAt(pos);
|
|
23124
|
+
if (marker !== 0x22 /* " */ && marker !== 0x27 /* ' */ && marker !== 0x28 /* ( */) { return state }
|
|
22994
23125
|
|
|
22995
|
-
|
|
23126
|
+
start++;
|
|
23127
|
+
pos++;
|
|
22996
23128
|
|
|
22997
|
-
|
|
23129
|
+
// if opening marker is "(", switch it to closing marker ")"
|
|
23130
|
+
if (marker === 0x28) { marker = 0x29; }
|
|
22998
23131
|
|
|
22999
|
-
|
|
23000
|
-
|
|
23132
|
+
state.marker = marker;
|
|
23133
|
+
}
|
|
23001
23134
|
|
|
23002
23135
|
while (pos < max) {
|
|
23003
23136
|
code = str.charCodeAt(pos);
|
|
23004
|
-
if (code === marker) {
|
|
23005
|
-
|
|
23006
|
-
|
|
23007
|
-
|
|
23008
|
-
|
|
23009
|
-
|
|
23010
|
-
|
|
23011
|
-
return result
|
|
23012
|
-
} else if (code === 0x0A) {
|
|
23013
|
-
lines++;
|
|
23137
|
+
if (code === state.marker) {
|
|
23138
|
+
state.pos = pos + 1;
|
|
23139
|
+
state.str += unescapeAll(str.slice(start, pos));
|
|
23140
|
+
state.ok = true;
|
|
23141
|
+
return state
|
|
23142
|
+
} else if (code === 0x28 /* ( */ && state.marker === 0x29 /* ) */) {
|
|
23143
|
+
return state
|
|
23014
23144
|
} else if (code === 0x5C /* \ */ && pos + 1 < max) {
|
|
23015
23145
|
pos++;
|
|
23016
|
-
if (str.charCodeAt(pos) === 0x0A) {
|
|
23017
|
-
lines++;
|
|
23018
|
-
}
|
|
23019
23146
|
}
|
|
23020
23147
|
|
|
23021
23148
|
pos++;
|
|
23022
23149
|
}
|
|
23023
23150
|
|
|
23024
|
-
|
|
23151
|
+
// no closing marker found, but this link title may continue on the next line (for references)
|
|
23152
|
+
state.can_continue = true;
|
|
23153
|
+
state.str += unescapeAll(str.slice(start, pos));
|
|
23154
|
+
return state
|
|
23025
23155
|
}
|
|
23026
23156
|
|
|
23027
23157
|
// Just a shortcut for bulk export
|
|
@@ -23170,7 +23300,7 @@ function Renderer () {
|
|
|
23170
23300
|
* }
|
|
23171
23301
|
* ```
|
|
23172
23302
|
*
|
|
23173
|
-
* See [source code](https://github.com/markdown-it/markdown-it/blob/master/lib/renderer.
|
|
23303
|
+
* See [source code](https://github.com/markdown-it/markdown-it/blob/master/lib/renderer.mjs)
|
|
23174
23304
|
* for more details and examples.
|
|
23175
23305
|
**/
|
|
23176
23306
|
this.rules = assign$1({}, default_rules);
|
|
@@ -24672,6 +24802,14 @@ StateBlock.prototype.Token = Token;
|
|
|
24672
24802
|
|
|
24673
24803
|
// GFM table, https://github.github.com/gfm/#tables-extension-
|
|
24674
24804
|
|
|
24805
|
+
// Limit the amount of empty autocompleted cells in a table,
|
|
24806
|
+
// see https://github.com/markdown-it/markdown-it/issues/1000,
|
|
24807
|
+
//
|
|
24808
|
+
// Both pulldown-cmark and commonmark-hs limit the number of cells this way to ~200k.
|
|
24809
|
+
// We set it to 65k, which can expand user input by a factor of x370
|
|
24810
|
+
// (256x256 square is 1.8kB expanded into 650kB).
|
|
24811
|
+
const MAX_AUTOCOMPLETED_CELLS = 0x10000;
|
|
24812
|
+
|
|
24675
24813
|
function getLine (state, line) {
|
|
24676
24814
|
const pos = state.bMarks[line] + state.tShift[line];
|
|
24677
24815
|
const max = state.eMarks[line];
|
|
@@ -24827,6 +24965,7 @@ function table$1 (state, startLine, endLine, silent) {
|
|
|
24827
24965
|
state.push('thead_close', 'thead', -1);
|
|
24828
24966
|
|
|
24829
24967
|
let tbodyLines;
|
|
24968
|
+
let autocompletedCells = 0;
|
|
24830
24969
|
|
|
24831
24970
|
for (nextLine = startLine + 2; nextLine < endLine; nextLine++) {
|
|
24832
24971
|
if (state.sCount[nextLine] < state.blkIndent) { break }
|
|
@@ -24847,6 +24986,11 @@ function table$1 (state, startLine, endLine, silent) {
|
|
|
24847
24986
|
if (columns.length && columns[0] === '') columns.shift();
|
|
24848
24987
|
if (columns.length && columns[columns.length - 1] === '') columns.pop();
|
|
24849
24988
|
|
|
24989
|
+
// note: autocomplete count can be negative if user specifies more columns than header,
|
|
24990
|
+
// but that does not affect intended use (which is limiting expansion)
|
|
24991
|
+
autocompletedCells += columnCount - columns.length;
|
|
24992
|
+
if (autocompletedCells > MAX_AUTOCOMPLETED_CELLS) { break }
|
|
24993
|
+
|
|
24850
24994
|
if (nextLine === startLine + 2) {
|
|
24851
24995
|
const token_tbo = state.push('tbody_open', 'tbody', 1);
|
|
24852
24996
|
token_tbo.map = tbodyLines = [startLine + 2, 0];
|
|
@@ -25587,8 +25731,6 @@ function list (state, startLine, endLine, silent) {
|
|
|
25587
25731
|
}
|
|
25588
25732
|
|
|
25589
25733
|
function reference (state, startLine, _endLine, silent) {
|
|
25590
|
-
let lines = 0;
|
|
25591
|
-
|
|
25592
25734
|
let pos = state.bMarks[startLine] + state.tShift[startLine];
|
|
25593
25735
|
let max = state.eMarks[startLine];
|
|
25594
25736
|
let nextLine = startLine + 1;
|
|
@@ -25598,45 +25740,53 @@ function reference (state, startLine, _endLine, silent) {
|
|
|
25598
25740
|
|
|
25599
25741
|
if (state.src.charCodeAt(pos) !== 0x5B/* [ */) { return false }
|
|
25600
25742
|
|
|
25601
|
-
|
|
25602
|
-
|
|
25603
|
-
while (++pos < max) {
|
|
25604
|
-
if (state.src.charCodeAt(pos) === 0x5D /* ] */ &&
|
|
25605
|
-
state.src.charCodeAt(pos - 1) !== 0x5C/* \ */) {
|
|
25606
|
-
if (pos + 1 === max) { return false }
|
|
25607
|
-
if (state.src.charCodeAt(pos + 1) !== 0x3A/* : */) { return false }
|
|
25608
|
-
break
|
|
25609
|
-
}
|
|
25610
|
-
}
|
|
25743
|
+
function getNextLine (nextLine) {
|
|
25744
|
+
const endLine = state.lineMax;
|
|
25611
25745
|
|
|
25612
|
-
|
|
25746
|
+
if (nextLine >= endLine || state.isEmpty(nextLine)) {
|
|
25747
|
+
// empty line or end of input
|
|
25748
|
+
return null
|
|
25749
|
+
}
|
|
25613
25750
|
|
|
25614
|
-
|
|
25615
|
-
const terminatorRules = state.md.block.ruler.getRules('reference');
|
|
25751
|
+
let isContinuation = false;
|
|
25616
25752
|
|
|
25617
|
-
const oldParentType = state.parentType;
|
|
25618
|
-
state.parentType = 'reference';
|
|
25619
|
-
|
|
25620
|
-
for (; nextLine < endLine && !state.isEmpty(nextLine); nextLine++) {
|
|
25621
25753
|
// this would be a code block normally, but after paragraph
|
|
25622
25754
|
// it's considered a lazy continuation regardless of what's there
|
|
25623
|
-
if (state.sCount[nextLine] - state.blkIndent > 3) {
|
|
25755
|
+
if (state.sCount[nextLine] - state.blkIndent > 3) { isContinuation = true; }
|
|
25624
25756
|
|
|
25625
25757
|
// quirk for blockquotes, this line should already be checked by that rule
|
|
25626
|
-
if (state.sCount[nextLine] < 0) {
|
|
25758
|
+
if (state.sCount[nextLine] < 0) { isContinuation = true; }
|
|
25759
|
+
|
|
25760
|
+
if (!isContinuation) {
|
|
25761
|
+
const terminatorRules = state.md.block.ruler.getRules('reference');
|
|
25762
|
+
const oldParentType = state.parentType;
|
|
25763
|
+
state.parentType = 'reference';
|
|
25764
|
+
|
|
25765
|
+
// Some tags can terminate paragraph without empty line.
|
|
25766
|
+
let terminate = false;
|
|
25767
|
+
for (let i = 0, l = terminatorRules.length; i < l; i++) {
|
|
25768
|
+
if (terminatorRules[i](state, nextLine, endLine, true)) {
|
|
25769
|
+
terminate = true;
|
|
25770
|
+
break
|
|
25771
|
+
}
|
|
25772
|
+
}
|
|
25627
25773
|
|
|
25628
|
-
|
|
25629
|
-
|
|
25630
|
-
|
|
25631
|
-
|
|
25632
|
-
terminate = true;
|
|
25633
|
-
break
|
|
25774
|
+
state.parentType = oldParentType;
|
|
25775
|
+
if (terminate) {
|
|
25776
|
+
// terminated by another block
|
|
25777
|
+
return null
|
|
25634
25778
|
}
|
|
25635
25779
|
}
|
|
25636
|
-
|
|
25780
|
+
|
|
25781
|
+
const pos = state.bMarks[nextLine] + state.tShift[nextLine];
|
|
25782
|
+
const max = state.eMarks[nextLine];
|
|
25783
|
+
|
|
25784
|
+
// max + 1 explicitly includes the newline
|
|
25785
|
+
return state.src.slice(pos, max + 1)
|
|
25637
25786
|
}
|
|
25638
25787
|
|
|
25639
|
-
|
|
25788
|
+
let str = state.src.slice(pos, max + 1);
|
|
25789
|
+
|
|
25640
25790
|
max = str.length;
|
|
25641
25791
|
let labelEnd = -1;
|
|
25642
25792
|
|
|
@@ -25648,11 +25798,21 @@ function reference (state, startLine, _endLine, silent) {
|
|
|
25648
25798
|
labelEnd = pos;
|
|
25649
25799
|
break
|
|
25650
25800
|
} else if (ch === 0x0A /* \n */) {
|
|
25651
|
-
|
|
25801
|
+
const lineContent = getNextLine(nextLine);
|
|
25802
|
+
if (lineContent !== null) {
|
|
25803
|
+
str += lineContent;
|
|
25804
|
+
max = str.length;
|
|
25805
|
+
nextLine++;
|
|
25806
|
+
}
|
|
25652
25807
|
} else if (ch === 0x5C /* \ */) {
|
|
25653
25808
|
pos++;
|
|
25654
25809
|
if (pos < max && str.charCodeAt(pos) === 0x0A) {
|
|
25655
|
-
|
|
25810
|
+
const lineContent = getNextLine(nextLine);
|
|
25811
|
+
if (lineContent !== null) {
|
|
25812
|
+
str += lineContent;
|
|
25813
|
+
max = str.length;
|
|
25814
|
+
nextLine++;
|
|
25815
|
+
}
|
|
25656
25816
|
}
|
|
25657
25817
|
}
|
|
25658
25818
|
}
|
|
@@ -25664,7 +25824,12 @@ function reference (state, startLine, _endLine, silent) {
|
|
|
25664
25824
|
for (pos = labelEnd + 2; pos < max; pos++) {
|
|
25665
25825
|
const ch = str.charCodeAt(pos);
|
|
25666
25826
|
if (ch === 0x0A) {
|
|
25667
|
-
|
|
25827
|
+
const lineContent = getNextLine(nextLine);
|
|
25828
|
+
if (lineContent !== null) {
|
|
25829
|
+
str += lineContent;
|
|
25830
|
+
max = str.length;
|
|
25831
|
+
nextLine++;
|
|
25832
|
+
}
|
|
25668
25833
|
} else if (isSpace(ch)) ; else {
|
|
25669
25834
|
break
|
|
25670
25835
|
}
|
|
@@ -25679,11 +25844,10 @@ function reference (state, startLine, _endLine, silent) {
|
|
|
25679
25844
|
if (!state.md.validateLink(href)) { return false }
|
|
25680
25845
|
|
|
25681
25846
|
pos = destRes.pos;
|
|
25682
|
-
lines += destRes.lines;
|
|
25683
25847
|
|
|
25684
25848
|
// save cursor state, we could require to rollback later
|
|
25685
25849
|
const destEndPos = pos;
|
|
25686
|
-
const destEndLineNo =
|
|
25850
|
+
const destEndLineNo = nextLine;
|
|
25687
25851
|
|
|
25688
25852
|
// [label]: destination 'title'
|
|
25689
25853
|
// ^^^ skipping those spaces
|
|
@@ -25691,7 +25855,12 @@ function reference (state, startLine, _endLine, silent) {
|
|
|
25691
25855
|
for (; pos < max; pos++) {
|
|
25692
25856
|
const ch = str.charCodeAt(pos);
|
|
25693
25857
|
if (ch === 0x0A) {
|
|
25694
|
-
|
|
25858
|
+
const lineContent = getNextLine(nextLine);
|
|
25859
|
+
if (lineContent !== null) {
|
|
25860
|
+
str += lineContent;
|
|
25861
|
+
max = str.length;
|
|
25862
|
+
nextLine++;
|
|
25863
|
+
}
|
|
25695
25864
|
} else if (isSpace(ch)) ; else {
|
|
25696
25865
|
break
|
|
25697
25866
|
}
|
|
@@ -25699,17 +25868,25 @@ function reference (state, startLine, _endLine, silent) {
|
|
|
25699
25868
|
|
|
25700
25869
|
// [label]: destination 'title'
|
|
25701
25870
|
// ^^^^^^^ parse this
|
|
25702
|
-
|
|
25871
|
+
let titleRes = state.md.helpers.parseLinkTitle(str, pos, max);
|
|
25872
|
+
while (titleRes.can_continue) {
|
|
25873
|
+
const lineContent = getNextLine(nextLine);
|
|
25874
|
+
if (lineContent === null) break
|
|
25875
|
+
str += lineContent;
|
|
25876
|
+
pos = max;
|
|
25877
|
+
max = str.length;
|
|
25878
|
+
nextLine++;
|
|
25879
|
+
titleRes = state.md.helpers.parseLinkTitle(str, pos, max, titleRes);
|
|
25880
|
+
}
|
|
25703
25881
|
let title;
|
|
25704
25882
|
|
|
25705
25883
|
if (pos < max && start !== pos && titleRes.ok) {
|
|
25706
25884
|
title = titleRes.str;
|
|
25707
25885
|
pos = titleRes.pos;
|
|
25708
|
-
lines += titleRes.lines;
|
|
25709
25886
|
} else {
|
|
25710
25887
|
title = '';
|
|
25711
25888
|
pos = destEndPos;
|
|
25712
|
-
|
|
25889
|
+
nextLine = destEndLineNo;
|
|
25713
25890
|
}
|
|
25714
25891
|
|
|
25715
25892
|
// skip trailing spaces until the rest of the line
|
|
@@ -25725,7 +25902,7 @@ function reference (state, startLine, _endLine, silent) {
|
|
|
25725
25902
|
// but it could still be a valid reference if we roll back
|
|
25726
25903
|
title = '';
|
|
25727
25904
|
pos = destEndPos;
|
|
25728
|
-
|
|
25905
|
+
nextLine = destEndLineNo;
|
|
25729
25906
|
while (pos < max) {
|
|
25730
25907
|
const ch = str.charCodeAt(pos);
|
|
25731
25908
|
if (!isSpace(ch)) { break }
|
|
@@ -25756,9 +25933,7 @@ function reference (state, startLine, _endLine, silent) {
|
|
|
25756
25933
|
state.env.references[label] = { title, href };
|
|
25757
25934
|
}
|
|
25758
25935
|
|
|
25759
|
-
state.
|
|
25760
|
-
|
|
25761
|
-
state.line = startLine + lines + 1;
|
|
25936
|
+
state.line = nextLine;
|
|
25762
25937
|
return true
|
|
25763
25938
|
}
|
|
25764
25939
|
|
|
@@ -25815,8 +25990,8 @@ var block_names = [
|
|
|
25815
25990
|
'option',
|
|
25816
25991
|
'p',
|
|
25817
25992
|
'param',
|
|
25993
|
+
'search',
|
|
25818
25994
|
'section',
|
|
25819
|
-
'source',
|
|
25820
25995
|
'summary',
|
|
25821
25996
|
'table',
|
|
25822
25997
|
'tbody',
|
|
@@ -25845,9 +26020,9 @@ const attribute = '(?:\\s+' + attr_name + '(?:\\s*=\\s*' + attr_value + ')?)';
|
|
|
25845
26020
|
const open_tag = '<[A-Za-z][A-Za-z0-9\\-]*' + attribute + '*\\s*\\/?>';
|
|
25846
26021
|
|
|
25847
26022
|
const close_tag = '<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>';
|
|
25848
|
-
const comment = '
|
|
26023
|
+
const comment = '<!---?>|<!--(?:[^-]|-[^-]|--[^>])*-->';
|
|
25849
26024
|
const processing = '<[?][\\s\\S]*?[?]>';
|
|
25850
|
-
const declaration = '<![A-
|
|
26025
|
+
const declaration = '<![A-Za-z][^>]*>';
|
|
25851
26026
|
const cdata = '<!\\[CDATA\\[[\\s\\S]*?\\]\\]>';
|
|
25852
26027
|
|
|
25853
26028
|
const HTML_TAG_RE = new RegExp('^(?:' + open_tag + '|' + close_tag + '|' + comment +
|
|
@@ -26304,9 +26479,6 @@ StateInline.prototype.push = function (type, tag, nesting) {
|
|
|
26304
26479
|
// - canSplitWord - determine if these markers can be found inside a word
|
|
26305
26480
|
//
|
|
26306
26481
|
StateInline.prototype.scanDelims = function (start, canSplitWord) {
|
|
26307
|
-
let can_open, can_close;
|
|
26308
|
-
let left_flanking = true;
|
|
26309
|
-
let right_flanking = true;
|
|
26310
26482
|
const max = this.posMax;
|
|
26311
26483
|
const marker = this.src.charCodeAt(start);
|
|
26312
26484
|
|
|
@@ -26327,29 +26499,13 @@ StateInline.prototype.scanDelims = function (start, canSplitWord) {
|
|
|
26327
26499
|
const isLastWhiteSpace = isWhiteSpace(lastChar);
|
|
26328
26500
|
const isNextWhiteSpace = isWhiteSpace(nextChar);
|
|
26329
26501
|
|
|
26330
|
-
|
|
26331
|
-
|
|
26332
|
-
|
|
26333
|
-
|
|
26334
|
-
left_flanking = false;
|
|
26335
|
-
}
|
|
26336
|
-
}
|
|
26337
|
-
|
|
26338
|
-
if (isLastWhiteSpace) {
|
|
26339
|
-
right_flanking = false;
|
|
26340
|
-
} else if (isLastPunctChar) {
|
|
26341
|
-
if (!(isNextWhiteSpace || isNextPunctChar)) {
|
|
26342
|
-
right_flanking = false;
|
|
26343
|
-
}
|
|
26344
|
-
}
|
|
26502
|
+
const left_flanking =
|
|
26503
|
+
!isNextWhiteSpace && (!isNextPunctChar || isLastWhiteSpace || isLastPunctChar);
|
|
26504
|
+
const right_flanking =
|
|
26505
|
+
!isLastWhiteSpace && (!isLastPunctChar || isNextWhiteSpace || isNextPunctChar);
|
|
26345
26506
|
|
|
26346
|
-
|
|
26347
|
-
|
|
26348
|
-
can_close = right_flanking && (!left_flanking || isNextPunctChar);
|
|
26349
|
-
} else {
|
|
26350
|
-
can_open = left_flanking;
|
|
26351
|
-
can_close = right_flanking;
|
|
26352
|
-
}
|
|
26507
|
+
const can_open = left_flanking && (canSplitWord || !right_flanking || isLastPunctChar);
|
|
26508
|
+
const can_close = right_flanking && (canSplitWord || !left_flanking || isNextPunctChar);
|
|
26353
26509
|
|
|
26354
26510
|
return { can_open, can_close, length: count }
|
|
26355
26511
|
};
|
|
@@ -26417,7 +26573,7 @@ function text (state, silent) {
|
|
|
26417
26573
|
// Alternative implementation, for memory.
|
|
26418
26574
|
//
|
|
26419
26575
|
// It costs 10% of performance, but allows extend terminators list, if place it
|
|
26420
|
-
// to `
|
|
26576
|
+
// to `ParserInline` property. Probably, will switch to it sometime, such
|
|
26421
26577
|
// flexibility required.
|
|
26422
26578
|
|
|
26423
26579
|
/*
|
|
@@ -29297,12 +29453,12 @@ function normalizeLinkText (url) {
|
|
|
29297
29453
|
* MarkdownIt provides named presets as a convenience to quickly
|
|
29298
29454
|
* enable/disable active syntax rules and options for common use cases.
|
|
29299
29455
|
*
|
|
29300
|
-
* - ["commonmark"](https://github.com/markdown-it/markdown-it/blob/master/lib/presets/commonmark.
|
|
29456
|
+
* - ["commonmark"](https://github.com/markdown-it/markdown-it/blob/master/lib/presets/commonmark.mjs) -
|
|
29301
29457
|
* configures parser to strict [CommonMark](http://commonmark.org/) mode.
|
|
29302
|
-
* - [default](https://github.com/markdown-it/markdown-it/blob/master/lib/presets/default.
|
|
29458
|
+
* - [default](https://github.com/markdown-it/markdown-it/blob/master/lib/presets/default.mjs) -
|
|
29303
29459
|
* similar to GFM, used when no preset name given. Enables all available rules,
|
|
29304
29460
|
* but still without html, typographer & autolinker.
|
|
29305
|
-
* - ["zero"](https://github.com/markdown-it/markdown-it/blob/master/lib/presets/zero.
|
|
29461
|
+
* - ["zero"](https://github.com/markdown-it/markdown-it/blob/master/lib/presets/zero.mjs) -
|
|
29306
29462
|
* all rules disabled. Useful to quickly setup your config via `.enable()`.
|
|
29307
29463
|
* For example, when you need only `bold` and `italic` markup and nothing else.
|
|
29308
29464
|
*
|
|
@@ -29319,7 +29475,7 @@ function normalizeLinkText (url) {
|
|
|
29319
29475
|
* Can be useful for external highlighters.
|
|
29320
29476
|
* - __linkify__ - `false`. Set `true` to autoconvert URL-like text to links.
|
|
29321
29477
|
* - __typographer__ - `false`. Set `true` to enable [some language-neutral
|
|
29322
|
-
* replacement](https://github.com/markdown-it/markdown-it/blob/master/lib/rules_core/replacements.
|
|
29478
|
+
* replacement](https://github.com/markdown-it/markdown-it/blob/master/lib/rules_core/replacements.mjs) +
|
|
29323
29479
|
* quotes beautification (smartquotes).
|
|
29324
29480
|
* - __quotes__ - `“”‘’`, String or Array. Double + single quotes replacement
|
|
29325
29481
|
* pairs, when typographer enabled and smartquotes on. For example, you can
|
|
@@ -29445,7 +29601,7 @@ function MarkdownIt (presetName, options) {
|
|
|
29445
29601
|
* md.renderer.rules['my_token'] = myToken
|
|
29446
29602
|
* ```
|
|
29447
29603
|
*
|
|
29448
|
-
* See [[Renderer]] docs and [source code](https://github.com/markdown-it/markdown-it/blob/master/lib/renderer.
|
|
29604
|
+
* See [[Renderer]] docs and [source code](https://github.com/markdown-it/markdown-it/blob/master/lib/renderer.mjs).
|
|
29449
29605
|
**/
|
|
29450
29606
|
this.renderer = new Renderer();
|
|
29451
29607
|
|
|
@@ -29453,7 +29609,7 @@ function MarkdownIt (presetName, options) {
|
|
|
29453
29609
|
* MarkdownIt#linkify -> LinkifyIt
|
|
29454
29610
|
*
|
|
29455
29611
|
* [linkify-it](https://github.com/markdown-it/linkify-it) instance.
|
|
29456
|
-
* Used by [linkify](https://github.com/markdown-it/markdown-it/blob/master/lib/rules_core/linkify.
|
|
29612
|
+
* Used by [linkify](https://github.com/markdown-it/markdown-it/blob/master/lib/rules_core/linkify.mjs)
|
|
29457
29613
|
* rule.
|
|
29458
29614
|
**/
|
|
29459
29615
|
this.linkify = new LinkifyIt();
|
|
@@ -29756,10 +29912,10 @@ class KolSpanWc {
|
|
|
29756
29912
|
render() {
|
|
29757
29913
|
var _a, _b, _c, _d, _e;
|
|
29758
29914
|
const hideExpertSlot = !showExpertSlot(this.state._label);
|
|
29759
|
-
return (hAsync(Host, { key: '
|
|
29915
|
+
return (hAsync(Host, { key: '17cb9b501a4ced92791b8633123c62c89179a7de', class: {
|
|
29760
29916
|
'kol-span-wc': true,
|
|
29761
29917
|
'hide-label': !!this.state._hideLabel,
|
|
29762
|
-
} }, this.state._icons.top && (hAsync(
|
|
29918
|
+
} }, this.state._icons.top && (hAsync(KolIconTag, { class: "icon top", style: this.state._icons.top.style, _label: (_a = this.state._icons.top.label) !== null && _a !== void 0 ? _a : '', _icons: this.state._icons.top.icon })), hAsync("span", { key: '27cb02736fcdfbaa0cd634e3cb31d72be6236132' }, this.state._icons.left && (hAsync(KolIconTag, { class: "icon left", style: this.state._icons.left.style, _label: (_b = this.state._icons.left.label) !== null && _b !== void 0 ? _b : '', _icons: this.state._icons.left.icon })), !this.state._hideLabel && hideExpertSlot ? (this.state._allowMarkdown && typeof this.state._label === 'string' && this.state._label.length > 0 ? (hAsync("span", { class: "span-label md", innerHTML: md(this.state._label) })) : (hAsync("span", { class: "span-label" }, this.state._accessKey && this.state._label.length ? (hAsync(InternalUnderlinedAccessKey, { label: this.state._label, accessKey: this.state._accessKey })) : ((_c = this.state._label) !== null && _c !== void 0 ? _c : '')))) : (''), hAsync("span", { key: 'dc41753567cbb94ba0e4dfcaf9f05e56520a36d1', "aria-hidden": hideExpertSlot ? 'true' : undefined, class: "span-label", hidden: hideExpertSlot }, hAsync("slot", { key: '40f84dbfec15357ebda4ffb43cfff3ba488b5947', name: "expert" })), this.state._accessKey && (hAsync("span", { class: "access-key-hint", "aria-hidden": "true" }, this.state._accessKey)), this.state._icons.right && (hAsync(KolIconTag, { class: "icon right", style: this.state._icons.right.style, _label: (_d = this.state._icons.right.label) !== null && _d !== void 0 ? _d : '', _icons: this.state._icons.right.icon }))), this.state._icons.bottom && (hAsync(KolIconTag, { class: "icon bottom", style: this.state._icons.bottom.style, _label: (_e = this.state._icons.bottom.label) !== null && _e !== void 0 ? _e : '', _icons: this.state._icons.bottom.icon }))));
|
|
29763
29919
|
}
|
|
29764
29920
|
validateAccessKey(value) {
|
|
29765
29921
|
validateAccessKey(this, value);
|
|
@@ -29813,7 +29969,7 @@ class KolSpanWc {
|
|
|
29813
29969
|
}; }
|
|
29814
29970
|
}
|
|
29815
29971
|
|
|
29816
|
-
const defaultStyleCss$8 = "@layer kol-global {\n .sc-kol-spin-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-spin-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-spin-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .spin.cycle {\n width:
|
|
29972
|
+
const defaultStyleCss$8 = "@layer kol-global {\n .sc-kol-spin-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-spin-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-spin-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .spin.cycle {\n width: calc(48rem / var(--kolibri-root-font-size, 16));\n height: calc(48rem / var(--kolibri-root-font-size, 16));\n }\n .spin.cycle > .loader {\n display: block;\n width: 100%;\n height: 100%;\n border-radius: 50%;\n position: relative;\n animation: 2s linear infinite rotate;\n }\n .spin.cycle > .loader::before {\n content: \"\";\n box-sizing: border-box;\n position: absolute;\n inset: 0px;\n border-radius: 50%;\n border: 5px solid #333;\n animation: 3s linear infinite prixClipFix;\n }\n @keyframes rotate {\n 100% {\n transform: rotate(360deg);\n }\n }\n @keyframes prixClipFix {\n 0% {\n border-color: #fff;\n clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);\n }\n 25% {\n border-color: #666;\n clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);\n }\n 50% {\n border-color: #fc0;\n clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);\n }\n 75% {\n border-color: red;\n clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);\n }\n 100% {\n border-color: #000;\n clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);\n }\n } \n @media (prefers-reduced-motion) {\n .spin.cycle > .loader {\n animation-duration: 4s;\n }\n .spin.cycle > .loader::before {\n animation-duration: 6s;\n }\n }\n}\n@layer kol-component {\n .spin.dot {\n height: calc(16rem / var(--kolibri-root-font-size, 16));\n width: calc(48rem / var(--kolibri-root-font-size, 16));\n }\n .spin.dot > span {\n animation-timing-function: cubic-bezier(0, 1, 1, 0);\n border-radius: 50%;\n border: calc(0.16rem / var(--kolibri-root-font-size, 16)) solid #fff;\n height: calc(12.8rem / var(--kolibri-root-font-size, 16));\n position: absolute;\n top: calc(0.16rem / var(--kolibri-root-font-size, 16));\n width: calc(12.8rem / var(--kolibri-root-font-size, 16));\n }\n .spin.dot > span:first-child {\n background-color: #fc0;\n z-index: 0;\n animation: 1s infinite spin1;\n left: calc(0.16rem / var(--kolibri-root-font-size, 16));\n }\n .spin.dot > span:nth-child(2) {\n background-color: red;\n z-index: 1;\n animation: 1s infinite spin2;\n left: calc(0.16rem / var(--kolibri-root-font-size, 16));\n }\n .spin.dot > span:nth-child(3) {\n background-color: #000;\n z-index: 1;\n animation: 1s infinite spin2;\n left: calc(17.6rem / var(--kolibri-root-font-size, 16));\n }\n .spin.dot > span:nth-child(4) {\n background-color: #666;\n z-index: 0;\n animation: 1s infinite spin3;\n left: calc(33.6rem / var(--kolibri-root-font-size, 16));\n }\n @keyframes spin1 {\n 0% {\n transform: scale(0);\n }\n 100% {\n transform: scale(1);\n }\n }\n @keyframes spin2 {\n 0% {\n transform: translate(0, 0);\n }\n 100% {\n transform: translate(calc(16rem / var(--kolibri-root-font-size, 16)), 0);\n }\n }\n @keyframes spin3 {\n 0% {\n transform: scale(1);\n }\n 100% {\n transform: scale(0);\n }\n } \n @media (prefers-reduced-motion) {\n .spin.dot > span:first-child,\n .spin.dot > span:nth-child(2),\n .spin.dot > span:nth-child(3),\n .spin.dot > span:nth-child(4) {\n animation-duration: 2s;\n }\n }\n}\n@layer kol-component {\n .spin {\n display: block;\n padding: calc(2rem / var(--kolibri-root-font-size, 16));\n position: relative;\n }\n}";
|
|
29817
29973
|
var KolSpinDefaultStyle0 = defaultStyleCss$8;
|
|
29818
29974
|
|
|
29819
29975
|
function renderSpin(variant) {
|
|
@@ -29837,7 +29993,7 @@ class KolSpin {
|
|
|
29837
29993
|
};
|
|
29838
29994
|
}
|
|
29839
29995
|
render() {
|
|
29840
|
-
return (hAsync(Host, { key: '
|
|
29996
|
+
return (hAsync(Host, { key: 'ec37d2bdf4b9945800c447ec16e6ea33a6ddb37f', class: "kol-spin" }, this.state._show ? (hAsync("span", { "aria-busy": "true", "aria-label": translate('kol-action-running'), "aria-live": "polite", class: {
|
|
29841
29997
|
spin: true,
|
|
29842
29998
|
[this.state._variant]: true,
|
|
29843
29999
|
}, role: "alert" }, renderSpin(this.state._variant))) : (this.showToggled && hAsync("span", { "aria-label": translate('kol-action-done'), "aria-busy": "false", "aria-live": "polite", role: "alert" }))));
|
|
@@ -29874,7 +30030,7 @@ class KolSpin {
|
|
|
29874
30030
|
}; }
|
|
29875
30031
|
}
|
|
29876
30032
|
|
|
29877
|
-
const defaultStyleCss$7 = "@layer kol-global {\n .sc-kol-split-button-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-split-button-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-split-button-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-split-button-default-h {\n display: flex;\n position: relative;\n }\n .main-button {\n flex-grow: 1;\n text-align: left;\n }\n
|
|
30033
|
+
const defaultStyleCss$7 = "@layer kol-global {\n .sc-kol-split-button-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-split-button-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-split-button-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .sc-kol-split-button-default-h {\n display: flex;\n position: relative;\n }\n .main-button {\n flex-grow: 1;\n text-align: left;\n }\n \n .popover {\n height: 0;\n left: 0;\n min-width: 100%;\n overflow: hidden;\n position: absolute;\n top: 100%;\n transition: height 0.3s ease-in-out;\n }\n .popover-content {\n inset: 0 0 auto 0;\n min-width: 100%;\n position: absolute;\n }\n}";
|
|
29878
30034
|
var KolSplitButtonDefaultStyle0 = defaultStyleCss$7;
|
|
29879
30035
|
|
|
29880
30036
|
class KolSplitButton {
|
|
@@ -29942,12 +30098,12 @@ class KolSplitButton {
|
|
|
29942
30098
|
};
|
|
29943
30099
|
}
|
|
29944
30100
|
render() {
|
|
29945
|
-
return (hAsync(Host, { key: '
|
|
30101
|
+
return (hAsync(Host, { key: '7898654f49f93bc50a417f6835265b569c3a73b2', class: "kol-split-button" }, hAsync(KolButtonWcTag, { key: 'a9e18768bb8059fb837e5eeabca7c01289f06709', class: {
|
|
29946
30102
|
'main-button': true,
|
|
29947
30103
|
button: true,
|
|
29948
30104
|
[this._variant]: this._variant !== 'custom',
|
|
29949
30105
|
[this._customClass]: this._variant === 'custom' && typeof this._customClass === 'string' && this._customClass.length > 0,
|
|
29950
|
-
}, _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", { key: '
|
|
30106
|
+
}, _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", { key: 'c303390829032681f7755a3e67b88d0cae9921fa', class: "horizontal-line" }), hAsync(KolButtonWcTag, { key: 'c90f62696b693a3d756bb0fd8e7c1a8eb6baf7d9', 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", { key: '36eb49b4e885ca7518a8a50392d0b5fcbad47839', class: "popover", ref: this.catchDropdownElements }, hAsync("div", { key: '5d4cfe7fc1ed75875834db0e71af50e1788fc907', class: "popover-content" }, hAsync("slot", { key: 'fc467f4eb37e58cb31c4bd3718efeadc0fbf8c08' })))));
|
|
29951
30107
|
}
|
|
29952
30108
|
static get style() { return {
|
|
29953
30109
|
default: KolSplitButtonDefaultStyle0
|
|
@@ -29993,7 +30149,7 @@ class KolSymbol {
|
|
|
29993
30149
|
};
|
|
29994
30150
|
}
|
|
29995
30151
|
render() {
|
|
29996
|
-
return (hAsync(Host, { key: '
|
|
30152
|
+
return (hAsync(Host, { key: 'f873ad7a782cffef4063cf9f988fd14f30670bc4', class: "kol-symbol" }, hAsync("span", { key: '9fddfd0eb165cbcdb75cc405206e7ea6a7df43a3', "aria-label": this.state._label, role: "term" }, this.state._symbol)));
|
|
29997
30153
|
}
|
|
29998
30154
|
validateLabel(value) {
|
|
29999
30155
|
validateLabel(this, value, {
|
|
@@ -30155,7 +30311,7 @@ class KolTable {
|
|
|
30155
30311
|
}, "aria-sort": sortDirection, "data-sort": `sort-${shortSortDirection}` }, hAsync("div", { class: "w-full flex gap-1 items-center" }, hAsync("div", { class: {
|
|
30156
30312
|
'w-full': true,
|
|
30157
30313
|
[headerCell.textAlign]: typeof headerCell.textAlign === 'string' && headerCell.textAlign.length > 0,
|
|
30158
|
-
}, style: { textAlign: headerCell.textAlign } }, headerCell.label), !this.disableSort && (typeof headerCell.compareFn === 'function' || typeof headerCell.sort === 'function') && (hAsync(
|
|
30314
|
+
}, style: { textAlign: headerCell.textAlign } }, headerCell.label), !this.disableSort && (typeof headerCell.compareFn === 'function' || typeof headerCell.sort === 'function') && (hAsync(KolButtonTag, { exportparts: "icon", _icons: sortButtonIcon, _hideLabel: true, _label: translate('kol-change-order', { placeholders: { colLabel: headerCell.label } }), _on: {
|
|
30159
30315
|
onClick: () => this.changeCellSort(headerCell),
|
|
30160
30316
|
}, _variant: "ghost" })))));
|
|
30161
30317
|
}
|
|
@@ -30589,7 +30745,7 @@ class KolTable {
|
|
|
30589
30745
|
? this.state._data.length.toString()
|
|
30590
30746
|
: '0',
|
|
30591
30747
|
},
|
|
30592
|
-
})), hAsync("div", null, hAsync(
|
|
30748
|
+
})), hAsync("div", null, hAsync(KolPaginationTag, { _boundaryCount: this.state._pagination._boundaryCount, _customClass: this.state._pagination._customClass, _on: this.handlePagination, _page: this.state._pagination._page, _pageSize: this.state._pagination._pageSize, _pageSizeOptions: this.state._pagination._pageSizeOptions || PAGINATION_OPTIONS, _siblingCount: this.state._pagination._siblingCount, _tooltipAlign: "bottom", _max: this.state._pagination._max || this.state._pagination._max || this.state._data.length, _label: translate('kol-table-pagination-label', { placeholders: { label: this.state._label } }) }))));
|
|
30593
30749
|
}
|
|
30594
30750
|
render() {
|
|
30595
30751
|
var _a, _b;
|
|
@@ -30597,11 +30753,9 @@ class KolTable {
|
|
|
30597
30753
|
const dataField = this.createDataField(displayedData, this.state._headers);
|
|
30598
30754
|
const paginationTop = this._paginationPosition === 'top' || this._paginationPosition === 'both' ? this.renderPagination() : null;
|
|
30599
30755
|
const paginationBottom = this._paginationPosition === 'bottom' || this._paginationPosition === 'both' ? this.renderPagination() : null;
|
|
30600
|
-
return (hAsync(Host, { key: '
|
|
30601
|
-
event.preventDefault();
|
|
30602
|
-
} }, hAsync("table", { key: '600355b22b947a5b262bb94b8ba2ec4a8d8ffe15', style: {
|
|
30756
|
+
return (hAsync(Host, { key: '0b8cd06996a98fcbe8d3296a28d06082d1074328', class: "kol-table" }, this.pageEndSlice > 0 && this.showPagination && paginationTop, hAsync("div", { key: 'f8fabd56df12fd92af06df94a5e6528785b79403', ref: (element) => (this.tableDivElement = element), class: "table", tabindex: this.tableDivElementHasScrollbar ? '-1' : undefined }, hAsync("table", { key: '7289a7ac2e0bee41c13e7de9c9a02686928b0b5a', style: {
|
|
30603
30757
|
minWidth: this.state._minWidth,
|
|
30604
|
-
} }, hAsync("div", { key: '
|
|
30758
|
+
} }, hAsync("div", { key: 'f84baebd6200ea5f72daa75fa3cd354530aa6dfe', class: "focus-element", tabindex: this.tableDivElementHasScrollbar ? '0' : undefined, "aria-describedby": "caption" }, "\u00A0"), hAsync("caption", { key: 'd3c1d14609baea31541ed3c683c8c99a0febd8d9', id: "caption" }, this.state._label), Array.isArray(this.state._headers.horizontal) && (hAsync("thead", null, this.state._headers.horizontal.map((cols, rowIndex) => (hAsync("tr", { key: `thead-${rowIndex}` }, cols.map((col, colIndex) => {
|
|
30605
30759
|
if (col.asTd === true) {
|
|
30606
30760
|
return (hAsync("td", { key: `thead-${rowIndex}-${colIndex}-${col.label}`, class: {
|
|
30607
30761
|
[col.textAlign]: typeof col.textAlign === 'string' && col.textAlign.length > 0,
|
|
@@ -30650,11 +30804,11 @@ class KolTable {
|
|
|
30650
30804
|
}
|
|
30651
30805
|
return (hAsync("th", { class: col.textAlign ? `align-${col.textAlign}` : undefined, key: `thead-${rowIndex}-${colIndex}-${headerCell.label}`, scope: typeof headerCell.colSpan === 'number' && headerCell.colSpan > 1 ? 'colgroup' : 'col', colSpan: headerCell.colSpan, rowSpan: headerCell.rowSpan, style: {
|
|
30652
30806
|
width: col.width,
|
|
30653
|
-
}, "aria-sort": sortDirection, "data-sort": `sort-${shortSortDirection}` }, !this.disableSort && (typeof headerCell.compareFn === 'function' || typeof headerCell.sort === 'function') ? (hAsync(
|
|
30807
|
+
}, "aria-sort": sortDirection, "data-sort": `sort-${shortSortDirection}` }, !this.disableSort && (typeof headerCell.compareFn === 'function' || typeof headerCell.sort === 'function') ? (hAsync(KolButtonWcTag, { class: "table-sort-button", exportparts: "icon", _icons: { right: sortButtonIcon }, _label: col.label, _on: {
|
|
30654
30808
|
onClick: () => this.changeCellSort(headerCell),
|
|
30655
30809
|
} })) : (col.label)));
|
|
30656
30810
|
}
|
|
30657
|
-
})))))), hAsync("tbody", { key: '
|
|
30811
|
+
})))))), hAsync("tbody", { key: '9572064fca9f8595677ae4053a930b5222a46f75' }, dataField.map(this.renderTableRow)), this.state._dataFoot.length > 0 ? this.renderFoot() : '')), this.pageEndSlice > 0 && this.showPagination && paginationBottom));
|
|
30658
30812
|
}
|
|
30659
30813
|
static get watchers() { return {
|
|
30660
30814
|
"_allowMultiSort": ["validateAllowMultiSort"],
|
|
@@ -30837,16 +30991,16 @@ class KolTabs {
|
|
|
30837
30991
|
};
|
|
30838
30992
|
}
|
|
30839
30993
|
renderButtonGroup() {
|
|
30840
|
-
return (hAsync(
|
|
30994
|
+
return (hAsync(KolButtonGroupWcTag, { class: "tabs-button-group", role: "tablist", "aria-label": this.state._label, onKeyDown: this.onKeyDown }, this.state._tabs.map((button, index) => (hAsync(KolButtonWcTag, { _disabled: button._disabled, _icons: button._icons, _hideLabel: button._hideLabel, _label: button._label, _on: this.callbacks, _tabIndex: this.state._selected === index ? 0 : -1, _tooltipAlign: button._tooltipAlign, _variant: this.state._selected === index ? 'custom' : undefined, _customClass: this.state._selected === index ? 'selected' : undefined, _ariaControls: `tabpanel-${index}`, _ariaSelected: this.state._selected === index, _id: `${this.state._label.replace(/\s/g, '-')}-tab-${index}`, _role: "tab", _value: index }))), this.showCreateTab && (hAsync(KolButtonWcTag, { class: "create-button", _label: this.onCreateLabel, _on: {
|
|
30841
30995
|
onClick: this.onCreate,
|
|
30842
30996
|
} }))));
|
|
30843
30997
|
}
|
|
30844
30998
|
render() {
|
|
30845
|
-
return (hAsync(Host, { key: '
|
|
30999
|
+
return (hAsync(Host, { key: '2fad7d033c45c57688d2278ff26f22a2e77f6742', class: "kol-tabs" }, hAsync("div", { key: '436e7e53f7c7aef6c40312d56f5c3d9546ddbf0e', ref: (el) => {
|
|
30846
31000
|
this.tabPanelsElement = el;
|
|
30847
31001
|
}, class: {
|
|
30848
31002
|
[`tabs-align-${this.state._align}`]: true,
|
|
30849
|
-
} }, this.renderButtonGroup(), hAsync("div", { key: '
|
|
31003
|
+
} }, this.renderButtonGroup(), hAsync("div", { key: '6ce5162fadaeec1a86c0d1c12274bffe17bc2371', class: "tabs-content", ref: this.catchTabPanelHost }))));
|
|
30850
31004
|
}
|
|
30851
31005
|
validateAlign(value) {
|
|
30852
31006
|
validateAlign(this, value);
|
|
@@ -31036,7 +31190,7 @@ class TextareaController extends InputController {
|
|
|
31036
31190
|
}
|
|
31037
31191
|
}
|
|
31038
31192
|
|
|
31039
|
-
const defaultStyleCss$4 = "@layer kol-global {\n .sc-kol-textarea-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-textarea-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-textarea-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-textarea-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size:
|
|
31193
|
+
const defaultStyleCss$4 = "@layer kol-global {\n .sc-kol-textarea-default-h {\n \n --a11y-min-size: 44px;\n \n background-color: white;\n color: black;\n \n font-family: Verdana;\n }\n * {\n \n hyphens: auto;\n \n letter-spacing: inherit;\n \n word-break: break-word;\n \n word-spacing: inherit;\n }\n \n \n \n \n \n [role=button],\n button:not([role=link]),\n .kol-input .input {\n min-height: var(--a11y-min-size);\n min-width: var(--a11y-min-size);\n }\n \n a,\n button,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n option,\n select,\n textarea {\n \n font-family: inherit;\n \n font-size: inherit;\n }\n}\n\n/*!@.visually-hidden*/.visually-hidden.sc-kol-textarea-default {\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n height: 1px;\n overflow: hidden;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n\n@layer kol-global {\n \n :is(a, button) {\n background-color: transparent;\n border: none;\n margin: 0;\n padding: 0;\n width: 100%; \n }\n \n [hidden] {\n display: none !important;\n }\n}\n@layer kol-global {\n .sc-kol-textarea-default-h {\n \n max-width: 100%;\n }\n * {\n \n box-sizing: border-box;\n }\n \n .kol-span-wc {\n display: grid;\n place-items: center;\n }\n \n .kol-span-wc > span {\n display: flex;\n place-items: center;\n }\n a,\n button {\n cursor: pointer;\n }\n .hidden {\n display: none;\n visibility: hidden;\n }\n \n .hide-label > .kol-span-wc > span > span {\n display: none;\n }\n \n button:disabled {\n color: unset;\n }\n .disabled label,\n .disabled:focus-within label,\n [aria-disabled=true],\n [aria-disabled=true]:focus,\n [disabled],\n [disabled]:focus {\n cursor: not-allowed !important;\n opacity: 0.5 !important;\n outline: none !important;\n }\n [aria-disabled=true]:focus .kol-span-wc,\n [disabled]:focus .kol-span-wc {\n outline: none !important;\n }\n}\n@layer kol-component {\n .required label > span::after,\n .required legend > span::after {\n content: \"*\";\n }\n}\n@layer kol-component {\n .sc-kol-textarea-default-h {\n display: block;\n }\n}\n@layer kol-component {\n input,\n textarea {\n cursor: text;\n }\n input[type=checkbox],\n input[type=color],\n input[type=file],\n input[type=radio],\n input[type=range],\n label,\n option,\n select {\n cursor: pointer;\n }\n \n \n \n input[type=color],\n input[type=date],\n input[type=datetime-local],\n input[type=email],\n input[type=file],\n input[type=month],\n input[type=number],\n input[type=password],\n input[type=search],\n input[type=tel],\n input[type=text],\n input[type=time],\n input[type=url],\n input[type=week],\n select,\n select[multiple] option,\n textarea {\n font-size: calc(16rem / var(--kolibri-root-font-size, 16));\n width: 100%;\n }\n \n input[type=file] {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 10) 0.5em;\n }\n \n select[multiple] option {\n padding: calc((var(--a11y-min-size) - (16rem / var(--kolibri-root-font-size, 16))) / 2) 0.5em;\n }\n}\n@layer kol-component {\n .kol-input {\n display: grid;\n }\n .kol-input .input-slot {\n flex-grow: 1;\n }\n input:not([type=checkbox], [type=radio]),\n select:not([multiple], [size]) {\n height: 2.75em;\n }\n input:focus,\n option:focus,\n select:focus,\n textarea:focus {\n outline: 0;\n }\n .input {\n display: flex;\n align-items: center;\n }\n .input > .kol-icon {\n display: grid;\n height: var(--a11y-min-size);\n place-items: center;\n }\n .kol-input.required .input-tooltip .span-label::after {\n content: \"*\";\n }\n}\n@layer kol-component {}";
|
|
31040
31194
|
var KolTextareaDefaultStyle0 = defaultStyleCss$4;
|
|
31041
31195
|
|
|
31042
31196
|
const increaseTextareaHeight = (el) => {
|
|
@@ -31056,7 +31210,7 @@ class KolTextarea {
|
|
|
31056
31210
|
render() {
|
|
31057
31211
|
const { ariaDescribedBy } = getRenderStates(this.state);
|
|
31058
31212
|
const hasExpertSlot = showExpertSlot(this.state._label);
|
|
31059
|
-
return (hAsync(Host, { key: '
|
|
31213
|
+
return (hAsync(Host, { key: '636cb3cc4cefb06fd6c60041ac2d623eb758762e', class: { 'kol-textarea': true, 'has-value': this.state._hasValue } }, hAsync(KolInputTag, { key: 'bb0c9dd6917b62d52838672951b1088f078e118f', class: { textarea: true, 'hide-label': !!this.state._hideLabel, 'has-counter': !!this.state._hasCounter }, _accessKey: this.state._accessKey, _alert: this.state._alert, _currentLength: this.state._currentLength, _disabled: this.state._disabled, _hideError: this.state._hideError, _hasCounter: this.state._hasCounter, _hideLabel: this.state._hideLabel, _hint: this.state._hint, _id: this.state._id, _label: this.state._label, _maxLength: this.state._maxLength, _msg: this.state._msg, _readOnly: this.state._readOnly, _required: this.state._required, _tooltipAlign: this._tooltipAlign, _touched: this.state._touched, onClick: () => { var _a; return (_a = this.ref) === null || _a === void 0 ? void 0 : _a.focus(); }, role: `presentation` }, hAsync("span", { key: '62b64cf042de7c57570353cd443cc4e843df8f83', slot: "label" }, hasExpertSlot ? (hAsync("slot", { name: "expert" })) : typeof this.state._accessKey === 'string' ? (hAsync(Fragment, null, hAsync(InternalUnderlinedAccessKey, { accessKey: this.state._accessKey, label: this.state._label }), ' ', hAsync("span", { class: "access-key-hint", "aria-hidden": "true" }, this.state._accessKey))) : (hAsync("span", null, this.state._label))), hAsync("div", { key: '5b4d535681a13845342183b030826e344a4457ec', slot: "input" }, hAsync("textarea", Object.assign({ key: 'eb97767e995b143b3394954b716f955c9353685d', ref: this.catchRef, title: "", accessKey: this.state._accessKey, "aria-describedby": ariaDescribedBy.length > 0 ? ariaDescribedBy.join(' ') : undefined, "aria-label": this.state._hideLabel && typeof this.state._label === 'string' ? this.state._label : undefined, autoCapitalize: "off", autoCorrect: "off", disabled: this.state._disabled, id: this.state._id, maxlength: this.state._maxLength, name: this.state._name, readOnly: this.state._readOnly, required: this.state._required, rows: this.state._rows, placeholder: this.state._placeholder, spellcheck: "false" }, this.controller.onFacade, { onInput: this.onInput, style: {
|
|
31060
31214
|
resize: this.state._resize,
|
|
31061
31215
|
}, value: this.state._value }))))));
|
|
31062
31216
|
}
|
|
@@ -31066,12 +31220,13 @@ class KolTextarea {
|
|
|
31066
31220
|
this.ref = ref;
|
|
31067
31221
|
propagateFocus(this.host, this.ref);
|
|
31068
31222
|
};
|
|
31069
|
-
this.onInput = () => {
|
|
31223
|
+
this.onInput = (event) => {
|
|
31070
31224
|
if (this.ref instanceof HTMLTextAreaElement) {
|
|
31071
31225
|
setState(this, '_currentLength', this.ref.value.length);
|
|
31072
31226
|
if (this.state._adjustHeight) {
|
|
31073
31227
|
this._rows = increaseTextareaHeight(this.ref);
|
|
31074
31228
|
}
|
|
31229
|
+
this.controller.onFacade.onInput(event);
|
|
31075
31230
|
}
|
|
31076
31231
|
};
|
|
31077
31232
|
this._accessKey = undefined;
|
|
@@ -31086,6 +31241,7 @@ class KolTextarea {
|
|
|
31086
31241
|
this._id = undefined;
|
|
31087
31242
|
this._label = undefined;
|
|
31088
31243
|
this._maxLength = undefined;
|
|
31244
|
+
this._msg = undefined;
|
|
31089
31245
|
this._name = undefined;
|
|
31090
31246
|
this._on = undefined;
|
|
31091
31247
|
this._placeholder = undefined;
|
|
@@ -31145,6 +31301,9 @@ class KolTextarea {
|
|
|
31145
31301
|
validateMaxLength(value) {
|
|
31146
31302
|
this.controller.validateMaxLength(value);
|
|
31147
31303
|
}
|
|
31304
|
+
validateMsg(value) {
|
|
31305
|
+
this.controller.validateMsg(value);
|
|
31306
|
+
}
|
|
31148
31307
|
validateName(value) {
|
|
31149
31308
|
this.controller.validateName(value);
|
|
31150
31309
|
}
|
|
@@ -31207,6 +31366,7 @@ class KolTextarea {
|
|
|
31207
31366
|
"_id": ["validateId"],
|
|
31208
31367
|
"_label": ["validateLabel"],
|
|
31209
31368
|
"_maxLength": ["validateMaxLength"],
|
|
31369
|
+
"_msg": ["validateMsg"],
|
|
31210
31370
|
"_name": ["validateName"],
|
|
31211
31371
|
"_on": ["validateOn"],
|
|
31212
31372
|
"_placeholder": ["validatePlaceholder"],
|
|
@@ -31238,6 +31398,7 @@ class KolTextarea {
|
|
|
31238
31398
|
"_id": [1],
|
|
31239
31399
|
"_label": [1],
|
|
31240
31400
|
"_maxLength": [2, "_max-length"],
|
|
31401
|
+
"_msg": [16],
|
|
31241
31402
|
"_name": [1],
|
|
31242
31403
|
"_on": [16],
|
|
31243
31404
|
"_placeholder": [1],
|
|
@@ -31266,7 +31427,7 @@ const InternalToast = ({ toastState, onClose, key }) => {
|
|
|
31266
31427
|
}
|
|
31267
31428
|
};
|
|
31268
31429
|
return (hAsync("div", { class: `toast ${toastState.status}`, key: key },
|
|
31269
|
-
hAsync(
|
|
31430
|
+
hAsync(KolAlertTag, { class: "alert", _alert: true, _label: toastState.toast.label, _level: 0, _hasCloser: true, _type: toastState.toast.type, _variant: toastState.toast.alertVariant || 'card', _on: { onClose } },
|
|
31270
31431
|
hAsync("div", { ref: handleRef }, typeof toastState.toast.description === 'string' ? toastState.toast.description : null))));
|
|
31271
31432
|
};
|
|
31272
31433
|
|
|
@@ -31314,7 +31475,7 @@ class KolToastContainer {
|
|
|
31314
31475
|
}, TRANSITION_TIMEOUT);
|
|
31315
31476
|
}
|
|
31316
31477
|
render() {
|
|
31317
|
-
return (hAsync(Host, { key: '
|
|
31478
|
+
return (hAsync(Host, { key: 'f07fd5109ed0d409e24587c68ff6b6ac22029c77', class: "kol-toast-container" }, this.state._toastStates.length > 1 && (hAsync(KolButtonTag, { _label: translate('kol-toast-close-all'), class: "close-all", _on: {
|
|
31318
31479
|
onClick: () => {
|
|
31319
31480
|
void this.closeAll();
|
|
31320
31481
|
},
|
|
@@ -31468,7 +31629,7 @@ class KolTooltip {
|
|
|
31468
31629
|
this.showOrHideTooltip();
|
|
31469
31630
|
}
|
|
31470
31631
|
render() {
|
|
31471
|
-
return (hAsync(Host, { key: '
|
|
31632
|
+
return (hAsync(Host, { key: 'd66390aa1b5fcee783e926c2afcd99d123ca6c3d', class: "kol-tooltip-wc" }, this.state._label !== '' && (hAsync("div", { class: "tooltip-floating", ref: this.catchTooltipElement }, hAsync("div", { class: "tooltip-area tooltip-arrow", ref: this.catchArrowElement }), hAsync(KolSpanWcTag, { class: "tooltip-area tooltip-content", id: this.state._id, _accessKey: this._accessKey, _label: this.state._label })))));
|
|
31472
31633
|
}
|
|
31473
31634
|
validateAccessKey(value) {
|
|
31474
31635
|
validateAccessKey(this, value);
|
|
@@ -31547,7 +31708,7 @@ class KolTree {
|
|
|
31547
31708
|
this._label = undefined;
|
|
31548
31709
|
}
|
|
31549
31710
|
render() {
|
|
31550
|
-
return (hAsync(Host, { key: '
|
|
31711
|
+
return (hAsync(Host, { key: '1038483261c2b4929beeeeef68594fb81da9ba86', class: "kol-tree" }, hAsync(KolTreeWcTag, { key: 'cac350ec6d6f9b4f601cc4731782ea110921cbf1', _label: this._label }, hAsync("slot", { key: 'c7989f873174400d0fe3dac6a67af3bf6349fc9e' }))));
|
|
31551
31712
|
}
|
|
31552
31713
|
static get style() { return {
|
|
31553
31714
|
default: KolTreeDefaultStyle0
|
|
@@ -31595,7 +31756,7 @@ class KolTreeItem {
|
|
|
31595
31756
|
return (_b = (await ((_a = this.element) === null || _a === void 0 ? void 0 : _a.isOpen()))) !== null && _b !== void 0 ? _b : false;
|
|
31596
31757
|
}
|
|
31597
31758
|
render() {
|
|
31598
|
-
return (hAsync(
|
|
31759
|
+
return (hAsync(KolTreeItemWcTag, { key: '0e5d3a40b309446a14662830d862c9dbfd4968fb', class: "kol-tree-item", _active: this._active, _label: this._label, _open: this._open, _href: this._href, ref: (element) => (this.element = element) }, hAsync("slot", { key: 'e238c62349b04358899f4ea7fe58d4713175a3dd' })));
|
|
31599
31760
|
}
|
|
31600
31761
|
static get style() { return {
|
|
31601
31762
|
default: KolTreeItemDefaultStyle0
|
|
@@ -31635,11 +31796,11 @@ class KolTreeItemWc {
|
|
|
31635
31796
|
this._href = undefined;
|
|
31636
31797
|
}
|
|
31637
31798
|
render() {
|
|
31638
|
-
return (hAsync(Host, { key: '
|
|
31799
|
+
return (hAsync(Host, { key: '83bbef4a6573e8f8db6a79a62264c33b0bc1c8ee', onSlotchange: this.handleSlotchange.bind(this), class: "kol-tree-item-wc" }, hAsync("li", { key: '7681e149dbabff21b30b58ef9438a1ffa6a6896d', class: "tree-item" }, hAsync(KolLinkTag, { key: 'e13e85b22f341446ca106124b90db1bdc9327123', class: {
|
|
31639
31800
|
'tree-link': true,
|
|
31640
31801
|
active: Boolean(this.state._active),
|
|
31641
|
-
}, _label: "", _href: this.state._href, ref: (element) => (this.linkElement = element), _tabIndex: this.state._active ? 0 : -1 }, hAsync("span", { key: '
|
|
31642
|
-
(this.state._open ? (hAsync("span", { class: "toggle-button", onClick: (event) => void this.handleCollapseClick(event) }, "-")) : (hAsync("span", { class: "toggle-button", onClick: (event) => void this.handleExpandClick(event) }, "+"))), ' ', this.state._label)), hAsync("ul", { key: '
|
|
31802
|
+
}, _label: "", _href: this.state._href, ref: (element) => (this.linkElement = element), _tabIndex: this.state._active ? 0 : -1 }, hAsync("span", { key: 'c379822a5452765a330f6700a262738dc5aa8414', slot: "expert" }, this.state._hasChildren &&
|
|
31803
|
+
(this.state._open ? (hAsync("span", { class: "toggle-button", onClick: (event) => void this.handleCollapseClick(event) }, "-")) : (hAsync("span", { class: "toggle-button", onClick: (event) => void this.handleExpandClick(event) }, "+"))), ' ', this.state._label)), hAsync("ul", { key: 'b09e26cdcad7a8a0e22517056db1562c28805ef2', hidden: !this.state._hasChildren || !this.state._open, role: "group" }, hAsync("slot", { key: '7010ba5c7ff4adbeb277e9e117b54d47d933258a' })))));
|
|
31643
31804
|
}
|
|
31644
31805
|
validateActive(value) {
|
|
31645
31806
|
validateActive(this, value || false);
|
|
@@ -31735,7 +31896,7 @@ class KolTreeWc {
|
|
|
31735
31896
|
validateLabel(this, value);
|
|
31736
31897
|
}
|
|
31737
31898
|
render() {
|
|
31738
|
-
return (hAsync(Host, { key: '
|
|
31899
|
+
return (hAsync(Host, { key: 'e890882e0c30f2dc33e17e0a7aff0a782b9cbaca', onSlotchange: this.handleSlotchange.bind(this), class: "kol-tree-wc" }, hAsync("nav", { key: '5c051db3cb3b7fd89aca1a7d2f19a4677c4345b0', class: "tree", "aria-label": this.state._label }, hAsync("ul", { key: '5b5b42abb8b55c468342890ed40e92d5e2bfb82d', class: "treeview-navigation", role: "tree", "aria-label": this.state._label }, hAsync("slot", { key: '4224f966cb6385a7322cceab67d6a9eea3000eb2' })))));
|
|
31739
31900
|
}
|
|
31740
31901
|
static isTreeItem(element) {
|
|
31741
31902
|
return (element === null || element === void 0 ? void 0 : element.tagName) === TREE_ITEM_TAG_NAME.toUpperCase();
|
|
@@ -31892,7 +32053,7 @@ class KolVersion {
|
|
|
31892
32053
|
};
|
|
31893
32054
|
}
|
|
31894
32055
|
render() {
|
|
31895
|
-
return (hAsync(Host, { key: '
|
|
32056
|
+
return (hAsync(Host, { key: 'a1a7b2f3472afbb4277dbf09170fea6702d36bb9', class: "kol-version" }, hAsync(KolBadgeTag, { key: '7d2bd52c7aa4246b8ef967d3e95f43af4c0f40ba', _color: "#bec5c9", _icons: {
|
|
31896
32057
|
left: { icon: 'codicon codicon-versions', label: translate('kol-version') },
|
|
31897
32058
|
}, _label: this.state._label })));
|
|
31898
32059
|
}
|
|
@@ -32085,14 +32246,22 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
32085
32246
|
__proto__: null
|
|
32086
32247
|
});
|
|
32087
32248
|
|
|
32249
|
+
let initialized = false;
|
|
32250
|
+
const isInitialized = () => initialized;
|
|
32251
|
+
|
|
32088
32252
|
class ToasterService {
|
|
32089
32253
|
constructor(document, options) {
|
|
32090
32254
|
this.document = document;
|
|
32091
32255
|
this.options = options;
|
|
32092
|
-
|
|
32256
|
+
console.log('create', KolToastContainerTag);
|
|
32257
|
+
console.trace();
|
|
32258
|
+
this.toastContainerElement = this.document.createElement(KolToastContainerTag);
|
|
32093
32259
|
this.document.body.prepend(this.toastContainerElement);
|
|
32094
32260
|
}
|
|
32095
32261
|
static getInstance(document, options) {
|
|
32262
|
+
if (!isInitialized()) {
|
|
32263
|
+
throw new Error('Toaster: Call KoliBri bootstrap/register method first.');
|
|
32264
|
+
}
|
|
32096
32265
|
let instance = this.instances.get(document);
|
|
32097
32266
|
if (!instance) {
|
|
32098
32267
|
instance = new ToasterService(document, options);
|