@mindly/ui-components 5.59.3 → 5.60.0
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 +2 -2
- package/dist/cjs/lib2/shared/ui/AppFooter_v2/AppFooter_v2.d.ts +3 -1
- package/dist/cjs/lib2/shared/ui/AppHeader_v2/AppHeader_v2.d.ts +3 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/lib2/shared/ui/AppFooter_v2/AppFooter_v2.d.ts +3 -1
- package/dist/esm/lib2/shared/ui/AppHeader_v2/AppHeader_v2.d.ts +3 -1
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { CSSProperties } from 'react';
|
|
2
2
|
type AppFooterProps = {
|
|
3
3
|
children?: React.ReactNode;
|
|
4
4
|
transparent?: boolean;
|
|
5
5
|
bottomSaveArea?: boolean;
|
|
6
6
|
borderTop?: boolean;
|
|
7
|
+
style?: CSSProperties;
|
|
8
|
+
toolbarStyle?: CSSProperties;
|
|
7
9
|
};
|
|
8
10
|
declare const _default: React.NamedExoticComponent<AppFooterProps>;
|
|
9
11
|
export default _default;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
1
|
+
import { CSSProperties, FC } from 'react';
|
|
2
2
|
type AppHeaderProps = {
|
|
3
3
|
fullwidth?: boolean;
|
|
4
4
|
className?: string;
|
|
5
|
+
style?: CSSProperties;
|
|
5
6
|
toolbarClassName?: string;
|
|
7
|
+
toolbarStyle?: CSSProperties;
|
|
6
8
|
};
|
|
7
9
|
declare const AppHeader_v2: FC<AppHeaderProps>;
|
|
8
10
|
export default AppHeader_v2;
|
package/dist/index.d.ts
CHANGED
|
@@ -1458,6 +1458,8 @@ type AppFooterProps = {
|
|
|
1458
1458
|
transparent?: boolean;
|
|
1459
1459
|
bottomSaveArea?: boolean;
|
|
1460
1460
|
borderTop?: boolean;
|
|
1461
|
+
style?: CSSProperties;
|
|
1462
|
+
toolbarStyle?: CSSProperties;
|
|
1461
1463
|
};
|
|
1462
1464
|
declare const _default$q: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1463
1465
|
|
|
@@ -1551,7 +1553,9 @@ declare const _default$k: React.NamedExoticComponent<ItemCardProps>;
|
|
|
1551
1553
|
type AppHeaderProps = {
|
|
1552
1554
|
fullwidth?: boolean;
|
|
1553
1555
|
className?: string;
|
|
1556
|
+
style?: CSSProperties;
|
|
1554
1557
|
toolbarClassName?: string;
|
|
1558
|
+
toolbarStyle?: CSSProperties;
|
|
1555
1559
|
};
|
|
1556
1560
|
declare const AppHeader_v2: FC<AppHeaderProps>;
|
|
1557
1561
|
|