rc-lib-ui 1.0.21 → 1.0.23
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/README.md
CHANGED
|
@@ -107,7 +107,7 @@ export const App = () => {
|
|
|
107
107
|
columnMenu={{
|
|
108
108
|
initWidth: 280,
|
|
109
109
|
minWidthColumn: {
|
|
110
|
-
width: 80, //min 40
|
|
110
|
+
width: 80, // variant1 - min 40, variant2 - min 53,
|
|
111
111
|
},
|
|
112
112
|
position: "right",
|
|
113
113
|
}}
|
|
@@ -124,6 +124,11 @@ export const App = () => {
|
|
|
124
124
|
isButtonCenterMenu: false
|
|
125
125
|
//isHeader: false, full off header
|
|
126
126
|
}}
|
|
127
|
+
Footer={
|
|
128
|
+
<div style={{ display: 'flex', justifyContent: 'center', alignItems: 'center', height: '100%'}}>
|
|
129
|
+
Footer
|
|
130
|
+
</div>
|
|
131
|
+
}
|
|
127
132
|
children={/*...*/}
|
|
128
133
|
/>
|
|
129
134
|
</>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
|
-
import { SxProps, Theme } from '@mui/
|
|
2
|
+
import { SxProps, Theme } from '@mui/material';
|
|
3
3
|
import { ListMenuProps } from './components/ListMemu/ListMenu';
|
|
4
4
|
import { MuiHeaderProps } from './components/MuiHeader';
|
|
5
5
|
import { MuiMenuProps } from './components/MuiMenu';
|