@lambo-design/shared 1.0.0-beta.92 → 1.0.0-beta.93
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/config/themes/atrovirens/atrovirens.css +532 -532
- package/config/themes/blue/blue.css +532 -532
- package/config/themes/blue/blue.css.map +1 -1
- package/config/themes/blue/var.less +37 -46
- package/config/themes/default/default.css +532 -532
- package/config/themes/eap/eap.css +532 -532
- package/config/themes/gold/gold.css +532 -532
- package/config/themes/lime/lime.css +532 -532
- package/config/themes/orange/orange.css +532 -532
- package/config/themes/red/red.css +532 -532
- package/config/themes/theme-blue.js +138 -144
- package/package.json +23 -23
- package/utils/dict/built-in-dict.js +20 -20
- package/utils/dict/index.js +75 -75
|
@@ -3,14 +3,14 @@ export default {
|
|
|
3
3
|
title: "深海蓝",
|
|
4
4
|
primaryColor: "#306BE3",
|
|
5
5
|
vars: `
|
|
6
|
-
|
|
7
|
-
--primary-color-tint-20: #
|
|
8
|
-
--primary-color-tint-90: #
|
|
9
|
-
--primary-color-tint-80: #
|
|
10
|
-
--primary-color-tint-5: #
|
|
11
|
-
--primary-color-tint-95-fade-50: rgba(
|
|
12
|
-
--primary-color-fade-20: rgba(
|
|
13
|
-
--primary-color-shade-5: #
|
|
6
|
+
--primary-color: #306BE3;
|
|
7
|
+
--primary-color-tint-20: #57a3f3;
|
|
8
|
+
--primary-color-tint-90: #eaf4fe;
|
|
9
|
+
--primary-color-tint-80: #d5e8fc;
|
|
10
|
+
--primary-color-tint-5: #3892f1;
|
|
11
|
+
--primary-color-tint-95-fade-50: rgba(245, 249, 254, 0.5);
|
|
12
|
+
--primary-color-fade-20: rgba(45, 140, 240, 0.2);
|
|
13
|
+
--primary-color-shade-5: #2b85e4;
|
|
14
14
|
--info-color: #2db7f5;
|
|
15
15
|
--info-color-tint-20: #57c5f7;
|
|
16
16
|
--info-color-tint-90: #eaf8fe;
|
|
@@ -27,7 +27,7 @@ export default {
|
|
|
27
27
|
--success-color-tint-95-fade-50: rgba(244, 252, 248, 0.5);
|
|
28
28
|
--success-color-fade-20: rgba(25, 190, 107, 0.2);
|
|
29
29
|
--success-color-shade-5: #18b566;
|
|
30
|
-
--processing-color: #
|
|
30
|
+
--processing-color: #2d8cf0;
|
|
31
31
|
--warning-color: #ff9900;
|
|
32
32
|
--warning-color-tint-20: #ffad33;
|
|
33
33
|
--warning-color-tint-90: #fff5e6;
|
|
@@ -48,8 +48,8 @@ export default {
|
|
|
48
48
|
--link-color: #2d8cf0;
|
|
49
49
|
--link-hover-color: #57a3f3;
|
|
50
50
|
--link-active-color: #2b85e4;
|
|
51
|
-
--selected-color: rgba(
|
|
52
|
-
--selected-color-shade-10: rgba(
|
|
51
|
+
--selected-color: rgba(45, 140, 240, 0.9);
|
|
52
|
+
--selected-color-shade-10: rgba(40, 123, 211, 0.91);
|
|
53
53
|
--tooltip-color: #fff;
|
|
54
54
|
--subsidiary-color: #808695;
|
|
55
55
|
--rate-star-color: #f5a623;
|
|
@@ -61,7 +61,7 @@ export default {
|
|
|
61
61
|
--font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
|
|
62
62
|
--code-family: Consolas, Menlo, Courier, monospace;
|
|
63
63
|
--title-color: rgb(2, 35, 76);
|
|
64
|
-
--text-color: #
|
|
64
|
+
--text-color: #515a6e;
|
|
65
65
|
--text-color-secondary: rgba(0, 0, 0, 0.45);
|
|
66
66
|
--heading-color: rgba(0, 0, 0, 0.85);
|
|
67
67
|
--heading-color-dark: #ffffff;
|
|
@@ -71,43 +71,39 @@ export default {
|
|
|
71
71
|
--line-height-base: 1.5;
|
|
72
72
|
--line-height-computed: 21px;
|
|
73
73
|
--border-radius-base: 6px;
|
|
74
|
-
--border-radius-small:
|
|
74
|
+
--border-radius-small: 4px;
|
|
75
75
|
--cursor-disabled: not-allowed;
|
|
76
76
|
--padding-lg: 24px;
|
|
77
77
|
--padding-md: 16px;
|
|
78
78
|
--padding-sm: 12px;
|
|
79
79
|
--padding-xs: 8px;
|
|
80
|
-
--border-color-base: #
|
|
81
|
-
--border-color-split: #
|
|
80
|
+
--border-color-base: #dcdee2;
|
|
81
|
+
--border-color-split: #e8eaec;
|
|
82
82
|
--border-width-base: 1px;
|
|
83
83
|
--border-style-base: solid;
|
|
84
84
|
--background-color-base: #f7f7f7;
|
|
85
|
-
--background-color-select-hover: #
|
|
85
|
+
--background-color-select-hover: #f3f3f3;
|
|
86
86
|
--tooltip-bg: rgba(70, 76, 91, 0.9);
|
|
87
87
|
--head-bg: #f9fafc;
|
|
88
|
-
--table-thead-bg: #
|
|
89
|
-
--table-td-stripe-bg: #
|
|
90
|
-
--table-td-hover-bg: #
|
|
91
|
-
--table-td-highlight-bg: #
|
|
92
|
-
--menu-dark-title:
|
|
93
|
-
--menu-dark-
|
|
94
|
-
--menu-dark-submenu-bg: #0E356E; /* 二级菜单项 */
|
|
95
|
-
--menu-dark-item-selected-bg: rgb(2, 35, 76); /* 选中的内部菜单项 */
|
|
96
|
-
--menu-dark-bg:rgb(0, 44, 107);
|
|
97
|
-
--menu-dark-active-bg: rgb(0, 44, 107);
|
|
88
|
+
--table-thead-bg: #f8f8f9;
|
|
89
|
+
--table-td-stripe-bg: #f8f8f9;
|
|
90
|
+
--table-td-hover-bg: #ebf7ff;
|
|
91
|
+
--table-td-highlight-bg: #ebf7ff;
|
|
92
|
+
--menu-dark-title: #306BE3;
|
|
93
|
+
--menu-dark-active-bg:rgb(0, 44, 107);
|
|
98
94
|
--menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
|
|
99
95
|
--menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
|
|
100
96
|
--date-picker-cell-hover-bg: #e1f0fe;
|
|
101
|
-
--shadow-color:
|
|
102
|
-
--shadow-base: 0 1px 6px
|
|
103
|
-
--shadow-card: 0 1px 1px 0
|
|
104
|
-
--shadow-up: 0 -1px 6px
|
|
105
|
-
--shadow-down: 0 1px 6px
|
|
106
|
-
--shadow-left: -1px 0 6px
|
|
107
|
-
--shadow-right: 1px 0 6px
|
|
108
|
-
--btn-height-base:
|
|
109
|
-
--btn-height-large:
|
|
110
|
-
--btn-height-small:
|
|
97
|
+
--shadow-color: rgba(0, 0, 0, 0.2);
|
|
98
|
+
--shadow-base: 0 1px 6px rgba(0, 0, 0, 0.2);
|
|
99
|
+
--shadow-card: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
|
|
100
|
+
--shadow-up: 0 -1px 6px rgba(0, 0, 0, 0.2);
|
|
101
|
+
--shadow-down: 0 1px 6px rgba(0, 0, 0, 0.2);
|
|
102
|
+
--shadow-left: -1px 0 6px rgba(0, 0, 0, 0.2);
|
|
103
|
+
--shadow-right: 1px 0 6px rgba(0, 0, 0, 0.2);
|
|
104
|
+
--btn-height-base: 32px;
|
|
105
|
+
--btn-height-large: 40px;
|
|
106
|
+
--btn-height-small: 24px;
|
|
111
107
|
--btn-padding-base: 0 15px;
|
|
112
108
|
--btn-padding-large: 0 15px;
|
|
113
109
|
--btn-padding-small: 0 7px;
|
|
@@ -118,50 +114,49 @@ export default {
|
|
|
118
114
|
--btn-font-size: 14px;
|
|
119
115
|
--btn-font-size-large: 16px;
|
|
120
116
|
--btn-font-size-small: 14px;
|
|
121
|
-
--btn-border-radius:
|
|
122
|
-
--btn-border-radius-small:
|
|
123
|
-
--btn-group-border: #
|
|
124
|
-
--btn-disable-color: #
|
|
117
|
+
--btn-border-radius: 4px;
|
|
118
|
+
--btn-border-radius-small: 3px;
|
|
119
|
+
--btn-group-border: #2b85e4;
|
|
120
|
+
--btn-disable-color: #c5c8ce;
|
|
125
121
|
--btn-disable-bg: #f7f7f7;
|
|
126
|
-
--btn-disable-border: #
|
|
127
|
-
--btn-default-color: #
|
|
128
|
-
--btn-default-color-tint-20: #
|
|
129
|
-
--btn-default-color-shade-5: #
|
|
122
|
+
--btn-disable-border: #dcdee2;
|
|
123
|
+
--btn-default-color: #515a6e;
|
|
124
|
+
--btn-default-color-tint-20: #747b8b;
|
|
125
|
+
--btn-default-color-shade-5: #4d5669;
|
|
130
126
|
--btn-default-bg: #fff;
|
|
131
127
|
--btn-default-bg-tint-20: #ffffff;
|
|
132
128
|
--btn-default-bg-shade-5: #f2f2f2;
|
|
133
|
-
--btn-default-border: #
|
|
134
|
-
--btn-default-border-tint-20: #
|
|
135
|
-
--btn-default-border-shade-5: #
|
|
129
|
+
--btn-default-border: #dcdee2;
|
|
130
|
+
--btn-default-border-tint-20: #e3e5e8;
|
|
131
|
+
--btn-default-border-shade-5: #d1d3d7;
|
|
136
132
|
--btn-primary-color: #fff;
|
|
137
133
|
--btn-primary-color-tint-20: #ffffff;
|
|
138
134
|
--btn-primary-color-tint-5: #ffffff;
|
|
139
135
|
--btn-primary-color-shade-5: #f2f2f2;
|
|
140
|
-
--btn-primary-bg: #
|
|
141
|
-
--btn-primary-bg-tint-20: #
|
|
142
|
-
--btn-primary-bg-tint-5: #
|
|
143
|
-
--btn-primary-bg-shade-5: #
|
|
144
|
-
--btn-ghost-color: #
|
|
145
|
-
--btn-ghost-color-tint-20: #
|
|
146
|
-
--btn-ghost-color-shade-5: #
|
|
136
|
+
--btn-primary-bg: #2d8cf0;
|
|
137
|
+
--btn-primary-bg-tint-20: #57a3f3;
|
|
138
|
+
--btn-primary-bg-tint-5: #3892f1;
|
|
139
|
+
--btn-primary-bg-shade-5: #2b85e4;
|
|
140
|
+
--btn-ghost-color: #515a6e;
|
|
141
|
+
--btn-ghost-color-tint-20: #747b8b;
|
|
142
|
+
--btn-ghost-color-shade-5: #4d5669;
|
|
147
143
|
--btn-ghost-bg: #fff;
|
|
148
144
|
--btn-ghost-bg-tint-20: #ffffff;
|
|
149
145
|
--btn-ghost-bg-shade-5: #f2f2f2;
|
|
150
|
-
--btn-ghost-border: #
|
|
151
|
-
--btn-ghost-border-tint-20: #
|
|
152
|
-
--btn-ghost-border-shade-5: #
|
|
153
|
-
--btn-circle-size:
|
|
154
|
-
--btn-circle-size-large:
|
|
155
|
-
--btn-circle-size-small:
|
|
156
|
-
--btn-square-size:
|
|
157
|
-
--btn-square-size-large:
|
|
158
|
-
--btn-square-size-small:
|
|
146
|
+
--btn-ghost-border: #dcdee2;
|
|
147
|
+
--btn-ghost-border-tint-20: #e3e5e8;
|
|
148
|
+
--btn-ghost-border-shade-5: #d1d3d7;
|
|
149
|
+
--btn-circle-size: 32px;
|
|
150
|
+
--btn-circle-size-large: 40px;
|
|
151
|
+
--btn-circle-size-small: 24px;
|
|
152
|
+
--btn-square-size: 32px;
|
|
153
|
+
--btn-square-size-large: 40px;
|
|
154
|
+
--btn-square-size-small: 24px;
|
|
159
155
|
--grid-columns: 24;
|
|
160
156
|
--grid-gutter-width: 0;
|
|
161
157
|
--layout-body-background: #f5f7f9;
|
|
162
158
|
--layout-header-background: #306BE3;
|
|
163
159
|
--layout-header-height: 64px;
|
|
164
|
-
--layout-header-selected-background: #306BE3;
|
|
165
160
|
--layout-header-padding: 0 50px;
|
|
166
161
|
--layout-footer-padding: 24px 50px;
|
|
167
162
|
--layout-footer-background: #f5f7f9;
|
|
@@ -172,26 +167,26 @@ export default {
|
|
|
172
167
|
--layout-zero-trigger-width: 36px;
|
|
173
168
|
--layout-zero-trigger-height: 42px;
|
|
174
169
|
--legend-color: #999;
|
|
175
|
-
--input-height-base:
|
|
176
|
-
--input-height-large:
|
|
177
|
-
--input-height-small:
|
|
170
|
+
--input-height-base: 32px;
|
|
171
|
+
--input-height-large: 40px;
|
|
172
|
+
--input-height-small: 24px;
|
|
178
173
|
--input-padding-horizontal: 7px;
|
|
179
174
|
--input-padding-vertical-base: 4px;
|
|
180
175
|
--input-padding-vertical-small: 1px;
|
|
181
176
|
--input-padding-vertical-large: 6px;
|
|
182
|
-
--input-placeholder-color: #
|
|
183
|
-
--input-color: #
|
|
184
|
-
--input-border-color: #
|
|
185
|
-
--input-border-color-tint-20: #
|
|
186
|
-
--input-border-radius:
|
|
187
|
-
--input-border-radius-small:
|
|
177
|
+
--input-placeholder-color: #c5c8ce;
|
|
178
|
+
--input-color: #515a6e;
|
|
179
|
+
--input-border-color: #dcdee2;
|
|
180
|
+
--input-border-color-tint-20: #e3e5e8;
|
|
181
|
+
--input-border-radius: 4px;
|
|
182
|
+
--input-border-radius-small: 3px;
|
|
188
183
|
--input-bg: #fff;
|
|
189
184
|
--input-group-bg: #f8f8f9;
|
|
190
|
-
--input-hover-border-color: #
|
|
191
|
-
--input-hover-border-color-tint-20: #
|
|
192
|
-
--input-hover-border-color-fade-20: rgba(
|
|
193
|
-
--input-focus-border-color: #
|
|
194
|
-
--input-disabled-bg: #
|
|
185
|
+
--input-hover-border-color: #2d8cf0;
|
|
186
|
+
--input-hover-border-color-tint-20: #57a3f3;
|
|
187
|
+
--input-hover-border-color-fade-20: rgba(45, 140, 240, 0.2);
|
|
188
|
+
--input-focus-border-color: #2d8cf0;
|
|
189
|
+
--input-disabled-bg: #f3f3f3;
|
|
195
190
|
--tag-font-size: 12px;
|
|
196
191
|
--screen-xs: 480px;
|
|
197
192
|
--screen-xs-min: 480px;
|
|
@@ -227,7 +222,7 @@ export default {
|
|
|
227
222
|
--animation-time-quick: 0.15s;
|
|
228
223
|
--transition-time: 0.2s;
|
|
229
224
|
--ease-in-out: ease-in-out;
|
|
230
|
-
--slider-color: #
|
|
225
|
+
--slider-color: #57a3f3;
|
|
231
226
|
--slider-height: 4px;
|
|
232
227
|
--slider-margin: 16px 0;
|
|
233
228
|
--slider-button-wrap-size: 18px;
|
|
@@ -241,7 +236,7 @@ export default {
|
|
|
241
236
|
--avatar-font-size-sm: 14px;
|
|
242
237
|
--avatar-bg: #ccc;
|
|
243
238
|
--avatar-color: #fff;
|
|
244
|
-
--avatar-border-radius:
|
|
239
|
+
--avatar-border-radius: 4px;
|
|
245
240
|
--anchor-border-width: 2px;
|
|
246
241
|
--list-header-background: transparent;
|
|
247
242
|
--list-footer-background: transparent;
|
|
@@ -250,23 +245,23 @@ export default {
|
|
|
250
245
|
--list-item-meta-margin-bottom: 16px;
|
|
251
246
|
--list-item-meta-avatar-margin-right: 16px;
|
|
252
247
|
--list-item-meta-title-margin-bottom: 12px;
|
|
253
|
-
--table-border-style-base:
|
|
254
|
-
--table-header-color: #
|
|
255
|
-
--table-header-font-weight:
|
|
248
|
+
--table-border-style-base: solid;
|
|
249
|
+
--table-header-color: #515a6e;
|
|
250
|
+
--table-header-font-weight: bold;
|
|
256
251
|
--table-header-padding-horizontal: 8px;
|
|
257
252
|
--table-header-padding-vertical: 0;
|
|
258
|
-
--table-cell-height:
|
|
253
|
+
--table-cell-height: 48px;
|
|
259
254
|
--table-cell-white-space: normal;
|
|
260
255
|
--table-cell-padding-left: 9px;
|
|
261
256
|
--table-cell-padding-right: 9px;
|
|
262
257
|
--table-header-text-align: center;
|
|
263
258
|
--table-data-text-align: left;
|
|
264
|
-
--select-dropdown-max-height:
|
|
265
|
-
--tab-card-bg: #
|
|
266
|
-
--form-item-label-font-weight:
|
|
259
|
+
--select-dropdown-max-height: 400px;
|
|
260
|
+
--tab-card-bg: #f8f8f9;
|
|
261
|
+
--form-item-label-font-weight: normal;
|
|
267
262
|
--input-wrapper-width: 95%;
|
|
268
263
|
--select-width: 95%;
|
|
269
|
-
--date-picker-width:
|
|
264
|
+
--date-picker-width: 95%;
|
|
270
265
|
/*vxe-table*/
|
|
271
266
|
/*font*/
|
|
272
267
|
--vxe-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
@@ -278,108 +273,108 @@ export default {
|
|
|
278
273
|
--vxe-border-radius: 6px;
|
|
279
274
|
--vxe-border-width: 1px;
|
|
280
275
|
--vxe-border-style: solid;
|
|
281
|
-
--vxe-border-color: #
|
|
276
|
+
--vxe-border-color: #dcdee2;
|
|
282
277
|
/*icon*/
|
|
283
278
|
--vxe-icon-font-family: Verdana, Arial, Tahoma;
|
|
284
279
|
--vxe-icon-background-color: #fff;
|
|
285
280
|
/*color*/
|
|
286
|
-
--vxe-font-color: #
|
|
287
|
-
--vxe-primary-color: #
|
|
281
|
+
--vxe-font-color: #515a6e;
|
|
282
|
+
--vxe-primary-color: #2d8cf0;
|
|
288
283
|
--vxe-success-color: #19be6b;
|
|
289
284
|
--vxe-info-color: #2db7f5;
|
|
290
285
|
--vxe-warning-color: #ff9900;
|
|
291
286
|
--vxe-danger-color: #ed4014;
|
|
292
|
-
--vxe-font-lighten-color: #
|
|
293
|
-
--vxe-font-lighten-color-20: #
|
|
294
|
-
--vxe-primary-lighten-color: #
|
|
287
|
+
--vxe-font-lighten-color: #67728b;
|
|
288
|
+
--vxe-font-lighten-color-20: #828ca3;
|
|
289
|
+
--vxe-primary-lighten-color: #5da6f3;
|
|
295
290
|
--vxe-success-lighten-color: #27e384;
|
|
296
291
|
--vxe-info-lighten-color: #5ec8f7;
|
|
297
292
|
--vxe-warning-lighten-color: #ffad33;
|
|
298
293
|
--vxe-danger-lighten-color: #f16743;
|
|
299
|
-
--vxe-font-darken-color: #
|
|
300
|
-
--vxe-primary-darken-color: #
|
|
294
|
+
--vxe-font-darken-color: #3b4251;
|
|
295
|
+
--vxe-primary-darken-color: #1072da;
|
|
301
296
|
--vxe-success-darken-color: #139152;
|
|
302
297
|
--vxe-info-darken-color: #0ba1e4;
|
|
303
298
|
--vxe-warning-darken-color: #cc7a00;
|
|
304
299
|
--vxe-danger-darken-color: #bf320f;
|
|
305
|
-
--vxe-font-disabled-color: #
|
|
306
|
-
--vxe-primary-disabled-color: #
|
|
300
|
+
--vxe-font-disabled-color: #c5c8ce;
|
|
301
|
+
--vxe-primary-disabled-color: #8cc0f7;
|
|
307
302
|
--vxe-success-disabled-color: #54e99e;
|
|
308
303
|
--vxe-info-disabled-color: #8ed8fa;
|
|
309
304
|
--vxe-warning-disabled-color: #ffc266;
|
|
310
305
|
--vxe-danger-disabled-color: #f48d73;
|
|
311
306
|
/*input/radio/checkbox*/
|
|
312
|
-
--vxe-input-border-color: #
|
|
313
|
-
--vxe-input-disabled-color: #
|
|
314
|
-
--vxe-input-disabled-background-color: #
|
|
315
|
-
--vxe-input-placeholder-color: #
|
|
307
|
+
--vxe-input-border-color: #dcdee2;
|
|
308
|
+
--vxe-input-disabled-color: #c5c8ce;
|
|
309
|
+
--vxe-input-disabled-background-color: #f3f3f3;
|
|
310
|
+
--vxe-input-placeholder-color: #c5c8ce;
|
|
316
311
|
/*popup*/
|
|
317
|
-
--vxe-table-popup-border-color: #
|
|
312
|
+
--vxe-table-popup-border-color: #dcdee2;
|
|
318
313
|
/*table*/
|
|
319
|
-
--vxe-table-font-color: #
|
|
320
|
-
--vxe-table-font-lighten-color-20: #
|
|
321
|
-
--vxe-table-header-font-color: #
|
|
322
|
-
--vxe-table-footer-font-color: #
|
|
314
|
+
--vxe-table-font-color: #515a6e;
|
|
315
|
+
--vxe-table-font-lighten-color-20: #828ca3;
|
|
316
|
+
--vxe-table-header-font-color: #515a6e;
|
|
317
|
+
--vxe-table-footer-font-color: #515a6e;
|
|
323
318
|
--vxe-table-border-radius: 6px;
|
|
324
319
|
--vxe-table-border-width: 1px;
|
|
325
|
-
--vxe-table-border-style:
|
|
326
|
-
--vxe-table-border-color: #
|
|
327
|
-
--vxe-table-resizable-line-color: #
|
|
328
|
-
--vxe-table-resizable-drag-line-color: #
|
|
329
|
-
--vxe-table-header-background-color: #
|
|
320
|
+
--vxe-table-border-style: solid;
|
|
321
|
+
--vxe-table-border-color: #dcdee2;
|
|
322
|
+
--vxe-table-resizable-line-color: #e8eaec;
|
|
323
|
+
--vxe-table-resizable-drag-line-color: #2d8cf0;
|
|
324
|
+
--vxe-table-header-background-color: #f8f8f9;
|
|
330
325
|
--vxe-table-body-background-color: #fff;
|
|
331
326
|
--vxe-table-footer-background-color: #fff;
|
|
332
327
|
--vxe-table-tree-node-line-color: #909399;
|
|
333
328
|
--vxe-table-tree-node-line-style: dotted;
|
|
334
|
-
--vxe-table-header-font-weight:
|
|
335
|
-
--vxe-table-row-height-default:
|
|
336
|
-
--vxe-table-row-height-medium:
|
|
337
|
-
--vxe-table-row-height-small:
|
|
338
|
-
--vxe-table-row-height-mini:
|
|
329
|
+
--vxe-table-header-font-weight: bold;
|
|
330
|
+
--vxe-table-row-height-default: 48px;
|
|
331
|
+
--vxe-table-row-height-medium: 44px;
|
|
332
|
+
--vxe-table-row-height-small: 40px;
|
|
333
|
+
--vxe-table-row-height-mini: 36px;
|
|
339
334
|
--vxe-table-row-line-height: 1.5;
|
|
340
|
-
--vxe-table-row-hover-background-color: #
|
|
341
|
-
--vxe-table-row-striped-background-color: #
|
|
342
|
-
--vxe-table-row-hover-striped-background-color: #
|
|
343
|
-
--vxe-table-row-radio-checked-background-color: #
|
|
344
|
-
--vxe-table-row-hover-radio-checked-background-color: #
|
|
345
|
-
--vxe-table-row-checkbox-checked-background-color: #
|
|
346
|
-
--vxe-table-row-hover-checkbox-checked-background-color: #
|
|
347
|
-
--vxe-table-row-current-background-color: #
|
|
348
|
-
--vxe-table-row-hover-current-background-color: #
|
|
335
|
+
--vxe-table-row-hover-background-color: #ebf7ff;
|
|
336
|
+
--vxe-table-row-striped-background-color: #f8f8f9;
|
|
337
|
+
--vxe-table-row-hover-striped-background-color: #ebf7ff;
|
|
338
|
+
--vxe-table-row-radio-checked-background-color: #ebf7ff;
|
|
339
|
+
--vxe-table-row-hover-radio-checked-background-color: #ebf7ff;
|
|
340
|
+
--vxe-table-row-checkbox-checked-background-color: #ebf7ff;
|
|
341
|
+
--vxe-table-row-hover-checkbox-checked-background-color: #ebf7ff;
|
|
342
|
+
--vxe-table-row-current-background-color: #ebf7ff;
|
|
343
|
+
--vxe-table-row-hover-current-background-color: #ebf7ff;
|
|
349
344
|
--vxe-table-column-padding-default: 8px 0;
|
|
350
345
|
--vxe-table-column-padding-medium: 6px 0;
|
|
351
346
|
--vxe-table-column-padding-small: 4px 0;
|
|
352
347
|
--vxe-table-column-padding-mini: 2px 0;
|
|
353
|
-
--vxe-table-column-hover-background-color: #
|
|
354
|
-
--vxe-table-column-current-background-color: #
|
|
348
|
+
--vxe-table-column-hover-background-color: #ebf7ff;
|
|
349
|
+
--vxe-table-column-current-background-color: #ebf7ff;
|
|
355
350
|
--vxe-table-column-icon-border-color: #c0c4cc;
|
|
356
351
|
--vxe-table-column-icon-border-hover-color: #515A6E;
|
|
357
|
-
--vxe-table-column-background-image:
|
|
358
|
-
--vxe-table-cell-placeholder-color: #
|
|
352
|
+
--vxe-table-column-background-image: linear-gradient(#dcdee2, #dcdee2), linear-gradient(#dcdee2, #dcdee2);
|
|
353
|
+
--vxe-table-cell-placeholder-color: #c5c8ce;
|
|
359
354
|
--vxe-table-cell-padding-left: 9px;
|
|
360
355
|
--vxe-table-cell-padding-right: 9px;
|
|
361
|
-
--vxe-table-cell-input-height-default:
|
|
362
|
-
--vxe-table-cell-input-height-medium:
|
|
363
|
-
--vxe-table-cell-input-height-small:
|
|
364
|
-
--vxe-table-cell-input-height-mini:
|
|
356
|
+
--vxe-table-cell-input-height-default: 42px;
|
|
357
|
+
--vxe-table-cell-input-height-medium: 38px;
|
|
358
|
+
--vxe-table-cell-input-height-small: 34px;
|
|
359
|
+
--vxe-table-cell-input-height-mini: 30px;
|
|
365
360
|
--vxe-table-cell-dirty-width: 5px;
|
|
366
361
|
--vxe-table-cell-dirty-update-color: #f56c6c;
|
|
367
362
|
--vxe-table-cell-dirty-insert-color: #19A15F;
|
|
368
|
-
--vxe-table-cell-area-border-color: #
|
|
363
|
+
--vxe-table-cell-area-border-color: #2d8cf0;
|
|
369
364
|
--vxe-table-cell-area-border-width: 1px;
|
|
370
365
|
--vxe-table-cell-main-area-extension-border-color: #fff;
|
|
371
|
-
--vxe-table-cell-main-area-extension-background-color: #
|
|
366
|
+
--vxe-table-cell-main-area-extension-background-color: #2d8cf0;
|
|
372
367
|
--vxe-table-cell-extend-area-border-width: 2px;
|
|
373
368
|
--vxe-table-cell-copy-area-border-width: 3px;
|
|
374
369
|
--vxe-table-cell-active-area-border-width: 2px;
|
|
375
|
-
--vxe-table-cell-copy-area-border-color: #
|
|
376
|
-
--vxe-table-cell-extend-area-border-color: #
|
|
377
|
-
--vxe-table-cell-active-area-border-color: #
|
|
370
|
+
--vxe-table-cell-copy-area-border-color: #2d8cf0;
|
|
371
|
+
--vxe-table-cell-extend-area-border-color: #2d8cf0;
|
|
372
|
+
--vxe-table-cell-active-area-border-color: #2d8cf0;
|
|
378
373
|
--vxe-table-cell-area-background-color: rgba(64, 158, 255, 0.2);
|
|
379
374
|
--vxe-table-checkbox-range-border-width: 1px;
|
|
380
375
|
--vxe-table-checkbox-range-border-color: #006af1;
|
|
381
376
|
--vxe-table-checkbox-range-background-color: rgba(50, 128, 252, 0.2);
|
|
382
|
-
--vxe-table-fixed-left-scrolling-box-shadow: 8px 0px 10px -5px
|
|
377
|
+
--vxe-table-fixed-left-scrolling-box-shadow: 8px 0px 10px -5px rgba(0, 0, 0, 0.12);
|
|
383
378
|
--vxe-table-fixed-right-scrolling-box-shadow: -8px 0px 10px -5px rgba(0, 0, 0, 0.12);
|
|
384
379
|
/*filter*/
|
|
385
380
|
--vxe-table-filter-panel-background-color: #fff;
|
|
@@ -387,7 +382,7 @@ export default {
|
|
|
387
382
|
--vxe-table-menu-item-width: 178px;
|
|
388
383
|
--vxe-table-menu-background-color: #fff;
|
|
389
384
|
/*loading*/
|
|
390
|
-
--vxe-loading-color: #
|
|
385
|
+
--vxe-loading-color: #2d8cf0;
|
|
391
386
|
--vxe-loading-background-color: rgba(255, 255, 255, 0.5);
|
|
392
387
|
--vxe-loading-z-index: 999;
|
|
393
388
|
/*validate*/
|
|
@@ -453,7 +448,7 @@ export default {
|
|
|
453
448
|
--vxe-input-panel-background-color: #fff;
|
|
454
449
|
--vxe-input-number-disabled-color: #e4e7ed;
|
|
455
450
|
--vxe-input-date-festival-color: #999999;
|
|
456
|
-
--vxe-input-date-festival-important-color: #
|
|
451
|
+
--vxe-input-date-festival-important-color: #2d8cf0;
|
|
457
452
|
--vxe-input-date-notice-background-color: #FF0000;
|
|
458
453
|
--vxe-input-date-picker-hover-background-color: #f2f6fc;
|
|
459
454
|
--vxe-input-date-picker-selected-color: #fff;
|
|
@@ -505,7 +500,7 @@ export default {
|
|
|
505
500
|
/*switch*/
|
|
506
501
|
--vxe-switch-font-color: #fff;
|
|
507
502
|
--vxe-switch-icon-background-color: #fff;
|
|
508
|
-
--vxe-switch-open-background-color: #
|
|
503
|
+
--vxe-switch-open-background-color: #2d8cf0;
|
|
509
504
|
--vxe-switch-close-background-color: rgba(0, 0, 0, 0.35);
|
|
510
505
|
--vxe-switch-disabled-background-color: rgba(0, 0, 0, 0.15);
|
|
511
506
|
/*pulldown*/
|
|
@@ -517,5 +512,4 @@ export default {
|
|
|
517
512
|
margin:0;
|
|
518
513
|
}
|
|
519
514
|
`
|
|
520
|
-
|
|
521
515
|
};
|
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@lambo-design/shared",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"axios
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"xlsx
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@lambo-design/shared",
|
|
3
|
+
"version": "1.0.0-beta.93",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {},
|
|
7
|
+
"author": "lambo",
|
|
8
|
+
"license": "ISC",
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public",
|
|
11
|
+
"registry": "https://registry.npmjs.org/"
|
|
12
|
+
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"axios": "^0.24.0",
|
|
15
|
+
"axios-cache-plugin": "^0.1.0",
|
|
16
|
+
"classnames": "^2.3.1",
|
|
17
|
+
"css-vars-ponyfill": "^2.4.8",
|
|
18
|
+
"moment": "2.29.4",
|
|
19
|
+
"qs": "^6.11.0",
|
|
20
|
+
"xlsx": "http://cicd.lambo.top/package/cdn/xlsx-0.19.1.tgz",
|
|
21
|
+
"xlsx-style": "^0.8.13"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
export const builtInDictKeys = [
|
|
2
|
-
'SEX_ENUM',
|
|
3
|
-
'WHETHER_ENUM'
|
|
4
|
-
]
|
|
5
|
-
|
|
6
|
-
export const builtInDictMap = {
|
|
7
|
-
'SEX_ENUM' : { '0': '女', '1': '男' },
|
|
8
|
-
'WHETHER_ENUM' : { '0': '否', '1': '是' }
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export const builtInDictList = {
|
|
12
|
-
'SEX_ENUM' : [
|
|
13
|
-
{ K: '0', V: '女' },
|
|
14
|
-
{ K: '1', V: '男' },
|
|
15
|
-
],
|
|
16
|
-
'WHETHER_ENUM' : [
|
|
17
|
-
{ K: '0', V: '否' },
|
|
18
|
-
{ K: '1', V: '是' },
|
|
19
|
-
]
|
|
20
|
-
}
|
|
1
|
+
export const builtInDictKeys = [
|
|
2
|
+
'SEX_ENUM',
|
|
3
|
+
'WHETHER_ENUM'
|
|
4
|
+
]
|
|
5
|
+
|
|
6
|
+
export const builtInDictMap = {
|
|
7
|
+
'SEX_ENUM' : { '0': '女', '1': '男' },
|
|
8
|
+
'WHETHER_ENUM' : { '0': '否', '1': '是' }
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export const builtInDictList = {
|
|
12
|
+
'SEX_ENUM' : [
|
|
13
|
+
{ K: '0', V: '女' },
|
|
14
|
+
{ K: '1', V: '男' },
|
|
15
|
+
],
|
|
16
|
+
'WHETHER_ENUM' : [
|
|
17
|
+
{ K: '0', V: '否' },
|
|
18
|
+
{ K: '1', V: '是' },
|
|
19
|
+
]
|
|
20
|
+
}
|