@prefabs.tech/vue3-form 0.12.0

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.
Files changed (109) hide show
  1. package/LICENSE +21 -0
  2. package/dist/PrefabsTechVue3Form.es.js +13296 -0
  3. package/dist/PrefabsTechVue3Form.umd.js +10 -0
  4. package/dist/src/components/Checkbox.vue.d.ts +60 -0
  5. package/dist/src/components/Checkbox.vue.d.ts.map +1 -0
  6. package/dist/src/components/CheckboxInput.vue.d.ts +101 -0
  7. package/dist/src/components/CheckboxInput.vue.d.ts.map +1 -0
  8. package/dist/src/components/CurrencyPicker.vue.d.ts +116 -0
  9. package/dist/src/components/CurrencyPicker.vue.d.ts.map +1 -0
  10. package/dist/src/components/DatePicker.vue.d.ts +101 -0
  11. package/dist/src/components/DatePicker.vue.d.ts.map +1 -0
  12. package/dist/src/components/DaysInput.vue.d.ts +71 -0
  13. package/dist/src/components/DaysInput.vue.d.ts.map +1 -0
  14. package/dist/src/components/EditableContent.vue.d.ts +64 -0
  15. package/dist/src/components/EditableContent.vue.d.ts.map +1 -0
  16. package/dist/src/components/Email.vue.d.ts +99 -0
  17. package/dist/src/components/Email.vue.d.ts.map +1 -0
  18. package/dist/src/components/File/FileInput.vue.d.ts +142 -0
  19. package/dist/src/components/File/FileInput.vue.d.ts.map +1 -0
  20. package/dist/src/components/File/SelectedFile.vue.d.ts +48 -0
  21. package/dist/src/components/File/SelectedFile.vue.d.ts.map +1 -0
  22. package/dist/src/components/Form.vue.d.ts +16 -0
  23. package/dist/src/components/Form.vue.d.ts.map +1 -0
  24. package/dist/src/components/FormActions.vue.d.ts +80 -0
  25. package/dist/src/components/FormActions.vue.d.ts.map +1 -0
  26. package/dist/src/components/Input.vue.d.ts +79 -0
  27. package/dist/src/components/Input.vue.d.ts.map +1 -0
  28. package/dist/src/components/NumberInput.vue.d.ts +99 -0
  29. package/dist/src/components/NumberInput.vue.d.ts.map +1 -0
  30. package/dist/src/components/Password.vue.d.ts +110 -0
  31. package/dist/src/components/Password.vue.d.ts.map +1 -0
  32. package/dist/src/components/Radio.vue.d.ts +78 -0
  33. package/dist/src/components/Radio.vue.d.ts.map +1 -0
  34. package/dist/src/components/RadioInput.vue.d.ts +90 -0
  35. package/dist/src/components/RadioInput.vue.d.ts.map +1 -0
  36. package/dist/src/components/Select.vue.d.ts +129 -0
  37. package/dist/src/components/Select.vue.d.ts.map +1 -0
  38. package/dist/src/components/SelectInput.vue.d.ts +167 -0
  39. package/dist/src/components/SelectInput.vue.d.ts.map +1 -0
  40. package/dist/src/components/Switch.vue.d.ts +56 -0
  41. package/dist/src/components/Switch.vue.d.ts.map +1 -0
  42. package/dist/src/components/SwitchInput.vue.d.ts +79 -0
  43. package/dist/src/components/SwitchInput.vue.d.ts.map +1 -0
  44. package/dist/src/components/TextInput.vue.d.ts +99 -0
  45. package/dist/src/components/TextInput.vue.d.ts.map +1 -0
  46. package/dist/src/components/TextareaInput.vue.d.ts +121 -0
  47. package/dist/src/components/TextareaInput.vue.d.ts.map +1 -0
  48. package/dist/src/components/Typeahead.vue.d.ts +101 -0
  49. package/dist/src/components/Typeahead.vue.d.ts.map +1 -0
  50. package/dist/src/components/__test__/snapshot/CurrencyPicker.test.d.ts +2 -0
  51. package/dist/src/components/__test__/snapshot/CurrencyPicker.test.d.ts.map +1 -0
  52. package/dist/src/components/__test__/snapshot/DatePicker.test.d.ts +2 -0
  53. package/dist/src/components/__test__/snapshot/DatePicker.test.d.ts.map +1 -0
  54. package/dist/src/components/__test__/snapshot/Email.test.d.ts +2 -0
  55. package/dist/src/components/__test__/snapshot/Email.test.d.ts.map +1 -0
  56. package/dist/src/components/__test__/snapshot/FormActions.test.d.ts +2 -0
  57. package/dist/src/components/__test__/snapshot/FormActions.test.d.ts.map +1 -0
  58. package/dist/src/components/__test__/snapshot/Input.test.d.ts +2 -0
  59. package/dist/src/components/__test__/snapshot/Input.test.d.ts.map +1 -0
  60. package/dist/src/components/__test__/snapshot/NumberInput.test.d.ts +2 -0
  61. package/dist/src/components/__test__/snapshot/NumberInput.test.d.ts.map +1 -0
  62. package/dist/src/components/__test__/snapshot/Password.test.d.ts +2 -0
  63. package/dist/src/components/__test__/snapshot/Password.test.d.ts.map +1 -0
  64. package/dist/src/components/__test__/snapshot/Select.test.d.ts +2 -0
  65. package/dist/src/components/__test__/snapshot/Select.test.d.ts.map +1 -0
  66. package/dist/src/components/__test__/snapshot/SelectInput.test.d.ts +2 -0
  67. package/dist/src/components/__test__/snapshot/SelectInput.test.d.ts.map +1 -0
  68. package/dist/src/components/__test__/snapshot/Switch.test.d.ts +2 -0
  69. package/dist/src/components/__test__/snapshot/Switch.test.d.ts.map +1 -0
  70. package/dist/src/components/__test__/snapshot/SwitchInput.test.d.ts +2 -0
  71. package/dist/src/components/__test__/snapshot/SwitchInput.test.d.ts.map +1 -0
  72. package/dist/src/components/__test__/snapshot/TextInput.test.d.ts +2 -0
  73. package/dist/src/components/__test__/snapshot/TextInput.test.d.ts.map +1 -0
  74. package/dist/src/components/__test__/snapshot/TextareaInput.test.d.ts +2 -0
  75. package/dist/src/components/__test__/snapshot/TextareaInput.test.d.ts.map +1 -0
  76. package/dist/src/components/__test__/snapshot/Typeahead.test.d.ts +2 -0
  77. package/dist/src/components/__test__/snapshot/Typeahead.test.d.ts.map +1 -0
  78. package/dist/src/components/index.d.ts +23 -0
  79. package/dist/src/components/index.d.ts.map +1 -0
  80. package/dist/src/index.d.ts +5 -0
  81. package/dist/src/index.d.ts.map +1 -0
  82. package/dist/src/schemas/Email.d.ts +6 -0
  83. package/dist/src/schemas/Email.d.ts.map +1 -0
  84. package/dist/src/schemas/Number.d.ts +6 -0
  85. package/dist/src/schemas/Number.d.ts.map +1 -0
  86. package/dist/src/schemas/Password.d.ts +5 -0
  87. package/dist/src/schemas/Password.d.ts.map +1 -0
  88. package/dist/src/schemas/Text.d.ts +6 -0
  89. package/dist/src/schemas/Text.d.ts.map +1 -0
  90. package/dist/src/schemas/index.d.ts +6 -0
  91. package/dist/src/schemas/index.d.ts.map +1 -0
  92. package/dist/src/types/index.d.ts +44 -0
  93. package/dist/src/types/index.d.ts.map +1 -0
  94. package/dist/src/types/validator/index.d.ts +5 -0
  95. package/dist/src/types/validator/index.d.ts.map +1 -0
  96. package/dist/src/types/validator/is-email-options.d.ts +51 -0
  97. package/dist/src/types/validator/is-email-options.d.ts.map +1 -0
  98. package/dist/src/types/validator/is-int-options.d.ts +25 -0
  99. package/dist/src/types/validator/is-int-options.d.ts.map +1 -0
  100. package/dist/src/types/validator/is-text-options.d.ts +9 -0
  101. package/dist/src/types/validator/is-text-options.d.ts.map +1 -0
  102. package/dist/src/types/validator/strong-password-options.d.ts +77 -0
  103. package/dist/src/types/validator/strong-password-options.d.ts.map +1 -0
  104. package/dist/src/utils/index.d.ts +2 -0
  105. package/dist/src/utils/index.d.ts.map +1 -0
  106. package/dist/src/utils/select.d.ts +8 -0
  107. package/dist/src/utils/select.d.ts.map +1 -0
  108. package/dist/vue3-form.css +1 -0
  109. package/package.json +82 -0
@@ -0,0 +1,142 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ addDescriptionLabel: {
3
+ default: undefined;
4
+ type: StringConstructor;
5
+ };
6
+ buttonLabel: {
7
+ default: string;
8
+ type: StringConstructor;
9
+ };
10
+ buttonLabelSelected: {
11
+ default: string;
12
+ type: StringConstructor;
13
+ };
14
+ buttonProps: {
15
+ default: () => {};
16
+ type: ObjectConstructor;
17
+ };
18
+ descriptionPlaceholder: {
19
+ default: undefined;
20
+ type: StringConstructor;
21
+ };
22
+ dropzoneMessage: {
23
+ default: string;
24
+ type: StringConstructor;
25
+ };
26
+ dropzoneOptions: {
27
+ default: () => {};
28
+ type: ObjectConstructor;
29
+ };
30
+ enableDescription: BooleanConstructor;
31
+ inputMethod: {
32
+ default: string;
33
+ type: StringConstructor;
34
+ validator: (value: string) => boolean;
35
+ };
36
+ label: {
37
+ default: undefined;
38
+ type: StringConstructor;
39
+ };
40
+ mode: {
41
+ default: string;
42
+ type: StringConstructor;
43
+ validator: (value: string) => boolean;
44
+ };
45
+ multiple: BooleanConstructor;
46
+ name: {
47
+ default: string;
48
+ type: StringConstructor;
49
+ };
50
+ showErrorMessage: BooleanConstructor;
51
+ }>, {
52
+ inputFiles: import("vue").Ref<{
53
+ readonly lastModified: number;
54
+ readonly name: string;
55
+ readonly webkitRelativePath: string;
56
+ readonly size: number;
57
+ readonly type: string;
58
+ arrayBuffer: () => Promise<ArrayBuffer>;
59
+ slice: (start?: number, end?: number, contentType?: string) => Blob;
60
+ stream: () => ReadableStream<Uint8Array>;
61
+ text: () => Promise<string>;
62
+ }[], File[] | {
63
+ readonly lastModified: number;
64
+ readonly name: string;
65
+ readonly webkitRelativePath: string;
66
+ readonly size: number;
67
+ readonly type: string;
68
+ arrayBuffer: () => Promise<ArrayBuffer>;
69
+ slice: (start?: number, end?: number, contentType?: string) => Blob;
70
+ stream: () => ReadableStream<Uint8Array>;
71
+ text: () => Promise<string>;
72
+ }[]>;
73
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "on:filesUpdate"[], "on:filesUpdate", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
74
+ addDescriptionLabel: {
75
+ default: undefined;
76
+ type: StringConstructor;
77
+ };
78
+ buttonLabel: {
79
+ default: string;
80
+ type: StringConstructor;
81
+ };
82
+ buttonLabelSelected: {
83
+ default: string;
84
+ type: StringConstructor;
85
+ };
86
+ buttonProps: {
87
+ default: () => {};
88
+ type: ObjectConstructor;
89
+ };
90
+ descriptionPlaceholder: {
91
+ default: undefined;
92
+ type: StringConstructor;
93
+ };
94
+ dropzoneMessage: {
95
+ default: string;
96
+ type: StringConstructor;
97
+ };
98
+ dropzoneOptions: {
99
+ default: () => {};
100
+ type: ObjectConstructor;
101
+ };
102
+ enableDescription: BooleanConstructor;
103
+ inputMethod: {
104
+ default: string;
105
+ type: StringConstructor;
106
+ validator: (value: string) => boolean;
107
+ };
108
+ label: {
109
+ default: undefined;
110
+ type: StringConstructor;
111
+ };
112
+ mode: {
113
+ default: string;
114
+ type: StringConstructor;
115
+ validator: (value: string) => boolean;
116
+ };
117
+ multiple: BooleanConstructor;
118
+ name: {
119
+ default: string;
120
+ type: StringConstructor;
121
+ };
122
+ showErrorMessage: BooleanConstructor;
123
+ }>> & Readonly<{
124
+ "onOn:filesUpdate"?: ((...args: any[]) => any) | undefined;
125
+ }>, {
126
+ label: string;
127
+ name: string;
128
+ multiple: boolean;
129
+ enableDescription: boolean;
130
+ addDescriptionLabel: string;
131
+ descriptionPlaceholder: string;
132
+ showErrorMessage: boolean;
133
+ buttonLabel: string;
134
+ buttonLabelSelected: string;
135
+ buttonProps: Record<string, any>;
136
+ dropzoneMessage: string;
137
+ dropzoneOptions: Record<string, any>;
138
+ inputMethod: string;
139
+ mode: string;
140
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
141
+ export default _default;
142
+ //# sourceMappingURL=FileInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FileInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/File/FileInput.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BA+LuB,MAAM;;;;;;;;;2BASN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BATN,MAAM;;;;;;;;;2BASN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;AA7L7B,wBA+Xc"}
@@ -0,0 +1,48 @@
1
+ import type { FileExtended } from "../../types/index";
2
+ import type { PropType } from "vue";
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ addDescriptionLabel: {
5
+ default: string;
6
+ type: StringConstructor;
7
+ };
8
+ descriptionPlaceholder: {
9
+ default: string;
10
+ type: StringConstructor;
11
+ };
12
+ enableDescription: BooleanConstructor;
13
+ file: {
14
+ type: PropType<FileExtended>;
15
+ required: true;
16
+ };
17
+ index: {
18
+ type: NumberConstructor;
19
+ required: true;
20
+ };
21
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("on:remove" | "update:file")[], "on:remove" | "update:file", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
22
+ addDescriptionLabel: {
23
+ default: string;
24
+ type: StringConstructor;
25
+ };
26
+ descriptionPlaceholder: {
27
+ default: string;
28
+ type: StringConstructor;
29
+ };
30
+ enableDescription: BooleanConstructor;
31
+ file: {
32
+ type: PropType<FileExtended>;
33
+ required: true;
34
+ };
35
+ index: {
36
+ type: NumberConstructor;
37
+ required: true;
38
+ };
39
+ }>> & Readonly<{
40
+ "onOn:remove"?: ((...args: any[]) => any) | undefined;
41
+ "onUpdate:file"?: ((...args: any[]) => any) | undefined;
42
+ }>, {
43
+ enableDescription: boolean;
44
+ addDescriptionLabel: string;
45
+ descriptionPlaceholder: string;
46
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
47
+ export default _default;
48
+ //# sourceMappingURL=SelectedFile.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SelectedFile.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/File/SelectedFile.vue.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;;;;;;;;;;cA6DhB,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;;;;;;;;;;cAAtB,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;;;;;;;AA1D1C,wBAiRc"}
@@ -0,0 +1,16 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ getFieldMeta: (fieldName: string) => any;
3
+ getFieldValue: (fieldName: string) => any;
4
+ resetForm: () => any;
5
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "submit"[], "submit", import("vue").PublicProps, Readonly<{}> & Readonly<{
6
+ onSubmit?: ((...args: any[]) => any) | undefined;
7
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
8
+ default: (_: {}) => any;
9
+ }>;
10
+ export default _default;
11
+ type __VLS_WithTemplateSlots<T, S> = T & {
12
+ new (): {
13
+ $slots: S;
14
+ };
15
+ };
16
+ //# sourceMappingURL=Form.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Form.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Form.vue.ts"],"names":[],"mappings":";8BAWiC,MAAM;+BAIL,MAAM;;;;;aA8E/B,CAAC,CAAC,IAAgB,KAAK,GAAG;;AAxFnC,wBAwGc;AACd,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAAE,MAAM,EAAE,CAAC,CAAA;KAAE,CAAA;CAAE,CAAC"}
@@ -0,0 +1,80 @@
1
+ import type { PropType } from "vue";
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ actions: {
4
+ default: () => never[];
5
+ type: PropType<Record<string, unknown>[]>;
6
+ };
7
+ alignment: {
8
+ default: string;
9
+ type: StringConstructor;
10
+ };
11
+ cancelLabel: {
12
+ default: string;
13
+ type: StringConstructor;
14
+ };
15
+ disabled: {
16
+ default: boolean;
17
+ type: BooleanConstructor;
18
+ };
19
+ flowDirection: {
20
+ default: string;
21
+ type: StringConstructor;
22
+ };
23
+ loading: {
24
+ default: boolean;
25
+ type: BooleanConstructor;
26
+ };
27
+ reverse: BooleanConstructor;
28
+ submitLabel: {
29
+ default: string;
30
+ type: StringConstructor;
31
+ };
32
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
33
+ actions: {
34
+ default: () => never[];
35
+ type: PropType<Record<string, unknown>[]>;
36
+ };
37
+ alignment: {
38
+ default: string;
39
+ type: StringConstructor;
40
+ };
41
+ cancelLabel: {
42
+ default: string;
43
+ type: StringConstructor;
44
+ };
45
+ disabled: {
46
+ default: boolean;
47
+ type: BooleanConstructor;
48
+ };
49
+ flowDirection: {
50
+ default: string;
51
+ type: StringConstructor;
52
+ };
53
+ loading: {
54
+ default: boolean;
55
+ type: BooleanConstructor;
56
+ };
57
+ reverse: BooleanConstructor;
58
+ submitLabel: {
59
+ default: string;
60
+ type: StringConstructor;
61
+ };
62
+ }>> & Readonly<{}>, {
63
+ disabled: boolean;
64
+ reverse: boolean;
65
+ loading: boolean;
66
+ actions: Record<string, unknown>[];
67
+ alignment: string;
68
+ cancelLabel: string;
69
+ flowDirection: string;
70
+ submitLabel: string;
71
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Record<{}, (_: {}) => any> & {
72
+ default: (_: {}) => any;
73
+ }>;
74
+ export default _default;
75
+ type __VLS_WithTemplateSlots<T, S> = T & {
76
+ new (): {
77
+ $slots: S;
78
+ };
79
+ };
80
+ //# sourceMappingURL=FormActions.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormActions.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormActions.vue.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;;cA6FjB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAnC,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oGA2GK,GAAG;aAErD,CAAC,CAAC,IAAgB,KAAK,GAAG;;AAvMnC,wBAuNc;AAWd,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAAE,MAAM,EAAE,CAAC,CAAA;KAAE,CAAA;CAAE,CAAC"}
@@ -0,0 +1,79 @@
1
+ import { z } from "zod";
2
+ import type { PropType } from "vue";
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ disabled: {
5
+ default: boolean;
6
+ type: BooleanConstructor;
7
+ };
8
+ label: {
9
+ default: string;
10
+ required: false;
11
+ type: PropType<string>;
12
+ };
13
+ modelValue: {
14
+ default: string;
15
+ type: PropType<string | null | undefined>;
16
+ };
17
+ name: {
18
+ default: string;
19
+ required: false;
20
+ type: PropType<string>;
21
+ };
22
+ placeholder: {
23
+ default: string;
24
+ type: StringConstructor;
25
+ };
26
+ schema: {
27
+ default: () => {};
28
+ required: false;
29
+ type: PropType<z.ZodType<string | number | object>>;
30
+ };
31
+ type: {
32
+ default: string;
33
+ type: StringConstructor;
34
+ };
35
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
36
+ disabled: {
37
+ default: boolean;
38
+ type: BooleanConstructor;
39
+ };
40
+ label: {
41
+ default: string;
42
+ required: false;
43
+ type: PropType<string>;
44
+ };
45
+ modelValue: {
46
+ default: string;
47
+ type: PropType<string | null | undefined>;
48
+ };
49
+ name: {
50
+ default: string;
51
+ required: false;
52
+ type: PropType<string>;
53
+ };
54
+ placeholder: {
55
+ default: string;
56
+ type: StringConstructor;
57
+ };
58
+ schema: {
59
+ default: () => {};
60
+ required: false;
61
+ type: PropType<z.ZodType<string | number | object>>;
62
+ };
63
+ type: {
64
+ default: string;
65
+ type: StringConstructor;
66
+ };
67
+ }>> & Readonly<{
68
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
69
+ }>, {
70
+ disabled: boolean;
71
+ type: string;
72
+ label: string;
73
+ modelValue: string | null | undefined;
74
+ name: string;
75
+ schema: z.ZodType<string | number | object, z.ZodTypeDef, string | number | object>;
76
+ placeholder: string;
77
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
78
+ export default _default;
79
+ //# sourceMappingURL=Input.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Input.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Input.vue.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;;;;;;;cA6DhB,QAAQ,CAAC,MAAM,CAAC;;;;cAIhB,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;;;cAKnC,QAAQ,CAAC,MAAM,CAAC;;;;;;;;;cAWhB,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,CAAC;;;;;;;;;;;;;;cApB7C,QAAQ,CAAC,MAAM,CAAC;;;;cAIhB,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;;;cAKnC,QAAQ,CAAC,MAAM,CAAC;;;;;;;;;cAWhB,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;AA9EjE,wBAoMc"}
@@ -0,0 +1,99 @@
1
+ import { z } from "zod";
2
+ import type { NumberErrorMessages, IsIntOptions } from "../types";
3
+ import type { PropType } from "vue";
4
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
+ disabled: {
6
+ default: boolean;
7
+ type: BooleanConstructor;
8
+ };
9
+ errorMessages: {
10
+ default: () => {
11
+ invalid: string;
12
+ required: string;
13
+ };
14
+ required: false;
15
+ type: PropType<NumberErrorMessages>;
16
+ };
17
+ label: {
18
+ default: string;
19
+ required: false;
20
+ type: PropType<string>;
21
+ };
22
+ modelValue: {
23
+ default: undefined;
24
+ type: PropType<number | null | undefined>;
25
+ };
26
+ name: {
27
+ default: string;
28
+ required: false;
29
+ type: PropType<string>;
30
+ };
31
+ options: {
32
+ default: () => {};
33
+ required: false;
34
+ type: PropType<IsIntOptions>;
35
+ };
36
+ placeholder: {
37
+ default: string;
38
+ type: StringConstructor;
39
+ };
40
+ schema: {
41
+ default: () => {};
42
+ required: false;
43
+ type: PropType<z.ZodType<string | number>>;
44
+ };
45
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
46
+ disabled: {
47
+ default: boolean;
48
+ type: BooleanConstructor;
49
+ };
50
+ errorMessages: {
51
+ default: () => {
52
+ invalid: string;
53
+ required: string;
54
+ };
55
+ required: false;
56
+ type: PropType<NumberErrorMessages>;
57
+ };
58
+ label: {
59
+ default: string;
60
+ required: false;
61
+ type: PropType<string>;
62
+ };
63
+ modelValue: {
64
+ default: undefined;
65
+ type: PropType<number | null | undefined>;
66
+ };
67
+ name: {
68
+ default: string;
69
+ required: false;
70
+ type: PropType<string>;
71
+ };
72
+ options: {
73
+ default: () => {};
74
+ required: false;
75
+ type: PropType<IsIntOptions>;
76
+ };
77
+ placeholder: {
78
+ default: string;
79
+ type: StringConstructor;
80
+ };
81
+ schema: {
82
+ default: () => {};
83
+ required: false;
84
+ type: PropType<z.ZodType<string | number>>;
85
+ };
86
+ }>> & Readonly<{
87
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
88
+ }>, {
89
+ disabled: boolean;
90
+ label: string;
91
+ modelValue: number | null | undefined;
92
+ name: string;
93
+ options: IsIntOptions;
94
+ schema: z.ZodType<string | number, z.ZodTypeDef, string | number>;
95
+ placeholder: string;
96
+ errorMessages: NumberErrorMessages;
97
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
98
+ export default _default;
99
+ //# sourceMappingURL=NumberInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NumberInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/NumberInput.vue.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,OAAO,KAAK,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAClE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;;;;;;;;;;cAiFhB,QAAQ,CAAC,mBAAmB,CAAC;;;;;cAK7B,QAAQ,CAAC,MAAM,CAAC;;;;cAIhB,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;;;cAKnC,QAAQ,CAAC,MAAM,CAAC;;;;;cAOhB,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;cAWtB,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;;;;;;;;;;;;;cAhCpC,QAAQ,CAAC,mBAAmB,CAAC;;;;;cAK7B,QAAQ,CAAC,MAAM,CAAC;;;;cAIhB,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;;;cAKnC,QAAQ,CAAC,MAAM,CAAC;;;;;cAOhB,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;cAWtB,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;;;;;;;;;;;;;;AA9GxD,wBA+Nc"}
@@ -0,0 +1,110 @@
1
+ import { z } from "zod";
2
+ import type { PasswordErrorMessages, StrongPasswordOptions } from "../types";
3
+ import type { PropType } from "vue";
4
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
+ disabled: {
6
+ default: boolean;
7
+ type: BooleanConstructor;
8
+ };
9
+ errorMessages: {
10
+ default: () => {
11
+ required: string;
12
+ weak: string;
13
+ };
14
+ required: false;
15
+ type: PropType<PasswordErrorMessages>;
16
+ };
17
+ label: {
18
+ default: null;
19
+ required: false;
20
+ type: PropType<string | null | undefined>;
21
+ };
22
+ modelValue: {
23
+ default: null;
24
+ required: false;
25
+ type: PropType<string | null | undefined>;
26
+ };
27
+ name: {
28
+ default: string;
29
+ required: false;
30
+ type: PropType<string>;
31
+ };
32
+ options: {
33
+ default: () => {};
34
+ required: false;
35
+ type: PropType<StrongPasswordOptions>;
36
+ };
37
+ placeholder: {
38
+ default: string;
39
+ type: StringConstructor;
40
+ };
41
+ schema: {
42
+ default: () => {};
43
+ required: false;
44
+ type: PropType<z.ZodType<string | number | object>>;
45
+ };
46
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
47
+ disabled: {
48
+ default: boolean;
49
+ type: BooleanConstructor;
50
+ };
51
+ errorMessages: {
52
+ default: () => {
53
+ required: string;
54
+ weak: string;
55
+ };
56
+ required: false;
57
+ type: PropType<PasswordErrorMessages>;
58
+ };
59
+ label: {
60
+ default: null;
61
+ required: false;
62
+ type: PropType<string | null | undefined>;
63
+ };
64
+ modelValue: {
65
+ default: null;
66
+ required: false;
67
+ type: PropType<string | null | undefined>;
68
+ };
69
+ name: {
70
+ default: string;
71
+ required: false;
72
+ type: PropType<string>;
73
+ };
74
+ options: {
75
+ default: () => {};
76
+ required: false;
77
+ type: PropType<StrongPasswordOptions>;
78
+ };
79
+ placeholder: {
80
+ default: string;
81
+ type: StringConstructor;
82
+ };
83
+ schema: {
84
+ default: () => {};
85
+ required: false;
86
+ type: PropType<z.ZodType<string | number | object>>;
87
+ };
88
+ }>> & Readonly<{
89
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
90
+ }>, {
91
+ disabled: boolean;
92
+ label: string | null | undefined;
93
+ modelValue: string | null | undefined;
94
+ name: string;
95
+ options: StrongPasswordOptions;
96
+ schema: z.ZodType<string | number | object, z.ZodTypeDef, string | number | object>;
97
+ placeholder: string;
98
+ errorMessages: PasswordErrorMessages;
99
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
100
+ icon: (_: {
101
+ showPassword: boolean;
102
+ }) => any;
103
+ }>;
104
+ export default _default;
105
+ type __VLS_WithTemplateSlots<T, S> = T & {
106
+ new (): {
107
+ $slots: S;
108
+ };
109
+ };
110
+ //# sourceMappingURL=Password.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Password.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Password.vue.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,OAAO,KAAK,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAC7E,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;;;;;;;;;;cA6FhB,QAAQ,CAAC,qBAAqB,CAAC;;;;;cAK/B,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;;;cAKnC,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;;;cAKnC,QAAQ,CAAC,MAAM,CAAC;;;;;cAOhB,QAAQ,CAAC,qBAAqB,CAAC;;;;;;;;;cAW/B,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,CAAC;;;;;;;;;;;;;cAjC7C,QAAQ,CAAC,qBAAqB,CAAC;;;;;cAK/B,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;;;cAKnC,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;;;cAKnC,QAAQ,CAAC,MAAM,CAAC;;;;;cAOhB,QAAQ,CAAC,qBAAqB,CAAC;;;;;;;;;cAW/B,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,CAAC;;;;;;;;;;;;;;UA+H3D,CAAC,CAAC;;KAAiB,KAAK,GAAG;;AA1PjC,wBA+Qc;AACd,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAAE,MAAM,EAAE,CAAC,CAAA;KAAE,CAAA;CAAE,CAAC"}
@@ -0,0 +1,78 @@
1
+ import type { InputOption } from "../types";
2
+ import type { PropType } from "vue";
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ direction: {
5
+ default: string;
6
+ type: StringConstructor;
7
+ validator: (value: string) => boolean;
8
+ };
9
+ disabled: {
10
+ default: boolean;
11
+ type: BooleanConstructor;
12
+ };
13
+ helperText: {
14
+ default: undefined;
15
+ type: PropType<string | null | undefined>;
16
+ };
17
+ label: {
18
+ default: string;
19
+ required: false;
20
+ type: StringConstructor;
21
+ };
22
+ modelValue: {
23
+ default: string;
24
+ type: PropType<string | number | null | undefined>;
25
+ };
26
+ name: {
27
+ default: string;
28
+ required: false;
29
+ type: PropType<string>;
30
+ };
31
+ options: {
32
+ required: true;
33
+ type: PropType<InputOption[]>;
34
+ };
35
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
36
+ direction: {
37
+ default: string;
38
+ type: StringConstructor;
39
+ validator: (value: string) => boolean;
40
+ };
41
+ disabled: {
42
+ default: boolean;
43
+ type: BooleanConstructor;
44
+ };
45
+ helperText: {
46
+ default: undefined;
47
+ type: PropType<string | null | undefined>;
48
+ };
49
+ label: {
50
+ default: string;
51
+ required: false;
52
+ type: StringConstructor;
53
+ };
54
+ modelValue: {
55
+ default: string;
56
+ type: PropType<string | number | null | undefined>;
57
+ };
58
+ name: {
59
+ default: string;
60
+ required: false;
61
+ type: PropType<string>;
62
+ };
63
+ options: {
64
+ required: true;
65
+ type: PropType<InputOption[]>;
66
+ };
67
+ }>> & Readonly<{
68
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
69
+ }>, {
70
+ disabled: boolean;
71
+ label: string;
72
+ modelValue: string | number | null | undefined;
73
+ name: string;
74
+ direction: string;
75
+ helperText: string | null | undefined;
76
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
77
+ export default _default;
78
+ //# sourceMappingURL=Radio.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Radio.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Radio.vue.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;;;2BAqDb,MAAM;;;;;;;;cAQT,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;;;;;;;cASzB,QAAQ,CAAC,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;;;cAKtD,QAAQ,CAAC,MAAM,CAAC;;;;cAIjB,QAAQ,CAAC,WAAW,EAAE,CAAC;;;;;;2BA1BnB,MAAM;;;;;;;;cAQT,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;;;;;;;cASzB,QAAQ,CAAC,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;;;cAKtD,QAAQ,CAAC,MAAM,CAAC;;;;cAIjB,QAAQ,CAAC,WAAW,EAAE,CAAC;;;;;;;;;;;;AA5E1C,wBAsLc"}