@mindly/ui-components 3.5.4 → 3.5.6
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/cjs/index.js +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/Container/Container.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/Container/Container.d.ts +2 -2
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { CSSProperties
|
|
1
|
+
import React, { CSSProperties } from 'react';
|
|
2
2
|
declare type ContainerProps = {
|
|
3
3
|
style?: CSSProperties;
|
|
4
4
|
className?: string;
|
|
5
5
|
};
|
|
6
|
-
declare const Container:
|
|
6
|
+
declare const Container: React.ForwardRefExoticComponent<ContainerProps & React.RefAttributes<HTMLDivElement>>;
|
|
7
7
|
export default Container;
|
package/dist/index.d.ts
CHANGED
|
@@ -385,7 +385,7 @@ declare type ContainerProps = {
|
|
|
385
385
|
style?: CSSProperties;
|
|
386
386
|
className?: string;
|
|
387
387
|
};
|
|
388
|
-
declare const Container:
|
|
388
|
+
declare const Container: React.ForwardRefExoticComponent<ContainerProps & React.RefAttributes<HTMLDivElement>>;
|
|
389
389
|
|
|
390
390
|
declare type SegmentType = {
|
|
391
391
|
id: string;
|