@fiscozen/input 0.1.14 → 0.1.16-beta.1

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,142 +0,0 @@
1
- declare const _default: import('vue').DefineComponent<{
2
- amount: import('vue').PropType<any>;
3
- error: {
4
- type: import('vue').PropType<boolean>;
5
- };
6
- name: {
7
- type: import('vue').PropType<string>;
8
- };
9
- size: {
10
- type: import('vue').PropType<"sm" | "md" | "lg">;
11
- };
12
- required: {
13
- type: import('vue').PropType<boolean>;
14
- };
15
- label: {
16
- type: import('vue').PropType<string>;
17
- required: true;
18
- };
19
- pattern: {
20
- type: import('vue').PropType<string>;
21
- };
22
- placeholder: {
23
- type: import('vue').PropType<string>;
24
- };
25
- disabled: {
26
- type: import('vue').PropType<boolean>;
27
- };
28
- leftIcon: {
29
- type: import('vue').PropType<string>;
30
- };
31
- leftIconVariant: {
32
- type: import('vue').PropType<import('@fiscozen/icons/src/types').IconVariant>;
33
- };
34
- rightIcon: {
35
- type: import('vue').PropType<string>;
36
- };
37
- rightIconVariant: {
38
- type: import('vue').PropType<import('@fiscozen/icons/src/types').IconVariant>;
39
- };
40
- valid: {
41
- type: import('vue').PropType<boolean>;
42
- };
43
- readonly: {
44
- type: import('vue').PropType<boolean>;
45
- };
46
- maxlength: {
47
- type: import('vue').PropType<number>;
48
- };
49
- rightIconClass: {
50
- type: import('vue').PropType<string>;
51
- };
52
- leftIconClass: {
53
- type: import('vue').PropType<string>;
54
- };
55
- nullOnEmpty: {
56
- type: import('vue').PropType<boolean>;
57
- };
58
- minimumFractionDigits: {
59
- type: import('vue').PropType<number>;
60
- default: number;
61
- };
62
- maximumFractionDigits: {
63
- type: import('vue').PropType<number>;
64
- default: number;
65
- };
66
- }, {
67
- inputRef: import('vue').ComputedRef<HTMLInputElement | null | undefined>;
68
- containerRef: import('vue').ComputedRef<HTMLElement | null | undefined>;
69
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
70
- "update:amount": (...args: any[]) => void;
71
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
72
- amount: import('vue').PropType<any>;
73
- error: {
74
- type: import('vue').PropType<boolean>;
75
- };
76
- name: {
77
- type: import('vue').PropType<string>;
78
- };
79
- size: {
80
- type: import('vue').PropType<"sm" | "md" | "lg">;
81
- };
82
- required: {
83
- type: import('vue').PropType<boolean>;
84
- };
85
- label: {
86
- type: import('vue').PropType<string>;
87
- required: true;
88
- };
89
- pattern: {
90
- type: import('vue').PropType<string>;
91
- };
92
- placeholder: {
93
- type: import('vue').PropType<string>;
94
- };
95
- disabled: {
96
- type: import('vue').PropType<boolean>;
97
- };
98
- leftIcon: {
99
- type: import('vue').PropType<string>;
100
- };
101
- leftIconVariant: {
102
- type: import('vue').PropType<import('@fiscozen/icons/src/types').IconVariant>;
103
- };
104
- rightIcon: {
105
- type: import('vue').PropType<string>;
106
- };
107
- rightIconVariant: {
108
- type: import('vue').PropType<import('@fiscozen/icons/src/types').IconVariant>;
109
- };
110
- valid: {
111
- type: import('vue').PropType<boolean>;
112
- };
113
- readonly: {
114
- type: import('vue').PropType<boolean>;
115
- };
116
- maxlength: {
117
- type: import('vue').PropType<number>;
118
- };
119
- rightIconClass: {
120
- type: import('vue').PropType<string>;
121
- };
122
- leftIconClass: {
123
- type: import('vue').PropType<string>;
124
- };
125
- nullOnEmpty: {
126
- type: import('vue').PropType<boolean>;
127
- };
128
- minimumFractionDigits: {
129
- type: import('vue').PropType<number>;
130
- default: number;
131
- };
132
- maximumFractionDigits: {
133
- type: import('vue').PropType<number>;
134
- default: number;
135
- };
136
- }>> & {
137
- "onUpdate:amount"?: ((...args: any[]) => any) | undefined;
138
- }, {
139
- minimumFractionDigits: number;
140
- maximumFractionDigits: number;
141
- }, {}>;
142
- export default _default;
@@ -1,155 +0,0 @@
1
- import { Ref } from 'vue';
2
-
3
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
4
- modelValue: import('vue').PropType<any>;
5
- error: {
6
- type: import('vue').PropType<boolean>;
7
- default: boolean;
8
- };
9
- name: {
10
- type: import('vue').PropType<string>;
11
- };
12
- size: {
13
- type: import('vue').PropType<"sm" | "md" | "lg">;
14
- default: string;
15
- };
16
- type: {
17
- type: import('vue').PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
18
- default: string;
19
- };
20
- required: {
21
- type: import('vue').PropType<boolean>;
22
- };
23
- label: {
24
- type: import('vue').PropType<string>;
25
- required: true;
26
- };
27
- pattern: {
28
- type: import('vue').PropType<string>;
29
- };
30
- placeholder: {
31
- type: import('vue').PropType<string>;
32
- };
33
- disabled: {
34
- type: import('vue').PropType<boolean>;
35
- };
36
- leftIcon: {
37
- type: import('vue').PropType<string>;
38
- };
39
- leftIconVariant: {
40
- type: import('vue').PropType<import('@fiscozen/icons/src/types').IconVariant>;
41
- };
42
- rightIcon: {
43
- type: import('vue').PropType<string>;
44
- };
45
- rightIconVariant: {
46
- type: import('vue').PropType<import('@fiscozen/icons/src/types').IconVariant>;
47
- };
48
- valid: {
49
- type: import('vue').PropType<boolean>;
50
- };
51
- readonly: {
52
- type: import('vue').PropType<boolean>;
53
- };
54
- maxlength: {
55
- type: import('vue').PropType<number>;
56
- };
57
- rightIconClass: {
58
- type: import('vue').PropType<string>;
59
- };
60
- leftIconClass: {
61
- type: import('vue').PropType<string>;
62
- };
63
- }, {
64
- inputRef: Ref<HTMLInputElement | null>;
65
- containerRef: Ref<HTMLElement | null>;
66
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
67
- blur: (...args: any[]) => void;
68
- focus: (...args: any[]) => void;
69
- input: (...args: any[]) => void;
70
- paste: (...args: any[]) => void;
71
- "fzinput:left-icon-click": (...args: any[]) => void;
72
- "fzinput:right-icon-click": (...args: any[]) => void;
73
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
74
- modelValue: import('vue').PropType<any>;
75
- error: {
76
- type: import('vue').PropType<boolean>;
77
- default: boolean;
78
- };
79
- name: {
80
- type: import('vue').PropType<string>;
81
- };
82
- size: {
83
- type: import('vue').PropType<"sm" | "md" | "lg">;
84
- default: string;
85
- };
86
- type: {
87
- type: import('vue').PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
88
- default: string;
89
- };
90
- required: {
91
- type: import('vue').PropType<boolean>;
92
- };
93
- label: {
94
- type: import('vue').PropType<string>;
95
- required: true;
96
- };
97
- pattern: {
98
- type: import('vue').PropType<string>;
99
- };
100
- placeholder: {
101
- type: import('vue').PropType<string>;
102
- };
103
- disabled: {
104
- type: import('vue').PropType<boolean>;
105
- };
106
- leftIcon: {
107
- type: import('vue').PropType<string>;
108
- };
109
- leftIconVariant: {
110
- type: import('vue').PropType<import('@fiscozen/icons/src/types').IconVariant>;
111
- };
112
- rightIcon: {
113
- type: import('vue').PropType<string>;
114
- };
115
- rightIconVariant: {
116
- type: import('vue').PropType<import('@fiscozen/icons/src/types').IconVariant>;
117
- };
118
- valid: {
119
- type: import('vue').PropType<boolean>;
120
- };
121
- readonly: {
122
- type: import('vue').PropType<boolean>;
123
- };
124
- maxlength: {
125
- type: import('vue').PropType<number>;
126
- };
127
- rightIconClass: {
128
- type: import('vue').PropType<string>;
129
- };
130
- leftIconClass: {
131
- type: import('vue').PropType<string>;
132
- };
133
- }>> & {
134
- onPaste?: ((...args: any[]) => any) | undefined;
135
- onFocus?: ((...args: any[]) => any) | undefined;
136
- onBlur?: ((...args: any[]) => any) | undefined;
137
- onInput?: ((...args: any[]) => any) | undefined;
138
- "onFzinput:left-icon-click"?: ((...args: any[]) => any) | undefined;
139
- "onFzinput:right-icon-click"?: ((...args: any[]) => any) | undefined;
140
- }, {
141
- error: boolean;
142
- size: "sm" | "md" | "lg";
143
- type: "number" | "text" | "password" | "email" | "tel" | "url";
144
- }, {}>, {
145
- "left-icon"?(_: {}): any;
146
- "right-icon"?(_: {}): any;
147
- errorMessage?(_: {}): any;
148
- helpText?(_: {}): any;
149
- }>;
150
- export default _default;
151
- type __VLS_WithTemplateSlots<T, S> = T & {
152
- new (): {
153
- $slots: S;
154
- };
155
- };
@@ -1,3 +0,0 @@
1
- export { default as FzInput } from './FzInput.vue';
2
- export { default as FzCurrencyInput } from './FzCurrencyInput.vue';
3
- export type * from './types';
@@ -1,95 +0,0 @@
1
- import { IconVariant } from '@fiscozen/icons';
2
-
3
- type FzInputProps = {
4
- /**
5
- * The label displayed on top of the input
6
- */
7
- label: string;
8
- /**
9
- * The size of the input
10
- */
11
- size?: "sm" | "md" | "lg";
12
- /**
13
- * The placeholder displayed in the input
14
- */
15
- placeholder?: string;
16
- /**
17
- * If set to true, the input is required
18
- */
19
- required?: boolean;
20
- /**
21
- * If set to true, the input is disabled
22
- */
23
- disabled?: boolean;
24
- /**
25
- * If set to true, the input is in error state
26
- */
27
- error?: boolean;
28
- /**
29
- * Left icon name
30
- */
31
- leftIcon?: string;
32
- /**
33
- * Left icon variant
34
- */
35
- leftIconVariant?: IconVariant;
36
- /**
37
- * Right icon name
38
- */
39
- rightIcon?: string;
40
- /**
41
- * Right icon variant
42
- */
43
- rightIconVariant?: IconVariant;
44
- /**
45
- * The input type
46
- */
47
- type?: "text" | "password" | "email" | "number" | "tel" | "url";
48
- /**
49
- * If set to true, the input is valid
50
- */
51
- valid?: boolean;
52
- /**
53
- * Pattern to validate the input
54
- */
55
- pattern?: string;
56
- /**
57
- * Defines the textarea key in a form
58
- */
59
- name?: string;
60
- /**
61
- * native readonly input value
62
- */
63
- readonly?: boolean;
64
- /**
65
- * native maxlength input value
66
- */
67
- maxlength?: number;
68
- /**
69
- * right icon class
70
- */
71
- rightIconClass?: string;
72
- /**
73
- * left icon class
74
- */
75
- leftIconClass?: string;
76
- };
77
- interface FzCurrencyInputProps extends Omit<FzInputProps, "type" | "modelValue"> {
78
- /**
79
- * Is set to true, an empty string will be casted to null
80
- */
81
- nullOnEmpty?: boolean;
82
- /**
83
- * Minimum number of decimal places allowed, set null to allow arbitrary decimal values length
84
- * note that limits from Intl.NumberFormat still apply
85
- * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#digit_options
86
- */
87
- minimumFractionDigits?: number;
88
- /**
89
- * Maximum number of decimal places allowed, set null to allow arbitrary decimal values length
90
- * note that limits from Intl.NumberFormat still apply
91
- * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#digit_options
92
- */
93
- maximumFractionDigits?: number;
94
- }
95
- export { FzInputProps, FzCurrencyInputProps };
@@ -1,12 +0,0 @@
1
- import { Ref } from 'vue';
2
- import { FzInputProps } from './types';
3
-
4
- export default function useInputStyle(props: FzInputProps, container: Ref<HTMLElement | null>): {
5
- staticContainerClass: string;
6
- computedContainerClass: import('vue').ComputedRef<string[]>;
7
- computedLabelClass: import('vue').ComputedRef<string[]>;
8
- staticInputClass: string;
9
- computedHelpClass: import('vue').ComputedRef<string[]>;
10
- computedErrorClass: import('vue').ComputedRef<string[]>;
11
- containerWidth: import('vue').ComputedRef<string>;
12
- };
@@ -1 +0,0 @@
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","../../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/@fortawesome+fontawesome-common-types@6.7.0/node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.194/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.194/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","./src/types.ts","./src/useinputstyle.ts","./src/fzinput.vue.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","../composables/src/fzfloating.vue.ts","../composables/src/index.ts","./src/fzcurrencyinput.vue.ts","./__vls_types.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",{"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",{"version":"0","affectsGlobalScope":true},"0"],"root":[[77,79],[94,96]],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[51,70],[71],[52],[63],[68],[67,69],[46,52,53,54],[52,58,64],[55],[65],[46],[58],[46,47,48],[58,59,60,61],[48,49],[49,59,60,61],[54],[50,56],[50],[61,66],[61],[51,84,85,86,87,88,89,90],[51,85],[51,57],[51,57,80,83],[51,57,80,91],[51,80,83,91,92],[51,81,82],[51,80],[62,67,72,73,74],[62,67,69,72,74,75],[62],[51,57,77,79,93],[51,57,76,77,78],[51,77,79,94],[51,76],[51,57,77]],"referencedMap":[[71,1],[72,2],[53,3],[64,4],[69,5],[73,6],[55,7],[65,8],[56,9],[66,10],[47,11],[59,12],[48,13],[60,14],[50,15],[61,16],[54,17],[57,18],[51,19],[67,20],[62,21],[91,22],[86,23],[87,24],[90,25],[84,25],[88,24],[89,24],[85,24],[92,26],[93,27],[80,24],[83,28],[81,29],[82,29],[75,30],[76,31],[74,32],[95,24],[94,33],[79,34],[96,35],[77,36],[78,37]],"exportedModulesMap":[[71,1],[72,2],[53,3],[64,4],[69,5],[73,6],[55,7],[65,8],[56,9],[66,10],[47,11],[59,12],[48,13],[60,14],[50,15],[61,16],[54,17],[57,18],[51,19],[67,20],[62,21],[91,22],[86,23],[87,24],[90,25],[84,25],[88,24],[89,24],[85,24],[92,26],[93,27],[80,24],[83,28],[81,29],[82,29],[75,30],[76,31],[74,32],[95,24],[94,33],[79,34],[96,35],[77,36],[78,37]],"semanticDiagnosticsPerFile":[71,72,53,64,52,63,68,70,69,73,55,65,56,66,47,59,48,60,50,61,46,58,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,67,62,91,86,87,90,84,88,89,85,92,93,80,83,81,82,75,76,74,95,94,79,96,77,78],"affectedFilesPendingEmit":[94,79,96,77,78],"emitSignatures":[77,78,79,94,96]},"version":"5.3.3"}