@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.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/Container/Container.d.ts +6 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/Container/Container.d.ts +6 -2
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
2
|
-
declare
|
|
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
|
|
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;
|