@fiscozen/input 0.1.9 → 0.1.11
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 +1181 -1154
- package/dist/input.umd.cjs +5 -5
- package/dist/src/FzCurrencyInput.vue.d.ts +9 -3
- package/dist/src/FzInput.vue.d.ts +8 -0
- package/dist/src/types.d.ts +5 -1
- package/package.json +5 -5
- package/src/FzInput.vue +3 -1
- package/src/types.ts +6 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -43,6 +43,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
43
43
|
readonly: {
|
|
44
44
|
type: import('vue').PropType<boolean>;
|
|
45
45
|
};
|
|
46
|
+
maxlength: {
|
|
47
|
+
type: import('vue').PropType<number>;
|
|
48
|
+
};
|
|
46
49
|
nullOnEmpty: {
|
|
47
50
|
type: import('vue').PropType<boolean>;
|
|
48
51
|
};
|
|
@@ -51,7 +54,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
51
54
|
default: number;
|
|
52
55
|
};
|
|
53
56
|
maximumFractionDigits: {
|
|
54
|
-
type: import('vue').PropType<number
|
|
57
|
+
type: import('vue').PropType<number>;
|
|
55
58
|
default: number;
|
|
56
59
|
};
|
|
57
60
|
}, {
|
|
@@ -104,6 +107,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
104
107
|
readonly: {
|
|
105
108
|
type: import('vue').PropType<boolean>;
|
|
106
109
|
};
|
|
110
|
+
maxlength: {
|
|
111
|
+
type: import('vue').PropType<number>;
|
|
112
|
+
};
|
|
107
113
|
nullOnEmpty: {
|
|
108
114
|
type: import('vue').PropType<boolean>;
|
|
109
115
|
};
|
|
@@ -112,13 +118,13 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
112
118
|
default: number;
|
|
113
119
|
};
|
|
114
120
|
maximumFractionDigits: {
|
|
115
|
-
type: import('vue').PropType<number
|
|
121
|
+
type: import('vue').PropType<number>;
|
|
116
122
|
default: number;
|
|
117
123
|
};
|
|
118
124
|
}>> & {
|
|
119
125
|
"onUpdate:amount"?: ((...args: any[]) => any) | undefined;
|
|
120
126
|
}, {
|
|
121
127
|
minimumFractionDigits: number;
|
|
122
|
-
maximumFractionDigits: number
|
|
128
|
+
maximumFractionDigits: number;
|
|
123
129
|
}, {}>;
|
|
124
130
|
export default _default;
|
|
@@ -51,10 +51,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
51
51
|
readonly: {
|
|
52
52
|
type: import('vue').PropType<boolean>;
|
|
53
53
|
};
|
|
54
|
+
maxlength: {
|
|
55
|
+
type: import('vue').PropType<number>;
|
|
56
|
+
};
|
|
54
57
|
}, {
|
|
55
58
|
inputRef: Ref<HTMLInputElement | null>;
|
|
56
59
|
containerRef: Ref<HTMLElement | null>;
|
|
57
60
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
61
|
+
blur: (...args: any[]) => void;
|
|
58
62
|
focus: (...args: any[]) => void;
|
|
59
63
|
input: (...args: any[]) => void;
|
|
60
64
|
paste: (...args: any[]) => void;
|
|
@@ -109,9 +113,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
109
113
|
readonly: {
|
|
110
114
|
type: import('vue').PropType<boolean>;
|
|
111
115
|
};
|
|
116
|
+
maxlength: {
|
|
117
|
+
type: import('vue').PropType<number>;
|
|
118
|
+
};
|
|
112
119
|
}>> & {
|
|
113
120
|
onPaste?: ((...args: any[]) => any) | undefined;
|
|
114
121
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
122
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
115
123
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
116
124
|
}, {
|
|
117
125
|
error: boolean;
|
package/dist/src/types.d.ts
CHANGED
|
@@ -61,6 +61,10 @@ type FzInputProps = {
|
|
|
61
61
|
* native readonly input value
|
|
62
62
|
*/
|
|
63
63
|
readonly?: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* native maxlength input value
|
|
66
|
+
*/
|
|
67
|
+
maxlength?: number;
|
|
64
68
|
};
|
|
65
69
|
interface FzCurrencyInputProps extends Omit<FzInputProps, "type" | "modelValue"> {
|
|
66
70
|
/**
|
|
@@ -78,6 +82,6 @@ interface FzCurrencyInputProps extends Omit<FzInputProps, "type" | "modelValue">
|
|
|
78
82
|
* note that limits from Intl.NumberFormat still apply
|
|
79
83
|
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#digit_options
|
|
80
84
|
*/
|
|
81
|
-
maximumFractionDigits?: number
|
|
85
|
+
maximumFractionDigits?: number;
|
|
82
86
|
}
|
|
83
87
|
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.11",
|
|
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/
|
|
13
|
-
"@fiscozen/
|
|
12
|
+
"@fiscozen/icons": "^0.1.13",
|
|
13
|
+
"@fiscozen/composables": "^0.1.33"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@rushstack/eslint-patch": "^1.3.3",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"vite-plugin-dts": "^3.8.3",
|
|
29
29
|
"vitest": "^1.2.0",
|
|
30
30
|
"vue-tsc": "^1.8.25",
|
|
31
|
-
"@fiscozen/
|
|
31
|
+
"@fiscozen/tsconfig": "^0.1.0",
|
|
32
32
|
"@fiscozen/prettier-config": "^0.1.0",
|
|
33
|
-
"@fiscozen/
|
|
33
|
+
"@fiscozen/eslint-config": "^0.1.0"
|
|
34
34
|
},
|
|
35
35
|
"license": "MIT",
|
|
36
36
|
"scripts": {
|
package/src/FzInput.vue
CHANGED
|
@@ -28,6 +28,8 @@
|
|
|
28
28
|
:class="[staticInputClass]"
|
|
29
29
|
:pattern="pattern"
|
|
30
30
|
:name
|
|
31
|
+
:maxlength
|
|
32
|
+
@blur="(e) => $emit('blur', e)"
|
|
31
33
|
@focus="(e) => $emit('focus', e)"
|
|
32
34
|
@paste="(e) => $emit('paste', e)"
|
|
33
35
|
/>
|
|
@@ -97,7 +99,7 @@ const {
|
|
|
97
99
|
containerWidth,
|
|
98
100
|
} = useInputStyle(props, containerRef);
|
|
99
101
|
|
|
100
|
-
const emit = defineEmits(["input", "focus", "paste"]);
|
|
102
|
+
const emit = defineEmits(["input", "focus", "paste", "blur"]);
|
|
101
103
|
defineExpose({
|
|
102
104
|
inputRef,
|
|
103
105
|
containerRef,
|
package/src/types.ts
CHANGED
|
@@ -62,6 +62,11 @@ type FzInputProps = {
|
|
|
62
62
|
* native readonly input value
|
|
63
63
|
*/
|
|
64
64
|
readonly?: boolean;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* native maxlength input value
|
|
68
|
+
*/
|
|
69
|
+
maxlength?: number;
|
|
65
70
|
};
|
|
66
71
|
|
|
67
72
|
interface FzCurrencyInputProps
|
|
@@ -81,7 +86,7 @@ interface FzCurrencyInputProps
|
|
|
81
86
|
* note that limits from Intl.NumberFormat still apply
|
|
82
87
|
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#digit_options
|
|
83
88
|
*/
|
|
84
|
-
maximumFractionDigits?: number
|
|
89
|
+
maximumFractionDigits?: number;
|
|
85
90
|
}
|
|
86
91
|
|
|
87
92
|
export { FzInputProps, FzCurrencyInputProps };
|
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.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"}
|
|
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.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","./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","./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","../../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","../icons/src/fzicon.vue","../../node_modules/.pnpm/vue@3.4.33_typescript@5.4.2/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/vue@3.4.33_typescript@5.4.2/node_modules/vue/dist/vue.d.mts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.146/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.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":[[76,78],[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],[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,83,84,85,86,87,88,89],[51,84],[51,57],[51,57,79,82],[51,57,79,90],[51,79,82,90,91],[51,80,81],[51,79],[62,67,71,72,73],[62,67,69,71,73,74],[62],[98],[57,73],[95,96,97],[75],[57,97],[51,57,76,78,92],[51,57,75,76,77],[51,76,78,93],[51,75],[51,57,76],[48,49,102,103,104],[51,57,79],[51,79,90,105],[69,73,106,107],[106],[96,97,98],[99],[57,98]],"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],[90,22],[85,23],[86,24],[89,25],[83,25],[87,24],[88,24],[84,24],[91,26],[92,27],[79,24],[82,28],[80,29],[81,29],[74,30],[75,31],[73,32],[94,24],[99,33],[96,34],[95,34],[98,35],[97,36],[100,37],[93,38],[78,39],[101,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,43],[61,16],[54,17],[57,18],[51,19],[67,20],[62,21],[90,22],[85,23],[86,24],[89,44],[83,25],[87,24],[88,24],[84,24],[91,26],[92,45],[79,24],[82,29],[80,29],[81,29],[74,30],[75,46],[73,47],[94,24],[99,48],[96,34],[95,24],[98,36],[97,34],[100,49],[93,38],[78,39],[101,50],[76,41],[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,90,85,86,89,83,87,88,84,91,92,79,82,80,81,74,75,73,94,99,96,95,98,97,100,93,78,101,76,77],"affectedFilesPendingEmit":[93,78,101,76,77],"emitSignatures":[76,77,78,93]},"version":"5.3.3"}
|