@itfin/components 2.0.13 → 2.0.14
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/components/_button.scss +5 -1
- package/src/components/icon/components/nomi-export.vue +4 -0
- package/src/components/icon/components/nomi-lock.vue +4 -0
- package/src/components/icon/icons.js +302 -300
- package/src/components/icon/new-icons/export.svg +3 -0
- package/src/components/icon/new-icons/lock.svg +3 -0
- package/src/components/table/table2.scss +2 -2
package/package.json
CHANGED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4 5V8C11.4 8.88366 12.1163 9.6 13 9.6H16V15.7372L15.8527 15.5899C15.2279 14.9651 14.2148 14.9651 13.59 15.5899C12.9651 16.2148 12.9651 17.2278 13.59 17.8527L14.7373 19H7C6.44772 19 6 18.5523 6 18V6C6 5.44772 6.44772 5 7 5H11.4ZM12.6 5.6V8C12.6 8.22091 12.7791 8.4 13 8.4H15.4L12.6 5.6ZM18.1456 20.1456C18.0881 20.2031 18.0218 20.2465 17.951 20.2758C17.8803 20.3051 17.8027 20.3213 17.7213 20.3213C17.6401 20.323 17.4416 20.2901 17.2971 20.1456L14.2971 17.1456C14.0627 16.9113 14.0627 16.5314 14.2971 16.297C14.5314 16.0627 14.9113 16.0627 15.1456 16.297L17.1213 18.2728V13.7213C17.1213 13.3899 17.39 13.1213 17.7213 13.1213C18.0527 13.1213 18.3213 13.3899 18.3213 13.7213V18.2728L20.2971 16.297C20.5314 16.0627 20.9113 16.0627 21.1456 16.297C21.3799 16.5314 21.3799 16.9113 21.1456 17.1456L18.1456 20.1456Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
4
|
+
</template>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 4.3999C13.9882 4.3999 15.6 6.01168 15.6 7.9999V10.0489C16.033 10.1018 16.3329 10.2114 16.5607 10.4392C17 10.8786 17 11.5857 17 12.9999V14.9999C17 16.4141 17 17.1212 16.5607 17.5606C16.1213 17.9999 15.4142 17.9999 14 17.9999H10C8.58579 17.9999 7.87868 17.9999 7.43934 17.5606C7 17.1212 7 16.4141 7 14.9999V12.9999C7 11.5857 7 10.8786 7.43934 10.4392C7.66715 10.2114 7.96695 10.1018 8.4 10.0489L8.4 7.9999C8.4 6.01168 10.0118 4.3999 12 4.3999ZM14.4 7.9999V10.0003C14.2733 9.99991 14.1401 9.99991 14 9.99991H10C9.85987 9.99991 9.72668 9.99991 9.6 10.0003L9.6 7.9999C9.6 6.67442 10.6745 5.5999 12 5.5999C13.3255 5.5999 14.4 6.67442 14.4 7.9999ZM12.6 12.9999C12.6 12.6685 12.3314 12.3999 12 12.3999C11.6686 12.3999 11.4 12.6685 11.4 12.9999V14.9999C11.4 15.3313 11.6686 15.5999 12 15.5999C12.3314 15.5999 12.6 15.3313 12.6 14.9999V12.9999Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
4
|
+
</template>
|
|
@@ -1,502 +1,504 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
'archive': () => import('./components/archive.vue'),
|
|
3
2
|
'angle': () => import('./components/angle.vue'),
|
|
3
|
+
'archive': () => import('./components/archive.vue'),
|
|
4
|
+
'arrow_bottom_right': () => import('./components/arrow_bottom_right.vue'),
|
|
4
5
|
'align_vertical': () => import('./components/align_vertical.vue'),
|
|
5
6
|
'arrow_bottom_left': () => import('./components/arrow_bottom_left.vue'),
|
|
6
|
-
'arrow_down': () => import('./components/arrow_down.vue'),
|
|
7
|
-
'align_horizontal': () => import('./components/align_horizontal.vue'),
|
|
8
7
|
'arrow_down_circle': () => import('./components/arrow_down_circle.vue'),
|
|
9
8
|
'arrow_right_circle': () => import('./components/arrow_right_circle.vue'),
|
|
9
|
+
'arrow_left': () => import('./components/arrow_left.vue'),
|
|
10
|
+
'arrow_down': () => import('./components/arrow_down.vue'),
|
|
10
11
|
'arrow_left_circle': () => import('./components/arrow_left_circle.vue'),
|
|
11
|
-
'
|
|
12
|
-
'arrow_right': () => import('./components/arrow_right.vue'),
|
|
12
|
+
'alarm_clock': () => import('./components/alarm_clock.vue'),
|
|
13
13
|
'arrow_top_right': () => import('./components/arrow_top_right.vue'),
|
|
14
|
-
'
|
|
15
|
-
'arrow_up': () => import('./components/arrow_up.vue'),
|
|
16
|
-
'arrow_up_circle': () => import('./components/arrow_up_circle.vue'),
|
|
14
|
+
'align_horizontal': () => import('./components/align_horizontal.vue'),
|
|
17
15
|
'audio_wave': () => import('./components/audio_wave.vue'),
|
|
18
|
-
'
|
|
19
|
-
'backspace': () => import('./components/backspace.vue'),
|
|
16
|
+
'arrow_up_circle': () => import('./components/arrow_up_circle.vue'),
|
|
20
17
|
'airplay': () => import('./components/airplay.vue'),
|
|
21
|
-
'
|
|
22
|
-
'
|
|
23
|
-
'
|
|
24
|
-
'backward': () => import('./components/backward.vue'),
|
|
25
|
-
'battery_half': () => import('./components/battery_half.vue'),
|
|
18
|
+
'arrow_up': () => import('./components/arrow_up.vue'),
|
|
19
|
+
'arrow_right': () => import('./components/arrow_right.vue'),
|
|
20
|
+
'bag': () => import('./components/bag.vue'),
|
|
26
21
|
'battery_charging': () => import('./components/battery_charging.vue'),
|
|
27
|
-
'
|
|
22
|
+
'backspace': () => import('./components/backspace.vue'),
|
|
28
23
|
'battery_75': () => import('./components/battery_75.vue'),
|
|
29
|
-
'
|
|
30
|
-
'bag': () => import('./components/bag.vue'),
|
|
24
|
+
'backward': () => import('./components/backward.vue'),
|
|
31
25
|
'battery_full': () => import('./components/battery_full.vue'),
|
|
32
|
-
'
|
|
33
|
-
'
|
|
34
|
-
'
|
|
35
|
-
'
|
|
26
|
+
'battery_empty': () => import('./components/battery_empty.vue'),
|
|
27
|
+
'bell_disabled': () => import('./components/bell_disabled.vue'),
|
|
28
|
+
'battery_half': () => import('./components/battery_half.vue'),
|
|
29
|
+
'arrow_top_left': () => import('./components/arrow_top_left.vue'),
|
|
30
|
+
'battery_low': () => import('./components/battery_low.vue'),
|
|
36
31
|
'blocked': () => import('./components/blocked.vue'),
|
|
37
|
-
'
|
|
32
|
+
'backward10': () => import('./components/backward10.vue'),
|
|
33
|
+
'book': () => import('./components/book.vue'),
|
|
34
|
+
'bell': () => import('./components/bell.vue'),
|
|
35
|
+
'bell_ringing': () => import('./components/bell_ringing.vue'),
|
|
36
|
+
'book_text': () => import('./components/book_text.vue'),
|
|
37
|
+
'bell_snooze': () => import('./components/bell_snooze.vue'),
|
|
38
|
+
'bookmark': () => import('./components/bookmark.vue'),
|
|
39
|
+
'box_download': () => import('./components/box_download.vue'),
|
|
38
40
|
'bookmark_book': () => import('./components/bookmark_book.vue'),
|
|
39
41
|
'box': () => import('./components/box.vue'),
|
|
40
|
-
'
|
|
41
|
-
'
|
|
42
|
-
'book_text': () => import('./components/book_text.vue'),
|
|
42
|
+
'box_open': () => import('./components/box_open.vue'),
|
|
43
|
+
'branch': () => import('./components/branch.vue'),
|
|
43
44
|
'browser_alt': () => import('./components/browser_alt.vue'),
|
|
44
45
|
'browser': () => import('./components/browser.vue'),
|
|
45
|
-
'branch': () => import('./components/branch.vue'),
|
|
46
|
-
'box_download': () => import('./components/box_download.vue'),
|
|
47
|
-
'button_minus': () => import('./components/button_minus.vue'),
|
|
48
|
-
'calendar_date': () => import('./components/calendar_date.vue'),
|
|
49
46
|
'calendar_days': () => import('./components/calendar_days.vue'),
|
|
50
|
-
'
|
|
47
|
+
'calendar': () => import('./components/calendar.vue'),
|
|
51
48
|
'calculator': () => import('./components/calculator.vue'),
|
|
49
|
+
'button_add': () => import('./components/button_add.vue'),
|
|
50
|
+
'calendar_date': () => import('./components/calendar_date.vue'),
|
|
51
|
+
'bluetooth': () => import('./components/bluetooth.vue'),
|
|
52
|
+
'book_closed': () => import('./components/book_closed.vue'),
|
|
53
|
+
'calendar_day': () => import('./components/calendar_day.vue'),
|
|
52
54
|
'calendar_last_day': () => import('./components/calendar_last_day.vue'),
|
|
53
|
-
'
|
|
54
|
-
'calendar_move': () => import('./components/calendar_move.vue'),
|
|
55
|
-
'calendar_remove': () => import('./components/calendar_remove.vue'),
|
|
55
|
+
'briefcase': () => import('./components/briefcase.vue'),
|
|
56
56
|
'calendar_split': () => import('./components/calendar_split.vue'),
|
|
57
57
|
'calendar_week': () => import('./components/calendar_week.vue'),
|
|
58
|
-
'
|
|
59
|
-
'calendar_day': () => import('./components/calendar_day.vue'),
|
|
60
|
-
'calendar_month': () => import('./components/calendar_month.vue'),
|
|
61
|
-
'capture': () => import('./components/capture.vue'),
|
|
58
|
+
'calendar_move': () => import('./components/calendar_move.vue'),
|
|
62
59
|
'camera_noflash': () => import('./components/camera_noflash.vue'),
|
|
63
|
-
'
|
|
60
|
+
'calendar_add': () => import('./components/calendar_add.vue'),
|
|
64
61
|
'camera': () => import('./components/camera.vue'),
|
|
65
|
-
'
|
|
66
|
-
'cart': () => import('./components/cart.vue'),
|
|
67
|
-
'alarm_clock': () => import('./components/alarm_clock.vue'),
|
|
62
|
+
'button_minus': () => import('./components/button_minus.vue'),
|
|
68
63
|
'card_view': () => import('./components/card_view.vue'),
|
|
69
|
-
'
|
|
70
|
-
'
|
|
71
|
-
'
|
|
72
|
-
'
|
|
64
|
+
'calendar_remove': () => import('./components/calendar_remove.vue'),
|
|
65
|
+
'calendar_month': () => import('./components/calendar_month.vue'),
|
|
66
|
+
'carousel': () => import('./components/carousel.vue'),
|
|
67
|
+
'capture': () => import('./components/capture.vue'),
|
|
73
68
|
'cast': () => import('./components/cast.vue'),
|
|
69
|
+
'chain': () => import('./components/chain.vue'),
|
|
70
|
+
'check': () => import('./components/check.vue'),
|
|
71
|
+
'camera_alt': () => import('./components/camera_alt.vue'),
|
|
74
72
|
'check_circle': () => import('./components/check_circle.vue'),
|
|
75
73
|
'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
74
|
'chevron_down_circle': () => import('./components/chevron_down_circle.vue'),
|
|
75
|
+
'cart': () => import('./components/cart.vue'),
|
|
76
|
+
'chevron_down_double': () => import('./components/chevron_down_double.vue'),
|
|
77
|
+
'chevron_down': () => import('./components/chevron_down.vue'),
|
|
78
|
+
'check_circle_outside': () => import('./components/check_circle_outside.vue'),
|
|
79
|
+
'chat_add': () => import('./components/chat_add.vue'),
|
|
80
|
+
'checkbox_empty': () => import('./components/checkbox_empty.vue'),
|
|
80
81
|
'chevron_left_circle': () => import('./components/chevron_left_circle.vue'),
|
|
81
|
-
'
|
|
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'),
|
|
82
|
+
'camera_noflash_alt': () => import('./components/camera_noflash_alt.vue'),
|
|
86
83
|
'chevron_left': () => import('./components/chevron_left.vue'),
|
|
87
|
-
'
|
|
84
|
+
'card_timeline': () => import('./components/card_timeline.vue'),
|
|
88
85
|
'chevron_up_double': () => import('./components/chevron_up_double.vue'),
|
|
89
|
-
'
|
|
86
|
+
'chevron_left_double': () => import('./components/chevron_left_double.vue'),
|
|
87
|
+
'chevron_right_circle': () => import('./components/chevron_right_circle.vue'),
|
|
90
88
|
'circle': () => import('./components/circle.vue'),
|
|
89
|
+
'chevron_open': () => import('./components/chevron_open.vue'),
|
|
90
|
+
'chevron_right': () => import('./components/chevron_right.vue'),
|
|
91
91
|
'chevron_up': () => import('./components/chevron_up.vue'),
|
|
92
|
-
'
|
|
92
|
+
'chevron_right_double': () => import('./components/chevron_right_double.vue'),
|
|
93
93
|
'chevron_up_circle': () => import('./components/chevron_up_circle.vue'),
|
|
94
|
-
'clipboard_check': () => import('./components/clipboard_check.vue'),
|
|
95
|
-
'circle_split': () => import('./components/circle_split.vue'),
|
|
96
|
-
'clipboard_copy': () => import('./components/clipboard_copy.vue'),
|
|
97
94
|
'clipboard_add': () => import('./components/clipboard_add.vue'),
|
|
98
|
-
'
|
|
95
|
+
'clipboard_copy': () => import('./components/clipboard_copy.vue'),
|
|
96
|
+
'circle_split': () => import('./components/circle_split.vue'),
|
|
99
97
|
'clipboard': () => import('./components/clipboard.vue'),
|
|
100
|
-
'
|
|
98
|
+
'circle_menu': () => import('./components/circle_menu.vue'),
|
|
99
|
+
'clipboard_check': () => import('./components/clipboard_check.vue'),
|
|
100
|
+
'clipboard_notes': () => import('./components/clipboard_notes.vue'),
|
|
101
|
+
'cloud_download_alt': () => import('./components/cloud_download_alt.vue'),
|
|
101
102
|
'clipboard_cross': () => import('./components/clipboard_cross.vue'),
|
|
103
|
+
'cloud': () => import('./components/cloud.vue'),
|
|
102
104
|
'clock': () => import('./components/clock.vue'),
|
|
103
|
-
'cloud_disconnect': () => import('./components/cloud_disconnect.vue'),
|
|
104
105
|
'clipboard_remove': () => import('./components/clipboard_remove.vue'),
|
|
105
106
|
'close': () => import('./components/close.vue'),
|
|
106
|
-
'
|
|
107
|
-
'code': () => import('./components/code.vue'),
|
|
107
|
+
'cloud_disconnect': () => import('./components/cloud_disconnect.vue'),
|
|
108
108
|
'cloud_download': () => import('./components/cloud_download.vue'),
|
|
109
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
110
|
'coins': () => import('./components/coins.vue'),
|
|
113
|
-
'compass': () => import('./components/compass.vue'),
|
|
114
|
-
'component_add': () => import('./components/component_add.vue'),
|
|
115
|
-
'chain': () => import('./components/chain.vue'),
|
|
116
|
-
'coin': () => import('./components/coin.vue'),
|
|
117
111
|
'coffee': () => import('./components/coffee.vue'),
|
|
118
|
-
'
|
|
119
|
-
'
|
|
112
|
+
'code': () => import('./components/code.vue'),
|
|
113
|
+
'component_add': () => import('./components/component_add.vue'),
|
|
114
|
+
'compass': () => import('./components/compass.vue'),
|
|
115
|
+
'chevron_close': () => import('./components/chevron_close.vue'),
|
|
120
116
|
'connect': () => import('./components/connect.vue'),
|
|
121
117
|
'contacts': () => import('./components/contacts.vue'),
|
|
118
|
+
'coin': () => import('./components/coin.vue'),
|
|
119
|
+
'contract': () => import('./components/contract.vue'),
|
|
120
|
+
'crop': () => import('./components/crop.vue'),
|
|
122
121
|
'cross': () => import('./components/cross.vue'),
|
|
122
|
+
'cloud_upload': () => import('./components/cloud_upload.vue'),
|
|
123
|
+
'credit_card': () => import('./components/credit_card.vue'),
|
|
124
|
+
'cylinder': () => import('./components/cylinder.vue'),
|
|
125
|
+
'database': () => import('./components/database.vue'),
|
|
126
|
+
'crosshair': () => import('./components/crosshair.vue'),
|
|
123
127
|
'cube': () => import('./components/cube.vue'),
|
|
124
|
-
'create': () => import('./components/create.vue'),
|
|
125
|
-
'crop': () => import('./components/crop.vue'),
|
|
126
|
-
'cross_circle': () => import('./components/cross_circle.vue'),
|
|
127
128
|
'diamond': () => import('./components/diamond.vue'),
|
|
128
129
|
'directions': () => import('./components/directions.vue'),
|
|
129
|
-
'
|
|
130
|
+
'create': () => import('./components/create.vue'),
|
|
131
|
+
'cross_circle': () => import('./components/cross_circle.vue'),
|
|
130
132
|
'disc': () => import('./components/disc.vue'),
|
|
131
|
-
'
|
|
133
|
+
'display': () => import('./components/display.vue'),
|
|
134
|
+
'document_stack': () => import('./components/document_stack.vue'),
|
|
132
135
|
'display_alt': () => import('./components/display_alt.vue'),
|
|
133
|
-
'document_justified': () => import('./components/document_justified.vue'),
|
|
134
|
-
'document_list': () => import('./components/document_list.vue'),
|
|
135
|
-
'database': () => import('./components/database.vue'),
|
|
136
136
|
'document': () => import('./components/document.vue'),
|
|
137
|
-
'door': () => import('./components/door.vue'),
|
|
138
|
-
'downward': () => import('./components/downward.vue'),
|
|
139
|
-
'document_stack': () => import('./components/document_stack.vue'),
|
|
140
|
-
'download': () => import('./components/download.vue'),
|
|
141
|
-
'download_alt': () => import('./components/download_alt.vue'),
|
|
142
137
|
'document_words': () => import('./components/document_words.vue'),
|
|
138
|
+
'download_alt': () => import('./components/download_alt.vue'),
|
|
139
|
+
'document_list': () => import('./components/document_list.vue'),
|
|
140
|
+
'download': () => import('./components/download.vue'),
|
|
141
|
+
'document_justified': () => import('./components/document_justified.vue'),
|
|
142
|
+
'drag': () => import('./components/drag.vue'),
|
|
143
143
|
'drag_circle': () => import('./components/drag_circle.vue'),
|
|
144
|
+
'downward': () => import('./components/downward.vue'),
|
|
145
|
+
'door_alt': () => import('./components/door_alt.vue'),
|
|
144
146
|
'drag_vertical': () => import('./components/drag_vertical.vue'),
|
|
145
|
-
'cylinder': () => import('./components/cylinder.vue'),
|
|
146
|
-
'drag': () => import('./components/drag.vue'),
|
|
147
|
-
'duplicate_alt': () => import('./components/duplicate_alt.vue'),
|
|
148
|
-
'enter': () => import('./components/enter.vue'),
|
|
149
147
|
'episodes': () => import('./components/episodes.vue'),
|
|
150
|
-
'
|
|
148
|
+
'enter': () => import('./components/enter.vue'),
|
|
149
|
+
'enter_alt': () => import('./components/enter_alt.vue'),
|
|
150
|
+
'duplicate_alt': () => import('./components/duplicate_alt.vue'),
|
|
151
151
|
'external': () => import('./components/external.vue'),
|
|
152
|
+
'expand_height': () => import('./components/expand_height.vue'),
|
|
152
153
|
'exit_left': () => import('./components/exit_left.vue'),
|
|
154
|
+
'duplicate': () => import('./components/duplicate.vue'),
|
|
155
|
+
'eye_closed': () => import('./components/eye_closed.vue'),
|
|
156
|
+
'eye_no': () => import('./components/eye_no.vue'),
|
|
153
157
|
'expand_width': () => import('./components/expand_width.vue'),
|
|
154
|
-
'exit_right': () => import('./components/exit_right.vue'),
|
|
155
|
-
'door_alt': () => import('./components/door_alt.vue'),
|
|
156
158
|
'eye': () => import('./components/eye.vue'),
|
|
157
|
-
'
|
|
158
|
-
'
|
|
159
|
+
'expand': () => import('./components/expand.vue'),
|
|
160
|
+
'exit_right': () => import('./components/exit_right.vue'),
|
|
159
161
|
'face_delighted': () => import('./components/face_delighted.vue'),
|
|
162
|
+
'face_neutral': () => import('./components/face_neutral.vue'),
|
|
163
|
+
'face_happy': () => import('./components/face_happy.vue'),
|
|
160
164
|
'face_sad': () => import('./components/face_sad.vue'),
|
|
161
|
-
'enter_alt': () => import('./components/enter_alt.vue'),
|
|
162
|
-
'fi_fingerprint': () => import('./components/fi_fingerprint.vue'),
|
|
163
|
-
'file_upload': () => import('./components/file_upload.vue'),
|
|
164
165
|
'files_multi': () => import('./components/files_multi.vue'),
|
|
165
166
|
'file_download': () => import('./components/file_download.vue'),
|
|
166
167
|
'files_history': () => import('./components/files_history.vue'),
|
|
167
|
-
'
|
|
168
|
+
'files_stack': () => import('./components/files_stack.vue'),
|
|
168
169
|
'filter': () => import('./components/filter.vue'),
|
|
170
|
+
'fi_fingerprint': () => import('./components/fi_fingerprint.vue'),
|
|
171
|
+
'file_upload': () => import('./components/file_upload.vue'),
|
|
169
172
|
'film': () => import('./components/film.vue'),
|
|
170
|
-
'
|
|
171
|
-
'files_stack': () => import('./components/files_stack.vue'),
|
|
172
|
-
'filter_all': () => import('./components/filter_all.vue'),
|
|
173
|
-
'filter_ongoing': () => import('./components/filter_ongoing.vue'),
|
|
173
|
+
'filter_not_started': () => import('./components/filter_not_started.vue'),
|
|
174
174
|
'filter_overdue': () => import('./components/filter_overdue.vue'),
|
|
175
175
|
'fingerprint': () => import('./components/fingerprint.vue'),
|
|
176
|
-
'
|
|
176
|
+
'flame': () => import('./components/flame.vue'),
|
|
177
177
|
'filter_completed': () => import('./components/filter_completed.vue'),
|
|
178
|
-
'filter_not_started': () => import('./components/filter_not_started.vue'),
|
|
179
178
|
'filter_single': () => import('./components/filter_single.vue'),
|
|
180
|
-
'
|
|
181
|
-
'flame': () => import('./components/flame.vue'),
|
|
182
|
-
'flip_view': () => import('./components/flip_view.vue'),
|
|
183
|
-
'floppy': () => import('./components/floppy.vue'),
|
|
184
|
-
'filtering': () => import('./components/filtering.vue'),
|
|
185
|
-
'forward': () => import('./components/forward.vue'),
|
|
186
|
-
'forward_alt': () => import('./components/forward_alt.vue'),
|
|
179
|
+
'filter_all': () => import('./components/filter_all.vue'),
|
|
187
180
|
'filter_circle': () => import('./components/filter_circle.vue'),
|
|
188
|
-
'folder_minus': () => import('./components/folder_minus.vue'),
|
|
189
181
|
'folder_open': () => import('./components/folder_open.vue'),
|
|
190
|
-
'
|
|
182
|
+
'door': () => import('./components/door.vue'),
|
|
183
|
+
'flip_view': () => import('./components/flip_view.vue'),
|
|
184
|
+
'flame_alt': () => import('./components/flame_alt.vue'),
|
|
185
|
+
'folder_minus': () => import('./components/folder_minus.vue'),
|
|
186
|
+
'filtering': () => import('./components/filtering.vue'),
|
|
191
187
|
'flag': () => import('./components/flag.vue'),
|
|
192
|
-
'
|
|
193
|
-
'
|
|
188
|
+
'floppy': () => import('./components/floppy.vue'),
|
|
189
|
+
'filter_ongoing': () => import('./components/filter_ongoing.vue'),
|
|
190
|
+
'fork_git': () => import('./components/fork_git.vue'),
|
|
191
|
+
'folder_add': () => import('./components/folder_add.vue'),
|
|
194
192
|
'gauge': () => import('./components/gauge.vue'),
|
|
195
193
|
'funnel': () => import('./components/funnel.vue'),
|
|
196
|
-
'
|
|
197
|
-
'fork_git': () => import('./components/fork_git.vue'),
|
|
198
|
-
'graph_bar': () => import('./components/graph_bar.vue'),
|
|
199
|
-
'globe': () => import('./components/globe.vue'),
|
|
200
|
-
'grab': () => import('./components/grab.vue'),
|
|
201
|
-
'grid': () => import('./components/grid.vue'),
|
|
194
|
+
'forward10': () => import('./components/forward10.vue'),
|
|
202
195
|
'gps': () => import('./components/gps.vue'),
|
|
196
|
+
'globe': () => import('./components/globe.vue'),
|
|
203
197
|
'gift': () => import('./components/gift.vue'),
|
|
204
|
-
'
|
|
198
|
+
'forward_alt': () => import('./components/forward_alt.vue'),
|
|
199
|
+
'grab': () => import('./components/grab.vue'),
|
|
200
|
+
'forward': () => import('./components/forward.vue'),
|
|
201
|
+
'frame': () => import('./components/frame.vue'),
|
|
202
|
+
'fullscreen': () => import('./components/fullscreen.vue'),
|
|
203
|
+
'graph_bar': () => import('./components/graph_bar.vue'),
|
|
205
204
|
'grid_circles': () => import('./components/grid_circles.vue'),
|
|
206
205
|
'grid_small': () => import('./components/grid_small.vue'),
|
|
207
|
-
'
|
|
208
|
-
'
|
|
206
|
+
'folder_closed': () => import('./components/folder_closed.vue'),
|
|
207
|
+
'grid': () => import('./components/grid.vue'),
|
|
209
208
|
'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
209
|
'harddrive': () => import('./components/harddrive.vue'),
|
|
213
|
-
'
|
|
214
|
-
'
|
|
210
|
+
'grid_circles_add': () => import('./components/grid_circles_add.vue'),
|
|
211
|
+
'graph_box': () => import('./components/graph_box.vue'),
|
|
215
212
|
'heart_rate': () => import('./components/heart_rate.vue'),
|
|
213
|
+
'hash': () => import('./components/hash.vue'),
|
|
216
214
|
'heart': () => import('./components/heart.vue'),
|
|
215
|
+
'height': () => import('./components/height.vue'),
|
|
216
|
+
'graph_increase': () => import('./components/graph_increase.vue'),
|
|
217
|
+
'grid_squares': () => import('./components/grid_squares.vue'),
|
|
218
|
+
'heart_remove': () => import('./components/heart_remove.vue'),
|
|
217
219
|
'home_check': () => import('./components/home_check.vue'),
|
|
218
|
-
'graph_box': () => import('./components/graph_box.vue'),
|
|
219
|
-
'home_door': () => import('./components/home_door.vue'),
|
|
220
|
-
'inbox': () => import('./components/inbox.vue'),
|
|
221
220
|
'home': () => import('./components/home.vue'),
|
|
222
221
|
'import': () => import('./components/import.vue'),
|
|
223
222
|
'inbox_alt': () => import('./components/inbox_alt.vue'),
|
|
224
|
-
'
|
|
225
|
-
'iphone_portrait': () => import('./components/iphone_portrait.vue'),
|
|
226
|
-
'jump_forward': () => import('./components/jump_forward.vue'),
|
|
227
|
-
'jump_right': () => import('./components/jump_right.vue'),
|
|
228
|
-
'laptop': () => import('./components/laptop.vue'),
|
|
229
|
-
'iphone_landscape': () => import('./components/iphone_landscape.vue'),
|
|
223
|
+
'home_door': () => import('./components/home_door.vue'),
|
|
230
224
|
'home_alt': () => import('./components/home_alt.vue'),
|
|
231
|
-
'
|
|
225
|
+
'inbox': () => import('./components/inbox.vue'),
|
|
226
|
+
'hierarchy': () => import('./components/hierarchy.vue'),
|
|
227
|
+
'iphone_landscape': () => import('./components/iphone_landscape.vue'),
|
|
232
228
|
'jump_backward': () => import('./components/jump_backward.vue'),
|
|
233
|
-
'
|
|
234
|
-
'
|
|
235
|
-
'
|
|
236
|
-
'
|
|
229
|
+
'jump_forward': () => import('./components/jump_forward.vue'),
|
|
230
|
+
'laptop': () => import('./components/laptop.vue'),
|
|
231
|
+
'jump_right': () => import('./components/jump_right.vue'),
|
|
232
|
+
'iphone_portrait': () => import('./components/iphone_portrait.vue'),
|
|
233
|
+
'jump_left': () => import('./components/jump_left.vue'),
|
|
234
|
+
'lightbulb_on': () => import('./components/lightbulb_on.vue'),
|
|
235
|
+
'lineweight': () => import('./components/lineweight.vue'),
|
|
236
|
+
'lightbulb': () => import('./components/lightbulb.vue'),
|
|
237
237
|
'link_broken': () => import('./components/link_broken.vue'),
|
|
238
238
|
'link': () => import('./components/link.vue'),
|
|
239
|
-
'link_horizontal': () => import('./components/link_horizontal.vue'),
|
|
240
|
-
'lightbulb': () => import('./components/lightbulb.vue'),
|
|
241
239
|
'list': () => import('./components/list.vue'),
|
|
240
|
+
'lightning_alt': () => import('./components/lightning_alt.vue'),
|
|
242
241
|
'link_vertical': () => import('./components/link_vertical.vue'),
|
|
243
|
-
'lightbulb_on': () => import('./components/lightbulb_on.vue'),
|
|
244
242
|
'info_circle': () => import('./components/info_circle.vue'),
|
|
245
|
-
'
|
|
246
|
-
'
|
|
243
|
+
'loader': () => import('./components/loader.vue'),
|
|
244
|
+
'hand': () => import('./components/hand.vue'),
|
|
245
|
+
'lightning': () => import('./components/lightning.vue'),
|
|
246
|
+
'link_horizontal': () => import('./components/link_horizontal.vue'),
|
|
247
247
|
'lock_open': () => import('./components/lock_open.vue'),
|
|
248
|
-
'lineweight': () => import('./components/lineweight.vue'),
|
|
249
|
-
'lightning_alt': () => import('./components/lightning_alt.vue'),
|
|
250
248
|
'link_alt': () => import('./components/link_alt.vue'),
|
|
251
|
-
'
|
|
249
|
+
'lock': () => import('./components/lock.vue'),
|
|
250
|
+
'location': () => import('./components/location.vue'),
|
|
252
251
|
'mail': () => import('./components/mail.vue'),
|
|
253
|
-
'mail_new': () => import('./components/mail_new.vue'),
|
|
254
|
-
'mail_delete': () => import('./components/mail_delete.vue'),
|
|
255
|
-
'mail_remove': () => import('./components/mail_remove.vue'),
|
|
256
252
|
'mail_add': () => import('./components/mail_add.vue'),
|
|
257
|
-
'
|
|
258
|
-
'
|
|
259
|
-
'
|
|
253
|
+
'list_numbered': () => import('./components/list_numbered.vue'),
|
|
254
|
+
'keyboard': () => import('./components/keyboard.vue'),
|
|
255
|
+
'mail_remove': () => import('./components/mail_remove.vue'),
|
|
256
|
+
'mail_minus': () => import('./components/mail_minus.vue'),
|
|
260
257
|
'menu_horizontal': () => import('./components/menu_horizontal.vue'),
|
|
258
|
+
'menu_vertical': () => import('./components/menu_vertical.vue'),
|
|
259
|
+
'maximise': () => import('./components/maximise.vue'),
|
|
260
|
+
'marquee': () => import('./components/marquee.vue'),
|
|
261
261
|
'menu_hamburger': () => import('./components/menu_hamburger.vue'),
|
|
262
262
|
'mail_open': () => import('./components/mail_open.vue'),
|
|
263
|
-
'
|
|
264
|
-
'microphone_disabled': () => import('./components/microphone_disabled.vue'),
|
|
263
|
+
'message': () => import('./components/message.vue'),
|
|
265
264
|
'microphone': () => import('./components/microphone.vue'),
|
|
265
|
+
'list_add': () => import('./components/list_add.vue'),
|
|
266
266
|
'midpoint': () => import('./components/midpoint.vue'),
|
|
267
|
-
'
|
|
267
|
+
'microphone_disabled': () => import('./components/microphone_disabled.vue'),
|
|
268
|
+
'message_writing': () => import('./components/message_writing.vue'),
|
|
269
|
+
'moon': () => import('./components/moon.vue'),
|
|
270
|
+
'minimise': () => import('./components/minimise.vue'),
|
|
271
|
+
'microphone_muted': () => import('./components/microphone_muted.vue'),
|
|
268
272
|
'mini_player': () => import('./components/mini_player.vue'),
|
|
269
|
-
'lock': () => import('./components/lock.vue'),
|
|
270
|
-
'move': () => import('./components/move.vue'),
|
|
271
273
|
'no_sign': () => import('./components/no_sign.vue'),
|
|
274
|
+
'move': () => import('./components/move.vue'),
|
|
272
275
|
'minus_circle': () => import('./components/minus_circle.vue'),
|
|
273
|
-
'
|
|
274
|
-
'
|
|
275
|
-
'
|
|
276
|
-
'message_writing': () => import('./components/message_writing.vue'),
|
|
277
|
-
'notification': () => import('./components/notification.vue'),
|
|
278
|
-
'pages': () => import('./components/pages.vue'),
|
|
279
|
-
'optional': () => import('./components/optional.vue'),
|
|
276
|
+
'mail_delete': () => import('./components/mail_delete.vue'),
|
|
277
|
+
'minus': () => import('./components/minus.vue'),
|
|
278
|
+
'panel_left': () => import('./components/panel_left.vue'),
|
|
280
279
|
'panel_bottom': () => import('./components/panel_bottom.vue'),
|
|
281
|
-
'
|
|
280
|
+
'notebook': () => import('./components/notebook.vue'),
|
|
281
|
+
'newspaper': () => import('./components/newspaper.vue'),
|
|
282
282
|
'panel_sectioned': () => import('./components/panel_sectioned.vue'),
|
|
283
|
+
'paper': () => import('./components/paper.vue'),
|
|
284
|
+
'pages': () => import('./components/pages.vue'),
|
|
285
|
+
'paper_folded': () => import('./components/paper_folded.vue'),
|
|
286
|
+
'paragraph_end': () => import('./components/paragraph_end.vue'),
|
|
283
287
|
'panel_center': () => import('./components/panel_center.vue'),
|
|
284
|
-
'microphone_muted': () => import('./components/microphone_muted.vue'),
|
|
285
288
|
'nut': () => import('./components/nut.vue'),
|
|
286
|
-
'panel_top': () => import('./components/panel_top.vue'),
|
|
287
|
-
'paper': () => import('./components/paper.vue'),
|
|
288
289
|
'paper_plane': () => import('./components/paper_plane.vue'),
|
|
289
290
|
'panel_right': () => import('./components/panel_right.vue'),
|
|
290
|
-
'
|
|
291
|
-
'
|
|
292
|
-
'paperclip': () => import('./components/paperclip.vue'),
|
|
293
|
-
'paragraph_left': () => import('./components/paragraph_left.vue'),
|
|
294
|
-
'paragraph_start': () => import('./components/paragraph_start.vue'),
|
|
291
|
+
'mail_new': () => import('./components/mail_new.vue'),
|
|
292
|
+
'notification': () => import('./components/notification.vue'),
|
|
295
293
|
'paper_plane_alt': () => import('./components/paper_plane_alt.vue'),
|
|
296
|
-
'
|
|
297
|
-
'paragraph_end': () => import('./components/paragraph_end.vue'),
|
|
298
|
-
'panel_left': () => import('./components/panel_left.vue'),
|
|
294
|
+
'optional': () => import('./components/optional.vue'),
|
|
299
295
|
'paragraph_center': () => import('./components/paragraph_center.vue'),
|
|
300
|
-
'
|
|
296
|
+
'paragraph_left': () => import('./components/paragraph_left.vue'),
|
|
301
297
|
'pause': () => import('./components/pause.vue'),
|
|
302
|
-
'notebook': () => import('./components/notebook.vue'),
|
|
303
|
-
'play_button': () => import('./components/play_button.vue'),
|
|
304
298
|
'pen': () => import('./components/pen.vue'),
|
|
305
|
-
'
|
|
306
|
-
'phone_portrait': () => import('./components/phone_portrait.vue'),
|
|
299
|
+
'paragraph_start': () => import('./components/paragraph_start.vue'),
|
|
307
300
|
'pie_quarter': () => import('./components/pie_quarter.vue'),
|
|
308
|
-
'
|
|
309
|
-
'
|
|
301
|
+
'pie_half': () => import('./components/pie_half.vue'),
|
|
302
|
+
'picture': () => import('./components/picture.vue'),
|
|
310
303
|
'plus': () => import('./components/plus.vue'),
|
|
304
|
+
'pie_third': () => import('./components/pie_third.vue'),
|
|
305
|
+
'phone_landscape': () => import('./components/phone_landscape.vue'),
|
|
306
|
+
'paragraph_right': () => import('./components/paragraph_right.vue'),
|
|
307
|
+
'panel_top': () => import('./components/panel_top.vue'),
|
|
311
308
|
'plus_circle': () => import('./components/plus_circle.vue'),
|
|
312
|
-
'
|
|
313
|
-
'
|
|
309
|
+
'play_button': () => import('./components/play_button.vue'),
|
|
310
|
+
'phone_portrait': () => import('./components/phone_portrait.vue'),
|
|
311
|
+
'play': () => import('./components/play.vue'),
|
|
314
312
|
'project_nonprofit': () => import('./components/project_nonprofit.vue'),
|
|
315
313
|
'project_fixed': () => import('./components/project_fixed.vue'),
|
|
316
314
|
'pull_down': () => import('./components/pull_down.vue'),
|
|
315
|
+
'project_tnm': () => import('./components/project_tnm.vue'),
|
|
317
316
|
'printer': () => import('./components/printer.vue'),
|
|
318
|
-
'postcard': () => import('./components/postcard.vue'),
|
|
319
|
-
'pull_up': () => import('./components/pull_up.vue'),
|
|
320
317
|
'pull_right': () => import('./components/pull_right.vue'),
|
|
321
|
-
'push_left': () => import('./components/push_left.vue'),
|
|
322
318
|
'push_down': () => import('./components/push_down.vue'),
|
|
319
|
+
'pull_up': () => import('./components/pull_up.vue'),
|
|
320
|
+
'projector': () => import('./components/projector.vue'),
|
|
321
|
+
'postcard': () => import('./components/postcard.vue'),
|
|
323
322
|
'push_right': () => import('./components/push_right.vue'),
|
|
324
|
-
'radio_on': () => import('./components/radio_on.vue'),
|
|
325
|
-
'question_circle': () => import('./components/question_circle.vue'),
|
|
326
323
|
'pull_left': () => import('./components/pull_left.vue'),
|
|
327
|
-
'
|
|
328
|
-
'
|
|
329
|
-
'
|
|
324
|
+
'push_up': () => import('./components/push_up.vue'),
|
|
325
|
+
'paperclip': () => import('./components/paperclip.vue'),
|
|
326
|
+
'question_circle': () => import('./components/question_circle.vue'),
|
|
327
|
+
'push_left': () => import('./components/push_left.vue'),
|
|
330
328
|
'redo': () => import('./components/redo.vue'),
|
|
331
|
-
'
|
|
329
|
+
'record': () => import('./components/record.vue'),
|
|
330
|
+
'radio_on': () => import('./components/radio_on.vue'),
|
|
331
|
+
'refresh': () => import('./components/refresh.vue'),
|
|
332
332
|
'refresh_alt': () => import('./components/refresh_alt.vue'),
|
|
333
|
+
'replicate': () => import('./components/replicate.vue'),
|
|
334
|
+
'reset_hard': () => import('./components/reset_hard.vue'),
|
|
335
|
+
'replicate_alt': () => import('./components/replicate_alt.vue'),
|
|
333
336
|
'reset': () => import('./components/reset.vue'),
|
|
337
|
+
'receipt': () => import('./components/receipt.vue'),
|
|
338
|
+
'reuse': () => import('./components/reuse.vue'),
|
|
334
339
|
'reset_temporary': () => import('./components/reset_temporary.vue'),
|
|
340
|
+
'required': () => import('./components/required.vue'),
|
|
335
341
|
'reset_alt': () => import('./components/reset_alt.vue'),
|
|
336
|
-
'project_tnm': () => import('./components/project_tnm.vue'),
|
|
337
342
|
'reverse': () => import('./components/reverse.vue'),
|
|
343
|
+
'rocket': () => import('./components/rocket.vue'),
|
|
338
344
|
'retweet': () => import('./components/retweet.vue'),
|
|
339
|
-
'push_up': () => import('./components/push_up.vue'),
|
|
340
|
-
'replicate': () => import('./components/replicate.vue'),
|
|
341
|
-
'ruler': () => import('./components/ruler.vue'),
|
|
342
|
-
'reuse': () => import('./components/reuse.vue'),
|
|
343
|
-
'required': () => import('./components/required.vue'),
|
|
344
345
|
'scale': () => import('./components/scale.vue'),
|
|
345
|
-
'scale_contract': () => import('./components/scale_contract.vue'),
|
|
346
346
|
'reverse_alt': () => import('./components/reverse_alt.vue'),
|
|
347
|
+
'scale_contract': () => import('./components/scale_contract.vue'),
|
|
348
|
+
'revert': () => import('./components/revert.vue'),
|
|
349
|
+
'ruler': () => import('./components/ruler.vue'),
|
|
350
|
+
'scale_extend': () => import('./components/scale_extend.vue'),
|
|
347
351
|
'scalpel': () => import('./components/scalpel.vue'),
|
|
352
|
+
'server': () => import('./components/server.vue'),
|
|
348
353
|
'search': () => import('./components/search.vue'),
|
|
354
|
+
'shuffle': () => import('./components/shuffle.vue'),
|
|
355
|
+
'slash_forward': () => import('./components/slash_forward.vue'),
|
|
356
|
+
'slash_backward': () => import('./components/slash_backward.vue'),
|
|
349
357
|
'share_alt': () => import('./components/share_alt.vue'),
|
|
350
|
-
'reset_forward': () => import('./components/reset_forward.vue'),
|
|
351
|
-
'revert': () => import('./components/revert.vue'),
|
|
352
|
-
'rocket': () => import('./components/rocket.vue'),
|
|
353
358
|
'side_menu': () => import('./components/side_menu.vue'),
|
|
354
|
-
'slash_backward': () => import('./components/slash_backward.vue'),
|
|
355
|
-
'server': () => import('./components/server.vue'),
|
|
356
|
-
'reset_hard': () => import('./components/reset_hard.vue'),
|
|
357
|
-
'sort': () => import('./components/sort.vue'),
|
|
358
|
-
'scale_extend': () => import('./components/scale_extend.vue'),
|
|
359
|
-
'split': () => import('./components/split.vue'),
|
|
360
|
-
'shuffle': () => import('./components/shuffle.vue'),
|
|
361
359
|
'share': () => import('./components/share.vue'),
|
|
362
|
-
'
|
|
360
|
+
'speaker': () => import('./components/speaker.vue'),
|
|
363
361
|
'settings': () => import('./components/settings.vue'),
|
|
362
|
+
'sort': () => import('./components/sort.vue'),
|
|
363
|
+
'sort_alt': () => import('./components/sort_alt.vue'),
|
|
364
|
+
'split': () => import('./components/split.vue'),
|
|
365
|
+
'sliders': () => import('./components/sliders.vue'),
|
|
366
|
+
'table': () => import('./components/table.vue'),
|
|
364
367
|
'speech_bubble': () => import('./components/speech_bubble.vue'),
|
|
365
|
-
'
|
|
368
|
+
'star': () => import('./components/star.vue'),
|
|
366
369
|
'speech_typing': () => import('./components/speech_typing.vue'),
|
|
367
|
-
'
|
|
368
|
-
'sun': () => import('./components/sun.vue'),
|
|
370
|
+
'swap': () => import('./components/swap.vue'),
|
|
369
371
|
'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'),
|
|
373
372
|
'tag': () => import('./components/tag.vue'),
|
|
373
|
+
'sun': () => import('./components/sun.vue'),
|
|
374
374
|
'tag_milestone': () => import('./components/tag_milestone.vue'),
|
|
375
375
|
'support': () => import('./components/support.vue'),
|
|
376
|
+
'reset_forward': () => import('./components/reset_forward.vue'),
|
|
377
|
+
'table_header': () => import('./components/table_header.vue'),
|
|
378
|
+
'tags': () => import('./components/tags.vue'),
|
|
379
|
+
'switch': () => import('./components/switch.vue'),
|
|
376
380
|
'thread': () => import('./components/thread.vue'),
|
|
377
381
|
'thumbs_down': () => import('./components/thumbs_down.vue'),
|
|
378
|
-
'
|
|
379
|
-
'ticket': () => import('./components/ticket.vue'),
|
|
380
|
-
'thumbs_up': () => import('./components/thumbs_up.vue'),
|
|
381
|
-
'translate': () => import('./components/translate.vue'),
|
|
382
|
-
'tags': () => import('./components/tags.vue'),
|
|
383
|
-
'toggles': () => import('./components/toggles.vue'),
|
|
382
|
+
'timeline': () => import('./components/timeline.vue'),
|
|
384
383
|
'todo': () => import('./components/todo.vue'),
|
|
384
|
+
'thumbs_up': () => import('./components/thumbs_up.vue'),
|
|
385
|
+
'trophy': () => import('./components/trophy.vue'),
|
|
385
386
|
'toggle': () => import('./components/toggle.vue'),
|
|
386
387
|
'trash': () => import('./components/trash.vue'),
|
|
387
|
-
'
|
|
388
|
-
'
|
|
388
|
+
'translate': () => import('./components/translate.vue'),
|
|
389
|
+
'toggles': () => import('./components/toggles.vue'),
|
|
390
|
+
'target': () => import('./components/target.vue'),
|
|
389
391
|
'tv_mode': () => import('./components/tv_mode.vue'),
|
|
390
|
-
'
|
|
391
|
-
'
|
|
392
|
+
'trash_alt': () => import('./components/trash_alt.vue'),
|
|
393
|
+
'type_file': () => import('./components/type_file.vue'),
|
|
392
394
|
'type_checkbox': () => import('./components/type_checkbox.vue'),
|
|
393
|
-
'type_date': () => import('./components/type_date.vue'),
|
|
394
395
|
'type_email': () => import('./components/type_email.vue'),
|
|
395
|
-
'
|
|
396
|
-
'type_formula': () => import('./components/type_formula.vue'),
|
|
396
|
+
'type_date': () => import('./components/type_date.vue'),
|
|
397
397
|
'type_id': () => import('./components/type_id.vue'),
|
|
398
|
-
'
|
|
399
|
-
'type_person': () => import('./components/type_person.vue'),
|
|
398
|
+
'type_formula': () => import('./components/type_formula.vue'),
|
|
400
399
|
'type_multiselect': () => import('./components/type_multiselect.vue'),
|
|
400
|
+
'ticket': () => import('./components/ticket.vue'),
|
|
401
401
|
'type_relation': () => import('./components/type_relation.vue'),
|
|
402
|
+
'type_time': () => import('./components/type_time.vue'),
|
|
403
|
+
'type_url': () => import('./components/type_url.vue'),
|
|
402
404
|
'type_status': () => import('./components/type_status.vue'),
|
|
405
|
+
'type_person': () => import('./components/type_person.vue'),
|
|
403
406
|
'type_number': () => import('./components/type_number.vue'),
|
|
404
|
-
'type_select': () => import('./components/type_select.vue'),
|
|
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
407
|
'undo': () => import('./components/undo.vue'),
|
|
408
|
+
'type_select': () => import('./components/type_select.vue'),
|
|
409
|
+
'undo_history': () => import('./components/undo_history.vue'),
|
|
410
410
|
'type_user': () => import('./components/type_user.vue'),
|
|
411
|
+
'unarchive': () => import('./components/unarchive.vue'),
|
|
411
412
|
'unlink_vertical': () => import('./components/unlink_vertical.vue'),
|
|
412
|
-
'
|
|
413
|
+
'upload': () => import('./components/upload.vue'),
|
|
413
414
|
'unlink_horizontal': () => import('./components/unlink_horizontal.vue'),
|
|
414
415
|
'upward': () => import('./components/upward.vue'),
|
|
415
|
-
'user_male': () => import('./components/user_male.vue'),
|
|
416
|
-
'undo_history': () => import('./components/undo_history.vue'),
|
|
417
|
-
'user_remove': () => import('./components/user_remove.vue'),
|
|
418
416
|
'user_circle': () => import('./components/user_circle.vue'),
|
|
419
|
-
'
|
|
420
|
-
'user_male_circle': () => import('./components/user_male_circle.vue'),
|
|
417
|
+
'user_remove': () => import('./components/user_remove.vue'),
|
|
421
418
|
'user_add': () => import('./components/user_add.vue'),
|
|
419
|
+
'upload_alt': () => import('./components/upload_alt.vue'),
|
|
422
420
|
'users': () => import('./components/users.vue'),
|
|
423
|
-
'
|
|
421
|
+
'user_male_circle': () => import('./components/user_male_circle.vue'),
|
|
422
|
+
'user_male': () => import('./components/user_male.vue'),
|
|
424
423
|
'user': () => import('./components/user.vue'),
|
|
424
|
+
'version': () => import('./components/version.vue'),
|
|
425
425
|
'versions': () => import('./components/versions.vue'),
|
|
426
|
-
'
|
|
427
|
-
'volume_disabled': () => import('./components/volume_disabled.vue'),
|
|
426
|
+
'volume_0': () => import('./components/volume_0.vue'),
|
|
428
427
|
'wallet': () => import('./components/wallet.vue'),
|
|
429
|
-
'
|
|
430
|
-
'volume_high': () => import('./components/volume_high.vue'),
|
|
431
|
-
'volume_low': () => import('./components/volume_low.vue'),
|
|
432
|
-
'version': () => import('./components/version.vue'),
|
|
433
|
-
'warning_triangle': () => import('./components/warning_triangle.vue'),
|
|
428
|
+
'venn': () => import('./components/venn.vue'),
|
|
434
429
|
'warning_circle': () => import('./components/warning_circle.vue'),
|
|
430
|
+
'volume_low': () => import('./components/volume_low.vue'),
|
|
431
|
+
'type_text': () => import('./components/type_text.vue'),
|
|
432
|
+
'volume_disabled': () => import('./components/volume_disabled.vue'),
|
|
433
|
+
'volume_add': () => import('./components/volume_add.vue'),
|
|
434
|
+
'volume_high': () => import('./components/volume_high.vue'),
|
|
435
|
+
'volume_minus': () => import('./components/volume_minus.vue'),
|
|
435
436
|
'width': () => import('./components/width.vue'),
|
|
436
|
-
'
|
|
437
|
+
'warning_hex': () => import('./components/warning_hex.vue'),
|
|
438
|
+
'volume_muted': () => import('./components/volume_muted.vue'),
|
|
439
|
+
'warning_triangle': () => import('./components/warning_triangle.vue'),
|
|
440
|
+
'waves': () => import('./components/waves.vue'),
|
|
441
|
+
'video': () => import('./components/video.vue'),
|
|
437
442
|
'wifi': () => import('./components/wifi.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'),
|
|
441
443
|
'window_content': () => import('./components/window_content.vue'),
|
|
442
|
-
'volume_muted': () => import('./components/volume_muted.vue'),
|
|
443
|
-
'warning_hex': () => import('./components/warning_hex.vue'),
|
|
444
|
-
'window_collapse_left': () => import('./components/window_collapse_left.vue'),
|
|
445
444
|
'window': () => import('./components/window.vue'),
|
|
446
|
-
'
|
|
447
|
-
'
|
|
445
|
+
'wifi_none': () => import('./components/wifi_none.vue'),
|
|
446
|
+
'window_collapse_left': () => import('./components/window_collapse_left.vue'),
|
|
447
|
+
'wifi_error': () => import('./components/wifi_error.vue'),
|
|
448
448
|
'wrap_forward': () => import('./components/wrap_forward.vue'),
|
|
449
|
-
'
|
|
450
|
-
'
|
|
451
|
-
'
|
|
449
|
+
'wrap_back': () => import('./components/wrap_back.vue'),
|
|
450
|
+
'window_collapse_right': () => import('./components/window_collapse_right.vue'),
|
|
451
|
+
'write': () => import('./components/write.vue'),
|
|
452
|
+
'type_phone': () => import('./components/type_phone.vue'),
|
|
452
453
|
'zoom_out': () => import('./components/zoom_out.vue'),
|
|
454
|
+
'zoom_cancel': () => import('./components/zoom_cancel.vue'),
|
|
453
455
|
'zoom_in': () => import('./components/zoom_in.vue'),
|
|
454
456
|
'zoom_reset': () => import('./components/zoom_reset.vue'),
|
|
455
|
-
'zoom_cancel': () => import('./components/zoom_cancel.vue'),
|
|
456
|
-
'window_collapse_right': () => import('./components/window_collapse_right.vue'),
|
|
457
|
-
'nomi-arrow-right-top': () => import('./components/nomi-arrow-right-top.vue'),
|
|
458
457
|
'nomi-arrow-up': () => import('./components/nomi-arrow-up.vue'),
|
|
459
458
|
'nomi-arrow-down': () => import('./components/nomi-arrow-down.vue'),
|
|
459
|
+
'nomi-arrow-right-top': () => import('./components/nomi-arrow-right-top.vue'),
|
|
460
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
|
-
'nomi-calendar-alt2': () => import('./components/nomi-calendar-alt2.vue'),
|
|
464
461
|
'nomi-arrow_down': () => import('./components/nomi-arrow_down.vue'),
|
|
462
|
+
'nomi-clear': () => import('./components/nomi-clear.vue'),
|
|
463
|
+
'nomi-calendar-alt2': () => import('./components/nomi-calendar-alt2.vue'),
|
|
464
|
+
'nomi-calendar': () => import('./components/nomi-calendar.vue'),
|
|
465
465
|
'nomi-card': () => import('./components/nomi-card.vue'),
|
|
466
|
-
'nomi-counterparty': () => import('./components/nomi-counterparty.vue'),
|
|
467
466
|
'nomi-ai': () => import('./components/nomi-ai.vue'),
|
|
468
|
-
'nomi-
|
|
469
|
-
'nomi-
|
|
470
|
-
'nomi-
|
|
471
|
-
'nomi-clear': () => import('./components/nomi-clear.vue'),
|
|
472
|
-
'nomi-eye-open': () => import('./components/nomi-eye-open.vue'),
|
|
473
|
-
'nomi-logout': () => import('./components/nomi-logout.vue'),
|
|
474
|
-
'nomi-help': () => import('./components/nomi-help.vue'),
|
|
467
|
+
'nomi-arrows': () => import('./components/nomi-arrows.vue'),
|
|
468
|
+
'nomi-counterparty': () => import('./components/nomi-counterparty.vue'),
|
|
469
|
+
'nomi-arrow_up': () => import('./components/nomi-arrow_up.vue'),
|
|
475
470
|
'nomi-expand': () => import('./components/nomi-expand.vue'),
|
|
476
|
-
'nomi-eye-close': () => import('./components/nomi-eye-close.vue'),
|
|
477
471
|
'nomi-filter': () => import('./components/nomi-filter.vue'),
|
|
472
|
+
'nomi-close': () => import('./components/nomi-close.vue'),
|
|
473
|
+
'nomi-help': () => import('./components/nomi-help.vue'),
|
|
474
|
+
'nomi-eye-open': () => import('./components/nomi-eye-open.vue'),
|
|
478
475
|
'nomi-hide': () => import('./components/nomi-hide.vue'),
|
|
479
|
-
'nomi-
|
|
476
|
+
'nomi-logout': () => import('./components/nomi-logout.vue'),
|
|
477
|
+
'nomi-dashboard': () => import('./components/nomi-dashboard.vue'),
|
|
478
|
+
'nomi-export': () => import('./components/nomi-export.vue'),
|
|
479
|
+
'nomi-eye': () => import('./components/nomi-eye.vue'),
|
|
480
|
+
'nomi-move-right': () => import('./components/nomi-move-right.vue'),
|
|
481
|
+
'nomi-lock': () => import('./components/nomi-lock.vue'),
|
|
482
|
+
'nomi-person': () => import('./components/nomi-person.vue'),
|
|
480
483
|
'nomi-pen': () => import('./components/nomi-pen.vue'),
|
|
481
|
-
'nomi-pin': () => import('./components/nomi-pin.vue'),
|
|
482
484
|
'nomi-money': () => import('./components/nomi-money.vue'),
|
|
483
|
-
'nomi-
|
|
484
|
-
'nomi-
|
|
485
|
-
'nomi-
|
|
485
|
+
'nomi-pin': () => import('./components/nomi-pin.vue'),
|
|
486
|
+
'nomi-move-left': () => import('./components/nomi-move-left.vue'),
|
|
487
|
+
'nomi-project': () => import('./components/nomi-project.vue'),
|
|
486
488
|
'nomi-sort-desc': () => import('./components/nomi-sort-desc.vue'),
|
|
487
|
-
'nomi-
|
|
488
|
-
'nomi-
|
|
489
|
+
'nomi-scissors': () => import('./components/nomi-scissors.vue'),
|
|
490
|
+
'nomi-table-view': () => import('./components/nomi-table-view.vue'),
|
|
491
|
+
'nomi-repeat': () => import('./components/nomi-repeat.vue'),
|
|
489
492
|
'nomi-settings': () => import('./components/nomi-settings.vue'),
|
|
490
|
-
'nomi-
|
|
493
|
+
'nomi-sort-asc': () => import('./components/nomi-sort-asc.vue'),
|
|
491
494
|
'nomi-tag': () => import('./components/nomi-tag.vue'),
|
|
492
|
-
'nomi-
|
|
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'),
|
|
498
|
-
'nomi-trash': () => import('./components/nomi-trash.vue'),
|
|
499
|
-
'nomi-person': () => import('./components/nomi-person.vue'),
|
|
495
|
+
'nomi-target': () => import('./components/nomi-target.vue'),
|
|
500
496
|
'nomi-text': () => import('./components/nomi-text.vue'),
|
|
497
|
+
'nomi-trash': () => import('./components/nomi-trash.vue'),
|
|
498
|
+
'nomi-report': () => import('./components/nomi-report.vue'),
|
|
499
|
+
'nomi-recurrence': () => import('./components/nomi-recurrence.vue'),
|
|
500
|
+
'nomi-eye-close': () => import('./components/nomi-eye-close.vue'),
|
|
501
|
+
'nomi-transactions': () => import('./components/nomi-transactions.vue'),
|
|
501
502
|
'nomi-unpin': () => import('./components/nomi-unpin.vue'),
|
|
503
|
+
'nomi-user': () => import('./components/nomi-user.vue'),
|
|
502
504
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4 5V8C11.4 8.88366 12.1163 9.6 13 9.6H16V15.7372L15.8527 15.5899C15.2279 14.9651 14.2148 14.9651 13.59 15.5899C12.9651 16.2148 12.9651 17.2278 13.59 17.8527L14.7373 19H7C6.44772 19 6 18.5523 6 18V6C6 5.44772 6.44772 5 7 5H11.4ZM12.6 5.6V8C12.6 8.22091 12.7791 8.4 13 8.4H15.4L12.6 5.6ZM18.1456 20.1456C18.0881 20.2031 18.0218 20.2465 17.951 20.2758C17.8803 20.3051 17.8027 20.3213 17.7213 20.3213C17.6401 20.323 17.4416 20.2901 17.2971 20.1456L14.2971 17.1456C14.0627 16.9113 14.0627 16.5314 14.2971 16.297C14.5314 16.0627 14.9113 16.0627 15.1456 16.297L17.1213 18.2728V13.7213C17.1213 13.3899 17.39 13.1213 17.7213 13.1213C18.0527 13.1213 18.3213 13.3899 18.3213 13.7213V18.2728L20.2971 16.297C20.5314 16.0627 20.9113 16.0627 21.1456 16.297C21.3799 16.5314 21.3799 16.9113 21.1456 17.1456L18.1456 20.1456Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 4.3999C13.9882 4.3999 15.6 6.01168 15.6 7.9999V10.0489C16.033 10.1018 16.3329 10.2114 16.5607 10.4392C17 10.8786 17 11.5857 17 12.9999V14.9999C17 16.4141 17 17.1212 16.5607 17.5606C16.1213 17.9999 15.4142 17.9999 14 17.9999H10C8.58579 17.9999 7.87868 17.9999 7.43934 17.5606C7 17.1212 7 16.4141 7 14.9999V12.9999C7 11.5857 7 10.8786 7.43934 10.4392C7.66715 10.2114 7.96695 10.1018 8.4 10.0489L8.4 7.9999C8.4 6.01168 10.0118 4.3999 12 4.3999ZM14.4 7.9999V10.0003C14.2733 9.99991 14.1401 9.99991 14 9.99991H10C9.85987 9.99991 9.72668 9.99991 9.6 10.0003L9.6 7.9999C9.6 6.67442 10.6745 5.5999 12 5.5999C13.3255 5.5999 14.4 6.67442 14.4 7.9999ZM12.6 12.9999C12.6 12.6685 12.3314 12.3999 12 12.3999C11.6686 12.3999 11.4 12.6685 11.4 12.9999V14.9999C11.4 15.3313 11.6686 15.5999 12 15.5999C12.3314 15.5999 12.6 15.3313 12.6 14.9999V12.9999Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
--itf-table-alt-bg: #F9FAFB;
|
|
8
8
|
--itf-table-alt-selected-bg: #eff1f3;
|
|
9
9
|
--itf-table-header-bg: #f5f7f8;
|
|
10
|
-
--itf-table-header-color: #
|
|
10
|
+
--itf-table-header-color: #7A818EA5;
|
|
11
11
|
--itf-table-mirror-bg: #F2F4F7;
|
|
12
12
|
--itf-table-border-color: transparent; //var(--itf-table-header-bg);
|
|
13
|
-
--itf-table-header-border-color: #
|
|
13
|
+
--itf-table-header-border-color: #7A818E33;
|
|
14
14
|
--itf-table-border-base-color: var(--itf-table-header-bg); // кольори границь таблиці без внутрішніх рядків
|
|
15
15
|
--itf-table-border-base-width: 2px;
|
|
16
16
|
--itf-table-hover-header-bg: #dfe5ef;
|