indicator-ui 1.1.16 → 1.1.17

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.
@@ -1,6 +1,7 @@
1
1
  import { default as React } from 'react';
2
+ import { Merge } from '../../../types';
2
3
  import { Wrapper, Title, Subtitle } from './components';
3
4
  import { ToggleBaseV2 } from './ToggleBaseV2';
4
- type PropsType = React.ComponentProps<typeof Wrapper> & Pick<React.ComponentProps<typeof ToggleBaseV2>, 'active' | 'error' | 'disabled'> & Pick<React.ComponentProps<typeof Title>, 'title'> & Pick<React.ComponentProps<typeof Subtitle>, 'subtitle'>;
5
+ type PropsType = Merge<React.ComponentProps<typeof Wrapper>, Pick<React.ComponentProps<typeof ToggleBaseV2>, 'active' | 'error' | 'disabled'> & Pick<React.ComponentProps<typeof Title>, 'title'> & Pick<React.ComponentProps<typeof Subtitle>, 'subtitle'>>;
5
6
  export declare function ToggleV2(props: PropsType): import("react/jsx-runtime").JSX.Element;
6
7
  export {};
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "react-components",
12
12
  "ui-kit"
13
13
  ],
14
- "version": "1.1.16",
14
+ "version": "1.1.17",
15
15
  "exports": {
16
16
  ".": {
17
17
  "types": "./dist/types/index.d.ts",