@mptw/skylens-ui 1.3.11 → 1.3.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/assets/css/icons.css +192 -161
- package/components/SLSearchInput.vue +16 -4
- package/package.json +1 -1
package/assets/css/icons.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'MEShPlus-font-icon';
|
|
3
|
-
src:
|
|
4
|
-
src:
|
|
3
|
+
src: url('fonts/MEShPlus-font-icon.eot?1oxse');
|
|
4
|
+
src: url('fonts/MEShPlus-font-icon.eot?1oxse#iefix') format('embedded-opentype'),
|
|
5
5
|
url('fonts/MEShPlus-font-icon.ttf?1oxse') format('truetype'),
|
|
6
6
|
url('fonts/MEShPlus-font-icon.woff?1oxse') format('woff'),
|
|
7
7
|
url('fonts/MEShPlus-font-icon.svg?1oxse#MEShPlus-font-icon') format('svg');
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
font-display: block;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
[class^="icon-"],
|
|
13
|
+
[class^="icon-"],
|
|
14
|
+
[class*=" icon-"] {
|
|
14
15
|
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
16
|
font-family: 'MEShPlus-font-icon' !important;
|
|
16
17
|
speak: never;
|
|
@@ -27,722 +28,752 @@
|
|
|
27
28
|
|
|
28
29
|
.icon-insight-icon:before {
|
|
29
30
|
content: "\e961";
|
|
30
|
-
color: #424242;
|
|
31
31
|
}
|
|
32
|
+
|
|
32
33
|
.icon-X:before {
|
|
33
34
|
content: "\e962";
|
|
34
|
-
color: #424242;
|
|
35
35
|
}
|
|
36
|
+
|
|
36
37
|
.icon-lock:before {
|
|
37
38
|
content: "\e963";
|
|
38
|
-
color: #424242;
|
|
39
39
|
}
|
|
40
|
+
|
|
40
41
|
.icon-mail:before {
|
|
41
42
|
content: "\e964";
|
|
42
|
-
color: #424242;
|
|
43
43
|
}
|
|
44
|
+
|
|
44
45
|
.icon-loading-circle:before {
|
|
45
46
|
content: "\e960";
|
|
46
|
-
color: #424242;
|
|
47
47
|
}
|
|
48
|
+
|
|
48
49
|
.icon-edit:before {
|
|
49
50
|
content: "\e95f";
|
|
50
|
-
color: #424242;
|
|
51
51
|
}
|
|
52
|
+
|
|
52
53
|
.icon-angle-double-down:before {
|
|
53
54
|
content: "\e91f";
|
|
54
|
-
color: #424242;
|
|
55
55
|
}
|
|
56
|
+
|
|
56
57
|
.icon-angle-double-up:before {
|
|
57
58
|
content: "\e947";
|
|
58
|
-
color: #424242;
|
|
59
59
|
}
|
|
60
|
+
|
|
60
61
|
.icon-angle-double-left:before {
|
|
61
62
|
content: "\e902";
|
|
62
|
-
color: #424242;
|
|
63
63
|
}
|
|
64
|
+
|
|
64
65
|
.icon-angle-double-right:before {
|
|
65
66
|
content: "\e903";
|
|
66
|
-
color: #424242;
|
|
67
67
|
}
|
|
68
|
+
|
|
68
69
|
.icon-arrow2-down:before {
|
|
69
70
|
content: "\e948";
|
|
70
|
-
color: #424242;
|
|
71
71
|
}
|
|
72
|
+
|
|
72
73
|
.icon-arrow2-left:before {
|
|
73
74
|
content: "\e949";
|
|
74
|
-
color: #424242;
|
|
75
75
|
}
|
|
76
|
+
|
|
76
77
|
.icon-arrow2-right:before {
|
|
77
78
|
content: "\e94a";
|
|
78
|
-
color: #424242;
|
|
79
79
|
}
|
|
80
|
+
|
|
80
81
|
.icon-arrow2-up:before {
|
|
81
82
|
content: "\e94b";
|
|
82
|
-
color: #424242;
|
|
83
83
|
}
|
|
84
|
+
|
|
84
85
|
.icon-arrow-left:before {
|
|
85
86
|
content: "\e94c";
|
|
86
|
-
color: #424242;
|
|
87
87
|
}
|
|
88
|
+
|
|
88
89
|
.icon-arrow-right:before {
|
|
89
90
|
content: "\e94d";
|
|
90
|
-
color: #424242;
|
|
91
91
|
}
|
|
92
|
+
|
|
92
93
|
.icon-arrow-down:before {
|
|
93
94
|
content: "\e904";
|
|
94
|
-
color: #424242;
|
|
95
95
|
}
|
|
96
|
+
|
|
96
97
|
.icon-arrow-up:before {
|
|
97
98
|
content: "\e905";
|
|
98
|
-
color: #424242;
|
|
99
99
|
}
|
|
100
|
+
|
|
100
101
|
.icon-book:before {
|
|
101
102
|
content: "\e94e";
|
|
102
|
-
color: #424242;
|
|
103
103
|
}
|
|
104
|
+
|
|
104
105
|
.icon-update:before {
|
|
105
106
|
content: "\e951";
|
|
106
|
-
color: #424242;
|
|
107
107
|
}
|
|
108
|
+
|
|
108
109
|
.icon-wrench:before {
|
|
109
110
|
content: "\e952";
|
|
110
|
-
color: #424242;
|
|
111
111
|
}
|
|
112
|
+
|
|
112
113
|
.icon-Agent:before {
|
|
113
114
|
content: "\e953";
|
|
114
115
|
}
|
|
116
|
+
|
|
115
117
|
.icon-Customer:before {
|
|
116
118
|
content: "\e954";
|
|
117
119
|
}
|
|
120
|
+
|
|
118
121
|
.icon-Drag:before {
|
|
119
122
|
content: "\e955";
|
|
120
123
|
}
|
|
124
|
+
|
|
121
125
|
.icon-exchange:before {
|
|
122
126
|
content: "\e956";
|
|
123
127
|
}
|
|
128
|
+
|
|
124
129
|
.icon-flag:before {
|
|
125
130
|
content: "\e957";
|
|
126
131
|
}
|
|
132
|
+
|
|
127
133
|
.icon-home:before {
|
|
128
134
|
content: "\e958";
|
|
129
135
|
}
|
|
136
|
+
|
|
130
137
|
.icon-pps:before {
|
|
131
138
|
content: "\e959";
|
|
132
139
|
}
|
|
140
|
+
|
|
133
141
|
.icon-pps-mirror:before {
|
|
134
142
|
content: "\e95a";
|
|
135
143
|
}
|
|
144
|
+
|
|
136
145
|
.icon-Report:before {
|
|
137
146
|
content: "\e95b";
|
|
138
147
|
}
|
|
148
|
+
|
|
139
149
|
.icon-three-dot:before {
|
|
140
150
|
content: "\e95c";
|
|
141
151
|
}
|
|
152
|
+
|
|
142
153
|
.icon-three-dot-v:before {
|
|
143
154
|
content: "\e95d";
|
|
144
|
-
color: #424242;
|
|
145
155
|
}
|
|
156
|
+
|
|
146
157
|
.icon-trashcan:before {
|
|
147
158
|
content: "\e95e";
|
|
148
159
|
}
|
|
160
|
+
|
|
149
161
|
.icon-trash:before {
|
|
150
162
|
content: "\e900";
|
|
151
|
-
color: #424242;
|
|
152
163
|
}
|
|
164
|
+
|
|
153
165
|
.icon-address-book:before {
|
|
154
166
|
content: "\e901";
|
|
155
|
-
color: #424242;
|
|
156
167
|
}
|
|
168
|
+
|
|
157
169
|
.icon-box-open:before {
|
|
158
170
|
content: "\e906";
|
|
159
|
-
color: #424242;
|
|
160
171
|
}
|
|
172
|
+
|
|
161
173
|
.icon-box:before {
|
|
162
174
|
content: "\e907";
|
|
163
|
-
color: #424242;
|
|
164
175
|
}
|
|
176
|
+
|
|
165
177
|
.icon-broadcast-tower:before {
|
|
166
178
|
content: "\e908";
|
|
167
|
-
color: #424242;
|
|
168
179
|
}
|
|
180
|
+
|
|
169
181
|
.icon-calendar-done:before {
|
|
170
182
|
content: "\e909";
|
|
171
|
-
color: #424242;
|
|
172
183
|
}
|
|
184
|
+
|
|
173
185
|
.icon-calendar-plus:before {
|
|
174
186
|
content: "\e90a";
|
|
175
|
-
color: #424242;
|
|
176
187
|
}
|
|
188
|
+
|
|
177
189
|
.icon-calendar:before {
|
|
178
190
|
content: "\e90b";
|
|
179
|
-
color: #424242;
|
|
180
191
|
}
|
|
192
|
+
|
|
181
193
|
.icon-caret-right:before {
|
|
182
194
|
content: "\e950";
|
|
183
|
-
color: #424242;
|
|
184
195
|
}
|
|
196
|
+
|
|
185
197
|
.icon-caret-left:before {
|
|
186
198
|
content: "\e94f";
|
|
187
|
-
color: #424242;
|
|
188
199
|
}
|
|
200
|
+
|
|
189
201
|
.icon-caret-down:before {
|
|
190
202
|
content: "\e90c";
|
|
191
|
-
color: #424242;
|
|
192
203
|
}
|
|
204
|
+
|
|
193
205
|
.icon-caret-up:before {
|
|
194
206
|
content: "\e90d";
|
|
195
|
-
color: #424242;
|
|
196
207
|
}
|
|
208
|
+
|
|
197
209
|
.icon-chart_with_num:before {
|
|
198
210
|
content: "\e90e";
|
|
199
|
-
color: #424242;
|
|
200
211
|
}
|
|
212
|
+
|
|
201
213
|
.icon-chart_without_num:before {
|
|
202
214
|
content: "\e90f";
|
|
203
|
-
color: #424242;
|
|
204
215
|
}
|
|
216
|
+
|
|
205
217
|
.icon-chart-bar:before {
|
|
206
218
|
content: "\e910";
|
|
207
|
-
color: #424242;
|
|
208
219
|
}
|
|
220
|
+
|
|
209
221
|
.icon-chart-line:before {
|
|
210
222
|
content: "\e911";
|
|
211
|
-
color: #424242;
|
|
212
223
|
}
|
|
224
|
+
|
|
213
225
|
.icon-chart-pie-alt:before {
|
|
214
226
|
content: "\e912";
|
|
215
|
-
color: #424242;
|
|
216
227
|
}
|
|
228
|
+
|
|
217
229
|
.icon-chart-scatter:before {
|
|
218
230
|
content: "\e913";
|
|
219
|
-
color: #424242;
|
|
220
231
|
}
|
|
232
|
+
|
|
221
233
|
.icon-cheers:before {
|
|
222
234
|
content: "\e916";
|
|
223
|
-
color: #424242;
|
|
224
235
|
}
|
|
236
|
+
|
|
225
237
|
.icon-chevron-down:before {
|
|
226
238
|
content: "\e917";
|
|
227
|
-
color: #424242;
|
|
228
239
|
}
|
|
240
|
+
|
|
229
241
|
.icon-chevron-left:before {
|
|
230
242
|
content: "\e918";
|
|
231
|
-
color: #424242;
|
|
232
243
|
}
|
|
244
|
+
|
|
233
245
|
.icon-chevron-right:before {
|
|
234
246
|
content: "\e919";
|
|
235
|
-
color: #424242;
|
|
236
247
|
}
|
|
248
|
+
|
|
237
249
|
.icon-chevron-up:before {
|
|
238
250
|
content: "\e91a";
|
|
239
|
-
color: #424242;
|
|
240
251
|
}
|
|
252
|
+
|
|
241
253
|
.icon-circle:before {
|
|
242
254
|
content: "\e91b";
|
|
243
|
-
color: #424242;
|
|
244
255
|
}
|
|
256
|
+
|
|
245
257
|
.icon-check-circle:before {
|
|
246
258
|
content: "\e914";
|
|
247
|
-
color: #424242;
|
|
248
259
|
}
|
|
260
|
+
|
|
249
261
|
.icon-dot-circle:before {
|
|
250
262
|
content: "\e91e";
|
|
251
|
-
color: #424242;
|
|
252
263
|
}
|
|
264
|
+
|
|
253
265
|
.icon-clipboard:before {
|
|
254
266
|
content: "\e91c";
|
|
255
|
-
color: #424242;
|
|
256
267
|
}
|
|
268
|
+
|
|
257
269
|
.icon-equals:before {
|
|
258
270
|
content: "\e920";
|
|
259
|
-
color: #424242;
|
|
260
271
|
}
|
|
272
|
+
|
|
261
273
|
.icon-exclamation-circle:before {
|
|
262
274
|
content: "\e921";
|
|
263
|
-
color: #424242;
|
|
264
275
|
}
|
|
276
|
+
|
|
265
277
|
.icon-exclamation-triangle:before {
|
|
266
278
|
content: "\e922";
|
|
267
279
|
}
|
|
280
|
+
|
|
268
281
|
.icon-external-link-alt:before {
|
|
269
282
|
content: "\e923";
|
|
270
|
-
color: #424242;
|
|
271
283
|
}
|
|
284
|
+
|
|
272
285
|
.icon-eye-slash:before {
|
|
273
286
|
content: "\e924";
|
|
274
|
-
color: #424242;
|
|
275
287
|
}
|
|
288
|
+
|
|
276
289
|
.icon-eye:before {
|
|
277
290
|
content: "\e925";
|
|
278
|
-
color: #424242;
|
|
279
291
|
}
|
|
292
|
+
|
|
280
293
|
.icon-female:before {
|
|
281
294
|
content: "\e926";
|
|
282
|
-
color: #424242;
|
|
283
295
|
}
|
|
296
|
+
|
|
284
297
|
.icon-file-excel:before {
|
|
285
298
|
content: "\e927";
|
|
286
|
-
color: #424242;
|
|
287
299
|
}
|
|
300
|
+
|
|
288
301
|
.icon-file-image:before {
|
|
289
302
|
content: "\e928";
|
|
290
|
-
color: #424242;
|
|
291
303
|
}
|
|
304
|
+
|
|
292
305
|
.icon-heat-map:before {
|
|
293
306
|
content: "\e929";
|
|
294
|
-
color: #424242;
|
|
295
307
|
}
|
|
308
|
+
|
|
296
309
|
.icon-info-circle:before {
|
|
297
310
|
content: "\e92a";
|
|
298
|
-
color: #424242;
|
|
299
311
|
}
|
|
312
|
+
|
|
300
313
|
.icon-list:before {
|
|
301
314
|
content: "\e92b";
|
|
302
|
-
color: #424242;
|
|
303
315
|
}
|
|
316
|
+
|
|
304
317
|
.icon-male:before {
|
|
305
318
|
content: "\e92c";
|
|
306
|
-
color: #424242;
|
|
307
319
|
}
|
|
320
|
+
|
|
308
321
|
.icon-map-marker-alt:before {
|
|
309
322
|
content: "\e92d";
|
|
310
|
-
color: #424242;
|
|
311
323
|
}
|
|
324
|
+
|
|
312
325
|
.icon-check-square:before {
|
|
313
326
|
content: "\e915";
|
|
314
|
-
color: #424242;
|
|
315
327
|
}
|
|
328
|
+
|
|
316
329
|
.icon-square:before {
|
|
317
330
|
content: "\e93d";
|
|
318
|
-
color: #424242;
|
|
319
331
|
}
|
|
332
|
+
|
|
320
333
|
.icon-minus-square:before {
|
|
321
334
|
content: "\e92e";
|
|
322
|
-
color: #424242;
|
|
323
335
|
}
|
|
336
|
+
|
|
324
337
|
.icon-new:before {
|
|
325
338
|
content: "\e92f";
|
|
326
|
-
color: #424242;
|
|
327
339
|
}
|
|
340
|
+
|
|
328
341
|
.icon-person-cog:before {
|
|
329
342
|
content: "\e930";
|
|
330
|
-
color: #424242;
|
|
331
343
|
}
|
|
344
|
+
|
|
332
345
|
.icon-personal-info:before {
|
|
333
346
|
content: "\e931";
|
|
334
|
-
color: #424242;
|
|
335
347
|
}
|
|
348
|
+
|
|
336
349
|
.icon-plus:before {
|
|
337
350
|
content: "\e932";
|
|
338
|
-
color: #424242;
|
|
339
351
|
}
|
|
352
|
+
|
|
340
353
|
.icon-project-info:before {
|
|
341
354
|
content: "\e933";
|
|
342
|
-
color: #424242;
|
|
343
355
|
}
|
|
356
|
+
|
|
344
357
|
.icon-search:before {
|
|
345
358
|
content: "\e934";
|
|
346
|
-
color: #424242;
|
|
347
359
|
}
|
|
360
|
+
|
|
348
361
|
.icon-sign-out-alt:before {
|
|
349
362
|
content: "\e935";
|
|
350
|
-
color: #424242;
|
|
351
363
|
}
|
|
364
|
+
|
|
352
365
|
.icon-skylens-basic:before {
|
|
353
366
|
content: "\e936";
|
|
354
|
-
color: #424242;
|
|
355
367
|
}
|
|
368
|
+
|
|
356
369
|
.icon-skylens-poi:before {
|
|
357
370
|
content: "\e937";
|
|
358
|
-
color: #424242;
|
|
359
371
|
}
|
|
372
|
+
|
|
360
373
|
.icon-skylens-ta:before {
|
|
361
374
|
content: "\e938";
|
|
362
|
-
color: #424242;
|
|
363
375
|
}
|
|
376
|
+
|
|
364
377
|
.icon-skylens-traffic:before {
|
|
365
378
|
content: "\e939";
|
|
366
|
-
color: #424242;
|
|
367
379
|
}
|
|
380
|
+
|
|
368
381
|
.icon-smile-arrow:before {
|
|
369
382
|
content: "\e93a";
|
|
370
|
-
color: #424242;
|
|
371
383
|
}
|
|
384
|
+
|
|
372
385
|
.icon-sort-down:before {
|
|
373
386
|
content: "\e93b";
|
|
374
|
-
color: #424242;
|
|
375
387
|
}
|
|
388
|
+
|
|
376
389
|
.icon-sort-up:before {
|
|
377
390
|
content: "\e93c";
|
|
378
|
-
color: #424242;
|
|
379
391
|
}
|
|
392
|
+
|
|
380
393
|
.icon-start-flag:before {
|
|
381
394
|
content: "\e93e";
|
|
382
|
-
color: #424242;
|
|
383
395
|
}
|
|
396
|
+
|
|
384
397
|
.icon-sync-alt:before {
|
|
385
398
|
content: "\e93f";
|
|
386
|
-
color: #424242;
|
|
387
399
|
}
|
|
400
|
+
|
|
388
401
|
.icon-tag:before {
|
|
389
402
|
content: "\e940";
|
|
390
|
-
color: #424242;
|
|
391
403
|
}
|
|
404
|
+
|
|
392
405
|
.icon-th-with-bar:before {
|
|
393
406
|
content: "\e941";
|
|
394
|
-
color: #424242;
|
|
395
407
|
}
|
|
408
|
+
|
|
396
409
|
.icon-th:before {
|
|
397
410
|
content: "\e942";
|
|
398
|
-
color: #424242;
|
|
399
411
|
}
|
|
412
|
+
|
|
400
413
|
.icon-times:before {
|
|
401
414
|
content: "\e943";
|
|
402
|
-
color: #424242;
|
|
403
415
|
}
|
|
416
|
+
|
|
404
417
|
.icon-unique:before {
|
|
405
418
|
content: "\e944";
|
|
406
|
-
color: #424242;
|
|
407
419
|
}
|
|
420
|
+
|
|
408
421
|
.icon-unknown-gender:before {
|
|
409
422
|
content: "\e945";
|
|
410
|
-
color: #424242;
|
|
411
423
|
}
|
|
424
|
+
|
|
412
425
|
.icon-web:before {
|
|
413
426
|
content: "\e946";
|
|
414
|
-
color: #424242;
|
|
415
427
|
}
|
|
428
|
+
|
|
416
429
|
.icon-check-circle-line:before {
|
|
417
430
|
content: "\e965";
|
|
418
|
-
color: #424242;
|
|
419
431
|
}
|
|
432
|
+
|
|
420
433
|
.icon-x-circle-line:before {
|
|
421
434
|
content: "\e966";
|
|
422
|
-
color: #424242;
|
|
423
435
|
}
|
|
436
|
+
|
|
424
437
|
.icon-pin:before {
|
|
425
438
|
content: "\e967";
|
|
426
|
-
color: #424242;
|
|
427
439
|
}
|
|
440
|
+
|
|
428
441
|
.icon-external-link-2:before {
|
|
429
442
|
content: "\e968";
|
|
430
|
-
color: #424242;
|
|
431
443
|
}
|
|
444
|
+
|
|
432
445
|
.icon-lengthen:before {
|
|
433
446
|
content: "\e969";
|
|
434
|
-
color: #424242;
|
|
435
447
|
}
|
|
448
|
+
|
|
436
449
|
.icon-shorten:before {
|
|
437
450
|
content: "\e96a";
|
|
438
|
-
color: #424242;
|
|
439
451
|
}
|
|
452
|
+
|
|
440
453
|
.icon-adjust-2line:before {
|
|
441
454
|
content: "\e96b";
|
|
442
|
-
color: #424242;
|
|
443
455
|
}
|
|
456
|
+
|
|
444
457
|
.icon-adjust:before {
|
|
445
458
|
content: "\e96c";
|
|
446
|
-
color: #424242;
|
|
447
459
|
}
|
|
460
|
+
|
|
448
461
|
.icon-audience-line:before {
|
|
449
462
|
content: "\e96d";
|
|
450
|
-
color: #424242;
|
|
451
463
|
}
|
|
464
|
+
|
|
452
465
|
.icon-audience-solid:before {
|
|
453
466
|
content: "\e96e";
|
|
454
|
-
color: #424242;
|
|
455
467
|
}
|
|
468
|
+
|
|
456
469
|
.icon-chart_without_num-line:before {
|
|
457
470
|
content: "\e96f";
|
|
458
|
-
color: #424242;
|
|
459
471
|
}
|
|
472
|
+
|
|
460
473
|
.icon-cog-line:before {
|
|
461
474
|
content: "\e970";
|
|
462
|
-
color: #424242;
|
|
463
475
|
}
|
|
476
|
+
|
|
464
477
|
.icon-cog:before {
|
|
465
478
|
content: "\e91d";
|
|
466
|
-
color: #424242;
|
|
467
479
|
}
|
|
480
|
+
|
|
468
481
|
.icon-customer-money-line:before {
|
|
469
482
|
content: "\e971";
|
|
470
|
-
color: #424242;
|
|
471
483
|
}
|
|
484
|
+
|
|
472
485
|
.icon-customer-money-solid:before {
|
|
473
486
|
content: "\e972";
|
|
474
|
-
color: #424242;
|
|
475
487
|
}
|
|
488
|
+
|
|
476
489
|
.icon-extend:before {
|
|
477
490
|
content: "\e973";
|
|
478
|
-
color: #424242;
|
|
479
491
|
}
|
|
492
|
+
|
|
480
493
|
.icon-shrink:before {
|
|
481
494
|
content: "\e979";
|
|
482
495
|
}
|
|
496
|
+
|
|
483
497
|
.icon-infor-line:before {
|
|
484
498
|
content: "\e974";
|
|
485
|
-
color: #424242;
|
|
486
499
|
}
|
|
500
|
+
|
|
487
501
|
.icon-notice-line:before {
|
|
488
502
|
content: "\e975";
|
|
489
|
-
color: #424242;
|
|
490
503
|
}
|
|
504
|
+
|
|
491
505
|
.icon-notice-solid:before {
|
|
492
506
|
content: "\e976";
|
|
493
|
-
color: #424242;
|
|
494
507
|
}
|
|
508
|
+
|
|
495
509
|
.icon-support-solid:before {
|
|
496
510
|
content: "\e977";
|
|
497
|
-
color: #424242;
|
|
498
511
|
}
|
|
512
|
+
|
|
499
513
|
.icon-support-line:before {
|
|
500
514
|
content: "\e978";
|
|
501
515
|
}
|
|
516
|
+
|
|
502
517
|
.icon-extend-solid:before {
|
|
503
518
|
content: "\e97a";
|
|
504
|
-
color: #424242;
|
|
505
519
|
}
|
|
520
|
+
|
|
506
521
|
.icon-shrink-solid:before {
|
|
507
522
|
content: "\e97b";
|
|
508
|
-
color: #424242;
|
|
509
523
|
}
|
|
524
|
+
|
|
510
525
|
.icon-drag:before {
|
|
511
526
|
content: "\e97c";
|
|
512
|
-
color: #424242;
|
|
513
527
|
}
|
|
528
|
+
|
|
514
529
|
.icon-www-earth:before {
|
|
515
530
|
content: "\e97d";
|
|
516
531
|
}
|
|
532
|
+
|
|
517
533
|
.icon-earth:before {
|
|
518
534
|
content: "\e97e";
|
|
519
535
|
}
|
|
536
|
+
|
|
520
537
|
.icon-wait:before {
|
|
521
538
|
content: "\e97f";
|
|
522
539
|
}
|
|
540
|
+
|
|
523
541
|
.icon-pin-line:before {
|
|
524
542
|
content: "\e980";
|
|
525
|
-
color: #424242;
|
|
526
543
|
}
|
|
544
|
+
|
|
527
545
|
.icon-pause:before {
|
|
528
546
|
content: "\e981";
|
|
529
|
-
color: #424242;
|
|
530
547
|
}
|
|
548
|
+
|
|
531
549
|
.icon-map-marker:before {
|
|
532
550
|
content: "\e982";
|
|
533
|
-
color: #424242;
|
|
534
551
|
}
|
|
552
|
+
|
|
535
553
|
.icon-info-solid:before {
|
|
536
554
|
content: "\e983";
|
|
537
|
-
color: #424242;
|
|
538
555
|
}
|
|
556
|
+
|
|
539
557
|
.icon-map-marker-hide:before {
|
|
540
558
|
content: "\e984";
|
|
541
|
-
color: #424242;
|
|
542
559
|
}
|
|
560
|
+
|
|
543
561
|
.icon-wwwearth-with-map:before {
|
|
544
562
|
content: "\e985";
|
|
545
|
-
color: #424242;
|
|
546
563
|
}
|
|
564
|
+
|
|
547
565
|
.icon-earth-with-map:before {
|
|
548
566
|
content: "\e987";
|
|
549
|
-
color: #424242;
|
|
550
567
|
}
|
|
568
|
+
|
|
551
569
|
.icon-percent:before {
|
|
552
570
|
content: "\e988";
|
|
553
|
-
color: #424242;
|
|
554
571
|
}
|
|
572
|
+
|
|
555
573
|
.icon-num:before {
|
|
556
574
|
content: "\e989";
|
|
557
|
-
color: #424242;
|
|
558
575
|
}
|
|
576
|
+
|
|
559
577
|
.icon-new-circle:before {
|
|
560
578
|
content: "\e98a";
|
|
561
579
|
}
|
|
580
|
+
|
|
562
581
|
.icon-group:before {
|
|
563
582
|
content: "\e98b";
|
|
564
583
|
}
|
|
584
|
+
|
|
565
585
|
.icon-filter:before {
|
|
566
586
|
content: "\e98d";
|
|
567
587
|
}
|
|
588
|
+
|
|
568
589
|
.icon-eye-slash-line:before {
|
|
569
590
|
content: "\e98e";
|
|
570
|
-
color: #424242;
|
|
571
591
|
}
|
|
592
|
+
|
|
572
593
|
.icon-empty:before {
|
|
573
594
|
content: "\e98f";
|
|
574
|
-
color: #424242;
|
|
575
595
|
}
|
|
596
|
+
|
|
576
597
|
.icon-download:before {
|
|
577
598
|
content: "\e990";
|
|
578
|
-
color: #424242;
|
|
579
599
|
}
|
|
600
|
+
|
|
580
601
|
.icon-ascending:before {
|
|
581
602
|
content: "\e991";
|
|
582
|
-
color: #424242;
|
|
583
603
|
}
|
|
604
|
+
|
|
584
605
|
.icon-descending:before {
|
|
585
606
|
content: "\e992";
|
|
586
|
-
color: #424242;
|
|
587
607
|
}
|
|
608
|
+
|
|
588
609
|
.icon-triangle-up-small:before {
|
|
589
610
|
content: "\e993";
|
|
590
611
|
}
|
|
612
|
+
|
|
591
613
|
.icon-triangle-down-small:before {
|
|
592
614
|
content: "\e994";
|
|
593
615
|
}
|
|
616
|
+
|
|
594
617
|
.icon-filter-on:before {
|
|
595
618
|
content: "\e98c";
|
|
596
619
|
}
|
|
620
|
+
|
|
597
621
|
.icon-travel:before {
|
|
598
622
|
content: "\e995";
|
|
599
|
-
color: #424242;
|
|
600
623
|
}
|
|
624
|
+
|
|
601
625
|
.icon-star:before {
|
|
602
626
|
content: "\e996";
|
|
603
|
-
color: #424242;
|
|
604
627
|
}
|
|
628
|
+
|
|
605
629
|
.icon-Study:before {
|
|
606
630
|
content: "\e997";
|
|
607
|
-
color: #424242;
|
|
608
631
|
}
|
|
632
|
+
|
|
609
633
|
.icon-glasses:before {
|
|
610
634
|
content: "\e998";
|
|
611
|
-
color: #424242;
|
|
612
635
|
}
|
|
636
|
+
|
|
613
637
|
.icon-diamond:before {
|
|
614
638
|
content: "\e999";
|
|
615
|
-
color: #424242;
|
|
616
639
|
}
|
|
640
|
+
|
|
617
641
|
.icon-creative:before {
|
|
618
642
|
content: "\e99a";
|
|
619
|
-
color: #424242;
|
|
620
643
|
}
|
|
644
|
+
|
|
621
645
|
.icon-clothes:before {
|
|
622
646
|
content: "\e99b";
|
|
623
|
-
color: #424242;
|
|
624
647
|
}
|
|
648
|
+
|
|
625
649
|
.icon-case:before {
|
|
626
650
|
content: "\e99c";
|
|
627
|
-
color: #424242;
|
|
628
651
|
}
|
|
652
|
+
|
|
629
653
|
.icon-add:before {
|
|
630
654
|
content: "\e99d";
|
|
631
|
-
color: #424242;
|
|
632
655
|
}
|
|
656
|
+
|
|
633
657
|
.icon-man:before {
|
|
634
658
|
content: "\e99e";
|
|
635
|
-
color: #424242;
|
|
636
659
|
}
|
|
660
|
+
|
|
637
661
|
.icon-woman:before {
|
|
638
662
|
content: "\e99f";
|
|
639
|
-
color: #424242;
|
|
640
663
|
}
|
|
664
|
+
|
|
641
665
|
.icon-visit-group:before {
|
|
642
666
|
content: "\e9a0";
|
|
643
|
-
color: #424242;
|
|
644
667
|
}
|
|
668
|
+
|
|
645
669
|
.icon-TA-profile:before {
|
|
646
670
|
content: "\e9a1";
|
|
647
|
-
color: #424242;
|
|
648
671
|
}
|
|
672
|
+
|
|
649
673
|
.icon-favicon-default:before {
|
|
650
674
|
content: "\e9a2";
|
|
651
|
-
color: #424242;
|
|
652
675
|
}
|
|
676
|
+
|
|
653
677
|
.icon-unfold:before {
|
|
654
678
|
content: "\e9a3";
|
|
655
|
-
color: #424242;
|
|
656
679
|
}
|
|
680
|
+
|
|
657
681
|
.icon-fold:before {
|
|
658
682
|
content: "\e9a4";
|
|
659
|
-
color: #424242;
|
|
660
683
|
}
|
|
684
|
+
|
|
661
685
|
.icon-chart-scatter-smalldot:before {
|
|
662
686
|
content: "\e9a5";
|
|
663
|
-
color: #424242;
|
|
664
687
|
}
|
|
688
|
+
|
|
665
689
|
.icon-relative:before {
|
|
666
690
|
content: "\e9a6";
|
|
667
|
-
color: #424242;
|
|
668
691
|
}
|
|
692
|
+
|
|
669
693
|
.icon-folder:before {
|
|
670
694
|
content: "\e9a7";
|
|
671
|
-
color: #424242;
|
|
672
695
|
}
|
|
696
|
+
|
|
673
697
|
.icon-target:before {
|
|
674
698
|
content: "\e9a8";
|
|
675
|
-
color: #424242;
|
|
676
699
|
}
|
|
700
|
+
|
|
677
701
|
.icon-folder-check:before {
|
|
678
702
|
content: "\e9a9";
|
|
679
|
-
color: #424242;
|
|
680
703
|
}
|
|
704
|
+
|
|
681
705
|
.icon-star-circle:before {
|
|
682
706
|
content: "\e9aa";
|
|
683
|
-
color: #424242;
|
|
684
707
|
}
|
|
708
|
+
|
|
685
709
|
.icon-edit-name:before {
|
|
686
710
|
content: "\e9ab";
|
|
687
|
-
color: #424242;
|
|
688
711
|
}
|
|
712
|
+
|
|
689
713
|
.icon-finger-point:before {
|
|
690
714
|
content: "\e9ac";
|
|
691
715
|
}
|
|
716
|
+
|
|
692
717
|
.icon-add-person:before {
|
|
693
718
|
content: "\e9ad";
|
|
694
|
-
color: #424242;
|
|
695
719
|
}
|
|
720
|
+
|
|
696
721
|
.icon-check-with-circle-thin:before {
|
|
697
722
|
content: "\e9ae";
|
|
698
723
|
}
|
|
724
|
+
|
|
699
725
|
.icon-check:before {
|
|
700
726
|
content: "\e9af";
|
|
701
727
|
}
|
|
728
|
+
|
|
702
729
|
.icon-caret-right_line:before {
|
|
703
730
|
content: "\e986";
|
|
704
|
-
color: #424242;
|
|
705
731
|
}
|
|
732
|
+
|
|
706
733
|
.icon-caret-left_line:before {
|
|
707
734
|
content: "\e9b0";
|
|
708
735
|
}
|
|
736
|
+
|
|
709
737
|
.icon-caret-down_line:before {
|
|
710
738
|
content: "\e9b1";
|
|
711
739
|
}
|
|
740
|
+
|
|
712
741
|
.icon-caret-up_line:before {
|
|
713
742
|
content: "\e9b2";
|
|
714
743
|
}
|
|
744
|
+
|
|
715
745
|
.icon-report-people:before {
|
|
716
746
|
content: "\e9b3";
|
|
717
|
-
color: #424242;
|
|
718
747
|
}
|
|
748
|
+
|
|
719
749
|
.icon-ad:before {
|
|
720
750
|
content: "\e9b4";
|
|
721
|
-
color: #424242;
|
|
722
751
|
}
|
|
752
|
+
|
|
723
753
|
.icon-re-pack:before {
|
|
724
754
|
content: "\e9b5";
|
|
725
|
-
color: #424242;
|
|
726
755
|
}
|
|
756
|
+
|
|
727
757
|
.icon-draft-thick:before {
|
|
728
758
|
content: "\e9b6";
|
|
729
|
-
color: #424242;
|
|
730
759
|
}
|
|
760
|
+
|
|
731
761
|
.icon-draft-thin:before {
|
|
732
762
|
content: "\e9b7";
|
|
733
|
-
color: #424242;
|
|
734
763
|
}
|
|
764
|
+
|
|
735
765
|
.icon-filter-search:before {
|
|
736
766
|
content: "\e9b8";
|
|
737
|
-
color: #424242;
|
|
738
767
|
}
|
|
768
|
+
|
|
739
769
|
.icon-venn:before {
|
|
740
770
|
content: "\e9b9";
|
|
741
771
|
}
|
|
772
|
+
|
|
742
773
|
.icon-filter-funnel:before {
|
|
743
774
|
content: "\e9ba";
|
|
744
775
|
}
|
|
776
|
+
|
|
745
777
|
.icon-txt:before {
|
|
746
778
|
content: "\e9bb";
|
|
747
|
-
|
|
748
|
-
}
|
|
779
|
+
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
<template lang="pug">
|
|
2
|
-
SLTextInput(
|
|
2
|
+
SLTextInput(
|
|
3
3
|
:size='size'
|
|
4
4
|
:modelValue="modelValue"
|
|
5
5
|
:placeholder="placeholder"
|
|
6
6
|
:lazy="lazy"
|
|
7
|
+
:class='{ "search-input--sm": size === "sm" }'
|
|
7
8
|
@update:modelValue='onInputedValue'
|
|
8
9
|
).search-input
|
|
9
10
|
template(#append)
|
|
@@ -76,12 +77,23 @@ export default defineComponent({
|
|
|
76
77
|
.button-group
|
|
77
78
|
@apply border-primary
|
|
78
79
|
|
|
80
|
+
&.search-input--sm
|
|
81
|
+
.button-group
|
|
82
|
+
@apply s('py-0.75')
|
|
83
|
+
|
|
84
|
+
.btn
|
|
85
|
+
@apply text-sm
|
|
86
|
+
|
|
87
|
+
.input-group-append
|
|
88
|
+
@apply inline-flex border-t border-r border-b border-primary-light rounded-r bg-white
|
|
89
|
+
|
|
79
90
|
.button-group
|
|
80
|
-
@apply inline-flex items-center
|
|
91
|
+
@apply inline-flex items-center s('py-1.75') s('pr-1.75') s('space-x-1.75')
|
|
81
92
|
|
|
82
93
|
&-divider
|
|
83
|
-
@apply
|
|
94
|
+
@apply w-px h-full my-px bg-primary-light
|
|
84
95
|
|
|
85
96
|
.btn
|
|
86
|
-
@apply
|
|
97
|
+
@apply p-0 border-0 text-gray-3 s('focus:outline-none') s('active:outline-none')
|
|
87
98
|
</style>
|
|
99
|
+
|