@public-ui/react 2.1.7-rc.0 → 2.1.7-rc.2
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
|
@@ -222,6 +222,7 @@ const KolPagination = /* @__PURE__ */ createReactComponent("kol-pagination");
|
|
|
222
222
|
const KolProgress = /* @__PURE__ */ createReactComponent("kol-progress");
|
|
223
223
|
const KolQuote = /* @__PURE__ */ createReactComponent("kol-quote");
|
|
224
224
|
const KolSelect = /* @__PURE__ */ createReactComponent("kol-select");
|
|
225
|
+
const KolSingleSelect = /* @__PURE__ */ createReactComponent("kol-single-select");
|
|
225
226
|
const KolSkipNav = /* @__PURE__ */ createReactComponent("kol-skip-nav");
|
|
226
227
|
const KolSpin = /* @__PURE__ */ createReactComponent("kol-spin");
|
|
227
228
|
const KolSplitButton = /* @__PURE__ */ createReactComponent("kol-split-button");
|
|
@@ -287,6 +288,7 @@ exports.KolPagination = KolPagination;
|
|
|
287
288
|
exports.KolProgress = KolProgress;
|
|
288
289
|
exports.KolQuote = KolQuote;
|
|
289
290
|
exports.KolSelect = KolSelect;
|
|
291
|
+
exports.KolSingleSelect = KolSingleSelect;
|
|
290
292
|
exports.KolSkipNav = KolSkipNav;
|
|
291
293
|
exports.KolSpin = KolSpin;
|
|
292
294
|
exports.KolSplitButton = KolSplitButton;
|
package/dist/index.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ declare const KolPagination: react.ForwardRefExoticComponent<JSX.KolPagination &
|
|
|
52
52
|
declare const KolProgress: react.ForwardRefExoticComponent<JSX.KolProgress & Omit<react.HTMLAttributes<HTMLKolProgressElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolProgressElement>>;
|
|
53
53
|
declare const KolQuote: react.ForwardRefExoticComponent<JSX.KolQuote & Omit<react.HTMLAttributes<HTMLKolQuoteElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolQuoteElement>>;
|
|
54
54
|
declare const KolSelect: react.ForwardRefExoticComponent<JSX.KolSelect & Omit<react.HTMLAttributes<HTMLKolSelectElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSelectElement>>;
|
|
55
|
+
declare const KolSingleSelect: react.ForwardRefExoticComponent<JSX.KolSingleSelect & Omit<react.HTMLAttributes<HTMLKolSingleSelectElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSingleSelectElement>>;
|
|
55
56
|
declare const KolSkipNav: react.ForwardRefExoticComponent<JSX.KolSkipNav & Omit<react.HTMLAttributes<HTMLKolSkipNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSkipNavElement>>;
|
|
56
57
|
declare const KolSpin: react.ForwardRefExoticComponent<JSX.KolSpin & Omit<react.HTMLAttributes<HTMLKolSpinElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSpinElement>>;
|
|
57
58
|
declare const KolSplitButton: react.ForwardRefExoticComponent<JSX.KolSplitButton & Omit<react.HTMLAttributes<HTMLKolSplitButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSplitButtonElement>>;
|
|
@@ -71,4 +72,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
71
72
|
|
|
72
73
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
73
74
|
|
|
74
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolIndentedTextWc, 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 };
|
|
75
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolIndentedTextWc, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -216,6 +216,7 @@ const KolPagination = /* @__PURE__ */ createReactComponent("kol-pagination");
|
|
|
216
216
|
const KolProgress = /* @__PURE__ */ createReactComponent("kol-progress");
|
|
217
217
|
const KolQuote = /* @__PURE__ */ createReactComponent("kol-quote");
|
|
218
218
|
const KolSelect = /* @__PURE__ */ createReactComponent("kol-select");
|
|
219
|
+
const KolSingleSelect = /* @__PURE__ */ createReactComponent("kol-single-select");
|
|
219
220
|
const KolSkipNav = /* @__PURE__ */ createReactComponent("kol-skip-nav");
|
|
220
221
|
const KolSpin = /* @__PURE__ */ createReactComponent("kol-spin");
|
|
221
222
|
const KolSplitButton = /* @__PURE__ */ createReactComponent("kol-split-button");
|
|
@@ -241,4 +242,4 @@ function createReactRenderElement(hostElement) {
|
|
|
241
242
|
return renderElement;
|
|
242
243
|
}
|
|
243
244
|
|
|
244
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolIndentedTextWc, 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 };
|
|
245
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolIndentedTextWc, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSingleSelect, 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.7-rc.
|
|
3
|
+
"version": "2.1.7-rc.2",
|
|
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.4",
|
|
57
57
|
"unbuild": "1.2.1",
|
|
58
|
-
"@public-ui/components": "2.1.7-rc.
|
|
58
|
+
"@public-ui/components": "2.1.7-rc.2"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"react": ">=16.14.0",
|
|
62
62
|
"react-dom": ">=16.14.0",
|
|
63
|
-
"@public-ui/components": "2.1.7-rc.
|
|
63
|
+
"@public-ui/components": "2.1.7-rc.2"
|
|
64
64
|
},
|
|
65
65
|
"sideEffects": false,
|
|
66
66
|
"type": "module",
|