@choosemycompany/ui 0.13.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 +142 -105
- package/dist/index.js +1821 -1453
- 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;
|
|
@@ -126,53 +134,47 @@ declare type __VLS_Props_6 = {
|
|
|
126
134
|
variant?: inputVariant;
|
|
127
135
|
size?: inputSize;
|
|
128
136
|
description?: string;
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
declare type __VLS_Props_7 = {
|
|
132
|
-
id: string;
|
|
133
|
-
options: SelectOption[];
|
|
134
|
-
label?: string;
|
|
135
|
-
placeholder?: string;
|
|
136
|
-
required?: boolean;
|
|
137
|
-
disabled?: boolean;
|
|
138
|
-
errorMessage?: string;
|
|
139
|
-
variant?: SelectVariant;
|
|
140
|
-
description?: string;
|
|
137
|
+
min?: number;
|
|
138
|
+
max?: number;
|
|
141
139
|
};
|
|
142
140
|
|
|
143
141
|
declare type __VLS_Props_8 = {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
142
|
+
href?: string;
|
|
143
|
+
variant?: LogoVariant;
|
|
144
|
+
language?: LogoLanguage;
|
|
145
|
+
size?: LogoSize;
|
|
147
146
|
};
|
|
148
147
|
|
|
149
148
|
declare type __VLS_Props_9 = {
|
|
150
|
-
|
|
149
|
+
currentPage: number;
|
|
150
|
+
totalItems: number;
|
|
151
|
+
itemsPerPage: number;
|
|
152
|
+
visibleRange?: number;
|
|
151
153
|
};
|
|
152
154
|
|
|
153
155
|
declare type __VLS_PublicProps = {
|
|
154
156
|
modelValue?: string;
|
|
155
|
-
} &
|
|
157
|
+
} & __VLS_Props;
|
|
156
158
|
|
|
157
159
|
declare type __VLS_PublicProps_2 = {
|
|
158
|
-
modelValue?:
|
|
159
|
-
} &
|
|
160
|
+
modelValue?: boolean;
|
|
161
|
+
} & __VLS_Props_4;
|
|
160
162
|
|
|
161
163
|
declare type __VLS_PublicProps_3 = {
|
|
162
164
|
modelValue?: string | number;
|
|
163
165
|
} & __VLS_Props_7;
|
|
164
166
|
|
|
165
167
|
declare type __VLS_PublicProps_4 = {
|
|
166
|
-
modelValue?:
|
|
167
|
-
} &
|
|
168
|
+
modelValue?: string;
|
|
169
|
+
} & __VLS_Props_10;
|
|
168
170
|
|
|
169
171
|
declare type __VLS_PublicProps_5 = {
|
|
170
|
-
modelValue?: string;
|
|
171
|
-
} &
|
|
172
|
+
modelValue?: string | number;
|
|
173
|
+
} & __VLS_Props_11;
|
|
172
174
|
|
|
173
175
|
declare type __VLS_PublicProps_6 = {
|
|
174
176
|
modelValue?: boolean;
|
|
175
|
-
} &
|
|
177
|
+
} & __VLS_Props_15;
|
|
176
178
|
|
|
177
179
|
declare function __VLS_template(): {
|
|
178
180
|
attrs: Partial<{}>;
|
|
@@ -187,17 +189,17 @@ declare function __VLS_template_2(): {
|
|
|
187
189
|
attrs: Partial<{}>;
|
|
188
190
|
slots: {
|
|
189
191
|
default?(_: {}): any;
|
|
190
|
-
default?(_: {}): any;
|
|
191
|
-
default?(_: {}): any;
|
|
192
192
|
};
|
|
193
193
|
refs: {};
|
|
194
|
-
rootEl:
|
|
194
|
+
rootEl: HTMLDivElement;
|
|
195
195
|
};
|
|
196
196
|
|
|
197
197
|
declare function __VLS_template_3(): {
|
|
198
198
|
attrs: Partial<{}>;
|
|
199
199
|
slots: {
|
|
200
200
|
default?(_: {}): any;
|
|
201
|
+
default?(_: {}): any;
|
|
202
|
+
default?(_: {}): any;
|
|
201
203
|
};
|
|
202
204
|
refs: {};
|
|
203
205
|
rootEl: any;
|
|
@@ -219,7 +221,7 @@ declare function __VLS_template_5(): {
|
|
|
219
221
|
default?(_: {}): any;
|
|
220
222
|
};
|
|
221
223
|
refs: {};
|
|
222
|
-
rootEl:
|
|
224
|
+
rootEl: any;
|
|
223
225
|
};
|
|
224
226
|
|
|
225
227
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
@@ -289,14 +291,21 @@ export declare const buttonVariantOptions: {
|
|
|
289
291
|
readonly danger: "danger";
|
|
290
292
|
};
|
|
291
293
|
|
|
292
|
-
|
|
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, {
|
|
293
302
|
"update:modelValue": (...args: any[]) => void;
|
|
294
|
-
}, string, PublicProps, Readonly<
|
|
303
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
295
304
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
296
305
|
}>, {
|
|
297
|
-
loading: boolean;
|
|
298
|
-
placeholder: string;
|
|
299
306
|
label: string;
|
|
307
|
+
placeholder: string;
|
|
308
|
+
loading: boolean;
|
|
300
309
|
emptyValue: string;
|
|
301
310
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
302
311
|
autocompleteRef: HTMLDivElement;
|
|
@@ -304,20 +313,27 @@ export declare const CmcAutocomplete: DefineComponent<__VLS_PublicProps_5, {}, {
|
|
|
304
313
|
|
|
305
314
|
export declare const CmcButton: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
306
315
|
|
|
307
|
-
export declare const CmcButtonGroup:
|
|
316
|
+
export declare const CmcButtonGroup: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
308
317
|
|
|
309
|
-
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, {
|
|
310
326
|
"update:modelValue": (value: boolean) => any;
|
|
311
|
-
}, string, PublicProps, Readonly<
|
|
327
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
312
328
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
313
329
|
}>, {
|
|
314
330
|
required: boolean;
|
|
315
331
|
disabled: boolean;
|
|
316
332
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
317
333
|
|
|
318
|
-
export declare const CmcHeading:
|
|
334
|
+
export declare const CmcHeading: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
319
335
|
|
|
320
|
-
export declare const CmcIcon: DefineComponent<
|
|
336
|
+
export declare const CmcIcon: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {
|
|
321
337
|
name: IconName;
|
|
322
338
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
323
339
|
|
|
@@ -325,9 +341,9 @@ export declare const CmcInput: __VLS_WithTemplateSlots_4<typeof __VLS_component_
|
|
|
325
341
|
|
|
326
342
|
export declare const CmcLoading: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLImageElement>;
|
|
327
343
|
|
|
328
|
-
export declare const CmcLogo: DefineComponent<
|
|
344
|
+
export declare const CmcLogo: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
329
345
|
click: () => any;
|
|
330
|
-
}, string, PublicProps, Readonly<
|
|
346
|
+
}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{
|
|
331
347
|
onClick?: (() => any) | undefined;
|
|
332
348
|
}>, {
|
|
333
349
|
variant: LogoVariant;
|
|
@@ -335,44 +351,44 @@ export declare const CmcLogo: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, Co
|
|
|
335
351
|
language: LogoLanguage;
|
|
336
352
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLAnchorElement>;
|
|
337
353
|
|
|
338
|
-
export declare const CmcPagination: DefineComponent<
|
|
354
|
+
export declare const CmcPagination: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
339
355
|
"update:currentPage": (page: number) => any;
|
|
340
|
-
}, string, PublicProps, Readonly<
|
|
356
|
+
}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{
|
|
341
357
|
"onUpdate:currentPage"?: ((page: number) => any) | undefined;
|
|
342
358
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
343
359
|
|
|
344
|
-
export declare const CmcSearch: DefineComponent<
|
|
360
|
+
export declare const CmcSearch: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
345
361
|
"update:modelValue": (value: string) => any;
|
|
346
|
-
}, string, PublicProps, Readonly<
|
|
362
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
347
363
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
348
364
|
}>, {
|
|
349
365
|
placeholder: string;
|
|
350
366
|
size: inputSize;
|
|
351
367
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
352
368
|
|
|
353
|
-
export declare const CmcSelect: DefineComponent<
|
|
369
|
+
export declare const CmcSelect: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
354
370
|
"update:modelValue": (value: string | number) => any;
|
|
355
|
-
}, string, PublicProps, Readonly<
|
|
371
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
356
372
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
357
373
|
}>, {
|
|
358
374
|
required: boolean;
|
|
359
|
-
variant: SelectVariant;
|
|
360
375
|
disabled: boolean;
|
|
376
|
+
variant: SelectVariant;
|
|
361
377
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
362
378
|
|
|
363
|
-
export declare const CmcStatus: DefineComponent<
|
|
379
|
+
export declare const CmcStatus: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {
|
|
364
380
|
status: Status;
|
|
365
381
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
366
382
|
|
|
367
|
-
export declare const CmcTable: DefineComponent<
|
|
383
|
+
export declare const CmcTable: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
|
|
368
384
|
rows: Row[];
|
|
369
385
|
emptyText: string;
|
|
370
386
|
columns: ColumnDefinition_2[];
|
|
371
387
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableElement>;
|
|
372
388
|
|
|
373
|
-
export declare const CmcTablePagination: DefineComponent<
|
|
389
|
+
export declare const CmcTablePagination: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
374
390
|
"update:currentPage": (page: number) => any;
|
|
375
|
-
}, string, PublicProps, Readonly<
|
|
391
|
+
}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{
|
|
376
392
|
"onUpdate:currentPage"?: ((page: number) => any) | undefined;
|
|
377
393
|
}>, {
|
|
378
394
|
currentPage: number;
|
|
@@ -381,7 +397,7 @@ export declare const CmcTablePagination: DefineComponent<__VLS_Props_12, {}, {},
|
|
|
381
397
|
columns: ColumnDefinition_3[];
|
|
382
398
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
383
399
|
|
|
384
|
-
export declare const CmcTitle:
|
|
400
|
+
export declare const CmcTitle: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
385
401
|
|
|
386
402
|
export declare const CmcToggle: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
387
403
|
"update:modelValue": (value: boolean) => any;
|
|
@@ -389,13 +405,13 @@ export declare const CmcToggle: DefineComponent<__VLS_PublicProps_6, {}, {}, {},
|
|
|
389
405
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
390
406
|
}>, {
|
|
391
407
|
required: boolean;
|
|
392
|
-
size: ToggleSize;
|
|
393
408
|
disabled: boolean;
|
|
409
|
+
size: ToggleSize;
|
|
394
410
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
395
411
|
|
|
396
|
-
export declare const CmcWizard: DefineComponent<
|
|
412
|
+
export declare const CmcWizard: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
397
413
|
"update:current": (value: number) => any;
|
|
398
|
-
}, string, PublicProps, Readonly<
|
|
414
|
+
}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
|
|
399
415
|
"onUpdate:current"?: ((value: number) => any) | undefined;
|
|
400
416
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
401
417
|
|
|
@@ -462,12 +478,33 @@ declare const logoVariantOptions: {
|
|
|
462
478
|
readonly white: "white";
|
|
463
479
|
};
|
|
464
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
|
+
|
|
465
493
|
declare type Props<TRow extends Row = Row> = {
|
|
466
494
|
rows?: TRow[];
|
|
467
495
|
columns?: ColumnDefinition_2[];
|
|
468
496
|
emptyText?: string;
|
|
469
497
|
};
|
|
470
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
|
+
|
|
471
508
|
export declare interface SelectOption {
|
|
472
509
|
value: string | number;
|
|
473
510
|
label: string;
|