react-crud-mui 0.2.24 → 0.2.25
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.
|
@@ -14,7 +14,9 @@ import { ListPageCommandsProps } from '../components/ListPageCommands';
|
|
|
14
14
|
import { ListPageHeaderProps } from '../components/ListPageHeader';
|
|
15
15
|
export type ListType = 'table' | 'card';
|
|
16
16
|
export type ListPageWrapperLayoutProps = {
|
|
17
|
-
|
|
17
|
+
tableContent: ReactNode;
|
|
18
|
+
autoSearchContent: ReactNode;
|
|
19
|
+
shortCutContent: ReactNode;
|
|
18
20
|
pageContent: ReactNode;
|
|
19
21
|
alertsContent: ReactNode;
|
|
20
22
|
commandsContent: ReactNode;
|
|
@@ -7,7 +7,7 @@ import { PanelPane } from './components/DefaultPanels';
|
|
|
7
7
|
import { default as DefaultTabs, DefaultTabsProps, TabChangedPayload, TabPane } from './components/DefaultTabs';
|
|
8
8
|
import { default as PageContent } from './components/PageContent';
|
|
9
9
|
import { default as PageDivider } from './components/PageDivider';
|
|
10
|
-
import { PaddingSize } from './components/PageProvider';
|
|
10
|
+
import { default as PageProvider, PaddingSize } from './components/PageProvider';
|
|
11
11
|
import { default as PageDrawer } from './PageDrawer';
|
|
12
12
|
import { default as PageModal } from './PageModal';
|
|
13
13
|
export type CloseReason = 'backdrop' | 'close-button' | 'action';
|
|
@@ -48,5 +48,6 @@ declare namespace Page {
|
|
|
48
48
|
var Tabs: typeof DefaultTabs;
|
|
49
49
|
var Modal: typeof PageModal;
|
|
50
50
|
var Drawer: typeof PageDrawer;
|
|
51
|
+
var Provider: typeof PageProvider;
|
|
51
52
|
}
|
|
52
53
|
export default Page;
|