@cloudtower/eagle 0.26.22 → 0.26.24-dry
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/Card/CardWrapper.d.ts +1 -1
- package/dist/components/Modal/AsideModal.d.ts +5 -0
- package/dist/components/StatusCapsule/__test__/h5_css.test.d.ts +1 -0
- package/dist/components/StatusCapsule/index.d.ts +8 -0
- package/dist/components.css +162 -73
- package/dist/esm/index.js +844 -737
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +10 -1
- package/dist/style.css +944 -855
- package/dist/umd/index.js +841 -734
- package/dist/umd/stats1.html +1 -1
- package/dist/variables.scss +36 -1
- package/package.json +5 -5
package/dist/variables.scss
CHANGED
|
@@ -132,12 +132,21 @@ $yellow-80: #e07f00;
|
|
|
132
132
|
$yellow-60: #fea008;
|
|
133
133
|
$yellow-40: #feba33;
|
|
134
134
|
|
|
135
|
+
|
|
136
|
+
$yellow-a10-50:rgba($yellow-60,0.1);
|
|
137
|
+
|
|
135
138
|
/* red */
|
|
136
139
|
$red-100: #7d2126;
|
|
137
140
|
$red-80: #c73d31;
|
|
138
141
|
$red-60: #f0483e;
|
|
139
142
|
$red-40: #ff5252;
|
|
140
143
|
|
|
144
|
+
/* purple */
|
|
145
|
+
$purple-50:#7E41FF;
|
|
146
|
+
$purple-a20-50:rgba($purple-50,20%);
|
|
147
|
+
$purple-a16-50:rgba($purple-50,16%);
|
|
148
|
+
$purple-a10-50:rgba($purple-50,10%);
|
|
149
|
+
|
|
141
150
|
$fills-opaque-primary-light: $white;
|
|
142
151
|
$fills-opaque-secondary-light: $gray-20;
|
|
143
152
|
$fills-opaque-terdiary-light: $gray-30;
|
|
@@ -375,6 +384,8 @@ $text-light-storage: rgba(126, 65, 255, 1);
|
|
|
375
384
|
$text-colorful-outstanding: $blue-60;
|
|
376
385
|
$text-neutral-tertiary: $gray-a60-8;
|
|
377
386
|
$text-neutral-primary: $gray-120;
|
|
387
|
+
|
|
388
|
+
$text-colorful-purple: $purple-50;
|
|
378
389
|
/* link */
|
|
379
390
|
$link-light-primary: $blue-60;
|
|
380
391
|
$link-light-secondary: #2c3852;
|
|
@@ -432,6 +443,24 @@ $fills-light-positive-positive-light: rgba(#1ec97f, 0.1);
|
|
|
432
443
|
$fills-light-positive-positive-thin: rgba(#1ec97f, 0.04);
|
|
433
444
|
$fills-light-interaction-purple-hover:rgba(126, 65, 255, 0.16);
|
|
434
445
|
$fill-light-element-container-outstanding: rgba(0, 136, 255, 0.10);
|
|
446
|
+
$fill-outstanding-light:$blue-a10;
|
|
447
|
+
$fill-serious-light:$red-a10;
|
|
448
|
+
$fill-notice-light:$yellow-a10-50;
|
|
449
|
+
$fill-positive-light:$green-a10;
|
|
450
|
+
$fill-neutral-trans-2:$gray-a60-2;
|
|
451
|
+
$fill-neutral-trans-1:$gray-a60-1;
|
|
452
|
+
$fill-outstanding-base:$blue-60;
|
|
453
|
+
$fill-serious-base:$red-60;
|
|
454
|
+
$fill-notice-base:$yellow-60;
|
|
455
|
+
$fill-positive-base:$green-60;
|
|
456
|
+
$fill-outstanding-light-hover:$blue-a16;
|
|
457
|
+
$fill-serious-light-hover:$red-a16;
|
|
458
|
+
$fill-notice-light-hover:$yellow-a16;
|
|
459
|
+
$fill-positive-light-hover:$green-a16;
|
|
460
|
+
$fill-neutral-trans-3-trans-2-hover:$gray-a60-3;
|
|
461
|
+
|
|
462
|
+
$fill-purple-base:$purple-50;
|
|
463
|
+
$fill-purple-light:$purple-a10-50;
|
|
435
464
|
/* fill element */
|
|
436
465
|
|
|
437
466
|
$fills-element-light-container-general: rgba(#e1e6f1, 0.6);
|
|
@@ -498,4 +527,10 @@ $shadow-light-push-button-ordinary: 0px 1px 2px -1px rgba(44, 56, 82, 0.18);
|
|
|
498
527
|
/* fisheye */
|
|
499
528
|
$fisheye-gray-010: #f7f8fa;
|
|
500
529
|
$fisheye-gray-090: #30343a;
|
|
501
|
-
$fisheye-gray-060: #8e9aa9;
|
|
530
|
+
$fisheye-gray-060: #8e9aa9;
|
|
531
|
+
|
|
532
|
+
/* z-index */
|
|
533
|
+
|
|
534
|
+
$input-hover-index: 1;
|
|
535
|
+
$eagle-table-form-header-index: 2;
|
|
536
|
+
$table-header-index: 3;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudtower/eagle",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.24-dry",
|
|
4
4
|
"main": "dist/umd/index.js",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"build-storybook": "storybook build"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@cloudtower/icons-react": "0.26.
|
|
33
|
-
"@cloudtower/parrot": "0.26.
|
|
32
|
+
"@cloudtower/icons-react": "0.26.24-dry",
|
|
33
|
+
"@cloudtower/parrot": "0.26.24-dry",
|
|
34
34
|
"@cloudtower/rc-notification": "^4.6.1",
|
|
35
35
|
"@linaria/core": "^4.2.2",
|
|
36
36
|
"@linaria/react": "^4.3.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@babel/preset-env": "^7.22.15",
|
|
51
51
|
"@babel/preset-react": "^7.22.15",
|
|
52
52
|
"@babel/preset-typescript": "^7.22.15",
|
|
53
|
-
"@cloudtower/icons": "0.26.
|
|
53
|
+
"@cloudtower/icons": "0.26.24-dry",
|
|
54
54
|
"@linaria/babel-preset": "4.4.1",
|
|
55
55
|
"@linaria/rollup": "^4.1.5",
|
|
56
56
|
"@linaria/vite": "^4.2.5",
|
|
@@ -104,5 +104,5 @@
|
|
|
104
104
|
"vite": "^3.1.7",
|
|
105
105
|
"vitest": "^0.24.1"
|
|
106
106
|
},
|
|
107
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "51c9ab3d667ce746c129dba1170e2061551574d5"
|
|
108
108
|
}
|