@applica-software-guru/react-admin 1.0.11 → 1.0.13
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/ApplicaAdmin.d.ts +5 -1
- package/dist/ApplicaAdmin.d.ts.map +1 -1
- package/dist/components/Layout/Header/HeaderContent/index.d.ts +5 -1
- package/dist/components/Layout/Header/HeaderContent/index.d.ts.map +1 -1
- package/dist/components/Layout/Header/index.d.ts +5 -1
- package/dist/components/Layout/Header/index.d.ts.map +1 -1
- package/dist/components/Layout/index.d.ts +5 -1
- package/dist/components/Layout/index.d.ts.map +1 -1
- package/dist/components/ra-lists/Datagrid.d.ts +6 -2
- package/dist/components/ra-lists/Datagrid.d.ts.map +1 -1
- package/dist/components/ra-lists/List.d.ts.map +1 -1
- package/dist/react-admin.cjs.js +45 -45
- package/dist/react-admin.es.js +5848 -5720
- package/dist/react-admin.umd.js +45 -45
- package/package.json +5 -4
package/dist/ApplicaAdmin.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default ApplicaAdmin;
|
|
2
|
-
declare function ApplicaAdmin({ theme, apiUrl, defaultLocale, development, logoMain, logoIcon, menu, name, version, dataProvider, authProvider, ...props }: {
|
|
2
|
+
declare function ApplicaAdmin({ theme, apiUrl, defaultLocale, development, logoMain, logoIcon, menu, name, version, dataProvider, authProvider, notification, disableNotification, ...props }: {
|
|
3
3
|
[x: string]: any;
|
|
4
4
|
theme: any;
|
|
5
5
|
apiUrl: any;
|
|
@@ -12,6 +12,8 @@ declare function ApplicaAdmin({ theme, apiUrl, defaultLocale, development, logoM
|
|
|
12
12
|
version: any;
|
|
13
13
|
dataProvider: any;
|
|
14
14
|
authProvider: any;
|
|
15
|
+
notification: any;
|
|
16
|
+
disableNotification: any;
|
|
15
17
|
}): any;
|
|
16
18
|
declare namespace ApplicaAdmin {
|
|
17
19
|
const defaultProps: {
|
|
@@ -19,6 +21,8 @@ declare namespace ApplicaAdmin {
|
|
|
19
21
|
defaultLocale: string;
|
|
20
22
|
development: boolean;
|
|
21
23
|
version: string;
|
|
24
|
+
notification: string;
|
|
25
|
+
disableNotification: boolean;
|
|
22
26
|
store: any;
|
|
23
27
|
title: string;
|
|
24
28
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ApplicaAdmin.d.ts","sourceRoot":"","sources":["ApplicaAdmin.jsx"],"names":[],"mappings":";AA4BA
|
|
1
|
+
{"version":3,"file":"ApplicaAdmin.d.ts","sourceRoot":"","sources":["ApplicaAdmin.jsx"],"names":[],"mappings":";AA4BA;;;;;;;;;;;;;;;QAwFC"}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
export default HeaderContent;
|
|
2
|
-
declare function HeaderContent({ logoMain, logoIcon }: {
|
|
2
|
+
declare function HeaderContent({ logoMain, logoIcon, notification, disableNotification }: {
|
|
3
3
|
logoMain: any;
|
|
4
4
|
logoIcon: any;
|
|
5
|
+
notification: any;
|
|
6
|
+
disableNotification: any;
|
|
5
7
|
}): any;
|
|
6
8
|
declare namespace HeaderContent {
|
|
7
9
|
namespace propTypes {
|
|
8
10
|
const logoMain: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
9
11
|
const logoIcon: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
12
|
+
const notification: PropTypes.Requireable<string>;
|
|
13
|
+
const disableNotification: PropTypes.Requireable<boolean>;
|
|
10
14
|
}
|
|
11
15
|
}
|
|
12
16
|
import PropTypes from "prop-types";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.jsx"],"names":[],"mappings":";AAWA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.jsx"],"names":[],"mappings":";AAWA;;;;;QAgCC"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export default Header;
|
|
2
|
-
declare function Header({ open, logoMain, logoIcon, handleDrawerToggle }: {
|
|
2
|
+
declare function Header({ open, logoMain, logoIcon, handleDrawerToggle, notification, disableNotification }: {
|
|
3
3
|
open: any;
|
|
4
4
|
logoMain: any;
|
|
5
5
|
logoIcon: any;
|
|
6
6
|
handleDrawerToggle: any;
|
|
7
|
+
notification: any;
|
|
8
|
+
disableNotification: any;
|
|
7
9
|
}): any;
|
|
8
10
|
declare namespace Header {
|
|
9
11
|
namespace propTypes {
|
|
@@ -11,6 +13,8 @@ declare namespace Header {
|
|
|
11
13
|
const handleDrawerToggle: PropTypes.Requireable<(...args: any[]) => any>;
|
|
12
14
|
const logoMain: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
13
15
|
const logoIcon: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
16
|
+
const notification: PropTypes.Requireable<string>;
|
|
17
|
+
const disableNotification: PropTypes.Requireable<boolean>;
|
|
14
18
|
}
|
|
15
19
|
}
|
|
16
20
|
import PropTypes from "prop-types";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.jsx"],"names":[],"mappings":";AAYA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.jsx"],"names":[],"mappings":";AAYA;;;;;;;QAgEC"}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export default Layout;
|
|
2
|
-
declare function Layout({ children, name, version, logoMain, logoIcon }: {
|
|
2
|
+
declare function Layout({ children, name, version, logoMain, logoIcon, notification, disableNotification }: {
|
|
3
3
|
children: any;
|
|
4
4
|
name: any;
|
|
5
5
|
version: any;
|
|
6
6
|
logoMain: any;
|
|
7
7
|
logoIcon: any;
|
|
8
|
+
notification: any;
|
|
9
|
+
disableNotification: any;
|
|
8
10
|
}): any;
|
|
9
11
|
declare namespace Layout {
|
|
10
12
|
namespace propTypes {
|
|
@@ -13,6 +15,8 @@ declare namespace Layout {
|
|
|
13
15
|
const children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
14
16
|
const logoMain: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
15
17
|
const logoIcon: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
18
|
+
const notification: PropTypes.Requireable<string>;
|
|
19
|
+
const disableNotification: PropTypes.Requireable<boolean>;
|
|
16
20
|
}
|
|
17
21
|
}
|
|
18
22
|
import PropTypes from "prop-types";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.jsx"],"names":[],"mappings":";AAcA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.jsx"],"names":[],"mappings":";AAcA;;;;;;;;QAgHC"}
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
export default
|
|
2
|
-
declare
|
|
1
|
+
export default Datagrid;
|
|
2
|
+
declare function Datagrid(props: any): any;
|
|
3
|
+
declare namespace Datagrid {
|
|
4
|
+
const propTypes: any;
|
|
5
|
+
const defaultProps: any;
|
|
6
|
+
}
|
|
3
7
|
//# sourceMappingURL=Datagrid.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Datagrid.d.ts","sourceRoot":"","sources":["Datagrid.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Datagrid.d.ts","sourceRoot":"","sources":["Datagrid.jsx"],"names":[],"mappings":";AA+BA,2CAEE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"List.d.ts","sourceRoot":"","sources":["List.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"List.d.ts","sourceRoot":"","sources":["List.jsx"],"names":[],"mappings":";AAkEA,uCAQC"}
|