@fiscozen/navbar 0.1.0 → 0.1.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.
@@ -0,0 +1,57 @@
1
+ import { FzNavbarProps } from './types';
2
+
3
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzNavbarProps>, {
4
+ variant: string;
5
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzNavbarProps>, {
6
+ variant: string;
7
+ }>>>, {
8
+ variant: import('./types').FzNavbarVariant;
9
+ }, {}>, Partial<Record<NonNullable<"notifications" | "user-menu">, (_: {
10
+ isHorizontal: boolean;
11
+ isVertical: boolean;
12
+ isMobile: true;
13
+ }) => any>> & {
14
+ "brand-logo"?(_: {
15
+ isMobile: true;
16
+ isHorizontal: boolean;
17
+ isVertical: boolean;
18
+ }): any;
19
+ navigation?(_: {
20
+ isVertical: boolean;
21
+ isHorizontal: boolean;
22
+ isMobile: false;
23
+ }): any;
24
+ notifications?(_: {
25
+ isHorizontal: boolean;
26
+ isVertical: boolean;
27
+ isMobile: false;
28
+ }): any;
29
+ "user-menu"?(_: {
30
+ isHorizontal: boolean;
31
+ isMobile: false;
32
+ isVertical: boolean;
33
+ }): any;
34
+ }>;
35
+ export default _default;
36
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
37
+ type __VLS_TypePropsToRuntimeProps<T> = {
38
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
39
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
40
+ } : {
41
+ type: import('vue').PropType<T[K]>;
42
+ required: true;
43
+ };
44
+ };
45
+ type __VLS_WithDefaults<P, D> = {
46
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
47
+ default: D[K];
48
+ }> : P[K];
49
+ };
50
+ type __VLS_Prettify<T> = {
51
+ [K in keyof T]: T[K];
52
+ } & {};
53
+ type __VLS_WithTemplateSlots<T, S> = T & {
54
+ new (): {
55
+ $slots: S;
56
+ };
57
+ };
@@ -0,0 +1,2 @@
1
+ export { default as FzNavbar } from './FzNavbar.vue';
2
+ export * from './types';
@@ -0,0 +1,7 @@
1
+ export type FzNavbarVariant = 'horizontal' | 'vertical';
2
+ export interface FzNavbarProps {
3
+ /**
4
+ * The main direction of the navbar
5
+ */
6
+ variant: FzNavbarVariant;
7
+ }
package/dist/style.css ADDED
@@ -0,0 +1 @@
1
+ .temporary-bg-red:hover{background-color:#aa2f2f}.temporary-bg-red:disabled{background-color:#f8baba}.temporary-border-red:focus{border-color:#aa2f2f}.temporary-bg-green:hover{background-color:#0b7763}.temporary-bg-green:disabled{background-color:#b5d8ce}.temporary-border-green:focus{border-color:#0b7763}.gap-disabled[data-v-bfa83cb7] button:focus{z-index:100}.gap-disabled[data-v-bfa83cb7] button:not(:first-child):not(:last-child){border-radius:0}.gap-disabled.horizontal[data-v-bfa83cb7] button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.gap-disabled.horizontal[data-v-bfa83cb7] button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.gap-disabled.horizontal[data-v-bfa83cb7] button:not(:first-child){margin-left:-1px}.gap-disabled.vertical[data-v-bfa83cb7] button:first-child{border-bottom-left-radius:0;border-bottom-right-radius:0}.gap-disabled.vertical[data-v-bfa83cb7] button:last-child{border-top-left-radius:0;border-top-right-radius:0}.gap-disabled.vertical[data-v-bfa83cb7] button:not(:first-child){margin-top:-1px}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiscozen/navbar",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Design System Navbar Component",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
@@ -9,7 +9,7 @@
9
9
  "peerDependencies": {
10
10
  "tailwindcss": "^3.4.1",
11
11
  "vue": "^3.4.13",
12
- "@fiscozen/button": "^0.1.0"
12
+ "@fiscozen/button": "^0.1.7"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@rushstack/eslint-patch": "^1.3.3",
@@ -27,9 +27,9 @@
27
27
  "vite": "^5.0.10",
28
28
  "vitest": "^1.2.0",
29
29
  "vue-tsc": "^1.8.25",
30
+ "@fiscozen/tsconfig": "^0.1.0",
30
31
  "@fiscozen/eslint-config": "^0.1.0",
31
- "@fiscozen/prettier-config": "^0.1.0",
32
- "@fiscozen/tsconfig": "^0.1.0"
32
+ "@fiscozen/prettier-config": "^0.1.0"
33
33
  },
34
34
  "license": "ISC",
35
35
  "scripts": {
package/src/FzNavbar.vue CHANGED
@@ -1,12 +1,14 @@
1
1
  <script lang="ts" setup>
2
2
  import { ref, onBeforeMount, onMounted, onUnmounted, computed } from 'vue'
3
3
  import { FzIconButton } from '@fiscozen/button'
4
- import { FzNavbarProps } from './types'
4
+ import { FzNavbarEmits, FzNavbarProps } from './types'
5
5
 
6
6
  const props = withDefaults(defineProps<FzNavbarProps>(), {
7
7
  variant: 'horizontal'
8
8
  })
9
9
 
10
+ const emit = defineEmits<FzNavbarEmits>()
11
+
10
12
  const width = ref(0)
11
13
 
12
14
  const onResize = () => {
@@ -53,12 +55,22 @@ const isHorizontal = computed(() => Boolean(props.variant === 'horizontal'))
53
55
  </div>
54
56
  </template>
55
57
  <template v-else>
56
- <FzIconButton iconName="bars" variant="secondary" tooltip="menu" :disabled="false" />
58
+ <FzIconButton
59
+ :iconName="isMenuOpen ? 'xmark' : 'bars'"
60
+ variant="secondary"
61
+ tooltip="menu"
62
+ @click="emit('fznavbar:menuButtonClick')"
63
+ />
57
64
  <div>
58
65
  <slot name="brand-logo" :isMobile :isHorizontal :isVertical></slot>
59
66
  </div>
60
67
  <div>
61
- <slot :name="isHorizontal ? 'notifications' : 'user-menu'" :isHorizontal :isVertical :isMobile></slot>
68
+ <slot
69
+ :name="isHorizontal ? 'notifications' : 'user-menu'"
70
+ :isHorizontal
71
+ :isVertical
72
+ :isMobile
73
+ ></slot>
62
74
  </div>
63
75
  </template>
64
76
  </header>
@@ -1,7 +1,7 @@
1
1
  // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
2
 
3
3
  exports[`FzNavbar > should match snapshot in horizontal layout large screen 1`] = `
4
- "<header class="flex px-12 py-12 shadow h-56 w-full">
4
+ "<header class="flex p-12 shadow h-56 w-full">
5
5
  <div class="mr-32">
6
6
  <div id="brandlogo" class="desktop"></div>
7
7
  </div>
@@ -18,9 +18,12 @@ exports[`FzNavbar > should match snapshot in horizontal layout large screen 1`]
18
18
  `;
19
19
 
20
20
  exports[`FzNavbar > should match snapshot in horizontal layout small screen 1`] = `
21
- "<header class="flex px-12 py-12 shadow justify-between h-56 w-full"><button type="button" class="relative relative rounded flex flex-shrink items-center justify-center w-32 h-32 focus:border-blue-600 focus:border-solid focus:border-1 text-grey-500 bg-core-white border-1 border-grey-200 hover:bg-grey-100 disabled:text-grey-100"><svg class="svg-inline--fa fa-bars fa-lg" aria-hidden="true" focusable="false" data-prefix="fasl" data-icon="bars" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
22
- <path class="" fill="currentColor" d="M0 64H448V96H0V64zM0 224H448v32H0V224zM448 384v32H0V384H448z"></path>
23
- </svg>
21
+ "<header class="flex p-12 shadow justify-between h-56 w-full"><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 text-grey-500 bg-core-white !border-grey-200 hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100 w-32 h-32">
22
+ <!--v-if-->
23
+ <div class="flex items-center justify-center w-[25px] h-[25px]"><svg class="svg-inline--fa fa-bars fa-lg h-[20px]" aria-hidden="true" focusable="false" data-prefix="far" data-icon="bars" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
24
+ <path class="" fill="currentColor" d="M0 88C0 74.7 10.7 64 24 64H424c13.3 0 24 10.7 24 24s-10.7 24-24 24H24C10.7 112 0 101.3 0 88zM0 248c0-13.3 10.7-24 24-24H424c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zM448 408c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H424c13.3 0 24 10.7 24 24z"></path>
25
+ </svg></div>
26
+ <!--v-if-->
24
27
  <!--v-if--><span class="hidden h-0 w-0">menu</span>
25
28
  </button>
26
29
  <div>
@@ -33,7 +36,7 @@ exports[`FzNavbar > should match snapshot in horizontal layout small screen 1`]
33
36
  `;
34
37
 
35
38
  exports[`FzNavbar > should match snapshot in vertical layout large screen 1`] = `
36
- "<header class="flex px-12 py-12 shadow h-full w-56 flex-col">
39
+ "<header class="flex p-12 shadow h-full w-56 flex-col">
37
40
  <div class="mb-32">
38
41
  <div id="brandlogo" class="desktop"></div>
39
42
  </div>
@@ -50,9 +53,12 @@ exports[`FzNavbar > should match snapshot in vertical layout large screen 1`] =
50
53
  `;
51
54
 
52
55
  exports[`FzNavbar > should match snapshot in vertical layout small screen 1`] = `
53
- "<header class="flex px-12 py-12 shadow justify-between h-56 w-full"><button type="button" class="relative relative rounded flex flex-shrink items-center justify-center w-32 h-32 focus:border-blue-600 focus:border-solid focus:border-1 text-grey-500 bg-core-white border-1 border-grey-200 hover:bg-grey-100 disabled:text-grey-100"><svg class="svg-inline--fa fa-bars fa-lg" aria-hidden="true" focusable="false" data-prefix="fasl" data-icon="bars" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
54
- <path class="" fill="currentColor" d="M0 64H448V96H0V64zM0 224H448v32H0V224zM448 384v32H0V384H448z"></path>
55
- </svg>
56
+ "<header class="flex p-12 shadow justify-between h-56 w-full"><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 text-grey-500 bg-core-white !border-grey-200 hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100 w-32 h-32">
57
+ <!--v-if-->
58
+ <div class="flex items-center justify-center w-[25px] h-[25px]"><svg class="svg-inline--fa fa-bars fa-lg h-[20px]" aria-hidden="true" focusable="false" data-prefix="far" data-icon="bars" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
59
+ <path class="" fill="currentColor" d="M0 88C0 74.7 10.7 64 24 64H424c13.3 0 24 10.7 24 24s-10.7 24-24 24H24C10.7 112 0 101.3 0 88zM0 248c0-13.3 10.7-24 24-24H424c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zM448 408c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H424c13.3 0 24 10.7 24 24z"></path>
60
+ </svg></div>
61
+ <!--v-if-->
56
62
  <!--v-if--><span class="hidden h-0 w-0">menu</span>
57
63
  </button>
58
64
  <div>
package/src/types.ts CHANGED
@@ -1,8 +1,18 @@
1
1
  export type FzNavbarVariant = 'horizontal' | 'vertical'
2
2
 
3
- export interface FzNavbarProps {
3
+ interface FzNavbarProps {
4
4
  /**
5
5
  * The main direction of the navbar
6
6
  */
7
7
  variant: FzNavbarVariant
8
+ /**
9
+ * Whether the main navigation menu is open (mobile)
10
+ */
11
+ isMenuOpen?: boolean
8
12
  }
13
+
14
+ type FzNavbarEmits = {
15
+ 'fznavbar:menuButtonClick': []
16
+ }
17
+
18
+ export type { FzNavbarProps, FzNavbarEmits }
@@ -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.4.13/node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/.pnpm/@vue+reactivity@3.4.13/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/.pnpm/@vue+runtime-core@3.4.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.4.13/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.3.3/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/@babel+types@7.23.6/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.23.6/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../../node_modules/.pnpm/@vue+compiler-core@3.4.13/node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/.pnpm/@vue+compiler-dom@3.4.13/node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.3.3/node_modules/vue/dist/vue.d.mts","../button/src/types.ts","../../node_modules/.pnpm/@vue+shared@3.4.33/node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/.pnpm/@vue+reactivity@3.4.33/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/.pnpm/@vue+runtime-core@3.4.33/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../node_modules/.pnpm/@vue+runtime-dom@3.4.33/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/.pnpm/vue@3.4.33_typescript@5.4.2/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/@babel+types@7.24.9/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.24.8/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/@vue+compiler-core@3.4.33/node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/.pnpm/@vue+compiler-dom@3.4.33/node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/.pnpm/vue@3.4.33_typescript@5.4.2/node_modules/vue/dist/vue.d.mts","../../node_modules/.pnpm/@fortawesome+fontawesome-common-types@6.6.0/node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-svg-core@6.6.0/node_modules/@fortawesome/fontawesome-svg-core/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-common-types@6.5.1/node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-svg-core@6.5.1/node_modules/@fortawesome/fontawesome-svg-core/index.d.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.140/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.140/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.ts","../../node_modules/.pnpm/@fortawesome+vue-fontawesome@3.0.8_@fortawesome+fontawesome-svg-core@6.6.0_vue@3.4.33_typescript@5.4.2_/node_modules/@fortawesome/vue-fontawesome/index.d.ts","../icons/src/types.ts","../icons/src/fzicon.vue.ts","../icons/src/index.ts","../button/src/utils.ts","../button/src/fzbutton.vue.ts","../button/src/fziconbutton.vue.ts","../button/src/fzbuttongroup.vue.ts","../button/src/index.ts","./src/types.ts","./src/fznavbar.vue.ts","./__vls_types.d.ts","./dist/src/types.d.ts","./dist/src/fznavbar.vue.d.ts","./dist/src/index.d.ts","./dist/index.d.ts","./src/index.ts","../button/src/fzbutton.vue","../button/src/fziconbutton.vue","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.74/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.74/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",{"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",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0"],"root":[[84,91]],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[51,69,72,73],[69,73],[52],[64],[71],[69],[68,70],[46,52,53,54],[52,59,65],[55],[66],[46],[59],[46,47,48],[50,59,60,61,62],[48,49,60,61,62],[49,50,60,61],[54],[50,56],[50],[62,67],[62],[51,57,58,78,79],[51,57,58],[51,57,58,78,79,80],[51,58,80,81,82],[51],[51,58,78],[63,68,74,75,76],[63,68,70,74,76,77],[63],[51,57],[89],[57,87],[87,88],[51,57,83,84],[51,84,85],[46,47,48,50],[47,48,49],[51,58,92,93],[51,57,72,76,94,95,96]],"referencedMap":[[73,1],[74,2],[53,3],[65,4],[72,5],[70,6],[75,7],[55,8],[66,9],[56,10],[67,11],[47,12],[60,13],[48,14],[61,15],[50,16],[62,17],[54,18],[57,19],[51,20],[68,21],[63,22],[80,23],[82,24],[81,25],[83,26],[58,27],[79,28],[77,29],[78,30],[76,31],[86,32],[90,33],[88,34],[89,35],[85,36],[91,37],[84,27]],"exportedModulesMap":[[73,1],[74,2],[53,3],[65,4],[72,5],[70,6],[75,7],[55,8],[66,9],[56,10],[67,11],[47,12],[60,13],[48,38],[61,15],[50,39],[62,17],[54,18],[57,19],[51,20],[68,21],[63,22],[80,23],[82,24],[81,25],[83,40],[58,27],[79,28],[77,29],[78,41],[76,27],[86,32],[90,33],[88,34],[89,35],[85,36],[91,32],[84,27]],"semanticDiagnosticsPerFile":[73,74,53,65,52,64,71,69,72,70,75,55,66,56,67,47,60,48,61,50,62,46,59,49,54,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,57,51,68,63,80,82,81,83,58,79,77,78,76,86,90,88,89,87,85,91,84],"affectedFilesPendingEmit":[85,91,84],"emitSignatures":[84,85]},"version":"5.3.3"}