@itfin/components 2.0.66 → 2.0.68
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/package.json +1 -1
- package/src/assets/scss/_variables.scss +1 -0
- package/src/assets/scss/components/_button.scss +31 -7
- package/src/components/filter/FilterPanel.vue +2 -1
- package/src/components/icon/components/nomi-cash-provider.vue +9 -0
- package/src/components/icon/icons.js +358 -357
- package/src/components/icon/new-icons/cash-provider.svg +8 -0
- package/src/components/view/View.vue +6 -1
package/package.json
CHANGED
|
@@ -143,26 +143,24 @@
|
|
|
143
143
|
&.btn-default {
|
|
144
144
|
--bs-btn-color: #22222B;
|
|
145
145
|
--bs-btn-border-color: #e5e5e5;
|
|
146
|
-
--bs-btn-hover-color:
|
|
147
|
-
--bs-btn-hover-border-color:
|
|
148
|
-
--bs-btn-active-color:
|
|
149
|
-
--bs-btn-active-border-color:
|
|
146
|
+
--bs-btn-hover-color: #1A4A97;
|
|
147
|
+
--bs-btn-hover-border-color: rgba(26, 74, 151, 0.3);
|
|
148
|
+
--bs-btn-active-color: #1A4A97;
|
|
149
|
+
--bs-btn-active-border-color: #1A4A97;
|
|
150
150
|
--bs-btn-disabled-color: var(--bs-btn-color);
|
|
151
151
|
--bs-btn-disabled-bg: transparent;
|
|
152
152
|
--bs-btn-disabled-border-color: var(--bs-btn-border-color);
|
|
153
153
|
|
|
154
154
|
.itf-icon {
|
|
155
|
-
color:
|
|
155
|
+
color: #8E97A5;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
&:hover {
|
|
159
|
-
background-color: var(--bs-btn-border-color);
|
|
160
159
|
.itf-icon {
|
|
161
160
|
color: var(--bs-btn-hover-color);
|
|
162
161
|
}
|
|
163
162
|
}
|
|
164
163
|
&:active, &:focus {
|
|
165
|
-
background-color: color-mix(in srgb, black 5%, var(--bs-btn-border-color));
|
|
166
164
|
.itf-icon {
|
|
167
165
|
color: var(--bs-btn-active-color);
|
|
168
166
|
}
|
|
@@ -170,9 +168,35 @@
|
|
|
170
168
|
|
|
171
169
|
&.btn-white {
|
|
172
170
|
--bs-btn-color: #ffffff;
|
|
171
|
+
--bs-btn-bg: transparent;
|
|
173
172
|
--bs-btn-border-color: rgba(255, 255, 255, 0.5);
|
|
174
173
|
--bs-btn-hover-color: #22222b;
|
|
174
|
+
--bs-btn-hover-bg: rgba(255, 255, 255, 0.5);
|
|
175
|
+
--bs-btn-hover-border-color: rgba(255, 255, 255, 0.5);
|
|
175
176
|
--bs-btn-active-color: #22222b;
|
|
177
|
+
--bs-btn-active-bg: color-mix(in srgb, black 10%, var(--bs-btn-hover-bg));
|
|
178
|
+
--bs-btn-active-border-color: rgba(255, 255, 255, 0.5);
|
|
179
|
+
|
|
180
|
+
.itf-icon {
|
|
181
|
+
color: var(--bs-btn-color);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
&:hover {
|
|
185
|
+
background-color: var(--bs-btn-hover-bg);
|
|
186
|
+
border-color: var(--bs-btn-hover-border-color);
|
|
187
|
+
|
|
188
|
+
.itf-icon {
|
|
189
|
+
color: var(--bs-btn-hover-color);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
&:active, &:focus {
|
|
193
|
+
background-color: var(--bs-btn-active-bg);
|
|
194
|
+
border-color: var(--bs-btn-active-border-color);
|
|
195
|
+
|
|
196
|
+
.itf-icon {
|
|
197
|
+
color: var(--bs-btn-active-color);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
176
200
|
}
|
|
177
201
|
}
|
|
178
202
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="itf-filter-panel d-flex flex-column align-items-start" :class="{'gap-3': !filtersOnly}">
|
|
2
|
+
<div class="itf-filter-panel d-flex flex-column align-items-start" :class="{'gap-3': !filtersOnly, 'd-none': !visible}">
|
|
3
3
|
<div v-if="!filtersOnly" class="d-flex gap-2 justify-content-between w-100">
|
|
4
4
|
<slot name="search">
|
|
5
5
|
<div>
|
|
@@ -143,6 +143,7 @@ class FilterPanel extends Vue {
|
|
|
143
143
|
@Prop({ type: Boolean, default: true }) showFilter;
|
|
144
144
|
@Prop({ type: Boolean, default: false }) filtersOnly;
|
|
145
145
|
@Prop(Boolean) mini;
|
|
146
|
+
@Prop({ type: Boolean, default: true }) visible;
|
|
146
147
|
@Prop({ type: String, default: function() { return this.$t('components.filter.search'); } }) searchPlaceholder;
|
|
147
148
|
|
|
148
149
|
filter = {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<template><svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32.000000" height="32.000000" fill="none">
|
|
2
|
+
<rect id="left icon" width="32.000000" height="32.000000" x="0.000000" y="0.000000" fill="rgb(228,233,237)" fill-opacity="0" />
|
|
3
|
+
<g id="Group">
|
|
4
|
+
<path id="Vector" d="M30.3379 20.2422C29.8761 19.6502 28.846 19.1529 26.7502 20.3843C26.9397 19.5199 26.2529 18.9753 25.436 18.9753C24.7137 18.9753 23.873 19.1647 23.1981 19.8396C22.2391 18.5727 21.2445 18.7266 19.3145 19.9225C18.5804 20.3843 17.9292 20.775 17.4437 21.0473C17.3135 21.1184 17.2069 21.1776 17.1122 21.2249C17.3017 21.2605 17.4911 21.296 17.7042 21.296C20.4157 21.296 22.5469 21.296 22.5469 23.6404C22.5469 25.4401 20.4512 25.9848 19.3382 26.0084L15.4901 26.0084C13.418 26.0084 11.3933 23.8298 11.3933 23.8298C11.3933 23.8298 13.7851 24.8126 15.4901 24.8126L19.3263 24.8126C19.3382 24.8126 21.3747 24.7297 21.3747 23.6404C21.3747 22.6339 20.3446 22.4682 18.7225 22.4682C16.0703 22.4682 14.7915 21.2605 14.7915 21.2605C14.7915 21.2605 12.7313 19.7567 12.0919 19.3542C10.6 18.4188 9.78304 17.9333 7.08344 18.9634C5.41395 19.6147 2.66699 20.9171 2.66699 20.9171L6.00597 28.3291L7.58073 27.3701C8.51612 26.7662 9.40414 26.7899 10.6474 27.3701C12.0445 28.0213 13.9745 28.6488 15.3243 29.0869C17.3727 29.7381 17.7161 29.6434 19.0659 28.8738C20.2144 28.2107 28.3487 23.4036 29.2012 22.7997C30.5273 21.8525 30.9417 21.0355 30.3379 20.2422Z" fill="currentColor" fill-rule="nonzero" />
|
|
5
|
+
<path id="Vector" d="M17.2661 6.03394C14.3416 6.03394 11.9854 8.402 11.9854 11.3147C11.9854 14.2393 14.3534 16.5955 17.2661 16.5955C20.1789 16.5955 22.5469 14.2274 22.5469 11.3147C22.5469 8.402 20.1789 6.03394 17.2661 6.03394ZM18.0594 13.7065L16.461 13.7065L16.461 10.5214L15.2178 10.5214L16.8162 8.92298L18.0594 8.92298L18.0594 13.7065Z" fill="currentColor" fill-rule="nonzero" />
|
|
6
|
+
<path id="Vector" d="M21.9664 1.33325C19.8825 1.33325 18.1775 2.88434 17.917 4.89719C19.2076 5.02744 20.3916 5.53657 21.3507 6.31803L21.3507 4.82615L20.3798 4.82615L21.623 3.58292L22.5939 3.58292L22.5939 7.31262L22.3334 7.31262C22.7952 7.90464 23.1623 8.5677 23.4109 9.28996C24.9738 8.70978 26.0868 7.2179 26.0868 5.45369C26.075 3.1685 24.2397 1.33325 21.9664 1.33325Z" fill="currentColor" fill-rule="nonzero" />
|
|
7
|
+
</g>
|
|
8
|
+
</svg>
|
|
9
|
+
</template>
|
|
@@ -1,563 +1,564 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
'align_vertical': () => import('./components/align_vertical.vue'),
|
|
3
3
|
'align_horizontal': () => import('./components/align_horizontal.vue'),
|
|
4
|
-
'angle': () => import('./components/angle.vue'),
|
|
5
|
-
'airplay': () => import('./components/airplay.vue'),
|
|
6
|
-
'arrow_bottom_right': () => import('./components/arrow_bottom_right.vue'),
|
|
7
4
|
'alarm_clock': () => import('./components/alarm_clock.vue'),
|
|
8
|
-
'arrow_down': () => import('./components/arrow_down.vue'),
|
|
9
5
|
'arrow_bottom_left': () => import('./components/arrow_bottom_left.vue'),
|
|
10
|
-
'
|
|
11
|
-
'
|
|
12
|
-
'arrow_right': () => import('./components/arrow_right.vue'),
|
|
6
|
+
'arrow_bottom_right': () => import('./components/arrow_bottom_right.vue'),
|
|
7
|
+
'arrow_down': () => import('./components/arrow_down.vue'),
|
|
13
8
|
'arrow_right_circle': () => import('./components/arrow_right_circle.vue'),
|
|
9
|
+
'angle': () => import('./components/angle.vue'),
|
|
10
|
+
'arrow_down_circle': () => import('./components/arrow_down_circle.vue'),
|
|
11
|
+
'arrow_right': () => import('./components/arrow_right.vue'),
|
|
12
|
+
'archive': () => import('./components/archive.vue'),
|
|
13
|
+
'arrow_left': () => import('./components/arrow_left.vue'),
|
|
14
14
|
'arrow_top_left': () => import('./components/arrow_top_left.vue'),
|
|
15
|
+
'arrow_left_circle': () => import('./components/arrow_left_circle.vue'),
|
|
15
16
|
'arrow_up_circle': () => import('./components/arrow_up_circle.vue'),
|
|
16
|
-
'
|
|
17
|
+
'airplay': () => import('./components/airplay.vue'),
|
|
17
18
|
'arrow_top_right': () => import('./components/arrow_top_right.vue'),
|
|
19
|
+
'backward10': () => import('./components/backward10.vue'),
|
|
18
20
|
'battery_75': () => import('./components/battery_75.vue'),
|
|
21
|
+
'backward': () => import('./components/backward.vue'),
|
|
19
22
|
'audio_wave': () => import('./components/audio_wave.vue'),
|
|
20
|
-
'backspace': () => import('./components/backspace.vue'),
|
|
21
|
-
'bag': () => import('./components/bag.vue'),
|
|
22
23
|
'arrow_up': () => import('./components/arrow_up.vue'),
|
|
23
|
-
'backward10': () => import('./components/backward10.vue'),
|
|
24
|
-
'bell_disabled': () => import('./components/bell_disabled.vue'),
|
|
25
|
-
'battery_empty': () => import('./components/battery_empty.vue'),
|
|
26
|
-
'bell': () => import('./components/bell.vue'),
|
|
27
|
-
'battery_low': () => import('./components/battery_low.vue'),
|
|
28
24
|
'battery_charging': () => import('./components/battery_charging.vue'),
|
|
29
|
-
'
|
|
30
|
-
'bell_snooze': () => import('./components/bell_snooze.vue'),
|
|
25
|
+
'battery_low': () => import('./components/battery_low.vue'),
|
|
31
26
|
'battery_full': () => import('./components/battery_full.vue'),
|
|
32
|
-
'bluetooth': () => import('./components/bluetooth.vue'),
|
|
33
|
-
'book_closed': () => import('./components/book_closed.vue'),
|
|
34
|
-
'bookmark': () => import('./components/bookmark.vue'),
|
|
35
|
-
'bell_ringing': () => import('./components/bell_ringing.vue'),
|
|
36
|
-
'box_download': () => import('./components/box_download.vue'),
|
|
37
|
-
'bookmark_book': () => import('./components/bookmark_book.vue'),
|
|
38
|
-
'book': () => import('./components/book.vue'),
|
|
39
|
-
'archive': () => import('./components/archive.vue'),
|
|
40
|
-
'backward': () => import('./components/backward.vue'),
|
|
41
27
|
'battery_half': () => import('./components/battery_half.vue'),
|
|
42
|
-
'
|
|
28
|
+
'book_text': () => import('./components/book_text.vue'),
|
|
29
|
+
'backspace': () => import('./components/backspace.vue'),
|
|
30
|
+
'bell_snooze': () => import('./components/bell_snooze.vue'),
|
|
31
|
+
'book': () => import('./components/book.vue'),
|
|
32
|
+
'bell': () => import('./components/bell.vue'),
|
|
33
|
+
'bell_ringing': () => import('./components/bell_ringing.vue'),
|
|
34
|
+
'blocked': () => import('./components/blocked.vue'),
|
|
35
|
+
'bag': () => import('./components/bag.vue'),
|
|
43
36
|
'briefcase': () => import('./components/briefcase.vue'),
|
|
44
|
-
'
|
|
37
|
+
'bluetooth': () => import('./components/bluetooth.vue'),
|
|
38
|
+
'bell_disabled': () => import('./components/bell_disabled.vue'),
|
|
39
|
+
'box_download': () => import('./components/box_download.vue'),
|
|
40
|
+
'bookmark': () => import('./components/bookmark.vue'),
|
|
41
|
+
'calendar': () => import('./components/calendar.vue'),
|
|
45
42
|
'box_open': () => import('./components/box_open.vue'),
|
|
46
|
-
'
|
|
47
|
-
'browser': () => import('./components/browser.vue'),
|
|
48
|
-
'calendar_add': () => import('./components/calendar_add.vue'),
|
|
43
|
+
'bookmark_book': () => import('./components/bookmark_book.vue'),
|
|
49
44
|
'button_add': () => import('./components/button_add.vue'),
|
|
50
|
-
'
|
|
45
|
+
'calculator': () => import('./components/calculator.vue'),
|
|
46
|
+
'calendar_date': () => import('./components/calendar_date.vue'),
|
|
47
|
+
'calendar_days': () => import('./components/calendar_days.vue'),
|
|
51
48
|
'browser_alt': () => import('./components/browser_alt.vue'),
|
|
49
|
+
'button_minus': () => import('./components/button_minus.vue'),
|
|
52
50
|
'calendar_day': () => import('./components/calendar_day.vue'),
|
|
53
|
-
'
|
|
54
|
-
'calendar_days': () => import('./components/calendar_days.vue'),
|
|
51
|
+
'calendar_add': () => import('./components/calendar_add.vue'),
|
|
55
52
|
'calendar_move': () => import('./components/calendar_move.vue'),
|
|
56
|
-
'
|
|
57
|
-
'
|
|
53
|
+
'camera_alt': () => import('./components/camera_alt.vue'),
|
|
54
|
+
'box': () => import('./components/box.vue'),
|
|
55
|
+
'calendar_remove': () => import('./components/calendar_remove.vue'),
|
|
58
56
|
'camera_noflash_alt': () => import('./components/camera_noflash_alt.vue'),
|
|
59
|
-
'
|
|
60
|
-
'card_timeline': () => import('./components/card_timeline.vue'),
|
|
61
|
-
'calendar_split': () => import('./components/calendar_split.vue'),
|
|
57
|
+
'branch': () => import('./components/branch.vue'),
|
|
62
58
|
'calendar_last_day': () => import('./components/calendar_last_day.vue'),
|
|
63
|
-
'calendar': () => import('./components/calendar.vue'),
|
|
64
59
|
'card_view': () => import('./components/card_view.vue'),
|
|
65
|
-
'
|
|
66
|
-
'
|
|
67
|
-
'
|
|
68
|
-
'check_circle': () => import('./components/check_circle.vue'),
|
|
60
|
+
'calendar_split': () => import('./components/calendar_split.vue'),
|
|
61
|
+
'calendar_week': () => import('./components/calendar_week.vue'),
|
|
62
|
+
'card_timeline': () => import('./components/card_timeline.vue'),
|
|
69
63
|
'carousel': () => import('./components/carousel.vue'),
|
|
70
|
-
'
|
|
64
|
+
'camera_noflash': () => import('./components/camera_noflash.vue'),
|
|
65
|
+
'cast': () => import('./components/cast.vue'),
|
|
66
|
+
'check_circle': () => import('./components/check_circle.vue'),
|
|
71
67
|
'chain': () => import('./components/chain.vue'),
|
|
72
|
-
'chevron_down': () => import('./components/chevron_down.vue'),
|
|
73
|
-
'checkbox_empty': () => import('./components/checkbox_empty.vue'),
|
|
74
|
-
'checkbox_checked': () => import('./components/checkbox_checked.vue'),
|
|
75
68
|
'chevron_close': () => import('./components/chevron_close.vue'),
|
|
76
|
-
'
|
|
77
|
-
'
|
|
78
|
-
'
|
|
69
|
+
'capture': () => import('./components/capture.vue'),
|
|
70
|
+
'calendar_month': () => import('./components/calendar_month.vue'),
|
|
71
|
+
'cart': () => import('./components/cart.vue'),
|
|
72
|
+
'check': () => import('./components/check.vue'),
|
|
79
73
|
'check_circle_outside': () => import('./components/check_circle_outside.vue'),
|
|
74
|
+
'checkbox_empty': () => import('./components/checkbox_empty.vue'),
|
|
75
|
+
'chevron_down_double': () => import('./components/chevron_down_double.vue'),
|
|
76
|
+
'chevron_left': () => import('./components/chevron_left.vue'),
|
|
80
77
|
'chevron_down_circle': () => import('./components/chevron_down_circle.vue'),
|
|
81
|
-
'
|
|
82
|
-
'
|
|
78
|
+
'chevron_down': () => import('./components/chevron_down.vue'),
|
|
79
|
+
'chevron_left_double': () => import('./components/chevron_left_double.vue'),
|
|
80
|
+
'camera': () => import('./components/camera.vue'),
|
|
83
81
|
'chevron_right': () => import('./components/chevron_right.vue'),
|
|
84
|
-
'
|
|
85
|
-
'
|
|
82
|
+
'chat_add': () => import('./components/chat_add.vue'),
|
|
83
|
+
'checkbox_checked': () => import('./components/checkbox_checked.vue'),
|
|
84
|
+
'book_closed': () => import('./components/book_closed.vue'),
|
|
86
85
|
'chevron_left_circle': () => import('./components/chevron_left_circle.vue'),
|
|
87
|
-
'
|
|
88
|
-
'
|
|
89
|
-
'
|
|
90
|
-
'circle_menu': () => import('./components/circle_menu.vue'),
|
|
86
|
+
'chevron_right_double': () => import('./components/chevron_right_double.vue'),
|
|
87
|
+
'chevron_open': () => import('./components/chevron_open.vue'),
|
|
88
|
+
'chevron_right_circle': () => import('./components/chevron_right_circle.vue'),
|
|
91
89
|
'chevron_up': () => import('./components/chevron_up.vue'),
|
|
90
|
+
'clipboard_check': () => import('./components/clipboard_check.vue'),
|
|
91
|
+
'circle': () => import('./components/circle.vue'),
|
|
92
|
+
'chevron_up_double': () => import('./components/chevron_up_double.vue'),
|
|
92
93
|
'circle_split': () => import('./components/circle_split.vue'),
|
|
93
|
-
'chevron_right_double': () => import('./components/chevron_right_double.vue'),
|
|
94
|
-
'chevron_left': () => import('./components/chevron_left.vue'),
|
|
95
94
|
'clipboard': () => import('./components/clipboard.vue'),
|
|
96
|
-
'clipboard_copy': () => import('./components/clipboard_copy.vue'),
|
|
97
|
-
'close': () => import('./components/close.vue'),
|
|
98
95
|
'clock': () => import('./components/clock.vue'),
|
|
96
|
+
'clipboard_cross': () => import('./components/clipboard_cross.vue'),
|
|
97
|
+
'clipboard_copy': () => import('./components/clipboard_copy.vue'),
|
|
98
|
+
'clipboard_add': () => import('./components/clipboard_add.vue'),
|
|
99
|
+
'cloud': () => import('./components/cloud.vue'),
|
|
99
100
|
'cloud_download': () => import('./components/cloud_download.vue'),
|
|
100
|
-
'
|
|
101
|
+
'circle_menu': () => import('./components/circle_menu.vue'),
|
|
102
|
+
'cloud_disconnect': () => import('./components/cloud_disconnect.vue'),
|
|
101
103
|
'clipboard_remove': () => import('./components/clipboard_remove.vue'),
|
|
102
|
-
'cloud': () => import('./components/cloud.vue'),
|
|
103
104
|
'code': () => import('./components/code.vue'),
|
|
104
|
-
'clipboard_cross': () => import('./components/clipboard_cross.vue'),
|
|
105
|
-
'cloud_disconnect': () => import('./components/cloud_disconnect.vue'),
|
|
106
|
-
'circle': () => import('./components/circle.vue'),
|
|
107
|
-
'clipboard_check': () => import('./components/clipboard_check.vue'),
|
|
108
105
|
'cloud_upload_alt': () => import('./components/cloud_upload_alt.vue'),
|
|
109
|
-
'coin': () => import('./components/coin.vue'),
|
|
110
|
-
'component_add': () => import('./components/component_add.vue'),
|
|
111
|
-
'clipboard_add': () => import('./components/clipboard_add.vue'),
|
|
112
|
-
'create': () => import('./components/create.vue'),
|
|
113
106
|
'cloud_upload': () => import('./components/cloud_upload.vue'),
|
|
107
|
+
'cloud_download_alt': () => import('./components/cloud_download_alt.vue'),
|
|
108
|
+
'clipboard_notes': () => import('./components/clipboard_notes.vue'),
|
|
109
|
+
'connect': () => import('./components/connect.vue'),
|
|
114
110
|
'chevron_up_circle': () => import('./components/chevron_up_circle.vue'),
|
|
111
|
+
'compass': () => import('./components/compass.vue'),
|
|
112
|
+
'close': () => import('./components/close.vue'),
|
|
113
|
+
'coin': () => import('./components/coin.vue'),
|
|
115
114
|
'contacts': () => import('./components/contacts.vue'),
|
|
116
|
-
'
|
|
117
|
-
'crosshair': () => import('./components/crosshair.vue'),
|
|
118
|
-
'cross': () => import('./components/cross.vue'),
|
|
119
|
-
'cube': () => import('./components/cube.vue'),
|
|
120
|
-
'credit_card': () => import('./components/credit_card.vue'),
|
|
121
|
-
'contract': () => import('./components/contract.vue'),
|
|
115
|
+
'battery_empty': () => import('./components/battery_empty.vue'),
|
|
122
116
|
'crop': () => import('./components/crop.vue'),
|
|
117
|
+
'contract': () => import('./components/contract.vue'),
|
|
118
|
+
'crosshair': () => import('./components/crosshair.vue'),
|
|
119
|
+
'component_add': () => import('./components/component_add.vue'),
|
|
120
|
+
'create': () => import('./components/create.vue'),
|
|
123
121
|
'coffee': () => import('./components/coffee.vue'),
|
|
124
|
-
'disc': () => import('./components/disc.vue'),
|
|
125
122
|
'diamond': () => import('./components/diamond.vue'),
|
|
126
|
-
'compass': () => import('./components/compass.vue'),
|
|
127
|
-
'cylinder': () => import('./components/cylinder.vue'),
|
|
128
|
-
'connect': () => import('./components/connect.vue'),
|
|
129
|
-
'cloud_download_alt': () => import('./components/cloud_download_alt.vue'),
|
|
130
123
|
'coins': () => import('./components/coins.vue'),
|
|
124
|
+
'cross_circle': () => import('./components/cross_circle.vue'),
|
|
125
|
+
'cube': () => import('./components/cube.vue'),
|
|
126
|
+
'disc': () => import('./components/disc.vue'),
|
|
127
|
+
'directions': () => import('./components/directions.vue'),
|
|
128
|
+
'document_justified': () => import('./components/document_justified.vue'),
|
|
131
129
|
'document_stack': () => import('./components/document_stack.vue'),
|
|
130
|
+
'download_alt': () => import('./components/download_alt.vue'),
|
|
131
|
+
'cross': () => import('./components/cross.vue'),
|
|
132
132
|
'database': () => import('./components/database.vue'),
|
|
133
|
+
'document': () => import('./components/document.vue'),
|
|
133
134
|
'display': () => import('./components/display.vue'),
|
|
134
|
-
'document_justified': () => import('./components/document_justified.vue'),
|
|
135
|
-
'document_list': () => import('./components/document_list.vue'),
|
|
136
|
-
'door': () => import('./components/door.vue'),
|
|
137
|
-
'document_words': () => import('./components/document_words.vue'),
|
|
138
135
|
'display_alt': () => import('./components/display_alt.vue'),
|
|
139
|
-
'download_alt': () => import('./components/download_alt.vue'),
|
|
140
|
-
'directions': () => import('./components/directions.vue'),
|
|
141
|
-
'download': () => import('./components/download.vue'),
|
|
142
136
|
'downward': () => import('./components/downward.vue'),
|
|
137
|
+
'cylinder': () => import('./components/cylinder.vue'),
|
|
143
138
|
'drag_vertical': () => import('./components/drag_vertical.vue'),
|
|
139
|
+
'drag': () => import('./components/drag.vue'),
|
|
140
|
+
'document_words': () => import('./components/document_words.vue'),
|
|
141
|
+
'document_list': () => import('./components/document_list.vue'),
|
|
144
142
|
'door_alt': () => import('./components/door_alt.vue'),
|
|
143
|
+
'credit_card': () => import('./components/credit_card.vue'),
|
|
144
|
+
'download': () => import('./components/download.vue'),
|
|
145
|
+
'enter': () => import('./components/enter.vue'),
|
|
145
146
|
'duplicate': () => import('./components/duplicate.vue'),
|
|
146
|
-
'
|
|
147
|
-
'
|
|
148
|
-
'
|
|
147
|
+
'door': () => import('./components/door.vue'),
|
|
148
|
+
'enter_alt': () => import('./components/enter_alt.vue'),
|
|
149
|
+
'browser': () => import('./components/browser.vue'),
|
|
149
150
|
'expand_height': () => import('./components/expand_height.vue'),
|
|
151
|
+
'episodes': () => import('./components/episodes.vue'),
|
|
150
152
|
'drag_circle': () => import('./components/drag_circle.vue'),
|
|
151
|
-
'duplicate_alt': () => import('./components/duplicate_alt.vue'),
|
|
152
|
-
'eye_no': () => import('./components/eye_no.vue'),
|
|
153
153
|
'external': () => import('./components/external.vue'),
|
|
154
|
-
'eye': () => import('./components/eye.vue'),
|
|
155
|
-
'expand': () => import('./components/expand.vue'),
|
|
156
|
-
'fi_fingerprint': () => import('./components/fi_fingerprint.vue'),
|
|
157
|
-
'drag': () => import('./components/drag.vue'),
|
|
158
|
-
'eye_closed': () => import('./components/eye_closed.vue'),
|
|
159
154
|
'face_delighted': () => import('./components/face_delighted.vue'),
|
|
160
|
-
'
|
|
161
|
-
'document': () => import('./components/document.vue'),
|
|
162
|
-
'face_sad': () => import('./components/face_sad.vue'),
|
|
163
|
-
'files_stack': () => import('./components/files_stack.vue'),
|
|
164
|
-
'enter_alt': () => import('./components/enter_alt.vue'),
|
|
165
|
-
'enter': () => import('./components/enter.vue'),
|
|
155
|
+
'duplicate_alt': () => import('./components/duplicate_alt.vue'),
|
|
166
156
|
'expand_width': () => import('./components/expand_width.vue'),
|
|
167
|
-
'
|
|
168
|
-
'
|
|
169
|
-
'
|
|
157
|
+
'exit_left': () => import('./components/exit_left.vue'),
|
|
158
|
+
'fi_fingerprint': () => import('./components/fi_fingerprint.vue'),
|
|
159
|
+
'face_sad': () => import('./components/face_sad.vue'),
|
|
170
160
|
'files_history': () => import('./components/files_history.vue'),
|
|
171
|
-
'
|
|
172
|
-
'
|
|
161
|
+
'file_download': () => import('./components/file_download.vue'),
|
|
162
|
+
'eye_closed': () => import('./components/eye_closed.vue'),
|
|
163
|
+
'face_happy': () => import('./components/face_happy.vue'),
|
|
164
|
+
'files_multi': () => import('./components/files_multi.vue'),
|
|
165
|
+
'eye_no': () => import('./components/eye_no.vue'),
|
|
173
166
|
'filter_circle': () => import('./components/filter_circle.vue'),
|
|
174
|
-
'
|
|
167
|
+
'filter_completed': () => import('./components/filter_completed.vue'),
|
|
175
168
|
'face_neutral': () => import('./components/face_neutral.vue'),
|
|
176
|
-
'
|
|
177
|
-
'
|
|
178
|
-
'flame': () => import('./components/flame.vue'),
|
|
179
|
-
'fingerprint': () => import('./components/fingerprint.vue'),
|
|
180
|
-
'folder_minus': () => import('./components/folder_minus.vue'),
|
|
169
|
+
'expand': () => import('./components/expand.vue'),
|
|
170
|
+
'filter_all': () => import('./components/filter_all.vue'),
|
|
181
171
|
'film': () => import('./components/film.vue'),
|
|
182
|
-
'folder_add': () => import('./components/folder_add.vue'),
|
|
183
172
|
'filter_not_started': () => import('./components/filter_not_started.vue'),
|
|
184
173
|
'filter_single': () => import('./components/filter_single.vue'),
|
|
185
|
-
'
|
|
186
|
-
'
|
|
187
|
-
'
|
|
188
|
-
'
|
|
174
|
+
'file_upload': () => import('./components/file_upload.vue'),
|
|
175
|
+
'files_stack': () => import('./components/files_stack.vue'),
|
|
176
|
+
'filter_overdue': () => import('./components/filter_overdue.vue'),
|
|
177
|
+
'eye': () => import('./components/eye.vue'),
|
|
178
|
+
'filtering': () => import('./components/filtering.vue'),
|
|
179
|
+
'floppy': () => import('./components/floppy.vue'),
|
|
189
180
|
'flag': () => import('./components/flag.vue'),
|
|
181
|
+
'folder_open': () => import('./components/folder_open.vue'),
|
|
182
|
+
'flame_alt': () => import('./components/flame_alt.vue'),
|
|
190
183
|
'forward10': () => import('./components/forward10.vue'),
|
|
191
|
-
'
|
|
184
|
+
'flame': () => import('./components/flame.vue'),
|
|
185
|
+
'filter': () => import('./components/filter.vue'),
|
|
192
186
|
'flip_view': () => import('./components/flip_view.vue'),
|
|
187
|
+
'fingerprint': () => import('./components/fingerprint.vue'),
|
|
188
|
+
'folder_minus': () => import('./components/folder_minus.vue'),
|
|
189
|
+
'gift': () => import('./components/gift.vue'),
|
|
190
|
+
'forward': () => import('./components/forward.vue'),
|
|
191
|
+
'fullscreen': () => import('./components/fullscreen.vue'),
|
|
192
|
+
'gauge': () => import('./components/gauge.vue'),
|
|
193
|
+
'fork_git': () => import('./components/fork_git.vue'),
|
|
193
194
|
'globe': () => import('./components/globe.vue'),
|
|
194
|
-
'folder_closed': () => import('./components/folder_closed.vue'),
|
|
195
|
-
'floppy': () => import('./components/floppy.vue'),
|
|
196
|
-
'forward_alt': () => import('./components/forward_alt.vue'),
|
|
197
|
-
'funnel': () => import('./components/funnel.vue'),
|
|
198
|
-
'gps': () => import('./components/gps.vue'),
|
|
199
195
|
'grab': () => import('./components/grab.vue'),
|
|
200
|
-
'graph_bar': () => import('./components/graph_bar.vue'),
|
|
201
196
|
'grid': () => import('./components/grid.vue'),
|
|
202
|
-
'
|
|
203
|
-
'
|
|
204
|
-
'grid_circles_add': () => import('./components/grid_circles_add.vue'),
|
|
205
|
-
'gift': () => import('./components/gift.vue'),
|
|
206
|
-
'grid_circles': () => import('./components/grid_circles.vue'),
|
|
207
|
-
'hand': () => import('./components/hand.vue'),
|
|
208
|
-
'grid_small': () => import('./components/grid_small.vue'),
|
|
197
|
+
'graph_bar': () => import('./components/graph_bar.vue'),
|
|
198
|
+
'gps': () => import('./components/gps.vue'),
|
|
209
199
|
'graph_box': () => import('./components/graph_box.vue'),
|
|
210
|
-
'
|
|
200
|
+
'harddrive': () => import('./components/harddrive.vue'),
|
|
201
|
+
'grid_circles': () => import('./components/grid_circles.vue'),
|
|
211
202
|
'heart_rate': () => import('./components/heart_rate.vue'),
|
|
212
|
-
'grid_squares': () => import('./components/grid_squares.vue'),
|
|
213
|
-
'forward': () => import('./components/forward.vue'),
|
|
214
|
-
'heart_remove': () => import('./components/heart_remove.vue'),
|
|
215
|
-
'heart': () => import('./components/heart.vue'),
|
|
216
203
|
'graph_increase': () => import('./components/graph_increase.vue'),
|
|
217
|
-
'
|
|
218
|
-
'
|
|
219
|
-
'
|
|
220
|
-
'home_check': () => import('./components/home_check.vue'),
|
|
221
|
-
'home_door': () => import('./components/home_door.vue'),
|
|
204
|
+
'funnel': () => import('./components/funnel.vue'),
|
|
205
|
+
'exit_right': () => import('./components/exit_right.vue'),
|
|
206
|
+
'folder_add': () => import('./components/folder_add.vue'),
|
|
222
207
|
'home_alt': () => import('./components/home_alt.vue'),
|
|
223
|
-
'
|
|
224
|
-
'
|
|
225
|
-
'
|
|
226
|
-
'home': () => import('./components/home.vue'),
|
|
227
|
-
'jump_backward': () => import('./components/jump_backward.vue'),
|
|
228
|
-
'iphone_portrait': () => import('./components/iphone_portrait.vue'),
|
|
229
|
-
'jump_forward': () => import('./components/jump_forward.vue'),
|
|
230
|
-
'jump_left': () => import('./components/jump_left.vue'),
|
|
231
|
-
'laptop': () => import('./components/laptop.vue'),
|
|
232
|
-
'keyboard': () => import('./components/keyboard.vue'),
|
|
208
|
+
'heart_remove': () => import('./components/heart_remove.vue'),
|
|
209
|
+
'folder_closed': () => import('./components/folder_closed.vue'),
|
|
210
|
+
'grid_circles_add': () => import('./components/grid_circles_add.vue'),
|
|
233
211
|
'import': () => import('./components/import.vue'),
|
|
234
|
-
'
|
|
212
|
+
'forward_alt': () => import('./components/forward_alt.vue'),
|
|
213
|
+
'frame': () => import('./components/frame.vue'),
|
|
214
|
+
'home': () => import('./components/home.vue'),
|
|
235
215
|
'height': () => import('./components/height.vue'),
|
|
236
|
-
'
|
|
216
|
+
'hierarchy': () => import('./components/hierarchy.vue'),
|
|
217
|
+
'inbox': () => import('./components/inbox.vue'),
|
|
218
|
+
'jump_backward': () => import('./components/jump_backward.vue'),
|
|
219
|
+
'heart': () => import('./components/heart.vue'),
|
|
220
|
+
'grid_squares': () => import('./components/grid_squares.vue'),
|
|
237
221
|
'jump_right': () => import('./components/jump_right.vue'),
|
|
238
|
-
'
|
|
239
|
-
'
|
|
222
|
+
'iphone_landscape': () => import('./components/iphone_landscape.vue'),
|
|
223
|
+
'laptop': () => import('./components/laptop.vue'),
|
|
224
|
+
'home_door': () => import('./components/home_door.vue'),
|
|
225
|
+
'jump_left': () => import('./components/jump_left.vue'),
|
|
226
|
+
'filter_ongoing': () => import('./components/filter_ongoing.vue'),
|
|
240
227
|
'lightning': () => import('./components/lightning.vue'),
|
|
241
|
-
'
|
|
242
|
-
'
|
|
228
|
+
'hash': () => import('./components/hash.vue'),
|
|
229
|
+
'grid_squares_add': () => import('./components/grid_squares_add.vue'),
|
|
230
|
+
'lineweight': () => import('./components/lineweight.vue'),
|
|
231
|
+
'jump_forward': () => import('./components/jump_forward.vue'),
|
|
232
|
+
'inbox_alt': () => import('./components/inbox_alt.vue'),
|
|
243
233
|
'lightbulb': () => import('./components/lightbulb.vue'),
|
|
244
|
-
'
|
|
245
|
-
'link_horizontal': () => import('./components/link_horizontal.vue'),
|
|
246
|
-
'mail_delete': () => import('./components/mail_delete.vue'),
|
|
247
|
-
'lock_open': () => import('./components/lock_open.vue'),
|
|
234
|
+
'link_alt': () => import('./components/link_alt.vue'),
|
|
248
235
|
'link_vertical': () => import('./components/link_vertical.vue'),
|
|
236
|
+
'keyboard': () => import('./components/keyboard.vue'),
|
|
237
|
+
'list_add': () => import('./components/list_add.vue'),
|
|
238
|
+
'link_horizontal': () => import('./components/link_horizontal.vue'),
|
|
239
|
+
'lightning_alt': () => import('./components/lightning_alt.vue'),
|
|
240
|
+
'hand': () => import('./components/hand.vue'),
|
|
249
241
|
'lightbulb_on': () => import('./components/lightbulb_on.vue'),
|
|
250
|
-
'
|
|
242
|
+
'link': () => import('./components/link.vue'),
|
|
243
|
+
'list_numbered': () => import('./components/list_numbered.vue'),
|
|
244
|
+
'list': () => import('./components/list.vue'),
|
|
251
245
|
'location': () => import('./components/location.vue'),
|
|
252
|
-
'
|
|
253
|
-
'list_add': () => import('./components/list_add.vue'),
|
|
254
|
-
'menu_hamburger': () => import('./components/menu_hamburger.vue'),
|
|
246
|
+
'lock': () => import('./components/lock.vue'),
|
|
255
247
|
'mail_add': () => import('./components/mail_add.vue'),
|
|
256
|
-
'
|
|
257
|
-
'
|
|
248
|
+
'grid_small': () => import('./components/grid_small.vue'),
|
|
249
|
+
'link_broken': () => import('./components/link_broken.vue'),
|
|
250
|
+
'loader': () => import('./components/loader.vue'),
|
|
251
|
+
'maximise': () => import('./components/maximise.vue'),
|
|
258
252
|
'mail_new': () => import('./components/mail_new.vue'),
|
|
259
|
-
'
|
|
260
|
-
'
|
|
253
|
+
'mail_delete': () => import('./components/mail_delete.vue'),
|
|
254
|
+
'mail_open': () => import('./components/mail_open.vue'),
|
|
261
255
|
'mail_minus': () => import('./components/mail_minus.vue'),
|
|
262
|
-
'message': () => import('./components/message.vue'),
|
|
263
|
-
'menu_horizontal': () => import('./components/menu_horizontal.vue'),
|
|
264
|
-
'microphone_disabled': () => import('./components/microphone_disabled.vue'),
|
|
265
256
|
'message_writing': () => import('./components/message_writing.vue'),
|
|
266
|
-
'
|
|
267
|
-
'
|
|
257
|
+
'microphone': () => import('./components/microphone.vue'),
|
|
258
|
+
'menu_horizontal': () => import('./components/menu_horizontal.vue'),
|
|
268
259
|
'marquee': () => import('./components/marquee.vue'),
|
|
269
|
-
'
|
|
260
|
+
'mail_remove': () => import('./components/mail_remove.vue'),
|
|
261
|
+
'microphone_muted': () => import('./components/microphone_muted.vue'),
|
|
262
|
+
'iphone_portrait': () => import('./components/iphone_portrait.vue'),
|
|
263
|
+
'mail': () => import('./components/mail.vue'),
|
|
270
264
|
'minimise': () => import('./components/minimise.vue'),
|
|
265
|
+
'message': () => import('./components/message.vue'),
|
|
266
|
+
'midpoint': () => import('./components/midpoint.vue'),
|
|
267
|
+
'newspaper': () => import('./components/newspaper.vue'),
|
|
271
268
|
'moon': () => import('./components/moon.vue'),
|
|
272
269
|
'minus_circle': () => import('./components/minus_circle.vue'),
|
|
273
|
-
'
|
|
270
|
+
'notebook': () => import('./components/notebook.vue'),
|
|
271
|
+
'optional': () => import('./components/optional.vue'),
|
|
274
272
|
'move': () => import('./components/move.vue'),
|
|
275
|
-
'maximise': () => import('./components/maximise.vue'),
|
|
276
|
-
'microphone': () => import('./components/microphone.vue'),
|
|
277
|
-
'newspaper': () => import('./components/newspaper.vue'),
|
|
278
273
|
'panel_bottom': () => import('./components/panel_bottom.vue'),
|
|
274
|
+
'home_check': () => import('./components/home_check.vue'),
|
|
279
275
|
'minus': () => import('./components/minus.vue'),
|
|
280
|
-
'
|
|
281
|
-
'
|
|
276
|
+
'menu_vertical': () => import('./components/menu_vertical.vue'),
|
|
277
|
+
'menu_hamburger': () => import('./components/menu_hamburger.vue'),
|
|
278
|
+
'nut': () => import('./components/nut.vue'),
|
|
282
279
|
'notification': () => import('./components/notification.vue'),
|
|
283
280
|
'panel_right': () => import('./components/panel_right.vue'),
|
|
284
|
-
'
|
|
281
|
+
'microphone_disabled': () => import('./components/microphone_disabled.vue'),
|
|
282
|
+
'panel_left': () => import('./components/panel_left.vue'),
|
|
285
283
|
'panel_top': () => import('./components/panel_top.vue'),
|
|
286
284
|
'pages': () => import('./components/pages.vue'),
|
|
287
|
-
'
|
|
288
|
-
'
|
|
289
|
-
'paper_plane': () => import('./components/paper_plane.vue'),
|
|
290
|
-
'panel_left': () => import('./components/panel_left.vue'),
|
|
285
|
+
'panel_center': () => import('./components/panel_center.vue'),
|
|
286
|
+
'no_sign': () => import('./components/no_sign.vue'),
|
|
291
287
|
'paper': () => import('./components/paper.vue'),
|
|
292
288
|
'paper_plane_alt': () => import('./components/paper_plane_alt.vue'),
|
|
293
|
-
'
|
|
294
|
-
'paragraph_end': () => import('./components/paragraph_end.vue'),
|
|
295
|
-
'paperclip': () => import('./components/paperclip.vue'),
|
|
296
|
-
'paragraph_center': () => import('./components/paragraph_center.vue'),
|
|
297
|
-
'pen': () => import('./components/pen.vue'),
|
|
289
|
+
'panel_sectioned': () => import('./components/panel_sectioned.vue'),
|
|
298
290
|
'paper_folded': () => import('./components/paper_folded.vue'),
|
|
299
|
-
'picture': () => import('./components/picture.vue'),
|
|
300
|
-
'paragraph_start': () => import('./components/paragraph_start.vue'),
|
|
301
291
|
'paragraph_right': () => import('./components/paragraph_right.vue'),
|
|
302
|
-
'
|
|
303
|
-
'
|
|
304
|
-
'
|
|
292
|
+
'paper_plane': () => import('./components/paper_plane.vue'),
|
|
293
|
+
'paragraph_start': () => import('./components/paragraph_start.vue'),
|
|
294
|
+
'picture': () => import('./components/picture.vue'),
|
|
295
|
+
'paragraph_center': () => import('./components/paragraph_center.vue'),
|
|
305
296
|
'phone_landscape': () => import('./components/phone_landscape.vue'),
|
|
306
|
-
'
|
|
307
|
-
'
|
|
297
|
+
'pen': () => import('./components/pen.vue'),
|
|
298
|
+
'mini_player': () => import('./components/mini_player.vue'),
|
|
299
|
+
'plus': () => import('./components/plus.vue'),
|
|
300
|
+
'phone_portrait': () => import('./components/phone_portrait.vue'),
|
|
308
301
|
'pie_third': () => import('./components/pie_third.vue'),
|
|
302
|
+
'pie_half': () => import('./components/pie_half.vue'),
|
|
303
|
+
'lock_open': () => import('./components/lock_open.vue'),
|
|
309
304
|
'play': () => import('./components/play.vue'),
|
|
310
|
-
'
|
|
305
|
+
'play_button': () => import('./components/play_button.vue'),
|
|
306
|
+
'pull_down': () => import('./components/pull_down.vue'),
|
|
307
|
+
'printer': () => import('./components/printer.vue'),
|
|
308
|
+
'pull_right': () => import('./components/pull_right.vue'),
|
|
309
|
+
'paragraph_left': () => import('./components/paragraph_left.vue'),
|
|
311
310
|
'project_nonprofit': () => import('./components/project_nonprofit.vue'),
|
|
312
|
-
'
|
|
311
|
+
'pie_quarter': () => import('./components/pie_quarter.vue'),
|
|
313
312
|
'project_fixed': () => import('./components/project_fixed.vue'),
|
|
314
|
-
'pull_left': () => import('./components/pull_left.vue'),
|
|
315
|
-
'project_tnm': () => import('./components/project_tnm.vue'),
|
|
316
|
-
'plus': () => import('./components/plus.vue'),
|
|
317
|
-
'pull_right': () => import('./components/pull_right.vue'),
|
|
318
|
-
'printer': () => import('./components/printer.vue'),
|
|
319
|
-
'pull_down': () => import('./components/pull_down.vue'),
|
|
320
|
-
'projector': () => import('./components/projector.vue'),
|
|
321
|
-
'push_down': () => import('./components/push_down.vue'),
|
|
322
313
|
'postcard': () => import('./components/postcard.vue'),
|
|
323
|
-
'
|
|
324
|
-
'question_circle': () => import('./components/question_circle.vue'),
|
|
314
|
+
'info_circle': () => import('./components/info_circle.vue'),
|
|
325
315
|
'push_left': () => import('./components/push_left.vue'),
|
|
326
|
-
'radio_on': () => import('./components/radio_on.vue'),
|
|
327
|
-
'receipt': () => import('./components/receipt.vue'),
|
|
328
316
|
'push_right': () => import('./components/push_right.vue'),
|
|
317
|
+
'question_circle': () => import('./components/question_circle.vue'),
|
|
318
|
+
'project_tnm': () => import('./components/project_tnm.vue'),
|
|
319
|
+
'pull_left': () => import('./components/pull_left.vue'),
|
|
320
|
+
'projector': () => import('./components/projector.vue'),
|
|
321
|
+
'radio_on': () => import('./components/radio_on.vue'),
|
|
329
322
|
'push_up': () => import('./components/push_up.vue'),
|
|
330
|
-
'
|
|
331
|
-
'replicate_alt': () => import('./components/replicate_alt.vue'),
|
|
332
|
-
'refresh': () => import('./components/refresh.vue'),
|
|
333
|
-
'refresh_alt': () => import('./components/refresh_alt.vue'),
|
|
323
|
+
'receipt': () => import('./components/receipt.vue'),
|
|
334
324
|
'redo': () => import('./components/redo.vue'),
|
|
325
|
+
'pull_up': () => import('./components/pull_up.vue'),
|
|
326
|
+
'push_down': () => import('./components/push_down.vue'),
|
|
335
327
|
'record': () => import('./components/record.vue'),
|
|
336
|
-
'
|
|
328
|
+
'paperclip': () => import('./components/paperclip.vue'),
|
|
329
|
+
'replicate': () => import('./components/replicate.vue'),
|
|
330
|
+
'replicate_alt': () => import('./components/replicate_alt.vue'),
|
|
331
|
+
'reverse': () => import('./components/reverse.vue'),
|
|
332
|
+
'reset_hard': () => import('./components/reset_hard.vue'),
|
|
337
333
|
'reset_alt': () => import('./components/reset_alt.vue'),
|
|
338
|
-
'
|
|
339
|
-
'reset_temporary': () => import('./components/reset_temporary.vue'),
|
|
340
|
-
'reset_forward': () => import('./components/reset_forward.vue'),
|
|
334
|
+
'retweet': () => import('./components/retweet.vue'),
|
|
341
335
|
'reuse': () => import('./components/reuse.vue'),
|
|
342
|
-
'
|
|
336
|
+
'required': () => import('./components/required.vue'),
|
|
337
|
+
'revert': () => import('./components/revert.vue'),
|
|
338
|
+
'reset_forward': () => import('./components/reset_forward.vue'),
|
|
343
339
|
'reverse_alt': () => import('./components/reverse_alt.vue'),
|
|
344
|
-
'ruler': () => import('./components/ruler.vue'),
|
|
345
|
-
'retweet': () => import('./components/retweet.vue'),
|
|
346
340
|
'rocket': () => import('./components/rocket.vue'),
|
|
347
|
-
'scale_contract': () => import('./components/scale_contract.vue'),
|
|
348
|
-
'scale': () => import('./components/scale.vue'),
|
|
349
341
|
'scalpel': () => import('./components/scalpel.vue'),
|
|
350
|
-
'revert': () => import('./components/revert.vue'),
|
|
351
|
-
'share': () => import('./components/share.vue'),
|
|
352
342
|
'scale_extend': () => import('./components/scale_extend.vue'),
|
|
343
|
+
'server': () => import('./components/server.vue'),
|
|
344
|
+
'pause': () => import('./components/pause.vue'),
|
|
345
|
+
'scale_contract': () => import('./components/scale_contract.vue'),
|
|
353
346
|
'slash_backward': () => import('./components/slash_backward.vue'),
|
|
354
|
-
'
|
|
347
|
+
'paragraph_end': () => import('./components/paragraph_end.vue'),
|
|
348
|
+
'share': () => import('./components/share.vue'),
|
|
349
|
+
'reset_temporary': () => import('./components/reset_temporary.vue'),
|
|
350
|
+
'ruler': () => import('./components/ruler.vue'),
|
|
351
|
+
'scale': () => import('./components/scale.vue'),
|
|
355
352
|
'side_menu': () => import('./components/side_menu.vue'),
|
|
356
|
-
'settings': () => import('./components/settings.vue'),
|
|
357
|
-
'slash_forward': () => import('./components/slash_forward.vue'),
|
|
358
353
|
'sliders': () => import('./components/sliders.vue'),
|
|
359
|
-
'
|
|
360
|
-
'shuffle': () => import('./components/shuffle.vue'),
|
|
361
|
-
'sort': () => import('./components/sort.vue'),
|
|
354
|
+
'search': () => import('./components/search.vue'),
|
|
362
355
|
'share_alt': () => import('./components/share_alt.vue'),
|
|
363
|
-
'
|
|
356
|
+
'reset': () => import('./components/reset.vue'),
|
|
357
|
+
'sun': () => import('./components/sun.vue'),
|
|
364
358
|
'speaker': () => import('./components/speaker.vue'),
|
|
359
|
+
'sort_alt': () => import('./components/sort_alt.vue'),
|
|
360
|
+
'sort': () => import('./components/sort.vue'),
|
|
361
|
+
'slash_forward': () => import('./components/slash_forward.vue'),
|
|
365
362
|
'split': () => import('./components/split.vue'),
|
|
363
|
+
'speech_bubble': () => import('./components/speech_bubble.vue'),
|
|
366
364
|
'split_three': () => import('./components/split_three.vue'),
|
|
367
365
|
'star': () => import('./components/star.vue'),
|
|
368
366
|
'table': () => import('./components/table.vue'),
|
|
369
|
-
'
|
|
370
|
-
'tag_milestone': () => import('./components/tag_milestone.vue'),
|
|
371
|
-
'switch': () => import('./components/switch.vue'),
|
|
367
|
+
'swap': () => import('./components/swap.vue'),
|
|
372
368
|
'speech_typing': () => import('./components/speech_typing.vue'),
|
|
373
369
|
'target': () => import('./components/target.vue'),
|
|
374
370
|
'thread': () => import('./components/thread.vue'),
|
|
375
|
-
'tag': () => import('./components/tag.vue'),
|
|
376
|
-
'ticket': () => import('./components/ticket.vue'),
|
|
377
|
-
'sort_alt': () => import('./components/sort_alt.vue'),
|
|
378
|
-
'swap': () => import('./components/swap.vue'),
|
|
379
|
-
'support': () => import('./components/support.vue'),
|
|
380
371
|
'thumbs_up': () => import('./components/thumbs_up.vue'),
|
|
381
|
-
'
|
|
372
|
+
'switch': () => import('./components/switch.vue'),
|
|
382
373
|
'tags': () => import('./components/tags.vue'),
|
|
383
|
-
'
|
|
384
|
-
'
|
|
374
|
+
'shuffle': () => import('./components/shuffle.vue'),
|
|
375
|
+
'plus_circle': () => import('./components/plus_circle.vue'),
|
|
376
|
+
'translate': () => import('./components/translate.vue'),
|
|
385
377
|
'thumbs_down': () => import('./components/thumbs_down.vue'),
|
|
378
|
+
'table_header': () => import('./components/table_header.vue'),
|
|
379
|
+
'support': () => import('./components/support.vue'),
|
|
386
380
|
'trash': () => import('./components/trash.vue'),
|
|
387
|
-
'
|
|
388
|
-
'trophy': () => import('./components/trophy.vue'),
|
|
381
|
+
'toggle': () => import('./components/toggle.vue'),
|
|
389
382
|
'trash_alt': () => import('./components/trash_alt.vue'),
|
|
383
|
+
'trophy': () => import('./components/trophy.vue'),
|
|
390
384
|
'tv_mode': () => import('./components/tv_mode.vue'),
|
|
391
385
|
'type_date': () => import('./components/type_date.vue'),
|
|
386
|
+
'tag': () => import('./components/tag.vue'),
|
|
387
|
+
'refresh': () => import('./components/refresh.vue'),
|
|
388
|
+
'refresh_alt': () => import('./components/refresh_alt.vue'),
|
|
392
389
|
'toggles': () => import('./components/toggles.vue'),
|
|
393
|
-
'
|
|
394
|
-
'type_email': () => import('./components/type_email.vue'),
|
|
390
|
+
'timeline': () => import('./components/timeline.vue'),
|
|
395
391
|
'type_checkbox': () => import('./components/type_checkbox.vue'),
|
|
392
|
+
'ticket': () => import('./components/ticket.vue'),
|
|
396
393
|
'type_file': () => import('./components/type_file.vue'),
|
|
397
|
-
'server': () => import('./components/server.vue'),
|
|
398
|
-
'type_person': () => import('./components/type_person.vue'),
|
|
399
|
-
'type_formula': () => import('./components/type_formula.vue'),
|
|
400
|
-
'type_relation': () => import('./components/type_relation.vue'),
|
|
401
|
-
'type_text': () => import('./components/type_text.vue'),
|
|
402
|
-
'type_phone': () => import('./components/type_phone.vue'),
|
|
403
394
|
'type_id': () => import('./components/type_id.vue'),
|
|
404
|
-
'
|
|
405
|
-
'
|
|
395
|
+
'type_multiselect': () => import('./components/type_multiselect.vue'),
|
|
396
|
+
'tag_milestone': () => import('./components/tag_milestone.vue'),
|
|
397
|
+
'type_phone': () => import('./components/type_phone.vue'),
|
|
398
|
+
'type_formula': () => import('./components/type_formula.vue'),
|
|
406
399
|
'type_url': () => import('./components/type_url.vue'),
|
|
407
|
-
'type_status': () => import('./components/type_status.vue'),
|
|
408
|
-
'translate': () => import('./components/translate.vue'),
|
|
409
|
-
'type_number': () => import('./components/type_number.vue'),
|
|
410
|
-
'undo_history': () => import('./components/undo_history.vue'),
|
|
411
|
-
'unlink_horizontal': () => import('./components/unlink_horizontal.vue'),
|
|
412
|
-
'type_time': () => import('./components/type_time.vue'),
|
|
413
400
|
'unarchive': () => import('./components/unarchive.vue'),
|
|
414
401
|
'type_user': () => import('./components/type_user.vue'),
|
|
415
|
-
'
|
|
416
|
-
'
|
|
402
|
+
'type_text': () => import('./components/type_text.vue'),
|
|
403
|
+
'unlink_horizontal': () => import('./components/unlink_horizontal.vue'),
|
|
404
|
+
'type_email': () => import('./components/type_email.vue'),
|
|
405
|
+
'type_number': () => import('./components/type_number.vue'),
|
|
406
|
+
'type_person': () => import('./components/type_person.vue'),
|
|
407
|
+
'undo': () => import('./components/undo.vue'),
|
|
417
408
|
'user_circle': () => import('./components/user_circle.vue'),
|
|
418
|
-
'
|
|
419
|
-
'
|
|
409
|
+
'upload': () => import('./components/upload.vue'),
|
|
410
|
+
'type_select': () => import('./components/type_select.vue'),
|
|
411
|
+
'type_time': () => import('./components/type_time.vue'),
|
|
420
412
|
'user_male': () => import('./components/user_male.vue'),
|
|
421
|
-
'
|
|
422
|
-
'
|
|
413
|
+
'type_relation': () => import('./components/type_relation.vue'),
|
|
414
|
+
'undo_history': () => import('./components/undo_history.vue'),
|
|
415
|
+
'user': () => import('./components/user.vue'),
|
|
416
|
+
'type_status': () => import('./components/type_status.vue'),
|
|
423
417
|
'upload_alt': () => import('./components/upload_alt.vue'),
|
|
424
|
-
'
|
|
418
|
+
'user_remove': () => import('./components/user_remove.vue'),
|
|
419
|
+
'user_add': () => import('./components/user_add.vue'),
|
|
425
420
|
'volume_0': () => import('./components/volume_0.vue'),
|
|
426
|
-
'
|
|
427
|
-
'
|
|
421
|
+
'version': () => import('./components/version.vue'),
|
|
422
|
+
'todo': () => import('./components/todo.vue'),
|
|
428
423
|
'upward': () => import('./components/upward.vue'),
|
|
424
|
+
'settings': () => import('./components/settings.vue'),
|
|
425
|
+
'users': () => import('./components/users.vue'),
|
|
426
|
+
'volume_high': () => import('./components/volume_high.vue'),
|
|
429
427
|
'volume_add': () => import('./components/volume_add.vue'),
|
|
430
|
-
'
|
|
431
|
-
'version': () => import('./components/version.vue'),
|
|
428
|
+
'user_male_circle': () => import('./components/user_male_circle.vue'),
|
|
432
429
|
'wallet': () => import('./components/wallet.vue'),
|
|
433
|
-
'volume_high': () => import('./components/volume_high.vue'),
|
|
434
430
|
'volume_minus': () => import('./components/volume_minus.vue'),
|
|
435
|
-
'
|
|
431
|
+
'unlink_vertical': () => import('./components/unlink_vertical.vue'),
|
|
436
432
|
'warning_circle': () => import('./components/warning_circle.vue'),
|
|
433
|
+
'video': () => import('./components/video.vue'),
|
|
434
|
+
'wifi': () => import('./components/wifi.vue'),
|
|
437
435
|
'warning_triangle': () => import('./components/warning_triangle.vue'),
|
|
438
436
|
'volume_muted': () => import('./components/volume_muted.vue'),
|
|
439
|
-
'wifi_error': () => import('./components/wifi_error.vue'),
|
|
440
437
|
'warning_hex': () => import('./components/warning_hex.vue'),
|
|
441
|
-
'
|
|
438
|
+
'wifi_error': () => import('./components/wifi_error.vue'),
|
|
442
439
|
'width': () => import('./components/width.vue'),
|
|
443
|
-
'window_collapse_right': () => import('./components/window_collapse_right.vue'),
|
|
444
440
|
'volume_disabled': () => import('./components/volume_disabled.vue'),
|
|
445
|
-
'
|
|
441
|
+
'zoom_cancel': () => import('./components/zoom_cancel.vue'),
|
|
442
|
+
'wifi_none': () => import('./components/wifi_none.vue'),
|
|
446
443
|
'window_content': () => import('./components/window_content.vue'),
|
|
447
|
-
'
|
|
444
|
+
'venn': () => import('./components/venn.vue'),
|
|
445
|
+
'window_collapse_right': () => import('./components/window_collapse_right.vue'),
|
|
446
|
+
'window': () => import('./components/window.vue'),
|
|
448
447
|
'wrap_forward': () => import('./components/wrap_forward.vue'),
|
|
449
|
-
'write': () => import('./components/write.vue'),
|
|
450
|
-
'wifi_none': () => import('./components/wifi_none.vue'),
|
|
451
448
|
'wrap_back': () => import('./components/wrap_back.vue'),
|
|
452
|
-
'
|
|
453
|
-
'zoom_out': () => import('./components/zoom_out.vue'),
|
|
449
|
+
'write': () => import('./components/write.vue'),
|
|
454
450
|
'window_collapse_left': () => import('./components/window_collapse_left.vue'),
|
|
455
451
|
'zoom_reset': () => import('./components/zoom_reset.vue'),
|
|
456
|
-
'
|
|
457
|
-
'
|
|
452
|
+
'zoom_in': () => import('./components/zoom_in.vue'),
|
|
453
|
+
'waves': () => import('./components/waves.vue'),
|
|
454
|
+
'zoom_out': () => import('./components/zoom_out.vue'),
|
|
455
|
+
'versions': () => import('./components/versions.vue'),
|
|
456
|
+
'volume_low': () => import('./components/volume_low.vue'),
|
|
458
457
|
'nomi-arrow-up': () => import('./components/nomi-arrow-up.vue'),
|
|
458
|
+
'nomi-ai': () => import('./components/nomi-ai.vue'),
|
|
459
459
|
'nomi-arrow-down': () => import('./components/nomi-arrow-down.vue'),
|
|
460
|
+
'nomi-automation': () => import('./components/nomi-automation.vue'),
|
|
460
461
|
'nomi-arrow_up': () => import('./components/nomi-arrow_up.vue'),
|
|
461
462
|
'nomi-arrow-right-alt': () => import('./components/nomi-arrow-right-alt.vue'),
|
|
462
|
-
'nomi-arrows': () => import('./components/nomi-arrows.vue'),
|
|
463
463
|
'nomi-arrow-right-top': () => import('./components/nomi-arrow-right-top.vue'),
|
|
464
|
-
'nomi-card-plus': () => import('./components/nomi-card-plus.vue'),
|
|
465
|
-
'nomi-balance': () => import('./components/nomi-balance.vue'),
|
|
466
464
|
'nomi-arrow_down': () => import('./components/nomi-arrow_down.vue'),
|
|
465
|
+
'nomi-balance': () => import('./components/nomi-balance.vue'),
|
|
467
466
|
'nomi-calendar-alt': () => import('./components/nomi-calendar-alt.vue'),
|
|
467
|
+
'nomi-arrows': () => import('./components/nomi-arrows.vue'),
|
|
468
|
+
'nomi-cash-provider': () => import('./components/nomi-cash-provider.vue'),
|
|
469
|
+
'nomi-calendar-alt2': () => import('./components/nomi-calendar-alt2.vue'),
|
|
468
470
|
'nomi-bell': () => import('./components/nomi-bell.vue'),
|
|
469
|
-
'nomi-
|
|
470
|
-
'nomi-calendar': () => import('./components/nomi-calendar.vue'),
|
|
471
|
-
'nomi-chart-bars': () => import('./components/nomi-chart-bars.vue'),
|
|
472
|
-
'nomi-card': () => import('./components/nomi-card.vue'),
|
|
473
|
-
'nomi-automation': () => import('./components/nomi-automation.vue'),
|
|
471
|
+
'nomi-card-plus': () => import('./components/nomi-card-plus.vue'),
|
|
474
472
|
'nomi-category': () => import('./components/nomi-category.vue'),
|
|
473
|
+
'nomi-category_alt': () => import('./components/nomi-category_alt.vue'),
|
|
475
474
|
'nomi-chart-donut': () => import('./components/nomi-chart-donut.vue'),
|
|
476
|
-
'nomi-
|
|
477
|
-
'nomi-calendar-alt2': () => import('./components/nomi-calendar-alt2.vue'),
|
|
478
|
-
'nomi-chart-kpi': () => import('./components/nomi-chart-kpi.vue'),
|
|
475
|
+
'nomi-chart-line': () => import('./components/nomi-chart-line.vue'),
|
|
479
476
|
'nomi-chart-funnel': () => import('./components/nomi-chart-funnel.vue'),
|
|
480
|
-
'nomi-
|
|
481
|
-
'nomi-
|
|
482
|
-
'nomi-
|
|
483
|
-
'nomi-
|
|
477
|
+
'nomi-chart-kpi': () => import('./components/nomi-chart-kpi.vue'),
|
|
478
|
+
'nomi-cashflow': () => import('./components/nomi-cashflow.vue'),
|
|
479
|
+
'nomi-chart-lines': () => import('./components/nomi-chart-lines.vue'),
|
|
480
|
+
'nomi-chart-bars': () => import('./components/nomi-chart-bars.vue'),
|
|
484
481
|
'nomi-chevron-right': () => import('./components/nomi-chevron-right.vue'),
|
|
485
|
-
'nomi-
|
|
486
|
-
'nomi-credit': () => import('./components/nomi-credit.vue'),
|
|
482
|
+
'nomi-chevron-left': () => import('./components/nomi-chevron-left.vue'),
|
|
487
483
|
'nomi-collapse': () => import('./components/nomi-collapse.vue'),
|
|
488
|
-
'nomi-close': () => import('./components/nomi-close.vue'),
|
|
489
|
-
'nomi-currencies': () => import('./components/nomi-currencies.vue'),
|
|
490
484
|
'nomi-control-panel': () => import('./components/nomi-control-panel.vue'),
|
|
491
|
-
'nomi-chart-lines': () => import('./components/nomi-chart-lines.vue'),
|
|
492
|
-
'nomi-debt': () => import('./components/nomi-debt.vue'),
|
|
493
485
|
'nomi-counterparty': () => import('./components/nomi-counterparty.vue'),
|
|
494
|
-
'nomi-
|
|
495
|
-
'nomi-
|
|
496
|
-
'nomi-file': () => import('./components/nomi-file.vue'),
|
|
486
|
+
'nomi-clear': () => import('./components/nomi-clear.vue'),
|
|
487
|
+
'nomi-close': () => import('./components/nomi-close.vue'),
|
|
497
488
|
'nomi-demo': () => import('./components/nomi-demo.vue'),
|
|
498
|
-
'nomi-
|
|
489
|
+
'nomi-credit': () => import('./components/nomi-credit.vue'),
|
|
490
|
+
'nomi-chevron-down': () => import('./components/nomi-chevron-down.vue'),
|
|
491
|
+
'nomi-check': () => import('./components/nomi-check.vue'),
|
|
499
492
|
'nomi-dev': () => import('./components/nomi-dev.vue'),
|
|
500
|
-
'nomi-
|
|
493
|
+
'nomi-currencies': () => import('./components/nomi-currencies.vue'),
|
|
494
|
+
'nomi-export': () => import('./components/nomi-export.vue'),
|
|
495
|
+
'nomi-debt': () => import('./components/nomi-debt.vue'),
|
|
496
|
+
'nomi-eye-close': () => import('./components/nomi-eye-close.vue'),
|
|
497
|
+
'nomi-cash': () => import('./components/nomi-cash.vue'),
|
|
498
|
+
'nomi-dots': () => import('./components/nomi-dots.vue'),
|
|
499
|
+
'nomi-dashboard': () => import('./components/nomi-dashboard.vue'),
|
|
501
500
|
'nomi-help': () => import('./components/nomi-help.vue'),
|
|
501
|
+
'nomi-expand': () => import('./components/nomi-expand.vue'),
|
|
502
|
+
'nomi-file': () => import('./components/nomi-file.vue'),
|
|
502
503
|
'nomi-eye': () => import('./components/nomi-eye.vue'),
|
|
503
|
-
'nomi-goods-turnover': () => import('./components/nomi-goods-turnover.vue'),
|
|
504
|
-
'nomi-eye-close': () => import('./components/nomi-eye-close.vue'),
|
|
505
|
-
'nomi-integration': () => import('./components/nomi-integration.vue'),
|
|
506
|
-
'nomi-goods': () => import('./components/nomi-goods.vue'),
|
|
507
504
|
'nomi-lock': () => import('./components/nomi-lock.vue'),
|
|
505
|
+
'nomi-folder': () => import('./components/nomi-folder.vue'),
|
|
506
|
+
'nomi-goods-turnover': () => import('./components/nomi-goods-turnover.vue'),
|
|
508
507
|
'nomi-eye-open': () => import('./components/nomi-eye-open.vue'),
|
|
509
|
-
'nomi-menu': () => import('./components/nomi-menu.vue'),
|
|
510
|
-
'nomi-logout': () => import('./components/nomi-logout.vue'),
|
|
511
|
-
'nomi-hide': () => import('./components/nomi-hide.vue'),
|
|
512
508
|
'nomi-minus': () => import('./components/nomi-minus.vue'),
|
|
509
|
+
'nomi-goods': () => import('./components/nomi-goods.vue'),
|
|
510
|
+
'nomi-logout': () => import('./components/nomi-logout.vue'),
|
|
511
|
+
'nomi-pin': () => import('./components/nomi-pin.vue'),
|
|
512
|
+
'nomi-pen': () => import('./components/nomi-pen.vue'),
|
|
513
513
|
'nomi-money': () => import('./components/nomi-money.vue'),
|
|
514
|
-
'nomi-
|
|
515
|
-
'nomi-
|
|
514
|
+
'nomi-move-left': () => import('./components/nomi-move-left.vue'),
|
|
515
|
+
'nomi-pnl': () => import('./components/nomi-pnl.vue'),
|
|
516
516
|
'nomi-payment_calendar': () => import('./components/nomi-payment_calendar.vue'),
|
|
517
|
-
'nomi-
|
|
518
|
-
'nomi-planFact': () => import('./components/nomi-planFact.vue'),
|
|
517
|
+
'nomi-pc': () => import('./components/nomi-pc.vue'),
|
|
519
518
|
'nomi-project': () => import('./components/nomi-project.vue'),
|
|
520
|
-
'nomi-pin': () => import('./components/nomi-pin.vue'),
|
|
521
519
|
'nomi-project_alt': () => import('./components/nomi-project_alt.vue'),
|
|
522
|
-
'nomi-
|
|
523
|
-
'nomi-
|
|
524
|
-
'nomi-
|
|
520
|
+
'nomi-move-right': () => import('./components/nomi-move-right.vue'),
|
|
521
|
+
'nomi-integration': () => import('./components/nomi-integration.vue'),
|
|
522
|
+
'nomi-planFact': () => import('./components/nomi-planFact.vue'),
|
|
525
523
|
'nomi-project_alt2': () => import('./components/nomi-project_alt2.vue'),
|
|
526
524
|
'nomi-recurrence': () => import('./components/nomi-recurrence.vue'),
|
|
527
|
-
'nomi-move-left': () => import('./components/nomi-move-left.vue'),
|
|
528
|
-
'nomi-pen': () => import('./components/nomi-pen.vue'),
|
|
529
525
|
'nomi-segment': () => import('./components/nomi-segment.vue'),
|
|
530
526
|
'nomi-filter': () => import('./components/nomi-filter.vue'),
|
|
531
|
-
'nomi-
|
|
527
|
+
'nomi-repeat': () => import('./components/nomi-repeat.vue'),
|
|
532
528
|
'nomi-settings': () => import('./components/nomi-settings.vue'),
|
|
533
529
|
'nomi-sort-asc': () => import('./components/nomi-sort-asc.vue'),
|
|
534
|
-
'nomi-
|
|
535
|
-
'nomi-scissors': () => import('./components/nomi-scissors.vue'),
|
|
530
|
+
'nomi-target': () => import('./components/nomi-target.vue'),
|
|
536
531
|
'nomi-sort-desc': () => import('./components/nomi-sort-desc.vue'),
|
|
537
|
-
'nomi-
|
|
538
|
-
'nomi-time': () => import('./components/nomi-time.vue'),
|
|
532
|
+
'nomi-hide': () => import('./components/nomi-hide.vue'),
|
|
539
533
|
'nomi-table-view': () => import('./components/nomi-table-view.vue'),
|
|
540
|
-
'nomi-
|
|
541
|
-
'nomi-
|
|
542
|
-
'nomi-
|
|
534
|
+
'nomi-scissors': () => import('./components/nomi-scissors.vue'),
|
|
535
|
+
'nomi-tag': () => import('./components/nomi-tag.vue'),
|
|
536
|
+
'nomi-menu': () => import('./components/nomi-menu.vue'),
|
|
543
537
|
'nomi-subscription': () => import('./components/nomi-subscription.vue'),
|
|
544
|
-
'nomi-
|
|
545
|
-
'nomi-target': () => import('./components/nomi-target.vue'),
|
|
538
|
+
'nomi-report': () => import('./components/nomi-report.vue'),
|
|
546
539
|
'nomi-strongbox': () => import('./components/nomi-strongbox.vue'),
|
|
547
|
-
'nomi-
|
|
548
|
-
'nomi-
|
|
549
|
-
'nomi-type-date': () => import('./components/nomi-type-date.vue'),
|
|
550
|
-
'nomi-user': () => import('./components/nomi-user.vue'),
|
|
551
|
-
'nomi-type-object': () => import('./components/nomi-type-object.vue'),
|
|
552
|
-
'nomi-transactions_delete': () => import('./components/nomi-transactions_delete.vue'),
|
|
553
|
-
'nomi-transactions_alt': () => import('./components/nomi-transactions_alt.vue'),
|
|
540
|
+
'nomi-refresh': () => import('./components/nomi-refresh.vue'),
|
|
541
|
+
'nomi-transactions': () => import('./components/nomi-transactions.vue'),
|
|
554
542
|
'nomi-type-null': () => import('./components/nomi-type-null.vue'),
|
|
555
|
-
'nomi-unpin': () => import('./components/nomi-unpin.vue'),
|
|
556
|
-
'nomi-trash': () => import('./components/nomi-trash.vue'),
|
|
557
543
|
'nomi-type-number': () => import('./components/nomi-type-number.vue'),
|
|
558
544
|
'nomi-type-string': () => import('./components/nomi-type-string.vue'),
|
|
559
|
-
'nomi-
|
|
545
|
+
'nomi-trash': () => import('./components/nomi-trash.vue'),
|
|
546
|
+
'nomi-transactions_delete': () => import('./components/nomi-transactions_delete.vue'),
|
|
547
|
+
'nomi-type-date': () => import('./components/nomi-type-date.vue'),
|
|
548
|
+
'nomi-time': () => import('./components/nomi-time.vue'),
|
|
549
|
+
'nomi-type-boolean': () => import('./components/nomi-type-boolean.vue'),
|
|
550
|
+
'nomi-card': () => import('./components/nomi-card.vue'),
|
|
551
|
+
'nomi-unpin': () => import('./components/nomi-unpin.vue'),
|
|
552
|
+
'nomi-type-object': () => import('./components/nomi-type-object.vue'),
|
|
553
|
+
'nomi-calendar': () => import('./components/nomi-calendar.vue'),
|
|
554
|
+
'nomi-transactions_alt': () => import('./components/nomi-transactions_alt.vue'),
|
|
555
|
+
'nomi-person': () => import('./components/nomi-person.vue'),
|
|
556
|
+
'nomi-text': () => import('./components/nomi-text.vue'),
|
|
557
|
+
'nomi-refresh-off': () => import('./components/nomi-refresh-off.vue'),
|
|
558
|
+
'nomi-type-array': () => import('./components/nomi-type-array.vue'),
|
|
560
559
|
'nomi-user_plus': () => import('./components/nomi-user_plus.vue'),
|
|
561
|
-
'nomi-warehouse': () => import('./components/nomi-warehouse.vue'),
|
|
562
560
|
'nomi-warning_triangle': () => import('./components/nomi-warning_triangle.vue'),
|
|
561
|
+
'nomi-warehouse': () => import('./components/nomi-warehouse.vue'),
|
|
562
|
+
'nomi-types': () => import('./components/nomi-types.vue'),
|
|
563
|
+
'nomi-user': () => import('./components/nomi-user.vue'),
|
|
563
564
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32.000000" height="32.000000" fill="none">
|
|
2
|
+
<rect id="left icon" width="32.000000" height="32.000000" x="0.000000" y="0.000000" fill="rgb(228,233,237)" fill-opacity="0" />
|
|
3
|
+
<g id="Group">
|
|
4
|
+
<path id="Vector" d="M30.3379 20.2422C29.8761 19.6502 28.846 19.1529 26.7502 20.3843C26.9397 19.5199 26.2529 18.9753 25.436 18.9753C24.7137 18.9753 23.873 19.1647 23.1981 19.8396C22.2391 18.5727 21.2445 18.7266 19.3145 19.9225C18.5804 20.3843 17.9292 20.775 17.4437 21.0473C17.3135 21.1184 17.2069 21.1776 17.1122 21.2249C17.3017 21.2605 17.4911 21.296 17.7042 21.296C20.4157 21.296 22.5469 21.296 22.5469 23.6404C22.5469 25.4401 20.4512 25.9848 19.3382 26.0084L15.4901 26.0084C13.418 26.0084 11.3933 23.8298 11.3933 23.8298C11.3933 23.8298 13.7851 24.8126 15.4901 24.8126L19.3263 24.8126C19.3382 24.8126 21.3747 24.7297 21.3747 23.6404C21.3747 22.6339 20.3446 22.4682 18.7225 22.4682C16.0703 22.4682 14.7915 21.2605 14.7915 21.2605C14.7915 21.2605 12.7313 19.7567 12.0919 19.3542C10.6 18.4188 9.78304 17.9333 7.08344 18.9634C5.41395 19.6147 2.66699 20.9171 2.66699 20.9171L6.00597 28.3291L7.58073 27.3701C8.51612 26.7662 9.40414 26.7899 10.6474 27.3701C12.0445 28.0213 13.9745 28.6488 15.3243 29.0869C17.3727 29.7381 17.7161 29.6434 19.0659 28.8738C20.2144 28.2107 28.3487 23.4036 29.2012 22.7997C30.5273 21.8525 30.9417 21.0355 30.3379 20.2422Z" fill="currentColor" fill-rule="nonzero" />
|
|
5
|
+
<path id="Vector" d="M17.2661 6.03394C14.3416 6.03394 11.9854 8.402 11.9854 11.3147C11.9854 14.2393 14.3534 16.5955 17.2661 16.5955C20.1789 16.5955 22.5469 14.2274 22.5469 11.3147C22.5469 8.402 20.1789 6.03394 17.2661 6.03394ZM18.0594 13.7065L16.461 13.7065L16.461 10.5214L15.2178 10.5214L16.8162 8.92298L18.0594 8.92298L18.0594 13.7065Z" fill="currentColor" fill-rule="nonzero" />
|
|
6
|
+
<path id="Vector" d="M21.9664 1.33325C19.8825 1.33325 18.1775 2.88434 17.917 4.89719C19.2076 5.02744 20.3916 5.53657 21.3507 6.31803L21.3507 4.82615L20.3798 4.82615L21.623 3.58292L22.5939 3.58292L22.5939 7.31262L22.3334 7.31262C22.7952 7.90464 23.1623 8.5677 23.4109 9.28996C24.9738 8.70978 26.0868 7.2179 26.0868 5.45369C26.075 3.1685 24.2397 1.33325 21.9664 1.33325Z" fill="currentColor" fill-rule="nonzero" />
|
|
7
|
+
</g>
|
|
8
|
+
</svg>
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
<itf-filter-panel
|
|
5
5
|
:search-placeholder="searchPlaceholder"
|
|
6
6
|
search
|
|
7
|
+
:visible="!noFilters"
|
|
8
|
+
:filters-only="filtersOnly"
|
|
7
9
|
ref="filters"
|
|
8
10
|
:mini="panel.isMultiple()"
|
|
9
11
|
class="py-2 px-3"
|
|
@@ -121,6 +123,8 @@ class itfView extends Vue {
|
|
|
121
123
|
@ModelSync('value', 'input') selectedIds;
|
|
122
124
|
|
|
123
125
|
@Prop({ type: Boolean }) loading;
|
|
126
|
+
@Prop({ type: Boolean }) filtersOnly;
|
|
127
|
+
@Prop({ type: Boolean }) noFilters;
|
|
124
128
|
@Prop({ type: Array }) filters;
|
|
125
129
|
@Prop({ type: Object, required: true }) schema;
|
|
126
130
|
// @Prop({ default: 20 }) size;
|
|
@@ -134,6 +138,7 @@ class itfView extends Vue {
|
|
|
134
138
|
@Prop({ type: String, default: 'checkbox' }) indicatorType;
|
|
135
139
|
@Prop({ type: String, default () { return this.$t('components.table.search'); } }) searchPlaceholder;
|
|
136
140
|
@Prop() panel;
|
|
141
|
+
@Prop() hardFilter; // встановлює жорсткий фільтр, наприклад, треба завжди показувати лише по контрагенту
|
|
137
142
|
@Prop(Boolean) showActions;
|
|
138
143
|
|
|
139
144
|
page = 1;
|
|
@@ -177,7 +182,7 @@ class itfView extends Vue {
|
|
|
177
182
|
const res = await this.$axios.$get(this.endpoint, {
|
|
178
183
|
preventRaceCondition: true,
|
|
179
184
|
params: {
|
|
180
|
-
...this.filter,
|
|
185
|
+
...Object.assign(this.filter ?? {}, this.hardFilter ?? {}),
|
|
181
186
|
page: this.page,
|
|
182
187
|
size: this.size,
|
|
183
188
|
sort: this.sorting
|