@public-ui/vue 2.1.5-rc.7 → 2.1.5
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 +2 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -260,6 +260,7 @@ const KolImage = /* @__PURE__ */ defineContainer("kol-image", void 0, [
|
|
|
260
260
|
"_srcset"
|
|
261
261
|
]);
|
|
262
262
|
const KolIndentedText = /* @__PURE__ */ defineContainer("kol-indented-text", void 0);
|
|
263
|
+
const KolIndentedTextWc = /* @__PURE__ */ defineContainer("kol-indented-text-wc", void 0);
|
|
263
264
|
const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", void 0, [
|
|
264
265
|
"_accessKey",
|
|
265
266
|
"_alert",
|
|
@@ -780,6 +781,7 @@ exports.KolHeading = KolHeading;
|
|
|
780
781
|
exports.KolIcon = KolIcon;
|
|
781
782
|
exports.KolImage = KolImage;
|
|
782
783
|
exports.KolIndentedText = KolIndentedText;
|
|
784
|
+
exports.KolIndentedTextWc = KolIndentedTextWc;
|
|
783
785
|
exports.KolInputCheckbox = KolInputCheckbox;
|
|
784
786
|
exports.KolInputColor = KolInputColor;
|
|
785
787
|
exports.KolInputDate = KolInputDate;
|
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ declare const KolHeading: vue.DefineSetupFnComponent<JSX.KolHeading & InputProps
|
|
|
26
26
|
declare const KolIcon: vue.DefineSetupFnComponent<JSX.KolIcon & InputProps<string | number | boolean>, {}, {}, JSX.KolIcon & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
27
27
|
declare const KolImage: vue.DefineSetupFnComponent<JSX.KolImage & InputProps<string | number | boolean>, {}, {}, JSX.KolImage & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
28
28
|
declare const KolIndentedText: vue.DefineSetupFnComponent<JSX.KolIndentedText & InputProps<string | number | boolean>, {}, {}, JSX.KolIndentedText & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
29
|
+
declare const KolIndentedTextWc: vue.DefineSetupFnComponent<JSX.KolIndentedTextWc & InputProps<string | number | boolean>, {}, {}, JSX.KolIndentedTextWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
29
30
|
declare const KolInputCheckbox: vue.DefineSetupFnComponent<JSX.KolInputCheckbox & InputProps<string | number | boolean>, {}, {}, JSX.KolInputCheckbox & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
30
31
|
declare const KolInputColor: vue.DefineSetupFnComponent<JSX.KolInputColor & InputProps<string | number | boolean>, {}, {}, JSX.KolInputColor & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
31
32
|
declare const KolInputDate: vue.DefineSetupFnComponent<JSX.KolInputDate & InputProps<string | number | boolean>, {}, {}, JSX.KolInputDate & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -64,4 +65,4 @@ declare const KolTreeItemWc: vue.DefineSetupFnComponent<JSX.KolTreeItemWc & Inpu
|
|
|
64
65
|
declare const KolTreeWc: vue.DefineSetupFnComponent<JSX.KolTreeWc & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
65
66
|
declare const KolVersion: vue.DefineSetupFnComponent<JSX.KolVersion & InputProps<string | number | boolean>, {}, {}, JSX.KolVersion & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
66
67
|
|
|
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 };
|
|
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 };
|
package/dist/index.mjs
CHANGED
|
@@ -258,6 +258,7 @@ const KolImage = /* @__PURE__ */ defineContainer("kol-image", void 0, [
|
|
|
258
258
|
"_srcset"
|
|
259
259
|
]);
|
|
260
260
|
const KolIndentedText = /* @__PURE__ */ defineContainer("kol-indented-text", void 0);
|
|
261
|
+
const KolIndentedTextWc = /* @__PURE__ */ defineContainer("kol-indented-text-wc", void 0);
|
|
261
262
|
const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", void 0, [
|
|
262
263
|
"_accessKey",
|
|
263
264
|
"_alert",
|
|
@@ -760,4 +761,4 @@ const KolVersion = /* @__PURE__ */ defineContainer("kol-version", void 0, [
|
|
|
760
761
|
"_label"
|
|
761
762
|
]);
|
|
762
763
|
|
|
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 };
|
|
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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/vue",
|
|
3
|
-
"version": "2.1.5
|
|
3
|
+
"version": "2.1.5",
|
|
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.5
|
|
56
|
+
"@public-ui/components": "2.1.5"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"vue": ">=3",
|
|
60
|
-
"@public-ui/components": "2.1.5
|
|
60
|
+
"@public-ui/components": "2.1.5"
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|
|
63
63
|
"type": "module",
|