indicator-ui 1.1.35 → 1.1.37

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