@choosemycompany/ui 0.9.1 → 0.9.2
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 +12 -11
- package/dist/index.js +217 -213
- package/dist/index.umd.js +5 -5
- package/package.json +22 -17
package/dist/index.d.ts
CHANGED
|
@@ -40,21 +40,23 @@ declare const __VLS_component_5: DefineComponent<__VLS_Props_8, {}, {}, {}, {},
|
|
|
40
40
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
41
41
|
|
|
42
42
|
declare type __VLS_Props = {
|
|
43
|
-
kind
|
|
44
|
-
variant
|
|
45
|
-
size
|
|
43
|
+
kind?: ButtonKind;
|
|
44
|
+
variant?: ButtonVariant;
|
|
45
|
+
size?: ButtonSize;
|
|
46
46
|
icon?: IconName;
|
|
47
|
-
disabled
|
|
48
|
-
loading
|
|
47
|
+
disabled?: boolean;
|
|
48
|
+
loading?: boolean;
|
|
49
49
|
};
|
|
50
50
|
|
|
51
51
|
declare type __VLS_Props_10 = Props;
|
|
52
52
|
|
|
53
53
|
declare type __VLS_Props_11 = {
|
|
54
|
-
rows?: Row_2[];
|
|
55
|
-
columns?: ColumnDefinition_2[];
|
|
56
54
|
itemsPerPage: number;
|
|
57
55
|
currentPage: number;
|
|
56
|
+
rows?: Row_2[];
|
|
57
|
+
columns?: ColumnDefinition_2[];
|
|
58
|
+
totalItems?: number;
|
|
59
|
+
emptyText?: string;
|
|
58
60
|
};
|
|
59
61
|
|
|
60
62
|
declare type __VLS_Props_12 = {
|
|
@@ -76,7 +78,7 @@ declare type __VLS_Props_2 = {
|
|
|
76
78
|
};
|
|
77
79
|
|
|
78
80
|
declare type __VLS_Props_3 = {
|
|
79
|
-
text
|
|
81
|
+
text: string;
|
|
80
82
|
status?: Status;
|
|
81
83
|
};
|
|
82
84
|
|
|
@@ -105,13 +107,13 @@ declare type __VLS_Props_6 = {
|
|
|
105
107
|
|
|
106
108
|
declare type __VLS_Props_7 = {
|
|
107
109
|
id: string;
|
|
110
|
+
options: SelectOption[];
|
|
108
111
|
label?: string;
|
|
109
112
|
placeholder?: string;
|
|
110
113
|
required?: boolean;
|
|
111
114
|
disabled?: boolean;
|
|
112
115
|
errorMessage?: string;
|
|
113
116
|
variant?: SelectVariant;
|
|
114
|
-
options: SelectOption[];
|
|
115
117
|
};
|
|
116
118
|
|
|
117
119
|
declare type __VLS_Props_8 = {
|
|
@@ -304,7 +306,6 @@ export declare const CmcSelect: DefineComponent<__VLS_PublicProps_3, {}, {}, {},
|
|
|
304
306
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
305
307
|
|
|
306
308
|
export declare const CmcStatus: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
|
|
307
|
-
text: string;
|
|
308
309
|
status: Status;
|
|
309
310
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
310
311
|
|
|
@@ -323,7 +324,7 @@ export declare const CmcTablePagination: DefineComponent<__VLS_Props_11, {}, {},
|
|
|
323
324
|
itemsPerPage: number;
|
|
324
325
|
rows: Row_2[];
|
|
325
326
|
columns: ColumnDefinition_2[];
|
|
326
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
327
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
327
328
|
|
|
328
329
|
export declare const CmcTitle: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
329
330
|
|