@luminati-io/uikit 6.3.16 → 6.3.18-beta.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +171 -1
- package/dist/index.js.LICENSE.txt +53 -0
- package/dist/index.js.map +1 -1
- package/dist/umd/uikit.development.js +227 -191
- package/dist/umd/uikit.development.js.map +1 -1
- package/dist/umd/uikit.production.min.js +24 -24
- package/package.json +12 -13
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@luminati-io/uikit",
|
3
|
-
"version": "6.3.
|
3
|
+
"version": "6.3.18-beta.0",
|
4
4
|
"author": "Bright Data (http://brightdata.com)",
|
5
5
|
"license": "ISC",
|
6
6
|
"description": "brightdata's design system",
|
@@ -11,7 +11,11 @@
|
|
11
11
|
"dist"
|
12
12
|
],
|
13
13
|
"dependencies": {
|
14
|
+
"@dnd-kit/core": "^6.1.0",
|
15
|
+
"@dnd-kit/sortable": "^8.0.0",
|
16
|
+
"@dnd-kit/utilities": "^3.2.2",
|
14
17
|
"@popperjs/core": "^2.11.8",
|
18
|
+
"@rc-component/trigger": "^2.2.5",
|
15
19
|
"@react-spring/web": "^9.7.5",
|
16
20
|
"@visx/curve": "^3.12.0",
|
17
21
|
"@visx/legend": "^3.12.0",
|
@@ -25,11 +29,17 @@
|
|
25
29
|
"lodash": "^4.17.21",
|
26
30
|
"postcss": "^8.4.49",
|
27
31
|
"prismjs": "^1.29.0",
|
32
|
+
"rc-dialog": "^9.6.0",
|
33
|
+
"rc-drawer": "^7.2.0",
|
34
|
+
"rc-tabs": "^15.4.0",
|
35
|
+
"rc-tooltip": "^6.2.1",
|
36
|
+
"rc-util": "^5.43.0",
|
28
37
|
"react-beautiful-dnd": "^13.1.1",
|
29
38
|
"react-day-picker": "^8.10.1",
|
30
39
|
"react-hot-toast": "^2.4.1",
|
31
40
|
"react-popper": "^2.3.0",
|
32
|
-
"react-select": "^5.8.3"
|
41
|
+
"react-select": "^5.8.3",
|
42
|
+
"resize-observer-polyfill": "^1.5.1"
|
33
43
|
},
|
34
44
|
"peerDependencies": {
|
35
45
|
"prop-types": ">=15.8.1",
|
@@ -44,10 +54,6 @@
|
|
44
54
|
"@babel/preset-env": "^7.26.0",
|
45
55
|
"@babel/preset-react": "^7.25.9",
|
46
56
|
"@chromatic-com/storybook": "^3.2.2",
|
47
|
-
"@dnd-kit/core": "^6.1.0",
|
48
|
-
"@dnd-kit/sortable": "^8.0.0",
|
49
|
-
"@dnd-kit/utilities": "^3.2.2",
|
50
|
-
"@rc-component/trigger": "^2.2.5",
|
51
57
|
"@storybook/addon-a11y": "^8.4.4",
|
52
58
|
"@storybook/addon-actions": "^8.4.4",
|
53
59
|
"@storybook/addon-essentials": "^8.4.4",
|
@@ -64,22 +70,15 @@
|
|
64
70
|
"babel-plugin-lodash": "^3.3.4",
|
65
71
|
"babel-plugin-prismjs": "^2.1.0",
|
66
72
|
"babel-plugin-styled-components": "^2.1.4",
|
67
|
-
"classnames": "^2.5.1",
|
68
73
|
"country-flag-icons": "^1.5.13",
|
69
74
|
"libphonenumber-js": "^1.11.14",
|
70
75
|
"prop-types": "^15.8.1",
|
71
76
|
"raw-loader": "^4.0.2",
|
72
|
-
"rc-dialog": "^9.6.0",
|
73
|
-
"rc-drawer": "^7.2.0",
|
74
|
-
"rc-tabs": "^15.4.0",
|
75
|
-
"rc-tooltip": "^6.2.1",
|
76
|
-
"rc-util": "^5.43.0",
|
77
77
|
"react": "^18.3.1",
|
78
78
|
"react-dom": "^18.3.1",
|
79
79
|
"react-table": "^7.8.0",
|
80
80
|
"react-virtualized": "^9.22.5",
|
81
81
|
"remark-gfm": "^4.0.0",
|
82
|
-
"resize-observer-polyfill": "^1.5.1",
|
83
82
|
"storybook": "^8.4.4",
|
84
83
|
"styled-components": "^6.1.13",
|
85
84
|
"svg-sprite-loader": "^6.0.11",
|