@itfin/components 1.0.90 → 1.0.93
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/dropdown/Dropdown.vue +2 -1
- package/src/components/icon/components/backward10.vue +10 -0
- package/src/components/icon/components/forward10.vue +9 -0
- package/src/components/icon/components/pause.vue +10 -0
- package/src/components/icon/components/play.vue +7 -0
- package/src/components/icon/icons.js +228 -224
- package/src/components/table/Table.vue +6 -1
package/package.json
CHANGED
|
@@ -54,6 +54,7 @@ class itfDropdown extends Vue {
|
|
|
54
54
|
@Prop({ type: String, default: 'Dropdown' }) label;
|
|
55
55
|
@Prop({ type: Boolean }) right;
|
|
56
56
|
@Prop({ type: Boolean }) toggle;
|
|
57
|
+
@Prop({ validator: (value) => [true, false, 'inside', 'outside'].includes(value), default: true }) autoclose;
|
|
57
58
|
@Prop({ type: Object, default: () => ({}) }) buttonOptions;
|
|
58
59
|
|
|
59
60
|
modalId = '';
|
|
@@ -87,7 +88,7 @@ class itfDropdown extends Vue {
|
|
|
87
88
|
const { default: Dropdown } = await import('bootstrap/js/src/dropdown.js');
|
|
88
89
|
this.modalEl = new Dropdown(this.$refs.toggle.$el, {
|
|
89
90
|
reference: 'toggle',
|
|
90
|
-
autoClose:
|
|
91
|
+
autoClose: this.autoclose
|
|
91
92
|
});
|
|
92
93
|
// this.onVisibleChanged(this.value);
|
|
93
94
|
// this.$el.addEventListener('shown.bs.dropdown', () => {
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<template><svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="currentColor" d="M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z" transform="translate(32 0) scale(-1,1)"/>
|
|
3
|
+
<path
|
|
4
|
+
fill="currentColor"
|
|
5
|
+
d="M19.63,22.13a2.84,2.84,0,0,1-1.28-.27,2.44,2.44,0,0,1-.89-.77,3.57,3.57,0,0,1-.52-1.25,7.69,7.69,0,0,1-.17-1.68,7.83,7.83,0,0,1,.17-1.68,3.65,3.65,0,0,1,.52-1.25,2.44,2.44,0,0,1,.89-.77,2.84,2.84,0,0,1,1.28-.27,2.44,2.44,0,0,1,2.16,1,5.23,5.23,0,0,1,.7,2.93,5.23,5.23,0,0,1-.7,2.93A2.44,2.44,0,0,1,19.63,22.13Zm0-1.22a1.07,1.07,0,0,0,1-.55A3.38,3.38,0,0,0,21,18.85V17.47a3.31,3.31,0,0,0-.29-1.5,1.23,1.23,0,0,0-2.06,0,3.31,3.31,0,0,0-.29,1.5v1.38a3.38,3.38,0,0,0,.29,1.51A1.06,1.06,0,0,0,19.63,20.91Z"
|
|
6
|
+
transform="translate(0 0)"
|
|
7
|
+
/>
|
|
8
|
+
<path fill="currentColor" d="M10.63,22V20.82h2V15.63l-1.86,1-.55-1.06,2.32-1.3H14v6.5h1.78V22Z" transform="translate(0 0)"/>
|
|
9
|
+
</svg>
|
|
10
|
+
</template>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<template><svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="currentColor" d="M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z" transform="translate(0 0)"/>
|
|
3
|
+
<path
|
|
4
|
+
fill="currentColor"
|
|
5
|
+
d="M19.63,22.13a2.84,2.84,0,0,1-1.28-.27,2.44,2.44,0,0,1-.89-.77,3.57,3.57,0,0,1-.52-1.25,7.69,7.69,0,0,1-.17-1.68,7.83,7.83,0,0,1,.17-1.68,3.65,3.65,0,0,1,.52-1.25,2.44,2.44,0,0,1,.89-.77,2.84,2.84,0,0,1,1.28-.27,2.44,2.44,0,0,1,2.16,1,5.23,5.23,0,0,1,.7,2.93,5.23,5.23,0,0,1-.7,2.93A2.44,2.44,0,0,1,19.63,22.13Zm0-1.22a1.07,1.07,0,0,0,1-.55A3.38,3.38,0,0,0,21,18.85V17.47a3.31,3.31,0,0,0-.29-1.5,1.23,1.23,0,0,0-2.06,0,3.31,3.31,0,0,0-.29,1.5v1.38a3.38,3.38,0,0,0,.29,1.51A1.06,1.06,0,0,0,19.63,20.91Z"
|
|
6
|
+
transform="translate(0 0)"/>
|
|
7
|
+
<path fill="currentColor" d="M10.63,22V20.82h2V15.63l-1.86,1-.55-1.06,2.32-1.3H14v6.5h1.78V22Z" transform="translate(0 0)"/>
|
|
8
|
+
</svg>
|
|
9
|
+
</template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<template><svg height="762" viewBox="0 0 762 762" width="762" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g fill="currentColor" fill-rule="evenodd" stroke="none" transform="translate(125 125)">
|
|
3
|
+
<path
|
|
4
|
+
d="M224,435.8V76.1c0-6.7-5.4-12.1-12.2-12.1h-71.6c-6.8,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6 C218.6,448,224,442.6,224,435.8z"/>
|
|
5
|
+
|
|
6
|
+
<path
|
|
7
|
+
d="M371.8,64h-71.6c-6.7,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6c6.7,0,12.2-5.4,12.2-12.2V76.1 C384,69.4,378.6,64,371.8,64z"/>
|
|
8
|
+
</g>
|
|
9
|
+
</svg>
|
|
10
|
+
</template>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<template><svg height="21" viewBox="5.5 5 11 11" width="21" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g fill="none" fill-rule="evenodd" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
|
|
3
|
+
transform="translate(2 5)">
|
|
4
|
+
<path d="m7.5 7.5 3-2-3-2z" fill="currentColor"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
7
|
+
</template>
|
|
@@ -1,425 +1,429 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
'align_vertical': () => import('./components/align_vertical.vue'),
|
|
3
|
+
'airplay': () => import('./components/airplay.vue'),
|
|
3
4
|
'arrow_bottom_right': () => import('./components/arrow_bottom_right.vue'),
|
|
4
|
-
'
|
|
5
|
+
'align_horizontal': () => import('./components/align_horizontal.vue'),
|
|
6
|
+
'archive': () => import('./components/archive.vue'),
|
|
7
|
+
'angle': () => import('./components/angle.vue'),
|
|
8
|
+
'arrow_down': () => import('./components/arrow_down.vue'),
|
|
5
9
|
'arrow_down_circle': () => import('./components/arrow_down_circle.vue'),
|
|
6
|
-
'
|
|
10
|
+
'arrow_right_circle': () => import('./components/arrow_right_circle.vue'),
|
|
7
11
|
'arrow_left': () => import('./components/arrow_left.vue'),
|
|
8
|
-
'
|
|
12
|
+
'arrow_left_circle': () => import('./components/arrow_left_circle.vue'),
|
|
9
13
|
'arrow_right': () => import('./components/arrow_right.vue'),
|
|
10
14
|
'arrow_top_left': () => import('./components/arrow_top_left.vue'),
|
|
11
|
-
'arrow_up': () => import('./components/arrow_up.vue'),
|
|
12
15
|
'arrow_top_right': () => import('./components/arrow_top_right.vue'),
|
|
13
|
-
'
|
|
16
|
+
'arrow_up': () => import('./components/arrow_up.vue'),
|
|
14
17
|
'arrow_up_circle': () => import('./components/arrow_up_circle.vue'),
|
|
15
|
-
'backward': () => import('./components/backward.vue'),
|
|
16
18
|
'backspace': () => import('./components/backspace.vue'),
|
|
17
|
-
'
|
|
19
|
+
'audio_wave': () => import('./components/audio_wave.vue'),
|
|
20
|
+
'backward10': () => import('./components/backward10.vue'),
|
|
21
|
+
'backward': () => import('./components/backward.vue'),
|
|
18
22
|
'bag': () => import('./components/bag.vue'),
|
|
23
|
+
'battery_75': () => import('./components/battery_75.vue'),
|
|
19
24
|
'battery_charging': () => import('./components/battery_charging.vue'),
|
|
25
|
+
'battery_empty': () => import('./components/battery_empty.vue'),
|
|
26
|
+
'battery_full': () => import('./components/battery_full.vue'),
|
|
20
27
|
'battery_half': () => import('./components/battery_half.vue'),
|
|
21
28
|
'battery_low': () => import('./components/battery_low.vue'),
|
|
22
|
-
'battery_full': () => import('./components/battery_full.vue'),
|
|
23
|
-
'battery_empty': () => import('./components/battery_empty.vue'),
|
|
24
|
-
'angle': () => import('./components/angle.vue'),
|
|
25
|
-
'bell_disabled': () => import('./components/bell_disabled.vue'),
|
|
26
|
-
'bell': () => import('./components/bell.vue'),
|
|
27
29
|
'bell_ringing': () => import('./components/bell_ringing.vue'),
|
|
28
|
-
'
|
|
29
|
-
'
|
|
30
|
+
'bell': () => import('./components/bell.vue'),
|
|
31
|
+
'bell_disabled': () => import('./components/bell_disabled.vue'),
|
|
30
32
|
'bell_snooze': () => import('./components/bell_snooze.vue'),
|
|
31
|
-
'book': () => import('./components/book.vue'),
|
|
32
33
|
'bookmark': () => import('./components/bookmark.vue'),
|
|
34
|
+
'book_closed': () => import('./components/book_closed.vue'),
|
|
33
35
|
'bookmark_book': () => import('./components/bookmark_book.vue'),
|
|
34
|
-
'
|
|
36
|
+
'book': () => import('./components/book.vue'),
|
|
35
37
|
'box': () => import('./components/box.vue'),
|
|
36
|
-
'arrow_right_circle': () => import('./components/arrow_right_circle.vue'),
|
|
37
|
-
'browser_alt': () => import('./components/browser_alt.vue'),
|
|
38
38
|
'briefcase': () => import('./components/briefcase.vue'),
|
|
39
|
-
'
|
|
40
|
-
'branch': () => import('./components/branch.vue'),
|
|
41
|
-
'button_add': () => import('./components/button_add.vue'),
|
|
39
|
+
'box_open': () => import('./components/box_open.vue'),
|
|
42
40
|
'box_download': () => import('./components/box_download.vue'),
|
|
43
|
-
'
|
|
44
|
-
'
|
|
45
|
-
'calendar': () => import('./components/calendar.vue'),
|
|
41
|
+
'branch': () => import('./components/branch.vue'),
|
|
42
|
+
'browser_alt': () => import('./components/browser_alt.vue'),
|
|
46
43
|
'browser': () => import('./components/browser.vue'),
|
|
47
|
-
'
|
|
48
|
-
'calendar_last_day': () => import('./components/calendar_last_day.vue'),
|
|
44
|
+
'calculator': () => import('./components/calculator.vue'),
|
|
49
45
|
'calendar_date': () => import('./components/calendar_date.vue'),
|
|
50
46
|
'calendar_day': () => import('./components/calendar_day.vue'),
|
|
51
|
-
'
|
|
47
|
+
'calendar': () => import('./components/calendar.vue'),
|
|
48
|
+
'button_add': () => import('./components/button_add.vue'),
|
|
49
|
+
'calendar_add': () => import('./components/calendar_add.vue'),
|
|
50
|
+
'calendar_last_day': () => import('./components/calendar_last_day.vue'),
|
|
51
|
+
'calendar_week': () => import('./components/calendar_week.vue'),
|
|
52
|
+
'calendar_days': () => import('./components/calendar_days.vue'),
|
|
52
53
|
'calendar_move': () => import('./components/calendar_move.vue'),
|
|
54
|
+
'camera': () => import('./components/camera.vue'),
|
|
53
55
|
'calendar_month': () => import('./components/calendar_month.vue'),
|
|
54
|
-
'
|
|
55
|
-
'camera_alt': () => import('./components/camera_alt.vue'),
|
|
56
|
+
'calendar_remove': () => import('./components/calendar_remove.vue'),
|
|
56
57
|
'camera_noflash': () => import('./components/camera_noflash.vue'),
|
|
58
|
+
'calendar_split': () => import('./components/calendar_split.vue'),
|
|
59
|
+
'camera_alt': () => import('./components/camera_alt.vue'),
|
|
57
60
|
'camera_noflash_alt': () => import('./components/camera_noflash_alt.vue'),
|
|
58
|
-
'camera': () => import('./components/camera.vue'),
|
|
59
61
|
'card_timeline': () => import('./components/card_timeline.vue'),
|
|
60
|
-
'
|
|
61
|
-
'calendar_split': () => import('./components/calendar_split.vue'),
|
|
62
|
-
'card_view': () => import('./components/card_view.vue'),
|
|
63
|
-
'cast': () => import('./components/cast.vue'),
|
|
64
|
-
'cart': () => import('./components/cart.vue'),
|
|
62
|
+
'capture': () => import('./components/capture.vue'),
|
|
65
63
|
'chain': () => import('./components/chain.vue'),
|
|
64
|
+
'cart': () => import('./components/cart.vue'),
|
|
65
|
+
'cast': () => import('./components/cast.vue'),
|
|
66
|
+
'carousel': () => import('./components/carousel.vue'),
|
|
66
67
|
'chat_add': () => import('./components/chat_add.vue'),
|
|
67
|
-
'capture': () => import('./components/capture.vue'),
|
|
68
68
|
'check_circle': () => import('./components/check_circle.vue'),
|
|
69
|
-
'check': () => import('./components/check.vue'),
|
|
70
69
|
'check_circle_outside': () => import('./components/check_circle_outside.vue'),
|
|
70
|
+
'checkbox_checked': () => import('./components/checkbox_checked.vue'),
|
|
71
|
+
'check': () => import('./components/check.vue'),
|
|
71
72
|
'checkbox_empty': () => import('./components/checkbox_empty.vue'),
|
|
72
|
-
'chevron_down_double': () => import('./components/chevron_down_double.vue'),
|
|
73
73
|
'chevron_down': () => import('./components/chevron_down.vue'),
|
|
74
|
-
'
|
|
74
|
+
'chevron_down_circle': () => import('./components/chevron_down_circle.vue'),
|
|
75
75
|
'chevron_left_circle': () => import('./components/chevron_left_circle.vue'),
|
|
76
|
-
'checkbox_checked': () => import('./components/checkbox_checked.vue'),
|
|
77
76
|
'chevron_left_double': () => import('./components/chevron_left_double.vue'),
|
|
78
|
-
'
|
|
77
|
+
'chevron_left': () => import('./components/chevron_left.vue'),
|
|
79
78
|
'chevron_right': () => import('./components/chevron_right.vue'),
|
|
79
|
+
'chevron_down_double': () => import('./components/chevron_down_double.vue'),
|
|
80
|
+
'book_text': () => import('./components/book_text.vue'),
|
|
80
81
|
'chevron_open': () => import('./components/chevron_open.vue'),
|
|
81
|
-
'
|
|
82
|
-
'
|
|
82
|
+
'chevron_close': () => import('./components/chevron_close.vue'),
|
|
83
|
+
'chevron_up': () => import('./components/chevron_up.vue'),
|
|
83
84
|
'chevron_right_circle': () => import('./components/chevron_right_circle.vue'),
|
|
85
|
+
'circle_menu': () => import('./components/circle_menu.vue'),
|
|
84
86
|
'chevron_up_double': () => import('./components/chevron_up_double.vue'),
|
|
87
|
+
'card_view': () => import('./components/card_view.vue'),
|
|
85
88
|
'circle': () => import('./components/circle.vue'),
|
|
86
|
-
'chevron_up_circle': () => import('./components/chevron_up_circle.vue'),
|
|
87
|
-
'circle_menu': () => import('./components/circle_menu.vue'),
|
|
88
89
|
'circle_split': () => import('./components/circle_split.vue'),
|
|
89
|
-
'
|
|
90
|
+
'chevron_up_circle': () => import('./components/chevron_up_circle.vue'),
|
|
90
91
|
'clipboard_check': () => import('./components/clipboard_check.vue'),
|
|
91
|
-
'
|
|
92
|
+
'clipboard_notes': () => import('./components/clipboard_notes.vue'),
|
|
92
93
|
'clipboard_cross': () => import('./components/clipboard_cross.vue'),
|
|
93
|
-
'
|
|
94
|
-
'clipboard_copy': () => import('./components/clipboard_copy.vue'),
|
|
94
|
+
'button_minus': () => import('./components/button_minus.vue'),
|
|
95
95
|
'clipboard_remove': () => import('./components/clipboard_remove.vue'),
|
|
96
|
-
'
|
|
96
|
+
'clipboard_add': () => import('./components/clipboard_add.vue'),
|
|
97
|
+
'close': () => import('./components/close.vue'),
|
|
97
98
|
'clock': () => import('./components/clock.vue'),
|
|
98
99
|
'cloud': () => import('./components/cloud.vue'),
|
|
99
|
-
'cloud_download_alt': () => import('./components/cloud_download_alt.vue'),
|
|
100
100
|
'cloud_download': () => import('./components/cloud_download.vue'),
|
|
101
|
+
'cloud_disconnect': () => import('./components/cloud_disconnect.vue'),
|
|
102
|
+
'clipboard_copy': () => import('./components/clipboard_copy.vue'),
|
|
103
|
+
'cloud_download_alt': () => import('./components/cloud_download_alt.vue'),
|
|
104
|
+
'coins': () => import('./components/coins.vue'),
|
|
101
105
|
'cloud_upload': () => import('./components/cloud_upload.vue'),
|
|
106
|
+
'compass': () => import('./components/compass.vue'),
|
|
107
|
+
'contacts': () => import('./components/contacts.vue'),
|
|
108
|
+
'component_add': () => import('./components/component_add.vue'),
|
|
102
109
|
'coin': () => import('./components/coin.vue'),
|
|
103
110
|
'code': () => import('./components/code.vue'),
|
|
104
|
-
'
|
|
111
|
+
'clipboard': () => import('./components/clipboard.vue'),
|
|
112
|
+
'contract': () => import('./components/contract.vue'),
|
|
113
|
+
'create': () => import('./components/create.vue'),
|
|
105
114
|
'cloud_upload_alt': () => import('./components/cloud_upload_alt.vue'),
|
|
106
|
-
'coins': () => import('./components/coins.vue'),
|
|
107
|
-
'compass': () => import('./components/compass.vue'),
|
|
108
|
-
'component_add': () => import('./components/component_add.vue'),
|
|
109
|
-
'contacts': () => import('./components/contacts.vue'),
|
|
110
115
|
'credit_card': () => import('./components/credit_card.vue'),
|
|
111
|
-
'crop': () => import('./components/crop.vue'),
|
|
112
|
-
'create': () => import('./components/create.vue'),
|
|
113
|
-
'contract': () => import('./components/contract.vue'),
|
|
114
116
|
'cross': () => import('./components/cross.vue'),
|
|
117
|
+
'coffee': () => import('./components/coffee.vue'),
|
|
115
118
|
'crosshair': () => import('./components/crosshair.vue'),
|
|
116
|
-
'cross_circle': () => import('./components/cross_circle.vue'),
|
|
117
|
-
'cloud_disconnect': () => import('./components/cloud_disconnect.vue'),
|
|
118
119
|
'cube': () => import('./components/cube.vue'),
|
|
119
|
-
'
|
|
120
|
-
'disc': () => import('./components/disc.vue'),
|
|
120
|
+
'crop': () => import('./components/crop.vue'),
|
|
121
121
|
'database': () => import('./components/database.vue'),
|
|
122
|
-
'
|
|
123
|
-
'display': () => import('./components/display.vue'),
|
|
124
|
-
'directions': () => import('./components/directions.vue'),
|
|
125
|
-
'document': () => import('./components/document.vue'),
|
|
122
|
+
'diamond': () => import('./components/diamond.vue'),
|
|
126
123
|
'display_alt': () => import('./components/display_alt.vue'),
|
|
127
|
-
'
|
|
128
|
-
'
|
|
124
|
+
'document': () => import('./components/document.vue'),
|
|
125
|
+
'document_justified': () => import('./components/document_justified.vue'),
|
|
126
|
+
'cylinder': () => import('./components/cylinder.vue'),
|
|
127
|
+
'disc': () => import('./components/disc.vue'),
|
|
128
|
+
'chevron_right_double': () => import('./components/chevron_right_double.vue'),
|
|
129
129
|
'document_list': () => import('./components/document_list.vue'),
|
|
130
130
|
'document_stack': () => import('./components/document_stack.vue'),
|
|
131
|
-
'download': () => import('./components/download.vue'),
|
|
132
131
|
'download_alt': () => import('./components/download_alt.vue'),
|
|
133
|
-
'
|
|
132
|
+
'door': () => import('./components/door.vue'),
|
|
133
|
+
'download': () => import('./components/download.vue'),
|
|
134
134
|
'downward': () => import('./components/downward.vue'),
|
|
135
|
-
'
|
|
135
|
+
'display': () => import('./components/display.vue'),
|
|
136
|
+
'door_alt': () => import('./components/door_alt.vue'),
|
|
137
|
+
'drag_circle': () => import('./components/drag_circle.vue'),
|
|
136
138
|
'drag': () => import('./components/drag.vue'),
|
|
137
139
|
'duplicate_alt': () => import('./components/duplicate_alt.vue'),
|
|
138
|
-
'
|
|
139
|
-
'enter_alt': () => import('./components/enter_alt.vue'),
|
|
140
|
+
'drag_vertical': () => import('./components/drag_vertical.vue'),
|
|
140
141
|
'duplicate': () => import('./components/duplicate.vue'),
|
|
141
142
|
'enter': () => import('./components/enter.vue'),
|
|
143
|
+
'episodes': () => import('./components/episodes.vue'),
|
|
144
|
+
'bluetooth': () => import('./components/bluetooth.vue'),
|
|
142
145
|
'exit_left': () => import('./components/exit_left.vue'),
|
|
143
|
-
'close': () => import('./components/close.vue'),
|
|
144
|
-
'diamond': () => import('./components/diamond.vue'),
|
|
145
146
|
'expand': () => import('./components/expand.vue'),
|
|
146
147
|
'exit_right': () => import('./components/exit_right.vue'),
|
|
147
|
-
'
|
|
148
|
-
'
|
|
148
|
+
'directions': () => import('./components/directions.vue'),
|
|
149
|
+
'expand_width': () => import('./components/expand_width.vue'),
|
|
149
150
|
'external': () => import('./components/external.vue'),
|
|
151
|
+
'expand_height': () => import('./components/expand_height.vue'),
|
|
150
152
|
'eye': () => import('./components/eye.vue'),
|
|
151
153
|
'eye_no': () => import('./components/eye_no.vue'),
|
|
152
|
-
'
|
|
154
|
+
'eye_closed': () => import('./components/eye_closed.vue'),
|
|
153
155
|
'face_delighted': () => import('./components/face_delighted.vue'),
|
|
156
|
+
'face_sad': () => import('./components/face_sad.vue'),
|
|
154
157
|
'face_neutral': () => import('./components/face_neutral.vue'),
|
|
155
|
-
'
|
|
158
|
+
'file_download': () => import('./components/file_download.vue'),
|
|
156
159
|
'file_upload': () => import('./components/file_upload.vue'),
|
|
157
|
-
'files_multi': () => import('./components/files_multi.vue'),
|
|
158
160
|
'files_stack': () => import('./components/files_stack.vue'),
|
|
159
|
-
'
|
|
161
|
+
'files_history': () => import('./components/files_history.vue'),
|
|
160
162
|
'film': () => import('./components/film.vue'),
|
|
163
|
+
'document_words': () => import('./components/document_words.vue'),
|
|
161
164
|
'filter': () => import('./components/filter.vue'),
|
|
162
|
-
'
|
|
163
|
-
'
|
|
164
|
-
'filtering': () => import('./components/filtering.vue'),
|
|
165
|
-
'filter_single': () => import('./components/filter_single.vue'),
|
|
166
|
-
'eye_closed': () => import('./components/eye_closed.vue'),
|
|
167
|
-
'files_history': () => import('./components/files_history.vue'),
|
|
165
|
+
'files_multi': () => import('./components/files_multi.vue'),
|
|
166
|
+
'face_happy': () => import('./components/face_happy.vue'),
|
|
168
167
|
'fingerprint': () => import('./components/fingerprint.vue'),
|
|
168
|
+
'filtering': () => import('./components/filtering.vue'),
|
|
169
169
|
'flag': () => import('./components/flag.vue'),
|
|
170
|
+
'filter_single': () => import('./components/filter_single.vue'),
|
|
171
|
+
'flame_alt': () => import('./components/flame_alt.vue'),
|
|
170
172
|
'flame': () => import('./components/flame.vue'),
|
|
171
|
-
'
|
|
173
|
+
'floppy': () => import('./components/floppy.vue'),
|
|
172
174
|
'folder_add': () => import('./components/folder_add.vue'),
|
|
173
175
|
'folder_closed': () => import('./components/folder_closed.vue'),
|
|
174
|
-
'floppy': () => import('./components/floppy.vue'),
|
|
175
176
|
'folder_minus': () => import('./components/folder_minus.vue'),
|
|
177
|
+
'fork_git': () => import('./components/fork_git.vue'),
|
|
178
|
+
'folder_open': () => import('./components/folder_open.vue'),
|
|
179
|
+
'fullscreen': () => import('./components/fullscreen.vue'),
|
|
176
180
|
'forward': () => import('./components/forward.vue'),
|
|
177
|
-
'
|
|
181
|
+
'gift': () => import('./components/gift.vue'),
|
|
178
182
|
'frame': () => import('./components/frame.vue'),
|
|
179
|
-
'
|
|
180
|
-
'folder_open': () => import('./components/folder_open.vue'),
|
|
183
|
+
'enter_alt': () => import('./components/enter_alt.vue'),
|
|
181
184
|
'gauge': () => import('./components/gauge.vue'),
|
|
182
|
-
'gift': () => import('./components/gift.vue'),
|
|
183
|
-
'fork_git': () => import('./components/fork_git.vue'),
|
|
184
|
-
'gps': () => import('./components/gps.vue'),
|
|
185
|
-
'graph_bar': () => import('./components/graph_bar.vue'),
|
|
186
185
|
'globe': () => import('./components/globe.vue'),
|
|
186
|
+
'gps': () => import('./components/gps.vue'),
|
|
187
|
+
'filter_circle': () => import('./components/filter_circle.vue'),
|
|
187
188
|
'grab': () => import('./components/grab.vue'),
|
|
189
|
+
'graph_bar': () => import('./components/graph_bar.vue'),
|
|
188
190
|
'graph_increase': () => import('./components/graph_increase.vue'),
|
|
189
191
|
'grid': () => import('./components/grid.vue'),
|
|
190
|
-
'grid_circles': () => import('./components/grid_circles.vue'),
|
|
191
|
-
'grid_circles_add': () => import('./components/grid_circles_add.vue'),
|
|
192
192
|
'graph_box': () => import('./components/graph_box.vue'),
|
|
193
|
-
'
|
|
194
|
-
'
|
|
193
|
+
'grid_circles_add': () => import('./components/grid_circles_add.vue'),
|
|
194
|
+
'grid_small': () => import('./components/grid_small.vue'),
|
|
195
|
+
'grid_circles': () => import('./components/grid_circles.vue'),
|
|
195
196
|
'harddrive': () => import('./components/harddrive.vue'),
|
|
197
|
+
'grid_squares_add': () => import('./components/grid_squares_add.vue'),
|
|
196
198
|
'heart': () => import('./components/heart.vue'),
|
|
197
|
-
'
|
|
198
|
-
'
|
|
199
|
+
'forward10': () => import('./components/forward10.vue'),
|
|
200
|
+
'heart_rate': () => import('./components/heart_rate.vue'),
|
|
199
201
|
'grid_squares': () => import('./components/grid_squares.vue'),
|
|
200
202
|
'hash': () => import('./components/hash.vue'),
|
|
201
203
|
'height': () => import('./components/height.vue'),
|
|
202
|
-
'heart_rate': () => import('./components/heart_rate.vue'),
|
|
203
|
-
'home': () => import('./components/home.vue'),
|
|
204
|
-
'heart_remove': () => import('./components/heart_remove.vue'),
|
|
205
204
|
'hierarchy': () => import('./components/hierarchy.vue'),
|
|
206
|
-
'
|
|
205
|
+
'heart_remove': () => import('./components/heart_remove.vue'),
|
|
207
206
|
'home_alt': () => import('./components/home_alt.vue'),
|
|
207
|
+
'home_check': () => import('./components/home_check.vue'),
|
|
208
|
+
'home': () => import('./components/home.vue'),
|
|
208
209
|
'home_door': () => import('./components/home_door.vue'),
|
|
209
|
-
'inbox': () => import('./components/inbox.vue'),
|
|
210
|
-
'info_circle': () => import('./components/info_circle.vue'),
|
|
211
|
-
'import': () => import('./components/import.vue'),
|
|
212
210
|
'inbox_alt': () => import('./components/inbox_alt.vue'),
|
|
211
|
+
'import': () => import('./components/import.vue'),
|
|
212
|
+
'info_circle': () => import('./components/info_circle.vue'),
|
|
213
|
+
'inbox': () => import('./components/inbox.vue'),
|
|
214
|
+
'jump_forward': () => import('./components/jump_forward.vue'),
|
|
215
|
+
'iphone_portrait': () => import('./components/iphone_portrait.vue'),
|
|
213
216
|
'jump_backward': () => import('./components/jump_backward.vue'),
|
|
214
217
|
'iphone_landscape': () => import('./components/iphone_landscape.vue'),
|
|
215
|
-
'
|
|
218
|
+
'cross_circle': () => import('./components/cross_circle.vue'),
|
|
216
219
|
'jump_left': () => import('./components/jump_left.vue'),
|
|
217
220
|
'jump_right': () => import('./components/jump_right.vue'),
|
|
218
|
-
'keyboard': () => import('./components/keyboard.vue'),
|
|
219
|
-
'lightbulb': () => import('./components/lightbulb.vue'),
|
|
220
|
-
'lightning': () => import('./components/lightning.vue'),
|
|
221
221
|
'lightbulb_on': () => import('./components/lightbulb_on.vue'),
|
|
222
222
|
'laptop': () => import('./components/laptop.vue'),
|
|
223
|
-
'
|
|
223
|
+
'lightbulb': () => import('./components/lightbulb.vue'),
|
|
224
|
+
'funnel': () => import('./components/funnel.vue'),
|
|
224
225
|
'lightning_alt': () => import('./components/lightning_alt.vue'),
|
|
225
|
-
'
|
|
226
|
-
'
|
|
227
|
-
'link_vertical': () => import('./components/link_vertical.vue'),
|
|
228
|
-
'link': () => import('./components/link.vue'),
|
|
229
|
-
'link_horizontal': () => import('./components/link_horizontal.vue'),
|
|
226
|
+
'lineweight': () => import('./components/lineweight.vue'),
|
|
227
|
+
'keyboard': () => import('./components/keyboard.vue'),
|
|
230
228
|
'list': () => import('./components/list.vue'),
|
|
229
|
+
'link_broken': () => import('./components/link_broken.vue'),
|
|
230
|
+
'link_vertical': () => import('./components/link_vertical.vue'),
|
|
231
231
|
'list_add': () => import('./components/list_add.vue'),
|
|
232
|
-
'
|
|
232
|
+
'link_alt': () => import('./components/link_alt.vue'),
|
|
233
|
+
'link': () => import('./components/link.vue'),
|
|
233
234
|
'location': () => import('./components/location.vue'),
|
|
234
|
-
'loader': () => import('./components/loader.vue'),
|
|
235
|
-
'link_broken': () => import('./components/link_broken.vue'),
|
|
236
|
-
'mail': () => import('./components/mail.vue'),
|
|
237
235
|
'lock': () => import('./components/lock.vue'),
|
|
238
|
-
'mail_delete': () => import('./components/mail_delete.vue'),
|
|
239
236
|
'lock_open': () => import('./components/lock_open.vue'),
|
|
237
|
+
'mail': () => import('./components/mail.vue'),
|
|
238
|
+
'loader': () => import('./components/loader.vue'),
|
|
239
|
+
'list_numbered': () => import('./components/list_numbered.vue'),
|
|
240
240
|
'mail_add': () => import('./components/mail_add.vue'),
|
|
241
|
-
'
|
|
241
|
+
'mail_minus': () => import('./components/mail_minus.vue'),
|
|
242
|
+
'mail_delete': () => import('./components/mail_delete.vue'),
|
|
242
243
|
'mail_open': () => import('./components/mail_open.vue'),
|
|
243
|
-
'
|
|
244
|
+
'mail_remove': () => import('./components/mail_remove.vue'),
|
|
245
|
+
'message': () => import('./components/message.vue'),
|
|
244
246
|
'marquee': () => import('./components/marquee.vue'),
|
|
245
|
-
'
|
|
247
|
+
'mail_new': () => import('./components/mail_new.vue'),
|
|
246
248
|
'menu_horizontal': () => import('./components/menu_horizontal.vue'),
|
|
247
|
-
'menu_hamburger': () => import('./components/menu_hamburger.vue'),
|
|
248
249
|
'menu_vertical': () => import('./components/menu_vertical.vue'),
|
|
250
|
+
'menu_hamburger': () => import('./components/menu_hamburger.vue'),
|
|
251
|
+
'microphone_muted': () => import('./components/microphone_muted.vue'),
|
|
252
|
+
'mini_player': () => import('./components/mini_player.vue'),
|
|
249
253
|
'message_writing': () => import('./components/message_writing.vue'),
|
|
250
|
-
'
|
|
254
|
+
'minus': () => import('./components/minus.vue'),
|
|
251
255
|
'microphone': () => import('./components/microphone.vue'),
|
|
252
|
-
'mail_new': () => import('./components/mail_new.vue'),
|
|
253
|
-
'microphone_muted': () => import('./components/microphone_muted.vue'),
|
|
254
|
-
'message': () => import('./components/message.vue'),
|
|
255
|
-
'microphone_disabled': () => import('./components/microphone_disabled.vue'),
|
|
256
|
-
'moon': () => import('./components/moon.vue'),
|
|
257
256
|
'minimise': () => import('./components/minimise.vue'),
|
|
258
|
-
'
|
|
257
|
+
'hand': () => import('./components/hand.vue'),
|
|
258
|
+
'move': () => import('./components/move.vue'),
|
|
259
259
|
'no_sign': () => import('./components/no_sign.vue'),
|
|
260
|
+
'microphone_disabled': () => import('./components/microphone_disabled.vue'),
|
|
261
|
+
'minus_circle': () => import('./components/minus_circle.vue'),
|
|
260
262
|
'notebook': () => import('./components/notebook.vue'),
|
|
261
|
-
'
|
|
263
|
+
'nut': () => import('./components/nut.vue'),
|
|
262
264
|
'notification': () => import('./components/notification.vue'),
|
|
263
|
-
'mini_player': () => import('./components/mini_player.vue'),
|
|
264
265
|
'pages': () => import('./components/pages.vue'),
|
|
265
|
-
'panel_center': () => import('./components/panel_center.vue'),
|
|
266
|
-
'nut': () => import('./components/nut.vue'),
|
|
267
|
-
'minus_circle': () => import('./components/minus_circle.vue'),
|
|
268
266
|
'panel_bottom': () => import('./components/panel_bottom.vue'),
|
|
269
|
-
'minus': () => import('./components/minus.vue'),
|
|
270
267
|
'panel_left': () => import('./components/panel_left.vue'),
|
|
268
|
+
'link_horizontal': () => import('./components/link_horizontal.vue'),
|
|
271
269
|
'panel_right': () => import('./components/panel_right.vue'),
|
|
270
|
+
'panel_center': () => import('./components/panel_center.vue'),
|
|
272
271
|
'panel_sectioned': () => import('./components/panel_sectioned.vue'),
|
|
273
|
-
'
|
|
272
|
+
'alarm_clock': () => import('./components/alarm_clock.vue'),
|
|
274
273
|
'paper': () => import('./components/paper.vue'),
|
|
274
|
+
'arrow_bottom_left': () => import('./components/arrow_bottom_left.vue'),
|
|
275
275
|
'paper_folded': () => import('./components/paper_folded.vue'),
|
|
276
|
+
'paper_plane': () => import('./components/paper_plane.vue'),
|
|
277
|
+
'paper_plane_alt': () => import('./components/paper_plane_alt.vue'),
|
|
278
|
+
'moon': () => import('./components/moon.vue'),
|
|
279
|
+
'panel_top': () => import('./components/panel_top.vue'),
|
|
276
280
|
'paperclip': () => import('./components/paperclip.vue'),
|
|
281
|
+
'paragraph_center': () => import('./components/paragraph_center.vue'),
|
|
277
282
|
'paragraph_right': () => import('./components/paragraph_right.vue'),
|
|
278
|
-
'paper_plane_alt': () => import('./components/paper_plane_alt.vue'),
|
|
279
|
-
'paper_plane': () => import('./components/paper_plane.vue'),
|
|
280
283
|
'paragraph_end': () => import('./components/paragraph_end.vue'),
|
|
281
|
-
'
|
|
284
|
+
'paragraph_start': () => import('./components/paragraph_start.vue'),
|
|
285
|
+
'pause': () => import('./components/pause.vue'),
|
|
286
|
+
'maximise': () => import('./components/maximise.vue'),
|
|
282
287
|
'paragraph_left': () => import('./components/paragraph_left.vue'),
|
|
283
288
|
'pen': () => import('./components/pen.vue'),
|
|
284
289
|
'phone_landscape': () => import('./components/phone_landscape.vue'),
|
|
285
|
-
'phone_portrait': () => import('./components/phone_portrait.vue'),
|
|
286
290
|
'picture': () => import('./components/picture.vue'),
|
|
287
|
-
'
|
|
288
|
-
'
|
|
289
|
-
'pie_third': () => import('./components/pie_third.vue'),
|
|
291
|
+
'phone_portrait': () => import('./components/phone_portrait.vue'),
|
|
292
|
+
'lightning': () => import('./components/lightning.vue'),
|
|
290
293
|
'pie_quarter': () => import('./components/pie_quarter.vue'),
|
|
291
|
-
'plus': () => import('./components/plus.vue'),
|
|
292
|
-
'printer': () => import('./components/printer.vue'),
|
|
293
294
|
'play_button': () => import('./components/play_button.vue'),
|
|
295
|
+
'pie_third': () => import('./components/pie_third.vue'),
|
|
296
|
+
'plus': () => import('./components/plus.vue'),
|
|
294
297
|
'plus_circle': () => import('./components/plus_circle.vue'),
|
|
295
298
|
'postcard': () => import('./components/postcard.vue'),
|
|
296
|
-
'
|
|
299
|
+
'play': () => import('./components/play.vue'),
|
|
300
|
+
'project_tnm': () => import('./components/project_tnm.vue'),
|
|
297
301
|
'project_fixed': () => import('./components/project_fixed.vue'),
|
|
302
|
+
'printer': () => import('./components/printer.vue'),
|
|
303
|
+
'project_nonprofit': () => import('./components/project_nonprofit.vue'),
|
|
304
|
+
'midpoint': () => import('./components/midpoint.vue'),
|
|
298
305
|
'pull_down': () => import('./components/pull_down.vue'),
|
|
299
306
|
'projector': () => import('./components/projector.vue'),
|
|
300
|
-
'project_tnm': () => import('./components/project_tnm.vue'),
|
|
301
307
|
'pull_up': () => import('./components/pull_up.vue'),
|
|
302
308
|
'push_left': () => import('./components/push_left.vue'),
|
|
303
|
-
'pull_right': () => import('./components/pull_right.vue'),
|
|
304
|
-
'push_up': () => import('./components/push_up.vue'),
|
|
305
309
|
'push_right': () => import('./components/push_right.vue'),
|
|
306
|
-
'
|
|
310
|
+
'push_up': () => import('./components/push_up.vue'),
|
|
307
311
|
'question_circle': () => import('./components/question_circle.vue'),
|
|
308
|
-
'
|
|
309
|
-
'receipt': () => import('./components/receipt.vue'),
|
|
310
|
-
'redo': () => import('./components/redo.vue'),
|
|
312
|
+
'radio_on': () => import('./components/radio_on.vue'),
|
|
311
313
|
'record': () => import('./components/record.vue'),
|
|
312
|
-
'
|
|
313
|
-
'replicate_alt': () => import('./components/replicate_alt.vue'),
|
|
314
|
+
'redo': () => import('./components/redo.vue'),
|
|
314
315
|
'refresh': () => import('./components/refresh.vue'),
|
|
315
|
-
'
|
|
316
|
-
'
|
|
317
|
-
'
|
|
316
|
+
'flip_view': () => import('./components/flip_view.vue'),
|
|
317
|
+
'replicate_alt': () => import('./components/replicate_alt.vue'),
|
|
318
|
+
'receipt': () => import('./components/receipt.vue'),
|
|
319
|
+
'pie_half': () => import('./components/pie_half.vue'),
|
|
318
320
|
'refresh_alt': () => import('./components/refresh_alt.vue'),
|
|
321
|
+
'reset': () => import('./components/reset.vue'),
|
|
319
322
|
'reset_hard': () => import('./components/reset_hard.vue'),
|
|
320
|
-
'
|
|
321
|
-
'pull_left': () => import('./components/pull_left.vue'),
|
|
323
|
+
'reset_forward': () => import('./components/reset_forward.vue'),
|
|
322
324
|
'reuse': () => import('./components/reuse.vue'),
|
|
325
|
+
'reset_temporary': () => import('./components/reset_temporary.vue'),
|
|
323
326
|
'reverse': () => import('./components/reverse.vue'),
|
|
324
|
-
'
|
|
327
|
+
'reverse_alt': () => import('./components/reverse_alt.vue'),
|
|
325
328
|
'revert': () => import('./components/revert.vue'),
|
|
329
|
+
'scale_contract': () => import('./components/scale_contract.vue'),
|
|
330
|
+
'scale': () => import('./components/scale.vue'),
|
|
326
331
|
'rocket': () => import('./components/rocket.vue'),
|
|
327
|
-
'
|
|
328
|
-
'scalpel': () => import('./components/scalpel.vue'),
|
|
332
|
+
'ruler': () => import('./components/ruler.vue'),
|
|
329
333
|
'scale_extend': () => import('./components/scale_extend.vue'),
|
|
330
|
-
'search': () => import('./components/search.vue'),
|
|
331
334
|
'settings': () => import('./components/settings.vue'),
|
|
335
|
+
'search': () => import('./components/search.vue'),
|
|
336
|
+
'scalpel': () => import('./components/scalpel.vue'),
|
|
337
|
+
'retweet': () => import('./components/retweet.vue'),
|
|
338
|
+
'reset_alt': () => import('./components/reset_alt.vue'),
|
|
332
339
|
'server': () => import('./components/server.vue'),
|
|
333
|
-
'
|
|
340
|
+
'slash_backward': () => import('./components/slash_backward.vue'),
|
|
334
341
|
'shuffle': () => import('./components/shuffle.vue'),
|
|
335
342
|
'share': () => import('./components/share.vue'),
|
|
336
|
-
'scale_contract': () => import('./components/scale_contract.vue'),
|
|
337
|
-
'scale': () => import('./components/scale.vue'),
|
|
338
|
-
'slash_backward': () => import('./components/slash_backward.vue'),
|
|
339
343
|
'sort': () => import('./components/sort.vue'),
|
|
344
|
+
'sliders': () => import('./components/sliders.vue'),
|
|
340
345
|
'sort_alt': () => import('./components/sort_alt.vue'),
|
|
341
|
-
'retweet': () => import('./components/retweet.vue'),
|
|
342
346
|
'slash_forward': () => import('./components/slash_forward.vue'),
|
|
343
347
|
'speaker': () => import('./components/speaker.vue'),
|
|
344
|
-
'speech_typing': () => import('./components/speech_typing.vue'),
|
|
345
348
|
'speech_bubble': () => import('./components/speech_bubble.vue'),
|
|
346
349
|
'split': () => import('./components/split.vue'),
|
|
350
|
+
'newspaper': () => import('./components/newspaper.vue'),
|
|
351
|
+
'star': () => import('./components/star.vue'),
|
|
352
|
+
'split_three': () => import('./components/split_three.vue'),
|
|
347
353
|
'support': () => import('./components/support.vue'),
|
|
348
354
|
'sun': () => import('./components/sun.vue'),
|
|
349
|
-
'replicate': () => import('./components/replicate.vue'),
|
|
350
355
|
'swap': () => import('./components/swap.vue'),
|
|
351
|
-
'share_alt': () => import('./components/share_alt.vue'),
|
|
352
|
-
'table': () => import('./components/table.vue'),
|
|
353
356
|
'switch': () => import('./components/switch.vue'),
|
|
354
357
|
'tag': () => import('./components/tag.vue'),
|
|
355
|
-
'star': () => import('./components/star.vue'),
|
|
356
|
-
'thread': () => import('./components/thread.vue'),
|
|
357
|
-
'tags': () => import('./components/tags.vue'),
|
|
358
358
|
'tag_milestone': () => import('./components/tag_milestone.vue'),
|
|
359
|
+
'table_header': () => import('./components/table_header.vue'),
|
|
360
|
+
'side_menu': () => import('./components/side_menu.vue'),
|
|
361
|
+
'table': () => import('./components/table.vue'),
|
|
362
|
+
'tags': () => import('./components/tags.vue'),
|
|
363
|
+
'thread': () => import('./components/thread.vue'),
|
|
359
364
|
'thumbs_down': () => import('./components/thumbs_down.vue'),
|
|
360
|
-
'thumbs_up': () => import('./components/thumbs_up.vue'),
|
|
361
|
-
'ticket': () => import('./components/ticket.vue'),
|
|
362
|
-
'timeline': () => import('./components/timeline.vue'),
|
|
363
365
|
'target': () => import('./components/target.vue'),
|
|
364
|
-
'
|
|
365
|
-
'
|
|
366
|
+
'timeline': () => import('./components/timeline.vue'),
|
|
367
|
+
'ticket': () => import('./components/ticket.vue'),
|
|
368
|
+
'toggles': () => import('./components/toggles.vue'),
|
|
369
|
+
'replicate': () => import('./components/replicate.vue'),
|
|
370
|
+
'thumbs_up': () => import('./components/thumbs_up.vue'),
|
|
371
|
+
'translate': () => import('./components/translate.vue'),
|
|
366
372
|
'toggle': () => import('./components/toggle.vue'),
|
|
373
|
+
'pull_left': () => import('./components/pull_left.vue'),
|
|
367
374
|
'trash': () => import('./components/trash.vue'),
|
|
368
|
-
'toggles': () => import('./components/toggles.vue'),
|
|
369
|
-
'trash_alt': () => import('./components/trash_alt.vue'),
|
|
370
|
-
'unarchive': () => import('./components/unarchive.vue'),
|
|
371
375
|
'trophy': () => import('./components/trophy.vue'),
|
|
372
|
-
'
|
|
373
|
-
'
|
|
374
|
-
'
|
|
376
|
+
'pull_right': () => import('./components/pull_right.vue'),
|
|
377
|
+
'push_down': () => import('./components/push_down.vue'),
|
|
378
|
+
'trash_alt': () => import('./components/trash_alt.vue'),
|
|
379
|
+
'share_alt': () => import('./components/share_alt.vue'),
|
|
375
380
|
'upload': () => import('./components/upload.vue'),
|
|
376
|
-
'
|
|
377
|
-
'
|
|
378
|
-
'unlink_vertical': () => import('./components/unlink_vertical.vue'),
|
|
381
|
+
'undo_history': () => import('./components/undo_history.vue'),
|
|
382
|
+
'unlink_horizontal': () => import('./components/unlink_horizontal.vue'),
|
|
379
383
|
'user': () => import('./components/user.vue'),
|
|
380
|
-
'
|
|
381
|
-
'
|
|
382
|
-
'user_add': () => import('./components/user_add.vue'),
|
|
384
|
+
'unlink_vertical': () => import('./components/unlink_vertical.vue'),
|
|
385
|
+
'upload_alt': () => import('./components/upload_alt.vue'),
|
|
383
386
|
'user_circle': () => import('./components/user_circle.vue'),
|
|
384
|
-
'
|
|
387
|
+
'user_add': () => import('./components/user_add.vue'),
|
|
388
|
+
'user_male': () => import('./components/user_male.vue'),
|
|
389
|
+
'user_male_circle': () => import('./components/user_male_circle.vue'),
|
|
390
|
+
'venn': () => import('./components/venn.vue'),
|
|
385
391
|
'user_remove': () => import('./components/user_remove.vue'),
|
|
386
|
-
'translate': () => import('./components/translate.vue'),
|
|
387
392
|
'users': () => import('./components/users.vue'),
|
|
388
|
-
'
|
|
389
|
-
'venn': () => import('./components/venn.vue'),
|
|
390
|
-
'version': () => import('./components/version.vue'),
|
|
393
|
+
'tv_mode': () => import('./components/tv_mode.vue'),
|
|
391
394
|
'video': () => import('./components/video.vue'),
|
|
392
|
-
'
|
|
395
|
+
'upward': () => import('./components/upward.vue'),
|
|
396
|
+
'version': () => import('./components/version.vue'),
|
|
397
|
+
'unarchive': () => import('./components/unarchive.vue'),
|
|
393
398
|
'volume_0': () => import('./components/volume_0.vue'),
|
|
394
399
|
'volume_high': () => import('./components/volume_high.vue'),
|
|
395
|
-
'
|
|
396
|
-
'volume_disabled': () => import('./components/volume_disabled.vue'),
|
|
400
|
+
'volume_minus': () => import('./components/volume_minus.vue'),
|
|
397
401
|
'volume_muted': () => import('./components/volume_muted.vue'),
|
|
398
|
-
'
|
|
402
|
+
'versions': () => import('./components/versions.vue'),
|
|
403
|
+
'volume_add': () => import('./components/volume_add.vue'),
|
|
399
404
|
'warning_circle': () => import('./components/warning_circle.vue'),
|
|
400
|
-
'width': () => import('./components/width.vue'),
|
|
401
405
|
'volume_low': () => import('./components/volume_low.vue'),
|
|
402
406
|
'warning_triangle': () => import('./components/warning_triangle.vue'),
|
|
403
|
-
'
|
|
404
|
-
'
|
|
407
|
+
'warning_hex': () => import('./components/warning_hex.vue'),
|
|
408
|
+
'wallet': () => import('./components/wallet.vue'),
|
|
405
409
|
'wifi_none': () => import('./components/wifi_none.vue'),
|
|
406
|
-
'
|
|
410
|
+
'undo': () => import('./components/undo.vue'),
|
|
411
|
+
'todo': () => import('./components/todo.vue'),
|
|
407
412
|
'wifi_error': () => import('./components/wifi_error.vue'),
|
|
408
|
-
'
|
|
413
|
+
'wifi': () => import('./components/wifi.vue'),
|
|
414
|
+
'window': () => import('./components/window.vue'),
|
|
409
415
|
'window_collapse_right': () => import('./components/window_collapse_right.vue'),
|
|
410
|
-
'
|
|
416
|
+
'waves': () => import('./components/waves.vue'),
|
|
417
|
+
'write': () => import('./components/write.vue'),
|
|
411
418
|
'wrap_back': () => import('./components/wrap_back.vue'),
|
|
419
|
+
'window_collapse_left': () => import('./components/window_collapse_left.vue'),
|
|
420
|
+
'window_content': () => import('./components/window_content.vue'),
|
|
421
|
+
'speech_typing': () => import('./components/speech_typing.vue'),
|
|
412
422
|
'wrap_forward': () => import('./components/wrap_forward.vue'),
|
|
413
|
-
'write': () => import('./components/write.vue'),
|
|
414
423
|
'zoom_in': () => import('./components/zoom_in.vue'),
|
|
424
|
+
'width': () => import('./components/width.vue'),
|
|
425
|
+
'zoom_out': () => import('./components/zoom_out.vue'),
|
|
415
426
|
'zoom_cancel': () => import('./components/zoom_cancel.vue'),
|
|
416
427
|
'zoom_reset': () => import('./components/zoom_reset.vue'),
|
|
417
|
-
'
|
|
418
|
-
'table_header': () => import('./components/table_header.vue'),
|
|
419
|
-
'alarm_clock': () => import('./components/alarm_clock.vue'),
|
|
420
|
-
'window_content': () => import('./components/window_content.vue'),
|
|
421
|
-
'zoom_out': () => import('./components/zoom_out.vue'),
|
|
422
|
-
'split_three': () => import('./components/split_three.vue'),
|
|
423
|
-
'align_horizontal': () => import('./components/align_horizontal.vue'),
|
|
424
|
-
'airplay': () => import('./components/airplay.vue'),
|
|
428
|
+
'volume_disabled': () => import('./components/volume_disabled.vue'),
|
|
425
429
|
}
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
:class="{
|
|
28
28
|
'itf-table__header--sortable': column.sortable,
|
|
29
29
|
'itf-table__header--sorted': sortedColumns[column.name],
|
|
30
|
-
[`itf-table__header--sorted-${sortedColumns[column.name]}`]: sortedColumns[column.name]
|
|
30
|
+
[`itf-table__header--sorted-${sortedColumns[column.name]}`]: sortedColumns[column.name],
|
|
31
|
+
'align-left': column.alignLeft
|
|
31
32
|
}">
|
|
32
33
|
<span @click="sortBy(column, n)">
|
|
33
34
|
{{column.text}}
|
|
@@ -117,6 +118,10 @@ html {
|
|
|
117
118
|
display: grid;
|
|
118
119
|
grid-template-columns: var(--itf-table-template);
|
|
119
120
|
}
|
|
121
|
+
.itf-table__header.align-left {
|
|
122
|
+
justify-content: flex-start;
|
|
123
|
+
text-align: left;
|
|
124
|
+
}
|
|
120
125
|
}
|
|
121
126
|
&__rows {
|
|
122
127
|
display: grid;
|