@fiscozen/input 0.1.8 → 0.1.10

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,8 +1,5 @@
1
1
  declare const _default: import('vue').DefineComponent<{
2
2
  amount: import('vue').PropType<any>;
3
- nullOnEmpty: {
4
- type: import('vue').PropType<boolean>;
5
- };
6
3
  name: {
7
4
  type: import('vue').PropType<string>;
8
5
  };
@@ -46,6 +43,17 @@ declare const _default: import('vue').DefineComponent<{
46
43
  readonly: {
47
44
  type: import('vue').PropType<boolean>;
48
45
  };
46
+ nullOnEmpty: {
47
+ type: import('vue').PropType<boolean>;
48
+ };
49
+ minimumFractionDigits: {
50
+ type: import('vue').PropType<number>;
51
+ default: number;
52
+ };
53
+ maximumFractionDigits: {
54
+ type: import('vue').PropType<number | null>;
55
+ default: number;
56
+ };
49
57
  }, {
50
58
  inputRef: import('vue').ComputedRef<HTMLInputElement | null | undefined>;
51
59
  containerRef: import('vue').ComputedRef<HTMLElement | null | undefined>;
@@ -53,9 +61,6 @@ declare const _default: import('vue').DefineComponent<{
53
61
  "update:amount": (...args: any[]) => void;
54
62
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
55
63
  amount: import('vue').PropType<any>;
56
- nullOnEmpty: {
57
- type: import('vue').PropType<boolean>;
58
- };
59
64
  name: {
60
65
  type: import('vue').PropType<string>;
61
66
  };
@@ -99,7 +104,21 @@ declare const _default: import('vue').DefineComponent<{
99
104
  readonly: {
100
105
  type: import('vue').PropType<boolean>;
101
106
  };
107
+ nullOnEmpty: {
108
+ type: import('vue').PropType<boolean>;
109
+ };
110
+ minimumFractionDigits: {
111
+ type: import('vue').PropType<number>;
112
+ default: number;
113
+ };
114
+ maximumFractionDigits: {
115
+ type: import('vue').PropType<number | null>;
116
+ default: number;
117
+ };
102
118
  }>> & {
103
119
  "onUpdate:amount"?: ((...args: any[]) => any) | undefined;
104
- }, {}, {}>;
120
+ }, {
121
+ minimumFractionDigits: number;
122
+ maximumFractionDigits: number | null;
123
+ }, {}>;
105
124
  export default _default;
@@ -56,6 +56,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
56
56
  containerRef: Ref<HTMLElement | null>;
57
57
  }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
58
58
  input: (...args: any[]) => void;
59
+ paste: (...args: any[]) => void;
59
60
  focus: (...args: any[]) => void;
60
61
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
61
62
  modelValue: import('vue').PropType<any>;
@@ -109,6 +110,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
109
110
  type: import('vue').PropType<boolean>;
110
111
  };
111
112
  }>> & {
113
+ onPaste?: ((...args: any[]) => any) | undefined;
112
114
  onFocus?: ((...args: any[]) => any) | undefined;
113
115
  onInput?: ((...args: any[]) => any) | undefined;
114
116
  }, {
@@ -67,5 +67,17 @@ interface FzCurrencyInputProps extends Omit<FzInputProps, "type" | "modelValue">
67
67
  * Is set to true, an empty string will be casted to null
68
68
  */
69
69
  nullOnEmpty?: boolean;
70
+ /**
71
+ * Minimum number of decimal places allowed, set null to allow arbitrary decimal values length
72
+ * note that limits from Intl.NumberFormat still apply
73
+ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#digit_options
74
+ */
75
+ minimumFractionDigits?: number;
76
+ /**
77
+ * Maximum number of decimal places allowed, set null to allow arbitrary decimal values length
78
+ * note that limits from Intl.NumberFormat still apply
79
+ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#digit_options
80
+ */
81
+ maximumFractionDigits?: number | null;
70
82
  }
71
83
  export { FzInputProps, FzCurrencyInputProps };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiscozen/input",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "Design System Input component",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
@@ -9,8 +9,8 @@
9
9
  "peerDependencies": {
10
10
  "tailwindcss": "^3.4.1",
11
11
  "vue": "^3.4.13",
12
- "@fiscozen/composables": "^0.1.26",
13
- "@fiscozen/icons": "^0.1.10"
12
+ "@fiscozen/icons": "^0.1.13",
13
+ "@fiscozen/composables": "^0.1.30"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@rushstack/eslint-patch": "^1.3.3",
package/src/FzInput.vue CHANGED
@@ -8,12 +8,14 @@
8
8
  ref="containerRef"
9
9
  @click="inputRef?.focus()"
10
10
  >
11
- <FzIcon
12
- v-if="leftIcon"
13
- :name="leftIcon"
14
- :size="size"
15
- :variant="leftIconVariant"
16
- />
11
+ <slot name="left-icon">
12
+ <FzIcon
13
+ v-if="leftIcon"
14
+ :name="leftIcon"
15
+ :size="size"
16
+ :variant="leftIconVariant"
17
+ />
18
+ </slot>
17
19
  <input
18
20
  :type="type"
19
21
  :required="required ? required : false"
@@ -26,21 +28,24 @@
26
28
  :class="[staticInputClass]"
27
29
  :pattern="pattern"
28
30
  :name
31
+ :maxlength
29
32
  @focus="(e) => $emit('focus', e)"
30
33
  @paste="(e) => $emit('paste', e)"
31
34
  />
32
- <FzIcon
33
- v-if="valid"
34
- name="check"
35
- :size="size"
36
- class="text-semantic-success"
37
- />
38
- <FzIcon
39
- v-if="rightIcon"
40
- :name="rightIcon"
41
- :size="size"
42
- :variant="rightIconVariant"
43
- />
35
+ <slot name="right-icon">
36
+ <FzIcon
37
+ v-if="valid"
38
+ name="check"
39
+ :size="size"
40
+ class="text-semantic-success"
41
+ />
42
+ <FzIcon
43
+ v-if="rightIcon"
44
+ :name="rightIcon"
45
+ :size="size"
46
+ :variant="rightIconVariant"
47
+ />
48
+ </slot>
44
49
  </div>
45
50
  <div
46
51
  v-if="error && $slots.errorMessage"
package/src/types.ts CHANGED
@@ -62,6 +62,11 @@ type FzInputProps = {
62
62
  * native readonly input value
63
63
  */
64
64
  readonly?: boolean;
65
+
66
+ /**
67
+ * native maxlength input value
68
+ */
69
+ maxlength?: number;
65
70
  };
66
71
 
67
72
  interface FzCurrencyInputProps
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/@vue+shared@3.4.13/node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/.pnpm/@vue+reactivity@3.4.13/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/.pnpm/@vue+runtime-core@3.4.13/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../node_modules/.pnpm/@vue+runtime-dom@3.4.13/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.3.3/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/@babel+types@7.23.6/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.23.6/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../../node_modules/.pnpm/@vue+compiler-core@3.4.13/node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/.pnpm/@vue+compiler-dom@3.4.13/node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.3.3/node_modules/vue/dist/vue.d.mts","../../node_modules/.pnpm/@vue+shared@3.4.33/node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/.pnpm/@vue+reactivity@3.4.33/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/.pnpm/@vue+runtime-core@3.4.33/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../node_modules/.pnpm/@vue+runtime-dom@3.4.33/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/.pnpm/vue@3.4.33_typescript@5.4.2/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/@babel+types@7.24.9/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.24.8/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/@vue+compiler-core@3.4.33/node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/.pnpm/@vue+compiler-dom@3.4.33/node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/.pnpm/vue@3.4.33_typescript@5.4.2/node_modules/vue/dist/vue.d.mts","../../node_modules/.pnpm/@fortawesome+fontawesome-common-types@6.6.0/node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-svg-core@6.6.0/node_modules/@fortawesome/fontawesome-svg-core/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-common-types@6.5.1/node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-svg-core@6.5.1/node_modules/@fortawesome/fontawesome-svg-core/index.d.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.140/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.140/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.ts","../../node_modules/.pnpm/@fortawesome+vue-fontawesome@3.0.8_@fortawesome+fontawesome-svg-core@6.6.0_vue@3.4.33_typescript@5.4.2_/node_modules/@fortawesome/vue-fontawesome/index.d.ts","../icons/src/types.ts","../icons/src/FzIcon.vue.ts","../icons/src/index.ts","./src/types.ts","./src/useInputStyle.ts","./src/FzInput.vue.ts","../composables/src/types.ts","../composables/src/utils/index.ts","../composables/src/composables/useFloating.ts","../composables/src/composables/useMediaQuery.ts","../composables/src/composables/useBreakpoints.ts","../composables/src/composables/useClickOutside.ts","../composables/src/composables/useKeyDown.ts","../composables/src/composables/useKeyUp.ts","../composables/src/composables/useCurrency.ts","../composables/src/composables/index.ts","../composables/src/FzFloating.vue.ts","../composables/src/index.ts","./src/FzCurrencyInput.vue.ts","./__VLS_types.d.ts","./dist/src/FzInput.vue.d.ts","./dist/src/FzCurrencyInput.vue.d.ts","./dist/src/types.d.ts","./dist/src/index.d.ts","./dist/index.d.ts","./dist/src/useInputStyle.d.ts","./src/index.ts"],"fileInfos":[{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0"],"root":[[78,80],[93,101]],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[51,68,71,72],[68,72],[52],[63],[70],[68],[67,69],[46,52,53,54],[52,58,64],[55],[65],[46],[58],[46,47,48],[50,58,59,60,61],[48,49,59,60,61],[49,50,59,60],[54],[50,56],[50],[61,66],[61],[51,57,81,90],[51,83,84,85,86,87,88,89],[51,84],[51,57],[51,57,81,82],[51,81,90,91],[51,81],[62,67,73,74,75],[62,67,69,73,75,76],[62],[98],[57,75],[95,96,97],[77],[57,97],[51,57,78,80,92],[51,57,77,78,79],[51,78,80,93],[51,77],[51,57,78],[48,49],[51,81,90],[62,67,69,73,75],[51]],"referencedMap":[[72,1],[73,2],[53,3],[64,4],[71,5],[69,6],[74,7],[55,8],[65,9],[56,10],[66,11],[47,12],[59,13],[48,14],[60,15],[50,16],[61,17],[54,18],[57,19],[51,20],[67,21],[62,22],[91,23],[90,24],[85,25],[86,26],[89,26],[83,27],[87,26],[88,26],[84,26],[92,28],[81,26],[82,29],[76,30],[77,31],[75,32],[94,26],[99,33],[96,34],[95,34],[98,35],[97,36],[100,37],[93,38],[80,39],[101,40],[78,41],[79,42]],"exportedModulesMap":[[72,1],[73,2],[53,3],[64,4],[71,5],[69,6],[74,7],[55,8],[65,9],[56,10],[66,11],[47,12],[59,13],[48,14],[60,15],[50,43],[61,17],[54,18],[57,19],[51,20],[67,21],[62,22],[91,23],[90,24],[85,25],[86,26],[89,26],[83,27],[87,26],[88,26],[84,26],[92,44],[81,26],[82,29],[76,30],[77,45],[75,32],[94,26],[99,26],[96,26],[95,26],[98,26],[97,26],[100,26],[93,38],[80,39],[101,26],[78,46],[79,42]],"semanticDiagnosticsPerFile":[72,73,53,64,52,63,70,68,71,69,74,55,65,56,66,47,59,48,60,50,61,46,58,49,54,44,45,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,1,57,51,67,62,91,90,85,86,89,83,87,88,84,92,81,82,76,77,75,94,99,96,95,98,97,100,93,80,101,78,79],"affectedFilesPendingEmit":[93,80,101,78,79],"emitSignatures":[78,79,80,93]},"version":"5.3.3"}
1
+ {"program":{"fileNames":["../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/@vue+shared@3.4.13/node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/.pnpm/@vue+reactivity@3.4.13/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/.pnpm/@vue+runtime-core@3.4.13/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../node_modules/.pnpm/@vue+runtime-dom@3.4.13/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.3.3/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/@babel+types@7.23.6/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.23.6/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../../node_modules/.pnpm/@vue+compiler-core@3.4.13/node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/.pnpm/@vue+compiler-dom@3.4.13/node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.3.3/node_modules/vue/dist/vue.d.mts","../../node_modules/.pnpm/@vue+shared@3.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"}