@public-ui/vue 2.1.3 → 2.1.4-alpha.1
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 +8 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +8 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -230,6 +230,13 @@ const KolDetails = /* @__PURE__ */ defineContainer("kol-details", void 0, [
|
|
|
230
230
|
"_on",
|
|
231
231
|
"_open"
|
|
232
232
|
]);
|
|
233
|
+
const KolDrawer = /* @__PURE__ */ defineContainer("kol-drawer", void 0, [
|
|
234
|
+
"_open",
|
|
235
|
+
"_align",
|
|
236
|
+
"_label",
|
|
237
|
+
"_modal",
|
|
238
|
+
"_on"
|
|
239
|
+
]);
|
|
233
240
|
const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
234
241
|
"_on",
|
|
235
242
|
"_requiredText",
|
|
@@ -767,6 +774,7 @@ exports.KolButtonLink = KolButtonLink;
|
|
|
767
774
|
exports.KolCard = KolCard;
|
|
768
775
|
exports.KolCombobox = KolCombobox;
|
|
769
776
|
exports.KolDetails = KolDetails;
|
|
777
|
+
exports.KolDrawer = KolDrawer;
|
|
770
778
|
exports.KolForm = KolForm;
|
|
771
779
|
exports.KolHeading = KolHeading;
|
|
772
780
|
exports.KolIcon = KolIcon;
|
package/dist/index.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ declare const KolButtonLink: vue.DefineSetupFnComponent<JSX.KolButtonLink & Inpu
|
|
|
20
20
|
declare const KolCard: vue.DefineSetupFnComponent<JSX.KolCard & InputProps<string | number | boolean>, {}, {}, JSX.KolCard & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
21
21
|
declare const KolCombobox: vue.DefineSetupFnComponent<JSX.KolCombobox & InputProps<string | number | boolean>, {}, {}, JSX.KolCombobox & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
22
22
|
declare const KolDetails: vue.DefineSetupFnComponent<JSX.KolDetails & InputProps<string | number | boolean>, {}, {}, JSX.KolDetails & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
23
|
+
declare const KolDrawer: vue.DefineSetupFnComponent<JSX.KolDrawer & InputProps<string | number | boolean>, {}, {}, JSX.KolDrawer & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
23
24
|
declare const KolForm: vue.DefineSetupFnComponent<JSX.KolForm & InputProps<string | number | boolean>, {}, {}, JSX.KolForm & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
24
25
|
declare const KolHeading: vue.DefineSetupFnComponent<JSX.KolHeading & InputProps<string | number | boolean>, {}, {}, JSX.KolHeading & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
25
26
|
declare const KolIcon: vue.DefineSetupFnComponent<JSX.KolIcon & InputProps<string | number | boolean>, {}, {}, JSX.KolIcon & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -63,4 +64,4 @@ declare const KolTreeItemWc: vue.DefineSetupFnComponent<JSX.KolTreeItemWc & Inpu
|
|
|
63
64
|
declare const KolTreeWc: vue.DefineSetupFnComponent<JSX.KolTreeWc & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
64
65
|
declare const KolVersion: vue.DefineSetupFnComponent<JSX.KolVersion & InputProps<string | number | boolean>, {}, {}, JSX.KolVersion & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
65
66
|
|
|
66
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, 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 };
|
|
67
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, 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 };
|
package/dist/index.mjs
CHANGED
|
@@ -228,6 +228,13 @@ const KolDetails = /* @__PURE__ */ defineContainer("kol-details", void 0, [
|
|
|
228
228
|
"_on",
|
|
229
229
|
"_open"
|
|
230
230
|
]);
|
|
231
|
+
const KolDrawer = /* @__PURE__ */ defineContainer("kol-drawer", void 0, [
|
|
232
|
+
"_open",
|
|
233
|
+
"_align",
|
|
234
|
+
"_label",
|
|
235
|
+
"_modal",
|
|
236
|
+
"_on"
|
|
237
|
+
]);
|
|
231
238
|
const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
232
239
|
"_on",
|
|
233
240
|
"_requiredText",
|
|
@@ -753,4 +760,4 @@ const KolVersion = /* @__PURE__ */ defineContainer("kol-version", void 0, [
|
|
|
753
760
|
"_label"
|
|
754
761
|
]);
|
|
755
762
|
|
|
756
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, 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 };
|
|
763
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, 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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/vue",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4-alpha.1",
|
|
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.2",
|
|
54
54
|
"unbuild": "1.2.1",
|
|
55
55
|
"vue": "3.4.21",
|
|
56
|
-
"@public-ui/components": "2.1.
|
|
56
|
+
"@public-ui/components": "2.1.4-alpha.1"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"vue": ">=3",
|
|
60
|
-
"@public-ui/components": "2.1.
|
|
60
|
+
"@public-ui/components": "2.1.4-alpha.1"
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|
|
63
63
|
"type": "module",
|