@public-ui/solid 1.5.0-rc.2 → 1.5.0-rc.20
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 +6 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -101,11 +101,14 @@ const KolLogo = /* @__PURE__ */ createSolidComponent("kol-logo");
|
|
|
101
101
|
const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
|
|
102
102
|
const KolNav = /* @__PURE__ */ createSolidComponent("kol-nav");
|
|
103
103
|
const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
|
|
104
|
+
const KolPopover = /* @__PURE__ */ createSolidComponent("kol-popover");
|
|
104
105
|
const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
|
|
106
|
+
const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
|
|
105
107
|
const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
|
|
106
108
|
const KolSkipNav = /* @__PURE__ */ createSolidComponent("kol-skip-nav");
|
|
107
109
|
const KolSpan = /* @__PURE__ */ createSolidComponent("kol-span");
|
|
108
110
|
const KolSpin = /* @__PURE__ */ createSolidComponent("kol-spin");
|
|
111
|
+
const KolSplitButton = /* @__PURE__ */ createSolidComponent("kol-split-button");
|
|
109
112
|
const KolSymbol = /* @__PURE__ */ createSolidComponent("kol-symbol");
|
|
110
113
|
const KolTable = /* @__PURE__ */ createSolidComponent("kol-table");
|
|
111
114
|
const KolTabs = /* @__PURE__ */ createSolidComponent("kol-tabs");
|
|
@@ -151,11 +154,14 @@ exports.KolLogo = KolLogo;
|
|
|
151
154
|
exports.KolModal = KolModal;
|
|
152
155
|
exports.KolNav = KolNav;
|
|
153
156
|
exports.KolPagination = KolPagination;
|
|
157
|
+
exports.KolPopover = KolPopover;
|
|
154
158
|
exports.KolProgress = KolProgress;
|
|
159
|
+
exports.KolQuote = KolQuote;
|
|
155
160
|
exports.KolSelect = KolSelect;
|
|
156
161
|
exports.KolSkipNav = KolSkipNav;
|
|
157
162
|
exports.KolSpan = KolSpan;
|
|
158
163
|
exports.KolSpin = KolSpin;
|
|
164
|
+
exports.KolSplitButton = KolSplitButton;
|
|
159
165
|
exports.KolSymbol = KolSymbol;
|
|
160
166
|
exports.KolTable = KolTable;
|
|
161
167
|
exports.KolTabs = KolTabs;
|
package/dist/index.d.ts
CHANGED
|
@@ -38,11 +38,14 @@ declare const KolLogo: (props: solid_js.PropsWithChildren<JSX.KolLogo & solid_js
|
|
|
38
38
|
declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_js.JSX.HTMLAttributes<HTMLKolModalElement>>) => HTMLKolModalElement;
|
|
39
39
|
declare const KolNav: (props: solid_js.PropsWithChildren<JSX.KolNav & solid_js.JSX.HTMLAttributes<HTMLKolNavElement>>) => HTMLKolNavElement;
|
|
40
40
|
declare const KolPagination: (props: solid_js.PropsWithChildren<JSX.KolPagination & solid_js.JSX.HTMLAttributes<HTMLKolPaginationElement>>) => HTMLKolPaginationElement;
|
|
41
|
+
declare const KolPopover: (props: solid_js.PropsWithChildren<JSX.KolPopover & solid_js.JSX.HTMLAttributes<HTMLKolPopoverElement>>) => HTMLKolPopoverElement;
|
|
41
42
|
declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
|
|
43
|
+
declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_js.JSX.HTMLAttributes<HTMLKolQuoteElement>>) => HTMLKolQuoteElement;
|
|
42
44
|
declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
|
|
43
45
|
declare const KolSkipNav: (props: solid_js.PropsWithChildren<JSX.KolSkipNav & solid_js.JSX.HTMLAttributes<HTMLKolSkipNavElement>>) => HTMLKolSkipNavElement;
|
|
44
46
|
declare const KolSpan: (props: solid_js.PropsWithChildren<JSX.KolSpan & solid_js.JSX.HTMLAttributes<HTMLKolSpanElement>>) => HTMLKolSpanElement;
|
|
45
47
|
declare const KolSpin: (props: solid_js.PropsWithChildren<JSX.KolSpin & solid_js.JSX.HTMLAttributes<HTMLKolSpinElement>>) => HTMLKolSpinElement;
|
|
48
|
+
declare const KolSplitButton: (props: solid_js.PropsWithChildren<JSX.KolSplitButton & solid_js.JSX.HTMLAttributes<HTMLKolSplitButtonElement>>) => HTMLKolSplitButtonElement;
|
|
46
49
|
declare const KolSymbol: (props: solid_js.PropsWithChildren<JSX.KolSymbol & solid_js.JSX.HTMLAttributes<HTMLKolSymbolElement>>) => HTMLKolSymbolElement;
|
|
47
50
|
declare const KolTable: (props: solid_js.PropsWithChildren<JSX.KolTable & solid_js.JSX.HTMLAttributes<HTMLKolTableElement>>) => HTMLKolTableElement;
|
|
48
51
|
declare const KolTabs: (props: solid_js.PropsWithChildren<JSX.KolTabs & solid_js.JSX.HTMLAttributes<HTMLKolTabsElement>>) => HTMLKolTabsElement;
|
|
@@ -51,4 +54,4 @@ declare const KolToast: (props: solid_js.PropsWithChildren<JSX.KolToast & solid_
|
|
|
51
54
|
declare const KolTooltip: (props: solid_js.PropsWithChildren<JSX.KolTooltip & solid_js.JSX.HTMLAttributes<HTMLKolTooltipElement>>) => HTMLKolTooltipElement;
|
|
52
55
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
53
56
|
|
|
54
|
-
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, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
|
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 };
|
package/dist/index.mjs
CHANGED
|
@@ -99,11 +99,14 @@ const KolLogo = /* @__PURE__ */ createSolidComponent("kol-logo");
|
|
|
99
99
|
const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
|
|
100
100
|
const KolNav = /* @__PURE__ */ createSolidComponent("kol-nav");
|
|
101
101
|
const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
|
|
102
|
+
const KolPopover = /* @__PURE__ */ createSolidComponent("kol-popover");
|
|
102
103
|
const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
|
|
104
|
+
const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
|
|
103
105
|
const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
|
|
104
106
|
const KolSkipNav = /* @__PURE__ */ createSolidComponent("kol-skip-nav");
|
|
105
107
|
const KolSpan = /* @__PURE__ */ createSolidComponent("kol-span");
|
|
106
108
|
const KolSpin = /* @__PURE__ */ createSolidComponent("kol-spin");
|
|
109
|
+
const KolSplitButton = /* @__PURE__ */ createSolidComponent("kol-split-button");
|
|
107
110
|
const KolSymbol = /* @__PURE__ */ createSolidComponent("kol-symbol");
|
|
108
111
|
const KolTable = /* @__PURE__ */ createSolidComponent("kol-table");
|
|
109
112
|
const KolTabs = /* @__PURE__ */ createSolidComponent("kol-tabs");
|
|
@@ -112,4 +115,4 @@ const KolToast = /* @__PURE__ */ createSolidComponent("kol-toast");
|
|
|
112
115
|
const KolTooltip = /* @__PURE__ */ createSolidComponent("kol-tooltip");
|
|
113
116
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
114
117
|
|
|
115
|
-
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, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSymbol, KolTable, KolTabs, KolTextarea, KolToast, KolTooltip, KolVersion };
|
|
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 };
|
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.20",
|
|
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.20",
|
|
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.
|
|
55
|
-
"typescript": "
|
|
56
|
-
"unbuild": "1.1
|
|
54
|
+
"solid-js": "1.7.3",
|
|
55
|
+
"typescript": "5.0.4",
|
|
56
|
+
"unbuild": "1.2.1"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@public-ui/components": "1.5.0-rc.
|
|
59
|
+
"@public-ui/components": "1.5.0-rc.20",
|
|
60
60
|
"solid-js": ">=1.2.0"
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|