@tekkare/auriga 0.1.110 → 0.1.112
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/dist/module.json +1 -1
- package/dist/runtime/components/allIcons.vue +2 -637
- package/dist/runtime/components/allIcons2.vue +689 -0
- package/dist/runtime/components/allIcons2.vue.d.ts +6 -0
- package/dist/runtime/components/argFooter.vue +17 -5
- package/dist/runtime/components/argFooter.vue.d.ts +15 -1
- package/dist/runtime/components/argHomeAllBlocks.vue +1 -1
- package/dist/runtime/components/argHomeAllBlocks.vue.d.ts +3 -2
- package/dist/runtime/components/argHomeHeader.vue +1 -1
- package/dist/runtime/components/argHomeLayout.vue +11 -2
- package/dist/runtime/components/argHomeLayout.vue.d.ts +15 -1
- package/dist/runtime/components/argHomeSelectedBlock.vue +2 -2
- package/dist/runtime/components/argMainLayout.vue +8 -1
- package/dist/runtime/components/argMainLayout.vue.d.ts +11 -0
- package/package.json +1 -1
|
@@ -0,0 +1,689 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<div style="margin: 16px">
|
|
4
|
+
<arg-search-input
|
|
5
|
+
v-model:Value="searchIcon"
|
|
6
|
+
:value="searchIcon"
|
|
7
|
+
place-holder-value="Search an icon..."
|
|
8
|
+
/>
|
|
9
|
+
</div>
|
|
10
|
+
<div style="display: flex; flex-wrap: wrap">
|
|
11
|
+
<div
|
|
12
|
+
v-for="(icon, index) in filteredIcon"
|
|
13
|
+
:key="index"
|
|
14
|
+
style="margin: 10px; width: 200px"
|
|
15
|
+
>
|
|
16
|
+
<center>
|
|
17
|
+
<arg-icon :name="icon" size="48"></arg-icon>
|
|
18
|
+
<p>{{ icon }}</p>
|
|
19
|
+
</center>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
|
|
25
|
+
<script>
|
|
26
|
+
import {
|
|
27
|
+
ref,
|
|
28
|
+
computed,
|
|
29
|
+
defineComponent
|
|
30
|
+
} from "vue";
|
|
31
|
+
import argIcon from "./argIcon.vue";
|
|
32
|
+
import argSearchInput from "./argSearchInput.vue";
|
|
33
|
+
export default defineComponent({
|
|
34
|
+
name: "allIcons2",
|
|
35
|
+
components: { argIcon, argSearchInput },
|
|
36
|
+
setup() {
|
|
37
|
+
const searchIcon = ref("");
|
|
38
|
+
const iconNames = [
|
|
39
|
+
"MagnifyingGlassMinus",
|
|
40
|
+
"MagnifyingGlassPlus",
|
|
41
|
+
"MagnifyingGlass",
|
|
42
|
+
"MapPinLine",
|
|
43
|
+
"MapPin",
|
|
44
|
+
"MapTrifold",
|
|
45
|
+
"MarkerCircle",
|
|
46
|
+
"Martini",
|
|
47
|
+
"MaskHappy",
|
|
48
|
+
"MaskSad",
|
|
49
|
+
"MathOperations",
|
|
50
|
+
"Medal",
|
|
51
|
+
"MediumLogo",
|
|
52
|
+
"MegaphoneSimple",
|
|
53
|
+
"Megaphone",
|
|
54
|
+
"MessengerLogo",
|
|
55
|
+
"MicrophoneSlash",
|
|
56
|
+
"MicrophoneStage",
|
|
57
|
+
"Microphone",
|
|
58
|
+
"MicrosoftExcelLogo",
|
|
59
|
+
"MicrosoftPowerpointLogo",
|
|
60
|
+
"MicrosoftTeamsLogo",
|
|
61
|
+
"MicrosoftWordLogo",
|
|
62
|
+
"MinusCircle",
|
|
63
|
+
"MinusCircleFill",
|
|
64
|
+
"MinusCircleDisable",
|
|
65
|
+
"MinusSquare",
|
|
66
|
+
"MinusSquareFill",
|
|
67
|
+
"MinusSquareDisable",
|
|
68
|
+
"Minus",
|
|
69
|
+
"Molecule",
|
|
70
|
+
"Money",
|
|
71
|
+
"MonitorPlay",
|
|
72
|
+
"Monitor",
|
|
73
|
+
"MoonStars",
|
|
74
|
+
"Moon",
|
|
75
|
+
"Mountains",
|
|
76
|
+
"MouseSimple",
|
|
77
|
+
"Mouse",
|
|
78
|
+
"MusicNoteSimple",
|
|
79
|
+
"MusicNote",
|
|
80
|
+
"MusicNotesPlus",
|
|
81
|
+
"MusicNotesSimple",
|
|
82
|
+
"MusicNotes",
|
|
83
|
+
"NavigationArrow",
|
|
84
|
+
"Needle",
|
|
85
|
+
"NewspaperClipping",
|
|
86
|
+
"Newspaper",
|
|
87
|
+
"NoteBlank",
|
|
88
|
+
"NotePencil",
|
|
89
|
+
"Note",
|
|
90
|
+
"Notebook",
|
|
91
|
+
"Notepad",
|
|
92
|
+
"Notification",
|
|
93
|
+
"NumberCircleEight",
|
|
94
|
+
"NumberCircleFive",
|
|
95
|
+
"NumberCircleFour",
|
|
96
|
+
"NumberCircleNine",
|
|
97
|
+
"NumberCircleOne",
|
|
98
|
+
"NumberCircleSeven",
|
|
99
|
+
"NumberCircleSix",
|
|
100
|
+
"NumberCircleThree",
|
|
101
|
+
"NumberCircleTwo",
|
|
102
|
+
"NumberCircleZero",
|
|
103
|
+
"NumberEight",
|
|
104
|
+
"NumberFive",
|
|
105
|
+
"NumberFour",
|
|
106
|
+
"NumberNine",
|
|
107
|
+
"NumberOne",
|
|
108
|
+
"NumberSeven",
|
|
109
|
+
"NumberSix",
|
|
110
|
+
"NumberSquareEight",
|
|
111
|
+
"NumberSquareFive",
|
|
112
|
+
"NumberSquareFour",
|
|
113
|
+
"NumberSquareNine",
|
|
114
|
+
"NumberSquareOne",
|
|
115
|
+
"NumberSquareSeven",
|
|
116
|
+
"NumberSquareSix",
|
|
117
|
+
"NumberSquareThree",
|
|
118
|
+
"NumberSquareTwo",
|
|
119
|
+
"NumberSquareZero",
|
|
120
|
+
"NumberThree",
|
|
121
|
+
"NumberTwo",
|
|
122
|
+
"NumberZero",
|
|
123
|
+
"Nut",
|
|
124
|
+
"NyTimesLogo",
|
|
125
|
+
"Octagon",
|
|
126
|
+
"Option",
|
|
127
|
+
"Package",
|
|
128
|
+
"PaintBrushBroad",
|
|
129
|
+
"PaintBrushHousehold",
|
|
130
|
+
"PaintBrush",
|
|
131
|
+
"PaintBucket",
|
|
132
|
+
"PaintRoller",
|
|
133
|
+
"Palette",
|
|
134
|
+
"PaperPlaneRight",
|
|
135
|
+
"PaperPlaneTilt",
|
|
136
|
+
"PaperPlane",
|
|
137
|
+
"PaperclipHorizontal",
|
|
138
|
+
"Paperclip",
|
|
139
|
+
"Parachute",
|
|
140
|
+
"Password",
|
|
141
|
+
"Path",
|
|
142
|
+
"PauseCircle",
|
|
143
|
+
"Pause",
|
|
144
|
+
"PawPrint",
|
|
145
|
+
"Peace",
|
|
146
|
+
"PenNibStraight",
|
|
147
|
+
"PenNib",
|
|
148
|
+
"Pen",
|
|
149
|
+
"PencilCircle",
|
|
150
|
+
"PencilLine",
|
|
151
|
+
"PencilSimpleLine",
|
|
152
|
+
"PencilSimple",
|
|
153
|
+
"Pencil",
|
|
154
|
+
"Percent",
|
|
155
|
+
"PersonSimpleRun",
|
|
156
|
+
"PersonSimpleWalk",
|
|
157
|
+
"PersonSimple",
|
|
158
|
+
"Person",
|
|
159
|
+
"Perspective",
|
|
160
|
+
"PhoneCall",
|
|
161
|
+
"PhoneDisconnect",
|
|
162
|
+
"PhoneIncoming",
|
|
163
|
+
"PhoneOutgoing",
|
|
164
|
+
"PhoneSlash",
|
|
165
|
+
"PhoneX",
|
|
166
|
+
"Phone",
|
|
167
|
+
"PhosphorLogo",
|
|
168
|
+
"PianoKeys",
|
|
169
|
+
"PictureInPicture",
|
|
170
|
+
"Pill",
|
|
171
|
+
"PinterestLogo",
|
|
172
|
+
"Pinwheel",
|
|
173
|
+
"Pizza",
|
|
174
|
+
"Placeholder",
|
|
175
|
+
"Planet",
|
|
176
|
+
"PlayCircle",
|
|
177
|
+
"Play",
|
|
178
|
+
"Playlist",
|
|
179
|
+
"Plug",
|
|
180
|
+
"PlugsConnected",
|
|
181
|
+
"Plugs",
|
|
182
|
+
"PlusCircle",
|
|
183
|
+
"PlusCircleFill",
|
|
184
|
+
"PlusMinus",
|
|
185
|
+
"Plus",
|
|
186
|
+
"PokerChip",
|
|
187
|
+
"PoliceCar",
|
|
188
|
+
"Polygon",
|
|
189
|
+
"Popcorn",
|
|
190
|
+
"Power",
|
|
191
|
+
"Prescription",
|
|
192
|
+
"PresentationChart",
|
|
193
|
+
"Presentation",
|
|
194
|
+
"Printer",
|
|
195
|
+
"ProhibitInset",
|
|
196
|
+
"Prohibit",
|
|
197
|
+
"ProjectorScreenChart",
|
|
198
|
+
"ProjectorScreen",
|
|
199
|
+
"PushPinSimpleSlash",
|
|
200
|
+
"PushPinSimple",
|
|
201
|
+
"PushPinSlash",
|
|
202
|
+
"PushPin",
|
|
203
|
+
"PuzzlePiece",
|
|
204
|
+
"QrCode",
|
|
205
|
+
"Question",
|
|
206
|
+
"QuestionFill",
|
|
207
|
+
"Queue",
|
|
208
|
+
"Quotes",
|
|
209
|
+
"Radical",
|
|
210
|
+
"RadioButton",
|
|
211
|
+
"Radio",
|
|
212
|
+
"RainbowCloud",
|
|
213
|
+
"Rainbow",
|
|
214
|
+
"Receipt",
|
|
215
|
+
"Record",
|
|
216
|
+
"Rectangle",
|
|
217
|
+
"Recycle",
|
|
218
|
+
"RedditLogo",
|
|
219
|
+
"RepeatOnce",
|
|
220
|
+
"Repeat",
|
|
221
|
+
"RewindCircle",
|
|
222
|
+
"Rewind",
|
|
223
|
+
"Robot",
|
|
224
|
+
"RocketLaunch",
|
|
225
|
+
"Rocket",
|
|
226
|
+
"Rows",
|
|
227
|
+
"RssSimple",
|
|
228
|
+
"Rss",
|
|
229
|
+
"Rug",
|
|
230
|
+
"Ruler",
|
|
231
|
+
"Scales",
|
|
232
|
+
"Scan",
|
|
233
|
+
"Scissors",
|
|
234
|
+
"Screencast",
|
|
235
|
+
"ScribbleLoop",
|
|
236
|
+
"Scroll",
|
|
237
|
+
"SelectionAll",
|
|
238
|
+
"SelectionBackground",
|
|
239
|
+
"SelectionForeground",
|
|
240
|
+
"SelectionInverse",
|
|
241
|
+
"SelectionPlus",
|
|
242
|
+
"SelectionSlash",
|
|
243
|
+
"Selection",
|
|
244
|
+
"ShareNetwork",
|
|
245
|
+
"Share",
|
|
246
|
+
"ShieldCheck",
|
|
247
|
+
"ShieldCheckered",
|
|
248
|
+
"ShieldChevron",
|
|
249
|
+
"ShieldPlus",
|
|
250
|
+
"ShieldSlash",
|
|
251
|
+
"ShieldStar",
|
|
252
|
+
"ShieldWarning",
|
|
253
|
+
"Shield",
|
|
254
|
+
"ShoppingBagOpen",
|
|
255
|
+
"ShoppingBag",
|
|
256
|
+
"ShoppingCartSimple",
|
|
257
|
+
"ShoppingCart",
|
|
258
|
+
"Shower",
|
|
259
|
+
"ShuffleAngular",
|
|
260
|
+
"ShuffleSimple",
|
|
261
|
+
"Shuffle",
|
|
262
|
+
"SidebarSimple",
|
|
263
|
+
"Sidebar",
|
|
264
|
+
"SignIn",
|
|
265
|
+
"SignOut",
|
|
266
|
+
"Signpost",
|
|
267
|
+
"SimCard",
|
|
268
|
+
"SketchLogo",
|
|
269
|
+
"SkipBackCircle",
|
|
270
|
+
"SkipBack",
|
|
271
|
+
"SkipForwardCircle",
|
|
272
|
+
"SkipForward",
|
|
273
|
+
"Skull",
|
|
274
|
+
"SlackLogo",
|
|
275
|
+
"SlidersHorizontal",
|
|
276
|
+
"Sliders",
|
|
277
|
+
"SmileyBlank",
|
|
278
|
+
"SmileyMeh",
|
|
279
|
+
"SmileyNervous",
|
|
280
|
+
"SmileySad",
|
|
281
|
+
"SmileySticker",
|
|
282
|
+
"SmileyWink",
|
|
283
|
+
"SmileyXEyes",
|
|
284
|
+
"Smiley",
|
|
285
|
+
"SnapchatLogo",
|
|
286
|
+
"Snowflake",
|
|
287
|
+
"SoccerBall",
|
|
288
|
+
"SortAscending",
|
|
289
|
+
"SortDescending",
|
|
290
|
+
"Spade",
|
|
291
|
+
"Sparkle",
|
|
292
|
+
"SpeakerHigh",
|
|
293
|
+
"SpeakerLow",
|
|
294
|
+
"SpeakerNone",
|
|
295
|
+
"SpeakerSimpleHigh",
|
|
296
|
+
"SpeakerSimpleLow",
|
|
297
|
+
"SpeakerSimpleNone",
|
|
298
|
+
"SpeakerSimpleSlash",
|
|
299
|
+
"SpeakerSimpleX",
|
|
300
|
+
"SpeakerSlash",
|
|
301
|
+
"SpeakerX",
|
|
302
|
+
"SpinnerGap",
|
|
303
|
+
"Spinner",
|
|
304
|
+
"Spiral",
|
|
305
|
+
"SpotifyLogo",
|
|
306
|
+
"SquareHalfBottom",
|
|
307
|
+
"SquareHalf",
|
|
308
|
+
"SquareLogo",
|
|
309
|
+
"Square",
|
|
310
|
+
"SquareFill",
|
|
311
|
+
"SquaresFour",
|
|
312
|
+
"StackOverflowLogo",
|
|
313
|
+
"StackSimple",
|
|
314
|
+
"Stack",
|
|
315
|
+
"Stamp",
|
|
316
|
+
"StarFour",
|
|
317
|
+
"StarHalf",
|
|
318
|
+
"Star",
|
|
319
|
+
"Stethoscope",
|
|
320
|
+
"Sticker",
|
|
321
|
+
"StopCircle",
|
|
322
|
+
"Stop",
|
|
323
|
+
"Storefront",
|
|
324
|
+
"Strategy",
|
|
325
|
+
"StripeLogo",
|
|
326
|
+
"Student",
|
|
327
|
+
"SuitcaseSimple",
|
|
328
|
+
"Suitcase",
|
|
329
|
+
"SunDim",
|
|
330
|
+
"SunHorizon",
|
|
331
|
+
"Sun",
|
|
332
|
+
"Sunglasses",
|
|
333
|
+
"Swap",
|
|
334
|
+
"Swatches",
|
|
335
|
+
"Sword",
|
|
336
|
+
"Syringe",
|
|
337
|
+
"TShirt",
|
|
338
|
+
"Table",
|
|
339
|
+
"Tabs",
|
|
340
|
+
"TagChevron",
|
|
341
|
+
"TagSimple",
|
|
342
|
+
"Tag",
|
|
343
|
+
"Target",
|
|
344
|
+
"Taxi",
|
|
345
|
+
"TelegramLogo",
|
|
346
|
+
"TelevisionSimple",
|
|
347
|
+
"Television",
|
|
348
|
+
"TennisBall",
|
|
349
|
+
"TerminalWindow",
|
|
350
|
+
"Terminal",
|
|
351
|
+
"TestTube",
|
|
352
|
+
"TextAa",
|
|
353
|
+
"TextAlignCenter",
|
|
354
|
+
"TextAlignJustify",
|
|
355
|
+
"TextAlignLeft",
|
|
356
|
+
"TextAlignRight",
|
|
357
|
+
"TextBolder",
|
|
358
|
+
"TextHFive",
|
|
359
|
+
"TextHFour",
|
|
360
|
+
"TextHOne",
|
|
361
|
+
"TextHSix",
|
|
362
|
+
"TextHThree",
|
|
363
|
+
"TextHTwo",
|
|
364
|
+
"TextH",
|
|
365
|
+
"TextIndent",
|
|
366
|
+
"TextItalic",
|
|
367
|
+
"TextOutdent",
|
|
368
|
+
"TextStrikethrough",
|
|
369
|
+
"TextT",
|
|
370
|
+
"TextUnderline",
|
|
371
|
+
"Textbox",
|
|
372
|
+
"ThermometerCold",
|
|
373
|
+
"ThermometerHot",
|
|
374
|
+
"ThermometerSimple",
|
|
375
|
+
"Thermometer",
|
|
376
|
+
"ThumbsDown",
|
|
377
|
+
"ThumbsUp",
|
|
378
|
+
"Ticket",
|
|
379
|
+
"TiktokLogo",
|
|
380
|
+
"Timer",
|
|
381
|
+
"ToggleLeft",
|
|
382
|
+
"ToggleRight",
|
|
383
|
+
"ToiletPaper",
|
|
384
|
+
"Toilet",
|
|
385
|
+
"ToteSimple",
|
|
386
|
+
"Tote",
|
|
387
|
+
"TrademarkRegistered",
|
|
388
|
+
"TrafficCone",
|
|
389
|
+
"TrafficSign",
|
|
390
|
+
"TrafficSignal",
|
|
391
|
+
"TrainRegional",
|
|
392
|
+
"TrainSimple",
|
|
393
|
+
"Train",
|
|
394
|
+
"Translate",
|
|
395
|
+
"TrashSimple",
|
|
396
|
+
"Trash",
|
|
397
|
+
"Tray",
|
|
398
|
+
"TreeEvergreen",
|
|
399
|
+
"TreeStructure",
|
|
400
|
+
"Tree",
|
|
401
|
+
"TrendDown",
|
|
402
|
+
"TrendUp",
|
|
403
|
+
"Triangle",
|
|
404
|
+
"Trophy",
|
|
405
|
+
"Truck",
|
|
406
|
+
"TwitchLogo",
|
|
407
|
+
"TwitterLogo",
|
|
408
|
+
"UmbrellaSimple",
|
|
409
|
+
"Umbrella",
|
|
410
|
+
"UploadSimple",
|
|
411
|
+
"Upload",
|
|
412
|
+
"UserCircleGear",
|
|
413
|
+
"UserCircleMinus",
|
|
414
|
+
"UserCirclePlus",
|
|
415
|
+
"UserCircle",
|
|
416
|
+
"UserFocus",
|
|
417
|
+
"UserGear",
|
|
418
|
+
"UserList",
|
|
419
|
+
"UserMinus",
|
|
420
|
+
"UserPlus",
|
|
421
|
+
"UserRectangle",
|
|
422
|
+
"UserSquare",
|
|
423
|
+
"UserSwitch",
|
|
424
|
+
"User",
|
|
425
|
+
"UsersFour",
|
|
426
|
+
"UsersThree",
|
|
427
|
+
"Users",
|
|
428
|
+
"Vault",
|
|
429
|
+
"Vibrate",
|
|
430
|
+
"VideoCameraSlash",
|
|
431
|
+
"VideoCamera",
|
|
432
|
+
"Vignette",
|
|
433
|
+
"Voicemail",
|
|
434
|
+
"Volleyball",
|
|
435
|
+
"Wall",
|
|
436
|
+
"Wallet",
|
|
437
|
+
"WarningCircle",
|
|
438
|
+
"WarningOctagon",
|
|
439
|
+
"Warning",
|
|
440
|
+
"Watch",
|
|
441
|
+
"WaveSawtooth",
|
|
442
|
+
"WaveSine",
|
|
443
|
+
"WaveSquare",
|
|
444
|
+
"WaveTriangle",
|
|
445
|
+
"Waves",
|
|
446
|
+
"Webcam",
|
|
447
|
+
"WhatsappLogo",
|
|
448
|
+
"Wheelchair",
|
|
449
|
+
"WifiHigh",
|
|
450
|
+
"WifiLow",
|
|
451
|
+
"WifiMedium",
|
|
452
|
+
"WifiNone",
|
|
453
|
+
"WifiSlash",
|
|
454
|
+
"WifiX",
|
|
455
|
+
"Wind",
|
|
456
|
+
"WindowsLogo",
|
|
457
|
+
"Wine",
|
|
458
|
+
"Wrench",
|
|
459
|
+
"XCircle",
|
|
460
|
+
"XCircleFill",
|
|
461
|
+
"XSquare",
|
|
462
|
+
"X",
|
|
463
|
+
"YinYang",
|
|
464
|
+
"YoutubeLogo",
|
|
465
|
+
"Sigma",
|
|
466
|
+
"ChartScatter",
|
|
467
|
+
"HandHeart",
|
|
468
|
+
"CameraPlus",
|
|
469
|
+
"WarningDiamond",
|
|
470
|
+
"PottedPlant",
|
|
471
|
+
"BatteryVerticalLow",
|
|
472
|
+
"Virus",
|
|
473
|
+
"WheelchairMotion",
|
|
474
|
+
"SteeringWheel",
|
|
475
|
+
"Stool",
|
|
476
|
+
"Pi",
|
|
477
|
+
"TextB",
|
|
478
|
+
"Lockers",
|
|
479
|
+
"PaypalLogo",
|
|
480
|
+
"AirTrafficControl",
|
|
481
|
+
"BatteryVerticalFull",
|
|
482
|
+
"Toolbox",
|
|
483
|
+
"BatteryVerticalHigh",
|
|
484
|
+
"FolderDashed",
|
|
485
|
+
"VirtualReality",
|
|
486
|
+
"DropboxLogo",
|
|
487
|
+
"DevToLogo",
|
|
488
|
+
"BatteryVerticalEmpty",
|
|
489
|
+
"Usb",
|
|
490
|
+
"IntersectThree",
|
|
491
|
+
"Tipi",
|
|
492
|
+
"Shrimp",
|
|
493
|
+
"Couch",
|
|
494
|
+
"Church",
|
|
495
|
+
"ShareFat",
|
|
496
|
+
"Waveform",
|
|
497
|
+
"FolderSimpleDashed",
|
|
498
|
+
"PhonePlus",
|
|
499
|
+
"CarProfile",
|
|
500
|
+
"Carrot",
|
|
501
|
+
"PlusSquare",
|
|
502
|
+
"ImagesSquare",
|
|
503
|
+
"Control",
|
|
504
|
+
"PlayPause",
|
|
505
|
+
"ArrowsMerge",
|
|
506
|
+
"Subtitles",
|
|
507
|
+
"Devices",
|
|
508
|
+
"SealQuestion",
|
|
509
|
+
"Pentagram",
|
|
510
|
+
"TidalLogo",
|
|
511
|
+
"Lighthouse",
|
|
512
|
+
"Bridge",
|
|
513
|
+
"GridNine",
|
|
514
|
+
"Dot",
|
|
515
|
+
"MicrosoftOutlookLogo",
|
|
516
|
+
"ChartPolar",
|
|
517
|
+
"WebcamSlash",
|
|
518
|
+
"GoogleCardboardLogo",
|
|
519
|
+
"PiggyBank",
|
|
520
|
+
"Certificate",
|
|
521
|
+
"OfficeChair",
|
|
522
|
+
"ArrowsSplit",
|
|
523
|
+
"DoorOpen",
|
|
524
|
+
"EscalatorUp",
|
|
525
|
+
"Park",
|
|
526
|
+
"BatteryPlusVertical",
|
|
527
|
+
"CassetteTape",
|
|
528
|
+
"SubtractSquare",
|
|
529
|
+
"SealWarning",
|
|
530
|
+
"Steps",
|
|
531
|
+
"WechatLogo",
|
|
532
|
+
"FlagPennant",
|
|
533
|
+
"MedalMilitary",
|
|
534
|
+
"ChartLineDown",
|
|
535
|
+
"SplitHorizontal",
|
|
536
|
+
"UniteSquare",
|
|
537
|
+
"CaretCircleUpDown",
|
|
538
|
+
"StarAndCrescent",
|
|
539
|
+
"Shapes",
|
|
540
|
+
"Mosque",
|
|
541
|
+
"FileSql",
|
|
542
|
+
"Dna",
|
|
543
|
+
"PencilSlash",
|
|
544
|
+
"CallBell",
|
|
545
|
+
"IntersectSquare",
|
|
546
|
+
"GoodreadsLogo",
|
|
547
|
+
"SplitVertical",
|
|
548
|
+
"Paragraph",
|
|
549
|
+
"Engine",
|
|
550
|
+
"Plant",
|
|
551
|
+
"SpeakerHifi",
|
|
552
|
+
"SneakerMove",
|
|
553
|
+
"ReceiptX",
|
|
554
|
+
"Moped",
|
|
555
|
+
"SealCheck",
|
|
556
|
+
"FlowerTulip",
|
|
557
|
+
"StarOfDavid",
|
|
558
|
+
"Tent",
|
|
559
|
+
"Trademark",
|
|
560
|
+
"SquareSplitVertical",
|
|
561
|
+
"FileArchive",
|
|
562
|
+
"ChartDonut",
|
|
563
|
+
"HandCoins",
|
|
564
|
+
"BowlFood",
|
|
565
|
+
"Fan",
|
|
566
|
+
"FileMagnifyingGlass",
|
|
567
|
+
"TextAUnderline",
|
|
568
|
+
"Pants",
|
|
569
|
+
"PersonSimpleThrow",
|
|
570
|
+
"Tram",
|
|
571
|
+
"EscalatorDown",
|
|
572
|
+
"Signature",
|
|
573
|
+
"Metronome",
|
|
574
|
+
"CubeTransparent",
|
|
575
|
+
"Subtract",
|
|
576
|
+
"Garage",
|
|
577
|
+
"FireExtinguisher",
|
|
578
|
+
"Parallelogram",
|
|
579
|
+
"CloudX",
|
|
580
|
+
"Hoodie",
|
|
581
|
+
"Siren",
|
|
582
|
+
"Images",
|
|
583
|
+
"ShootingStar",
|
|
584
|
+
"PlugCharging",
|
|
585
|
+
"Grains",
|
|
586
|
+
"CodeBlock",
|
|
587
|
+
"HighHeel",
|
|
588
|
+
"ContactlessPayment",
|
|
589
|
+
"Broom",
|
|
590
|
+
"PersonArmsSpread",
|
|
591
|
+
"HandsPraying",
|
|
592
|
+
"CursorClick",
|
|
593
|
+
"Scooter",
|
|
594
|
+
"BeerStein",
|
|
595
|
+
"Champagne",
|
|
596
|
+
"CastleTurret",
|
|
597
|
+
"CodaLogo",
|
|
598
|
+
"MopedFront",
|
|
599
|
+
"Exclude",
|
|
600
|
+
"Dress",
|
|
601
|
+
"FilmReel",
|
|
602
|
+
"Sneaker",
|
|
603
|
+
"HandSwipeRight",
|
|
604
|
+
"ListMagnifyingGlass",
|
|
605
|
+
"Feather",
|
|
606
|
+
"TreePalm",
|
|
607
|
+
"NotionLogo",
|
|
608
|
+
"ExcludeSquare",
|
|
609
|
+
"Goggles",
|
|
610
|
+
"CheckFat",
|
|
611
|
+
"Stairs",
|
|
612
|
+
"Guitar",
|
|
613
|
+
"Boot",
|
|
614
|
+
"Unite",
|
|
615
|
+
"AmazonLogo",
|
|
616
|
+
"HandSwipeLeft",
|
|
617
|
+
"Bone",
|
|
618
|
+
"Hammer",
|
|
619
|
+
"Seal",
|
|
620
|
+
"GoogleDriveLogo",
|
|
621
|
+
"LightningA",
|
|
622
|
+
"ClockCountdown",
|
|
623
|
+
"GasCan",
|
|
624
|
+
"CloudWarning",
|
|
625
|
+
"CompassTool",
|
|
626
|
+
"Warehouse",
|
|
627
|
+
"HeartHalf",
|
|
628
|
+
"PencilSimpleSlash",
|
|
629
|
+
"Footprints",
|
|
630
|
+
"GearFine",
|
|
631
|
+
"Radioactive",
|
|
632
|
+
"OrangeSlice",
|
|
633
|
+
"ReadCvLogo",
|
|
634
|
+
"FileSvg",
|
|
635
|
+
"Video",
|
|
636
|
+
"CaretUpDown",
|
|
637
|
+
"SuitcaseRolling",
|
|
638
|
+
"ShirtFolded",
|
|
639
|
+
"VinylRecord",
|
|
640
|
+
"Cross",
|
|
641
|
+
"Tooth",
|
|
642
|
+
"Chair",
|
|
643
|
+
"Motorcycle",
|
|
644
|
+
"PatreonLogo",
|
|
645
|
+
"GrainsSlash",
|
|
646
|
+
"BatteryVerticalMedium",
|
|
647
|
+
"PersonSimpleBike",
|
|
648
|
+
"Notches",
|
|
649
|
+
"Slideshow",
|
|
650
|
+
"Elevator",
|
|
651
|
+
"IceCream",
|
|
652
|
+
"HandTap",
|
|
653
|
+
"WebhooksLogo",
|
|
654
|
+
"Circuitry",
|
|
655
|
+
"CubeFocus",
|
|
656
|
+
"Van",
|
|
657
|
+
"ChargingStation",
|
|
658
|
+
"FileDashed",
|
|
659
|
+
"Gavel",
|
|
660
|
+
"TextColumns",
|
|
661
|
+
"Basket",
|
|
662
|
+
"Synagogue",
|
|
663
|
+
"Pulse",
|
|
664
|
+
"RoadHorizon",
|
|
665
|
+
"BookOpenText",
|
|
666
|
+
"SoundcloudLogo",
|
|
667
|
+
"MetaLogo",
|
|
668
|
+
"BaseballCap",
|
|
669
|
+
"Pepper",
|
|
670
|
+
"SmileyAngry",
|
|
671
|
+
"SwimmingPool",
|
|
672
|
+
"SquareSplitHorizontal",
|
|
673
|
+
"DotOutline"
|
|
674
|
+
];
|
|
675
|
+
const filteredIcon = computed(() => {
|
|
676
|
+
return iconNames.filter(
|
|
677
|
+
(a) => a.toLowerCase().includes(searchIcon.value.toLowerCase())
|
|
678
|
+
);
|
|
679
|
+
});
|
|
680
|
+
return {
|
|
681
|
+
iconNames,
|
|
682
|
+
searchIcon,
|
|
683
|
+
filteredIcon
|
|
684
|
+
};
|
|
685
|
+
}
|
|
686
|
+
});
|
|
687
|
+
</script>
|
|
688
|
+
|
|
689
|
+
<style></style>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
iconNames: string[];
|
|
3
|
+
searchIcon: import("vue").Ref<string>;
|
|
4
|
+
filteredIcon: import("vue").ComputedRef<string[]>;
|
|
5
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
6
|
+
export default _default;
|