@choosemycompany/ui 0.15.8 → 0.16.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 +18 -3
- package/dist/index.js +417 -397
- package/dist/index.umd.js +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ declare const __VLS_component_2: DefineComponent<__VLS_Props_3, {}, {}, {}, {},
|
|
|
24
24
|
gap: ButtonGroupGap;
|
|
25
25
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
26
26
|
|
|
27
|
-
declare const __VLS_component_3: DefineComponent<
|
|
27
|
+
declare const __VLS_component_3: DefineComponent<Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_2> & Readonly<{}>, {
|
|
28
28
|
margin: boolean;
|
|
29
29
|
level: HeadingLevels;
|
|
30
30
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -68,7 +68,7 @@ declare type __VLS_Props_11 = {
|
|
|
68
68
|
status?: Status;
|
|
69
69
|
};
|
|
70
70
|
|
|
71
|
-
declare type __VLS_Props_12 =
|
|
71
|
+
declare type __VLS_Props_12 = Props_3;
|
|
72
72
|
|
|
73
73
|
declare type __VLS_Props_13 = {
|
|
74
74
|
itemsPerPage: number;
|
|
@@ -264,6 +264,14 @@ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
|
|
|
264
264
|
};
|
|
265
265
|
};
|
|
266
266
|
|
|
267
|
+
declare type BadgePillStatus = keyof typeof badgePillStatusOptions;
|
|
268
|
+
|
|
269
|
+
declare const badgePillStatusOptions: {
|
|
270
|
+
readonly limited: "limited";
|
|
271
|
+
readonly completed: "completed";
|
|
272
|
+
readonly info: "info";
|
|
273
|
+
};
|
|
274
|
+
|
|
267
275
|
declare type ButtonGroupGap = keyof typeof buttonGroupGapOptions;
|
|
268
276
|
|
|
269
277
|
declare const buttonGroupGapOptions: {
|
|
@@ -313,6 +321,8 @@ export declare const CmcAutocomplete: DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
313
321
|
autocompleteRef: HTMLDivElement;
|
|
314
322
|
}, HTMLDivElement>;
|
|
315
323
|
|
|
324
|
+
export declare const CmcBadgePill: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
325
|
+
|
|
316
326
|
export declare const CmcButton: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
317
327
|
|
|
318
328
|
export declare const CmcButtonGroup: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
@@ -496,11 +506,16 @@ export declare const primaryTypeOptions: {
|
|
|
496
506
|
};
|
|
497
507
|
|
|
498
508
|
declare interface Props {
|
|
509
|
+
label: string;
|
|
510
|
+
status: BadgePillStatus;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
declare interface Props_2 {
|
|
499
514
|
margin?: boolean;
|
|
500
515
|
level: HeadingLevels;
|
|
501
516
|
}
|
|
502
517
|
|
|
503
|
-
declare type
|
|
518
|
+
declare type Props_3<TRow extends Row = Row> = {
|
|
504
519
|
rows?: TRow[];
|
|
505
520
|
columns?: ColumnDefinition_2[];
|
|
506
521
|
emptyText?: string;
|