@codeandfunction/callaloo 3.9.0 → 3.10.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.
|
@@ -25,7 +25,7 @@ interface Props {
|
|
|
25
25
|
/** Sets the max width of the modal, it's default value is `640px`. */
|
|
26
26
|
maxWidth?: string;
|
|
27
27
|
/** The z-index of the Modal. */
|
|
28
|
-
zIndex?: number;
|
|
28
|
+
zIndex?: number | string;
|
|
29
29
|
}
|
|
30
30
|
declare function __VLS_template(): {
|
|
31
31
|
attrs: Partial<{}>;
|
|
@@ -51,7 +51,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
51
51
|
testId: string;
|
|
52
52
|
close: boolean;
|
|
53
53
|
isOpen: boolean;
|
|
54
|
-
zIndex: number;
|
|
54
|
+
zIndex: number | string;
|
|
55
55
|
closeBorderRadius: CLBorderRadius;
|
|
56
56
|
dismissible: boolean;
|
|
57
57
|
fullscreen: boolean;
|
|
@@ -41,7 +41,7 @@ interface Props {
|
|
|
41
41
|
/** Sets the placement of the content container. The property can be one of `CLPlacement`, e.g. `CLPlacement.BottomStart`. */
|
|
42
42
|
placement?: CLPlacement;
|
|
43
43
|
/** Sets the z-index of the content container. */
|
|
44
|
-
zIndex?: number;
|
|
44
|
+
zIndex?: number | string;
|
|
45
45
|
}
|
|
46
46
|
declare function __VLS_template(): {
|
|
47
47
|
attrs: Partial<{}>;
|
|
@@ -324,7 +324,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
324
324
|
contentWidth: string;
|
|
325
325
|
isOpen: boolean;
|
|
326
326
|
placement: CLPlacement;
|
|
327
|
-
zIndex: number;
|
|
327
|
+
zIndex: number | string;
|
|
328
328
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
329
329
|
anchor: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
330
330
|
active: {
|