@public-ui/vue 3.0.0-alpha.0 → 3.0.0-ec88c9a9f00b83411c02bb7c1e982732e1259613.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 +44 -78
- package/dist/index.d.ts +2 -7
- package/dist/index.mjs +44 -73
- 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
|
@@ -177,7 +177,6 @@ const KolButton = /* @__PURE__ */ defineContainer("kol-button", void 0, [
|
|
|
177
177
|
"_value",
|
|
178
178
|
"_variant"
|
|
179
179
|
]);
|
|
180
|
-
const KolButtonGroup = /* @__PURE__ */ defineContainer("kol-button-group", void 0);
|
|
181
180
|
const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0, [
|
|
182
181
|
"_accessKey",
|
|
183
182
|
"_ariaControls",
|
|
@@ -208,9 +207,8 @@ const KolCard = /* @__PURE__ */ defineContainer("kol-card", void 0, [
|
|
|
208
207
|
const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
209
208
|
"_accessKey",
|
|
210
209
|
"_placeholder",
|
|
211
|
-
"_alert",
|
|
212
210
|
"_disabled",
|
|
213
|
-
"
|
|
211
|
+
"_hideMsg",
|
|
214
212
|
"_hideLabel",
|
|
215
213
|
"_hint",
|
|
216
214
|
"_icons",
|
|
@@ -239,7 +237,6 @@ const KolDrawer = /* @__PURE__ */ defineContainer("kol-drawer", void 0, [
|
|
|
239
237
|
"_open",
|
|
240
238
|
"_align",
|
|
241
239
|
"_label",
|
|
242
|
-
"_modal",
|
|
243
240
|
"_on"
|
|
244
241
|
]);
|
|
245
242
|
const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
@@ -264,14 +261,11 @@ const KolImage = /* @__PURE__ */ defineContainer("kol-image", void 0, [
|
|
|
264
261
|
"_src",
|
|
265
262
|
"_srcset"
|
|
266
263
|
]);
|
|
267
|
-
const KolIndentedText = /* @__PURE__ */ defineContainer("kol-indented-text", void 0);
|
|
268
264
|
const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", void 0, [
|
|
269
265
|
"_accessKey",
|
|
270
|
-
"_alert",
|
|
271
266
|
"_checked",
|
|
272
|
-
"
|
|
267
|
+
"_hideMsg",
|
|
273
268
|
"_disabled",
|
|
274
|
-
"_error",
|
|
275
269
|
"_hideLabel",
|
|
276
270
|
"_hint",
|
|
277
271
|
"_icons",
|
|
@@ -293,11 +287,9 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
293
287
|
]);
|
|
294
288
|
const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0, [
|
|
295
289
|
"_accessKey",
|
|
296
|
-
"_alert",
|
|
297
290
|
"_autoComplete",
|
|
298
291
|
"_disabled",
|
|
299
|
-
"
|
|
300
|
-
"_hideError",
|
|
292
|
+
"_hideMsg",
|
|
301
293
|
"_hideLabel",
|
|
302
294
|
"_hint",
|
|
303
295
|
"_icons",
|
|
@@ -317,11 +309,9 @@ const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0,
|
|
|
317
309
|
]);
|
|
318
310
|
const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
319
311
|
"_accessKey",
|
|
320
|
-
"_alert",
|
|
321
312
|
"_autoComplete",
|
|
322
313
|
"_disabled",
|
|
323
|
-
"
|
|
324
|
-
"_hideError",
|
|
314
|
+
"_hideMsg",
|
|
325
315
|
"_hideLabel",
|
|
326
316
|
"_hint",
|
|
327
317
|
"_icons",
|
|
@@ -347,12 +337,10 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
347
337
|
]);
|
|
348
338
|
const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0, [
|
|
349
339
|
"_accessKey",
|
|
350
|
-
"_alert",
|
|
351
340
|
"_autoComplete",
|
|
352
341
|
"_disabled",
|
|
353
|
-
"_error",
|
|
354
342
|
"_hasCounter",
|
|
355
|
-
"
|
|
343
|
+
"_hideMsg",
|
|
356
344
|
"_hideLabel",
|
|
357
345
|
"_hint",
|
|
358
346
|
"_icons",
|
|
@@ -379,10 +367,8 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
379
367
|
const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
380
368
|
"_accept",
|
|
381
369
|
"_accessKey",
|
|
382
|
-
"_alert",
|
|
383
370
|
"_disabled",
|
|
384
|
-
"
|
|
385
|
-
"_hideError",
|
|
371
|
+
"_hideMsg",
|
|
386
372
|
"_hideLabel",
|
|
387
373
|
"_hint",
|
|
388
374
|
"_icons",
|
|
@@ -398,16 +384,13 @@ const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
|
398
384
|
"_syncValueBySelector",
|
|
399
385
|
"_tabIndex",
|
|
400
386
|
"_tooltipAlign",
|
|
401
|
-
"_touched"
|
|
402
|
-
"_value"
|
|
387
|
+
"_touched"
|
|
403
388
|
]);
|
|
404
389
|
const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void 0, [
|
|
405
390
|
"_accessKey",
|
|
406
|
-
"_alert",
|
|
407
391
|
"_autoComplete",
|
|
408
392
|
"_disabled",
|
|
409
|
-
"
|
|
410
|
-
"_hideError",
|
|
393
|
+
"_hideMsg",
|
|
411
394
|
"_hideLabel",
|
|
412
395
|
"_hint",
|
|
413
396
|
"_icons",
|
|
@@ -433,12 +416,10 @@ const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void
|
|
|
433
416
|
]);
|
|
434
417
|
const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", void 0, [
|
|
435
418
|
"_accessKey",
|
|
436
|
-
"_alert",
|
|
437
419
|
"_autoComplete",
|
|
438
420
|
"_disabled",
|
|
439
|
-
"_error",
|
|
440
421
|
"_hasCounter",
|
|
441
|
-
"
|
|
422
|
+
"_hideMsg",
|
|
442
423
|
"_hideLabel",
|
|
443
424
|
"_hint",
|
|
444
425
|
"_icons",
|
|
@@ -463,10 +444,8 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
463
444
|
]);
|
|
464
445
|
const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0, [
|
|
465
446
|
"_accessKey",
|
|
466
|
-
"_alert",
|
|
467
447
|
"_disabled",
|
|
468
|
-
"
|
|
469
|
-
"_hideError",
|
|
448
|
+
"_hideMsg",
|
|
470
449
|
"_hideLabel",
|
|
471
450
|
"_hint",
|
|
472
451
|
"_id",
|
|
@@ -486,11 +465,9 @@ const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0,
|
|
|
486
465
|
]);
|
|
487
466
|
const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0, [
|
|
488
467
|
"_accessKey",
|
|
489
|
-
"_alert",
|
|
490
468
|
"_autoComplete",
|
|
491
469
|
"_disabled",
|
|
492
|
-
"
|
|
493
|
-
"_hideError",
|
|
470
|
+
"_hideMsg",
|
|
494
471
|
"_hideLabel",
|
|
495
472
|
"_hint",
|
|
496
473
|
"_icons",
|
|
@@ -512,12 +489,10 @@ const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0,
|
|
|
512
489
|
]);
|
|
513
490
|
const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
514
491
|
"_accessKey",
|
|
515
|
-
"_alert",
|
|
516
492
|
"_autoComplete",
|
|
517
493
|
"_disabled",
|
|
518
|
-
"_error",
|
|
519
494
|
"_hasCounter",
|
|
520
|
-
"
|
|
495
|
+
"_hideMsg",
|
|
521
496
|
"_hideLabel",
|
|
522
497
|
"_hint",
|
|
523
498
|
"_icons",
|
|
@@ -532,6 +507,7 @@ const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
|
532
507
|
"_readOnly",
|
|
533
508
|
"_required",
|
|
534
509
|
"_shortKey",
|
|
510
|
+
"_spellCheck",
|
|
535
511
|
"_suggestions",
|
|
536
512
|
"_smartButton",
|
|
537
513
|
"_syncValueBySelector",
|
|
@@ -581,20 +557,11 @@ const KolLinkButton = /* @__PURE__ */ defineContainer("kol-link-button", void 0,
|
|
|
581
557
|
"_tooltipAlign",
|
|
582
558
|
"_variant"
|
|
583
559
|
]);
|
|
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
560
|
const KolModal = /* @__PURE__ */ defineContainer("kol-modal", void 0, [
|
|
594
|
-
"_activeElement",
|
|
595
561
|
"_label",
|
|
596
562
|
"_on",
|
|
597
|
-
"_width"
|
|
563
|
+
"_width",
|
|
564
|
+
"_variant"
|
|
598
565
|
]);
|
|
599
566
|
const KolNav = /* @__PURE__ */ defineContainer("kol-nav", void 0, [
|
|
600
567
|
"_collapsible",
|
|
@@ -618,6 +585,30 @@ const KolPagination = /* @__PURE__ */ defineContainer("kol-pagination", void 0,
|
|
|
618
585
|
"_tooltipAlign",
|
|
619
586
|
"_max"
|
|
620
587
|
]);
|
|
588
|
+
const KolPopoverButton = /* @__PURE__ */ defineContainer("kol-popover-button", void 0, [
|
|
589
|
+
"_accessKey",
|
|
590
|
+
"_ariaControls",
|
|
591
|
+
"_ariaDescription",
|
|
592
|
+
"_ariaExpanded",
|
|
593
|
+
"_ariaSelected",
|
|
594
|
+
"_customClass",
|
|
595
|
+
"_disabled",
|
|
596
|
+
"_hideLabel",
|
|
597
|
+
"_icons",
|
|
598
|
+
"_id",
|
|
599
|
+
"_label",
|
|
600
|
+
"_name",
|
|
601
|
+
"_on",
|
|
602
|
+
"_popoverAlign",
|
|
603
|
+
"_role",
|
|
604
|
+
"_shortKey",
|
|
605
|
+
"_syncValueBySelector",
|
|
606
|
+
"_tabIndex",
|
|
607
|
+
"_tooltipAlign",
|
|
608
|
+
"_type",
|
|
609
|
+
"_value",
|
|
610
|
+
"_variant"
|
|
611
|
+
]);
|
|
621
612
|
const KolProgress = /* @__PURE__ */ defineContainer("kol-progress", void 0, [
|
|
622
613
|
"_label",
|
|
623
614
|
"_max",
|
|
@@ -633,10 +624,8 @@ const KolQuote = /* @__PURE__ */ defineContainer("kol-quote", void 0, [
|
|
|
633
624
|
]);
|
|
634
625
|
const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
635
626
|
"_accessKey",
|
|
636
|
-
"_alert",
|
|
637
627
|
"_disabled",
|
|
638
|
-
"
|
|
639
|
-
"_hideError",
|
|
628
|
+
"_hideMsg",
|
|
640
629
|
"_hideLabel",
|
|
641
630
|
"_hint",
|
|
642
631
|
"_icons",
|
|
@@ -659,9 +648,8 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
659
648
|
const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", void 0, [
|
|
660
649
|
"_accessKey",
|
|
661
650
|
"_placeholder",
|
|
662
|
-
"_alert",
|
|
663
651
|
"_disabled",
|
|
664
|
-
"
|
|
652
|
+
"_hideMsg",
|
|
665
653
|
"_hideLabel",
|
|
666
654
|
"_hint",
|
|
667
655
|
"_icons",
|
|
@@ -707,22 +695,6 @@ const KolSplitButton = /* @__PURE__ */ defineContainer("kol-split-button", void
|
|
|
707
695
|
"_value",
|
|
708
696
|
"_variant"
|
|
709
697
|
]);
|
|
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
698
|
const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", void 0, [
|
|
727
699
|
"_allowMultiSort",
|
|
728
700
|
"_data",
|
|
@@ -755,11 +727,9 @@ const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
|
755
727
|
const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
756
728
|
"_accessKey",
|
|
757
729
|
"_adjustHeight",
|
|
758
|
-
"_alert",
|
|
759
730
|
"_disabled",
|
|
760
|
-
"_error",
|
|
761
731
|
"_hasCounter",
|
|
762
|
-
"
|
|
732
|
+
"_hideMsg",
|
|
763
733
|
"_hideLabel",
|
|
764
734
|
"_hint",
|
|
765
735
|
"_icons",
|
|
@@ -775,6 +745,7 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
775
745
|
"_required",
|
|
776
746
|
"_rows",
|
|
777
747
|
"_shortKey",
|
|
748
|
+
"_spellCheck",
|
|
778
749
|
"_syncValueBySelector",
|
|
779
750
|
"_tabIndex",
|
|
780
751
|
"_tooltipAlign",
|
|
@@ -812,7 +783,6 @@ exports.KolAvatar = KolAvatar;
|
|
|
812
783
|
exports.KolBadge = KolBadge;
|
|
813
784
|
exports.KolBreadcrumb = KolBreadcrumb;
|
|
814
785
|
exports.KolButton = KolButton;
|
|
815
|
-
exports.KolButtonGroup = KolButtonGroup;
|
|
816
786
|
exports.KolButtonLink = KolButtonLink;
|
|
817
787
|
exports.KolCard = KolCard;
|
|
818
788
|
exports.KolCombobox = KolCombobox;
|
|
@@ -822,7 +792,6 @@ exports.KolForm = KolForm;
|
|
|
822
792
|
exports.KolHeading = KolHeading;
|
|
823
793
|
exports.KolIcon = KolIcon;
|
|
824
794
|
exports.KolImage = KolImage;
|
|
825
|
-
exports.KolIndentedText = KolIndentedText;
|
|
826
795
|
exports.KolInputCheckbox = KolInputCheckbox;
|
|
827
796
|
exports.KolInputColor = KolInputColor;
|
|
828
797
|
exports.KolInputDate = KolInputDate;
|
|
@@ -836,11 +805,10 @@ exports.KolInputText = KolInputText;
|
|
|
836
805
|
exports.KolKolibri = KolKolibri;
|
|
837
806
|
exports.KolLink = KolLink;
|
|
838
807
|
exports.KolLinkButton = KolLinkButton;
|
|
839
|
-
exports.KolLinkGroup = KolLinkGroup;
|
|
840
|
-
exports.KolLogo = KolLogo;
|
|
841
808
|
exports.KolModal = KolModal;
|
|
842
809
|
exports.KolNav = KolNav;
|
|
843
810
|
exports.KolPagination = KolPagination;
|
|
811
|
+
exports.KolPopoverButton = KolPopoverButton;
|
|
844
812
|
exports.KolProgress = KolProgress;
|
|
845
813
|
exports.KolQuote = KolQuote;
|
|
846
814
|
exports.KolSelect = KolSelect;
|
|
@@ -848,8 +816,6 @@ exports.KolSingleSelect = KolSingleSelect;
|
|
|
848
816
|
exports.KolSkipNav = KolSkipNav;
|
|
849
817
|
exports.KolSpin = KolSpin;
|
|
850
818
|
exports.KolSplitButton = KolSplitButton;
|
|
851
|
-
exports.KolSymbol = KolSymbol;
|
|
852
|
-
exports.KolTable = KolTable;
|
|
853
819
|
exports.KolTableStateful = KolTableStateful;
|
|
854
820
|
exports.KolTableStateless = KolTableStateless;
|
|
855
821
|
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,10 @@ 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>;
|
|
47
44
|
declare const KolProgress: vue.DefineSetupFnComponent<JSX.KolProgress & InputProps<string | number | boolean>, {}, {}, JSX.KolProgress & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
48
45
|
declare const KolQuote: vue.DefineSetupFnComponent<JSX.KolQuote & InputProps<string | number | boolean>, {}, {}, JSX.KolQuote & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
49
46
|
declare const KolSelect: vue.DefineSetupFnComponent<JSX.KolSelect & InputProps<string | number | boolean>, {}, {}, JSX.KolSelect & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -51,8 +48,6 @@ declare const KolSingleSelect: vue.DefineSetupFnComponent<JSX.KolSingleSelect &
|
|
|
51
48
|
declare const KolSkipNav: vue.DefineSetupFnComponent<JSX.KolSkipNav & InputProps<string | number | boolean>, {}, {}, JSX.KolSkipNav & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
52
49
|
declare const KolSpin: vue.DefineSetupFnComponent<JSX.KolSpin & InputProps<string | number | boolean>, {}, {}, JSX.KolSpin & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
53
50
|
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
51
|
declare const KolTableStateful: vue.DefineSetupFnComponent<JSX.KolTableStateful & InputProps<string | number | boolean>, {}, {}, JSX.KolTableStateful & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
57
52
|
declare const KolTableStateless: vue.DefineSetupFnComponent<JSX.KolTableStateless & InputProps<string | number | boolean>, {}, {}, JSX.KolTableStateless & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
58
53
|
declare const KolTabs: vue.DefineSetupFnComponent<JSX.KolTabs & InputProps<string | number | boolean>, {}, {}, JSX.KolTabs & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -64,4 +59,4 @@ declare const KolTreeItem: vue.DefineSetupFnComponent<JSX.KolTreeItem & InputPro
|
|
|
64
59
|
declare const KolTreeItemWc: vue.DefineSetupFnComponent<JSX.KolTreeItemWc & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeItemWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
65
60
|
declare const KolVersion: vue.DefineSetupFnComponent<JSX.KolVersion & InputProps<string | number | boolean>, {}, {}, JSX.KolVersion & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
66
61
|
|
|
67
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton,
|
|
62
|
+
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, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -175,7 +175,6 @@ const KolButton = /* @__PURE__ */ defineContainer("kol-button", void 0, [
|
|
|
175
175
|
"_value",
|
|
176
176
|
"_variant"
|
|
177
177
|
]);
|
|
178
|
-
const KolButtonGroup = /* @__PURE__ */ defineContainer("kol-button-group", void 0);
|
|
179
178
|
const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0, [
|
|
180
179
|
"_accessKey",
|
|
181
180
|
"_ariaControls",
|
|
@@ -206,9 +205,8 @@ const KolCard = /* @__PURE__ */ defineContainer("kol-card", void 0, [
|
|
|
206
205
|
const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
207
206
|
"_accessKey",
|
|
208
207
|
"_placeholder",
|
|
209
|
-
"_alert",
|
|
210
208
|
"_disabled",
|
|
211
|
-
"
|
|
209
|
+
"_hideMsg",
|
|
212
210
|
"_hideLabel",
|
|
213
211
|
"_hint",
|
|
214
212
|
"_icons",
|
|
@@ -237,7 +235,6 @@ const KolDrawer = /* @__PURE__ */ defineContainer("kol-drawer", void 0, [
|
|
|
237
235
|
"_open",
|
|
238
236
|
"_align",
|
|
239
237
|
"_label",
|
|
240
|
-
"_modal",
|
|
241
238
|
"_on"
|
|
242
239
|
]);
|
|
243
240
|
const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
@@ -262,14 +259,11 @@ const KolImage = /* @__PURE__ */ defineContainer("kol-image", void 0, [
|
|
|
262
259
|
"_src",
|
|
263
260
|
"_srcset"
|
|
264
261
|
]);
|
|
265
|
-
const KolIndentedText = /* @__PURE__ */ defineContainer("kol-indented-text", void 0);
|
|
266
262
|
const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", void 0, [
|
|
267
263
|
"_accessKey",
|
|
268
|
-
"_alert",
|
|
269
264
|
"_checked",
|
|
270
|
-
"
|
|
265
|
+
"_hideMsg",
|
|
271
266
|
"_disabled",
|
|
272
|
-
"_error",
|
|
273
267
|
"_hideLabel",
|
|
274
268
|
"_hint",
|
|
275
269
|
"_icons",
|
|
@@ -291,11 +285,9 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
291
285
|
]);
|
|
292
286
|
const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0, [
|
|
293
287
|
"_accessKey",
|
|
294
|
-
"_alert",
|
|
295
288
|
"_autoComplete",
|
|
296
289
|
"_disabled",
|
|
297
|
-
"
|
|
298
|
-
"_hideError",
|
|
290
|
+
"_hideMsg",
|
|
299
291
|
"_hideLabel",
|
|
300
292
|
"_hint",
|
|
301
293
|
"_icons",
|
|
@@ -315,11 +307,9 @@ const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0,
|
|
|
315
307
|
]);
|
|
316
308
|
const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
317
309
|
"_accessKey",
|
|
318
|
-
"_alert",
|
|
319
310
|
"_autoComplete",
|
|
320
311
|
"_disabled",
|
|
321
|
-
"
|
|
322
|
-
"_hideError",
|
|
312
|
+
"_hideMsg",
|
|
323
313
|
"_hideLabel",
|
|
324
314
|
"_hint",
|
|
325
315
|
"_icons",
|
|
@@ -345,12 +335,10 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
345
335
|
]);
|
|
346
336
|
const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0, [
|
|
347
337
|
"_accessKey",
|
|
348
|
-
"_alert",
|
|
349
338
|
"_autoComplete",
|
|
350
339
|
"_disabled",
|
|
351
|
-
"_error",
|
|
352
340
|
"_hasCounter",
|
|
353
|
-
"
|
|
341
|
+
"_hideMsg",
|
|
354
342
|
"_hideLabel",
|
|
355
343
|
"_hint",
|
|
356
344
|
"_icons",
|
|
@@ -377,10 +365,8 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
377
365
|
const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
378
366
|
"_accept",
|
|
379
367
|
"_accessKey",
|
|
380
|
-
"_alert",
|
|
381
368
|
"_disabled",
|
|
382
|
-
"
|
|
383
|
-
"_hideError",
|
|
369
|
+
"_hideMsg",
|
|
384
370
|
"_hideLabel",
|
|
385
371
|
"_hint",
|
|
386
372
|
"_icons",
|
|
@@ -396,16 +382,13 @@ const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
|
396
382
|
"_syncValueBySelector",
|
|
397
383
|
"_tabIndex",
|
|
398
384
|
"_tooltipAlign",
|
|
399
|
-
"_touched"
|
|
400
|
-
"_value"
|
|
385
|
+
"_touched"
|
|
401
386
|
]);
|
|
402
387
|
const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void 0, [
|
|
403
388
|
"_accessKey",
|
|
404
|
-
"_alert",
|
|
405
389
|
"_autoComplete",
|
|
406
390
|
"_disabled",
|
|
407
|
-
"
|
|
408
|
-
"_hideError",
|
|
391
|
+
"_hideMsg",
|
|
409
392
|
"_hideLabel",
|
|
410
393
|
"_hint",
|
|
411
394
|
"_icons",
|
|
@@ -431,12 +414,10 @@ const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void
|
|
|
431
414
|
]);
|
|
432
415
|
const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", void 0, [
|
|
433
416
|
"_accessKey",
|
|
434
|
-
"_alert",
|
|
435
417
|
"_autoComplete",
|
|
436
418
|
"_disabled",
|
|
437
|
-
"_error",
|
|
438
419
|
"_hasCounter",
|
|
439
|
-
"
|
|
420
|
+
"_hideMsg",
|
|
440
421
|
"_hideLabel",
|
|
441
422
|
"_hint",
|
|
442
423
|
"_icons",
|
|
@@ -461,10 +442,8 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
461
442
|
]);
|
|
462
443
|
const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0, [
|
|
463
444
|
"_accessKey",
|
|
464
|
-
"_alert",
|
|
465
445
|
"_disabled",
|
|
466
|
-
"
|
|
467
|
-
"_hideError",
|
|
446
|
+
"_hideMsg",
|
|
468
447
|
"_hideLabel",
|
|
469
448
|
"_hint",
|
|
470
449
|
"_id",
|
|
@@ -484,11 +463,9 @@ const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0,
|
|
|
484
463
|
]);
|
|
485
464
|
const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0, [
|
|
486
465
|
"_accessKey",
|
|
487
|
-
"_alert",
|
|
488
466
|
"_autoComplete",
|
|
489
467
|
"_disabled",
|
|
490
|
-
"
|
|
491
|
-
"_hideError",
|
|
468
|
+
"_hideMsg",
|
|
492
469
|
"_hideLabel",
|
|
493
470
|
"_hint",
|
|
494
471
|
"_icons",
|
|
@@ -510,12 +487,10 @@ const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0,
|
|
|
510
487
|
]);
|
|
511
488
|
const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
512
489
|
"_accessKey",
|
|
513
|
-
"_alert",
|
|
514
490
|
"_autoComplete",
|
|
515
491
|
"_disabled",
|
|
516
|
-
"_error",
|
|
517
492
|
"_hasCounter",
|
|
518
|
-
"
|
|
493
|
+
"_hideMsg",
|
|
519
494
|
"_hideLabel",
|
|
520
495
|
"_hint",
|
|
521
496
|
"_icons",
|
|
@@ -530,6 +505,7 @@ const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
|
530
505
|
"_readOnly",
|
|
531
506
|
"_required",
|
|
532
507
|
"_shortKey",
|
|
508
|
+
"_spellCheck",
|
|
533
509
|
"_suggestions",
|
|
534
510
|
"_smartButton",
|
|
535
511
|
"_syncValueBySelector",
|
|
@@ -579,20 +555,11 @@ const KolLinkButton = /* @__PURE__ */ defineContainer("kol-link-button", void 0,
|
|
|
579
555
|
"_tooltipAlign",
|
|
580
556
|
"_variant"
|
|
581
557
|
]);
|
|
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
558
|
const KolModal = /* @__PURE__ */ defineContainer("kol-modal", void 0, [
|
|
592
|
-
"_activeElement",
|
|
593
559
|
"_label",
|
|
594
560
|
"_on",
|
|
595
|
-
"_width"
|
|
561
|
+
"_width",
|
|
562
|
+
"_variant"
|
|
596
563
|
]);
|
|
597
564
|
const KolNav = /* @__PURE__ */ defineContainer("kol-nav", void 0, [
|
|
598
565
|
"_collapsible",
|
|
@@ -616,6 +583,30 @@ const KolPagination = /* @__PURE__ */ defineContainer("kol-pagination", void 0,
|
|
|
616
583
|
"_tooltipAlign",
|
|
617
584
|
"_max"
|
|
618
585
|
]);
|
|
586
|
+
const KolPopoverButton = /* @__PURE__ */ defineContainer("kol-popover-button", void 0, [
|
|
587
|
+
"_accessKey",
|
|
588
|
+
"_ariaControls",
|
|
589
|
+
"_ariaDescription",
|
|
590
|
+
"_ariaExpanded",
|
|
591
|
+
"_ariaSelected",
|
|
592
|
+
"_customClass",
|
|
593
|
+
"_disabled",
|
|
594
|
+
"_hideLabel",
|
|
595
|
+
"_icons",
|
|
596
|
+
"_id",
|
|
597
|
+
"_label",
|
|
598
|
+
"_name",
|
|
599
|
+
"_on",
|
|
600
|
+
"_popoverAlign",
|
|
601
|
+
"_role",
|
|
602
|
+
"_shortKey",
|
|
603
|
+
"_syncValueBySelector",
|
|
604
|
+
"_tabIndex",
|
|
605
|
+
"_tooltipAlign",
|
|
606
|
+
"_type",
|
|
607
|
+
"_value",
|
|
608
|
+
"_variant"
|
|
609
|
+
]);
|
|
619
610
|
const KolProgress = /* @__PURE__ */ defineContainer("kol-progress", void 0, [
|
|
620
611
|
"_label",
|
|
621
612
|
"_max",
|
|
@@ -631,10 +622,8 @@ const KolQuote = /* @__PURE__ */ defineContainer("kol-quote", void 0, [
|
|
|
631
622
|
]);
|
|
632
623
|
const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
633
624
|
"_accessKey",
|
|
634
|
-
"_alert",
|
|
635
625
|
"_disabled",
|
|
636
|
-
"
|
|
637
|
-
"_hideError",
|
|
626
|
+
"_hideMsg",
|
|
638
627
|
"_hideLabel",
|
|
639
628
|
"_hint",
|
|
640
629
|
"_icons",
|
|
@@ -657,9 +646,8 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
657
646
|
const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", void 0, [
|
|
658
647
|
"_accessKey",
|
|
659
648
|
"_placeholder",
|
|
660
|
-
"_alert",
|
|
661
649
|
"_disabled",
|
|
662
|
-
"
|
|
650
|
+
"_hideMsg",
|
|
663
651
|
"_hideLabel",
|
|
664
652
|
"_hint",
|
|
665
653
|
"_icons",
|
|
@@ -705,22 +693,6 @@ const KolSplitButton = /* @__PURE__ */ defineContainer("kol-split-button", void
|
|
|
705
693
|
"_value",
|
|
706
694
|
"_variant"
|
|
707
695
|
]);
|
|
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
696
|
const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", void 0, [
|
|
725
697
|
"_allowMultiSort",
|
|
726
698
|
"_data",
|
|
@@ -753,11 +725,9 @@ const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
|
753
725
|
const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
754
726
|
"_accessKey",
|
|
755
727
|
"_adjustHeight",
|
|
756
|
-
"_alert",
|
|
757
728
|
"_disabled",
|
|
758
|
-
"_error",
|
|
759
729
|
"_hasCounter",
|
|
760
|
-
"
|
|
730
|
+
"_hideMsg",
|
|
761
731
|
"_hideLabel",
|
|
762
732
|
"_hint",
|
|
763
733
|
"_icons",
|
|
@@ -773,6 +743,7 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
773
743
|
"_required",
|
|
774
744
|
"_rows",
|
|
775
745
|
"_shortKey",
|
|
746
|
+
"_spellCheck",
|
|
776
747
|
"_syncValueBySelector",
|
|
777
748
|
"_tabIndex",
|
|
778
749
|
"_tooltipAlign",
|
|
@@ -803,4 +774,4 @@ const KolVersion = /* @__PURE__ */ defineContainer("kol-version", void 0, [
|
|
|
803
774
|
"_label"
|
|
804
775
|
]);
|
|
805
776
|
|
|
806
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton,
|
|
777
|
+
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, 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-ec88c9a9f00b83411c02bb7c1e982732e1259613.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.7",
|
|
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.7.3",
|
|
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-ec88c9a9f00b83411c02bb7c1e982732e1259613.0"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"vue": ">=3",
|
|
59
|
-
"@public-ui/components": "3.0.0-
|
|
59
|
+
"@public-ui/components": "3.0.0-ec88c9a9f00b83411c02bb7c1e982732e1259613.0"
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
62
|
"type": "module",
|