@fiscozen/dropdown 0.1.18 → 0.1.20

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.
@@ -1,53 +1,26 @@
1
- import { ButtonSize } from '@fiscozen/button';
2
1
  import { ActionlistItem } from '@fiscozen/actionlist';
2
+ import { FzDropdownProps, FzDropdownSlots } from './types';
3
3
 
4
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
5
- /**
6
- * Size of the dropdown trigger
7
- */
8
- size: ButtonSize;
9
- /**
10
- * Label of the action list
11
- */
12
- actionsLabel?: string | undefined;
13
- /**
14
- * List of actions
15
- */
16
- actions: ActionlistItem[];
17
- /**
18
- * Whether to align to the left or right
19
- */
20
- align: "right" | "left";
21
- }>, {
4
+ declare function open(): void;
5
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzDropdownProps>, {
22
6
  size: string;
23
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
24
- "fzaction:click": (index: number, action: ActionlistItem) => void;
25
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
26
- /**
27
- * Size of the dropdown trigger
28
- */
29
- size: ButtonSize;
30
- /**
31
- * Label of the action list
32
- */
33
- actionsLabel?: string | undefined;
34
- /**
35
- * List of actions
36
- */
37
- actions: ActionlistItem[];
38
- /**
39
- * Whether to align to the left or right
40
- */
41
- align: "right" | "left";
7
+ actions: () => never[];
8
+ closeOnActionClick: boolean;
42
9
  }>, {
10
+ open: typeof open;
11
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
+ "fzaction:click": (index: number, action: ActionlistItem) => void;
13
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzDropdownProps>, {
43
14
  size: string;
15
+ actions: () => never[];
16
+ closeOnActionClick: boolean;
44
17
  }>>> & {
45
18
  "onFzaction:click"?: ((index: number, action: ActionlistItem) => any) | undefined;
46
19
  }, {
47
- size: ButtonSize;
48
- }, {}>, {
49
- default?(_: {}): any;
50
- }>;
20
+ size: import('@fiscozen/button').ButtonSize;
21
+ actions: ActionlistItem[];
22
+ closeOnActionClick: boolean;
23
+ }, {}>, Readonly<FzDropdownSlots> & FzDropdownSlots>;
51
24
  export default _default;
52
25
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
53
26
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -0,0 +1,39 @@
1
+ import { FzIconDropdownProps } from './types';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzIconDropdownProps>, {
4
+ iconName: string;
5
+ closeOnActionClick: boolean;
6
+ align: string;
7
+ teleport: boolean;
8
+ buttonVariant: string;
9
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzIconDropdownProps>, {
10
+ iconName: string;
11
+ closeOnActionClick: boolean;
12
+ align: string;
13
+ teleport: boolean;
14
+ buttonVariant: string;
15
+ }>>>, {
16
+ iconName: string;
17
+ align: "right" | "left" | "center";
18
+ teleport: boolean;
19
+ closeOnActionClick: boolean;
20
+ buttonVariant: import('@fiscozen/button').IconButtonVariant;
21
+ }, {}>;
22
+ export default _default;
23
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
24
+ type __VLS_TypePropsToRuntimeProps<T> = {
25
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
26
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
27
+ } : {
28
+ type: import('vue').PropType<T[K]>;
29
+ required: true;
30
+ };
31
+ };
32
+ type __VLS_WithDefaults<P, D> = {
33
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
34
+ default: D[K];
35
+ }> : P[K];
36
+ };
37
+ type __VLS_Prettify<T> = {
38
+ [K in keyof T]: T[K];
39
+ } & {};
@@ -1 +1,3 @@
1
1
  export { default as FzDropdown } from './FzDropdown.vue';
2
+ export { default as FzIconDropdown } from './FzIconDropdown.vue';
3
+ export type * from './types';
@@ -0,0 +1,65 @@
1
+ import { ButtonSize, IconButtonVariant } from '@fiscozen/button';
2
+ import { FzActionlistProps } from '@fiscozen/actionlist';
3
+ import { VNode } from 'vue';
4
+
5
+ type FzDropdownProps = {
6
+ /**
7
+ * Size of the dropdown trigger
8
+ */
9
+ size?: ButtonSize;
10
+ /**
11
+ * Label of the action list
12
+ */
13
+ actionsLabel?: string;
14
+ /**
15
+ * List of actions
16
+ */
17
+ actions: FzActionlistProps['items'];
18
+ /**
19
+ * Whether to align to the left or right
20
+ */
21
+ align?: 'left' | 'right' | 'center';
22
+ /**
23
+ * Whether to close the action list when an action is clicked
24
+ */
25
+ closeOnActionClick?: boolean;
26
+ /**
27
+ * Whether opener is disabled
28
+ */
29
+ openerDisabled?: boolean;
30
+ /**
31
+ * Class binded to opener
32
+ */
33
+ openerClass?: string;
34
+ /**
35
+ * teleport floating to body
36
+ */
37
+ teleport?: boolean;
38
+ };
39
+ type FzDropdownSlots = {
40
+ /**
41
+ *
42
+ * Label of the standard button opener
43
+ */
44
+ default(props: {
45
+ isOpen: boolean;
46
+ }): VNode | VNode[];
47
+ /**
48
+ *
49
+ * Use this to replace the button opener entirely
50
+ */
51
+ opener(props: {
52
+ isOpen: boolean;
53
+ }): VNode | VNode[];
54
+ };
55
+ interface FzIconDropdownProps extends FzDropdownProps {
56
+ /**
57
+ * icon name
58
+ */
59
+ iconName: string;
60
+ /**
61
+ * button variant
62
+ */
63
+ buttonVariant?: IconButtonVariant;
64
+ }
65
+ export type { FzDropdownProps, FzDropdownSlots, FzIconDropdownProps };
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@fiscozen/dropdown",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
4
  "description": "Design System Dropdown component",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
7
7
  "keywords": [],
8
8
  "author": "Alen Ajam",
9
9
  "dependencies": {
10
- "@fiscozen/composables": "^0.1.10",
11
10
  "@fiscozen/actionlist": "^0.1.7",
12
- "@fiscozen/button": "^0.1.6"
11
+ "@fiscozen/button": "^0.1.7",
12
+ "@fiscozen/composables": "^0.1.30"
13
13
  },
14
14
  "peerDependencies": {
15
15
  "tailwindcss": "^3.4.1",
@@ -31,9 +31,9 @@
31
31
  "vite": "^5.0.10",
32
32
  "vitest": "^1.2.0",
33
33
  "vue-tsc": "^1.8.25",
34
+ "@fiscozen/tsconfig": "^0.1.0",
34
35
  "@fiscozen/eslint-config": "^0.1.0",
35
- "@fiscozen/prettier-config": "^0.1.0",
36
- "@fiscozen/tsconfig": "^0.1.0"
36
+ "@fiscozen/prettier-config": "^0.1.0"
37
37
  },
38
38
  "license": "MIT",
39
39
  "scripts": {
@@ -4,10 +4,11 @@
4
4
  :position="floatingPosition"
5
5
  ref="container"
6
6
  overrideContentClass
7
+ :teleport="teleport"
7
8
  contentClass="fixed pt-4 z-10"
8
9
  >
9
10
  <template #opener>
10
- <slot name="opener" :isOpen="isOpen">
11
+ <slot name="opener" :isOpen="isOpen" :open="open">
11
12
  <FzButton
12
13
  icon-position="after"
13
14
  :icon-name="buttonIconName"
@@ -33,6 +34,7 @@ import { FzDropdownProps, FzDropdownSlots } from './types'
33
34
 
34
35
  const props = withDefaults(defineProps<FzDropdownProps>(), {
35
36
  size: 'md',
37
+ actions: () => [],
36
38
  closeOnActionClick: true
37
39
  })
38
40
 
@@ -40,13 +42,22 @@ const emit = defineEmits<{
40
42
  'fzaction:click': [index: number, action: ActionlistItem]
41
43
  }>()
42
44
 
43
- const slots = defineSlots<FzDropdownSlots>()
45
+ defineSlots<FzDropdownSlots>()
44
46
 
45
47
  const isOpen = ref(false)
46
48
  const container = ref<ComponentPublicInstance>()
47
49
  const containerDom = computed(() => container.value?.$el)
48
50
  const buttonIconName = computed(() => (isOpen.value ? 'angle-up' : 'angle-down'))
49
- const floatingPosition = computed(() => (props.align === 'left' ? 'bottom-start' : 'bottom-end'))
51
+ const floatingPosition = computed(() => {
52
+ switch (props.align) {
53
+ case 'left':
54
+ return 'bottom-start'
55
+ case 'right':
56
+ return 'bottom-end'
57
+ default:
58
+ return 'bottom'
59
+ }
60
+ })
50
61
 
51
62
  useClickOutside(containerDom, () => {
52
63
  isOpen.value = false
@@ -63,4 +74,12 @@ function handleActionClick(index: number, action: ActionlistItem) {
63
74
  isOpen.value = false
64
75
  }
65
76
  }
77
+
78
+ function open() {
79
+ isOpen.value = true
80
+ }
81
+
82
+ defineExpose({
83
+ open
84
+ })
66
85
  </script>
@@ -0,0 +1,26 @@
1
+ <template>
2
+ <FzDropdown v-bind="props" ref="dropdown" @fzaction:click="(...args) => emit('fzaction:click', ...args)">
3
+ <template #opener="{ open }">
4
+ <FzIconButton :iconName="iconName" @click="open()" :variant="buttonVariant" />
5
+ </template>
6
+ </FzDropdown>
7
+ </template>
8
+
9
+ <script setup lang="ts">
10
+ import FzDropdown from './FzDropdown.vue'
11
+ import { type FzIconDropdownProps } from './types'
12
+ import { FzIconButton } from '@fiscozen/button'
13
+ import { ActionlistItem } from '@fiscozen/actionlist'
14
+
15
+ const props = withDefaults(defineProps<FzIconDropdownProps>(), {
16
+ iconName: 'bars',
17
+ closeOnActionClick: true,
18
+ align: 'center',
19
+ teleport: true,
20
+ buttonVariant: 'secondary'
21
+ })
22
+
23
+ const emit = defineEmits<{
24
+ 'fzaction:click': [index: number, action: ActionlistItem]
25
+ }>()
26
+ </script>
@@ -1,8 +1,9 @@
1
1
  import { beforeEach, describe, it, vi } from 'vitest'
2
2
  import { mount } from '@vue/test-utils'
3
- import { FzDropdown } from '..'
3
+ import { FzDropdown, FzIconDropdown } from '..'
4
+ import { FzIconButton } from '@fiscozen/button'
4
5
 
5
- describe.concurrent('FzTopbar', () => {
6
+ describe.concurrent('FzDropdown', () => {
6
7
  beforeEach(() => {
7
8
  const mockIntersectionObserver = vi.fn()
8
9
  mockIntersectionObserver.mockReturnValue({
@@ -42,4 +43,36 @@ describe.concurrent('FzTopbar', () => {
42
43
 
43
44
  expect(wrapper.html()).toMatchSnapshot()
44
45
  })
46
+
47
+ it('matches snapshot', async ({ expect }) => {
48
+ const wrapper = mount(FzIconDropdown, {
49
+ props: {
50
+ actionsLabel: 'This is the items label',
51
+ actions: [
52
+ {
53
+ label: 'Item #1',
54
+ disabled: true,
55
+ type: 'button'
56
+ },
57
+ {
58
+ label: 'Item #2',
59
+ type: 'button'
60
+ }
61
+ ]
62
+ },
63
+ slots: {
64
+ default: 'This is a dropdown'
65
+ }
66
+ })
67
+
68
+ await wrapper.vm.$nextTick()
69
+
70
+ const iconButton = wrapper.findComponent(FzIconButton)
71
+ expect(iconButton.exists()).toBe(true)
72
+ expect(wrapper.html()).toMatchSnapshot()
73
+
74
+ iconButton.trigger('click')
75
+ await wrapper.vm.$nextTick()
76
+ expect(wrapper.html()).toMatchSnapshot()
77
+ })
45
78
  })
@@ -1,5 +1,73 @@
1
1
  // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
2
 
3
+ exports[`FzDropdown > matches snapshot 1`] = `
4
+ "<div>
5
+ <div class="inline-flex"><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 bg-blue-500 hover:bg-blue-600 disabled:bg-blue-200 text-core-white focus:bg-blue-500">
6
+ <div class="flex items-center justify-items-center mr-6 pl-10">
7
+ <!--v-if-->
8
+ </div>
9
+ <div class="truncate">This is a dropdown</div>
10
+ <div class="flex items-center justify-items-center ml-6 pr-10">
11
+ <div class="flex items-center justify-center w-[25px] h-[25px]"><svg class="svg-inline--fa fa-angle-down fa-lg h-[20px]" aria-hidden="true" focusable="false" data-prefix="far" data-icon="angle-down" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
12
+ <path class="" fill="currentColor" d="M241 369c-9.4 9.4-24.6 9.4-33.9 0L47 209c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l143 143L367 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L241 369z"></path>
13
+ </svg></div>
14
+ </div><span class="hidden h-0 w-0"></span>
15
+ </button></div>
16
+ <div class="fz__floating__content fixed pt-4 z-10" style="display: none;">
17
+ <div class="fz__actionlist bg-core-white inline-flex grow-0 flex-col rounded p-4">
18
+ <div class="text-grey-400 flex h-32 items-center px-12 text-xs"><span>This is the items label</span></div>
19
+ <div class="flex flex-col">
20
+ <router-link to="[object Object]" disabled="true" class="px-12 py-6 text-grey-500 hover:bg-background-alice-blue border-1 focus:border-1 focus:bg-background-alice-blue disabled:text-grey-100 disabled:bg-core-white h-32 items-center rounded border-transparent text-sm hover:text-blue-500 focus:border-blue-500 focus:text-blue-500 disabled:border-transparent font-medium grow-1 flex justify-start">
21
+ <!--v-if-->Item #1
22
+ </router-link>
23
+ </div>
24
+ <div class="flex flex-col">
25
+ <router-link to="[object Object]" disabled="false" class="px-12 py-6 text-grey-500 hover:bg-background-alice-blue border-1 focus:border-1 focus:bg-background-alice-blue disabled:text-grey-100 disabled:bg-core-white h-32 items-center rounded border-transparent text-sm hover:text-blue-500 focus:border-blue-500 focus:text-blue-500 disabled:border-transparent font-medium grow-1 flex justify-start">
26
+ <!--v-if-->Item #2
27
+ </router-link>
28
+ </div>
29
+ </div>
30
+ </div>
31
+ <!--v-if-->
32
+ </div>"
33
+ `;
34
+
35
+ exports[`FzDropdown > matches snapshot 2`] = `
36
+ "<div iconname="bars" buttonvariant="secondary">
37
+ <div class="inline-flex"><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">
38
+ <!--v-if-->
39
+ <div class="">
40
+ <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">
41
+ <path class="" fill="currentColor" d="M0 88C0 74.7 10.7 64 24 64l400 0c13.3 0 24 10.7 24 24s-10.7 24-24 24L24 112C10.7 112 0 101.3 0 88zM0 248c0-13.3 10.7-24 24-24l400 0c13.3 0 24 10.7 24 24s-10.7 24-24 24L24 272c-13.3 0-24-10.7-24-24zM448 408c0 13.3-10.7 24-24 24L24 432c-13.3 0-24-10.7-24-24s10.7-24 24-24l400 0c13.3 0 24 10.7 24 24z"></path>
42
+ </svg></div>
43
+ <!--v-if-->
44
+ </div>
45
+ <!--v-if--><span class="hidden h-0 w-0"></span>
46
+ </button></div>
47
+ <!--v-if-->
48
+ <!--teleport start-->
49
+ <!--teleport end-->
50
+ </div>"
51
+ `;
52
+
53
+ exports[`FzDropdown > matches snapshot 3`] = `
54
+ "<div iconname="bars" buttonvariant="secondary">
55
+ <div class="inline-flex"><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">
56
+ <!--v-if-->
57
+ <div class="">
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 64l400 0c13.3 0 24 10.7 24 24s-10.7 24-24 24L24 112C10.7 112 0 101.3 0 88zM0 248c0-13.3 10.7-24 24-24l400 0c13.3 0 24 10.7 24 24s-10.7 24-24 24L24 272c-13.3 0-24-10.7-24-24zM448 408c0 13.3-10.7 24-24 24L24 432c-13.3 0-24-10.7-24-24s10.7-24 24-24l400 0c13.3 0 24 10.7 24 24z"></path>
60
+ </svg></div>
61
+ <!--v-if-->
62
+ </div>
63
+ <!--v-if--><span class="hidden h-0 w-0"></span>
64
+ </button></div>
65
+ <!--v-if-->
66
+ <!--teleport start-->
67
+ <!--teleport end-->
68
+ </div>"
69
+ `;
70
+
3
71
  exports[`FzTopbar > matches snapshot 1`] = `
4
72
  "<div>
5
73
  <div class="inline-flex"><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 bg-blue-500 hover:bg-blue-600 disabled:bg-blue-200 text-core-white focus:bg-blue-500">
package/src/index.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export { default as FzDropdown } from './FzDropdown.vue'
2
+ export { default as FzIconDropdown } from './FzIconDropdown.vue'
2
3
  export type * from './types'
package/src/types.ts CHANGED
@@ -1,5 +1,7 @@
1
- import { ButtonSize, ButtonVariant } from '@fiscozen/button'
1
+ import { ButtonSize } from '@fiscozen/button'
2
2
  import { FzActionlistProps } from '@fiscozen/actionlist'
3
+ import { IconButtonVariant } from '@fiscozen/button'
4
+ import { VNode } from 'vue'
3
5
 
4
6
  type FzDropdownProps = {
5
7
  /**
@@ -17,7 +19,7 @@ type FzDropdownProps = {
17
19
  /**
18
20
  * Whether to align to the left or right
19
21
  */
20
- align: 'left' | 'right'
22
+ align?: 'left' | 'right' | 'center'
21
23
  /**
22
24
  * Whether to close the action list when an action is clicked
23
25
  */
@@ -30,6 +32,10 @@ type FzDropdownProps = {
30
32
  * Class binded to opener
31
33
  */
32
34
  openerClass?: string
35
+ /**
36
+ * teleport floating to body
37
+ */
38
+ teleport?: boolean
33
39
  }
34
40
 
35
41
  type FzDropdownSlots = {
@@ -37,12 +43,23 @@ type FzDropdownSlots = {
37
43
  *
38
44
  * Label of the standard button opener
39
45
  */
40
- default(props: { isOpen: boolean }): any
46
+ default(props: { isOpen: boolean }): VNode | VNode[]
41
47
  /**
42
48
  *
43
49
  * Use this to replace the button opener entirely
44
50
  */
45
- opener(props: { isOpen: boolean }): any
51
+ opener(props: { isOpen: boolean }): VNode | VNode[]
52
+ }
53
+
54
+ interface FzIconDropdownProps extends FzDropdownProps {
55
+ /**
56
+ * icon name
57
+ */
58
+ iconName: string
59
+ /**
60
+ * button variant
61
+ */
62
+ buttonVariant?: IconButtonVariant
46
63
  }
47
64
 
48
- export type { FzDropdownProps, FzDropdownSlots }
65
+ export type { FzDropdownProps, FzDropdownSlots, FzIconDropdownProps }
@@ -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.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.131/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.131/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","../../node_modules/.pnpm/vue-router@4.3.0_vue@3.4.13_typescript@5.3.3_/node_modules/vue-router/dist/vue-router.d.ts","../navlink/src/types.ts","../navlink/src/classutils.ts","../navlink/src/fznavlink.vue.ts","../navlink/src/fzrouternavlink.vue.ts","../navlink/src/index.ts","../actionlist/src/types.ts","../actionlist/src/fzactionlist.vue.ts","../actionlist/src/index.ts","../composables/src/types.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/index.ts","../composables/src/fzfloating.vue.ts","../composables/src/index.ts","./src/types.ts","./src/fzdropdown.vue.ts","./__vls_types.d.ts","./dist/src/fzdropdown.vue.d.ts","./dist/src/index.d.ts","./dist/index.d.ts","./src/index.ts","../../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","../navlink/src/fznavlink.vue","../navlink/src/fzrouternavlink.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","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"],"root":[[102,108]],"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,84],[49,50,60,61],[54],[48,57],[50,56],[50],[62,67],[62],[51,57,89,90],[51,90,91],[51,89],[51,57,58,78,79],[51,57,58],[51,57,58,78,79,80],[51,58,80,81,82],[51],[51,58,78],[51,95,96,97,98],[51,96],[51,57],[51,57,93,94],[51,57,93,99],[51,93,99,100],[51,93],[106],[57,83,92],[105],[51,57,83,92,101,102],[51,102,103],[51,83,92],[63,68,74,75,76],[63,68,70,74,76,77],[63],[51,57,78,85,86],[51,85,87,88],[51,76,84],[46,47,48,50],[47,48,49,109],[51,90,110],[51,58,111,112],[51,95,96,97],[51,93,99],[51,57,72,76],[51,85]],"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],[84,19],[57,20],[51,21],[68,22],[63,23],[91,24],[92,25],[90,26],[80,27],[82,28],[81,29],[83,30],[58,31],[79,32],[99,33],[97,34],[98,35],[95,36],[96,35],[100,37],[101,38],[93,35],[94,39],[104,35],[107,40],[105,41],[106,42],[103,43],[108,44],[102,45],[77,46],[78,47],[76,48],[86,31],[87,49],[88,49],[89,50],[85,51]],"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,52],[61,15],[50,53],[62,17],[54,18],[84,19],[57,20],[51,21],[68,22],[63,23],[91,24],[92,54],[90,26],[80,27],[82,28],[81,29],[83,55],[58,31],[79,32],[99,56],[97,34],[98,35],[95,36],[96,35],[100,37],[101,57],[93,35],[94,39],[104,35],[107,41],[105,35],[106,35],[103,43],[108,35],[102,45],[77,46],[78,58],[76,31],[86,31],[87,49],[88,49],[89,59],[85,51]],"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,84,57,51,68,63,91,92,90,80,82,81,83,58,79,99,97,98,[95,[{"file":"../composables/src/composables/usefloating.ts","start":1092,"length":23,"code":2322,"category":1,"messageText":{"messageText":"Type 'Element | null' is not assignable to type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is missing the following properties from type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }': accessKey, accessKeyLabel, autocapitalize, dir, and 122 more.","category":1,"code":2740}]}},{"file":"../composables/src/composables/usefloating.ts","start":1374,"length":25,"code":2322,"category":1,"messageText":"Type 'Element | null' is not assignable to type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null'."},{"file":"../composables/src/composables/usefloating.ts","start":1784,"length":22,"code":2322,"category":1,"messageText":"Type 'Element | null' is not assignable to type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null'."},{"file":"../composables/src/composables/usefloating.ts","start":2245,"length":23,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'Element'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'attributes' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: { readonly attributes: ...; ... 166 more ...; readonly assignedSlot: { ...; } | null; }; readonly length: number; ...' is not assignable to type 'NamedNodeMap'.","category":1,"code":2322}]}]}},{"file":"../composables/src/composables/usefloating.ts","start":2390,"length":23,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'Element'."},{"file":"../composables/src/composables/usefloating.ts","start":2449,"length":25,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'Element'."},{"file":"../composables/src/composables/usefloating.ts","start":3208,"length":25,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'HTMLElement'."},{"file":"../composables/src/composables/usefloating.ts","start":3438,"length":25,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'HTMLElement'."},{"file":"../composables/src/composables/usefloating.ts","start":3689,"length":25,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'HTMLElement'."},{"file":"../composables/src/composables/usefloating.ts","start":9288,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type 'Ref<{ readonly root: { readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { ...; }; ... 255 more ...; evaluate: (expression: string, contextNode: Node, resolve...' is not assignable to type 'Ref<IntersectionObserver>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly root: { readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => ...' is not assignable to type 'IntersectionObserver'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'root' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | Document | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | Document | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | Document'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element'.","category":1,"code":2322}]}]}]}]}]}]},"relatedInformation":[{"file":"../composables/src/composables/usefloating.ts","start":322,"length":13,"messageText":"The expected type comes from property 'floatObserver' which is declared here on type '{ float: FzRect; rect: Ref<DOMRect | null>; floatObserver: Ref<IntersectionObserver>; setPosition: () => Promise<void>; }'","category":3,"code":6500}]}]],96,[100,[{"file":"../composables/src/fzfloating.vue","start":496,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'Ref<{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null>' is not assignable to type 'Ref<string | HTMLElement | null>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null' is not assignable to type 'string | HTMLElement | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to type 'string | HTMLElement | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to type 'HTMLElement'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'offsetParent' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'attributes' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: { readonly attributes: ...; ... 166 more ...; readonly assignedSlot: { ...; } | null; }; readonly length: number; ...' is not assignable to type 'NamedNodeMap'.","category":1,"code":2322,"next":[{"messageText":"'number' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type '{ readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: { readonly attributes: { [x: number]: ...; ... 8 more ...; [Symbol.iterator]: () => IterableIterator<...>; }; ... 166 more ...; r...' is not assignable to type 'Attr'.","category":1,"code":2322,"next":[{"messageText":"The types of 'ownerDocument.anchors' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type '{ [x: number]: { charset: string; coords: string; download: string; hreflang: string; name: string; ping: string; referrerPolicy: string; rel: string; readonly relList: { [x: number]: string; readonly length: number; ... 13 more ...; [Symbol.iterator]: () => IterableIterator<...>; }; ... 315 more ...; username: stri...' is not assignable to type 'HTMLCollectionOf<HTMLAnchorElement>'.","category":1,"code":2322,"next":[{"messageText":"'number' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type '{ charset: string; coords: string; download: string; hreflang: string; name: string; ping: string; referrerPolicy: string; rel: string; readonly relList: { [x: number]: string; readonly length: number; value: string; ... 12 more ...; [Symbol.iterator]: () => IterableIterator<...>; }; ... 315 more ...; username: stri...' is not assignable to type 'HTMLAnchorElement'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'shadowRoot' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly delegatesFocus: boolean; readonly host: { readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; ... 257 more ...; evaluate: (expression: string, contextNode: Node, resolver?: XPathNSRes...' is not assignable to type 'ShadowRoot | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly delegatesFocus: boolean; readonly host: { readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; ... 257 more ...; evaluate: (expression: string, contextNode: Node, resolver?: XPathNSRes...' is not assignable to type 'ShadowRoot'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'adoptedStyleSheets' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly cssRules: { [x: number]: { cssText: string; readonly parentRule: ... | null; readonly parentStyleSheet: ... | null; readonly type: number; readonly STYLE_RULE: 1; readonly CHARSET_RULE: 2; ... 7 more ...; readonly SUPPORTS_RULE: 12; }; readonly length: number; item: (index: number) => CSSRule | null; [Sym...' is not assignable to type 'CSSStyleSheet[]'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly cssRules: { [x: number]: { cssText: string; readonly parentRule: ... | null; readonly parentStyleSheet: ... | null; readonly type: number; readonly STYLE_RULE: 1; readonly CHARSET_RULE: 2; ... 7 more ...; readonly SUPPORTS_RULE: 12; }; readonly length: number; item: (index: number) => CSSRule | null; [Sym...' is not assignable to type 'CSSStyleSheet'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'ownerNode' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | ProcessingInstruction | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | ProcessingInstruction | null'.","category":1,"code":2322}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},"relatedInformation":[{"file":"../composables/src/types.ts","start":746,"length":6,"messageText":"The expected type comes from property 'domRef' which is declared here on type 'FzFloatElement'","category":3,"code":6500}]},{"file":"../composables/src/fzfloating.vue","start":536,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'Ref<string> | Ref<{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; ... 289 more ...; focus: (options?: FocusOptions | undefined) => void; }>' is not assignable to type 'Ref<string | HTMLElement | null>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Ref<{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }>' is not assignable to type 'Ref<string | HTMLElement | null>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to type 'string | HTMLElement | null'.","category":1,"code":2322}]}]}}]],101,93,94,104,107,105,106,103,108,102,77,78,76,86,87,88,89,85],"affectedFilesPendingEmit":[103,108,102],"emitSignatures":[102,103]},"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.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.5.12/node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/.pnpm/@vue+reactivity@3.5.12/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/.pnpm/@vue+runtime-core@3.5.12/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../node_modules/.pnpm/@vue+runtime-dom@3.5.12/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/.pnpm/vue@3.5.12_typescript@5.4.2/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/@babel+types@7.25.8/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.25.8/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/@vue+compiler-core@3.5.12/node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/.pnpm/@vue+compiler-dom@3.5.12/node_modules/@vue/compiler-dom/dist/compiler-dom.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-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/@awesome.me+kit-8137893ad3@1.0.188/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.188/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.5.12_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","../../node_modules/.pnpm/vue-router@4.3.0_vue@3.4.13_typescript@5.3.3_/node_modules/vue-router/dist/vue-router.d.ts","../navlink/src/types.ts","../navlink/src/classutils.ts","../navlink/src/fznavlink.vue.ts","../navlink/src/fzrouternavlink.vue.ts","../navlink/src/index.ts","../actionlist/src/types.ts","../actionlist/src/fzactionlist.vue.ts","../actionlist/src/index.ts","../composables/src/types.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","../composables/src/fzfloating.vue.ts","../composables/src/index.ts","./src/types.ts","./src/fzdropdown.vue.ts","./src/fzicondropdown.vue.ts","./__vls_types.d.ts","./dist/src/types.d.ts","./dist/src/fzdropdown.vue.d.ts","./dist/src/fzicondropdown.vue.d.ts","./dist/src/index.d.ts","./dist/index.d.ts","./src/index.ts","../button/src/fzbuttongroup.vue","../composables/src/fzfloating.vue","../icons/src/fzicon.vue","../navlink/src/fznavlink.vue","../navlink/src/fzrouternavlink.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","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"],"root":[[103,112]],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[51,69],[71],[52],[64],[69],[68,70],[46,52,53,54],[52,59,65],[55],[66],[46],[59],[46,47,48],[59,60,61,62],[48,49,82],[49,60,61,62],[54],[48,57],[50,56],[50],[62,67],[62],[51,57,87,88],[51,88,89],[51,87],[51,57,58,76,77],[51,57,58],[51,57,58,76,77,78],[51,58,78,79,80],[51],[51,58,76],[51,93,94,95,96,97,98,99],[51,94],[51,57],[51,57,91],[51,57,91,92],[51,57,91,100],[51,91,100,101],[51,91],[110],[57,81,90,107],[57,107],[107,108,109],[57,81,90],[51,57,81,90,102,103],[51,57,81,103,104],[51,103,104,105],[51,57,81,90],[63,68,72,73,74],[63,68,70,72,74,75],[63],[51,57,76,83,84],[51,83,85,86],[51,74,82],[51,88,113],[51,58,114,115,116],[51,91,100,117],[108,109,110],[57,81,90,108],[57,108],[111],[63,68,70,72,74],[51,83]],"referencedMap":[[71,1],[72,2],[53,3],[65,4],[70,5],[73,6],[55,7],[66,8],[56,9],[67,10],[47,11],[60,12],[48,13],[61,14],[50,15],[62,16],[54,17],[82,18],[57,19],[51,20],[68,21],[63,22],[89,23],[90,24],[88,25],[78,26],[80,27],[79,28],[81,29],[58,30],[77,31],[100,32],[95,33],[96,34],[99,35],[93,36],[97,34],[98,34],[94,34],[101,37],[102,38],[91,34],[92,39],[106,34],[111,40],[108,41],[109,42],[110,43],[107,44],[104,45],[105,46],[112,47],[103,48],[75,49],[76,50],[74,51],[84,30],[85,52],[86,52],[87,53],[83,54]],"exportedModulesMap":[[71,1],[72,2],[53,3],[65,4],[70,5],[73,6],[55,7],[66,8],[56,9],[67,10],[47,11],[60,12],[48,13],[61,14],[50,15],[62,16],[54,17],[82,18],[57,19],[51,20],[68,21],[63,22],[89,23],[90,55],[88,25],[78,26],[80,27],[79,28],[81,56],[58,30],[77,31],[100,32],[95,33],[96,34],[99,35],[93,36],[97,34],[98,34],[94,34],[101,37],[102,57],[91,34],[92,39],[106,34],[111,58],[108,44],[109,59],[110,60],[107,34],[104,45],[105,46],[112,61],[103,48],[75,49],[76,62],[74,51],[84,30],[85,52],[86,52],[87,63],[83,54]],"semanticDiagnosticsPerFile":[71,72,53,65,52,64,69,70,73,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,82,57,51,68,63,89,90,88,78,80,79,81,58,77,100,95,96,99,93,97,98,94,101,102,91,92,106,111,108,109,110,107,104,105,112,103,75,76,74,84,85,86,87,83],"affectedFilesPendingEmit":[104,105,112,103],"emitSignatures":[103,104,105]},"version":"5.3.3"}