@kubit-ui-web/react-components 2.0.0-beta.25 → 2.0.0-beta.27
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/cjs/.storybook/bundle-sizes.json +13 -0
- package/dist/cjs/assets/banner_kubit_readme.png +0 -0
- package/dist/cjs/components/tooltip/components/tooltipTrigger.js +1 -1
- package/dist/cjs/components/tooltip/tooltipStandAlone.js +1 -1
- package/dist/cjs/lib/designSystem/kubit/css/kubit.css +1 -1
- package/dist/cjs/lib/designSystem/kubit/css/kubit.min.css +1 -1
- package/dist/cjs/lib/provider/cssProvider/stats/stats.js +1 -1
- package/dist/cjs/scripts/generate-bundle-sizes.mjs +236 -0
- package/dist/cjs/scripts/new-component-web-ui.js +2092 -0
- package/dist/esm/.storybook/bundle-sizes.json +13 -0
- package/dist/esm/assets/banner_kubit_readme.png +0 -0
- package/dist/esm/components/tooltip/components/tooltipTrigger.js +1 -1
- package/dist/esm/components/tooltip/tooltipStandAlone.js +6 -6
- package/dist/esm/lib/designSystem/kubit/css/kubit.css +1 -1
- package/dist/esm/lib/designSystem/kubit/css/kubit.min.css +1 -1
- package/dist/esm/lib/provider/cssProvider/stats/stats.js +1 -1
- package/dist/esm/scripts/generate-bundle-sizes.mjs +236 -0
- package/dist/esm/scripts/new-component-web-ui.js +2092 -0
- package/dist/styles/kubit/css/kubit.css +25 -135
- package/dist/styles/kubit/css/kubit.min.css +1 -1
- package/dist/types/index.d.ts +1 -44
- package/package.json +8 -8
- /package/dist/cjs/{react-components.css → assets/react-components.css} +0 -0
- /package/dist/esm/{react-components.css → assets/react-components.css} +0 -0
package/dist/types/index.d.ts
CHANGED
|
@@ -1646,55 +1646,12 @@ declare type ComponentsTypesComponents = {
|
|
|
1646
1646
|
labeliconcontainer: string;
|
|
1647
1647
|
sublabel: string;
|
|
1648
1648
|
sublabelcontainer: string;
|
|
1649
|
-
$
|
|
1650
|
-
option: string;
|
|
1651
|
-
label: string;
|
|
1652
|
-
};
|
|
1653
|
-
$_input_dropdown: {
|
|
1654
|
-
option: string;
|
|
1655
|
-
icon: string;
|
|
1656
|
-
label: string;
|
|
1657
|
-
labeliconcontainer: string;
|
|
1658
|
-
};
|
|
1659
|
-
$_input_option: {
|
|
1660
|
-
option: string;
|
|
1661
|
-
icon: string;
|
|
1662
|
-
label: string;
|
|
1663
|
-
labelhighlighted: string;
|
|
1664
|
-
labeliconcontainer: string;
|
|
1665
|
-
sublabel: string;
|
|
1666
|
-
};
|
|
1667
|
-
$_input_option_hightlighted: {
|
|
1668
|
-
option: string;
|
|
1669
|
-
icon: string;
|
|
1670
|
-
label: string;
|
|
1671
|
-
labelhighlighted: string;
|
|
1672
|
-
labeliconcontainer: string;
|
|
1673
|
-
sublabel: string;
|
|
1674
|
-
};
|
|
1675
|
-
$_inverted: {
|
|
1676
|
-
option: string;
|
|
1677
|
-
label: string;
|
|
1678
|
-
};
|
|
1679
|
-
$_side_menu_level_1: {
|
|
1649
|
+
$_default: {
|
|
1680
1650
|
option: string;
|
|
1681
1651
|
icon: string;
|
|
1682
1652
|
label: string;
|
|
1683
1653
|
labeliconcontainer: string;
|
|
1684
1654
|
};
|
|
1685
|
-
$_side_menu_level_2: {
|
|
1686
|
-
option: string;
|
|
1687
|
-
label: string;
|
|
1688
|
-
};
|
|
1689
|
-
$_topbar: {
|
|
1690
|
-
option: string;
|
|
1691
|
-
label: string;
|
|
1692
|
-
labelhighlighted: string;
|
|
1693
|
-
};
|
|
1694
|
-
$_topbar_tab: {
|
|
1695
|
-
option: string;
|
|
1696
|
-
label: string;
|
|
1697
|
-
};
|
|
1698
1655
|
};
|
|
1699
1656
|
OVERLAY: {
|
|
1700
1657
|
overlay: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubit-ui-web/react-components",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.27",
|
|
4
4
|
"description": "Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Kubit",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"license": "Apache-2.0",
|
|
24
24
|
"engines": {
|
|
25
|
-
"node": "
|
|
25
|
+
"node": ">=22"
|
|
26
26
|
},
|
|
27
27
|
"keywords": [
|
|
28
28
|
"react",
|
|
@@ -135,14 +135,14 @@
|
|
|
135
135
|
"@testing-library/react": "^16.3.1",
|
|
136
136
|
"@testing-library/user-event": "^14.6.1",
|
|
137
137
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
138
|
-
"@types/node": "^25.0.
|
|
138
|
+
"@types/node": "^25.0.7",
|
|
139
139
|
"@types/react": "^18.3.12",
|
|
140
140
|
"@types/react-dom": "^18.3.1",
|
|
141
141
|
"@types/testing-library__jest-dom": "^6.0.0",
|
|
142
142
|
"@vitejs/plugin-react": "^5.1.2",
|
|
143
|
-
"@vitest/coverage-v8": "^4.0.
|
|
144
|
-
"@vitest/ui": "^4.0.
|
|
145
|
-
"bernova": "1.0.
|
|
143
|
+
"@vitest/coverage-v8": "^4.0.17",
|
|
144
|
+
"@vitest/ui": "^4.0.17",
|
|
145
|
+
"bernova": "1.0.1",
|
|
146
146
|
"cssnano": "^7.1.2",
|
|
147
147
|
"eslint": "^9.39.2",
|
|
148
148
|
"eslint-config-kubit": "1.2.0",
|
|
@@ -159,11 +159,11 @@
|
|
|
159
159
|
"storybook-addon-pseudo-states": "^10.1.11",
|
|
160
160
|
"terser": "^5.44.1",
|
|
161
161
|
"typescript": "^5.9.3",
|
|
162
|
-
"typescript-eslint": "^8.
|
|
162
|
+
"typescript-eslint": "^8.53.0",
|
|
163
163
|
"vite": "7.3.1",
|
|
164
164
|
"vite-plugin-dts": "^4.5.4",
|
|
165
165
|
"vite-tsconfig-paths": "^6.0.4",
|
|
166
|
-
"vitest": "^4.0.
|
|
166
|
+
"vitest": "^4.0.17",
|
|
167
167
|
"vitest-axe": "^0.1.0"
|
|
168
168
|
},
|
|
169
169
|
"publishConfig": {
|
|
File without changes
|
|
File without changes
|