@public-ui/vue 4.0.0-alpha.0 → 4.0.0-alpha.2
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 +124 -147
- 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 +122 -143
- 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
|
};
|
|
@@ -171,13 +137,11 @@ const KolButton = /* @__PURE__ */ defineContainer("kol-button", void 0, [
|
|
|
171
137
|
"_role",
|
|
172
138
|
"_shortKey",
|
|
173
139
|
"_syncValueBySelector",
|
|
174
|
-
"_tabIndex",
|
|
175
140
|
"_tooltipAlign",
|
|
176
141
|
"_type",
|
|
177
142
|
"_value",
|
|
178
143
|
"_variant"
|
|
179
144
|
]);
|
|
180
|
-
const KolButtonGroup = /* @__PURE__ */ defineContainer("kol-button-group", void 0);
|
|
181
145
|
const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0, [
|
|
182
146
|
"_accessKey",
|
|
183
147
|
"_ariaControls",
|
|
@@ -189,12 +153,12 @@ const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0,
|
|
|
189
153
|
"_icons",
|
|
190
154
|
"_id",
|
|
191
155
|
"_label",
|
|
156
|
+
"_variant",
|
|
192
157
|
"_name",
|
|
193
158
|
"_on",
|
|
194
159
|
"_role",
|
|
195
160
|
"_shortKey",
|
|
196
161
|
"_syncValueBySelector",
|
|
197
|
-
"_tabIndex",
|
|
198
162
|
"_tooltipAlign",
|
|
199
163
|
"_type",
|
|
200
164
|
"_value"
|
|
@@ -205,12 +169,17 @@ const KolCard = /* @__PURE__ */ defineContainer("kol-card", void 0, [
|
|
|
205
169
|
"_label",
|
|
206
170
|
"_level"
|
|
207
171
|
]);
|
|
172
|
+
const KolCardWc = /* @__PURE__ */ defineContainer("kol-card-wc", void 0, [
|
|
173
|
+
"_on",
|
|
174
|
+
"_hasCloser",
|
|
175
|
+
"_label",
|
|
176
|
+
"_level"
|
|
177
|
+
]);
|
|
208
178
|
const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
209
179
|
"_accessKey",
|
|
210
180
|
"_placeholder",
|
|
211
|
-
"_alert",
|
|
212
181
|
"_disabled",
|
|
213
|
-
"
|
|
182
|
+
"_hideMsg",
|
|
214
183
|
"_hideLabel",
|
|
215
184
|
"_hint",
|
|
216
185
|
"_icons",
|
|
@@ -223,7 +192,6 @@ const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
|
223
192
|
"_required",
|
|
224
193
|
"_shortKey",
|
|
225
194
|
"_syncValueBySelector",
|
|
226
|
-
"_tabIndex",
|
|
227
195
|
"_tooltipAlign",
|
|
228
196
|
"_touched",
|
|
229
197
|
"_value"
|
|
@@ -238,8 +206,8 @@ const KolDetails = /* @__PURE__ */ defineContainer("kol-details", void 0, [
|
|
|
238
206
|
const KolDrawer = /* @__PURE__ */ defineContainer("kol-drawer", void 0, [
|
|
239
207
|
"_open",
|
|
240
208
|
"_align",
|
|
209
|
+
"_hasCloser",
|
|
241
210
|
"_label",
|
|
242
|
-
"_modal",
|
|
243
211
|
"_on"
|
|
244
212
|
]);
|
|
245
213
|
const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
@@ -250,8 +218,7 @@ const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
|
250
218
|
const KolHeading = /* @__PURE__ */ defineContainer("kol-heading", void 0, [
|
|
251
219
|
"_label",
|
|
252
220
|
"_level",
|
|
253
|
-
"_secondaryHeadline"
|
|
254
|
-
"_variant"
|
|
221
|
+
"_secondaryHeadline"
|
|
255
222
|
]);
|
|
256
223
|
const KolIcon = /* @__PURE__ */ defineContainer("kol-icon", void 0, [
|
|
257
224
|
"_icons",
|
|
@@ -264,14 +231,11 @@ const KolImage = /* @__PURE__ */ defineContainer("kol-image", void 0, [
|
|
|
264
231
|
"_src",
|
|
265
232
|
"_srcset"
|
|
266
233
|
]);
|
|
267
|
-
const KolIndentedText = /* @__PURE__ */ defineContainer("kol-indented-text", void 0);
|
|
268
234
|
const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", void 0, [
|
|
269
235
|
"_accessKey",
|
|
270
|
-
"_alert",
|
|
271
236
|
"_checked",
|
|
272
|
-
"
|
|
237
|
+
"_hideMsg",
|
|
273
238
|
"_disabled",
|
|
274
|
-
"_error",
|
|
275
239
|
"_hideLabel",
|
|
276
240
|
"_hint",
|
|
277
241
|
"_icons",
|
|
@@ -285,7 +249,6 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
285
249
|
"_required",
|
|
286
250
|
"_shortKey",
|
|
287
251
|
"_syncValueBySelector",
|
|
288
|
-
"_tabIndex",
|
|
289
252
|
"_tooltipAlign",
|
|
290
253
|
"_touched",
|
|
291
254
|
"_value",
|
|
@@ -293,11 +256,9 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
293
256
|
]);
|
|
294
257
|
const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0, [
|
|
295
258
|
"_accessKey",
|
|
296
|
-
"_alert",
|
|
297
259
|
"_autoComplete",
|
|
298
260
|
"_disabled",
|
|
299
|
-
"
|
|
300
|
-
"_hideError",
|
|
261
|
+
"_hideMsg",
|
|
301
262
|
"_hideLabel",
|
|
302
263
|
"_hint",
|
|
303
264
|
"_icons",
|
|
@@ -310,18 +271,15 @@ const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0,
|
|
|
310
271
|
"_smartButton",
|
|
311
272
|
"_suggestions",
|
|
312
273
|
"_syncValueBySelector",
|
|
313
|
-
"_tabIndex",
|
|
314
274
|
"_tooltipAlign",
|
|
315
275
|
"_touched",
|
|
316
276
|
"_value"
|
|
317
277
|
]);
|
|
318
278
|
const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
319
279
|
"_accessKey",
|
|
320
|
-
"_alert",
|
|
321
280
|
"_autoComplete",
|
|
322
281
|
"_disabled",
|
|
323
|
-
"
|
|
324
|
-
"_hideError",
|
|
282
|
+
"_hideMsg",
|
|
325
283
|
"_hideLabel",
|
|
326
284
|
"_hint",
|
|
327
285
|
"_icons",
|
|
@@ -339,7 +297,6 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
339
297
|
"_suggestions",
|
|
340
298
|
"_syncValueBySelector",
|
|
341
299
|
"_step",
|
|
342
|
-
"_tabIndex",
|
|
343
300
|
"_tooltipAlign",
|
|
344
301
|
"_touched",
|
|
345
302
|
"_type",
|
|
@@ -347,12 +304,11 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
347
304
|
]);
|
|
348
305
|
const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0, [
|
|
349
306
|
"_accessKey",
|
|
350
|
-
"_alert",
|
|
351
307
|
"_autoComplete",
|
|
352
|
-
"_disabled",
|
|
353
|
-
"_error",
|
|
354
308
|
"_hasCounter",
|
|
355
|
-
"
|
|
309
|
+
"_maxLengthBehavior",
|
|
310
|
+
"_disabled",
|
|
311
|
+
"_hideMsg",
|
|
356
312
|
"_hideLabel",
|
|
357
313
|
"_hint",
|
|
358
314
|
"_icons",
|
|
@@ -371,7 +327,6 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
371
327
|
"_smartButton",
|
|
372
328
|
"_suggestions",
|
|
373
329
|
"_syncValueBySelector",
|
|
374
|
-
"_tabIndex",
|
|
375
330
|
"_tooltipAlign",
|
|
376
331
|
"_touched",
|
|
377
332
|
"_value"
|
|
@@ -379,10 +334,8 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
379
334
|
const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
380
335
|
"_accept",
|
|
381
336
|
"_accessKey",
|
|
382
|
-
"_alert",
|
|
383
337
|
"_disabled",
|
|
384
|
-
"
|
|
385
|
-
"_hideError",
|
|
338
|
+
"_hideMsg",
|
|
386
339
|
"_hideLabel",
|
|
387
340
|
"_hint",
|
|
388
341
|
"_icons",
|
|
@@ -396,18 +349,14 @@ const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
|
396
349
|
"_shortKey",
|
|
397
350
|
"_smartButton",
|
|
398
351
|
"_syncValueBySelector",
|
|
399
|
-
"_tabIndex",
|
|
400
352
|
"_tooltipAlign",
|
|
401
|
-
"_touched"
|
|
402
|
-
"_value"
|
|
353
|
+
"_touched"
|
|
403
354
|
]);
|
|
404
355
|
const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void 0, [
|
|
405
356
|
"_accessKey",
|
|
406
|
-
"_alert",
|
|
407
357
|
"_autoComplete",
|
|
408
358
|
"_disabled",
|
|
409
|
-
"
|
|
410
|
-
"_hideError",
|
|
359
|
+
"_hideMsg",
|
|
411
360
|
"_hideLabel",
|
|
412
361
|
"_hint",
|
|
413
362
|
"_icons",
|
|
@@ -426,19 +375,17 @@ const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void
|
|
|
426
375
|
"_suggestions",
|
|
427
376
|
"_step",
|
|
428
377
|
"_syncValueBySelector",
|
|
429
|
-
"_tabIndex",
|
|
430
378
|
"_tooltipAlign",
|
|
431
379
|
"_touched",
|
|
432
380
|
"_value"
|
|
433
381
|
]);
|
|
434
382
|
const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", void 0, [
|
|
435
383
|
"_accessKey",
|
|
436
|
-
"_alert",
|
|
437
384
|
"_autoComplete",
|
|
438
|
-
"_disabled",
|
|
439
|
-
"_error",
|
|
440
385
|
"_hasCounter",
|
|
441
|
-
"
|
|
386
|
+
"_maxLengthBehavior",
|
|
387
|
+
"_disabled",
|
|
388
|
+
"_hideMsg",
|
|
442
389
|
"_hideLabel",
|
|
443
390
|
"_hint",
|
|
444
391
|
"_icons",
|
|
@@ -455,18 +402,14 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
455
402
|
"_shortKey",
|
|
456
403
|
"_smartButton",
|
|
457
404
|
"_syncValueBySelector",
|
|
458
|
-
"_tabIndex",
|
|
459
405
|
"_tooltipAlign",
|
|
460
406
|
"_touched",
|
|
461
407
|
"_value",
|
|
462
408
|
"_variant"
|
|
463
409
|
]);
|
|
464
410
|
const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0, [
|
|
465
|
-
"_accessKey",
|
|
466
|
-
"_alert",
|
|
467
411
|
"_disabled",
|
|
468
|
-
"
|
|
469
|
-
"_hideError",
|
|
412
|
+
"_hideMsg",
|
|
470
413
|
"_hideLabel",
|
|
471
414
|
"_hint",
|
|
472
415
|
"_id",
|
|
@@ -477,20 +420,16 @@ const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0,
|
|
|
477
420
|
"_options",
|
|
478
421
|
"_orientation",
|
|
479
422
|
"_required",
|
|
480
|
-
"_shortKey",
|
|
481
423
|
"_syncValueBySelector",
|
|
482
|
-
"_tabIndex",
|
|
483
424
|
"_tooltipAlign",
|
|
484
425
|
"_touched",
|
|
485
426
|
"_value"
|
|
486
427
|
]);
|
|
487
428
|
const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0, [
|
|
488
429
|
"_accessKey",
|
|
489
|
-
"_alert",
|
|
490
430
|
"_autoComplete",
|
|
491
431
|
"_disabled",
|
|
492
|
-
"
|
|
493
|
-
"_hideError",
|
|
432
|
+
"_hideMsg",
|
|
494
433
|
"_hideLabel",
|
|
495
434
|
"_hint",
|
|
496
435
|
"_icons",
|
|
@@ -505,19 +444,17 @@ const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0,
|
|
|
505
444
|
"_step",
|
|
506
445
|
"_suggestions",
|
|
507
446
|
"_syncValueBySelector",
|
|
508
|
-
"_tabIndex",
|
|
509
447
|
"_tooltipAlign",
|
|
510
448
|
"_touched",
|
|
511
449
|
"_value"
|
|
512
450
|
]);
|
|
513
451
|
const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
514
452
|
"_accessKey",
|
|
515
|
-
"_alert",
|
|
516
453
|
"_autoComplete",
|
|
517
|
-
"_disabled",
|
|
518
|
-
"_error",
|
|
519
454
|
"_hasCounter",
|
|
520
|
-
"
|
|
455
|
+
"_maxLengthBehavior",
|
|
456
|
+
"_disabled",
|
|
457
|
+
"_hideMsg",
|
|
521
458
|
"_hideLabel",
|
|
522
459
|
"_hint",
|
|
523
460
|
"_icons",
|
|
@@ -532,10 +469,10 @@ const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
|
532
469
|
"_readOnly",
|
|
533
470
|
"_required",
|
|
534
471
|
"_shortKey",
|
|
472
|
+
"_spellCheck",
|
|
535
473
|
"_suggestions",
|
|
536
474
|
"_smartButton",
|
|
537
475
|
"_syncValueBySelector",
|
|
538
|
-
"_tabIndex",
|
|
539
476
|
"_tooltipAlign",
|
|
540
477
|
"_touched",
|
|
541
478
|
"_type",
|
|
@@ -548,23 +485,26 @@ const KolKolibri = /* @__PURE__ */ defineContainer("kol-kolibri", void 0, [
|
|
|
548
485
|
const KolLink = /* @__PURE__ */ defineContainer("kol-link", void 0, [
|
|
549
486
|
"_accessKey",
|
|
550
487
|
"_ariaCurrentValue",
|
|
488
|
+
"_ariaControls",
|
|
551
489
|
"_ariaDescription",
|
|
490
|
+
"_ariaExpanded",
|
|
552
491
|
"_disabled",
|
|
553
492
|
"_download",
|
|
554
493
|
"_hideLabel",
|
|
555
494
|
"_href",
|
|
556
495
|
"_icons",
|
|
557
496
|
"_label",
|
|
497
|
+
"_variant",
|
|
558
498
|
"_on",
|
|
559
499
|
"_role",
|
|
560
500
|
"_shortKey",
|
|
561
|
-
"_tabIndex",
|
|
562
501
|
"_target",
|
|
563
502
|
"_tooltipAlign"
|
|
564
503
|
]);
|
|
565
504
|
const KolLinkButton = /* @__PURE__ */ defineContainer("kol-link-button", void 0, [
|
|
566
505
|
"_accessKey",
|
|
567
506
|
"_ariaCurrentValue",
|
|
507
|
+
"_ariaControls",
|
|
568
508
|
"_ariaDescription",
|
|
569
509
|
"_customClass",
|
|
570
510
|
"_disabled",
|
|
@@ -576,25 +516,15 @@ const KolLinkButton = /* @__PURE__ */ defineContainer("kol-link-button", void 0,
|
|
|
576
516
|
"_on",
|
|
577
517
|
"_role",
|
|
578
518
|
"_shortKey",
|
|
579
|
-
"_tabIndex",
|
|
580
519
|
"_target",
|
|
581
520
|
"_tooltipAlign",
|
|
582
521
|
"_variant"
|
|
583
522
|
]);
|
|
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
523
|
const KolModal = /* @__PURE__ */ defineContainer("kol-modal", void 0, [
|
|
594
|
-
"_activeElement",
|
|
595
524
|
"_label",
|
|
596
525
|
"_on",
|
|
597
|
-
"_width"
|
|
526
|
+
"_width",
|
|
527
|
+
"_variant"
|
|
598
528
|
]);
|
|
599
529
|
const KolNav = /* @__PURE__ */ defineContainer("kol-nav", void 0, [
|
|
600
530
|
"_collapsible",
|
|
@@ -618,6 +548,65 @@ const KolPagination = /* @__PURE__ */ defineContainer("kol-pagination", void 0,
|
|
|
618
548
|
"_tooltipAlign",
|
|
619
549
|
"_max"
|
|
620
550
|
]);
|
|
551
|
+
const KolPaginationWc = /* @__PURE__ */ defineContainer("kol-pagination-wc", void 0, [
|
|
552
|
+
"_boundaryCount",
|
|
553
|
+
"_customClass",
|
|
554
|
+
"_label",
|
|
555
|
+
"_hasButtons",
|
|
556
|
+
"_page",
|
|
557
|
+
"_pageSize",
|
|
558
|
+
"_pageSizeOptions",
|
|
559
|
+
"_on",
|
|
560
|
+
"_siblingCount",
|
|
561
|
+
"_tooltipAlign",
|
|
562
|
+
"_max"
|
|
563
|
+
]);
|
|
564
|
+
const KolPopoverButton = /* @__PURE__ */ defineContainer("kol-popover-button", void 0, [
|
|
565
|
+
"_accessKey",
|
|
566
|
+
"_ariaControls",
|
|
567
|
+
"_ariaDescription",
|
|
568
|
+
"_ariaSelected",
|
|
569
|
+
"_customClass",
|
|
570
|
+
"_disabled",
|
|
571
|
+
"_hideLabel",
|
|
572
|
+
"_icons",
|
|
573
|
+
"_id",
|
|
574
|
+
"_label",
|
|
575
|
+
"_name",
|
|
576
|
+
"_on",
|
|
577
|
+
"_popoverAlign",
|
|
578
|
+
"_role",
|
|
579
|
+
"_shortKey",
|
|
580
|
+
"_syncValueBySelector",
|
|
581
|
+
"_tabIndex",
|
|
582
|
+
"_tooltipAlign",
|
|
583
|
+
"_type",
|
|
584
|
+
"_value",
|
|
585
|
+
"_variant"
|
|
586
|
+
]);
|
|
587
|
+
const KolPopoverButtonWc = /* @__PURE__ */ defineContainer("kol-popover-button-wc", void 0, [
|
|
588
|
+
"_accessKey",
|
|
589
|
+
"_ariaControls",
|
|
590
|
+
"_ariaDescription",
|
|
591
|
+
"_ariaSelected",
|
|
592
|
+
"_customClass",
|
|
593
|
+
"_disabled",
|
|
594
|
+
"_hideLabel",
|
|
595
|
+
"_icons",
|
|
596
|
+
"_id",
|
|
597
|
+
"_label",
|
|
598
|
+
"_name",
|
|
599
|
+
"_on",
|
|
600
|
+
"_popoverAlign",
|
|
601
|
+
"_role",
|
|
602
|
+
"_shortKey",
|
|
603
|
+
"_syncValueBySelector",
|
|
604
|
+
"_tabIndex",
|
|
605
|
+
"_tooltipAlign",
|
|
606
|
+
"_type",
|
|
607
|
+
"_value",
|
|
608
|
+
"_variant"
|
|
609
|
+
]);
|
|
621
610
|
const KolProgress = /* @__PURE__ */ defineContainer("kol-progress", void 0, [
|
|
622
611
|
"_label",
|
|
623
612
|
"_max",
|
|
@@ -633,10 +622,8 @@ const KolQuote = /* @__PURE__ */ defineContainer("kol-quote", void 0, [
|
|
|
633
622
|
]);
|
|
634
623
|
const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
635
624
|
"_accessKey",
|
|
636
|
-
"_alert",
|
|
637
625
|
"_disabled",
|
|
638
|
-
"
|
|
639
|
-
"_hideError",
|
|
626
|
+
"_hideMsg",
|
|
640
627
|
"_hideLabel",
|
|
641
628
|
"_hint",
|
|
642
629
|
"_icons",
|
|
@@ -659,9 +646,8 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
659
646
|
const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", void 0, [
|
|
660
647
|
"_accessKey",
|
|
661
648
|
"_placeholder",
|
|
662
|
-
"_alert",
|
|
663
649
|
"_disabled",
|
|
664
|
-
"
|
|
650
|
+
"_hideMsg",
|
|
665
651
|
"_hideLabel",
|
|
666
652
|
"_hint",
|
|
667
653
|
"_icons",
|
|
@@ -674,10 +660,11 @@ const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", voi
|
|
|
674
660
|
"_required",
|
|
675
661
|
"_shortKey",
|
|
676
662
|
"_syncValueBySelector",
|
|
677
|
-
"_tabIndex",
|
|
678
663
|
"_tooltipAlign",
|
|
679
664
|
"_touched",
|
|
680
|
-
"_value"
|
|
665
|
+
"_value",
|
|
666
|
+
"_hideClearButton",
|
|
667
|
+
"_rows"
|
|
681
668
|
]);
|
|
682
669
|
const KolSkipNav = /* @__PURE__ */ defineContainer("kol-skip-nav", void 0, [
|
|
683
670
|
"_label",
|
|
@@ -685,10 +672,13 @@ const KolSkipNav = /* @__PURE__ */ defineContainer("kol-skip-nav", void 0, [
|
|
|
685
672
|
]);
|
|
686
673
|
const KolSpin = /* @__PURE__ */ defineContainer("kol-spin", void 0, [
|
|
687
674
|
"_show",
|
|
675
|
+
"_label",
|
|
688
676
|
"_variant"
|
|
689
677
|
]);
|
|
690
678
|
const KolSplitButton = /* @__PURE__ */ defineContainer("kol-split-button", void 0, [
|
|
679
|
+
"_accessKey",
|
|
691
680
|
"_ariaControls",
|
|
681
|
+
"_ariaDescription",
|
|
692
682
|
"_ariaExpanded",
|
|
693
683
|
"_ariaSelected",
|
|
694
684
|
"_customClass",
|
|
@@ -700,29 +690,13 @@ const KolSplitButton = /* @__PURE__ */ defineContainer("kol-split-button", void
|
|
|
700
690
|
"_name",
|
|
701
691
|
"_on",
|
|
702
692
|
"_role",
|
|
693
|
+
"_shortKey",
|
|
703
694
|
"_syncValueBySelector",
|
|
704
|
-
"_tabIndex",
|
|
705
695
|
"_tooltipAlign",
|
|
706
696
|
"_type",
|
|
707
697
|
"_value",
|
|
708
698
|
"_variant"
|
|
709
699
|
]);
|
|
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
700
|
const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", void 0, [
|
|
727
701
|
"_allowMultiSort",
|
|
728
702
|
"_data",
|
|
@@ -733,7 +707,9 @@ const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", v
|
|
|
733
707
|
"_pagination",
|
|
734
708
|
"_paginationPosition",
|
|
735
709
|
"_selection",
|
|
736
|
-
"_on"
|
|
710
|
+
"_on",
|
|
711
|
+
"_tableSettings",
|
|
712
|
+
"_hasSettingsMenu"
|
|
737
713
|
]);
|
|
738
714
|
const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless", void 0, [
|
|
739
715
|
"_data",
|
|
@@ -742,11 +718,14 @@ const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless",
|
|
|
742
718
|
"_label",
|
|
743
719
|
"_minWidth",
|
|
744
720
|
"_on",
|
|
745
|
-
"_selection"
|
|
721
|
+
"_selection",
|
|
722
|
+
"_tableSettings",
|
|
723
|
+
"_hasSettingsMenu"
|
|
746
724
|
]);
|
|
747
725
|
const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
748
726
|
"_align",
|
|
749
727
|
"_behavior",
|
|
728
|
+
"_hasCreateButton",
|
|
750
729
|
"_label",
|
|
751
730
|
"_on",
|
|
752
731
|
"_selected",
|
|
@@ -755,17 +734,16 @@ const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
|
755
734
|
const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
756
735
|
"_accessKey",
|
|
757
736
|
"_adjustHeight",
|
|
758
|
-
"_alert",
|
|
759
737
|
"_disabled",
|
|
760
|
-
"
|
|
761
|
-
"_hasCounter",
|
|
762
|
-
"_hideError",
|
|
738
|
+
"_hideMsg",
|
|
763
739
|
"_hideLabel",
|
|
764
740
|
"_hint",
|
|
765
741
|
"_icons",
|
|
766
742
|
"_id",
|
|
767
743
|
"_label",
|
|
768
744
|
"_maxLength",
|
|
745
|
+
"_hasCounter",
|
|
746
|
+
"_maxLengthBehavior",
|
|
769
747
|
"_msg",
|
|
770
748
|
"_name",
|
|
771
749
|
"_on",
|
|
@@ -775,16 +753,17 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
775
753
|
"_required",
|
|
776
754
|
"_rows",
|
|
777
755
|
"_shortKey",
|
|
756
|
+
"_spellCheck",
|
|
778
757
|
"_syncValueBySelector",
|
|
779
|
-
"_tabIndex",
|
|
780
758
|
"_tooltipAlign",
|
|
781
759
|
"_touched",
|
|
782
760
|
"_value"
|
|
783
761
|
]);
|
|
784
|
-
const KolToastContainer = /* @__PURE__ */ defineContainer("kol-toast-container"
|
|
762
|
+
const KolToastContainer = /* @__PURE__ */ defineContainer("kol-toast-container");
|
|
785
763
|
const KolToolbar = /* @__PURE__ */ defineContainer("kol-toolbar", void 0, [
|
|
786
764
|
"_label",
|
|
787
|
-
"_items"
|
|
765
|
+
"_items",
|
|
766
|
+
"_orientation"
|
|
788
767
|
]);
|
|
789
768
|
const KolTree = /* @__PURE__ */ defineContainer("kol-tree", void 0, [
|
|
790
769
|
"_label"
|
|
@@ -812,9 +791,9 @@ exports.KolAvatar = KolAvatar;
|
|
|
812
791
|
exports.KolBadge = KolBadge;
|
|
813
792
|
exports.KolBreadcrumb = KolBreadcrumb;
|
|
814
793
|
exports.KolButton = KolButton;
|
|
815
|
-
exports.KolButtonGroup = KolButtonGroup;
|
|
816
794
|
exports.KolButtonLink = KolButtonLink;
|
|
817
795
|
exports.KolCard = KolCard;
|
|
796
|
+
exports.KolCardWc = KolCardWc;
|
|
818
797
|
exports.KolCombobox = KolCombobox;
|
|
819
798
|
exports.KolDetails = KolDetails;
|
|
820
799
|
exports.KolDrawer = KolDrawer;
|
|
@@ -822,7 +801,6 @@ exports.KolForm = KolForm;
|
|
|
822
801
|
exports.KolHeading = KolHeading;
|
|
823
802
|
exports.KolIcon = KolIcon;
|
|
824
803
|
exports.KolImage = KolImage;
|
|
825
|
-
exports.KolIndentedText = KolIndentedText;
|
|
826
804
|
exports.KolInputCheckbox = KolInputCheckbox;
|
|
827
805
|
exports.KolInputColor = KolInputColor;
|
|
828
806
|
exports.KolInputDate = KolInputDate;
|
|
@@ -836,11 +814,12 @@ exports.KolInputText = KolInputText;
|
|
|
836
814
|
exports.KolKolibri = KolKolibri;
|
|
837
815
|
exports.KolLink = KolLink;
|
|
838
816
|
exports.KolLinkButton = KolLinkButton;
|
|
839
|
-
exports.KolLinkGroup = KolLinkGroup;
|
|
840
|
-
exports.KolLogo = KolLogo;
|
|
841
817
|
exports.KolModal = KolModal;
|
|
842
818
|
exports.KolNav = KolNav;
|
|
843
819
|
exports.KolPagination = KolPagination;
|
|
820
|
+
exports.KolPaginationWc = KolPaginationWc;
|
|
821
|
+
exports.KolPopoverButton = KolPopoverButton;
|
|
822
|
+
exports.KolPopoverButtonWc = KolPopoverButtonWc;
|
|
844
823
|
exports.KolProgress = KolProgress;
|
|
845
824
|
exports.KolQuote = KolQuote;
|
|
846
825
|
exports.KolSelect = KolSelect;
|
|
@@ -848,8 +827,6 @@ exports.KolSingleSelect = KolSingleSelect;
|
|
|
848
827
|
exports.KolSkipNav = KolSkipNav;
|
|
849
828
|
exports.KolSpin = KolSpin;
|
|
850
829
|
exports.KolSplitButton = KolSplitButton;
|
|
851
|
-
exports.KolSymbol = KolSymbol;
|
|
852
|
-
exports.KolTable = KolTable;
|
|
853
830
|
exports.KolTableStateful = KolTableStateful;
|
|
854
831
|
exports.KolTableStateless = KolTableStateless;
|
|
855
832
|
exports.KolTabs = KolTabs;
|