@fiscozen/input 0.1.10 → 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.
@@ -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,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 | null>;
57
+ type: import('vue').PropType<number>;
55
58
  default: number;
56
59
  };
57
60
  }, {
@@ -61,6 +64,9 @@ declare const _default: import('vue').DefineComponent<{
61
64
  "update:amount": (...args: any[]) => void;
62
65
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
63
66
  amount: import('vue').PropType<any>;
67
+ error: {
68
+ type: import('vue').PropType<boolean>;
69
+ };
64
70
  name: {
65
71
  type: import('vue').PropType<string>;
66
72
  };
@@ -83,9 +89,6 @@ declare const _default: import('vue').DefineComponent<{
83
89
  disabled: {
84
90
  type: import('vue').PropType<boolean>;
85
91
  };
86
- error: {
87
- type: import('vue').PropType<boolean>;
88
- };
89
92
  leftIcon: {
90
93
  type: import('vue').PropType<string>;
91
94
  };
@@ -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 | null>;
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 | null;
128
+ maximumFractionDigits: number;
123
129
  }, {}>;
124
130
  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,23 @@ 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;
62
+ focus: (...args: any[]) => void;
58
63
  input: (...args: any[]) => void;
59
64
  paste: (...args: any[]) => void;
60
- focus: (...args: any[]) => void;
61
65
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
62
66
  modelValue: import('vue').PropType<any>;
67
+ error: {
68
+ type: import('vue').PropType<boolean>;
69
+ default: boolean;
70
+ };
63
71
  name: {
64
72
  type: import('vue').PropType<string>;
65
73
  };
@@ -87,10 +95,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
87
95
  disabled: {
88
96
  type: import('vue').PropType<boolean>;
89
97
  };
90
- error: {
91
- type: import('vue').PropType<boolean>;
92
- default: boolean;
93
- };
94
98
  leftIcon: {
95
99
  type: import('vue').PropType<string>;
96
100
  };
@@ -109,15 +113,21 @@ 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
  }, {
125
+ error: boolean;
117
126
  size: "sm" | "md" | "lg";
118
127
  type: "number" | "text" | "password" | "email" | "tel" | "url";
119
- error: boolean;
120
128
  }, {}>, {
129
+ "left-icon"?(_: {}): any;
130
+ "right-icon"?(_: {}): any;
121
131
  errorMessage?(_: {}): any;
122
132
  helpText?(_: {}): any;
123
133
  }>;
@@ -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 | null;
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.10",
3
+ "version": "0.1.11",
4
4
  "description": "Design System Input component",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
@@ -10,7 +10,7 @@
10
10
  "tailwindcss": "^3.4.1",
11
11
  "vue": "^3.4.13",
12
12
  "@fiscozen/icons": "^0.1.13",
13
- "@fiscozen/composables": "^0.1.30"
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/eslint-config": "^0.1.0",
31
+ "@fiscozen/tsconfig": "^0.1.0",
32
32
  "@fiscozen/prettier-config": "^0.1.0",
33
- "@fiscozen/tsconfig": "^0.1.0"
33
+ "@fiscozen/eslint-config": "^0.1.0"
34
34
  },
35
35
  "license": "MIT",
36
36
  "scripts": {
package/src/FzInput.vue CHANGED
@@ -29,6 +29,7 @@
29
29
  :pattern="pattern"
30
30
  :name
31
31
  :maxlength
32
+ @blur="(e) => $emit('blur', e)"
32
33
  @focus="(e) => $emit('focus', e)"
33
34
  @paste="(e) => $emit('paste', e)"
34
35
  />
@@ -98,7 +99,7 @@ const {
98
99
  containerWidth,
99
100
  } = useInputStyle(props, containerRef);
100
101
 
101
- const emit = defineEmits(["input", "focus", "paste"]);
102
+ const emit = defineEmits(["input", "focus", "paste", "blur"]);
102
103
  defineExpose({
103
104
  inputRef,
104
105
  containerRef,
package/src/types.ts CHANGED
@@ -86,7 +86,7 @@ interface FzCurrencyInputProps
86
86
  * note that limits from Intl.NumberFormat still apply
87
87
  * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#digit_options
88
88
  */
89
- maximumFractionDigits?: number | null;
89
+ maximumFractionDigits?: number;
90
90
  }
91
91
 
92
92
  export { FzInputProps, FzCurrencyInputProps };
@@ -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/@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"}