@fiscozen/input 0.1.10 → 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 +1571 -1370
- package/dist/input.umd.cjs +5 -5
- package/dist/src/FzCurrencyInput.vue.d.ts +27 -9
- package/dist/src/FzInput.vue.d.ts +36 -10
- package/dist/src/types.d.ts +13 -1
- package/package.json +5 -5
- package/src/FzInput.vue +13 -1
- package/src/__tests__/FzInput.spec.ts +28 -0
- package/src/types.ts +11 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{
|
|
2
2
|
amount: import('vue').PropType<any>;
|
|
3
|
+
error: {
|
|
4
|
+
type: import('vue').PropType<boolean>;
|
|
5
|
+
};
|
|
3
6
|
name: {
|
|
4
7
|
type: import('vue').PropType<string>;
|
|
5
8
|
};
|
|
@@ -22,9 +25,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
22
25
|
disabled: {
|
|
23
26
|
type: import('vue').PropType<boolean>;
|
|
24
27
|
};
|
|
25
|
-
error: {
|
|
26
|
-
type: import('vue').PropType<boolean>;
|
|
27
|
-
};
|
|
28
28
|
leftIcon: {
|
|
29
29
|
type: import('vue').PropType<string>;
|
|
30
30
|
};
|
|
@@ -43,6 +43,15 @@ 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
|
+
};
|
|
49
|
+
rightIconClass: {
|
|
50
|
+
type: import('vue').PropType<string>;
|
|
51
|
+
};
|
|
52
|
+
leftIconClass: {
|
|
53
|
+
type: import('vue').PropType<string>;
|
|
54
|
+
};
|
|
46
55
|
nullOnEmpty: {
|
|
47
56
|
type: import('vue').PropType<boolean>;
|
|
48
57
|
};
|
|
@@ -51,7 +60,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
51
60
|
default: number;
|
|
52
61
|
};
|
|
53
62
|
maximumFractionDigits: {
|
|
54
|
-
type: import('vue').PropType<number
|
|
63
|
+
type: import('vue').PropType<number>;
|
|
55
64
|
default: number;
|
|
56
65
|
};
|
|
57
66
|
}, {
|
|
@@ -61,6 +70,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
61
70
|
"update:amount": (...args: any[]) => void;
|
|
62
71
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
63
72
|
amount: import('vue').PropType<any>;
|
|
73
|
+
error: {
|
|
74
|
+
type: import('vue').PropType<boolean>;
|
|
75
|
+
};
|
|
64
76
|
name: {
|
|
65
77
|
type: import('vue').PropType<string>;
|
|
66
78
|
};
|
|
@@ -83,9 +95,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
83
95
|
disabled: {
|
|
84
96
|
type: import('vue').PropType<boolean>;
|
|
85
97
|
};
|
|
86
|
-
error: {
|
|
87
|
-
type: import('vue').PropType<boolean>;
|
|
88
|
-
};
|
|
89
98
|
leftIcon: {
|
|
90
99
|
type: import('vue').PropType<string>;
|
|
91
100
|
};
|
|
@@ -104,6 +113,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
104
113
|
readonly: {
|
|
105
114
|
type: import('vue').PropType<boolean>;
|
|
106
115
|
};
|
|
116
|
+
maxlength: {
|
|
117
|
+
type: import('vue').PropType<number>;
|
|
118
|
+
};
|
|
119
|
+
rightIconClass: {
|
|
120
|
+
type: import('vue').PropType<string>;
|
|
121
|
+
};
|
|
122
|
+
leftIconClass: {
|
|
123
|
+
type: import('vue').PropType<string>;
|
|
124
|
+
};
|
|
107
125
|
nullOnEmpty: {
|
|
108
126
|
type: import('vue').PropType<boolean>;
|
|
109
127
|
};
|
|
@@ -112,13 +130,13 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
112
130
|
default: number;
|
|
113
131
|
};
|
|
114
132
|
maximumFractionDigits: {
|
|
115
|
-
type: import('vue').PropType<number
|
|
133
|
+
type: import('vue').PropType<number>;
|
|
116
134
|
default: number;
|
|
117
135
|
};
|
|
118
136
|
}>> & {
|
|
119
137
|
"onUpdate:amount"?: ((...args: any[]) => any) | undefined;
|
|
120
138
|
}, {
|
|
121
139
|
minimumFractionDigits: number;
|
|
122
|
-
maximumFractionDigits: number
|
|
140
|
+
maximumFractionDigits: number;
|
|
123
141
|
}, {}>;
|
|
124
142
|
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
|
};
|
|
@@ -51,15 +51,31 @@ 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
|
+
};
|
|
57
|
+
rightIconClass: {
|
|
58
|
+
type: import('vue').PropType<string>;
|
|
59
|
+
};
|
|
60
|
+
leftIconClass: {
|
|
61
|
+
type: import('vue').PropType<string>;
|
|
62
|
+
};
|
|
54
63
|
}, {
|
|
55
64
|
inputRef: Ref<HTMLInputElement | null>;
|
|
56
65
|
containerRef: Ref<HTMLElement | null>;
|
|
57
66
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
67
|
+
blur: (...args: any[]) => void;
|
|
68
|
+
focus: (...args: any[]) => void;
|
|
58
69
|
input: (...args: any[]) => void;
|
|
59
70
|
paste: (...args: any[]) => void;
|
|
60
|
-
|
|
71
|
+
"fzinput:left-icon-click": (...args: any[]) => void;
|
|
72
|
+
"fzinput:right-icon-click": (...args: any[]) => void;
|
|
61
73
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
62
74
|
modelValue: import('vue').PropType<any>;
|
|
75
|
+
error: {
|
|
76
|
+
type: import('vue').PropType<boolean>;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
63
79
|
name: {
|
|
64
80
|
type: import('vue').PropType<string>;
|
|
65
81
|
};
|
|
@@ -87,10 +103,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
87
103
|
disabled: {
|
|
88
104
|
type: import('vue').PropType<boolean>;
|
|
89
105
|
};
|
|
90
|
-
error: {
|
|
91
|
-
type: import('vue').PropType<boolean>;
|
|
92
|
-
default: boolean;
|
|
93
|
-
};
|
|
94
106
|
leftIcon: {
|
|
95
107
|
type: import('vue').PropType<string>;
|
|
96
108
|
};
|
|
@@ -109,15 +121,29 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
109
121
|
readonly: {
|
|
110
122
|
type: import('vue').PropType<boolean>;
|
|
111
123
|
};
|
|
124
|
+
maxlength: {
|
|
125
|
+
type: import('vue').PropType<number>;
|
|
126
|
+
};
|
|
127
|
+
rightIconClass: {
|
|
128
|
+
type: import('vue').PropType<string>;
|
|
129
|
+
};
|
|
130
|
+
leftIconClass: {
|
|
131
|
+
type: import('vue').PropType<string>;
|
|
132
|
+
};
|
|
112
133
|
}>> & {
|
|
113
134
|
onPaste?: ((...args: any[]) => any) | undefined;
|
|
114
135
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
136
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
115
137
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
138
|
+
"onFzinput:left-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
139
|
+
"onFzinput:right-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
116
140
|
}, {
|
|
141
|
+
error: boolean;
|
|
117
142
|
size: "sm" | "md" | "lg";
|
|
118
143
|
type: "number" | "text" | "password" | "email" | "tel" | "url";
|
|
119
|
-
error: boolean;
|
|
120
144
|
}, {}>, {
|
|
145
|
+
"left-icon"?(_: {}): any;
|
|
146
|
+
"right-icon"?(_: {}): any;
|
|
121
147
|
errorMessage?(_: {}): any;
|
|
122
148
|
helpText?(_: {}): any;
|
|
123
149
|
}>;
|
package/dist/src/types.d.ts
CHANGED
|
@@ -61,6 +61,18 @@ type FzInputProps = {
|
|
|
61
61
|
* native readonly input value
|
|
62
62
|
*/
|
|
63
63
|
readonly?: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* native maxlength input value
|
|
66
|
+
*/
|
|
67
|
+
maxlength?: number;
|
|
68
|
+
/**
|
|
69
|
+
* right icon class
|
|
70
|
+
*/
|
|
71
|
+
rightIconClass?: string;
|
|
72
|
+
/**
|
|
73
|
+
* left icon class
|
|
74
|
+
*/
|
|
75
|
+
leftIconClass?: string;
|
|
64
76
|
};
|
|
65
77
|
interface FzCurrencyInputProps extends Omit<FzInputProps, "type" | "modelValue"> {
|
|
66
78
|
/**
|
|
@@ -78,6 +90,6 @@ interface FzCurrencyInputProps extends Omit<FzInputProps, "type" | "modelValue">
|
|
|
78
90
|
* note that limits from Intl.NumberFormat still apply
|
|
79
91
|
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#digit_options
|
|
80
92
|
*/
|
|
81
|
-
maximumFractionDigits?: number
|
|
93
|
+
maximumFractionDigits?: number;
|
|
82
94
|
}
|
|
83
95
|
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.12",
|
|
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/icons": "^0.1.
|
|
13
|
-
"@fiscozen/composables": "^0.1.
|
|
12
|
+
"@fiscozen/icons": "^0.1.14",
|
|
13
|
+
"@fiscozen/composables": "^0.1.33"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@rushstack/eslint-patch": "^1.3.3",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"vitest": "^1.2.0",
|
|
30
30
|
"vue-tsc": "^1.8.25",
|
|
31
31
|
"@fiscozen/eslint-config": "^0.1.0",
|
|
32
|
-
"@fiscozen/
|
|
33
|
-
"@fiscozen/
|
|
32
|
+
"@fiscozen/tsconfig": "^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
|
|
@@ -29,6 +31,7 @@
|
|
|
29
31
|
:pattern="pattern"
|
|
30
32
|
:name
|
|
31
33
|
:maxlength
|
|
34
|
+
@blur="(e) => $emit('blur', e)"
|
|
32
35
|
@focus="(e) => $emit('focus', e)"
|
|
33
36
|
@paste="(e) => $emit('paste', e)"
|
|
34
37
|
/>
|
|
@@ -44,6 +47,8 @@
|
|
|
44
47
|
:name="rightIcon"
|
|
45
48
|
:size="size"
|
|
46
49
|
:variant="rightIconVariant"
|
|
50
|
+
@click.stop="emit('fzinput:right-icon-click')"
|
|
51
|
+
:class="rightIconClass"
|
|
47
52
|
/>
|
|
48
53
|
</slot>
|
|
49
54
|
</div>
|
|
@@ -98,7 +103,14 @@ const {
|
|
|
98
103
|
containerWidth,
|
|
99
104
|
} = useInputStyle(props, containerRef);
|
|
100
105
|
|
|
101
|
-
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
|
+
]);
|
|
102
114
|
defineExpose({
|
|
103
115
|
inputRef,
|
|
104
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
|
|
@@ -86,7 +96,7 @@ interface FzCurrencyInputProps
|
|
|
86
96
|
* note that limits from Intl.NumberFormat still apply
|
|
87
97
|
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#digit_options
|
|
88
98
|
*/
|
|
89
|
-
maximumFractionDigits?: number
|
|
99
|
+
maximumFractionDigits?: number;
|
|
90
100
|
}
|
|
91
101
|
|
|
92
102
|
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.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/@awesome.me+kit-8137893ad3@1.0.146/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.146/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","./src/index.ts","../composables/src/fzfloating.vue","../icons/src/fzicon.vue"],"fileInfos":[{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0",{"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"],"root":[[76,78],[91,93]],"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],[50,58,59,60,61],[48,49,59,60,61],[49,50,59,60],[54],[50,56],[50],[61,66],[61],[51,81,82,83,84,85,86,87],[51,82],[51,57],[51,57,79],[51,57,79,80],[51,57,79,88],[51,79,88,89],[51,79],[62,67,71,72,73],[62,67,69,71,73,74],[62],[51,57,76,78,90],[51,57,75,76,77],[51,76,78,91],[51,75],[51,57,76],[51,79,88,94],[62,67,69,71,73,95]],"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],[88,22],[83,23],[84,24],[87,25],[81,26],[85,24],[86,24],[82,24],[89,27],[90,28],[79,24],[80,29],[74,30],[75,31],[73,32],[92,24],[91,33],[78,34],[93,35],[76,36],[77,37]],"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],[88,22],[83,23],[84,24],[87,25],[81,26],[85,24],[86,24],[82,24],[89,27],[90,38],[79,24],[80,29],[74,30],[75,39],[73,32],[92,24],[91,33],[78,34],[93,24],[76,36],[77,37]],"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,88,83,84,87,81,85,86,82,89,90,79,80,74,75,73,92,91,78,93,76,77],"affectedFilesPendingEmit":[91,78,93,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/@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"}
|