@mindly/ui-components 3.2.0 → 3.2.1

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,3 +1,7 @@
1
- import { FC } from 'react';
2
- declare const Container: FC;
1
+ import { CSSProperties, FC } from 'react';
2
+ declare type ContainerProps = {
3
+ style?: CSSProperties;
4
+ className?: string;
5
+ };
6
+ declare const Container: FC<ContainerProps>;
3
7
  export default Container;
package/dist/index.d.ts CHANGED
@@ -380,7 +380,11 @@ declare type AppHeaderProps = {
380
380
  };
381
381
  declare const AppHeader: FC<AppHeaderProps>;
382
382
 
383
- declare const Container: FC;
383
+ declare type ContainerProps = {
384
+ style?: CSSProperties;
385
+ className?: string;
386
+ };
387
+ declare const Container: FC<ContainerProps>;
384
388
 
385
389
  declare type SegmentType = {
386
390
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",