@public-ui/react 2.1.3 → 2.1.4-alpha.1
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
|
@@ -194,6 +194,7 @@ const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
|
194
194
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
195
195
|
const KolCombobox = /* @__PURE__ */ createReactComponent("kol-combobox");
|
|
196
196
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
197
|
+
const KolDrawer = /* @__PURE__ */ createReactComponent("kol-drawer");
|
|
197
198
|
const KolForm = /* @__PURE__ */ createReactComponent("kol-form");
|
|
198
199
|
const KolHeading = /* @__PURE__ */ createReactComponent("kol-heading");
|
|
199
200
|
const KolIcon = /* @__PURE__ */ createReactComponent("kol-icon");
|
|
@@ -257,6 +258,7 @@ exports.KolButtonLink = KolButtonLink;
|
|
|
257
258
|
exports.KolCard = KolCard;
|
|
258
259
|
exports.KolCombobox = KolCombobox;
|
|
259
260
|
exports.KolDetails = KolDetails;
|
|
261
|
+
exports.KolDrawer = KolDrawer;
|
|
260
262
|
exports.KolForm = KolForm;
|
|
261
263
|
exports.KolHeading = KolHeading;
|
|
262
264
|
exports.KolIcon = KolIcon;
|
package/dist/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ declare const KolButtonLink: react.ForwardRefExoticComponent<JSX.KolButtonLink &
|
|
|
24
24
|
declare const KolCard: react.ForwardRefExoticComponent<JSX.KolCard & Omit<react.HTMLAttributes<HTMLKolCardElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardElement>>;
|
|
25
25
|
declare const KolCombobox: react.ForwardRefExoticComponent<JSX.KolCombobox & Omit<react.HTMLAttributes<HTMLKolComboboxElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolComboboxElement>>;
|
|
26
26
|
declare const KolDetails: react.ForwardRefExoticComponent<JSX.KolDetails & Omit<react.HTMLAttributes<HTMLKolDetailsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDetailsElement>>;
|
|
27
|
+
declare const KolDrawer: react.ForwardRefExoticComponent<JSX.KolDrawer & Omit<react.HTMLAttributes<HTMLKolDrawerElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDrawerElement>>;
|
|
27
28
|
declare const KolForm: react.ForwardRefExoticComponent<JSX.KolForm & Omit<react.HTMLAttributes<HTMLKolFormElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolFormElement>>;
|
|
28
29
|
declare const KolHeading: react.ForwardRefExoticComponent<JSX.KolHeading & Omit<react.HTMLAttributes<HTMLKolHeadingElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolHeadingElement>>;
|
|
29
30
|
declare const KolIcon: react.ForwardRefExoticComponent<JSX.KolIcon & Omit<react.HTMLAttributes<HTMLKolIconElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolIconElement>>;
|
|
@@ -69,4 +70,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
69
70
|
|
|
70
71
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
71
72
|
|
|
72
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, 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, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
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, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -188,6 +188,7 @@ const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
|
188
188
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
189
189
|
const KolCombobox = /* @__PURE__ */ createReactComponent("kol-combobox");
|
|
190
190
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
191
|
+
const KolDrawer = /* @__PURE__ */ createReactComponent("kol-drawer");
|
|
191
192
|
const KolForm = /* @__PURE__ */ createReactComponent("kol-form");
|
|
192
193
|
const KolHeading = /* @__PURE__ */ createReactComponent("kol-heading");
|
|
193
194
|
const KolIcon = /* @__PURE__ */ createReactComponent("kol-icon");
|
|
@@ -239,4 +240,4 @@ function createReactRenderElement(hostElement) {
|
|
|
239
240
|
return renderElement;
|
|
240
241
|
}
|
|
241
242
|
|
|
242
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, 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, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
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, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/react",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4-alpha.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
"react-dom": "18.2.0",
|
|
56
56
|
"typescript": "5.5.2",
|
|
57
57
|
"unbuild": "1.2.1",
|
|
58
|
-
"@public-ui/components": "2.1.
|
|
58
|
+
"@public-ui/components": "2.1.4-alpha.1"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"react": ">=16.14.0",
|
|
62
62
|
"react-dom": ">=16.14.0",
|
|
63
|
-
"@public-ui/components": "2.1.
|
|
63
|
+
"@public-ui/components": "2.1.4-alpha.1"
|
|
64
64
|
},
|
|
65
65
|
"sideEffects": false,
|
|
66
66
|
"type": "module",
|