@public-ui/vue 2.0.14 → 2.0.15
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 +20 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +19 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -653,6 +653,24 @@ const KolTable = /* @__PURE__ */ defineContainer("kol-table", void 0, [
|
|
|
653
653
|
"_pagination",
|
|
654
654
|
"_paginationPosition"
|
|
655
655
|
]);
|
|
656
|
+
const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", void 0, [
|
|
657
|
+
"_allowMultiSort",
|
|
658
|
+
"_data",
|
|
659
|
+
"_dataFoot",
|
|
660
|
+
"_headers",
|
|
661
|
+
"_label",
|
|
662
|
+
"_minWidth",
|
|
663
|
+
"_pagination",
|
|
664
|
+
"_paginationPosition"
|
|
665
|
+
]);
|
|
666
|
+
const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless", void 0, [
|
|
667
|
+
"_data",
|
|
668
|
+
"_dataFoot",
|
|
669
|
+
"_headerCells",
|
|
670
|
+
"_label",
|
|
671
|
+
"_minWidth",
|
|
672
|
+
"_on"
|
|
673
|
+
]);
|
|
656
674
|
const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
657
675
|
"_align",
|
|
658
676
|
"_label",
|
|
@@ -753,6 +771,8 @@ exports.KolSpin = KolSpin;
|
|
|
753
771
|
exports.KolSplitButton = KolSplitButton;
|
|
754
772
|
exports.KolSymbol = KolSymbol;
|
|
755
773
|
exports.KolTable = KolTable;
|
|
774
|
+
exports.KolTableStateful = KolTableStateful;
|
|
775
|
+
exports.KolTableStateless = KolTableStateless;
|
|
756
776
|
exports.KolTabs = KolTabs;
|
|
757
777
|
exports.KolTextarea = KolTextarea;
|
|
758
778
|
exports.KolToastContainer = KolToastContainer;
|
package/dist/index.d.ts
CHANGED
|
@@ -51,6 +51,8 @@ declare const KolSpin: vue.DefineSetupFnComponent<JSX.KolSpin & InputProps<strin
|
|
|
51
51
|
declare const KolSplitButton: vue.DefineSetupFnComponent<JSX.KolSplitButton & InputProps<string | number | boolean>, {}, {}, JSX.KolSplitButton & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
52
52
|
declare const KolSymbol: vue.DefineSetupFnComponent<JSX.KolSymbol & InputProps<string | number | boolean>, {}, {}, JSX.KolSymbol & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
53
53
|
declare const KolTable: vue.DefineSetupFnComponent<JSX.KolTable & InputProps<string | number | boolean>, {}, {}, JSX.KolTable & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
54
|
+
declare const KolTableStateful: vue.DefineSetupFnComponent<JSX.KolTableStateful & InputProps<string | number | boolean>, {}, {}, JSX.KolTableStateful & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
55
|
+
declare const KolTableStateless: vue.DefineSetupFnComponent<JSX.KolTableStateless & InputProps<string | number | boolean>, {}, {}, JSX.KolTableStateless & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
54
56
|
declare const KolTabs: vue.DefineSetupFnComponent<JSX.KolTabs & InputProps<string | number | boolean>, {}, {}, JSX.KolTabs & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
55
57
|
declare const KolTextarea: vue.DefineSetupFnComponent<JSX.KolTextarea & InputProps<string | number | boolean>, {}, {}, JSX.KolTextarea & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
56
58
|
declare const KolToastContainer: vue.DefineSetupFnComponent<JSX.KolToastContainer & InputProps<string | number | boolean>, {}, {}, JSX.KolToastContainer & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -60,4 +62,4 @@ declare const KolTreeItemWc: vue.DefineSetupFnComponent<JSX.KolTreeItemWc & Inpu
|
|
|
60
62
|
declare const KolTreeWc: vue.DefineSetupFnComponent<JSX.KolTreeWc & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
61
63
|
declare const KolVersion: vue.DefineSetupFnComponent<JSX.KolVersion & InputProps<string | number | boolean>, {}, {}, JSX.KolVersion & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
62
64
|
|
|
63
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, 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, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTabs, KolTextarea, KolToastContainer, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
|
65
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, 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, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -651,6 +651,24 @@ const KolTable = /* @__PURE__ */ defineContainer("kol-table", void 0, [
|
|
|
651
651
|
"_pagination",
|
|
652
652
|
"_paginationPosition"
|
|
653
653
|
]);
|
|
654
|
+
const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", void 0, [
|
|
655
|
+
"_allowMultiSort",
|
|
656
|
+
"_data",
|
|
657
|
+
"_dataFoot",
|
|
658
|
+
"_headers",
|
|
659
|
+
"_label",
|
|
660
|
+
"_minWidth",
|
|
661
|
+
"_pagination",
|
|
662
|
+
"_paginationPosition"
|
|
663
|
+
]);
|
|
664
|
+
const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless", void 0, [
|
|
665
|
+
"_data",
|
|
666
|
+
"_dataFoot",
|
|
667
|
+
"_headerCells",
|
|
668
|
+
"_label",
|
|
669
|
+
"_minWidth",
|
|
670
|
+
"_on"
|
|
671
|
+
]);
|
|
654
672
|
const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
655
673
|
"_align",
|
|
656
674
|
"_label",
|
|
@@ -708,4 +726,4 @@ const KolVersion = /* @__PURE__ */ defineContainer("kol-version", void 0, [
|
|
|
708
726
|
"_label"
|
|
709
727
|
]);
|
|
710
728
|
|
|
711
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, 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, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTabs, KolTextarea, KolToastContainer, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
|
729
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, 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, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, 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.0.
|
|
3
|
+
"version": "2.0.15",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
],
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@babel/types": "7.24.0",
|
|
49
|
-
"@public-ui/components": "2.0.
|
|
49
|
+
"@public-ui/components": "2.0.15",
|
|
50
50
|
"@types/minimatch": "5.1.2",
|
|
51
51
|
"@types/minimist": "1.2.5",
|
|
52
52
|
"@types/node": "ts5.4",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"vue": "3.4.21"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@public-ui/components": "2.0.
|
|
59
|
+
"@public-ui/components": "2.0.15",
|
|
60
60
|
"vue": ">=3"
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|