amis 1.9.1-beta.0 → 1.9.1-beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. package/lib/components/Alert2.d.ts +10 -10
  2. package/lib/components/SearchBox.d.ts +40 -40
  3. package/lib/components/calendar/DaysView.js +13 -6
  4. package/lib/components/calendar/DaysView.js.map +2 -2
  5. package/lib/components/calendar/TimeView.js +2 -1
  6. package/lib/components/calendar/TimeView.js.map +2 -2
  7. package/lib/components/formula/Picker.js +4 -4
  8. package/lib/components/formula/Picker.js.map +2 -2
  9. package/lib/helper.css +125 -124
  10. package/lib/helper.css.map +1 -1
  11. package/lib/index.js +1 -1
  12. package/lib/renderers/Log.d.ts +16 -0
  13. package/lib/renderers/Log.js +35 -11
  14. package/lib/renderers/Log.js.map +2 -2
  15. package/lib/themes/ang-ie11.css +15 -3
  16. package/lib/themes/ang.css +15 -3
  17. package/lib/themes/ang.css.map +1 -1
  18. package/lib/themes/antd-ie11.css +15 -3
  19. package/lib/themes/antd.css +15 -3
  20. package/lib/themes/antd.css.map +1 -1
  21. package/lib/themes/cxd-ie11.css +15 -3
  22. package/lib/themes/cxd.css +15 -3
  23. package/lib/themes/cxd.css.map +1 -1
  24. package/lib/themes/dark-ie11.css +15 -3
  25. package/lib/themes/dark.css +15 -3
  26. package/lib/themes/dark.css.map +1 -1
  27. package/lib/themes/default-ie11.css +15 -3
  28. package/lib/themes/default.css +15 -3
  29. package/lib/themes/default.css.map +1 -1
  30. package/package.json +1 -1
  31. package/scss/components/form/_transfer.scss +19 -3
  32. package/scss/helper/background/_background-color.scss +125 -124
  33. package/sdk/ang-ie11.css +19 -3
  34. package/sdk/ang.css +19 -3
  35. package/sdk/antd-ie11.css +19 -3
  36. package/sdk/antd.css +19 -3
  37. package/sdk/barcode.js +51 -51
  38. package/sdk/charts.js +14 -14
  39. package/sdk/codemirror.js +7 -7
  40. package/sdk/color-picker.js +65 -65
  41. package/sdk/cropperjs.js +2 -2
  42. package/sdk/cxd-ie11.css +19 -3
  43. package/sdk/cxd.css +19 -3
  44. package/sdk/dark-ie11.css +19 -3
  45. package/sdk/dark.css +19 -3
  46. package/sdk/exceljs.js +1 -1
  47. package/sdk/helper.css +125 -124
  48. package/sdk/helper.css.map +1 -1
  49. package/sdk/markdown.js +69 -69
  50. package/sdk/papaparse.js +1 -1
  51. package/sdk/renderers/Form/CityDB.js +1 -1
  52. package/sdk/rest.js +16 -16
  53. package/sdk/rich-text.js +62 -62
  54. package/sdk/sdk-ie11.css +19 -3
  55. package/sdk/sdk.css +19 -3
  56. package/sdk/sdk.js +1307 -1305
  57. package/sdk/thirds/hls.js/hls.js +1 -1
  58. package/sdk/thirds/mpegts.js/mpegts.js +1 -1
  59. package/sdk/tinymce.js +57 -57
  60. package/src/components/calendar/DaysView.tsx +68 -37
  61. package/src/components/calendar/TimeView.tsx +1 -1
  62. package/src/components/formula/Picker.tsx +2 -1
  63. package/src/renderers/Log.tsx +71 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amis",
3
- "version": "1.9.1-beta.0",
3
+ "version": "1.9.1-beta.1",
4
4
  "description": "一种MIS页面生成工具",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -35,6 +35,10 @@
35
35
  }
36
36
  }
37
37
 
38
+ &-select {
39
+ overflow: hidden;
40
+ }
41
+
38
42
  &-select,
39
43
  &-result {
40
44
  width: 0;
@@ -55,12 +59,24 @@
55
59
  position: relative; // 貌似不加 relative 会有 bug。
56
60
  }
57
61
 
58
- &-select > &-selection.#{$ns}AssociatedSelection {
59
- overflow: initial;
62
+ &-select > .#{$ns}ChainedSelection {
63
+ min-height: unset;
64
+ overflow: hidden;
65
+
66
+ .#{$ns}ChainedSelection-col {
67
+ height: 100%;
68
+ overflow: auto;
69
+ min-width: px2rem(130px);
70
+ }
60
71
  }
61
72
 
62
- &-select {
73
+ .#{$ns}AssociatedSelection {
63
74
  overflow: hidden;
75
+
76
+ &-left,
77
+ &-right {
78
+ min-height: unset;
79
+ }
64
80
  }
65
81
 
66
82
  &-search + &-selection {
@@ -4,133 +4,134 @@
4
4
  title: 背景色
5
5
  ---
6
6
 
7
- | Class | Properties |
8
- | ----------- | ------------------------ |
9
- | bg-transparent | background: transparent |
10
- | bg-none | background: none !important |
11
- | bg-transparent | background: transparent |
12
- | bg-current | background: currentColor |
13
- | bg-black | background: #000 |
14
- | bg-white | background: #fff |
15
- | bg-primary | background: #007bff |
16
- | bg-secondary | background: #6c757d |
17
- | bg-success | background: #28a745 |
18
- | bg-info | background: #007bff |
19
- | bg-warning | background: #28a745 |
20
- | bg-danger | background: #dc3545 |
21
- | bg-light | background: #f8f9fa |
22
- | bg-dark | background: #343a40 |
23
- | bg-gray-transparent | background: transparent |
24
- | bg-gray-current | background: currentColor |
25
- | bg-gray-50 | background: #f9fafb |
26
- | bg-gray-100 | background: #f3f4f6 |
27
- | bg-gray-200 | background: #e5e7eb |
28
- | bg-gray-300 | background: #d1d5db |
29
- | bg-gray-400 | background: #9ca3af |
30
- | bg-gray-500 | background: #6b7280 |
31
- | bg-gray-600 | background: #4b5563 |
32
- | bg-gray-700 | background: #374151 |
33
- | bg-gray-800 | background: #1f2937 |
34
- | bg-gray-900 | background: #111827 |
35
- | bg-red-transparent | background: transparent |
36
- | bg-red-current | background: currentColor |
37
- | bg-red-50 | background: #fef2f2 |
38
- | bg-red-100 | background: #fee2e2 |
39
- | bg-red-200 | background: #fecaca |
40
- | bg-red-300 | background: #fca5a5 |
41
- | bg-red-400 | background: #f87171 |
42
- | bg-red-500 | background: #ef4444 |
43
- | bg-red-600 | background: #dc2626 |
44
- | bg-red-700 | background: #b91c1c |
45
- | bg-red-800 | background: #991b1b |
46
- | bg-red-900 | background: #7f1d1d |
47
- | bg-yellow-transparent | background: transparent |
48
- | bg-yellow-current | background: currentColor |
49
- | bg-yellow-50 | background: #fffbeb |
50
- | bg-yellow-100 | background: #fef3c7 |
51
- | bg-yellow-200 | background: #fde68a |
52
- | bg-yellow-300 | background: #fcd34d |
53
- | bg-yellow-400 | background: #fbbf24 |
54
- | bg-yellow-500 | background: #f59e0b |
55
- | bg-yellow-600 | background: #d97706 |
56
- | bg-yellow-700 | background: #b45309 |
57
- | bg-yellow-800 | background: #92400e |
58
- | bg-yellow-900 | background: #78350f |
59
- | bg-green-transparent | background: transparent |
60
- | bg-green-current | background: currentColor |
61
- | bg-green-50 | background: #ecfdf5 |
62
- | bg-green-100 | background: #d1fae5 |
63
- | bg-green-200 | background: #a7f3d0 |
64
- | bg-green-300 | background: #6ee7b7 |
65
- | bg-green-400 | background: #34d399 |
66
- | bg-green-500 | background: #10b981 |
67
- | bg-green-600 | background: #059669 |
68
- | bg-green-700 | background: #047857 |
69
- | bg-green-800 | background: #065f46 |
70
- | bg-green-900 | background: #064e3b |
71
- | bg-blue-transparent | background: transparent |
72
- | bg-blue-current | background: currentColor |
73
- | bg-blue-50 | background: #eff6ff |
74
- | bg-blue-100 | background: #dbeafe |
75
- | bg-blue-200 | background: #bfdbfe |
76
- | bg-blue-300 | background: #93c5fd |
77
- | bg-blue-400 | background: #60a5fa |
78
- | bg-blue-500 | background: #3b82f6 |
79
- | bg-blue-600 | background: #2563eb |
80
- | bg-blue-700 | background: #1d4ed8 |
81
- | bg-blue-800 | background: #1e40af |
82
- | bg-blue-900 | background: #1e3a8a |
83
- | bg-cyan-transparent | background: transparent |
84
- | bg-cyan-current | background: currentColor |
85
- | bg-cyan-50 | background: #ecfeff |
86
- | bg-cyan-100 | background: #cffafe |
87
- | bg-cyan-200 | background: #a5f3fc |
88
- | bg-cyan-300 | background: #67e8f9 |
89
- | bg-cyan-400 | background: #22d3ee |
90
- | bg-cyan-500 | background: #06b6d4 |
91
- | bg-cyan-600 | background: #0891b2 |
92
- | bg-cyan-700 | background: #0e7490 |
93
- | bg-cyan-800 | background: #155e75 |
94
- | bg-cyan-900 | background: #164e63 |
95
- | bg-indigo-transparent | background: transparent |
96
- | bg-indigo-current | background: currentColor |
97
- | bg-indigo-50 | background: #eef2ff |
98
- | bg-indigo-100 | background: #e0e7ff |
99
- | bg-indigo-200 | background: #c7d2fe |
100
- | bg-indigo-300 | background: #a5b4fc |
101
- | bg-indigo-400 | background: #818cf8 |
102
- | bg-indigo-500 | background: #6366f1 |
103
- | bg-indigo-600 | background: #4f46e5 |
104
- | bg-indigo-700 | background: #4338ca |
105
- | bg-indigo-800 | background: #3730a3 |
106
- | bg-indigo-900 | background: #312e81 |
107
- | bg-purple-transparent | background: transparent |
108
- | bg-purple-current | background: currentColor |
109
- | bg-purple-50 | background: #f5f3ff |
110
- | bg-purple-100 | background: #ede9fe |
111
- | bg-purple-200 | background: #ddd6fe |
112
- | bg-purple-300 | background: #c4b5fd |
113
- | bg-purple-400 | background: #a78bfa |
114
- | bg-purple-500 | background: #8b5cf6 |
115
- | bg-purple-600 | background: #7c3aed |
116
- | bg-purple-700 | background: #6d28d9 |
117
- | bg-purple-800 | background: #5b21b6 |
118
- | bg-purple-900 | background: #4c1d95 |
119
- | bg-pink-transparent | background: transparent |
120
- | bg-pink-current | background: currentColor |
121
- | bg-pink-50 | background: #fdf2f8 |
122
- | bg-pink-100 | background: #fce7f3 |
123
- | bg-pink-200 | background: #fbcfe8 |
124
- | bg-pink-300 | background: #f9a8d4 |
125
- | bg-pink-400 | background: #f472b6 |
126
- | bg-pink-500 | background: #ec4899 |
127
- | bg-pink-600 | background: #db2777 |
128
- | bg-pink-700 | background: #be185d |
129
- | bg-pink-800 | background: #9d174d |
130
- | bg-pink-900 | background: #831843 |
7
+ | Class | Properties | Demo |
8
+ | ----------- | ------------------------ | -------- |
9
+ | bg-none | background: none !important | <span style="background: none !important;" class="w-24 h-6"></div> |
10
+ | bg-transparent | background: transparent | <div style="background: transparent;" class="w-24 h-6"></div> |
11
+ | bg-current | background: currentColor | <div style="background: currentColor;" class="w-24 h-6"></div> |
12
+ | bg-black | background: #000 | <div style="background: #000;" class="w-24 h-6"></div> |
13
+ | bg-white | background: #fff | <div style="background: #fff;" class="w-24 h-6"></div> |
14
+ | bg-primary | background: #007bff | <div style="background: #007bff;" class="w-24 h-6"></div> |
15
+ | bg-secondary | background: #6c757d | <div style="background: #6c757d;" class="w-24 h-6"></div> |
16
+ | bg-success | background: #28a745 | <div style="background: #28a745;" class="w-24 h-6"></div> |
17
+ | bg-info | background: #007bff | <div style="background: #007bff" class="w-24 h-6"></div> |
18
+ | bg-warning | background: #28a745 | <div style="background: #28a745;" class="w-24 h-6"></div> |
19
+ | bg-danger | background: #dc3545 | <div style="background: #dc3545;" class="w-24 h-6"></div> |
20
+ | bg-light | background: #f8f9fa | <div style="background: #f8f9fa;" class="w-24 h-6"></div> |
21
+ | bg-dark | background: #343a40 | <div style="background: #343a40;" class="w-24 h-6"></div> |
22
+ | bg-gray-transparent | background: transparent | <div style="background: transparent;" class="w-24 h-6"></div> |
23
+ | bg-gray-current | background: currentColor | <div style="background: currentColor;" class="w-24 h-6"></div> |
24
+ | bg-gray-50 | background: #f9fafb | <div style="background: #f9fafb;" class="w-24 h-6"></div> |
25
+ | bg-gray-100 | background: #f3f4f6 | <div style="background: #f3f4f6;" class="w-24 h-6"></div> |
26
+ | bg-gray-200 | background: #e5e7eb | <div style="background: #e5e7eb;" class="w-24 h-6"></div> |
27
+ | bg-gray-300 | background: #d1d5db | <div style="background: #d1d5db;" class="w-24 h-6"></div> |
28
+ | bg-gray-400 | background: #9ca3af | <div style="background: #9ca3af;" class="w-24 h-6"></div> |
29
+ | bg-gray-500 | background: #6b7280 | <div style="background: #6b7280;" class="w-24 h-6"></div> |
30
+ | bg-gray-600 | background: #4b5563 | <div style="background: #4b5563;" class="w-24 h-6"></div> |
31
+ | bg-gray-700 | background: #374151 | <div style="background: #374151;" class="w-24 h-6"></div> |
32
+ | bg-gray-800 | background: #1f2937 | <div style="background: #1f2937;" class="w-24 h-6"></div> |
33
+ | bg-gray-900 | background: #111827 | <div style="background: #111827;" class="w-24 h-6"></div> |
34
+ | bg-red-transparent | background: transparent | <div style="background: transparent;" class="w-24 h-6"></div> |
35
+ | bg-red-current | background: currentColor | <div style="background: currentColor;" class="w-24 h-6"></div> |
36
+ | bg-red-50 | background: #fef2f2 | <div style="background: #fef2f2;" class="w-24 h-6"></div> |
37
+ | bg-red-100 | background: #fee2e2 | <div style="background: #fee2e2;" class="w-24 h-6"></div> |
38
+ | bg-red-200 | background: #fecaca | <div style="background: #fecaca;" class="w-24 h-6"></div> |
39
+ | bg-red-300 | background: #fca5a5 | <div style="background: #fca5a5;" class="w-24 h-6"></div> |
40
+ | bg-red-400 | background: #f87171 | <div style="background: #f87171;" class="w-24 h-6"></div> |
41
+ | bg-red-500 | background: #ef4444 | <div style="background: #ef4444;" class="w-24 h-6"></div> |
42
+ | bg-red-600 | background: #dc2626 | <div style="background: #dc2626;" class="w-24 h-6"></div> |
43
+ | bg-red-700 | background: #b91c1c | <div style="background: #b91c1c;" class="w-24 h-6"></div> |
44
+ | bg-red-800 | background: #991b1b | <div style="background: #991b1b;" class="w-24 h-6"></div> |
45
+ | bg-red-900 | background: #7f1d1d | <div style="background: #7f1d1d;" class="w-24 h-6"></div> |
46
+ | bg-yellow-transparent | background: transparent | <div style="background: transparent;" class="w-24 h-6"></div> |
47
+ | bg-yellow-current | background: currentColor | <div style="background: currentColor;" class="w-24 h-6"></div> |
48
+ | bg-yellow-50 | background: #fffbeb | <div style="background: #fffbeb;" class="w-24 h-6"></div> |
49
+ | bg-yellow-100 | background: #fef3c7 | <div style="background: #fef3c7;" class="w-24 h-6"></div> |
50
+ | bg-yellow-200 | background: #fde68a | <div style="background: #fde68a;" class="w-24 h-6"></div> |
51
+ | bg-yellow-300 | background: #fcd34d | <div style="background: #fcd34d;" class="w-24 h-6"></div> |
52
+ | bg-yellow-400 | background: #fbbf24 | <div style="background: #fbbf24;" class="w-24 h-6"></div> |
53
+ | bg-yellow-500 | background: #f59e0b | <div style="background: #f59e0b;" class="w-24 h-6"></div> |
54
+ | bg-yellow-600 | background: #d97706 | <div style="background: #d97706;" class="w-24 h-6"></div> |
55
+ | bg-yellow-700 | background: #b45309 | <div style="background: #b45309;" class="w-24 h-6"></div> |
56
+ | bg-yellow-800 | background: #92400e | <div style="background: #92400e;" class="w-24 h-6"></div> |
57
+ | bg-yellow-900 | background: #78350f | <div style="background: #78350f;" class="w-24 h-6"></div> |
58
+ | bg-green-transparent | background: transparent | <div style="background: transparent;" class="w-24 h-6"></div> |
59
+ | bg-green-current | background: currentColor | <div style="background: currentColor;" class="w-24 h-6"></div> |
60
+ | bg-green-50 | background: #ecfdf5 | <div style="background: #ecfdf5;" class="w-24 h-6"></div> |
61
+ | bg-green-100 | background: #d1fae5 | <div style="background: #d1fae5;" class="w-24 h-6"></div> |
62
+ | bg-green-200 | background: #a7f3d0 | <div style="background: #a7f3d0;" class="w-24 h-6"></div> |
63
+ | bg-green-300 | background: #6ee7b7 | <div style="background: #6ee7b7;" class="w-24 h-6"></div> |
64
+ | bg-green-400 | background: #34d399 | <div style="background: #34d399;" class="w-24 h-6"></div> |
65
+ | bg-green-500 | background: #10b981 | <div style="background: #10b981;" class="w-24 h-6"></div> |
66
+ | bg-green-600 | background: #059669 | <div style="background: #059669;" class="w-24 h-6"></div> |
67
+ | bg-green-700 | background: #047857 | <div style="background: #047857;" class="w-24 h-6"></div> |
68
+ | bg-green-800 | background: #065f46 | <div style="background: #065f46;" class="w-24 h-6"></div> |
69
+ | bg-green-900 | background: #064e3b | <div style="background: #064e3b;" class="w-24 h-6"></div> |
70
+ | bg-blue-transparent | background: transparent | <div style="background: transparent;" class="w-24 h-6"></div> |
71
+ | bg-blue-current | background: currentColor | <div style="background: currentColor;" class="w-24 h-6"></div> |
72
+ | bg-blue-50 | background: #eff6ff | <div style="background: #eff6ff;" class="w-24 h-6"></div> |
73
+ | bg-blue-100 | background: #dbeafe | <div style="background: #dbeafe;" class="w-24 h-6"></div> |
74
+ | bg-blue-200 | background: #bfdbfe | <div style="background: #bfdbfe;" class="w-24 h-6"></div> |
75
+ | bg-blue-300 | background: #93c5fd | <div style="background: #93c5fd;" class="w-24 h-6"></div> |
76
+ | bg-blue-400 | background: #60a5fa | <div style="background: #60a5fa;" class="w-24 h-6"></div> |
77
+ | bg-blue-500 | background: #3b82f6 | <div style="background: #3b82f6;" class="w-24 h-6"></div> |
78
+ | bg-blue-600 | background: #2563eb | <div style="background: #2563eb;" class="w-24 h-6"></div> |
79
+ | bg-blue-700 | background: #1d4ed8 | <div style="background: #1d4ed8;" class="w-24 h-6"></div> |
80
+ | bg-blue-800 | background: #1e40af | <div style="background: #1e40af;" class="w-24 h-6"></div> |
81
+ | bg-blue-900 | background: #1e3a8a | <div style="background: #1e3a8a;" class="w-24 h-6"></div> |
82
+ | bg-cyan-transparent | background: transparent | <div style="background: transparent;" class="w-24 h-6"></div> |
83
+ | bg-cyan-current | background: currentColor | <div style="background: currentColor;" class="w-24 h-6"></div> |
84
+ | bg-cyan-50 | background: #ecfeff | <div style="background: #ecfeff;" class="w-24 h-6"></div> |
85
+ | bg-cyan-100 | background: #cffafe | <div style="background: #cffafe;" class="w-24 h-6"></div> |
86
+ | bg-cyan-200 | background: #a5f3fc | <div style="background: #a5f3fc;" class="w-24 h-6"></div> |
87
+ | bg-cyan-300 | background: #67e8f9 | <div style="background: #67e8f9;" class="w-24 h-6"></div> |
88
+ | bg-cyan-400 | background: #22d3ee | <div style="background: #22d3ee;" class="w-24 h-6"></div> |
89
+ | bg-cyan-500 | background: #06b6d4 | <div style="background: #06b6d4;" class="w-24 h-6"></div> |
90
+ | bg-cyan-600 | background: #0891b2 | <div style="background: #0891b2;" class="w-24 h-6"></div> |
91
+ | bg-cyan-700 | background: #0e7490 | <div style="background: #0e7490;" class="w-24 h-6"></div> |
92
+ | bg-cyan-800 | background: #155e75 | <div style="background: #155e75;" class="w-24 h-6"></div> |
93
+ | bg-cyan-900 | background: #164e63 | <div style="background: #164e63;" class="w-24 h-6"></div> |
94
+ | bg-indigo-transparent | background: transparent | <div style="background: transparent;" class="w-24 h-6"></div> |
95
+ | bg-indigo-current | background: currentColor | <div style="background: currentColor;" class="w-24 h-6"></div> |
96
+ | bg-indigo-50 | background: #eef2ff | <div style="background: #eef2ff;" class="w-24 h-6"></div> |
97
+ | bg-indigo-100 | background: #e0e7ff | <div style="background: #e0e7ff;" class="w-24 h-6"></div> |
98
+ | bg-indigo-200 | background: #c7d2fe | <div style="background: #c7d2fe;" class="w-24 h-6"></div> |
99
+ | bg-indigo-300 | background: #a5b4fc | <div style="background: #a5b4fc;" class="w-24 h-6"></div> |
100
+ | bg-indigo-400 | background: #818cf8 | <div style="background: #818cf8;" class="w-24 h-6"></div> |
101
+ | bg-indigo-500 | background: #6366f1 | <div style="background: #6366f1;" class="w-24 h-6"></div> |
102
+ | bg-indigo-600 | background: #4f46e5 | <div style="background: #4f46e5;" class="w-24 h-6"></div> |
103
+ | bg-indigo-700 | background: #4338ca | <div style="background: #4338ca;" class="w-24 h-6"></div> |
104
+ | bg-indigo-800 | background: #3730a3 | <div style="background: #3730a3;" class="w-24 h-6"></div> |
105
+ | bg-indigo-900 | background: #312e81 | <div style="background: #312e81;" class="w-24 h-6"></div> |
106
+ | bg-purple-transparent | background: transparent | <div style="background: transparent;" class="w-24 h-6"></div> |
107
+ | bg-purple-current | background: currentColor | <div style="background: currentColor;" class="w-24 h-6"></div> |
108
+ | bg-purple-50 | background: #f5f3ff | <div style="background: #f5f3ff;" class="w-24 h-6"></div> |
109
+ | bg-purple-100 | background: #ede9fe | <div style="background: #ede9fe;" class="w-24 h-6"></div> |
110
+ | bg-purple-200 | background: #ddd6fe | <div style="background: #ddd6fe;" class="w-24 h-6"></div> |
111
+ | bg-purple-300 | background: #c4b5fd | <div style="background: #c4b5fd;" class="w-24 h-6"></div> |
112
+ | bg-purple-400 | background: #a78bfa | <div style="background: #a78bfa;" class="w-24 h-6"></div> |
113
+ | bg-purple-500 | background: #8b5cf6 | <div style="background: #8b5cf6;" class="w-24 h-6"></div> |
114
+ | bg-purple-600 | background: #7c3aed | <div style="background: #7c3aed;" class="w-24 h-6"></div> |
115
+ | bg-purple-700 | background: #6d28d9 | <div style="background: #6d28d9;" class="w-24 h-6"></div> |
116
+ | bg-purple-800 | background: #5b21b6 | <div style="background: #5b21b6;" class="w-24 h-6"></div> |
117
+ | bg-purple-900 | background: #4c1d95 | <div style="background: #4c1d95;" class="w-24 h-6"></div> |
118
+ | bg-pink-transparent | background: transparent | <div style="background: transparent;" class="w-24 h-6"></div> |
119
+ | bg-pink-current | background: currentColor | <div style="background: currentColor;" class="w-24 h-6"></div> |
120
+ | bg-pink-50 | background: #fdf2f8 | <div style="background: #fdf2f8;" class="w-24 h-6"></div> |
121
+ | bg-pink-100 | background: #fce7f3 | <div style="background: #fce7f3;" class="w-24 h-6"></div> |
122
+ | bg-pink-200 | background: #fbcfe8 | <div style="background: #fbcfe8;" class="w-24 h-6"></div> |
123
+ | bg-pink-300 | background: #f9a8d4 | <div style="background: #f9a8d4;" class="w-24 h-6"></div> |
124
+ | bg-pink-400 | background: #f472b6 | <div style="background: #f472b6;" class="w-24 h-6"></div> |
125
+ | bg-pink-500 | background: #ec4899 | <div style="background: #ec4899;" class="w-24 h-6"></div> |
126
+ | bg-pink-600 | background: #db2777 | <div style="background: #db2777;" class="w-24 h-6"></div> |
127
+ | bg-pink-700 | background: #be185d | <div style="background: #be185d;" class="w-24 h-6"></div> |
128
+ | bg-pink-800 | background: #9d174d | <div style="background: #9d174d;" class="w-24 h-6"></div> |
129
+ | bg-pink-900 | background: #831843 | <div style="background: #831843;" class="w-24 h-6"></div> |
131
130
 
132
131
  还有 hover、active、focus、disabled 扩展,比如 `hover:bg-black`
133
132
 
133
+ 参考: [tailwindcss](https://tailwindcss.com/docs/background-color)
134
+
134
135
  */
135
136
 
136
137
  @mixin bg-colors-map(
package/sdk/ang-ie11.css CHANGED
@@ -46114,6 +46114,10 @@ readers do not read off random characters that represent icons */
46114
46114
  flex-grow: 1;
46115
46115
  }
46116
46116
 
46117
+ .amis-scope .a-Transfer-select {
46118
+ overflow: hidden;
46119
+ }
46120
+
46117
46121
  .amis-scope .a-Transfer-select,
46118
46122
  .amis-scope .a-Transfer-result {
46119
46123
  width: 0;
@@ -46134,14 +46138,26 @@ readers do not read off random characters that represent icons */
46134
46138
  position: relative;
46135
46139
  }
46136
46140
 
46137
- .amis-scope .a-Transfer-select > .a-Transfer-selection.a-AssociatedSelection {
46138
- overflow: initial;
46141
+ .amis-scope .a-Transfer-select > .a-ChainedSelection {
46142
+ min-height: unset;
46143
+ overflow: hidden;
46139
46144
  }
46140
46145
 
46141
- .amis-scope .a-Transfer-select {
46146
+ .amis-scope .a-Transfer-select > .a-ChainedSelection .a-ChainedSelection-col {
46147
+ height: 100%;
46148
+ overflow: auto;
46149
+ min-width: 8.125rem;
46150
+ }
46151
+
46152
+ .amis-scope .a-Transfer .a-AssociatedSelection {
46142
46153
  overflow: hidden;
46143
46154
  }
46144
46155
 
46156
+ .amis-scope .a-Transfer .a-AssociatedSelection-left,
46157
+ .amis-scope .a-Transfer .a-AssociatedSelection-right {
46158
+ min-height: unset;
46159
+ }
46160
+
46145
46161
  .amis-scope .a-Transfer-search + .a-Transfer-selection {
46146
46162
  border-top: 1px solid #d1d5db;
46147
46163
  }
package/sdk/ang.css CHANGED
@@ -47366,6 +47366,10 @@ readers do not read off random characters that represent icons */
47366
47366
  flex-grow: 1;
47367
47367
  }
47368
47368
 
47369
+ .amis-scope .a-Transfer-select {
47370
+ overflow: hidden;
47371
+ }
47372
+
47369
47373
  .amis-scope .a-Transfer-select,
47370
47374
  .amis-scope .a-Transfer-result {
47371
47375
  width: 0;
@@ -47386,14 +47390,26 @@ readers do not read off random characters that represent icons */
47386
47390
  position: relative;
47387
47391
  }
47388
47392
 
47389
- .amis-scope .a-Transfer-select > .a-Transfer-selection.a-AssociatedSelection {
47390
- overflow: initial;
47393
+ .amis-scope .a-Transfer-select > .a-ChainedSelection {
47394
+ min-height: unset;
47395
+ overflow: hidden;
47391
47396
  }
47392
47397
 
47393
- .amis-scope .a-Transfer-select {
47398
+ .amis-scope .a-Transfer-select > .a-ChainedSelection .a-ChainedSelection-col {
47399
+ height: 100%;
47400
+ overflow: auto;
47401
+ min-width: 8.125rem;
47402
+ }
47403
+
47404
+ .amis-scope .a-Transfer .a-AssociatedSelection {
47394
47405
  overflow: hidden;
47395
47406
  }
47396
47407
 
47408
+ .amis-scope .a-Transfer .a-AssociatedSelection-left,
47409
+ .amis-scope .a-Transfer .a-AssociatedSelection-right {
47410
+ min-height: unset;
47411
+ }
47412
+
47397
47413
  .amis-scope .a-Transfer-search + .a-Transfer-selection {
47398
47414
  border-top: 1px solid var(--borderColor);
47399
47415
  }
package/sdk/antd-ie11.css CHANGED
@@ -46083,6 +46083,10 @@ readers do not read off random characters that represent icons */
46083
46083
  flex-grow: 1;
46084
46084
  }
46085
46085
 
46086
+ .amis-scope .antd-Transfer-select {
46087
+ overflow: hidden;
46088
+ }
46089
+
46086
46090
  .amis-scope .antd-Transfer-select,
46087
46091
  .amis-scope .antd-Transfer-result {
46088
46092
  width: 0;
@@ -46103,14 +46107,26 @@ readers do not read off random characters that represent icons */
46103
46107
  position: relative;
46104
46108
  }
46105
46109
 
46106
- .amis-scope .antd-Transfer-select > .antd-Transfer-selection.antd-AssociatedSelection {
46107
- overflow: initial;
46110
+ .amis-scope .antd-Transfer-select > .antd-ChainedSelection {
46111
+ min-height: unset;
46112
+ overflow: hidden;
46108
46113
  }
46109
46114
 
46110
- .amis-scope .antd-Transfer-select {
46115
+ .amis-scope .antd-Transfer-select > .antd-ChainedSelection .antd-ChainedSelection-col {
46116
+ height: 100%;
46117
+ overflow: auto;
46118
+ min-width: 8.125rem;
46119
+ }
46120
+
46121
+ .amis-scope .antd-Transfer .antd-AssociatedSelection {
46111
46122
  overflow: hidden;
46112
46123
  }
46113
46124
 
46125
+ .amis-scope .antd-Transfer .antd-AssociatedSelection-left,
46126
+ .amis-scope .antd-Transfer .antd-AssociatedSelection-right {
46127
+ min-height: unset;
46128
+ }
46129
+
46114
46130
  .amis-scope .antd-Transfer-search + .antd-Transfer-selection {
46115
46131
  border-top: 1px solid #d9d9d9;
46116
46132
  }
package/sdk/antd.css CHANGED
@@ -47475,6 +47475,10 @@ readers do not read off random characters that represent icons */
47475
47475
  flex-grow: 1;
47476
47476
  }
47477
47477
 
47478
+ .amis-scope .antd-Transfer-select {
47479
+ overflow: hidden;
47480
+ }
47481
+
47478
47482
  .amis-scope .antd-Transfer-select,
47479
47483
  .amis-scope .antd-Transfer-result {
47480
47484
  width: 0;
@@ -47495,14 +47499,26 @@ readers do not read off random characters that represent icons */
47495
47499
  position: relative;
47496
47500
  }
47497
47501
 
47498
- .amis-scope .antd-Transfer-select > .antd-Transfer-selection.antd-AssociatedSelection {
47499
- overflow: initial;
47502
+ .amis-scope .antd-Transfer-select > .antd-ChainedSelection {
47503
+ min-height: unset;
47504
+ overflow: hidden;
47500
47505
  }
47501
47506
 
47502
- .amis-scope .antd-Transfer-select {
47507
+ .amis-scope .antd-Transfer-select > .antd-ChainedSelection .antd-ChainedSelection-col {
47508
+ height: 100%;
47509
+ overflow: auto;
47510
+ min-width: 8.125rem;
47511
+ }
47512
+
47513
+ .amis-scope .antd-Transfer .antd-AssociatedSelection {
47503
47514
  overflow: hidden;
47504
47515
  }
47505
47516
 
47517
+ .amis-scope .antd-Transfer .antd-AssociatedSelection-left,
47518
+ .amis-scope .antd-Transfer .antd-AssociatedSelection-right {
47519
+ min-height: unset;
47520
+ }
47521
+
47506
47522
  .amis-scope .antd-Transfer-search + .antd-Transfer-selection {
47507
47523
  border-top: 1px solid var(--borderColor);
47508
47524
  }