@public-ui/react 2.0.15 → 2.1.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 +4 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -192,6 +192,7 @@ const KolButton = /* @__PURE__ */ createReactComponent("kol-button");
|
|
|
192
192
|
const KolButtonGroup = /* @__PURE__ */ createReactComponent("kol-button-group");
|
|
193
193
|
const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
194
194
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
195
|
+
const KolCombobox = /* @__PURE__ */ createReactComponent("kol-combobox");
|
|
195
196
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
196
197
|
const KolForm = /* @__PURE__ */ createReactComponent("kol-form");
|
|
197
198
|
const KolHeading = /* @__PURE__ */ createReactComponent("kol-heading");
|
|
@@ -230,6 +231,7 @@ const KolTableStateless = /* @__PURE__ */ createReactComponent("kol-table-statel
|
|
|
230
231
|
const KolTabs = /* @__PURE__ */ createReactComponent("kol-tabs");
|
|
231
232
|
const KolTextarea = /* @__PURE__ */ createReactComponent("kol-textarea");
|
|
232
233
|
const KolToastContainer = /* @__PURE__ */ createReactComponent("kol-toast-container");
|
|
234
|
+
const KolToolbar = /* @__PURE__ */ createReactComponent("kol-toolbar");
|
|
233
235
|
const KolTree = /* @__PURE__ */ createReactComponent("kol-tree");
|
|
234
236
|
const KolTreeItem = /* @__PURE__ */ createReactComponent("kol-tree-item");
|
|
235
237
|
const KolTreeItemWc = /* @__PURE__ */ createReactComponent("kol-tree-item-wc");
|
|
@@ -254,6 +256,7 @@ exports.KolButton = KolButton;
|
|
|
254
256
|
exports.KolButtonGroup = KolButtonGroup;
|
|
255
257
|
exports.KolButtonLink = KolButtonLink;
|
|
256
258
|
exports.KolCard = KolCard;
|
|
259
|
+
exports.KolCombobox = KolCombobox;
|
|
257
260
|
exports.KolDetails = KolDetails;
|
|
258
261
|
exports.KolForm = KolForm;
|
|
259
262
|
exports.KolHeading = KolHeading;
|
|
@@ -292,6 +295,7 @@ exports.KolTableStateless = KolTableStateless;
|
|
|
292
295
|
exports.KolTabs = KolTabs;
|
|
293
296
|
exports.KolTextarea = KolTextarea;
|
|
294
297
|
exports.KolToastContainer = KolToastContainer;
|
|
298
|
+
exports.KolToolbar = KolToolbar;
|
|
295
299
|
exports.KolTree = KolTree;
|
|
296
300
|
exports.KolTreeItem = KolTreeItem;
|
|
297
301
|
exports.KolTreeItemWc = KolTreeItemWc;
|
package/dist/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ declare const KolButton: react.ForwardRefExoticComponent<JSX.KolButton & Omit<re
|
|
|
22
22
|
declare const KolButtonGroup: react.ForwardRefExoticComponent<JSX.KolButtonGroup & Omit<react.HTMLAttributes<HTMLKolButtonGroupElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonGroupElement>>;
|
|
23
23
|
declare const KolButtonLink: react.ForwardRefExoticComponent<JSX.KolButtonLink & Omit<react.HTMLAttributes<HTMLKolButtonLinkElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonLinkElement>>;
|
|
24
24
|
declare const KolCard: react.ForwardRefExoticComponent<JSX.KolCard & Omit<react.HTMLAttributes<HTMLKolCardElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardElement>>;
|
|
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 KolForm: react.ForwardRefExoticComponent<JSX.KolForm & Omit<react.HTMLAttributes<HTMLKolFormElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolFormElement>>;
|
|
27
28
|
declare const KolHeading: react.ForwardRefExoticComponent<JSX.KolHeading & Omit<react.HTMLAttributes<HTMLKolHeadingElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolHeadingElement>>;
|
|
@@ -60,6 +61,7 @@ declare const KolTableStateless: react.ForwardRefExoticComponent<JSX.KolTableSta
|
|
|
60
61
|
declare const KolTabs: react.ForwardRefExoticComponent<JSX.KolTabs & Omit<react.HTMLAttributes<HTMLKolTabsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTabsElement>>;
|
|
61
62
|
declare const KolTextarea: react.ForwardRefExoticComponent<JSX.KolTextarea & Omit<react.HTMLAttributes<HTMLKolTextareaElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTextareaElement>>;
|
|
62
63
|
declare const KolToastContainer: react.ForwardRefExoticComponent<JSX.KolToastContainer & Omit<react.HTMLAttributes<HTMLKolToastContainerElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolToastContainerElement>>;
|
|
64
|
+
declare const KolToolbar: react.ForwardRefExoticComponent<JSX.KolToolbar & Omit<react.HTMLAttributes<HTMLKolToolbarElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolToolbarElement>>;
|
|
63
65
|
declare const KolTree: react.ForwardRefExoticComponent<JSX.KolTree & Omit<react.HTMLAttributes<HTMLKolTreeElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTreeElement>>;
|
|
64
66
|
declare const KolTreeItem: react.ForwardRefExoticComponent<JSX.KolTreeItem & Omit<react.HTMLAttributes<HTMLKolTreeItemElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTreeItemElement>>;
|
|
65
67
|
declare const KolTreeItemWc: react.ForwardRefExoticComponent<JSX.KolTreeItemWc & Omit<react.HTMLAttributes<HTMLKolTreeItemWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTreeItemWcElement>>;
|
|
@@ -68,4 +70,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
68
70
|
|
|
69
71
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
70
72
|
|
|
71
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, 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, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
73
|
+
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, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -186,6 +186,7 @@ const KolButton = /* @__PURE__ */ createReactComponent("kol-button");
|
|
|
186
186
|
const KolButtonGroup = /* @__PURE__ */ createReactComponent("kol-button-group");
|
|
187
187
|
const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
188
188
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
189
|
+
const KolCombobox = /* @__PURE__ */ createReactComponent("kol-combobox");
|
|
189
190
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
190
191
|
const KolForm = /* @__PURE__ */ createReactComponent("kol-form");
|
|
191
192
|
const KolHeading = /* @__PURE__ */ createReactComponent("kol-heading");
|
|
@@ -224,6 +225,7 @@ const KolTableStateless = /* @__PURE__ */ createReactComponent("kol-table-statel
|
|
|
224
225
|
const KolTabs = /* @__PURE__ */ createReactComponent("kol-tabs");
|
|
225
226
|
const KolTextarea = /* @__PURE__ */ createReactComponent("kol-textarea");
|
|
226
227
|
const KolToastContainer = /* @__PURE__ */ createReactComponent("kol-toast-container");
|
|
228
|
+
const KolToolbar = /* @__PURE__ */ createReactComponent("kol-toolbar");
|
|
227
229
|
const KolTree = /* @__PURE__ */ createReactComponent("kol-tree");
|
|
228
230
|
const KolTreeItem = /* @__PURE__ */ createReactComponent("kol-tree-item");
|
|
229
231
|
const KolTreeItemWc = /* @__PURE__ */ createReactComponent("kol-tree-item-wc");
|
|
@@ -238,4 +240,4 @@ function createReactRenderElement(hostElement) {
|
|
|
238
240
|
return renderElement;
|
|
239
241
|
}
|
|
240
242
|
|
|
241
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, 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, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
|
243
|
+
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, KolSpan, 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.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -45,7 +45,6 @@
|
|
|
45
45
|
"react"
|
|
46
46
|
],
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@public-ui/components": "2.0.15",
|
|
49
48
|
"@types/minimatch": "5.1.2",
|
|
50
49
|
"@types/minimist": "1.2.5",
|
|
51
50
|
"@types/node": "ts5.4",
|
|
@@ -55,12 +54,13 @@
|
|
|
55
54
|
"react": "18.2.0",
|
|
56
55
|
"react-dom": "18.2.0",
|
|
57
56
|
"typescript": "5.4.5",
|
|
58
|
-
"unbuild": "1.2.1"
|
|
57
|
+
"unbuild": "1.2.1",
|
|
58
|
+
"@public-ui/components": "2.1.1"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
|
-
"@public-ui/components": "2.0.15",
|
|
62
61
|
"react": ">=16.14.0",
|
|
63
|
-
"react-dom": ">=16.14.0"
|
|
62
|
+
"react-dom": ">=16.14.0",
|
|
63
|
+
"@public-ui/components": "2.1.1"
|
|
64
64
|
},
|
|
65
65
|
"sideEffects": false,
|
|
66
66
|
"type": "module",
|