@public-ui/react 3.0.1 → 3.0.2-23b676ffff02d65bc7f05613310ad885935cd160.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/README.md +6 -4
- 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 +3 -3
package/README.md
CHANGED
|
@@ -14,12 +14,12 @@ Provide an adapter for [React](https://reactjs.org) to use the KoliBri component
|
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
Install the adapter with `npm`, `pnpm` or `yarn`:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npm i
|
|
21
|
-
pnpm i
|
|
22
|
-
yarn add
|
|
20
|
+
npm i @public-ui/react
|
|
21
|
+
pnpm i @public-ui/react
|
|
22
|
+
yarn add @public-ui/react
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
## Usage
|
|
@@ -53,3 +53,5 @@ import { KolButton } from '@public-ui/react';
|
|
|
53
53
|
|
|
54
54
|
export default (): FC => <KolButton _label="Hello World" />;
|
|
55
55
|
```
|
|
56
|
+
|
|
57
|
+
For available design tokens see the [default theme README](../../themes/default/README.md).
|
package/dist/index.cjs
CHANGED
|
@@ -183,6 +183,7 @@ const KolBreadcrumb = /* @__PURE__ */ createReactComponent("kol-breadcrumb");
|
|
|
183
183
|
const KolButton = /* @__PURE__ */ createReactComponent("kol-button");
|
|
184
184
|
const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
185
185
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
186
|
+
const KolCardWc = /* @__PURE__ */ createReactComponent("kol-card-wc");
|
|
186
187
|
const KolCombobox = /* @__PURE__ */ createReactComponent("kol-combobox");
|
|
187
188
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
188
189
|
const KolDrawer = /* @__PURE__ */ createReactComponent("kol-drawer");
|
|
@@ -206,6 +207,7 @@ const KolLinkButton = /* @__PURE__ */ createReactComponent("kol-link-button");
|
|
|
206
207
|
const KolModal = /* @__PURE__ */ createReactComponent("kol-modal");
|
|
207
208
|
const KolNav = /* @__PURE__ */ createReactComponent("kol-nav");
|
|
208
209
|
const KolPagination = /* @__PURE__ */ createReactComponent("kol-pagination");
|
|
210
|
+
const KolPaginationWc = /* @__PURE__ */ createReactComponent("kol-pagination-wc");
|
|
209
211
|
const KolPopoverButton = /* @__PURE__ */ createReactComponent("kol-popover-button");
|
|
210
212
|
const KolPopoverButtonWc = /* @__PURE__ */ createReactComponent("kol-popover-button-wc");
|
|
211
213
|
const KolProgress = /* @__PURE__ */ createReactComponent("kol-progress");
|
|
@@ -243,6 +245,7 @@ exports.KolBreadcrumb = KolBreadcrumb;
|
|
|
243
245
|
exports.KolButton = KolButton;
|
|
244
246
|
exports.KolButtonLink = KolButtonLink;
|
|
245
247
|
exports.KolCard = KolCard;
|
|
248
|
+
exports.KolCardWc = KolCardWc;
|
|
246
249
|
exports.KolCombobox = KolCombobox;
|
|
247
250
|
exports.KolDetails = KolDetails;
|
|
248
251
|
exports.KolDrawer = KolDrawer;
|
|
@@ -266,6 +269,7 @@ exports.KolLinkButton = KolLinkButton;
|
|
|
266
269
|
exports.KolModal = KolModal;
|
|
267
270
|
exports.KolNav = KolNav;
|
|
268
271
|
exports.KolPagination = KolPagination;
|
|
272
|
+
exports.KolPaginationWc = KolPaginationWc;
|
|
269
273
|
exports.KolPopoverButton = KolPopoverButton;
|
|
270
274
|
exports.KolPopoverButtonWc = KolPopoverButtonWc;
|
|
271
275
|
exports.KolProgress = KolProgress;
|
package/dist/index.d.cts
CHANGED
|
@@ -21,6 +21,7 @@ declare const KolBreadcrumb: react.ForwardRefExoticComponent<JSX.KolBreadcrumb &
|
|
|
21
21
|
declare const KolButton: react.ForwardRefExoticComponent<JSX.KolButton & Omit<react.HTMLAttributes<HTMLKolButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonElement>>;
|
|
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
|
+
declare const KolCardWc: react.ForwardRefExoticComponent<JSX.KolCardWc & Omit<react.HTMLAttributes<HTMLKolCardWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardWcElement>>;
|
|
24
25
|
declare const KolCombobox: react.ForwardRefExoticComponent<JSX.KolCombobox & Omit<react.HTMLAttributes<HTMLKolComboboxElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolComboboxElement>>;
|
|
25
26
|
declare const KolDetails: react.ForwardRefExoticComponent<JSX.KolDetails & Omit<react.HTMLAttributes<HTMLKolDetailsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDetailsElement>>;
|
|
26
27
|
declare const KolDrawer: react.ForwardRefExoticComponent<JSX.KolDrawer & Omit<react.HTMLAttributes<HTMLKolDrawerElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDrawerElement>>;
|
|
@@ -44,6 +45,7 @@ declare const KolLinkButton: react.ForwardRefExoticComponent<JSX.KolLinkButton &
|
|
|
44
45
|
declare const KolModal: react.ForwardRefExoticComponent<JSX.KolModal & Omit<react.HTMLAttributes<HTMLKolModalElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolModalElement>>;
|
|
45
46
|
declare const KolNav: react.ForwardRefExoticComponent<JSX.KolNav & Omit<react.HTMLAttributes<HTMLKolNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolNavElement>>;
|
|
46
47
|
declare const KolPagination: react.ForwardRefExoticComponent<JSX.KolPagination & Omit<react.HTMLAttributes<HTMLKolPaginationElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPaginationElement>>;
|
|
48
|
+
declare const KolPaginationWc: react.ForwardRefExoticComponent<JSX.KolPaginationWc & Omit<react.HTMLAttributes<HTMLKolPaginationWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPaginationWcElement>>;
|
|
47
49
|
declare const KolPopoverButton: react.ForwardRefExoticComponent<JSX.KolPopoverButton & Omit<react.HTMLAttributes<HTMLKolPopoverButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPopoverButtonElement>>;
|
|
48
50
|
declare const KolPopoverButtonWc: react.ForwardRefExoticComponent<JSX.KolPopoverButtonWc & Omit<react.HTMLAttributes<HTMLKolPopoverButtonWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPopoverButtonWcElement>>;
|
|
49
51
|
declare const KolProgress: react.ForwardRefExoticComponent<JSX.KolProgress & Omit<react.HTMLAttributes<HTMLKolProgressElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolProgressElement>>;
|
|
@@ -66,4 +68,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
66
68
|
|
|
67
69
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
68
70
|
|
|
69
|
-
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, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
71
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, 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, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/dist/index.d.mts
CHANGED
|
@@ -21,6 +21,7 @@ declare const KolBreadcrumb: react.ForwardRefExoticComponent<JSX.KolBreadcrumb &
|
|
|
21
21
|
declare const KolButton: react.ForwardRefExoticComponent<JSX.KolButton & Omit<react.HTMLAttributes<HTMLKolButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonElement>>;
|
|
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
|
+
declare const KolCardWc: react.ForwardRefExoticComponent<JSX.KolCardWc & Omit<react.HTMLAttributes<HTMLKolCardWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardWcElement>>;
|
|
24
25
|
declare const KolCombobox: react.ForwardRefExoticComponent<JSX.KolCombobox & Omit<react.HTMLAttributes<HTMLKolComboboxElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolComboboxElement>>;
|
|
25
26
|
declare const KolDetails: react.ForwardRefExoticComponent<JSX.KolDetails & Omit<react.HTMLAttributes<HTMLKolDetailsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDetailsElement>>;
|
|
26
27
|
declare const KolDrawer: react.ForwardRefExoticComponent<JSX.KolDrawer & Omit<react.HTMLAttributes<HTMLKolDrawerElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDrawerElement>>;
|
|
@@ -44,6 +45,7 @@ declare const KolLinkButton: react.ForwardRefExoticComponent<JSX.KolLinkButton &
|
|
|
44
45
|
declare const KolModal: react.ForwardRefExoticComponent<JSX.KolModal & Omit<react.HTMLAttributes<HTMLKolModalElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolModalElement>>;
|
|
45
46
|
declare const KolNav: react.ForwardRefExoticComponent<JSX.KolNav & Omit<react.HTMLAttributes<HTMLKolNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolNavElement>>;
|
|
46
47
|
declare const KolPagination: react.ForwardRefExoticComponent<JSX.KolPagination & Omit<react.HTMLAttributes<HTMLKolPaginationElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPaginationElement>>;
|
|
48
|
+
declare const KolPaginationWc: react.ForwardRefExoticComponent<JSX.KolPaginationWc & Omit<react.HTMLAttributes<HTMLKolPaginationWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPaginationWcElement>>;
|
|
47
49
|
declare const KolPopoverButton: react.ForwardRefExoticComponent<JSX.KolPopoverButton & Omit<react.HTMLAttributes<HTMLKolPopoverButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPopoverButtonElement>>;
|
|
48
50
|
declare const KolPopoverButtonWc: react.ForwardRefExoticComponent<JSX.KolPopoverButtonWc & Omit<react.HTMLAttributes<HTMLKolPopoverButtonWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPopoverButtonWcElement>>;
|
|
49
51
|
declare const KolProgress: react.ForwardRefExoticComponent<JSX.KolProgress & Omit<react.HTMLAttributes<HTMLKolProgressElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolProgressElement>>;
|
|
@@ -66,4 +68,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
66
68
|
|
|
67
69
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
68
70
|
|
|
69
|
-
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, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
71
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, 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, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/dist/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ declare const KolBreadcrumb: react.ForwardRefExoticComponent<JSX.KolBreadcrumb &
|
|
|
21
21
|
declare const KolButton: react.ForwardRefExoticComponent<JSX.KolButton & Omit<react.HTMLAttributes<HTMLKolButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonElement>>;
|
|
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
|
+
declare const KolCardWc: react.ForwardRefExoticComponent<JSX.KolCardWc & Omit<react.HTMLAttributes<HTMLKolCardWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardWcElement>>;
|
|
24
25
|
declare const KolCombobox: react.ForwardRefExoticComponent<JSX.KolCombobox & Omit<react.HTMLAttributes<HTMLKolComboboxElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolComboboxElement>>;
|
|
25
26
|
declare const KolDetails: react.ForwardRefExoticComponent<JSX.KolDetails & Omit<react.HTMLAttributes<HTMLKolDetailsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDetailsElement>>;
|
|
26
27
|
declare const KolDrawer: react.ForwardRefExoticComponent<JSX.KolDrawer & Omit<react.HTMLAttributes<HTMLKolDrawerElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDrawerElement>>;
|
|
@@ -44,6 +45,7 @@ declare const KolLinkButton: react.ForwardRefExoticComponent<JSX.KolLinkButton &
|
|
|
44
45
|
declare const KolModal: react.ForwardRefExoticComponent<JSX.KolModal & Omit<react.HTMLAttributes<HTMLKolModalElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolModalElement>>;
|
|
45
46
|
declare const KolNav: react.ForwardRefExoticComponent<JSX.KolNav & Omit<react.HTMLAttributes<HTMLKolNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolNavElement>>;
|
|
46
47
|
declare const KolPagination: react.ForwardRefExoticComponent<JSX.KolPagination & Omit<react.HTMLAttributes<HTMLKolPaginationElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPaginationElement>>;
|
|
48
|
+
declare const KolPaginationWc: react.ForwardRefExoticComponent<JSX.KolPaginationWc & Omit<react.HTMLAttributes<HTMLKolPaginationWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPaginationWcElement>>;
|
|
47
49
|
declare const KolPopoverButton: react.ForwardRefExoticComponent<JSX.KolPopoverButton & Omit<react.HTMLAttributes<HTMLKolPopoverButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPopoverButtonElement>>;
|
|
48
50
|
declare const KolPopoverButtonWc: react.ForwardRefExoticComponent<JSX.KolPopoverButtonWc & Omit<react.HTMLAttributes<HTMLKolPopoverButtonWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPopoverButtonWcElement>>;
|
|
49
51
|
declare const KolProgress: react.ForwardRefExoticComponent<JSX.KolProgress & Omit<react.HTMLAttributes<HTMLKolProgressElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolProgressElement>>;
|
|
@@ -66,4 +68,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
66
68
|
|
|
67
69
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
68
70
|
|
|
69
|
-
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, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
71
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, 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, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -177,6 +177,7 @@ const KolBreadcrumb = /* @__PURE__ */ createReactComponent("kol-breadcrumb");
|
|
|
177
177
|
const KolButton = /* @__PURE__ */ createReactComponent("kol-button");
|
|
178
178
|
const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
179
179
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
180
|
+
const KolCardWc = /* @__PURE__ */ createReactComponent("kol-card-wc");
|
|
180
181
|
const KolCombobox = /* @__PURE__ */ createReactComponent("kol-combobox");
|
|
181
182
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
182
183
|
const KolDrawer = /* @__PURE__ */ createReactComponent("kol-drawer");
|
|
@@ -200,6 +201,7 @@ const KolLinkButton = /* @__PURE__ */ createReactComponent("kol-link-button");
|
|
|
200
201
|
const KolModal = /* @__PURE__ */ createReactComponent("kol-modal");
|
|
201
202
|
const KolNav = /* @__PURE__ */ createReactComponent("kol-nav");
|
|
202
203
|
const KolPagination = /* @__PURE__ */ createReactComponent("kol-pagination");
|
|
204
|
+
const KolPaginationWc = /* @__PURE__ */ createReactComponent("kol-pagination-wc");
|
|
203
205
|
const KolPopoverButton = /* @__PURE__ */ createReactComponent("kol-popover-button");
|
|
204
206
|
const KolPopoverButtonWc = /* @__PURE__ */ createReactComponent("kol-popover-button-wc");
|
|
205
207
|
const KolProgress = /* @__PURE__ */ createReactComponent("kol-progress");
|
|
@@ -228,4 +230,4 @@ function createReactRenderElement(hostElement) {
|
|
|
228
230
|
return renderElement;
|
|
229
231
|
}
|
|
230
232
|
|
|
231
|
-
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, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
233
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, 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, 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.
|
|
3
|
+
"version": "3.0.2-23b676ffff02d65bc7f05613310ad885935cd160.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.3.1",
|
|
55
55
|
"typescript": "5.8.3",
|
|
56
56
|
"unbuild": "3.5.0",
|
|
57
|
-
"@public-ui/components": "3.0.
|
|
57
|
+
"@public-ui/components": "3.0.2-23b676ffff02d65bc7f05613310ad885935cd160.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"react": ">=16.14.0",
|
|
61
61
|
"react-dom": ">=16.14.0",
|
|
62
|
-
"@public-ui/components": "3.0.
|
|
62
|
+
"@public-ui/components": "3.0.2-23b676ffff02d65bc7f05613310ad885935cd160.0"
|
|
63
63
|
},
|
|
64
64
|
"sideEffects": false,
|
|
65
65
|
"type": "module",
|