assui 3.1.11 → 3.1.13
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/es/button-modal/index.js +1 -1
- package/es/color-select/style/index.less +4 -2
- package/es/highlight-textarea/style/index.less +2 -1
- package/es/img-crop/style/index.less +3 -2
- package/es/keep-tab/style/index.less +1 -2
- package/es/label-auto-complete/style/index.css +1 -1
- package/es/label-auto-complete/style/index.less +2 -5
- package/es/label-condition-input/style/index.css +2 -2
- package/es/label-condition-input/style/index.less +2 -10
- package/es/label-customize-range-picker/style/index.less +2 -1
- package/es/label-date-picker/style/index.css +7 -3
- package/es/label-date-picker/style/index.less +12 -7
- package/es/label-input/style/index.css +10 -10
- package/es/label-input/style/index.less +1 -12
- package/es/label-number-input/style/index.css +2 -2
- package/es/label-number-input/style/index.less +2 -11
- package/es/label-range-number/style/index.css +9 -11
- package/es/label-range-number/style/index.less +17 -19
- package/es/label-range-picker/style/index.css +10 -10
- package/es/label-range-picker/style/index.less +15 -15
- package/es/label-select/style/index.css +1 -2
- package/es/label-select/style/index.less +28 -34
- package/es/label-text-area/style/index.css +1 -3
- package/es/label-text-area/style/index.less +2 -12
- package/es/label-tree-select/style/index.css +1 -1
- package/es/label-tree-select/style/index.less +2 -4
- package/es/number-format-input/style/index.less +6 -4
- package/es/single-img-upload/style/index.less +8 -7
- package/es/split-pane/style/index.less +3 -1
- package/es/step-number-input/style/index.css +2 -2
- package/es/step-number-input/style/index.less +6 -5
- package/es/style/variables.less +30 -0
- package/lib/button-modal/index.js +2 -2
- package/lib/color-select/style/index.less +4 -2
- package/lib/highlight-textarea/style/index.less +2 -1
- package/lib/img-crop/style/index.less +3 -2
- package/lib/keep-tab/style/index.less +1 -2
- package/lib/label-auto-complete/style/index.css +1 -1
- package/lib/label-auto-complete/style/index.less +2 -5
- package/lib/label-condition-input/style/index.css +2 -2
- package/lib/label-condition-input/style/index.less +2 -10
- package/lib/label-customize-range-picker/style/index.less +2 -1
- package/lib/label-date-picker/style/index.css +7 -3
- package/lib/label-date-picker/style/index.less +12 -7
- package/lib/label-input/style/index.css +10 -10
- package/lib/label-input/style/index.less +1 -12
- package/lib/label-number-input/style/index.css +2 -2
- package/lib/label-number-input/style/index.less +2 -11
- package/lib/label-range-number/style/index.css +9 -11
- package/lib/label-range-number/style/index.less +17 -19
- package/lib/label-range-picker/style/index.css +10 -10
- package/lib/label-range-picker/style/index.less +15 -15
- package/lib/label-select/style/index.css +1 -2
- package/lib/label-select/style/index.less +28 -34
- package/lib/label-text-area/style/index.css +1 -3
- package/lib/label-text-area/style/index.less +2 -12
- package/lib/label-tree-select/style/index.css +1 -1
- package/lib/label-tree-select/style/index.less +2 -4
- package/lib/number-format-input/style/index.less +6 -4
- package/lib/single-img-upload/style/index.less +8 -7
- package/lib/split-pane/style/index.less +3 -1
- package/lib/step-number-input/style/index.css +2 -2
- package/lib/step-number-input/style/index.less +6 -5
- package/lib/style/variables.less +30 -0
- package/package.json +2 -2
|
@@ -1251,7 +1251,7 @@ html {
|
|
|
1251
1251
|
.count-minus-btn:focus,
|
|
1252
1252
|
.count-minus-btn:active,
|
|
1253
1253
|
.count-minus-btn:focus-within {
|
|
1254
|
-
color:
|
|
1254
|
+
color: #fff;
|
|
1255
1255
|
background-color: #02a6e3;
|
|
1256
1256
|
cursor: pointer;
|
|
1257
1257
|
}
|
|
@@ -1264,7 +1264,7 @@ html {
|
|
|
1264
1264
|
.count-add-btn:focus,
|
|
1265
1265
|
.count-add-btn:active,
|
|
1266
1266
|
.count-add-btn:focus-within {
|
|
1267
|
-
color:
|
|
1267
|
+
color: #fff;
|
|
1268
1268
|
background-color: #02a6e3;
|
|
1269
1269
|
cursor: pointer;
|
|
1270
1270
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import '~antd/lib/style/index.less';
|
|
2
|
+
@import '../../style/variables.less';
|
|
2
3
|
|
|
3
4
|
@progress-prefix-cls: ~'@{ant-prefix}';
|
|
4
5
|
|
|
@@ -21,8 +22,8 @@
|
|
|
21
22
|
&:focus,
|
|
22
23
|
&:active,
|
|
23
24
|
&:focus-within {
|
|
24
|
-
color: white;
|
|
25
|
-
background-color:
|
|
25
|
+
color: @white;
|
|
26
|
+
background-color: @color_02a6e3;
|
|
26
27
|
cursor: pointer;
|
|
27
28
|
}
|
|
28
29
|
}
|
|
@@ -36,8 +37,8 @@
|
|
|
36
37
|
&:focus,
|
|
37
38
|
&:active,
|
|
38
39
|
&:focus-within {
|
|
39
|
-
color: white;
|
|
40
|
-
background-color:
|
|
40
|
+
color: @white;
|
|
41
|
+
background-color: @color_02a6e3;
|
|
41
42
|
cursor: pointer;
|
|
42
43
|
}
|
|
43
44
|
}
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
&:active,
|
|
51
52
|
&:focus-within {
|
|
52
53
|
color: rgba(0, 0, 0, 0.25);
|
|
53
|
-
background-color:
|
|
54
|
+
background-color: @color_f5f5f5;
|
|
54
55
|
cursor: not-allowed;
|
|
55
56
|
}
|
|
56
57
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
@white: #fff;
|
|
2
|
+
@black: #000;
|
|
3
|
+
@color_333: #333;
|
|
4
|
+
@color_ccc: #ccc;
|
|
5
|
+
|
|
6
|
+
@color_9aa5b5: #9e9e9e;
|
|
7
|
+
@color_a0a0a0: #a0a0a0;
|
|
8
|
+
@color_e5e5e5: #e5e5e5;
|
|
9
|
+
@color_a0a0a0: #a0a0a0;
|
|
10
|
+
@color_323232: #323232;
|
|
11
|
+
@color_02a6e3: #02a6e3;
|
|
12
|
+
@color_f5f5f5: #f5f5f5;
|
|
13
|
+
@color_cacaca: #cacaca;
|
|
14
|
+
@color_1890ff: #1890ff;
|
|
15
|
+
@color_d9d9d9: #d9d9d9;
|
|
16
|
+
@color_40a9ff: #40a9ff;
|
|
17
|
+
@color_dfe2e7: #dfe2e7;
|
|
18
|
+
@color_b3b3b3: #b3b3b3;
|
|
19
|
+
@color_263241: #263241;
|
|
20
|
+
@color_7d7d7d: #7d7d7d;
|
|
21
|
+
@color_f5f6fa: #f5f6fa;
|
|
22
|
+
@color_dc4946: #dc4946;
|
|
23
|
+
@color_a3daff: #a3daff;
|
|
24
|
+
@color_bfbfbf: #bfbfbf;
|
|
25
|
+
|
|
26
|
+
@font-size-base: 14px;
|
|
27
|
+
@font-size-lg: @font-size-base + 2px;
|
|
28
|
+
@font-size_18: 18px;
|
|
29
|
+
|
|
30
|
+
@font-weight-500: 500;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "assui",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.13",
|
|
4
4
|
"description": "react ui library",
|
|
5
5
|
"author": "jason <usochen@gmail.com>",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"node": ">=10.0.0"
|
|
81
81
|
},
|
|
82
82
|
"license": "MIT",
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "8a011bfdc9d92f9213038d686160735f9fc5848d"
|
|
84
84
|
}
|