@solfacil/girassol 0.12.0 → 0.14.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 (36) hide show
  1. package/dist/components.d.ts +4 -0
  2. package/dist/components.json +1 -1
  3. package/dist/girassol.es.js +12137 -2962
  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/informations/text-value/TextValue.vue.d.ts +27 -28
  25. package/dist/types/components/informations/text-value/index.d.ts +2 -0
  26. package/dist/types/components/informations/text-value/text-value.spec.d.ts +1 -0
  27. package/dist/types/components/informations/text-value/types.d.ts +7 -0
  28. package/dist/types/components/list/ListItemTextValue.vue.d.ts +105 -0
  29. package/dist/types/components/modal/Modal.vue.d.ts +9 -9
  30. package/dist/types/components/search/Search.vue.d.ts +10 -10
  31. package/dist/types/components/steps/Steps.vue.d.ts +112 -0
  32. package/dist/types/components/steps/index.d.ts +2 -0
  33. package/dist/types/components/steps/steps.spec.d.ts +1 -0
  34. package/dist/types/components/steps/types.d.ts +12 -0
  35. package/dist/types/index.d.ts +1104 -541
  36. package/package.json +11 -9
@@ -1,16 +1,16 @@
1
+ import type { TextValue } from './types';
1
2
  declare const _default: {
2
3
  new (...args: any[]): {
3
4
  $: import("vue").ComponentInternalInstance;
4
5
  $data: {};
5
6
  $props: Partial<{
6
- align: 'left' | 'right';
7
+ align: "left" | "right";
7
8
  }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
8
- itemProp?: string | undefined;
9
- property?: string | undefined;
10
- value?: string | number | undefined;
11
- isHighlightValue?: boolean | undefined;
12
- align?: "left" | "right" | undefined;
13
- hide?: boolean | undefined;
9
+ id: TextValue['id'];
10
+ itemProp?: TextValue['itemProp'];
11
+ label?: TextValue['label'];
12
+ value?: TextValue['value'];
13
+ align?: TextValue['align'];
14
14
  }>, {
15
15
  align: string;
16
16
  }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "align">;
@@ -28,16 +28,15 @@ declare const _default: {
28
28
  $emit: (event: string, ...args: any[]) => void;
29
29
  $el: any;
30
30
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
31
- itemProp?: string | undefined;
32
- property?: string | undefined;
33
- value?: string | number | undefined;
34
- isHighlightValue?: boolean | undefined;
35
- align?: "left" | "right" | undefined;
36
- hide?: boolean | undefined;
31
+ id: TextValue['id'];
32
+ itemProp?: TextValue['itemProp'];
33
+ label?: TextValue['label'];
34
+ value?: TextValue['value'];
35
+ align?: TextValue['align'];
37
36
  }>, {
38
37
  align: string;
39
38
  }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
40
- align: 'left' | 'right';
39
+ align: "left" | "right";
41
40
  }> & {
42
41
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
43
42
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -59,12 +58,11 @@ declare const _default: {
59
58
  $nextTick: typeof import("vue").nextTick;
60
59
  $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
61
60
  } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
62
- itemProp?: string | undefined;
63
- property?: string | undefined;
64
- value?: string | number | undefined;
65
- isHighlightValue?: boolean | undefined;
66
- align?: "left" | "right" | undefined;
67
- hide?: boolean | undefined;
61
+ id: TextValue['id'];
62
+ itemProp?: TextValue['itemProp'];
63
+ label?: TextValue['label'];
64
+ value?: TextValue['value'];
65
+ align?: TextValue['align'];
68
66
  }>, {
69
67
  align: string;
70
68
  }>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
@@ -72,20 +70,21 @@ declare const _default: {
72
70
  __isTeleport?: undefined;
73
71
  __isSuspense?: undefined;
74
72
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
75
- itemProp?: string | undefined;
76
- property?: string | undefined;
77
- value?: string | number | undefined;
78
- isHighlightValue?: boolean | undefined;
79
- align?: "left" | "right" | undefined;
80
- hide?: boolean | undefined;
73
+ id: TextValue['id'];
74
+ itemProp?: TextValue['itemProp'];
75
+ label?: TextValue['label'];
76
+ value?: TextValue['value'];
77
+ align?: TextValue['align'];
81
78
  }>, {
82
79
  align: string;
83
80
  }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
84
- align: 'left' | 'right';
81
+ align: "left" | "right";
85
82
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
86
83
  $slots: {
87
- property: (_: {}) => any;
84
+ label: (_: {}) => any;
85
+ 'icon:left': (_: {}) => any;
88
86
  value: (_: {}) => any;
87
+ 'icon:right': (_: {}) => any;
89
88
  };
90
89
  });
91
90
  export default _default;
@@ -0,0 +1,2 @@
1
+ import SolTextValue from './TextValue.vue';
2
+ export { SolTextValue, };
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1,7 @@
1
+ export interface TextValue {
2
+ id: string;
3
+ label?: string;
4
+ value?: string;
5
+ itemProp?: string;
6
+ align?: 'left' | 'right';
7
+ }
@@ -0,0 +1,105 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{
6
+ align: 'left' | 'right';
7
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
8
+ itemProp?: string | undefined;
9
+ property?: string | undefined;
10
+ value?: string | number | undefined;
11
+ isHighlightValue?: boolean | undefined;
12
+ align?: "left" | "right" | undefined;
13
+ hide?: boolean | undefined;
14
+ }>, {
15
+ align: string;
16
+ }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "align">;
17
+ $attrs: {
18
+ [x: string]: unknown;
19
+ };
20
+ $refs: {
21
+ [x: string]: unknown;
22
+ };
23
+ $slots: Readonly<{
24
+ [name: string]: import("vue").Slot | undefined;
25
+ }>;
26
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
27
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
28
+ $emit: (event: string, ...args: any[]) => void;
29
+ $el: any;
30
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
31
+ itemProp?: string | undefined;
32
+ property?: string | undefined;
33
+ value?: string | number | undefined;
34
+ isHighlightValue?: boolean | undefined;
35
+ align?: "left" | "right" | undefined;
36
+ hide?: boolean | undefined;
37
+ }>, {
38
+ align: string;
39
+ }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
40
+ align: 'left' | 'right';
41
+ }> & {
42
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
43
+ created?: ((() => void) | (() => void)[]) | undefined;
44
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
45
+ mounted?: ((() => void) | (() => void)[]) | undefined;
46
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
47
+ updated?: ((() => void) | (() => void)[]) | undefined;
48
+ activated?: ((() => void) | (() => void)[]) | undefined;
49
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
50
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
51
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
52
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
53
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
54
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
55
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
56
+ 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;
57
+ };
58
+ $forceUpdate: () => void;
59
+ $nextTick: typeof import("vue").nextTick;
60
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
61
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
62
+ itemProp?: string | undefined;
63
+ property?: string | undefined;
64
+ value?: string | number | undefined;
65
+ isHighlightValue?: boolean | undefined;
66
+ align?: "left" | "right" | undefined;
67
+ hide?: boolean | undefined;
68
+ }>, {
69
+ align: string;
70
+ }>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
71
+ __isFragment?: undefined;
72
+ __isTeleport?: undefined;
73
+ __isSuspense?: undefined;
74
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
75
+ itemProp?: string | undefined;
76
+ property?: string | undefined;
77
+ value?: string | number | undefined;
78
+ isHighlightValue?: boolean | undefined;
79
+ align?: "left" | "right" | undefined;
80
+ hide?: boolean | undefined;
81
+ }>, {
82
+ align: string;
83
+ }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
84
+ align: 'left' | 'right';
85
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
86
+ $slots: {
87
+ property: (_: {}) => any;
88
+ value: (_: {}) => any;
89
+ };
90
+ });
91
+ export default _default;
92
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
93
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
94
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
95
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
96
+ } : {
97
+ type: import('vue').PropType<T[K]>;
98
+ required: true;
99
+ };
100
+ };
101
+ declare type __VLS_WithDefaults<P, D> = {
102
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
103
+ default: D[K];
104
+ } : P[K];
105
+ };
@@ -5,8 +5,8 @@ declare const _default: {
5
5
  $data: {};
6
6
  $props: Partial<{
7
7
  title: Modal['title'];
8
- target: string;
9
8
  size: Modal['size'];
9
+ target: string;
10
10
  }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
11
11
  id: Modal['id'];
12
12
  size?: import("./types").Size | undefined;
@@ -24,13 +24,13 @@ declare const _default: {
24
24
  mobile: string;
25
25
  };
26
26
  }>>> & {
27
- onClose?: (() => any) | undefined;
28
27
  onOpen?: (() => any) | undefined;
28
+ onClose?: (() => any) | undefined;
29
29
  "onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
30
30
  "onAction:primary"?: (() => any) | undefined;
31
31
  "onAction:secondary"?: (() => any) | undefined;
32
32
  "onAction:tertiary"?: (() => any) | undefined;
33
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "target" | "size">;
33
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "size" | "target">;
34
34
  $attrs: {
35
35
  [x: string]: unknown;
36
36
  };
@@ -42,7 +42,7 @@ declare const _default: {
42
42
  }>;
43
43
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
44
44
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
45
- $emit: ((event: "close") => void) & ((event: "open") => void) & ((event: "update:isOpen", value: boolean) => void) & ((event: "action:primary") => void) & ((event: "action:secondary") => void) & ((event: "action:tertiary") => void);
45
+ $emit: ((event: "open") => void) & ((event: "close") => void) & ((event: "update:isOpen", value: boolean) => void) & ((event: "action:primary") => void) & ((event: "action:secondary") => void) & ((event: "action:tertiary") => void);
46
46
  $el: any;
47
47
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
48
48
  id: Modal['id'];
@@ -61,8 +61,8 @@ declare const _default: {
61
61
  mobile: string;
62
62
  };
63
63
  }>>> & {
64
- onClose?: (() => any) | undefined;
65
64
  onOpen?: (() => any) | undefined;
65
+ onClose?: (() => any) | undefined;
66
66
  "onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
67
67
  "onAction:primary"?: (() => any) | undefined;
68
68
  "onAction:secondary"?: (() => any) | undefined;
@@ -84,8 +84,8 @@ declare const _default: {
84
84
  "action:tertiary": () => void;
85
85
  }, string, {
86
86
  title: Modal['title'];
87
- target: string;
88
87
  size: Modal['size'];
88
+ target: string;
89
89
  }> & {
90
90
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
91
91
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -123,8 +123,8 @@ declare const _default: {
123
123
  mobile: string;
124
124
  };
125
125
  }>>> & {
126
- onClose?: (() => any) | undefined;
127
126
  onOpen?: (() => any) | undefined;
127
+ onClose?: (() => any) | undefined;
128
128
  "onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
129
129
  "onAction:primary"?: (() => any) | undefined;
130
130
  "onAction:secondary"?: (() => any) | undefined;
@@ -153,8 +153,8 @@ declare const _default: {
153
153
  mobile: string;
154
154
  };
155
155
  }>>> & {
156
- onClose?: (() => any) | undefined;
157
156
  onOpen?: (() => any) | undefined;
157
+ onClose?: (() => any) | undefined;
158
158
  "onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
159
159
  "onAction:primary"?: (() => any) | undefined;
160
160
  "onAction:secondary"?: (() => any) | undefined;
@@ -176,8 +176,8 @@ declare const _default: {
176
176
  "action:tertiary": () => void;
177
177
  }, string, {
178
178
  title: Modal['title'];
179
- target: string;
180
179
  size: Modal['size'];
180
+ target: string;
181
181
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
182
182
  $slots: {
183
183
  default: (_: {}) => any;
@@ -4,10 +4,10 @@ declare const _default: {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{
7
- variant: import("./types").Variants;
8
- placeholder: string;
9
- size: "small" | "medium";
10
7
  modelValue: string;
8
+ size: "small" | "medium";
9
+ placeholder: string;
10
+ variant: import("./types").Variants;
11
11
  ariaLabel: Search['ariaLabel'];
12
12
  }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
13
13
  id: Search['id'];
@@ -25,7 +25,7 @@ declare const _default: {
25
25
  }>>> & {
26
26
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
27
27
  onSearch?: ((value: string) => any) | undefined;
28
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "placeholder" | "size" | "modelValue" | "ariaLabel">;
28
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "size" | "placeholder" | "variant" | "ariaLabel">;
29
29
  $attrs: {
30
30
  [x: string]: unknown;
31
31
  };
@@ -60,10 +60,10 @@ declare const _default: {
60
60
  } & {
61
61
  "update:modelValue": (value: string) => void;
62
62
  }, string, {
63
- variant: import("./types").Variants;
64
- placeholder: string;
65
- size: "small" | "medium";
66
63
  modelValue: string;
64
+ size: "small" | "medium";
65
+ placeholder: string;
66
+ variant: import("./types").Variants;
67
67
  ariaLabel: Search['ariaLabel'];
68
68
  }> & {
69
69
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -126,10 +126,10 @@ declare const _default: {
126
126
  } & {
127
127
  "update:modelValue": (value: string) => void;
128
128
  }, string, {
129
- variant: import("./types").Variants;
130
- placeholder: string;
131
- size: "small" | "medium";
132
129
  modelValue: string;
130
+ size: "small" | "medium";
131
+ placeholder: string;
132
+ variant: import("./types").Variants;
133
133
  ariaLabel: Search['ariaLabel'];
134
134
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
135
135
  export default _default;
@@ -0,0 +1,112 @@
1
+ import type { Steps } from './types';
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{
7
+ direction: "row" | "column";
8
+ steps: Steps['steps'];
9
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
+ id: Steps['id'];
11
+ steps: Steps['steps'];
12
+ direction?: Steps['direction'];
13
+ }>, {
14
+ direction: string;
15
+ steps: () => {
16
+ key: string;
17
+ text: string;
18
+ subtitle: string;
19
+ }[];
20
+ }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "direction" | "steps">;
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, {}>> | null;
31
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
32
+ $emit: (event: string, ...args: any[]) => void;
33
+ $el: any;
34
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
35
+ id: Steps['id'];
36
+ steps: Steps['steps'];
37
+ direction?: Steps['direction'];
38
+ }>, {
39
+ direction: string;
40
+ steps: () => {
41
+ key: string;
42
+ text: string;
43
+ subtitle: string;
44
+ }[];
45
+ }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
46
+ direction: "row" | "column";
47
+ steps: Steps['steps'];
48
+ }> & {
49
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
50
+ created?: ((() => void) | (() => void)[]) | undefined;
51
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
52
+ mounted?: ((() => void) | (() => void)[]) | undefined;
53
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
54
+ updated?: ((() => void) | (() => void)[]) | undefined;
55
+ activated?: ((() => void) | (() => void)[]) | undefined;
56
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
57
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
58
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
59
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
60
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
61
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
62
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
63
+ 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;
64
+ };
65
+ $forceUpdate: () => void;
66
+ $nextTick: typeof import("vue").nextTick;
67
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
68
+ } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
69
+ id: Steps['id'];
70
+ steps: Steps['steps'];
71
+ direction?: Steps['direction'];
72
+ }>, {
73
+ direction: string;
74
+ steps: () => {
75
+ key: string;
76
+ text: string;
77
+ subtitle: string;
78
+ }[];
79
+ }>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
80
+ __isFragment?: undefined;
81
+ __isTeleport?: undefined;
82
+ __isSuspense?: undefined;
83
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
84
+ id: Steps['id'];
85
+ steps: Steps['steps'];
86
+ direction?: Steps['direction'];
87
+ }>, {
88
+ direction: string;
89
+ steps: () => {
90
+ key: string;
91
+ text: string;
92
+ subtitle: string;
93
+ }[];
94
+ }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
95
+ direction: "row" | "column";
96
+ steps: Steps['steps'];
97
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
98
+ export default _default;
99
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
100
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
101
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
102
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
103
+ } : {
104
+ type: import('vue').PropType<T[K]>;
105
+ required: true;
106
+ };
107
+ };
108
+ declare type __VLS_WithDefaults<P, D> = {
109
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
110
+ default: D[K];
111
+ } : P[K];
112
+ };
@@ -0,0 +1,2 @@
1
+ import SolSteps from './Steps.vue';
2
+ export { SolSteps, };
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1,12 @@
1
+ export interface Steps {
2
+ id: string;
3
+ steps?: Step[];
4
+ direction?: 'row' | 'column';
5
+ }
6
+ export declare type Step = {
7
+ key: string;
8
+ text: string;
9
+ finished?: boolean;
10
+ subtitle?: string;
11
+ current?: boolean;
12
+ };