@codeandfunction/callaloo 2.9.4 → 2.11.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/styles.css +1 -1
- package/dist/components/Form/CLCheckbox.vue.d.ts +9 -5
- package/dist/components/Form/CLInput.vue.d.ts +8 -6
- package/dist/components/Form/CLRadioButton.vue.d.ts +9 -3
- package/dist/components/Form/CLSelect.vue.d.ts +9 -5
- package/dist/components/Form/CLTextArea.vue.d.ts +9 -5
- package/dist/components/Modals/CLModal.vue.d.ts +3 -0
- package/dist/index.js +2276 -2260
- package/package.json +1 -1
|
@@ -54,8 +54,6 @@ interface Props {
|
|
|
54
54
|
spellCheck?: boolean;
|
|
55
55
|
/** Sets a custom ID used for unit tests. */
|
|
56
56
|
testId?: string;
|
|
57
|
-
/** Set the value for the textarea when it's checked. */
|
|
58
|
-
value?: string | number;
|
|
59
57
|
/** Sets the color variant. The property can be one of `CLColorVariants.Outline | CLColorVariants.Ghost`, e.g `CLColorVariants.Outline`. */
|
|
60
58
|
variant?: CLColorVariants.Outline | CLColorVariants.Ghost;
|
|
61
59
|
/** A callback function which handles when the textarea loses focus. */
|
|
@@ -64,10 +62,16 @@ interface Props {
|
|
|
64
62
|
onChange?: CLGenericFunction;
|
|
65
63
|
/** A callback function which handles when the textarea gains focus. */
|
|
66
64
|
onFocus?: CLGenericFocusFunction;
|
|
67
|
-
/** A callback function which handles when the textarea state is updated. */
|
|
68
|
-
onInput?: CLGenericFunction;
|
|
69
65
|
}
|
|
70
|
-
|
|
66
|
+
type __VLS_Props = Props;
|
|
67
|
+
type __VLS_PublicProps = {
|
|
68
|
+
modelValue?: string | number;
|
|
69
|
+
} & __VLS_Props;
|
|
70
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
71
|
+
"update:modelValue": (value: string | number) => any;
|
|
72
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
73
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
74
|
+
}>, {
|
|
71
75
|
color: CLColors;
|
|
72
76
|
variant: CLColorVariants.Outline | CLColorVariants.Ghost;
|
|
73
77
|
testId: string;
|
|
@@ -12,6 +12,8 @@ interface Props {
|
|
|
12
12
|
testId?: string;
|
|
13
13
|
/** The title content of the Modal. */
|
|
14
14
|
title?: string;
|
|
15
|
+
/** Sets the max width of the modal, it's default value is `640px`. */
|
|
16
|
+
maxWidth?: string;
|
|
15
17
|
/** The z-index of the Modal. */
|
|
16
18
|
zIndex?: number;
|
|
17
19
|
}
|
|
@@ -33,6 +35,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
33
35
|
isOpen: boolean;
|
|
34
36
|
zIndex: number;
|
|
35
37
|
fullscreen: boolean;
|
|
38
|
+
maxWidth: string;
|
|
36
39
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
37
40
|
modalWindow: HTMLDivElement;
|
|
38
41
|
}, any>;
|