@fiscozen/input 0.1.5 → 0.1.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiscozen/input",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
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.21",
13
- "@fiscozen/icons": "^0.1.9"
12
+ "@fiscozen/icons": "^0.1.9",
13
+ "@fiscozen/composables": "^0.1.24"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@rushstack/eslint-patch": "^1.3.3",
@@ -1,24 +1,28 @@
1
1
  <template>
2
- <FzInput
3
- ref="fzInputRef"
4
- v-bind="props"
5
- :model-value="model"
6
- ></FzInput>
2
+ <FzInput ref="fzInputRef" v-bind="props" type="text"></FzInput>
7
3
  </template>
8
4
 
9
5
  <script setup lang="ts">
10
- import {onMounted, ref} from 'vue'
11
- import FzInput from './FzInput.vue'
12
- import {FzCurrencyInputProps} from './types'
13
- import {useCurrency} from '@fiscozen/composables'
6
+ import { computed, onMounted, ref } from "vue";
7
+ import FzInput from "./FzInput.vue";
8
+ import { FzCurrencyInputProps } from "./types";
9
+ import { useCurrency } from "@fiscozen/composables";
14
10
 
15
- const fzInputRef = ref();
11
+ const fzInputRef = ref<InstanceType<typeof FzInput>>();
12
+ const containerRef = computed(() => fzInputRef.value?.containerRef);
13
+ const inputRef = computed(() => fzInputRef.value?.inputRef);
16
14
  const props = defineProps<FzCurrencyInputProps>();
17
- const {inputRef} = useCurrency();
15
+ const { inputRef: currencyInputRef } = useCurrency();
16
+
17
+ defineEmits(["update:amount"]);
18
18
 
19
19
  onMounted(() => {
20
- inputRef.value = fzInputRef.value.inputRef
21
- })
22
- const model = defineModel()
20
+ currencyInputRef.value = inputRef.value;
21
+ });
22
+ const model = defineModel("amount");
23
23
 
24
- </script>
24
+ defineExpose({
25
+ inputRef,
26
+ containerRef,
27
+ });
28
+ </script>
package/src/FzInput.vue CHANGED
@@ -92,11 +92,11 @@ const {
92
92
  containerWidth,
93
93
  } = useInputStyle(props, containerRef);
94
94
 
95
- const emit = defineEmits(['input', 'focus']);
95
+ const emit = defineEmits(["input", "focus"]);
96
96
  defineExpose({
97
97
  inputRef,
98
- containerRef
99
- })
98
+ containerRef,
99
+ });
100
100
  </script>
101
101
 
102
102
  <style scoped></style>
@@ -3,35 +3,38 @@ import { mount } from "@vue/test-utils";
3
3
  import { FzCurrencyInput } from "..";
4
4
 
5
5
  describe.concurrent("FzCurrencyInput", () => {
6
- it('renders floating numbers as currency', async () => {
7
- const val = 1234.56
6
+ it("renders floating numbers as currency", async () => {
7
+ const wrapper = mount(FzCurrencyInput, {
8
+ props: {
9
+ label: "Label",
10
+ amount: 1234.56,
11
+ "onUpdate:amount": (e) => wrapper.setProps({ amount: e }),
12
+ },
13
+ });
8
14
 
9
- const wrapper = mount(FzCurrencyInput, {
10
- props: {
11
- label: "Label",
12
- modelValue: val,
13
- 'onUpdate:modelValue': (e) => wrapper.setProps({ modelValue: e})
14
- },
15
- });
15
+ const inputElement = wrapper.find("input");
16
+ await inputElement.trigger("blur");
17
+ // flushPromises doesn't seem to be enoughsince the implementation
18
+ // of the composable uses setTimeout itself
19
+ await new Promise((resolve) => window.setTimeout(resolve, 100));
20
+ expect(inputElement.element.value).toBe("1234,56");
21
+ });
22
+ it("should not allow inputs other than digits and separators", async () => {
23
+ const wrapper = mount(FzCurrencyInput, {
24
+ props: {
25
+ label: "Label",
26
+ amount: "",
27
+ "onUpdate:amount": (e) => wrapper.setProps({ amount: e }),
28
+ },
29
+ });
16
30
 
17
- const inputElement = wrapper.find('input')
18
- await inputElement.setValue(val)
19
- await inputElement.trigger('blur')
20
- expect(inputElement.element.value).toBe('1.234,56')
21
- })
22
- it('should not allow inputs other than digits and separators', async () => {
23
- const wrapper = mount(FzCurrencyInput, {
24
- props: {
25
- label: "Label",
26
- 'onUpdate:modelValue': (e) => wrapper.setProps({ modelValue: e})
27
- },
28
- });
29
-
30
- const inputElement = wrapper.find('input')
31
- await inputElement.setValue('as12.3')
32
- await inputElement.trigger('input')
33
- expect(inputElement.element.value).toBe('12.3')
34
- await inputElement.trigger('blur')
35
- expect(inputElement.element.value).toBe('12,30')
36
- })
31
+ const inputElement = wrapper.find("input");
32
+ await inputElement.setValue("as12.3");
33
+ await inputElement.trigger("input");
34
+ await new Promise((resolve) => window.setTimeout(resolve, 100));
35
+ expect(inputElement.element.value).toBe("12.3");
36
+ await inputElement.trigger("blur");
37
+ await new Promise((resolve) => window.setTimeout(resolve, 100));
38
+ expect(inputElement.element.value).toBe("12,30");
39
+ });
37
40
  });
package/src/types.ts CHANGED
@@ -62,10 +62,10 @@ type FzInputProps = {
62
62
  * native readonly input value
63
63
  */
64
64
  readonly?: boolean;
65
-
66
65
  };
67
66
 
68
- interface FzCurrencyInputProps extends Omit<FzInputProps, 'type'> {
67
+ interface FzCurrencyInputProps
68
+ extends Omit<FzInputProps, "type" | "modelValue"> {
69
69
  /**
70
70
  * Is set to true, an empty string will be casted to null
71
71
  */
@@ -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/@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/@fortawesome+fontawesome-common-types@6.6.0/node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.131/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.131/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.ts","../../node_modules/.pnpm/@fortawesome+vue-fontawesome@3.0.6_@fortawesome+fontawesome-svg-core@6.5.1_vue@3.4.13_typescript@5.3.3_/node_modules/@fortawesome/vue-fontawesome/index.d.ts","../../node_modules/.pnpm/@fiscozen+icons@0.1.6_vue@3.4.13_typescript@5.3.3_/node_modules/@fiscozen/icons/src/types.ts","../../node_modules/.pnpm/@fiscozen+icons@0.1.6_vue@3.4.13_typescript@5.3.3_/node_modules/@fiscozen/icons/src/FzIcon.vue.ts","../../node_modules/.pnpm/@fiscozen+icons@0.1.6_vue@3.4.13_typescript@5.3.3_/node_modules/@fiscozen/icons/src/index.ts","./src/types.ts","./src/useInputStyle.ts","./src/FzInput.vue.ts","./__VLS_types.d.ts","./dist/src/FzInput.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/@fiscozen+icons@0.1.6_vue@3.4.13_typescript@5.3.3_/node_modules/@fiscozen/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","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0"],"root":[[67,76]],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[51,59,60,61],[60,61],[52],[51,57,62,63,64],[51,57,59,61,62,64,65],[51],[58],[57,59,61],[46,52,53,54],[55],[46],[46,47,48],[48,49],[54],[50,56],[50],[51,57],[73],[57,64],[71,72],[66],[57,72],[51,57,66,67,68],[51,67,69],[51,66],[51,57,67],[51,57,59,61,62,64,77]],"referencedMap":[[61,1],[62,2],[53,3],[65,4],[66,5],[64,6],[59,7],[63,8],[55,9],[56,10],[47,11],[48,12],[50,13],[54,14],[57,15],[51,16],[70,17],[74,18],[71,19],[73,20],[72,21],[75,22],[69,23],[76,24],[67,25],[68,26]],"exportedModulesMap":[[61,1],[62,2],[53,3],[65,4],[66,27],[64,6],[59,7],[63,8],[55,9],[56,10],[47,11],[48,12],[50,13],[54,14],[57,15],[51,16],[70,17],[74,18],[71,19],[73,20],[72,21],[75,22],[69,23],[76,17],[67,25],[68,26]],"semanticDiagnosticsPerFile":[61,62,53,52,65,66,64,58,60,59,63,55,56,47,48,50,46,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,70,74,71,73,72,75,69,76,67,68],"affectedFilesPendingEmit":[69,76,67,68],"emitSignatures":[67,68,69]},"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/@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","./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"],"root":[[78,80],[93,95]],"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,83,84,85,86,87,88,89],[51,84],[51,57],[51,57,81,82],[51,57,81,90],[51,81,90,91],[51,81],[62,67,73,74,75],[62,67,69,73,75,76],[62],[51,57,78,80,92],[51,57,77,78,79],[51,78,80,93],[51,77],[51,57,78]],"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],[90,23],[85,24],[86,25],[89,25],[83,26],[87,25],[88,25],[84,25],[91,27],[92,28],[81,25],[82,29],[76,30],[77,31],[75,32],[94,25],[93,33],[80,34],[95,35],[78,36],[79,37]],"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,16],[61,17],[54,18],[57,19],[51,20],[67,21],[62,22],[90,23],[85,24],[86,25],[89,25],[83,26],[87,25],[88,25],[84,25],[91,27],[92,28],[81,25],[82,29],[76,30],[77,31],[75,32],[94,25],[93,33],[80,34],[95,35],[78,36],[79,37]],"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,90,85,86,89,[83,[{"file":"../composables/src/composables/usefloating.ts","start":1092,"length":23,"code":2322,"category":1,"messageText":{"messageText":"Type 'Element | null' is not assignable to type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is missing the following properties from type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }': accessKey, accessKeyLabel, autocapitalize, dir, and 122 more.","category":1,"code":2740}]}},{"file":"../composables/src/composables/usefloating.ts","start":1374,"length":25,"code":2322,"category":1,"messageText":"Type 'Element | null' is not assignable to type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null'."},{"file":"../composables/src/composables/usefloating.ts","start":1784,"length":22,"code":2322,"category":1,"messageText":"Type 'Element | null' is not assignable to type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null'."},{"file":"../composables/src/composables/usefloating.ts","start":2240,"length":23,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'Element'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'attributes' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: { readonly attributes: ...; ... 166 more ...; readonly assignedSlot: { ...; } | null; }; readonly length: number; ...' is not assignable to type 'NamedNodeMap'.","category":1,"code":2322}]}]}},{"file":"../composables/src/composables/usefloating.ts","start":2384,"length":23,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'Element'."},{"file":"../composables/src/composables/usefloating.ts","start":2443,"length":25,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'Element'."},{"file":"../composables/src/composables/usefloating.ts","start":3216,"length":25,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'HTMLElement'."},{"file":"../composables/src/composables/usefloating.ts","start":3446,"length":25,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'HTMLElement'."},{"file":"../composables/src/composables/usefloating.ts","start":3697,"length":25,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'HTMLElement'."},{"file":"../composables/src/composables/usefloating.ts","start":9298,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type 'Ref<{ readonly root: { readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { ...; }; ... 255 more ...; evaluate: (expression: string, contextNode: Node, resolve...' is not assignable to type 'Ref<IntersectionObserver>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly root: { readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => ...' is not assignable to type 'IntersectionObserver'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'root' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | Document | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | Document | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | Document'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'attributes' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: { readonly attributes: ...; ... 166 more ...; readonly assignedSlot: { ...; } | null; }; readonly length: number; ...' is not assignable to type 'NamedNodeMap'.","category":1,"code":2322,"next":[{"messageText":"'number' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type '{ readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: { readonly attributes: { [x: number]: ...; ... 8 more ...; [Symbol.iterator]: () => IterableIterator<...>; }; ... 166 more ...; r...' is not assignable to type 'Attr'.","category":1,"code":2322,"next":[{"messageText":"The types of 'ownerDocument.anchors' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type '{ [x: number]: { charset: string; coords: string; download: string; hreflang: string; name: string; ping: string; referrerPolicy: string; rel: string; readonly relList: { [x: number]: string; readonly length: number; ... 13 more ...; [Symbol.iterator]: () => IterableIterator<...>; }; ... 315 more ...; username: stri...' is not assignable to type 'HTMLCollectionOf<HTMLAnchorElement>'.","category":1,"code":2322,"next":[{"messageText":"'number' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type '{ charset: string; coords: string; download: string; hreflang: string; name: string; ping: string; referrerPolicy: string; rel: string; readonly relList: { [x: number]: string; readonly length: number; value: string; ... 12 more ...; [Symbol.iterator]: () => IterableIterator<...>; }; ... 315 more ...; username: stri...' is not assignable to type 'HTMLAnchorElement'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'shadowRoot' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly delegatesFocus: boolean; readonly host: { readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; ... 257 more ...; evaluate: (expression: string, contextNode: Node, resolver?: XPathNSRes...' is not assignable to type 'ShadowRoot | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly delegatesFocus: boolean; readonly host: { readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; ... 257 more ...; evaluate: (expression: string, contextNode: Node, resolver?: XPathNSRes...' is not assignable to type 'ShadowRoot'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'childNodes' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ [x: number]: { after: (...nodes: (string | Node)[]) => void; before: (...nodes: (string | Node)[]) => void; remove: () => void; replaceWith: (...nodes: (string | Node)[]) => void; readonly baseURI: string; ... 48 more ...; removeEventListener: (type: string, callback: EventListenerOrEventListenerObject | null, opt...' is not assignable to type 'NodeListOf<ChildNode>'.","category":1,"code":2322,"next":[{"messageText":"'number' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type '{ after: (...nodes: (string | Node)[]) => void; before: (...nodes: (string | Node)[]) => void; remove: () => void; replaceWith: (...nodes: (string | Node)[]) => void; readonly baseURI: string; ... 48 more ...; removeEventListener: (type: string, callback: EventListenerOrEventListenerObject | null, options?: boolean ...' is not assignable to type 'ChildNode'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'parentElement' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null' is not assignable to type 'HTMLElement | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to type 'HTMLElement'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'assignedSlot' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ name: string; assign: (...nodes: (Element | Text)[]) => void; assignedElements: (options?: AssignedNodesOptions | undefined) => Element[]; ... 299 more ...; focus: (options?: FocusOptions | undefined) => void; } | null' is not assignable to type 'HTMLSlotElement | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ name: string; assign: (...nodes: (Element | Text)[]) => void; assignedElements: (options?: AssignedNodesOptions | undefined) => Element[]; ... 299 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to type 'HTMLSlotElement'.","category":1,"code":2322,"next":[{"messageText":"The types of 'style.parentRule' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type '{ cssText: string; readonly parentRule: ... | null; readonly parentStyleSheet: { readonly cssRules: { [x: number]: ...; readonly length: number; item: (index: number) => CSSRule | null; [Symbol.iterator]: () => IterableIterator<...>; }; ... 14 more ...; readonly type: string; } | null; ... 10 more ...; readonly SUPP...' is not assignable to type 'CSSRule | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ cssText: string; readonly parentRule: ... | null; readonly parentStyleSheet: { readonly cssRules: { [x: number]: ...; readonly length: number; item: (index: number) => CSSRule | null; [Symbol.iterator]: () => IterableIterator<...>; }; ... 14 more ...; readonly type: string; } | null; ... 10 more ...; readonly SUPP...' is not assignable to type 'CSSRule'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'parentStyleSheet' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly cssRules: { [x: number]: { cssText: string; readonly parentRule: ... | null; readonly parentStyleSheet: ... | null; readonly type: number; readonly STYLE_RULE: 1; readonly CHARSET_RULE: 2; ... 7 more ...; readonly SUPPORTS_RULE: 12; }; readonly length: number; item: (index: number) => CSSRule | null; [Sym...' is not assignable to type 'CSSStyleSheet | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly cssRules: { [x: number]: { cssText: string; readonly parentRule: ... | null; readonly parentStyleSheet: ... | null; readonly type: number; readonly STYLE_RULE: 1; readonly CHARSET_RULE: 2; ... 7 more ...; readonly SUPPORTS_RULE: 12; }; readonly length: number; item: (index: number) => CSSRule | null; [Sym...' is not assignable to type 'CSSStyleSheet'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'ownerNode' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | ProcessingInstruction | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | ProcessingInstruction | null'.","category":1,"code":2322}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},"relatedInformation":[{"file":"../composables/src/composables/usefloating.ts","start":322,"length":13,"messageText":"The expected type comes from property 'floatObserver' which is declared here on type '{ float: FzRect; rect: Ref<DOMRect | null>; floatObserver: Ref<IntersectionObserver>; setPosition: () => Promise<void>; }'","category":3,"code":6500}]}]],87,88,84,[91,[{"file":"../composables/src/fzfloating.vue","start":515,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'Ref<{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null>' is not assignable to type 'Ref<string | HTMLElement | null>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null' is not assignable to type 'string | HTMLElement | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to type 'string | HTMLElement | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to type 'HTMLElement'.","category":1,"code":2322}]}]}]},"relatedInformation":[{"file":"../composables/src/types.ts","start":850,"length":6,"messageText":"The expected type comes from property 'domRef' which is declared here on type 'FzFloatElement'","category":3,"code":6500}]},{"file":"../composables/src/fzfloating.vue","start":555,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'Ref<string> | Ref<{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; ... 289 more ...; focus: (options?: FocusOptions | undefined) => void; }>' is not assignable to type 'Ref<string | HTMLElement | null>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Ref<{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }>' is not assignable to type 'Ref<string | HTMLElement | null>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to type 'string | HTMLElement | null'.","category":1,"code":2322}]}]}}]],92,81,82,76,77,75,94,93,80,95,78,79],"affectedFilesPendingEmit":[93,80,95,78,79],"emitSignatures":[78,79,80,93,95]},"version":"5.3.3"}
package/dist/index.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from './src/index'