@public-ui/solid 1.6.0-rc.14 → 1.6.0-rc.16
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 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +3 -3
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");
|
|
@@ -120,6 +122,8 @@ const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
|
120
122
|
exports.KolAbbr = KolAbbr;
|
|
121
123
|
exports.KolAccordion = KolAccordion;
|
|
122
124
|
exports.KolAlert = KolAlert;
|
|
125
|
+
exports.KolAvatar = KolAvatar;
|
|
126
|
+
exports.KolAvatarWc = KolAvatarWc;
|
|
123
127
|
exports.KolBadge = KolBadge;
|
|
124
128
|
exports.KolBreadcrumb = KolBreadcrumb;
|
|
125
129
|
exports.KolButton = KolButton;
|
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;
|
|
@@ -54,4 +56,4 @@ declare const KolToast: (props: solid_js.PropsWithChildren<JSX.KolToast & solid_
|
|
|
54
56
|
declare const KolTooltip: (props: solid_js.PropsWithChildren<JSX.KolTooltip & solid_js.JSX.HTMLAttributes<HTMLKolTooltipElement>>) => HTMLKolTooltipElement;
|
|
55
57
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
56
58
|
|
|
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, KolTooltip, KolVersion };
|
|
59
|
+
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, KolTooltip, 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");
|
|
@@ -115,4 +117,4 @@ const KolToast = /* @__PURE__ */ createSolidComponent("kol-toast");
|
|
|
115
117
|
const KolTooltip = /* @__PURE__ */ createSolidComponent("kol-tooltip");
|
|
116
118
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
117
119
|
|
|
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, KolTooltip, KolVersion };
|
|
120
|
+
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, KolTooltip, KolVersion };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/solid",
|
|
3
|
-
"version": "1.6.0-rc.
|
|
3
|
+
"version": "1.6.0-rc.16",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"prepack": "unbuild"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@public-ui/components": "1.6.0-rc.
|
|
49
|
+
"@public-ui/components": "1.6.0-rc.16",
|
|
50
50
|
"@types/minimatch": "5.1.2",
|
|
51
51
|
"@types/minimist": "1.2.2",
|
|
52
52
|
"@types/node": "ts4.9",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"unbuild": "1.2.1"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@public-ui/components": "1.6.0-rc.
|
|
59
|
+
"@public-ui/components": "1.6.0-rc.16",
|
|
60
60
|
"solid-js": ">=1.2.0"
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|