@solfacil/girassol 0.13.0 → 0.15.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.
@@ -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
+ };
@@ -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
+ };
@@ -9,8 +9,10 @@ import { SolSelectableChip } from './components/filters/chip/selectable-chip';
9
9
  import { SolRemovableChip } from './components/filters/chip/removable-chip';
10
10
  import { SolTag } from './components/informations/tag';
11
11
  import { SolAlert } from './components/informations/alert';
12
+ import { SolTextValue } from './components/informations/text-value';
12
13
  import { SolAccordion } from './components/accordion/';
13
14
  import { SolTabs } from './components/tabs/';
15
+ import { SolSteps } from './components/steps/';
14
16
  import { SolList } from './components/list/';
15
17
  import { SolMenu } from './components/menus/menu';
16
18
  import { SolMenuItem } from './components/menus/menu-item/menu-item';
@@ -5630,6 +5632,270 @@ export declare const components: {
5630
5632
  }) => any;
5631
5633
  };
5632
5634
  });
5635
+ SolSteps: {
5636
+ new (...args: any[]): {
5637
+ $: import("vue").ComponentInternalInstance;
5638
+ $data: {};
5639
+ $props: Partial<{
5640
+ direction: "row" | "column";
5641
+ steps: import("./components/steps/types").Step[] | undefined;
5642
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
5643
+ id: {
5644
+ type: import("vue").PropType<string>;
5645
+ required: true;
5646
+ };
5647
+ direction: {
5648
+ type: import("vue").PropType<"row" | "column">;
5649
+ } & {
5650
+ default: string;
5651
+ };
5652
+ steps: {
5653
+ type: import("vue").PropType<import("./components/steps/types").Step[] | undefined>;
5654
+ required: true;
5655
+ } & {
5656
+ default: () => {
5657
+ key: string;
5658
+ text: string;
5659
+ subtitle: string;
5660
+ }[];
5661
+ };
5662
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "direction" | "steps">;
5663
+ $attrs: {
5664
+ [x: string]: unknown;
5665
+ };
5666
+ $refs: {
5667
+ [x: string]: unknown;
5668
+ };
5669
+ $slots: Readonly<{
5670
+ [name: string]: import("vue").Slot | undefined;
5671
+ }>;
5672
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
5673
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
5674
+ $emit: (event: string, ...args: any[]) => void;
5675
+ $el: any;
5676
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5677
+ id: {
5678
+ type: import("vue").PropType<string>;
5679
+ required: true;
5680
+ };
5681
+ direction: {
5682
+ type: import("vue").PropType<"row" | "column">;
5683
+ } & {
5684
+ default: string;
5685
+ };
5686
+ steps: {
5687
+ type: import("vue").PropType<import("./components/steps/types").Step[] | undefined>;
5688
+ required: true;
5689
+ } & {
5690
+ default: () => {
5691
+ key: string;
5692
+ text: string;
5693
+ subtitle: string;
5694
+ }[];
5695
+ };
5696
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
5697
+ direction: "row" | "column";
5698
+ steps: import("./components/steps/types").Step[] | undefined;
5699
+ }> & {
5700
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
5701
+ created?: ((() => void) | (() => void)[]) | undefined;
5702
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
5703
+ mounted?: ((() => void) | (() => void)[]) | undefined;
5704
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
5705
+ updated?: ((() => void) | (() => void)[]) | undefined;
5706
+ activated?: ((() => void) | (() => void)[]) | undefined;
5707
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
5708
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
5709
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
5710
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
5711
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
5712
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
5713
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
5714
+ 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;
5715
+ };
5716
+ $forceUpdate: () => void;
5717
+ $nextTick: typeof import("vue").nextTick;
5718
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
5719
+ } & Readonly<import("vue").ExtractPropTypes<{
5720
+ id: {
5721
+ type: import("vue").PropType<string>;
5722
+ required: true;
5723
+ };
5724
+ direction: {
5725
+ type: import("vue").PropType<"row" | "column">;
5726
+ } & {
5727
+ default: string;
5728
+ };
5729
+ steps: {
5730
+ type: import("vue").PropType<import("./components/steps/types").Step[] | undefined>;
5731
+ required: true;
5732
+ } & {
5733
+ default: () => {
5734
+ key: string;
5735
+ text: string;
5736
+ subtitle: string;
5737
+ }[];
5738
+ };
5739
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
5740
+ __isFragment?: undefined;
5741
+ __isTeleport?: undefined;
5742
+ __isSuspense?: undefined;
5743
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5744
+ id: {
5745
+ type: import("vue").PropType<string>;
5746
+ required: true;
5747
+ };
5748
+ direction: {
5749
+ type: import("vue").PropType<"row" | "column">;
5750
+ } & {
5751
+ default: string;
5752
+ };
5753
+ steps: {
5754
+ type: import("vue").PropType<import("./components/steps/types").Step[] | undefined>;
5755
+ required: true;
5756
+ } & {
5757
+ default: () => {
5758
+ key: string;
5759
+ text: string;
5760
+ subtitle: string;
5761
+ }[];
5762
+ };
5763
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
5764
+ direction: "row" | "column";
5765
+ steps: import("./components/steps/types").Step[] | undefined;
5766
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
5767
+ SolTextValue: {
5768
+ new (...args: any[]): {
5769
+ $: import("vue").ComponentInternalInstance;
5770
+ $data: {};
5771
+ $props: Partial<{
5772
+ align: "left" | "right";
5773
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
5774
+ label: {
5775
+ type: import("vue").PropType<string>;
5776
+ };
5777
+ id: {
5778
+ type: import("vue").PropType<string>;
5779
+ required: true;
5780
+ };
5781
+ value: {
5782
+ type: import("vue").PropType<string>;
5783
+ };
5784
+ align: {
5785
+ type: import("vue").PropType<"left" | "right">;
5786
+ } & {
5787
+ default: string;
5788
+ };
5789
+ itemProp: {
5790
+ type: import("vue").PropType<string>;
5791
+ };
5792
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "align">;
5793
+ $attrs: {
5794
+ [x: string]: unknown;
5795
+ };
5796
+ $refs: {
5797
+ [x: string]: unknown;
5798
+ };
5799
+ $slots: Readonly<{
5800
+ [name: string]: import("vue").Slot | undefined;
5801
+ }>;
5802
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
5803
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
5804
+ $emit: (event: string, ...args: any[]) => void;
5805
+ $el: any;
5806
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5807
+ label: {
5808
+ type: import("vue").PropType<string>;
5809
+ };
5810
+ id: {
5811
+ type: import("vue").PropType<string>;
5812
+ required: true;
5813
+ };
5814
+ value: {
5815
+ type: import("vue").PropType<string>;
5816
+ };
5817
+ align: {
5818
+ type: import("vue").PropType<"left" | "right">;
5819
+ } & {
5820
+ default: string;
5821
+ };
5822
+ itemProp: {
5823
+ type: import("vue").PropType<string>;
5824
+ };
5825
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
5826
+ align: "left" | "right";
5827
+ }> & {
5828
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
5829
+ created?: ((() => void) | (() => void)[]) | undefined;
5830
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
5831
+ mounted?: ((() => void) | (() => void)[]) | undefined;
5832
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
5833
+ updated?: ((() => void) | (() => void)[]) | undefined;
5834
+ activated?: ((() => void) | (() => void)[]) | undefined;
5835
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
5836
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
5837
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
5838
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
5839
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
5840
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
5841
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
5842
+ 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;
5843
+ };
5844
+ $forceUpdate: () => void;
5845
+ $nextTick: typeof import("vue").nextTick;
5846
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
5847
+ } & Readonly<import("vue").ExtractPropTypes<{
5848
+ label: {
5849
+ type: import("vue").PropType<string>;
5850
+ };
5851
+ id: {
5852
+ type: import("vue").PropType<string>;
5853
+ required: true;
5854
+ };
5855
+ value: {
5856
+ type: import("vue").PropType<string>;
5857
+ };
5858
+ align: {
5859
+ type: import("vue").PropType<"left" | "right">;
5860
+ } & {
5861
+ default: string;
5862
+ };
5863
+ itemProp: {
5864
+ type: import("vue").PropType<string>;
5865
+ };
5866
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
5867
+ __isFragment?: undefined;
5868
+ __isTeleport?: undefined;
5869
+ __isSuspense?: undefined;
5870
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5871
+ label: {
5872
+ type: import("vue").PropType<string>;
5873
+ };
5874
+ id: {
5875
+ type: import("vue").PropType<string>;
5876
+ required: true;
5877
+ };
5878
+ value: {
5879
+ type: import("vue").PropType<string>;
5880
+ };
5881
+ align: {
5882
+ type: import("vue").PropType<"left" | "right">;
5883
+ } & {
5884
+ default: string;
5885
+ };
5886
+ itemProp: {
5887
+ type: import("vue").PropType<string>;
5888
+ };
5889
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
5890
+ align: "left" | "right";
5891
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
5892
+ $slots: {
5893
+ label: (_: {}) => any;
5894
+ 'icon:left': (_: {}) => any;
5895
+ value: (_: {}) => any;
5896
+ 'icon:right': (_: {}) => any;
5897
+ };
5898
+ });
5633
5899
  };
5634
5900
  export declare function install(App: App): void;
5635
- export { SolButton, SolButtonDestructive, SolInputTextarea, SolInputText, SolInputTextPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolSelect, SolRemovableChip, SolSelectableChip, SolTag, SolAlert, SolAccordion, SolList, SolTabs, SolMenu, SolMenuItem, SolMenuItemLink, SolMenuNavigationLinks, SolModal, SolPagination, SolEmptyState, SolSearch, SolDatePicker, SolCollapsible, };
5901
+ export { SolButton, SolButtonDestructive, SolInputTextarea, SolInputText, SolInputTextPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolSelect, SolRemovableChip, SolSelectableChip, SolTag, SolAlert, SolAccordion, SolList, SolTabs, SolMenu, SolMenuItem, SolMenuItemLink, SolMenuNavigationLinks, SolModal, SolPagination, SolEmptyState, SolSearch, SolDatePicker, SolCollapsible, SolSteps, SolTextValue, };