@public-ui/solid 1.1.10-rc.6 → 1.1.10-rc.7
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
|
@@ -84,6 +84,7 @@ const KolIndentedText = /* @__PURE__ */ createSolidComponent("kol-indented-text"
|
|
|
84
84
|
const KolInputAdapterLeanup = /* @__PURE__ */ createSolidComponent("kol-input-adapter-leanup");
|
|
85
85
|
const KolInputCheckbox = /* @__PURE__ */ createSolidComponent("kol-input-checkbox");
|
|
86
86
|
const KolInputColor = /* @__PURE__ */ createSolidComponent("kol-input-color");
|
|
87
|
+
const KolInputDate = /* @__PURE__ */ createSolidComponent("kol-input-date");
|
|
87
88
|
const KolInputEmail = /* @__PURE__ */ createSolidComponent("kol-input-email");
|
|
88
89
|
const KolInputFile = /* @__PURE__ */ createSolidComponent("kol-input-file");
|
|
89
90
|
const KolInputNumber = /* @__PURE__ */ createSolidComponent("kol-input-number");
|
|
@@ -130,6 +131,7 @@ exports.KolIndentedText = KolIndentedText;
|
|
|
130
131
|
exports.KolInputAdapterLeanup = KolInputAdapterLeanup;
|
|
131
132
|
exports.KolInputCheckbox = KolInputCheckbox;
|
|
132
133
|
exports.KolInputColor = KolInputColor;
|
|
134
|
+
exports.KolInputDate = KolInputDate;
|
|
133
135
|
exports.KolInputEmail = KolInputEmail;
|
|
134
136
|
exports.KolInputFile = KolInputFile;
|
|
135
137
|
exports.KolInputNumber = KolInputNumber;
|
package/dist/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ declare const KolIndentedText: (props: solid_js.PropsWithChildren<JSX.KolIndente
|
|
|
21
21
|
declare const KolInputAdapterLeanup: (props: solid_js.PropsWithChildren<JSX.KolInputAdapterLeanup & solid_js.JSX.HTMLAttributes<HTMLKolInputAdapterLeanupElement>>) => HTMLKolInputAdapterLeanupElement;
|
|
22
22
|
declare const KolInputCheckbox: (props: solid_js.PropsWithChildren<JSX.KolInputCheckbox & solid_js.JSX.HTMLAttributes<HTMLKolInputCheckboxElement>>) => HTMLKolInputCheckboxElement;
|
|
23
23
|
declare const KolInputColor: (props: solid_js.PropsWithChildren<JSX.KolInputColor & solid_js.JSX.HTMLAttributes<HTMLKolInputColorElement>>) => HTMLKolInputColorElement;
|
|
24
|
+
declare const KolInputDate: (props: solid_js.PropsWithChildren<JSX.KolInputDate & solid_js.JSX.HTMLAttributes<HTMLKolInputDateElement>>) => HTMLKolInputDateElement;
|
|
24
25
|
declare const KolInputEmail: (props: solid_js.PropsWithChildren<JSX.KolInputEmail & solid_js.JSX.HTMLAttributes<HTMLKolInputEmailElement>>) => HTMLKolInputEmailElement;
|
|
25
26
|
declare const KolInputFile: (props: solid_js.PropsWithChildren<JSX.KolInputFile & solid_js.JSX.HTMLAttributes<HTMLKolInputFileElement>>) => HTMLKolInputFileElement;
|
|
26
27
|
declare const KolInputNumber: (props: solid_js.PropsWithChildren<JSX.KolInputNumber & solid_js.JSX.HTMLAttributes<HTMLKolInputNumberElement>>) => HTMLKolInputNumberElement;
|
|
@@ -47,4 +48,4 @@ declare const KolToast: (props: solid_js.PropsWithChildren<JSX.KolToast & solid_
|
|
|
47
48
|
declare const KolTooltip: (props: solid_js.PropsWithChildren<JSX.KolTooltip & solid_js.JSX.HTMLAttributes<HTMLKolTooltipElement>>) => HTMLKolTooltipElement;
|
|
48
49
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
49
50
|
|
|
50
|
-
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolHeadingWc, KolIcon, KolIconFontAwesome, KolIconIcofont, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, 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 };
|
|
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 };
|
package/dist/index.mjs
CHANGED
|
@@ -82,6 +82,7 @@ const KolIndentedText = /* @__PURE__ */ createSolidComponent("kol-indented-text"
|
|
|
82
82
|
const KolInputAdapterLeanup = /* @__PURE__ */ createSolidComponent("kol-input-adapter-leanup");
|
|
83
83
|
const KolInputCheckbox = /* @__PURE__ */ createSolidComponent("kol-input-checkbox");
|
|
84
84
|
const KolInputColor = /* @__PURE__ */ createSolidComponent("kol-input-color");
|
|
85
|
+
const KolInputDate = /* @__PURE__ */ createSolidComponent("kol-input-date");
|
|
85
86
|
const KolInputEmail = /* @__PURE__ */ createSolidComponent("kol-input-email");
|
|
86
87
|
const KolInputFile = /* @__PURE__ */ createSolidComponent("kol-input-file");
|
|
87
88
|
const KolInputNumber = /* @__PURE__ */ createSolidComponent("kol-input-number");
|
|
@@ -108,4 +109,4 @@ const KolToast = /* @__PURE__ */ createSolidComponent("kol-toast");
|
|
|
108
109
|
const KolTooltip = /* @__PURE__ */ createSolidComponent("kol-tooltip");
|
|
109
110
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
110
111
|
|
|
111
|
-
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolHeadingWc, KolIcon, KolIconFontAwesome, KolIconIcofont, KolIndentedText, KolInputAdapterLeanup, KolInputCheckbox, KolInputColor, 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 };
|
|
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 };
|
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.7",
|
|
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.7",
|
|
32
|
+
"@public-ui/components": "1.1.10-rc.7",
|
|
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.7",
|
|
43
43
|
"solid-js": ">=1.2.0"
|
|
44
44
|
},
|
|
45
45
|
"sideEffects": false,
|