@cloudtower/eagle 0.27.25 → 0.27.28
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.css +2053 -2019
- package/dist/core/SegmentControl/SegmentControl.stories.d.ts +39 -0
- package/dist/core/SegmentControl/index.d.ts +4 -0
- package/dist/esm/index.js +208 -173
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +2 -1
- package/dist/spec/type.d.ts +4 -0
- package/dist/style.css +2863 -2829
- package/dist/umd/index.js +210 -174
- package/dist/umd/stats1.html +1 -1
- package/dist/variables.scss +3 -0
- package/package.json +5 -6
package/dist/variables.scss
CHANGED
|
@@ -164,6 +164,7 @@ $text-primary-light: $gray-80;
|
|
|
164
164
|
$text-secondary-light: $gray-a60-8;
|
|
165
165
|
$text-terdiary-light: $gray-a60-7;
|
|
166
166
|
$text-quaternary-light: $gray-a60-6;
|
|
167
|
+
$text-neutral-secondary-light: $gray-a75-8;
|
|
167
168
|
|
|
168
169
|
$strokes-translucent-1-light: $gray-a60-5;
|
|
169
170
|
$strokes-translucent-2-light: $gray-a60-7;
|
|
@@ -461,6 +462,8 @@ $fill-serious-light-hover:$red-a16;
|
|
|
461
462
|
$fill-notice-light-hover:$yellow-a16;
|
|
462
463
|
$fill-positive-light-hover:$green-a16;
|
|
463
464
|
$fill-neutral-trans-3-trans-2-hover:$gray-a60-3;
|
|
465
|
+
$fill-neutral-white:$white;
|
|
466
|
+
$fill-neutral-light-white:$white-a60;
|
|
464
467
|
|
|
465
468
|
$fill-purple-base:$purple-50;
|
|
466
469
|
$fill-purple-light:$purple-a10-50;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudtower/eagle",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.28",
|
|
4
4
|
"main": "dist/umd/index.js",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -28,8 +28,8 @@
|
|
|
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.28",
|
|
32
|
+
"@cloudtower/parrot": "0.27.28",
|
|
33
33
|
"@cloudtower/rc-notification": "^4.6.1",
|
|
34
34
|
"@linaria/core": "^4.2.2",
|
|
35
35
|
"@linaria/react": "^4.3.0",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@babel/preset-env": "^7.22.15",
|
|
53
53
|
"@babel/preset-react": "^7.22.15",
|
|
54
54
|
"@babel/preset-typescript": "^7.22.15",
|
|
55
|
-
"@cloudtower/icons": "0.27.
|
|
55
|
+
"@cloudtower/icons": "0.27.28",
|
|
56
56
|
"@linaria/babel-preset": "4.4.3",
|
|
57
57
|
"@linaria/rollup": "^4.1.5",
|
|
58
58
|
"@linaria/vite": "^4.2.5",
|
|
@@ -86,7 +86,6 @@
|
|
|
86
86
|
"i18next": "^23.2.3",
|
|
87
87
|
"jsdom": "^20.0.1",
|
|
88
88
|
"less": "^4.1.3",
|
|
89
|
-
"linaria": "^4.1.13",
|
|
90
89
|
"list-selectors": "^2.0.1",
|
|
91
90
|
"mini-css-extract-plugin": "^2.7.2",
|
|
92
91
|
"mockdate": "^3.0.5",
|
|
@@ -115,5 +114,5 @@
|
|
|
115
114
|
"vite": "^3.1.7",
|
|
116
115
|
"vitest": "^0.24.1"
|
|
117
116
|
},
|
|
118
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "6b2687edd88a3f41e8c6f6e2d00c800efcbd64d1"
|
|
119
118
|
}
|