@public-ui/solid 2.1.7-rc.1 → 2.1.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 CHANGED
@@ -71,6 +71,7 @@ const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
71
71
  const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
72
72
  const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
73
73
  const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
74
+ const KolSingleSelect = /* @__PURE__ */ createSolidComponent("kol-single-select");
74
75
  const KolSkipNav = /* @__PURE__ */ createSolidComponent("kol-skip-nav");
75
76
  const KolSpin = /* @__PURE__ */ createSolidComponent("kol-spin");
76
77
  const KolSplitButton = /* @__PURE__ */ createSolidComponent("kol-split-button");
@@ -128,6 +129,7 @@ exports.KolPagination = KolPagination;
128
129
  exports.KolProgress = KolProgress;
129
130
  exports.KolQuote = KolQuote;
130
131
  exports.KolSelect = KolSelect;
132
+ exports.KolSingleSelect = KolSingleSelect;
131
133
  exports.KolSkipNav = KolSkipNav;
132
134
  exports.KolSpin = KolSpin;
133
135
  exports.KolSplitButton = KolSplitButton;
package/dist/index.d.ts CHANGED
@@ -44,6 +44,7 @@ declare const KolPagination: (props: solid_js.PropsWithChildren<JSX.KolPaginatio
44
44
  declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
45
45
  declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_js.JSX.HTMLAttributes<HTMLKolQuoteElement>>) => HTMLKolQuoteElement;
46
46
  declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
47
+ declare const KolSingleSelect: (props: solid_js.PropsWithChildren<JSX.KolSingleSelect & solid_js.JSX.HTMLAttributes<HTMLKolSingleSelectElement>>) => HTMLKolSingleSelectElement;
47
48
  declare const KolSkipNav: (props: solid_js.PropsWithChildren<JSX.KolSkipNav & solid_js.JSX.HTMLAttributes<HTMLKolSkipNavElement>>) => HTMLKolSkipNavElement;
48
49
  declare const KolSpin: (props: solid_js.PropsWithChildren<JSX.KolSpin & solid_js.JSX.HTMLAttributes<HTMLKolSpinElement>>) => HTMLKolSpinElement;
49
50
  declare const KolSplitButton: (props: solid_js.PropsWithChildren<JSX.KolSplitButton & solid_js.JSX.HTMLAttributes<HTMLKolSplitButtonElement>>) => HTMLKolSplitButtonElement;
@@ -61,4 +62,4 @@ declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemW
61
62
  declare const KolTreeWc: (props: solid_js.PropsWithChildren<JSX.KolTreeWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeWcElement>>) => HTMLKolTreeWcElement;
62
63
  declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
63
64
 
64
- export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolIndentedTextWc, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
65
+ export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolIndentedTextWc, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
package/dist/index.mjs CHANGED
@@ -69,6 +69,7 @@ const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
69
69
  const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
70
70
  const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
71
71
  const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
72
+ const KolSingleSelect = /* @__PURE__ */ createSolidComponent("kol-single-select");
72
73
  const KolSkipNav = /* @__PURE__ */ createSolidComponent("kol-skip-nav");
73
74
  const KolSpin = /* @__PURE__ */ createSolidComponent("kol-spin");
74
75
  const KolSplitButton = /* @__PURE__ */ createSolidComponent("kol-split-button");
@@ -86,4 +87,4 @@ const KolTreeItemWc = /* @__PURE__ */ createSolidComponent("kol-tree-item-wc");
86
87
  const KolTreeWc = /* @__PURE__ */ createSolidComponent("kol-tree-wc");
87
88
  const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
88
89
 
89
- export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolIndentedTextWc, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
90
+ export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolIndentedTextWc, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@public-ui/solid",
3
- "version": "2.1.7-rc.1",
3
+ "version": "2.1.7",
4
4
  "license": "EUPL-1.2",
5
5
  "homepage": "https://public-ui.github.io",
6
6
  "repository": {
@@ -52,11 +52,11 @@
52
52
  "solid-js": "1.8.19",
53
53
  "typescript": "5.5.4",
54
54
  "unbuild": "1.2.1",
55
- "@public-ui/components": "2.1.7-rc.1"
55
+ "@public-ui/components": "2.1.7"
56
56
  },
57
57
  "peerDependencies": {
58
58
  "solid-js": ">=1.8.19",
59
- "@public-ui/components": "2.1.7-rc.1"
59
+ "@public-ui/components": "2.1.7"
60
60
  },
61
61
  "sideEffects": false,
62
62
  "type": "module",