@fiscozen/input 0.1.11 → 0.1.12
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 +1147 -1099
- package/dist/input.umd.cjs +5 -5
- package/dist/src/FzCurrencyInput.vue.d.ts +12 -0
- package/dist/src/FzInput.vue.d.ts +16 -0
- package/dist/src/types.d.ts +8 -0
- package/package.json +4 -4
- package/src/FzInput.vue +12 -1
- package/src/__tests__/FzInput.spec.ts +28 -0
- package/src/types.ts +10 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -46,6 +46,12 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
46
46
|
maxlength: {
|
|
47
47
|
type: import('vue').PropType<number>;
|
|
48
48
|
};
|
|
49
|
+
rightIconClass: {
|
|
50
|
+
type: import('vue').PropType<string>;
|
|
51
|
+
};
|
|
52
|
+
leftIconClass: {
|
|
53
|
+
type: import('vue').PropType<string>;
|
|
54
|
+
};
|
|
49
55
|
nullOnEmpty: {
|
|
50
56
|
type: import('vue').PropType<boolean>;
|
|
51
57
|
};
|
|
@@ -110,6 +116,12 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
110
116
|
maxlength: {
|
|
111
117
|
type: import('vue').PropType<number>;
|
|
112
118
|
};
|
|
119
|
+
rightIconClass: {
|
|
120
|
+
type: import('vue').PropType<string>;
|
|
121
|
+
};
|
|
122
|
+
leftIconClass: {
|
|
123
|
+
type: import('vue').PropType<string>;
|
|
124
|
+
};
|
|
113
125
|
nullOnEmpty: {
|
|
114
126
|
type: import('vue').PropType<boolean>;
|
|
115
127
|
};
|
|
@@ -54,6 +54,12 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
54
54
|
maxlength: {
|
|
55
55
|
type: import('vue').PropType<number>;
|
|
56
56
|
};
|
|
57
|
+
rightIconClass: {
|
|
58
|
+
type: import('vue').PropType<string>;
|
|
59
|
+
};
|
|
60
|
+
leftIconClass: {
|
|
61
|
+
type: import('vue').PropType<string>;
|
|
62
|
+
};
|
|
57
63
|
}, {
|
|
58
64
|
inputRef: Ref<HTMLInputElement | null>;
|
|
59
65
|
containerRef: Ref<HTMLElement | null>;
|
|
@@ -62,6 +68,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
62
68
|
focus: (...args: any[]) => void;
|
|
63
69
|
input: (...args: any[]) => void;
|
|
64
70
|
paste: (...args: any[]) => void;
|
|
71
|
+
"fzinput:left-icon-click": (...args: any[]) => void;
|
|
72
|
+
"fzinput:right-icon-click": (...args: any[]) => void;
|
|
65
73
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
66
74
|
modelValue: import('vue').PropType<any>;
|
|
67
75
|
error: {
|
|
@@ -116,11 +124,19 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
116
124
|
maxlength: {
|
|
117
125
|
type: import('vue').PropType<number>;
|
|
118
126
|
};
|
|
127
|
+
rightIconClass: {
|
|
128
|
+
type: import('vue').PropType<string>;
|
|
129
|
+
};
|
|
130
|
+
leftIconClass: {
|
|
131
|
+
type: import('vue').PropType<string>;
|
|
132
|
+
};
|
|
119
133
|
}>> & {
|
|
120
134
|
onPaste?: ((...args: any[]) => any) | undefined;
|
|
121
135
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
122
136
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
123
137
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
138
|
+
"onFzinput:left-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
139
|
+
"onFzinput:right-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
124
140
|
}, {
|
|
125
141
|
error: boolean;
|
|
126
142
|
size: "sm" | "md" | "lg";
|
package/dist/src/types.d.ts
CHANGED
|
@@ -65,6 +65,14 @@ type FzInputProps = {
|
|
|
65
65
|
* native maxlength input value
|
|
66
66
|
*/
|
|
67
67
|
maxlength?: number;
|
|
68
|
+
/**
|
|
69
|
+
* right icon class
|
|
70
|
+
*/
|
|
71
|
+
rightIconClass?: string;
|
|
72
|
+
/**
|
|
73
|
+
* left icon class
|
|
74
|
+
*/
|
|
75
|
+
leftIconClass?: string;
|
|
68
76
|
};
|
|
69
77
|
interface FzCurrencyInputProps extends Omit<FzInputProps, "type" | "modelValue"> {
|
|
70
78
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiscozen/input",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "Design System Input component",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"tailwindcss": "^3.4.1",
|
|
11
11
|
"vue": "^3.4.13",
|
|
12
|
-
"@fiscozen/icons": "^0.1.
|
|
12
|
+
"@fiscozen/icons": "^0.1.14",
|
|
13
13
|
"@fiscozen/composables": "^0.1.33"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
@@ -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/eslint-config": "^0.1.0",
|
|
31
32
|
"@fiscozen/tsconfig": "^0.1.0",
|
|
32
|
-
"@fiscozen/prettier-config": "^0.1.0"
|
|
33
|
-
"@fiscozen/eslint-config": "^0.1.0"
|
|
33
|
+
"@fiscozen/prettier-config": "^0.1.0"
|
|
34
34
|
},
|
|
35
35
|
"license": "MIT",
|
|
36
36
|
"scripts": {
|
package/src/FzInput.vue
CHANGED
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
:name="leftIcon"
|
|
15
15
|
:size="size"
|
|
16
16
|
:variant="leftIconVariant"
|
|
17
|
+
@click.stop="emit('fzinput:left-icon-click')"
|
|
18
|
+
:class="leftIconClass"
|
|
17
19
|
/>
|
|
18
20
|
</slot>
|
|
19
21
|
<input
|
|
@@ -45,6 +47,8 @@
|
|
|
45
47
|
:name="rightIcon"
|
|
46
48
|
:size="size"
|
|
47
49
|
:variant="rightIconVariant"
|
|
50
|
+
@click.stop="emit('fzinput:right-icon-click')"
|
|
51
|
+
:class="rightIconClass"
|
|
48
52
|
/>
|
|
49
53
|
</slot>
|
|
50
54
|
</div>
|
|
@@ -99,7 +103,14 @@ const {
|
|
|
99
103
|
containerWidth,
|
|
100
104
|
} = useInputStyle(props, containerRef);
|
|
101
105
|
|
|
102
|
-
const emit = defineEmits([
|
|
106
|
+
const emit = defineEmits([
|
|
107
|
+
"input",
|
|
108
|
+
"focus",
|
|
109
|
+
"paste",
|
|
110
|
+
"blur",
|
|
111
|
+
"fzinput:left-icon-click",
|
|
112
|
+
"fzinput:right-icon-click",
|
|
113
|
+
]);
|
|
103
114
|
defineExpose({
|
|
104
115
|
inputRef,
|
|
105
116
|
containerRef,
|
|
@@ -150,4 +150,32 @@ describe.concurrent("FzInput", () => {
|
|
|
150
150
|
|
|
151
151
|
expect(new Set(ids).size).toBe(NUMBER_OF_INPUTS);
|
|
152
152
|
});
|
|
153
|
+
|
|
154
|
+
it("emits fzinput:right-icon-click event", async ({ expect }) => {
|
|
155
|
+
const wrapper = mount(FzInput, {
|
|
156
|
+
props: {
|
|
157
|
+
label: "Label",
|
|
158
|
+
rightIcon: "eye",
|
|
159
|
+
},
|
|
160
|
+
slots: {},
|
|
161
|
+
});
|
|
162
|
+
|
|
163
|
+
await wrapper.find(".fa-eye").trigger("click");
|
|
164
|
+
|
|
165
|
+
expect(wrapper.emitted("fzinput:right-icon-click")).toBeTruthy();
|
|
166
|
+
});
|
|
167
|
+
|
|
168
|
+
it("emits fzinput:left-icon-click event", async ({ expect }) => {
|
|
169
|
+
const wrapper = mount(FzInput, {
|
|
170
|
+
props: {
|
|
171
|
+
label: "Label",
|
|
172
|
+
leftIcon: "eye",
|
|
173
|
+
},
|
|
174
|
+
slots: {},
|
|
175
|
+
});
|
|
176
|
+
|
|
177
|
+
await wrapper.find(".fa-eye").trigger("click");
|
|
178
|
+
|
|
179
|
+
expect(wrapper.emitted("fzinput:left-icon-click")).toBeTruthy();
|
|
180
|
+
});
|
|
153
181
|
});
|
package/src/types.ts
CHANGED
|
@@ -67,6 +67,16 @@ type FzInputProps = {
|
|
|
67
67
|
* native maxlength input value
|
|
68
68
|
*/
|
|
69
69
|
maxlength?: number;
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* right icon class
|
|
73
|
+
*/
|
|
74
|
+
rightIconClass?: string;
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* left icon class
|
|
78
|
+
*/
|
|
79
|
+
leftIconClass?: string;
|
|
70
80
|
};
|
|
71
81
|
|
|
72
82
|
interface 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.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"}
|
|
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"}
|