@choosemycompany/ui 0.11.1 → 0.12.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 +12 -3
- package/dist/index.js +359 -350
- package/dist/index.umd.js +4 -4
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -25,9 +25,9 @@ declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {},
|
|
|
25
25
|
declare const __VLS_component_3: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
26
26
|
|
|
27
27
|
declare const __VLS_component_4: DefineComponent<__VLS_PublicProps_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
28
|
-
"update:modelValue": (
|
|
28
|
+
"update:modelValue": (...args: any[]) => void;
|
|
29
29
|
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
30
|
-
"onUpdate:modelValue"?: ((
|
|
30
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
31
31
|
}>, {
|
|
32
32
|
type: inputType;
|
|
33
33
|
required: boolean;
|
|
@@ -159,6 +159,10 @@ declare type __VLS_PublicProps_4 = {
|
|
|
159
159
|
modelValue?: boolean;
|
|
160
160
|
} & __VLS_Props_8;
|
|
161
161
|
|
|
162
|
+
declare type __VLS_PublicProps_5 = {
|
|
163
|
+
modelValue?: string;
|
|
164
|
+
} & __VLS_Props_15;
|
|
165
|
+
|
|
162
166
|
declare function __VLS_template(): {
|
|
163
167
|
attrs: Partial<{}>;
|
|
164
168
|
slots: {
|
|
@@ -277,7 +281,11 @@ export declare const buttonVariantOptions: {
|
|
|
277
281
|
readonly danger: "danger";
|
|
278
282
|
};
|
|
279
283
|
|
|
280
|
-
export declare const CmcAutocomplete: DefineComponent<
|
|
284
|
+
export declare const CmcAutocomplete: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
285
|
+
"update:modelValue": (...args: any[]) => void;
|
|
286
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
287
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
288
|
+
}>, {
|
|
281
289
|
loading: boolean;
|
|
282
290
|
placeholder: string;
|
|
283
291
|
label: string;
|
|
@@ -406,6 +414,7 @@ declare type inputType = keyof typeof inputTypeOptions;
|
|
|
406
414
|
export declare const inputTypeOptions: {
|
|
407
415
|
readonly text: "text";
|
|
408
416
|
readonly number: "number";
|
|
417
|
+
readonly date: "date";
|
|
409
418
|
readonly search: "search";
|
|
410
419
|
};
|
|
411
420
|
|