@choosemycompany/ui 0.12.0 → 0.12.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 +29 -1
- package/dist/index.js +706 -661
- package/dist/index.umd.js +5 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -88,6 +88,13 @@ declare type __VLS_Props_15 = {
|
|
|
88
88
|
emptyValue?: string;
|
|
89
89
|
};
|
|
90
90
|
|
|
91
|
+
declare type __VLS_Props_16 = {
|
|
92
|
+
id?: string;
|
|
93
|
+
disabled?: boolean;
|
|
94
|
+
required?: boolean;
|
|
95
|
+
size?: ToggleSize;
|
|
96
|
+
};
|
|
97
|
+
|
|
91
98
|
declare type __VLS_Props_2 = {
|
|
92
99
|
level: HeadingLevels;
|
|
93
100
|
};
|
|
@@ -163,6 +170,10 @@ declare type __VLS_PublicProps_5 = {
|
|
|
163
170
|
modelValue?: string;
|
|
164
171
|
} & __VLS_Props_15;
|
|
165
172
|
|
|
173
|
+
declare type __VLS_PublicProps_6 = {
|
|
174
|
+
modelValue?: boolean;
|
|
175
|
+
} & __VLS_Props_16;
|
|
176
|
+
|
|
166
177
|
declare function __VLS_template(): {
|
|
167
178
|
attrs: Partial<{}>;
|
|
168
179
|
slots: {
|
|
@@ -375,6 +386,16 @@ export declare const CmcTablePagination: DefineComponent<__VLS_Props_12, {}, {},
|
|
|
375
386
|
|
|
376
387
|
export declare const CmcTitle: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
377
388
|
|
|
389
|
+
export declare const CmcToggle: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
390
|
+
"update:modelValue": (value: boolean) => any;
|
|
391
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
392
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
393
|
+
}>, {
|
|
394
|
+
required: boolean;
|
|
395
|
+
size: ToggleSize;
|
|
396
|
+
disabled: boolean;
|
|
397
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
398
|
+
|
|
378
399
|
export declare const CmcWizard: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
379
400
|
"update:current": (value: number) => any;
|
|
380
401
|
}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{
|
|
@@ -453,7 +474,7 @@ declare type Props<TRow extends Row = Row> = {
|
|
|
453
474
|
emptyText?: string;
|
|
454
475
|
};
|
|
455
476
|
|
|
456
|
-
declare interface SelectOption {
|
|
477
|
+
export declare interface SelectOption {
|
|
457
478
|
value: string | number;
|
|
458
479
|
label: string;
|
|
459
480
|
disabled?: boolean;
|
|
@@ -475,4 +496,11 @@ declare type Step = {
|
|
|
475
496
|
label: string;
|
|
476
497
|
};
|
|
477
498
|
|
|
499
|
+
declare type ToggleSize = keyof typeof toggleSizeOptions;
|
|
500
|
+
|
|
501
|
+
declare const toggleSizeOptions: {
|
|
502
|
+
readonly small: "small";
|
|
503
|
+
readonly medium: "medium";
|
|
504
|
+
};
|
|
505
|
+
|
|
478
506
|
export { }
|