@public-ui/vue 4.0.0-alpha.0 → 4.0.0-alpha.10
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/README.md +16 -6
- package/dist/index.cjs +130 -149
- package/dist/index.d.cts +65 -0
- package/dist/index.d.mts +65 -0
- package/dist/index.d.ts +5 -7
- package/dist/index.mjs +128 -145
- package/package.json +9 -9
package/dist/index.cjs
CHANGED
|
@@ -7,8 +7,6 @@ const setTagNameTransformer = (_tagNameTransformer) => {
|
|
|
7
7
|
tagNameTransformer = _tagNameTransformer;
|
|
8
8
|
};
|
|
9
9
|
|
|
10
|
-
const UPDATE_VALUE_EVENT = "update:modelValue";
|
|
11
|
-
const MODEL_VALUE = "modelValue";
|
|
12
10
|
const ROUTER_LINK_VALUE = "routerLink";
|
|
13
11
|
const NAV_MANAGER = "navManager";
|
|
14
12
|
const ROUTER_PROP_PREFIX = "router";
|
|
@@ -24,31 +22,16 @@ const getElementClasses = (ref2, componentClasses, defaultClasses = []) => {
|
|
|
24
22
|
);
|
|
25
23
|
};
|
|
26
24
|
const defineContainer = (name, defineCustomElement, componentProps = [], modelProp, modelUpdateEvent) => {
|
|
27
|
-
if (defineCustomElement !== void 0) {
|
|
28
|
-
defineCustomElement();
|
|
29
|
-
}
|
|
30
25
|
const Container = vue.defineComponent((props, { attrs, slots, emit }) => {
|
|
31
|
-
|
|
26
|
+
props[modelProp];
|
|
32
27
|
const containerRef = vue.ref();
|
|
33
28
|
const classes = new Set(getComponentClasses(attrs.class));
|
|
34
|
-
const vModelDirective = {
|
|
35
|
-
created: (el) => {
|
|
36
|
-
const eventsNames = Array.isArray(modelUpdateEvent) ? modelUpdateEvent : [modelUpdateEvent];
|
|
37
|
-
eventsNames.forEach((eventName) => {
|
|
38
|
-
el.addEventListener(eventName.toLowerCase(), (e) => {
|
|
39
|
-
modelPropValue = (e?.target)[modelProp];
|
|
40
|
-
emit(UPDATE_VALUE_EVENT, modelPropValue);
|
|
41
|
-
});
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
};
|
|
45
29
|
const currentInstance = vue.getCurrentInstance();
|
|
46
30
|
const hasRouter = currentInstance?.appContext?.provides[NAV_MANAGER];
|
|
47
31
|
const navManager = hasRouter ? vue.inject(NAV_MANAGER) : void 0;
|
|
48
32
|
const handleRouterLink = (ev) => {
|
|
49
33
|
const { routerLink } = props;
|
|
50
|
-
if (routerLink === EMPTY_PROP)
|
|
51
|
-
return;
|
|
34
|
+
if (routerLink === EMPTY_PROP) return;
|
|
52
35
|
if (navManager !== void 0) {
|
|
53
36
|
let navigationPayload = { event: ev };
|
|
54
37
|
for (const key in props) {
|
|
@@ -63,7 +46,7 @@ const defineContainer = (name, defineCustomElement, componentProps = [], modelPr
|
|
|
63
46
|
}
|
|
64
47
|
};
|
|
65
48
|
return () => {
|
|
66
|
-
|
|
49
|
+
props[modelProp];
|
|
67
50
|
getComponentClasses(attrs.class).forEach((value) => {
|
|
68
51
|
classes.add(value);
|
|
69
52
|
});
|
|
@@ -87,22 +70,9 @@ const defineContainer = (name, defineCustomElement, componentProps = [], modelPr
|
|
|
87
70
|
propsToAdd[key] = value;
|
|
88
71
|
}
|
|
89
72
|
}
|
|
90
|
-
if (modelProp) {
|
|
91
|
-
if (props[MODEL_VALUE] !== EMPTY_PROP) {
|
|
92
|
-
propsToAdd = {
|
|
93
|
-
...propsToAdd,
|
|
94
|
-
[modelProp]: props[MODEL_VALUE]
|
|
95
|
-
};
|
|
96
|
-
} else if (modelPropValue !== EMPTY_PROP) {
|
|
97
|
-
propsToAdd = {
|
|
98
|
-
...propsToAdd,
|
|
99
|
-
[modelProp]: modelPropValue
|
|
100
|
-
};
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
73
|
const newTagName = typeof tagNameTransformer === "function" ? tagNameTransformer(name) : name;
|
|
104
74
|
const node = vue.h(newTagName, propsToAdd, slots.default && slots.default());
|
|
105
|
-
return
|
|
75
|
+
return node ;
|
|
106
76
|
};
|
|
107
77
|
});
|
|
108
78
|
if (typeof Container !== "function") {
|
|
@@ -113,10 +83,6 @@ const defineContainer = (name, defineCustomElement, componentProps = [], modelPr
|
|
|
113
83
|
componentProps.forEach((componentProp) => {
|
|
114
84
|
Container.props[componentProp] = DEFAULT_EMPTY_PROP;
|
|
115
85
|
});
|
|
116
|
-
if (modelProp) {
|
|
117
|
-
Container.props[MODEL_VALUE] = DEFAULT_EMPTY_PROP;
|
|
118
|
-
Container.emits = [UPDATE_VALUE_EVENT];
|
|
119
|
-
}
|
|
120
86
|
}
|
|
121
87
|
return Container;
|
|
122
88
|
};
|
|
@@ -141,6 +107,7 @@ const KolAlert = /* @__PURE__ */ defineContainer("kol-alert", void 0, [
|
|
|
141
107
|
"_variant"
|
|
142
108
|
]);
|
|
143
109
|
const KolAvatar = /* @__PURE__ */ defineContainer("kol-avatar", void 0, [
|
|
110
|
+
"_color",
|
|
144
111
|
"_src",
|
|
145
112
|
"_label"
|
|
146
113
|
]);
|
|
@@ -165,19 +132,18 @@ const KolButton = /* @__PURE__ */ defineContainer("kol-button", void 0, [
|
|
|
165
132
|
"_hideLabel",
|
|
166
133
|
"_icons",
|
|
167
134
|
"_id",
|
|
135
|
+
"_inline",
|
|
168
136
|
"_label",
|
|
169
137
|
"_name",
|
|
170
138
|
"_on",
|
|
171
139
|
"_role",
|
|
172
140
|
"_shortKey",
|
|
173
141
|
"_syncValueBySelector",
|
|
174
|
-
"_tabIndex",
|
|
175
142
|
"_tooltipAlign",
|
|
176
143
|
"_type",
|
|
177
144
|
"_value",
|
|
178
145
|
"_variant"
|
|
179
146
|
]);
|
|
180
|
-
const KolButtonGroup = /* @__PURE__ */ defineContainer("kol-button-group", void 0);
|
|
181
147
|
const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0, [
|
|
182
148
|
"_accessKey",
|
|
183
149
|
"_ariaControls",
|
|
@@ -188,13 +154,13 @@ const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0,
|
|
|
188
154
|
"_hideLabel",
|
|
189
155
|
"_icons",
|
|
190
156
|
"_id",
|
|
157
|
+
"_inline",
|
|
191
158
|
"_label",
|
|
192
159
|
"_name",
|
|
193
160
|
"_on",
|
|
194
161
|
"_role",
|
|
195
162
|
"_shortKey",
|
|
196
163
|
"_syncValueBySelector",
|
|
197
|
-
"_tabIndex",
|
|
198
164
|
"_tooltipAlign",
|
|
199
165
|
"_type",
|
|
200
166
|
"_value"
|
|
@@ -205,12 +171,17 @@ const KolCard = /* @__PURE__ */ defineContainer("kol-card", void 0, [
|
|
|
205
171
|
"_label",
|
|
206
172
|
"_level"
|
|
207
173
|
]);
|
|
174
|
+
const KolCardWc = /* @__PURE__ */ defineContainer("kol-card-wc", void 0, [
|
|
175
|
+
"_on",
|
|
176
|
+
"_hasCloser",
|
|
177
|
+
"_label",
|
|
178
|
+
"_level"
|
|
179
|
+
]);
|
|
208
180
|
const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
209
181
|
"_accessKey",
|
|
210
182
|
"_placeholder",
|
|
211
|
-
"_alert",
|
|
212
183
|
"_disabled",
|
|
213
|
-
"
|
|
184
|
+
"_hideMsg",
|
|
214
185
|
"_hideLabel",
|
|
215
186
|
"_hint",
|
|
216
187
|
"_icons",
|
|
@@ -219,11 +190,11 @@ const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
|
219
190
|
"_msg",
|
|
220
191
|
"_name",
|
|
221
192
|
"_on",
|
|
193
|
+
"_hideClearButton",
|
|
222
194
|
"_suggestions",
|
|
223
195
|
"_required",
|
|
224
196
|
"_shortKey",
|
|
225
197
|
"_syncValueBySelector",
|
|
226
|
-
"_tabIndex",
|
|
227
198
|
"_tooltipAlign",
|
|
228
199
|
"_touched",
|
|
229
200
|
"_value"
|
|
@@ -238,8 +209,8 @@ const KolDetails = /* @__PURE__ */ defineContainer("kol-details", void 0, [
|
|
|
238
209
|
const KolDrawer = /* @__PURE__ */ defineContainer("kol-drawer", void 0, [
|
|
239
210
|
"_open",
|
|
240
211
|
"_align",
|
|
212
|
+
"_hasCloser",
|
|
241
213
|
"_label",
|
|
242
|
-
"_modal",
|
|
243
214
|
"_on"
|
|
244
215
|
]);
|
|
245
216
|
const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
@@ -250,8 +221,7 @@ const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
|
250
221
|
const KolHeading = /* @__PURE__ */ defineContainer("kol-heading", void 0, [
|
|
251
222
|
"_label",
|
|
252
223
|
"_level",
|
|
253
|
-
"_secondaryHeadline"
|
|
254
|
-
"_variant"
|
|
224
|
+
"_secondaryHeadline"
|
|
255
225
|
]);
|
|
256
226
|
const KolIcon = /* @__PURE__ */ defineContainer("kol-icon", void 0, [
|
|
257
227
|
"_icons",
|
|
@@ -264,14 +234,11 @@ const KolImage = /* @__PURE__ */ defineContainer("kol-image", void 0, [
|
|
|
264
234
|
"_src",
|
|
265
235
|
"_srcset"
|
|
266
236
|
]);
|
|
267
|
-
const KolIndentedText = /* @__PURE__ */ defineContainer("kol-indented-text", void 0);
|
|
268
237
|
const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", void 0, [
|
|
269
238
|
"_accessKey",
|
|
270
|
-
"_alert",
|
|
271
239
|
"_checked",
|
|
272
|
-
"
|
|
240
|
+
"_hideMsg",
|
|
273
241
|
"_disabled",
|
|
274
|
-
"_error",
|
|
275
242
|
"_hideLabel",
|
|
276
243
|
"_hint",
|
|
277
244
|
"_icons",
|
|
@@ -285,7 +252,6 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
285
252
|
"_required",
|
|
286
253
|
"_shortKey",
|
|
287
254
|
"_syncValueBySelector",
|
|
288
|
-
"_tabIndex",
|
|
289
255
|
"_tooltipAlign",
|
|
290
256
|
"_touched",
|
|
291
257
|
"_value",
|
|
@@ -293,11 +259,9 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
293
259
|
]);
|
|
294
260
|
const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0, [
|
|
295
261
|
"_accessKey",
|
|
296
|
-
"_alert",
|
|
297
262
|
"_autoComplete",
|
|
298
263
|
"_disabled",
|
|
299
|
-
"
|
|
300
|
-
"_hideError",
|
|
264
|
+
"_hideMsg",
|
|
301
265
|
"_hideLabel",
|
|
302
266
|
"_hint",
|
|
303
267
|
"_icons",
|
|
@@ -310,18 +274,15 @@ const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0,
|
|
|
310
274
|
"_smartButton",
|
|
311
275
|
"_suggestions",
|
|
312
276
|
"_syncValueBySelector",
|
|
313
|
-
"_tabIndex",
|
|
314
277
|
"_tooltipAlign",
|
|
315
278
|
"_touched",
|
|
316
279
|
"_value"
|
|
317
280
|
]);
|
|
318
281
|
const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
319
282
|
"_accessKey",
|
|
320
|
-
"_alert",
|
|
321
283
|
"_autoComplete",
|
|
322
284
|
"_disabled",
|
|
323
|
-
"
|
|
324
|
-
"_hideError",
|
|
285
|
+
"_hideMsg",
|
|
325
286
|
"_hideLabel",
|
|
326
287
|
"_hint",
|
|
327
288
|
"_icons",
|
|
@@ -339,7 +300,6 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
339
300
|
"_suggestions",
|
|
340
301
|
"_syncValueBySelector",
|
|
341
302
|
"_step",
|
|
342
|
-
"_tabIndex",
|
|
343
303
|
"_tooltipAlign",
|
|
344
304
|
"_touched",
|
|
345
305
|
"_type",
|
|
@@ -347,12 +307,11 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
347
307
|
]);
|
|
348
308
|
const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0, [
|
|
349
309
|
"_accessKey",
|
|
350
|
-
"_alert",
|
|
351
310
|
"_autoComplete",
|
|
352
|
-
"_disabled",
|
|
353
|
-
"_error",
|
|
354
311
|
"_hasCounter",
|
|
355
|
-
"
|
|
312
|
+
"_maxLengthBehavior",
|
|
313
|
+
"_disabled",
|
|
314
|
+
"_hideMsg",
|
|
356
315
|
"_hideLabel",
|
|
357
316
|
"_hint",
|
|
358
317
|
"_icons",
|
|
@@ -371,7 +330,6 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
371
330
|
"_smartButton",
|
|
372
331
|
"_suggestions",
|
|
373
332
|
"_syncValueBySelector",
|
|
374
|
-
"_tabIndex",
|
|
375
333
|
"_tooltipAlign",
|
|
376
334
|
"_touched",
|
|
377
335
|
"_value"
|
|
@@ -379,10 +337,8 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
379
337
|
const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
380
338
|
"_accept",
|
|
381
339
|
"_accessKey",
|
|
382
|
-
"_alert",
|
|
383
340
|
"_disabled",
|
|
384
|
-
"
|
|
385
|
-
"_hideError",
|
|
341
|
+
"_hideMsg",
|
|
386
342
|
"_hideLabel",
|
|
387
343
|
"_hint",
|
|
388
344
|
"_icons",
|
|
@@ -396,18 +352,14 @@ const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
|
396
352
|
"_shortKey",
|
|
397
353
|
"_smartButton",
|
|
398
354
|
"_syncValueBySelector",
|
|
399
|
-
"_tabIndex",
|
|
400
355
|
"_tooltipAlign",
|
|
401
|
-
"_touched"
|
|
402
|
-
"_value"
|
|
356
|
+
"_touched"
|
|
403
357
|
]);
|
|
404
358
|
const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void 0, [
|
|
405
359
|
"_accessKey",
|
|
406
|
-
"_alert",
|
|
407
360
|
"_autoComplete",
|
|
408
361
|
"_disabled",
|
|
409
|
-
"
|
|
410
|
-
"_hideError",
|
|
362
|
+
"_hideMsg",
|
|
411
363
|
"_hideLabel",
|
|
412
364
|
"_hint",
|
|
413
365
|
"_icons",
|
|
@@ -426,19 +378,17 @@ const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void
|
|
|
426
378
|
"_suggestions",
|
|
427
379
|
"_step",
|
|
428
380
|
"_syncValueBySelector",
|
|
429
|
-
"_tabIndex",
|
|
430
381
|
"_tooltipAlign",
|
|
431
382
|
"_touched",
|
|
432
383
|
"_value"
|
|
433
384
|
]);
|
|
434
385
|
const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", void 0, [
|
|
435
386
|
"_accessKey",
|
|
436
|
-
"_alert",
|
|
437
387
|
"_autoComplete",
|
|
438
|
-
"_disabled",
|
|
439
|
-
"_error",
|
|
440
388
|
"_hasCounter",
|
|
441
|
-
"
|
|
389
|
+
"_maxLengthBehavior",
|
|
390
|
+
"_disabled",
|
|
391
|
+
"_hideMsg",
|
|
442
392
|
"_hideLabel",
|
|
443
393
|
"_hint",
|
|
444
394
|
"_icons",
|
|
@@ -455,18 +405,14 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
455
405
|
"_shortKey",
|
|
456
406
|
"_smartButton",
|
|
457
407
|
"_syncValueBySelector",
|
|
458
|
-
"_tabIndex",
|
|
459
408
|
"_tooltipAlign",
|
|
460
409
|
"_touched",
|
|
461
410
|
"_value",
|
|
462
411
|
"_variant"
|
|
463
412
|
]);
|
|
464
413
|
const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0, [
|
|
465
|
-
"_accessKey",
|
|
466
|
-
"_alert",
|
|
467
414
|
"_disabled",
|
|
468
|
-
"
|
|
469
|
-
"_hideError",
|
|
415
|
+
"_hideMsg",
|
|
470
416
|
"_hideLabel",
|
|
471
417
|
"_hint",
|
|
472
418
|
"_id",
|
|
@@ -477,20 +423,16 @@ const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0,
|
|
|
477
423
|
"_options",
|
|
478
424
|
"_orientation",
|
|
479
425
|
"_required",
|
|
480
|
-
"_shortKey",
|
|
481
426
|
"_syncValueBySelector",
|
|
482
|
-
"_tabIndex",
|
|
483
427
|
"_tooltipAlign",
|
|
484
428
|
"_touched",
|
|
485
429
|
"_value"
|
|
486
430
|
]);
|
|
487
431
|
const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0, [
|
|
488
432
|
"_accessKey",
|
|
489
|
-
"_alert",
|
|
490
433
|
"_autoComplete",
|
|
491
434
|
"_disabled",
|
|
492
|
-
"
|
|
493
|
-
"_hideError",
|
|
435
|
+
"_hideMsg",
|
|
494
436
|
"_hideLabel",
|
|
495
437
|
"_hint",
|
|
496
438
|
"_icons",
|
|
@@ -505,19 +447,17 @@ const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0,
|
|
|
505
447
|
"_step",
|
|
506
448
|
"_suggestions",
|
|
507
449
|
"_syncValueBySelector",
|
|
508
|
-
"_tabIndex",
|
|
509
450
|
"_tooltipAlign",
|
|
510
451
|
"_touched",
|
|
511
452
|
"_value"
|
|
512
453
|
]);
|
|
513
454
|
const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
514
455
|
"_accessKey",
|
|
515
|
-
"_alert",
|
|
516
456
|
"_autoComplete",
|
|
517
|
-
"_disabled",
|
|
518
|
-
"_error",
|
|
519
457
|
"_hasCounter",
|
|
520
|
-
"
|
|
458
|
+
"_maxLengthBehavior",
|
|
459
|
+
"_disabled",
|
|
460
|
+
"_hideMsg",
|
|
521
461
|
"_hideLabel",
|
|
522
462
|
"_hint",
|
|
523
463
|
"_icons",
|
|
@@ -532,10 +472,10 @@ const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
|
532
472
|
"_readOnly",
|
|
533
473
|
"_required",
|
|
534
474
|
"_shortKey",
|
|
475
|
+
"_spellCheck",
|
|
535
476
|
"_suggestions",
|
|
536
477
|
"_smartButton",
|
|
537
478
|
"_syncValueBySelector",
|
|
538
|
-
"_tabIndex",
|
|
539
479
|
"_tooltipAlign",
|
|
540
480
|
"_touched",
|
|
541
481
|
"_type",
|
|
@@ -548,23 +488,26 @@ const KolKolibri = /* @__PURE__ */ defineContainer("kol-kolibri", void 0, [
|
|
|
548
488
|
const KolLink = /* @__PURE__ */ defineContainer("kol-link", void 0, [
|
|
549
489
|
"_accessKey",
|
|
550
490
|
"_ariaCurrentValue",
|
|
491
|
+
"_ariaControls",
|
|
551
492
|
"_ariaDescription",
|
|
493
|
+
"_ariaExpanded",
|
|
552
494
|
"_disabled",
|
|
553
495
|
"_download",
|
|
554
496
|
"_hideLabel",
|
|
555
497
|
"_href",
|
|
556
498
|
"_icons",
|
|
499
|
+
"_inline",
|
|
557
500
|
"_label",
|
|
558
501
|
"_on",
|
|
559
502
|
"_role",
|
|
560
503
|
"_shortKey",
|
|
561
|
-
"_tabIndex",
|
|
562
504
|
"_target",
|
|
563
505
|
"_tooltipAlign"
|
|
564
506
|
]);
|
|
565
507
|
const KolLinkButton = /* @__PURE__ */ defineContainer("kol-link-button", void 0, [
|
|
566
508
|
"_accessKey",
|
|
567
509
|
"_ariaCurrentValue",
|
|
510
|
+
"_ariaControls",
|
|
568
511
|
"_ariaDescription",
|
|
569
512
|
"_customClass",
|
|
570
513
|
"_disabled",
|
|
@@ -576,25 +519,15 @@ const KolLinkButton = /* @__PURE__ */ defineContainer("kol-link-button", void 0,
|
|
|
576
519
|
"_on",
|
|
577
520
|
"_role",
|
|
578
521
|
"_shortKey",
|
|
579
|
-
"_tabIndex",
|
|
580
522
|
"_target",
|
|
581
523
|
"_tooltipAlign",
|
|
582
524
|
"_variant"
|
|
583
525
|
]);
|
|
584
|
-
const KolLinkGroup = /* @__PURE__ */ defineContainer("kol-link-group", void 0, [
|
|
585
|
-
"_listStyleType",
|
|
586
|
-
"_label",
|
|
587
|
-
"_links",
|
|
588
|
-
"_orientation"
|
|
589
|
-
]);
|
|
590
|
-
const KolLogo = /* @__PURE__ */ defineContainer("kol-logo", void 0, [
|
|
591
|
-
"_org"
|
|
592
|
-
]);
|
|
593
526
|
const KolModal = /* @__PURE__ */ defineContainer("kol-modal", void 0, [
|
|
594
|
-
"_activeElement",
|
|
595
527
|
"_label",
|
|
596
528
|
"_on",
|
|
597
|
-
"_width"
|
|
529
|
+
"_width",
|
|
530
|
+
"_variant"
|
|
598
531
|
]);
|
|
599
532
|
const KolNav = /* @__PURE__ */ defineContainer("kol-nav", void 0, [
|
|
600
533
|
"_collapsible",
|
|
@@ -602,8 +535,7 @@ const KolNav = /* @__PURE__ */ defineContainer("kol-nav", void 0, [
|
|
|
602
535
|
"_hasIconsWhenExpanded",
|
|
603
536
|
"_hideLabel",
|
|
604
537
|
"_label",
|
|
605
|
-
"_links"
|
|
606
|
-
"_orientation"
|
|
538
|
+
"_links"
|
|
607
539
|
]);
|
|
608
540
|
const KolPagination = /* @__PURE__ */ defineContainer("kol-pagination", void 0, [
|
|
609
541
|
"_boundaryCount",
|
|
@@ -618,6 +550,67 @@ const KolPagination = /* @__PURE__ */ defineContainer("kol-pagination", void 0,
|
|
|
618
550
|
"_tooltipAlign",
|
|
619
551
|
"_max"
|
|
620
552
|
]);
|
|
553
|
+
const KolPaginationWc = /* @__PURE__ */ defineContainer("kol-pagination-wc", void 0, [
|
|
554
|
+
"_boundaryCount",
|
|
555
|
+
"_customClass",
|
|
556
|
+
"_label",
|
|
557
|
+
"_hasButtons",
|
|
558
|
+
"_page",
|
|
559
|
+
"_pageSize",
|
|
560
|
+
"_pageSizeOptions",
|
|
561
|
+
"_on",
|
|
562
|
+
"_siblingCount",
|
|
563
|
+
"_tooltipAlign",
|
|
564
|
+
"_max"
|
|
565
|
+
]);
|
|
566
|
+
const KolPopoverButton = /* @__PURE__ */ defineContainer("kol-popover-button", void 0, [
|
|
567
|
+
"_accessKey",
|
|
568
|
+
"_ariaControls",
|
|
569
|
+
"_ariaDescription",
|
|
570
|
+
"_ariaSelected",
|
|
571
|
+
"_customClass",
|
|
572
|
+
"_disabled",
|
|
573
|
+
"_hideLabel",
|
|
574
|
+
"_icons",
|
|
575
|
+
"_inline",
|
|
576
|
+
"_id",
|
|
577
|
+
"_label",
|
|
578
|
+
"_name",
|
|
579
|
+
"_on",
|
|
580
|
+
"_popoverAlign",
|
|
581
|
+
"_role",
|
|
582
|
+
"_shortKey",
|
|
583
|
+
"_syncValueBySelector",
|
|
584
|
+
"_tabIndex",
|
|
585
|
+
"_tooltipAlign",
|
|
586
|
+
"_type",
|
|
587
|
+
"_value",
|
|
588
|
+
"_variant"
|
|
589
|
+
]);
|
|
590
|
+
const KolPopoverButtonWc = /* @__PURE__ */ defineContainer("kol-popover-button-wc", void 0, [
|
|
591
|
+
"_accessKey",
|
|
592
|
+
"_ariaControls",
|
|
593
|
+
"_ariaDescription",
|
|
594
|
+
"_ariaSelected",
|
|
595
|
+
"_customClass",
|
|
596
|
+
"_disabled",
|
|
597
|
+
"_hideLabel",
|
|
598
|
+
"_icons",
|
|
599
|
+
"_id",
|
|
600
|
+
"_inline",
|
|
601
|
+
"_label",
|
|
602
|
+
"_name",
|
|
603
|
+
"_on",
|
|
604
|
+
"_popoverAlign",
|
|
605
|
+
"_role",
|
|
606
|
+
"_shortKey",
|
|
607
|
+
"_syncValueBySelector",
|
|
608
|
+
"_tabIndex",
|
|
609
|
+
"_tooltipAlign",
|
|
610
|
+
"_type",
|
|
611
|
+
"_value",
|
|
612
|
+
"_variant"
|
|
613
|
+
]);
|
|
621
614
|
const KolProgress = /* @__PURE__ */ defineContainer("kol-progress", void 0, [
|
|
622
615
|
"_label",
|
|
623
616
|
"_max",
|
|
@@ -633,10 +626,8 @@ const KolQuote = /* @__PURE__ */ defineContainer("kol-quote", void 0, [
|
|
|
633
626
|
]);
|
|
634
627
|
const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
635
628
|
"_accessKey",
|
|
636
|
-
"_alert",
|
|
637
629
|
"_disabled",
|
|
638
|
-
"
|
|
639
|
-
"_hideError",
|
|
630
|
+
"_hideMsg",
|
|
640
631
|
"_hideLabel",
|
|
641
632
|
"_hint",
|
|
642
633
|
"_icons",
|
|
@@ -659,9 +650,8 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
659
650
|
const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", void 0, [
|
|
660
651
|
"_accessKey",
|
|
661
652
|
"_placeholder",
|
|
662
|
-
"_alert",
|
|
663
653
|
"_disabled",
|
|
664
|
-
"
|
|
654
|
+
"_hideMsg",
|
|
665
655
|
"_hideLabel",
|
|
666
656
|
"_hint",
|
|
667
657
|
"_icons",
|
|
@@ -674,10 +664,11 @@ const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", voi
|
|
|
674
664
|
"_required",
|
|
675
665
|
"_shortKey",
|
|
676
666
|
"_syncValueBySelector",
|
|
677
|
-
"_tabIndex",
|
|
678
667
|
"_tooltipAlign",
|
|
679
668
|
"_touched",
|
|
680
|
-
"_value"
|
|
669
|
+
"_value",
|
|
670
|
+
"_hideClearButton",
|
|
671
|
+
"_rows"
|
|
681
672
|
]);
|
|
682
673
|
const KolSkipNav = /* @__PURE__ */ defineContainer("kol-skip-nav", void 0, [
|
|
683
674
|
"_label",
|
|
@@ -685,10 +676,13 @@ const KolSkipNav = /* @__PURE__ */ defineContainer("kol-skip-nav", void 0, [
|
|
|
685
676
|
]);
|
|
686
677
|
const KolSpin = /* @__PURE__ */ defineContainer("kol-spin", void 0, [
|
|
687
678
|
"_show",
|
|
679
|
+
"_label",
|
|
688
680
|
"_variant"
|
|
689
681
|
]);
|
|
690
682
|
const KolSplitButton = /* @__PURE__ */ defineContainer("kol-split-button", void 0, [
|
|
683
|
+
"_accessKey",
|
|
691
684
|
"_ariaControls",
|
|
685
|
+
"_ariaDescription",
|
|
692
686
|
"_ariaExpanded",
|
|
693
687
|
"_ariaSelected",
|
|
694
688
|
"_customClass",
|
|
@@ -700,29 +694,13 @@ const KolSplitButton = /* @__PURE__ */ defineContainer("kol-split-button", void
|
|
|
700
694
|
"_name",
|
|
701
695
|
"_on",
|
|
702
696
|
"_role",
|
|
697
|
+
"_shortKey",
|
|
703
698
|
"_syncValueBySelector",
|
|
704
|
-
"_tabIndex",
|
|
705
699
|
"_tooltipAlign",
|
|
706
700
|
"_type",
|
|
707
701
|
"_value",
|
|
708
702
|
"_variant"
|
|
709
703
|
]);
|
|
710
|
-
const KolSymbol = /* @__PURE__ */ defineContainer("kol-symbol", void 0, [
|
|
711
|
-
"_label",
|
|
712
|
-
"_symbol"
|
|
713
|
-
]);
|
|
714
|
-
const KolTable = /* @__PURE__ */ defineContainer("kol-table", void 0, [
|
|
715
|
-
"_allowMultiSort",
|
|
716
|
-
"_data",
|
|
717
|
-
"_dataFoot",
|
|
718
|
-
"_headers",
|
|
719
|
-
"_label",
|
|
720
|
-
"_minWidth",
|
|
721
|
-
"_pagination",
|
|
722
|
-
"_paginationPosition",
|
|
723
|
-
"_selection",
|
|
724
|
-
"_on"
|
|
725
|
-
]);
|
|
726
704
|
const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", void 0, [
|
|
727
705
|
"_allowMultiSort",
|
|
728
706
|
"_data",
|
|
@@ -733,7 +711,9 @@ const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", v
|
|
|
733
711
|
"_pagination",
|
|
734
712
|
"_paginationPosition",
|
|
735
713
|
"_selection",
|
|
736
|
-
"_on"
|
|
714
|
+
"_on",
|
|
715
|
+
"_tableSettings",
|
|
716
|
+
"_hasSettingsMenu"
|
|
737
717
|
]);
|
|
738
718
|
const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless", void 0, [
|
|
739
719
|
"_data",
|
|
@@ -742,11 +722,14 @@ const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless",
|
|
|
742
722
|
"_label",
|
|
743
723
|
"_minWidth",
|
|
744
724
|
"_on",
|
|
745
|
-
"_selection"
|
|
725
|
+
"_selection",
|
|
726
|
+
"_tableSettings",
|
|
727
|
+
"_hasSettingsMenu"
|
|
746
728
|
]);
|
|
747
729
|
const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
748
730
|
"_align",
|
|
749
731
|
"_behavior",
|
|
732
|
+
"_hasCreateButton",
|
|
750
733
|
"_label",
|
|
751
734
|
"_on",
|
|
752
735
|
"_selected",
|
|
@@ -755,17 +738,16 @@ const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
|
755
738
|
const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
756
739
|
"_accessKey",
|
|
757
740
|
"_adjustHeight",
|
|
758
|
-
"_alert",
|
|
759
741
|
"_disabled",
|
|
760
|
-
"
|
|
761
|
-
"_hasCounter",
|
|
762
|
-
"_hideError",
|
|
742
|
+
"_hideMsg",
|
|
763
743
|
"_hideLabel",
|
|
764
744
|
"_hint",
|
|
765
745
|
"_icons",
|
|
766
746
|
"_id",
|
|
767
747
|
"_label",
|
|
768
748
|
"_maxLength",
|
|
749
|
+
"_hasCounter",
|
|
750
|
+
"_maxLengthBehavior",
|
|
769
751
|
"_msg",
|
|
770
752
|
"_name",
|
|
771
753
|
"_on",
|
|
@@ -775,16 +757,17 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
775
757
|
"_required",
|
|
776
758
|
"_rows",
|
|
777
759
|
"_shortKey",
|
|
760
|
+
"_spellCheck",
|
|
778
761
|
"_syncValueBySelector",
|
|
779
|
-
"_tabIndex",
|
|
780
762
|
"_tooltipAlign",
|
|
781
763
|
"_touched",
|
|
782
764
|
"_value"
|
|
783
765
|
]);
|
|
784
|
-
const KolToastContainer = /* @__PURE__ */ defineContainer("kol-toast-container"
|
|
766
|
+
const KolToastContainer = /* @__PURE__ */ defineContainer("kol-toast-container");
|
|
785
767
|
const KolToolbar = /* @__PURE__ */ defineContainer("kol-toolbar", void 0, [
|
|
786
768
|
"_label",
|
|
787
|
-
"_items"
|
|
769
|
+
"_items",
|
|
770
|
+
"_orientation"
|
|
788
771
|
]);
|
|
789
772
|
const KolTree = /* @__PURE__ */ defineContainer("kol-tree", void 0, [
|
|
790
773
|
"_label"
|
|
@@ -812,9 +795,9 @@ exports.KolAvatar = KolAvatar;
|
|
|
812
795
|
exports.KolBadge = KolBadge;
|
|
813
796
|
exports.KolBreadcrumb = KolBreadcrumb;
|
|
814
797
|
exports.KolButton = KolButton;
|
|
815
|
-
exports.KolButtonGroup = KolButtonGroup;
|
|
816
798
|
exports.KolButtonLink = KolButtonLink;
|
|
817
799
|
exports.KolCard = KolCard;
|
|
800
|
+
exports.KolCardWc = KolCardWc;
|
|
818
801
|
exports.KolCombobox = KolCombobox;
|
|
819
802
|
exports.KolDetails = KolDetails;
|
|
820
803
|
exports.KolDrawer = KolDrawer;
|
|
@@ -822,7 +805,6 @@ exports.KolForm = KolForm;
|
|
|
822
805
|
exports.KolHeading = KolHeading;
|
|
823
806
|
exports.KolIcon = KolIcon;
|
|
824
807
|
exports.KolImage = KolImage;
|
|
825
|
-
exports.KolIndentedText = KolIndentedText;
|
|
826
808
|
exports.KolInputCheckbox = KolInputCheckbox;
|
|
827
809
|
exports.KolInputColor = KolInputColor;
|
|
828
810
|
exports.KolInputDate = KolInputDate;
|
|
@@ -836,11 +818,12 @@ exports.KolInputText = KolInputText;
|
|
|
836
818
|
exports.KolKolibri = KolKolibri;
|
|
837
819
|
exports.KolLink = KolLink;
|
|
838
820
|
exports.KolLinkButton = KolLinkButton;
|
|
839
|
-
exports.KolLinkGroup = KolLinkGroup;
|
|
840
|
-
exports.KolLogo = KolLogo;
|
|
841
821
|
exports.KolModal = KolModal;
|
|
842
822
|
exports.KolNav = KolNav;
|
|
843
823
|
exports.KolPagination = KolPagination;
|
|
824
|
+
exports.KolPaginationWc = KolPaginationWc;
|
|
825
|
+
exports.KolPopoverButton = KolPopoverButton;
|
|
826
|
+
exports.KolPopoverButtonWc = KolPopoverButtonWc;
|
|
844
827
|
exports.KolProgress = KolProgress;
|
|
845
828
|
exports.KolQuote = KolQuote;
|
|
846
829
|
exports.KolSelect = KolSelect;
|
|
@@ -848,8 +831,6 @@ exports.KolSingleSelect = KolSingleSelect;
|
|
|
848
831
|
exports.KolSkipNav = KolSkipNav;
|
|
849
832
|
exports.KolSpin = KolSpin;
|
|
850
833
|
exports.KolSplitButton = KolSplitButton;
|
|
851
|
-
exports.KolSymbol = KolSymbol;
|
|
852
|
-
exports.KolTable = KolTable;
|
|
853
834
|
exports.KolTableStateful = KolTableStateful;
|
|
854
835
|
exports.KolTableStateless = KolTableStateless;
|
|
855
836
|
exports.KolTabs = KolTabs;
|