@choosemycompany/ui 0.19.2 → 0.19.4
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 +15 -13
- package/dist/index.js +151 -153
- package/dist/index.umd.js +5 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -39,11 +39,11 @@ declare const __VLS_component_4: DefineComponent<__VLS_PublicProps_3, {}, {}, {}
|
|
|
39
39
|
}, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
|
|
40
40
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
41
41
|
}>, {
|
|
42
|
-
type:
|
|
42
|
+
type: InputType;
|
|
43
43
|
required: boolean;
|
|
44
44
|
disabled: boolean;
|
|
45
|
-
variant:
|
|
46
|
-
size:
|
|
45
|
+
variant: InputVariant;
|
|
46
|
+
size: InputSize;
|
|
47
47
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
48
48
|
|
|
49
49
|
declare const __VLS_component_5: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -127,9 +127,9 @@ declare type __VLS_Props_6 = {
|
|
|
127
127
|
required?: boolean;
|
|
128
128
|
disabled?: boolean;
|
|
129
129
|
errorMessage?: string;
|
|
130
|
-
type?:
|
|
131
|
-
variant?:
|
|
132
|
-
size?:
|
|
130
|
+
type?: InputType;
|
|
131
|
+
variant?: InputVariant;
|
|
132
|
+
size?: InputSize;
|
|
133
133
|
description?: string;
|
|
134
134
|
min?: number;
|
|
135
135
|
max?: number;
|
|
@@ -150,8 +150,9 @@ declare type __VLS_Props_8 = {
|
|
|
150
150
|
};
|
|
151
151
|
|
|
152
152
|
declare type __VLS_Props_9 = {
|
|
153
|
-
size?:
|
|
154
|
-
variant?:
|
|
153
|
+
size?: InputSize;
|
|
154
|
+
variant?: InputVariant;
|
|
155
|
+
label?: string;
|
|
155
156
|
placeholder?: string;
|
|
156
157
|
};
|
|
157
158
|
|
|
@@ -399,7 +400,8 @@ export declare const CmcSearch: DefineComponent<__VLS_PublicProps_4, {}, {}, {},
|
|
|
399
400
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
400
401
|
}>, {
|
|
401
402
|
placeholder: string;
|
|
402
|
-
|
|
403
|
+
variant: InputVariant;
|
|
404
|
+
size: InputSize;
|
|
403
405
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
404
406
|
|
|
405
407
|
export declare const CmcSelect: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -471,14 +473,14 @@ declare type IconName = keyof typeof iconNameOptions;
|
|
|
471
473
|
|
|
472
474
|
export declare const iconNameOptions: Record<string, string>;
|
|
473
475
|
|
|
474
|
-
declare type
|
|
476
|
+
declare type InputSize = keyof typeof inputSizeOptions;
|
|
475
477
|
|
|
476
478
|
export declare const inputSizeOptions: {
|
|
477
479
|
readonly small: "small";
|
|
478
480
|
readonly medium: "medium";
|
|
479
481
|
};
|
|
480
482
|
|
|
481
|
-
declare type
|
|
483
|
+
declare type InputType = keyof typeof inputTypeOptions;
|
|
482
484
|
|
|
483
485
|
export declare const inputTypeOptions: {
|
|
484
486
|
readonly text: "text";
|
|
@@ -487,7 +489,7 @@ export declare const inputTypeOptions: {
|
|
|
487
489
|
readonly search: "search";
|
|
488
490
|
};
|
|
489
491
|
|
|
490
|
-
declare type
|
|
492
|
+
declare type InputVariant = keyof typeof inputVariantOptions;
|
|
491
493
|
|
|
492
494
|
export declare const inputVariantOptions: {
|
|
493
495
|
readonly outlined: "outlined";
|
|
@@ -572,7 +574,7 @@ export declare interface SelectOption {
|
|
|
572
574
|
disabled?: boolean;
|
|
573
575
|
}
|
|
574
576
|
|
|
575
|
-
declare type SelectVariant =
|
|
577
|
+
declare type SelectVariant = InputVariant;
|
|
576
578
|
|
|
577
579
|
export declare const selectVariantOptions: {
|
|
578
580
|
readonly outlined: "outlined";
|