@public-ui/react 4.0.3 → 4.0.4-rc.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/dist/index.cjs +4 -0
- package/dist/index.d.cts +3 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -184,6 +184,7 @@ const KolButton = /* @__PURE__ */ createReactComponent("kol-button");
|
|
|
184
184
|
const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
185
185
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
186
186
|
const KolCardWc = /* @__PURE__ */ createReactComponent("kol-card-wc");
|
|
187
|
+
const KolClickButton = /* @__PURE__ */ createReactComponent("kol-click-button");
|
|
187
188
|
const KolCombobox = /* @__PURE__ */ createReactComponent("kol-combobox");
|
|
188
189
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
189
190
|
const KolDialog = /* @__PURE__ */ createReactComponent("kol-dialog");
|
|
@@ -216,6 +217,7 @@ const KolQuote = /* @__PURE__ */ createReactComponent("kol-quote");
|
|
|
216
217
|
const KolSelect = /* @__PURE__ */ createReactComponent("kol-select");
|
|
217
218
|
const KolSelectWc = /* @__PURE__ */ createReactComponent("kol-select-wc");
|
|
218
219
|
const KolSingleSelect = /* @__PURE__ */ createReactComponent("kol-single-select");
|
|
220
|
+
const KolSkeleton = /* @__PURE__ */ createReactComponent("kol-skeleton");
|
|
219
221
|
const KolSkipNav = /* @__PURE__ */ createReactComponent("kol-skip-nav");
|
|
220
222
|
const KolSpin = /* @__PURE__ */ createReactComponent("kol-spin");
|
|
221
223
|
const KolSplitButton = /* @__PURE__ */ createReactComponent("kol-split-button");
|
|
@@ -248,6 +250,7 @@ exports.KolButton = KolButton;
|
|
|
248
250
|
exports.KolButtonLink = KolButtonLink;
|
|
249
251
|
exports.KolCard = KolCard;
|
|
250
252
|
exports.KolCardWc = KolCardWc;
|
|
253
|
+
exports.KolClickButton = KolClickButton;
|
|
251
254
|
exports.KolCombobox = KolCombobox;
|
|
252
255
|
exports.KolDetails = KolDetails;
|
|
253
256
|
exports.KolDialog = KolDialog;
|
|
@@ -280,6 +283,7 @@ exports.KolQuote = KolQuote;
|
|
|
280
283
|
exports.KolSelect = KolSelect;
|
|
281
284
|
exports.KolSelectWc = KolSelectWc;
|
|
282
285
|
exports.KolSingleSelect = KolSingleSelect;
|
|
286
|
+
exports.KolSkeleton = KolSkeleton;
|
|
283
287
|
exports.KolSkipNav = KolSkipNav;
|
|
284
288
|
exports.KolSpin = KolSpin;
|
|
285
289
|
exports.KolSplitButton = KolSplitButton;
|
package/dist/index.d.cts
CHANGED
|
@@ -22,6 +22,7 @@ declare const KolButton: react.ForwardRefExoticComponent<JSX.KolButton & Omit<re
|
|
|
22
22
|
declare const KolButtonLink: react.ForwardRefExoticComponent<JSX.KolButtonLink & Omit<react.HTMLAttributes<HTMLKolButtonLinkElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonLinkElement>>;
|
|
23
23
|
declare const KolCard: react.ForwardRefExoticComponent<JSX.KolCard & Omit<react.HTMLAttributes<HTMLKolCardElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardElement>>;
|
|
24
24
|
declare const KolCardWc: react.ForwardRefExoticComponent<JSX.KolCardWc & Omit<react.HTMLAttributes<HTMLKolCardWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardWcElement>>;
|
|
25
|
+
declare const KolClickButton: react.ForwardRefExoticComponent<JSX.KolClickButton & Omit<react.HTMLAttributes<HTMLKolClickButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolClickButtonElement>>;
|
|
25
26
|
declare const KolCombobox: react.ForwardRefExoticComponent<JSX.KolCombobox & Omit<react.HTMLAttributes<HTMLKolComboboxElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolComboboxElement>>;
|
|
26
27
|
declare const KolDetails: react.ForwardRefExoticComponent<JSX.KolDetails & Omit<react.HTMLAttributes<HTMLKolDetailsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDetailsElement>>;
|
|
27
28
|
declare const KolDialog: react.ForwardRefExoticComponent<JSX.KolDialog & Omit<react.HTMLAttributes<HTMLKolDialogElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDialogElement>>;
|
|
@@ -54,6 +55,7 @@ declare const KolQuote: react.ForwardRefExoticComponent<JSX.KolQuote & Omit<reac
|
|
|
54
55
|
declare const KolSelect: react.ForwardRefExoticComponent<JSX.KolSelect & Omit<react.HTMLAttributes<HTMLKolSelectElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSelectElement>>;
|
|
55
56
|
declare const KolSelectWc: react.ForwardRefExoticComponent<JSX.KolSelectWc & Omit<react.HTMLAttributes<HTMLKolSelectWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSelectWcElement>>;
|
|
56
57
|
declare const KolSingleSelect: react.ForwardRefExoticComponent<JSX.KolSingleSelect & Omit<react.HTMLAttributes<HTMLKolSingleSelectElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSingleSelectElement>>;
|
|
58
|
+
declare const KolSkeleton: react.ForwardRefExoticComponent<JSX.KolSkeleton & Omit<react.HTMLAttributes<HTMLKolSkeletonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSkeletonElement>>;
|
|
57
59
|
declare const KolSkipNav: react.ForwardRefExoticComponent<JSX.KolSkipNav & Omit<react.HTMLAttributes<HTMLKolSkipNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSkipNavElement>>;
|
|
58
60
|
declare const KolSpin: react.ForwardRefExoticComponent<JSX.KolSpin & Omit<react.HTMLAttributes<HTMLKolSpinElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSpinElement>>;
|
|
59
61
|
declare const KolSplitButton: react.ForwardRefExoticComponent<JSX.KolSplitButton & Omit<react.HTMLAttributes<HTMLKolSplitButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSplitButtonElement>>;
|
|
@@ -70,4 +72,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
70
72
|
|
|
71
73
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
72
74
|
|
|
73
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
75
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolClickButton, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkeleton, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/dist/index.d.mts
CHANGED
|
@@ -22,6 +22,7 @@ declare const KolButton: react.ForwardRefExoticComponent<JSX.KolButton & Omit<re
|
|
|
22
22
|
declare const KolButtonLink: react.ForwardRefExoticComponent<JSX.KolButtonLink & Omit<react.HTMLAttributes<HTMLKolButtonLinkElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonLinkElement>>;
|
|
23
23
|
declare const KolCard: react.ForwardRefExoticComponent<JSX.KolCard & Omit<react.HTMLAttributes<HTMLKolCardElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardElement>>;
|
|
24
24
|
declare const KolCardWc: react.ForwardRefExoticComponent<JSX.KolCardWc & Omit<react.HTMLAttributes<HTMLKolCardWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardWcElement>>;
|
|
25
|
+
declare const KolClickButton: react.ForwardRefExoticComponent<JSX.KolClickButton & Omit<react.HTMLAttributes<HTMLKolClickButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolClickButtonElement>>;
|
|
25
26
|
declare const KolCombobox: react.ForwardRefExoticComponent<JSX.KolCombobox & Omit<react.HTMLAttributes<HTMLKolComboboxElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolComboboxElement>>;
|
|
26
27
|
declare const KolDetails: react.ForwardRefExoticComponent<JSX.KolDetails & Omit<react.HTMLAttributes<HTMLKolDetailsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDetailsElement>>;
|
|
27
28
|
declare const KolDialog: react.ForwardRefExoticComponent<JSX.KolDialog & Omit<react.HTMLAttributes<HTMLKolDialogElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDialogElement>>;
|
|
@@ -54,6 +55,7 @@ declare const KolQuote: react.ForwardRefExoticComponent<JSX.KolQuote & Omit<reac
|
|
|
54
55
|
declare const KolSelect: react.ForwardRefExoticComponent<JSX.KolSelect & Omit<react.HTMLAttributes<HTMLKolSelectElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSelectElement>>;
|
|
55
56
|
declare const KolSelectWc: react.ForwardRefExoticComponent<JSX.KolSelectWc & Omit<react.HTMLAttributes<HTMLKolSelectWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSelectWcElement>>;
|
|
56
57
|
declare const KolSingleSelect: react.ForwardRefExoticComponent<JSX.KolSingleSelect & Omit<react.HTMLAttributes<HTMLKolSingleSelectElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSingleSelectElement>>;
|
|
58
|
+
declare const KolSkeleton: react.ForwardRefExoticComponent<JSX.KolSkeleton & Omit<react.HTMLAttributes<HTMLKolSkeletonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSkeletonElement>>;
|
|
57
59
|
declare const KolSkipNav: react.ForwardRefExoticComponent<JSX.KolSkipNav & Omit<react.HTMLAttributes<HTMLKolSkipNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSkipNavElement>>;
|
|
58
60
|
declare const KolSpin: react.ForwardRefExoticComponent<JSX.KolSpin & Omit<react.HTMLAttributes<HTMLKolSpinElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSpinElement>>;
|
|
59
61
|
declare const KolSplitButton: react.ForwardRefExoticComponent<JSX.KolSplitButton & Omit<react.HTMLAttributes<HTMLKolSplitButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSplitButtonElement>>;
|
|
@@ -70,4 +72,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
70
72
|
|
|
71
73
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
72
74
|
|
|
73
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
75
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolClickButton, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkeleton, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/dist/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ declare const KolButton: react.ForwardRefExoticComponent<JSX.KolButton & Omit<re
|
|
|
22
22
|
declare const KolButtonLink: react.ForwardRefExoticComponent<JSX.KolButtonLink & Omit<react.HTMLAttributes<HTMLKolButtonLinkElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonLinkElement>>;
|
|
23
23
|
declare const KolCard: react.ForwardRefExoticComponent<JSX.KolCard & Omit<react.HTMLAttributes<HTMLKolCardElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardElement>>;
|
|
24
24
|
declare const KolCardWc: react.ForwardRefExoticComponent<JSX.KolCardWc & Omit<react.HTMLAttributes<HTMLKolCardWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardWcElement>>;
|
|
25
|
+
declare const KolClickButton: react.ForwardRefExoticComponent<JSX.KolClickButton & Omit<react.HTMLAttributes<HTMLKolClickButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolClickButtonElement>>;
|
|
25
26
|
declare const KolCombobox: react.ForwardRefExoticComponent<JSX.KolCombobox & Omit<react.HTMLAttributes<HTMLKolComboboxElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolComboboxElement>>;
|
|
26
27
|
declare const KolDetails: react.ForwardRefExoticComponent<JSX.KolDetails & Omit<react.HTMLAttributes<HTMLKolDetailsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDetailsElement>>;
|
|
27
28
|
declare const KolDialog: react.ForwardRefExoticComponent<JSX.KolDialog & Omit<react.HTMLAttributes<HTMLKolDialogElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDialogElement>>;
|
|
@@ -54,6 +55,7 @@ declare const KolQuote: react.ForwardRefExoticComponent<JSX.KolQuote & Omit<reac
|
|
|
54
55
|
declare const KolSelect: react.ForwardRefExoticComponent<JSX.KolSelect & Omit<react.HTMLAttributes<HTMLKolSelectElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSelectElement>>;
|
|
55
56
|
declare const KolSelectWc: react.ForwardRefExoticComponent<JSX.KolSelectWc & Omit<react.HTMLAttributes<HTMLKolSelectWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSelectWcElement>>;
|
|
56
57
|
declare const KolSingleSelect: react.ForwardRefExoticComponent<JSX.KolSingleSelect & Omit<react.HTMLAttributes<HTMLKolSingleSelectElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSingleSelectElement>>;
|
|
58
|
+
declare const KolSkeleton: react.ForwardRefExoticComponent<JSX.KolSkeleton & Omit<react.HTMLAttributes<HTMLKolSkeletonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSkeletonElement>>;
|
|
57
59
|
declare const KolSkipNav: react.ForwardRefExoticComponent<JSX.KolSkipNav & Omit<react.HTMLAttributes<HTMLKolSkipNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSkipNavElement>>;
|
|
58
60
|
declare const KolSpin: react.ForwardRefExoticComponent<JSX.KolSpin & Omit<react.HTMLAttributes<HTMLKolSpinElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSpinElement>>;
|
|
59
61
|
declare const KolSplitButton: react.ForwardRefExoticComponent<JSX.KolSplitButton & Omit<react.HTMLAttributes<HTMLKolSplitButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSplitButtonElement>>;
|
|
@@ -70,4 +72,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
70
72
|
|
|
71
73
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
72
74
|
|
|
73
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
75
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolClickButton, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkeleton, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -178,6 +178,7 @@ const KolButton = /* @__PURE__ */ createReactComponent("kol-button");
|
|
|
178
178
|
const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
179
179
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
180
180
|
const KolCardWc = /* @__PURE__ */ createReactComponent("kol-card-wc");
|
|
181
|
+
const KolClickButton = /* @__PURE__ */ createReactComponent("kol-click-button");
|
|
181
182
|
const KolCombobox = /* @__PURE__ */ createReactComponent("kol-combobox");
|
|
182
183
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
183
184
|
const KolDialog = /* @__PURE__ */ createReactComponent("kol-dialog");
|
|
@@ -210,6 +211,7 @@ const KolQuote = /* @__PURE__ */ createReactComponent("kol-quote");
|
|
|
210
211
|
const KolSelect = /* @__PURE__ */ createReactComponent("kol-select");
|
|
211
212
|
const KolSelectWc = /* @__PURE__ */ createReactComponent("kol-select-wc");
|
|
212
213
|
const KolSingleSelect = /* @__PURE__ */ createReactComponent("kol-single-select");
|
|
214
|
+
const KolSkeleton = /* @__PURE__ */ createReactComponent("kol-skeleton");
|
|
213
215
|
const KolSkipNav = /* @__PURE__ */ createReactComponent("kol-skip-nav");
|
|
214
216
|
const KolSpin = /* @__PURE__ */ createReactComponent("kol-spin");
|
|
215
217
|
const KolSplitButton = /* @__PURE__ */ createReactComponent("kol-split-button");
|
|
@@ -232,4 +234,4 @@ function createReactRenderElement(hostElement) {
|
|
|
232
234
|
return renderElement;
|
|
233
235
|
}
|
|
234
236
|
|
|
235
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
237
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolClickButton, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkeleton, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/react",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4-rc.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -47,17 +47,17 @@
|
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/react": "18.3.28",
|
|
49
49
|
"@types/react-dom": "18.3.7",
|
|
50
|
-
"minimatch": "10.
|
|
50
|
+
"minimatch": "10.2.3",
|
|
51
51
|
"react": "18.3.1",
|
|
52
52
|
"react-dom": "18.3.1",
|
|
53
53
|
"typescript": "5.9.3",
|
|
54
54
|
"unbuild": "3.6.1",
|
|
55
|
-
"@public-ui/components": "4.0.
|
|
55
|
+
"@public-ui/components": "4.0.4-rc.0"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"react": ">=16.14.0 <19",
|
|
59
59
|
"react-dom": ">=16.14.0 <19",
|
|
60
|
-
"@public-ui/components": "4.0.
|
|
60
|
+
"@public-ui/components": "4.0.4-rc.0"
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|
|
63
63
|
"type": "module",
|