@choosemycompany/ui 0.14.0 → 0.14.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.
- package/dist/assets/index.css +1 -1
- package/dist/index.d.ts +140 -105
- package/dist/index.js +1790 -1429
- package/dist/index.umd.js +285 -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,21 @@ 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
|
+
}
|
|
300
|
+
|
|
301
|
+
export declare const CmcAutocomplete: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
295
302
|
"update:modelValue": (...args: any[]) => void;
|
|
296
|
-
}, string, PublicProps, Readonly<
|
|
303
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
297
304
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
298
305
|
}>, {
|
|
299
|
-
loading: boolean;
|
|
300
|
-
placeholder: string;
|
|
301
306
|
label: string;
|
|
307
|
+
placeholder: string;
|
|
308
|
+
loading: boolean;
|
|
302
309
|
emptyValue: string;
|
|
303
310
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
304
311
|
autocompleteRef: HTMLDivElement;
|
|
@@ -306,20 +313,27 @@ export declare const CmcAutocomplete: DefineComponent<__VLS_PublicProps_5, {}, {
|
|
|
306
313
|
|
|
307
314
|
export declare const CmcButton: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
308
315
|
|
|
309
|
-
export declare const CmcButtonGroup:
|
|
316
|
+
export declare const CmcButtonGroup: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
310
317
|
|
|
311
|
-
export declare const
|
|
318
|
+
export declare const CmcCertificate: DefineComponent<CertificateProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CertificateProps> & Readonly<{}>, {
|
|
319
|
+
primaryType: PrimaryType;
|
|
320
|
+
rank: Rank;
|
|
321
|
+
period: number;
|
|
322
|
+
country: string;
|
|
323
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
324
|
+
|
|
325
|
+
export declare const CmcCheckbox: DefineComponent<__VLS_PublicProps_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
312
326
|
"update:modelValue": (value: boolean) => any;
|
|
313
|
-
}, string, PublicProps, Readonly<
|
|
327
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
314
328
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
315
329
|
}>, {
|
|
316
330
|
required: boolean;
|
|
317
331
|
disabled: boolean;
|
|
318
332
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
319
333
|
|
|
320
|
-
export declare const CmcHeading:
|
|
334
|
+
export declare const CmcHeading: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
321
335
|
|
|
322
|
-
export declare const CmcIcon: DefineComponent<
|
|
336
|
+
export declare const CmcIcon: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {
|
|
323
337
|
name: IconName;
|
|
324
338
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
325
339
|
|
|
@@ -327,9 +341,9 @@ export declare const CmcInput: __VLS_WithTemplateSlots_4<typeof __VLS_component_
|
|
|
327
341
|
|
|
328
342
|
export declare const CmcLoading: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLImageElement>;
|
|
329
343
|
|
|
330
|
-
export declare const CmcLogo: DefineComponent<
|
|
344
|
+
export declare const CmcLogo: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
331
345
|
click: () => any;
|
|
332
|
-
}, string, PublicProps, Readonly<
|
|
346
|
+
}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{
|
|
333
347
|
onClick?: (() => any) | undefined;
|
|
334
348
|
}>, {
|
|
335
349
|
variant: LogoVariant;
|
|
@@ -337,44 +351,44 @@ export declare const CmcLogo: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, Co
|
|
|
337
351
|
language: LogoLanguage;
|
|
338
352
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLAnchorElement>;
|
|
339
353
|
|
|
340
|
-
export declare const CmcPagination: DefineComponent<
|
|
354
|
+
export declare const CmcPagination: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
341
355
|
"update:currentPage": (page: number) => any;
|
|
342
|
-
}, string, PublicProps, Readonly<
|
|
356
|
+
}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{
|
|
343
357
|
"onUpdate:currentPage"?: ((page: number) => any) | undefined;
|
|
344
358
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
345
359
|
|
|
346
|
-
export declare const CmcSearch: DefineComponent<
|
|
360
|
+
export declare const CmcSearch: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
347
361
|
"update:modelValue": (value: string) => any;
|
|
348
|
-
}, string, PublicProps, Readonly<
|
|
362
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
349
363
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
350
364
|
}>, {
|
|
351
365
|
placeholder: string;
|
|
352
366
|
size: inputSize;
|
|
353
367
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
354
368
|
|
|
355
|
-
export declare const CmcSelect: DefineComponent<
|
|
369
|
+
export declare const CmcSelect: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
356
370
|
"update:modelValue": (value: string | number) => any;
|
|
357
|
-
}, string, PublicProps, Readonly<
|
|
371
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
358
372
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
359
373
|
}>, {
|
|
360
374
|
required: boolean;
|
|
361
|
-
variant: SelectVariant;
|
|
362
375
|
disabled: boolean;
|
|
376
|
+
variant: SelectVariant;
|
|
363
377
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
364
378
|
|
|
365
|
-
export declare const CmcStatus: DefineComponent<
|
|
379
|
+
export declare const CmcStatus: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {
|
|
366
380
|
status: Status;
|
|
367
381
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
368
382
|
|
|
369
|
-
export declare const CmcTable: DefineComponent<
|
|
383
|
+
export declare const CmcTable: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
|
|
370
384
|
rows: Row[];
|
|
371
385
|
emptyText: string;
|
|
372
386
|
columns: ColumnDefinition_2[];
|
|
373
387
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableElement>;
|
|
374
388
|
|
|
375
|
-
export declare const CmcTablePagination: DefineComponent<
|
|
389
|
+
export declare const CmcTablePagination: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
376
390
|
"update:currentPage": (page: number) => any;
|
|
377
|
-
}, string, PublicProps, Readonly<
|
|
391
|
+
}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{
|
|
378
392
|
"onUpdate:currentPage"?: ((page: number) => any) | undefined;
|
|
379
393
|
}>, {
|
|
380
394
|
currentPage: number;
|
|
@@ -383,7 +397,7 @@ export declare const CmcTablePagination: DefineComponent<__VLS_Props_12, {}, {},
|
|
|
383
397
|
columns: ColumnDefinition_3[];
|
|
384
398
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
385
399
|
|
|
386
|
-
export declare const CmcTitle:
|
|
400
|
+
export declare const CmcTitle: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
387
401
|
|
|
388
402
|
export declare const CmcToggle: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
389
403
|
"update:modelValue": (value: boolean) => any;
|
|
@@ -391,13 +405,13 @@ export declare const CmcToggle: DefineComponent<__VLS_PublicProps_6, {}, {}, {},
|
|
|
391
405
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
392
406
|
}>, {
|
|
393
407
|
required: boolean;
|
|
394
|
-
size: ToggleSize;
|
|
395
408
|
disabled: boolean;
|
|
409
|
+
size: ToggleSize;
|
|
396
410
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
397
411
|
|
|
398
|
-
export declare const CmcWizard: DefineComponent<
|
|
412
|
+
export declare const CmcWizard: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
399
413
|
"update:current": (value: number) => any;
|
|
400
|
-
}, string, PublicProps, Readonly<
|
|
414
|
+
}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
|
|
401
415
|
"onUpdate:current"?: ((value: number) => any) | undefined;
|
|
402
416
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
403
417
|
|
|
@@ -464,12 +478,33 @@ declare const logoVariantOptions: {
|
|
|
464
478
|
readonly white: "white";
|
|
465
479
|
};
|
|
466
480
|
|
|
481
|
+
declare type PrimaryType = keyof typeof primaryTypeOptions;
|
|
482
|
+
|
|
483
|
+
export declare const primaryTypeOptions: {
|
|
484
|
+
readonly employees: "employees";
|
|
485
|
+
readonly trainees: "trainees";
|
|
486
|
+
readonly candidates: "candidates";
|
|
487
|
+
readonly clients: "clients";
|
|
488
|
+
readonly shareholders: "shareholders";
|
|
489
|
+
readonly suppliers: "suppliers";
|
|
490
|
+
readonly students: "students";
|
|
491
|
+
};
|
|
492
|
+
|
|
467
493
|
declare type Props<TRow extends Row = Row> = {
|
|
468
494
|
rows?: TRow[];
|
|
469
495
|
columns?: ColumnDefinition_2[];
|
|
470
496
|
emptyText?: string;
|
|
471
497
|
};
|
|
472
498
|
|
|
499
|
+
declare type Rank = keyof typeof rankOptions;
|
|
500
|
+
|
|
501
|
+
export declare const rankOptions: {
|
|
502
|
+
readonly bronze: "bronze";
|
|
503
|
+
readonly silver: "silver";
|
|
504
|
+
readonly gold: "gold";
|
|
505
|
+
readonly platinum: "platinum";
|
|
506
|
+
};
|
|
507
|
+
|
|
473
508
|
export declare interface SelectOption {
|
|
474
509
|
value: string | number;
|
|
475
510
|
label: string;
|