@choosemycompany/ui 0.22.0 → 0.23.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.
- package/dist/assets/index.css +1 -1
- package/dist/index.d.ts +30 -22
- package/dist/index.js +363 -319
- package/dist/index.umd.js +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -50,13 +50,13 @@ declare const __VLS_component_4: DefineComponent<__VLS_PublicProps_3, {}, {}, {}
|
|
|
50
50
|
|
|
51
51
|
declare const __VLS_component_5: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
52
52
|
|
|
53
|
-
declare const __VLS_component_6: DefineComponent<
|
|
53
|
+
declare const __VLS_component_6: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
54
54
|
submit: () => any;
|
|
55
|
-
}, string, PublicProps, Readonly<
|
|
55
|
+
}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{
|
|
56
56
|
onSubmit?: (() => any) | undefined;
|
|
57
57
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
58
58
|
|
|
59
|
-
declare const __VLS_component_7: DefineComponent<
|
|
59
|
+
declare const __VLS_component_7: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
60
60
|
|
|
61
61
|
declare type __VLS_Props = {
|
|
62
62
|
title: string;
|
|
@@ -66,6 +66,13 @@ declare type __VLS_Props = {
|
|
|
66
66
|
};
|
|
67
67
|
|
|
68
68
|
declare type __VLS_Props_10 = {
|
|
69
|
+
size?: InputSize;
|
|
70
|
+
variant?: InputVariant;
|
|
71
|
+
label?: string;
|
|
72
|
+
placeholder?: string;
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
declare type __VLS_Props_11 = {
|
|
69
76
|
id: string;
|
|
70
77
|
options: SelectOption[];
|
|
71
78
|
label?: string;
|
|
@@ -78,14 +85,14 @@ declare type __VLS_Props_10 = {
|
|
|
78
85
|
width?: number;
|
|
79
86
|
};
|
|
80
87
|
|
|
81
|
-
declare type
|
|
88
|
+
declare type __VLS_Props_12 = {
|
|
82
89
|
text: string;
|
|
83
90
|
status?: Status;
|
|
84
91
|
};
|
|
85
92
|
|
|
86
|
-
declare type
|
|
93
|
+
declare type __VLS_Props_13 = Props_5;
|
|
87
94
|
|
|
88
|
-
declare type
|
|
95
|
+
declare type __VLS_Props_14 = {
|
|
89
96
|
itemsPerPage: number;
|
|
90
97
|
currentPage: number;
|
|
91
98
|
rows?: Row_2[];
|
|
@@ -94,24 +101,24 @@ declare type __VLS_Props_13 = {
|
|
|
94
101
|
emptyText?: string;
|
|
95
102
|
};
|
|
96
103
|
|
|
97
|
-
declare type
|
|
104
|
+
declare type __VLS_Props_15 = {
|
|
98
105
|
id?: string;
|
|
99
106
|
disabled?: boolean;
|
|
100
107
|
required?: boolean;
|
|
101
108
|
size?: ToggleSize;
|
|
102
109
|
};
|
|
103
110
|
|
|
104
|
-
declare type
|
|
111
|
+
declare type __VLS_Props_16 = {
|
|
105
112
|
steps: Step[];
|
|
106
113
|
current: number;
|
|
107
114
|
clickable?: boolean;
|
|
108
115
|
};
|
|
109
116
|
|
|
110
|
-
declare type
|
|
117
|
+
declare type __VLS_Props_17 = {
|
|
111
118
|
errors: ErrorItem[];
|
|
112
119
|
};
|
|
113
120
|
|
|
114
|
-
declare type
|
|
121
|
+
declare type __VLS_Props_18 = {
|
|
115
122
|
errorMessage?: string;
|
|
116
123
|
};
|
|
117
124
|
|
|
@@ -172,10 +179,9 @@ declare type __VLS_Props_8 = {
|
|
|
172
179
|
};
|
|
173
180
|
|
|
174
181
|
declare type __VLS_Props_9 = {
|
|
175
|
-
|
|
176
|
-
variant?: InputVariant;
|
|
182
|
+
value: number;
|
|
177
183
|
label?: string;
|
|
178
|
-
|
|
184
|
+
loading?: boolean;
|
|
179
185
|
};
|
|
180
186
|
|
|
181
187
|
declare type __VLS_PublicProps = {
|
|
@@ -193,15 +199,15 @@ declare type __VLS_PublicProps_3 = {
|
|
|
193
199
|
|
|
194
200
|
declare type __VLS_PublicProps_4 = {
|
|
195
201
|
modelValue?: string;
|
|
196
|
-
} &
|
|
202
|
+
} & __VLS_Props_10;
|
|
197
203
|
|
|
198
204
|
declare type __VLS_PublicProps_5 = {
|
|
199
205
|
modelValue?: string | number;
|
|
200
|
-
} &
|
|
206
|
+
} & __VLS_Props_11;
|
|
201
207
|
|
|
202
208
|
declare type __VLS_PublicProps_6 = {
|
|
203
209
|
modelValue?: boolean;
|
|
204
|
-
} &
|
|
210
|
+
} & __VLS_Props_15;
|
|
205
211
|
|
|
206
212
|
declare function __VLS_template(): {
|
|
207
213
|
attrs: Partial<{}>;
|
|
@@ -472,6 +478,8 @@ export declare const CmcPagination: DefineComponent<__VLS_Props_8, {}, {}, {}, {
|
|
|
472
478
|
"onUpdate:currentPage"?: ((page: number) => any) | undefined;
|
|
473
479
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
474
480
|
|
|
481
|
+
export declare const CmcProgressBar: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
482
|
+
|
|
475
483
|
export declare const CmcSearch: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
476
484
|
"update:modelValue": (value: string) => any;
|
|
477
485
|
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
@@ -493,19 +501,19 @@ export declare const CmcSelect: DefineComponent<__VLS_PublicProps_5, {}, {}, {},
|
|
|
493
501
|
invalid: boolean;
|
|
494
502
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
495
503
|
|
|
496
|
-
export declare const CmcStatus: DefineComponent<
|
|
504
|
+
export declare const CmcStatus: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {
|
|
497
505
|
status: Status;
|
|
498
506
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
499
507
|
|
|
500
|
-
export declare const CmcTable: DefineComponent<
|
|
508
|
+
export declare const CmcTable: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
|
|
501
509
|
rows: Row[];
|
|
502
510
|
emptyText: string;
|
|
503
511
|
columns: ColumnDefinition_2[];
|
|
504
512
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableElement>;
|
|
505
513
|
|
|
506
|
-
export declare const CmcTablePagination: DefineComponent<
|
|
514
|
+
export declare const CmcTablePagination: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
507
515
|
"update:currentPage": (page: number) => any;
|
|
508
|
-
}, string, PublicProps, Readonly<
|
|
516
|
+
}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{
|
|
509
517
|
"onUpdate:currentPage"?: ((page: number) => any) | undefined;
|
|
510
518
|
}>, {
|
|
511
519
|
currentPage: number;
|
|
@@ -526,9 +534,9 @@ export declare const CmcToggle: DefineComponent<__VLS_PublicProps_6, {}, {}, {},
|
|
|
526
534
|
size: ToggleSize;
|
|
527
535
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
528
536
|
|
|
529
|
-
export declare const CmcWizard: DefineComponent<
|
|
537
|
+
export declare const CmcWizard: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
530
538
|
"update:current": (value: number) => any;
|
|
531
|
-
}, string, PublicProps, Readonly<
|
|
539
|
+
}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
|
|
532
540
|
"onUpdate:current"?: ((value: number) => any) | undefined;
|
|
533
541
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
534
542
|
|