@public-ui/vue 3.0.0-alpha.0 → 3.0.0-dcba8228fa4178aa125eea17082fc647882faa96.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 +10 -2
- package/dist/index.cjs +75 -99
- package/dist/index.d.ts +3 -7
- package/dist/index.mjs +74 -94
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# KoliBri - Vue-Adapter
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@public-ui/components)
|
|
4
|
+
[](https://github.com/public-ui/kolibri/blob/main/LICENSE)
|
|
5
|
+
[](https://www.npmjs.com/package/@public-ui/vue)
|
|
6
|
+
[](https://github.com/public-ui/kolibri/issues)
|
|
7
|
+
[](https://github.com/public-ui/kolibri/pulls)
|
|
8
|
+
[](https://bundlephobia.com/result?p=@public-ui/vue)
|
|
9
|
+

|
|
10
|
+
|
|
3
11
|
## Motivation
|
|
4
12
|
|
|
5
13
|
Provide an adapter for [Vue](https://vuejs.org/) to use the KoliBri components.
|
|
@@ -16,11 +24,11 @@ yarn add -g @public-ui/vue
|
|
|
16
24
|
|
|
17
25
|
## Usage
|
|
18
26
|
|
|
19
|
-
First, initialize KoliBri with a [theme](https://github.com/public-ui/kolibri/tree/develop/packages/
|
|
27
|
+
First, initialize KoliBri with a [theme](https://github.com/public-ui/kolibri/tree/develop/packages/vue) and create a Vue app:
|
|
20
28
|
|
|
21
29
|
```ts
|
|
22
30
|
import { createApp } from 'vue';
|
|
23
|
-
import { DEFAULT } from '@public-ui/
|
|
31
|
+
import { DEFAULT } from '@public-ui/theme-default';
|
|
24
32
|
import { defineCustomElements } from '@public-ui/components/dist/loader';
|
|
25
33
|
import { register } from '@public-ui/components';
|
|
26
34
|
|
package/dist/index.cjs
CHANGED
|
@@ -171,13 +171,11 @@ const KolButton = /* @__PURE__ */ defineContainer("kol-button", void 0, [
|
|
|
171
171
|
"_role",
|
|
172
172
|
"_shortKey",
|
|
173
173
|
"_syncValueBySelector",
|
|
174
|
-
"_tabIndex",
|
|
175
174
|
"_tooltipAlign",
|
|
176
175
|
"_type",
|
|
177
176
|
"_value",
|
|
178
177
|
"_variant"
|
|
179
178
|
]);
|
|
180
|
-
const KolButtonGroup = /* @__PURE__ */ defineContainer("kol-button-group", void 0);
|
|
181
179
|
const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0, [
|
|
182
180
|
"_accessKey",
|
|
183
181
|
"_ariaControls",
|
|
@@ -194,7 +192,6 @@ const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0,
|
|
|
194
192
|
"_role",
|
|
195
193
|
"_shortKey",
|
|
196
194
|
"_syncValueBySelector",
|
|
197
|
-
"_tabIndex",
|
|
198
195
|
"_tooltipAlign",
|
|
199
196
|
"_type",
|
|
200
197
|
"_value"
|
|
@@ -208,9 +205,8 @@ const KolCard = /* @__PURE__ */ defineContainer("kol-card", void 0, [
|
|
|
208
205
|
const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
209
206
|
"_accessKey",
|
|
210
207
|
"_placeholder",
|
|
211
|
-
"_alert",
|
|
212
208
|
"_disabled",
|
|
213
|
-
"
|
|
209
|
+
"_hideMsg",
|
|
214
210
|
"_hideLabel",
|
|
215
211
|
"_hint",
|
|
216
212
|
"_icons",
|
|
@@ -223,7 +219,6 @@ const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
|
223
219
|
"_required",
|
|
224
220
|
"_shortKey",
|
|
225
221
|
"_syncValueBySelector",
|
|
226
|
-
"_tabIndex",
|
|
227
222
|
"_tooltipAlign",
|
|
228
223
|
"_touched",
|
|
229
224
|
"_value"
|
|
@@ -239,7 +234,6 @@ const KolDrawer = /* @__PURE__ */ defineContainer("kol-drawer", void 0, [
|
|
|
239
234
|
"_open",
|
|
240
235
|
"_align",
|
|
241
236
|
"_label",
|
|
242
|
-
"_modal",
|
|
243
237
|
"_on"
|
|
244
238
|
]);
|
|
245
239
|
const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
@@ -264,14 +258,11 @@ const KolImage = /* @__PURE__ */ defineContainer("kol-image", void 0, [
|
|
|
264
258
|
"_src",
|
|
265
259
|
"_srcset"
|
|
266
260
|
]);
|
|
267
|
-
const KolIndentedText = /* @__PURE__ */ defineContainer("kol-indented-text", void 0);
|
|
268
261
|
const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", void 0, [
|
|
269
262
|
"_accessKey",
|
|
270
|
-
"_alert",
|
|
271
263
|
"_checked",
|
|
272
|
-
"
|
|
264
|
+
"_hideMsg",
|
|
273
265
|
"_disabled",
|
|
274
|
-
"_error",
|
|
275
266
|
"_hideLabel",
|
|
276
267
|
"_hint",
|
|
277
268
|
"_icons",
|
|
@@ -285,7 +276,6 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
285
276
|
"_required",
|
|
286
277
|
"_shortKey",
|
|
287
278
|
"_syncValueBySelector",
|
|
288
|
-
"_tabIndex",
|
|
289
279
|
"_tooltipAlign",
|
|
290
280
|
"_touched",
|
|
291
281
|
"_value",
|
|
@@ -293,11 +283,9 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
293
283
|
]);
|
|
294
284
|
const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0, [
|
|
295
285
|
"_accessKey",
|
|
296
|
-
"_alert",
|
|
297
286
|
"_autoComplete",
|
|
298
287
|
"_disabled",
|
|
299
|
-
"
|
|
300
|
-
"_hideError",
|
|
288
|
+
"_hideMsg",
|
|
301
289
|
"_hideLabel",
|
|
302
290
|
"_hint",
|
|
303
291
|
"_icons",
|
|
@@ -310,18 +298,15 @@ const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0,
|
|
|
310
298
|
"_smartButton",
|
|
311
299
|
"_suggestions",
|
|
312
300
|
"_syncValueBySelector",
|
|
313
|
-
"_tabIndex",
|
|
314
301
|
"_tooltipAlign",
|
|
315
302
|
"_touched",
|
|
316
303
|
"_value"
|
|
317
304
|
]);
|
|
318
305
|
const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
319
306
|
"_accessKey",
|
|
320
|
-
"_alert",
|
|
321
307
|
"_autoComplete",
|
|
322
308
|
"_disabled",
|
|
323
|
-
"
|
|
324
|
-
"_hideError",
|
|
309
|
+
"_hideMsg",
|
|
325
310
|
"_hideLabel",
|
|
326
311
|
"_hint",
|
|
327
312
|
"_icons",
|
|
@@ -339,7 +324,6 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
339
324
|
"_suggestions",
|
|
340
325
|
"_syncValueBySelector",
|
|
341
326
|
"_step",
|
|
342
|
-
"_tabIndex",
|
|
343
327
|
"_tooltipAlign",
|
|
344
328
|
"_touched",
|
|
345
329
|
"_type",
|
|
@@ -347,12 +331,10 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
347
331
|
]);
|
|
348
332
|
const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0, [
|
|
349
333
|
"_accessKey",
|
|
350
|
-
"_alert",
|
|
351
334
|
"_autoComplete",
|
|
352
335
|
"_disabled",
|
|
353
|
-
"_error",
|
|
354
336
|
"_hasCounter",
|
|
355
|
-
"
|
|
337
|
+
"_hideMsg",
|
|
356
338
|
"_hideLabel",
|
|
357
339
|
"_hint",
|
|
358
340
|
"_icons",
|
|
@@ -371,7 +353,6 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
371
353
|
"_smartButton",
|
|
372
354
|
"_suggestions",
|
|
373
355
|
"_syncValueBySelector",
|
|
374
|
-
"_tabIndex",
|
|
375
356
|
"_tooltipAlign",
|
|
376
357
|
"_touched",
|
|
377
358
|
"_value"
|
|
@@ -379,10 +360,8 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
379
360
|
const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
380
361
|
"_accept",
|
|
381
362
|
"_accessKey",
|
|
382
|
-
"_alert",
|
|
383
363
|
"_disabled",
|
|
384
|
-
"
|
|
385
|
-
"_hideError",
|
|
364
|
+
"_hideMsg",
|
|
386
365
|
"_hideLabel",
|
|
387
366
|
"_hint",
|
|
388
367
|
"_icons",
|
|
@@ -396,18 +375,14 @@ const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
|
396
375
|
"_shortKey",
|
|
397
376
|
"_smartButton",
|
|
398
377
|
"_syncValueBySelector",
|
|
399
|
-
"_tabIndex",
|
|
400
378
|
"_tooltipAlign",
|
|
401
|
-
"_touched"
|
|
402
|
-
"_value"
|
|
379
|
+
"_touched"
|
|
403
380
|
]);
|
|
404
381
|
const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void 0, [
|
|
405
382
|
"_accessKey",
|
|
406
|
-
"_alert",
|
|
407
383
|
"_autoComplete",
|
|
408
384
|
"_disabled",
|
|
409
|
-
"
|
|
410
|
-
"_hideError",
|
|
385
|
+
"_hideMsg",
|
|
411
386
|
"_hideLabel",
|
|
412
387
|
"_hint",
|
|
413
388
|
"_icons",
|
|
@@ -426,19 +401,16 @@ const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void
|
|
|
426
401
|
"_suggestions",
|
|
427
402
|
"_step",
|
|
428
403
|
"_syncValueBySelector",
|
|
429
|
-
"_tabIndex",
|
|
430
404
|
"_tooltipAlign",
|
|
431
405
|
"_touched",
|
|
432
406
|
"_value"
|
|
433
407
|
]);
|
|
434
408
|
const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", void 0, [
|
|
435
409
|
"_accessKey",
|
|
436
|
-
"_alert",
|
|
437
410
|
"_autoComplete",
|
|
438
411
|
"_disabled",
|
|
439
|
-
"_error",
|
|
440
412
|
"_hasCounter",
|
|
441
|
-
"
|
|
413
|
+
"_hideMsg",
|
|
442
414
|
"_hideLabel",
|
|
443
415
|
"_hint",
|
|
444
416
|
"_icons",
|
|
@@ -455,7 +427,6 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
455
427
|
"_shortKey",
|
|
456
428
|
"_smartButton",
|
|
457
429
|
"_syncValueBySelector",
|
|
458
|
-
"_tabIndex",
|
|
459
430
|
"_tooltipAlign",
|
|
460
431
|
"_touched",
|
|
461
432
|
"_value",
|
|
@@ -463,10 +434,8 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
463
434
|
]);
|
|
464
435
|
const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0, [
|
|
465
436
|
"_accessKey",
|
|
466
|
-
"_alert",
|
|
467
437
|
"_disabled",
|
|
468
|
-
"
|
|
469
|
-
"_hideError",
|
|
438
|
+
"_hideMsg",
|
|
470
439
|
"_hideLabel",
|
|
471
440
|
"_hint",
|
|
472
441
|
"_id",
|
|
@@ -479,18 +448,15 @@ const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0,
|
|
|
479
448
|
"_required",
|
|
480
449
|
"_shortKey",
|
|
481
450
|
"_syncValueBySelector",
|
|
482
|
-
"_tabIndex",
|
|
483
451
|
"_tooltipAlign",
|
|
484
452
|
"_touched",
|
|
485
453
|
"_value"
|
|
486
454
|
]);
|
|
487
455
|
const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0, [
|
|
488
456
|
"_accessKey",
|
|
489
|
-
"_alert",
|
|
490
457
|
"_autoComplete",
|
|
491
458
|
"_disabled",
|
|
492
|
-
"
|
|
493
|
-
"_hideError",
|
|
459
|
+
"_hideMsg",
|
|
494
460
|
"_hideLabel",
|
|
495
461
|
"_hint",
|
|
496
462
|
"_icons",
|
|
@@ -505,19 +471,16 @@ const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0,
|
|
|
505
471
|
"_step",
|
|
506
472
|
"_suggestions",
|
|
507
473
|
"_syncValueBySelector",
|
|
508
|
-
"_tabIndex",
|
|
509
474
|
"_tooltipAlign",
|
|
510
475
|
"_touched",
|
|
511
476
|
"_value"
|
|
512
477
|
]);
|
|
513
478
|
const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
514
479
|
"_accessKey",
|
|
515
|
-
"_alert",
|
|
516
480
|
"_autoComplete",
|
|
517
481
|
"_disabled",
|
|
518
|
-
"_error",
|
|
519
482
|
"_hasCounter",
|
|
520
|
-
"
|
|
483
|
+
"_hideMsg",
|
|
521
484
|
"_hideLabel",
|
|
522
485
|
"_hint",
|
|
523
486
|
"_icons",
|
|
@@ -532,10 +495,10 @@ const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
|
532
495
|
"_readOnly",
|
|
533
496
|
"_required",
|
|
534
497
|
"_shortKey",
|
|
498
|
+
"_spellCheck",
|
|
535
499
|
"_suggestions",
|
|
536
500
|
"_smartButton",
|
|
537
501
|
"_syncValueBySelector",
|
|
538
|
-
"_tabIndex",
|
|
539
502
|
"_tooltipAlign",
|
|
540
503
|
"_touched",
|
|
541
504
|
"_type",
|
|
@@ -558,7 +521,6 @@ const KolLink = /* @__PURE__ */ defineContainer("kol-link", void 0, [
|
|
|
558
521
|
"_on",
|
|
559
522
|
"_role",
|
|
560
523
|
"_shortKey",
|
|
561
|
-
"_tabIndex",
|
|
562
524
|
"_target",
|
|
563
525
|
"_tooltipAlign"
|
|
564
526
|
]);
|
|
@@ -576,25 +538,15 @@ const KolLinkButton = /* @__PURE__ */ defineContainer("kol-link-button", void 0,
|
|
|
576
538
|
"_on",
|
|
577
539
|
"_role",
|
|
578
540
|
"_shortKey",
|
|
579
|
-
"_tabIndex",
|
|
580
541
|
"_target",
|
|
581
542
|
"_tooltipAlign",
|
|
582
543
|
"_variant"
|
|
583
544
|
]);
|
|
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
545
|
const KolModal = /* @__PURE__ */ defineContainer("kol-modal", void 0, [
|
|
594
|
-
"_activeElement",
|
|
595
546
|
"_label",
|
|
596
547
|
"_on",
|
|
597
|
-
"_width"
|
|
548
|
+
"_width",
|
|
549
|
+
"_variant"
|
|
598
550
|
]);
|
|
599
551
|
const KolNav = /* @__PURE__ */ defineContainer("kol-nav", void 0, [
|
|
600
552
|
"_collapsible",
|
|
@@ -618,6 +570,54 @@ const KolPagination = /* @__PURE__ */ defineContainer("kol-pagination", void 0,
|
|
|
618
570
|
"_tooltipAlign",
|
|
619
571
|
"_max"
|
|
620
572
|
]);
|
|
573
|
+
const KolPopoverButton = /* @__PURE__ */ defineContainer("kol-popover-button", void 0, [
|
|
574
|
+
"_accessKey",
|
|
575
|
+
"_ariaControls",
|
|
576
|
+
"_ariaDescription",
|
|
577
|
+
"_ariaExpanded",
|
|
578
|
+
"_ariaSelected",
|
|
579
|
+
"_customClass",
|
|
580
|
+
"_disabled",
|
|
581
|
+
"_hideLabel",
|
|
582
|
+
"_icons",
|
|
583
|
+
"_id",
|
|
584
|
+
"_label",
|
|
585
|
+
"_name",
|
|
586
|
+
"_on",
|
|
587
|
+
"_popoverAlign",
|
|
588
|
+
"_role",
|
|
589
|
+
"_shortKey",
|
|
590
|
+
"_syncValueBySelector",
|
|
591
|
+
"_tabIndex",
|
|
592
|
+
"_tooltipAlign",
|
|
593
|
+
"_type",
|
|
594
|
+
"_value",
|
|
595
|
+
"_variant"
|
|
596
|
+
]);
|
|
597
|
+
const KolPopoverButtonWc = /* @__PURE__ */ defineContainer("kol-popover-button-wc", void 0, [
|
|
598
|
+
"_accessKey",
|
|
599
|
+
"_ariaControls",
|
|
600
|
+
"_ariaDescription",
|
|
601
|
+
"_ariaExpanded",
|
|
602
|
+
"_ariaSelected",
|
|
603
|
+
"_customClass",
|
|
604
|
+
"_disabled",
|
|
605
|
+
"_hideLabel",
|
|
606
|
+
"_icons",
|
|
607
|
+
"_id",
|
|
608
|
+
"_label",
|
|
609
|
+
"_name",
|
|
610
|
+
"_on",
|
|
611
|
+
"_popoverAlign",
|
|
612
|
+
"_role",
|
|
613
|
+
"_shortKey",
|
|
614
|
+
"_syncValueBySelector",
|
|
615
|
+
"_tabIndex",
|
|
616
|
+
"_tooltipAlign",
|
|
617
|
+
"_type",
|
|
618
|
+
"_value",
|
|
619
|
+
"_variant"
|
|
620
|
+
]);
|
|
621
621
|
const KolProgress = /* @__PURE__ */ defineContainer("kol-progress", void 0, [
|
|
622
622
|
"_label",
|
|
623
623
|
"_max",
|
|
@@ -633,10 +633,8 @@ const KolQuote = /* @__PURE__ */ defineContainer("kol-quote", void 0, [
|
|
|
633
633
|
]);
|
|
634
634
|
const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
635
635
|
"_accessKey",
|
|
636
|
-
"_alert",
|
|
637
636
|
"_disabled",
|
|
638
|
-
"
|
|
639
|
-
"_hideError",
|
|
637
|
+
"_hideMsg",
|
|
640
638
|
"_hideLabel",
|
|
641
639
|
"_hint",
|
|
642
640
|
"_icons",
|
|
@@ -659,9 +657,8 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
659
657
|
const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", void 0, [
|
|
660
658
|
"_accessKey",
|
|
661
659
|
"_placeholder",
|
|
662
|
-
"_alert",
|
|
663
660
|
"_disabled",
|
|
664
|
-
"
|
|
661
|
+
"_hideMsg",
|
|
665
662
|
"_hideLabel",
|
|
666
663
|
"_hint",
|
|
667
664
|
"_icons",
|
|
@@ -674,10 +671,10 @@ const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", voi
|
|
|
674
671
|
"_required",
|
|
675
672
|
"_shortKey",
|
|
676
673
|
"_syncValueBySelector",
|
|
677
|
-
"_tabIndex",
|
|
678
674
|
"_tooltipAlign",
|
|
679
675
|
"_touched",
|
|
680
|
-
"_value"
|
|
676
|
+
"_value",
|
|
677
|
+
"_hideClearButton"
|
|
681
678
|
]);
|
|
682
679
|
const KolSkipNav = /* @__PURE__ */ defineContainer("kol-skip-nav", void 0, [
|
|
683
680
|
"_label",
|
|
@@ -701,28 +698,11 @@ const KolSplitButton = /* @__PURE__ */ defineContainer("kol-split-button", void
|
|
|
701
698
|
"_on",
|
|
702
699
|
"_role",
|
|
703
700
|
"_syncValueBySelector",
|
|
704
|
-
"_tabIndex",
|
|
705
701
|
"_tooltipAlign",
|
|
706
702
|
"_type",
|
|
707
703
|
"_value",
|
|
708
704
|
"_variant"
|
|
709
705
|
]);
|
|
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
706
|
const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", void 0, [
|
|
727
707
|
"_allowMultiSort",
|
|
728
708
|
"_data",
|
|
@@ -733,7 +713,8 @@ const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", v
|
|
|
733
713
|
"_pagination",
|
|
734
714
|
"_paginationPosition",
|
|
735
715
|
"_selection",
|
|
736
|
-
"_on"
|
|
716
|
+
"_on",
|
|
717
|
+
"_tableSettings"
|
|
737
718
|
]);
|
|
738
719
|
const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless", void 0, [
|
|
739
720
|
"_data",
|
|
@@ -742,7 +723,8 @@ const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless",
|
|
|
742
723
|
"_label",
|
|
743
724
|
"_minWidth",
|
|
744
725
|
"_on",
|
|
745
|
-
"_selection"
|
|
726
|
+
"_selection",
|
|
727
|
+
"_tableSettings"
|
|
746
728
|
]);
|
|
747
729
|
const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
748
730
|
"_align",
|
|
@@ -755,11 +737,9 @@ const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
|
755
737
|
const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
756
738
|
"_accessKey",
|
|
757
739
|
"_adjustHeight",
|
|
758
|
-
"_alert",
|
|
759
740
|
"_disabled",
|
|
760
|
-
"_error",
|
|
761
741
|
"_hasCounter",
|
|
762
|
-
"
|
|
742
|
+
"_hideMsg",
|
|
763
743
|
"_hideLabel",
|
|
764
744
|
"_hint",
|
|
765
745
|
"_icons",
|
|
@@ -775,8 +755,8 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
775
755
|
"_required",
|
|
776
756
|
"_rows",
|
|
777
757
|
"_shortKey",
|
|
758
|
+
"_spellCheck",
|
|
778
759
|
"_syncValueBySelector",
|
|
779
|
-
"_tabIndex",
|
|
780
760
|
"_tooltipAlign",
|
|
781
761
|
"_touched",
|
|
782
762
|
"_value"
|
|
@@ -812,7 +792,6 @@ exports.KolAvatar = KolAvatar;
|
|
|
812
792
|
exports.KolBadge = KolBadge;
|
|
813
793
|
exports.KolBreadcrumb = KolBreadcrumb;
|
|
814
794
|
exports.KolButton = KolButton;
|
|
815
|
-
exports.KolButtonGroup = KolButtonGroup;
|
|
816
795
|
exports.KolButtonLink = KolButtonLink;
|
|
817
796
|
exports.KolCard = KolCard;
|
|
818
797
|
exports.KolCombobox = KolCombobox;
|
|
@@ -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,11 @@ 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.KolPopoverButton = KolPopoverButton;
|
|
821
|
+
exports.KolPopoverButtonWc = KolPopoverButtonWc;
|
|
844
822
|
exports.KolProgress = KolProgress;
|
|
845
823
|
exports.KolQuote = KolQuote;
|
|
846
824
|
exports.KolSelect = KolSelect;
|
|
@@ -848,8 +826,6 @@ exports.KolSingleSelect = KolSingleSelect;
|
|
|
848
826
|
exports.KolSkipNav = KolSkipNav;
|
|
849
827
|
exports.KolSpin = KolSpin;
|
|
850
828
|
exports.KolSplitButton = KolSplitButton;
|
|
851
|
-
exports.KolSymbol = KolSymbol;
|
|
852
|
-
exports.KolTable = KolTable;
|
|
853
829
|
exports.KolTableStateful = KolTableStateful;
|
|
854
830
|
exports.KolTableStateless = KolTableStateless;
|
|
855
831
|
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,11 +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>;
|
|
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>;
|
|
47
45
|
declare const KolProgress: vue.DefineSetupFnComponent<JSX.KolProgress & InputProps<string | number | boolean>, {}, {}, JSX.KolProgress & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
48
46
|
declare const KolQuote: vue.DefineSetupFnComponent<JSX.KolQuote & InputProps<string | number | boolean>, {}, {}, JSX.KolQuote & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
49
47
|
declare const KolSelect: vue.DefineSetupFnComponent<JSX.KolSelect & InputProps<string | number | boolean>, {}, {}, JSX.KolSelect & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -51,8 +49,6 @@ declare const KolSingleSelect: vue.DefineSetupFnComponent<JSX.KolSingleSelect &
|
|
|
51
49
|
declare const KolSkipNav: vue.DefineSetupFnComponent<JSX.KolSkipNav & InputProps<string | number | boolean>, {}, {}, JSX.KolSkipNav & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
52
50
|
declare const KolSpin: vue.DefineSetupFnComponent<JSX.KolSpin & InputProps<string | number | boolean>, {}, {}, JSX.KolSpin & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
53
51
|
declare const KolSplitButton: vue.DefineSetupFnComponent<JSX.KolSplitButton & InputProps<string | number | boolean>, {}, {}, JSX.KolSplitButton & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
54
|
-
declare const KolSymbol: vue.DefineSetupFnComponent<JSX.KolSymbol & InputProps<string | number | boolean>, {}, {}, JSX.KolSymbol & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
55
|
-
declare const KolTable: vue.DefineSetupFnComponent<JSX.KolTable & InputProps<string | number | boolean>, {}, {}, JSX.KolTable & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
56
52
|
declare const KolTableStateful: vue.DefineSetupFnComponent<JSX.KolTableStateful & InputProps<string | number | boolean>, {}, {}, JSX.KolTableStateful & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
57
53
|
declare const KolTableStateless: vue.DefineSetupFnComponent<JSX.KolTableStateless & InputProps<string | number | boolean>, {}, {}, JSX.KolTableStateless & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
58
54
|
declare const KolTabs: vue.DefineSetupFnComponent<JSX.KolTabs & InputProps<string | number | boolean>, {}, {}, JSX.KolTabs & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -64,4 +60,4 @@ declare const KolTreeItem: vue.DefineSetupFnComponent<JSX.KolTreeItem & InputPro
|
|
|
64
60
|
declare const KolTreeItemWc: vue.DefineSetupFnComponent<JSX.KolTreeItemWc & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeItemWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
65
61
|
declare const KolVersion: vue.DefineSetupFnComponent<JSX.KolVersion & InputProps<string | number | boolean>, {}, {}, JSX.KolVersion & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
66
62
|
|
|
67
|
-
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
|
@@ -169,13 +169,11 @@ const KolButton = /* @__PURE__ */ defineContainer("kol-button", void 0, [
|
|
|
169
169
|
"_role",
|
|
170
170
|
"_shortKey",
|
|
171
171
|
"_syncValueBySelector",
|
|
172
|
-
"_tabIndex",
|
|
173
172
|
"_tooltipAlign",
|
|
174
173
|
"_type",
|
|
175
174
|
"_value",
|
|
176
175
|
"_variant"
|
|
177
176
|
]);
|
|
178
|
-
const KolButtonGroup = /* @__PURE__ */ defineContainer("kol-button-group", void 0);
|
|
179
177
|
const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0, [
|
|
180
178
|
"_accessKey",
|
|
181
179
|
"_ariaControls",
|
|
@@ -192,7 +190,6 @@ const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0,
|
|
|
192
190
|
"_role",
|
|
193
191
|
"_shortKey",
|
|
194
192
|
"_syncValueBySelector",
|
|
195
|
-
"_tabIndex",
|
|
196
193
|
"_tooltipAlign",
|
|
197
194
|
"_type",
|
|
198
195
|
"_value"
|
|
@@ -206,9 +203,8 @@ const KolCard = /* @__PURE__ */ defineContainer("kol-card", void 0, [
|
|
|
206
203
|
const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
207
204
|
"_accessKey",
|
|
208
205
|
"_placeholder",
|
|
209
|
-
"_alert",
|
|
210
206
|
"_disabled",
|
|
211
|
-
"
|
|
207
|
+
"_hideMsg",
|
|
212
208
|
"_hideLabel",
|
|
213
209
|
"_hint",
|
|
214
210
|
"_icons",
|
|
@@ -221,7 +217,6 @@ const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
|
221
217
|
"_required",
|
|
222
218
|
"_shortKey",
|
|
223
219
|
"_syncValueBySelector",
|
|
224
|
-
"_tabIndex",
|
|
225
220
|
"_tooltipAlign",
|
|
226
221
|
"_touched",
|
|
227
222
|
"_value"
|
|
@@ -237,7 +232,6 @@ const KolDrawer = /* @__PURE__ */ defineContainer("kol-drawer", void 0, [
|
|
|
237
232
|
"_open",
|
|
238
233
|
"_align",
|
|
239
234
|
"_label",
|
|
240
|
-
"_modal",
|
|
241
235
|
"_on"
|
|
242
236
|
]);
|
|
243
237
|
const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
@@ -262,14 +256,11 @@ const KolImage = /* @__PURE__ */ defineContainer("kol-image", void 0, [
|
|
|
262
256
|
"_src",
|
|
263
257
|
"_srcset"
|
|
264
258
|
]);
|
|
265
|
-
const KolIndentedText = /* @__PURE__ */ defineContainer("kol-indented-text", void 0);
|
|
266
259
|
const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", void 0, [
|
|
267
260
|
"_accessKey",
|
|
268
|
-
"_alert",
|
|
269
261
|
"_checked",
|
|
270
|
-
"
|
|
262
|
+
"_hideMsg",
|
|
271
263
|
"_disabled",
|
|
272
|
-
"_error",
|
|
273
264
|
"_hideLabel",
|
|
274
265
|
"_hint",
|
|
275
266
|
"_icons",
|
|
@@ -283,7 +274,6 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
283
274
|
"_required",
|
|
284
275
|
"_shortKey",
|
|
285
276
|
"_syncValueBySelector",
|
|
286
|
-
"_tabIndex",
|
|
287
277
|
"_tooltipAlign",
|
|
288
278
|
"_touched",
|
|
289
279
|
"_value",
|
|
@@ -291,11 +281,9 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
291
281
|
]);
|
|
292
282
|
const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0, [
|
|
293
283
|
"_accessKey",
|
|
294
|
-
"_alert",
|
|
295
284
|
"_autoComplete",
|
|
296
285
|
"_disabled",
|
|
297
|
-
"
|
|
298
|
-
"_hideError",
|
|
286
|
+
"_hideMsg",
|
|
299
287
|
"_hideLabel",
|
|
300
288
|
"_hint",
|
|
301
289
|
"_icons",
|
|
@@ -308,18 +296,15 @@ const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0,
|
|
|
308
296
|
"_smartButton",
|
|
309
297
|
"_suggestions",
|
|
310
298
|
"_syncValueBySelector",
|
|
311
|
-
"_tabIndex",
|
|
312
299
|
"_tooltipAlign",
|
|
313
300
|
"_touched",
|
|
314
301
|
"_value"
|
|
315
302
|
]);
|
|
316
303
|
const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
317
304
|
"_accessKey",
|
|
318
|
-
"_alert",
|
|
319
305
|
"_autoComplete",
|
|
320
306
|
"_disabled",
|
|
321
|
-
"
|
|
322
|
-
"_hideError",
|
|
307
|
+
"_hideMsg",
|
|
323
308
|
"_hideLabel",
|
|
324
309
|
"_hint",
|
|
325
310
|
"_icons",
|
|
@@ -337,7 +322,6 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
337
322
|
"_suggestions",
|
|
338
323
|
"_syncValueBySelector",
|
|
339
324
|
"_step",
|
|
340
|
-
"_tabIndex",
|
|
341
325
|
"_tooltipAlign",
|
|
342
326
|
"_touched",
|
|
343
327
|
"_type",
|
|
@@ -345,12 +329,10 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
345
329
|
]);
|
|
346
330
|
const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0, [
|
|
347
331
|
"_accessKey",
|
|
348
|
-
"_alert",
|
|
349
332
|
"_autoComplete",
|
|
350
333
|
"_disabled",
|
|
351
|
-
"_error",
|
|
352
334
|
"_hasCounter",
|
|
353
|
-
"
|
|
335
|
+
"_hideMsg",
|
|
354
336
|
"_hideLabel",
|
|
355
337
|
"_hint",
|
|
356
338
|
"_icons",
|
|
@@ -369,7 +351,6 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
369
351
|
"_smartButton",
|
|
370
352
|
"_suggestions",
|
|
371
353
|
"_syncValueBySelector",
|
|
372
|
-
"_tabIndex",
|
|
373
354
|
"_tooltipAlign",
|
|
374
355
|
"_touched",
|
|
375
356
|
"_value"
|
|
@@ -377,10 +358,8 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
377
358
|
const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
378
359
|
"_accept",
|
|
379
360
|
"_accessKey",
|
|
380
|
-
"_alert",
|
|
381
361
|
"_disabled",
|
|
382
|
-
"
|
|
383
|
-
"_hideError",
|
|
362
|
+
"_hideMsg",
|
|
384
363
|
"_hideLabel",
|
|
385
364
|
"_hint",
|
|
386
365
|
"_icons",
|
|
@@ -394,18 +373,14 @@ const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
|
394
373
|
"_shortKey",
|
|
395
374
|
"_smartButton",
|
|
396
375
|
"_syncValueBySelector",
|
|
397
|
-
"_tabIndex",
|
|
398
376
|
"_tooltipAlign",
|
|
399
|
-
"_touched"
|
|
400
|
-
"_value"
|
|
377
|
+
"_touched"
|
|
401
378
|
]);
|
|
402
379
|
const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void 0, [
|
|
403
380
|
"_accessKey",
|
|
404
|
-
"_alert",
|
|
405
381
|
"_autoComplete",
|
|
406
382
|
"_disabled",
|
|
407
|
-
"
|
|
408
|
-
"_hideError",
|
|
383
|
+
"_hideMsg",
|
|
409
384
|
"_hideLabel",
|
|
410
385
|
"_hint",
|
|
411
386
|
"_icons",
|
|
@@ -424,19 +399,16 @@ const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void
|
|
|
424
399
|
"_suggestions",
|
|
425
400
|
"_step",
|
|
426
401
|
"_syncValueBySelector",
|
|
427
|
-
"_tabIndex",
|
|
428
402
|
"_tooltipAlign",
|
|
429
403
|
"_touched",
|
|
430
404
|
"_value"
|
|
431
405
|
]);
|
|
432
406
|
const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", void 0, [
|
|
433
407
|
"_accessKey",
|
|
434
|
-
"_alert",
|
|
435
408
|
"_autoComplete",
|
|
436
409
|
"_disabled",
|
|
437
|
-
"_error",
|
|
438
410
|
"_hasCounter",
|
|
439
|
-
"
|
|
411
|
+
"_hideMsg",
|
|
440
412
|
"_hideLabel",
|
|
441
413
|
"_hint",
|
|
442
414
|
"_icons",
|
|
@@ -453,7 +425,6 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
453
425
|
"_shortKey",
|
|
454
426
|
"_smartButton",
|
|
455
427
|
"_syncValueBySelector",
|
|
456
|
-
"_tabIndex",
|
|
457
428
|
"_tooltipAlign",
|
|
458
429
|
"_touched",
|
|
459
430
|
"_value",
|
|
@@ -461,10 +432,8 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
461
432
|
]);
|
|
462
433
|
const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0, [
|
|
463
434
|
"_accessKey",
|
|
464
|
-
"_alert",
|
|
465
435
|
"_disabled",
|
|
466
|
-
"
|
|
467
|
-
"_hideError",
|
|
436
|
+
"_hideMsg",
|
|
468
437
|
"_hideLabel",
|
|
469
438
|
"_hint",
|
|
470
439
|
"_id",
|
|
@@ -477,18 +446,15 @@ const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0,
|
|
|
477
446
|
"_required",
|
|
478
447
|
"_shortKey",
|
|
479
448
|
"_syncValueBySelector",
|
|
480
|
-
"_tabIndex",
|
|
481
449
|
"_tooltipAlign",
|
|
482
450
|
"_touched",
|
|
483
451
|
"_value"
|
|
484
452
|
]);
|
|
485
453
|
const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0, [
|
|
486
454
|
"_accessKey",
|
|
487
|
-
"_alert",
|
|
488
455
|
"_autoComplete",
|
|
489
456
|
"_disabled",
|
|
490
|
-
"
|
|
491
|
-
"_hideError",
|
|
457
|
+
"_hideMsg",
|
|
492
458
|
"_hideLabel",
|
|
493
459
|
"_hint",
|
|
494
460
|
"_icons",
|
|
@@ -503,19 +469,16 @@ const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0,
|
|
|
503
469
|
"_step",
|
|
504
470
|
"_suggestions",
|
|
505
471
|
"_syncValueBySelector",
|
|
506
|
-
"_tabIndex",
|
|
507
472
|
"_tooltipAlign",
|
|
508
473
|
"_touched",
|
|
509
474
|
"_value"
|
|
510
475
|
]);
|
|
511
476
|
const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
512
477
|
"_accessKey",
|
|
513
|
-
"_alert",
|
|
514
478
|
"_autoComplete",
|
|
515
479
|
"_disabled",
|
|
516
|
-
"_error",
|
|
517
480
|
"_hasCounter",
|
|
518
|
-
"
|
|
481
|
+
"_hideMsg",
|
|
519
482
|
"_hideLabel",
|
|
520
483
|
"_hint",
|
|
521
484
|
"_icons",
|
|
@@ -530,10 +493,10 @@ const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
|
530
493
|
"_readOnly",
|
|
531
494
|
"_required",
|
|
532
495
|
"_shortKey",
|
|
496
|
+
"_spellCheck",
|
|
533
497
|
"_suggestions",
|
|
534
498
|
"_smartButton",
|
|
535
499
|
"_syncValueBySelector",
|
|
536
|
-
"_tabIndex",
|
|
537
500
|
"_tooltipAlign",
|
|
538
501
|
"_touched",
|
|
539
502
|
"_type",
|
|
@@ -556,7 +519,6 @@ const KolLink = /* @__PURE__ */ defineContainer("kol-link", void 0, [
|
|
|
556
519
|
"_on",
|
|
557
520
|
"_role",
|
|
558
521
|
"_shortKey",
|
|
559
|
-
"_tabIndex",
|
|
560
522
|
"_target",
|
|
561
523
|
"_tooltipAlign"
|
|
562
524
|
]);
|
|
@@ -574,25 +536,15 @@ const KolLinkButton = /* @__PURE__ */ defineContainer("kol-link-button", void 0,
|
|
|
574
536
|
"_on",
|
|
575
537
|
"_role",
|
|
576
538
|
"_shortKey",
|
|
577
|
-
"_tabIndex",
|
|
578
539
|
"_target",
|
|
579
540
|
"_tooltipAlign",
|
|
580
541
|
"_variant"
|
|
581
542
|
]);
|
|
582
|
-
const KolLinkGroup = /* @__PURE__ */ defineContainer("kol-link-group", void 0, [
|
|
583
|
-
"_listStyleType",
|
|
584
|
-
"_label",
|
|
585
|
-
"_links",
|
|
586
|
-
"_orientation"
|
|
587
|
-
]);
|
|
588
|
-
const KolLogo = /* @__PURE__ */ defineContainer("kol-logo", void 0, [
|
|
589
|
-
"_org"
|
|
590
|
-
]);
|
|
591
543
|
const KolModal = /* @__PURE__ */ defineContainer("kol-modal", void 0, [
|
|
592
|
-
"_activeElement",
|
|
593
544
|
"_label",
|
|
594
545
|
"_on",
|
|
595
|
-
"_width"
|
|
546
|
+
"_width",
|
|
547
|
+
"_variant"
|
|
596
548
|
]);
|
|
597
549
|
const KolNav = /* @__PURE__ */ defineContainer("kol-nav", void 0, [
|
|
598
550
|
"_collapsible",
|
|
@@ -616,6 +568,54 @@ const KolPagination = /* @__PURE__ */ defineContainer("kol-pagination", void 0,
|
|
|
616
568
|
"_tooltipAlign",
|
|
617
569
|
"_max"
|
|
618
570
|
]);
|
|
571
|
+
const KolPopoverButton = /* @__PURE__ */ defineContainer("kol-popover-button", void 0, [
|
|
572
|
+
"_accessKey",
|
|
573
|
+
"_ariaControls",
|
|
574
|
+
"_ariaDescription",
|
|
575
|
+
"_ariaExpanded",
|
|
576
|
+
"_ariaSelected",
|
|
577
|
+
"_customClass",
|
|
578
|
+
"_disabled",
|
|
579
|
+
"_hideLabel",
|
|
580
|
+
"_icons",
|
|
581
|
+
"_id",
|
|
582
|
+
"_label",
|
|
583
|
+
"_name",
|
|
584
|
+
"_on",
|
|
585
|
+
"_popoverAlign",
|
|
586
|
+
"_role",
|
|
587
|
+
"_shortKey",
|
|
588
|
+
"_syncValueBySelector",
|
|
589
|
+
"_tabIndex",
|
|
590
|
+
"_tooltipAlign",
|
|
591
|
+
"_type",
|
|
592
|
+
"_value",
|
|
593
|
+
"_variant"
|
|
594
|
+
]);
|
|
595
|
+
const KolPopoverButtonWc = /* @__PURE__ */ defineContainer("kol-popover-button-wc", void 0, [
|
|
596
|
+
"_accessKey",
|
|
597
|
+
"_ariaControls",
|
|
598
|
+
"_ariaDescription",
|
|
599
|
+
"_ariaExpanded",
|
|
600
|
+
"_ariaSelected",
|
|
601
|
+
"_customClass",
|
|
602
|
+
"_disabled",
|
|
603
|
+
"_hideLabel",
|
|
604
|
+
"_icons",
|
|
605
|
+
"_id",
|
|
606
|
+
"_label",
|
|
607
|
+
"_name",
|
|
608
|
+
"_on",
|
|
609
|
+
"_popoverAlign",
|
|
610
|
+
"_role",
|
|
611
|
+
"_shortKey",
|
|
612
|
+
"_syncValueBySelector",
|
|
613
|
+
"_tabIndex",
|
|
614
|
+
"_tooltipAlign",
|
|
615
|
+
"_type",
|
|
616
|
+
"_value",
|
|
617
|
+
"_variant"
|
|
618
|
+
]);
|
|
619
619
|
const KolProgress = /* @__PURE__ */ defineContainer("kol-progress", void 0, [
|
|
620
620
|
"_label",
|
|
621
621
|
"_max",
|
|
@@ -631,10 +631,8 @@ const KolQuote = /* @__PURE__ */ defineContainer("kol-quote", void 0, [
|
|
|
631
631
|
]);
|
|
632
632
|
const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
633
633
|
"_accessKey",
|
|
634
|
-
"_alert",
|
|
635
634
|
"_disabled",
|
|
636
|
-
"
|
|
637
|
-
"_hideError",
|
|
635
|
+
"_hideMsg",
|
|
638
636
|
"_hideLabel",
|
|
639
637
|
"_hint",
|
|
640
638
|
"_icons",
|
|
@@ -657,9 +655,8 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
657
655
|
const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", void 0, [
|
|
658
656
|
"_accessKey",
|
|
659
657
|
"_placeholder",
|
|
660
|
-
"_alert",
|
|
661
658
|
"_disabled",
|
|
662
|
-
"
|
|
659
|
+
"_hideMsg",
|
|
663
660
|
"_hideLabel",
|
|
664
661
|
"_hint",
|
|
665
662
|
"_icons",
|
|
@@ -672,10 +669,10 @@ const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", voi
|
|
|
672
669
|
"_required",
|
|
673
670
|
"_shortKey",
|
|
674
671
|
"_syncValueBySelector",
|
|
675
|
-
"_tabIndex",
|
|
676
672
|
"_tooltipAlign",
|
|
677
673
|
"_touched",
|
|
678
|
-
"_value"
|
|
674
|
+
"_value",
|
|
675
|
+
"_hideClearButton"
|
|
679
676
|
]);
|
|
680
677
|
const KolSkipNav = /* @__PURE__ */ defineContainer("kol-skip-nav", void 0, [
|
|
681
678
|
"_label",
|
|
@@ -699,28 +696,11 @@ const KolSplitButton = /* @__PURE__ */ defineContainer("kol-split-button", void
|
|
|
699
696
|
"_on",
|
|
700
697
|
"_role",
|
|
701
698
|
"_syncValueBySelector",
|
|
702
|
-
"_tabIndex",
|
|
703
699
|
"_tooltipAlign",
|
|
704
700
|
"_type",
|
|
705
701
|
"_value",
|
|
706
702
|
"_variant"
|
|
707
703
|
]);
|
|
708
|
-
const KolSymbol = /* @__PURE__ */ defineContainer("kol-symbol", void 0, [
|
|
709
|
-
"_label",
|
|
710
|
-
"_symbol"
|
|
711
|
-
]);
|
|
712
|
-
const KolTable = /* @__PURE__ */ defineContainer("kol-table", void 0, [
|
|
713
|
-
"_allowMultiSort",
|
|
714
|
-
"_data",
|
|
715
|
-
"_dataFoot",
|
|
716
|
-
"_headers",
|
|
717
|
-
"_label",
|
|
718
|
-
"_minWidth",
|
|
719
|
-
"_pagination",
|
|
720
|
-
"_paginationPosition",
|
|
721
|
-
"_selection",
|
|
722
|
-
"_on"
|
|
723
|
-
]);
|
|
724
704
|
const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", void 0, [
|
|
725
705
|
"_allowMultiSort",
|
|
726
706
|
"_data",
|
|
@@ -731,7 +711,8 @@ const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", v
|
|
|
731
711
|
"_pagination",
|
|
732
712
|
"_paginationPosition",
|
|
733
713
|
"_selection",
|
|
734
|
-
"_on"
|
|
714
|
+
"_on",
|
|
715
|
+
"_tableSettings"
|
|
735
716
|
]);
|
|
736
717
|
const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless", void 0, [
|
|
737
718
|
"_data",
|
|
@@ -740,7 +721,8 @@ const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless",
|
|
|
740
721
|
"_label",
|
|
741
722
|
"_minWidth",
|
|
742
723
|
"_on",
|
|
743
|
-
"_selection"
|
|
724
|
+
"_selection",
|
|
725
|
+
"_tableSettings"
|
|
744
726
|
]);
|
|
745
727
|
const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
746
728
|
"_align",
|
|
@@ -753,11 +735,9 @@ const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
|
753
735
|
const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
754
736
|
"_accessKey",
|
|
755
737
|
"_adjustHeight",
|
|
756
|
-
"_alert",
|
|
757
738
|
"_disabled",
|
|
758
|
-
"_error",
|
|
759
739
|
"_hasCounter",
|
|
760
|
-
"
|
|
740
|
+
"_hideMsg",
|
|
761
741
|
"_hideLabel",
|
|
762
742
|
"_hint",
|
|
763
743
|
"_icons",
|
|
@@ -773,8 +753,8 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
773
753
|
"_required",
|
|
774
754
|
"_rows",
|
|
775
755
|
"_shortKey",
|
|
756
|
+
"_spellCheck",
|
|
776
757
|
"_syncValueBySelector",
|
|
777
|
-
"_tabIndex",
|
|
778
758
|
"_tooltipAlign",
|
|
779
759
|
"_touched",
|
|
780
760
|
"_value"
|
|
@@ -803,4 +783,4 @@ const KolVersion = /* @__PURE__ */ defineContainer("kol-version", void 0, [
|
|
|
803
783
|
"_label"
|
|
804
784
|
]);
|
|
805
785
|
|
|
806
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton,
|
|
786
|
+
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.0.0-
|
|
3
|
+
"version": "3.0.0-dcba8228fa4178aa125eea17082fc647882faa96.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.26.
|
|
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.
|
|
52
|
+
"typescript": "5.8.2",
|
|
53
53
|
"unbuild": "1.2.1",
|
|
54
54
|
"vue": "3.4.21",
|
|
55
|
-
"@public-ui/components": "3.0.0-
|
|
55
|
+
"@public-ui/components": "3.0.0-dcba8228fa4178aa125eea17082fc647882faa96.0"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"vue": ">=3",
|
|
59
|
-
"@public-ui/components": "3.0.0-
|
|
59
|
+
"@public-ui/components": "3.0.0-dcba8228fa4178aa125eea17082fc647882faa96.0"
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
62
|
"type": "module",
|