@unbxd-ui/unbxd-react-components 0.2.145-beta.5 → 0.2.145-beta.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/README.md +1 -1
- package/components/Form/SearchableDropdown.js +1 -1
- package/components/Form/formCore.css +1 -1
- package/components/Form/stories/Checkbox.stories.js +7 -0
- package/components/Form/stories/Dropdown.stories.js +1 -0
- package/components/Form/stories/Input.stories.js +3 -0
- package/components/Form/stories/RangeSlider.stories.js +2 -1
- package/components/Form/stories/ServerPaginatedDropdown.stories.js +10 -15
- package/components/Form/stories/Toggle.stories.js +1 -0
- package/components/Form/variables.css +0 -0
- package/components/InlineModal/inlineModalCore.css +1 -1
- package/components/Modal/Modal.stories.js +7 -25
- package/components/Modal/modalCore.css +1 -1
- package/components/NotificationComponent/NotificationComponent.stories.js +2 -1
- package/components/ProgressBar/progressBarCore.css +1 -1
- package/components/Table/BaseTable.js +84 -353
- package/components/Table/Table.js +5 -357
- package/components/Table/Table.stories.js +898 -0
- package/components/Table/TableChild.js +372 -0
- package/components/Table/TableConstants.js +15 -0
- package/components/Table/hooks/usePrevious.js +14 -0
- package/components/Table/index.js +13 -0
- package/components/Table/tableCore.css +1 -1
- package/components/TableOld/BaseTable.js +373 -0
- package/components/TableOld/PaginationComponent.js +86 -0
- package/components/TableOld/TableOld.js +367 -0
- package/components/TableOld/index.js +15 -0
- package/components/Tooltip/Tooltip.js +219 -80
- package/components/Tooltip/Tooltip.stories.js +205 -34
- package/components/Tooltip/tooltipCore.css +1 -1
- package/components/Tooltip/tooltipTheme.css +1 -1
- package/components/core.css +2 -2
- package/components/core.scss +14 -0
- package/components/index.js +7 -0
- package/components/theme.css +2 -2
- package/index.js +6 -0
- package/package.json +8 -2
package/index.js
CHANGED
|
@@ -147,6 +147,12 @@ Object.defineProperty(exports, "Table", {
|
|
|
147
147
|
return _components.Table;
|
|
148
148
|
}
|
|
149
149
|
});
|
|
150
|
+
Object.defineProperty(exports, "TableOld", {
|
|
151
|
+
enumerable: true,
|
|
152
|
+
get: function get() {
|
|
153
|
+
return _components.TableOld;
|
|
154
|
+
}
|
|
155
|
+
});
|
|
150
156
|
Object.defineProperty(exports, "TabsComponent", {
|
|
151
157
|
enumerable: true,
|
|
152
158
|
get: function get() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unbxd-ui/unbxd-react-components",
|
|
3
|
-
"version": "0.2.145-beta.
|
|
3
|
+
"version": "0.2.145-beta.7",
|
|
4
4
|
"description": "React components library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react components",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": "git",
|
|
13
13
|
"url": "https://github.com/unbxd/unbxd-react-components.git"
|
|
14
14
|
},
|
|
15
|
-
"author": "
|
|
15
|
+
"author": "Netcore Unbxd",
|
|
16
16
|
"license": "ISC",
|
|
17
17
|
"main": "lib/index.js",
|
|
18
18
|
"sideEffects": [
|
|
@@ -37,16 +37,22 @@
|
|
|
37
37
|
"deploy-storybook": "gh-pages -d storybook-static"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
+
"@unbxd-ui/unbxd-style-dictionary": "^0.2.5",
|
|
40
41
|
"bluebird": "^3.7.2",
|
|
41
42
|
"dequal": "^1.0.1",
|
|
43
|
+
"esbuild": "^0.25.6",
|
|
42
44
|
"lodash.clonedeep": "^4.5.0",
|
|
45
|
+
"lodash.isequal": "^4.5.0",
|
|
43
46
|
"motion": "^12.0.6",
|
|
44
47
|
"postcss": "^8.4.28",
|
|
45
48
|
"postcss-loader": "^8.1.1",
|
|
46
49
|
"react": "^18.2.0",
|
|
50
|
+
"react-data-table-component": "^7.7.0",
|
|
47
51
|
"react-dom": "^18.2.0",
|
|
48
52
|
"react-window": "^1.8.6",
|
|
49
53
|
"react-window-infinite-loader": "^1.0.7",
|
|
54
|
+
"sass": "^1.63.6",
|
|
55
|
+
"styled-components": "^6.1.18",
|
|
50
56
|
"whatwg-fetch": "^3.6.2"
|
|
51
57
|
},
|
|
52
58
|
"devDependencies": {
|