@codeandfunction/callaloo 3.1.0 → 3.1.2

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.
@@ -12,6 +12,8 @@ interface Props {
12
12
  fullscreen?: boolean;
13
13
  /** When set to `true`, the Modal is visible. */
14
14
  isOpen?: boolean;
15
+ /** The unique identifier of the Modal. */
16
+ modalId: string;
15
17
  /** A callback function to be called when the Modal is closed. */
16
18
  onClose?: CLGenericFunction;
17
19
  /** When set to `true`, it renders an overlay behind the modal. It's default value is `true`. */
@@ -33,7 +35,8 @@ declare function __VLS_template(): {
33
35
  footer?(_: {}): any;
34
36
  };
35
37
  refs: {
36
- modalWindow: HTMLDivElement;
38
+ 'modal-window': HTMLDivElement;
39
+ 'overlay-ref': HTMLDivElement;
37
40
  };
38
41
  rootEl: any;
39
42
  };
@@ -49,7 +52,8 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
49
52
  overlay: boolean;
50
53
  maxWidth: string;
51
54
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
52
- modalWindow: HTMLDivElement;
55
+ 'modal-window': HTMLDivElement;
56
+ 'overlay-ref': HTMLDivElement;
53
57
  }, any>;
54
58
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
55
59
  export default _default;