@public-ui/react 2.2.6 → 2.2.7-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 +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
|
@@ -218,6 +218,7 @@ const KolLogo = /* @__PURE__ */ createReactComponent("kol-logo");
|
|
|
218
218
|
const KolModal = /* @__PURE__ */ createReactComponent("kol-modal");
|
|
219
219
|
const KolNav = /* @__PURE__ */ createReactComponent("kol-nav");
|
|
220
220
|
const KolPagination = /* @__PURE__ */ createReactComponent("kol-pagination");
|
|
221
|
+
const KolPopoverButton = /* @__PURE__ */ createReactComponent("kol-popover-button");
|
|
221
222
|
const KolProgress = /* @__PURE__ */ createReactComponent("kol-progress");
|
|
222
223
|
const KolQuote = /* @__PURE__ */ createReactComponent("kol-quote");
|
|
223
224
|
const KolSelect = /* @__PURE__ */ createReactComponent("kol-select");
|
|
@@ -282,6 +283,7 @@ exports.KolLogo = KolLogo;
|
|
|
282
283
|
exports.KolModal = KolModal;
|
|
283
284
|
exports.KolNav = KolNav;
|
|
284
285
|
exports.KolPagination = KolPagination;
|
|
286
|
+
exports.KolPopoverButton = KolPopoverButton;
|
|
285
287
|
exports.KolProgress = KolProgress;
|
|
286
288
|
exports.KolQuote = KolQuote;
|
|
287
289
|
exports.KolSelect = KolSelect;
|
package/dist/index.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ declare const KolLogo: react.ForwardRefExoticComponent<JSX.KolLogo & Omit<react.
|
|
|
48
48
|
declare const KolModal: react.ForwardRefExoticComponent<JSX.KolModal & Omit<react.HTMLAttributes<HTMLKolModalElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolModalElement>>;
|
|
49
49
|
declare const KolNav: react.ForwardRefExoticComponent<JSX.KolNav & Omit<react.HTMLAttributes<HTMLKolNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolNavElement>>;
|
|
50
50
|
declare const KolPagination: react.ForwardRefExoticComponent<JSX.KolPagination & Omit<react.HTMLAttributes<HTMLKolPaginationElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPaginationElement>>;
|
|
51
|
+
declare const KolPopoverButton: react.ForwardRefExoticComponent<JSX.KolPopoverButton & Omit<react.HTMLAttributes<HTMLKolPopoverButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPopoverButtonElement>>;
|
|
51
52
|
declare const KolProgress: react.ForwardRefExoticComponent<JSX.KolProgress & Omit<react.HTMLAttributes<HTMLKolProgressElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolProgressElement>>;
|
|
52
53
|
declare const KolQuote: react.ForwardRefExoticComponent<JSX.KolQuote & Omit<react.HTMLAttributes<HTMLKolQuoteElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolQuoteElement>>;
|
|
53
54
|
declare const KolSelect: react.ForwardRefExoticComponent<JSX.KolSelect & Omit<react.HTMLAttributes<HTMLKolSelectElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSelectElement>>;
|
|
@@ -70,4 +71,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
70
71
|
|
|
71
72
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
72
73
|
|
|
73
|
-
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, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
74
|
+
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, KolPopoverButton, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -212,6 +212,7 @@ const KolLogo = /* @__PURE__ */ createReactComponent("kol-logo");
|
|
|
212
212
|
const KolModal = /* @__PURE__ */ createReactComponent("kol-modal");
|
|
213
213
|
const KolNav = /* @__PURE__ */ createReactComponent("kol-nav");
|
|
214
214
|
const KolPagination = /* @__PURE__ */ createReactComponent("kol-pagination");
|
|
215
|
+
const KolPopoverButton = /* @__PURE__ */ createReactComponent("kol-popover-button");
|
|
215
216
|
const KolProgress = /* @__PURE__ */ createReactComponent("kol-progress");
|
|
216
217
|
const KolQuote = /* @__PURE__ */ createReactComponent("kol-quote");
|
|
217
218
|
const KolSelect = /* @__PURE__ */ createReactComponent("kol-select");
|
|
@@ -240,4 +241,4 @@ function createReactRenderElement(hostElement) {
|
|
|
240
241
|
return renderElement;
|
|
241
242
|
}
|
|
242
243
|
|
|
243
|
-
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, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
244
|
+
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, KolPopoverButton, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, 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": "2.2.
|
|
3
|
+
"version": "2.2.7-rc.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -54,12 +54,12 @@
|
|
|
54
54
|
"react-dom": "18.2.0",
|
|
55
55
|
"typescript": "5.7.3",
|
|
56
56
|
"unbuild": "1.2.1",
|
|
57
|
-
"@public-ui/components": "2.2.
|
|
57
|
+
"@public-ui/components": "2.2.7-rc.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"react": ">=16.14.0",
|
|
61
61
|
"react-dom": ">=16.14.0",
|
|
62
|
-
"@public-ui/components": "2.2.
|
|
62
|
+
"@public-ui/components": "2.2.7-rc.0"
|
|
63
63
|
},
|
|
64
64
|
"sideEffects": false,
|
|
65
65
|
"type": "module",
|