@itfin/components 2.0.12 → 2.0.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/package.json +1 -1
- package/src/components/filter/FilterPanel.vue +9 -4
- package/src/components/icon/icons.js +300 -300
- package/src/components/panels/Panel.vue +18 -3
- package/src/components/panels/PanelList.vue +14 -1
- package/src/components/view/View.vue +1 -0
- package/src/locales/en.js +1 -0
- package/src/locales/uk.js +1 -0
package/package.json
CHANGED
|
@@ -73,6 +73,7 @@ import itfDropdown from '../dropdown/Dropdown.vue';
|
|
|
73
73
|
import itfTextField from '../text-field/TextField.vue';
|
|
74
74
|
import { formatMoney, formatRangeDates } from '../../helpers/formatters';
|
|
75
75
|
import FilterBadge from './FilterBadge.vue';
|
|
76
|
+
import sortBy from 'lodash/sortBy';
|
|
76
77
|
|
|
77
78
|
export default @Component({
|
|
78
79
|
components: {
|
|
@@ -104,7 +105,7 @@ class FilterPanel extends Vue {
|
|
|
104
105
|
|
|
105
106
|
get visibleFilters() {
|
|
106
107
|
if (this.mini) {
|
|
107
|
-
return this.filters.filter(f => !f.options?.hidden).slice(0, 2);
|
|
108
|
+
return sortBy(this.filters, (f) => this.filter[f.name].isDefault).filter(f => !f.options?.hidden).slice(0, 2);
|
|
108
109
|
}
|
|
109
110
|
return this.filters.filter(f => !f.options?.hidden);
|
|
110
111
|
}
|
|
@@ -166,9 +167,13 @@ class FilterPanel extends Vue {
|
|
|
166
167
|
if (this.search) {
|
|
167
168
|
filterValue.query = payload.query;
|
|
168
169
|
}
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
170
|
+
const prevFilter = JSON.stringify(this.filter).concat(JSON.stringify(this.filterValue));
|
|
171
|
+
const newFilter = JSON.stringify(filter).concat(JSON.stringify(filterValue));
|
|
172
|
+
if (prevFilter !== newFilter) {
|
|
173
|
+
this.filter = filter;
|
|
174
|
+
this.filterValue = filterValue;
|
|
175
|
+
this.$emit('input', this.filterValue);
|
|
176
|
+
}
|
|
172
177
|
}
|
|
173
178
|
|
|
174
179
|
setFilter(field, value) {
|
|
@@ -1,502 +1,502 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
'align_vertical': () => import('./components/align_vertical.vue'),
|
|
3
2
|
'archive': () => import('./components/archive.vue'),
|
|
4
|
-
'airplay': () => import('./components/airplay.vue'),
|
|
5
3
|
'angle': () => import('./components/angle.vue'),
|
|
4
|
+
'align_vertical': () => import('./components/align_vertical.vue'),
|
|
6
5
|
'arrow_bottom_left': () => import('./components/arrow_bottom_left.vue'),
|
|
7
6
|
'arrow_down': () => import('./components/arrow_down.vue'),
|
|
8
7
|
'align_horizontal': () => import('./components/align_horizontal.vue'),
|
|
9
|
-
'arrow_left': () => import('./components/arrow_left.vue'),
|
|
10
|
-
'arrow_left_circle': () => import('./components/arrow_left_circle.vue'),
|
|
11
|
-
'arrow_right': () => import('./components/arrow_right.vue'),
|
|
12
|
-
'arrow_up': () => import('./components/arrow_up.vue'),
|
|
13
8
|
'arrow_down_circle': () => import('./components/arrow_down_circle.vue'),
|
|
14
9
|
'arrow_right_circle': () => import('./components/arrow_right_circle.vue'),
|
|
15
|
-
'
|
|
16
|
-
'arrow_top_right': () => import('./components/arrow_top_right.vue'),
|
|
17
|
-
'backward': () => import('./components/backward.vue'),
|
|
18
|
-
'backward10': () => import('./components/backward10.vue'),
|
|
10
|
+
'arrow_left_circle': () => import('./components/arrow_left_circle.vue'),
|
|
19
11
|
'arrow_bottom_right': () => import('./components/arrow_bottom_right.vue'),
|
|
20
|
-
'
|
|
12
|
+
'arrow_right': () => import('./components/arrow_right.vue'),
|
|
13
|
+
'arrow_top_right': () => import('./components/arrow_top_right.vue'),
|
|
21
14
|
'arrow_top_left': () => import('./components/arrow_top_left.vue'),
|
|
15
|
+
'arrow_up': () => import('./components/arrow_up.vue'),
|
|
16
|
+
'arrow_up_circle': () => import('./components/arrow_up_circle.vue'),
|
|
22
17
|
'audio_wave': () => import('./components/audio_wave.vue'),
|
|
23
|
-
'
|
|
24
|
-
'
|
|
18
|
+
'arrow_left': () => import('./components/arrow_left.vue'),
|
|
19
|
+
'backspace': () => import('./components/backspace.vue'),
|
|
20
|
+
'airplay': () => import('./components/airplay.vue'),
|
|
21
|
+
'backward10': () => import('./components/backward10.vue'),
|
|
22
|
+
'battery_empty': () => import('./components/battery_empty.vue'),
|
|
23
|
+
'battery_low': () => import('./components/battery_low.vue'),
|
|
24
|
+
'backward': () => import('./components/backward.vue'),
|
|
25
25
|
'battery_half': () => import('./components/battery_half.vue'),
|
|
26
|
-
'bell_ringing': () => import('./components/bell_ringing.vue'),
|
|
27
26
|
'battery_charging': () => import('./components/battery_charging.vue'),
|
|
28
|
-
'
|
|
27
|
+
'bell_disabled': () => import('./components/bell_disabled.vue'),
|
|
28
|
+
'battery_75': () => import('./components/battery_75.vue'),
|
|
29
|
+
'bell_ringing': () => import('./components/bell_ringing.vue'),
|
|
30
|
+
'bag': () => import('./components/bag.vue'),
|
|
31
|
+
'battery_full': () => import('./components/battery_full.vue'),
|
|
29
32
|
'bell_snooze': () => import('./components/bell_snooze.vue'),
|
|
30
|
-
'
|
|
31
|
-
'alarm_clock': () => import('./components/alarm_clock.vue'),
|
|
33
|
+
'bell': () => import('./components/bell.vue'),
|
|
32
34
|
'book_closed': () => import('./components/book_closed.vue'),
|
|
33
35
|
'book': () => import('./components/book.vue'),
|
|
36
|
+
'blocked': () => import('./components/blocked.vue'),
|
|
34
37
|
'bluetooth': () => import('./components/bluetooth.vue'),
|
|
35
38
|
'bookmark_book': () => import('./components/bookmark_book.vue'),
|
|
36
|
-
'book_text': () => import('./components/book_text.vue'),
|
|
37
|
-
'battery_75': () => import('./components/battery_75.vue'),
|
|
38
|
-
'battery_empty': () => import('./components/battery_empty.vue'),
|
|
39
|
-
'arrow_up_circle': () => import('./components/arrow_up_circle.vue'),
|
|
40
|
-
'box_open': () => import('./components/box_open.vue'),
|
|
41
39
|
'box': () => import('./components/box.vue'),
|
|
42
|
-
'box_download': () => import('./components/box_download.vue'),
|
|
43
|
-
'browser': () => import('./components/browser.vue'),
|
|
44
40
|
'briefcase': () => import('./components/briefcase.vue'),
|
|
45
|
-
'branch': () => import('./components/branch.vue'),
|
|
46
41
|
'bookmark': () => import('./components/bookmark.vue'),
|
|
42
|
+
'book_text': () => import('./components/book_text.vue'),
|
|
47
43
|
'browser_alt': () => import('./components/browser_alt.vue'),
|
|
44
|
+
'browser': () => import('./components/browser.vue'),
|
|
45
|
+
'branch': () => import('./components/branch.vue'),
|
|
46
|
+
'box_download': () => import('./components/box_download.vue'),
|
|
48
47
|
'button_minus': () => import('./components/button_minus.vue'),
|
|
49
|
-
'calendar_last_day': () => import('./components/calendar_last_day.vue'),
|
|
50
48
|
'calendar_date': () => import('./components/calendar_date.vue'),
|
|
49
|
+
'calendar_days': () => import('./components/calendar_days.vue'),
|
|
50
|
+
'box_open': () => import('./components/box_open.vue'),
|
|
51
51
|
'calculator': () => import('./components/calculator.vue'),
|
|
52
|
-
'
|
|
52
|
+
'calendar_last_day': () => import('./components/calendar_last_day.vue'),
|
|
53
53
|
'calendar_add': () => import('./components/calendar_add.vue'),
|
|
54
|
-
'button_add': () => import('./components/button_add.vue'),
|
|
55
|
-
'calendar_month': () => import('./components/calendar_month.vue'),
|
|
56
54
|
'calendar_move': () => import('./components/calendar_move.vue'),
|
|
57
55
|
'calendar_remove': () => import('./components/calendar_remove.vue'),
|
|
56
|
+
'calendar_split': () => import('./components/calendar_split.vue'),
|
|
58
57
|
'calendar_week': () => import('./components/calendar_week.vue'),
|
|
58
|
+
'calendar': () => import('./components/calendar.vue'),
|
|
59
59
|
'calendar_day': () => import('./components/calendar_day.vue'),
|
|
60
|
-
'
|
|
61
|
-
'calendar_split': () => import('./components/calendar_split.vue'),
|
|
62
|
-
'camera_noflash_alt': () => import('./components/camera_noflash_alt.vue'),
|
|
60
|
+
'calendar_month': () => import('./components/calendar_month.vue'),
|
|
63
61
|
'capture': () => import('./components/capture.vue'),
|
|
64
|
-
'calendar_days': () => import('./components/calendar_days.vue'),
|
|
65
|
-
'camera_alt': () => import('./components/camera_alt.vue'),
|
|
66
62
|
'camera_noflash': () => import('./components/camera_noflash.vue'),
|
|
67
|
-
'
|
|
68
|
-
'
|
|
69
|
-
'carousel': () => import('./components/carousel.vue'),
|
|
70
|
-
'calendar': () => import('./components/calendar.vue'),
|
|
63
|
+
'camera_noflash_alt': () => import('./components/camera_noflash_alt.vue'),
|
|
64
|
+
'camera': () => import('./components/camera.vue'),
|
|
71
65
|
'card_timeline': () => import('./components/card_timeline.vue'),
|
|
72
66
|
'cart': () => import('./components/cart.vue'),
|
|
73
|
-
'
|
|
67
|
+
'alarm_clock': () => import('./components/alarm_clock.vue'),
|
|
68
|
+
'card_view': () => import('./components/card_view.vue'),
|
|
69
|
+
'camera_alt': () => import('./components/camera_alt.vue'),
|
|
70
|
+
'check_circle_outside': () => import('./components/check_circle_outside.vue'),
|
|
74
71
|
'chat_add': () => import('./components/chat_add.vue'),
|
|
75
|
-
'checkbox_empty': () => import('./components/checkbox_empty.vue'),
|
|
76
|
-
'checkbox_checked': () => import('./components/checkbox_checked.vue'),
|
|
77
72
|
'check': () => import('./components/check.vue'),
|
|
78
|
-
'
|
|
79
|
-
'chevron_close': () => import('./components/chevron_close.vue'),
|
|
80
|
-
'chevron_left_double': () => import('./components/chevron_left_double.vue'),
|
|
73
|
+
'cast': () => import('./components/cast.vue'),
|
|
81
74
|
'check_circle': () => import('./components/check_circle.vue'),
|
|
82
|
-
'
|
|
83
|
-
'
|
|
75
|
+
'checkbox_checked': () => import('./components/checkbox_checked.vue'),
|
|
76
|
+
'carousel': () => import('./components/carousel.vue'),
|
|
77
|
+
'checkbox_empty': () => import('./components/checkbox_empty.vue'),
|
|
78
|
+
'chevron_close': () => import('./components/chevron_close.vue'),
|
|
79
|
+
'chevron_down_circle': () => import('./components/chevron_down_circle.vue'),
|
|
84
80
|
'chevron_left_circle': () => import('./components/chevron_left_circle.vue'),
|
|
85
81
|
'chevron_open': () => import('./components/chevron_open.vue'),
|
|
86
|
-
'chevron_down_double': () => import('./components/chevron_down_double.vue'),
|
|
87
|
-
'chevron_right_circle': () => import('./components/chevron_right_circle.vue'),
|
|
88
|
-
'chevron_down_circle': () => import('./components/chevron_down_circle.vue'),
|
|
89
|
-
'chevron_right': () => import('./components/chevron_right.vue'),
|
|
90
82
|
'chevron_right_double': () => import('./components/chevron_right_double.vue'),
|
|
83
|
+
'chevron_right': () => import('./components/chevron_right.vue'),
|
|
84
|
+
'chevron_left_double': () => import('./components/chevron_left_double.vue'),
|
|
85
|
+
'chevron_right_circle': () => import('./components/chevron_right_circle.vue'),
|
|
86
|
+
'chevron_left': () => import('./components/chevron_left.vue'),
|
|
87
|
+
'circle_menu': () => import('./components/circle_menu.vue'),
|
|
91
88
|
'chevron_up_double': () => import('./components/chevron_up_double.vue'),
|
|
89
|
+
'chevron_down': () => import('./components/chevron_down.vue'),
|
|
90
|
+
'circle': () => import('./components/circle.vue'),
|
|
92
91
|
'chevron_up': () => import('./components/chevron_up.vue'),
|
|
92
|
+
'chevron_down_double': () => import('./components/chevron_down_double.vue'),
|
|
93
93
|
'chevron_up_circle': () => import('./components/chevron_up_circle.vue'),
|
|
94
|
-
'clipboard_add': () => import('./components/clipboard_add.vue'),
|
|
95
|
-
'clipboard_cross': () => import('./components/clipboard_cross.vue'),
|
|
96
|
-
'circle': () => import('./components/circle.vue'),
|
|
97
94
|
'clipboard_check': () => import('./components/clipboard_check.vue'),
|
|
98
|
-
'
|
|
95
|
+
'circle_split': () => import('./components/circle_split.vue'),
|
|
99
96
|
'clipboard_copy': () => import('./components/clipboard_copy.vue'),
|
|
100
|
-
'
|
|
101
|
-
'cloud_download': () => import('./components/cloud_download.vue'),
|
|
97
|
+
'clipboard_add': () => import('./components/clipboard_add.vue'),
|
|
102
98
|
'clipboard_notes': () => import('./components/clipboard_notes.vue'),
|
|
103
|
-
'
|
|
104
|
-
'cloud_disconnect': () => import('./components/cloud_disconnect.vue'),
|
|
99
|
+
'clipboard': () => import('./components/clipboard.vue'),
|
|
105
100
|
'cloud': () => import('./components/cloud.vue'),
|
|
101
|
+
'clipboard_cross': () => import('./components/clipboard_cross.vue'),
|
|
102
|
+
'clock': () => import('./components/clock.vue'),
|
|
103
|
+
'cloud_disconnect': () => import('./components/cloud_disconnect.vue'),
|
|
104
|
+
'clipboard_remove': () => import('./components/clipboard_remove.vue'),
|
|
106
105
|
'close': () => import('./components/close.vue'),
|
|
107
|
-
'
|
|
108
|
-
'cloud_upload': () => import('./components/cloud_upload.vue'),
|
|
109
|
-
'cloud_upload_alt': () => import('./components/cloud_upload_alt.vue'),
|
|
106
|
+
'button_add': () => import('./components/button_add.vue'),
|
|
110
107
|
'code': () => import('./components/code.vue'),
|
|
111
|
-
'
|
|
108
|
+
'cloud_download': () => import('./components/cloud_download.vue'),
|
|
109
|
+
'cloud_upload_alt': () => import('./components/cloud_upload_alt.vue'),
|
|
110
|
+
'cloud_download_alt': () => import('./components/cloud_download_alt.vue'),
|
|
111
|
+
'cloud_upload': () => import('./components/cloud_upload.vue'),
|
|
112
|
+
'coins': () => import('./components/coins.vue'),
|
|
113
|
+
'compass': () => import('./components/compass.vue'),
|
|
112
114
|
'component_add': () => import('./components/component_add.vue'),
|
|
115
|
+
'chain': () => import('./components/chain.vue'),
|
|
116
|
+
'coin': () => import('./components/coin.vue'),
|
|
113
117
|
'coffee': () => import('./components/coffee.vue'),
|
|
114
|
-
'compass': () => import('./components/compass.vue'),
|
|
115
|
-
'clock': () => import('./components/clock.vue'),
|
|
116
|
-
'contacts': () => import('./components/contacts.vue'),
|
|
117
|
-
'coins': () => import('./components/coins.vue'),
|
|
118
118
|
'contract': () => import('./components/contract.vue'),
|
|
119
|
-
'
|
|
120
|
-
'cross_circle': () => import('./components/cross_circle.vue'),
|
|
119
|
+
'credit_card': () => import('./components/credit_card.vue'),
|
|
121
120
|
'connect': () => import('./components/connect.vue'),
|
|
122
|
-
'
|
|
121
|
+
'contacts': () => import('./components/contacts.vue'),
|
|
122
|
+
'cross': () => import('./components/cross.vue'),
|
|
123
|
+
'cube': () => import('./components/cube.vue'),
|
|
124
|
+
'create': () => import('./components/create.vue'),
|
|
123
125
|
'crop': () => import('./components/crop.vue'),
|
|
126
|
+
'cross_circle': () => import('./components/cross_circle.vue'),
|
|
124
127
|
'diamond': () => import('./components/diamond.vue'),
|
|
125
|
-
'
|
|
126
|
-
'database': () => import('./components/database.vue'),
|
|
128
|
+
'directions': () => import('./components/directions.vue'),
|
|
127
129
|
'display': () => import('./components/display.vue'),
|
|
128
|
-
'
|
|
129
|
-
'
|
|
130
|
-
'
|
|
130
|
+
'disc': () => import('./components/disc.vue'),
|
|
131
|
+
'crosshair': () => import('./components/crosshair.vue'),
|
|
132
|
+
'display_alt': () => import('./components/display_alt.vue'),
|
|
131
133
|
'document_justified': () => import('./components/document_justified.vue'),
|
|
132
|
-
'directions': () => import('./components/directions.vue'),
|
|
133
|
-
'cross': () => import('./components/cross.vue'),
|
|
134
|
-
'document_stack': () => import('./components/document_stack.vue'),
|
|
135
134
|
'document_list': () => import('./components/document_list.vue'),
|
|
136
|
-
'
|
|
135
|
+
'database': () => import('./components/database.vue'),
|
|
137
136
|
'document': () => import('./components/document.vue'),
|
|
138
|
-
'download': () => import('./components/download.vue'),
|
|
139
|
-
'display_alt': () => import('./components/display_alt.vue'),
|
|
140
137
|
'door': () => import('./components/door.vue'),
|
|
141
|
-
'
|
|
138
|
+
'downward': () => import('./components/downward.vue'),
|
|
139
|
+
'document_stack': () => import('./components/document_stack.vue'),
|
|
140
|
+
'download': () => import('./components/download.vue'),
|
|
142
141
|
'download_alt': () => import('./components/download_alt.vue'),
|
|
143
142
|
'document_words': () => import('./components/document_words.vue'),
|
|
144
143
|
'drag_circle': () => import('./components/drag_circle.vue'),
|
|
145
144
|
'drag_vertical': () => import('./components/drag_vertical.vue'),
|
|
146
|
-
'
|
|
147
|
-
'exit_left': () => import('./components/exit_left.vue'),
|
|
145
|
+
'cylinder': () => import('./components/cylinder.vue'),
|
|
148
146
|
'drag': () => import('./components/drag.vue'),
|
|
149
147
|
'duplicate_alt': () => import('./components/duplicate_alt.vue'),
|
|
148
|
+
'enter': () => import('./components/enter.vue'),
|
|
150
149
|
'episodes': () => import('./components/episodes.vue'),
|
|
151
150
|
'duplicate': () => import('./components/duplicate.vue'),
|
|
152
|
-
'expand_height': () => import('./components/expand_height.vue'),
|
|
153
151
|
'external': () => import('./components/external.vue'),
|
|
154
|
-
'
|
|
155
|
-
'eye': () => import('./components/eye.vue'),
|
|
156
|
-
'face_delighted': () => import('./components/face_delighted.vue'),
|
|
152
|
+
'exit_left': () => import('./components/exit_left.vue'),
|
|
157
153
|
'expand_width': () => import('./components/expand_width.vue'),
|
|
158
154
|
'exit_right': () => import('./components/exit_right.vue'),
|
|
155
|
+
'door_alt': () => import('./components/door_alt.vue'),
|
|
156
|
+
'eye': () => import('./components/eye.vue'),
|
|
157
|
+
'expand_height': () => import('./components/expand_height.vue'),
|
|
159
158
|
'eye_closed': () => import('./components/eye_closed.vue'),
|
|
160
|
-
'
|
|
161
|
-
'expand': () => import('./components/expand.vue'),
|
|
162
|
-
'file_upload': () => import('./components/file_upload.vue'),
|
|
163
|
-
'enter': () => import('./components/enter.vue'),
|
|
164
|
-
'face_neutral': () => import('./components/face_neutral.vue'),
|
|
165
|
-
'eye_no': () => import('./components/eye_no.vue'),
|
|
166
|
-
'file_download': () => import('./components/file_download.vue'),
|
|
159
|
+
'face_delighted': () => import('./components/face_delighted.vue'),
|
|
167
160
|
'face_sad': () => import('./components/face_sad.vue'),
|
|
161
|
+
'enter_alt': () => import('./components/enter_alt.vue'),
|
|
168
162
|
'fi_fingerprint': () => import('./components/fi_fingerprint.vue'),
|
|
169
|
-
'
|
|
170
|
-
'
|
|
163
|
+
'file_upload': () => import('./components/file_upload.vue'),
|
|
164
|
+
'files_multi': () => import('./components/files_multi.vue'),
|
|
165
|
+
'file_download': () => import('./components/file_download.vue'),
|
|
166
|
+
'files_history': () => import('./components/files_history.vue'),
|
|
167
|
+
'face_neutral': () => import('./components/face_neutral.vue'),
|
|
171
168
|
'filter': () => import('./components/filter.vue'),
|
|
172
|
-
'
|
|
173
|
-
'
|
|
174
|
-
'
|
|
169
|
+
'film': () => import('./components/film.vue'),
|
|
170
|
+
'face_happy': () => import('./components/face_happy.vue'),
|
|
171
|
+
'files_stack': () => import('./components/files_stack.vue'),
|
|
172
|
+
'filter_all': () => import('./components/filter_all.vue'),
|
|
175
173
|
'filter_ongoing': () => import('./components/filter_ongoing.vue'),
|
|
176
|
-
'filter_single': () => import('./components/filter_single.vue'),
|
|
177
|
-
'files_multi': () => import('./components/files_multi.vue'),
|
|
178
|
-
'flag': () => import('./components/flag.vue'),
|
|
179
|
-
'filtering': () => import('./components/filtering.vue'),
|
|
180
174
|
'filter_overdue': () => import('./components/filter_overdue.vue'),
|
|
181
175
|
'fingerprint': () => import('./components/fingerprint.vue'),
|
|
182
176
|
'flame_alt': () => import('./components/flame_alt.vue'),
|
|
177
|
+
'filter_completed': () => import('./components/filter_completed.vue'),
|
|
178
|
+
'filter_not_started': () => import('./components/filter_not_started.vue'),
|
|
179
|
+
'filter_single': () => import('./components/filter_single.vue'),
|
|
180
|
+
'folder_closed': () => import('./components/folder_closed.vue'),
|
|
181
|
+
'flame': () => import('./components/flame.vue'),
|
|
183
182
|
'flip_view': () => import('./components/flip_view.vue'),
|
|
184
|
-
'folder_open': () => import('./components/folder_open.vue'),
|
|
185
183
|
'floppy': () => import('./components/floppy.vue'),
|
|
186
|
-
'
|
|
187
|
-
'folder_closed': () => import('./components/folder_closed.vue'),
|
|
188
|
-
'folder_add': () => import('./components/folder_add.vue'),
|
|
189
|
-
'folder_minus': () => import('./components/folder_minus.vue'),
|
|
184
|
+
'filtering': () => import('./components/filtering.vue'),
|
|
190
185
|
'forward': () => import('./components/forward.vue'),
|
|
191
186
|
'forward_alt': () => import('./components/forward_alt.vue'),
|
|
192
|
-
'
|
|
193
|
-
'
|
|
187
|
+
'filter_circle': () => import('./components/filter_circle.vue'),
|
|
188
|
+
'folder_minus': () => import('./components/folder_minus.vue'),
|
|
189
|
+
'folder_open': () => import('./components/folder_open.vue'),
|
|
190
|
+
'folder_add': () => import('./components/folder_add.vue'),
|
|
191
|
+
'flag': () => import('./components/flag.vue'),
|
|
194
192
|
'forward10': () => import('./components/forward10.vue'),
|
|
193
|
+
'fullscreen': () => import('./components/fullscreen.vue'),
|
|
194
|
+
'gauge': () => import('./components/gauge.vue'),
|
|
195
195
|
'funnel': () => import('./components/funnel.vue'),
|
|
196
196
|
'frame': () => import('./components/frame.vue'),
|
|
197
|
-
'gauge': () => import('./components/gauge.vue'),
|
|
198
197
|
'fork_git': () => import('./components/fork_git.vue'),
|
|
199
|
-
'gift': () => import('./components/gift.vue'),
|
|
200
|
-
'grab': () => import('./components/grab.vue'),
|
|
201
|
-
'graph_box': () => import('./components/graph_box.vue'),
|
|
202
198
|
'graph_bar': () => import('./components/graph_bar.vue'),
|
|
203
|
-
'graph_increase': () => import('./components/graph_increase.vue'),
|
|
204
|
-
'gps': () => import('./components/gps.vue'),
|
|
205
199
|
'globe': () => import('./components/globe.vue'),
|
|
206
|
-
'
|
|
207
|
-
'grid_circles': () => import('./components/grid_circles.vue'),
|
|
200
|
+
'grab': () => import('./components/grab.vue'),
|
|
208
201
|
'grid': () => import('./components/grid.vue'),
|
|
202
|
+
'gps': () => import('./components/gps.vue'),
|
|
203
|
+
'gift': () => import('./components/gift.vue'),
|
|
209
204
|
'grid_circles_add': () => import('./components/grid_circles_add.vue'),
|
|
210
|
-
'
|
|
211
|
-
'
|
|
212
|
-
'grid_squares_add': () => import('./components/grid_squares_add.vue'),
|
|
205
|
+
'grid_circles': () => import('./components/grid_circles.vue'),
|
|
206
|
+
'grid_small': () => import('./components/grid_small.vue'),
|
|
213
207
|
'hand': () => import('./components/hand.vue'),
|
|
214
|
-
'height': () => import('./components/height.vue'),
|
|
215
|
-
'heart': () => import('./components/heart.vue'),
|
|
216
208
|
'hash': () => import('./components/hash.vue'),
|
|
217
|
-
'
|
|
218
|
-
'
|
|
209
|
+
'grid_squares_add': () => import('./components/grid_squares_add.vue'),
|
|
210
|
+
'grid_squares': () => import('./components/grid_squares.vue'),
|
|
211
|
+
'graph_increase': () => import('./components/graph_increase.vue'),
|
|
212
|
+
'harddrive': () => import('./components/harddrive.vue'),
|
|
219
213
|
'hierarchy': () => import('./components/hierarchy.vue'),
|
|
220
|
-
'
|
|
214
|
+
'heart_remove': () => import('./components/heart_remove.vue'),
|
|
215
|
+
'heart_rate': () => import('./components/heart_rate.vue'),
|
|
216
|
+
'heart': () => import('./components/heart.vue'),
|
|
221
217
|
'home_check': () => import('./components/home_check.vue'),
|
|
218
|
+
'graph_box': () => import('./components/graph_box.vue'),
|
|
222
219
|
'home_door': () => import('./components/home_door.vue'),
|
|
220
|
+
'inbox': () => import('./components/inbox.vue'),
|
|
221
|
+
'home': () => import('./components/home.vue'),
|
|
223
222
|
'import': () => import('./components/import.vue'),
|
|
224
|
-
'info_circle': () => import('./components/info_circle.vue'),
|
|
225
223
|
'inbox_alt': () => import('./components/inbox_alt.vue'),
|
|
226
|
-
'
|
|
224
|
+
'jump_left': () => import('./components/jump_left.vue'),
|
|
225
|
+
'iphone_portrait': () => import('./components/iphone_portrait.vue'),
|
|
227
226
|
'jump_forward': () => import('./components/jump_forward.vue'),
|
|
228
|
-
'
|
|
229
|
-
'jump_backward': () => import('./components/jump_backward.vue'),
|
|
230
|
-
'iphone_portrait': () => import('./components/iphone_portrait.vue'),
|
|
231
|
-
'inbox': () => import('./components/inbox.vue'),
|
|
232
|
-
'lightbulb_on': () => import('./components/lightbulb_on.vue'),
|
|
233
|
-
'heart_rate': () => import('./components/heart_rate.vue'),
|
|
227
|
+
'jump_right': () => import('./components/jump_right.vue'),
|
|
234
228
|
'laptop': () => import('./components/laptop.vue'),
|
|
235
|
-
'
|
|
236
|
-
'
|
|
237
|
-
'
|
|
229
|
+
'iphone_landscape': () => import('./components/iphone_landscape.vue'),
|
|
230
|
+
'home_alt': () => import('./components/home_alt.vue'),
|
|
231
|
+
'eye_no': () => import('./components/eye_no.vue'),
|
|
232
|
+
'jump_backward': () => import('./components/jump_backward.vue'),
|
|
233
|
+
'keyboard': () => import('./components/keyboard.vue'),
|
|
234
|
+
'expand': () => import('./components/expand.vue'),
|
|
235
|
+
'height': () => import('./components/height.vue'),
|
|
238
236
|
'lightning': () => import('./components/lightning.vue'),
|
|
239
237
|
'link_broken': () => import('./components/link_broken.vue'),
|
|
240
|
-
'lineweight': () => import('./components/lineweight.vue'),
|
|
241
238
|
'link': () => import('./components/link.vue'),
|
|
242
|
-
'jump_right': () => import('./components/jump_right.vue'),
|
|
243
239
|
'link_horizontal': () => import('./components/link_horizontal.vue'),
|
|
240
|
+
'lightbulb': () => import('./components/lightbulb.vue'),
|
|
241
|
+
'list': () => import('./components/list.vue'),
|
|
244
242
|
'link_vertical': () => import('./components/link_vertical.vue'),
|
|
245
|
-
'
|
|
246
|
-
'
|
|
243
|
+
'lightbulb_on': () => import('./components/lightbulb_on.vue'),
|
|
244
|
+
'info_circle': () => import('./components/info_circle.vue'),
|
|
245
|
+
'list_numbered': () => import('./components/list_numbered.vue'),
|
|
246
|
+
'location': () => import('./components/location.vue'),
|
|
247
|
+
'lock_open': () => import('./components/lock_open.vue'),
|
|
248
|
+
'lineweight': () => import('./components/lineweight.vue'),
|
|
249
|
+
'lightning_alt': () => import('./components/lightning_alt.vue'),
|
|
250
|
+
'link_alt': () => import('./components/link_alt.vue'),
|
|
247
251
|
'loader': () => import('./components/loader.vue'),
|
|
248
252
|
'mail': () => import('./components/mail.vue'),
|
|
249
|
-
'filter_all': () => import('./components/filter_all.vue'),
|
|
250
253
|
'mail_new': () => import('./components/mail_new.vue'),
|
|
251
|
-
'
|
|
254
|
+
'mail_delete': () => import('./components/mail_delete.vue'),
|
|
252
255
|
'mail_remove': () => import('./components/mail_remove.vue'),
|
|
256
|
+
'mail_add': () => import('./components/mail_add.vue'),
|
|
253
257
|
'marquee': () => import('./components/marquee.vue'),
|
|
254
|
-
'
|
|
255
|
-
'
|
|
256
|
-
'message_writing': () => import('./components/message_writing.vue'),
|
|
258
|
+
'message': () => import('./components/message.vue'),
|
|
259
|
+
'list_add': () => import('./components/list_add.vue'),
|
|
257
260
|
'menu_horizontal': () => import('./components/menu_horizontal.vue'),
|
|
258
|
-
'
|
|
259
|
-
'
|
|
260
|
-
'
|
|
261
|
-
'microphone': () => import('./components/microphone.vue'),
|
|
262
|
-
'menu_vertical': () => import('./components/menu_vertical.vue'),
|
|
261
|
+
'menu_hamburger': () => import('./components/menu_hamburger.vue'),
|
|
262
|
+
'mail_open': () => import('./components/mail_open.vue'),
|
|
263
|
+
'maximise': () => import('./components/maximise.vue'),
|
|
263
264
|
'microphone_disabled': () => import('./components/microphone_disabled.vue'),
|
|
264
|
-
'
|
|
265
|
-
'location': () => import('./components/location.vue'),
|
|
266
|
-
'minus': () => import('./components/minus.vue'),
|
|
267
|
-
'minimise': () => import('./components/minimise.vue'),
|
|
265
|
+
'microphone': () => import('./components/microphone.vue'),
|
|
268
266
|
'midpoint': () => import('./components/midpoint.vue'),
|
|
269
|
-
'
|
|
270
|
-
'
|
|
271
|
-
'
|
|
267
|
+
'menu_vertical': () => import('./components/menu_vertical.vue'),
|
|
268
|
+
'mini_player': () => import('./components/mini_player.vue'),
|
|
269
|
+
'lock': () => import('./components/lock.vue'),
|
|
272
270
|
'move': () => import('./components/move.vue'),
|
|
273
|
-
'nut': () => import('./components/nut.vue'),
|
|
274
|
-
'list_numbered': () => import('./components/list_numbered.vue'),
|
|
275
|
-
'panel_left': () => import('./components/panel_left.vue'),
|
|
276
271
|
'no_sign': () => import('./components/no_sign.vue'),
|
|
272
|
+
'minus_circle': () => import('./components/minus_circle.vue'),
|
|
273
|
+
'minimise': () => import('./components/minimise.vue'),
|
|
274
|
+
'newspaper': () => import('./components/newspaper.vue'),
|
|
275
|
+
'mail_minus': () => import('./components/mail_minus.vue'),
|
|
276
|
+
'message_writing': () => import('./components/message_writing.vue'),
|
|
277
|
+
'notification': () => import('./components/notification.vue'),
|
|
278
|
+
'pages': () => import('./components/pages.vue'),
|
|
277
279
|
'optional': () => import('./components/optional.vue'),
|
|
280
|
+
'panel_bottom': () => import('./components/panel_bottom.vue'),
|
|
281
|
+
'moon': () => import('./components/moon.vue'),
|
|
278
282
|
'panel_sectioned': () => import('./components/panel_sectioned.vue'),
|
|
279
|
-
'
|
|
280
|
-
'
|
|
283
|
+
'panel_center': () => import('./components/panel_center.vue'),
|
|
284
|
+
'microphone_muted': () => import('./components/microphone_muted.vue'),
|
|
285
|
+
'nut': () => import('./components/nut.vue'),
|
|
281
286
|
'panel_top': () => import('./components/panel_top.vue'),
|
|
282
287
|
'paper': () => import('./components/paper.vue'),
|
|
283
|
-
'
|
|
284
|
-
'
|
|
285
|
-
'
|
|
288
|
+
'paper_plane': () => import('./components/paper_plane.vue'),
|
|
289
|
+
'panel_right': () => import('./components/panel_right.vue'),
|
|
290
|
+
'minus': () => import('./components/minus.vue'),
|
|
286
291
|
'paper_folded': () => import('./components/paper_folded.vue'),
|
|
287
|
-
'paragraph_end': () => import('./components/paragraph_end.vue'),
|
|
288
292
|
'paperclip': () => import('./components/paperclip.vue'),
|
|
293
|
+
'paragraph_left': () => import('./components/paragraph_left.vue'),
|
|
294
|
+
'paragraph_start': () => import('./components/paragraph_start.vue'),
|
|
295
|
+
'paper_plane_alt': () => import('./components/paper_plane_alt.vue'),
|
|
296
|
+
'phone_landscape': () => import('./components/phone_landscape.vue'),
|
|
297
|
+
'paragraph_end': () => import('./components/paragraph_end.vue'),
|
|
298
|
+
'panel_left': () => import('./components/panel_left.vue'),
|
|
289
299
|
'paragraph_center': () => import('./components/paragraph_center.vue'),
|
|
290
300
|
'paragraph_right': () => import('./components/paragraph_right.vue'),
|
|
291
|
-
'panel_center': () => import('./components/panel_center.vue'),
|
|
292
301
|
'pause': () => import('./components/pause.vue'),
|
|
293
|
-
'pages': () => import('./components/pages.vue'),
|
|
294
|
-
'paragraph_left': () => import('./components/paragraph_left.vue'),
|
|
295
302
|
'notebook': () => import('./components/notebook.vue'),
|
|
296
|
-
'
|
|
297
|
-
'
|
|
303
|
+
'play_button': () => import('./components/play_button.vue'),
|
|
304
|
+
'pen': () => import('./components/pen.vue'),
|
|
305
|
+
'picture': () => import('./components/picture.vue'),
|
|
298
306
|
'phone_portrait': () => import('./components/phone_portrait.vue'),
|
|
299
307
|
'pie_quarter': () => import('./components/pie_quarter.vue'),
|
|
308
|
+
'pie_third': () => import('./components/pie_third.vue'),
|
|
300
309
|
'play': () => import('./components/play.vue'),
|
|
301
|
-
'notification': () => import('./components/notification.vue'),
|
|
302
310
|
'plus': () => import('./components/plus.vue'),
|
|
303
|
-
'play_button': () => import('./components/play_button.vue'),
|
|
304
311
|
'plus_circle': () => import('./components/plus_circle.vue'),
|
|
305
|
-
'
|
|
306
|
-
'
|
|
312
|
+
'pie_half': () => import('./components/pie_half.vue'),
|
|
313
|
+
'projector': () => import('./components/projector.vue'),
|
|
314
|
+
'project_nonprofit': () => import('./components/project_nonprofit.vue'),
|
|
315
|
+
'project_fixed': () => import('./components/project_fixed.vue'),
|
|
316
|
+
'pull_down': () => import('./components/pull_down.vue'),
|
|
307
317
|
'printer': () => import('./components/printer.vue'),
|
|
308
318
|
'postcard': () => import('./components/postcard.vue'),
|
|
309
|
-
'pen': () => import('./components/pen.vue'),
|
|
310
|
-
'pull_down': () => import('./components/pull_down.vue'),
|
|
311
|
-
'paper_plane': () => import('./components/paper_plane.vue'),
|
|
312
|
-
'projector': () => import('./components/projector.vue'),
|
|
313
|
-
'pie_third': () => import('./components/pie_third.vue'),
|
|
314
|
-
'push_down': () => import('./components/push_down.vue'),
|
|
315
|
-
'push_up': () => import('./components/push_up.vue'),
|
|
316
|
-
'picture': () => import('./components/picture.vue'),
|
|
317
319
|
'pull_up': () => import('./components/pull_up.vue'),
|
|
318
|
-
'push_right': () => import('./components/push_right.vue'),
|
|
319
|
-
'question_circle': () => import('./components/question_circle.vue'),
|
|
320
|
-
'project_nonprofit': () => import('./components/project_nonprofit.vue'),
|
|
321
|
-
'pie_half': () => import('./components/pie_half.vue'),
|
|
322
320
|
'pull_right': () => import('./components/pull_right.vue'),
|
|
323
|
-
'redo': () => import('./components/redo.vue'),
|
|
324
321
|
'push_left': () => import('./components/push_left.vue'),
|
|
325
|
-
'
|
|
326
|
-
'
|
|
322
|
+
'push_down': () => import('./components/push_down.vue'),
|
|
323
|
+
'push_right': () => import('./components/push_right.vue'),
|
|
327
324
|
'radio_on': () => import('./components/radio_on.vue'),
|
|
325
|
+
'question_circle': () => import('./components/question_circle.vue'),
|
|
326
|
+
'pull_left': () => import('./components/pull_left.vue'),
|
|
327
|
+
'refresh': () => import('./components/refresh.vue'),
|
|
328
328
|
'record': () => import('./components/record.vue'),
|
|
329
|
+
'receipt': () => import('./components/receipt.vue'),
|
|
330
|
+
'redo': () => import('./components/redo.vue'),
|
|
329
331
|
'replicate_alt': () => import('./components/replicate_alt.vue'),
|
|
330
|
-
'
|
|
331
|
-
'project_fixed': () => import('./components/project_fixed.vue'),
|
|
332
|
+
'refresh_alt': () => import('./components/refresh_alt.vue'),
|
|
332
333
|
'reset': () => import('./components/reset.vue'),
|
|
333
|
-
'pull_left': () => import('./components/pull_left.vue'),
|
|
334
|
-
'reset_alt': () => import('./components/reset_alt.vue'),
|
|
335
|
-
'reset_hard': () => import('./components/reset_hard.vue'),
|
|
336
334
|
'reset_temporary': () => import('./components/reset_temporary.vue'),
|
|
337
|
-
'
|
|
338
|
-
'
|
|
335
|
+
'reset_alt': () => import('./components/reset_alt.vue'),
|
|
336
|
+
'project_tnm': () => import('./components/project_tnm.vue'),
|
|
339
337
|
'reverse': () => import('./components/reverse.vue'),
|
|
340
|
-
'
|
|
341
|
-
'
|
|
338
|
+
'retweet': () => import('./components/retweet.vue'),
|
|
339
|
+
'push_up': () => import('./components/push_up.vue'),
|
|
340
|
+
'replicate': () => import('./components/replicate.vue'),
|
|
342
341
|
'ruler': () => import('./components/ruler.vue'),
|
|
343
|
-
'scale_contract': () => import('./components/scale_contract.vue'),
|
|
344
|
-
'refresh_alt': () => import('./components/refresh_alt.vue'),
|
|
345
|
-
'link_alt': () => import('./components/link_alt.vue'),
|
|
346
342
|
'reuse': () => import('./components/reuse.vue'),
|
|
347
|
-
'
|
|
348
|
-
'
|
|
349
|
-
'
|
|
350
|
-
'
|
|
343
|
+
'required': () => import('./components/required.vue'),
|
|
344
|
+
'scale': () => import('./components/scale.vue'),
|
|
345
|
+
'scale_contract': () => import('./components/scale_contract.vue'),
|
|
346
|
+
'reverse_alt': () => import('./components/reverse_alt.vue'),
|
|
351
347
|
'scalpel': () => import('./components/scalpel.vue'),
|
|
352
|
-
'
|
|
348
|
+
'search': () => import('./components/search.vue'),
|
|
353
349
|
'share_alt': () => import('./components/share_alt.vue'),
|
|
354
|
-
'
|
|
355
|
-
'
|
|
356
|
-
'
|
|
350
|
+
'reset_forward': () => import('./components/reset_forward.vue'),
|
|
351
|
+
'revert': () => import('./components/revert.vue'),
|
|
352
|
+
'rocket': () => import('./components/rocket.vue'),
|
|
353
|
+
'side_menu': () => import('./components/side_menu.vue'),
|
|
354
|
+
'slash_backward': () => import('./components/slash_backward.vue'),
|
|
357
355
|
'server': () => import('./components/server.vue'),
|
|
358
|
-
'
|
|
356
|
+
'reset_hard': () => import('./components/reset_hard.vue'),
|
|
359
357
|
'sort': () => import('./components/sort.vue'),
|
|
360
|
-
'
|
|
358
|
+
'scale_extend': () => import('./components/scale_extend.vue'),
|
|
359
|
+
'split': () => import('./components/split.vue'),
|
|
360
|
+
'shuffle': () => import('./components/shuffle.vue'),
|
|
361
|
+
'share': () => import('./components/share.vue'),
|
|
362
|
+
'sort_alt': () => import('./components/sort_alt.vue'),
|
|
363
|
+
'settings': () => import('./components/settings.vue'),
|
|
364
|
+
'speech_bubble': () => import('./components/speech_bubble.vue'),
|
|
365
|
+
'slash_forward': () => import('./components/slash_forward.vue'),
|
|
361
366
|
'speech_typing': () => import('./components/speech_typing.vue'),
|
|
362
367
|
'sliders': () => import('./components/sliders.vue'),
|
|
363
|
-
'split_three': () => import('./components/split_three.vue'),
|
|
364
|
-
'star': () => import('./components/star.vue'),
|
|
365
|
-
'split': () => import('./components/split.vue'),
|
|
366
368
|
'sun': () => import('./components/sun.vue'),
|
|
367
|
-
'
|
|
368
|
-
'
|
|
369
|
-
'
|
|
370
|
-
'
|
|
369
|
+
'split_three': () => import('./components/split_three.vue'),
|
|
370
|
+
'table_header': () => import('./components/table_header.vue'),
|
|
371
|
+
'table': () => import('./components/table.vue'),
|
|
372
|
+
'target': () => import('./components/target.vue'),
|
|
371
373
|
'tag': () => import('./components/tag.vue'),
|
|
372
374
|
'tag_milestone': () => import('./components/tag_milestone.vue'),
|
|
373
|
-
'
|
|
374
|
-
'
|
|
375
|
+
'support': () => import('./components/support.vue'),
|
|
376
|
+
'thread': () => import('./components/thread.vue'),
|
|
377
|
+
'thumbs_down': () => import('./components/thumbs_down.vue'),
|
|
375
378
|
'swap': () => import('./components/swap.vue'),
|
|
376
|
-
'table': () => import('./components/table.vue'),
|
|
377
|
-
'table_header': () => import('./components/table_header.vue'),
|
|
378
|
-
'target': () => import('./components/target.vue'),
|
|
379
379
|
'ticket': () => import('./components/ticket.vue'),
|
|
380
|
-
'
|
|
380
|
+
'thumbs_up': () => import('./components/thumbs_up.vue'),
|
|
381
|
+
'translate': () => import('./components/translate.vue'),
|
|
382
|
+
'tags': () => import('./components/tags.vue'),
|
|
381
383
|
'toggles': () => import('./components/toggles.vue'),
|
|
382
|
-
'thread': () => import('./components/thread.vue'),
|
|
383
384
|
'todo': () => import('./components/todo.vue'),
|
|
384
|
-
'
|
|
385
|
+
'toggle': () => import('./components/toggle.vue'),
|
|
385
386
|
'trash': () => import('./components/trash.vue'),
|
|
387
|
+
'trash_alt': () => import('./components/trash_alt.vue'),
|
|
386
388
|
'trophy': () => import('./components/trophy.vue'),
|
|
387
|
-
'type_date': () => import('./components/type_date.vue'),
|
|
388
|
-
'translate': () => import('./components/translate.vue'),
|
|
389
|
-
'type_formula': () => import('./components/type_formula.vue'),
|
|
390
|
-
'toggle': () => import('./components/toggle.vue'),
|
|
391
|
-
'type_multiselect': () => import('./components/type_multiselect.vue'),
|
|
392
389
|
'tv_mode': () => import('./components/tv_mode.vue'),
|
|
390
|
+
'speaker': () => import('./components/speaker.vue'),
|
|
391
|
+
'star': () => import('./components/star.vue'),
|
|
393
392
|
'type_checkbox': () => import('./components/type_checkbox.vue'),
|
|
394
|
-
'
|
|
393
|
+
'type_date': () => import('./components/type_date.vue'),
|
|
395
394
|
'type_email': () => import('./components/type_email.vue'),
|
|
396
|
-
'type_number': () => import('./components/type_number.vue'),
|
|
397
|
-
'type_phone': () => import('./components/type_phone.vue'),
|
|
398
395
|
'type_file': () => import('./components/type_file.vue'),
|
|
399
|
-
'
|
|
396
|
+
'type_formula': () => import('./components/type_formula.vue'),
|
|
397
|
+
'type_id': () => import('./components/type_id.vue'),
|
|
398
|
+
'type_phone': () => import('./components/type_phone.vue'),
|
|
400
399
|
'type_person': () => import('./components/type_person.vue'),
|
|
401
|
-
'
|
|
400
|
+
'type_multiselect': () => import('./components/type_multiselect.vue'),
|
|
401
|
+
'type_relation': () => import('./components/type_relation.vue'),
|
|
402
402
|
'type_status': () => import('./components/type_status.vue'),
|
|
403
|
-
'
|
|
403
|
+
'type_number': () => import('./components/type_number.vue'),
|
|
404
|
+
'type_select': () => import('./components/type_select.vue'),
|
|
404
405
|
'type_url': () => import('./components/type_url.vue'),
|
|
406
|
+
'type_time': () => import('./components/type_time.vue'),
|
|
407
|
+
'type_text': () => import('./components/type_text.vue'),
|
|
408
|
+
'switch': () => import('./components/switch.vue'),
|
|
409
|
+
'undo': () => import('./components/undo.vue'),
|
|
405
410
|
'type_user': () => import('./components/type_user.vue'),
|
|
406
|
-
'type_relation': () => import('./components/type_relation.vue'),
|
|
407
|
-
'type_id': () => import('./components/type_id.vue'),
|
|
408
|
-
'unlink_horizontal': () => import('./components/unlink_horizontal.vue'),
|
|
409
411
|
'unlink_vertical': () => import('./components/unlink_vertical.vue'),
|
|
410
|
-
'undo_history': () => import('./components/undo_history.vue'),
|
|
411
|
-
'upward': () => import('./components/upward.vue'),
|
|
412
|
-
'upload': () => import('./components/upload.vue'),
|
|
413
|
-
'type_time': () => import('./components/type_time.vue'),
|
|
414
|
-
'revert': () => import('./components/revert.vue'),
|
|
415
412
|
'upload_alt': () => import('./components/upload_alt.vue'),
|
|
416
|
-
'
|
|
417
|
-
'
|
|
418
|
-
'user_add': () => import('./components/user_add.vue'),
|
|
413
|
+
'unlink_horizontal': () => import('./components/unlink_horizontal.vue'),
|
|
414
|
+
'upward': () => import('./components/upward.vue'),
|
|
419
415
|
'user_male': () => import('./components/user_male.vue'),
|
|
416
|
+
'undo_history': () => import('./components/undo_history.vue'),
|
|
420
417
|
'user_remove': () => import('./components/user_remove.vue'),
|
|
421
|
-
'
|
|
418
|
+
'user_circle': () => import('./components/user_circle.vue'),
|
|
419
|
+
'unarchive': () => import('./components/unarchive.vue'),
|
|
422
420
|
'user_male_circle': () => import('./components/user_male_circle.vue'),
|
|
423
|
-
'
|
|
424
|
-
'
|
|
421
|
+
'user_add': () => import('./components/user_add.vue'),
|
|
422
|
+
'users': () => import('./components/users.vue'),
|
|
425
423
|
'video': () => import('./components/video.vue'),
|
|
424
|
+
'user': () => import('./components/user.vue'),
|
|
425
|
+
'versions': () => import('./components/versions.vue'),
|
|
426
|
+
'volume_add': () => import('./components/volume_add.vue'),
|
|
426
427
|
'volume_disabled': () => import('./components/volume_disabled.vue'),
|
|
427
|
-
'
|
|
428
|
+
'wallet': () => import('./components/wallet.vue'),
|
|
428
429
|
'volume_minus': () => import('./components/volume_minus.vue'),
|
|
429
|
-
'volume_0': () => import('./components/volume_0.vue'),
|
|
430
|
-
'volume_low': () => import('./components/volume_low.vue'),
|
|
431
|
-
'volume_add': () => import('./components/volume_add.vue'),
|
|
432
430
|
'volume_high': () => import('./components/volume_high.vue'),
|
|
433
|
-
'
|
|
431
|
+
'volume_low': () => import('./components/volume_low.vue'),
|
|
432
|
+
'version': () => import('./components/version.vue'),
|
|
433
|
+
'warning_triangle': () => import('./components/warning_triangle.vue'),
|
|
434
434
|
'warning_circle': () => import('./components/warning_circle.vue'),
|
|
435
|
-
'
|
|
436
|
-
'wifi_none': () => import('./components/wifi_none.vue'),
|
|
435
|
+
'width': () => import('./components/width.vue'),
|
|
437
436
|
'venn': () => import('./components/venn.vue'),
|
|
438
437
|
'wifi': () => import('./components/wifi.vue'),
|
|
439
|
-
'
|
|
440
|
-
'
|
|
441
|
-
'
|
|
442
|
-
'type_select': () => import('./components/type_select.vue'),
|
|
438
|
+
'volume_0': () => import('./components/volume_0.vue'),
|
|
439
|
+
'wifi_none': () => import('./components/wifi_none.vue'),
|
|
440
|
+
'wifi_error': () => import('./components/wifi_error.vue'),
|
|
443
441
|
'window_content': () => import('./components/window_content.vue'),
|
|
444
|
-
'
|
|
445
|
-
'
|
|
442
|
+
'volume_muted': () => import('./components/volume_muted.vue'),
|
|
443
|
+
'warning_hex': () => import('./components/warning_hex.vue'),
|
|
446
444
|
'window_collapse_left': () => import('./components/window_collapse_left.vue'),
|
|
447
|
-
'width': () => import('./components/width.vue'),
|
|
448
|
-
'wifi_error': () => import('./components/wifi_error.vue'),
|
|
449
|
-
'zoom_in': () => import('./components/zoom_in.vue'),
|
|
450
445
|
'window': () => import('./components/window.vue'),
|
|
446
|
+
'write': () => import('./components/write.vue'),
|
|
447
|
+
'wrap_back': () => import('./components/wrap_back.vue'),
|
|
451
448
|
'wrap_forward': () => import('./components/wrap_forward.vue'),
|
|
449
|
+
'upload': () => import('./components/upload.vue'),
|
|
450
|
+
'timeline': () => import('./components/timeline.vue'),
|
|
451
|
+
'waves': () => import('./components/waves.vue'),
|
|
452
452
|
'zoom_out': () => import('./components/zoom_out.vue'),
|
|
453
|
-
'
|
|
454
|
-
'warning_triangle': () => import('./components/warning_triangle.vue'),
|
|
453
|
+
'zoom_in': () => import('./components/zoom_in.vue'),
|
|
455
454
|
'zoom_reset': () => import('./components/zoom_reset.vue'),
|
|
456
|
-
'
|
|
457
|
-
'
|
|
458
|
-
'nomi-arrows': () => import('./components/nomi-arrows.vue'),
|
|
459
|
-
'nomi-arrow_up': () => import('./components/nomi-arrow_up.vue'),
|
|
455
|
+
'zoom_cancel': () => import('./components/zoom_cancel.vue'),
|
|
456
|
+
'window_collapse_right': () => import('./components/window_collapse_right.vue'),
|
|
460
457
|
'nomi-arrow-right-top': () => import('./components/nomi-arrow-right-top.vue'),
|
|
461
|
-
'nomi-
|
|
458
|
+
'nomi-arrow-up': () => import('./components/nomi-arrow-up.vue'),
|
|
459
|
+
'nomi-arrow-down': () => import('./components/nomi-arrow-down.vue'),
|
|
462
460
|
'nomi-calendar-alt': () => import('./components/nomi-calendar-alt.vue'),
|
|
461
|
+
'nomi-arrows': () => import('./components/nomi-arrows.vue'),
|
|
462
|
+
'nomi-arrow_up': () => import('./components/nomi-arrow_up.vue'),
|
|
463
463
|
'nomi-calendar-alt2': () => import('./components/nomi-calendar-alt2.vue'),
|
|
464
|
-
'nomi-
|
|
465
|
-
'nomi-
|
|
466
|
-
'nomi-clear': () => import('./components/nomi-clear.vue'),
|
|
467
|
-
'nomi-expand': () => import('./components/nomi-expand.vue'),
|
|
464
|
+
'nomi-arrow_down': () => import('./components/nomi-arrow_down.vue'),
|
|
465
|
+
'nomi-card': () => import('./components/nomi-card.vue'),
|
|
468
466
|
'nomi-counterparty': () => import('./components/nomi-counterparty.vue'),
|
|
469
467
|
'nomi-ai': () => import('./components/nomi-ai.vue'),
|
|
470
|
-
'nomi-
|
|
471
|
-
'nomi-
|
|
468
|
+
'nomi-calendar': () => import('./components/nomi-calendar.vue'),
|
|
469
|
+
'nomi-dashboard': () => import('./components/nomi-dashboard.vue'),
|
|
470
|
+
'nomi-close': () => import('./components/nomi-close.vue'),
|
|
471
|
+
'nomi-clear': () => import('./components/nomi-clear.vue'),
|
|
472
472
|
'nomi-eye-open': () => import('./components/nomi-eye-open.vue'),
|
|
473
|
+
'nomi-logout': () => import('./components/nomi-logout.vue'),
|
|
473
474
|
'nomi-help': () => import('./components/nomi-help.vue'),
|
|
475
|
+
'nomi-expand': () => import('./components/nomi-expand.vue'),
|
|
476
|
+
'nomi-eye-close': () => import('./components/nomi-eye-close.vue'),
|
|
474
477
|
'nomi-filter': () => import('./components/nomi-filter.vue'),
|
|
475
|
-
'nomi-
|
|
476
|
-
'nomi-logout': () => import('./components/nomi-logout.vue'),
|
|
477
|
-
'nomi-move-left': () => import('./components/nomi-move-left.vue'),
|
|
478
|
-
'nomi-person': () => import('./components/nomi-person.vue'),
|
|
479
|
-
'nomi-dashboard': () => import('./components/nomi-dashboard.vue'),
|
|
480
|
-
'nomi-pin': () => import('./components/nomi-pin.vue'),
|
|
481
|
-
'nomi-money': () => import('./components/nomi-money.vue'),
|
|
478
|
+
'nomi-hide': () => import('./components/nomi-hide.vue'),
|
|
482
479
|
'nomi-project': () => import('./components/nomi-project.vue'),
|
|
483
|
-
'nomi-move-right': () => import('./components/nomi-move-right.vue'),
|
|
484
480
|
'nomi-pen': () => import('./components/nomi-pen.vue'),
|
|
481
|
+
'nomi-pin': () => import('./components/nomi-pin.vue'),
|
|
482
|
+
'nomi-money': () => import('./components/nomi-money.vue'),
|
|
483
|
+
'nomi-repeat': () => import('./components/nomi-repeat.vue'),
|
|
485
484
|
'nomi-report': () => import('./components/nomi-report.vue'),
|
|
486
|
-
'nomi-hide': () => import('./components/nomi-hide.vue'),
|
|
487
|
-
'nomi-recurrence': () => import('./components/nomi-recurrence.vue'),
|
|
488
|
-
'nomi-settings': () => import('./components/nomi-settings.vue'),
|
|
489
485
|
'nomi-eye': () => import('./components/nomi-eye.vue'),
|
|
490
|
-
'nomi-
|
|
486
|
+
'nomi-sort-desc': () => import('./components/nomi-sort-desc.vue'),
|
|
491
487
|
'nomi-sort-asc': () => import('./components/nomi-sort-asc.vue'),
|
|
488
|
+
'nomi-move-right': () => import('./components/nomi-move-right.vue'),
|
|
489
|
+
'nomi-settings': () => import('./components/nomi-settings.vue'),
|
|
492
490
|
'nomi-target': () => import('./components/nomi-target.vue'),
|
|
493
|
-
'nomi-repeat': () => import('./components/nomi-repeat.vue'),
|
|
494
491
|
'nomi-tag': () => import('./components/nomi-tag.vue'),
|
|
495
|
-
'nomi-
|
|
496
|
-
'nomi-transactions': () => import('./components/nomi-transactions.vue'),
|
|
497
|
-
'nomi-unpin': () => import('./components/nomi-unpin.vue'),
|
|
498
|
-
'nomi-text': () => import('./components/nomi-text.vue'),
|
|
492
|
+
'nomi-table-view': () => import('./components/nomi-table-view.vue'),
|
|
499
493
|
'nomi-user': () => import('./components/nomi-user.vue'),
|
|
494
|
+
'nomi-transactions': () => import('./components/nomi-transactions.vue'),
|
|
495
|
+
'nomi-recurrence': () => import('./components/nomi-recurrence.vue'),
|
|
496
|
+
'nomi-scissors': () => import('./components/nomi-scissors.vue'),
|
|
497
|
+
'nomi-move-left': () => import('./components/nomi-move-left.vue'),
|
|
500
498
|
'nomi-trash': () => import('./components/nomi-trash.vue'),
|
|
501
|
-
'nomi-
|
|
499
|
+
'nomi-person': () => import('./components/nomi-person.vue'),
|
|
500
|
+
'nomi-text': () => import('./components/nomi-text.vue'),
|
|
501
|
+
'nomi-unpin': () => import('./components/nomi-unpin.vue'),
|
|
502
502
|
}
|
|
@@ -12,14 +12,17 @@
|
|
|
12
12
|
</div>
|
|
13
13
|
<div v-if="!nocard" v-show="!collapsed" class="b-panel-header px-3 pt-3 pb-2">
|
|
14
14
|
<slot name="header">
|
|
15
|
-
<div>
|
|
15
|
+
<div class="d-flex gap-3 align-items-center">
|
|
16
|
+
<itf-button v-if="closeable" icon default class="d-md-none" @click="closePanel">
|
|
17
|
+
<itf-icon name="chevron_left" />
|
|
18
|
+
</itf-button>
|
|
16
19
|
<slot name="title">
|
|
17
|
-
<div class="b-panel__title fw-bold h2" v-text="title"></div>
|
|
20
|
+
<div class="b-panel__title fw-bold mb-0 h2" v-text="title"></div>
|
|
18
21
|
</slot>
|
|
19
22
|
</div>
|
|
20
23
|
<div class="d-flex gap-1">
|
|
21
24
|
<slot name="buttons"></slot>
|
|
22
|
-
<itf-button v-if="expandable" icon default class="b-panel__expand_button" @click="fullsizePanel">
|
|
25
|
+
<itf-button v-if="expandable" icon default class="b-panel__expand_button d-none d-md-block" @click="fullsizePanel">
|
|
23
26
|
<itf-icon new name="expand" />
|
|
24
27
|
</itf-button>
|
|
25
28
|
<itf-button v-if="closeable" icon default class="b-panel__expand_button" @click="closePanel">
|
|
@@ -51,6 +54,18 @@
|
|
|
51
54
|
background: var(--b-panel-bg);
|
|
52
55
|
box-shadow: var(--b-panel-box-shadow);
|
|
53
56
|
|
|
57
|
+
@media (max-width: 768px) {
|
|
58
|
+
margin: 0;
|
|
59
|
+
height: 100%;
|
|
60
|
+
min-width: 0 !important;
|
|
61
|
+
|
|
62
|
+
position: absolute;
|
|
63
|
+
top: 0;
|
|
64
|
+
left: 0;
|
|
65
|
+
right: 0;
|
|
66
|
+
bottom: 0;
|
|
67
|
+
}
|
|
68
|
+
|
|
54
69
|
&__collapsed {
|
|
55
70
|
flex-basis: 38px;
|
|
56
71
|
flex-grow: 0;
|
|
@@ -130,6 +130,17 @@ $double-an-time: $an-time * 2;
|
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
+
@media (max-width: 768px) {
|
|
134
|
+
@keyframes slidein {
|
|
135
|
+
0% {
|
|
136
|
+
max-width: 100%;
|
|
137
|
+
}
|
|
138
|
+
100% {
|
|
139
|
+
max-width: 100%;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
133
144
|
.b-panel {
|
|
134
145
|
transition: min-width $an-time linear, flex-grow $an-time linear;
|
|
135
146
|
|
|
@@ -179,6 +190,7 @@ export interface IPanel {
|
|
|
179
190
|
getPayload: () => any;
|
|
180
191
|
setPayload: (value: any) => void;
|
|
181
192
|
__events: Record<string, ((event: string, ...args: any[]) => any)[]>;
|
|
193
|
+
permanentExpanded: boolean;
|
|
182
194
|
}
|
|
183
195
|
|
|
184
196
|
@Component({
|
|
@@ -292,6 +304,7 @@ export default class PanelList extends Vue {
|
|
|
292
304
|
this.$nextTick(() => { // щоб панелі змінювались при редагуванні
|
|
293
305
|
const n = newStack.length;
|
|
294
306
|
newPanel.isAnimate = isAnimation;
|
|
307
|
+
newPanel.permanentExpanded = !!this.panels[type].permanentExpanded;
|
|
295
308
|
newPanel.emit = (event, ...args) => this.emitEvent(event, ...args);
|
|
296
309
|
newPanel.open = (type, payload) => this.openPanel(type, payload, n + 1);
|
|
297
310
|
newPanel.close = () => this.closePanel(newPanel);
|
|
@@ -363,7 +376,7 @@ export default class PanelList extends Vue {
|
|
|
363
376
|
openPanel.isCollapsed = false;
|
|
364
377
|
}
|
|
365
378
|
const openPanelIndex = this.panelsStack.findIndex(p => p === openPanel);
|
|
366
|
-
if (openPanelIndex > 0) {
|
|
379
|
+
if (openPanelIndex > 0 && !openPanel?.permanentExpanded) {
|
|
367
380
|
this.panelsStack[openPanelIndex - 1].isCollapsed = false;
|
|
368
381
|
}
|
|
369
382
|
this.ensureOnlyTwoOpenPanels(openPanel.id);
|
package/src/locales/en.js
CHANGED
package/src/locales/uk.js
CHANGED
|
@@ -75,6 +75,7 @@ module.exports = {
|
|
|
75
75
|
yesDelete: 'Так, видалити',
|
|
76
76
|
areYouSureToDeleteThis: 'Ви впевнені, що хочете видалити це?',
|
|
77
77
|
confirmDelete: 'Підтвердження видалення',
|
|
78
|
+
confirmRestore: 'Підтвердження відновлення',
|
|
78
79
|
},
|
|
79
80
|
customize: {
|
|
80
81
|
editProperty: 'Редагувати поле',
|