@public-ui/themes 2.2.4 → 2.2.5-rc.1
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/default/src/index.d.ts +1 -1
- package/dist/ecl/src/ecl-ec/index.d.ts +1 -1
- package/dist/ecl/src/ecl-eu/index.d.ts +1 -1
- package/dist/index.cjs +453 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +453 -3
- package/dist/index.mjs.map +1 -1
- package/dist/itzbund/src/index.d.ts +1 -1
- package/package.json +7 -7
|
@@ -2,6 +2,7 @@ export declare const DEFAULT: (patch: (name: string, map: {
|
|
|
2
2
|
GLOBAL?: string | undefined;
|
|
3
3
|
PROPERTIES?: string | undefined;
|
|
4
4
|
"KOL-SYMBOL"?: string | undefined;
|
|
5
|
+
"KOL-PAGINATION"?: string | undefined;
|
|
5
6
|
"KOL-ABBR"?: string | undefined;
|
|
6
7
|
"KOL-BUTTON"?: string | undefined;
|
|
7
8
|
"KOL-DETAILS"?: string | undefined;
|
|
@@ -42,7 +43,6 @@ export declare const DEFAULT: (patch: (name: string, map: {
|
|
|
42
43
|
"KOL-LINK-GROUP"?: string | undefined;
|
|
43
44
|
"KOL-LOGO"?: string | undefined;
|
|
44
45
|
"KOL-MODAL"?: string | undefined;
|
|
45
|
-
"KOL-PAGINATION"?: string | undefined;
|
|
46
46
|
"KOL-SEPARATOR"?: string | undefined;
|
|
47
47
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
48
48
|
"KOL-SPIN"?: string | undefined;
|
|
@@ -2,6 +2,7 @@ export declare const ECL_EC: (patch: (name: string, map: {
|
|
|
2
2
|
GLOBAL?: string | undefined;
|
|
3
3
|
PROPERTIES?: string | undefined;
|
|
4
4
|
"KOL-SYMBOL"?: string | undefined;
|
|
5
|
+
"KOL-PAGINATION"?: string | undefined;
|
|
5
6
|
"KOL-ABBR"?: string | undefined;
|
|
6
7
|
"KOL-BUTTON"?: string | undefined;
|
|
7
8
|
"KOL-DETAILS"?: string | undefined;
|
|
@@ -42,7 +43,6 @@ export declare const ECL_EC: (patch: (name: string, map: {
|
|
|
42
43
|
"KOL-LINK-GROUP"?: string | undefined;
|
|
43
44
|
"KOL-LOGO"?: string | undefined;
|
|
44
45
|
"KOL-MODAL"?: string | undefined;
|
|
45
|
-
"KOL-PAGINATION"?: string | undefined;
|
|
46
46
|
"KOL-SEPARATOR"?: string | undefined;
|
|
47
47
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
48
48
|
"KOL-SPIN"?: string | undefined;
|
|
@@ -2,6 +2,7 @@ export declare const ECL_EU: (patch: (name: string, map: {
|
|
|
2
2
|
GLOBAL?: string | undefined;
|
|
3
3
|
PROPERTIES?: string | undefined;
|
|
4
4
|
"KOL-SYMBOL"?: string | undefined;
|
|
5
|
+
"KOL-PAGINATION"?: string | undefined;
|
|
5
6
|
"KOL-ABBR"?: string | undefined;
|
|
6
7
|
"KOL-BUTTON"?: string | undefined;
|
|
7
8
|
"KOL-DETAILS"?: string | undefined;
|
|
@@ -42,7 +43,6 @@ export declare const ECL_EU: (patch: (name: string, map: {
|
|
|
42
43
|
"KOL-LINK-GROUP"?: string | undefined;
|
|
43
44
|
"KOL-LOGO"?: string | undefined;
|
|
44
45
|
"KOL-MODAL"?: string | undefined;
|
|
45
|
-
"KOL-PAGINATION"?: string | undefined;
|
|
46
46
|
"KOL-SEPARATOR"?: string | undefined;
|
|
47
47
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
48
48
|
"KOL-SPIN"?: string | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -3,12 +3,462 @@
|
|
|
3
3
|
/*!
|
|
4
4
|
* KoliBri - The accessible HTML-Standard
|
|
5
5
|
*/
|
|
6
|
-
var commonjsGlobal
|
|
6
|
+
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
7
|
+
|
|
8
|
+
var loglevel = {exports: {}};
|
|
9
|
+
|
|
10
|
+
/*
|
|
11
|
+
* loglevel - https://github.com/pimterry/loglevel
|
|
12
|
+
*
|
|
13
|
+
* Copyright (c) 2013 Tim Perry
|
|
14
|
+
* Licensed under the MIT license.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
(function (module) {
|
|
18
|
+
(function (root, definition) {
|
|
19
|
+
if (module.exports) {
|
|
20
|
+
module.exports = definition();
|
|
21
|
+
} else {
|
|
22
|
+
root.log = definition();
|
|
23
|
+
}
|
|
24
|
+
}(commonjsGlobal, function () {
|
|
25
|
+
|
|
26
|
+
// Slightly dubious tricks to cut down minimized file size
|
|
27
|
+
var noop = function() {};
|
|
28
|
+
var undefinedType = "undefined";
|
|
29
|
+
var isIE = (typeof window !== undefinedType) && (typeof window.navigator !== undefinedType) && (
|
|
30
|
+
/Trident\/|MSIE /.test(window.navigator.userAgent)
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
var logMethods = [
|
|
34
|
+
"trace",
|
|
35
|
+
"debug",
|
|
36
|
+
"info",
|
|
37
|
+
"warn",
|
|
38
|
+
"error"
|
|
39
|
+
];
|
|
40
|
+
|
|
41
|
+
var _loggersByName = {};
|
|
42
|
+
var defaultLogger = null;
|
|
43
|
+
|
|
44
|
+
// Cross-browser bind equivalent that works at least back to IE6
|
|
45
|
+
function bindMethod(obj, methodName) {
|
|
46
|
+
var method = obj[methodName];
|
|
47
|
+
if (typeof method.bind === 'function') {
|
|
48
|
+
return method.bind(obj);
|
|
49
|
+
} else {
|
|
50
|
+
try {
|
|
51
|
+
return Function.prototype.bind.call(method, obj);
|
|
52
|
+
} catch (e) {
|
|
53
|
+
// Missing bind shim or IE8 + Modernizr, fallback to wrapping
|
|
54
|
+
return function() {
|
|
55
|
+
return Function.prototype.apply.apply(method, [obj, arguments]);
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// Trace() doesn't print the message in IE, so for that case we need to wrap it
|
|
62
|
+
function traceForIE() {
|
|
63
|
+
if (console.log) {
|
|
64
|
+
if (console.log.apply) {
|
|
65
|
+
console.log.apply(console, arguments);
|
|
66
|
+
} else {
|
|
67
|
+
// In old IE, native console methods themselves don't have apply().
|
|
68
|
+
Function.prototype.apply.apply(console.log, [console, arguments]);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
if (console.trace) console.trace();
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// Build the best logging method possible for this env
|
|
75
|
+
// Wherever possible we want to bind, not wrap, to preserve stack traces
|
|
76
|
+
function realMethod(methodName) {
|
|
77
|
+
if (methodName === 'debug') {
|
|
78
|
+
methodName = 'log';
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
if (typeof console === undefinedType) {
|
|
82
|
+
return false; // No method possible, for now - fixed later by enableLoggingWhenConsoleArrives
|
|
83
|
+
} else if (methodName === 'trace' && isIE) {
|
|
84
|
+
return traceForIE;
|
|
85
|
+
} else if (console[methodName] !== undefined) {
|
|
86
|
+
return bindMethod(console, methodName);
|
|
87
|
+
} else if (console.log !== undefined) {
|
|
88
|
+
return bindMethod(console, 'log');
|
|
89
|
+
} else {
|
|
90
|
+
return noop;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// These private functions always need `this` to be set properly
|
|
95
|
+
|
|
96
|
+
function replaceLoggingMethods() {
|
|
97
|
+
/*jshint validthis:true */
|
|
98
|
+
var level = this.getLevel();
|
|
99
|
+
|
|
100
|
+
// Replace the actual methods.
|
|
101
|
+
for (var i = 0; i < logMethods.length; i++) {
|
|
102
|
+
var methodName = logMethods[i];
|
|
103
|
+
this[methodName] = (i < level) ?
|
|
104
|
+
noop :
|
|
105
|
+
this.methodFactory(methodName, level, this.name);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
// Define log.log as an alias for log.debug
|
|
109
|
+
this.log = this.debug;
|
|
110
|
+
|
|
111
|
+
// Return any important warnings.
|
|
112
|
+
if (typeof console === undefinedType && level < this.levels.SILENT) {
|
|
113
|
+
return "No console available for logging";
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
// In old IE versions, the console isn't present until you first open it.
|
|
118
|
+
// We build realMethod() replacements here that regenerate logging methods
|
|
119
|
+
function enableLoggingWhenConsoleArrives(methodName) {
|
|
120
|
+
return function () {
|
|
121
|
+
if (typeof console !== undefinedType) {
|
|
122
|
+
replaceLoggingMethods.call(this);
|
|
123
|
+
this[methodName].apply(this, arguments);
|
|
124
|
+
}
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// By default, we use closely bound real methods wherever possible, and
|
|
129
|
+
// otherwise we wait for a console to appear, and then try again.
|
|
130
|
+
function defaultMethodFactory(methodName, _level, _loggerName) {
|
|
131
|
+
/*jshint validthis:true */
|
|
132
|
+
return realMethod(methodName) ||
|
|
133
|
+
enableLoggingWhenConsoleArrives.apply(this, arguments);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
function Logger(name, factory) {
|
|
137
|
+
// Private instance variables.
|
|
138
|
+
var self = this;
|
|
139
|
+
/**
|
|
140
|
+
* The level inherited from a parent logger (or a global default). We
|
|
141
|
+
* cache this here rather than delegating to the parent so that it stays
|
|
142
|
+
* in sync with the actual logging methods that we have installed (the
|
|
143
|
+
* parent could change levels but we might not have rebuilt the loggers
|
|
144
|
+
* in this child yet).
|
|
145
|
+
* @type {number}
|
|
146
|
+
*/
|
|
147
|
+
var inheritedLevel;
|
|
148
|
+
/**
|
|
149
|
+
* The default level for this logger, if any. If set, this overrides
|
|
150
|
+
* `inheritedLevel`.
|
|
151
|
+
* @type {number|null}
|
|
152
|
+
*/
|
|
153
|
+
var defaultLevel;
|
|
154
|
+
/**
|
|
155
|
+
* A user-specific level for this logger. If set, this overrides
|
|
156
|
+
* `defaultLevel`.
|
|
157
|
+
* @type {number|null}
|
|
158
|
+
*/
|
|
159
|
+
var userLevel;
|
|
160
|
+
|
|
161
|
+
var storageKey = "loglevel";
|
|
162
|
+
if (typeof name === "string") {
|
|
163
|
+
storageKey += ":" + name;
|
|
164
|
+
} else if (typeof name === "symbol") {
|
|
165
|
+
storageKey = undefined;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
function persistLevelIfPossible(levelNum) {
|
|
169
|
+
var levelName = (logMethods[levelNum] || 'silent').toUpperCase();
|
|
170
|
+
|
|
171
|
+
if (typeof window === undefinedType || !storageKey) return;
|
|
172
|
+
|
|
173
|
+
// Use localStorage if available
|
|
174
|
+
try {
|
|
175
|
+
window.localStorage[storageKey] = levelName;
|
|
176
|
+
return;
|
|
177
|
+
} catch (ignore) {}
|
|
178
|
+
|
|
179
|
+
// Use session cookie as fallback
|
|
180
|
+
try {
|
|
181
|
+
window.document.cookie =
|
|
182
|
+
encodeURIComponent(storageKey) + "=" + levelName + ";";
|
|
183
|
+
} catch (ignore) {}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
function getPersistedLevel() {
|
|
187
|
+
var storedLevel;
|
|
188
|
+
|
|
189
|
+
if (typeof window === undefinedType || !storageKey) return;
|
|
190
|
+
|
|
191
|
+
try {
|
|
192
|
+
storedLevel = window.localStorage[storageKey];
|
|
193
|
+
} catch (ignore) {}
|
|
194
|
+
|
|
195
|
+
// Fallback to cookies if local storage gives us nothing
|
|
196
|
+
if (typeof storedLevel === undefinedType) {
|
|
197
|
+
try {
|
|
198
|
+
var cookie = window.document.cookie;
|
|
199
|
+
var cookieName = encodeURIComponent(storageKey);
|
|
200
|
+
var location = cookie.indexOf(cookieName + "=");
|
|
201
|
+
if (location !== -1) {
|
|
202
|
+
storedLevel = /^([^;]+)/.exec(
|
|
203
|
+
cookie.slice(location + cookieName.length + 1)
|
|
204
|
+
)[1];
|
|
205
|
+
}
|
|
206
|
+
} catch (ignore) {}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
// If the stored level is not valid, treat it as if nothing was stored.
|
|
210
|
+
if (self.levels[storedLevel] === undefined) {
|
|
211
|
+
storedLevel = undefined;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
return storedLevel;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
function clearPersistedLevel() {
|
|
218
|
+
if (typeof window === undefinedType || !storageKey) return;
|
|
219
|
+
|
|
220
|
+
// Use localStorage if available
|
|
221
|
+
try {
|
|
222
|
+
window.localStorage.removeItem(storageKey);
|
|
223
|
+
} catch (ignore) {}
|
|
224
|
+
|
|
225
|
+
// Use session cookie as fallback
|
|
226
|
+
try {
|
|
227
|
+
window.document.cookie =
|
|
228
|
+
encodeURIComponent(storageKey) + "=; expires=Thu, 01 Jan 1970 00:00:00 UTC";
|
|
229
|
+
} catch (ignore) {}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
function normalizeLevel(input) {
|
|
233
|
+
var level = input;
|
|
234
|
+
if (typeof level === "string" && self.levels[level.toUpperCase()] !== undefined) {
|
|
235
|
+
level = self.levels[level.toUpperCase()];
|
|
236
|
+
}
|
|
237
|
+
if (typeof level === "number" && level >= 0 && level <= self.levels.SILENT) {
|
|
238
|
+
return level;
|
|
239
|
+
} else {
|
|
240
|
+
throw new TypeError("log.setLevel() called with invalid level: " + input);
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
/*
|
|
245
|
+
*
|
|
246
|
+
* Public logger API - see https://github.com/pimterry/loglevel for details
|
|
247
|
+
*
|
|
248
|
+
*/
|
|
249
|
+
|
|
250
|
+
self.name = name;
|
|
251
|
+
|
|
252
|
+
self.levels = { "TRACE": 0, "DEBUG": 1, "INFO": 2, "WARN": 3,
|
|
253
|
+
"ERROR": 4, "SILENT": 5};
|
|
254
|
+
|
|
255
|
+
self.methodFactory = factory || defaultMethodFactory;
|
|
256
|
+
|
|
257
|
+
self.getLevel = function () {
|
|
258
|
+
if (userLevel != null) {
|
|
259
|
+
return userLevel;
|
|
260
|
+
} else if (defaultLevel != null) {
|
|
261
|
+
return defaultLevel;
|
|
262
|
+
} else {
|
|
263
|
+
return inheritedLevel;
|
|
264
|
+
}
|
|
265
|
+
};
|
|
266
|
+
|
|
267
|
+
self.setLevel = function (level, persist) {
|
|
268
|
+
userLevel = normalizeLevel(level);
|
|
269
|
+
if (persist !== false) { // defaults to true
|
|
270
|
+
persistLevelIfPossible(userLevel);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
// NOTE: in v2, this should call rebuild(), which updates children.
|
|
274
|
+
return replaceLoggingMethods.call(self);
|
|
275
|
+
};
|
|
276
|
+
|
|
277
|
+
self.setDefaultLevel = function (level) {
|
|
278
|
+
defaultLevel = normalizeLevel(level);
|
|
279
|
+
if (!getPersistedLevel()) {
|
|
280
|
+
self.setLevel(level, false);
|
|
281
|
+
}
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
self.resetLevel = function () {
|
|
285
|
+
userLevel = null;
|
|
286
|
+
clearPersistedLevel();
|
|
287
|
+
replaceLoggingMethods.call(self);
|
|
288
|
+
};
|
|
289
|
+
|
|
290
|
+
self.enableAll = function(persist) {
|
|
291
|
+
self.setLevel(self.levels.TRACE, persist);
|
|
292
|
+
};
|
|
293
|
+
|
|
294
|
+
self.disableAll = function(persist) {
|
|
295
|
+
self.setLevel(self.levels.SILENT, persist);
|
|
296
|
+
};
|
|
297
|
+
|
|
298
|
+
self.rebuild = function () {
|
|
299
|
+
if (defaultLogger !== self) {
|
|
300
|
+
inheritedLevel = normalizeLevel(defaultLogger.getLevel());
|
|
301
|
+
}
|
|
302
|
+
replaceLoggingMethods.call(self);
|
|
303
|
+
|
|
304
|
+
if (defaultLogger === self) {
|
|
305
|
+
for (var childName in _loggersByName) {
|
|
306
|
+
_loggersByName[childName].rebuild();
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
};
|
|
310
|
+
|
|
311
|
+
// Initialize all the internal levels.
|
|
312
|
+
inheritedLevel = normalizeLevel(
|
|
313
|
+
defaultLogger ? defaultLogger.getLevel() : "WARN"
|
|
314
|
+
);
|
|
315
|
+
var initialLevel = getPersistedLevel();
|
|
316
|
+
if (initialLevel != null) {
|
|
317
|
+
userLevel = normalizeLevel(initialLevel);
|
|
318
|
+
}
|
|
319
|
+
replaceLoggingMethods.call(self);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
/*
|
|
323
|
+
*
|
|
324
|
+
* Top-level API
|
|
325
|
+
*
|
|
326
|
+
*/
|
|
327
|
+
|
|
328
|
+
defaultLogger = new Logger();
|
|
329
|
+
|
|
330
|
+
defaultLogger.getLogger = function getLogger(name) {
|
|
331
|
+
if ((typeof name !== "symbol" && typeof name !== "string") || name === "") {
|
|
332
|
+
throw new TypeError("You must supply a name when creating a logger.");
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
var logger = _loggersByName[name];
|
|
336
|
+
if (!logger) {
|
|
337
|
+
logger = _loggersByName[name] = new Logger(
|
|
338
|
+
name,
|
|
339
|
+
defaultLogger.methodFactory
|
|
340
|
+
);
|
|
341
|
+
}
|
|
342
|
+
return logger;
|
|
343
|
+
};
|
|
344
|
+
|
|
345
|
+
// Grab the current global log variable in case of overwrite
|
|
346
|
+
var _log = (typeof window !== undefinedType) ? window.log : undefined;
|
|
347
|
+
defaultLogger.noConflict = function() {
|
|
348
|
+
if (typeof window !== undefinedType &&
|
|
349
|
+
window.log === defaultLogger) {
|
|
350
|
+
window.log = _log;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
return defaultLogger;
|
|
354
|
+
};
|
|
355
|
+
|
|
356
|
+
defaultLogger.getLoggers = function getLoggers() {
|
|
357
|
+
return _loggersByName;
|
|
358
|
+
};
|
|
359
|
+
|
|
360
|
+
// ES6 default export, for compatibility
|
|
361
|
+
defaultLogger['default'] = defaultLogger;
|
|
362
|
+
|
|
363
|
+
return defaultLogger;
|
|
364
|
+
}));
|
|
365
|
+
}(loglevel));
|
|
366
|
+
|
|
367
|
+
const R=(e,t)=>s=>s(e,t),H=(e,t)=>s=>s(e,t,{append:false}),$=new Map,M=[],Y=new Map,a={A11yUi:{CSS_STYLE_CACHE:$,HYDRATED_HISTORY:M,STYLING_TASK_QUEUE:Y,Themes:{}}};const w=new Set,q=/--[^;]+/g,J=/:/,V=(e,t)=>{let s=t.match(q);if(Array.isArray(s)){s=s.filter(n=>J.test(n));const o=document.createElement("style");o.innerHTML=`.${e} {${s.join(";")}}`,document.querySelector("head")?.appendChild(o);}w.add(e);},f=(e,t)=>typeof a.A11yUi=="object"&&a.A11yUi!==null&&typeof a.A11yUi.Themes=="object"&&a.A11yUi.Themes!==null&&typeof a.A11yUi.Themes[e]=="object"&&a.A11yUi.Themes[e]!==null&&typeof a.A11yUi.Themes[e][t]=="string"?a.A11yUi.Themes[e][t].replace(/\r?\n/g,""):"",W=e=>{for(const t of Array.from(e.childNodes))if(t instanceof HTMLStyleElement&&t.tagName==="STYLE"&&t.dataset.themingFallback===undefined)e.removeChild(t);else break},X=(e,t)=>{try{if(a.A11yUi.Theme?.mode==="ssr")throw new Error("SSR");const s=[];t.forEach(o=>{const n=new CSSStyleSheet;n.replaceSync(o),s.push(n);}),e.adoptedStyleSheets=s;}catch{[...t].reverse().forEach((s,o)=>{if(typeof s!="string"||s.length===0)return;const n=document.createElement("style");switch(n.dataset.themingFallback="",o){case 4:n.dataset.themingBaseA11y="";break;case 3:n.dataset.themingBaseGlobal="";break;case 2:n.dataset.themingBaseComponent="";break;case 1:n.dataset.themingCustomGlobal="";break;case 0:n.dataset.themingCustomComponent="";break;default:n.dataset.themingUnknown="";break}n.innerHTML=s,e.insertBefore(n,e.firstChild);});}},Z=(e,t,s)=>{if(s!==false){const o=[...Array.from(e.childNodes).filter(r=>r instanceof HTMLStyleElement&&r.tagName==="STYLE")];let n;try{n=[...Array.from(e.adoptedStyleSheets)];}catch{n=[];}s?.mode==="before"?(o.reverse().forEach(r=>t.unshift(r.innerHTML)),n.reverse().forEach(r=>t.unshift(Array.from(r.cssRules).map(i=>i.cssText).join("")))):s?.mode==="after"&&(o.forEach(r=>t.push(r.innerHTML)),n.forEach(r=>t.push(Array.from(r.cssRules).map(i=>i.cssText).join(""))));}},L=(e,t,s)=>{const o=t.name||"default";let n;try{if(e.shadowRoot===null)throw new Error("ShadowRoot is null");n=e.shadowRoot;}catch{n=e;}if(a.A11yUi.CSS_STYLE_CACHE.get(o)?.has(e.tagName))_(e,n,a.A11yUi.CSS_STYLE_CACHE.get(o)?.get(e.tagName),s);else {const r=f(o,"PROPERTIES"),i=f(o,"GLOBAL"),m=f(o,e.tagName);w.has(o)===false&&V(o,i);const h=[r,i,m];Z(n,h,t.encroachCss),t.loglevel==="debug"&&console.log(e.tagName,h),t.cache===true&&(a.A11yUi.CSS_STYLE_CACHE.has(o)===false&&a.A11yUi.CSS_STYLE_CACHE.set(o,new Map),a.A11yUi.CSS_STYLE_CACHE.get(o)?.set(e.tagName,h)),_(e,n,h,s);}},_=(e,t,s,o)=>{W(t),X(t,s),e.style.display=o;},N=e=>{e.loglevel==="debug"&&a.A11yUi.HYDRATED_HISTORY.push({timestamp:Date.now(),numberOfTasks:a.A11yUi.STYLING_TASK_QUEUE.size});},se=e=>{a.A11yUi.STYLING_TASK_QUEUE.delete(e);},j=(e,t)=>{se(e),N(t);},oe=e=>{for(const t of e)if(a.A11yUi.STYLING_TASK_QUEUE.has(t.target)&&t.target.classList.contains("hydrated")){const{styleDisplay:s,themeDetails:o}=a.A11yUi.STYLING_TASK_QUEUE.get(t.target);L(t.target,o,s),j(t.target,o);}};let d;try{d=new MutationObserver(oe);}catch{d=null;}class re{constructor(t,s,o){this.createTheme=(n,r)=>H(n,r),this.createTranslation=(n,r)=>R(n,r),this.Prefix=t,this.Key=Object.getOwnPropertyNames(s),this.Tag=Object.getOwnPropertyNames(o);}}
|
|
7
368
|
|
|
8
369
|
/*!
|
|
9
370
|
* KoliBri - The accessible HTML-Standard
|
|
10
371
|
*/
|
|
11
|
-
|
|
372
|
+
|
|
373
|
+
var KeyEnum;
|
|
374
|
+
(function (KeyEnum) {
|
|
375
|
+
KeyEnum[KeyEnum["error"] = 0] = "error";
|
|
376
|
+
KeyEnum[KeyEnum["warning"] = 1] = "warning";
|
|
377
|
+
KeyEnum[KeyEnum["info"] = 2] = "info";
|
|
378
|
+
KeyEnum[KeyEnum["success"] = 3] = "success";
|
|
379
|
+
KeyEnum[KeyEnum["message"] = 4] = "message";
|
|
380
|
+
KeyEnum[KeyEnum["close"] = 5] = "close";
|
|
381
|
+
KeyEnum[KeyEnum["form-description"] = 6] = "form-description";
|
|
382
|
+
KeyEnum[KeyEnum["of"] = 7] = "of";
|
|
383
|
+
KeyEnum[KeyEnum["characters"] = 8] = "characters";
|
|
384
|
+
KeyEnum[KeyEnum["new"] = 9] = "new";
|
|
385
|
+
KeyEnum[KeyEnum["no-entries"] = 10] = "no-entries";
|
|
386
|
+
KeyEnum[KeyEnum["change-order"] = 11] = "change-order";
|
|
387
|
+
KeyEnum[KeyEnum["action-running"] = 12] = "action-running";
|
|
388
|
+
KeyEnum[KeyEnum["action-done"] = 13] = "action-done";
|
|
389
|
+
KeyEnum[KeyEnum["page-first"] = 14] = "page-first";
|
|
390
|
+
KeyEnum[KeyEnum["page-back"] = 15] = "page-back";
|
|
391
|
+
KeyEnum[KeyEnum["page-next"] = 16] = "page-next";
|
|
392
|
+
KeyEnum[KeyEnum["page-last"] = 17] = "page-last";
|
|
393
|
+
KeyEnum[KeyEnum["entries-per-site"] = 18] = "entries-per-site";
|
|
394
|
+
KeyEnum[KeyEnum["page-current"] = 19] = "page-current";
|
|
395
|
+
KeyEnum[KeyEnum["page-selected"] = 20] = "page-selected";
|
|
396
|
+
KeyEnum[KeyEnum["page-per-site"] = 21] = "page-per-site";
|
|
397
|
+
KeyEnum[KeyEnum["logo-description"] = 22] = "logo-description";
|
|
398
|
+
KeyEnum[KeyEnum["open-link-in-tab"] = 23] = "open-link-in-tab";
|
|
399
|
+
KeyEnum[KeyEnum["kolibri-logo"] = 24] = "kolibri-logo";
|
|
400
|
+
})(KeyEnum || (KeyEnum = {}));
|
|
401
|
+
|
|
402
|
+
var TagEnum;
|
|
403
|
+
(function (TagEnum) {
|
|
404
|
+
TagEnum[TagEnum["abbr"] = 0] = "abbr";
|
|
405
|
+
TagEnum[TagEnum["accordion"] = 1] = "accordion";
|
|
406
|
+
TagEnum[TagEnum["accordion-group"] = 2] = "accordion-group";
|
|
407
|
+
TagEnum[TagEnum["alert"] = 3] = "alert";
|
|
408
|
+
TagEnum[TagEnum["avatar"] = 4] = "avatar";
|
|
409
|
+
TagEnum[TagEnum["badge"] = 5] = "badge";
|
|
410
|
+
TagEnum[TagEnum["breadcrumb"] = 6] = "breadcrumb";
|
|
411
|
+
TagEnum[TagEnum["button"] = 7] = "button";
|
|
412
|
+
TagEnum[TagEnum["button-group"] = 8] = "button-group";
|
|
413
|
+
TagEnum[TagEnum["button-link"] = 9] = "button-link";
|
|
414
|
+
TagEnum[TagEnum["card"] = 10] = "card";
|
|
415
|
+
TagEnum[TagEnum["combobox"] = 11] = "combobox";
|
|
416
|
+
TagEnum[TagEnum["details"] = 12] = "details";
|
|
417
|
+
TagEnum[TagEnum["drawer"] = 13] = "drawer";
|
|
418
|
+
TagEnum[TagEnum["form"] = 14] = "form";
|
|
419
|
+
TagEnum[TagEnum["heading"] = 15] = "heading";
|
|
420
|
+
TagEnum[TagEnum["icon"] = 16] = "icon";
|
|
421
|
+
TagEnum[TagEnum["image"] = 17] = "image";
|
|
422
|
+
TagEnum[TagEnum["indented-text"] = 18] = "indented-text";
|
|
423
|
+
TagEnum[TagEnum["input-checkbox"] = 19] = "input-checkbox";
|
|
424
|
+
TagEnum[TagEnum["input-color"] = 20] = "input-color";
|
|
425
|
+
TagEnum[TagEnum["input-date"] = 21] = "input-date";
|
|
426
|
+
TagEnum[TagEnum["input-email"] = 22] = "input-email";
|
|
427
|
+
TagEnum[TagEnum["input-file"] = 23] = "input-file";
|
|
428
|
+
TagEnum[TagEnum["input-number"] = 24] = "input-number";
|
|
429
|
+
TagEnum[TagEnum["input-password"] = 25] = "input-password";
|
|
430
|
+
TagEnum[TagEnum["input-radio"] = 26] = "input-radio";
|
|
431
|
+
TagEnum[TagEnum["input-range"] = 27] = "input-range";
|
|
432
|
+
TagEnum[TagEnum["input-text"] = 28] = "input-text";
|
|
433
|
+
TagEnum[TagEnum["kolibri"] = 29] = "kolibri";
|
|
434
|
+
TagEnum[TagEnum["link"] = 30] = "link";
|
|
435
|
+
TagEnum[TagEnum["link-button"] = 31] = "link-button";
|
|
436
|
+
TagEnum[TagEnum["link-group"] = 32] = "link-group";
|
|
437
|
+
TagEnum[TagEnum["logo"] = 33] = "logo";
|
|
438
|
+
TagEnum[TagEnum["modal"] = 34] = "modal";
|
|
439
|
+
TagEnum[TagEnum["nav"] = 35] = "nav";
|
|
440
|
+
TagEnum[TagEnum["pagination"] = 36] = "pagination";
|
|
441
|
+
TagEnum[TagEnum["progress"] = 37] = "progress";
|
|
442
|
+
TagEnum[TagEnum["select"] = 38] = "select";
|
|
443
|
+
TagEnum[TagEnum["separator"] = 39] = "separator";
|
|
444
|
+
TagEnum[TagEnum["skip-nav"] = 40] = "skip-nav";
|
|
445
|
+
TagEnum[TagEnum["spin"] = 41] = "spin";
|
|
446
|
+
TagEnum[TagEnum["single-select"] = 42] = "single-select";
|
|
447
|
+
TagEnum[TagEnum["split-button"] = 43] = "split-button";
|
|
448
|
+
TagEnum[TagEnum["symbol"] = 44] = "symbol";
|
|
449
|
+
TagEnum[TagEnum["table"] = 45] = "table";
|
|
450
|
+
TagEnum[TagEnum["table-stateless"] = 46] = "table-stateless";
|
|
451
|
+
TagEnum[TagEnum["table-stateful"] = 47] = "table-stateful";
|
|
452
|
+
TagEnum[TagEnum["tabs"] = 48] = "tabs";
|
|
453
|
+
TagEnum[TagEnum["textarea"] = 49] = "textarea";
|
|
454
|
+
TagEnum[TagEnum["toast-container"] = 50] = "toast-container";
|
|
455
|
+
TagEnum[TagEnum["toolbar"] = 51] = "toolbar";
|
|
456
|
+
TagEnum[TagEnum["tooltip"] = 52] = "tooltip";
|
|
457
|
+
TagEnum[TagEnum["tree"] = 53] = "tree";
|
|
458
|
+
TagEnum[TagEnum["tree-item"] = 54] = "tree-item";
|
|
459
|
+
})(TagEnum || (TagEnum = {}));
|
|
460
|
+
|
|
461
|
+
const KoliBri = new re('kol', KeyEnum, TagEnum);
|
|
12
462
|
|
|
13
463
|
var css_248z$2M = "@layer kol-theme-global {\n :host {\n --border-radius: var(--kolibri-border-radius, calc(5rem / var(--kolibri-root-font-size, 16)));\n --font-family: var(--kolibri-font-family, Verdana, Arial, Calibri, Helvetica, sans-serif);\n --font-size: var(--kolibri-font-size, calc(16rem / var(--kolibri-root-font-size, 16)));\n --spacing: var(--kolibri-spacing, calc(4rem / var(--kolibri-root-font-size, 16)));\n --border-width: var(--kolibri-border-width, calc(1rem / var(--kolibri-root-font-size, 16)));\n --color-primary: var(--kolibri-color-primary, #004b76);\n --color-primary-variant: var(--kolibri-color-primary-variant, #0077b6);\n --color-danger: var(--kolibri-color-danger, #b4003c);\n --color-warning: var(--kolibri-color-warning, #c44931);\n --color-success: var(--kolibri-color-success, #005c45);\n --color-subtle: var(--kolibri-color-subtle, #576164);\n --color-light: var(--kolibri-color-light, #ffffff);\n --color-text: var(--kolibri-color-text, #202020);\n --color-mute: var(--kolibri-color-mute, #f2f3f4);\n --color-mute-variant: var(--kolibri-color-mute-variant, #bec5c9);\n }\n * {\n box-sizing: border-box;\n }\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n margin: 0;\n padding: 0;\n }\n *[tabindex]:focus,\n .kol-input:not(.checkbox, .radio) .input:focus-within,\n .kol-input:is(.checkbox, .radio) input:focus,\n summary:focus {\n cursor: pointer;\n outline-color: var(--color-primary-variant);\n outline-offset: calc(2rem / var(--kolibri-root-font-size, 16));\n outline-style: solid;\n outline-width: calc(3rem / var(--kolibri-root-font-size, 16));\n transition: outline-offset 0.2s linear;\n }\n .kol-heading-wc {\n font-weight: 700;\n }\n .kol-tooltip-wc .tooltip-floating {\n border: var(--border-width) solid var(--color-subtle);\n border-radius: var(--border-radius);\n }\n .kol-tooltip-wc .tooltip-arrow {\n border: var(--border-width) solid var(--color-subtle);\n }\n .kol-tooltip-wc .tooltip-area {\n background-color: var(--color-light);\n }\n .kol-tooltip-wc .tooltip-content {\n border-radius: var(--border-radius);\n line-height: 1.5;\n padding: calc(8rem / var(--kolibri-root-font-size, 16)) calc(12rem / var(--kolibri-root-font-size, 16));\n }\n .kol-span-wc,\n .kol-span-wc > span {\n gap: calc(8rem / var(--kolibri-root-font-size, 16));\n }\n @keyframes spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n}";
|
|
14
464
|
|
|
@@ -30,7 +480,7 @@ var css_248z$2E = "@layer kol-theme-component {\n :host > .kol-button-group-wc
|
|
|
30
480
|
|
|
31
481
|
var css_248z$2D = "@layer kol-theme-component {\n :is(a, button) {\n color: var(--color-primary);\n font-style: normal;\n font-weight: 400;\n font-size: inherit;\n }\n :is(a, button):focus {\n outline: none;\n }\n :is(a, button):focus .kol-span-wc {\n border-radius: var(--border-radius);\n outline: calc(var(--border-width) * 2) solid;\n }\n a:hover:not([aria-disabled]) .kol-span-wc .span-label,\n button:hover:not([disabled]) .kol-span-wc .span-label {\n text-decoration-thickness: 0.25em;\n }\n :is(a, button):visited {\n color: var(--visited);\n }\n .skip {\n left: calc(-99999rem / var(--kolibri-root-font-size, 16));\n overflow: hidden;\n position: absolute;\n z-index: 9999999;\n }\n .skip:focus {\n background-color: white;\n left: unset;\n position: unset;\n }\n .access-key-hint {\n background-color: var(--color-mute-variant);\n border-radius: calc(3rem / var(--kolibri-root-font-size, 16));\n color: var(--color-text);\n padding: 0 0.3em;\n }\n}";
|
|
32
482
|
|
|
33
|
-
var css_248z$2C = "@layer kol-theme-component {\n :host {\n font-family: var(--font-family);\n }\n
|
|
483
|
+
var css_248z$2C = "@layer kol-theme-component {\n :host {\n font-family: var(--font-family);\n }\n :host > div {\n display: grid;\n width: 100%;\n height: 100%;\n background-color: var(--color-light);\n grid-template-rows: min-content 2fr min-content;\n box-shadow: 0 0 calc(4rem / var(--kolibri-root-font-size, 16)) color-mix(in srgb, black 80%, var(--color-subtle));\n border-radius: var(--border-radius);\n }\n :host .kol-heading-wc {\n line-height: 1.75;\n }\n :host div.header {\n padding: calc(16rem / var(--kolibri-root-font-size, 16)) calc(16rem / var(--kolibri-root-font-size, 16)) calc(8rem / var(--kolibri-root-font-size, 16)) calc(16rem / var(--kolibri-root-font-size, 16));\n }\n :host div.content {\n padding: calc(8rem / var(--kolibri-root-font-size, 16)) calc(16rem / var(--kolibri-root-font-size, 16)) calc(16rem / var(--kolibri-root-font-size, 16));\n overflow: hidden;\n }\n :host div.footer {\n padding: calc(8rem / var(--kolibri-root-font-size, 16)) calc(16rem / var(--kolibri-root-font-size, 16));\n }\n}";
|
|
34
484
|
|
|
35
485
|
var css_248z$2B = "@layer kol-theme-component {\n :host {\n font-family: var(--font-family);\n }\n :host .msg {\n border-width: 0;\n }\n :host .kol-alert-wc {\n border-width: var(--border-width);\n border-style: solid;\n border-radius: var(--border-radius);\n display: flex;\n width: 100%;\n overflow: unset;\n border-color: transparent;\n background-color: var(--color-light);\n }\n :host .kol-alert-wc.msg {\n border-width: 0;\n }\n :host .kol-alert-wc > .heading {\n display: flex;\n gap: 0.5em;\n place-items: center;\n }\n :host .kol-alert-wc > .heading > div {\n display: grid;\n gap: calc(4rem / var(--kolibri-root-font-size, 16));\n }\n :host .msg > .heading > .kol-icon {\n place-self: baseline;\n }\n :host .kol-alert-wc > .heading > .kol-button-wc.close {\n place-self: center;\n }\n :host .msg {\n align-items: start;\n }\n :host .default {\n border-color: var(--color-subtle);\n }\n :host .default.msg .heading-icon {\n color: var(--color-subtle);\n }\n :host .error {\n border-color: var(--color-danger);\n }\n :host .error.msg .heading-icon {\n color: var(--color-danger);\n }\n :host .info {\n border-color: var(--color-primary);\n }\n :host .info.msg .heading-icon {\n color: var(--color-primary);\n }\n :host .success {\n border-color: var(--color-success);\n }\n :host .success.msg .heading-icon {\n color: var(--color-success);\n }\n :host .warning {\n border-color: var(--color-warning);\n }\n :host .warning.msg .heading-icon {\n color: var(--color-warning);\n }\n :host .heading-icon {\n color: var(--color-light);\n }\n :host .kol-alert-wc .heading .heading-icon {\n padding: 0;\n }\n :host .msg > .heading > .heading-icon {\n padding-top: 0;\n place-items: baseline;\n }\n :host .msg > .heading > div > .kol-heading-wc {\n padding-top: calc(--var-spacing / 2);\n }\n :host .msg.default .heading > div > .kol-heading-wc {\n color: var(--color-subtle);\n }\n :host .msg.error .heading > div > .kol-heading-wc {\n color: var(--color-danger);\n }\n :host .msg.info .heading > div > .kol-heading-wc {\n color: var(--color-primary);\n }\n :host .msg.success .heading > div > .kol-heading-wc {\n color: var(--color-success);\n }\n :host .msg.warning .heading > div > .kol-heading-wc {\n color: var(--color-warning);\n }\n :host .msg.default .close .icon {\n color: var(--color-subtle);\n }\n :host .msg.error .close .icon {\n color: var(--color-danger);\n }\n :host .msg.info .close .icon {\n color: var(--color-primary);\n }\n :host .msg.success .close .icon {\n color: var(--color-success);\n }\n :host .msg.warning .close .icon {\n color: var(--color-warning);\n }\n :host .card {\n border-width: var(--border-width);\n border-style: solid;\n filter: drop-shadow(0 calc(2rem / var(--kolibri-root-font-size, 16)) calc(4rem / var(--kolibri-root-font-size, 16)) rgba(8, 35, 48, 0.24));\n flex-direction: column;\n }\n :host .card > .heading {\n padding: calc(8rem / var(--kolibri-root-font-size, 16)) calc(16rem / var(--kolibri-root-font-size, 16));\n }\n :host .card[_has-closer] > .heading {\n padding-top: 0;\n padding-bottom: 0;\n padding-right: 0;\n }\n :host .card > .heading > div {\n width: 100%;\n min-height: calc(20rem / var(--kolibri-root-font-size, 16));\n }\n :host .card > .heading .heading-icon {\n justify-self: right;\n margin-top: calc(-4rem / var(--kolibri-root-font-size, 16));\n }\n :host .card > .heading .kol-heading-wc {\n width: 100%;\n color: var(--color-light);\n display: flex;\n font-size: calc(20rem / var(--kolibri-root-font-size, 16));\n line-height: 1;\n }\n :host .card > .heading .kol-heading-wc > * {\n margin: auto 0;\n }\n :host .card > .content {\n padding: calc(16rem / var(--kolibri-root-font-size, 16));\n }\n :host .card.default > .heading {\n background-color: var(--color-subtle);\n }\n :host .card.error > .heading {\n background-color: var(--color-danger);\n }\n :host .card.info > .heading {\n background-color: var(--color-primary);\n }\n :host .card.success > .heading {\n background-color: var(--color-success);\n }\n :host .card.warning > .heading {\n background-color: var(--color-warning);\n }\n :host :is(.error, .info, .success, .warning) .heading-icon {\n font-size: calc(20rem / var(--kolibri-root-font-size, 16));\n }\n :host .card > div > .content {\n grid-row: 2;\n grid-column: 1/span 2;\n }\n :host .card.default .close {\n background-color: var(--color-subtle);\n }\n :host .card.error .close {\n background-color: var(--color-danger);\n }\n :host .card.info .close {\n background-color: var(--color-primary);\n }\n :host .card.success .close {\n background-color: var(--color-success);\n }\n :host .card.warning .close {\n background-color: var(--color-warning);\n }\n :host .close > button {\n border-radius: 50%;\n /* visible on focus */\n color: var(--color-light);\n cursor: pointer;\n height: var(--a11y-min-size);\n width: var(--a11y-min-size);\n }\n :host .close > button.hide-label .kol-icon {\n display: flex;\n width: 1em;\n height: 1em;\n font-size: calc(19.2rem / var(--kolibri-root-font-size, 16));\n }\n :host .close > button:active {\n box-shadow: none;\n outline: none;\n }\n .combobox {\n display: block;\n position: relative;\n }\n .combobox__group {\n display: inline-flex;\n align-items: center;\n width: 100%;\n padding: 0 calc(8rem / var(--kolibri-root-font-size, 16));\n }\n .combobox__input {\n flex-grow: 1;\n border: none;\n width: calc(100% - 40rem / var(--kolibri-root-font-size, 16));\n position: relative;\n }\n .combobox__input::placeholder {\n color: var(--color-subtle);\n }\n .combobox__input:first-child {\n padding-left: var(--spacing);\n }\n .combobox__input:last-child {\n padding-right: var(--spacing);\n }\n .combobox__icon {\n display: grid;\n place-items: center;\n padding-left: calc(8rem / var(--kolibri-root-font-size, 16));\n padding-right: calc(8rem / var(--kolibri-root-font-size, 16));\n }\n .combobox__icon:focus {\n outline: 0;\n }\n .combobox__listbox {\n border-style: solid;\n border-width: calc(1rem / var(--kolibri-root-font-size, 16));\n border-radius: var(--border-radius);\n border-color: var(--color-subtle);\n overflow-y: auto;\n overflow-x: hidden;\n box-sizing: border-box;\n width: 100%;\n max-height: calc(40rem / var(--kolibri-root-font-size, 16) * 5 + 2rem / var(--kolibri-root-font-size, 16));\n }\n .combobox__item {\n display: flex;\n align-items: center;\n min-height: calc(40rem / var(--kolibri-root-font-size, 16));\n line-height: 1;\n padding: calc(10rem / var(--kolibri-root-font-size, 16)) calc(12rem / var(--kolibri-root-font-size, 16));\n }\n .combobox__item:focus {\n background-color: var(--color-primary-variant);\n color: var(--color-light);\n outline: 0;\n }\n .kol-input {\n gap: calc(4rem / var(--kolibri-root-font-size, 16));\n }\n .kol-input .error:not(.hidden-error) {\n order: 1;\n }\n .kol-input label {\n order: 2;\n }\n .kol-input .input {\n order: 3;\n padding: 0;\n }\n .kol-input .counter {\n order: 4;\n }\n .kol-input .hint {\n order: 5;\n font-size: calc(14.4rem / var(--kolibri-root-font-size, 16));\n font-style: italic;\n }\n input::placeholder {\n color: var(--color-subtle);\n }\n .input {\n background-color: var(--color-light);\n border-color: var(--color-subtle);\n border-radius: var(--border-radius);\n border-style: solid;\n border-width: calc(2rem / var(--kolibri-root-font-size, 16));\n padding: 0 calc(8rem / var(--kolibri-root-font-size, 16));\n }\n .input > .kol-icon {\n width: calc(16rem / var(--kolibri-root-font-size, 16));\n }\n .input:is(.icon-left, .icon-right) {\n padding-left: calc(16rem / var(--kolibri-root-font-size, 16));\n padding-right: calc(16rem / var(--kolibri-root-font-size, 16));\n }\n .input:is(.icon-left, .icon-right) input {\n padding-left: calc(8rem / var(--kolibri-root-font-size, 16));\n padding-right: calc(8rem / var(--kolibri-root-font-size, 16));\n }\n .input > input:first-child {\n padding-left: var(--spacing);\n }\n .input > input:last-child {\n padding-right: var(--spacing);\n }\n :not(.disabled) .input:hover {\n border-color: var(--color-primary);\n }\n .required label > span::after {\n content: \"*\";\n padding-left: 0.125em;\n }\n .kol-input.error:not(.hidden-error) {\n border-left: calc(3rem / var(--kolibri-root-font-size, 16)) solid var(--color-danger);\n padding-left: calc(16rem / var(--kolibri-root-font-size, 16));\n }\n .kol-input.error:not(.hidden-error) .input:focus-within {\n outline-color: var(--color-danger);\n }\n .kol-input.error:not(.hidden-error) .kol-alert-wc.error {\n color: var(--color-danger);\n font-weight: 700;\n }\n .input {\n position: relative;\n }\n .kol-input.disabled .input {\n background-color: var(--color-mute);\n border-color: var(--color-mute-variant);\n color: var(--color-text);\n }\n}";
|
|
36
486
|
|