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.
Files changed (65) hide show
  1. package/es/button-modal/index.js +1 -1
  2. package/es/color-select/style/index.less +4 -2
  3. package/es/highlight-textarea/style/index.less +2 -1
  4. package/es/img-crop/style/index.less +3 -2
  5. package/es/keep-tab/style/index.less +1 -2
  6. package/es/label-auto-complete/style/index.css +1 -1
  7. package/es/label-auto-complete/style/index.less +2 -5
  8. package/es/label-condition-input/style/index.css +2 -2
  9. package/es/label-condition-input/style/index.less +2 -10
  10. package/es/label-customize-range-picker/style/index.less +2 -1
  11. package/es/label-date-picker/style/index.css +7 -3
  12. package/es/label-date-picker/style/index.less +12 -7
  13. package/es/label-input/style/index.css +10 -10
  14. package/es/label-input/style/index.less +1 -12
  15. package/es/label-number-input/style/index.css +2 -2
  16. package/es/label-number-input/style/index.less +2 -11
  17. package/es/label-range-number/style/index.css +9 -11
  18. package/es/label-range-number/style/index.less +17 -19
  19. package/es/label-range-picker/style/index.css +10 -10
  20. package/es/label-range-picker/style/index.less +15 -15
  21. package/es/label-select/style/index.css +1 -2
  22. package/es/label-select/style/index.less +28 -34
  23. package/es/label-text-area/style/index.css +1 -3
  24. package/es/label-text-area/style/index.less +2 -12
  25. package/es/label-tree-select/style/index.css +1 -1
  26. package/es/label-tree-select/style/index.less +2 -4
  27. package/es/number-format-input/style/index.less +6 -4
  28. package/es/single-img-upload/style/index.less +8 -7
  29. package/es/split-pane/style/index.less +3 -1
  30. package/es/step-number-input/style/index.css +2 -2
  31. package/es/step-number-input/style/index.less +6 -5
  32. package/es/style/variables.less +30 -0
  33. package/lib/button-modal/index.js +2 -2
  34. package/lib/color-select/style/index.less +4 -2
  35. package/lib/highlight-textarea/style/index.less +2 -1
  36. package/lib/img-crop/style/index.less +3 -2
  37. package/lib/keep-tab/style/index.less +1 -2
  38. package/lib/label-auto-complete/style/index.css +1 -1
  39. package/lib/label-auto-complete/style/index.less +2 -5
  40. package/lib/label-condition-input/style/index.css +2 -2
  41. package/lib/label-condition-input/style/index.less +2 -10
  42. package/lib/label-customize-range-picker/style/index.less +2 -1
  43. package/lib/label-date-picker/style/index.css +7 -3
  44. package/lib/label-date-picker/style/index.less +12 -7
  45. package/lib/label-input/style/index.css +10 -10
  46. package/lib/label-input/style/index.less +1 -12
  47. package/lib/label-number-input/style/index.css +2 -2
  48. package/lib/label-number-input/style/index.less +2 -11
  49. package/lib/label-range-number/style/index.css +9 -11
  50. package/lib/label-range-number/style/index.less +17 -19
  51. package/lib/label-range-picker/style/index.css +10 -10
  52. package/lib/label-range-picker/style/index.less +15 -15
  53. package/lib/label-select/style/index.css +1 -2
  54. package/lib/label-select/style/index.less +28 -34
  55. package/lib/label-text-area/style/index.css +1 -3
  56. package/lib/label-text-area/style/index.less +2 -12
  57. package/lib/label-tree-select/style/index.css +1 -1
  58. package/lib/label-tree-select/style/index.less +2 -4
  59. package/lib/number-format-input/style/index.less +6 -4
  60. package/lib/single-img-upload/style/index.less +8 -7
  61. package/lib/split-pane/style/index.less +3 -1
  62. package/lib/step-number-input/style/index.css +2 -2
  63. package/lib/step-number-input/style/index.less +6 -5
  64. package/lib/style/variables.less +30 -0
  65. 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: white;
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: white;
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: #02a6e3;
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: #02a6e3;
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: #f5f5f5;
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.11",
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": "bec36a3b4719b494f6f861628e6f9e8f59fe5ebf"
83
+ "gitHead": "8a011bfdc9d92f9213038d686160735f9fc5848d"
84
84
  }