@deskhero/dh_ui 2.6.6 → 2.7.1

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 (44) hide show
  1. package/dist/App.vue.d.ts +2 -0
  2. package/dist/components/AdvancedDatePicker.vue.d.ts +7 -0
  3. package/dist/components/AdvancedFilter.vue.d.ts +55 -0
  4. package/dist/components/Button.vue.d.ts +69 -0
  5. package/dist/components/Copiable.vue.d.ts +8 -0
  6. package/dist/components/DatePicker.vue.d.ts +11 -0
  7. package/dist/components/DropdownMenu.vue.d.ts +108 -0
  8. package/dist/components/DropdownMenuItem.vue.d.ts +50 -0
  9. package/dist/components/Error.vue.d.ts +16 -0
  10. package/dist/components/ExpansionPanel.vue.d.ts +39 -0
  11. package/dist/components/FileUpload.vue.d.ts +22 -0
  12. package/dist/components/Icon.vue.d.ts +87 -0
  13. package/dist/components/IconWithText.vue.d.ts +149 -0
  14. package/dist/components/ImageCropper.vue.d.ts +60 -0
  15. package/dist/components/InputDropdown.vue.d.ts +16 -0
  16. package/dist/components/InputDropdownMultiple.vue.d.ts +15 -0
  17. package/dist/components/InputGroup.vue.d.ts +15 -0
  18. package/dist/components/InputList.vue.d.ts +18 -0
  19. package/dist/components/Modal.vue.d.ts +109 -0
  20. package/dist/components/Notification.vue.d.ts +130 -0
  21. package/dist/components/NumberRange.vue.d.ts +174 -0
  22. package/dist/components/PasswordField.vue.d.ts +62 -0
  23. package/dist/components/RadioBox.vue.d.ts +9 -0
  24. package/dist/components/RadioBoxGroup.vue.d.ts +8 -0
  25. package/dist/components/SearchInput.vue.d.ts +36 -0
  26. package/dist/components/Stepper.vue.d.ts +23 -0
  27. package/dist/components/Switch.vue.d.ts +33 -0
  28. package/dist/components/Tag.vue.d.ts +48 -0
  29. package/dist/components/Tags.vue.d.ts +82 -0
  30. package/dist/components/TextEditor.vue.d.ts +28 -0
  31. package/dist/components/Tooltip.vue.d.ts +46 -0
  32. package/dist/components/VerificationCode.vue.d.ts +45 -0
  33. package/dist/dh_ui.es.js +24229 -26040
  34. package/dist/dh_ui.umd.js +115 -91
  35. package/dist/index.d.ts +34 -0
  36. package/dist/main.d.ts +1 -0
  37. package/dist/models/DropdownMenuItem.model.d.ts +13 -0
  38. package/dist/models/InputList.model.d.ts +4 -0
  39. package/dist/models/Tag.model.d.ts +7 -0
  40. package/dist/style.css +1 -1
  41. package/dist/tools/editorCode.d.ts +21 -0
  42. package/dist/tools/editorFiles.d.ts +39 -0
  43. package/dist/tools/editorImage.d.ts +44 -0
  44. package/package.json +16 -16
@@ -0,0 +1,16 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ $props: {
3
+ readonly tabindex?: number | undefined;
4
+ readonly options?: unknown[] | undefined;
5
+ readonly icon?: string | undefined;
6
+ readonly labelProp?: string | undefined;
7
+ readonly valueProp?: string | undefined;
8
+ readonly placeholderInput?: string | undefined;
9
+ readonly inputValue?: string | undefined;
10
+ readonly inputWidth?: string | undefined;
11
+ readonly selectedOption?: Record<string, any> | undefined;
12
+ readonly isClearable?: boolean | undefined;
13
+ };
14
+ $emit: (event: "clear" | "update", ...args: any[]) => void;
15
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
16
+ export default _default;
@@ -0,0 +1,15 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ $props: {
3
+ readonly title?: string | undefined;
4
+ readonly tabindex?: number | undefined;
5
+ readonly value?: unknown[] | undefined;
6
+ readonly options?: unknown[] | undefined;
7
+ readonly icon?: string | undefined;
8
+ readonly labelProp?: string | undefined;
9
+ readonly valueProp?: string | undefined;
10
+ readonly placeholderInput?: string | undefined;
11
+ readonly inputWidth?: string | undefined;
12
+ };
13
+ $emit: (event: "update", ...args: any[]) => void;
14
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
15
+ export default _default;
@@ -0,0 +1,15 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ $props: {
3
+ readonly iconName?: string | undefined;
4
+ readonly placeholder?: string | undefined;
5
+ readonly direction?: string | undefined;
6
+ readonly modelValue?: string | number | undefined;
7
+ readonly inputType?: string | undefined;
8
+ readonly sideContent?: string | undefined;
9
+ readonly widthProp?: string | undefined;
10
+ readonly heightProp?: string | undefined;
11
+ readonly e2e?: string | undefined;
12
+ };
13
+ $emit: (event: "update:modelValue", ...args: any[]) => void;
14
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
15
+ export default _default;
@@ -0,0 +1,18 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ $props: {
3
+ readonly placeholder?: string | undefined;
4
+ readonly list?: unknown[] | undefined;
5
+ readonly maxHeight?: string | undefined;
6
+ readonly modelValue?: Record<string, any> | unknown[] | undefined;
7
+ readonly labelProp?: string | undefined;
8
+ readonly valueProp?: string | undefined;
9
+ readonly canClear?: boolean | undefined;
10
+ };
11
+ $emit: (event: "select" | "clear" | "update" | "deselect", ...args: any[]) => void;
12
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
13
+ default?(_: {}): any;
14
+ }>;
15
+ export default _default;
16
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
17
+ $slots: S;
18
+ });
@@ -0,0 +1,109 @@
1
+ import { type PropType } from "vue";
2
+ declare const _default: import("vue").DefineComponent<{
3
+ hasCloseButton: {
4
+ type: BooleanConstructor;
5
+ default: boolean;
6
+ };
7
+ hasSideBar: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ hasSideBarButtonBottom: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ hasHeader: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ hasFooter: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ hasFooterButtonRight: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ hasBodyScrolling: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ sideBarPosition: {
32
+ type: PropType<"left" | "right">;
33
+ default: string;
34
+ };
35
+ hasCloseConfirmation: {
36
+ type: BooleanConstructor;
37
+ default: boolean;
38
+ };
39
+ bodyClass: {
40
+ type: PropType<"" | "content-horizontally-centered">;
41
+ default: string;
42
+ };
43
+ fitContent: {
44
+ type: BooleanConstructor;
45
+ default: boolean;
46
+ };
47
+ }, unknown, unknown, {}, {
48
+ closed(): void;
49
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
50
+ hasCloseButton: {
51
+ type: BooleanConstructor;
52
+ default: boolean;
53
+ };
54
+ hasSideBar: {
55
+ type: BooleanConstructor;
56
+ default: boolean;
57
+ };
58
+ hasSideBarButtonBottom: {
59
+ type: BooleanConstructor;
60
+ default: boolean;
61
+ };
62
+ hasHeader: {
63
+ type: BooleanConstructor;
64
+ default: boolean;
65
+ };
66
+ hasFooter: {
67
+ type: BooleanConstructor;
68
+ default: boolean;
69
+ };
70
+ hasFooterButtonRight: {
71
+ type: BooleanConstructor;
72
+ default: boolean;
73
+ };
74
+ hasBodyScrolling: {
75
+ type: BooleanConstructor;
76
+ default: boolean;
77
+ };
78
+ sideBarPosition: {
79
+ type: PropType<"left" | "right">;
80
+ default: string;
81
+ };
82
+ hasCloseConfirmation: {
83
+ type: BooleanConstructor;
84
+ default: boolean;
85
+ };
86
+ bodyClass: {
87
+ type: PropType<"" | "content-horizontally-centered">;
88
+ default: string;
89
+ };
90
+ fitContent: {
91
+ type: BooleanConstructor;
92
+ default: boolean;
93
+ };
94
+ }>> & {
95
+ onClose?: ((...args: any[]) => any) | undefined;
96
+ }, {
97
+ hasCloseButton: boolean;
98
+ hasSideBar: boolean;
99
+ hasSideBarButtonBottom: boolean;
100
+ hasHeader: boolean;
101
+ hasFooter: boolean;
102
+ hasFooterButtonRight: boolean;
103
+ hasBodyScrolling: boolean;
104
+ sideBarPosition: "left" | "right";
105
+ hasCloseConfirmation: boolean;
106
+ bodyClass: "" | "content-horizontally-centered";
107
+ fitContent: boolean;
108
+ }, {}>;
109
+ export default _default;
@@ -0,0 +1,130 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ notificationType: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ default: string;
6
+ validator: (value: string) => boolean;
7
+ };
8
+ icon: {
9
+ type: StringConstructor;
10
+ required: true;
11
+ default: string;
12
+ };
13
+ title: {
14
+ type: StringConstructor;
15
+ required: false;
16
+ default: string;
17
+ };
18
+ message: {
19
+ type: StringConstructor;
20
+ required: false;
21
+ default: string;
22
+ };
23
+ dismissible: {
24
+ type: BooleanConstructor;
25
+ required: false;
26
+ default: boolean;
27
+ };
28
+ notificationButton: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ buttonDismiss: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ };
36
+ zIndex: {
37
+ type: NumberConstructor;
38
+ default: number;
39
+ };
40
+ show: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ animationEnter: {
45
+ type: StringConstructor;
46
+ default: string;
47
+ };
48
+ animationUp: {
49
+ type: StringConstructor;
50
+ default: string;
51
+ };
52
+ animationSpeed: {
53
+ type: StringConstructor;
54
+ default: string;
55
+ };
56
+ }, unknown, unknown, {}, {
57
+ close(confirmation?: boolean): void;
58
+ limitTitle(_title: string, _type: string): string;
59
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "action"[], "action", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
60
+ notificationType: {
61
+ type: StringConstructor;
62
+ required: true;
63
+ default: string;
64
+ validator: (value: string) => boolean;
65
+ };
66
+ icon: {
67
+ type: StringConstructor;
68
+ required: true;
69
+ default: string;
70
+ };
71
+ title: {
72
+ type: StringConstructor;
73
+ required: false;
74
+ default: string;
75
+ };
76
+ message: {
77
+ type: StringConstructor;
78
+ required: false;
79
+ default: string;
80
+ };
81
+ dismissible: {
82
+ type: BooleanConstructor;
83
+ required: false;
84
+ default: boolean;
85
+ };
86
+ notificationButton: {
87
+ type: StringConstructor;
88
+ default: string;
89
+ };
90
+ buttonDismiss: {
91
+ type: StringConstructor;
92
+ default: string;
93
+ };
94
+ zIndex: {
95
+ type: NumberConstructor;
96
+ default: number;
97
+ };
98
+ show: {
99
+ type: BooleanConstructor;
100
+ default: boolean;
101
+ };
102
+ animationEnter: {
103
+ type: StringConstructor;
104
+ default: string;
105
+ };
106
+ animationUp: {
107
+ type: StringConstructor;
108
+ default: string;
109
+ };
110
+ animationSpeed: {
111
+ type: StringConstructor;
112
+ default: string;
113
+ };
114
+ }>> & {
115
+ onAction?: ((...args: any[]) => any) | undefined;
116
+ }, {
117
+ title: string;
118
+ zIndex: number;
119
+ icon: string;
120
+ show: boolean;
121
+ notificationType: string;
122
+ message: string;
123
+ dismissible: boolean;
124
+ notificationButton: string;
125
+ buttonDismiss: string;
126
+ animationEnter: string;
127
+ animationUp: string;
128
+ animationSpeed: string;
129
+ }, {}>;
130
+ export default _default;
@@ -0,0 +1,174 @@
1
+ import "../../node_modules/multi-range-slider-vue/MultiRangeSliderBarOnly.css";
2
+ import { type PropType } from "vue";
3
+ import type { AnyObject } from "chart.js/types/basic";
4
+ declare const _default: import("vue").DefineComponent<{
5
+ numberRange: {
6
+ type: PropType<AnyObject[]>;
7
+ default: () => {
8
+ key: number;
9
+ count: number;
10
+ }[];
11
+ };
12
+ width: {
13
+ type: NumberConstructor;
14
+ default: number;
15
+ };
16
+ height: {
17
+ type: NumberConstructor;
18
+ default: number;
19
+ };
20
+ chartId: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ datasetIdKey: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ includeForm: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ isMatch: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ isExclude: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ isDisable: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ modelValue: {
45
+ type: ObjectConstructor;
46
+ required: false;
47
+ default: null;
48
+ };
49
+ }, unknown, {
50
+ chartData: {
51
+ labels: never[];
52
+ datasets: {
53
+ labels: string;
54
+ data: never[];
55
+ backgroundColor: string[];
56
+ borderRadius: number;
57
+ hoverBackgroundColor: string;
58
+ }[];
59
+ };
60
+ chartOptions: {
61
+ responsive: boolean;
62
+ plugins: {
63
+ legend: {
64
+ display: boolean;
65
+ };
66
+ };
67
+ scales: {
68
+ x: {
69
+ display: boolean;
70
+ grid: {
71
+ display: boolean;
72
+ };
73
+ ticks: {
74
+ display: boolean;
75
+ };
76
+ };
77
+ y: {
78
+ display: boolean;
79
+ grid: {
80
+ display: boolean;
81
+ };
82
+ ticks: {
83
+ display: boolean;
84
+ };
85
+ };
86
+ };
87
+ };
88
+ min: number;
89
+ max: number;
90
+ validated: boolean;
91
+ activeColor: string;
92
+ inactiveColor: string;
93
+ }, {
94
+ getRangeLength(): number;
95
+ getFirstKey(): unknown;
96
+ getLastKey(): unknown;
97
+ getMinKey(): unknown;
98
+ getMinCaption(): string;
99
+ getMaxCaption(): string;
100
+ getMaxKey(): unknown;
101
+ getLastIndex(): number;
102
+ }, {
103
+ updateRange(): void;
104
+ updateBarChart(e: any): void;
105
+ matchFilter(): void;
106
+ excludeFilter(): void;
107
+ missingFilter(): void;
108
+ changeMin(e: Event): void;
109
+ changeMax(e: Event): void;
110
+ setChartData(chart_data: {
111
+ key: number;
112
+ count: number;
113
+ }[]): void;
114
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update" | "update:model-value")[], "update" | "update:model-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
115
+ numberRange: {
116
+ type: PropType<AnyObject[]>;
117
+ default: () => {
118
+ key: number;
119
+ count: number;
120
+ }[];
121
+ };
122
+ width: {
123
+ type: NumberConstructor;
124
+ default: number;
125
+ };
126
+ height: {
127
+ type: NumberConstructor;
128
+ default: number;
129
+ };
130
+ chartId: {
131
+ type: StringConstructor;
132
+ default: string;
133
+ };
134
+ datasetIdKey: {
135
+ type: StringConstructor;
136
+ default: string;
137
+ };
138
+ includeForm: {
139
+ type: BooleanConstructor;
140
+ default: boolean;
141
+ };
142
+ isMatch: {
143
+ type: BooleanConstructor;
144
+ default: boolean;
145
+ };
146
+ isExclude: {
147
+ type: BooleanConstructor;
148
+ default: boolean;
149
+ };
150
+ isDisable: {
151
+ type: BooleanConstructor;
152
+ default: boolean;
153
+ };
154
+ modelValue: {
155
+ type: ObjectConstructor;
156
+ required: false;
157
+ default: null;
158
+ };
159
+ }>> & {
160
+ onUpdate?: ((...args: any[]) => any) | undefined;
161
+ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
162
+ }, {
163
+ height: number;
164
+ width: number;
165
+ datasetIdKey: string;
166
+ chartId: string;
167
+ numberRange: AnyObject[];
168
+ includeForm: boolean;
169
+ isMatch: boolean;
170
+ isExclude: boolean;
171
+ isDisable: boolean;
172
+ modelValue: Record<string, any>;
173
+ }, {}>;
174
+ export default _default;
@@ -0,0 +1,62 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ modelValue: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ placeholder: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ tipChars: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ tipNumbers: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ tipSymbols: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ passwordTooltipDisabled: {
23
+ type: BooleanConstructor;
24
+ default: boolean;
25
+ };
26
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "submit")[], "update:modelValue" | "submit", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
27
+ modelValue: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ };
31
+ placeholder: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
35
+ tipChars: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ tipNumbers: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ };
43
+ tipSymbols: {
44
+ type: StringConstructor;
45
+ default: string;
46
+ };
47
+ passwordTooltipDisabled: {
48
+ type: BooleanConstructor;
49
+ default: boolean;
50
+ };
51
+ }>> & {
52
+ onSubmit?: ((...args: any[]) => any) | undefined;
53
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
54
+ }, {
55
+ placeholder: string;
56
+ modelValue: string;
57
+ tipChars: string;
58
+ tipNumbers: string;
59
+ tipSymbols: string;
60
+ passwordTooltipDisabled: boolean;
61
+ }, {}>;
62
+ export default _default;
@@ -0,0 +1,9 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ $props: {
3
+ readonly type?: string | undefined;
4
+ readonly label?: string | undefined;
5
+ readonly value?: string | undefined;
6
+ };
7
+ $emit: (event: "clickBox", ...args: any[]) => void;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
+ export default _default;
@@ -0,0 +1,8 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ $props: {
3
+ readonly type?: string | undefined;
4
+ readonly list?: unknown[] | undefined;
5
+ readonly orientation?: string | undefined;
6
+ };
7
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ export default _default;
@@ -0,0 +1,36 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ modelValue: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ placeholder: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ focus: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "submit" | "clean")[], "update:modelValue" | "submit" | "clean", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
15
+ modelValue: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ placeholder: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ focus: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ }>> & {
28
+ onSubmit?: ((...args: any[]) => any) | undefined;
29
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
30
+ onClean?: ((...args: any[]) => any) | undefined;
31
+ }, {
32
+ placeholder: string;
33
+ modelValue: string;
34
+ focus: boolean;
35
+ }, {}>;
36
+ export default _default;
@@ -0,0 +1,23 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ maxSteps: {
3
+ type: NumberConstructor;
4
+ default: number;
5
+ };
6
+ currentStep: {
7
+ type: NumberConstructor;
8
+ default: number;
9
+ };
10
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
11
+ maxSteps: {
12
+ type: NumberConstructor;
13
+ default: number;
14
+ };
15
+ currentStep: {
16
+ type: NumberConstructor;
17
+ default: number;
18
+ };
19
+ }>>, {
20
+ maxSteps: number;
21
+ currentStep: number;
22
+ }, {}>;
23
+ export default _default;
@@ -0,0 +1,33 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ data: {
3
+ type: BooleanConstructor;
4
+ required: true;
5
+ default: boolean;
6
+ };
7
+ label: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ }, unknown, {
12
+ active: boolean;
13
+ }, {
14
+ checkedValue: {
15
+ get(): boolean;
16
+ set(newValue: boolean): void;
17
+ };
18
+ }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
19
+ data: {
20
+ type: BooleanConstructor;
21
+ required: true;
22
+ default: boolean;
23
+ };
24
+ label: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ }>> & {
29
+ onChange?: ((...args: any[]) => any) | undefined;
30
+ }, {
31
+ label: string;
32
+ }, {}>;
33
+ export default _default;