@cloudtower/eagle 0.27.17 → 0.27.21
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/components/Cascader/cascader.stories.d.ts +6 -0
- package/dist/components/Cascader/index.d.ts +4 -0
- package/dist/components/Link/Link.stories.d.ts +14 -0
- package/dist/components/Link/index.d.ts +3 -0
- package/dist/components.css +1654 -1601
- package/dist/core/DropdownMenu/DropdownMenu.stories.d.ts +7 -0
- package/dist/core/DropdownMenu/index.d.ts +34 -0
- package/dist/esm/index.js +1030 -895
- package/dist/esm/stats1.html +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/spec/base.d.ts +9 -2
- package/dist/spec/type.d.ts +27 -0
- package/dist/style.css +1525 -1472
- package/dist/umd/index.js +1033 -897
- package/dist/umd/stats1.html +1 -1
- package/dist/variables.scss +4 -1
- package/package.json +7 -5
package/dist/variables.scss
CHANGED
|
@@ -118,6 +118,7 @@ $gray-a80-9: rgba(23, 38, 64, 0.8);
|
|
|
118
118
|
$blue-100: #1d326c;
|
|
119
119
|
$blue-80: #005ed1;
|
|
120
120
|
$blue-60: #0080ff;
|
|
121
|
+
$blue-50: #0080FF;
|
|
121
122
|
$blue-40: #009dff;
|
|
122
123
|
|
|
123
124
|
/* green */
|
|
@@ -390,7 +391,9 @@ $text-colorful-purple: $purple-50;
|
|
|
390
391
|
$link-light-primary: $blue-60;
|
|
391
392
|
$link-light-secondary: #2c3852;
|
|
392
393
|
$link-light-serious: $red-60;
|
|
393
|
-
|
|
394
|
+
$link-outstanding-normal:$blue-50;
|
|
395
|
+
$link-outstanding-hover:$blue-40;
|
|
396
|
+
$link-outstanding-active:$blue-80;
|
|
394
397
|
/* fill */
|
|
395
398
|
$fills-light-trans-1: rgba(#edf1fa, 0.6);
|
|
396
399
|
$fills-light-trans-2: rgba(#e1e6f1, 0.6);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudtower/eagle",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.21",
|
|
4
4
|
"main": "dist/umd/index.js",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -28,12 +28,13 @@
|
|
|
28
28
|
"build-storybook": "storybook build"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@cloudtower/icons-react": "0.27.
|
|
32
|
-
"@cloudtower/parrot": "0.27.
|
|
31
|
+
"@cloudtower/icons-react": "0.27.21",
|
|
32
|
+
"@cloudtower/parrot": "0.27.21",
|
|
33
33
|
"@cloudtower/rc-notification": "^4.6.1",
|
|
34
34
|
"@linaria/core": "^4.2.2",
|
|
35
35
|
"@linaria/react": "^4.3.0",
|
|
36
36
|
"antd": "4.5.0",
|
|
37
|
+
"antd5": "npm:antd@^5.12.2",
|
|
37
38
|
"classnames": "^2.3.2",
|
|
38
39
|
"dayjs": "^1.11.10",
|
|
39
40
|
"react-beautiful-dnd": "^13.0.0",
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
"@babel/preset-env": "^7.22.15",
|
|
51
52
|
"@babel/preset-react": "^7.22.15",
|
|
52
53
|
"@babel/preset-typescript": "^7.22.15",
|
|
53
|
-
"@cloudtower/icons": "0.27.
|
|
54
|
+
"@cloudtower/icons": "0.27.21",
|
|
54
55
|
"@linaria/babel-preset": "4.4.3",
|
|
55
56
|
"@linaria/rollup": "^4.1.5",
|
|
56
57
|
"@linaria/vite": "^4.2.5",
|
|
@@ -88,6 +89,7 @@
|
|
|
88
89
|
"mockdate": "^3.0.5",
|
|
89
90
|
"postcss": "^8.4.20",
|
|
90
91
|
"postcss-url": "^10.1.3",
|
|
92
|
+
"rc-select": "^11.5.3",
|
|
91
93
|
"react": "17.0.2",
|
|
92
94
|
"react-dom": "17.0.2",
|
|
93
95
|
"react-is": "^18.2.0",
|
|
@@ -109,5 +111,5 @@
|
|
|
109
111
|
"vite": "^3.1.7",
|
|
110
112
|
"vitest": "^0.24.1"
|
|
111
113
|
},
|
|
112
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "1212c78ec4da2c9f8799ac7e934efc68b99fd8c9"
|
|
113
115
|
}
|