@public-ui/react 1.1.13-rc.5 → 1.1.13-rc.6
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 +4 -4
package/dist/index.cjs
CHANGED
|
@@ -179,6 +179,7 @@ const KolBadge = /* @__PURE__ */ createReactComponent("kol-badge");
|
|
|
179
179
|
const KolBreadcrumb = /* @__PURE__ */ createReactComponent("kol-breadcrumb");
|
|
180
180
|
const KolButton = /* @__PURE__ */ createReactComponent("kol-button");
|
|
181
181
|
const KolButtonGroup = /* @__PURE__ */ createReactComponent("kol-button-group");
|
|
182
|
+
const KolButtonGroupWc = /* @__PURE__ */ createReactComponent("kol-button-group-wc");
|
|
182
183
|
const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
183
184
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
184
185
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
@@ -227,6 +228,7 @@ exports.KolBadge = KolBadge;
|
|
|
227
228
|
exports.KolBreadcrumb = KolBreadcrumb;
|
|
228
229
|
exports.KolButton = KolButton;
|
|
229
230
|
exports.KolButtonGroup = KolButtonGroup;
|
|
231
|
+
exports.KolButtonGroupWc = KolButtonGroupWc;
|
|
230
232
|
exports.KolButtonLink = KolButtonLink;
|
|
231
233
|
exports.KolCard = KolCard;
|
|
232
234
|
exports.KolDetails = KolDetails;
|
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 KolButtonGroupWc: react.ForwardRefExoticComponent<JSX.KolButtonGroupWc & Omit<react.HTMLAttributes<HTMLKolButtonGroupWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonGroupWcElement>>;
|
|
19
20
|
declare const KolButtonLink: react.ForwardRefExoticComponent<JSX.KolButtonLink & Omit<react.HTMLAttributes<HTMLKolButtonLinkElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonLinkElement>>;
|
|
20
21
|
declare const KolCard: react.ForwardRefExoticComponent<JSX.KolCard & Omit<react.HTMLAttributes<HTMLKolCardElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardElement>>;
|
|
21
22
|
declare const KolDetails: react.ForwardRefExoticComponent<JSX.KolDetails & Omit<react.HTMLAttributes<HTMLKolDetailsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDetailsElement>>;
|
|
@@ -57,4 +58,4 @@ declare const KolToast: react.ForwardRefExoticComponent<JSX.KolToast & Omit<reac
|
|
|
57
58
|
declare const KolTooltip: react.ForwardRefExoticComponent<JSX.KolTooltip & Omit<react.HTMLAttributes<HTMLKolTooltipElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTooltipElement>>;
|
|
58
59
|
declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<react.HTMLAttributes<HTMLKolVersionElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolVersionElement>>;
|
|
59
60
|
|
|
60
|
-
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolIcon, KolIconFontAwesome, KolIconIcofont, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
|
61
|
+
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonGroupWc, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolIcon, KolIconFontAwesome, KolIconIcofont, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
package/dist/index.mjs
CHANGED
|
@@ -171,6 +171,7 @@ const KolBadge = /* @__PURE__ */ createReactComponent("kol-badge");
|
|
|
171
171
|
const KolBreadcrumb = /* @__PURE__ */ createReactComponent("kol-breadcrumb");
|
|
172
172
|
const KolButton = /* @__PURE__ */ createReactComponent("kol-button");
|
|
173
173
|
const KolButtonGroup = /* @__PURE__ */ createReactComponent("kol-button-group");
|
|
174
|
+
const KolButtonGroupWc = /* @__PURE__ */ createReactComponent("kol-button-group-wc");
|
|
174
175
|
const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
175
176
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
176
177
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
@@ -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, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolIcon, KolIconFontAwesome, KolIconIcofont, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
|
216
|
+
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonGroupWc, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolIcon, KolIconFontAwesome, KolIconIcofont, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolSelect, KolSkipNav, KolSpan, 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.13-rc.
|
|
3
|
+
"version": "1.1.13-rc.6",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
":unpublish": "npm unpublish -f --registry=http://localhost:4873"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@public-ui/core": "1.1.13-rc.
|
|
47
|
-
"@public-ui/components": "1.1.13-rc.
|
|
46
|
+
"@public-ui/core": "1.1.13-rc.6",
|
|
47
|
+
"@public-ui/components": "1.1.13-rc.6",
|
|
48
48
|
"@types/minimatch": "5.1.2",
|
|
49
49
|
"@types/minimist": "1.2.2",
|
|
50
50
|
"@types/node": "18.11.9",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"unbuild": "0.8.11"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"@public-ui/components": "1.1.13-rc.
|
|
60
|
+
"@public-ui/components": "1.1.13-rc.6",
|
|
61
61
|
"react": ">=16.14.0",
|
|
62
62
|
"react-dom": ">=16.14.0"
|
|
63
63
|
},
|