@public-ui/react 2.1.2 → 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 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +4 -4
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");
|
|
@@ -221,7 +222,6 @@ const KolProgress = /* @__PURE__ */ createReactComponent("kol-progress");
|
|
|
221
222
|
const KolQuote = /* @__PURE__ */ createReactComponent("kol-quote");
|
|
222
223
|
const KolSelect = /* @__PURE__ */ createReactComponent("kol-select");
|
|
223
224
|
const KolSkipNav = /* @__PURE__ */ createReactComponent("kol-skip-nav");
|
|
224
|
-
const KolSpan = /* @__PURE__ */ createReactComponent("kol-span");
|
|
225
225
|
const KolSpin = /* @__PURE__ */ createReactComponent("kol-spin");
|
|
226
226
|
const KolSplitButton = /* @__PURE__ */ createReactComponent("kol-split-button");
|
|
227
227
|
const KolSymbol = /* @__PURE__ */ createReactComponent("kol-symbol");
|
|
@@ -258,6 +258,7 @@ exports.KolButtonLink = KolButtonLink;
|
|
|
258
258
|
exports.KolCard = KolCard;
|
|
259
259
|
exports.KolCombobox = KolCombobox;
|
|
260
260
|
exports.KolDetails = KolDetails;
|
|
261
|
+
exports.KolDrawer = KolDrawer;
|
|
261
262
|
exports.KolForm = KolForm;
|
|
262
263
|
exports.KolHeading = KolHeading;
|
|
263
264
|
exports.KolIcon = KolIcon;
|
|
@@ -285,7 +286,6 @@ exports.KolProgress = KolProgress;
|
|
|
285
286
|
exports.KolQuote = KolQuote;
|
|
286
287
|
exports.KolSelect = KolSelect;
|
|
287
288
|
exports.KolSkipNav = KolSkipNav;
|
|
288
|
-
exports.KolSpan = KolSpan;
|
|
289
289
|
exports.KolSpin = KolSpin;
|
|
290
290
|
exports.KolSplitButton = KolSplitButton;
|
|
291
291
|
exports.KolSymbol = KolSymbol;
|
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>>;
|
|
@@ -51,7 +52,6 @@ declare const KolProgress: react.ForwardRefExoticComponent<JSX.KolProgress & Omi
|
|
|
51
52
|
declare const KolQuote: react.ForwardRefExoticComponent<JSX.KolQuote & Omit<react.HTMLAttributes<HTMLKolQuoteElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolQuoteElement>>;
|
|
52
53
|
declare const KolSelect: react.ForwardRefExoticComponent<JSX.KolSelect & Omit<react.HTMLAttributes<HTMLKolSelectElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSelectElement>>;
|
|
53
54
|
declare const KolSkipNav: react.ForwardRefExoticComponent<JSX.KolSkipNav & Omit<react.HTMLAttributes<HTMLKolSkipNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSkipNavElement>>;
|
|
54
|
-
declare const KolSpan: react.ForwardRefExoticComponent<JSX.KolSpan & Omit<react.HTMLAttributes<HTMLKolSpanElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSpanElement>>;
|
|
55
55
|
declare const KolSpin: react.ForwardRefExoticComponent<JSX.KolSpin & Omit<react.HTMLAttributes<HTMLKolSpinElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSpinElement>>;
|
|
56
56
|
declare const KolSplitButton: react.ForwardRefExoticComponent<JSX.KolSplitButton & Omit<react.HTMLAttributes<HTMLKolSplitButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSplitButtonElement>>;
|
|
57
57
|
declare const KolSymbol: react.ForwardRefExoticComponent<JSX.KolSymbol & Omit<react.HTMLAttributes<HTMLKolSymbolElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSymbolElement>>;
|
|
@@ -70,4 +70,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
70
70
|
|
|
71
71
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
72
72
|
|
|
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,
|
|
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");
|
|
@@ -215,7 +216,6 @@ const KolProgress = /* @__PURE__ */ createReactComponent("kol-progress");
|
|
|
215
216
|
const KolQuote = /* @__PURE__ */ createReactComponent("kol-quote");
|
|
216
217
|
const KolSelect = /* @__PURE__ */ createReactComponent("kol-select");
|
|
217
218
|
const KolSkipNav = /* @__PURE__ */ createReactComponent("kol-skip-nav");
|
|
218
|
-
const KolSpan = /* @__PURE__ */ createReactComponent("kol-span");
|
|
219
219
|
const KolSpin = /* @__PURE__ */ createReactComponent("kol-spin");
|
|
220
220
|
const KolSplitButton = /* @__PURE__ */ createReactComponent("kol-split-button");
|
|
221
221
|
const KolSymbol = /* @__PURE__ */ createReactComponent("kol-symbol");
|
|
@@ -240,4 +240,4 @@ function createReactRenderElement(hostElement) {
|
|
|
240
240
|
return renderElement;
|
|
241
241
|
}
|
|
242
242
|
|
|
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,
|
|
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": {
|
|
@@ -53,14 +53,14 @@
|
|
|
53
53
|
"@types/react-dom": "18.3.0",
|
|
54
54
|
"react": "18.2.0",
|
|
55
55
|
"react-dom": "18.2.0",
|
|
56
|
-
"typescript": "5.
|
|
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",
|