indicator-ui 1.1.52 → 1.1.53

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/index.js CHANGED
@@ -20987,7 +20987,8 @@ function Yie(r) {
20987
20987
  open: C,
20988
20988
  close: S,
20989
20989
  toggle: x,
20990
- applyPosition: v
20990
+ applyPosition: v,
20991
+ isOpenRef: d
20991
20992
  };
20992
20993
  }
20993
20994
  function VH(r) {
@@ -21129,7 +21130,8 @@ function zie(r) {
21129
21130
  return qH({ closeModal: S, closeOnEscKeyDown: n, backdropRef: t }), VH({ closeModal: S, panelRef: e, isOpenRef: c, closeOnClickOutside: i }), {
21130
21131
  open: C,
21131
21132
  close: S,
21132
- toggle: x
21133
+ toggle: x,
21134
+ isOpenRef: c
21133
21135
  };
21134
21136
  }
21135
21137
  function zH(r) {
@@ -30991,6 +30993,7 @@ function Mne(r) {
30991
30993
  "div",
30992
30994
  {
30993
30995
  ...s,
30996
+ onClick: o,
30994
30997
  className: c,
30995
30998
  ref: n
30996
30999
  }
@@ -18,5 +18,6 @@ export declare function useAnchoredModalController(props: PropsType): {
18
18
  } & {
19
19
  zIndex?: number;
20
20
  }) => void;
21
+ isOpenRef: React.RefObject<boolean>;
21
22
  };
22
23
  export {};
@@ -10,5 +10,6 @@ export declare function useDialogModalController(props: PropsType): {
10
10
  open: () => Promise<void>;
11
11
  close: () => Promise<unknown>;
12
12
  toggle: () => Promise<unknown>;
13
+ isOpenRef: React.RefObject<boolean>;
13
14
  };
14
15
  export {};
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "react-components",
12
12
  "ui-kit"
13
13
  ],
14
- "version": "1.1.52",
14
+ "version": "1.1.53",
15
15
  "exports": {
16
16
  ".": {
17
17
  "types": "./dist/types/index.d.ts",