@fiscozen/card 1.0.0 → 1.0.2
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 +18 -0
- package/dist/card.js +1027 -90
- package/dist/card.umd.cjs +1 -1
- package/dist/src/types.d.ts +2 -0
- package/dist/style.css +1 -0
- package/package.json +9 -12
- package/src/FzCard.vue +3 -0
- package/src/__tests__/FzCard.spec.ts +890 -0
- package/src/__tests__/__snapshots__/FzCard.spec.ts.snap +126 -0
- package/src/types.ts +2 -0
- package/tsconfig.tsbuildinfo +1 -1
- package/vitest.config.ts +9 -1
- package/dist/src/__test__/FzCard.test.d.ts +0 -1
- package/src/__test__/FzCard.test.ts +0 -576
- package/src/__test__/__snapshots__/FzCard.test.ts.snap +0 -19
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
2
|
+
|
|
3
|
+
exports[`FzCard > Snapshots > should match snapshot - backoffice environment 1`] = `
|
|
4
|
+
"<section class="border-1 border-solid rounded flex flex-col bg-core-white text-core-black border-grey-100">
|
|
5
|
+
<header class="">
|
|
6
|
+
<div class="border-solid pt-16 px-16 flex flex-row justify-between">
|
|
7
|
+
<div class="flex flex-row gap-12 items-start py-2">
|
|
8
|
+
<h2 class="text-core-black font-medium text-xl m-0 p-0 break-words overflow-wrap-anywhere min-w-0 flex-shrink" title="Test Card">Test Card</h2>
|
|
9
|
+
</div>
|
|
10
|
+
<div class="flex flex-row gap-8 items-start">
|
|
11
|
+
<!--v-if-->
|
|
12
|
+
<!--v-if-->
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</header>
|
|
16
|
+
<article class="p-16"></article>
|
|
17
|
+
<footer class="border-solid pt-0 px-16 pb-16 flex gap-12 items-center justify-end">
|
|
18
|
+
<div data-v-da7f5873="" class="fz-container fz-container--horizontal gap-section-content-sm align-items-center layout-default">
|
|
19
|
+
<!--v-if-->
|
|
20
|
+
<!--v-if--><button type="button" aria-disabled="false" class="relative rounded flex flex-shrink items-center justify-center font-normal !text-[16px] !leading-[20px] border-1 border-transparent gap-8 h-32 px-12 min-w-96 bg-blue-500 text-core-white hover:bg-blue-600 focus:bg-blue-500 focus:!border-blue-600 disabled:bg-blue-200">
|
|
21
|
+
<!--v-if-->
|
|
22
|
+
<div class="truncate font-normal !text-[16px] !leading-[20px]">Save</div>
|
|
23
|
+
<!--v-if-->
|
|
24
|
+
</button>
|
|
25
|
+
</div>
|
|
26
|
+
</footer>
|
|
27
|
+
</section>"
|
|
28
|
+
`;
|
|
29
|
+
|
|
30
|
+
exports[`FzCard > Snapshots > should match snapshot - collapsible 1`] = `
|
|
31
|
+
"<section class="border-1 border-solid rounded flex flex-col bg-core-white text-core-black border-grey-100">
|
|
32
|
+
<header class="cursor-pointer">
|
|
33
|
+
<div class="border-solid pt-16 px-16 flex flex-row justify-between">
|
|
34
|
+
<div class="flex flex-row gap-12 items-start py-8">
|
|
35
|
+
<h2 class="text-core-black font-medium text-xl m-0 p-0 break-words overflow-wrap-anywhere min-w-0 flex-shrink" title="Test Card">Test Card</h2>
|
|
36
|
+
</div>
|
|
37
|
+
<div class="flex flex-row gap-8 items-start">
|
|
38
|
+
<!--v-if--><span data-v-8090b1b6="" class="fz-icon-button-wrapper relative fz-icon-button-wrapper--frontoffice"><button data-v-8090b1b6="" type="button" aria-disabled="false" class="relative rounded flex flex-shrink items-center justify-center font-normal !text-[16px] !leading-[20px] border-1 border-transparent gap-8 h-44 px-12 min-w-96 bg-transparent text-grey-500 !border-transparent hover:bg-grey-100 hover:!border-grey-100 focus:bg-transparent focus:!border-blue-600 disabled:bg-grey-50 disabled:text-grey-200 disabled:!border-grey-200" aria-label=""><div class="flex items-center justify-items-center"><div class="flex items-center justify-center w-[20px] h-[20px]"><svg class="svg-inline--fa fa-chevron-up h-[16px]" aria-hidden="true" focusable="false" data-prefix="far" data-icon="chevron-up" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="" fill="currentColor" d="M239 111c9.4-9.4 24.6-9.4 33.9 0L465 303c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-175-175L81 337c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 111z"></path></svg></div></div><!--v-if--><!--v-if--></button><!--v-if--></span>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
</header>
|
|
42
|
+
<article class="p-16"></article>
|
|
43
|
+
<!--v-if-->
|
|
44
|
+
</section>"
|
|
45
|
+
`;
|
|
46
|
+
|
|
47
|
+
exports[`FzCard > Snapshots > should match snapshot - default state 1`] = `
|
|
48
|
+
"<section class="border-1 border-solid rounded flex flex-col bg-core-white text-core-black border-grey-100">
|
|
49
|
+
<header class="">
|
|
50
|
+
<div class="border-solid pt-16 px-16 flex flex-row justify-between">
|
|
51
|
+
<div class="flex flex-row gap-12 items-start py-8">
|
|
52
|
+
<h2 class="text-core-black font-medium text-xl m-0 p-0 break-words overflow-wrap-anywhere min-w-0 flex-shrink" title="Test Card">Test Card</h2>
|
|
53
|
+
</div>
|
|
54
|
+
<div class="flex flex-row gap-8 items-start">
|
|
55
|
+
<!--v-if-->
|
|
56
|
+
<!--v-if-->
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
</header>
|
|
60
|
+
<article class="p-16"></article>
|
|
61
|
+
<!--v-if-->
|
|
62
|
+
</section>"
|
|
63
|
+
`;
|
|
64
|
+
|
|
65
|
+
exports[`FzCard > Snapshots > should match snapshot - with all actions 1`] = `
|
|
66
|
+
"<section class="border-1 border-solid rounded flex flex-col bg-core-white text-core-black border-grey-100">
|
|
67
|
+
<header class="">
|
|
68
|
+
<div class="border-solid pt-16 px-16 flex flex-row justify-between">
|
|
69
|
+
<div class="flex flex-row gap-12 items-start py-8">
|
|
70
|
+
<h2 class="text-core-black font-medium text-xl m-0 p-0 break-words overflow-wrap-anywhere min-w-0 flex-shrink" title="Test Card">Test Card</h2>
|
|
71
|
+
</div>
|
|
72
|
+
<div class="flex flex-row gap-8 items-start">
|
|
73
|
+
<!--v-if-->
|
|
74
|
+
<!--v-if-->
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</header>
|
|
78
|
+
<article class="p-16"></article>
|
|
79
|
+
<footer class="border-solid pt-0 px-16 pb-16 flex gap-12 items-center justify-end">
|
|
80
|
+
<div data-v-da7f5873="" class="fz-container fz-container--horizontal gap-section-content-sm align-items-center layout-default"><span data-v-8090b1b6="" class="fz-icon-button-wrapper relative fz-icon-button-wrapper--frontoffice"><button data-v-8090b1b6="" type="button" aria-disabled="false" class="relative rounded flex flex-shrink items-center justify-center font-normal !text-[16px] !leading-[20px] border-1 border-transparent gap-8 h-44 px-12 min-w-96 bg-transparent text-grey-500 !border-transparent hover:bg-grey-100 hover:!border-grey-100 focus:bg-transparent focus:!border-blue-600 disabled:bg-grey-50 disabled:text-grey-200 disabled:!border-grey-200" aria-label=""><div class="flex items-center justify-items-center"><div class="flex items-center justify-center w-[20px] h-[20px]"><svg class="svg-inline--fa fa-bell h-[16px]" aria-hidden="true" focusable="false" data-prefix="far" data-icon="bell" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path class="" fill="currentColor" d="M224 0c-17.7 0-32 14.3-32 32l0 19.2C119 66 64 130.6 64 208l0 25.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416l400 0c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6C399.5 322.9 384 278.8 384 233.4l0-25.4c0-77.4-55-142-128-156.8L256 32c0-17.7-14.3-32-32-32zm0 96c61.9 0 112 50.1 112 112l0 25.4c0 47.9 13.9 94.6 39.7 134.6L72.3 368C98.1 328 112 281.3 112 233.4l0-25.4c0-61.9 50.1-112 112-112zm64 352l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z"></path></svg></div></div><!--v-if--><!--v-if--></button><!--v-if--></span><button type="button" aria-disabled="false" class="relative rounded flex flex-shrink items-center justify-center font-normal !text-[16px] !leading-[20px] border-1 border-transparent gap-8 h-44 px-12 min-w-96 bg-core-white text-grey-500 !border-grey-200 hover:bg-grey-100 hover:!border-grey-200 focus:bg-core-white focus:!border-blue-600 disabled:bg-grey-50 disabled:text-grey-200 disabled:!border-grey-200">
|
|
81
|
+
<!--v-if-->
|
|
82
|
+
<div class="truncate font-normal !text-[16px] !leading-[20px]">Cancel</div>
|
|
83
|
+
<!--v-if-->
|
|
84
|
+
</button><button type="button" aria-disabled="false" class="relative rounded flex flex-shrink items-center justify-center font-normal !text-[16px] !leading-[20px] border-1 border-transparent gap-8 h-44 px-12 min-w-96 bg-blue-500 text-core-white hover:bg-blue-600 focus:bg-blue-500 focus:!border-blue-600 disabled:bg-blue-200">
|
|
85
|
+
<!--v-if-->
|
|
86
|
+
<div class="truncate font-normal !text-[16px] !leading-[20px]">Save</div>
|
|
87
|
+
<!--v-if-->
|
|
88
|
+
</button></div>
|
|
89
|
+
</footer>
|
|
90
|
+
</section>"
|
|
91
|
+
`;
|
|
92
|
+
|
|
93
|
+
exports[`FzCard > Snapshots > should match snapshot - with all color variants 1`] = `
|
|
94
|
+
"<section class="border-1 border-solid rounded flex flex-col bg-background-alice-blue text-core-black border-background-alice-blue">
|
|
95
|
+
<header class="">
|
|
96
|
+
<div class="border-solid pt-16 px-16 flex flex-row justify-between">
|
|
97
|
+
<div class="flex flex-row gap-12 items-start py-8">
|
|
98
|
+
<h2 class="text-core-black font-medium text-xl m-0 p-0 break-words overflow-wrap-anywhere min-w-0 flex-shrink" title="Test Card">Test Card</h2>
|
|
99
|
+
</div>
|
|
100
|
+
<div class="flex flex-row gap-8 items-start">
|
|
101
|
+
<!--v-if-->
|
|
102
|
+
<!--v-if-->
|
|
103
|
+
</div>
|
|
104
|
+
</div>
|
|
105
|
+
</header>
|
|
106
|
+
<article class="p-16"></article>
|
|
107
|
+
<!--v-if-->
|
|
108
|
+
</section>"
|
|
109
|
+
`;
|
|
110
|
+
|
|
111
|
+
exports[`FzCard > Snapshots > should match snapshot - with info icon 1`] = `
|
|
112
|
+
"<section class="border-1 border-solid rounded flex flex-col bg-core-white text-core-black border-grey-100">
|
|
113
|
+
<header class="">
|
|
114
|
+
<div class="border-solid pt-16 px-16 flex flex-row justify-between">
|
|
115
|
+
<div class="flex flex-row gap-12 items-start py-8">
|
|
116
|
+
<h2 class="text-core-black font-medium text-xl m-0 p-0 break-words overflow-wrap-anywhere min-w-0 flex-shrink" title="Test Card">Test Card</h2>
|
|
117
|
+
</div>
|
|
118
|
+
<div class="flex flex-row gap-8 items-start"><span data-v-8090b1b6="" class="fz-icon-button-wrapper relative fz-icon-button-wrapper--frontoffice"><button data-v-8090b1b6="" type="button" aria-disabled="false" class="relative rounded flex flex-shrink items-center justify-center font-normal !text-[16px] !leading-[20px] border-1 border-transparent gap-8 h-44 px-12 min-w-96 bg-transparent text-grey-500 !border-transparent hover:bg-grey-100 hover:!border-grey-100 focus:bg-transparent focus:!border-blue-600 disabled:bg-grey-50 disabled:text-grey-200 disabled:!border-grey-200" aria-label=""><div class="flex items-center justify-items-center"><div class="flex items-center justify-center w-[20px] h-[20px]"><svg class="svg-inline--fa fa-circle-question h-[16px]" aria-hidden="true" focusable="false" data-prefix="far" data-icon="circle-question" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="" fill="currentColor" d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm169.8-90.7c7.9-22.3 29.1-37.3 52.8-37.3l58.3 0c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24l0-13.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1l-58.3 0c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"></path></svg></div></div><!--v-if--><!--v-if--></button><!--v-if--></span>
|
|
119
|
+
<!--v-if-->
|
|
120
|
+
</div>
|
|
121
|
+
</div>
|
|
122
|
+
</header>
|
|
123
|
+
<article class="p-16"></article>
|
|
124
|
+
<!--v-if-->
|
|
125
|
+
</section>"
|
|
126
|
+
`;
|
package/src/types.ts
CHANGED
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +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.13/node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/.pnpm/@vue+reactivity@3.5.13/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/.pnpm/@vue+runtime-core@3.5.13/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../node_modules/.pnpm/@vue+runtime-dom@3.5.13/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/.pnpm/vue@3.5.13_typescript@5.3.3/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/@babel+types@7.26.9/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.26.9/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/@vue+compiler-core@3.5.13/node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/.pnpm/@vue+compiler-dom@3.5.13/node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/.pnpm/vue@3.5.13_typescript@5.3.3/node_modules/vue/dist/vue.d.mts","./src/types.ts","../../node_modules/.pnpm/vue@3.5.13_typescript@5.9.3/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/vue@3.5.13_typescript@5.9.3/node_modules/vue/dist/vue.d.mts","../../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/@awesome.me+kit-8137893ad3@1.0.394/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.394/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.ts","../../node_modules/.pnpm/@fortawesome+vue-fontawesome@3.1.1_@fortawesome+fontawesome-svg-core@6.7.2_vue@3.5.13_typescript@5.9.3_/node_modules/@fortawesome/vue-fontawesome/index.d.ts","../icons/src/types.ts","../icons/src/fzicon.vue.ts","../icons/src/index.ts","../button/src/types.ts","../button/src/utils.ts","../button/src/fzbutton.vue.ts","../button/src/fziconbutton.vue.ts","../container/src/types.ts","../container/src/fzcontainer.vue.ts","../container/src/index.ts","../button/src/fzbuttongroup.vue.ts","../button/src/index.ts","./src/fzcard.vue.ts","./__vls_types.d.ts","./dist/src/types.d.ts","./dist/src/fzcard.vue.d.ts","./dist/src/index.d.ts","./dist/index.d.ts","./dist/src/__test__/fzcard.test.d.ts","./src/index.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.2/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","../../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/@vitest+runner@1.6.1/node_modules/@vitest/runner/dist/utils.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/ts5.6/buffer.buffer.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.76/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@18.19.76/node_modules/@types/node/ts5.6/index.d.ts","../../node_modules/.pnpm/@types+estree@1.0.6/node_modules/@types/estree/index.d.ts","../../node_modules/.pnpm/rollup@4.34.8/node_modules/rollup/dist/rollup.d.ts","../../node_modules/.pnpm/rollup@4.34.8/node_modules/rollup/dist/parseast.d.ts","../../node_modules/.pnpm/vite@5.4.14_@types+node@18.19.76/node_modules/vite/types/hmrpayload.d.ts","../../node_modules/.pnpm/vite@5.4.14_@types+node@18.19.76/node_modules/vite/types/customevent.d.ts","../../node_modules/.pnpm/vite@5.4.14_@types+node@18.19.76/node_modules/vite/types/hot.d.ts","../../node_modules/.pnpm/vite@5.4.14_@types+node@18.19.76/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.3/node_modules/postcss/lib/previous-map.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/input.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/declaration.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/root.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/warning.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/processor.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/result.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/document.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/rule.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/node.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/comment.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/container.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/at-rule.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/list.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/postcss.d.ts","../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/postcss.d.mts","../../node_modules/.pnpm/vite@5.4.14_@types+node@18.19.76/node_modules/vite/dist/node/runtime.d.ts","../../node_modules/.pnpm/vite@5.4.14_@types+node@18.19.76/node_modules/vite/types/importglob.d.ts","../../node_modules/.pnpm/vite@5.4.14_@types+node@18.19.76/node_modules/vite/types/metadata.d.ts","../../node_modules/.pnpm/vite@5.4.14_@types+node@18.19.76/node_modules/vite/dist/node/index.d.ts","../../node_modules/.pnpm/vite-node@1.6.1_@types+node@18.19.76/node_modules/vite-node/dist/trace-mapping.d-xyifztpm.d.ts","../../node_modules/.pnpm/vite-node@1.6.1_@types+node@18.19.76/node_modules/vite-node/dist/index-o2irwhkf.d.ts","../../node_modules/.pnpm/vite-node@1.6.1_@types+node@18.19.76/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/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../node_modules/.pnpm/vite-node@1.6.1_@types+node@18.19.76/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.76/node_modules/vite-node/dist/server.d.ts","../../node_modules/.pnpm/vitest@1.6.1_@types+node@18.19.76_jsdom@23.2.0/node_modules/vitest/dist/reporters-w_64as5f.d.ts","../../node_modules/.pnpm/vitest@1.6.1_@types+node@18.19.76_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.76_jsdom@23.2.0/node_modules/vitest/dist/index.d.ts","./src/__test__/fzcard.test.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/fs.d.ts","../button/src/fziconbutton.vue","../../node_modules/.pnpm/@types+estree@1.0.5/node_modules/@types/estree/index.d.ts","../button/src/fzbuttongroup.vue","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/util.d.ts","../button/src/fzbutton.vue","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/string_decoder.d.ts","../container/src/fzcontainer.vue","../../node_modules/.pnpm/vue@3.4.13_typescript@5.3.3/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/tasks-rsxe_qlo.d.ts","../../node_modules/.pnpm/vue@3.5.12_typescript@5.4.2/node_modules/vue/dist/vue.d.mts","../../node_modules/.pnpm/@fortawesome+fontawesome-svg-core@6.6.0/node_modules/@fortawesome/fontawesome-svg-core/index.d.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.194/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.ts","../icons/src/fzicon.vue"],"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","0","0","0","0","0","0","0","0","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",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"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",{"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},{"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",{"version":"0","affectsGlobalScope":true},{"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",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0"],"root":[57,[77,84],258],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[51,60,121,159],[62,121,159],[52,121,159],[121,159],[60,121,159],[56,61,121,159],[105,121,159],[121,156,159],[121,158,159],[121,159,164,192],[121,159,160,171,172,179,189,200],[121,159,160,161,171,179],[116,117,118,121,159],[121,159,162,201],[121,159,163,164,172,180],[121,159,164,189,197],[121,159,165,167,171,179],[121,158,159,166],[121,159,167,168],[121,159,171],[121,159,169,171],[121,158,159,171],[121,159,171,172,173,189,200],[121,159,171,172,173,186,189,192],[121,154,159,205],[121,159,167,171,174,179,189,200],[121,159,171,172,174,175,179,189,197,200],[121,159,174,176,189,197,200],[121,159,171,177],[121,159,178,200,205],[121,159,167,171,179,189],[121,159,180],[121,159,181],[121,158,159,182],[121,159,183,199,205],[121,159,184],[121,159,185],[121,159,171,186,187],[121,159,186,188,201,203],[121,159,171,189,190,191,192],[121,159,189,191],[121,159,189,190],[121,159,192],[121,159,193],[121,159,189],[121,159,171,195,196],[121,159,195,196],[121,159,164,179,189,197],[121,159,198],[159],[119,120,121,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206],[121,159,179,199],[121,159,174,185,200],[121,159,164,201],[121,159,189,202],[121,159,178,203],[121,159,204],[121,159,164,171,173,182,189,200,203,205],[121,159,189,206],[108,111,121,159],[121,159,247],[108,109,111,112,113,121,159],[108,121,159],[108,109,111,121,159],[108,109,121,159],[121,159,243],[107,121,159,243],[107,121,159,243,244],[107,110,121,159],[103,121,159],[103,104,107,121,159],[107,121,159],[46,52,53,121,159],[54,121,159],[46,121,159],[46,47,48,50,121,159],[47,48,49,50,121,159],[56,85,86,87,88,89,91,121,159],[56,121,159],[87,88,91,98,121,159],[85,121,159],[56,87,90,121,159],[87,88,90,91,93,94,95,96,99,100,101,121,159],[56,85,86,87,88,91,121,159],[56,87,88,92,121,159],[56,87,93,121,159],[56,88,121,159],[56,97,121,159],[56,87,90,91,121,159],[121,159,231],[121,159,229,231],[121,159,220,228,229,230,232],[121,159,218],[121,159,221,226,231,234],[121,159,217,234],[121,159,221,222,225,226,227,234],[121,159,221,222,223,225,226,234],[121,159,218,219,220,221,222,226,227,228,230,231,232,234],[121,159,234],[121,159,216,218,219,220,221,222,223,225,226,227,228,229,230,231,232,233],[121,159,216,234],[121,159,221,223,224,226,227,234],[121,159,225,234],[121,159,226,227,231,234],[121,159,219,229],[106,121,159],[121,159,209,238],[121,159,208,209],[121,131,135,159,200],[121,131,159,189,200],[121,126,159],[121,128,131,159,197,200],[121,159,179,197],[121,159,207],[121,126,159,207],[121,128,131,159,179,200],[121,123,124,127,130,159,171,189,200],[121,123,129,159],[121,127,131,159,192,200,207],[121,147,159,207],[121,125,126,159,207],[121,131,159],[121,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,141,142,143,144,145,146,148,149,150,151,152,153,159],[121,131,138,139,159],[121,129,131,139,140,159],[121,130,159],[121,123,126,131,159],[121,131,135,139,140,159],[121,135,159],[121,129,131,134,159,200],[121,123,128,129,131,135,138,159],[121,126,131,147,159,205,207],[121,159,240,241],[121,159,240],[121,159,239,240,241,253],[121,159,171,172,174,175,176,179,189,197,200,206,207,209,210,211,212,213,214,215,235,236,237,238],[121,159,211,212,213,214],[121,159,211,212,213],[121,159,211],[121,159,212],[121,159,209],[108,111,114,115,121,159,172,189,205,239,242,245,246,248,249,250,251,252,253,254,255,256],[108,114,115,121,159,172,189,205,239,242,245,246,248,249,250,251,252,253],[114,115,121,159,249,253],[50,55,121,159],[50,121,159],[51,56,67,68,69,121,159],[51,56,68,69,74,121,159],[51,56,68,69,70,121,159],[51,68,70,71,75,121,159],[51,67,121,159],[51,56,68,70,121,159],[51,56,121,159],[81,121,159],[56,79,121,159],[79,80,121,159],[51,77,102,121,159,257],[51,56,57,76,121,159],[51,57,77,121,159],[51,121,159],[51,56,72,121,159],[51,72,73,121,159],[51,56,63,64,65,121,159],[51,56,61,63,65,66,121,159],[51,60,126,164],[62,126,164],[52,126,164],[126,164],[60,126,164],[56,61,126,164],[56,93,126,164],[126,164,183,208],[132,137,153,259,260,261],[259],[132],[137],[126,159,164,210],[126,161,164],[112,115,126,164],[113,114,116,117,118,126,164],[113,114,116,126,164],[126,163,164],[126,164,169,197],[126,164,165,176,177,184,194,205],[126,164,165,166,176,184],[126,164,167,206],[126,164,168,169,177,185],[126,164,170,172,176,184],[126,164,169,194,202],[126,163,164,171],[126,164,172,173],[134,137,262,263],[126,164,174,176],[126,164,176],[126,163,164,176],[126,164,176,177,178,194,205],[126,164,176,177,178,191,194,197],[126,164,172,176,179,184,194,205],[126,164,176,177,179,180,184,194,202,205],[126,164,179,181,194,202,205],[126,164,176,182],[126,164,183,205,210],[126,164,172,176,184,194],[126,164,185],[126,164,186],[126,163,164,187],[126,164,188,204,210],[126,164,189],[126,164,176,191,192],[126,164,190],[126,164,191,193,206,208],[126,164,176,194,195,196,197],[126,164,194,195],[126,164,194,196],[126,164,197],[126,164,198],[113,114,126,164],[126,164,194,207],[126,164,194],[126,164,176,200,201],[126,164,200,201],[126,164,169,184,194,202],[126,164,203],[126,164,184,204],[126,164,179,190,205],[126,164,169,206],[126,164,245],[126,164,245,246],[113,126,164],[108,126,164],[111],[112,126,164],[126,164,214],[112,126,164,248,249],[126,164,176,177,179,180,181,184,194,202,205,211,212,214,215,216,217,218,219,220,240,241,242,243],[108,109,112,126,164],[92,93,96,103,126,164],[264],[56,102,126,164],[46,52,53,126,164],[54,126,164],[46,126,164],[46,47,48,50,126,164],[47,48,49,50,126,164],[56,90,91,92,93,94,96,126,164],[56,92,98,126,164],[56,84,126,164],[84,85,126,164],[90,126,164],[56,92,95,126,164],[56,126,164],[265,266],[56,92,95,96,126,164],[56,90,91,92,93,96,126,164],[86,126,164],[56,92,93,97,126,164],[126,164,214,243],[126,164,226,231,236,239],[126,164,226,228,229,231,232,239],[126,164,230,239],[126,164,216,217,218],[126,164,224,234],[126,164,217],[126,164,222,239],[126,164,236],[126,164,223],[126,164,226,227,228,230,231,239],[126,164,234,236],[126,164,223,224,225,226,227,231,232,233,235,236,237,239],[126,164,216],[126,164,231,232,236,239],[126,164,226,227,230,231,232,239],[126,164,221,239],[92,93,95,96,98,99,100,101,104,105,106,126,164],[126,164,169,176,178,187,194,205,208,210],[126,164,209],[112,126,164,248],[129,132,137],[129,130,133,136,260,262,267,268],[132,259],[137,262,267],[137,144,145],[136],[259,260],[260,267],[164],[137,141,145,146],[269],[133,137,259,260,262,270],[131,132,259],[129,135],[153,259,260],[141],[135,137,140,262],[137,141,262],[135,137,145,146],[263,271],[134,137,262,271],[121,122,123,126,164],[129,134,135,137,141,144],[126,164,216,217,218,219],[113,116,126,164],[126,164,239],[126,164,221,223,224,225,226,227,228,230,231,232,233,234,235,236,237,238],[126,164,225,233,234,235,237],[126,164,213,214],[124,125,126,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[126,164,194,211],[126,164,244,245,246,258],[126,164,252],[50,55,126,164],[50,126,164],[68,265,272,273,274],[265],[67,68,265],[51,56,125,163],[51,56,126,164],[51,56,123,161],[51,56,124,162],[51,56,122,160],[113,119,120,126,164,177,194,210,244,247,250,251,253,254,255,256,257,258],[51,72,126,164,275],[51,126,164],[65],[]],"referencedMap":[[62,1],[63,2],[53,3],[52,4],[60,4],[61,5],[64,6],[106,7],[105,4],[208,4],[156,8],[157,8],[158,9],[159,10],[160,11],[161,12],[116,4],[119,13],[117,4],[118,4],[162,14],[163,15],[164,16],[165,17],[166,18],[167,19],[168,19],[170,20],[169,21],[171,22],[172,23],[173,24],[155,25],[174,26],[175,27],[176,28],[177,29],[178,30],[179,31],[180,32],[181,33],[182,34],[183,35],[184,36],[185,37],[186,38],[187,38],[188,39],[189,40],[191,41],[190,42],[192,43],[193,44],[194,45],[195,46],[196,47],[197,48],[198,49],[121,50],[120,4],[207,51],[199,52],[200,53],[201,54],[202,55],[203,56],[204,57],[205,58],[206,59],[246,4],[247,60],[248,61],[114,62],[109,63],[112,64],[115,65],[243,4],[256,66],[244,67],[245,68],[251,68],[255,4],[111,69],[113,69],[104,70],[108,71],[110,72],[103,4],[54,73],[55,74],[47,75],[48,76],[50,77],[46,4],[90,78],[95,79],[99,80],[85,4],[86,81],[91,82],[96,4],[102,83],[89,84],[93,85],[94,86],[87,79],[101,87],[100,4],[98,88],[97,79],[88,89],[122,4],[49,4],[215,4],[232,90],[230,91],[231,92],[219,93],[220,91],[227,94],[218,95],[223,96],[233,4],[224,97],[229,98],[235,99],[234,100],[217,101],[225,102],[226,103],[221,104],[228,90],[222,105],[107,106],[210,107],[209,108],[216,4],[249,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],[138,109],[145,110],[137,109],[152,111],[129,112],[128,113],[151,114],[146,115],[149,116],[131,117],[130,118],[126,119],[125,114],[148,120],[127,121],[132,122],[133,4],[136,122],[123,4],[154,123],[153,122],[140,124],[141,125],[143,126],[139,127],[142,128],[147,114],[134,129],[135,130],[144,131],[124,45],[150,132],[250,133],[241,134],[242,133],[252,135],[240,4],[239,136],[236,137],[214,138],[212,139],[211,4],[213,140],[237,4],[238,141],[257,142],[253,143],[254,144],[92,4],[56,145],[51,146],[59,145],[58,146],[70,147],[75,148],[71,149],[76,150],[68,151],[69,152],[78,153],[82,154],[83,4],[80,155],[81,156],[79,4],[258,157],[77,158],[84,159],[57,160],[73,161],[74,162],[72,160],[66,163],[67,164],[65,160]],"exportedModulesMap":[[62,165],[63,166],[53,167],[52,168],[60,168],[61,169],[64,170],[106,171],[105,168],[208,172],[156,173],[157,174],[158,175],[159,176],[160,177],[161,178],[116,179],[119,180],[117,181],[118,179],[162,178],[163,182],[164,183],[165,184],[166,185],[167,186],[168,187],[170,188],[169,189],[171,190],[172,191],[173,191],[155,192],[174,193],[175,194],[176,195],[177,196],[178,197],[179,198],[180,199],[181,200],[182,201],[183,202],[184,203],[185,204],[186,205],[187,206],[188,207],[189,208],[191,209],[190,210],[192,209],[193,211],[194,212],[195,213],[196,214],[197,215],[198,216],[121,168],[120,217],[207,218],[199,219],[200,220],[201,221],[202,222],[203,223],[204,224],[205,225],[206,226],[246,227],[247,228],[248,168],[114,229],[109,230],[112,231],[115,232],[243,233],[256,234],[244,235],[245,168],[251,168],[255,228],[113,236],[104,237],[108,168],[110,238],[103,239],[54,240],[55,241],[47,242],[48,243],[50,244],[46,168],[90,168],[95,245],[99,246],[85,247],[86,248],[91,249],[96,250],[102,251],[89,252],[93,253],[94,254],[87,255],[101,168],[100,251],[98,256],[97,168],[88,168],[122,168],[215,257],[232,258],[230,259],[231,260],[219,261],[220,168],[227,262],[218,263],[223,264],[233,265],[224,266],[229,267],[235,268],[234,269],[217,270],[225,268],[226,271],[221,168],[228,272],[222,273],[107,274],[210,275],[209,276],[216,168],[249,277],[138,176],[145,278],[137,279],[152,280],[151,281],[146,282],[149,283],[131,284],[130,285],[126,286],[125,168],[148,287],[127,288],[132,289],[133,290],[136,291],[123,168],[154,292],[153,174],[140,293],[141,294],[143,295],[142,176],[147,296],[134,297],[135,298],[144,295],[124,299],[150,300],[250,234],[241,301],[242,168],[252,302],[240,303],[239,304],[236,305],[214,306],[212,307],[211,308],[213,168],[237,265],[238,168],[257,309],[253,310],[254,168],[92,251],[56,311],[51,312],[59,311],[58,312],[70,147],[75,148],[71,149],[76,313],[68,314],[69,315],[78,153],[82,316],[83,317],[80,318],[81,319],[79,320],[258,321],[77,158],[84,168],[57,314],[73,161],[74,322],[72,323],[66,163],[67,324],[65,325]],"semanticDiagnosticsPerFile":[62,63,53,52,60,61,64,106,105,208,156,157,158,159,160,161,116,119,117,118,162,163,164,165,166,167,168,170,169,171,172,173,155,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,191,190,192,193,194,195,196,197,198,121,120,207,199,200,201,202,203,204,205,206,246,247,248,114,109,112,115,243,256,244,245,251,255,111,113,104,108,110,103,54,55,47,48,50,46,90,95,99,85,86,91,96,102,89,93,94,87,101,100,98,97,88,122,49,215,232,230,231,219,220,227,218,223,233,224,229,235,234,217,225,226,221,228,222,107,210,209,216,249,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,138,145,137,152,129,128,151,146,149,131,130,126,125,148,127,132,133,136,123,154,153,140,141,143,139,142,147,134,135,144,124,150,250,241,242,252,240,239,236,214,212,211,213,237,238,257,253,254,92,56,51,59,58,70,75,71,76,68,69,78,82,83,80,81,79,258,77,84,57,73,74,72,66,67,65],"affectedFilesPendingEmit":[258,77,84,57],"emitSignatures":[57,77]},"version":"5.3.3"}
|
|
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/@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","./src/types.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/@awesome.me+kit-8137893ad3@1.0.396/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.396/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.ts","../../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","../icons/src/types.ts","../icons/src/fzicon.vue.ts","../icons/src/index.ts","../button/src/types.ts","../button/src/utils.ts","../button/src/fzbutton.vue.ts","../button/src/fziconbutton.vue.ts","../container/src/types.ts","../container/src/fzcontainer.vue.ts","../container/src/index.ts","../button/src/fzbuttongroup.vue.ts","../button/src/index.ts","../composables/src/types.ts","../composables/src/utils/number/index.ts","../composables/src/utils/position/index.ts","../composables/src/utils/index.ts","../composables/src/composables/usefloating.ts","../composables/src/composables/usemediaquery.ts","../composables/src/composables/usebreakpoints.ts","../composables/src/composables/useclickoutside.ts","../composables/src/composables/usekeydown.ts","../composables/src/composables/usekeyup.ts","../composables/src/composables/usecurrency.ts","../composables/src/composables/index.ts","../style/src/custom-directives/validation.ts","../style/src/custom-directives/config.ts","../style/src/custom-directives/vbold.ts","../style/tokens.json","../style/safe-colors.json","../style/safe-semantic-colors.json","../style/src/custom-directives/vcolor.ts","../style/src/custom-directives/vsmall.ts","../style/src/custom-directives/index.ts","../style/src/constants.ts","../style/src/index.ts","../composables/src/fzfloating.vue.ts","../composables/src/index.ts","./src/fzcard.vue.ts","./__vls_types.d.ts","./dist/src/types.d.ts","./dist/src/fzcard.vue.d.ts","./dist/src/index.d.ts","./dist/index.d.ts","./src/index.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","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},"0","0","0","0","0"],"root":[57,[100,106]],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[51,58],[60],[52],[58],[56,59],[46,52,53],[54],[46],[46,47,48,50],[47,48,49,50],[50,55],[50],[51,56,65,66,67],[51,56,66,67,72],[51,56,66,67,68],[51,66,68,69,73],[51,65],[51,56,66,68],[51,56],[104],[56,102],[102,103],[51,56,57,72,74,97,99],[51,57,100],[51],[51,79,80,81,82,83,84,85],[51,80],[51,75,78],[51,56,75,78],[51,56,75,86,97],[51,75,78,86,98],[51,76,77],[51,75],[51,56,70],[51,70,71],[51,56,61,62,63],[51,56,59,61,63,64],[51,90],[51,87],[51,87,88,89,93,94],[51,56,87,88],[51,56,87,88,90,91,92],[51,56,95,96],[51,66],[51,56,66],[51,75,78,86],[51,70],[51,56,59,61,63]],"referencedMap":[[60,1],[61,2],[53,3],[59,4],[62,5],[54,6],[55,7],[47,8],[48,9],[50,10],[56,11],[51,12],[68,13],[73,14],[69,15],[74,16],[66,17],[67,18],[101,19],[105,20],[103,21],[104,22],[100,23],[106,24],[57,25],[86,26],[81,27],[82,19],[85,28],[79,29],[83,19],[84,19],[80,19],[98,30],[99,31],[75,19],[78,32],[76,25],[77,33],[71,34],[72,35],[70,25],[64,36],[65,37],[63,25],[96,38],[88,39],[95,40],[87,19],[89,41],[93,42],[94,41],[97,43]],"exportedModulesMap":[[60,1],[61,2],[53,3],[59,4],[62,5],[54,6],[55,7],[47,8],[48,9],[50,10],[56,11],[51,12],[68,13],[73,14],[69,15],[74,44],[66,17],[67,45],[101,19],[105,19],[103,19],[104,19],[102,19],[100,23],[106,19],[57,25],[86,26],[81,27],[82,19],[85,28],[79,29],[83,19],[84,19],[80,19],[98,30],[99,46],[75,19],[78,32],[76,25],[77,33],[71,34],[72,47],[70,25],[64,36],[65,48],[63,25],[96,38],[88,39],[95,40],[87,19],[89,41],[93,42],[94,41],[97,43]],"semanticDiagnosticsPerFile":[60,61,53,52,58,59,62,54,55,47,48,50,46,49,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,56,51,68,73,69,74,66,67,101,105,103,104,102,100,106,57,86,81,82,85,79,83,84,80,98,99,75,78,76,77,71,72,70,64,65,63,91,92,96,88,95,87,89,93,94,97,90],"affectedFilesPendingEmit":[100,106,57],"emitSignatures":[57,100]},"version":"5.3.3"}
|
package/vitest.config.ts
CHANGED
|
@@ -9,11 +9,19 @@ export default mergeConfig(
|
|
|
9
9
|
environment: 'jsdom',
|
|
10
10
|
exclude: [...configDefaults.exclude, 'e2e/*'],
|
|
11
11
|
root: fileURLToPath(new URL('./', import.meta.url)),
|
|
12
|
+
setupFiles: ['../vitest.setup.ts'],
|
|
12
13
|
coverage: {
|
|
13
14
|
provider: 'v8',
|
|
14
15
|
include: ['**/src/**'],
|
|
15
|
-
exclude: ['**/index.ts']
|
|
16
|
+
exclude: ['**/index.ts', '**/__tests__/**', '**/*.stories.ts'],
|
|
17
|
+
thresholds: {
|
|
18
|
+
statements: 80,
|
|
19
|
+
branches: 75,
|
|
20
|
+
functions: 80,
|
|
21
|
+
lines: 80
|
|
22
|
+
}
|
|
16
23
|
}
|
|
17
24
|
}
|
|
18
25
|
})
|
|
19
26
|
)
|
|
27
|
+
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|