@public-ui/react 1.7.0-rc.0 → 1.7.0-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/README.md +2 -2
- package/dist/index.cjs +2 -4
- package/dist/index.d.ts +2 -3
- package/dist/index.mjs +2 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Das [**React**](https://reactjs.org)-Modul ist der Framework-Adapter für die Komponenten-Bibliothek.
|
|
4
4
|
|
|
5
|
-
Mehr zur **Modularisierung** kann im [Architekturkonzept](https://
|
|
5
|
+
Mehr zur **Modularisierung** kann im [Architekturkonzept](https://public-ui.github.io/docs/concepts/architecture) nachgelesen werden.
|
|
6
6
|
|
|
7
|
-
Mehr zum **Projekt** kann in der [README](https://
|
|
7
|
+
Mehr zum **Projekt** kann in der [README](https://public-ui.github.io/docs) nachgelesen werden.
|
package/dist/index.cjs
CHANGED
|
@@ -180,12 +180,10 @@ const KolAbbr = /* @__PURE__ */ createReactComponent("kol-abbr");
|
|
|
180
180
|
const KolAccordion = /* @__PURE__ */ createReactComponent("kol-accordion");
|
|
181
181
|
const KolAlert = /* @__PURE__ */ createReactComponent("kol-alert");
|
|
182
182
|
const KolAvatar = /* @__PURE__ */ createReactComponent("kol-avatar");
|
|
183
|
-
const KolAvatarWc = /* @__PURE__ */ createReactComponent("kol-avatar-wc");
|
|
184
183
|
const KolBadge = /* @__PURE__ */ createReactComponent("kol-badge");
|
|
185
184
|
const KolBreadcrumb = /* @__PURE__ */ createReactComponent("kol-breadcrumb");
|
|
186
185
|
const KolButton = /* @__PURE__ */ createReactComponent("kol-button");
|
|
187
186
|
const KolButtonGroup = /* @__PURE__ */ createReactComponent("kol-button-group");
|
|
188
|
-
const KolButtonGroupWc = /* @__PURE__ */ createReactComponent("kol-button-group-wc");
|
|
189
187
|
const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
190
188
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
191
189
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
@@ -228,18 +226,17 @@ const KolTable = /* @__PURE__ */ createReactComponent("kol-table");
|
|
|
228
226
|
const KolTabs = /* @__PURE__ */ createReactComponent("kol-tabs");
|
|
229
227
|
const KolTextarea = /* @__PURE__ */ createReactComponent("kol-textarea");
|
|
230
228
|
const KolToast = /* @__PURE__ */ createReactComponent("kol-toast");
|
|
229
|
+
const KolToastContainer = /* @__PURE__ */ createReactComponent("kol-toast-container");
|
|
231
230
|
const KolVersion = /* @__PURE__ */ createReactComponent("kol-version");
|
|
232
231
|
|
|
233
232
|
exports.KolAbbr = KolAbbr;
|
|
234
233
|
exports.KolAccordion = KolAccordion;
|
|
235
234
|
exports.KolAlert = KolAlert;
|
|
236
235
|
exports.KolAvatar = KolAvatar;
|
|
237
|
-
exports.KolAvatarWc = KolAvatarWc;
|
|
238
236
|
exports.KolBadge = KolBadge;
|
|
239
237
|
exports.KolBreadcrumb = KolBreadcrumb;
|
|
240
238
|
exports.KolButton = KolButton;
|
|
241
239
|
exports.KolButtonGroup = KolButtonGroup;
|
|
242
|
-
exports.KolButtonGroupWc = KolButtonGroupWc;
|
|
243
240
|
exports.KolButtonLink = KolButtonLink;
|
|
244
241
|
exports.KolCard = KolCard;
|
|
245
242
|
exports.KolDetails = KolDetails;
|
|
@@ -282,4 +279,5 @@ exports.KolTable = KolTable;
|
|
|
282
279
|
exports.KolTabs = KolTabs;
|
|
283
280
|
exports.KolTextarea = KolTextarea;
|
|
284
281
|
exports.KolToast = KolToast;
|
|
282
|
+
exports.KolToastContainer = KolToastContainer;
|
|
285
283
|
exports.KolVersion = KolVersion;
|
package/dist/index.d.ts
CHANGED
|
@@ -13,12 +13,10 @@ declare const KolAbbr: react.ForwardRefExoticComponent<JSX.KolAbbr & Omit<react.
|
|
|
13
13
|
declare const KolAccordion: react.ForwardRefExoticComponent<JSX.KolAccordion & Omit<react.HTMLAttributes<HTMLKolAccordionElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolAccordionElement>>;
|
|
14
14
|
declare const KolAlert: react.ForwardRefExoticComponent<JSX.KolAlert & Omit<react.HTMLAttributes<HTMLKolAlertElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolAlertElement>>;
|
|
15
15
|
declare const KolAvatar: react.ForwardRefExoticComponent<JSX.KolAvatar & Omit<react.HTMLAttributes<HTMLKolAvatarElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolAvatarElement>>;
|
|
16
|
-
declare const KolAvatarWc: react.ForwardRefExoticComponent<JSX.KolAvatarWc & Omit<react.HTMLAttributes<HTMLKolAvatarWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolAvatarWcElement>>;
|
|
17
16
|
declare const KolBadge: react.ForwardRefExoticComponent<JSX.KolBadge & Omit<react.HTMLAttributes<HTMLKolBadgeElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolBadgeElement>>;
|
|
18
17
|
declare const KolBreadcrumb: react.ForwardRefExoticComponent<JSX.KolBreadcrumb & Omit<react.HTMLAttributes<HTMLKolBreadcrumbElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolBreadcrumbElement>>;
|
|
19
18
|
declare const KolButton: react.ForwardRefExoticComponent<JSX.KolButton & Omit<react.HTMLAttributes<HTMLKolButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonElement>>;
|
|
20
19
|
declare const KolButtonGroup: react.ForwardRefExoticComponent<JSX.KolButtonGroup & Omit<react.HTMLAttributes<HTMLKolButtonGroupElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonGroupElement>>;
|
|
21
|
-
declare const KolButtonGroupWc: react.ForwardRefExoticComponent<JSX.KolButtonGroupWc & Omit<react.HTMLAttributes<HTMLKolButtonGroupWcElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonGroupWcElement>>;
|
|
22
20
|
declare const KolButtonLink: react.ForwardRefExoticComponent<JSX.KolButtonLink & Omit<react.HTMLAttributes<HTMLKolButtonLinkElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolButtonLinkElement>>;
|
|
23
21
|
declare const KolCard: react.ForwardRefExoticComponent<JSX.KolCard & Omit<react.HTMLAttributes<HTMLKolCardElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolCardElement>>;
|
|
24
22
|
declare const KolDetails: react.ForwardRefExoticComponent<JSX.KolDetails & Omit<react.HTMLAttributes<HTMLKolDetailsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolDetailsElement>>;
|
|
@@ -61,6 +59,7 @@ declare const KolTable: react.ForwardRefExoticComponent<JSX.KolTable & Omit<reac
|
|
|
61
59
|
declare const KolTabs: react.ForwardRefExoticComponent<JSX.KolTabs & Omit<react.HTMLAttributes<HTMLKolTabsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTabsElement>>;
|
|
62
60
|
declare const KolTextarea: react.ForwardRefExoticComponent<JSX.KolTextarea & Omit<react.HTMLAttributes<HTMLKolTextareaElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTextareaElement>>;
|
|
63
61
|
declare const KolToast: react.ForwardRefExoticComponent<JSX.KolToast & Omit<react.HTMLAttributes<HTMLKolToastElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolToastElement>>;
|
|
62
|
+
declare const KolToastContainer: react.ForwardRefExoticComponent<JSX.KolToastContainer & Omit<react.HTMLAttributes<HTMLKolToastContainerElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolToastContainerElement>>;
|
|
64
63
|
declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<react.HTMLAttributes<HTMLKolVersionElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolVersionElement>>;
|
|
65
64
|
|
|
66
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar,
|
|
65
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, 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, KolToastContainer, KolVersion };
|
package/dist/index.mjs
CHANGED
|
@@ -174,12 +174,10 @@ const KolAbbr = /* @__PURE__ */ createReactComponent("kol-abbr");
|
|
|
174
174
|
const KolAccordion = /* @__PURE__ */ createReactComponent("kol-accordion");
|
|
175
175
|
const KolAlert = /* @__PURE__ */ createReactComponent("kol-alert");
|
|
176
176
|
const KolAvatar = /* @__PURE__ */ createReactComponent("kol-avatar");
|
|
177
|
-
const KolAvatarWc = /* @__PURE__ */ createReactComponent("kol-avatar-wc");
|
|
178
177
|
const KolBadge = /* @__PURE__ */ createReactComponent("kol-badge");
|
|
179
178
|
const KolBreadcrumb = /* @__PURE__ */ createReactComponent("kol-breadcrumb");
|
|
180
179
|
const KolButton = /* @__PURE__ */ createReactComponent("kol-button");
|
|
181
180
|
const KolButtonGroup = /* @__PURE__ */ createReactComponent("kol-button-group");
|
|
182
|
-
const KolButtonGroupWc = /* @__PURE__ */ createReactComponent("kol-button-group-wc");
|
|
183
181
|
const KolButtonLink = /* @__PURE__ */ createReactComponent("kol-button-link");
|
|
184
182
|
const KolCard = /* @__PURE__ */ createReactComponent("kol-card");
|
|
185
183
|
const KolDetails = /* @__PURE__ */ createReactComponent("kol-details");
|
|
@@ -222,6 +220,7 @@ const KolTable = /* @__PURE__ */ createReactComponent("kol-table");
|
|
|
222
220
|
const KolTabs = /* @__PURE__ */ createReactComponent("kol-tabs");
|
|
223
221
|
const KolTextarea = /* @__PURE__ */ createReactComponent("kol-textarea");
|
|
224
222
|
const KolToast = /* @__PURE__ */ createReactComponent("kol-toast");
|
|
223
|
+
const KolToastContainer = /* @__PURE__ */ createReactComponent("kol-toast-container");
|
|
225
224
|
const KolVersion = /* @__PURE__ */ createReactComponent("kol-version");
|
|
226
225
|
|
|
227
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar,
|
|
226
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, 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, KolToastContainer, KolVersion };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/react",
|
|
3
|
-
"version": "1.7.0-rc.
|
|
3
|
+
"version": "1.7.0-rc.2",
|
|
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.7.0-rc.
|
|
49
|
+
"@public-ui/components": "1.7.0-rc.2",
|
|
50
50
|
"@types/minimatch": "5.1.2",
|
|
51
51
|
"@types/minimist": "1.2.2",
|
|
52
52
|
"@types/node": "ts5.1",
|
|
53
53
|
"@types/normalize-package-data": "2.4.1",
|
|
54
|
-
"@types/react": "18.2.
|
|
54
|
+
"@types/react": "18.2.21",
|
|
55
55
|
"@types/react-dom": "18.2.7",
|
|
56
56
|
"react": "18.2.0",
|
|
57
57
|
"react-dom": "18.2.0",
|
|
58
|
-
"typescript": "5.
|
|
58
|
+
"typescript": "5.2.2",
|
|
59
59
|
"unbuild": "1.2.1"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"@public-ui/components": "1.7.0-rc.
|
|
62
|
+
"@public-ui/components": "1.7.0-rc.2",
|
|
63
63
|
"react": ">=16.14.0",
|
|
64
64
|
"react-dom": ">=16.14.0"
|
|
65
65
|
},
|