This repository has been archived by the owner on Aug 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathplugin.js
243 lines (243 loc) · 17.5 KB
/
plugin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
module.exports = function(Vue) {
Vue.component('feather-icon', require('./components/index.vue'))
Vue.component('feather-activity', require('./components/activity.vue'))
Vue.component('feather-airplay', require('./components/airplay.vue'))
Vue.component('feather-alert-circle', require('./components/alert-circle.vue'))
Vue.component('feather-alert-octagon', require('./components/alert-octagon.vue'))
Vue.component('feather-alert-triangle', require('./components/alert-triangle.vue'))
Vue.component('feather-align-center', require('./components/align-center.vue'))
Vue.component('feather-align-justify', require('./components/align-justify.vue'))
Vue.component('feather-align-left', require('./components/align-left.vue'))
Vue.component('feather-align-right', require('./components/align-right.vue'))
Vue.component('feather-anchor', require('./components/anchor.vue'))
Vue.component('feather-aperture', require('./components/aperture.vue'))
Vue.component('feather-arrow-down-left', require('./components/arrow-down-left.vue'))
Vue.component('feather-arrow-down-right', require('./components/arrow-down-right.vue'))
Vue.component('feather-arrow-down', require('./components/arrow-down.vue'))
Vue.component('feather-arrow-left', require('./components/arrow-left.vue'))
Vue.component('feather-arrow-right', require('./components/arrow-right.vue'))
Vue.component('feather-arrow-up-left', require('./components/arrow-up-left.vue'))
Vue.component('feather-arrow-up-right', require('./components/arrow-up-right.vue'))
Vue.component('feather-arrow-up', require('./components/arrow-up.vue'))
Vue.component('feather-at-sign', require('./components/at-sign.vue'))
Vue.component('feather-award', require('./components/award.vue'))
Vue.component('feather-bar-chart-2', require('./components/bar-chart-2.vue'))
Vue.component('feather-bar-chart', require('./components/bar-chart.vue'))
Vue.component('feather-battery-charging', require('./components/battery-charging.vue'))
Vue.component('feather-battery', require('./components/battery.vue'))
Vue.component('feather-bell-off', require('./components/bell-off.vue'))
Vue.component('feather-bell', require('./components/bell.vue'))
Vue.component('feather-bluetooth', require('./components/bluetooth.vue'))
Vue.component('feather-bold', require('./components/bold.vue'))
Vue.component('feather-book', require('./components/book.vue'))
Vue.component('feather-bookmark', require('./components/bookmark.vue'))
Vue.component('feather-box', require('./components/box.vue'))
Vue.component('feather-briefcase', require('./components/briefcase.vue'))
Vue.component('feather-calendar', require('./components/calendar.vue'))
Vue.component('feather-camera-off', require('./components/camera-off.vue'))
Vue.component('feather-camera', require('./components/camera.vue'))
Vue.component('feather-cast', require('./components/cast.vue'))
Vue.component('feather-check-circle', require('./components/check-circle.vue'))
Vue.component('feather-check-square', require('./components/check-square.vue'))
Vue.component('feather-check', require('./components/check.vue'))
Vue.component('feather-chevron-down', require('./components/chevron-down.vue'))
Vue.component('feather-chevron-left', require('./components/chevron-left.vue'))
Vue.component('feather-chevron-right', require('./components/chevron-right.vue'))
Vue.component('feather-chevron-up', require('./components/chevron-up.vue'))
Vue.component('feather-chevrons-down', require('./components/chevrons-down.vue'))
Vue.component('feather-chevrons-left', require('./components/chevrons-left.vue'))
Vue.component('feather-chevrons-right', require('./components/chevrons-right.vue'))
Vue.component('feather-chevrons-up', require('./components/chevrons-up.vue'))
Vue.component('feather-chrome', require('./components/chrome.vue'))
Vue.component('feather-circle', require('./components/circle.vue'))
Vue.component('feather-clipboard', require('./components/clipboard.vue'))
Vue.component('feather-clock', require('./components/clock.vue'))
Vue.component('feather-cloud-drizzle', require('./components/cloud-drizzle.vue'))
Vue.component('feather-cloud-lightning', require('./components/cloud-lightning.vue'))
Vue.component('feather-cloud-off', require('./components/cloud-off.vue'))
Vue.component('feather-cloud-rain', require('./components/cloud-rain.vue'))
Vue.component('feather-cloud-snow', require('./components/cloud-snow.vue'))
Vue.component('feather-cloud', require('./components/cloud.vue'))
Vue.component('feather-codepen', require('./components/codepen.vue'))
Vue.component('feather-command', require('./components/command.vue'))
Vue.component('feather-compass', require('./components/compass.vue'))
Vue.component('feather-copy', require('./components/copy.vue'))
Vue.component('feather-corner-down-left', require('./components/corner-down-left.vue'))
Vue.component('feather-corner-down-right', require('./components/corner-down-right.vue'))
Vue.component('feather-corner-left-down', require('./components/corner-left-down.vue'))
Vue.component('feather-corner-left-up', require('./components/corner-left-up.vue'))
Vue.component('feather-corner-right-down', require('./components/corner-right-down.vue'))
Vue.component('feather-corner-right-up', require('./components/corner-right-up.vue'))
Vue.component('feather-corner-up-left', require('./components/corner-up-left.vue'))
Vue.component('feather-corner-up-right', require('./components/corner-up-right.vue'))
Vue.component('feather-cpu', require('./components/cpu.vue'))
Vue.component('feather-credit-card', require('./components/credit-card.vue'))
Vue.component('feather-crop', require('./components/crop.vue'))
Vue.component('feather-crosshair', require('./components/crosshair.vue'))
Vue.component('feather-delete', require('./components/delete.vue'))
Vue.component('feather-disc', require('./components/disc.vue'))
Vue.component('feather-download-cloud', require('./components/download-cloud.vue'))
Vue.component('feather-download', require('./components/download.vue'))
Vue.component('feather-droplet', require('./components/droplet.vue'))
Vue.component('feather-edit-2', require('./components/edit-2.vue'))
Vue.component('feather-edit-3', require('./components/edit-3.vue'))
Vue.component('feather-edit', require('./components/edit.vue'))
Vue.component('feather-external-link', require('./components/external-link.vue'))
Vue.component('feather-eye-off', require('./components/eye-off.vue'))
Vue.component('feather-eye', require('./components/eye.vue'))
Vue.component('feather-facebook', require('./components/facebook.vue'))
Vue.component('feather-fast-forward', require('./components/fast-forward.vue'))
Vue.component('feather-feather', require('./components/feather.vue'))
Vue.component('feather-file-minus', require('./components/file-minus.vue'))
Vue.component('feather-file-plus', require('./components/file-plus.vue'))
Vue.component('feather-file-text', require('./components/file-text.vue'))
Vue.component('feather-file', require('./components/file.vue'))
Vue.component('feather-film', require('./components/film.vue'))
Vue.component('feather-filter', require('./components/filter.vue'))
Vue.component('feather-flag', require('./components/flag.vue'))
Vue.component('feather-folder', require('./components/folder.vue'))
Vue.component('feather-github', require('./components/github.vue'))
Vue.component('feather-gitlab', require('./components/gitlab.vue'))
Vue.component('feather-globe', require('./components/globe.vue'))
Vue.component('feather-grid', require('./components/grid.vue'))
Vue.component('feather-hash', require('./components/hash.vue'))
Vue.component('feather-headphones', require('./components/headphones.vue'))
Vue.component('feather-heart', require('./components/heart.vue'))
Vue.component('feather-help-circle', require('./components/help-circle.vue'))
Vue.component('feather-home', require('./components/home.vue'))
Vue.component('feather-image', require('./components/image.vue'))
Vue.component('feather-inbox', require('./components/inbox.vue'))
Vue.component('feather-info', require('./components/info.vue'))
Vue.component('feather-instagram', require('./components/instagram.vue'))
Vue.component('feather-italic', require('./components/italic.vue'))
Vue.component('feather-layers', require('./components/layers.vue'))
Vue.component('feather-layout', require('./components/layout.vue'))
Vue.component('feather-life-buoy', require('./components/life-buoy.vue'))
Vue.component('feather-link-2', require('./components/link-2.vue'))
Vue.component('feather-link', require('./components/link.vue'))
Vue.component('feather-list', require('./components/list.vue'))
Vue.component('feather-loader', require('./components/loader.vue'))
Vue.component('feather-lock', require('./components/lock.vue'))
Vue.component('feather-log-in', require('./components/log-in.vue'))
Vue.component('feather-log-out', require('./components/log-out.vue'))
Vue.component('feather-mail', require('./components/mail.vue'))
Vue.component('feather-map-pin', require('./components/map-pin.vue'))
Vue.component('feather-map', require('./components/map.vue'))
Vue.component('feather-maximize-2', require('./components/maximize-2.vue'))
Vue.component('feather-maximize', require('./components/maximize.vue'))
Vue.component('feather-menu', require('./components/menu.vue'))
Vue.component('feather-message-circle', require('./components/message-circle.vue'))
Vue.component('feather-message-square', require('./components/message-square.vue'))
Vue.component('feather-mic-off', require('./components/mic-off.vue'))
Vue.component('feather-mic', require('./components/mic.vue'))
Vue.component('feather-minimize-2', require('./components/minimize-2.vue'))
Vue.component('feather-minimize', require('./components/minimize.vue'))
Vue.component('feather-minus-circle', require('./components/minus-circle.vue'))
Vue.component('feather-minus-square', require('./components/minus-square.vue'))
Vue.component('feather-minus', require('./components/minus.vue'))
Vue.component('feather-monitor', require('./components/monitor.vue'))
Vue.component('feather-moon', require('./components/moon.vue'))
Vue.component('feather-more-horizontal', require('./components/more-horizontal.vue'))
Vue.component('feather-more-vertical', require('./components/more-vertical.vue'))
Vue.component('feather-move', require('./components/move.vue'))
Vue.component('feather-music', require('./components/music.vue'))
Vue.component('feather-navigation-2', require('./components/navigation-2.vue'))
Vue.component('feather-navigation', require('./components/navigation.vue'))
Vue.component('feather-octagon', require('./components/octagon.vue'))
Vue.component('feather-package', require('./components/package.vue'))
Vue.component('feather-paperclip', require('./components/paperclip.vue'))
Vue.component('feather-pause-circle', require('./components/pause-circle.vue'))
Vue.component('feather-pause', require('./components/pause.vue'))
Vue.component('feather-percent', require('./components/percent.vue'))
Vue.component('feather-phone-call', require('./components/phone-call.vue'))
Vue.component('feather-phone-forwarded', require('./components/phone-forwarded.vue'))
Vue.component('feather-phone-incoming', require('./components/phone-incoming.vue'))
Vue.component('feather-phone-missed', require('./components/phone-missed.vue'))
Vue.component('feather-phone-off', require('./components/phone-off.vue'))
Vue.component('feather-phone-outgoing', require('./components/phone-outgoing.vue'))
Vue.component('feather-phone', require('./components/phone.vue'))
Vue.component('feather-pie-chart', require('./components/pie-chart.vue'))
Vue.component('feather-play-circle', require('./components/play-circle.vue'))
Vue.component('feather-play', require('./components/play.vue'))
Vue.component('feather-plus-circle', require('./components/plus-circle.vue'))
Vue.component('feather-plus-square', require('./components/plus-square.vue'))
Vue.component('feather-plus', require('./components/plus.vue'))
Vue.component('feather-pocket', require('./components/pocket.vue'))
Vue.component('feather-power', require('./components/power.vue'))
Vue.component('feather-printer', require('./components/printer.vue'))
Vue.component('feather-radio', require('./components/radio.vue'))
Vue.component('feather-refresh-ccw', require('./components/refresh-ccw.vue'))
Vue.component('feather-refresh-cw', require('./components/refresh-cw.vue'))
Vue.component('feather-repeat', require('./components/repeat.vue'))
Vue.component('feather-rewind', require('./components/rewind.vue'))
Vue.component('feather-rotate-ccw', require('./components/rotate-ccw.vue'))
Vue.component('feather-rotate-cw', require('./components/rotate-cw.vue'))
Vue.component('feather-save', require('./components/save.vue'))
Vue.component('feather-scissors', require('./components/scissors.vue'))
Vue.component('feather-search', require('./components/search.vue'))
Vue.component('feather-server', require('./components/server.vue'))
Vue.component('feather-settings', require('./components/settings.vue'))
Vue.component('feather-share-2', require('./components/share-2.vue'))
Vue.component('feather-share', require('./components/share.vue'))
Vue.component('feather-shield', require('./components/shield.vue'))
Vue.component('feather-shopping-cart', require('./components/shopping-cart.vue'))
Vue.component('feather-shuffle', require('./components/shuffle.vue'))
Vue.component('feather-sidebar', require('./components/sidebar.vue'))
Vue.component('feather-skip-back', require('./components/skip-back.vue'))
Vue.component('feather-skip-forward', require('./components/skip-forward.vue'))
Vue.component('feather-slack', require('./components/slack.vue'))
Vue.component('feather-slash', require('./components/slash.vue'))
Vue.component('feather-sliders', require('./components/sliders.vue'))
Vue.component('feather-smartphone', require('./components/smartphone.vue'))
Vue.component('feather-speaker', require('./components/speaker.vue'))
Vue.component('feather-square', require('./components/square.vue'))
Vue.component('feather-star', require('./components/star.vue'))
Vue.component('feather-stop-circle', require('./components/stop-circle.vue'))
Vue.component('feather-sun', require('./components/sun.vue'))
Vue.component('feather-sunrise', require('./components/sunrise.vue'))
Vue.component('feather-sunset', require('./components/sunset.vue'))
Vue.component('feather-tablet', require('./components/tablet.vue'))
Vue.component('feather-tag', require('./components/tag.vue'))
Vue.component('feather-target', require('./components/target.vue'))
Vue.component('feather-thermometer', require('./components/thermometer.vue'))
Vue.component('feather-thumbs-down', require('./components/thumbs-down.vue'))
Vue.component('feather-thumbs-up', require('./components/thumbs-up.vue'))
Vue.component('feather-toggle-left', require('./components/toggle-left.vue'))
Vue.component('feather-toggle-right', require('./components/toggle-right.vue'))
Vue.component('feather-trash-2', require('./components/trash-2.vue'))
Vue.component('feather-trash', require('./components/trash.vue'))
Vue.component('feather-trending-down', require('./components/trending-down.vue'))
Vue.component('feather-trending-up', require('./components/trending-up.vue'))
Vue.component('feather-triangle', require('./components/triangle.vue'))
Vue.component('feather-tv', require('./components/tv.vue'))
Vue.component('feather-twitter', require('./components/twitter.vue'))
Vue.component('feather-type', require('./components/type.vue'))
Vue.component('feather-umbrella', require('./components/umbrella.vue'))
Vue.component('feather-underline', require('./components/underline.vue'))
Vue.component('feather-unlock', require('./components/unlock.vue'))
Vue.component('feather-upload-cloud', require('./components/upload-cloud.vue'))
Vue.component('feather-upload', require('./components/upload.vue'))
Vue.component('feather-user-check', require('./components/user-check.vue'))
Vue.component('feather-user-minus', require('./components/user-minus.vue'))
Vue.component('feather-user-plus', require('./components/user-plus.vue'))
Vue.component('feather-user-x', require('./components/user-x.vue'))
Vue.component('feather-user', require('./components/user.vue'))
Vue.component('feather-users', require('./components/users.vue'))
Vue.component('feather-video-off', require('./components/video-off.vue'))
Vue.component('feather-video', require('./components/video.vue'))
Vue.component('feather-voicemail', require('./components/voicemail.vue'))
Vue.component('feather-volume-1', require('./components/volume-1.vue'))
Vue.component('feather-volume-2', require('./components/volume-2.vue'))
Vue.component('feather-volume-x', require('./components/volume-x.vue'))
Vue.component('feather-volume', require('./components/volume.vue'))
Vue.component('feather-watch', require('./components/watch.vue'))
Vue.component('feather-wifi-off', require('./components/wifi-off.vue'))
Vue.component('feather-wifi', require('./components/wifi.vue'))
Vue.component('feather-wind', require('./components/wind.vue'))
Vue.component('feather-x-circle', require('./components/x-circle.vue'))
Vue.component('feather-x-square', require('./components/x-square.vue'))
Vue.component('feather-x', require('./components/x.vue'))
Vue.component('feather-zap', require('./components/zap.vue'))
Vue.component('feather-zoom-in', require('./components/zoom-in.vue'))
Vue.component('feather-zoom-out', require('./components/zoom-out.vue'))
}