@public-ui/vue 2.1.7-rc.1 → 2.1.7-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +27 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +27 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -158,6 +158,7 @@ const KolBreadcrumb = /* @__PURE__ */ defineContainer("kol-breadcrumb", void 0,
|
|
|
158
158
|
const KolButton = /* @__PURE__ */ defineContainer("kol-button", void 0, [
|
|
159
159
|
"_accessKey",
|
|
160
160
|
"_ariaControls",
|
|
161
|
+
"_ariaDescription",
|
|
161
162
|
"_ariaExpanded",
|
|
162
163
|
"_ariaSelected",
|
|
163
164
|
"_customClass",
|
|
@@ -180,6 +181,7 @@ const KolButtonGroup = /* @__PURE__ */ defineContainer("kol-button-group", void
|
|
|
180
181
|
const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0, [
|
|
181
182
|
"_accessKey",
|
|
182
183
|
"_ariaControls",
|
|
184
|
+
"_ariaDescription",
|
|
183
185
|
"_ariaExpanded",
|
|
184
186
|
"_ariaSelected",
|
|
185
187
|
"_disabled",
|
|
@@ -533,6 +535,7 @@ const KolKolibri = /* @__PURE__ */ defineContainer("kol-kolibri", void 0, [
|
|
|
533
535
|
const KolLink = /* @__PURE__ */ defineContainer("kol-link", void 0, [
|
|
534
536
|
"_accessKey",
|
|
535
537
|
"_ariaCurrentValue",
|
|
538
|
+
"_ariaDescription",
|
|
536
539
|
"_disabled",
|
|
537
540
|
"_download",
|
|
538
541
|
"_hideLabel",
|
|
@@ -548,6 +551,7 @@ const KolLink = /* @__PURE__ */ defineContainer("kol-link", void 0, [
|
|
|
548
551
|
const KolLinkButton = /* @__PURE__ */ defineContainer("kol-link-button", void 0, [
|
|
549
552
|
"_accessKey",
|
|
550
553
|
"_ariaCurrentValue",
|
|
554
|
+
"_ariaDescription",
|
|
551
555
|
"_customClass",
|
|
552
556
|
"_disabled",
|
|
553
557
|
"_download",
|
|
@@ -636,6 +640,28 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
636
640
|
"_touched",
|
|
637
641
|
"_value"
|
|
638
642
|
]);
|
|
643
|
+
const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", void 0, [
|
|
644
|
+
"_accessKey",
|
|
645
|
+
"_placeholder",
|
|
646
|
+
"_alert",
|
|
647
|
+
"_disabled",
|
|
648
|
+
"_hideError",
|
|
649
|
+
"_hideLabel",
|
|
650
|
+
"_hint",
|
|
651
|
+
"_icons",
|
|
652
|
+
"_id",
|
|
653
|
+
"_label",
|
|
654
|
+
"_msg",
|
|
655
|
+
"_name",
|
|
656
|
+
"_on",
|
|
657
|
+
"_options",
|
|
658
|
+
"_required",
|
|
659
|
+
"_syncValueBySelector",
|
|
660
|
+
"_tabIndex",
|
|
661
|
+
"_tooltipAlign",
|
|
662
|
+
"_touched",
|
|
663
|
+
"_value"
|
|
664
|
+
]);
|
|
639
665
|
const KolSkipNav = /* @__PURE__ */ defineContainer("kol-skip-nav", void 0, [
|
|
640
666
|
"_label",
|
|
641
667
|
"_links"
|
|
@@ -803,6 +829,7 @@ exports.KolPagination = KolPagination;
|
|
|
803
829
|
exports.KolProgress = KolProgress;
|
|
804
830
|
exports.KolQuote = KolQuote;
|
|
805
831
|
exports.KolSelect = KolSelect;
|
|
832
|
+
exports.KolSingleSelect = KolSingleSelect;
|
|
806
833
|
exports.KolSkipNav = KolSkipNav;
|
|
807
834
|
exports.KolSpin = KolSpin;
|
|
808
835
|
exports.KolSplitButton = KolSplitButton;
|
package/dist/index.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ declare const KolPagination: vue.DefineSetupFnComponent<JSX.KolPagination & Inpu
|
|
|
48
48
|
declare const KolProgress: vue.DefineSetupFnComponent<JSX.KolProgress & InputProps<string | number | boolean>, {}, {}, JSX.KolProgress & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
49
49
|
declare const KolQuote: vue.DefineSetupFnComponent<JSX.KolQuote & InputProps<string | number | boolean>, {}, {}, JSX.KolQuote & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
50
50
|
declare const KolSelect: vue.DefineSetupFnComponent<JSX.KolSelect & InputProps<string | number | boolean>, {}, {}, JSX.KolSelect & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
51
|
+
declare const KolSingleSelect: vue.DefineSetupFnComponent<JSX.KolSingleSelect & InputProps<string | number | boolean>, {}, {}, JSX.KolSingleSelect & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
51
52
|
declare const KolSkipNav: vue.DefineSetupFnComponent<JSX.KolSkipNav & InputProps<string | number | boolean>, {}, {}, JSX.KolSkipNav & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
52
53
|
declare const KolSpin: vue.DefineSetupFnComponent<JSX.KolSpin & InputProps<string | number | boolean>, {}, {}, JSX.KolSpin & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
53
54
|
declare const KolSplitButton: vue.DefineSetupFnComponent<JSX.KolSplitButton & InputProps<string | number | boolean>, {}, {}, JSX.KolSplitButton & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -65,4 +66,4 @@ declare const KolTreeItemWc: vue.DefineSetupFnComponent<JSX.KolTreeItemWc & Inpu
|
|
|
65
66
|
declare const KolTreeWc: vue.DefineSetupFnComponent<JSX.KolTreeWc & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
66
67
|
declare const KolVersion: vue.DefineSetupFnComponent<JSX.KolVersion & InputProps<string | number | boolean>, {}, {}, JSX.KolVersion & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
67
68
|
|
|
68
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolIndentedTextWc, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
|
69
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolIndentedTextWc, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -156,6 +156,7 @@ const KolBreadcrumb = /* @__PURE__ */ defineContainer("kol-breadcrumb", void 0,
|
|
|
156
156
|
const KolButton = /* @__PURE__ */ defineContainer("kol-button", void 0, [
|
|
157
157
|
"_accessKey",
|
|
158
158
|
"_ariaControls",
|
|
159
|
+
"_ariaDescription",
|
|
159
160
|
"_ariaExpanded",
|
|
160
161
|
"_ariaSelected",
|
|
161
162
|
"_customClass",
|
|
@@ -178,6 +179,7 @@ const KolButtonGroup = /* @__PURE__ */ defineContainer("kol-button-group", void
|
|
|
178
179
|
const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0, [
|
|
179
180
|
"_accessKey",
|
|
180
181
|
"_ariaControls",
|
|
182
|
+
"_ariaDescription",
|
|
181
183
|
"_ariaExpanded",
|
|
182
184
|
"_ariaSelected",
|
|
183
185
|
"_disabled",
|
|
@@ -531,6 +533,7 @@ const KolKolibri = /* @__PURE__ */ defineContainer("kol-kolibri", void 0, [
|
|
|
531
533
|
const KolLink = /* @__PURE__ */ defineContainer("kol-link", void 0, [
|
|
532
534
|
"_accessKey",
|
|
533
535
|
"_ariaCurrentValue",
|
|
536
|
+
"_ariaDescription",
|
|
534
537
|
"_disabled",
|
|
535
538
|
"_download",
|
|
536
539
|
"_hideLabel",
|
|
@@ -546,6 +549,7 @@ const KolLink = /* @__PURE__ */ defineContainer("kol-link", void 0, [
|
|
|
546
549
|
const KolLinkButton = /* @__PURE__ */ defineContainer("kol-link-button", void 0, [
|
|
547
550
|
"_accessKey",
|
|
548
551
|
"_ariaCurrentValue",
|
|
552
|
+
"_ariaDescription",
|
|
549
553
|
"_customClass",
|
|
550
554
|
"_disabled",
|
|
551
555
|
"_download",
|
|
@@ -634,6 +638,28 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
634
638
|
"_touched",
|
|
635
639
|
"_value"
|
|
636
640
|
]);
|
|
641
|
+
const KolSingleSelect = /* @__PURE__ */ defineContainer("kol-single-select", void 0, [
|
|
642
|
+
"_accessKey",
|
|
643
|
+
"_placeholder",
|
|
644
|
+
"_alert",
|
|
645
|
+
"_disabled",
|
|
646
|
+
"_hideError",
|
|
647
|
+
"_hideLabel",
|
|
648
|
+
"_hint",
|
|
649
|
+
"_icons",
|
|
650
|
+
"_id",
|
|
651
|
+
"_label",
|
|
652
|
+
"_msg",
|
|
653
|
+
"_name",
|
|
654
|
+
"_on",
|
|
655
|
+
"_options",
|
|
656
|
+
"_required",
|
|
657
|
+
"_syncValueBySelector",
|
|
658
|
+
"_tabIndex",
|
|
659
|
+
"_tooltipAlign",
|
|
660
|
+
"_touched",
|
|
661
|
+
"_value"
|
|
662
|
+
]);
|
|
637
663
|
const KolSkipNav = /* @__PURE__ */ defineContainer("kol-skip-nav", void 0, [
|
|
638
664
|
"_label",
|
|
639
665
|
"_links"
|
|
@@ -761,4 +787,4 @@ const KolVersion = /* @__PURE__ */ defineContainer("kol-version", void 0, [
|
|
|
761
787
|
"_label"
|
|
762
788
|
]);
|
|
763
789
|
|
|
764
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolIndentedTextWc, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
|
790
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolIndentedTextWc, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/vue",
|
|
3
|
-
"version": "2.1.7-rc.
|
|
3
|
+
"version": "2.1.7-rc.2",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
"typescript": "5.5.4",
|
|
54
54
|
"unbuild": "1.2.1",
|
|
55
55
|
"vue": "3.4.21",
|
|
56
|
-
"@public-ui/components": "2.1.7-rc.
|
|
56
|
+
"@public-ui/components": "2.1.7-rc.2"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"vue": ">=3",
|
|
60
|
-
"@public-ui/components": "2.1.7-rc.
|
|
60
|
+
"@public-ui/components": "2.1.7-rc.2"
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|
|
63
63
|
"type": "module",
|