@itfin/components 2.0.45 → 2.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/filter/FilterBadge.vue +1 -0
- package/src/components/filter/FilterFacetsList.vue +71 -39
- package/src/components/icon/components/nomi-demo.vue +7 -0
- package/src/components/icon/icons.js +328 -327
- package/src/components/icon/new-icons/demo.svg +6 -0
- package/src/components/panels/PanelList.vue +8 -5
- package/src/components/view/View.vue +1 -0
package/package.json
CHANGED
|
@@ -20,25 +20,17 @@
|
|
|
20
20
|
</div>
|
|
21
21
|
</div>
|
|
22
22
|
<div class="facets-list">
|
|
23
|
-
<div v-for="(
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
<itf-checkbox ungrouped :value="val.isSelected" class="m-0" />
|
|
35
|
-
<div class="w-100 text-truncate">{{ val.label }} <span v-if="val.description" class="small"><br/>{{ val.description }}</span></div>
|
|
36
|
-
</span>
|
|
37
|
-
<span v-if="val.count" class="facet-stat">
|
|
38
|
-
{{ val.count }}
|
|
39
|
-
<span class="facet-bar"><span :style="{'--bar-width': `${getPercent(val)}%`}" class="facet-bar-progress" /></span>
|
|
40
|
-
</span>
|
|
41
|
-
</div>
|
|
23
|
+
<div v-for="(val, g) of groupedList" :key="g" :style="{paddingLeft: `${((val.level || 0) + 0.5) * 1}rem`}"
|
|
24
|
+
class="dropdown-item" :class="{'active': val.isSelected, 'active': isGroupSelected(val)}" @click="onFilterClick(val)">
|
|
25
|
+
<span class="facet-name text-dark d-flex align-items-center">
|
|
26
|
+
<itf-checkbox ungrouped :value="val.isSelected" class="m-0" />
|
|
27
|
+
<itf-icon new v-if="val.isGroup && groupIcon" :name="groupIcon" class="me-1" />
|
|
28
|
+
<div class="w-100 text-truncate">{{ val.label }} <span v-if="val.description" class="small"><br/>{{ val.description }}</span></div>
|
|
29
|
+
</span>
|
|
30
|
+
<span v-if="val.count" class="facet-stat">
|
|
31
|
+
{{ val.count }}
|
|
32
|
+
<span class="facet-bar"><span :style="{'--bar-width': `${getPercent(val)}%`}" class="facet-bar-progress" /></span>
|
|
33
|
+
</span>
|
|
42
34
|
</div>
|
|
43
35
|
</div>
|
|
44
36
|
|
|
@@ -123,8 +115,10 @@
|
|
|
123
115
|
<script>
|
|
124
116
|
import uniq from 'lodash/uniq';
|
|
125
117
|
import sortBy from 'lodash/sortBy';
|
|
118
|
+
import groupBy from 'lodash/groupBy';
|
|
126
119
|
import { Vue, Prop, Model, Component } from 'vue-property-decorator';
|
|
127
120
|
import itfTextField from '../text-field/TextField.vue';
|
|
121
|
+
import itfIcon from '../icon/Icon';
|
|
128
122
|
import itfButton from '../button/Button';
|
|
129
123
|
import itfCheckbox from '../checkbox/Checkbox.vue';
|
|
130
124
|
|
|
@@ -132,6 +126,7 @@ export default @Component({
|
|
|
132
126
|
name: 'FilterFacetsList',
|
|
133
127
|
components: {
|
|
134
128
|
itfCheckbox,
|
|
129
|
+
itfIcon,
|
|
135
130
|
itfButton,
|
|
136
131
|
itfTextField
|
|
137
132
|
}
|
|
@@ -141,6 +136,7 @@ class FilterFacetsList extends Vue {
|
|
|
141
136
|
@Prop() items;
|
|
142
137
|
@Prop() item;
|
|
143
138
|
@Prop() total;
|
|
139
|
+
@Prop() options;
|
|
144
140
|
@Prop({ type: Number, default: 5 }) limit;
|
|
145
141
|
@Prop(Boolean) multiple;
|
|
146
142
|
@Prop(Boolean) showAll;
|
|
@@ -154,6 +150,44 @@ class FilterFacetsList extends Vue {
|
|
|
154
150
|
this.showMore = !this.showMore;
|
|
155
151
|
}
|
|
156
152
|
|
|
153
|
+
get groupIcon() {
|
|
154
|
+
return this.options?.groupIcon;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
get flatList() {
|
|
158
|
+
return treeToFlat(this.items || []);
|
|
159
|
+
|
|
160
|
+
function getIdsDeep(items, mapFunc) {
|
|
161
|
+
return (items ?? []).reduce((acc, item) => {
|
|
162
|
+
const id = mapFunc(item);
|
|
163
|
+
if (id) {
|
|
164
|
+
acc.push(id);
|
|
165
|
+
}
|
|
166
|
+
if (item.items && item.items.length) {
|
|
167
|
+
acc.push(...getIdsDeep(item.items, mapFunc));
|
|
168
|
+
}
|
|
169
|
+
return acc;
|
|
170
|
+
}, []);
|
|
171
|
+
}
|
|
172
|
+
function treeToFlat(items, level = 0) {
|
|
173
|
+
return (items ?? []).reduce((acc, item) => {
|
|
174
|
+
acc.push({
|
|
175
|
+
...item,
|
|
176
|
+
level,
|
|
177
|
+
ids: [item.isGroup ? `g:${item.value}` : item.value].concat(
|
|
178
|
+
getIdsDeep(item.items, (item) => item.isGroup ? `g:${item.value}` : item.value)
|
|
179
|
+
)
|
|
180
|
+
.filter(Boolean),
|
|
181
|
+
});
|
|
182
|
+
if (item.items && item.items.length) {
|
|
183
|
+
// acc.push({ ...item, group: item.label, level });
|
|
184
|
+
acc.push(...treeToFlat(item.items, level + 1));
|
|
185
|
+
}
|
|
186
|
+
return acc;
|
|
187
|
+
}, []);
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
157
191
|
get hasMore() {
|
|
158
192
|
if (this.showAll) {
|
|
159
193
|
return false;
|
|
@@ -162,26 +196,27 @@ class FilterFacetsList extends Vue {
|
|
|
162
196
|
}
|
|
163
197
|
|
|
164
198
|
get hasGroups() {
|
|
165
|
-
const groups = uniq(this.
|
|
199
|
+
const groups = uniq(this.flatList && this.flatList.map(item => item.group).filter(Boolean));
|
|
166
200
|
return groups.length > 1
|
|
167
201
|
}
|
|
168
202
|
|
|
169
|
-
isGroupSelected(
|
|
170
|
-
return
|
|
203
|
+
isGroupSelected(val) {
|
|
204
|
+
return (val.ids ?? []).every(id => this.value.includes(`${id}`));
|
|
171
205
|
}
|
|
172
206
|
|
|
173
|
-
groupSelected(value,
|
|
207
|
+
groupSelected(value, ids) {
|
|
174
208
|
let newVal = this.value ? [...Array.isArray(this.value) ? this.value : [this.value]] : [];
|
|
209
|
+
console.info(value, ids);
|
|
175
210
|
if (value) {
|
|
176
|
-
|
|
177
|
-
const itemValue = `${
|
|
211
|
+
ids.forEach((id) => {
|
|
212
|
+
const itemValue = `${id}`;
|
|
178
213
|
if (!newVal.includes(itemValue)) {
|
|
179
214
|
newVal.push(itemValue);
|
|
180
215
|
}
|
|
181
216
|
});
|
|
182
217
|
} else {
|
|
183
|
-
|
|
184
|
-
const itemValue = `${
|
|
218
|
+
ids.forEach((id) => {
|
|
219
|
+
const itemValue = `${id}`;
|
|
185
220
|
newVal = newVal.filter(val => val !== itemValue);
|
|
186
221
|
});
|
|
187
222
|
}
|
|
@@ -189,7 +224,7 @@ class FilterFacetsList extends Vue {
|
|
|
189
224
|
}
|
|
190
225
|
|
|
191
226
|
get visibleList() {
|
|
192
|
-
let list = this.
|
|
227
|
+
let list = this.flatList.map(val => {
|
|
193
228
|
const isSelected = this.multiple
|
|
194
229
|
? Array.isArray(this.value) && this.value.map(String).includes(`${val.value}`)
|
|
195
230
|
: `${this.value}` === `${val.value}`;
|
|
@@ -202,22 +237,15 @@ class FilterFacetsList extends Vue {
|
|
|
202
237
|
if (this.isShowSelected) {
|
|
203
238
|
return list.filter((val) => val.isSelected);
|
|
204
239
|
}
|
|
205
|
-
return sortBy(list, (item) => this.hasGroups ? item.group || item.label : item.label);
|
|
240
|
+
return this.hasGroups ? sortBy(list, (item) => item.group || item.label) : list;//sortBy(list, (item) => this.hasGroups ? item.group || item.label : item.label);
|
|
206
241
|
}
|
|
207
242
|
|
|
208
243
|
get groupedList() {
|
|
209
244
|
if (!this.hasGroups) {
|
|
210
|
-
return
|
|
245
|
+
return this.mappedValues;
|
|
211
246
|
}
|
|
212
|
-
const groups =
|
|
213
|
-
|
|
214
|
-
const group = item.group || '';
|
|
215
|
-
if (!groups[group]) {
|
|
216
|
-
groups[group] = [];
|
|
217
|
-
}
|
|
218
|
-
groups[group].push(item);
|
|
219
|
-
});
|
|
220
|
-
return Object.entries(groups).map(([group, items]) => ({ group, items }));
|
|
247
|
+
const groups = groupBy(this.mappedValues, (item) => item.group || '');
|
|
248
|
+
return Object.entries(groups).reduce((acc, [group, items]) => [...acc, { label: group, isGroup: true }, ...(items.map(item => ({ ...item, level: 1 })))], []);
|
|
221
249
|
}
|
|
222
250
|
|
|
223
251
|
get mappedValues() {
|
|
@@ -233,6 +261,10 @@ class FilterFacetsList extends Vue {
|
|
|
233
261
|
}
|
|
234
262
|
|
|
235
263
|
onFilterClick(val) {
|
|
264
|
+
if (val.isGroup) {
|
|
265
|
+
this.groupSelected(!val.isSelected, val.ids);
|
|
266
|
+
return;
|
|
267
|
+
}
|
|
236
268
|
const value = `${val.value}`;
|
|
237
269
|
if (!this.multiple) {
|
|
238
270
|
return this.$emit('input', `${this.value}` === value ? null : value);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<template><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7.10922 8.4091C6.78269 7.59278 7.59277 6.7827 8.40909 7.10923L18.3172 11.0725C19.1183 11.3929 19.1648 12.5095 18.393 12.8954L15.0261 14.5789C14.8325 14.6756 14.6756 14.8325 14.5789 15.0261L12.8954 18.393C12.5095 19.1648 11.3929 19.1183 11.0725 18.3172L7.10922 8.4091Z" fill="currentColor"/>
|
|
3
|
+
<path d="M5.81577 15.4361C5.88458 15.2732 6.11542 15.2732 6.18424 15.4361L6.56237 16.3312C6.58263 16.3792 6.62081 16.4174 6.66877 16.4376L7.56388 16.8158C7.72678 16.8846 7.72678 17.1154 7.56388 17.1842L6.66878 17.5624C6.62081 17.5826 6.58263 17.6208 6.56237 17.6688L6.18424 18.5639C6.11542 18.7268 5.88458 18.7268 5.81576 18.5639L5.43763 17.6688C5.41737 17.6208 5.37919 17.5826 5.33123 17.5624L4.43612 17.1842C4.27322 17.1154 4.27322 16.8846 4.43612 16.8158L5.33123 16.4376C5.37919 16.4174 5.41737 16.3792 5.43763 16.3312L5.81577 15.4361Z" fill="currentColor"/>
|
|
4
|
+
<path d="M17.3139 4.47174C17.3805 4.30291 17.6195 4.30291 17.6861 4.47174L18.1752 5.71209C18.1956 5.76363 18.2364 5.80443 18.2879 5.82476L19.5283 6.31395C19.6971 6.38053 19.6971 6.61947 19.5283 6.68605L18.2879 7.17524C18.2364 7.19557 18.1956 7.23637 18.1752 7.28791L17.6861 8.52826C17.6195 8.69709 17.3805 8.69709 17.3139 8.52826L16.8248 7.28791C16.8044 7.23637 16.7636 7.19557 16.7121 7.17524L15.4717 6.68605C15.3029 6.61947 15.3029 6.38053 15.4717 6.31395L16.7121 5.82476C16.7636 5.80443 16.8044 5.76363 16.8248 5.71209L17.3139 4.47174Z" fill="currentColor"/>
|
|
5
|
+
<path d="M12.3158 4.43612C12.3846 4.27322 12.6154 4.27322 12.6842 4.43612L12.9139 4.97972C12.9341 5.02769 12.9723 5.06586 13.0203 5.08612L13.5639 5.31576C13.7268 5.38458 13.7268 5.61542 13.5639 5.68424L13.0203 5.91388C12.9723 5.93414 12.9341 5.97231 12.9139 6.02028L12.6842 6.56388C12.6154 6.72678 12.3846 6.72678 12.3158 6.56388L12.0861 6.02028C12.0659 5.97231 12.0277 5.93414 11.9797 5.91388L11.4361 5.68424C11.2732 5.61542 11.2732 5.38458 11.4361 5.31576L11.9797 5.08612C12.0277 5.06586 12.0659 5.02769 12.0861 4.97972L12.3158 4.43612Z" fill="currentColor"/>
|
|
6
|
+
</svg>
|
|
7
|
+
</template>
|
|
@@ -1,534 +1,535 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
'align_vertical': () => import('./components/align_vertical.vue'),
|
|
3
2
|
'align_horizontal': () => import('./components/align_horizontal.vue'),
|
|
3
|
+
'angle': () => import('./components/angle.vue'),
|
|
4
4
|
'airplay': () => import('./components/airplay.vue'),
|
|
5
5
|
'alarm_clock': () => import('./components/alarm_clock.vue'),
|
|
6
|
-
'arrow_down': () => import('./components/arrow_down.vue'),
|
|
7
|
-
'arrow_bottom_right': () => import('./components/arrow_bottom_right.vue'),
|
|
8
|
-
'arrow_bottom_left': () => import('./components/arrow_bottom_left.vue'),
|
|
9
|
-
'arrow_left_circle': () => import('./components/arrow_left_circle.vue'),
|
|
10
|
-
'arrow_down_circle': () => import('./components/arrow_down_circle.vue'),
|
|
11
6
|
'archive': () => import('./components/archive.vue'),
|
|
7
|
+
'arrow_bottom_right': () => import('./components/arrow_bottom_right.vue'),
|
|
8
|
+
'arrow_down': () => import('./components/arrow_down.vue'),
|
|
12
9
|
'arrow_left': () => import('./components/arrow_left.vue'),
|
|
13
|
-
'
|
|
10
|
+
'align_vertical': () => import('./components/align_vertical.vue'),
|
|
11
|
+
'arrow_down_circle': () => import('./components/arrow_down_circle.vue'),
|
|
12
|
+
'arrow_bottom_left': () => import('./components/arrow_bottom_left.vue'),
|
|
13
|
+
'arrow_right': () => import('./components/arrow_right.vue'),
|
|
14
14
|
'arrow_top_left': () => import('./components/arrow_top_left.vue'),
|
|
15
|
-
'
|
|
15
|
+
'arrow_left_circle': () => import('./components/arrow_left_circle.vue'),
|
|
16
16
|
'arrow_right_circle': () => import('./components/arrow_right_circle.vue'),
|
|
17
|
-
'
|
|
18
|
-
'
|
|
17
|
+
'arrow_up_circle': () => import('./components/arrow_up_circle.vue'),
|
|
18
|
+
'backward': () => import('./components/backward.vue'),
|
|
19
19
|
'arrow_up': () => import('./components/arrow_up.vue'),
|
|
20
|
-
'angle': () => import('./components/angle.vue'),
|
|
21
20
|
'backward10': () => import('./components/backward10.vue'),
|
|
22
|
-
'backward': () => import('./components/backward.vue'),
|
|
23
|
-
'bag': () => import('./components/bag.vue'),
|
|
24
|
-
'battery_empty': () => import('./components/battery_empty.vue'),
|
|
25
21
|
'battery_75': () => import('./components/battery_75.vue'),
|
|
26
|
-
'
|
|
27
|
-
'arrow_right': () => import('./components/arrow_right.vue'),
|
|
28
|
-
'battery_half': () => import('./components/battery_half.vue'),
|
|
22
|
+
'backspace': () => import('./components/backspace.vue'),
|
|
29
23
|
'battery_charging': () => import('./components/battery_charging.vue'),
|
|
30
|
-
'
|
|
24
|
+
'arrow_top_right': () => import('./components/arrow_top_right.vue'),
|
|
25
|
+
'audio_wave': () => import('./components/audio_wave.vue'),
|
|
31
26
|
'battery_low': () => import('./components/battery_low.vue'),
|
|
32
27
|
'bell': () => import('./components/bell.vue'),
|
|
33
|
-
'bell_snooze': () => import('./components/bell_snooze.vue'),
|
|
34
|
-
'bell_ringing': () => import('./components/bell_ringing.vue'),
|
|
35
28
|
'blocked': () => import('./components/blocked.vue'),
|
|
29
|
+
'battery_full': () => import('./components/battery_full.vue'),
|
|
30
|
+
'battery_half': () => import('./components/battery_half.vue'),
|
|
31
|
+
'battery_empty': () => import('./components/battery_empty.vue'),
|
|
32
|
+
'bell_disabled': () => import('./components/bell_disabled.vue'),
|
|
33
|
+
'bell_ringing': () => import('./components/bell_ringing.vue'),
|
|
34
|
+
'bag': () => import('./components/bag.vue'),
|
|
36
35
|
'bluetooth': () => import('./components/bluetooth.vue'),
|
|
37
36
|
'book_closed': () => import('./components/book_closed.vue'),
|
|
38
|
-
'box': () => import('./components/box.vue'),
|
|
39
|
-
'bookmark_book': () => import('./components/bookmark_book.vue'),
|
|
40
37
|
'bookmark': () => import('./components/bookmark.vue'),
|
|
41
|
-
'box_open': () => import('./components/box_open.vue'),
|
|
42
38
|
'book': () => import('./components/book.vue'),
|
|
43
|
-
'
|
|
44
|
-
'
|
|
45
|
-
'branch': () => import('./components/branch.vue'),
|
|
39
|
+
'bell_snooze': () => import('./components/bell_snooze.vue'),
|
|
40
|
+
'bookmark_book': () => import('./components/bookmark_book.vue'),
|
|
46
41
|
'browser_alt': () => import('./components/browser_alt.vue'),
|
|
47
|
-
'
|
|
42
|
+
'box_open': () => import('./components/box_open.vue'),
|
|
43
|
+
'box_download': () => import('./components/box_download.vue'),
|
|
44
|
+
'book_text': () => import('./components/book_text.vue'),
|
|
45
|
+
'button_add': () => import('./components/button_add.vue'),
|
|
48
46
|
'briefcase': () => import('./components/briefcase.vue'),
|
|
47
|
+
'box': () => import('./components/box.vue'),
|
|
48
|
+
'button_minus': () => import('./components/button_minus.vue'),
|
|
49
49
|
'calendar': () => import('./components/calendar.vue'),
|
|
50
|
-
'calculator': () => import('./components/calculator.vue'),
|
|
51
|
-
'button_add': () => import('./components/button_add.vue'),
|
|
52
50
|
'calendar_date': () => import('./components/calendar_date.vue'),
|
|
53
|
-
'
|
|
54
|
-
'
|
|
55
|
-
'calendar_day': () => import('./components/calendar_day.vue'),
|
|
51
|
+
'browser': () => import('./components/browser.vue'),
|
|
52
|
+
'branch': () => import('./components/branch.vue'),
|
|
56
53
|
'calendar_days': () => import('./components/calendar_days.vue'),
|
|
57
|
-
'
|
|
58
|
-
'calendar_month': () => import('./components/calendar_month.vue'),
|
|
54
|
+
'calendar_last_day': () => import('./components/calendar_last_day.vue'),
|
|
59
55
|
'calendar_remove': () => import('./components/calendar_remove.vue'),
|
|
56
|
+
'calculator': () => import('./components/calculator.vue'),
|
|
57
|
+
'calendar_add': () => import('./components/calendar_add.vue'),
|
|
58
|
+
'camera_noflash_alt': () => import('./components/camera_noflash_alt.vue'),
|
|
59
|
+
'calendar_day': () => import('./components/calendar_day.vue'),
|
|
60
60
|
'calendar_move': () => import('./components/calendar_move.vue'),
|
|
61
|
-
'
|
|
61
|
+
'calendar_month': () => import('./components/calendar_month.vue'),
|
|
62
62
|
'camera': () => import('./components/camera.vue'),
|
|
63
|
+
'capture': () => import('./components/capture.vue'),
|
|
64
|
+
'calendar_split': () => import('./components/calendar_split.vue'),
|
|
65
|
+
'card_view': () => import('./components/card_view.vue'),
|
|
63
66
|
'calendar_week': () => import('./components/calendar_week.vue'),
|
|
64
|
-
'card_timeline': () => import('./components/card_timeline.vue'),
|
|
65
67
|
'camera_noflash': () => import('./components/camera_noflash.vue'),
|
|
66
|
-
'
|
|
67
|
-
'capture': () => import('./components/capture.vue'),
|
|
68
|
+
'camera_alt': () => import('./components/camera_alt.vue'),
|
|
68
69
|
'cart': () => import('./components/cart.vue'),
|
|
69
|
-
'
|
|
70
|
-
'cast': () => import('./components/cast.vue'),
|
|
71
|
-
'check_circle_outside': () => import('./components/check_circle_outside.vue'),
|
|
70
|
+
'checkbox_checked': () => import('./components/checkbox_checked.vue'),
|
|
72
71
|
'carousel': () => import('./components/carousel.vue'),
|
|
73
|
-
'
|
|
72
|
+
'chain': () => import('./components/chain.vue'),
|
|
73
|
+
'cast': () => import('./components/cast.vue'),
|
|
74
74
|
'check': () => import('./components/check.vue'),
|
|
75
|
-
'
|
|
75
|
+
'check_circle_outside': () => import('./components/check_circle_outside.vue'),
|
|
76
|
+
'checkbox_empty': () => import('./components/checkbox_empty.vue'),
|
|
76
77
|
'chevron_down': () => import('./components/chevron_down.vue'),
|
|
77
|
-
'chat_add': () => import('./components/chat_add.vue'),
|
|
78
|
-
'chevron_down_circle': () => import('./components/chevron_down_circle.vue'),
|
|
79
|
-
'chain': () => import('./components/chain.vue'),
|
|
80
|
-
'chevron_left': () => import('./components/chevron_left.vue'),
|
|
81
|
-
'camera_alt': () => import('./components/camera_alt.vue'),
|
|
82
|
-
'chevron_left_double': () => import('./components/chevron_left_double.vue'),
|
|
83
78
|
'chevron_close': () => import('./components/chevron_close.vue'),
|
|
84
|
-
'chevron_open': () => import('./components/chevron_open.vue'),
|
|
85
|
-
'chevron_left_circle': () => import('./components/chevron_left_circle.vue'),
|
|
86
79
|
'chevron_down_double': () => import('./components/chevron_down_double.vue'),
|
|
80
|
+
'check_circle': () => import('./components/check_circle.vue'),
|
|
81
|
+
'chevron_left_circle': () => import('./components/chevron_left_circle.vue'),
|
|
82
|
+
'chevron_left': () => import('./components/chevron_left.vue'),
|
|
83
|
+
'chevron_open': () => import('./components/chevron_open.vue'),
|
|
84
|
+
'chat_add': () => import('./components/chat_add.vue'),
|
|
85
|
+
'card_timeline': () => import('./components/card_timeline.vue'),
|
|
86
|
+
'chevron_down_circle': () => import('./components/chevron_down_circle.vue'),
|
|
87
|
+
'chevron_right': () => import('./components/chevron_right.vue'),
|
|
87
88
|
'chevron_right_double': () => import('./components/chevron_right_double.vue'),
|
|
88
|
-
'
|
|
89
|
+
'chevron_right_circle': () => import('./components/chevron_right_circle.vue'),
|
|
89
90
|
'chevron_up': () => import('./components/chevron_up.vue'),
|
|
90
|
-
'chevron_right': () => import('./components/chevron_right.vue'),
|
|
91
|
-
'circle_menu': () => import('./components/circle_menu.vue'),
|
|
92
|
-
'checkbox_empty': () => import('./components/checkbox_empty.vue'),
|
|
93
|
-
'circle_split': () => import('./components/circle_split.vue'),
|
|
94
|
-
'chevron_up_double': () => import('./components/chevron_up_double.vue'),
|
|
95
|
-
'chevron_up_circle': () => import('./components/chevron_up_circle.vue'),
|
|
96
|
-
'clipboard_notes': () => import('./components/clipboard_notes.vue'),
|
|
97
|
-
'clipboard_cross': () => import('./components/clipboard_cross.vue'),
|
|
98
91
|
'clipboard': () => import('./components/clipboard.vue'),
|
|
99
|
-
'clock': () => import('./components/clock.vue'),
|
|
100
92
|
'clipboard_add': () => import('./components/clipboard_add.vue'),
|
|
93
|
+
'chevron_up_double': () => import('./components/chevron_up_double.vue'),
|
|
94
|
+
'circle_menu': () => import('./components/circle_menu.vue'),
|
|
101
95
|
'clipboard_check': () => import('./components/clipboard_check.vue'),
|
|
102
|
-
'
|
|
103
|
-
'
|
|
96
|
+
'clipboard_copy': () => import('./components/clipboard_copy.vue'),
|
|
97
|
+
'clock': () => import('./components/clock.vue'),
|
|
98
|
+
'clipboard_cross': () => import('./components/clipboard_cross.vue'),
|
|
99
|
+
'chevron_left_double': () => import('./components/chevron_left_double.vue'),
|
|
104
100
|
'close': () => import('./components/close.vue'),
|
|
105
|
-
'
|
|
101
|
+
'cloud': () => import('./components/cloud.vue'),
|
|
102
|
+
'chevron_up_circle': () => import('./components/chevron_up_circle.vue'),
|
|
103
|
+
'circle': () => import('./components/circle.vue'),
|
|
104
|
+
'circle_split': () => import('./components/circle_split.vue'),
|
|
106
105
|
'cloud_download_alt': () => import('./components/cloud_download_alt.vue'),
|
|
107
|
-
'
|
|
106
|
+
'clipboard_remove': () => import('./components/clipboard_remove.vue'),
|
|
107
|
+
'cloud_upload': () => import('./components/cloud_upload.vue'),
|
|
108
|
+
'cloud_disconnect': () => import('./components/cloud_disconnect.vue'),
|
|
108
109
|
'cloud_upload_alt': () => import('./components/cloud_upload_alt.vue'),
|
|
110
|
+
'cloud_download': () => import('./components/cloud_download.vue'),
|
|
111
|
+
'clipboard_notes': () => import('./components/clipboard_notes.vue'),
|
|
112
|
+
'code': () => import('./components/code.vue'),
|
|
109
113
|
'coffee': () => import('./components/coffee.vue'),
|
|
110
|
-
'cloud_disconnect': () => import('./components/cloud_disconnect.vue'),
|
|
111
|
-
'component_add': () => import('./components/component_add.vue'),
|
|
112
|
-
'compass': () => import('./components/compass.vue'),
|
|
113
114
|
'contacts': () => import('./components/contacts.vue'),
|
|
114
|
-
'cloud_download': () => import('./components/cloud_download.vue'),
|
|
115
115
|
'credit_card': () => import('./components/credit_card.vue'),
|
|
116
|
-
'coins': () => import('./components/coins.vue'),
|
|
117
|
-
'connect': () => import('./components/connect.vue'),
|
|
118
116
|
'coin': () => import('./components/coin.vue'),
|
|
117
|
+
'contract': () => import('./components/contract.vue'),
|
|
118
|
+
'component_add': () => import('./components/component_add.vue'),
|
|
119
119
|
'crop': () => import('./components/crop.vue'),
|
|
120
|
-
'create': () => import('./components/create.vue'),
|
|
121
120
|
'cross': () => import('./components/cross.vue'),
|
|
122
|
-
'
|
|
123
|
-
'
|
|
124
|
-
'
|
|
125
|
-
'
|
|
126
|
-
'
|
|
121
|
+
'coins': () => import('./components/coins.vue'),
|
|
122
|
+
'create': () => import('./components/create.vue'),
|
|
123
|
+
'crosshair': () => import('./components/crosshair.vue'),
|
|
124
|
+
'connect': () => import('./components/connect.vue'),
|
|
125
|
+
'compass': () => import('./components/compass.vue'),
|
|
127
126
|
'cross_circle': () => import('./components/cross_circle.vue'),
|
|
128
127
|
'database': () => import('./components/database.vue'),
|
|
128
|
+
'cylinder': () => import('./components/cylinder.vue'),
|
|
129
129
|
'display': () => import('./components/display.vue'),
|
|
130
|
-
'diamond': () => import('./components/diamond.vue'),
|
|
131
|
-
'crosshair': () => import('./components/crosshair.vue'),
|
|
132
|
-
'directions': () => import('./components/directions.vue'),
|
|
133
|
-
'disc': () => import('./components/disc.vue'),
|
|
134
130
|
'document': () => import('./components/document.vue'),
|
|
131
|
+
'diamond': () => import('./components/diamond.vue'),
|
|
132
|
+
'display_alt': () => import('./components/display_alt.vue'),
|
|
133
|
+
'document_stack': () => import('./components/document_stack.vue'),
|
|
135
134
|
'document_justified': () => import('./components/document_justified.vue'),
|
|
136
|
-
'
|
|
137
|
-
'
|
|
135
|
+
'disc': () => import('./components/disc.vue'),
|
|
136
|
+
'document_words': () => import('./components/document_words.vue'),
|
|
137
|
+
'directions': () => import('./components/directions.vue'),
|
|
138
138
|
'door': () => import('./components/door.vue'),
|
|
139
|
+
'drag_vertical': () => import('./components/drag_vertical.vue'),
|
|
140
|
+
'cube': () => import('./components/cube.vue'),
|
|
141
|
+
'download': () => import('./components/download.vue'),
|
|
142
|
+
'door_alt': () => import('./components/door_alt.vue'),
|
|
139
143
|
'downward': () => import('./components/downward.vue'),
|
|
144
|
+
'document_list': () => import('./components/document_list.vue'),
|
|
140
145
|
'download_alt': () => import('./components/download_alt.vue'),
|
|
141
|
-
'document_stack': () => import('./components/document_stack.vue'),
|
|
142
|
-
'door_alt': () => import('./components/door_alt.vue'),
|
|
143
|
-
'duplicate': () => import('./components/duplicate.vue'),
|
|
144
|
-
'document_words': () => import('./components/document_words.vue'),
|
|
145
|
-
'drag_circle': () => import('./components/drag_circle.vue'),
|
|
146
|
-
'drag': () => import('./components/drag.vue'),
|
|
147
146
|
'exit_left': () => import('./components/exit_left.vue'),
|
|
148
|
-
'
|
|
149
|
-
'display_alt': () => import('./components/display_alt.vue'),
|
|
150
|
-
'enter': () => import('./components/enter.vue'),
|
|
147
|
+
'duplicate_alt': () => import('./components/duplicate_alt.vue'),
|
|
151
148
|
'enter_alt': () => import('./components/enter_alt.vue'),
|
|
149
|
+
'duplicate': () => import('./components/duplicate.vue'),
|
|
150
|
+
'enter': () => import('./components/enter.vue'),
|
|
151
|
+
'drag': () => import('./components/drag.vue'),
|
|
152
|
+
'expand_height': () => import('./components/expand_height.vue'),
|
|
153
|
+
'exit_right': () => import('./components/exit_right.vue'),
|
|
152
154
|
'episodes': () => import('./components/episodes.vue'),
|
|
155
|
+
'drag_circle': () => import('./components/drag_circle.vue'),
|
|
153
156
|
'external': () => import('./components/external.vue'),
|
|
157
|
+
'face_sad': () => import('./components/face_sad.vue'),
|
|
154
158
|
'eye': () => import('./components/eye.vue'),
|
|
155
|
-
'exit_right': () => import('./components/exit_right.vue'),
|
|
156
|
-
'expand_height': () => import('./components/expand_height.vue'),
|
|
157
159
|
'expand_width': () => import('./components/expand_width.vue'),
|
|
158
|
-
'face_delighted': () => import('./components/face_delighted.vue'),
|
|
159
|
-
'expand': () => import('./components/expand.vue'),
|
|
160
|
-
'eye_no': () => import('./components/eye_no.vue'),
|
|
161
|
-
'face_neutral': () => import('./components/face_neutral.vue'),
|
|
162
160
|
'eye_closed': () => import('./components/eye_closed.vue'),
|
|
161
|
+
'expand': () => import('./components/expand.vue'),
|
|
162
|
+
'face_happy': () => import('./components/face_happy.vue'),
|
|
163
|
+
'face_delighted': () => import('./components/face_delighted.vue'),
|
|
163
164
|
'fi_fingerprint': () => import('./components/fi_fingerprint.vue'),
|
|
164
|
-
'
|
|
165
|
+
'face_neutral': () => import('./components/face_neutral.vue'),
|
|
166
|
+
'eye_no': () => import('./components/eye_no.vue'),
|
|
165
167
|
'file_download': () => import('./components/file_download.vue'),
|
|
166
|
-
'film': () => import('./components/film.vue'),
|
|
167
|
-
'duplicate_alt': () => import('./components/duplicate_alt.vue'),
|
|
168
|
-
'files_history': () => import('./components/files_history.vue'),
|
|
169
168
|
'files_multi': () => import('./components/files_multi.vue'),
|
|
170
|
-
'face_happy': () => import('./components/face_happy.vue'),
|
|
171
|
-
'filter': () => import('./components/filter.vue'),
|
|
172
|
-
'files_stack': () => import('./components/files_stack.vue'),
|
|
173
169
|
'filter_completed': () => import('./components/filter_completed.vue'),
|
|
174
|
-
'
|
|
175
|
-
'
|
|
170
|
+
'files_history': () => import('./components/files_history.vue'),
|
|
171
|
+
'files_stack': () => import('./components/files_stack.vue'),
|
|
176
172
|
'file_upload': () => import('./components/file_upload.vue'),
|
|
177
|
-
'
|
|
173
|
+
'filter_all': () => import('./components/filter_all.vue'),
|
|
178
174
|
'filter_not_started': () => import('./components/filter_not_started.vue'),
|
|
179
175
|
'filter_overdue': () => import('./components/filter_overdue.vue'),
|
|
180
|
-
'
|
|
181
|
-
'
|
|
176
|
+
'filter': () => import('./components/filter.vue'),
|
|
177
|
+
'film': () => import('./components/film.vue'),
|
|
178
|
+
'filter_circle': () => import('./components/filter_circle.vue'),
|
|
182
179
|
'filtering': () => import('./components/filtering.vue'),
|
|
183
|
-
'
|
|
184
|
-
'
|
|
185
|
-
'filter_ongoing': () => import('./components/filter_ongoing.vue'),
|
|
186
|
-
'fork_git': () => import('./components/fork_git.vue'),
|
|
187
|
-
'folder_closed': () => import('./components/folder_closed.vue'),
|
|
180
|
+
'flame': () => import('./components/flame.vue'),
|
|
181
|
+
'filter_single': () => import('./components/filter_single.vue'),
|
|
188
182
|
'floppy': () => import('./components/floppy.vue'),
|
|
183
|
+
'flag': () => import('./components/flag.vue'),
|
|
189
184
|
'folder_add': () => import('./components/folder_add.vue'),
|
|
190
|
-
'
|
|
185
|
+
'folder_open': () => import('./components/folder_open.vue'),
|
|
186
|
+
'fingerprint': () => import('./components/fingerprint.vue'),
|
|
187
|
+
'folder_minus': () => import('./components/folder_minus.vue'),
|
|
188
|
+
'filter_ongoing': () => import('./components/filter_ongoing.vue'),
|
|
189
|
+
'flip_view': () => import('./components/flip_view.vue'),
|
|
190
|
+
'flame_alt': () => import('./components/flame_alt.vue'),
|
|
191
191
|
'frame': () => import('./components/frame.vue'),
|
|
192
|
+
'funnel': () => import('./components/funnel.vue'),
|
|
193
|
+
'forward': () => import('./components/forward.vue'),
|
|
194
|
+
'gauge': () => import('./components/gauge.vue'),
|
|
195
|
+
'folder_closed': () => import('./components/folder_closed.vue'),
|
|
192
196
|
'forward_alt': () => import('./components/forward_alt.vue'),
|
|
193
|
-
'folder_open': () => import('./components/folder_open.vue'),
|
|
194
|
-
'filter_single': () => import('./components/filter_single.vue'),
|
|
195
197
|
'fullscreen': () => import('./components/fullscreen.vue'),
|
|
196
|
-
'
|
|
197
|
-
'gps': () => import('./components/gps.vue'),
|
|
198
|
+
'fork_git': () => import('./components/fork_git.vue'),
|
|
198
199
|
'gift': () => import('./components/gift.vue'),
|
|
199
|
-
'globe': () => import('./components/globe.vue'),
|
|
200
|
-
'folder_minus': () => import('./components/folder_minus.vue'),
|
|
201
|
-
'forward': () => import('./components/forward.vue'),
|
|
202
|
-
'graph_bar': () => import('./components/graph_bar.vue'),
|
|
203
200
|
'grab': () => import('./components/grab.vue'),
|
|
204
|
-
'
|
|
205
|
-
'
|
|
201
|
+
'globe': () => import('./components/globe.vue'),
|
|
202
|
+
'grid_small': () => import('./components/grid_small.vue'),
|
|
206
203
|
'graph_box': () => import('./components/graph_box.vue'),
|
|
204
|
+
'graph_bar': () => import('./components/graph_bar.vue'),
|
|
207
205
|
'graph_increase': () => import('./components/graph_increase.vue'),
|
|
208
|
-
'grid_squares': () => import('./components/grid_squares.vue'),
|
|
209
|
-
'grid_squares_add': () => import('./components/grid_squares_add.vue'),
|
|
210
|
-
'grid_small': () => import('./components/grid_small.vue'),
|
|
211
206
|
'grid_circles': () => import('./components/grid_circles.vue'),
|
|
212
207
|
'grid_circles_add': () => import('./components/grid_circles_add.vue'),
|
|
208
|
+
'grid': () => import('./components/grid.vue'),
|
|
209
|
+
'grid_squares_add': () => import('./components/grid_squares_add.vue'),
|
|
213
210
|
'harddrive': () => import('./components/harddrive.vue'),
|
|
214
|
-
'hash': () => import('./components/hash.vue'),
|
|
215
|
-
'heart_rate': () => import('./components/heart_rate.vue'),
|
|
216
|
-
'hierarchy': () => import('./components/hierarchy.vue'),
|
|
217
|
-
'heart_remove': () => import('./components/heart_remove.vue'),
|
|
218
211
|
'heart': () => import('./components/heart.vue'),
|
|
219
|
-
'inbox': () => import('./components/inbox.vue'),
|
|
220
|
-
'home_door': () => import('./components/home_door.vue'),
|
|
221
212
|
'hand': () => import('./components/hand.vue'),
|
|
213
|
+
'hash': () => import('./components/hash.vue'),
|
|
214
|
+
'forward10': () => import('./components/forward10.vue'),
|
|
215
|
+
'heart_remove': () => import('./components/heart_remove.vue'),
|
|
216
|
+
'heart_rate': () => import('./components/heart_rate.vue'),
|
|
217
|
+
'grid_squares': () => import('./components/grid_squares.vue'),
|
|
222
218
|
'home': () => import('./components/home.vue'),
|
|
223
|
-
'
|
|
219
|
+
'hierarchy': () => import('./components/hierarchy.vue'),
|
|
220
|
+
'home_door': () => import('./components/home_door.vue'),
|
|
224
221
|
'home_check': () => import('./components/home_check.vue'),
|
|
225
|
-
'import': () => import('./components/import.vue'),
|
|
226
|
-
'jump_backward': () => import('./components/jump_backward.vue'),
|
|
227
|
-
'iphone_landscape': () => import('./components/iphone_landscape.vue'),
|
|
228
|
-
'jump_forward': () => import('./components/jump_forward.vue'),
|
|
229
|
-
'iphone_portrait': () => import('./components/iphone_portrait.vue'),
|
|
230
222
|
'info_circle': () => import('./components/info_circle.vue'),
|
|
231
|
-
'height': () => import('./components/height.vue'),
|
|
232
223
|
'inbox_alt': () => import('./components/inbox_alt.vue'),
|
|
233
|
-
'
|
|
234
|
-
'
|
|
235
|
-
'
|
|
224
|
+
'iphone_landscape': () => import('./components/iphone_landscape.vue'),
|
|
225
|
+
'iphone_portrait': () => import('./components/iphone_portrait.vue'),
|
|
226
|
+
'gps': () => import('./components/gps.vue'),
|
|
227
|
+
'import': () => import('./components/import.vue'),
|
|
228
|
+
'home_alt': () => import('./components/home_alt.vue'),
|
|
229
|
+
'inbox': () => import('./components/inbox.vue'),
|
|
230
|
+
'jump_backward': () => import('./components/jump_backward.vue'),
|
|
231
|
+
'keyboard': () => import('./components/keyboard.vue'),
|
|
236
232
|
'jump_left': () => import('./components/jump_left.vue'),
|
|
237
233
|
'lightning': () => import('./components/lightning.vue'),
|
|
238
|
-
'
|
|
239
|
-
'
|
|
240
|
-
'lineweight': () => import('./components/lineweight.vue'),
|
|
241
|
-
'keyboard': () => import('./components/keyboard.vue'),
|
|
234
|
+
'jump_right': () => import('./components/jump_right.vue'),
|
|
235
|
+
'laptop': () => import('./components/laptop.vue'),
|
|
242
236
|
'lightning_alt': () => import('./components/lightning_alt.vue'),
|
|
243
|
-
'
|
|
237
|
+
'jump_forward': () => import('./components/jump_forward.vue'),
|
|
238
|
+
'lineweight': () => import('./components/lineweight.vue'),
|
|
239
|
+
'lightbulb_on': () => import('./components/lightbulb_on.vue'),
|
|
240
|
+
'link_vertical': () => import('./components/link_vertical.vue'),
|
|
244
241
|
'link_alt': () => import('./components/link_alt.vue'),
|
|
242
|
+
'list_numbered': () => import('./components/list_numbered.vue'),
|
|
245
243
|
'link_horizontal': () => import('./components/link_horizontal.vue'),
|
|
246
244
|
'list': () => import('./components/list.vue'),
|
|
247
|
-
'
|
|
248
|
-
'loader': () => import('./components/loader.vue'),
|
|
245
|
+
'lightbulb': () => import('./components/lightbulb.vue'),
|
|
249
246
|
'list_add': () => import('./components/list_add.vue'),
|
|
250
247
|
'lock': () => import('./components/lock.vue'),
|
|
251
|
-
'
|
|
252
|
-
'
|
|
253
|
-
'
|
|
254
|
-
'mail_delete': () => import('./components/mail_delete.vue'),
|
|
248
|
+
'link_broken': () => import('./components/link_broken.vue'),
|
|
249
|
+
'link': () => import('./components/link.vue'),
|
|
250
|
+
'loader': () => import('./components/loader.vue'),
|
|
255
251
|
'mail_add': () => import('./components/mail_add.vue'),
|
|
256
|
-
'
|
|
257
|
-
'mail_new': () => import('./components/mail_new.vue'),
|
|
258
|
-
'mail_open': () => import('./components/mail_open.vue'),
|
|
259
|
-
'message': () => import('./components/message.vue'),
|
|
252
|
+
'lock_open': () => import('./components/lock_open.vue'),
|
|
260
253
|
'location': () => import('./components/location.vue'),
|
|
261
|
-
'
|
|
254
|
+
'mail_new': () => import('./components/mail_new.vue'),
|
|
255
|
+
'height': () => import('./components/height.vue'),
|
|
262
256
|
'mail': () => import('./components/mail.vue'),
|
|
263
257
|
'menu_hamburger': () => import('./components/menu_hamburger.vue'),
|
|
264
|
-
'
|
|
265
|
-
'
|
|
266
|
-
'
|
|
267
|
-
'
|
|
258
|
+
'mail_minus': () => import('./components/mail_minus.vue'),
|
|
259
|
+
'mail_open': () => import('./components/mail_open.vue'),
|
|
260
|
+
'marquee': () => import('./components/marquee.vue'),
|
|
261
|
+
'maximise': () => import('./components/maximise.vue'),
|
|
268
262
|
'menu_vertical': () => import('./components/menu_vertical.vue'),
|
|
263
|
+
'message': () => import('./components/message.vue'),
|
|
264
|
+
'mail_delete': () => import('./components/mail_delete.vue'),
|
|
265
|
+
'menu_horizontal': () => import('./components/menu_horizontal.vue'),
|
|
269
266
|
'microphone_muted': () => import('./components/microphone_muted.vue'),
|
|
270
267
|
'minimise': () => import('./components/minimise.vue'),
|
|
271
|
-
'
|
|
272
|
-
'maximise': () => import('./components/maximise.vue'),
|
|
273
|
-
'microphone_disabled': () => import('./components/microphone_disabled.vue'),
|
|
274
|
-
'notebook': () => import('./components/notebook.vue'),
|
|
275
|
-
'minus': () => import('./components/minus.vue'),
|
|
268
|
+
'mail_remove': () => import('./components/mail_remove.vue'),
|
|
276
269
|
'message_writing': () => import('./components/message_writing.vue'),
|
|
270
|
+
'microphone_disabled': () => import('./components/microphone_disabled.vue'),
|
|
271
|
+
'microphone': () => import('./components/microphone.vue'),
|
|
272
|
+
'minus_circle': () => import('./components/minus_circle.vue'),
|
|
277
273
|
'moon': () => import('./components/moon.vue'),
|
|
278
|
-
'
|
|
274
|
+
'minus': () => import('./components/minus.vue'),
|
|
275
|
+
'midpoint': () => import('./components/midpoint.vue'),
|
|
276
|
+
'no_sign': () => import('./components/no_sign.vue'),
|
|
277
|
+
'move': () => import('./components/move.vue'),
|
|
278
|
+
'mini_player': () => import('./components/mini_player.vue'),
|
|
279
|
+
'newspaper': () => import('./components/newspaper.vue'),
|
|
279
280
|
'nut': () => import('./components/nut.vue'),
|
|
280
|
-
'notification': () => import('./components/notification.vue'),
|
|
281
|
-
'minus_circle': () => import('./components/minus_circle.vue'),
|
|
282
281
|
'optional': () => import('./components/optional.vue'),
|
|
283
282
|
'panel_bottom': () => import('./components/panel_bottom.vue'),
|
|
283
|
+
'notebook': () => import('./components/notebook.vue'),
|
|
284
284
|
'panel_right': () => import('./components/panel_right.vue'),
|
|
285
|
+
'pages': () => import('./components/pages.vue'),
|
|
285
286
|
'paper': () => import('./components/paper.vue'),
|
|
286
|
-
'panel_left': () => import('./components/panel_left.vue'),
|
|
287
287
|
'panel_top': () => import('./components/panel_top.vue'),
|
|
288
|
+
'panel_left': () => import('./components/panel_left.vue'),
|
|
289
|
+
'paper_folded': () => import('./components/paper_folded.vue'),
|
|
288
290
|
'panel_sectioned': () => import('./components/panel_sectioned.vue'),
|
|
291
|
+
'paper_plane': () => import('./components/paper_plane.vue'),
|
|
292
|
+
'paragraph_left': () => import('./components/paragraph_left.vue'),
|
|
289
293
|
'paper_plane_alt': () => import('./components/paper_plane_alt.vue'),
|
|
290
|
-
'paper_folded': () => import('./components/paper_folded.vue'),
|
|
291
|
-
'panel_center': () => import('./components/panel_center.vue'),
|
|
292
|
-
'newspaper': () => import('./components/newspaper.vue'),
|
|
293
|
-
'no_sign': () => import('./components/no_sign.vue'),
|
|
294
|
-
'paragraph_center': () => import('./components/paragraph_center.vue'),
|
|
295
294
|
'paragraph_right': () => import('./components/paragraph_right.vue'),
|
|
296
295
|
'paragraph_end': () => import('./components/paragraph_end.vue'),
|
|
297
|
-
'
|
|
298
|
-
'phone_landscape': () => import('./components/phone_landscape.vue'),
|
|
299
|
-
'paragraph_left': () => import('./components/paragraph_left.vue'),
|
|
296
|
+
'paperclip': () => import('./components/paperclip.vue'),
|
|
300
297
|
'picture': () => import('./components/picture.vue'),
|
|
298
|
+
'paragraph_center': () => import('./components/paragraph_center.vue'),
|
|
301
299
|
'phone_portrait': () => import('./components/phone_portrait.vue'),
|
|
302
|
-
'
|
|
300
|
+
'paragraph_start': () => import('./components/paragraph_start.vue'),
|
|
303
301
|
'pause': () => import('./components/pause.vue'),
|
|
304
|
-
'
|
|
302
|
+
'notification': () => import('./components/notification.vue'),
|
|
303
|
+
'panel_center': () => import('./components/panel_center.vue'),
|
|
304
|
+
'phone_landscape': () => import('./components/phone_landscape.vue'),
|
|
305
|
+
'play': () => import('./components/play.vue'),
|
|
306
|
+
'pen': () => import('./components/pen.vue'),
|
|
305
307
|
'pie_quarter': () => import('./components/pie_quarter.vue'),
|
|
306
|
-
'pie_half': () => import('./components/pie_half.vue'),
|
|
307
|
-
'plus': () => import('./components/plus.vue'),
|
|
308
308
|
'project_nonprofit': () => import('./components/project_nonprofit.vue'),
|
|
309
|
-
'paperclip': () => import('./components/paperclip.vue'),
|
|
310
|
-
'plus_circle': () => import('./components/plus_circle.vue'),
|
|
311
309
|
'play_button': () => import('./components/play_button.vue'),
|
|
312
|
-
'
|
|
310
|
+
'plus': () => import('./components/plus.vue'),
|
|
311
|
+
'pie_third': () => import('./components/pie_third.vue'),
|
|
312
|
+
'pie_half': () => import('./components/pie_half.vue'),
|
|
313
313
|
'postcard': () => import('./components/postcard.vue'),
|
|
314
314
|
'project_tnm': () => import('./components/project_tnm.vue'),
|
|
315
|
-
'pull_left': () => import('./components/pull_left.vue'),
|
|
316
315
|
'pull_down': () => import('./components/pull_down.vue'),
|
|
317
|
-
'pull_up': () => import('./components/pull_up.vue'),
|
|
318
|
-
'push_down': () => import('./components/push_down.vue'),
|
|
319
|
-
'push_up': () => import('./components/push_up.vue'),
|
|
320
|
-
'printer': () => import('./components/printer.vue'),
|
|
321
316
|
'push_left': () => import('./components/push_left.vue'),
|
|
322
|
-
'radio_on': () => import('./components/radio_on.vue'),
|
|
323
317
|
'pull_right': () => import('./components/pull_right.vue'),
|
|
324
|
-
'
|
|
325
|
-
'play': () => import('./components/play.vue'),
|
|
326
|
-
'question_circle': () => import('./components/question_circle.vue'),
|
|
327
|
-
'replicate': () => import('./components/replicate.vue'),
|
|
328
|
-
'refresh_alt': () => import('./components/refresh_alt.vue'),
|
|
329
|
-
'paragraph_start': () => import('./components/paragraph_start.vue'),
|
|
330
|
-
'receipt': () => import('./components/receipt.vue'),
|
|
318
|
+
'pull_left': () => import('./components/pull_left.vue'),
|
|
331
319
|
'project_fixed': () => import('./components/project_fixed.vue'),
|
|
332
|
-
'
|
|
320
|
+
'pull_up': () => import('./components/pull_up.vue'),
|
|
321
|
+
'push_right': () => import('./components/push_right.vue'),
|
|
322
|
+
'plus_circle': () => import('./components/plus_circle.vue'),
|
|
323
|
+
'projector': () => import('./components/projector.vue'),
|
|
324
|
+
'printer': () => import('./components/printer.vue'),
|
|
325
|
+
'question_circle': () => import('./components/question_circle.vue'),
|
|
326
|
+
'radio_on': () => import('./components/radio_on.vue'),
|
|
333
327
|
'redo': () => import('./components/redo.vue'),
|
|
328
|
+
'receipt': () => import('./components/receipt.vue'),
|
|
334
329
|
'record': () => import('./components/record.vue'),
|
|
335
|
-
'
|
|
336
|
-
'
|
|
330
|
+
'refresh_alt': () => import('./components/refresh_alt.vue'),
|
|
331
|
+
'replicate_alt': () => import('./components/replicate_alt.vue'),
|
|
337
332
|
'refresh': () => import('./components/refresh.vue'),
|
|
338
|
-
'
|
|
333
|
+
'reset': () => import('./components/reset.vue'),
|
|
334
|
+
'replicate': () => import('./components/replicate.vue'),
|
|
335
|
+
'push_up': () => import('./components/push_up.vue'),
|
|
339
336
|
'reset_alt': () => import('./components/reset_alt.vue'),
|
|
340
|
-
'reverse_alt': () => import('./components/reverse_alt.vue'),
|
|
341
|
-
'reuse': () => import('./components/reuse.vue'),
|
|
342
|
-
'reset_forward': () => import('./components/reset_forward.vue'),
|
|
343
337
|
'retweet': () => import('./components/retweet.vue'),
|
|
344
|
-
'
|
|
345
|
-
'
|
|
346
|
-
'ruler': () => import('./components/ruler.vue'),
|
|
347
|
-
'search': () => import('./components/search.vue'),
|
|
338
|
+
'required': () => import('./components/required.vue'),
|
|
339
|
+
'reset_hard': () => import('./components/reset_hard.vue'),
|
|
348
340
|
'reset_temporary': () => import('./components/reset_temporary.vue'),
|
|
341
|
+
'reset_forward': () => import('./components/reset_forward.vue'),
|
|
342
|
+
'revert': () => import('./components/revert.vue'),
|
|
349
343
|
'scale': () => import('./components/scale.vue'),
|
|
350
|
-
'
|
|
351
|
-
'
|
|
344
|
+
'reverse_alt': () => import('./components/reverse_alt.vue'),
|
|
345
|
+
'ruler': () => import('./components/ruler.vue'),
|
|
346
|
+
'search': () => import('./components/search.vue'),
|
|
347
|
+
'rocket': () => import('./components/rocket.vue'),
|
|
352
348
|
'server': () => import('./components/server.vue'),
|
|
353
|
-
'slash_backward': () => import('./components/slash_backward.vue'),
|
|
354
|
-
'sliders': () => import('./components/sliders.vue'),
|
|
355
|
-
'revert': () => import('./components/revert.vue'),
|
|
356
|
-
'slash_forward': () => import('./components/slash_forward.vue'),
|
|
357
|
-
'sort': () => import('./components/sort.vue'),
|
|
358
|
-
'scalpel': () => import('./components/scalpel.vue'),
|
|
359
349
|
'scale_extend': () => import('./components/scale_extend.vue'),
|
|
360
|
-
'settings': () => import('./components/settings.vue'),
|
|
361
350
|
'scale_contract': () => import('./components/scale_contract.vue'),
|
|
351
|
+
'settings': () => import('./components/settings.vue'),
|
|
352
|
+
'reverse': () => import('./components/reverse.vue'),
|
|
353
|
+
'reuse': () => import('./components/reuse.vue'),
|
|
354
|
+
'share_alt': () => import('./components/share_alt.vue'),
|
|
362
355
|
'shuffle': () => import('./components/shuffle.vue'),
|
|
363
|
-
'
|
|
364
|
-
'
|
|
365
|
-
'
|
|
356
|
+
'sliders': () => import('./components/sliders.vue'),
|
|
357
|
+
'sort': () => import('./components/sort.vue'),
|
|
358
|
+
'push_down': () => import('./components/push_down.vue'),
|
|
359
|
+
'slash_backward': () => import('./components/slash_backward.vue'),
|
|
360
|
+
'side_menu': () => import('./components/side_menu.vue'),
|
|
366
361
|
'share': () => import('./components/share.vue'),
|
|
362
|
+
'speaker': () => import('./components/speaker.vue'),
|
|
367
363
|
'speech_typing': () => import('./components/speech_typing.vue'),
|
|
368
|
-
'
|
|
369
|
-
'
|
|
364
|
+
'speech_bubble': () => import('./components/speech_bubble.vue'),
|
|
365
|
+
'split': () => import('./components/split.vue'),
|
|
366
|
+
'table': () => import('./components/table.vue'),
|
|
367
|
+
'slash_forward': () => import('./components/slash_forward.vue'),
|
|
370
368
|
'swap': () => import('./components/swap.vue'),
|
|
371
|
-
'switch': () => import('./components/switch.vue'),
|
|
372
|
-
'sun': () => import('./components/sun.vue'),
|
|
373
|
-
'tag': () => import('./components/tag.vue'),
|
|
374
369
|
'sort_alt': () => import('./components/sort_alt.vue'),
|
|
375
|
-
'
|
|
370
|
+
'tag': () => import('./components/tag.vue'),
|
|
376
371
|
'tag_milestone': () => import('./components/tag_milestone.vue'),
|
|
377
|
-
'
|
|
378
|
-
'thread': () => import('./components/thread.vue'),
|
|
372
|
+
'split_three': () => import('./components/split_three.vue'),
|
|
379
373
|
'support': () => import('./components/support.vue'),
|
|
380
|
-
'
|
|
381
|
-
'
|
|
374
|
+
'switch': () => import('./components/switch.vue'),
|
|
375
|
+
'target': () => import('./components/target.vue'),
|
|
376
|
+
'star': () => import('./components/star.vue'),
|
|
377
|
+
'sun': () => import('./components/sun.vue'),
|
|
382
378
|
'tags': () => import('./components/tags.vue'),
|
|
383
|
-
'
|
|
379
|
+
'thumbs_down': () => import('./components/thumbs_down.vue'),
|
|
380
|
+
'todo': () => import('./components/todo.vue'),
|
|
384
381
|
'toggles': () => import('./components/toggles.vue'),
|
|
385
|
-
'trash': () => import('./components/trash.vue'),
|
|
386
382
|
'timeline': () => import('./components/timeline.vue'),
|
|
383
|
+
'table_header': () => import('./components/table_header.vue'),
|
|
384
|
+
'thread': () => import('./components/thread.vue'),
|
|
385
|
+
'ticket': () => import('./components/ticket.vue'),
|
|
386
|
+
'toggle': () => import('./components/toggle.vue'),
|
|
387
|
+
'type_email': () => import('./components/type_email.vue'),
|
|
388
|
+
'trash_alt': () => import('./components/trash_alt.vue'),
|
|
387
389
|
'type_checkbox': () => import('./components/type_checkbox.vue'),
|
|
390
|
+
'trash': () => import('./components/trash.vue'),
|
|
388
391
|
'trophy': () => import('./components/trophy.vue'),
|
|
389
|
-
'
|
|
390
|
-
'
|
|
391
|
-
'tv_mode': () => import('./components/tv_mode.vue'),
|
|
392
|
+
'thumbs_up': () => import('./components/thumbs_up.vue'),
|
|
393
|
+
'type_date': () => import('./components/type_date.vue'),
|
|
392
394
|
'type_file': () => import('./components/type_file.vue'),
|
|
393
|
-
'trash_alt': () => import('./components/trash_alt.vue'),
|
|
394
|
-
'type_number': () => import('./components/type_number.vue'),
|
|
395
|
-
'split': () => import('./components/split.vue'),
|
|
396
|
-
'type_email': () => import('./components/type_email.vue'),
|
|
397
|
-
'type_formula': () => import('./components/type_formula.vue'),
|
|
398
|
-
'thumbs_down': () => import('./components/thumbs_down.vue'),
|
|
399
395
|
'type_id': () => import('./components/type_id.vue'),
|
|
400
|
-
'
|
|
401
|
-
'type_date': () => import('./components/type_date.vue'),
|
|
402
|
-
'type_text': () => import('./components/type_text.vue'),
|
|
403
|
-
'type_phone': () => import('./components/type_phone.vue'),
|
|
404
|
-
'type_status': () => import('./components/type_status.vue'),
|
|
396
|
+
'type_number': () => import('./components/type_number.vue'),
|
|
405
397
|
'type_person': () => import('./components/type_person.vue'),
|
|
398
|
+
'tv_mode': () => import('./components/tv_mode.vue'),
|
|
399
|
+
'type_select': () => import('./components/type_select.vue'),
|
|
400
|
+
'type_formula': () => import('./components/type_formula.vue'),
|
|
406
401
|
'type_relation': () => import('./components/type_relation.vue'),
|
|
407
|
-
'
|
|
408
|
-
'
|
|
402
|
+
'type_status': () => import('./components/type_status.vue'),
|
|
403
|
+
'type_multiselect': () => import('./components/type_multiselect.vue'),
|
|
409
404
|
'type_user': () => import('./components/type_user.vue'),
|
|
410
|
-
'
|
|
405
|
+
'translate': () => import('./components/translate.vue'),
|
|
406
|
+
'type_text': () => import('./components/type_text.vue'),
|
|
411
407
|
'undo_history': () => import('./components/undo_history.vue'),
|
|
412
|
-
'
|
|
408
|
+
'unarchive': () => import('./components/unarchive.vue'),
|
|
413
409
|
'type_time': () => import('./components/type_time.vue'),
|
|
410
|
+
'type_url': () => import('./components/type_url.vue'),
|
|
411
|
+
'unlink_vertical': () => import('./components/unlink_vertical.vue'),
|
|
412
|
+
'type_phone': () => import('./components/type_phone.vue'),
|
|
413
|
+
'upward': () => import('./components/upward.vue'),
|
|
414
414
|
'upload': () => import('./components/upload.vue'),
|
|
415
|
+
'undo': () => import('./components/undo.vue'),
|
|
416
|
+
'upload_alt': () => import('./components/upload_alt.vue'),
|
|
415
417
|
'unlink_horizontal': () => import('./components/unlink_horizontal.vue'),
|
|
416
|
-
'type_select': () => import('./components/type_select.vue'),
|
|
417
|
-
'user_add': () => import('./components/user_add.vue'),
|
|
418
|
-
'user': () => import('./components/user.vue'),
|
|
419
418
|
'user_circle': () => import('./components/user_circle.vue'),
|
|
420
|
-
'
|
|
421
|
-
'upload_alt': () => import('./components/upload_alt.vue'),
|
|
422
|
-
'user_remove': () => import('./components/user_remove.vue'),
|
|
423
|
-
'user_male_circle': () => import('./components/user_male_circle.vue'),
|
|
419
|
+
'user_add': () => import('./components/user_add.vue'),
|
|
424
420
|
'user_male': () => import('./components/user_male.vue'),
|
|
425
|
-
'
|
|
421
|
+
'user_remove': () => import('./components/user_remove.vue'),
|
|
422
|
+
'volume_add': () => import('./components/volume_add.vue'),
|
|
423
|
+
'users': () => import('./components/users.vue'),
|
|
426
424
|
'version': () => import('./components/version.vue'),
|
|
427
|
-
'volume_disabled': () => import('./components/volume_disabled.vue'),
|
|
428
|
-
'versions': () => import('./components/versions.vue'),
|
|
429
|
-
'volume_0': () => import('./components/volume_0.vue'),
|
|
430
425
|
'venn': () => import('./components/venn.vue'),
|
|
431
|
-
'
|
|
432
|
-
'
|
|
433
|
-
'
|
|
426
|
+
'user': () => import('./components/user.vue'),
|
|
427
|
+
'versions': () => import('./components/versions.vue'),
|
|
428
|
+
'video': () => import('./components/video.vue'),
|
|
429
|
+
'user_male_circle': () => import('./components/user_male_circle.vue'),
|
|
430
|
+
'volume_disabled': () => import('./components/volume_disabled.vue'),
|
|
434
431
|
'volume_high': () => import('./components/volume_high.vue'),
|
|
432
|
+
'volume_low': () => import('./components/volume_low.vue'),
|
|
435
433
|
'warning_circle': () => import('./components/warning_circle.vue'),
|
|
434
|
+
'volume_0': () => import('./components/volume_0.vue'),
|
|
436
435
|
'width': () => import('./components/width.vue'),
|
|
437
436
|
'wallet': () => import('./components/wallet.vue'),
|
|
438
|
-
'
|
|
437
|
+
'volume_muted': () => import('./components/volume_muted.vue'),
|
|
439
438
|
'warning_hex': () => import('./components/warning_hex.vue'),
|
|
439
|
+
'volume_minus': () => import('./components/volume_minus.vue'),
|
|
440
|
+
'wifi_error': () => import('./components/wifi_error.vue'),
|
|
441
|
+
'warning_triangle': () => import('./components/warning_triangle.vue'),
|
|
440
442
|
'wifi': () => import('./components/wifi.vue'),
|
|
441
|
-
'volume_muted': () => import('./components/volume_muted.vue'),
|
|
442
|
-
'wrap_back': () => import('./components/wrap_back.vue'),
|
|
443
443
|
'wifi_none': () => import('./components/wifi_none.vue'),
|
|
444
|
+
'window_collapse_right': () => import('./components/window_collapse_right.vue'),
|
|
444
445
|
'window_content': () => import('./components/window_content.vue'),
|
|
445
|
-
'window_collapse_left': () => import('./components/window_collapse_left.vue'),
|
|
446
|
-
'volume_minus': () => import('./components/volume_minus.vue'),
|
|
447
|
-
'warning_triangle': () => import('./components/warning_triangle.vue'),
|
|
448
446
|
'write': () => import('./components/write.vue'),
|
|
449
447
|
'window': () => import('./components/window.vue'),
|
|
450
|
-
'
|
|
451
|
-
'
|
|
448
|
+
'scalpel': () => import('./components/scalpel.vue'),
|
|
449
|
+
'window_collapse_left': () => import('./components/window_collapse_left.vue'),
|
|
450
|
+
'wrap_back': () => import('./components/wrap_back.vue'),
|
|
451
|
+
'waves': () => import('./components/waves.vue'),
|
|
452
452
|
'zoom_cancel': () => import('./components/zoom_cancel.vue'),
|
|
453
|
-
'wrap_forward': () => import('./components/wrap_forward.vue'),
|
|
454
|
-
'window_collapse_right': () => import('./components/window_collapse_right.vue'),
|
|
455
453
|
'zoom_in': () => import('./components/zoom_in.vue'),
|
|
454
|
+
'wrap_forward': () => import('./components/wrap_forward.vue'),
|
|
456
455
|
'zoom_reset': () => import('./components/zoom_reset.vue'),
|
|
456
|
+
'zoom_out': () => import('./components/zoom_out.vue'),
|
|
457
457
|
'nomi-ai': () => import('./components/nomi-ai.vue'),
|
|
458
458
|
'nomi-arrow-up': () => import('./components/nomi-arrow-up.vue'),
|
|
459
459
|
'nomi-arrow_down': () => import('./components/nomi-arrow_down.vue'),
|
|
460
|
-
'nomi-
|
|
460
|
+
'nomi-arrow-down': () => import('./components/nomi-arrow-down.vue'),
|
|
461
461
|
'nomi-arrow_up': () => import('./components/nomi-arrow_up.vue'),
|
|
462
|
+
'nomi-calendar-alt': () => import('./components/nomi-calendar-alt.vue'),
|
|
462
463
|
'nomi-arrow-right-top': () => import('./components/nomi-arrow-right-top.vue'),
|
|
463
|
-
'nomi-
|
|
464
|
-
'nomi-
|
|
465
|
-
'nomi-cashflow': () => import('./components/nomi-cashflow.vue'),
|
|
464
|
+
'nomi-automation': () => import('./components/nomi-automation.vue'),
|
|
465
|
+
'nomi-card': () => import('./components/nomi-card.vue'),
|
|
466
466
|
'nomi-category': () => import('./components/nomi-category.vue'),
|
|
467
|
-
'nomi-
|
|
467
|
+
'nomi-balance': () => import('./components/nomi-balance.vue'),
|
|
468
|
+
'nomi-cash': () => import('./components/nomi-cash.vue'),
|
|
468
469
|
'nomi-calendar': () => import('./components/nomi-calendar.vue'),
|
|
469
|
-
'nomi-
|
|
470
|
+
'nomi-calendar-alt2': () => import('./components/nomi-calendar-alt2.vue'),
|
|
470
471
|
'nomi-bell': () => import('./components/nomi-bell.vue'),
|
|
471
|
-
'nomi-
|
|
472
|
-
'nomi-
|
|
473
|
-
'nomi-
|
|
472
|
+
'nomi-category_alt': () => import('./components/nomi-category_alt.vue'),
|
|
473
|
+
'nomi-arrows': () => import('./components/nomi-arrows.vue'),
|
|
474
|
+
'nomi-dashboard': () => import('./components/nomi-dashboard.vue'),
|
|
475
|
+
'nomi-debt': () => import('./components/nomi-debt.vue'),
|
|
474
476
|
'nomi-close': () => import('./components/nomi-close.vue'),
|
|
475
|
-
'nomi-counterparty': () => import('./components/nomi-counterparty.vue'),
|
|
476
|
-
'nomi-chevron-right': () => import('./components/nomi-chevron-right.vue'),
|
|
477
477
|
'nomi-check': () => import('./components/nomi-check.vue'),
|
|
478
|
-
'nomi-
|
|
479
|
-
'nomi-
|
|
478
|
+
'nomi-currencies': () => import('./components/nomi-currencies.vue'),
|
|
479
|
+
'nomi-cashflow': () => import('./components/nomi-cashflow.vue'),
|
|
480
|
+
'nomi-expand': () => import('./components/nomi-expand.vue'),
|
|
481
|
+
'nomi-eye-close': () => import('./components/nomi-eye-close.vue'),
|
|
482
|
+
'nomi-eye-open': () => import('./components/nomi-eye-open.vue'),
|
|
483
|
+
'nomi-counterparty': () => import('./components/nomi-counterparty.vue'),
|
|
480
484
|
'nomi-clear': () => import('./components/nomi-clear.vue'),
|
|
485
|
+
'nomi-filter': () => import('./components/nomi-filter.vue'),
|
|
481
486
|
'nomi-dev': () => import('./components/nomi-dev.vue'),
|
|
482
|
-
'nomi-
|
|
483
|
-
'nomi-
|
|
487
|
+
'nomi-chevron-right': () => import('./components/nomi-chevron-right.vue'),
|
|
488
|
+
'nomi-help': () => import('./components/nomi-help.vue'),
|
|
489
|
+
'nomi-demo': () => import('./components/nomi-demo.vue'),
|
|
484
490
|
'nomi-export': () => import('./components/nomi-export.vue'),
|
|
485
|
-
'nomi-
|
|
486
|
-
'nomi-
|
|
487
|
-
'nomi-
|
|
491
|
+
'nomi-hide': () => import('./components/nomi-hide.vue'),
|
|
492
|
+
'nomi-menu': () => import('./components/nomi-menu.vue'),
|
|
493
|
+
'nomi-logout': () => import('./components/nomi-logout.vue'),
|
|
488
494
|
'nomi-file': () => import('./components/nomi-file.vue'),
|
|
495
|
+
'nomi-collapse': () => import('./components/nomi-collapse.vue'),
|
|
489
496
|
'nomi-folder': () => import('./components/nomi-folder.vue'),
|
|
490
|
-
'nomi-
|
|
491
|
-
'nomi-
|
|
492
|
-
'nomi-
|
|
493
|
-
'nomi-eye': () => import('./components/nomi-eye.vue'),
|
|
494
|
-
'nomi-eye-open': () => import('./components/nomi-eye-open.vue'),
|
|
497
|
+
'nomi-move-left': () => import('./components/nomi-move-left.vue'),
|
|
498
|
+
'nomi-money': () => import('./components/nomi-money.vue'),
|
|
499
|
+
'nomi-payment_calendar': () => import('./components/nomi-payment_calendar.vue'),
|
|
495
500
|
'nomi-lock': () => import('./components/nomi-lock.vue'),
|
|
496
|
-
'nomi-
|
|
501
|
+
'nomi-eye': () => import('./components/nomi-eye.vue'),
|
|
497
502
|
'nomi-move-right': () => import('./components/nomi-move-right.vue'),
|
|
498
|
-
'nomi-
|
|
499
|
-
'nomi-
|
|
503
|
+
'nomi-integration': () => import('./components/nomi-integration.vue'),
|
|
504
|
+
'nomi-minus': () => import('./components/nomi-minus.vue'),
|
|
500
505
|
'nomi-person': () => import('./components/nomi-person.vue'),
|
|
501
|
-
'nomi-
|
|
502
|
-
'nomi-pen': () => import('./components/nomi-pen.vue'),
|
|
503
|
-
'nomi-move-left': () => import('./components/nomi-move-left.vue'),
|
|
506
|
+
'nomi-planFact': () => import('./components/nomi-planFact.vue'),
|
|
504
507
|
'nomi-pin': () => import('./components/nomi-pin.vue'),
|
|
505
|
-
'nomi-
|
|
506
|
-
'nomi-
|
|
507
|
-
'nomi-project': () => import('./components/nomi-project.vue'),
|
|
508
|
-
'nomi-project_alt': () => import('./components/nomi-project_alt.vue'),
|
|
509
|
-
'nomi-project_alt2': () => import('./components/nomi-project_alt2.vue'),
|
|
510
|
-
'nomi-strongbox': () => import('./components/nomi-strongbox.vue'),
|
|
508
|
+
'nomi-recurrence': () => import('./components/nomi-recurrence.vue'),
|
|
509
|
+
'nomi-pen': () => import('./components/nomi-pen.vue'),
|
|
511
510
|
'nomi-repeat': () => import('./components/nomi-repeat.vue'),
|
|
512
|
-
'nomi-planFact': () => import('./components/nomi-planFact.vue'),
|
|
513
511
|
'nomi-scissors': () => import('./components/nomi-scissors.vue'),
|
|
514
|
-
'nomi-
|
|
512
|
+
'nomi-project_alt2': () => import('./components/nomi-project_alt2.vue'),
|
|
515
513
|
'nomi-sort-asc': () => import('./components/nomi-sort-asc.vue'),
|
|
516
|
-
'nomi-
|
|
517
|
-
'nomi-
|
|
518
|
-
'nomi-segment': () => import('./components/nomi-segment.vue'),
|
|
514
|
+
'nomi-project_alt': () => import('./components/nomi-project_alt.vue'),
|
|
515
|
+
'nomi-report': () => import('./components/nomi-report.vue'),
|
|
519
516
|
'nomi-table-view': () => import('./components/nomi-table-view.vue'),
|
|
520
|
-
'nomi-time': () => import('./components/nomi-time.vue'),
|
|
521
|
-
'nomi-target': () => import('./components/nomi-target.vue'),
|
|
522
|
-
'nomi-tag': () => import('./components/nomi-tag.vue'),
|
|
523
517
|
'nomi-sort-desc': () => import('./components/nomi-sort-desc.vue'),
|
|
524
|
-
'nomi-
|
|
525
|
-
'nomi-
|
|
518
|
+
'nomi-target': () => import('./components/nomi-target.vue'),
|
|
519
|
+
'nomi-pnl': () => import('./components/nomi-pnl.vue'),
|
|
520
|
+
'nomi-strongbox': () => import('./components/nomi-strongbox.vue'),
|
|
526
521
|
'nomi-subscription': () => import('./components/nomi-subscription.vue'),
|
|
527
|
-
'nomi-
|
|
528
|
-
'nomi-
|
|
522
|
+
'nomi-settings': () => import('./components/nomi-settings.vue'),
|
|
523
|
+
'nomi-time': () => import('./components/nomi-time.vue'),
|
|
529
524
|
'nomi-transactions': () => import('./components/nomi-transactions.vue'),
|
|
530
|
-
'nomi-transactions_alt': () => import('./components/nomi-transactions_alt.vue'),
|
|
531
525
|
'nomi-user': () => import('./components/nomi-user.vue'),
|
|
526
|
+
'nomi-unpin': () => import('./components/nomi-unpin.vue'),
|
|
527
|
+
'nomi-tag': () => import('./components/nomi-tag.vue'),
|
|
532
528
|
'nomi-warehouse': () => import('./components/nomi-warehouse.vue'),
|
|
529
|
+
'nomi-text': () => import('./components/nomi-text.vue'),
|
|
530
|
+
'nomi-trash': () => import('./components/nomi-trash.vue'),
|
|
531
|
+
'nomi-project': () => import('./components/nomi-project.vue'),
|
|
532
|
+
'nomi-segment': () => import('./components/nomi-segment.vue'),
|
|
533
|
+
'nomi-transactions_alt': () => import('./components/nomi-transactions_alt.vue'),
|
|
533
534
|
'nomi-user_plus': () => import('./components/nomi-user_plus.vue'),
|
|
534
535
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7.10922 8.4091C6.78269 7.59278 7.59277 6.7827 8.40909 7.10923L18.3172 11.0725C19.1183 11.3929 19.1648 12.5095 18.393 12.8954L15.0261 14.5789C14.8325 14.6756 14.6756 14.8325 14.5789 15.0261L12.8954 18.393C12.5095 19.1648 11.3929 19.1183 11.0725 18.3172L7.10922 8.4091Z" fill="currentColor"/>
|
|
3
|
+
<path d="M5.81577 15.4361C5.88458 15.2732 6.11542 15.2732 6.18424 15.4361L6.56237 16.3312C6.58263 16.3792 6.62081 16.4174 6.66877 16.4376L7.56388 16.8158C7.72678 16.8846 7.72678 17.1154 7.56388 17.1842L6.66878 17.5624C6.62081 17.5826 6.58263 17.6208 6.56237 17.6688L6.18424 18.5639C6.11542 18.7268 5.88458 18.7268 5.81576 18.5639L5.43763 17.6688C5.41737 17.6208 5.37919 17.5826 5.33123 17.5624L4.43612 17.1842C4.27322 17.1154 4.27322 16.8846 4.43612 16.8158L5.33123 16.4376C5.37919 16.4174 5.41737 16.3792 5.43763 16.3312L5.81577 15.4361Z" fill="currentColor"/>
|
|
4
|
+
<path d="M17.3139 4.47174C17.3805 4.30291 17.6195 4.30291 17.6861 4.47174L18.1752 5.71209C18.1956 5.76363 18.2364 5.80443 18.2879 5.82476L19.5283 6.31395C19.6971 6.38053 19.6971 6.61947 19.5283 6.68605L18.2879 7.17524C18.2364 7.19557 18.1956 7.23637 18.1752 7.28791L17.6861 8.52826C17.6195 8.69709 17.3805 8.69709 17.3139 8.52826L16.8248 7.28791C16.8044 7.23637 16.7636 7.19557 16.7121 7.17524L15.4717 6.68605C15.3029 6.61947 15.3029 6.38053 15.4717 6.31395L16.7121 5.82476C16.7636 5.80443 16.8044 5.76363 16.8248 5.71209L17.3139 4.47174Z" fill="currentColor"/>
|
|
5
|
+
<path d="M12.3158 4.43612C12.3846 4.27322 12.6154 4.27322 12.6842 4.43612L12.9139 4.97972C12.9341 5.02769 12.9723 5.06586 13.0203 5.08612L13.5639 5.31576C13.7268 5.38458 13.7268 5.61542 13.5639 5.68424L13.0203 5.91388C12.9723 5.93414 12.9341 5.97231 12.9139 6.02028L12.6842 6.56388C12.6154 6.72678 12.3846 6.72678 12.3158 6.56388L12.0861 6.02028C12.0659 5.97231 12.0277 5.93414 11.9797 5.91388L11.4361 5.68424C11.2732 5.61542 11.2732 5.38458 11.4361 5.31576L11.9797 5.08612C12.0277 5.06586 12.0659 5.02769 12.0861 4.97972L12.3158 4.43612Z" fill="currentColor"/>
|
|
6
|
+
</svg>
|
|
@@ -333,18 +333,21 @@ export default class PanelList extends Vue {
|
|
|
333
333
|
newPanel.isAnimate = isAnimation;
|
|
334
334
|
newPanel.permanentExpanded = !!panel.permanentExpanded;
|
|
335
335
|
newPanel.emit = (event, ...args) => this.emitEvent(event, ...args);
|
|
336
|
-
newPanel.open = (type, payload) => this.openPanel(type, payload, n + 1);
|
|
336
|
+
newPanel.open = (type, payload, index?:number) => this.openPanel(type, payload, index ?? n + 1);
|
|
337
337
|
newPanel.close = () => this.closePanel(newPanel);
|
|
338
338
|
newPanel.expand = () => this.expandPanel(newPanel);
|
|
339
339
|
newPanel.getTitle = () => newPanel.title;
|
|
340
340
|
newPanel.getIcon = () => newPanel.icon;
|
|
341
341
|
newPanel.setTitle = (title: string) => { newPanel.title = title; this.updateTitle() };
|
|
342
342
|
newPanel.setIcon = (icon: string) => { newPanel.icon = icon; };
|
|
343
|
-
newPanel.on = (eventName, func: (event: string, ...args: any[]) => any) => {
|
|
344
|
-
|
|
345
|
-
|
|
343
|
+
newPanel.on = (eventName: string|string[], func: (event: string, ...args: any[]) => any) => {
|
|
344
|
+
const eventNames = Array.isArray(eventName) ? eventName : [eventName];
|
|
345
|
+
for (const evName of eventNames) {
|
|
346
|
+
if (!newPanel.__events[evName]) {
|
|
347
|
+
newPanel.__events[evName] = [];
|
|
348
|
+
}
|
|
349
|
+
newPanel.__events[evName].push(func);
|
|
346
350
|
}
|
|
347
|
-
newPanel.__events[eventName].push(func);
|
|
348
351
|
};
|
|
349
352
|
newPanel.off = (eventName, func: (event: string, ...args: any[]) => any) => {
|
|
350
353
|
if (newPanel.__events[eventName]) {
|