indicator-ui 1.1.47 → 1.1.49

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.
@@ -7,6 +7,7 @@ type PropsType = Pick<ReturnType<typeof useApplyPosition>, 'applyPosition'> & {
7
7
  windowScrollBehavior?: AnchoredModalWindowScrollBehavior;
8
8
  scrollableParentBehavior?: AnchoredModalScrollableParentBehavior;
9
9
  anchorRef: React.RefObject<HTMLElement | null>;
10
+ modalRef: React.RefObject<HTMLElement | null>;
10
11
  };
11
12
  export declare function useScrollBehavior(props: PropsType): void;
12
13
  export {};
@@ -1,5 +1,6 @@
1
1
  import { default as React } from 'react';
2
- import { Mark, Title, Subtitle, MainWrapper } from './components';
3
- type PropsType = React.ComponentProps<typeof MainWrapper> & Pick<React.ComponentProps<typeof Mark>, 'status' | 'error' | 'disabled'> & Pick<React.ComponentProps<typeof Title>, 'title'> & Pick<React.ComponentProps<typeof Subtitle>, 'subtitle'>;
2
+ import { Merge } from '../../../types';
3
+ import { MainWrapper, Mark, Subtitle, Title } from './components';
4
+ type PropsType = Merge<React.ComponentProps<typeof MainWrapper>, Pick<React.ComponentProps<typeof Mark>, 'status' | 'error' | 'disabled'> & Pick<React.ComponentProps<typeof Title>, 'title'> & Pick<React.ComponentProps<typeof Subtitle>, 'subtitle'>>;
4
5
  export declare function CheckboxMain(props: PropsType): import("react/jsx-runtime").JSX.Element;
5
6
  export {};
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "react-components",
12
12
  "ui-kit"
13
13
  ],
14
- "version": "1.1.47",
14
+ "version": "1.1.49",
15
15
  "exports": {
16
16
  ".": {
17
17
  "types": "./dist/types/index.d.ts",