@public-ui/react 1.5.0-rc.9 → 1.5.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 +6 -6
package/dist/index.cjs
CHANGED
|
@@ -209,12 +209,14 @@ const KolLogo = /* @__PURE__ */ createReactComponent("kol-logo");
|
|
|
209
209
|
const KolModal = /* @__PURE__ */ createReactComponent("kol-modal");
|
|
210
210
|
const KolNav = /* @__PURE__ */ createReactComponent("kol-nav");
|
|
211
211
|
const KolPagination = /* @__PURE__ */ createReactComponent("kol-pagination");
|
|
212
|
+
const KolPopover = /* @__PURE__ */ createReactComponent("kol-popover");
|
|
212
213
|
const KolProgress = /* @__PURE__ */ createReactComponent("kol-progress");
|
|
213
214
|
const KolQuote = /* @__PURE__ */ createReactComponent("kol-quote");
|
|
214
215
|
const KolSelect = /* @__PURE__ */ createReactComponent("kol-select");
|
|
215
216
|
const KolSkipNav = /* @__PURE__ */ createReactComponent("kol-skip-nav");
|
|
216
217
|
const KolSpan = /* @__PURE__ */ createReactComponent("kol-span");
|
|
217
218
|
const KolSpin = /* @__PURE__ */ createReactComponent("kol-spin");
|
|
219
|
+
const KolSplitButton = /* @__PURE__ */ createReactComponent("kol-split-button");
|
|
218
220
|
const KolSymbol = /* @__PURE__ */ createReactComponent("kol-symbol");
|
|
219
221
|
const KolTable = /* @__PURE__ */ createReactComponent("kol-table");
|
|
220
222
|
const KolTabs = /* @__PURE__ */ createReactComponent("kol-tabs");
|
|
@@ -260,12 +262,14 @@ exports.KolLogo = KolLogo;
|
|
|
260
262
|
exports.KolModal = KolModal;
|
|
261
263
|
exports.KolNav = KolNav;
|
|
262
264
|
exports.KolPagination = KolPagination;
|
|
265
|
+
exports.KolPopover = KolPopover;
|
|
263
266
|
exports.KolProgress = KolProgress;
|
|
264
267
|
exports.KolQuote = KolQuote;
|
|
265
268
|
exports.KolSelect = KolSelect;
|
|
266
269
|
exports.KolSkipNav = KolSkipNav;
|
|
267
270
|
exports.KolSpan = KolSpan;
|
|
268
271
|
exports.KolSpin = KolSpin;
|
|
272
|
+
exports.KolSplitButton = KolSplitButton;
|
|
269
273
|
exports.KolSymbol = KolSymbol;
|
|
270
274
|
exports.KolTable = KolTable;
|
|
271
275
|
exports.KolTabs = KolTabs;
|
package/dist/index.d.ts
CHANGED
|
@@ -46,12 +46,14 @@ declare const KolLogo: react.ForwardRefExoticComponent<JSX.KolLogo & Omit<react.
|
|
|
46
46
|
declare const KolModal: react.ForwardRefExoticComponent<JSX.KolModal & Omit<react.HTMLAttributes<HTMLKolModalElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolModalElement>>;
|
|
47
47
|
declare const KolNav: react.ForwardRefExoticComponent<JSX.KolNav & Omit<react.HTMLAttributes<HTMLKolNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolNavElement>>;
|
|
48
48
|
declare const KolPagination: react.ForwardRefExoticComponent<JSX.KolPagination & Omit<react.HTMLAttributes<HTMLKolPaginationElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPaginationElement>>;
|
|
49
|
+
declare const KolPopover: react.ForwardRefExoticComponent<JSX.KolPopover & Omit<react.HTMLAttributes<HTMLKolPopoverElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolPopoverElement>>;
|
|
49
50
|
declare const KolProgress: react.ForwardRefExoticComponent<JSX.KolProgress & Omit<react.HTMLAttributes<HTMLKolProgressElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolProgressElement>>;
|
|
50
51
|
declare const KolQuote: react.ForwardRefExoticComponent<JSX.KolQuote & Omit<react.HTMLAttributes<HTMLKolQuoteElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolQuoteElement>>;
|
|
51
52
|
declare const KolSelect: react.ForwardRefExoticComponent<JSX.KolSelect & Omit<react.HTMLAttributes<HTMLKolSelectElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSelectElement>>;
|
|
52
53
|
declare const KolSkipNav: react.ForwardRefExoticComponent<JSX.KolSkipNav & Omit<react.HTMLAttributes<HTMLKolSkipNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSkipNavElement>>;
|
|
53
54
|
declare const KolSpan: react.ForwardRefExoticComponent<JSX.KolSpan & Omit<react.HTMLAttributes<HTMLKolSpanElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSpanElement>>;
|
|
54
55
|
declare const KolSpin: react.ForwardRefExoticComponent<JSX.KolSpin & Omit<react.HTMLAttributes<HTMLKolSpinElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSpinElement>>;
|
|
56
|
+
declare const KolSplitButton: react.ForwardRefExoticComponent<JSX.KolSplitButton & Omit<react.HTMLAttributes<HTMLKolSplitButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSplitButtonElement>>;
|
|
55
57
|
declare const KolSymbol: react.ForwardRefExoticComponent<JSX.KolSymbol & Omit<react.HTMLAttributes<HTMLKolSymbolElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSymbolElement>>;
|
|
56
58
|
declare const KolTable: react.ForwardRefExoticComponent<JSX.KolTable & Omit<react.HTMLAttributes<HTMLKolTableElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTableElement>>;
|
|
57
59
|
declare const KolTabs: react.ForwardRefExoticComponent<JSX.KolTabs & Omit<react.HTMLAttributes<HTMLKolTabsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTabsElement>>;
|
|
@@ -60,4 +62,4 @@ declare const KolToast: react.ForwardRefExoticComponent<JSX.KolToast & Omit<reac
|
|
|
60
62
|
declare const KolTooltip: react.ForwardRefExoticComponent<JSX.KolTooltip & Omit<react.HTMLAttributes<HTMLKolTooltipElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTooltipElement>>;
|
|
61
63
|
declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<react.HTMLAttributes<HTMLKolVersionElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolVersionElement>>;
|
|
62
64
|
|
|
63
|
-
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonGroupWc, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolIcon, KolIconFontAwesome, KolIconIcofont, KolImage, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
|
65
|
+
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonGroupWc, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolIcon, KolIconFontAwesome, KolIconIcofont, KolImage, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolPopover, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
package/dist/index.mjs
CHANGED
|
@@ -201,12 +201,14 @@ const KolLogo = /* @__PURE__ */ createReactComponent("kol-logo");
|
|
|
201
201
|
const KolModal = /* @__PURE__ */ createReactComponent("kol-modal");
|
|
202
202
|
const KolNav = /* @__PURE__ */ createReactComponent("kol-nav");
|
|
203
203
|
const KolPagination = /* @__PURE__ */ createReactComponent("kol-pagination");
|
|
204
|
+
const KolPopover = /* @__PURE__ */ createReactComponent("kol-popover");
|
|
204
205
|
const KolProgress = /* @__PURE__ */ createReactComponent("kol-progress");
|
|
205
206
|
const KolQuote = /* @__PURE__ */ createReactComponent("kol-quote");
|
|
206
207
|
const KolSelect = /* @__PURE__ */ createReactComponent("kol-select");
|
|
207
208
|
const KolSkipNav = /* @__PURE__ */ createReactComponent("kol-skip-nav");
|
|
208
209
|
const KolSpan = /* @__PURE__ */ createReactComponent("kol-span");
|
|
209
210
|
const KolSpin = /* @__PURE__ */ createReactComponent("kol-spin");
|
|
211
|
+
const KolSplitButton = /* @__PURE__ */ createReactComponent("kol-split-button");
|
|
210
212
|
const KolSymbol = /* @__PURE__ */ createReactComponent("kol-symbol");
|
|
211
213
|
const KolTable = /* @__PURE__ */ createReactComponent("kol-table");
|
|
212
214
|
const KolTabs = /* @__PURE__ */ createReactComponent("kol-tabs");
|
|
@@ -215,4 +217,4 @@ const KolToast = /* @__PURE__ */ createReactComponent("kol-toast");
|
|
|
215
217
|
const KolTooltip = /* @__PURE__ */ createReactComponent("kol-tooltip");
|
|
216
218
|
const KolVersion = /* @__PURE__ */ createReactComponent("kol-version");
|
|
217
219
|
|
|
218
|
-
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonGroupWc, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolIcon, KolIconFontAwesome, KolIconIcofont, KolImage, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
|
220
|
+
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonGroupWc, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolIcon, KolIconFontAwesome, KolIconIcofont, KolImage, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolPopover, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/react",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -46,20 +46,20 @@
|
|
|
46
46
|
"prepack": "unbuild"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@public-ui/components": "1.5.
|
|
49
|
+
"@public-ui/components": "1.5.1",
|
|
50
50
|
"@types/minimatch": "5.1.2",
|
|
51
51
|
"@types/minimist": "1.2.2",
|
|
52
52
|
"@types/node": "ts4.9",
|
|
53
53
|
"@types/normalize-package-data": "2.4.1",
|
|
54
|
-
"@types/react": "18.
|
|
55
|
-
"@types/react-dom": "18.
|
|
54
|
+
"@types/react": "18.2.6",
|
|
55
|
+
"@types/react-dom": "18.2.4",
|
|
56
56
|
"react": "18.2.0",
|
|
57
57
|
"react-dom": "18.2.0",
|
|
58
|
-
"typescript": "
|
|
58
|
+
"typescript": "5.0.4",
|
|
59
59
|
"unbuild": "0.8.11"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"@public-ui/components": "1.5.
|
|
62
|
+
"@public-ui/components": "1.5.1",
|
|
63
63
|
"react": ">=16.14.0",
|
|
64
64
|
"react-dom": ">=16.14.0"
|
|
65
65
|
},
|