@public-ui/vue 2.2.11 → 3.0.0-0a564237c37a5d1ca12470bdd73e4ea1eac06982.0
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 +1 -1
- package/dist/index.cjs +46 -101
- package/dist/index.d.ts +2 -7
- package/dist/index.mjs +46 -96
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ First, initialize KoliBri with a [theme](https://github.com/public-ui/kolibri/tr
|
|
|
28
28
|
|
|
29
29
|
```ts
|
|
30
30
|
import { createApp } from 'vue';
|
|
31
|
-
import { DEFAULT } from '@public-ui/
|
|
31
|
+
import { DEFAULT } from '@public-ui/theme-default';
|
|
32
32
|
import { defineCustomElements } from '@public-ui/components/dist/loader';
|
|
33
33
|
import { register } from '@public-ui/components';
|
|
34
34
|
|
package/dist/index.cjs
CHANGED
|
@@ -122,8 +122,7 @@ const defineContainer = (name, defineCustomElement, componentProps = [], modelPr
|
|
|
122
122
|
};
|
|
123
123
|
|
|
124
124
|
const KolAbbr = /* @__PURE__ */ defineContainer("kol-abbr", void 0, [
|
|
125
|
-
"_label"
|
|
126
|
-
"_tooltipAlign"
|
|
125
|
+
"_label"
|
|
127
126
|
]);
|
|
128
127
|
const KolAccordion = /* @__PURE__ */ defineContainer("kol-accordion", void 0, [
|
|
129
128
|
"_disabled",
|
|
@@ -172,13 +171,11 @@ const KolButton = /* @__PURE__ */ defineContainer("kol-button", void 0, [
|
|
|
172
171
|
"_role",
|
|
173
172
|
"_shortKey",
|
|
174
173
|
"_syncValueBySelector",
|
|
175
|
-
"_tabIndex",
|
|
176
174
|
"_tooltipAlign",
|
|
177
175
|
"_type",
|
|
178
176
|
"_value",
|
|
179
177
|
"_variant"
|
|
180
178
|
]);
|
|
181
|
-
const KolButtonGroup = /* @__PURE__ */ defineContainer("kol-button-group", void 0);
|
|
182
179
|
const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0, [
|
|
183
180
|
"_accessKey",
|
|
184
181
|
"_ariaControls",
|
|
@@ -195,7 +192,6 @@ const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0,
|
|
|
195
192
|
"_role",
|
|
196
193
|
"_shortKey",
|
|
197
194
|
"_syncValueBySelector",
|
|
198
|
-
"_tabIndex",
|
|
199
195
|
"_tooltipAlign",
|
|
200
196
|
"_type",
|
|
201
197
|
"_value"
|
|
@@ -209,9 +205,8 @@ const KolCard = /* @__PURE__ */ defineContainer("kol-card", void 0, [
|
|
|
209
205
|
const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
210
206
|
"_accessKey",
|
|
211
207
|
"_placeholder",
|
|
212
|
-
"_alert",
|
|
213
208
|
"_disabled",
|
|
214
|
-
"
|
|
209
|
+
"_hideMsg",
|
|
215
210
|
"_hideLabel",
|
|
216
211
|
"_hint",
|
|
217
212
|
"_icons",
|
|
@@ -224,7 +219,6 @@ const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
|
224
219
|
"_required",
|
|
225
220
|
"_shortKey",
|
|
226
221
|
"_syncValueBySelector",
|
|
227
|
-
"_tabIndex",
|
|
228
222
|
"_tooltipAlign",
|
|
229
223
|
"_touched",
|
|
230
224
|
"_value"
|
|
@@ -240,7 +234,6 @@ const KolDrawer = /* @__PURE__ */ defineContainer("kol-drawer", void 0, [
|
|
|
240
234
|
"_open",
|
|
241
235
|
"_align",
|
|
242
236
|
"_label",
|
|
243
|
-
"_modal",
|
|
244
237
|
"_on"
|
|
245
238
|
]);
|
|
246
239
|
const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
@@ -265,14 +258,11 @@ const KolImage = /* @__PURE__ */ defineContainer("kol-image", void 0, [
|
|
|
265
258
|
"_src",
|
|
266
259
|
"_srcset"
|
|
267
260
|
]);
|
|
268
|
-
const KolIndentedText = /* @__PURE__ */ defineContainer("kol-indented-text", void 0);
|
|
269
261
|
const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", void 0, [
|
|
270
262
|
"_accessKey",
|
|
271
|
-
"_alert",
|
|
272
263
|
"_checked",
|
|
273
|
-
"
|
|
264
|
+
"_hideMsg",
|
|
274
265
|
"_disabled",
|
|
275
|
-
"_error",
|
|
276
266
|
"_hideLabel",
|
|
277
267
|
"_hint",
|
|
278
268
|
"_icons",
|
|
@@ -286,7 +276,6 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
286
276
|
"_required",
|
|
287
277
|
"_shortKey",
|
|
288
278
|
"_syncValueBySelector",
|
|
289
|
-
"_tabIndex",
|
|
290
279
|
"_tooltipAlign",
|
|
291
280
|
"_touched",
|
|
292
281
|
"_value",
|
|
@@ -294,11 +283,9 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
294
283
|
]);
|
|
295
284
|
const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0, [
|
|
296
285
|
"_accessKey",
|
|
297
|
-
"_alert",
|
|
298
286
|
"_autoComplete",
|
|
299
287
|
"_disabled",
|
|
300
|
-
"
|
|
301
|
-
"_hideError",
|
|
288
|
+
"_hideMsg",
|
|
302
289
|
"_hideLabel",
|
|
303
290
|
"_hint",
|
|
304
291
|
"_icons",
|
|
@@ -311,18 +298,15 @@ const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0,
|
|
|
311
298
|
"_smartButton",
|
|
312
299
|
"_suggestions",
|
|
313
300
|
"_syncValueBySelector",
|
|
314
|
-
"_tabIndex",
|
|
315
301
|
"_tooltipAlign",
|
|
316
302
|
"_touched",
|
|
317
303
|
"_value"
|
|
318
304
|
]);
|
|
319
305
|
const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
320
306
|
"_accessKey",
|
|
321
|
-
"_alert",
|
|
322
307
|
"_autoComplete",
|
|
323
308
|
"_disabled",
|
|
324
|
-
"
|
|
325
|
-
"_hideError",
|
|
309
|
+
"_hideMsg",
|
|
326
310
|
"_hideLabel",
|
|
327
311
|
"_hint",
|
|
328
312
|
"_icons",
|
|
@@ -340,7 +324,6 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
340
324
|
"_suggestions",
|
|
341
325
|
"_syncValueBySelector",
|
|
342
326
|
"_step",
|
|
343
|
-
"_tabIndex",
|
|
344
327
|
"_tooltipAlign",
|
|
345
328
|
"_touched",
|
|
346
329
|
"_type",
|
|
@@ -348,12 +331,10 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
348
331
|
]);
|
|
349
332
|
const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0, [
|
|
350
333
|
"_accessKey",
|
|
351
|
-
"_alert",
|
|
352
334
|
"_autoComplete",
|
|
353
335
|
"_disabled",
|
|
354
|
-
"_error",
|
|
355
336
|
"_hasCounter",
|
|
356
|
-
"
|
|
337
|
+
"_hideMsg",
|
|
357
338
|
"_hideLabel",
|
|
358
339
|
"_hint",
|
|
359
340
|
"_icons",
|
|
@@ -372,7 +353,6 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
372
353
|
"_smartButton",
|
|
373
354
|
"_suggestions",
|
|
374
355
|
"_syncValueBySelector",
|
|
375
|
-
"_tabIndex",
|
|
376
356
|
"_tooltipAlign",
|
|
377
357
|
"_touched",
|
|
378
358
|
"_value"
|
|
@@ -380,10 +360,8 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
380
360
|
const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
381
361
|
"_accept",
|
|
382
362
|
"_accessKey",
|
|
383
|
-
"_alert",
|
|
384
363
|
"_disabled",
|
|
385
|
-
"
|
|
386
|
-
"_hideError",
|
|
364
|
+
"_hideMsg",
|
|
387
365
|
"_hideLabel",
|
|
388
366
|
"_hint",
|
|
389
367
|
"_icons",
|
|
@@ -397,18 +375,14 @@ const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
|
397
375
|
"_shortKey",
|
|
398
376
|
"_smartButton",
|
|
399
377
|
"_syncValueBySelector",
|
|
400
|
-
"_tabIndex",
|
|
401
378
|
"_tooltipAlign",
|
|
402
|
-
"_touched"
|
|
403
|
-
"_value"
|
|
379
|
+
"_touched"
|
|
404
380
|
]);
|
|
405
381
|
const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void 0, [
|
|
406
382
|
"_accessKey",
|
|
407
|
-
"_alert",
|
|
408
383
|
"_autoComplete",
|
|
409
384
|
"_disabled",
|
|
410
|
-
"
|
|
411
|
-
"_hideError",
|
|
385
|
+
"_hideMsg",
|
|
412
386
|
"_hideLabel",
|
|
413
387
|
"_hint",
|
|
414
388
|
"_icons",
|
|
@@ -427,19 +401,16 @@ const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void
|
|
|
427
401
|
"_suggestions",
|
|
428
402
|
"_step",
|
|
429
403
|
"_syncValueBySelector",
|
|
430
|
-
"_tabIndex",
|
|
431
404
|
"_tooltipAlign",
|
|
432
405
|
"_touched",
|
|
433
406
|
"_value"
|
|
434
407
|
]);
|
|
435
408
|
const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", void 0, [
|
|
436
409
|
"_accessKey",
|
|
437
|
-
"_alert",
|
|
438
410
|
"_autoComplete",
|
|
439
411
|
"_disabled",
|
|
440
|
-
"_error",
|
|
441
412
|
"_hasCounter",
|
|
442
|
-
"
|
|
413
|
+
"_hideMsg",
|
|
443
414
|
"_hideLabel",
|
|
444
415
|
"_hint",
|
|
445
416
|
"_icons",
|
|
@@ -456,7 +427,6 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
456
427
|
"_shortKey",
|
|
457
428
|
"_smartButton",
|
|
458
429
|
"_syncValueBySelector",
|
|
459
|
-
"_tabIndex",
|
|
460
430
|
"_tooltipAlign",
|
|
461
431
|
"_touched",
|
|
462
432
|
"_value",
|
|
@@ -464,10 +434,8 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
464
434
|
]);
|
|
465
435
|
const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0, [
|
|
466
436
|
"_accessKey",
|
|
467
|
-
"_alert",
|
|
468
437
|
"_disabled",
|
|
469
|
-
"
|
|
470
|
-
"_hideError",
|
|
438
|
+
"_hideMsg",
|
|
471
439
|
"_hideLabel",
|
|
472
440
|
"_hint",
|
|
473
441
|
"_id",
|
|
@@ -480,18 +448,15 @@ const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0,
|
|
|
480
448
|
"_required",
|
|
481
449
|
"_shortKey",
|
|
482
450
|
"_syncValueBySelector",
|
|
483
|
-
"_tabIndex",
|
|
484
451
|
"_tooltipAlign",
|
|
485
452
|
"_touched",
|
|
486
453
|
"_value"
|
|
487
454
|
]);
|
|
488
455
|
const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0, [
|
|
489
456
|
"_accessKey",
|
|
490
|
-
"_alert",
|
|
491
457
|
"_autoComplete",
|
|
492
458
|
"_disabled",
|
|
493
|
-
"
|
|
494
|
-
"_hideError",
|
|
459
|
+
"_hideMsg",
|
|
495
460
|
"_hideLabel",
|
|
496
461
|
"_hint",
|
|
497
462
|
"_icons",
|
|
@@ -506,19 +471,16 @@ const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0,
|
|
|
506
471
|
"_step",
|
|
507
472
|
"_suggestions",
|
|
508
473
|
"_syncValueBySelector",
|
|
509
|
-
"_tabIndex",
|
|
510
474
|
"_tooltipAlign",
|
|
511
475
|
"_touched",
|
|
512
476
|
"_value"
|
|
513
477
|
]);
|
|
514
478
|
const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
515
479
|
"_accessKey",
|
|
516
|
-
"_alert",
|
|
517
480
|
"_autoComplete",
|
|
518
481
|
"_disabled",
|
|
519
|
-
"_error",
|
|
520
482
|
"_hasCounter",
|
|
521
|
-
"
|
|
483
|
+
"_hideMsg",
|
|
522
484
|
"_hideLabel",
|
|
523
485
|
"_hint",
|
|
524
486
|
"_icons",
|
|
@@ -537,7 +499,6 @@ const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
|
537
499
|
"_suggestions",
|
|
538
500
|
"_smartButton",
|
|
539
501
|
"_syncValueBySelector",
|
|
540
|
-
"_tabIndex",
|
|
541
502
|
"_tooltipAlign",
|
|
542
503
|
"_touched",
|
|
543
504
|
"_type",
|
|
@@ -560,7 +521,6 @@ const KolLink = /* @__PURE__ */ defineContainer("kol-link", void 0, [
|
|
|
560
521
|
"_on",
|
|
561
522
|
"_role",
|
|
562
523
|
"_shortKey",
|
|
563
|
-
"_tabIndex",
|
|
564
524
|
"_target",
|
|
565
525
|
"_tooltipAlign"
|
|
566
526
|
]);
|
|
@@ -578,25 +538,15 @@ const KolLinkButton = /* @__PURE__ */ defineContainer("kol-link-button", void 0,
|
|
|
578
538
|
"_on",
|
|
579
539
|
"_role",
|
|
580
540
|
"_shortKey",
|
|
581
|
-
"_tabIndex",
|
|
582
541
|
"_target",
|
|
583
542
|
"_tooltipAlign",
|
|
584
543
|
"_variant"
|
|
585
544
|
]);
|
|
586
|
-
const KolLinkGroup = /* @__PURE__ */ defineContainer("kol-link-group", void 0, [
|
|
587
|
-
"_listStyleType",
|
|
588
|
-
"_label",
|
|
589
|
-
"_links",
|
|
590
|
-
"_orientation"
|
|
591
|
-
]);
|
|
592
|
-
const KolLogo = /* @__PURE__ */ defineContainer("kol-logo", void 0, [
|
|
593
|
-
"_org"
|
|
594
|
-
]);
|
|
595
545
|
const KolModal = /* @__PURE__ */ defineContainer("kol-modal", void 0, [
|
|
596
|
-
"_activeElement",
|
|
597
546
|
"_label",
|
|
598
547
|
"_on",
|
|
599
|
-
"_width"
|
|
548
|
+
"_width",
|
|
549
|
+
"_variant"
|
|
600
550
|
]);
|
|
601
551
|
const KolNav = /* @__PURE__ */ defineContainer("kol-nav", void 0, [
|
|
602
552
|
"_collapsible",
|
|
@@ -624,7 +574,29 @@ const KolPopoverButton = /* @__PURE__ */ defineContainer("kol-popover-button", v
|
|
|
624
574
|
"_accessKey",
|
|
625
575
|
"_ariaControls",
|
|
626
576
|
"_ariaDescription",
|
|
627
|
-
"
|
|
577
|
+
"_ariaSelected",
|
|
578
|
+
"_customClass",
|
|
579
|
+
"_disabled",
|
|
580
|
+
"_hideLabel",
|
|
581
|
+
"_icons",
|
|
582
|
+
"_id",
|
|
583
|
+
"_label",
|
|
584
|
+
"_name",
|
|
585
|
+
"_on",
|
|
586
|
+
"_popoverAlign",
|
|
587
|
+
"_role",
|
|
588
|
+
"_shortKey",
|
|
589
|
+
"_syncValueBySelector",
|
|
590
|
+
"_tabIndex",
|
|
591
|
+
"_tooltipAlign",
|
|
592
|
+
"_type",
|
|
593
|
+
"_value",
|
|
594
|
+
"_variant"
|
|
595
|
+
]);
|
|
596
|
+
const KolPopoverButtonWc = /* @__PURE__ */ defineContainer("kol-popover-button-wc", void 0, [
|
|
597
|
+
"_accessKey",
|
|
598
|
+
"_ariaControls",
|
|
599
|
+
"_ariaDescription",
|
|
628
600
|
"_ariaSelected",
|
|
629
601
|
"_customClass",
|
|
630
602
|
"_disabled",
|
|
@@ -659,10 +631,8 @@ const KolQuote = /* @__PURE__ */ defineContainer("kol-quote", void 0, [
|
|
|
659
631
|
]);
|
|
660
632
|
const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
661
633
|
"_accessKey",
|
|
662
|
-
"_alert",
|
|
663
634
|
"_disabled",
|
|
664
|
-
"
|
|
665
|
-
"_hideError",
|
|
635
|
+
"_hideMsg",
|
|
666
636
|
"_hideLabel",
|
|
667
637
|
"_hint",
|
|
668
638
|
"_icons",
|
|
@@ -685,9 +655,8 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
685
655
|
const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", void 0, [
|
|
686
656
|
"_accessKey",
|
|
687
657
|
"_placeholder",
|
|
688
|
-
"_alert",
|
|
689
658
|
"_disabled",
|
|
690
|
-
"
|
|
659
|
+
"_hideMsg",
|
|
691
660
|
"_hideLabel",
|
|
692
661
|
"_hint",
|
|
693
662
|
"_icons",
|
|
@@ -700,7 +669,6 @@ const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", voi
|
|
|
700
669
|
"_required",
|
|
701
670
|
"_shortKey",
|
|
702
671
|
"_syncValueBySelector",
|
|
703
|
-
"_tabIndex",
|
|
704
672
|
"_tooltipAlign",
|
|
705
673
|
"_touched",
|
|
706
674
|
"_value",
|
|
@@ -729,28 +697,11 @@ const KolSplitButton = /* @__PURE__ */ defineContainer("kol-split-button", void
|
|
|
729
697
|
"_on",
|
|
730
698
|
"_role",
|
|
731
699
|
"_syncValueBySelector",
|
|
732
|
-
"_tabIndex",
|
|
733
700
|
"_tooltipAlign",
|
|
734
701
|
"_type",
|
|
735
702
|
"_value",
|
|
736
703
|
"_variant"
|
|
737
704
|
]);
|
|
738
|
-
const KolSymbol = /* @__PURE__ */ defineContainer("kol-symbol", void 0, [
|
|
739
|
-
"_label",
|
|
740
|
-
"_symbol"
|
|
741
|
-
]);
|
|
742
|
-
const KolTable = /* @__PURE__ */ defineContainer("kol-table", void 0, [
|
|
743
|
-
"_allowMultiSort",
|
|
744
|
-
"_data",
|
|
745
|
-
"_dataFoot",
|
|
746
|
-
"_headers",
|
|
747
|
-
"_label",
|
|
748
|
-
"_minWidth",
|
|
749
|
-
"_pagination",
|
|
750
|
-
"_paginationPosition",
|
|
751
|
-
"_selection",
|
|
752
|
-
"_on"
|
|
753
|
-
]);
|
|
754
705
|
const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", void 0, [
|
|
755
706
|
"_allowMultiSort",
|
|
756
707
|
"_data",
|
|
@@ -761,7 +712,8 @@ const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", v
|
|
|
761
712
|
"_pagination",
|
|
762
713
|
"_paginationPosition",
|
|
763
714
|
"_selection",
|
|
764
|
-
"_on"
|
|
715
|
+
"_on",
|
|
716
|
+
"_tableSettings"
|
|
765
717
|
]);
|
|
766
718
|
const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless", void 0, [
|
|
767
719
|
"_data",
|
|
@@ -770,7 +722,8 @@ const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless",
|
|
|
770
722
|
"_label",
|
|
771
723
|
"_minWidth",
|
|
772
724
|
"_on",
|
|
773
|
-
"_selection"
|
|
725
|
+
"_selection",
|
|
726
|
+
"_tableSettings"
|
|
774
727
|
]);
|
|
775
728
|
const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
776
729
|
"_align",
|
|
@@ -783,11 +736,9 @@ const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
|
783
736
|
const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
784
737
|
"_accessKey",
|
|
785
738
|
"_adjustHeight",
|
|
786
|
-
"_alert",
|
|
787
739
|
"_disabled",
|
|
788
|
-
"_error",
|
|
789
740
|
"_hasCounter",
|
|
790
|
-
"
|
|
741
|
+
"_hideMsg",
|
|
791
742
|
"_hideLabel",
|
|
792
743
|
"_hint",
|
|
793
744
|
"_icons",
|
|
@@ -805,7 +756,6 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
805
756
|
"_shortKey",
|
|
806
757
|
"_spellCheck",
|
|
807
758
|
"_syncValueBySelector",
|
|
808
|
-
"_tabIndex",
|
|
809
759
|
"_tooltipAlign",
|
|
810
760
|
"_touched",
|
|
811
761
|
"_value"
|
|
@@ -841,7 +791,6 @@ exports.KolAvatar = KolAvatar;
|
|
|
841
791
|
exports.KolBadge = KolBadge;
|
|
842
792
|
exports.KolBreadcrumb = KolBreadcrumb;
|
|
843
793
|
exports.KolButton = KolButton;
|
|
844
|
-
exports.KolButtonGroup = KolButtonGroup;
|
|
845
794
|
exports.KolButtonLink = KolButtonLink;
|
|
846
795
|
exports.KolCard = KolCard;
|
|
847
796
|
exports.KolCombobox = KolCombobox;
|
|
@@ -851,7 +800,6 @@ exports.KolForm = KolForm;
|
|
|
851
800
|
exports.KolHeading = KolHeading;
|
|
852
801
|
exports.KolIcon = KolIcon;
|
|
853
802
|
exports.KolImage = KolImage;
|
|
854
|
-
exports.KolIndentedText = KolIndentedText;
|
|
855
803
|
exports.KolInputCheckbox = KolInputCheckbox;
|
|
856
804
|
exports.KolInputColor = KolInputColor;
|
|
857
805
|
exports.KolInputDate = KolInputDate;
|
|
@@ -865,12 +813,11 @@ exports.KolInputText = KolInputText;
|
|
|
865
813
|
exports.KolKolibri = KolKolibri;
|
|
866
814
|
exports.KolLink = KolLink;
|
|
867
815
|
exports.KolLinkButton = KolLinkButton;
|
|
868
|
-
exports.KolLinkGroup = KolLinkGroup;
|
|
869
|
-
exports.KolLogo = KolLogo;
|
|
870
816
|
exports.KolModal = KolModal;
|
|
871
817
|
exports.KolNav = KolNav;
|
|
872
818
|
exports.KolPagination = KolPagination;
|
|
873
819
|
exports.KolPopoverButton = KolPopoverButton;
|
|
820
|
+
exports.KolPopoverButtonWc = KolPopoverButtonWc;
|
|
874
821
|
exports.KolProgress = KolProgress;
|
|
875
822
|
exports.KolQuote = KolQuote;
|
|
876
823
|
exports.KolSelect = KolSelect;
|
|
@@ -878,8 +825,6 @@ exports.KolSingleSelect = KolSingleSelect;
|
|
|
878
825
|
exports.KolSkipNav = KolSkipNav;
|
|
879
826
|
exports.KolSpin = KolSpin;
|
|
880
827
|
exports.KolSplitButton = KolSplitButton;
|
|
881
|
-
exports.KolSymbol = KolSymbol;
|
|
882
|
-
exports.KolTable = KolTable;
|
|
883
828
|
exports.KolTableStateful = KolTableStateful;
|
|
884
829
|
exports.KolTableStateless = KolTableStateless;
|
|
885
830
|
exports.KolTabs = KolTabs;
|
package/dist/index.d.ts
CHANGED
|
@@ -15,7 +15,6 @@ declare const KolAvatar: vue.DefineSetupFnComponent<JSX.KolAvatar & InputProps<s
|
|
|
15
15
|
declare const KolBadge: vue.DefineSetupFnComponent<JSX.KolBadge & InputProps<string | number | boolean>, {}, {}, JSX.KolBadge & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
16
16
|
declare const KolBreadcrumb: vue.DefineSetupFnComponent<JSX.KolBreadcrumb & InputProps<string | number | boolean>, {}, {}, JSX.KolBreadcrumb & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
17
17
|
declare const KolButton: vue.DefineSetupFnComponent<JSX.KolButton & InputProps<string | number | boolean>, {}, {}, JSX.KolButton & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
18
|
-
declare const KolButtonGroup: vue.DefineSetupFnComponent<JSX.KolButtonGroup & InputProps<string | number | boolean>, {}, {}, JSX.KolButtonGroup & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
19
18
|
declare const KolButtonLink: vue.DefineSetupFnComponent<JSX.KolButtonLink & InputProps<string | number | boolean>, {}, {}, JSX.KolButtonLink & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
20
19
|
declare const KolCard: vue.DefineSetupFnComponent<JSX.KolCard & InputProps<string | number | boolean>, {}, {}, JSX.KolCard & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
21
20
|
declare const KolCombobox: vue.DefineSetupFnComponent<JSX.KolCombobox & InputProps<string | number | boolean>, {}, {}, JSX.KolCombobox & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -25,7 +24,6 @@ declare const KolForm: vue.DefineSetupFnComponent<JSX.KolForm & InputProps<strin
|
|
|
25
24
|
declare const KolHeading: vue.DefineSetupFnComponent<JSX.KolHeading & InputProps<string | number | boolean>, {}, {}, JSX.KolHeading & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
26
25
|
declare const KolIcon: vue.DefineSetupFnComponent<JSX.KolIcon & InputProps<string | number | boolean>, {}, {}, JSX.KolIcon & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
27
26
|
declare const KolImage: vue.DefineSetupFnComponent<JSX.KolImage & InputProps<string | number | boolean>, {}, {}, JSX.KolImage & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
28
|
-
declare const KolIndentedText: vue.DefineSetupFnComponent<JSX.KolIndentedText & InputProps<string | number | boolean>, {}, {}, JSX.KolIndentedText & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
29
27
|
declare const KolInputCheckbox: vue.DefineSetupFnComponent<JSX.KolInputCheckbox & InputProps<string | number | boolean>, {}, {}, JSX.KolInputCheckbox & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
30
28
|
declare const KolInputColor: vue.DefineSetupFnComponent<JSX.KolInputColor & InputProps<string | number | boolean>, {}, {}, JSX.KolInputColor & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
31
29
|
declare const KolInputDate: vue.DefineSetupFnComponent<JSX.KolInputDate & InputProps<string | number | boolean>, {}, {}, JSX.KolInputDate & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -39,12 +37,11 @@ declare const KolInputText: vue.DefineSetupFnComponent<JSX.KolInputText & InputP
|
|
|
39
37
|
declare const KolKolibri: vue.DefineSetupFnComponent<JSX.KolKolibri & InputProps<string | number | boolean>, {}, {}, JSX.KolKolibri & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
40
38
|
declare const KolLink: vue.DefineSetupFnComponent<JSX.KolLink & InputProps<string | number | boolean>, {}, {}, JSX.KolLink & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
41
39
|
declare const KolLinkButton: vue.DefineSetupFnComponent<JSX.KolLinkButton & InputProps<string | number | boolean>, {}, {}, JSX.KolLinkButton & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
42
|
-
declare const KolLinkGroup: vue.DefineSetupFnComponent<JSX.KolLinkGroup & InputProps<string | number | boolean>, {}, {}, JSX.KolLinkGroup & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
43
|
-
declare const KolLogo: vue.DefineSetupFnComponent<JSX.KolLogo & InputProps<string | number | boolean>, {}, {}, JSX.KolLogo & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
44
40
|
declare const KolModal: vue.DefineSetupFnComponent<JSX.KolModal & InputProps<string | number | boolean>, {}, {}, JSX.KolModal & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
45
41
|
declare const KolNav: vue.DefineSetupFnComponent<JSX.KolNav & InputProps<string | number | boolean>, {}, {}, JSX.KolNav & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
46
42
|
declare const KolPagination: vue.DefineSetupFnComponent<JSX.KolPagination & InputProps<string | number | boolean>, {}, {}, JSX.KolPagination & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
47
43
|
declare const KolPopoverButton: vue.DefineSetupFnComponent<JSX.KolPopoverButton & InputProps<string | number | boolean>, {}, {}, JSX.KolPopoverButton & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
44
|
+
declare const KolPopoverButtonWc: vue.DefineSetupFnComponent<JSX.KolPopoverButtonWc & InputProps<string | number | boolean>, {}, {}, JSX.KolPopoverButtonWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
48
45
|
declare const KolProgress: vue.DefineSetupFnComponent<JSX.KolProgress & InputProps<string | number | boolean>, {}, {}, JSX.KolProgress & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
49
46
|
declare const KolQuote: vue.DefineSetupFnComponent<JSX.KolQuote & InputProps<string | number | boolean>, {}, {}, JSX.KolQuote & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
50
47
|
declare const KolSelect: vue.DefineSetupFnComponent<JSX.KolSelect & InputProps<string | number | boolean>, {}, {}, JSX.KolSelect & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -52,8 +49,6 @@ declare const KolSingleSelect: vue.DefineSetupFnComponent<JSX.KolSingleSelect &
|
|
|
52
49
|
declare const KolSkipNav: vue.DefineSetupFnComponent<JSX.KolSkipNav & InputProps<string | number | boolean>, {}, {}, JSX.KolSkipNav & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
53
50
|
declare const KolSpin: vue.DefineSetupFnComponent<JSX.KolSpin & InputProps<string | number | boolean>, {}, {}, JSX.KolSpin & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
54
51
|
declare const KolSplitButton: vue.DefineSetupFnComponent<JSX.KolSplitButton & InputProps<string | number | boolean>, {}, {}, JSX.KolSplitButton & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
55
|
-
declare const KolSymbol: vue.DefineSetupFnComponent<JSX.KolSymbol & InputProps<string | number | boolean>, {}, {}, JSX.KolSymbol & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
56
|
-
declare const KolTable: vue.DefineSetupFnComponent<JSX.KolTable & InputProps<string | number | boolean>, {}, {}, JSX.KolTable & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
57
52
|
declare const KolTableStateful: vue.DefineSetupFnComponent<JSX.KolTableStateful & InputProps<string | number | boolean>, {}, {}, JSX.KolTableStateful & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
58
53
|
declare const KolTableStateless: vue.DefineSetupFnComponent<JSX.KolTableStateless & InputProps<string | number | boolean>, {}, {}, JSX.KolTableStateless & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
59
54
|
declare const KolTabs: vue.DefineSetupFnComponent<JSX.KolTabs & InputProps<string | number | boolean>, {}, {}, JSX.KolTabs & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -65,4 +60,4 @@ declare const KolTreeItem: vue.DefineSetupFnComponent<JSX.KolTreeItem & InputPro
|
|
|
65
60
|
declare const KolTreeItemWc: vue.DefineSetupFnComponent<JSX.KolTreeItemWc & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeItemWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
66
61
|
declare const KolVersion: vue.DefineSetupFnComponent<JSX.KolVersion & InputProps<string | number | boolean>, {}, {}, JSX.KolVersion & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
67
62
|
|
|
68
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton,
|
|
63
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -120,8 +120,7 @@ const defineContainer = (name, defineCustomElement, componentProps = [], modelPr
|
|
|
120
120
|
};
|
|
121
121
|
|
|
122
122
|
const KolAbbr = /* @__PURE__ */ defineContainer("kol-abbr", void 0, [
|
|
123
|
-
"_label"
|
|
124
|
-
"_tooltipAlign"
|
|
123
|
+
"_label"
|
|
125
124
|
]);
|
|
126
125
|
const KolAccordion = /* @__PURE__ */ defineContainer("kol-accordion", void 0, [
|
|
127
126
|
"_disabled",
|
|
@@ -170,13 +169,11 @@ const KolButton = /* @__PURE__ */ defineContainer("kol-button", void 0, [
|
|
|
170
169
|
"_role",
|
|
171
170
|
"_shortKey",
|
|
172
171
|
"_syncValueBySelector",
|
|
173
|
-
"_tabIndex",
|
|
174
172
|
"_tooltipAlign",
|
|
175
173
|
"_type",
|
|
176
174
|
"_value",
|
|
177
175
|
"_variant"
|
|
178
176
|
]);
|
|
179
|
-
const KolButtonGroup = /* @__PURE__ */ defineContainer("kol-button-group", void 0);
|
|
180
177
|
const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0, [
|
|
181
178
|
"_accessKey",
|
|
182
179
|
"_ariaControls",
|
|
@@ -193,7 +190,6 @@ const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0,
|
|
|
193
190
|
"_role",
|
|
194
191
|
"_shortKey",
|
|
195
192
|
"_syncValueBySelector",
|
|
196
|
-
"_tabIndex",
|
|
197
193
|
"_tooltipAlign",
|
|
198
194
|
"_type",
|
|
199
195
|
"_value"
|
|
@@ -207,9 +203,8 @@ const KolCard = /* @__PURE__ */ defineContainer("kol-card", void 0, [
|
|
|
207
203
|
const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
208
204
|
"_accessKey",
|
|
209
205
|
"_placeholder",
|
|
210
|
-
"_alert",
|
|
211
206
|
"_disabled",
|
|
212
|
-
"
|
|
207
|
+
"_hideMsg",
|
|
213
208
|
"_hideLabel",
|
|
214
209
|
"_hint",
|
|
215
210
|
"_icons",
|
|
@@ -222,7 +217,6 @@ const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
|
222
217
|
"_required",
|
|
223
218
|
"_shortKey",
|
|
224
219
|
"_syncValueBySelector",
|
|
225
|
-
"_tabIndex",
|
|
226
220
|
"_tooltipAlign",
|
|
227
221
|
"_touched",
|
|
228
222
|
"_value"
|
|
@@ -238,7 +232,6 @@ const KolDrawer = /* @__PURE__ */ defineContainer("kol-drawer", void 0, [
|
|
|
238
232
|
"_open",
|
|
239
233
|
"_align",
|
|
240
234
|
"_label",
|
|
241
|
-
"_modal",
|
|
242
235
|
"_on"
|
|
243
236
|
]);
|
|
244
237
|
const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
@@ -263,14 +256,11 @@ const KolImage = /* @__PURE__ */ defineContainer("kol-image", void 0, [
|
|
|
263
256
|
"_src",
|
|
264
257
|
"_srcset"
|
|
265
258
|
]);
|
|
266
|
-
const KolIndentedText = /* @__PURE__ */ defineContainer("kol-indented-text", void 0);
|
|
267
259
|
const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", void 0, [
|
|
268
260
|
"_accessKey",
|
|
269
|
-
"_alert",
|
|
270
261
|
"_checked",
|
|
271
|
-
"
|
|
262
|
+
"_hideMsg",
|
|
272
263
|
"_disabled",
|
|
273
|
-
"_error",
|
|
274
264
|
"_hideLabel",
|
|
275
265
|
"_hint",
|
|
276
266
|
"_icons",
|
|
@@ -284,7 +274,6 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
284
274
|
"_required",
|
|
285
275
|
"_shortKey",
|
|
286
276
|
"_syncValueBySelector",
|
|
287
|
-
"_tabIndex",
|
|
288
277
|
"_tooltipAlign",
|
|
289
278
|
"_touched",
|
|
290
279
|
"_value",
|
|
@@ -292,11 +281,9 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
292
281
|
]);
|
|
293
282
|
const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0, [
|
|
294
283
|
"_accessKey",
|
|
295
|
-
"_alert",
|
|
296
284
|
"_autoComplete",
|
|
297
285
|
"_disabled",
|
|
298
|
-
"
|
|
299
|
-
"_hideError",
|
|
286
|
+
"_hideMsg",
|
|
300
287
|
"_hideLabel",
|
|
301
288
|
"_hint",
|
|
302
289
|
"_icons",
|
|
@@ -309,18 +296,15 @@ const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0,
|
|
|
309
296
|
"_smartButton",
|
|
310
297
|
"_suggestions",
|
|
311
298
|
"_syncValueBySelector",
|
|
312
|
-
"_tabIndex",
|
|
313
299
|
"_tooltipAlign",
|
|
314
300
|
"_touched",
|
|
315
301
|
"_value"
|
|
316
302
|
]);
|
|
317
303
|
const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
318
304
|
"_accessKey",
|
|
319
|
-
"_alert",
|
|
320
305
|
"_autoComplete",
|
|
321
306
|
"_disabled",
|
|
322
|
-
"
|
|
323
|
-
"_hideError",
|
|
307
|
+
"_hideMsg",
|
|
324
308
|
"_hideLabel",
|
|
325
309
|
"_hint",
|
|
326
310
|
"_icons",
|
|
@@ -338,7 +322,6 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
338
322
|
"_suggestions",
|
|
339
323
|
"_syncValueBySelector",
|
|
340
324
|
"_step",
|
|
341
|
-
"_tabIndex",
|
|
342
325
|
"_tooltipAlign",
|
|
343
326
|
"_touched",
|
|
344
327
|
"_type",
|
|
@@ -346,12 +329,10 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
346
329
|
]);
|
|
347
330
|
const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0, [
|
|
348
331
|
"_accessKey",
|
|
349
|
-
"_alert",
|
|
350
332
|
"_autoComplete",
|
|
351
333
|
"_disabled",
|
|
352
|
-
"_error",
|
|
353
334
|
"_hasCounter",
|
|
354
|
-
"
|
|
335
|
+
"_hideMsg",
|
|
355
336
|
"_hideLabel",
|
|
356
337
|
"_hint",
|
|
357
338
|
"_icons",
|
|
@@ -370,7 +351,6 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
370
351
|
"_smartButton",
|
|
371
352
|
"_suggestions",
|
|
372
353
|
"_syncValueBySelector",
|
|
373
|
-
"_tabIndex",
|
|
374
354
|
"_tooltipAlign",
|
|
375
355
|
"_touched",
|
|
376
356
|
"_value"
|
|
@@ -378,10 +358,8 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
378
358
|
const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
379
359
|
"_accept",
|
|
380
360
|
"_accessKey",
|
|
381
|
-
"_alert",
|
|
382
361
|
"_disabled",
|
|
383
|
-
"
|
|
384
|
-
"_hideError",
|
|
362
|
+
"_hideMsg",
|
|
385
363
|
"_hideLabel",
|
|
386
364
|
"_hint",
|
|
387
365
|
"_icons",
|
|
@@ -395,18 +373,14 @@ const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
|
395
373
|
"_shortKey",
|
|
396
374
|
"_smartButton",
|
|
397
375
|
"_syncValueBySelector",
|
|
398
|
-
"_tabIndex",
|
|
399
376
|
"_tooltipAlign",
|
|
400
|
-
"_touched"
|
|
401
|
-
"_value"
|
|
377
|
+
"_touched"
|
|
402
378
|
]);
|
|
403
379
|
const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void 0, [
|
|
404
380
|
"_accessKey",
|
|
405
|
-
"_alert",
|
|
406
381
|
"_autoComplete",
|
|
407
382
|
"_disabled",
|
|
408
|
-
"
|
|
409
|
-
"_hideError",
|
|
383
|
+
"_hideMsg",
|
|
410
384
|
"_hideLabel",
|
|
411
385
|
"_hint",
|
|
412
386
|
"_icons",
|
|
@@ -425,19 +399,16 @@ const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void
|
|
|
425
399
|
"_suggestions",
|
|
426
400
|
"_step",
|
|
427
401
|
"_syncValueBySelector",
|
|
428
|
-
"_tabIndex",
|
|
429
402
|
"_tooltipAlign",
|
|
430
403
|
"_touched",
|
|
431
404
|
"_value"
|
|
432
405
|
]);
|
|
433
406
|
const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", void 0, [
|
|
434
407
|
"_accessKey",
|
|
435
|
-
"_alert",
|
|
436
408
|
"_autoComplete",
|
|
437
409
|
"_disabled",
|
|
438
|
-
"_error",
|
|
439
410
|
"_hasCounter",
|
|
440
|
-
"
|
|
411
|
+
"_hideMsg",
|
|
441
412
|
"_hideLabel",
|
|
442
413
|
"_hint",
|
|
443
414
|
"_icons",
|
|
@@ -454,7 +425,6 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
454
425
|
"_shortKey",
|
|
455
426
|
"_smartButton",
|
|
456
427
|
"_syncValueBySelector",
|
|
457
|
-
"_tabIndex",
|
|
458
428
|
"_tooltipAlign",
|
|
459
429
|
"_touched",
|
|
460
430
|
"_value",
|
|
@@ -462,10 +432,8 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
462
432
|
]);
|
|
463
433
|
const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0, [
|
|
464
434
|
"_accessKey",
|
|
465
|
-
"_alert",
|
|
466
435
|
"_disabled",
|
|
467
|
-
"
|
|
468
|
-
"_hideError",
|
|
436
|
+
"_hideMsg",
|
|
469
437
|
"_hideLabel",
|
|
470
438
|
"_hint",
|
|
471
439
|
"_id",
|
|
@@ -478,18 +446,15 @@ const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0,
|
|
|
478
446
|
"_required",
|
|
479
447
|
"_shortKey",
|
|
480
448
|
"_syncValueBySelector",
|
|
481
|
-
"_tabIndex",
|
|
482
449
|
"_tooltipAlign",
|
|
483
450
|
"_touched",
|
|
484
451
|
"_value"
|
|
485
452
|
]);
|
|
486
453
|
const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0, [
|
|
487
454
|
"_accessKey",
|
|
488
|
-
"_alert",
|
|
489
455
|
"_autoComplete",
|
|
490
456
|
"_disabled",
|
|
491
|
-
"
|
|
492
|
-
"_hideError",
|
|
457
|
+
"_hideMsg",
|
|
493
458
|
"_hideLabel",
|
|
494
459
|
"_hint",
|
|
495
460
|
"_icons",
|
|
@@ -504,19 +469,16 @@ const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0,
|
|
|
504
469
|
"_step",
|
|
505
470
|
"_suggestions",
|
|
506
471
|
"_syncValueBySelector",
|
|
507
|
-
"_tabIndex",
|
|
508
472
|
"_tooltipAlign",
|
|
509
473
|
"_touched",
|
|
510
474
|
"_value"
|
|
511
475
|
]);
|
|
512
476
|
const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
513
477
|
"_accessKey",
|
|
514
|
-
"_alert",
|
|
515
478
|
"_autoComplete",
|
|
516
479
|
"_disabled",
|
|
517
|
-
"_error",
|
|
518
480
|
"_hasCounter",
|
|
519
|
-
"
|
|
481
|
+
"_hideMsg",
|
|
520
482
|
"_hideLabel",
|
|
521
483
|
"_hint",
|
|
522
484
|
"_icons",
|
|
@@ -535,7 +497,6 @@ const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
|
535
497
|
"_suggestions",
|
|
536
498
|
"_smartButton",
|
|
537
499
|
"_syncValueBySelector",
|
|
538
|
-
"_tabIndex",
|
|
539
500
|
"_tooltipAlign",
|
|
540
501
|
"_touched",
|
|
541
502
|
"_type",
|
|
@@ -558,7 +519,6 @@ const KolLink = /* @__PURE__ */ defineContainer("kol-link", void 0, [
|
|
|
558
519
|
"_on",
|
|
559
520
|
"_role",
|
|
560
521
|
"_shortKey",
|
|
561
|
-
"_tabIndex",
|
|
562
522
|
"_target",
|
|
563
523
|
"_tooltipAlign"
|
|
564
524
|
]);
|
|
@@ -576,25 +536,15 @@ const KolLinkButton = /* @__PURE__ */ defineContainer("kol-link-button", void 0,
|
|
|
576
536
|
"_on",
|
|
577
537
|
"_role",
|
|
578
538
|
"_shortKey",
|
|
579
|
-
"_tabIndex",
|
|
580
539
|
"_target",
|
|
581
540
|
"_tooltipAlign",
|
|
582
541
|
"_variant"
|
|
583
542
|
]);
|
|
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
543
|
const KolModal = /* @__PURE__ */ defineContainer("kol-modal", void 0, [
|
|
594
|
-
"_activeElement",
|
|
595
544
|
"_label",
|
|
596
545
|
"_on",
|
|
597
|
-
"_width"
|
|
546
|
+
"_width",
|
|
547
|
+
"_variant"
|
|
598
548
|
]);
|
|
599
549
|
const KolNav = /* @__PURE__ */ defineContainer("kol-nav", void 0, [
|
|
600
550
|
"_collapsible",
|
|
@@ -622,7 +572,29 @@ const KolPopoverButton = /* @__PURE__ */ defineContainer("kol-popover-button", v
|
|
|
622
572
|
"_accessKey",
|
|
623
573
|
"_ariaControls",
|
|
624
574
|
"_ariaDescription",
|
|
625
|
-
"
|
|
575
|
+
"_ariaSelected",
|
|
576
|
+
"_customClass",
|
|
577
|
+
"_disabled",
|
|
578
|
+
"_hideLabel",
|
|
579
|
+
"_icons",
|
|
580
|
+
"_id",
|
|
581
|
+
"_label",
|
|
582
|
+
"_name",
|
|
583
|
+
"_on",
|
|
584
|
+
"_popoverAlign",
|
|
585
|
+
"_role",
|
|
586
|
+
"_shortKey",
|
|
587
|
+
"_syncValueBySelector",
|
|
588
|
+
"_tabIndex",
|
|
589
|
+
"_tooltipAlign",
|
|
590
|
+
"_type",
|
|
591
|
+
"_value",
|
|
592
|
+
"_variant"
|
|
593
|
+
]);
|
|
594
|
+
const KolPopoverButtonWc = /* @__PURE__ */ defineContainer("kol-popover-button-wc", void 0, [
|
|
595
|
+
"_accessKey",
|
|
596
|
+
"_ariaControls",
|
|
597
|
+
"_ariaDescription",
|
|
626
598
|
"_ariaSelected",
|
|
627
599
|
"_customClass",
|
|
628
600
|
"_disabled",
|
|
@@ -657,10 +629,8 @@ const KolQuote = /* @__PURE__ */ defineContainer("kol-quote", void 0, [
|
|
|
657
629
|
]);
|
|
658
630
|
const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
659
631
|
"_accessKey",
|
|
660
|
-
"_alert",
|
|
661
632
|
"_disabled",
|
|
662
|
-
"
|
|
663
|
-
"_hideError",
|
|
633
|
+
"_hideMsg",
|
|
664
634
|
"_hideLabel",
|
|
665
635
|
"_hint",
|
|
666
636
|
"_icons",
|
|
@@ -683,9 +653,8 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
683
653
|
const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", void 0, [
|
|
684
654
|
"_accessKey",
|
|
685
655
|
"_placeholder",
|
|
686
|
-
"_alert",
|
|
687
656
|
"_disabled",
|
|
688
|
-
"
|
|
657
|
+
"_hideMsg",
|
|
689
658
|
"_hideLabel",
|
|
690
659
|
"_hint",
|
|
691
660
|
"_icons",
|
|
@@ -698,7 +667,6 @@ const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", voi
|
|
|
698
667
|
"_required",
|
|
699
668
|
"_shortKey",
|
|
700
669
|
"_syncValueBySelector",
|
|
701
|
-
"_tabIndex",
|
|
702
670
|
"_tooltipAlign",
|
|
703
671
|
"_touched",
|
|
704
672
|
"_value",
|
|
@@ -727,28 +695,11 @@ const KolSplitButton = /* @__PURE__ */ defineContainer("kol-split-button", void
|
|
|
727
695
|
"_on",
|
|
728
696
|
"_role",
|
|
729
697
|
"_syncValueBySelector",
|
|
730
|
-
"_tabIndex",
|
|
731
698
|
"_tooltipAlign",
|
|
732
699
|
"_type",
|
|
733
700
|
"_value",
|
|
734
701
|
"_variant"
|
|
735
702
|
]);
|
|
736
|
-
const KolSymbol = /* @__PURE__ */ defineContainer("kol-symbol", void 0, [
|
|
737
|
-
"_label",
|
|
738
|
-
"_symbol"
|
|
739
|
-
]);
|
|
740
|
-
const KolTable = /* @__PURE__ */ defineContainer("kol-table", void 0, [
|
|
741
|
-
"_allowMultiSort",
|
|
742
|
-
"_data",
|
|
743
|
-
"_dataFoot",
|
|
744
|
-
"_headers",
|
|
745
|
-
"_label",
|
|
746
|
-
"_minWidth",
|
|
747
|
-
"_pagination",
|
|
748
|
-
"_paginationPosition",
|
|
749
|
-
"_selection",
|
|
750
|
-
"_on"
|
|
751
|
-
]);
|
|
752
703
|
const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", void 0, [
|
|
753
704
|
"_allowMultiSort",
|
|
754
705
|
"_data",
|
|
@@ -759,7 +710,8 @@ const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", v
|
|
|
759
710
|
"_pagination",
|
|
760
711
|
"_paginationPosition",
|
|
761
712
|
"_selection",
|
|
762
|
-
"_on"
|
|
713
|
+
"_on",
|
|
714
|
+
"_tableSettings"
|
|
763
715
|
]);
|
|
764
716
|
const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless", void 0, [
|
|
765
717
|
"_data",
|
|
@@ -768,7 +720,8 @@ const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless",
|
|
|
768
720
|
"_label",
|
|
769
721
|
"_minWidth",
|
|
770
722
|
"_on",
|
|
771
|
-
"_selection"
|
|
723
|
+
"_selection",
|
|
724
|
+
"_tableSettings"
|
|
772
725
|
]);
|
|
773
726
|
const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
774
727
|
"_align",
|
|
@@ -781,11 +734,9 @@ const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
|
781
734
|
const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
782
735
|
"_accessKey",
|
|
783
736
|
"_adjustHeight",
|
|
784
|
-
"_alert",
|
|
785
737
|
"_disabled",
|
|
786
|
-
"_error",
|
|
787
738
|
"_hasCounter",
|
|
788
|
-
"
|
|
739
|
+
"_hideMsg",
|
|
789
740
|
"_hideLabel",
|
|
790
741
|
"_hint",
|
|
791
742
|
"_icons",
|
|
@@ -803,7 +754,6 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
803
754
|
"_shortKey",
|
|
804
755
|
"_spellCheck",
|
|
805
756
|
"_syncValueBySelector",
|
|
806
|
-
"_tabIndex",
|
|
807
757
|
"_tooltipAlign",
|
|
808
758
|
"_touched",
|
|
809
759
|
"_value"
|
|
@@ -832,4 +782,4 @@ const KolVersion = /* @__PURE__ */ defineContainer("kol-version", void 0, [
|
|
|
832
782
|
"_label"
|
|
833
783
|
]);
|
|
834
784
|
|
|
835
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton,
|
|
785
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/vue",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-0a564237c37a5d1ca12470bdd73e4ea1eac06982.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -45,18 +45,18 @@
|
|
|
45
45
|
"vue"
|
|
46
46
|
],
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@babel/types": "7.
|
|
48
|
+
"@babel/types": "7.26.10",
|
|
49
49
|
"@types/minimatch": "5.1.2",
|
|
50
50
|
"@types/minimist": "1.2.5",
|
|
51
51
|
"@types/normalize-package-data": "2.4.4",
|
|
52
|
-
"typescript": "5.8.
|
|
52
|
+
"typescript": "5.8.2",
|
|
53
53
|
"unbuild": "1.2.1",
|
|
54
54
|
"vue": "3.4.21",
|
|
55
|
-
"@public-ui/components": "
|
|
55
|
+
"@public-ui/components": "3.0.0-0a564237c37a5d1ca12470bdd73e4ea1eac06982.0"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"vue": ">=3",
|
|
59
|
-
"@public-ui/components": "
|
|
59
|
+
"@public-ui/components": "3.0.0-0a564237c37a5d1ca12470bdd73e4ea1eac06982.0"
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
62
|
"type": "module",
|