@solfacil/girassol 0.12.0 → 0.13.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 (27) hide show
  1. package/dist/components.d.ts +2 -0
  2. package/dist/components.json +1 -1
  3. package/dist/girassol.es.js +12043 -2994
  4. package/dist/girassol.umd.js +9 -8
  5. package/dist/style.css +1 -1
  6. package/dist/types/components/collapsible/Collapsible.vue.d.ts +114 -0
  7. package/dist/types/components/collapsible/collapsible.spec.d.ts +1 -0
  8. package/dist/types/components/collapsible/index.d.ts +2 -0
  9. package/dist/types/components/collapsible/types.d.ts +4 -0
  10. package/dist/types/components/date-picker/DatePicker.vue.d.ts +129 -0
  11. package/dist/types/components/date-picker/datepicker.spec.d.ts +1 -0
  12. package/dist/types/components/date-picker/index.d.ts +2 -0
  13. package/dist/types/components/date-picker/types.d.ts +15 -0
  14. package/dist/types/components/empty-state/EmptyState.vue.d.ts +5 -5
  15. package/dist/types/components/filters/chip/removable-chip/RemovableChip.vue.d.ts +4 -4
  16. package/dist/types/components/filters/chip/selectable-chip/SelectableChip.vue.d.ts +1 -1
  17. package/dist/types/components/forms/button/button/Button.vue.d.ts +4 -4
  18. package/dist/types/components/forms/checkbox/checkbox-group/CheckboxGroup.vue.d.ts +1 -1
  19. package/dist/types/components/forms/inputs/input-text/InputText.vue.d.ts +4 -4
  20. package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +8 -8
  21. package/dist/types/components/forms/radio/radio-group/RadioGroup.vue.d.ts +1 -1
  22. package/dist/types/components/forms/select/Select.vue.d.ts +10 -10
  23. package/dist/types/components/informations/tag/Tag.vue.d.ts +4 -4
  24. package/dist/types/components/modal/Modal.vue.d.ts +9 -9
  25. package/dist/types/components/search/Search.vue.d.ts +10 -10
  26. package/dist/types/index.d.ts +838 -541
  27. package/package.json +2 -1
@@ -0,0 +1,114 @@
1
+ import type { Collapsible } from './types';
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{
7
+ open: boolean;
8
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
9
+ id: Collapsible['id'];
10
+ open?: Collapsible['open'];
11
+ }>, {
12
+ open: boolean;
13
+ }>>> & {
14
+ onIsOpen?: ((open: boolean) => any) | undefined;
15
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "open">;
16
+ $attrs: {
17
+ [x: string]: unknown;
18
+ };
19
+ $refs: {
20
+ [x: string]: unknown;
21
+ };
22
+ $slots: Readonly<{
23
+ [name: string]: import("vue").Slot | undefined;
24
+ }>;
25
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
26
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
27
+ $emit: (event: "isOpen", open: boolean) => void;
28
+ $el: any;
29
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
30
+ id: Collapsible['id'];
31
+ open?: Collapsible['open'];
32
+ }>, {
33
+ open: boolean;
34
+ }>>> & {
35
+ onIsOpen?: ((open: boolean) => any) | undefined;
36
+ }, {
37
+ toggle: () => void;
38
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
39
+ isOpen: (open: boolean) => void;
40
+ }, string, {
41
+ open: boolean;
42
+ }> & {
43
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
44
+ created?: ((() => void) | (() => void)[]) | undefined;
45
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
46
+ mounted?: ((() => void) | (() => void)[]) | undefined;
47
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
48
+ updated?: ((() => void) | (() => void)[]) | undefined;
49
+ activated?: ((() => void) | (() => void)[]) | undefined;
50
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
51
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
52
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
53
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
54
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
55
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
56
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
57
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
58
+ };
59
+ $forceUpdate: () => void;
60
+ $nextTick: typeof import("vue").nextTick;
61
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
62
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
63
+ id: Collapsible['id'];
64
+ open?: Collapsible['open'];
65
+ }>, {
66
+ open: boolean;
67
+ }>>> & {
68
+ onIsOpen?: ((open: boolean) => any) | undefined;
69
+ } & import("vue").ShallowUnwrapRef<{
70
+ toggle: () => void;
71
+ }> & {} & import("vue").ComponentCustomProperties;
72
+ __isFragment?: undefined;
73
+ __isTeleport?: undefined;
74
+ __isSuspense?: undefined;
75
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
76
+ id: Collapsible['id'];
77
+ open?: Collapsible['open'];
78
+ }>, {
79
+ open: boolean;
80
+ }>>> & {
81
+ onIsOpen?: ((open: boolean) => any) | undefined;
82
+ }, {
83
+ toggle: () => void;
84
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
85
+ isOpen: (open: boolean) => void;
86
+ }, string, {
87
+ open: boolean;
88
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
89
+ $slots: {
90
+ header: (_: {
91
+ id: string;
92
+ toggle: () => void;
93
+ }) => any;
94
+ default: (_: {
95
+ id: string;
96
+ toggle: () => void;
97
+ }) => any;
98
+ };
99
+ });
100
+ export default _default;
101
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
102
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
103
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
104
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
105
+ } : {
106
+ type: import('vue').PropType<T[K]>;
107
+ required: true;
108
+ };
109
+ };
110
+ declare type __VLS_WithDefaults<P, D> = {
111
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
112
+ default: D[K];
113
+ } : P[K];
114
+ };
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1,2 @@
1
+ import SolCollapsible from './Collapsible.vue';
2
+ export { SolCollapsible, };
@@ -0,0 +1,4 @@
1
+ export interface Collapsible {
2
+ id: string;
3
+ open?: boolean;
4
+ }
@@ -0,0 +1,129 @@
1
+ import type { DatePicker as DatePickerProps } from './types';
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{
7
+ label: string;
8
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
9
+ id: DatePickerProps['id'];
10
+ label?: DatePickerProps['label'];
11
+ range?: DatePickerProps['range'];
12
+ error?: DatePickerProps['error'];
13
+ size?: DatePickerProps['size'];
14
+ helperText?: DatePickerProps['helperText'];
15
+ modelValue?: DatePickerProps['modelValue'];
16
+ placeholder?: DatePickerProps['placeholder'];
17
+ }>, {
18
+ label: string;
19
+ }>>> & {
20
+ onChange?: ((value: string) => any) | undefined;
21
+ "onUpdate:modelValue"?: ((value: import("./types").ModelValue | undefined) => any) | undefined;
22
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label">;
23
+ $attrs: {
24
+ [x: string]: unknown;
25
+ };
26
+ $refs: {
27
+ [x: string]: unknown;
28
+ };
29
+ $slots: Readonly<{
30
+ [name: string]: import("vue").Slot | undefined;
31
+ }>;
32
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
33
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
34
+ $emit: ((event: "update:modelValue", value: import("./types").ModelValue | undefined) => void) & ((event: "change", value: string) => void);
35
+ $el: any;
36
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
37
+ id: DatePickerProps['id'];
38
+ label?: DatePickerProps['label'];
39
+ range?: DatePickerProps['range'];
40
+ error?: DatePickerProps['error'];
41
+ size?: DatePickerProps['size'];
42
+ helperText?: DatePickerProps['helperText'];
43
+ modelValue?: DatePickerProps['modelValue'];
44
+ placeholder?: DatePickerProps['placeholder'];
45
+ }>, {
46
+ label: string;
47
+ }>>> & {
48
+ onChange?: ((value: string) => any) | undefined;
49
+ "onUpdate:modelValue"?: ((value: import("./types").ModelValue | undefined) => any) | undefined;
50
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
51
+ "update:modelValue": (value: import("./types").ModelValue | undefined) => void;
52
+ } & {
53
+ change: (value: string) => void;
54
+ }, string, {
55
+ label: string;
56
+ }> & {
57
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
58
+ created?: ((() => void) | (() => void)[]) | undefined;
59
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
60
+ mounted?: ((() => void) | (() => void)[]) | undefined;
61
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
62
+ updated?: ((() => void) | (() => void)[]) | undefined;
63
+ activated?: ((() => void) | (() => void)[]) | undefined;
64
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
65
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
66
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
67
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
68
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
69
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
70
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
71
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
72
+ };
73
+ $forceUpdate: () => void;
74
+ $nextTick: typeof import("vue").nextTick;
75
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
76
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
77
+ id: DatePickerProps['id'];
78
+ label?: DatePickerProps['label'];
79
+ range?: DatePickerProps['range'];
80
+ error?: DatePickerProps['error'];
81
+ size?: DatePickerProps['size'];
82
+ helperText?: DatePickerProps['helperText'];
83
+ modelValue?: DatePickerProps['modelValue'];
84
+ placeholder?: DatePickerProps['placeholder'];
85
+ }>, {
86
+ label: string;
87
+ }>>> & {
88
+ onChange?: ((value: string) => any) | undefined;
89
+ "onUpdate:modelValue"?: ((value: import("./types").ModelValue | undefined) => any) | undefined;
90
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
91
+ __isFragment?: undefined;
92
+ __isTeleport?: undefined;
93
+ __isSuspense?: undefined;
94
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
95
+ id: DatePickerProps['id'];
96
+ label?: DatePickerProps['label'];
97
+ range?: DatePickerProps['range'];
98
+ error?: DatePickerProps['error'];
99
+ size?: DatePickerProps['size'];
100
+ helperText?: DatePickerProps['helperText'];
101
+ modelValue?: DatePickerProps['modelValue'];
102
+ placeholder?: DatePickerProps['placeholder'];
103
+ }>, {
104
+ label: string;
105
+ }>>> & {
106
+ onChange?: ((value: string) => any) | undefined;
107
+ "onUpdate:modelValue"?: ((value: import("./types").ModelValue | undefined) => any) | undefined;
108
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
109
+ "update:modelValue": (value: import("./types").ModelValue | undefined) => void;
110
+ } & {
111
+ change: (value: string) => void;
112
+ }, string, {
113
+ label: string;
114
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
115
+ export default _default;
116
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
117
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
118
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
119
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
120
+ } : {
121
+ type: import('vue').PropType<T[K]>;
122
+ required: true;
123
+ };
124
+ };
125
+ declare type __VLS_WithDefaults<P, D> = {
126
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
127
+ default: D[K];
128
+ } : P[K];
129
+ };
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1,2 @@
1
+ import SolDatePicker from './DatePicker.vue';
2
+ export { SolDatePicker, };
@@ -0,0 +1,15 @@
1
+ export declare type ModelValue = Date | Date[];
2
+ export interface DatePicker {
3
+ id: string;
4
+ label?: string;
5
+ range?: boolean;
6
+ error?: string;
7
+ size?: 'small' | 'medium';
8
+ helperText?: string;
9
+ modelValue?: ModelValue;
10
+ placeholder?: string;
11
+ }
12
+ export interface Range {
13
+ text: string;
14
+ value?: number;
15
+ }
@@ -8,7 +8,7 @@ declare const _default: {
8
8
  }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
9
9
  id: EmptyState['id'];
10
10
  title: EmptyState['title'];
11
- subtitle: EmptyState['subtitle'];
11
+ subtitle?: string | undefined;
12
12
  variant: EmptyState['variant'];
13
13
  }>, {
14
14
  variant: string;
@@ -29,7 +29,7 @@ declare const _default: {
29
29
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
30
30
  id: EmptyState['id'];
31
31
  title: EmptyState['title'];
32
- subtitle: EmptyState['subtitle'];
32
+ subtitle?: string | undefined;
33
33
  variant: EmptyState['variant'];
34
34
  }>, {
35
35
  variant: string;
@@ -58,7 +58,7 @@ declare const _default: {
58
58
  } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
59
59
  id: EmptyState['id'];
60
60
  title: EmptyState['title'];
61
- subtitle: EmptyState['subtitle'];
61
+ subtitle?: string | undefined;
62
62
  variant: EmptyState['variant'];
63
63
  }>, {
64
64
  variant: string;
@@ -69,7 +69,7 @@ declare const _default: {
69
69
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
70
70
  id: EmptyState['id'];
71
71
  title: EmptyState['title'];
72
- subtitle: EmptyState['subtitle'];
72
+ subtitle?: string | undefined;
73
73
  variant: EmptyState['variant'];
74
74
  }>, {
75
75
  variant: string;
@@ -77,7 +77,7 @@ declare const _default: {
77
77
  variant: EmptyState['variant'];
78
78
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
79
79
  $slots: {
80
- button: (_: {}) => any;
80
+ action: (_: {}) => any;
81
81
  };
82
82
  });
83
83
  export default _default;
@@ -4,8 +4,8 @@ declare const _default: {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{
7
- variant: RemovableChip['variant'];
8
7
  size: "small" | "medium";
8
+ variant: RemovableChip['variant'];
9
9
  }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
10
  id: RemovableChip['id'];
11
11
  label?: RemovableChip['label'];
@@ -17,7 +17,7 @@ declare const _default: {
17
17
  size: string;
18
18
  }>>> & {
19
19
  onClose?: (() => any) | undefined;
20
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "size">;
20
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "variant">;
21
21
  $attrs: {
22
22
  [x: string]: unknown;
23
23
  };
@@ -45,8 +45,8 @@ declare const _default: {
45
45
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
46
46
  close: () => void;
47
47
  }, string, {
48
- variant: RemovableChip['variant'];
49
48
  size: "small" | "medium";
49
+ variant: RemovableChip['variant'];
50
50
  }> & {
51
51
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
52
52
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -96,8 +96,8 @@ declare const _default: {
96
96
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
97
97
  close: () => void;
98
98
  }, string, {
99
- variant: RemovableChip['variant'];
100
99
  size: "small" | "medium";
100
+ variant: RemovableChip['variant'];
101
101
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
102
102
  $slots: {
103
103
  default: (_: {}) => any;
@@ -29,7 +29,7 @@ declare const _default: {
29
29
  }>;
30
30
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
31
31
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
32
- $emit: ((event: "update:selected", v: boolean) => void) & ((event: "change", v: unknown) => void);
32
+ $emit: ((event: "change", v: unknown) => void) & ((event: "update:selected", v: boolean) => void);
33
33
  $el: any;
34
34
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
35
35
  id: SelectableChip['id'];
@@ -4,8 +4,8 @@ declare const _default: {
4
4
  $data: {};
5
5
  $props: Partial<{
6
6
  onColor: boolean;
7
- variant: 'primary' | 'secondary' | 'tertiary';
8
7
  size: 'small' | 'medium' | 'large';
8
+ variant: 'primary' | 'secondary' | 'tertiary';
9
9
  }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
10
  id: string;
11
11
  loading?: boolean | undefined;
@@ -17,7 +17,7 @@ declare const _default: {
17
17
  variant: string;
18
18
  size: string;
19
19
  onColor: boolean;
20
- }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "onColor" | "variant" | "size">;
20
+ }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "onColor" | "size" | "variant">;
21
21
  $attrs: {
22
22
  [x: string]: unknown;
23
23
  };
@@ -44,8 +44,8 @@ declare const _default: {
44
44
  onColor: boolean;
45
45
  }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
46
46
  onColor: boolean;
47
- variant: 'primary' | 'secondary' | 'tertiary';
48
47
  size: 'small' | 'medium' | 'large';
48
+ variant: 'primary' | 'secondary' | 'tertiary';
49
49
  }> & {
50
50
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
51
51
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -94,8 +94,8 @@ declare const _default: {
94
94
  onColor: boolean;
95
95
  }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
96
96
  onColor: boolean;
97
- variant: 'primary' | 'secondary' | 'tertiary';
98
97
  size: 'small' | 'medium' | 'large';
98
+ variant: 'primary' | 'secondary' | 'tertiary';
99
99
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
100
100
  $slots: {
101
101
  'icon-left': (_: {}) => any;
@@ -39,7 +39,7 @@ declare const _default: {
39
39
  }>;
40
40
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
41
41
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
42
- $emit: ((event: "change", value: import("@forms/checkbox/type").CheckboxValue) => void) & ((event: "update:modelValue", v: import("@forms/checkbox/type").CheckboxValue[] | undefined) => void);
42
+ $emit: ((event: "update:modelValue", v: import("@forms/checkbox/type").CheckboxValue[] | undefined) => void) & ((event: "change", value: import("@forms/checkbox/type").CheckboxValue) => void);
43
43
  $el: any;
44
44
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
45
45
  id: string;
@@ -7,8 +7,8 @@ declare const _default: {
7
7
  $: import("vue").ComponentInternalInstance;
8
8
  $data: {};
9
9
  $props: Partial<{
10
- size: "small" | "medium";
11
10
  error: string | null;
11
+ size: "small" | "medium";
12
12
  }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
13
13
  id: InputText['id'];
14
14
  name: InputText['name'];
@@ -34,7 +34,7 @@ declare const _default: {
34
34
  error: null;
35
35
  }>>> & {
36
36
  "onUpdate:modelValue"?: ((event: string) => any) | undefined;
37
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "error">;
37
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "size">;
38
38
  $attrs: {
39
39
  [x: string]: unknown;
40
40
  };
@@ -76,8 +76,8 @@ declare const _default: {
76
76
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
77
77
  "update:modelValue": (event: string) => void;
78
78
  }, string, {
79
- size: "small" | "medium";
80
79
  error: string | null;
80
+ size: "small" | "medium";
81
81
  }> & {
82
82
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
83
83
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -155,8 +155,8 @@ declare const _default: {
155
155
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
156
156
  "update:modelValue": (event: string) => void;
157
157
  }, string, {
158
- size: "small" | "medium";
159
158
  error: string | null;
159
+ size: "small" | "medium";
160
160
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
161
161
  $slots: {
162
162
  icon: (_: {}) => any;
@@ -3,8 +3,8 @@ declare const _default: {
3
3
  $: import("vue").ComponentInternalInstance;
4
4
  $data: {};
5
5
  $props: Partial<{
6
- size: 'small' | 'medium';
7
6
  error: string | null;
7
+ size: 'small' | 'medium';
8
8
  resize: 'both' | 'horizontal' | 'vertical' | 'none';
9
9
  }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
10
  id: string;
@@ -13,7 +13,7 @@ declare const _default: {
13
13
  label?: string | undefined;
14
14
  required?: boolean | undefined;
15
15
  helperText?: string | undefined;
16
- resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
16
+ resize?: "none" | "vertical" | "both" | "horizontal" | undefined;
17
17
  size?: "small" | "medium" | undefined;
18
18
  error?: string | null | undefined;
19
19
  placeholder?: string | undefined;
@@ -27,7 +27,7 @@ declare const _default: {
27
27
  error: null;
28
28
  }>>> & {
29
29
  "onUpdate:modelValue"?: ((event: string) => any) | undefined;
30
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "error" | "resize">;
30
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "size" | "resize">;
31
31
  $attrs: {
32
32
  [x: string]: unknown;
33
33
  };
@@ -48,7 +48,7 @@ declare const _default: {
48
48
  label?: string | undefined;
49
49
  required?: boolean | undefined;
50
50
  helperText?: string | undefined;
51
- resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
51
+ resize?: "none" | "vertical" | "both" | "horizontal" | undefined;
52
52
  size?: "small" | "medium" | undefined;
53
53
  error?: string | null | undefined;
54
54
  placeholder?: string | undefined;
@@ -65,8 +65,8 @@ declare const _default: {
65
65
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
66
66
  "update:modelValue": (event: string) => void;
67
67
  }, string, {
68
- size: 'small' | 'medium';
69
68
  error: string | null;
69
+ size: 'small' | 'medium';
70
70
  resize: 'both' | 'horizontal' | 'vertical' | 'none';
71
71
  }> & {
72
72
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -95,7 +95,7 @@ declare const _default: {
95
95
  label?: string | undefined;
96
96
  required?: boolean | undefined;
97
97
  helperText?: string | undefined;
98
- resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
98
+ resize?: "none" | "vertical" | "both" | "horizontal" | undefined;
99
99
  size?: "small" | "medium" | undefined;
100
100
  error?: string | null | undefined;
101
101
  placeholder?: string | undefined;
@@ -120,7 +120,7 @@ declare const _default: {
120
120
  label?: string | undefined;
121
121
  required?: boolean | undefined;
122
122
  helperText?: string | undefined;
123
- resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
123
+ resize?: "none" | "vertical" | "both" | "horizontal" | undefined;
124
124
  size?: "small" | "medium" | undefined;
125
125
  error?: string | null | undefined;
126
126
  placeholder?: string | undefined;
@@ -137,8 +137,8 @@ declare const _default: {
137
137
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
138
138
  "update:modelValue": (event: string) => void;
139
139
  }, string, {
140
- size: 'small' | 'medium';
141
140
  error: string | null;
141
+ size: 'small' | 'medium';
142
142
  resize: 'both' | 'horizontal' | 'vertical' | 'none';
143
143
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
144
144
  export default _default;
@@ -39,7 +39,7 @@ declare const _default: {
39
39
  }>;
40
40
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
41
41
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
42
- $emit: ((event: "change", value: import("../types").RadioValue) => void) & ((event: "update:modelValue", value: import("../types").RadioValue) => void);
42
+ $emit: ((event: "update:modelValue", value: import("../types").RadioValue) => void) & ((event: "change", value: import("../types").RadioValue) => void);
43
43
  $el: any;
44
44
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
45
45
  id: string;
@@ -4,11 +4,11 @@ declare const _default: {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{
7
- multiple: boolean;
8
- placeholder: string;
7
+ error: string | null;
9
8
  size: import("./types").Size;
9
+ placeholder: string;
10
10
  loading: boolean;
11
- error: string | null;
11
+ multiple: boolean;
12
12
  options: Select['options'];
13
13
  dropdownPosition: 'bottom' | 'top' | 'dynamic';
14
14
  searchable: boolean;
@@ -54,7 +54,7 @@ declare const _default: {
54
54
  "onUpdate:selected"?: ((value: Option | Option[] | undefined) => any) | undefined;
55
55
  onSearch?: ((value: string) => any) | undefined;
56
56
  onCloseDropdown?: (() => any) | undefined;
57
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "multiple" | "placeholder" | "size" | "loading" | "error" | "options" | "dropdownPosition" | "searchable" | "closeOnSelect" | "fetchOnSearch" | "searchPlaceholder">;
57
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "size" | "placeholder" | "loading" | "multiple" | "options" | "dropdownPosition" | "searchable" | "closeOnSelect" | "fetchOnSearch" | "searchPlaceholder">;
58
58
  $attrs: {
59
59
  [x: string]: unknown;
60
60
  };
@@ -114,11 +114,11 @@ declare const _default: {
114
114
  } & {
115
115
  "update:selected": (value: Option | Option[] | undefined) => void;
116
116
  }, string, {
117
- multiple: boolean;
118
- placeholder: string;
117
+ error: string | null;
119
118
  size: import("./types").Size;
119
+ placeholder: string;
120
120
  loading: boolean;
121
- error: string | null;
121
+ multiple: boolean;
122
122
  options: Select['options'];
123
123
  dropdownPosition: 'bottom' | 'top' | 'dynamic';
124
124
  searchable: boolean;
@@ -234,11 +234,11 @@ declare const _default: {
234
234
  } & {
235
235
  "update:selected": (value: Option | Option[] | undefined) => void;
236
236
  }, string, {
237
- multiple: boolean;
238
- placeholder: string;
237
+ error: string | null;
239
238
  size: import("./types").Size;
239
+ placeholder: string;
240
240
  loading: boolean;
241
- error: string | null;
241
+ multiple: boolean;
242
242
  options: Select['options'];
243
243
  dropdownPosition: 'bottom' | 'top' | 'dynamic';
244
244
  searchable: boolean;
@@ -5,8 +5,8 @@ declare const _default: {
5
5
  $props: Partial<{
6
6
  text: string;
7
7
  type: 'positive' | 'warning' | 'negative' | 'informative' | 'neutral';
8
- variant: 'fill' | 'outline';
9
8
  size: 'small' | 'medium';
9
+ variant: 'fill' | 'outline';
10
10
  }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
11
11
  id: string;
12
12
  text?: string | undefined;
@@ -18,7 +18,7 @@ declare const _default: {
18
18
  variant: string;
19
19
  size: string;
20
20
  type: string;
21
- }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "type" | "variant" | "size">;
21
+ }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "type" | "size" | "variant">;
22
22
  $attrs: {
23
23
  [x: string]: unknown;
24
24
  };
@@ -46,8 +46,8 @@ declare const _default: {
46
46
  }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
47
47
  text: string;
48
48
  type: 'positive' | 'warning' | 'negative' | 'informative' | 'neutral';
49
- variant: 'fill' | 'outline';
50
49
  size: 'small' | 'medium';
50
+ variant: 'fill' | 'outline';
51
51
  }> & {
52
52
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
53
53
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -97,8 +97,8 @@ declare const _default: {
97
97
  }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
98
98
  text: string;
99
99
  type: 'positive' | 'warning' | 'negative' | 'informative' | 'neutral';
100
- variant: 'fill' | 'outline';
101
100
  size: 'small' | 'medium';
101
+ variant: 'fill' | 'outline';
102
102
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
103
103
  $slots: {
104
104
  default: (_: {}) => any;