@public-ui/solid 1.6.0-rc.9 → 1.6.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 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.mjs +3 -2
- package/package.json +6 -5
package/dist/index.cjs
CHANGED
|
@@ -67,6 +67,8 @@ function createSolidComponent(tag) {
|
|
|
67
67
|
const KolAbbr = /* @__PURE__ */ createSolidComponent("kol-abbr");
|
|
68
68
|
const KolAccordion = /* @__PURE__ */ createSolidComponent("kol-accordion");
|
|
69
69
|
const KolAlert = /* @__PURE__ */ createSolidComponent("kol-alert");
|
|
70
|
+
const KolAvatar = /* @__PURE__ */ createSolidComponent("kol-avatar");
|
|
71
|
+
const KolAvatarWc = /* @__PURE__ */ createSolidComponent("kol-avatar-wc");
|
|
70
72
|
const KolBadge = /* @__PURE__ */ createSolidComponent("kol-badge");
|
|
71
73
|
const KolBreadcrumb = /* @__PURE__ */ createSolidComponent("kol-breadcrumb");
|
|
72
74
|
const KolButton = /* @__PURE__ */ createSolidComponent("kol-button");
|
|
@@ -114,12 +116,13 @@ const KolTable = /* @__PURE__ */ createSolidComponent("kol-table");
|
|
|
114
116
|
const KolTabs = /* @__PURE__ */ createSolidComponent("kol-tabs");
|
|
115
117
|
const KolTextarea = /* @__PURE__ */ createSolidComponent("kol-textarea");
|
|
116
118
|
const KolToast = /* @__PURE__ */ createSolidComponent("kol-toast");
|
|
117
|
-
const KolTooltip = /* @__PURE__ */ createSolidComponent("kol-tooltip");
|
|
118
119
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
119
120
|
|
|
120
121
|
exports.KolAbbr = KolAbbr;
|
|
121
122
|
exports.KolAccordion = KolAccordion;
|
|
122
123
|
exports.KolAlert = KolAlert;
|
|
124
|
+
exports.KolAvatar = KolAvatar;
|
|
125
|
+
exports.KolAvatarWc = KolAvatarWc;
|
|
123
126
|
exports.KolBadge = KolBadge;
|
|
124
127
|
exports.KolBreadcrumb = KolBreadcrumb;
|
|
125
128
|
exports.KolButton = KolButton;
|
|
@@ -167,5 +170,4 @@ exports.KolTable = KolTable;
|
|
|
167
170
|
exports.KolTabs = KolTabs;
|
|
168
171
|
exports.KolTextarea = KolTextarea;
|
|
169
172
|
exports.KolToast = KolToast;
|
|
170
|
-
exports.KolTooltip = KolTooltip;
|
|
171
173
|
exports.KolVersion = KolVersion;
|
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,8 @@ import { JSX } from '@public-ui/components';
|
|
|
4
4
|
declare const KolAbbr: (props: solid_js.PropsWithChildren<JSX.KolAbbr & solid_js.JSX.HTMLAttributes<HTMLKolAbbrElement>>) => HTMLKolAbbrElement;
|
|
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
|
+
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;
|
|
7
9
|
declare const KolBadge: (props: solid_js.PropsWithChildren<JSX.KolBadge & solid_js.JSX.HTMLAttributes<HTMLKolBadgeElement>>) => HTMLKolBadgeElement;
|
|
8
10
|
declare const KolBreadcrumb: (props: solid_js.PropsWithChildren<JSX.KolBreadcrumb & solid_js.JSX.HTMLAttributes<HTMLKolBreadcrumbElement>>) => HTMLKolBreadcrumbElement;
|
|
9
11
|
declare const KolButton: (props: solid_js.PropsWithChildren<JSX.KolButton & solid_js.JSX.HTMLAttributes<HTMLKolButtonElement>>) => HTMLKolButtonElement;
|
|
@@ -51,7 +53,6 @@ declare const KolTable: (props: solid_js.PropsWithChildren<JSX.KolTable & solid_
|
|
|
51
53
|
declare const KolTabs: (props: solid_js.PropsWithChildren<JSX.KolTabs & solid_js.JSX.HTMLAttributes<HTMLKolTabsElement>>) => HTMLKolTabsElement;
|
|
52
54
|
declare const KolTextarea: (props: solid_js.PropsWithChildren<JSX.KolTextarea & solid_js.JSX.HTMLAttributes<HTMLKolTextareaElement>>) => HTMLKolTextareaElement;
|
|
53
55
|
declare const KolToast: (props: solid_js.PropsWithChildren<JSX.KolToast & solid_js.JSX.HTMLAttributes<HTMLKolToastElement>>) => HTMLKolToastElement;
|
|
54
|
-
declare const KolTooltip: (props: solid_js.PropsWithChildren<JSX.KolTooltip & solid_js.JSX.HTMLAttributes<HTMLKolTooltipElement>>) => HTMLKolTooltipElement;
|
|
55
56
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
56
57
|
|
|
57
|
-
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,
|
|
58
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolAvatarWc, 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, KolVersion };
|
package/dist/index.mjs
CHANGED
|
@@ -65,6 +65,8 @@ function createSolidComponent(tag) {
|
|
|
65
65
|
const KolAbbr = /* @__PURE__ */ createSolidComponent("kol-abbr");
|
|
66
66
|
const KolAccordion = /* @__PURE__ */ createSolidComponent("kol-accordion");
|
|
67
67
|
const KolAlert = /* @__PURE__ */ createSolidComponent("kol-alert");
|
|
68
|
+
const KolAvatar = /* @__PURE__ */ createSolidComponent("kol-avatar");
|
|
69
|
+
const KolAvatarWc = /* @__PURE__ */ createSolidComponent("kol-avatar-wc");
|
|
68
70
|
const KolBadge = /* @__PURE__ */ createSolidComponent("kol-badge");
|
|
69
71
|
const KolBreadcrumb = /* @__PURE__ */ createSolidComponent("kol-breadcrumb");
|
|
70
72
|
const KolButton = /* @__PURE__ */ createSolidComponent("kol-button");
|
|
@@ -112,7 +114,6 @@ const KolTable = /* @__PURE__ */ createSolidComponent("kol-table");
|
|
|
112
114
|
const KolTabs = /* @__PURE__ */ createSolidComponent("kol-tabs");
|
|
113
115
|
const KolTextarea = /* @__PURE__ */ createSolidComponent("kol-textarea");
|
|
114
116
|
const KolToast = /* @__PURE__ */ createSolidComponent("kol-toast");
|
|
115
|
-
const KolTooltip = /* @__PURE__ */ createSolidComponent("kol-tooltip");
|
|
116
117
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
117
118
|
|
|
118
|
-
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,
|
|
119
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolAvatarWc, 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, KolVersion };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/solid",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.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,23 +46,24 @@
|
|
|
46
46
|
"prepack": "unbuild"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@public-ui/components": "1.6.
|
|
49
|
+
"@public-ui/components": "1.6.1",
|
|
50
50
|
"@types/minimatch": "5.1.2",
|
|
51
51
|
"@types/minimist": "1.2.2",
|
|
52
|
-
"@types/node": "
|
|
52
|
+
"@types/node": "ts5.1",
|
|
53
53
|
"@types/normalize-package-data": "2.4.1",
|
|
54
|
-
"solid-js": "1.7.
|
|
54
|
+
"solid-js": "1.7.11",
|
|
55
55
|
"typescript": "5.1.6",
|
|
56
56
|
"unbuild": "1.2.1"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@public-ui/components": "1.6.
|
|
59
|
+
"@public-ui/components": "1.6.1",
|
|
60
60
|
"solid-js": ">=1.2.0"
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|
|
63
63
|
"type": "module",
|
|
64
64
|
"exports": {
|
|
65
65
|
".": {
|
|
66
|
+
"types": "./dist/index.d.ts",
|
|
66
67
|
"import": "./dist/index.mjs",
|
|
67
68
|
"require": "./dist/index.cjs"
|
|
68
69
|
}
|