@public-ui/react 3.0.0-rc.4 → 3.0.0-rc.6
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
|
@@ -214,6 +214,7 @@ const KolLinkButton = /* @__PURE__ */ createReactComponent("kol-link-button");
|
|
|
214
214
|
const KolModal = /* @__PURE__ */ createReactComponent("kol-modal");
|
|
215
215
|
const KolNav = /* @__PURE__ */ createReactComponent("kol-nav");
|
|
216
216
|
const KolPagination = /* @__PURE__ */ createReactComponent("kol-pagination");
|
|
217
|
+
const KolPopoverButton = /* @__PURE__ */ createReactComponent("kol-popover-button");
|
|
217
218
|
const KolProgress = /* @__PURE__ */ createReactComponent("kol-progress");
|
|
218
219
|
const KolQuote = /* @__PURE__ */ createReactComponent("kol-quote");
|
|
219
220
|
const KolSelect = /* @__PURE__ */ createReactComponent("kol-select");
|
|
@@ -272,6 +273,7 @@ exports.KolLinkButton = KolLinkButton;
|
|
|
272
273
|
exports.KolModal = KolModal;
|
|
273
274
|
exports.KolNav = KolNav;
|
|
274
275
|
exports.KolPagination = KolPagination;
|
|
276
|
+
exports.KolPopoverButton = KolPopoverButton;
|
|
275
277
|
exports.KolProgress = KolProgress;
|
|
276
278
|
exports.KolQuote = KolQuote;
|
|
277
279
|
exports.KolSelect = KolSelect;
|
package/dist/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ declare const KolLinkButton: react.ForwardRefExoticComponent<JSX.KolLinkButton &
|
|
|
44
44
|
declare const KolModal: react.ForwardRefExoticComponent<JSX.KolModal & Omit<react.HTMLAttributes<HTMLKolModalElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolModalElement>>;
|
|
45
45
|
declare const KolNav: react.ForwardRefExoticComponent<JSX.KolNav & Omit<react.HTMLAttributes<HTMLKolNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolNavElement>>;
|
|
46
46
|
declare const KolPagination: react.ForwardRefExoticComponent<JSX.KolPagination & Omit<react.HTMLAttributes<HTMLKolPaginationElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPaginationElement>>;
|
|
47
|
+
declare const KolPopoverButton: react.ForwardRefExoticComponent<JSX.KolPopoverButton & Omit<react.HTMLAttributes<HTMLKolPopoverButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPopoverButtonElement>>;
|
|
47
48
|
declare const KolProgress: react.ForwardRefExoticComponent<JSX.KolProgress & Omit<react.HTMLAttributes<HTMLKolProgressElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolProgressElement>>;
|
|
48
49
|
declare const KolQuote: react.ForwardRefExoticComponent<JSX.KolQuote & Omit<react.HTMLAttributes<HTMLKolQuoteElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolQuoteElement>>;
|
|
49
50
|
declare const KolSelect: react.ForwardRefExoticComponent<JSX.KolSelect & Omit<react.HTMLAttributes<HTMLKolSelectElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSelectElement>>;
|
|
@@ -64,4 +65,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
64
65
|
|
|
65
66
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
66
67
|
|
|
67
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
68
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPopoverButton, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -208,6 +208,7 @@ const KolLinkButton = /* @__PURE__ */ createReactComponent("kol-link-button");
|
|
|
208
208
|
const KolModal = /* @__PURE__ */ createReactComponent("kol-modal");
|
|
209
209
|
const KolNav = /* @__PURE__ */ createReactComponent("kol-nav");
|
|
210
210
|
const KolPagination = /* @__PURE__ */ createReactComponent("kol-pagination");
|
|
211
|
+
const KolPopoverButton = /* @__PURE__ */ createReactComponent("kol-popover-button");
|
|
211
212
|
const KolProgress = /* @__PURE__ */ createReactComponent("kol-progress");
|
|
212
213
|
const KolQuote = /* @__PURE__ */ createReactComponent("kol-quote");
|
|
213
214
|
const KolSelect = /* @__PURE__ */ createReactComponent("kol-select");
|
|
@@ -234,4 +235,4 @@ function createReactRenderElement(hostElement) {
|
|
|
234
235
|
return renderElement;
|
|
235
236
|
}
|
|
236
237
|
|
|
237
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
238
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPopoverButton, KolProgress, KolQuote, KolSelect, KolSingleSelect, 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": "3.0.0-rc.
|
|
3
|
+
"version": "3.0.0-rc.6",
|
|
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": "3.0.0-rc.
|
|
57
|
+
"@public-ui/components": "3.0.0-rc.6"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"react": ">=16.14.0",
|
|
61
61
|
"react-dom": ">=16.14.0",
|
|
62
|
-
"@public-ui/components": "3.0.0-rc.
|
|
62
|
+
"@public-ui/components": "3.0.0-rc.6"
|
|
63
63
|
},
|
|
64
64
|
"sideEffects": false,
|
|
65
65
|
"type": "module",
|