@fiscozen/icons 0.2.0 → 1.0.0
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/CHANGELOG.md +14 -0
- package/README.md +29 -3
- package/dist/icons.js +3085 -0
- package/dist/icons.umd.cjs +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/src/FzIcon.vue.d.ts +30 -0
- package/dist/src/FzIconBackground.vue.d.ts +33 -0
- package/dist/src/__tests__/FzIcon.spec.d.ts +1 -0
- package/dist/src/__tests__/FzIconBackground.spec.d.ts +1 -0
- package/dist/src/index.d.ts +7 -0
- package/dist/src/types.d.ts +12 -0
- package/dist/vite.config.d.ts +2 -0
- package/dist/vitest.config.d.ts +2 -0
- package/package.json +23 -6
- package/src/FzIcon.vue +18 -7
- package/src/FzIconBackground.vue +25 -0
- package/src/__tests__/FzIcon.spec.ts +514 -0
- package/src/__tests__/FzIconBackground.spec.ts +380 -0
- package/src/__tests__/__snapshots__/FzIcon.spec.ts.snap +11 -0
- package/src/__tests__/__snapshots__/FzIconBackground.spec.ts.snap +13 -0
- package/src/index.ts +4 -2
- package/src/types.ts +5 -1
- package/tsconfig.tsbuildinfo +1 -0
- package/vite.config.ts +34 -0
- package/vitest.config.ts +27 -0
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
import { describe, it, expect, vi, beforeEach } from 'vitest'
|
|
2
|
+
import { mount } from '@vue/test-utils'
|
|
3
|
+
import FzIconBackground from '../FzIconBackground.vue'
|
|
4
|
+
|
|
5
|
+
vi.mock('@awesome.me/kit-8137893ad3/icons', () => ({
|
|
6
|
+
byPrefixAndName: {
|
|
7
|
+
fas: { bell: ['fas', 'bell'], 'user-circle': ['fas', 'user-circle'] },
|
|
8
|
+
far: { bell: ['far', 'bell'], 'user-circle': ['far', 'user-circle'] },
|
|
9
|
+
fal: { bell: ['fal', 'bell'] },
|
|
10
|
+
fat: { bell: ['fat', 'bell'] },
|
|
11
|
+
fad: { bell: ['fad', 'bell'] },
|
|
12
|
+
fass: { bell: ['fass', 'bell'] },
|
|
13
|
+
fasr: { bell: ['fasr', 'bell'] },
|
|
14
|
+
fasl: { bell: ['fasl', 'bell'] },
|
|
15
|
+
fast: { bell: ['fast', 'bell'] },
|
|
16
|
+
fak: { bell: ['fak', 'bell'] }
|
|
17
|
+
}
|
|
18
|
+
}))
|
|
19
|
+
|
|
20
|
+
const mockFontAwesomeIcon = {
|
|
21
|
+
name: 'FontAwesomeIcon',
|
|
22
|
+
template: '<svg :class="$attrs.class" data-testid="fa-icon" />',
|
|
23
|
+
props: ['icon', 'size', 'spin']
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
describe('FzIconBackground', () => {
|
|
27
|
+
beforeEach(() => {
|
|
28
|
+
vi.spyOn(console, 'warn').mockImplementation(() => {})
|
|
29
|
+
})
|
|
30
|
+
|
|
31
|
+
const mountOptions = {
|
|
32
|
+
global: {
|
|
33
|
+
stubs: {
|
|
34
|
+
'font-awesome-icon': mockFontAwesomeIcon
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// ============================================
|
|
40
|
+
// RENDERING TESTS
|
|
41
|
+
// ============================================
|
|
42
|
+
describe('Rendering', () => {
|
|
43
|
+
it('should render with default props', () => {
|
|
44
|
+
const wrapper = mount(FzIconBackground, {
|
|
45
|
+
props: { name: 'bell' },
|
|
46
|
+
...mountOptions
|
|
47
|
+
})
|
|
48
|
+
expect(wrapper.exists()).toBe(true)
|
|
49
|
+
expect(wrapper.find('span').exists()).toBe(true)
|
|
50
|
+
})
|
|
51
|
+
|
|
52
|
+
it('should render with name prop', () => {
|
|
53
|
+
const wrapper = mount(FzIconBackground, {
|
|
54
|
+
props: { name: 'bell' },
|
|
55
|
+
...mountOptions
|
|
56
|
+
})
|
|
57
|
+
const icon = wrapper.find('svg')
|
|
58
|
+
expect(icon.exists()).toBe(true)
|
|
59
|
+
})
|
|
60
|
+
|
|
61
|
+
it('should render correct container size', () => {
|
|
62
|
+
const wrapper = mount(FzIconBackground, {
|
|
63
|
+
props: { name: 'bell', size: 'lg' },
|
|
64
|
+
...mountOptions
|
|
65
|
+
})
|
|
66
|
+
const container = wrapper.find('span')
|
|
67
|
+
expect(container.classes()).toContain('w-[25px]')
|
|
68
|
+
expect(container.classes()).toContain('h-[25px]')
|
|
69
|
+
})
|
|
70
|
+
|
|
71
|
+
it('should apply custom class when provided', () => {
|
|
72
|
+
const wrapper = mount(FzIconBackground, {
|
|
73
|
+
props: { name: 'bell' },
|
|
74
|
+
attrs: { class: 'custom-class' },
|
|
75
|
+
...mountOptions
|
|
76
|
+
})
|
|
77
|
+
const container = wrapper.find('span')
|
|
78
|
+
expect(container.classes()).toContain('custom-class')
|
|
79
|
+
})
|
|
80
|
+
})
|
|
81
|
+
|
|
82
|
+
// ============================================
|
|
83
|
+
// PROPS TESTS
|
|
84
|
+
// ============================================
|
|
85
|
+
describe('Props', () => {
|
|
86
|
+
describe('name prop', () => {
|
|
87
|
+
it('should accept string name', () => {
|
|
88
|
+
const wrapper = mount(FzIconBackground, {
|
|
89
|
+
props: { name: 'bell' },
|
|
90
|
+
...mountOptions
|
|
91
|
+
})
|
|
92
|
+
expect(wrapper.props('name')).toBe('bell')
|
|
93
|
+
})
|
|
94
|
+
|
|
95
|
+
it('should accept array name', () => {
|
|
96
|
+
const wrapper = mount(FzIconBackground, {
|
|
97
|
+
props: { name: ['fas', 'bell'] },
|
|
98
|
+
...mountOptions
|
|
99
|
+
})
|
|
100
|
+
expect(wrapper.props('name')).toEqual(['fas', 'bell'])
|
|
101
|
+
})
|
|
102
|
+
})
|
|
103
|
+
|
|
104
|
+
describe('size prop', () => {
|
|
105
|
+
it.each([
|
|
106
|
+
['xs', 'size-[12.5px]', 'h-[10px]'],
|
|
107
|
+
['sm', 'w-[15px]', 'h-[12px]'],
|
|
108
|
+
['md', 'w-[20px]', 'h-[16px]'],
|
|
109
|
+
['lg', 'w-[25px]', 'h-[20px]'],
|
|
110
|
+
['xl', 'w-[32px]', 'h-[24px]'],
|
|
111
|
+
['2xl', 'w-[40px]', 'h-[32px]']
|
|
112
|
+
])('should apply correct classes for %s size', (size, containerClass, iconClass) => {
|
|
113
|
+
const wrapper = mount(FzIconBackground, {
|
|
114
|
+
props: { name: 'bell', size: size as 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' },
|
|
115
|
+
...mountOptions
|
|
116
|
+
})
|
|
117
|
+
const container = wrapper.find('span')
|
|
118
|
+
expect(container.classes()).toContain(containerClass)
|
|
119
|
+
const iconElement = wrapper.find('[data-testid="fa-icon"]')
|
|
120
|
+
const classAttr = iconElement.attributes('class') || ''
|
|
121
|
+
expect(classAttr.includes(iconClass) || iconElement.classes().includes(iconClass)).toBe(true)
|
|
122
|
+
})
|
|
123
|
+
|
|
124
|
+
it('should default to lg size', () => {
|
|
125
|
+
const wrapper = mount(FzIconBackground, {
|
|
126
|
+
props: { name: 'bell' },
|
|
127
|
+
...mountOptions
|
|
128
|
+
})
|
|
129
|
+
const container = wrapper.find('span')
|
|
130
|
+
expect(container.classes()).toContain('w-[25px]')
|
|
131
|
+
expect(container.classes()).toContain('h-[25px]')
|
|
132
|
+
})
|
|
133
|
+
})
|
|
134
|
+
|
|
135
|
+
describe('variant prop', () => {
|
|
136
|
+
it('should default to far variant', () => {
|
|
137
|
+
const wrapper = mount(FzIconBackground, {
|
|
138
|
+
props: { name: 'bell' },
|
|
139
|
+
...mountOptions
|
|
140
|
+
})
|
|
141
|
+
expect(wrapper.props('variant')).toBe('far')
|
|
142
|
+
})
|
|
143
|
+
|
|
144
|
+
it.each([['fas'], ['far'], ['fal'], ['fat'], ['fad']])(
|
|
145
|
+
'should accept %s variant',
|
|
146
|
+
(variant) => {
|
|
147
|
+
const wrapper = mount(FzIconBackground, {
|
|
148
|
+
props: { name: 'bell', variant: variant as 'fas' | 'far' | 'fal' | 'fat' | 'fad' },
|
|
149
|
+
...mountOptions
|
|
150
|
+
})
|
|
151
|
+
expect(wrapper.props('variant')).toBe(variant)
|
|
152
|
+
}
|
|
153
|
+
)
|
|
154
|
+
})
|
|
155
|
+
|
|
156
|
+
describe('spin prop', () => {
|
|
157
|
+
it('should not spin by default', () => {
|
|
158
|
+
const wrapper = mount(FzIconBackground, {
|
|
159
|
+
props: { name: 'bell' },
|
|
160
|
+
...mountOptions
|
|
161
|
+
})
|
|
162
|
+
const spinProp = wrapper.props('spin')
|
|
163
|
+
expect(spinProp === undefined || spinProp === false).toBe(true)
|
|
164
|
+
})
|
|
165
|
+
|
|
166
|
+
it('should apply spin when true', () => {
|
|
167
|
+
const wrapper = mount(FzIconBackground, {
|
|
168
|
+
props: { name: 'bell', spin: true },
|
|
169
|
+
...mountOptions
|
|
170
|
+
})
|
|
171
|
+
expect(wrapper.props('spin')).toBe(true)
|
|
172
|
+
const fontAwesomeComponent = wrapper.findComponent({ name: 'FontAwesomeIcon' })
|
|
173
|
+
expect(fontAwesomeComponent.exists()).toBe(true)
|
|
174
|
+
expect(fontAwesomeComponent.props('spin')).toBe(true)
|
|
175
|
+
})
|
|
176
|
+
})
|
|
177
|
+
|
|
178
|
+
describe('backgroundColor prop', () => {
|
|
179
|
+
it('should default to core-white', () => {
|
|
180
|
+
const wrapper = mount(FzIconBackground, {
|
|
181
|
+
props: { name: 'bell' },
|
|
182
|
+
...mountOptions
|
|
183
|
+
})
|
|
184
|
+
expect(wrapper.props('backgroundColor')).toBe('core-white')
|
|
185
|
+
})
|
|
186
|
+
|
|
187
|
+
it('should apply background class from backgroundColor', () => {
|
|
188
|
+
const wrapper = mount(FzIconBackground, {
|
|
189
|
+
props: { name: 'bell', backgroundColor: 'grey-100' },
|
|
190
|
+
...mountOptions
|
|
191
|
+
})
|
|
192
|
+
const container = wrapper.find('span')
|
|
193
|
+
expect(container.classes()).toContain('bg-grey-100')
|
|
194
|
+
})
|
|
195
|
+
|
|
196
|
+
it('should apply box-content, padding and rounded-full', () => {
|
|
197
|
+
const wrapper = mount(FzIconBackground, {
|
|
198
|
+
props: { name: 'bell' },
|
|
199
|
+
...mountOptions
|
|
200
|
+
})
|
|
201
|
+
const container = wrapper.find('span')
|
|
202
|
+
expect(container.classes()).toContain('box-content')
|
|
203
|
+
expect(container.classes()).toContain('p-8')
|
|
204
|
+
expect(container.classes()).toContain('rounded-full')
|
|
205
|
+
})
|
|
206
|
+
})
|
|
207
|
+
})
|
|
208
|
+
|
|
209
|
+
// ============================================
|
|
210
|
+
// CSS CLASSES TESTS
|
|
211
|
+
// ============================================
|
|
212
|
+
describe('CSS Classes', () => {
|
|
213
|
+
it('should apply static base classes from FzIcon', () => {
|
|
214
|
+
const wrapper = mount(FzIconBackground, {
|
|
215
|
+
props: { name: 'bell' },
|
|
216
|
+
...mountOptions
|
|
217
|
+
})
|
|
218
|
+
const container = wrapper.find('span')
|
|
219
|
+
expect(container.classes()).toContain('flex')
|
|
220
|
+
expect(container.classes()).toContain('items-center')
|
|
221
|
+
expect(container.classes()).toContain('justify-center')
|
|
222
|
+
})
|
|
223
|
+
|
|
224
|
+
it('should apply background wrapper classes', () => {
|
|
225
|
+
const wrapper = mount(FzIconBackground, {
|
|
226
|
+
props: { name: 'bell' },
|
|
227
|
+
...mountOptions
|
|
228
|
+
})
|
|
229
|
+
const container = wrapper.find('span')
|
|
230
|
+
expect(container.classes()).toContain('box-content')
|
|
231
|
+
expect(container.classes()).toContain('p-8')
|
|
232
|
+
expect(container.classes()).toContain('rounded-full')
|
|
233
|
+
expect(container.classes()).toContain('bg-core-white')
|
|
234
|
+
})
|
|
235
|
+
|
|
236
|
+
it('should apply size-specific container classes', () => {
|
|
237
|
+
const wrapper = mount(FzIconBackground, {
|
|
238
|
+
props: { name: 'bell', size: 'md' },
|
|
239
|
+
...mountOptions
|
|
240
|
+
})
|
|
241
|
+
const container = wrapper.find('span')
|
|
242
|
+
expect(container.classes()).toContain('w-[20px]')
|
|
243
|
+
expect(container.classes()).toContain('h-[20px]')
|
|
244
|
+
})
|
|
245
|
+
|
|
246
|
+
it('should apply size-specific icon classes', () => {
|
|
247
|
+
const wrapper = mount(FzIconBackground, {
|
|
248
|
+
props: { name: 'bell', size: 'xl' },
|
|
249
|
+
...mountOptions
|
|
250
|
+
})
|
|
251
|
+
const fontAwesomeComponent = wrapper.findComponent({ name: 'FontAwesomeIcon' })
|
|
252
|
+
expect(fontAwesomeComponent.exists()).toBe(true)
|
|
253
|
+
const icon = wrapper.find('[data-testid="fa-icon"]')
|
|
254
|
+
const classAttr = icon.attributes('class') || ''
|
|
255
|
+
expect(classAttr.includes('h-[24px]') || icon.classes().includes('h-[24px]')).toBe(true)
|
|
256
|
+
})
|
|
257
|
+
})
|
|
258
|
+
|
|
259
|
+
// ============================================
|
|
260
|
+
// ACCESSIBILITY TESTS
|
|
261
|
+
// ============================================
|
|
262
|
+
describe('Accessibility', () => {
|
|
263
|
+
describe('ARIA attributes', () => {
|
|
264
|
+
it('should have icon rendered for decorative use', () => {
|
|
265
|
+
const wrapper = mount(FzIconBackground, {
|
|
266
|
+
props: { name: 'bell' },
|
|
267
|
+
...mountOptions
|
|
268
|
+
})
|
|
269
|
+
const icon = wrapper.find('svg')
|
|
270
|
+
expect(icon.exists()).toBe(true)
|
|
271
|
+
})
|
|
272
|
+
|
|
273
|
+
it('should support aria-label when provided', () => {
|
|
274
|
+
const wrapper = mount(FzIconBackground, {
|
|
275
|
+
props: { name: 'bell' },
|
|
276
|
+
attrs: { 'aria-label': 'Notification bell' },
|
|
277
|
+
...mountOptions
|
|
278
|
+
})
|
|
279
|
+
const container = wrapper.find('span')
|
|
280
|
+
expect(container.attributes('aria-label')).toBe('Notification bell')
|
|
281
|
+
})
|
|
282
|
+
|
|
283
|
+
it('should support role="img" when accessible', () => {
|
|
284
|
+
const wrapper = mount(FzIconBackground, {
|
|
285
|
+
props: { name: 'bell' },
|
|
286
|
+
attrs: { role: 'img', 'aria-label': 'Notification bell' },
|
|
287
|
+
...mountOptions
|
|
288
|
+
})
|
|
289
|
+
const container = wrapper.find('span')
|
|
290
|
+
expect(container.attributes('role')).toBe('img')
|
|
291
|
+
})
|
|
292
|
+
})
|
|
293
|
+
|
|
294
|
+
describe('Decorative elements', () => {
|
|
295
|
+
it('should render icon without accessibility attributes when decorative', () => {
|
|
296
|
+
const wrapper = mount(FzIconBackground, {
|
|
297
|
+
props: { name: 'bell' },
|
|
298
|
+
...mountOptions
|
|
299
|
+
})
|
|
300
|
+
const container = wrapper.find('span')
|
|
301
|
+
expect(container.attributes('role')).toBe('presentation')
|
|
302
|
+
expect(container.attributes('aria-label')).toBeUndefined()
|
|
303
|
+
})
|
|
304
|
+
})
|
|
305
|
+
})
|
|
306
|
+
|
|
307
|
+
// ============================================
|
|
308
|
+
// EDGE CASES
|
|
309
|
+
// ============================================
|
|
310
|
+
describe('Edge Cases', () => {
|
|
311
|
+
it('should handle different icon name formats', () => {
|
|
312
|
+
const wrapper = mount(FzIconBackground, {
|
|
313
|
+
props: { name: 'user-circle' },
|
|
314
|
+
...mountOptions
|
|
315
|
+
})
|
|
316
|
+
expect(wrapper.exists()).toBe(true)
|
|
317
|
+
})
|
|
318
|
+
|
|
319
|
+
it('should handle array icon format', () => {
|
|
320
|
+
const wrapper = mount(FzIconBackground, {
|
|
321
|
+
props: { name: ['fas', 'bell'] },
|
|
322
|
+
...mountOptions
|
|
323
|
+
})
|
|
324
|
+
expect(wrapper.exists()).toBe(true)
|
|
325
|
+
})
|
|
326
|
+
})
|
|
327
|
+
|
|
328
|
+
// ============================================
|
|
329
|
+
// SNAPSHOTS
|
|
330
|
+
// ============================================
|
|
331
|
+
describe('Snapshots', () => {
|
|
332
|
+
it('should match snapshot - default state', () => {
|
|
333
|
+
const wrapper = mount(FzIconBackground, {
|
|
334
|
+
props: { name: 'bell' },
|
|
335
|
+
...mountOptions
|
|
336
|
+
})
|
|
337
|
+
expect(wrapper.html()).toMatchSnapshot()
|
|
338
|
+
})
|
|
339
|
+
|
|
340
|
+
it('should match snapshot - small size', () => {
|
|
341
|
+
const wrapper = mount(FzIconBackground, {
|
|
342
|
+
props: { name: 'bell', size: 'sm' },
|
|
343
|
+
...mountOptions
|
|
344
|
+
})
|
|
345
|
+
expect(wrapper.html()).toMatchSnapshot()
|
|
346
|
+
})
|
|
347
|
+
|
|
348
|
+
it('should match snapshot - large size', () => {
|
|
349
|
+
const wrapper = mount(FzIconBackground, {
|
|
350
|
+
props: { name: 'bell', size: 'xl' },
|
|
351
|
+
...mountOptions
|
|
352
|
+
})
|
|
353
|
+
expect(wrapper.html()).toMatchSnapshot()
|
|
354
|
+
})
|
|
355
|
+
|
|
356
|
+
it('should match snapshot - with spin', () => {
|
|
357
|
+
const wrapper = mount(FzIconBackground, {
|
|
358
|
+
props: { name: 'bell', spin: true },
|
|
359
|
+
...mountOptions
|
|
360
|
+
})
|
|
361
|
+
expect(wrapper.html()).toMatchSnapshot()
|
|
362
|
+
})
|
|
363
|
+
|
|
364
|
+
it('should match snapshot - with variant', () => {
|
|
365
|
+
const wrapper = mount(FzIconBackground, {
|
|
366
|
+
props: { name: 'bell', variant: 'fas' },
|
|
367
|
+
...mountOptions
|
|
368
|
+
})
|
|
369
|
+
expect(wrapper.html()).toMatchSnapshot()
|
|
370
|
+
})
|
|
371
|
+
|
|
372
|
+
it('should match snapshot - with backgroundColor', () => {
|
|
373
|
+
const wrapper = mount(FzIconBackground, {
|
|
374
|
+
props: { name: 'bell', backgroundColor: 'grey-100' },
|
|
375
|
+
...mountOptions
|
|
376
|
+
})
|
|
377
|
+
expect(wrapper.html()).toMatchSnapshot()
|
|
378
|
+
})
|
|
379
|
+
})
|
|
380
|
+
})
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
2
|
+
|
|
3
|
+
exports[`FzIcon > Snapshots > should match snapshot - default state 1`] = `"<span role="presentation" class="flex items-center justify-center w-[25px] h-[25px]"><svg class="h-[20px]" data-testid="fa-icon"></svg></span>"`;
|
|
4
|
+
|
|
5
|
+
exports[`FzIcon > Snapshots > should match snapshot - large size 1`] = `"<span role="presentation" class="flex items-center justify-center w-[32px] h-[32px]"><svg class="h-[24px]" data-testid="fa-icon"></svg></span>"`;
|
|
6
|
+
|
|
7
|
+
exports[`FzIcon > Snapshots > should match snapshot - small size 1`] = `"<span role="presentation" class="flex items-center justify-center w-[15px] h-[15px]"><svg class="h-[12px]" data-testid="fa-icon"></svg></span>"`;
|
|
8
|
+
|
|
9
|
+
exports[`FzIcon > Snapshots > should match snapshot - with spin 1`] = `"<span role="presentation" class="flex items-center justify-center w-[25px] h-[25px]"><svg class="h-[20px]" data-testid="fa-icon"></svg></span>"`;
|
|
10
|
+
|
|
11
|
+
exports[`FzIcon > Snapshots > should match snapshot - with variant 1`] = `"<span role="presentation" class="flex items-center justify-center w-[25px] h-[25px]"><svg class="h-[20px]" data-testid="fa-icon"></svg></span>"`;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
2
|
+
|
|
3
|
+
exports[`FzIconBackground > Snapshots > should match snapshot - default state 1`] = `"<span role="presentation" class="flex items-center justify-center w-[25px] h-[25px] box-content p-8 rounded-full bg-core-white"><svg class="h-[20px]" data-testid="fa-icon"></svg></span>"`;
|
|
4
|
+
|
|
5
|
+
exports[`FzIconBackground > Snapshots > should match snapshot - large size 1`] = `"<span role="presentation" class="flex items-center justify-center w-[32px] h-[32px] box-content p-8 rounded-full bg-core-white"><svg class="h-[24px]" data-testid="fa-icon"></svg></span>"`;
|
|
6
|
+
|
|
7
|
+
exports[`FzIconBackground > Snapshots > should match snapshot - small size 1`] = `"<span role="presentation" class="flex items-center justify-center w-[15px] h-[15px] box-content p-8 rounded-full bg-core-white"><svg class="h-[12px]" data-testid="fa-icon"></svg></span>"`;
|
|
8
|
+
|
|
9
|
+
exports[`FzIconBackground > Snapshots > should match snapshot - with backgroundColor 1`] = `"<span role="presentation" class="flex items-center justify-center w-[25px] h-[25px] box-content p-8 rounded-full bg-grey-100"><svg class="h-[20px]" data-testid="fa-icon"></svg></span>"`;
|
|
10
|
+
|
|
11
|
+
exports[`FzIconBackground > Snapshots > should match snapshot - with spin 1`] = `"<span role="presentation" class="flex items-center justify-center w-[25px] h-[25px] box-content p-8 rounded-full bg-core-white"><svg class="h-[20px]" data-testid="fa-icon"></svg></span>"`;
|
|
12
|
+
|
|
13
|
+
exports[`FzIconBackground > Snapshots > should match snapshot - with variant 1`] = `"<span role="presentation" class="flex items-center justify-center w-[25px] h-[25px] box-content p-8 rounded-full bg-core-white"><svg class="h-[20px]" data-testid="fa-icon"></svg></span>"`;
|
package/src/index.ts
CHANGED
|
@@ -2,15 +2,17 @@ import { Plugin } from 'vue'
|
|
|
2
2
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
3
3
|
import { all } from '@awesome.me/kit-8137893ad3/icons'
|
|
4
4
|
import FzIcon from './FzIcon.vue'
|
|
5
|
+
import FzIconBackground from './FzIconBackground.vue'
|
|
5
6
|
|
|
6
7
|
const IconPlugin : Plugin = {
|
|
7
8
|
install(app) {
|
|
8
9
|
// @ts-ignore
|
|
9
10
|
library.add(...all)
|
|
10
11
|
app.component('fz-icon', FzIcon)
|
|
12
|
+
app.component('fz-icon-background', FzIconBackground)
|
|
11
13
|
}
|
|
12
14
|
}
|
|
13
15
|
|
|
14
|
-
export { FzIcon, IconPlugin }
|
|
16
|
+
export { FzIcon, FzIconBackground, IconPlugin }
|
|
15
17
|
|
|
16
|
-
export type { IconVariant, IconSize, IconProps } from './types'
|
|
18
|
+
export type { IconVariant, IconSize, IconProps, IconBackgroundProps } from './types'
|
package/src/types.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/@vue+shared@3.5.26/node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/.pnpm/@vue+reactivity@3.5.26/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/.pnpm/@vue+runtime-core@3.5.26/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../node_modules/.pnpm/csstype@3.2.3/node_modules/csstype/index.d.ts","../../node_modules/.pnpm/@vue+runtime-dom@3.5.26/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/.pnpm/vue@3.5.26_typescript@5.3.3/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-common-types@6.7.2/node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-svg-core@6.7.2/node_modules/@fortawesome/fontawesome-svg-core/index.d.ts","../../node_modules/.pnpm/@babel+types@7.28.6/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.28.6/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/@vue+compiler-core@3.5.26/node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/.pnpm/@vue+compiler-dom@3.5.26/node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/.pnpm/vue@3.5.26_typescript@5.3.3/node_modules/vue/dist/vue.d.mts","../../node_modules/.pnpm/@fortawesome+vue-fontawesome@3.1.3_@fortawesome+fontawesome-svg-core@6.7.2_vue@3.5.26_typescript@5.3.3_/node_modules/@fortawesome/vue-fontawesome/index.d.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.401/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.401/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.ts","./src/types.ts","./src/fzicon.vue.ts","./src/fziconbackground.vue.ts","./__vls_types.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/web-globals/events.d.ts","../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/inspector.generated.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@18.19.130/node_modules/@types/node/ts5.6/index.d.ts","../../node_modules/.pnpm/@types+estree@1.0.8/node_modules/@types/estree/index.d.ts","../../node_modules/.pnpm/rollup@4.55.1/node_modules/rollup/dist/rollup.d.ts","../../node_modules/.pnpm/rollup@4.55.1/node_modules/rollup/dist/parseast.d.ts","../../node_modules/.pnpm/vite@5.4.21_@types+node@18.19.130/node_modules/vite/types/hmrpayload.d.ts","../../node_modules/.pnpm/vite@5.4.21_@types+node@18.19.130/node_modules/vite/types/customevent.d.ts","../../node_modules/.pnpm/vite@5.4.21_@types+node@18.19.130/node_modules/vite/types/hot.d.ts","../../node_modules/.pnpm/vite@5.4.21_@types+node@18.19.130/node_modules/vite/dist/node/types.d-agj9qkwt.d.ts","../../node_modules/.pnpm/esbuild@0.21.5/node_modules/esbuild/lib/main.d.ts","../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/previous-map.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/input.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/declaration.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/root.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/warning.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/processor.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/result.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/document.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/rule.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/node.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/comment.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/container.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/at-rule.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/list.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/postcss.d.ts","../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/postcss.d.mts","../../node_modules/.pnpm/vite@5.4.21_@types+node@18.19.130/node_modules/vite/dist/node/runtime.d.ts","../../node_modules/.pnpm/vite@5.4.21_@types+node@18.19.130/node_modules/vite/types/importglob.d.ts","../../node_modules/.pnpm/vite@5.4.21_@types+node@18.19.130/node_modules/vite/types/metadata.d.ts","../../node_modules/.pnpm/vite@5.4.21_@types+node@18.19.130/node_modules/vite/dist/node/index.d.ts","../../node_modules/.pnpm/magic-string@0.30.21/node_modules/magic-string/dist/magic-string.es.d.mts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/typescript.d.ts","../../node_modules/.pnpm/@vue+compiler-sfc@3.5.26/node_modules/@vue/compiler-sfc/dist/compiler-sfc.d.ts","../../node_modules/.pnpm/vue@3.5.26_typescript@5.3.3/node_modules/vue/compiler-sfc/index.d.mts","../../node_modules/.pnpm/@vitejs+plugin-vue@4.6.2_vite@5.4.21_@types+node@18.19.130__vue@3.5.26_typescript@5.3.3_/node_modules/@vitejs/plugin-vue/dist/index.d.mts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib-commonjs/beta/declarationreference.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/details/standardization.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/configuration/tsdoctagdefinition.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/configuration/tsdocvalidationconfiguration.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/parser/tsdocmessageid.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/configuration/tsdocconfiguration.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docnode.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/configuration/docnodemanager.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/details/standardtags.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/parser/textrange.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/parser/token.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docnodecontainer.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docsection.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docblock.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/doccodespan.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docmemberidentifier.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docmembersymbol.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docmemberselector.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docmemberreference.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docdeclarationreference.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docinlinetagbase.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docinheritdoctag.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docparamblock.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docparamcollection.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/doccomment.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docerrortext.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docescapedtext.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docexcerpt.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docfencedcode.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/dochtmlattribute.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/dochtmlendtag.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/dochtmlstarttag.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docinlinetag.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/doclinktag.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docparagraph.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docplaintext.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docsoftbreak.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/index.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/parser/parsermessage.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/parser/parsermessagelog.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/parser/parsercontext.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/parser/tokensequence.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/nodes/docblocktag.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/details/modifiertagset.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/details/standardmodifiertagset.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/emitters/plaintextemitter.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/emitters/stringbuilder.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/emitters/tsdocemitter.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/parser/tsdocparser.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/transforms/docnodetransforms.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc@0.14.2/node_modules/@microsoft/tsdoc/lib/index.d.ts","../../node_modules/.pnpm/@rushstack+node-core-library@4.0.2_@types+node@18.19.130/node_modules/@rushstack/node-core-library/dist/node-core-library.d.ts","../../node_modules/.pnpm/@microsoft+api-extractor-model@7.28.13_@types+node@18.19.130/node_modules/@microsoft/api-extractor-model/dist/rollup.d.ts","../../node_modules/.pnpm/@rushstack+rig-package@0.5.2/node_modules/@rushstack/rig-package/dist/rig-package.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc-config@0.16.2/node_modules/@microsoft/tsdoc-config/lib/tsdocconfigfile.d.ts","../../node_modules/.pnpm/@microsoft+tsdoc-config@0.16.2/node_modules/@microsoft/tsdoc-config/lib/index.d.ts","../../node_modules/.pnpm/@microsoft+api-extractor@7.43.0_@types+node@18.19.130/node_modules/@microsoft/api-extractor/dist/rollup.d.ts","../../node_modules/.pnpm/vite-plugin-dts@3.9.1_@types+node@18.19.130_rollup@4.55.1_typescript@5.3.3_vite@5.4.21_@types+node@18.19.130_/node_modules/vite-plugin-dts/dist/index.d.ts","./vite.config.ts","../../node_modules/.pnpm/@vitest+utils@1.6.1/node_modules/@vitest/utils/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@1.6.1/node_modules/@vitest/utils/dist/helpers.d.ts","../../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../node_modules/.pnpm/@vitest+utils@1.6.1/node_modules/@vitest/utils/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@1.6.1/node_modules/@vitest/runner/dist/tasks-k5xerdtv.d.ts","../../node_modules/.pnpm/@vitest+utils@1.6.1/node_modules/@vitest/utils/dist/types-9l4nily8.d.ts","../../node_modules/.pnpm/@vitest+utils@1.6.1/node_modules/@vitest/utils/dist/diff.d.ts","../../node_modules/.pnpm/@vitest+runner@1.6.1/node_modules/@vitest/runner/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@1.6.1/node_modules/@vitest/utils/dist/error.d.ts","../../node_modules/.pnpm/@vitest+runner@1.6.1/node_modules/@vitest/runner/dist/index.d.ts","../../node_modules/.pnpm/vite-node@1.6.1_@types+node@18.19.130/node_modules/vite-node/dist/trace-mapping.d-xyifztpm.d.ts","../../node_modules/.pnpm/vite-node@1.6.1_@types+node@18.19.130/node_modules/vite-node/dist/index-o2irwhkf.d.ts","../../node_modules/.pnpm/vite-node@1.6.1_@types+node@18.19.130/node_modules/vite-node/dist/index.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.6.1/node_modules/@vitest/snapshot/dist/environment-cmigivxz.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.6.1/node_modules/@vitest/snapshot/dist/index-s94asl6q.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.6.1/node_modules/@vitest/snapshot/dist/index.d.ts","../../node_modules/.pnpm/@vitest+expect@1.6.1/node_modules/@vitest/expect/dist/chai.d.cts","../../node_modules/.pnpm/@vitest+expect@1.6.1/node_modules/@vitest/expect/dist/index.d.ts","../../node_modules/.pnpm/@vitest+expect@1.6.1/node_modules/@vitest/expect/index.d.ts","../../node_modules/.pnpm/@vitest+runner@1.6.1/node_modules/@vitest/runner/dist/utils.d.ts","../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../node_modules/.pnpm/vite-node@1.6.1_@types+node@18.19.130/node_modules/vite-node/dist/client.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.6.1/node_modules/@vitest/snapshot/dist/manager.d.ts","../../node_modules/.pnpm/vite-node@1.6.1_@types+node@18.19.130/node_modules/vite-node/dist/server.d.ts","../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../node_modules/.pnpm/assertion-error@2.0.1/node_modules/assertion-error/index.d.ts","../../node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts","../../node_modules/.pnpm/vitest@1.6.1_@types+node@18.19.130_jsdom@23.2.0/node_modules/vitest/dist/reporters-w_64as5f.d.ts","../../node_modules/.pnpm/vitest@1.6.1_@types+node@18.19.130_jsdom@23.2.0/node_modules/vitest/dist/config.d.ts","../../node_modules/.pnpm/vitest@1.6.1_@types+node@18.19.130_jsdom@23.2.0/node_modules/vitest/config.d.ts","./vitest.config.ts","./dist/src/types.d.ts","./dist/src/fzicon.vue.d.ts","./dist/src/fziconbackground.vue.d.ts","./dist/src/index.d.ts","./dist/index.d.ts","./dist/vite.config.d.ts","./dist/vitest.config.d.ts","./dist/src/__tests__/fzicon.spec.d.ts","./dist/src/__tests__/fziconbackground.spec.d.ts","./src/index.ts","../../node_modules/.pnpm/vitest@1.6.1_@types+node@18.19.130_jsdom@23.2.0/node_modules/vitest/dist/suite-dwqifb_-.d.ts","../../node_modules/.pnpm/@vitest+spy@1.6.1/node_modules/@vitest/spy/dist/index.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.6.1/node_modules/@vitest/snapshot/dist/environment.d.ts","../../node_modules/.pnpm/vitest@1.6.1_@types+node@18.19.130_jsdom@23.2.0/node_modules/vitest/dist/index.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/constants/dom-events.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/createdomevent.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/types.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/vuewrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/interfaces/wrapperlike.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/basewrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/domwrapper.d.ts","../../node_modules/.pnpm/vue-component-type-helpers@2.2.12/node_modules/vue-component-type-helpers/index.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/mount.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/rendertostring.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/components/routerlinkstub.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/errorwrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/vnodetransformers/util.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/vnodetransformers/stubcomponentstransformer.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/config.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/utils/flushpromises.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/utils/autounmount.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.6/node_modules/@vue/test-utils/dist/index.d.ts","./src/__tests__/fzicon.spec.ts","./src/__tests__/fziconbackground.spec.ts"],"fileInfos":[{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0",{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"],"root":[[62,65],256,[289,299],322,323],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[51,52,71,113],[60,71,113],[54,71,113],[71,113],[52,71,113],[53,58,71,113],[71,113,259],[71,113,198,248,249],[71,113,248,249,250,251,253],[71,113,252],[71,113,248],[71,113,204],[71,113,200,201,202,205],[71,113,199],[71,113,200,240],[71,113,241],[71,113,200],[71,113,235],[71,113,235,244],[71,113,199,200,201,202,203,205,206,207,208,235,236,237,238,239,241,242,243,244,245,246,247],[71,113,204,210,240],[71,113,204,239],[71,113,204,210,211,219,221,242],[71,113,204,216,239],[71,113,202,204,239],[71,113,204,227,239],[71,113,204,217,218],[71,113,204,218,239],[71,113,204,217,218,239],[71,113,204,213,214,215,239],[71,113,204,217,239],[71,113,203],[71,113,204,209],[71,113,204,211,239],[71,113,204,220],[71,113,204,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,240],[71,113,203,207,208,235,237],[71,113,202,204,207,239],[71,113,202,204,207,223,236,239],[71,113,207],[71,113,207,208,238],[71,113,203,207,238],[71,113,114,125,160],[71,113,283,284],[71,110,113],[71,112,113],[71,113,118,145],[71,113,114,124,132,142,153],[71,113,114,115,124,132],[66,67,68,71,113],[71,113,116,154],[71,113,117,118,125,133],[71,113,118,142,150],[71,113,119,121,124,132],[71,112,113,120],[71,113,121,122],[71,113,123,124],[71,112,113,124],[71,113,124,125,126,142,153],[71,113,124,125,126,139,142,145],[71,113,121,124,127,132,142,153],[71,113,124,125,127,128,132,142,150,153],[71,113,127,129,142,150,153],[71,113,124,130],[71,113,131,153,158],[71,113,121,124,132,142],[71,113,133],[71,113,134],[71,112,113,135],[71,113,136,152,158],[71,113,137],[71,113,138],[71,113,124,139,140],[71,113,139,141,154,156],[71,113,124,142,143,145],[71,113,144,145],[71,113,142,143],[71,113,145],[71,113,146],[71,113,142,147],[71,113,124,148,149],[71,113,148,149],[71,113,118,132,142,150],[71,113,151],[113],[69,70,71,72,73,74,75,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],[71,113,132,152],[71,113,127,138,153],[71,113,118,154],[71,113,142,155],[71,113,131,156],[71,113,157],[71,108,113],[71,108,113,124,126,135,142,145,153,156,158],[71,113,142,159],[71,113,192,196,286],[71,113,262,265],[71,113,276],[71,113,262,263,265,266,267],[71,113,262],[71,113,262,263,265],[71,113,262,263],[71,113,272],[71,113,261,272],[71,113,261,272,273],[71,113,261,264],[71,113,257],[71,113,257,258,261],[71,113,261],[46,54,55,71,113],[56,71,113],[54,55,56,71,113,188,193,194],[46,71,113],[46,47,48,50,71,113],[47,48,49,50,71,113],[58,71,113,304,305,306,307,308,310],[58,71,113],[71,113,306,307,310,317],[71,113,304],[58,71,113,306,309],[71,113,306,307,309,310,312,313,314,315,318,319,320],[58,71,113,304,305,306,307,310],[58,71,113,306,307,311],[58,71,113,306,312],[58,71,113,307],[58,71,113,316],[58,71,113,306,309,310],[71,113,184],[71,113,182,184],[71,113,173,181,182,183,185,187],[71,113,171],[71,113,174,179,184,187],[71,113,170,187],[71,113,174,175,178,179,180,187],[71,113,174,175,176,178,179,187],[71,113,171,172,173,174,175,179,180,181,183,184,185,187],[71,113,187],[71,113,169,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186],[71,113,169,187],[71,113,174,176,177,179,180,187],[71,113,178,187],[71,113,179,180,184,187],[71,113,172,182],[71,113,260],[71,113,162,191],[71,113,161,162],[71,85,89,113,153],[71,85,113,142,153],[71,80,113],[71,82,85,113,150,153],[71,113,132,150],[71,113,160],[71,80,113,160],[71,82,85,113,132,153],[71,77,78,81,84,113,124,142,153],[71,77,83,113],[71,81,85,113,145,153,160],[71,101,113,160],[71,79,80,113,160],[71,85,113],[71,79,80,81,82,83,84,85,86,87,89,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,113],[71,85,92,93,113],[71,83,85,93,94,113],[71,84,113],[71,77,80,85,113],[71,85,89,93,94,113],[71,89,113],[71,83,85,88,113,153],[71,77,82,83,85,89,92,113],[71,113,142],[71,80,85,101,113,158,160],[71,113,269,270],[71,113,269],[71,113,192,269,270,286],[71,113,192,194,254,286],[71,113,124,125,127,128,129,132,142,150,153,159,160,162,163,164,165,166,167,168,188,189,190,191],[71,113,164,165,166,167],[71,113,164,165,166],[71,113,164],[71,113,165],[71,113,162],[71,113,287],[71,113,125,142,158,192,262,268,271,274,275,277,278,279,280,281,282,286],[71,113,125,142,158,192,262,265,268,271,274,275,277,278,279,280,281,282,286,300,301,302],[71,113,268,278,279,286],[71,113,195],[50,57,71,113],[50,71,113],[51,58,71,113],[71,113,293],[58,71,113,290],[58,71,113,290,291,292],[71,113,192,286],[51,63,71,113,303,321],[51,64,71,113,303,321],[51,58,59,61,62,71,113],[51,58,62,63,71,113],[51,53,58,61,62,63,64,71,113],[51,71,113],[51,71,113,134,153,192,197,255,286],[51,71,113,153,256,288],[51,52,93,135],[60,93,135],[54,96,138],[96,138],[52,96,138],[53,58,96,138],[96,138,229,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265],[96,138,229,264],[96,138,229,252,264],[96,138,207,209],[96,138,199,204,209,212],[96,138,199,201,202,204,205,212],[96,138,197,207],[96,138,199,200,203,204,205,212],[96,138,229,238,239,240,264],[96,138,204,205,209,212],[96,138,229,241,264],[96,138,209],[96,138,229,242,243],[96,138,229,236,264],[96,138,227,229,264],[96,138,194,196,197,198,199,200,201,203,204,205,206,207,208,209,210,211],[96,138,217,221,313],[96,138,149,150,152,153,154,157,167,175,178,184,185,187,188,189,190,191,192,193,213,214,215,216],[96,138,224],[96,138,225,226,227,230],[96,138,228],[96,138,229],[96,138,225],[96,138,212],[96,138,187],[96,138,189,190,191,192],[96,138,203,212],[96,138,198,206,207,208,210,212],[54,55,56,96,138,213,218,219],[96,138,220],[96,138,232],[96,138,229,234],[96,138,229,235,265],[96,138,196,197,198,199,200,204,205,206,208,209,210,212],[96,138,229,242,264],[96,138,199,200,201,203,204,212],[96,138,229,245],[96,138,229,235,236,244,246,267],[96,138,284],[96,138,282],[96,138,161,177,183],[96,102,103,106,109,138,149,167,178],[96,110,138],[96,114,138],[96,108,110,113,138,178],[51,58,72,114],[51,58,75,117],[51,58,73,115],[51,58,74,116],[96,110,114,138,178],[96,102,105,110,138],[96,110,117,118,138],[96,108,110,118,119,138],[96,110,114,118,119,138],[96,109,138],[96,102,107,108,110,114,117,138],[96,110,138,167,178],[96,105,138,185],[96,138,185],[51,58,78,120],[96,126,138,185],[96,107,110,138,157,178],[96,105,110,126,138,183,185],[96,105,138],[96,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,138],[96,133,138],[96,135,138],[96,137,138],[96,138,143,170],[96,138,139,149,157,167,178],[96,138,139,140,149,157],[96,138,141,179],[96,138,142,143,150,158],[96,138,144,146,149,157],[96,138,143,167,175],[96,137,138,145],[96,138,146,147],[96,138,148,149],[96,137,138,149],[96,138,149,150,151,167,178],[96,138,149,150,151,164,167,170],[51,58,77,119],[51,58,76,118],[96,137,138,160],[96,138,146,149,152,157,167,178],[96,138,149,150,152,153,157,167,175,178],[96,138,152,154,167,175,178],[96,138,149,155],[96,138,156,178,183],[96,138,146,149,157,167],[51,58,79,121],[51,58,80,122],[51,58,81,123],[96,102,108,138],[96,138,158],[96,138,159],[96,138,196],[96,138,223,273,274],[96,138,273],[96,138,260],[96,138,228,232,233,260,262],[96,138,225,265],[96,138,277],[96,138,287,290],[96,138,224,225,226,227,228,230,231,232,233,260,261,262,263,264,266,267,268,269,270,271,272],[96,138,139,150,185],[51,96,138,159,178,217,222,280,313],[96,138,266],[96,138,227,229,232,248,261,264],[96,138,232,233,263],[46,54,55,96,138],[56,96,138],[96,138,194,212],[46,96,138],[46,47,48,50,96,138],[47,48,49,50,96,138],[96,138,217,294,295,313],[96,138,150,167,183,217,287,293,296,300,301,304,305,306,307,308,309,313],[58,95,137,316,317],[96,138,302],[96,138,287,288],[96,138,314],[95,137],[96,138,286,298,299],[96,138,310,311],[95,137,216,312],[95,137,318],[58,95,137,316],[96,138,294,295],[51,58,82,124],[96,138,167,168],[94,95,96,97,98,99,100,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],[96,133,138,149,151,160,167,170,178,181,183],[96,138,167,184],[96,138,167,172],[96,138,149,173,174],[96,138,167,180],[96,138,171],[96,138,176],[96,138,157,177],[96,138,182],[96,138,187,216],[96,138,186,187],[96,138,170],[96,138,152,163,178],[96,138,143,179],[96,138,173,174],[96,138,156,181],[96,138,143,157,167,175],[96,138,227,229,232,264],[96,138,163],[96,138,162],[96,138,169,170],[96,138,273,274,275,276,278],[96,104,105,138,185],[51,58,89,131],[51,58,88,130],[96,106,110,138,170,178,185],[96,138,167],[51,58,91,133],[51,58,90,132],[51,58,86,128],[51,58,85,127],[51,58,87,129],[51,58,92,134],[51,58,93,135],[51,58,96,138],[51,58,83,125],[96,107,110,138,175,178],[96,138,157,175],[91,92,93,96,138],[138],[51,58,94,136],[51,58,95,137],[51,58,84,126],[96,138,217,219,279,313],[96,138,260,269],[96,138,228,232,263],[96,138,229,243,264],[96,138,189,190,191],[96,138,149,167,168,170],[96,138,149,164,165],[96,138,164,166,179,181],[96,138,189],[96,138,190],[96,138,287],[96,138,282,283,286],[76,118],[96,138,285],[96,138,195,212],[50,57,96,138],[50,96,138],[58,76,118,295],[96,138,287,288,290],[96,138,286,289],[96,138,287,288,290,291,292],[96,138,294],[51,96,138,178,281,315],[96,138,286,298],[51,96,138],[96,138,229,242,243,264],[96,138,286]],"referencedMap":[[60,1],[61,2],[55,3],[54,4],[52,4],[53,5],[59,6],[260,7],[250,8],[254,9],[253,10],[252,11],[198,4],[205,12],[203,13],[200,14],[201,4],[241,15],[199,4],[242,16],[206,17],[243,18],[244,4],[245,19],[248,20],[211,21],[240,22],[212,22],[222,23],[217,24],[223,25],[224,22],[225,22],[226,22],[227,22],[228,22],[229,26],[219,27],[230,28],[218,22],[231,29],[213,22],[216,30],[215,22],[214,31],[204,32],[209,12],[232,33],[220,34],[221,35],[233,22],[210,33],[234,22],[235,36],[238,37],[236,38],[237,39],[207,4],[208,40],[239,41],[202,4],[246,42],[247,18],[249,43],[251,4],[259,4],[285,44],[283,4],[161,4],[110,45],[111,45],[112,46],[113,47],[114,48],[115,49],[66,4],[69,50],[67,4],[68,4],[116,51],[117,52],[118,53],[119,54],[120,55],[121,56],[122,56],[123,57],[124,58],[125,59],[126,60],[72,4],[127,61],[128,62],[129,63],[130,64],[131,65],[132,66],[133,67],[134,68],[135,69],[136,70],[137,71],[138,72],[139,73],[140,73],[141,74],[142,75],[144,76],[143,77],[145,78],[146,79],[147,80],[148,81],[149,82],[150,83],[151,84],[71,85],[70,4],[160,86],[152,87],[153,88],[154,89],[155,90],[156,91],[157,92],[73,4],[74,4],[75,4],[109,93],[158,94],[159,95],[197,96],[275,4],[276,97],[277,98],[268,99],[263,100],[266,101],[278,102],[272,4],[302,103],[273,104],[274,105],[281,105],[301,4],[265,106],[267,106],[258,107],[262,108],[264,109],[257,4],[56,110],[57,111],[195,112],[47,113],[48,114],[50,115],[46,4],[309,116],[314,117],[318,118],[304,4],[305,119],[310,120],[315,4],[321,121],[308,122],[312,123],[313,124],[306,117],[320,125],[319,4],[317,126],[316,117],[307,127],[284,4],[76,4],[49,4],[168,4],[193,4],[185,128],[183,129],[184,130],[172,131],[173,129],[180,132],[171,133],[176,134],[186,4],[177,135],[182,136],[188,137],[187,138],[170,139],[178,140],[179,141],[174,142],[181,128],[175,143],[261,144],[163,145],[162,146],[169,4],[279,4],[44,4],[45,4],[8,4],[9,4],[11,4],[10,4],[2,4],[12,4],[13,4],[14,4],[15,4],[16,4],[17,4],[18,4],[19,4],[3,4],[4,4],[20,4],[24,4],[21,4],[22,4],[23,4],[25,4],[26,4],[27,4],[5,4],[28,4],[29,4],[30,4],[31,4],[6,4],[35,4],[32,4],[33,4],[34,4],[36,4],[7,4],[37,4],[42,4],[43,4],[38,4],[39,4],[40,4],[41,4],[1,4],[194,4],[92,147],[99,148],[91,147],[106,149],[83,150],[82,151],[105,152],[100,153],[103,154],[85,155],[84,156],[80,157],[79,152],[102,158],[81,159],[86,160],[87,4],[90,160],[77,4],[108,161],[107,160],[94,162],[95,163],[97,164],[93,165],[96,166],[101,152],[88,167],[89,168],[98,169],[78,170],[104,171],[280,172],[270,173],[271,172],[282,174],[269,4],[255,175],[192,176],[189,177],[167,178],[165,179],[164,4],[166,180],[190,4],[191,181],[288,182],[287,183],[303,184],[286,183],[300,185],[311,4],[196,186],[58,187],[51,188],[65,189],[294,190],[297,4],[298,4],[291,191],[292,191],[293,192],[290,4],[295,193],[296,4],[322,194],[323,195],[63,196],[64,197],[299,198],[62,199],[256,200],[289,201]],"exportedModulesMap":[[60,202],[61,203],[55,204],[54,205],[52,205],[53,206],[59,207],[260,208],[250,209],[254,210],[253,209],[252,209],[198,211],[205,212],[203,213],[200,214],[201,215],[241,216],[199,217],[242,218],[206,219],[243,209],[244,220],[245,221],[248,222],[211,205],[240,209],[212,223],[222,224],[217,225],[223,205],[224,205],[225,226],[226,205],[227,205],[228,227],[229,228],[219,205],[230,229],[218,205],[231,230],[213,231],[216,232],[215,205],[214,233],[204,234],[209,235],[232,205],[220,236],[221,237],[233,238],[210,219],[234,229],[235,239],[238,209],[236,240],[237,209],[207,241],[208,211],[239,242],[202,243],[246,244],[247,245],[249,209],[251,209],[259,209],[285,246],[283,247],[161,248],[110,249],[111,250],[112,205],[113,251],[114,252],[115,250],[66,253],[69,254],[67,255],[68,256],[116,257],[117,257],[118,258],[119,259],[120,260],[121,261],[122,262],[123,263],[124,264],[125,265],[126,266],[72,267],[127,268],[128,269],[129,270],[130,266],[131,271],[132,250],[133,272],[134,273],[135,274],[136,274],[137,275],[138,276],[139,277],[140,278],[141,279],[142,280],[144,281],[143,282],[145,283],[146,284],[147,284],[148,285],[149,286],[150,287],[151,288],[71,289],[70,290],[160,291],[152,292],[153,293],[154,294],[155,295],[156,296],[157,297],[73,298],[74,299],[75,300],[109,301],[158,302],[159,303],[197,304],[275,305],[276,205],[277,306],[268,307],[263,308],[266,309],[278,310],[272,307],[302,311],[273,312],[274,313],[281,314],[301,205],[265,209],[267,315],[258,209],[262,316],[264,317],[257,239],[56,318],[57,319],[195,320],[47,321],[48,322],[50,323],[46,205],[309,324],[314,325],[318,326],[304,327],[305,328],[310,205],[315,329],[321,330],[308,331],[312,332],[313,325],[306,205],[320,333],[319,334],[317,335],[316,330],[307,336],[284,205],[76,337],[49,205],[168,338],[193,205],[185,339],[183,340],[184,341],[172,342],[173,343],[180,344],[171,345],[176,346],[186,205],[177,347],[182,348],[188,349],[187,350],[170,351],[178,352],[179,353],[174,354],[181,355],[175,356],[261,357],[163,358],[162,359],[169,360],[279,361],[44,205],[45,205],[8,205],[9,205],[11,205],[10,205],[2,205],[12,205],[13,205],[14,205],[15,205],[16,205],[17,205],[18,205],[19,205],[3,205],[4,205],[20,205],[24,205],[21,205],[22,205],[23,205],[25,205],[26,205],[27,205],[5,205],[28,205],[29,205],[30,205],[31,205],[6,205],[35,205],[32,205],[33,205],[34,205],[36,205],[7,205],[37,205],[42,205],[43,205],[38,205],[39,205],[40,205],[41,205],[1,205],[194,205],[92,205],[99,205],[91,205],[106,362],[83,363],[82,364],[105,365],[100,205],[103,366],[85,367],[84,368],[80,369],[79,370],[102,205],[81,371],[86,372],[87,373],[90,374],[77,375],[108,376],[107,377],[94,378],[95,205],[97,205],[93,205],[96,379],[101,205],[88,380],[89,381],[98,205],[78,382],[104,266],[280,383],[270,384],[271,385],[282,205],[269,205],[255,386],[192,387],[189,205],[167,388],[165,389],[164,389],[166,390],[190,391],[191,392],[288,393],[287,394],[303,395],[286,396],[300,331],[311,205],[196,397],[58,398],[51,399],[65,189],[294,205],[297,400],[298,205],[291,401],[292,402],[293,403],[290,402],[295,404],[296,336],[322,330],[323,405],[63,196],[64,197],[299,406],[62,407],[256,408],[289,409]],"semanticDiagnosticsPerFile":[60,61,55,54,52,53,59,260,250,254,253,252,198,205,203,200,201,241,199,242,206,243,244,245,248,211,240,212,222,217,223,224,225,226,227,228,229,219,230,218,231,213,216,215,214,204,209,232,220,221,233,210,234,235,238,236,237,207,208,239,202,246,247,249,251,259,285,283,161,110,111,112,113,114,115,66,69,67,68,116,117,118,119,120,121,122,123,124,125,126,72,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,144,143,145,146,147,148,149,150,151,71,70,160,152,153,154,155,156,157,73,74,75,109,158,159,197,275,276,277,268,263,266,278,272,302,273,274,281,301,265,267,258,262,264,257,56,57,195,47,48,50,46,309,314,318,304,305,310,315,321,308,312,313,306,320,319,317,316,307,284,76,49,168,193,185,183,184,172,173,180,171,176,186,177,182,188,187,170,178,179,174,181,175,261,163,162,169,279,44,45,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,1,194,92,99,91,106,83,82,105,100,103,85,84,80,79,102,81,86,87,90,77,108,107,94,95,97,93,96,101,88,89,98,78,104,280,270,271,282,269,255,192,189,167,165,164,166,190,191,288,287,303,286,300,311,196,58,51,65,294,297,298,291,292,293,290,295,296,322,323,63,64,299,62,256,289],"affectedFilesPendingEmit":[322,323,63,64,299,62,256,289],"emitSignatures":[62,63,64]},"version":"5.3.3"}
|
package/vite.config.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { fileURLToPath, URL } from 'node:url'
|
|
2
|
+
import { resolve } from 'node:path'
|
|
3
|
+
import { defineConfig } from 'vite'
|
|
4
|
+
import vue from '@vitejs/plugin-vue'
|
|
5
|
+
import dts from 'vite-plugin-dts'
|
|
6
|
+
|
|
7
|
+
export default defineConfig({
|
|
8
|
+
plugins: [
|
|
9
|
+
vue(),
|
|
10
|
+
dts({
|
|
11
|
+
insertTypesEntry: true,
|
|
12
|
+
})
|
|
13
|
+
],
|
|
14
|
+
resolve: {
|
|
15
|
+
alias: {
|
|
16
|
+
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
build: {
|
|
20
|
+
lib: {
|
|
21
|
+
entry: resolve(__dirname, './src/index.ts'),
|
|
22
|
+
name: 'FzIcons',
|
|
23
|
+
},
|
|
24
|
+
rollupOptions: {
|
|
25
|
+
external: ['vue', '@fortawesome/fontawesome-svg-core', '@fortawesome/vue-fontawesome', '@awesome.me/kit-8137893ad3'],
|
|
26
|
+
output: {
|
|
27
|
+
globals: {
|
|
28
|
+
vue: 'Vue',
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
})
|
|
34
|
+
|