@public-ui/solid 1.7.0-rc.0 → 1.7.0-rc.11
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 +4 -4
package/README.md
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Das [**Solid**](https://solidjs.com)-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
|
@@ -68,12 +68,10 @@ const KolAbbr = /* @__PURE__ */ createSolidComponent("kol-abbr");
|
|
|
68
68
|
const KolAccordion = /* @__PURE__ */ createSolidComponent("kol-accordion");
|
|
69
69
|
const KolAlert = /* @__PURE__ */ createSolidComponent("kol-alert");
|
|
70
70
|
const KolAvatar = /* @__PURE__ */ createSolidComponent("kol-avatar");
|
|
71
|
-
const KolAvatarWc = /* @__PURE__ */ createSolidComponent("kol-avatar-wc");
|
|
72
71
|
const KolBadge = /* @__PURE__ */ createSolidComponent("kol-badge");
|
|
73
72
|
const KolBreadcrumb = /* @__PURE__ */ createSolidComponent("kol-breadcrumb");
|
|
74
73
|
const KolButton = /* @__PURE__ */ createSolidComponent("kol-button");
|
|
75
74
|
const KolButtonGroup = /* @__PURE__ */ createSolidComponent("kol-button-group");
|
|
76
|
-
const KolButtonGroupWc = /* @__PURE__ */ createSolidComponent("kol-button-group-wc");
|
|
77
75
|
const KolButtonLink = /* @__PURE__ */ createSolidComponent("kol-button-link");
|
|
78
76
|
const KolCard = /* @__PURE__ */ createSolidComponent("kol-card");
|
|
79
77
|
const KolDetails = /* @__PURE__ */ createSolidComponent("kol-details");
|
|
@@ -116,18 +114,17 @@ const KolTable = /* @__PURE__ */ createSolidComponent("kol-table");
|
|
|
116
114
|
const KolTabs = /* @__PURE__ */ createSolidComponent("kol-tabs");
|
|
117
115
|
const KolTextarea = /* @__PURE__ */ createSolidComponent("kol-textarea");
|
|
118
116
|
const KolToast = /* @__PURE__ */ createSolidComponent("kol-toast");
|
|
117
|
+
const KolToastContainer = /* @__PURE__ */ createSolidComponent("kol-toast-container");
|
|
119
118
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
120
119
|
|
|
121
120
|
exports.KolAbbr = KolAbbr;
|
|
122
121
|
exports.KolAccordion = KolAccordion;
|
|
123
122
|
exports.KolAlert = KolAlert;
|
|
124
123
|
exports.KolAvatar = KolAvatar;
|
|
125
|
-
exports.KolAvatarWc = KolAvatarWc;
|
|
126
124
|
exports.KolBadge = KolBadge;
|
|
127
125
|
exports.KolBreadcrumb = KolBreadcrumb;
|
|
128
126
|
exports.KolButton = KolButton;
|
|
129
127
|
exports.KolButtonGroup = KolButtonGroup;
|
|
130
|
-
exports.KolButtonGroupWc = KolButtonGroupWc;
|
|
131
128
|
exports.KolButtonLink = KolButtonLink;
|
|
132
129
|
exports.KolCard = KolCard;
|
|
133
130
|
exports.KolDetails = KolDetails;
|
|
@@ -170,4 +167,5 @@ exports.KolTable = KolTable;
|
|
|
170
167
|
exports.KolTabs = KolTabs;
|
|
171
168
|
exports.KolTextarea = KolTextarea;
|
|
172
169
|
exports.KolToast = KolToast;
|
|
170
|
+
exports.KolToastContainer = KolToastContainer;
|
|
173
171
|
exports.KolVersion = KolVersion;
|
package/dist/index.d.ts
CHANGED
|
@@ -5,12 +5,10 @@ declare const KolAbbr: (props: solid_js.PropsWithChildren<JSX.KolAbbr & solid_js
|
|
|
5
5
|
declare const KolAccordion: (props: solid_js.PropsWithChildren<JSX.KolAccordion & solid_js.JSX.HTMLAttributes<HTMLKolAccordionElement>>) => HTMLKolAccordionElement;
|
|
6
6
|
declare const KolAlert: (props: solid_js.PropsWithChildren<JSX.KolAlert & solid_js.JSX.HTMLAttributes<HTMLKolAlertElement>>) => HTMLKolAlertElement;
|
|
7
7
|
declare const KolAvatar: (props: solid_js.PropsWithChildren<JSX.KolAvatar & solid_js.JSX.HTMLAttributes<HTMLKolAvatarElement>>) => HTMLKolAvatarElement;
|
|
8
|
-
declare const KolAvatarWc: (props: solid_js.PropsWithChildren<JSX.KolAvatarWc & solid_js.JSX.HTMLAttributes<HTMLKolAvatarWcElement>>) => HTMLKolAvatarWcElement;
|
|
9
8
|
declare const KolBadge: (props: solid_js.PropsWithChildren<JSX.KolBadge & solid_js.JSX.HTMLAttributes<HTMLKolBadgeElement>>) => HTMLKolBadgeElement;
|
|
10
9
|
declare const KolBreadcrumb: (props: solid_js.PropsWithChildren<JSX.KolBreadcrumb & solid_js.JSX.HTMLAttributes<HTMLKolBreadcrumbElement>>) => HTMLKolBreadcrumbElement;
|
|
11
10
|
declare const KolButton: (props: solid_js.PropsWithChildren<JSX.KolButton & solid_js.JSX.HTMLAttributes<HTMLKolButtonElement>>) => HTMLKolButtonElement;
|
|
12
11
|
declare const KolButtonGroup: (props: solid_js.PropsWithChildren<JSX.KolButtonGroup & solid_js.JSX.HTMLAttributes<HTMLKolButtonGroupElement>>) => HTMLKolButtonGroupElement;
|
|
13
|
-
declare const KolButtonGroupWc: (props: solid_js.PropsWithChildren<JSX.KolButtonGroupWc & solid_js.JSX.HTMLAttributes<HTMLKolButtonGroupWcElement>>) => HTMLKolButtonGroupWcElement;
|
|
14
12
|
declare const KolButtonLink: (props: solid_js.PropsWithChildren<JSX.KolButtonLink & solid_js.JSX.HTMLAttributes<HTMLKolButtonLinkElement>>) => HTMLKolButtonLinkElement;
|
|
15
13
|
declare const KolCard: (props: solid_js.PropsWithChildren<JSX.KolCard & solid_js.JSX.HTMLAttributes<HTMLKolCardElement>>) => HTMLKolCardElement;
|
|
16
14
|
declare const KolDetails: (props: solid_js.PropsWithChildren<JSX.KolDetails & solid_js.JSX.HTMLAttributes<HTMLKolDetailsElement>>) => HTMLKolDetailsElement;
|
|
@@ -53,6 +51,7 @@ declare const KolTable: (props: solid_js.PropsWithChildren<JSX.KolTable & solid_
|
|
|
53
51
|
declare const KolTabs: (props: solid_js.PropsWithChildren<JSX.KolTabs & solid_js.JSX.HTMLAttributes<HTMLKolTabsElement>>) => HTMLKolTabsElement;
|
|
54
52
|
declare const KolTextarea: (props: solid_js.PropsWithChildren<JSX.KolTextarea & solid_js.JSX.HTMLAttributes<HTMLKolTextareaElement>>) => HTMLKolTextareaElement;
|
|
55
53
|
declare const KolToast: (props: solid_js.PropsWithChildren<JSX.KolToast & solid_js.JSX.HTMLAttributes<HTMLKolToastElement>>) => HTMLKolToastElement;
|
|
54
|
+
declare const KolToastContainer: (props: solid_js.PropsWithChildren<JSX.KolToastContainer & solid_js.JSX.HTMLAttributes<HTMLKolToastContainerElement>>) => HTMLKolToastContainerElement;
|
|
56
55
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
57
56
|
|
|
58
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar,
|
|
57
|
+
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
|
@@ -66,12 +66,10 @@ const KolAbbr = /* @__PURE__ */ createSolidComponent("kol-abbr");
|
|
|
66
66
|
const KolAccordion = /* @__PURE__ */ createSolidComponent("kol-accordion");
|
|
67
67
|
const KolAlert = /* @__PURE__ */ createSolidComponent("kol-alert");
|
|
68
68
|
const KolAvatar = /* @__PURE__ */ createSolidComponent("kol-avatar");
|
|
69
|
-
const KolAvatarWc = /* @__PURE__ */ createSolidComponent("kol-avatar-wc");
|
|
70
69
|
const KolBadge = /* @__PURE__ */ createSolidComponent("kol-badge");
|
|
71
70
|
const KolBreadcrumb = /* @__PURE__ */ createSolidComponent("kol-breadcrumb");
|
|
72
71
|
const KolButton = /* @__PURE__ */ createSolidComponent("kol-button");
|
|
73
72
|
const KolButtonGroup = /* @__PURE__ */ createSolidComponent("kol-button-group");
|
|
74
|
-
const KolButtonGroupWc = /* @__PURE__ */ createSolidComponent("kol-button-group-wc");
|
|
75
73
|
const KolButtonLink = /* @__PURE__ */ createSolidComponent("kol-button-link");
|
|
76
74
|
const KolCard = /* @__PURE__ */ createSolidComponent("kol-card");
|
|
77
75
|
const KolDetails = /* @__PURE__ */ createSolidComponent("kol-details");
|
|
@@ -114,6 +112,7 @@ const KolTable = /* @__PURE__ */ createSolidComponent("kol-table");
|
|
|
114
112
|
const KolTabs = /* @__PURE__ */ createSolidComponent("kol-tabs");
|
|
115
113
|
const KolTextarea = /* @__PURE__ */ createSolidComponent("kol-textarea");
|
|
116
114
|
const KolToast = /* @__PURE__ */ createSolidComponent("kol-toast");
|
|
115
|
+
const KolToastContainer = /* @__PURE__ */ createSolidComponent("kol-toast-container");
|
|
117
116
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
118
117
|
|
|
119
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar,
|
|
118
|
+
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/solid",
|
|
3
|
-
"version": "1.7.0-rc.
|
|
3
|
+
"version": "1.7.0-rc.11",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -46,17 +46,17 @@
|
|
|
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.11",
|
|
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
54
|
"solid-js": "1.7.11",
|
|
55
|
-
"typescript": "5.
|
|
55
|
+
"typescript": "5.2.2",
|
|
56
56
|
"unbuild": "1.2.1"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@public-ui/components": "1.7.0-rc.
|
|
59
|
+
"@public-ui/components": "1.7.0-rc.11",
|
|
60
60
|
"solid-js": ">=1.2.0"
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|