@fiscozen/input 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/input.js +1468 -1272
- package/dist/input.umd.cjs +5 -5
- package/dist/src/FzCurrencyInput.vue.d.ts +28 -9
- package/dist/src/FzInput.vue.d.ts +14 -10
- package/dist/src/types.d.ts +12 -0
- package/package.json +3 -3
- package/src/FzInput.vue +22 -18
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{
|
|
2
2
|
amount: import('vue').PropType<any>;
|
|
3
|
-
|
|
3
|
+
error: {
|
|
4
4
|
type: import('vue').PropType<boolean>;
|
|
5
5
|
};
|
|
6
6
|
name: {
|
|
@@ -25,9 +25,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
25
25
|
disabled: {
|
|
26
26
|
type: import('vue').PropType<boolean>;
|
|
27
27
|
};
|
|
28
|
-
error: {
|
|
29
|
-
type: import('vue').PropType<boolean>;
|
|
30
|
-
};
|
|
31
28
|
leftIcon: {
|
|
32
29
|
type: import('vue').PropType<string>;
|
|
33
30
|
};
|
|
@@ -46,6 +43,17 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
46
43
|
readonly: {
|
|
47
44
|
type: import('vue').PropType<boolean>;
|
|
48
45
|
};
|
|
46
|
+
nullOnEmpty: {
|
|
47
|
+
type: import('vue').PropType<boolean>;
|
|
48
|
+
};
|
|
49
|
+
minimumFractionDigits: {
|
|
50
|
+
type: import('vue').PropType<number>;
|
|
51
|
+
default: number;
|
|
52
|
+
};
|
|
53
|
+
maximumFractionDigits: {
|
|
54
|
+
type: import('vue').PropType<number | null>;
|
|
55
|
+
default: number;
|
|
56
|
+
};
|
|
49
57
|
}, {
|
|
50
58
|
inputRef: import('vue').ComputedRef<HTMLInputElement | null | undefined>;
|
|
51
59
|
containerRef: import('vue').ComputedRef<HTMLElement | null | undefined>;
|
|
@@ -53,7 +61,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
53
61
|
"update:amount": (...args: any[]) => void;
|
|
54
62
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
55
63
|
amount: import('vue').PropType<any>;
|
|
56
|
-
|
|
64
|
+
error: {
|
|
57
65
|
type: import('vue').PropType<boolean>;
|
|
58
66
|
};
|
|
59
67
|
name: {
|
|
@@ -78,9 +86,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
78
86
|
disabled: {
|
|
79
87
|
type: import('vue').PropType<boolean>;
|
|
80
88
|
};
|
|
81
|
-
error: {
|
|
82
|
-
type: import('vue').PropType<boolean>;
|
|
83
|
-
};
|
|
84
89
|
leftIcon: {
|
|
85
90
|
type: import('vue').PropType<string>;
|
|
86
91
|
};
|
|
@@ -99,7 +104,21 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
99
104
|
readonly: {
|
|
100
105
|
type: import('vue').PropType<boolean>;
|
|
101
106
|
};
|
|
107
|
+
nullOnEmpty: {
|
|
108
|
+
type: import('vue').PropType<boolean>;
|
|
109
|
+
};
|
|
110
|
+
minimumFractionDigits: {
|
|
111
|
+
type: import('vue').PropType<number>;
|
|
112
|
+
default: number;
|
|
113
|
+
};
|
|
114
|
+
maximumFractionDigits: {
|
|
115
|
+
type: import('vue').PropType<number | null>;
|
|
116
|
+
default: number;
|
|
117
|
+
};
|
|
102
118
|
}>> & {
|
|
103
119
|
"onUpdate:amount"?: ((...args: any[]) => any) | undefined;
|
|
104
|
-
}, {
|
|
120
|
+
}, {
|
|
121
|
+
minimumFractionDigits: number;
|
|
122
|
+
maximumFractionDigits: number | null;
|
|
123
|
+
}, {}>;
|
|
105
124
|
export default _default;
|
|
@@ -2,6 +2,10 @@ import { Ref } from 'vue';
|
|
|
2
2
|
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
4
4
|
modelValue: import('vue').PropType<any>;
|
|
5
|
+
error: {
|
|
6
|
+
type: import('vue').PropType<boolean>;
|
|
7
|
+
default: boolean;
|
|
8
|
+
};
|
|
5
9
|
name: {
|
|
6
10
|
type: import('vue').PropType<string>;
|
|
7
11
|
};
|
|
@@ -29,10 +33,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
29
33
|
disabled: {
|
|
30
34
|
type: import('vue').PropType<boolean>;
|
|
31
35
|
};
|
|
32
|
-
error: {
|
|
33
|
-
type: import('vue').PropType<boolean>;
|
|
34
|
-
default: boolean;
|
|
35
|
-
};
|
|
36
36
|
leftIcon: {
|
|
37
37
|
type: import('vue').PropType<string>;
|
|
38
38
|
};
|
|
@@ -55,10 +55,15 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
55
55
|
inputRef: Ref<HTMLInputElement | null>;
|
|
56
56
|
containerRef: Ref<HTMLElement | null>;
|
|
57
57
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
58
|
-
input: (...args: any[]) => void;
|
|
59
58
|
focus: (...args: any[]) => void;
|
|
59
|
+
input: (...args: any[]) => void;
|
|
60
|
+
paste: (...args: any[]) => void;
|
|
60
61
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
61
62
|
modelValue: import('vue').PropType<any>;
|
|
63
|
+
error: {
|
|
64
|
+
type: import('vue').PropType<boolean>;
|
|
65
|
+
default: boolean;
|
|
66
|
+
};
|
|
62
67
|
name: {
|
|
63
68
|
type: import('vue').PropType<string>;
|
|
64
69
|
};
|
|
@@ -86,10 +91,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
86
91
|
disabled: {
|
|
87
92
|
type: import('vue').PropType<boolean>;
|
|
88
93
|
};
|
|
89
|
-
error: {
|
|
90
|
-
type: import('vue').PropType<boolean>;
|
|
91
|
-
default: boolean;
|
|
92
|
-
};
|
|
93
94
|
leftIcon: {
|
|
94
95
|
type: import('vue').PropType<string>;
|
|
95
96
|
};
|
|
@@ -109,13 +110,16 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
109
110
|
type: import('vue').PropType<boolean>;
|
|
110
111
|
};
|
|
111
112
|
}>> & {
|
|
113
|
+
onPaste?: ((...args: any[]) => any) | undefined;
|
|
112
114
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
113
115
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
114
116
|
}, {
|
|
117
|
+
error: boolean;
|
|
115
118
|
size: "sm" | "md" | "lg";
|
|
116
119
|
type: "number" | "text" | "password" | "email" | "tel" | "url";
|
|
117
|
-
error: boolean;
|
|
118
120
|
}, {}>, {
|
|
121
|
+
"left-icon"?(_: {}): any;
|
|
122
|
+
"right-icon"?(_: {}): any;
|
|
119
123
|
errorMessage?(_: {}): any;
|
|
120
124
|
helpText?(_: {}): any;
|
|
121
125
|
}>;
|
package/dist/src/types.d.ts
CHANGED
|
@@ -67,5 +67,17 @@ interface FzCurrencyInputProps extends Omit<FzInputProps, "type" | "modelValue">
|
|
|
67
67
|
* Is set to true, an empty string will be casted to null
|
|
68
68
|
*/
|
|
69
69
|
nullOnEmpty?: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* Minimum number of decimal places allowed, set null to allow arbitrary decimal values length
|
|
72
|
+
* note that limits from Intl.NumberFormat still apply
|
|
73
|
+
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#digit_options
|
|
74
|
+
*/
|
|
75
|
+
minimumFractionDigits?: number;
|
|
76
|
+
/**
|
|
77
|
+
* Maximum number of decimal places allowed, set null to allow arbitrary decimal values length
|
|
78
|
+
* note that limits from Intl.NumberFormat still apply
|
|
79
|
+
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#digit_options
|
|
80
|
+
*/
|
|
81
|
+
maximumFractionDigits?: number | null;
|
|
70
82
|
}
|
|
71
83
|
export { FzInputProps, FzCurrencyInputProps };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiscozen/input",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Design System Input component",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"tailwindcss": "^3.4.1",
|
|
11
11
|
"vue": "^3.4.13",
|
|
12
|
-
"@fiscozen/composables": "^0.1.
|
|
13
|
-
"@fiscozen/icons": "^0.1.
|
|
12
|
+
"@fiscozen/composables": "^0.1.29",
|
|
13
|
+
"@fiscozen/icons": "^0.1.12"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@rushstack/eslint-patch": "^1.3.3",
|
package/src/FzInput.vue
CHANGED
|
@@ -8,12 +8,14 @@
|
|
|
8
8
|
ref="containerRef"
|
|
9
9
|
@click="inputRef?.focus()"
|
|
10
10
|
>
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
<slot name="left-icon">
|
|
12
|
+
<FzIcon
|
|
13
|
+
v-if="leftIcon"
|
|
14
|
+
:name="leftIcon"
|
|
15
|
+
:size="size"
|
|
16
|
+
:variant="leftIconVariant"
|
|
17
|
+
/>
|
|
18
|
+
</slot>
|
|
17
19
|
<input
|
|
18
20
|
:type="type"
|
|
19
21
|
:required="required ? required : false"
|
|
@@ -29,18 +31,20 @@
|
|
|
29
31
|
@focus="(e) => $emit('focus', e)"
|
|
30
32
|
@paste="(e) => $emit('paste', e)"
|
|
31
33
|
/>
|
|
32
|
-
<
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
34
|
+
<slot name="right-icon">
|
|
35
|
+
<FzIcon
|
|
36
|
+
v-if="valid"
|
|
37
|
+
name="check"
|
|
38
|
+
:size="size"
|
|
39
|
+
class="text-semantic-success"
|
|
40
|
+
/>
|
|
41
|
+
<FzIcon
|
|
42
|
+
v-if="rightIcon"
|
|
43
|
+
:name="rightIcon"
|
|
44
|
+
:size="size"
|
|
45
|
+
:variant="rightIconVariant"
|
|
46
|
+
/>
|
|
47
|
+
</slot>
|
|
44
48
|
</div>
|
|
45
49
|
<div
|
|
46
50
|
v-if="error && $slots.errorMessage"
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/@vue+shared@3.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.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","./src/types.ts","./src/useInputStyle.ts","./src/FzInput.vue.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/FzCurrencyInput.vue.ts","./__VLS_types.d.ts","./dist/src/FzInput.vue.d.ts","./dist/src/FzCurrencyInput.vue.d.ts","./dist/src/types.d.ts","./dist/src/index.d.ts","./dist/index.d.ts","./dist/src/useInputStyle.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",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0"],"root":[[78,80],[93,101]],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[51,68,71,72],[68,72],[52],[63],[70],[68],[67,69],[46,52,53,54],[52,58,64],[55],[65],[46],[58],[46,47,48],[50,58,59,60,61],[48,49,59,60,61],[49,50,59,60],[54],[50,56],[50],[61,66],[61],[51,57,81,90],[51,83,84,85,86,87,88,89],[51,84],[51,57],[51,57,81,82],[51,81,90,91],[51,81],[62,67,73,74,75],[62,67,69,73,75,76],[62],[98],[57,75],[95,96,97],[77],[57,97],[51,57,78,80,92],[51,57,77,78,79],[51,78,80,93],[51,77],[51,57,78],[48,49],[51,81,90],[62,67,69,73,75],[51]],"referencedMap":[[72,1],[73,2],[53,3],[64,4],[71,5],[69,6],[74,7],[55,8],[65,9],[56,10],[66,11],[47,12],[59,13],[48,14],[60,15],[50,16],[61,17],[54,18],[57,19],[51,20],[67,21],[62,22],[91,23],[90,24],[85,25],[86,26],[89,26],[83,27],[87,26],[88,26],[84,26],[92,28],[81,26],[82,29],[76,30],[77,31],[75,32],[94,26],[99,33],[96,34],[95,34],[98,35],[97,36],[100,37],[93,38],[80,39],[101,40],[78,41],[79,42]],"exportedModulesMap":[[72,1],[73,2],[53,3],[64,4],[71,5],[69,6],[74,7],[55,8],[65,9],[56,10],[66,11],[47,12],[59,13],[48,14],[60,15],[50,43],[61,17],[54,18],[57,19],[51,20],[67,21],[62,22],[91,23],[90,24],[85,25],[86,26],[89,26],[83,27],[87,26],[88,26],[84,26],[92,44],[81,26],[82,29],[76,30],[77,45],[75,32],[94,26],[99,26],[96,26],[95,26],[98,26],[97,26],[100,26],[93,38],[80,39],[101,26],[78,46],[79,42]],"semanticDiagnosticsPerFile":[72,73,53,64,52,63,70,68,71,69,74,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,90,85,86,89,83,87,88,84,92,81,82,76,77,75,94,99,96,95,98,97,100,93,80,101,78,79],"affectedFilesPendingEmit":[93,80,101,78,79],"emitSignatures":[78,79,80,93]},"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","../../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.185/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.185/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/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","./dist/src/FzInput.vue.d.ts","./dist/src/FzCurrencyInput.vue.d.ts","./dist/src/types.d.ts","./dist/src/index.d.ts","./dist/index.d.ts","./dist/src/useInputStyle.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",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0"],"root":[[76,78],[91,99]],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[51,68],[70],[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,57,79,88],[51,81,82,83,84,85,86,87],[51,82],[51,57],[51,57,79],[51,57,79,80],[51,79,88,89],[51,79],[62,67,71,72,73],[62,67,69,71,73,74],[62],[96],[57,73],[93,94,95],[75],[57,95],[51,57,76,78,90],[51,57,75,76,77],[51,76,78,91],[51,75],[51,57,76],[51,79,88],[69,73],[],[51]],"referencedMap":[[70,1],[71,2],[53,3],[64,4],[69,5],[72,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],[89,22],[88,23],[83,24],[84,25],[87,26],[81,27],[85,25],[86,25],[82,25],[90,28],[79,25],[80,29],[74,30],[75,31],[73,32],[92,25],[97,33],[94,34],[93,34],[96,35],[95,36],[98,37],[91,38],[78,39],[99,40],[76,41],[77,42]],"exportedModulesMap":[[70,1],[71,2],[53,3],[64,4],[69,5],[72,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],[89,22],[88,23],[83,24],[84,25],[87,25],[81,27],[85,25],[86,25],[82,25],[90,43],[79,25],[80,29],[74,30],[75,44],[73,45],[92,25],[97,25],[94,25],[93,25],[96,25],[95,25],[98,25],[91,38],[78,39],[99,25],[76,46],[77,42]],"semanticDiagnosticsPerFile":[70,71,53,64,52,63,68,69,72,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,89,88,83,84,87,81,85,86,82,90,79,80,74,75,73,92,97,94,93,96,95,98,91,78,99,76,77],"affectedFilesPendingEmit":[91,78,99,76,77],"emitSignatures":[76,77,78,91]},"version":"5.3.3"}
|