@public-ui/react 3.0.0-rc.3 → 3.0.0-rc.4
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/README.md +1 -1
- package/dist/index.cjs +0 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ First, initialize KoliBri with a [theme](https://github.com/public-ui/kolibri/tr
|
|
|
29
29
|
```ts
|
|
30
30
|
import { defineCustomElements } from '@public-ui/components/dist/loader';
|
|
31
31
|
import { register } from '@public-ui/components';
|
|
32
|
-
import { DEFAULT } from '@public-ui/
|
|
32
|
+
import { DEFAULT } from '@public-ui/theme-default';
|
|
33
33
|
|
|
34
34
|
register(DEFAULT, defineCustomElements)
|
|
35
35
|
.then(() => {
|
package/dist/index.cjs
CHANGED
|
@@ -221,7 +221,6 @@ const KolSingleSelect = /* @__PURE__ */ createReactComponent("kol-single-select"
|
|
|
221
221
|
const KolSkipNav = /* @__PURE__ */ createReactComponent("kol-skip-nav");
|
|
222
222
|
const KolSpin = /* @__PURE__ */ createReactComponent("kol-spin");
|
|
223
223
|
const KolSplitButton = /* @__PURE__ */ createReactComponent("kol-split-button");
|
|
224
|
-
const KolSymbol = /* @__PURE__ */ createReactComponent("kol-symbol");
|
|
225
224
|
const KolTableStateful = /* @__PURE__ */ createReactComponent("kol-table-stateful");
|
|
226
225
|
const KolTableStateless = /* @__PURE__ */ createReactComponent("kol-table-stateless");
|
|
227
226
|
const KolTabs = /* @__PURE__ */ createReactComponent("kol-tabs");
|
|
@@ -280,7 +279,6 @@ exports.KolSingleSelect = KolSingleSelect;
|
|
|
280
279
|
exports.KolSkipNav = KolSkipNav;
|
|
281
280
|
exports.KolSpin = KolSpin;
|
|
282
281
|
exports.KolSplitButton = KolSplitButton;
|
|
283
|
-
exports.KolSymbol = KolSymbol;
|
|
284
282
|
exports.KolTableStateful = KolTableStateful;
|
|
285
283
|
exports.KolTableStateless = KolTableStateless;
|
|
286
284
|
exports.KolTabs = KolTabs;
|
package/dist/index.d.ts
CHANGED
|
@@ -51,7 +51,6 @@ declare const KolSingleSelect: react.ForwardRefExoticComponent<JSX.KolSingleSele
|
|
|
51
51
|
declare const KolSkipNav: react.ForwardRefExoticComponent<JSX.KolSkipNav & Omit<react.HTMLAttributes<HTMLKolSkipNavElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSkipNavElement>>;
|
|
52
52
|
declare const KolSpin: react.ForwardRefExoticComponent<JSX.KolSpin & Omit<react.HTMLAttributes<HTMLKolSpinElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSpinElement>>;
|
|
53
53
|
declare const KolSplitButton: react.ForwardRefExoticComponent<JSX.KolSplitButton & Omit<react.HTMLAttributes<HTMLKolSplitButtonElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSplitButtonElement>>;
|
|
54
|
-
declare const KolSymbol: react.ForwardRefExoticComponent<JSX.KolSymbol & Omit<react.HTMLAttributes<HTMLKolSymbolElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolSymbolElement>>;
|
|
55
54
|
declare const KolTableStateful: react.ForwardRefExoticComponent<JSX.KolTableStateful & Omit<react.HTMLAttributes<HTMLKolTableStatefulElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTableStatefulElement>>;
|
|
56
55
|
declare const KolTableStateless: react.ForwardRefExoticComponent<JSX.KolTableStateless & Omit<react.HTMLAttributes<HTMLKolTableStatelessElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTableStatelessElement>>;
|
|
57
56
|
declare const KolTabs: react.ForwardRefExoticComponent<JSX.KolTabs & Omit<react.HTMLAttributes<HTMLKolTabsElement>, "style"> & StyleReactProps & react.RefAttributes<HTMLKolTabsElement>>;
|
|
@@ -65,4 +64,4 @@ declare const KolVersion: react.ForwardRefExoticComponent<JSX.KolVersion & Omit<
|
|
|
65
64
|
|
|
66
65
|
declare function createReactRenderElement(hostElement: HTMLElement): HTMLDivElement;
|
|
67
66
|
|
|
68
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton,
|
|
67
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -215,7 +215,6 @@ const KolSingleSelect = /* @__PURE__ */ createReactComponent("kol-single-select"
|
|
|
215
215
|
const KolSkipNav = /* @__PURE__ */ createReactComponent("kol-skip-nav");
|
|
216
216
|
const KolSpin = /* @__PURE__ */ createReactComponent("kol-spin");
|
|
217
217
|
const KolSplitButton = /* @__PURE__ */ createReactComponent("kol-split-button");
|
|
218
|
-
const KolSymbol = /* @__PURE__ */ createReactComponent("kol-symbol");
|
|
219
218
|
const KolTableStateful = /* @__PURE__ */ createReactComponent("kol-table-stateful");
|
|
220
219
|
const KolTableStateless = /* @__PURE__ */ createReactComponent("kol-table-stateless");
|
|
221
220
|
const KolTabs = /* @__PURE__ */ createReactComponent("kol-tabs");
|
|
@@ -235,4 +234,4 @@ function createReactRenderElement(hostElement) {
|
|
|
235
234
|
return renderElement;
|
|
236
235
|
}
|
|
237
236
|
|
|
238
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton,
|
|
237
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, createReactRenderElement, setTagNameTransformer };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/react",
|
|
3
|
-
"version": "3.0.0-rc.
|
|
3
|
+
"version": "3.0.0-rc.4",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -54,12 +54,12 @@
|
|
|
54
54
|
"react-dom": "18.2.0",
|
|
55
55
|
"typescript": "5.7.3",
|
|
56
56
|
"unbuild": "1.2.1",
|
|
57
|
-
"@public-ui/components": "3.0.0-rc.
|
|
57
|
+
"@public-ui/components": "3.0.0-rc.4"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"react": ">=16.14.0",
|
|
61
61
|
"react-dom": ">=16.14.0",
|
|
62
|
-
"@public-ui/components": "3.0.0-rc.
|
|
62
|
+
"@public-ui/components": "3.0.0-rc.4"
|
|
63
63
|
},
|
|
64
64
|
"sideEffects": false,
|
|
65
65
|
"type": "module",
|