@veeqo/ui 5.2.0 → 5.3.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.
@@ -4,7 +4,7 @@ import { AnimatedDropdown } from '../AnimatedDropdown';
4
4
  declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;
5
5
  declare const GroupLabel: import("styled-components").StyledComponent<"span", any, {} & import("../Text/types").TextProps, never>;
6
6
  declare const MainIcon: import("styled-components").StyledComponent<(props: any) => import("react").JSX.Element, any, {
7
- shouldShow?: boolean | undefined;
7
+ $shouldShow?: boolean | undefined;
8
8
  }, never>;
9
9
  declare const StyledCrossIcon: import("styled-components").StyledComponent<(props: any) => import("react").JSX.Element, any, {}, never>;
10
10
  declare const Content: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -1,3 +1,3 @@
1
1
  import React from 'react';
2
2
  import { PopoverProps } from './types';
3
- export declare const Popover: ({ id: passedId, children, zIndex, placement, anchorElement, rootElementRef, onShouldClose, style, disableFocusLock, ...dialogProps }: PopoverProps) => React.JSX.Element;
3
+ export declare const Popover: ({ id: passedId, children, zIndex, placement, anchorElement, rootElementRef, onShouldClose, style, disableFocusLock, removeBackdrop, ...dialogProps }: PopoverProps) => React.JSX.Element;
@@ -7,9 +7,13 @@ export type PopoverProps = DialogHTMLAttributes<HTMLDialogElement> & {
7
7
  anchorElement: HTMLElement | null;
8
8
  rootElementRef?: HTMLElement;
9
9
  /**
10
- * Will disable the focus lock if set to true, use only if taking manual control.
10
+ * Will disable the focus lock if set to true, use only if taking manual control of focus.
11
11
  */
12
12
  disableFocusLock?: boolean;
13
+ /**
14
+ * Removes the backdrop, only use if taking control of closing the popover.
15
+ */
16
+ removeBackdrop?: boolean;
13
17
  /**
14
18
  * When background is clicked, or ESC key is pressed we call this to close the popover.
15
19
  */