@public-ui/solid 1.5.0-rc.0 → 1.5.0-rc.10
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 +4 -4
package/dist/index.cjs
CHANGED
|
@@ -80,6 +80,7 @@ const KolHeading = /* @__PURE__ */ createSolidComponent("kol-heading");
|
|
|
80
80
|
const KolIcon = /* @__PURE__ */ createSolidComponent("kol-icon");
|
|
81
81
|
const KolIconFontAwesome = /* @__PURE__ */ createSolidComponent("kol-icon-font-awesome");
|
|
82
82
|
const KolIconIcofont = /* @__PURE__ */ createSolidComponent("kol-icon-icofont");
|
|
83
|
+
const KolImage = /* @__PURE__ */ createSolidComponent("kol-image");
|
|
83
84
|
const KolIndentedText = /* @__PURE__ */ createSolidComponent("kol-indented-text");
|
|
84
85
|
const KolInputAdapterLeanup = /* @__PURE__ */ createSolidComponent("kol-input-adapter-leanup");
|
|
85
86
|
const KolInputCheckbox = /* @__PURE__ */ createSolidComponent("kol-input-checkbox");
|
|
@@ -101,6 +102,7 @@ const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
|
|
|
101
102
|
const KolNav = /* @__PURE__ */ createSolidComponent("kol-nav");
|
|
102
103
|
const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
|
|
103
104
|
const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
|
|
105
|
+
const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
|
|
104
106
|
const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
|
|
105
107
|
const KolSkipNav = /* @__PURE__ */ createSolidComponent("kol-skip-nav");
|
|
106
108
|
const KolSpan = /* @__PURE__ */ createSolidComponent("kol-span");
|
|
@@ -129,6 +131,7 @@ exports.KolHeading = KolHeading;
|
|
|
129
131
|
exports.KolIcon = KolIcon;
|
|
130
132
|
exports.KolIconFontAwesome = KolIconFontAwesome;
|
|
131
133
|
exports.KolIconIcofont = KolIconIcofont;
|
|
134
|
+
exports.KolImage = KolImage;
|
|
132
135
|
exports.KolIndentedText = KolIndentedText;
|
|
133
136
|
exports.KolInputAdapterLeanup = KolInputAdapterLeanup;
|
|
134
137
|
exports.KolInputCheckbox = KolInputCheckbox;
|
|
@@ -150,6 +153,7 @@ exports.KolModal = KolModal;
|
|
|
150
153
|
exports.KolNav = KolNav;
|
|
151
154
|
exports.KolPagination = KolPagination;
|
|
152
155
|
exports.KolProgress = KolProgress;
|
|
156
|
+
exports.KolQuote = KolQuote;
|
|
153
157
|
exports.KolSelect = KolSelect;
|
|
154
158
|
exports.KolSkipNav = KolSkipNav;
|
|
155
159
|
exports.KolSpan = KolSpan;
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ declare const KolHeading: (props: solid_js.PropsWithChildren<JSX.KolHeading & so
|
|
|
17
17
|
declare const KolIcon: (props: solid_js.PropsWithChildren<JSX.KolIcon & solid_js.JSX.HTMLAttributes<HTMLKolIconElement>>) => HTMLKolIconElement;
|
|
18
18
|
declare const KolIconFontAwesome: (props: solid_js.PropsWithChildren<JSX.KolIconFontAwesome & solid_js.JSX.HTMLAttributes<HTMLKolIconFontAwesomeElement>>) => HTMLKolIconFontAwesomeElement;
|
|
19
19
|
declare const KolIconIcofont: (props: solid_js.PropsWithChildren<JSX.KolIconIcofont & solid_js.JSX.HTMLAttributes<HTMLKolIconIcofontElement>>) => HTMLKolIconIcofontElement;
|
|
20
|
+
declare const KolImage: (props: solid_js.PropsWithChildren<JSX.KolImage & solid_js.JSX.HTMLAttributes<HTMLKolImageElement>>) => HTMLKolImageElement;
|
|
20
21
|
declare const KolIndentedText: (props: solid_js.PropsWithChildren<JSX.KolIndentedText & solid_js.JSX.HTMLAttributes<HTMLKolIndentedTextElement>>) => HTMLKolIndentedTextElement;
|
|
21
22
|
declare const KolInputAdapterLeanup: (props: solid_js.PropsWithChildren<JSX.KolInputAdapterLeanup & solid_js.JSX.HTMLAttributes<HTMLKolInputAdapterLeanupElement>>) => HTMLKolInputAdapterLeanupElement;
|
|
22
23
|
declare const KolInputCheckbox: (props: solid_js.PropsWithChildren<JSX.KolInputCheckbox & solid_js.JSX.HTMLAttributes<HTMLKolInputCheckboxElement>>) => HTMLKolInputCheckboxElement;
|
|
@@ -38,6 +39,7 @@ declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_
|
|
|
38
39
|
declare const KolNav: (props: solid_js.PropsWithChildren<JSX.KolNav & solid_js.JSX.HTMLAttributes<HTMLKolNavElement>>) => HTMLKolNavElement;
|
|
39
40
|
declare const KolPagination: (props: solid_js.PropsWithChildren<JSX.KolPagination & solid_js.JSX.HTMLAttributes<HTMLKolPaginationElement>>) => HTMLKolPaginationElement;
|
|
40
41
|
declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
|
|
42
|
+
declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_js.JSX.HTMLAttributes<HTMLKolQuoteElement>>) => HTMLKolQuoteElement;
|
|
41
43
|
declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
|
|
42
44
|
declare const KolSkipNav: (props: solid_js.PropsWithChildren<JSX.KolSkipNav & solid_js.JSX.HTMLAttributes<HTMLKolSkipNavElement>>) => HTMLKolSkipNavElement;
|
|
43
45
|
declare const KolSpan: (props: solid_js.PropsWithChildren<JSX.KolSpan & solid_js.JSX.HTMLAttributes<HTMLKolSpanElement>>) => HTMLKolSpanElement;
|
|
@@ -50,4 +52,4 @@ declare const KolToast: (props: solid_js.PropsWithChildren<JSX.KolToast & solid_
|
|
|
50
52
|
declare const KolTooltip: (props: solid_js.PropsWithChildren<JSX.KolTooltip & solid_js.JSX.HTMLAttributes<HTMLKolTooltipElement>>) => HTMLKolTooltipElement;
|
|
51
53
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
52
54
|
|
|
53
|
-
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonGroupWc, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, 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, KolSpan, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
|
55
|
+
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, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
package/dist/index.mjs
CHANGED
|
@@ -78,6 +78,7 @@ const KolHeading = /* @__PURE__ */ createSolidComponent("kol-heading");
|
|
|
78
78
|
const KolIcon = /* @__PURE__ */ createSolidComponent("kol-icon");
|
|
79
79
|
const KolIconFontAwesome = /* @__PURE__ */ createSolidComponent("kol-icon-font-awesome");
|
|
80
80
|
const KolIconIcofont = /* @__PURE__ */ createSolidComponent("kol-icon-icofont");
|
|
81
|
+
const KolImage = /* @__PURE__ */ createSolidComponent("kol-image");
|
|
81
82
|
const KolIndentedText = /* @__PURE__ */ createSolidComponent("kol-indented-text");
|
|
82
83
|
const KolInputAdapterLeanup = /* @__PURE__ */ createSolidComponent("kol-input-adapter-leanup");
|
|
83
84
|
const KolInputCheckbox = /* @__PURE__ */ createSolidComponent("kol-input-checkbox");
|
|
@@ -99,6 +100,7 @@ const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
|
|
|
99
100
|
const KolNav = /* @__PURE__ */ createSolidComponent("kol-nav");
|
|
100
101
|
const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
|
|
101
102
|
const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
|
|
103
|
+
const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
|
|
102
104
|
const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
|
|
103
105
|
const KolSkipNav = /* @__PURE__ */ createSolidComponent("kol-skip-nav");
|
|
104
106
|
const KolSpan = /* @__PURE__ */ createSolidComponent("kol-span");
|
|
@@ -111,4 +113,4 @@ const KolToast = /* @__PURE__ */ createSolidComponent("kol-toast");
|
|
|
111
113
|
const KolTooltip = /* @__PURE__ */ createSolidComponent("kol-tooltip");
|
|
112
114
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
113
115
|
|
|
114
|
-
export { KolAbbr, KolAccordion, KolAlert, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonGroupWc, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, 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, KolSpan, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
|
116
|
+
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, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpan, 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.5.0-rc.
|
|
3
|
+
"version": "1.5.0-rc.10",
|
|
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.5.0-rc.
|
|
49
|
+
"@public-ui/components": "1.5.0-rc.10",
|
|
50
50
|
"@types/minimatch": "5.1.2",
|
|
51
51
|
"@types/minimist": "1.2.2",
|
|
52
52
|
"@types/node": "ts4.9",
|
|
53
53
|
"@types/normalize-package-data": "2.4.1",
|
|
54
|
-
"solid-js": "1.
|
|
54
|
+
"solid-js": "1.7.1",
|
|
55
55
|
"typescript": "4.9.5",
|
|
56
56
|
"unbuild": "1.1.2"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@public-ui/components": "1.5.0-rc.
|
|
59
|
+
"@public-ui/components": "1.5.0-rc.10",
|
|
60
60
|
"solid-js": ">=1.2.0"
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|