@choosemycompany/ui 0.19.6 → 0.20.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 +22 -12
- package/dist/index.js +505 -480
- package/dist/index.umd.js +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -98,11 +98,13 @@ declare type __VLS_Props_15 = {
|
|
|
98
98
|
};
|
|
99
99
|
|
|
100
100
|
declare type __VLS_Props_2 = {
|
|
101
|
-
items:
|
|
101
|
+
items: AutocompleteItem[];
|
|
102
102
|
label?: string;
|
|
103
103
|
loading?: boolean;
|
|
104
|
-
placeholder
|
|
105
|
-
emptyValue
|
|
104
|
+
placeholder: string;
|
|
105
|
+
emptyValue: string;
|
|
106
|
+
minChars?: number;
|
|
107
|
+
debounce?: number;
|
|
106
108
|
};
|
|
107
109
|
|
|
108
110
|
declare type __VLS_Props_3 = {
|
|
@@ -157,7 +159,8 @@ declare type __VLS_Props_9 = {
|
|
|
157
159
|
};
|
|
158
160
|
|
|
159
161
|
declare type __VLS_PublicProps = {
|
|
160
|
-
modelValue?: string;
|
|
162
|
+
modelValue?: string | null;
|
|
163
|
+
"search"?: string;
|
|
161
164
|
} & __VLS_Props_2;
|
|
162
165
|
|
|
163
166
|
declare type __VLS_PublicProps_2 = {
|
|
@@ -270,6 +273,11 @@ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
|
|
|
270
273
|
};
|
|
271
274
|
};
|
|
272
275
|
|
|
276
|
+
declare type AutocompleteItem = {
|
|
277
|
+
label: string;
|
|
278
|
+
value: string;
|
|
279
|
+
};
|
|
280
|
+
|
|
273
281
|
declare type BadgePillStatus = keyof typeof badgePillStatusOptions;
|
|
274
282
|
|
|
275
283
|
declare const badgePillStatusOptions: {
|
|
@@ -317,8 +325,8 @@ declare interface CertificateProps {
|
|
|
317
325
|
rank?: Rank;
|
|
318
326
|
period: number;
|
|
319
327
|
country: string;
|
|
320
|
-
width
|
|
321
|
-
height
|
|
328
|
+
width?: number;
|
|
329
|
+
height?: number;
|
|
322
330
|
}
|
|
323
331
|
|
|
324
332
|
export declare const CmcAlert: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -328,14 +336,18 @@ export declare const CmcAlert: DefineComponent<__VLS_Props, {}, {}, {}, {}, Comp
|
|
|
328
336
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
329
337
|
|
|
330
338
|
export declare const CmcAutocomplete: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
331
|
-
|
|
339
|
+
search: (args_0: string) => any;
|
|
340
|
+
"update:modelValue": (...args: unknown[]) => any;
|
|
341
|
+
"update:search": (...args: unknown[]) => any;
|
|
332
342
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
333
|
-
|
|
343
|
+
onSearch?: ((args_0: string) => any) | undefined;
|
|
344
|
+
"onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
|
|
345
|
+
"onUpdate:search"?: ((...args: unknown[]) => any) | undefined;
|
|
334
346
|
}>, {
|
|
335
347
|
loading: boolean;
|
|
336
|
-
placeholder: string;
|
|
337
348
|
label: string;
|
|
338
|
-
|
|
349
|
+
minChars: number;
|
|
350
|
+
debounce: number;
|
|
339
351
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
340
352
|
autocompleteRef: HTMLDivElement;
|
|
341
353
|
}, HTMLDivElement>;
|
|
@@ -351,8 +363,6 @@ export declare const CmcButton: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
|
351
363
|
export declare const CmcButtonGroup: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
352
364
|
|
|
353
365
|
export declare const CmcCertificate: DefineComponent<CertificateProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CertificateProps> & Readonly<{}>, {
|
|
354
|
-
width: number;
|
|
355
|
-
height: number;
|
|
356
366
|
primaryType: PrimaryType;
|
|
357
367
|
rank: Rank;
|
|
358
368
|
period: number;
|