@luminati-io/uikit 6.3.15 → 6.3.17
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +173 -0
- package/dist/index.js.LICENSE.txt +54 -0
- package/dist/index.js.map +1 -0
- package/dist/umd/uikit.development.js +9 -258
- package/dist/umd/uikit.development.js.map +1 -1
- package/dist/umd/uikit.production.min.js +24 -24
- package/package.json +17 -15
- package/index.js +0 -6
package/package.json
CHANGED
@@ -1,10 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@luminati-io/uikit",
|
3
|
-
"version": "6.3.
|
3
|
+
"version": "6.3.17",
|
4
4
|
"author": "Bright Data (http://brightdata.com)",
|
5
5
|
"license": "ISC",
|
6
6
|
"description": "brightdata's design system",
|
7
|
-
"
|
7
|
+
"source": "src/index.js",
|
8
|
+
"main": "dist/index.js",
|
9
|
+
"umd:main": "index.js",
|
8
10
|
"files": [
|
9
11
|
"dist"
|
10
12
|
],
|
@@ -26,9 +28,18 @@
|
|
26
28
|
"react-beautiful-dnd": "^13.1.1",
|
27
29
|
"react-day-picker": "^8.10.1",
|
28
30
|
"react-hot-toast": "^2.4.1",
|
29
|
-
"react-is": "^18.3.1",
|
30
31
|
"react-popper": "^2.3.0",
|
31
|
-
"react-select": "^5.8.3"
|
32
|
+
"react-select": "^5.8.3",
|
33
|
+
"@dnd-kit/core": "^6.1.0",
|
34
|
+
"@dnd-kit/sortable": "^8.0.0",
|
35
|
+
"@dnd-kit/utilities": "^3.2.2",
|
36
|
+
"@rc-component/trigger": "^2.2.5",
|
37
|
+
"rc-dialog": "^9.6.0",
|
38
|
+
"rc-drawer": "^7.2.0",
|
39
|
+
"rc-tabs": "^15.4.0",
|
40
|
+
"rc-tooltip": "^6.2.1",
|
41
|
+
"rc-util": "^5.43.0",
|
42
|
+
"resize-observer-polyfill": "^1.5.1"
|
32
43
|
},
|
33
44
|
"peerDependencies": {
|
34
45
|
"prop-types": ">=15.8.1",
|
@@ -43,10 +54,6 @@
|
|
43
54
|
"@babel/preset-env": "^7.26.0",
|
44
55
|
"@babel/preset-react": "^7.25.9",
|
45
56
|
"@chromatic-com/storybook": "^3.2.2",
|
46
|
-
"@dnd-kit/core": "^6.1.0",
|
47
|
-
"@dnd-kit/sortable": "^8.0.0",
|
48
|
-
"@dnd-kit/utilities": "^3.2.2",
|
49
|
-
"@rc-component/trigger": "^2.2.5",
|
50
57
|
"@storybook/addon-a11y": "^8.4.4",
|
51
58
|
"@storybook/addon-actions": "^8.4.4",
|
52
59
|
"@storybook/addon-essentials": "^8.4.4",
|
@@ -68,24 +75,19 @@
|
|
68
75
|
"libphonenumber-js": "^1.11.14",
|
69
76
|
"prop-types": "^15.8.1",
|
70
77
|
"raw-loader": "^4.0.2",
|
71
|
-
"rc-dialog": "^9.6.0",
|
72
|
-
"rc-drawer": "^7.2.0",
|
73
|
-
"rc-tabs": "^15.4.0",
|
74
|
-
"rc-tooltip": "^6.2.1",
|
75
|
-
"rc-util": "^5.43.0",
|
76
78
|
"react": "^18.3.1",
|
77
79
|
"react-dom": "^18.3.1",
|
78
80
|
"react-table": "^7.8.0",
|
79
81
|
"react-virtualized": "^9.22.5",
|
80
82
|
"remark-gfm": "^4.0.0",
|
81
|
-
"resize-observer-polyfill": "^1.5.1",
|
82
83
|
"storybook": "^8.4.4",
|
83
84
|
"styled-components": "^6.1.13",
|
84
85
|
"svg-sprite-loader": "^6.0.11",
|
85
86
|
"svgo": "^3.3.2",
|
86
87
|
"webpack": "^5.96.1",
|
87
88
|
"webpack-cli": "^5.1.4",
|
88
|
-
"webpack-merge": "^6.0.1"
|
89
|
+
"webpack-merge": "^6.0.1",
|
90
|
+
"webpack-node-externals": "^3.0.0"
|
89
91
|
},
|
90
92
|
"scripts": {
|
91
93
|
"storybook": "storybook dev -p 6006 -c storybook_config",
|