@solfacil/girassol 0.16.2 → 0.17.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 (35) hide show
  1. package/dist/components.d.ts +1 -0
  2. package/dist/components.json +1 -1
  3. package/dist/girassol.es.js +7424 -6828
  4. package/dist/girassol.umd.js +5 -5
  5. package/dist/style.css +1 -1
  6. package/dist/types/components/date-picker/DatePicker.vue.d.ts +18 -99
  7. package/dist/types/components/file-upload/Download.vue.d.ts +12 -82
  8. package/dist/types/components/file-upload/FileUpload.vue.d.ts +32 -157
  9. package/dist/types/components/file-upload/Upload.vue.d.ts +19 -103
  10. package/dist/types/components/forms/checkbox/checkbox/Checkbox.vue.d.ts +13 -81
  11. package/dist/types/components/forms/inputs/input-core/Input.vue.d.ts +15 -91
  12. package/dist/types/components/forms/inputs/input-password/InputPassword.vue.d.ts +23 -117
  13. package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +25 -121
  14. package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +12 -78
  15. package/dist/types/components/forms/switch/Switch.vue.d.ts +21 -108
  16. package/dist/types/components/informations/text-value/TextValue.vue.d.ts +3 -3
  17. package/dist/types/components/list/ListItemTextValue.vue.d.ts +4 -4
  18. package/dist/types/components/loader/CircleLoader.vue.d.ts +10 -72
  19. package/dist/types/components/menus/menu/Menu.vue.d.ts +7 -7
  20. package/dist/types/components/{modal → modals/modal}/Modal.vue.d.ts +0 -0
  21. package/dist/types/components/{modal → modals/modal}/index.d.ts +0 -0
  22. package/dist/types/components/{modal → modals/modal}/modal.spec.d.ts +0 -0
  23. package/dist/types/components/{modal → modals/modal}/types.d.ts +0 -0
  24. package/dist/types/components/modals/onboarding/Onboarding.vue.d.ts +69 -0
  25. package/dist/types/components/modals/onboarding/Slider.vue.d.ts +31 -0
  26. package/dist/types/components/modals/onboarding/index.d.ts +2 -0
  27. package/dist/types/components/modals/onboarding/onboading.spec.d.ts +1 -0
  28. package/dist/types/components/modals/onboarding/types.d.ts +12 -0
  29. package/dist/types/components/pagination/Pagination.vue.d.ts +27 -148
  30. package/dist/types/components/search/Search.vue.d.ts +26 -137
  31. package/dist/types/components/steps/Steps.vue.d.ts +14 -84
  32. package/dist/types/components/tabs/TabItem.vue.d.ts +4 -0
  33. package/dist/types/components/tabs/Tabs.vue.d.ts +23 -114
  34. package/dist/types/index.d.ts +1037 -2461
  35. package/package.json +3 -3
@@ -1,82 +1,16 @@
1
1
  import type { Checkbox } from '@forms/checkbox/type';
2
- declare const _default: {
3
- new (...args: any[]): {
4
- $: import("vue").ComponentInternalInstance;
5
- $data: {};
6
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
- id: Checkbox['id'];
8
- name: Checkbox['name'];
9
- value: Checkbox['value'];
10
- label: Checkbox['label'];
11
- hideLabel?: Checkbox['hideLabel'];
12
- checked?: Checkbox['checked'];
13
- class?: Checkbox['class'];
14
- indeterminate?: boolean | undefined;
15
- }>>> & {
16
- onChange?: ((value: import("@forms/checkbox/type").CheckboxValue) => any) | undefined;
17
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
18
- $attrs: {
19
- [x: string]: unknown;
20
- };
21
- $refs: {
22
- [x: string]: unknown;
23
- };
24
- $slots: Readonly<{
25
- [name: string]: import("vue").Slot | undefined;
26
- }>;
27
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
28
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
29
- $emit: (event: "change", value: import("@forms/checkbox/type").CheckboxValue) => void;
30
- $el: any;
31
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
32
- id: Checkbox['id'];
33
- name: Checkbox['name'];
34
- value: Checkbox['value'];
35
- label: Checkbox['label'];
36
- hideLabel?: Checkbox['hideLabel'];
37
- checked?: Checkbox['checked'];
38
- class?: Checkbox['class'];
39
- indeterminate?: boolean | undefined;
40
- }>>> & {
41
- onChange?: ((value: import("@forms/checkbox/type").CheckboxValue) => any) | undefined;
42
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
43
- change: (value: import("@forms/checkbox/type").CheckboxValue) => void;
44
- }, string, {}, {}, string> & {
45
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
46
- created?: ((() => void) | (() => void)[]) | undefined;
47
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
48
- mounted?: ((() => void) | (() => void)[]) | undefined;
49
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
50
- updated?: ((() => void) | (() => void)[]) | undefined;
51
- activated?: ((() => void) | (() => void)[]) | undefined;
52
- deactivated?: ((() => void) | (() => void)[]) | undefined;
53
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
54
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
55
- destroyed?: ((() => void) | (() => void)[]) | undefined;
56
- unmounted?: ((() => void) | (() => void)[]) | undefined;
57
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
58
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
59
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
60
- };
61
- $forceUpdate: () => void;
62
- $nextTick: typeof import("vue").nextTick;
63
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
64
- } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
65
- id: Checkbox['id'];
66
- name: Checkbox['name'];
67
- value: Checkbox['value'];
68
- label: Checkbox['label'];
69
- hideLabel?: Checkbox['hideLabel'];
70
- checked?: Checkbox['checked'];
71
- class?: Checkbox['class'];
72
- indeterminate?: boolean | undefined;
73
- }>>> & {
74
- onChange?: ((value: import("@forms/checkbox/type").CheckboxValue) => any) | undefined;
75
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
76
- __isFragment?: undefined;
77
- __isTeleport?: undefined;
78
- __isSuspense?: undefined;
79
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
+ id: Checkbox['id'];
4
+ name: Checkbox['name'];
5
+ value: Checkbox['value'];
6
+ label: Checkbox['label'];
7
+ hideLabel?: Checkbox['hideLabel'];
8
+ checked?: Checkbox['checked'];
9
+ class?: Checkbox['class'];
10
+ indeterminate?: boolean | undefined;
11
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
+ change: (value: import("@forms/checkbox/type").CheckboxValue) => void;
13
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
80
14
  id: Checkbox['id'];
81
15
  name: Checkbox['name'];
82
16
  value: Checkbox['value'];
@@ -87,9 +21,7 @@ declare const _default: {
87
21
  indeterminate?: boolean | undefined;
88
22
  }>>> & {
89
23
  onChange?: ((value: import("@forms/checkbox/type").CheckboxValue) => any) | undefined;
90
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
91
- change: (value: import("@forms/checkbox/type").CheckboxValue) => void;
92
- }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
24
+ }, {}>;
93
25
  export default _default;
94
26
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
95
27
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,91 +1,6 @@
1
1
  import type { InputCore } from '../types';
2
2
  import type { Mask } from '../../../../composables/use-mask';
3
- declare const _default: {
4
- new (...args: any[]): {
5
- $: import("vue").ComponentInternalInstance;
6
- $data: {};
7
- $props: Partial<{
8
- size: "small" | "medium";
9
- }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
- id: InputCore['id'];
11
- modelValue: InputCore['modelValue'];
12
- error?: InputCore['error'];
13
- mask?: Mask | undefined;
14
- size?: InputCore['size'];
15
- hasFeedbackIcon?: InputCore['hasFeedbackIcon'];
16
- }>, {
17
- size: string;
18
- }>>> & {
19
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
20
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size">;
21
- $attrs: {
22
- [x: string]: unknown;
23
- };
24
- $refs: {
25
- [x: string]: unknown;
26
- };
27
- $slots: Readonly<{
28
- [name: string]: import("vue").Slot | undefined;
29
- }>;
30
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
31
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
32
- $emit: (event: "update:modelValue", event: string) => void;
33
- $el: any;
34
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
35
- id: InputCore['id'];
36
- modelValue: InputCore['modelValue'];
37
- error?: InputCore['error'];
38
- mask?: Mask | undefined;
39
- size?: InputCore['size'];
40
- hasFeedbackIcon?: InputCore['hasFeedbackIcon'];
41
- }>, {
42
- size: string;
43
- }>>> & {
44
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
45
- }, {
46
- input: import("vue").Ref<string>;
47
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
48
- "update:modelValue": (event: string) => void;
49
- }, string, {
50
- size: "small" | "medium";
51
- }, {}, string> & {
52
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
53
- created?: ((() => void) | (() => void)[]) | undefined;
54
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
55
- mounted?: ((() => void) | (() => void)[]) | undefined;
56
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
57
- updated?: ((() => void) | (() => void)[]) | undefined;
58
- activated?: ((() => void) | (() => void)[]) | undefined;
59
- deactivated?: ((() => void) | (() => void)[]) | undefined;
60
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
61
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
62
- destroyed?: ((() => void) | (() => void)[]) | undefined;
63
- unmounted?: ((() => void) | (() => void)[]) | undefined;
64
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
65
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
66
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
67
- };
68
- $forceUpdate: () => void;
69
- $nextTick: typeof import("vue").nextTick;
70
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
71
- } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
72
- id: InputCore['id'];
73
- modelValue: InputCore['modelValue'];
74
- error?: InputCore['error'];
75
- mask?: Mask | undefined;
76
- size?: InputCore['size'];
77
- hasFeedbackIcon?: InputCore['hasFeedbackIcon'];
78
- }>, {
79
- size: string;
80
- }>>> & {
81
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
82
- } & import("vue").ShallowUnwrapRef<{
83
- input: import("vue").Ref<string>;
84
- }> & {} & import("vue").ComponentCustomProperties & {};
85
- __isFragment?: undefined;
86
- __isTeleport?: undefined;
87
- __isSuspense?: undefined;
88
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
89
4
  id: InputCore['id'];
90
5
  modelValue: InputCore['modelValue'];
91
6
  error?: InputCore['error'];
@@ -94,15 +9,24 @@ declare const _default: {
94
9
  hasFeedbackIcon?: InputCore['hasFeedbackIcon'];
95
10
  }>, {
96
11
  size: string;
97
- }>>> & {
98
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
99
- }, {
12
+ }>, {
100
13
  input: import("vue").Ref<string>;
101
14
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
102
15
  "update:modelValue": (event: string) => void;
103
- }, string, {
16
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
17
+ id: InputCore['id'];
18
+ modelValue: InputCore['modelValue'];
19
+ error?: InputCore['error'];
20
+ mask?: Mask | undefined;
21
+ size?: InputCore['size'];
22
+ hasFeedbackIcon?: InputCore['hasFeedbackIcon'];
23
+ }>, {
24
+ size: string;
25
+ }>>> & {
26
+ "onUpdate:modelValue"?: ((event: string) => any) | undefined;
27
+ }, {
104
28
  size: "small" | "medium";
105
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
29
+ }>;
106
30
  export default _default;
107
31
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
108
32
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,118 +1,26 @@
1
1
  import type { InputText as InputType } from '../types';
2
2
  import type { ParentValidation } from '@/composables/use-validate-field/types';
3
- declare const _default: {
4
- new (...args: any[]): {
5
- $: import("vue").ComponentInternalInstance;
6
- $data: {};
7
- $props: Partial<{
8
- required: boolean;
9
- name: InputType['name'];
10
- placeholder: string;
11
- }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
12
- id: InputType['id'];
13
- label?: InputType['label'];
14
- name: InputType['name'];
15
- placeholder?: string | undefined;
16
- helperText?: InputType['helperText'];
17
- required?: InputType['required'];
18
- disabled?: InputType['disabled'];
19
- size?: InputType['size'];
20
- error?: string | null | undefined;
21
- modelValue?: string | undefined;
22
- useField?: ParentValidation<string>['useFieldParent'];
23
- rules?: ParentValidation<string>['rules'];
24
- opts?: ParentValidation<string>['opts'];
25
- }>, {
26
- name: string;
27
- required: boolean;
28
- placeholder: string;
29
- }>>> & {
30
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
31
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "name" | "placeholder">;
32
- $attrs: {
33
- [x: string]: unknown;
34
- };
35
- $refs: {
36
- [x: string]: unknown;
37
- };
38
- $slots: Readonly<{
39
- [name: string]: import("vue").Slot | undefined;
40
- }>;
41
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
42
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
43
- $emit: (event: "update:modelValue", event: string) => void;
44
- $el: any;
45
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
46
- id: InputType['id'];
47
- label?: InputType['label'];
48
- name: InputType['name'];
49
- placeholder?: string | undefined;
50
- helperText?: InputType['helperText'];
51
- required?: InputType['required'];
52
- disabled?: InputType['disabled'];
53
- size?: InputType['size'];
54
- error?: string | null | undefined;
55
- modelValue?: string | undefined;
56
- useField?: ParentValidation<string>['useFieldParent'];
57
- rules?: ParentValidation<string>['rules'];
58
- opts?: ParentValidation<string>['opts'];
59
- }>, {
60
- name: string;
61
- required: boolean;
62
- placeholder: string;
63
- }>>> & {
64
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
65
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
66
- "update:modelValue": (event: string) => void;
67
- }, string, {
68
- required: boolean;
69
- name: InputType['name'];
70
- placeholder: string;
71
- }, {}, string> & {
72
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
73
- created?: ((() => void) | (() => void)[]) | undefined;
74
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
75
- mounted?: ((() => void) | (() => void)[]) | undefined;
76
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
77
- updated?: ((() => void) | (() => void)[]) | undefined;
78
- activated?: ((() => void) | (() => void)[]) | undefined;
79
- deactivated?: ((() => void) | (() => void)[]) | undefined;
80
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
81
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
82
- destroyed?: ((() => void) | (() => void)[]) | undefined;
83
- unmounted?: ((() => void) | (() => void)[]) | undefined;
84
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
85
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
86
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
87
- };
88
- $forceUpdate: () => void;
89
- $nextTick: typeof import("vue").nextTick;
90
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
91
- } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
92
- id: InputType['id'];
93
- label?: InputType['label'];
94
- name: InputType['name'];
95
- placeholder?: string | undefined;
96
- helperText?: InputType['helperText'];
97
- required?: InputType['required'];
98
- disabled?: InputType['disabled'];
99
- size?: InputType['size'];
100
- error?: string | null | undefined;
101
- modelValue?: string | undefined;
102
- useField?: ParentValidation<string>['useFieldParent'];
103
- rules?: ParentValidation<string>['rules'];
104
- opts?: ParentValidation<string>['opts'];
105
- }>, {
106
- name: string;
107
- required: boolean;
108
- placeholder: string;
109
- }>>> & {
110
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
111
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
112
- __isFragment?: undefined;
113
- __isTeleport?: undefined;
114
- __isSuspense?: undefined;
115
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
+ id: InputType['id'];
5
+ label?: InputType['label'];
6
+ name: InputType['name'];
7
+ placeholder?: string | undefined;
8
+ helperText?: InputType['helperText'];
9
+ required?: InputType['required'];
10
+ disabled?: InputType['disabled'];
11
+ size?: InputType['size'];
12
+ error?: string | null | undefined;
13
+ modelValue?: string | undefined;
14
+ useField?: ParentValidation<string>['useFieldParent'];
15
+ rules?: ParentValidation<string>['rules'];
16
+ opts?: ParentValidation<string>['opts'];
17
+ }>, {
18
+ name: string;
19
+ required: boolean;
20
+ placeholder: string;
21
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
22
+ "update:modelValue": (event: string) => void;
23
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
116
24
  id: InputType['id'];
117
25
  label?: InputType['label'];
118
26
  name: InputType['name'];
@@ -132,13 +40,11 @@ declare const _default: {
132
40
  placeholder: string;
133
41
  }>>> & {
134
42
  "onUpdate:modelValue"?: ((event: string) => any) | undefined;
135
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
136
- "update:modelValue": (event: string) => void;
137
- }, string, {
43
+ }, {
138
44
  required: boolean;
139
45
  name: InputType['name'];
140
46
  placeholder: string;
141
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
47
+ }>;
142
48
  export default _default;
143
49
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
144
50
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,126 +1,32 @@
1
- declare const _default: {
2
- new (...args: any[]): {
3
- $: import("vue").ComponentInternalInstance;
4
- $data: {};
5
- $props: Partial<{
6
- error: string | null;
7
- size: 'small' | 'medium';
8
- resize: 'both' | 'horizontal' | 'vertical' | 'none';
9
- }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
- id: string;
11
- class?: string | undefined;
12
- name: string;
13
- label?: string | undefined;
14
- required?: boolean | undefined;
15
- helperText?: string | undefined;
16
- resize?: "none" | "vertical" | "both" | "horizontal" | undefined;
17
- size?: "small" | "medium" | undefined;
18
- error?: string | null | undefined;
19
- placeholder?: string | undefined;
20
- modelValue?: string | undefined;
21
- useField?: typeof import("vee-validate").useField | undefined;
22
- rules?: import("vee-validate").RuleExpression<unknown> | import("vue").Ref<import("vee-validate").RuleExpression<unknown>>;
23
- opts?: Partial<import("vee-validate").FieldOptions<string>> | undefined;
24
- }>, {
25
- size: string;
26
- resize: string;
27
- error: null;
28
- }>>> & {
29
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
30
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "size" | "resize">;
31
- $attrs: {
32
- [x: string]: unknown;
33
- };
34
- $refs: {
35
- [x: string]: unknown;
36
- };
37
- $slots: Readonly<{
38
- [name: string]: import("vue").Slot | undefined;
39
- }>;
40
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
41
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
42
- $emit: (event: "update:modelValue", event: string) => void;
43
- $el: any;
44
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
45
- id: string;
46
- class?: string | undefined;
47
- name: string;
48
- label?: string | undefined;
49
- required?: boolean | undefined;
50
- helperText?: string | undefined;
51
- resize?: "none" | "vertical" | "both" | "horizontal" | undefined;
52
- size?: "small" | "medium" | undefined;
53
- error?: string | null | undefined;
54
- placeholder?: string | undefined;
55
- modelValue?: string | undefined;
56
- useField?: typeof import("vee-validate").useField | undefined;
57
- rules?: import("vee-validate").RuleExpression<unknown> | import("vue").Ref<import("vee-validate").RuleExpression<unknown>>;
58
- opts?: Partial<import("vee-validate").FieldOptions<string>> | undefined;
59
- }>, {
60
- size: string;
61
- resize: string;
62
- error: null;
63
- }>>> & {
64
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
65
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
66
- "update:modelValue": (event: string) => void;
67
- }, string, {
68
- error: string | null;
69
- size: 'small' | 'medium';
70
- resize: 'both' | 'horizontal' | 'vertical' | 'none';
71
- }, {}, string> & {
72
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
73
- created?: ((() => void) | (() => void)[]) | undefined;
74
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
75
- mounted?: ((() => void) | (() => void)[]) | undefined;
76
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
77
- updated?: ((() => void) | (() => void)[]) | undefined;
78
- activated?: ((() => void) | (() => void)[]) | undefined;
79
- deactivated?: ((() => void) | (() => void)[]) | undefined;
80
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
81
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
82
- destroyed?: ((() => void) | (() => void)[]) | undefined;
83
- unmounted?: ((() => void) | (() => void)[]) | undefined;
84
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
85
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
86
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
87
- };
88
- $forceUpdate: () => void;
89
- $nextTick: typeof import("vue").nextTick;
90
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
91
- } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
92
- id: string;
93
- class?: string | undefined;
94
- name: string;
95
- label?: string | undefined;
96
- required?: boolean | undefined;
97
- helperText?: string | undefined;
98
- resize?: "none" | "vertical" | "both" | "horizontal" | undefined;
99
- size?: "small" | "medium" | undefined;
100
- error?: string | null | undefined;
101
- placeholder?: string | undefined;
102
- modelValue?: string | undefined;
103
- useField?: typeof import("vee-validate").useField | undefined;
104
- rules?: import("vee-validate").RuleExpression<unknown> | import("vue").Ref<import("vee-validate").RuleExpression<unknown>>;
105
- opts?: Partial<import("vee-validate").FieldOptions<string>> | undefined;
106
- }>, {
107
- size: string;
108
- resize: string;
109
- error: null;
110
- }>>> & {
111
- "onUpdate:modelValue"?: ((event: string) => any) | undefined;
112
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
113
- __isFragment?: undefined;
114
- __isTeleport?: undefined;
115
- __isSuspense?: undefined;
116
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
1
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
117
2
  id: string;
118
3
  class?: string | undefined;
119
4
  name: string;
120
5
  label?: string | undefined;
121
6
  required?: boolean | undefined;
122
7
  helperText?: string | undefined;
123
- resize?: "none" | "vertical" | "both" | "horizontal" | undefined;
8
+ resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
9
+ size?: "small" | "medium" | undefined;
10
+ error?: string | null | undefined;
11
+ placeholder?: string | undefined;
12
+ modelValue?: string | undefined;
13
+ useField?: typeof import("vee-validate").useField | undefined;
14
+ rules?: import("vee-validate").RuleExpression<unknown> | import("vue").Ref<import("vee-validate").RuleExpression<unknown>>;
15
+ opts?: Partial<import("vee-validate").FieldOptions<string>> | undefined;
16
+ }>, {
17
+ size: string;
18
+ resize: string;
19
+ error: null;
20
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
21
+ "update:modelValue": (event: string) => void;
22
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
23
+ id: string;
24
+ class?: string | undefined;
25
+ name: string;
26
+ label?: string | undefined;
27
+ required?: boolean | undefined;
28
+ helperText?: string | undefined;
29
+ resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
124
30
  size?: "small" | "medium" | undefined;
125
31
  error?: string | null | undefined;
126
32
  placeholder?: string | undefined;
@@ -134,13 +40,11 @@ declare const _default: {
134
40
  error: null;
135
41
  }>>> & {
136
42
  "onUpdate:modelValue"?: ((event: string) => any) | undefined;
137
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
138
- "update:modelValue": (event: string) => void;
139
- }, string, {
43
+ }, {
140
44
  error: string | null;
141
45
  size: 'small' | 'medium';
142
46
  resize: 'both' | 'horizontal' | 'vertical' | 'none';
143
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
47
+ }>;
144
48
  export default _default;
145
49
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
146
50
  type __VLS_TypePropsToRuntimeProps<T> = {