@public-ui/solid 1.1.10-rc.7 → 1.1.10-rc.8
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
|
@@ -94,6 +94,7 @@ const KolInputRange = /* @__PURE__ */ createSolidComponent("kol-input-range");
|
|
|
94
94
|
const KolInputText = /* @__PURE__ */ createSolidComponent("kol-input-text");
|
|
95
95
|
const KolKolibri = /* @__PURE__ */ createSolidComponent("kol-kolibri");
|
|
96
96
|
const KolLink = /* @__PURE__ */ createSolidComponent("kol-link");
|
|
97
|
+
const KolLinkButton = /* @__PURE__ */ createSolidComponent("kol-link-button");
|
|
97
98
|
const KolLinkGroup = /* @__PURE__ */ createSolidComponent("kol-link-group");
|
|
98
99
|
const KolLogo = /* @__PURE__ */ createSolidComponent("kol-logo");
|
|
99
100
|
const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
|
|
@@ -141,6 +142,7 @@ exports.KolInputRange = KolInputRange;
|
|
|
141
142
|
exports.KolInputText = KolInputText;
|
|
142
143
|
exports.KolKolibri = KolKolibri;
|
|
143
144
|
exports.KolLink = KolLink;
|
|
145
|
+
exports.KolLinkButton = KolLinkButton;
|
|
144
146
|
exports.KolLinkGroup = KolLinkGroup;
|
|
145
147
|
exports.KolLogo = KolLogo;
|
|
146
148
|
exports.KolModal = KolModal;
|
package/dist/index.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ declare const KolInputRange: (props: solid_js.PropsWithChildren<JSX.KolInputRang
|
|
|
31
31
|
declare const KolInputText: (props: solid_js.PropsWithChildren<JSX.KolInputText & solid_js.JSX.HTMLAttributes<HTMLKolInputTextElement>>) => HTMLKolInputTextElement;
|
|
32
32
|
declare const KolKolibri: (props: solid_js.PropsWithChildren<JSX.KolKolibri & solid_js.JSX.HTMLAttributes<HTMLKolKolibriElement>>) => HTMLKolKolibriElement;
|
|
33
33
|
declare const KolLink: (props: solid_js.PropsWithChildren<JSX.KolLink & solid_js.JSX.HTMLAttributes<HTMLKolLinkElement>>) => HTMLKolLinkElement;
|
|
34
|
+
declare const KolLinkButton: (props: solid_js.PropsWithChildren<JSX.KolLinkButton & solid_js.JSX.HTMLAttributes<HTMLKolLinkButtonElement>>) => HTMLKolLinkButtonElement;
|
|
34
35
|
declare const KolLinkGroup: (props: solid_js.PropsWithChildren<JSX.KolLinkGroup & solid_js.JSX.HTMLAttributes<HTMLKolLinkGroupElement>>) => HTMLKolLinkGroupElement;
|
|
35
36
|
declare const KolLogo: (props: solid_js.PropsWithChildren<JSX.KolLogo & solid_js.JSX.HTMLAttributes<HTMLKolLogoElement>>) => HTMLKolLogoElement;
|
|
36
37
|
declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_js.JSX.HTMLAttributes<HTMLKolModalElement>>) => HTMLKolModalElement;
|
|
@@ -48,4 +49,4 @@ declare const KolToast: (props: solid_js.PropsWithChildren<JSX.KolToast & solid_
|
|
|
48
49
|
declare const KolTooltip: (props: solid_js.PropsWithChildren<JSX.KolTooltip & solid_js.JSX.HTMLAttributes<HTMLKolTooltipElement>>) => HTMLKolTooltipElement;
|
|
49
50
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
50
51
|
|
|
51
|
-
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolHeadingWc, KolIcon, KolIconFontAwesome, KolIconIcofont, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolSelect, KolSkipNav, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
|
52
|
+
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolHeadingWc, 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, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
package/dist/index.mjs
CHANGED
|
@@ -92,6 +92,7 @@ const KolInputRange = /* @__PURE__ */ createSolidComponent("kol-input-range");
|
|
|
92
92
|
const KolInputText = /* @__PURE__ */ createSolidComponent("kol-input-text");
|
|
93
93
|
const KolKolibri = /* @__PURE__ */ createSolidComponent("kol-kolibri");
|
|
94
94
|
const KolLink = /* @__PURE__ */ createSolidComponent("kol-link");
|
|
95
|
+
const KolLinkButton = /* @__PURE__ */ createSolidComponent("kol-link-button");
|
|
95
96
|
const KolLinkGroup = /* @__PURE__ */ createSolidComponent("kol-link-group");
|
|
96
97
|
const KolLogo = /* @__PURE__ */ createSolidComponent("kol-logo");
|
|
97
98
|
const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
|
|
@@ -109,4 +110,4 @@ const KolToast = /* @__PURE__ */ createSolidComponent("kol-toast");
|
|
|
109
110
|
const KolTooltip = /* @__PURE__ */ createSolidComponent("kol-tooltip");
|
|
110
111
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
111
112
|
|
|
112
|
-
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolHeadingWc, KolIcon, KolIconFontAwesome, KolIconIcofont, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolSelect, KolSkipNav, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
|
113
|
+
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolHeadingWc, 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, KolSpin, 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.1.10-rc.
|
|
3
|
+
"version": "1.1.10-rc.8",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
":unpublish": "npm unpublish -f --registry=http://localhost:4873"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@public-ui/core": "1.1.10-rc.
|
|
32
|
-
"@public-ui/components": "1.1.10-rc.
|
|
31
|
+
"@public-ui/core": "1.1.10-rc.8",
|
|
32
|
+
"@public-ui/components": "1.1.10-rc.8",
|
|
33
33
|
"@types/minimatch": "5.1.2",
|
|
34
34
|
"@types/minimist": "1.2.2",
|
|
35
35
|
"@types/node": "18.11.9",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"unbuild": "0.9.4"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@public-ui/components": "1.1.10-rc.
|
|
42
|
+
"@public-ui/components": "1.1.10-rc.8",
|
|
43
43
|
"solid-js": ">=1.2.0"
|
|
44
44
|
},
|
|
45
45
|
"sideEffects": false,
|