@public-ui/react 1.1.10-rc.3 → 1.1.10-rc.5
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 +5 -5
package/dist/index.cjs
CHANGED
|
@@ -176,6 +176,7 @@ const KolBadge = /* @__PURE__ */ createReactComponent("kol-badge");
|
|
|
176
176
|
const KolBreadcrumb = /* @__PURE__ */ createReactComponent("kol-breadcrumb");
|
|
177
177
|
const KolButton = /* @__PURE__ */ createReactComponent("kol-button");
|
|
178
178
|
const KolButtonGroup = /* @__PURE__ */ createReactComponent("kol-button-group");
|
|
179
|
+
const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
179
180
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
180
181
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
181
182
|
const KolForm = /* @__PURE__ */ createReactComponent("kol-form");
|
|
@@ -221,6 +222,7 @@ exports.KolBadge = KolBadge;
|
|
|
221
222
|
exports.KolBreadcrumb = KolBreadcrumb;
|
|
222
223
|
exports.KolButton = KolButton;
|
|
223
224
|
exports.KolButtonGroup = KolButtonGroup;
|
|
225
|
+
exports.KolButtonLink = KolButtonLink;
|
|
224
226
|
exports.KolCard = KolCard;
|
|
225
227
|
exports.KolDetails = KolDetails;
|
|
226
228
|
exports.KolForm = KolForm;
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ declare const KolBadge: react.ForwardRefExoticComponent<JSX.KolBadge & Omit<reac
|
|
|
16
16
|
declare const KolBreadcrumb: react.ForwardRefExoticComponent<JSX.KolBreadcrumb & Omit<react.HTMLAttributes<HTMLKolBreadcrumbElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolBreadcrumbElement>>;
|
|
17
17
|
declare const KolButton: react.ForwardRefExoticComponent<JSX.KolButton & Omit<react.HTMLAttributes<HTMLKolButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonElement>>;
|
|
18
18
|
declare const KolButtonGroup: react.ForwardRefExoticComponent<JSX.KolButtonGroup & Omit<react.HTMLAttributes<HTMLKolButtonGroupElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonGroupElement>>;
|
|
19
|
+
declare const KolButtonLink: react.ForwardRefExoticComponent<JSX.KolButtonLink & Omit<react.HTMLAttributes<HTMLKolButtonLinkElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonLinkElement>>;
|
|
19
20
|
declare const KolCard: react.ForwardRefExoticComponent<JSX.KolCard & Omit<react.HTMLAttributes<HTMLKolCardElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardElement>>;
|
|
20
21
|
declare const KolDetails: react.ForwardRefExoticComponent<JSX.KolDetails & Omit<react.HTMLAttributes<HTMLKolDetailsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDetailsElement>>;
|
|
21
22
|
declare const KolForm: react.ForwardRefExoticComponent<JSX.KolForm & Omit<react.HTMLAttributes<HTMLKolFormElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolFormElement>>;
|
|
@@ -54,4 +55,4 @@ declare const KolToast: react.ForwardRefExoticComponent<JSX.KolToast & Omit<reac
|
|
|
54
55
|
declare const KolTooltip: react.ForwardRefExoticComponent<JSX.KolTooltip & Omit<react.HTMLAttributes<HTMLKolTooltipElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTooltipElement>>;
|
|
55
56
|
declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<react.HTMLAttributes<HTMLKolVersionElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolVersionElement>>;
|
|
56
57
|
|
|
57
|
-
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolCard, KolDetails, KolForm, KolHeading, KolHeadingWc, KolIcon, KolIconFontAwesome, KolIconIcofont, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolSelect, KolSkipNav, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
|
58
|
+
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolHeadingWc, KolIcon, KolIconFontAwesome, KolIconIcofont, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolSelect, KolSkipNav, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
package/dist/index.mjs
CHANGED
|
@@ -174,6 +174,7 @@ const KolBadge = /* @__PURE__ */ createReactComponent("kol-badge");
|
|
|
174
174
|
const KolBreadcrumb = /* @__PURE__ */ createReactComponent("kol-breadcrumb");
|
|
175
175
|
const KolButton = /* @__PURE__ */ createReactComponent("kol-button");
|
|
176
176
|
const KolButtonGroup = /* @__PURE__ */ createReactComponent("kol-button-group");
|
|
177
|
+
const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
177
178
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
178
179
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
179
180
|
const KolForm = /* @__PURE__ */ createReactComponent("kol-form");
|
|
@@ -212,4 +213,4 @@ const KolToast = /* @__PURE__ */ createReactComponent("kol-toast");
|
|
|
212
213
|
const KolTooltip = /* @__PURE__ */ createReactComponent("kol-tooltip");
|
|
213
214
|
const KolVersion = /* @__PURE__ */ createReactComponent("kol-version");
|
|
214
215
|
|
|
215
|
-
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolCard, KolDetails, KolForm, KolHeading, KolHeadingWc, KolIcon, KolIconFontAwesome, KolIconIcofont, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolSelect, KolSkipNav, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
|
216
|
+
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolHeadingWc, KolIcon, KolIconFontAwesome, KolIconIcofont, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolSelect, KolSkipNav, KolSpin, 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.1.10-rc.
|
|
3
|
+
"version": "1.1.10-rc.5",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
":unpublish": "npm unpublish -f --registry=http://localhost:4873"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@public-ui/core": "1.1.10-rc.
|
|
32
|
-
"@public-ui/components": "1.1.10-rc.
|
|
31
|
+
"@public-ui/core": "1.1.10-rc.5",
|
|
32
|
+
"@public-ui/components": "1.1.10-rc.5",
|
|
33
33
|
"@types/minimatch": "5.1.2",
|
|
34
34
|
"@types/minimist": "1.2.2",
|
|
35
|
-
"@types/node": "18.11.
|
|
35
|
+
"@types/node": "18.11.9",
|
|
36
36
|
"@types/normalize-package-data": "2.4.1",
|
|
37
37
|
"@types/react": "18.0.24",
|
|
38
38
|
"@types/react-dom": "18.0.8",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"unbuild": "0.9.1"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@public-ui/components": "1.1.10-rc.
|
|
45
|
+
"@public-ui/components": "1.1.10-rc.5",
|
|
46
46
|
"react": ">=16.14.0",
|
|
47
47
|
"react-dom": ">=16.14.0"
|
|
48
48
|
},
|