@choosemycompany/ui 0.14.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.
- package/dist/assets/index.css +1 -1
- package/dist/index.d.ts +144 -105
- package/dist/index.js +1795 -1430
- package/dist/index.umd.js +287 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8,57 +8,72 @@ import { PublicProps } from 'vue';
|
|
|
8
8
|
import { Row } from './CmcTable.d.ts';
|
|
9
9
|
import { Row as Row_2 } from '../../Molecules/CmcTable/CmcTable';
|
|
10
10
|
|
|
11
|
-
declare const __VLS_component: DefineComponent<
|
|
11
|
+
declare const __VLS_component: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
12
12
|
click: () => any;
|
|
13
|
-
}, string, PublicProps, Readonly<
|
|
13
|
+
}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{
|
|
14
14
|
onClick?: (() => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
|
-
|
|
17
|
-
kind: ButtonKind;
|
|
16
|
+
disabled: boolean;
|
|
18
17
|
variant: ButtonVariant;
|
|
19
18
|
size: ButtonSize;
|
|
20
|
-
|
|
19
|
+
loading: boolean;
|
|
20
|
+
kind: ButtonKind;
|
|
21
21
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
22
22
|
|
|
23
|
-
declare const __VLS_component_2: DefineComponent<
|
|
23
|
+
declare const __VLS_component_2: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
|
|
24
|
+
gap: ButtonGroupGap;
|
|
25
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
24
26
|
|
|
25
|
-
declare const __VLS_component_3: DefineComponent<
|
|
27
|
+
declare const __VLS_component_3: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
26
28
|
|
|
27
|
-
declare const __VLS_component_4: DefineComponent<
|
|
29
|
+
declare const __VLS_component_4: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
28
30
|
"update:modelValue": (...args: any[]) => void;
|
|
29
|
-
}, string, PublicProps, Readonly<
|
|
31
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
|
|
30
32
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
31
33
|
}>, {
|
|
32
|
-
type: inputType;
|
|
33
34
|
required: boolean;
|
|
35
|
+
disabled: boolean;
|
|
36
|
+
type: inputType;
|
|
34
37
|
variant: inputVariant;
|
|
35
38
|
size: inputSize;
|
|
36
|
-
disabled: boolean;
|
|
37
39
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
38
40
|
|
|
39
|
-
declare const __VLS_component_5: DefineComponent<
|
|
40
|
-
gap: ButtonGroupGap;
|
|
41
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
41
|
+
declare const __VLS_component_5: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
42
42
|
|
|
43
43
|
declare type __VLS_Props = {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
size?: ButtonSize;
|
|
47
|
-
icon?: IconName;
|
|
48
|
-
disabled?: boolean;
|
|
44
|
+
items: string[];
|
|
45
|
+
label?: string;
|
|
49
46
|
loading?: boolean;
|
|
47
|
+
placeholder?: string;
|
|
48
|
+
emptyValue?: string;
|
|
50
49
|
};
|
|
51
50
|
|
|
52
51
|
declare type __VLS_Props_10 = {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
visibleRange?: number;
|
|
52
|
+
size?: inputSize;
|
|
53
|
+
variant?: inputVariant;
|
|
54
|
+
placeholder?: string;
|
|
57
55
|
};
|
|
58
56
|
|
|
59
|
-
declare type __VLS_Props_11 =
|
|
57
|
+
declare type __VLS_Props_11 = {
|
|
58
|
+
id: string;
|
|
59
|
+
options: SelectOption[];
|
|
60
|
+
label?: string;
|
|
61
|
+
placeholder?: string;
|
|
62
|
+
required?: boolean;
|
|
63
|
+
disabled?: boolean;
|
|
64
|
+
errorMessage?: string;
|
|
65
|
+
variant?: SelectVariant;
|
|
66
|
+
description?: string;
|
|
67
|
+
};
|
|
60
68
|
|
|
61
69
|
declare type __VLS_Props_12 = {
|
|
70
|
+
text: string;
|
|
71
|
+
status?: Status;
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
declare type __VLS_Props_13 = Props;
|
|
75
|
+
|
|
76
|
+
declare type __VLS_Props_14 = {
|
|
62
77
|
itemsPerPage: number;
|
|
63
78
|
currentPage: number;
|
|
64
79
|
rows?: Row_2[];
|
|
@@ -67,55 +82,48 @@ declare type __VLS_Props_12 = {
|
|
|
67
82
|
emptyText?: string;
|
|
68
83
|
};
|
|
69
84
|
|
|
70
|
-
declare type
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
size?:
|
|
85
|
+
declare type __VLS_Props_15 = {
|
|
86
|
+
id?: string;
|
|
87
|
+
disabled?: boolean;
|
|
88
|
+
required?: boolean;
|
|
89
|
+
size?: ToggleSize;
|
|
75
90
|
};
|
|
76
91
|
|
|
77
|
-
declare type
|
|
92
|
+
declare type __VLS_Props_16 = {
|
|
78
93
|
steps: Step[];
|
|
79
94
|
current: number;
|
|
80
95
|
clickable?: boolean;
|
|
81
96
|
};
|
|
82
97
|
|
|
83
|
-
declare type
|
|
84
|
-
|
|
85
|
-
|
|
98
|
+
declare type __VLS_Props_2 = {
|
|
99
|
+
kind?: ButtonKind;
|
|
100
|
+
variant?: ButtonVariant;
|
|
101
|
+
size?: ButtonSize;
|
|
102
|
+
icon?: IconName;
|
|
103
|
+
disabled?: boolean;
|
|
86
104
|
loading?: boolean;
|
|
87
|
-
placeholder?: string;
|
|
88
|
-
emptyValue?: string;
|
|
89
105
|
};
|
|
90
106
|
|
|
91
|
-
declare type
|
|
107
|
+
declare type __VLS_Props_3 = {
|
|
108
|
+
gap: ButtonGroupGap;
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
declare type __VLS_Props_4 = {
|
|
92
112
|
id?: string;
|
|
93
113
|
disabled?: boolean;
|
|
94
114
|
required?: boolean;
|
|
95
|
-
size?: ToggleSize;
|
|
96
115
|
};
|
|
97
116
|
|
|
98
|
-
declare type
|
|
117
|
+
declare type __VLS_Props_5 = {
|
|
99
118
|
level: HeadingLevels;
|
|
100
119
|
};
|
|
101
120
|
|
|
102
|
-
declare type
|
|
103
|
-
text: string;
|
|
104
|
-
status?: Status;
|
|
105
|
-
};
|
|
106
|
-
|
|
107
|
-
declare type __VLS_Props_4 = {
|
|
121
|
+
declare type __VLS_Props_6 = {
|
|
108
122
|
name: IconName;
|
|
109
123
|
color?: IconColor;
|
|
110
124
|
};
|
|
111
125
|
|
|
112
|
-
declare type
|
|
113
|
-
size?: inputSize;
|
|
114
|
-
variant?: inputVariant;
|
|
115
|
-
placeholder?: string;
|
|
116
|
-
};
|
|
117
|
-
|
|
118
|
-
declare type __VLS_Props_6 = {
|
|
126
|
+
declare type __VLS_Props_7 = {
|
|
119
127
|
id: string;
|
|
120
128
|
label?: string;
|
|
121
129
|
placeholder?: string;
|
|
@@ -130,51 +138,43 @@ declare type __VLS_Props_6 = {
|
|
|
130
138
|
max?: number;
|
|
131
139
|
};
|
|
132
140
|
|
|
133
|
-
declare type __VLS_Props_7 = {
|
|
134
|
-
id: string;
|
|
135
|
-
options: SelectOption[];
|
|
136
|
-
label?: string;
|
|
137
|
-
placeholder?: string;
|
|
138
|
-
required?: boolean;
|
|
139
|
-
disabled?: boolean;
|
|
140
|
-
errorMessage?: string;
|
|
141
|
-
variant?: SelectVariant;
|
|
142
|
-
description?: string;
|
|
143
|
-
};
|
|
144
|
-
|
|
145
141
|
declare type __VLS_Props_8 = {
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
142
|
+
href?: string;
|
|
143
|
+
variant?: LogoVariant;
|
|
144
|
+
language?: LogoLanguage;
|
|
145
|
+
size?: LogoSize;
|
|
149
146
|
};
|
|
150
147
|
|
|
151
148
|
declare type __VLS_Props_9 = {
|
|
152
|
-
|
|
149
|
+
currentPage: number;
|
|
150
|
+
totalItems: number;
|
|
151
|
+
itemsPerPage: number;
|
|
152
|
+
visibleRange?: number;
|
|
153
153
|
};
|
|
154
154
|
|
|
155
155
|
declare type __VLS_PublicProps = {
|
|
156
156
|
modelValue?: string;
|
|
157
|
-
} &
|
|
157
|
+
} & __VLS_Props;
|
|
158
158
|
|
|
159
159
|
declare type __VLS_PublicProps_2 = {
|
|
160
|
-
modelValue?:
|
|
161
|
-
} &
|
|
160
|
+
modelValue?: boolean;
|
|
161
|
+
} & __VLS_Props_4;
|
|
162
162
|
|
|
163
163
|
declare type __VLS_PublicProps_3 = {
|
|
164
164
|
modelValue?: string | number;
|
|
165
165
|
} & __VLS_Props_7;
|
|
166
166
|
|
|
167
167
|
declare type __VLS_PublicProps_4 = {
|
|
168
|
-
modelValue?:
|
|
169
|
-
} &
|
|
168
|
+
modelValue?: string;
|
|
169
|
+
} & __VLS_Props_10;
|
|
170
170
|
|
|
171
171
|
declare type __VLS_PublicProps_5 = {
|
|
172
|
-
modelValue?: string;
|
|
173
|
-
} &
|
|
172
|
+
modelValue?: string | number;
|
|
173
|
+
} & __VLS_Props_11;
|
|
174
174
|
|
|
175
175
|
declare type __VLS_PublicProps_6 = {
|
|
176
176
|
modelValue?: boolean;
|
|
177
|
-
} &
|
|
177
|
+
} & __VLS_Props_15;
|
|
178
178
|
|
|
179
179
|
declare function __VLS_template(): {
|
|
180
180
|
attrs: Partial<{}>;
|
|
@@ -189,17 +189,17 @@ declare function __VLS_template_2(): {
|
|
|
189
189
|
attrs: Partial<{}>;
|
|
190
190
|
slots: {
|
|
191
191
|
default?(_: {}): any;
|
|
192
|
-
default?(_: {}): any;
|
|
193
|
-
default?(_: {}): any;
|
|
194
192
|
};
|
|
195
193
|
refs: {};
|
|
196
|
-
rootEl:
|
|
194
|
+
rootEl: HTMLDivElement;
|
|
197
195
|
};
|
|
198
196
|
|
|
199
197
|
declare function __VLS_template_3(): {
|
|
200
198
|
attrs: Partial<{}>;
|
|
201
199
|
slots: {
|
|
202
200
|
default?(_: {}): any;
|
|
201
|
+
default?(_: {}): any;
|
|
202
|
+
default?(_: {}): any;
|
|
203
203
|
};
|
|
204
204
|
refs: {};
|
|
205
205
|
rootEl: any;
|
|
@@ -221,7 +221,7 @@ declare function __VLS_template_5(): {
|
|
|
221
221
|
default?(_: {}): any;
|
|
222
222
|
};
|
|
223
223
|
refs: {};
|
|
224
|
-
rootEl:
|
|
224
|
+
rootEl: any;
|
|
225
225
|
};
|
|
226
226
|
|
|
227
227
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
@@ -291,14 +291,23 @@ export declare const buttonVariantOptions: {
|
|
|
291
291
|
readonly danger: "danger";
|
|
292
292
|
};
|
|
293
293
|
|
|
294
|
-
|
|
294
|
+
declare interface CertificateProps {
|
|
295
|
+
primaryType: PrimaryType;
|
|
296
|
+
rank?: Rank;
|
|
297
|
+
period: number;
|
|
298
|
+
country: string;
|
|
299
|
+
width: number;
|
|
300
|
+
height: number;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
export declare const CmcAutocomplete: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
295
304
|
"update:modelValue": (...args: any[]) => void;
|
|
296
|
-
}, string, PublicProps, Readonly<
|
|
305
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
297
306
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
298
307
|
}>, {
|
|
299
|
-
loading: boolean;
|
|
300
|
-
placeholder: string;
|
|
301
308
|
label: string;
|
|
309
|
+
placeholder: string;
|
|
310
|
+
loading: boolean;
|
|
302
311
|
emptyValue: string;
|
|
303
312
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
304
313
|
autocompleteRef: HTMLDivElement;
|
|
@@ -306,20 +315,29 @@ export declare const CmcAutocomplete: DefineComponent<__VLS_PublicProps_5, {}, {
|
|
|
306
315
|
|
|
307
316
|
export declare const CmcButton: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
308
317
|
|
|
309
|
-
export declare const CmcButtonGroup:
|
|
318
|
+
export declare const CmcButtonGroup: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
310
319
|
|
|
311
|
-
export declare const
|
|
320
|
+
export declare const CmcCertificate: DefineComponent<CertificateProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CertificateProps> & Readonly<{}>, {
|
|
321
|
+
width: number;
|
|
322
|
+
height: number;
|
|
323
|
+
primaryType: PrimaryType;
|
|
324
|
+
rank: Rank;
|
|
325
|
+
period: number;
|
|
326
|
+
country: string;
|
|
327
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
328
|
+
|
|
329
|
+
export declare const CmcCheckbox: DefineComponent<__VLS_PublicProps_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
312
330
|
"update:modelValue": (value: boolean) => any;
|
|
313
|
-
}, string, PublicProps, Readonly<
|
|
331
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
314
332
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
315
333
|
}>, {
|
|
316
334
|
required: boolean;
|
|
317
335
|
disabled: boolean;
|
|
318
336
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
319
337
|
|
|
320
|
-
export declare const CmcHeading:
|
|
338
|
+
export declare const CmcHeading: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
321
339
|
|
|
322
|
-
export declare const CmcIcon: DefineComponent<
|
|
340
|
+
export declare const CmcIcon: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {
|
|
323
341
|
name: IconName;
|
|
324
342
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
325
343
|
|
|
@@ -327,9 +345,9 @@ export declare const CmcInput: __VLS_WithTemplateSlots_4<typeof __VLS_component_
|
|
|
327
345
|
|
|
328
346
|
export declare const CmcLoading: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLImageElement>;
|
|
329
347
|
|
|
330
|
-
export declare const CmcLogo: DefineComponent<
|
|
348
|
+
export declare const CmcLogo: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
331
349
|
click: () => any;
|
|
332
|
-
}, string, PublicProps, Readonly<
|
|
350
|
+
}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{
|
|
333
351
|
onClick?: (() => any) | undefined;
|
|
334
352
|
}>, {
|
|
335
353
|
variant: LogoVariant;
|
|
@@ -337,44 +355,44 @@ export declare const CmcLogo: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, Co
|
|
|
337
355
|
language: LogoLanguage;
|
|
338
356
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLAnchorElement>;
|
|
339
357
|
|
|
340
|
-
export declare const CmcPagination: DefineComponent<
|
|
358
|
+
export declare const CmcPagination: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
341
359
|
"update:currentPage": (page: number) => any;
|
|
342
|
-
}, string, PublicProps, Readonly<
|
|
360
|
+
}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{
|
|
343
361
|
"onUpdate:currentPage"?: ((page: number) => any) | undefined;
|
|
344
362
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
345
363
|
|
|
346
|
-
export declare const CmcSearch: DefineComponent<
|
|
364
|
+
export declare const CmcSearch: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
347
365
|
"update:modelValue": (value: string) => any;
|
|
348
|
-
}, string, PublicProps, Readonly<
|
|
366
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
349
367
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
350
368
|
}>, {
|
|
351
369
|
placeholder: string;
|
|
352
370
|
size: inputSize;
|
|
353
371
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
354
372
|
|
|
355
|
-
export declare const CmcSelect: DefineComponent<
|
|
373
|
+
export declare const CmcSelect: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
356
374
|
"update:modelValue": (value: string | number) => any;
|
|
357
|
-
}, string, PublicProps, Readonly<
|
|
375
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
358
376
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
359
377
|
}>, {
|
|
360
378
|
required: boolean;
|
|
361
|
-
variant: SelectVariant;
|
|
362
379
|
disabled: boolean;
|
|
380
|
+
variant: SelectVariant;
|
|
363
381
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
364
382
|
|
|
365
|
-
export declare const CmcStatus: DefineComponent<
|
|
383
|
+
export declare const CmcStatus: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {
|
|
366
384
|
status: Status;
|
|
367
385
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
368
386
|
|
|
369
|
-
export declare const CmcTable: DefineComponent<
|
|
387
|
+
export declare const CmcTable: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
|
|
370
388
|
rows: Row[];
|
|
371
389
|
emptyText: string;
|
|
372
390
|
columns: ColumnDefinition_2[];
|
|
373
391
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableElement>;
|
|
374
392
|
|
|
375
|
-
export declare const CmcTablePagination: DefineComponent<
|
|
393
|
+
export declare const CmcTablePagination: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
376
394
|
"update:currentPage": (page: number) => any;
|
|
377
|
-
}, string, PublicProps, Readonly<
|
|
395
|
+
}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{
|
|
378
396
|
"onUpdate:currentPage"?: ((page: number) => any) | undefined;
|
|
379
397
|
}>, {
|
|
380
398
|
currentPage: number;
|
|
@@ -383,7 +401,7 @@ export declare const CmcTablePagination: DefineComponent<__VLS_Props_12, {}, {},
|
|
|
383
401
|
columns: ColumnDefinition_3[];
|
|
384
402
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
385
403
|
|
|
386
|
-
export declare const CmcTitle:
|
|
404
|
+
export declare const CmcTitle: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
387
405
|
|
|
388
406
|
export declare const CmcToggle: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
389
407
|
"update:modelValue": (value: boolean) => any;
|
|
@@ -391,13 +409,13 @@ export declare const CmcToggle: DefineComponent<__VLS_PublicProps_6, {}, {}, {},
|
|
|
391
409
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
392
410
|
}>, {
|
|
393
411
|
required: boolean;
|
|
394
|
-
size: ToggleSize;
|
|
395
412
|
disabled: boolean;
|
|
413
|
+
size: ToggleSize;
|
|
396
414
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
397
415
|
|
|
398
|
-
export declare const CmcWizard: DefineComponent<
|
|
416
|
+
export declare const CmcWizard: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
399
417
|
"update:current": (value: number) => any;
|
|
400
|
-
}, string, PublicProps, Readonly<
|
|
418
|
+
}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
|
|
401
419
|
"onUpdate:current"?: ((value: number) => any) | undefined;
|
|
402
420
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
403
421
|
|
|
@@ -464,12 +482,33 @@ declare const logoVariantOptions: {
|
|
|
464
482
|
readonly white: "white";
|
|
465
483
|
};
|
|
466
484
|
|
|
485
|
+
declare type PrimaryType = keyof typeof primaryTypeOptions;
|
|
486
|
+
|
|
487
|
+
export declare const primaryTypeOptions: {
|
|
488
|
+
readonly employees: "employees";
|
|
489
|
+
readonly trainees: "trainees";
|
|
490
|
+
readonly candidates: "candidates";
|
|
491
|
+
readonly clients: "clients";
|
|
492
|
+
readonly shareholders: "shareholders";
|
|
493
|
+
readonly suppliers: "suppliers";
|
|
494
|
+
readonly students: "students";
|
|
495
|
+
};
|
|
496
|
+
|
|
467
497
|
declare type Props<TRow extends Row = Row> = {
|
|
468
498
|
rows?: TRow[];
|
|
469
499
|
columns?: ColumnDefinition_2[];
|
|
470
500
|
emptyText?: string;
|
|
471
501
|
};
|
|
472
502
|
|
|
503
|
+
declare type Rank = keyof typeof rankOptions;
|
|
504
|
+
|
|
505
|
+
export declare const rankOptions: {
|
|
506
|
+
readonly bronze: "bronze";
|
|
507
|
+
readonly silver: "silver";
|
|
508
|
+
readonly gold: "gold";
|
|
509
|
+
readonly platinum: "platinum";
|
|
510
|
+
};
|
|
511
|
+
|
|
473
512
|
export declare interface SelectOption {
|
|
474
513
|
value: string | number;
|
|
475
514
|
label: string;
|