@applica-software-guru/react-admin 1.3.176 → 1.3.178
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 +0 -1
- package/dist/ApplicaAdmin.d.ts.map +1 -1
- package/dist/components/@extended/Breadcrumbs.d.ts +0 -28
- package/dist/components/@extended/Breadcrumbs.d.ts.map +1 -1
- package/dist/components/Layout/Navigation/NavCollapse.d.ts +10 -21
- package/dist/components/Layout/Navigation/NavCollapse.d.ts.map +1 -1
- package/dist/components/Layout/Navigation/NavGroup.d.ts +24 -22
- package/dist/components/Layout/Navigation/NavGroup.d.ts.map +1 -1
- package/dist/components/Layout/Navigation/NavItem.d.ts +5 -11
- package/dist/components/Layout/Navigation/NavItem.d.ts.map +1 -1
- package/dist/components/Layout/Navigation/NavList.d.ts +9 -0
- package/dist/components/Layout/Navigation/NavList.d.ts.map +1 -0
- package/dist/components/Layout/Navigation/Navigation.d.ts.map +1 -1
- package/dist/components/Layout/Navigation/index.d.ts +4 -0
- package/dist/components/Layout/Navigation/index.d.ts.map +1 -1
- package/dist/components/MainCard.d.ts.map +1 -1
- package/dist/components/Notification.d.ts +2 -2
- package/dist/components/ra-fields/ReadonlyField.d.ts.map +1 -1
- package/dist/components/ra-fields/ReferenceManyField.d.ts +1 -36
- package/dist/components/ra-fields/ReferenceManyField.d.ts.map +1 -1
- package/dist/components/ra-forms/Create.d.ts.map +1 -1
- package/dist/components/ra-forms/Edit.d.ts.map +1 -1
- package/dist/components/ra-forms/LongForm/BaseForm.d.ts.map +1 -1
- package/dist/components/ra-forms/SimpleForm.d.ts.map +1 -1
- package/dist/components/ra-forms/TabbedForm.d.ts +12 -3
- package/dist/components/ra-forms/TabbedForm.d.ts.map +1 -1
- package/dist/components/ra-forms/TableForm/TableFormIterator.d.ts +2 -1
- package/dist/components/ra-forms/TableForm/TableFormIterator.d.ts.map +1 -1
- package/dist/components/ra-forms/TableForm/TableFormIteratorItem.d.ts.map +1 -1
- package/dist/components/ra-inputs/BooleanInput.d.ts +1 -2
- package/dist/components/ra-inputs/BooleanInput.d.ts.map +1 -1
- package/dist/components/ra-inputs/LabeledInput.d.ts +0 -5
- package/dist/components/ra-inputs/LabeledInput.d.ts.map +1 -1
- package/dist/components/ra-inputs/ReferenceManyInput.d.ts +2 -27
- package/dist/components/ra-inputs/ReferenceManyInput.d.ts.map +1 -1
- package/dist/components/ra-lists/Datagrid/index.d.ts.map +1 -1
- package/dist/components/ra-lists/List.d.ts.map +1 -1
- package/dist/components/ra-lists/NotificationList/NotificationList.d.ts.map +1 -1
- package/dist/components/ra-lists/SimpleList.d.ts +15 -0
- package/dist/components/ra-lists/SimpleList.d.ts.map +1 -0
- package/dist/components/ra-lists/index.d.ts +4 -3
- package/dist/components/ra-lists/index.d.ts.map +1 -1
- package/dist/contexts/MenuConfigContext.d.ts +2 -26
- package/dist/contexts/MenuConfigContext.d.ts.map +1 -1
- package/dist/contexts/ThemeConfigContext.d.ts +10 -0
- package/dist/contexts/ThemeConfigContext.d.ts.map +1 -1
- package/dist/contexts/index.d.ts +0 -2
- package/dist/contexts/index.d.ts.map +1 -1
- package/dist/hooks/useMenuConfig.d.ts +1 -9
- package/dist/hooks/useMenuConfig.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/react-admin.cjs.js +55 -55
- package/dist/react-admin.cjs.js.map +1 -1
- package/dist/react-admin.es.js +7220 -7200
- package/dist/react-admin.es.js.map +1 -1
- package/dist/react-admin.umd.js +57 -57
- package/dist/react-admin.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/ApplicaAdmin.tsx +1 -24
- package/src/components/@extended/Breadcrumbs.jsx +0 -20
- package/src/components/Layout/Navigation/{NavCollapse.jsx → NavCollapse.tsx} +25 -20
- package/src/components/Layout/Navigation/{NavGroup.jsx → NavGroup.tsx} +35 -11
- package/src/components/Layout/Navigation/{NavItem.jsx → NavItem.tsx} +12 -9
- package/src/components/Layout/Navigation/NavList.tsx +23 -0
- package/src/components/Layout/Navigation/Navigation.tsx +7 -13
- package/src/components/Layout/Navigation/index.ts +4 -0
- package/src/components/MainCard.tsx +1 -7
- package/src/components/ra-fields/ReadonlyField.tsx +6 -1
- package/src/components/ra-fields/ReferenceManyField.tsx +40 -58
- package/src/components/ra-forms/Create.tsx +5 -2
- package/src/components/ra-forms/Edit.jsx +3 -0
- package/src/components/ra-forms/FormHeader.tsx +2 -2
- package/src/components/ra-forms/LongForm/BaseForm.tsx +9 -5
- package/src/components/ra-forms/SimpleForm.tsx +4 -3
- package/src/components/ra-forms/TabbedForm.tsx +51 -12
- package/src/components/ra-forms/TableForm/TableFormIterator.tsx +31 -15
- package/src/components/ra-forms/TableForm/TableFormIteratorItem.tsx +10 -9
- package/src/components/ra-inputs/BooleanInput.jsx +16 -29
- package/src/components/ra-inputs/LabeledInput.tsx +0 -5
- package/src/components/ra-lists/Datagrid/index.tsx +8 -2
- package/src/components/ra-lists/List.tsx +26 -12
- package/src/components/ra-lists/NotificationList/NotificationList.jsx +7 -10
- package/src/components/ra-lists/SimpleList.tsx +13 -0
- package/src/components/ra-lists/index.ts +4 -3
- package/src/contexts/MenuConfigContext.tsx +15 -12
- package/src/contexts/ThemeConfigContext.tsx +27 -2
- package/src/contexts/index.jsx +0 -2
- package/src/index.jsx +8 -8
- package/dist/contexts/MenuPropTypes.d.ts +0 -13
- package/dist/contexts/MenuPropTypes.d.ts.map +0 -1
- package/src/contexts/MenuPropTypes.jsx +0 -20
- /package/src/hooks/{useMenuConfig.jsx → useMenuConfig.ts} +0 -0
package/dist/ApplicaAdmin.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ApplicaAdmin.d.ts","sourceRoot":"","sources":["../../src/ApplicaAdmin.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AACrE,OAAO,
|
|
1
|
+
{"version":3,"file":"ApplicaAdmin.d.ts","sourceRoot":"","sources":["../../src/ApplicaAdmin.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AACrE,OAAO,EAAyC,WAAW,EAAuB,MAAM,YAAY,CAAC;AAGrG,OAAO,KAAkB,MAAM,OAAO,CAAC;AAGvC,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE1C,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAU7D,MAAM,MAAM,iBAAiB,GAAG,UAAU,GAAG;IAC3C;;;;;;OAMG;IACH,KAAK,EAAE,GAAG,CAAC;IACX;;;OAGG;IACH,WAAW,EAAE,WAAW,CAAC;IACzB;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,WAAW,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,QAAQ,EAAE,GAAG,CAAC;IACd;;OAEG;IACH,QAAQ,EAAE,GAAG,CAAC;IACd;;OAEG;IACH,IAAI,EAAE,SAAS,CAAC;IAChB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,YAAY,EAAE,YAAY,CAAC;IAC3B;;OAEG;IACH,YAAY,EAAE,YAAY,CAAC;IAC3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,kBAAkB,GAAG,SAAS,CAAC;IAC9C;;OAEG;IACH,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB;;;;;;OAMG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;;;;;OAMG;IACH,kBAAkB,EAAE,OAAO,CAAC;IAC5B;;;;;;;;;;OAUG;IACH,kBAAkB,EAAE,OAAO,CAAC;IAC5B;;;;;;;;;;OAUG;IACH,qBAAqB,EAAE,OAAO,CAAC;IAC/B;;OAEG;IACH,WAAW,EAAE,WAAW,CAAC;IACzB;;;OAGG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC7B;;OAEG;IACH,kBAAkB,EAAE,OAAO,CAAC;CAC7B,CAAC;AAEF;;;;;;GAMG;AACH,QAAA,MAAM,YAAY;gTAyBf,iBAAiB;;;;;;;;;;;;;;;;CAmGnB,CAAC;AAgBF,eAAe,YAAY,CAAC"}
|
|
@@ -21,33 +21,5 @@ declare namespace Breadcrumbs {
|
|
|
21
21
|
const home: string;
|
|
22
22
|
const mode: string;
|
|
23
23
|
}
|
|
24
|
-
namespace propTypes {
|
|
25
|
-
const home_1: PropTypes.Requireable<NonNullable<string | boolean | null | undefined>>;
|
|
26
|
-
export { home_1 as home };
|
|
27
|
-
export const card: PropTypes.Requireable<boolean>;
|
|
28
|
-
export const divider: PropTypes.Requireable<boolean>;
|
|
29
|
-
export const icon: PropTypes.Requireable<boolean>;
|
|
30
|
-
export const icons: PropTypes.Requireable<boolean>;
|
|
31
|
-
export const maxItems: PropTypes.Requireable<number>;
|
|
32
|
-
export const navigation: PropTypes.Requireable<object>;
|
|
33
|
-
export const rightAlign: PropTypes.Requireable<boolean>;
|
|
34
|
-
export const separator: PropTypes.Requireable<object>;
|
|
35
|
-
export const title: PropTypes.Requireable<boolean>;
|
|
36
|
-
export const titleBottom: PropTypes.Requireable<boolean>;
|
|
37
|
-
export const sx: PropTypes.Requireable<NonNullable<string | object | null | undefined>>;
|
|
38
|
-
export const breadcrumbs: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
39
|
-
id: PropTypes.Requireable<string>;
|
|
40
|
-
title: PropTypes.Requireable<string>;
|
|
41
|
-
type: PropTypes.Requireable<string>;
|
|
42
|
-
icon: PropTypes.Requireable<PropTypes.ReactComponentLike>;
|
|
43
|
-
url: PropTypes.Requireable<string>;
|
|
44
|
-
parent: PropTypes.Requireable<PropTypes.InferProps<PropTypes.ValidationMap<any>>>;
|
|
45
|
-
children: PropTypes.Requireable<any[]>;
|
|
46
|
-
resource: PropTypes.Requireable<boolean>;
|
|
47
|
-
}> | null | undefined)[]>;
|
|
48
|
-
const mode_1: PropTypes.Requireable<string>;
|
|
49
|
-
export { mode_1 as mode };
|
|
50
|
-
}
|
|
51
24
|
}
|
|
52
|
-
import PropTypes from 'prop-types';
|
|
53
25
|
//# sourceMappingURL=Breadcrumbs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Breadcrumbs.d.ts","sourceRoot":"","sources":["../../../../src/components/@extended/Breadcrumbs.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Breadcrumbs.d.ts","sourceRoot":"","sources":["../../../../src/components/@extended/Breadcrumbs.jsx"],"names":[],"mappings":";AA8BA;;;;;;;;;;;;;;;;4CAwPC"}
|
|
@@ -1,23 +1,12 @@
|
|
|
1
|
-
export
|
|
2
|
-
declare function NavCollapse({ menu, level, parentId, setSelectedItems, selectedItems, setSelectedLevel, selectedLevel }: {
|
|
1
|
+
export type NavCollapseProps = {
|
|
3
2
|
menu: any;
|
|
4
|
-
level:
|
|
5
|
-
parentId:
|
|
6
|
-
setSelectedItems:
|
|
7
|
-
selectedItems:
|
|
8
|
-
setSelectedLevel:
|
|
9
|
-
selectedLevel:
|
|
10
|
-
}
|
|
11
|
-
declare
|
|
12
|
-
|
|
13
|
-
const menu: PropTypes.Requireable<object>;
|
|
14
|
-
const level: PropTypes.Requireable<number>;
|
|
15
|
-
const parentId: PropTypes.Requireable<string>;
|
|
16
|
-
const setSelectedItems: PropTypes.Requireable<(...args: any[]) => any>;
|
|
17
|
-
const selectedItems: PropTypes.Requireable<string>;
|
|
18
|
-
const setSelectedLevel: PropTypes.Requireable<(...args: any[]) => any>;
|
|
19
|
-
const selectedLevel: PropTypes.Requireable<number>;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
import PropTypes from 'prop-types';
|
|
3
|
+
level: number;
|
|
4
|
+
parentId: string;
|
|
5
|
+
setSelectedItems: (value: string) => void;
|
|
6
|
+
selectedItems: string;
|
|
7
|
+
setSelectedLevel: (value: number) => void;
|
|
8
|
+
selectedLevel: number;
|
|
9
|
+
};
|
|
10
|
+
declare const NavCollapse: ({ menu, level, parentId, setSelectedItems, selectedItems, setSelectedLevel, selectedLevel }: NavCollapseProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default NavCollapse;
|
|
23
12
|
//# sourceMappingURL=NavCollapse.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NavCollapse.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Navigation/NavCollapse.
|
|
1
|
+
{"version":3,"file":"NavCollapse.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Navigation/NavCollapse.tsx"],"names":[],"mappings":"AA6CA,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,EAAE,GAAG,CAAC;IACV,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1C,aAAa,EAAE,MAAM,CAAC;IACtB,gBAAgB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1C,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,QAAA,MAAM,WAAW,gGAAiG,gBAAgB,4CA+WjI,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -1,24 +1,26 @@
|
|
|
1
|
-
export function NavGroup({ item, lastItem, remItems, lastItemId, setSelectedItems, selectedItems, setSelectedLevel, selectedLevel }: {
|
|
2
|
-
item: any;
|
|
3
|
-
lastItem: any;
|
|
4
|
-
remItems: any;
|
|
5
|
-
lastItemId: any;
|
|
6
|
-
setSelectedItems: any;
|
|
7
|
-
selectedItems: any;
|
|
8
|
-
setSelectedLevel: any;
|
|
9
|
-
selectedLevel: any;
|
|
10
|
-
}): import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export namespace NavGroup {
|
|
12
|
-
namespace propTypes {
|
|
13
|
-
const item: PropTypes.Requireable<object>;
|
|
14
|
-
const lastItem: PropTypes.Requireable<number>;
|
|
15
|
-
const remItems: PropTypes.Requireable<any[]>;
|
|
16
|
-
const lastItemId: PropTypes.Requireable<string>;
|
|
17
|
-
const setSelectedItems: PropTypes.Requireable<(...args: any[]) => any>;
|
|
18
|
-
const selectedItems: PropTypes.Requireable<string>;
|
|
19
|
-
const setSelectedLevel: PropTypes.Requireable<(...args: any[]) => any>;
|
|
20
|
-
const selectedLevel: PropTypes.Requireable<number>;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
1
|
import PropTypes from 'prop-types';
|
|
2
|
+
export type NavGroupProps = {
|
|
3
|
+
item: any;
|
|
4
|
+
lastItem?: number | undefined;
|
|
5
|
+
remItems: any[];
|
|
6
|
+
lastItemId: string;
|
|
7
|
+
setSelectedItems: (value: string) => void;
|
|
8
|
+
selectedItems: string;
|
|
9
|
+
setSelectedLevel: (value: number) => void;
|
|
10
|
+
selectedLevel: number;
|
|
11
|
+
};
|
|
12
|
+
declare const NavGroup: {
|
|
13
|
+
({ item, lastItem, remItems, lastItemId, setSelectedItems, selectedItems, setSelectedLevel, selectedLevel }: NavGroupProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
propTypes: {
|
|
15
|
+
item: PropTypes.Requireable<object>;
|
|
16
|
+
lastItem: PropTypes.Requireable<number>;
|
|
17
|
+
remItems: PropTypes.Requireable<any[]>;
|
|
18
|
+
lastItemId: PropTypes.Requireable<string>;
|
|
19
|
+
setSelectedItems: PropTypes.Requireable<(...args: any[]) => any>;
|
|
20
|
+
selectedItems: PropTypes.Requireable<string>;
|
|
21
|
+
setSelectedLevel: PropTypes.Requireable<(...args: any[]) => any>;
|
|
22
|
+
selectedLevel: PropTypes.Requireable<number>;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export { NavGroup };
|
|
24
26
|
//# sourceMappingURL=NavGroup.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NavGroup.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Navigation/NavGroup.
|
|
1
|
+
{"version":3,"file":"NavGroup.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Navigation/NavGroup.tsx"],"names":[],"mappings":"AAQA,OAAO,SAAS,MAAM,YAAY,CAAC;AA4BnC,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,EAAE,GAAG,CAAC;IACV,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC9B,QAAQ,EAAE,GAAG,EAAE,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,gBAAgB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1C,aAAa,EAAE,MAAM,CAAC;IACtB,gBAAgB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1C,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,QAAA,MAAM,QAAQ;iHASX,aAAa;;;;;;;;;;;CAwRf,CAAC;AAaF,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -1,13 +1,7 @@
|
|
|
1
|
-
export
|
|
2
|
-
declare function NavItem({ item, level }: {
|
|
1
|
+
export type NavItemProps = {
|
|
3
2
|
item: any;
|
|
4
|
-
level:
|
|
5
|
-
}
|
|
6
|
-
declare
|
|
7
|
-
|
|
8
|
-
const item: PropTypes.Requireable<object>;
|
|
9
|
-
const level: PropTypes.Requireable<number>;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
import PropTypes from 'prop-types';
|
|
3
|
+
level: number;
|
|
4
|
+
};
|
|
5
|
+
declare const NavItem: ({ item, level }: NavItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default NavItem;
|
|
13
7
|
//# sourceMappingURL=NavItem.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NavItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Navigation/NavItem.
|
|
1
|
+
{"version":3,"file":"NavItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Navigation/NavItem.tsx"],"names":[],"mappings":"AAQA,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,GAAG,CAAC;IACV,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AACF,QAAA,MAAM,OAAO,oBAAqB,YAAY,4CAsO7C,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { SxProps } from '@mui/material';
|
|
3
|
+
export type NavListProps = {
|
|
4
|
+
sx?: SxProps;
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
};
|
|
7
|
+
declare const NavList: (props: NavListProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default NavList;
|
|
9
|
+
//# sourceMappingURL=NavList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NavList.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Navigation/NavList.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAO,OAAO,EAAE,MAAM,eAAe,CAAC;AAI7C,MAAM,MAAM,YAAY,GAAG;IACzB,EAAE,CAAC,EAAE,OAAO,CAAC;IACb,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAEF,QAAA,MAAM,OAAO,UAAW,YAAY,4CAWnC,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Navigation.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Navigation/Navigation.tsx"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"Navigation.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Navigation/Navigation.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAc,MAAM,eAAe,CAAC;AAMpD,KAAK,gBAAgB,GAAG;IACtB,EAAE,CAAC,EAAE,OAAO,CAAC;CACd,CAAC;AAIF,iBAAS,UAAU,CAAC,KAAK,EAAE,gBAAgB,2CAqD1C;AAED,OAAO,EAAE,UAAU,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Navigation/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Navigation/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MainCard.d.ts","sourceRoot":"","sources":["../../../src/components/MainCard.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAqB,MAAM,sBAAsB,CAAC;AAUlE,MAAM,MAAM,aAAa,GAAG;IAC1B;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC,SAAS,EAAE,CAAC;IAC/C;;OAEG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,MAAM,CAAC;IACrC;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,GAAG,GAAG,CAAC;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,MAAM,GAAG,MAAM,CAAC;IAC9C;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,EAAE,CAAC,EAAE,OAAO,GAAG,GAAG,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,MAAM,GAAG,MAAM,CAAC;IAC1C;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,WAAW,CAAC;CAC7C,CAAC;AAEF,QAAA,MAAM,QAAQ,
|
|
1
|
+
{"version":3,"file":"MainCard.d.ts","sourceRoot":"","sources":["../../../src/components/MainCard.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAqB,MAAM,sBAAsB,CAAC;AAUlE,MAAM,MAAM,aAAa,GAAG;IAC1B;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC,SAAS,EAAE,CAAC;IAC/C;;OAEG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,MAAM,CAAC;IACrC;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,GAAG,GAAG,CAAC;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,MAAM,GAAG,MAAM,CAAC;IAC9C;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,EAAE,CAAC,EAAE,OAAO,GAAG,GAAG,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,MAAM,GAAG,MAAM,CAAC;IAC1C;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,WAAW,CAAC;CAC7C,CAAC;AAEF,QAAA,MAAM,QAAQ,mGA2Eb,CAAC;AAqBF,eAAe,QAAQ,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default ApplicaStyledNotification;
|
|
2
|
-
declare const ApplicaStyledNotification: import("@emotion/styled").StyledComponent<Pick<Pick<import("react-admin").NotificationProps, "children" | "title" | "ref" | "slot" | "style" | "type" | "
|
|
2
|
+
declare const ApplicaStyledNotification: import("@emotion/styled").StyledComponent<Pick<Pick<import("react-admin").NotificationProps, "children" | "title" | "ref" | "slot" | "style" | "type" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "action" | "anchorOrigin" | "autoHideDuration" | "ClickAwayListenerProps" | "ContentProps" | "disableWindowBlurListener" | "message" | "onClose" | "resumeHideDuration" | "sx" | "TransitionComponent" | "transitionDuration" | "TransitionProps" | "multiLine"> & Pick<import("prop-types").InferProps<{
|
|
3
3
|
type: import("prop-types").Requireable<string>;
|
|
4
4
|
autoHideDuration: import("prop-types").Requireable<number>;
|
|
5
5
|
multiLine: import("prop-types").Requireable<boolean>;
|
|
6
|
-
}>, never> & Pick<import("react-admin").NotificationProps, "children" | "title" | "ref" | "slot" | "style" | "key" | "
|
|
6
|
+
}>, never> & Pick<import("react-admin").NotificationProps, "children" | "title" | "ref" | "slot" | "style" | "key" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "action" | "anchorOrigin" | "ClickAwayListenerProps" | "ContentProps" | "disableWindowBlurListener" | "message" | "onClose" | "resumeHideDuration" | "sx" | "TransitionComponent" | "transitionDuration" | "TransitionProps">, keyof import("react-admin").NotificationProps> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
|
|
7
7
|
//# sourceMappingURL=Notification.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ReadonlyField.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-fields/ReadonlyField.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA4B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ReadonlyField.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-fields/ReadonlyField.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA4B,MAAM,OAAO,CAAC;AA2BjD,MAAM,MAAM,eAAe,GAAG;IAC5B,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,GAAG,CAAC;IAClB,MAAM,EAAE,GAAG,CAAC;CACb,CAAC;AAQF,MAAM,MAAM,mBAAmB,GAAG;IAChC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC;IACxB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAcF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,YAAY,EAAE,GAAG,CAAC;IAClB,OAAO,EAAE,MAAM,GAAG,OAAO,GAAG,CAAC,CAAC,MAAM,EAAE,GAAG,KAAK,MAAM,CAAC,CAAC;IACtD,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,KAAK,CAAC,YAAY,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IACvC,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF,QAAA,MAAM,aAAa,2EAOhB,kBAAkB,4CAkCpB,CAAC;AACF,eAAe,aAAa,CAAC"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import PropTypes from 'prop-types';
|
|
2
1
|
import { ReferenceManyFieldProps as RaReferenceManyFieldProps } from 'react-admin';
|
|
3
2
|
import React from 'react';
|
|
4
3
|
export type StyledDivProps = {
|
|
@@ -6,14 +5,6 @@ export type StyledDivProps = {
|
|
|
6
5
|
className?: string;
|
|
7
6
|
};
|
|
8
7
|
export type ReferenceManyFieldProps = RaReferenceManyFieldProps & {
|
|
9
|
-
/**
|
|
10
|
-
* Default false, serve ad aggiungere un margine attorno al componente.
|
|
11
|
-
*/
|
|
12
|
-
margin?: boolean;
|
|
13
|
-
/**
|
|
14
|
-
* Default false, serve ad aggiungere un bordo inferiore al componente.
|
|
15
|
-
*/
|
|
16
|
-
border?: boolean;
|
|
17
8
|
/**
|
|
18
9
|
* Default undefined, serve ad aggiungere un padding superiore al componente per consentire
|
|
19
10
|
* la visualizzazione della toolbar delle bulk action buttons.
|
|
@@ -46,32 +37,6 @@ export type StyledRootProps = ReferenceManyFieldProps & {
|
|
|
46
37
|
* @param props {ReferenceManyFieldProps}
|
|
47
38
|
* @returns {JSX.Element}
|
|
48
39
|
*/
|
|
49
|
-
declare const ReferenceManyField:
|
|
50
|
-
(props: ReferenceManyFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
51
|
-
defaultProps: {
|
|
52
|
-
margin: boolean;
|
|
53
|
-
border: boolean;
|
|
54
|
-
};
|
|
55
|
-
propTypes: {
|
|
56
|
-
margin: PropTypes.Requireable<boolean>;
|
|
57
|
-
border: PropTypes.Requireable<boolean>;
|
|
58
|
-
children: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
|
|
59
|
-
className: PropTypes.Requireable<string>;
|
|
60
|
-
filter: PropTypes.Requireable<object>;
|
|
61
|
-
label: PropTypes.Requireable<NonNullable<string | boolean | PropTypes.ReactElementLike>>;
|
|
62
|
-
perPage: PropTypes.Requireable<number>;
|
|
63
|
-
record: PropTypes.Requireable<any>;
|
|
64
|
-
reference: PropTypes.Validator<string>;
|
|
65
|
-
resource: PropTypes.Requireable<string>;
|
|
66
|
-
sortBy: PropTypes.Requireable<string>;
|
|
67
|
-
sortByOrder: PropTypes.Requireable<"ASC" | "DESC">;
|
|
68
|
-
source: PropTypes.Requireable<string>;
|
|
69
|
-
sort: PropTypes.Requireable<Required<PropTypes.InferProps<{
|
|
70
|
-
field: PropTypes.Requireable<string>;
|
|
71
|
-
order: PropTypes.Requireable<"ASC" | "DESC">;
|
|
72
|
-
}>>>;
|
|
73
|
-
target: PropTypes.Validator<string>;
|
|
74
|
-
};
|
|
75
|
-
};
|
|
40
|
+
declare const ReferenceManyField: (props: ReferenceManyFieldProps) => import("react/jsx-runtime").JSX.Element;
|
|
76
41
|
export default ReferenceManyField;
|
|
77
42
|
//# sourceMappingURL=ReferenceManyField.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ReferenceManyField.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-fields/ReferenceManyField.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ReferenceManyField.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-fields/ReferenceManyField.tsx"],"names":[],"mappings":"AACA,OAAO,EAA0D,uBAAuB,IAAI,yBAAyB,EAAE,MAAM,aAAa,CAAC;AAE3I,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,MAAM,cAAc,GAAG;IAC3B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG,yBAAyB,GAAG;IAChE;;;OAGG;IACH,iBAAiB,CAAC,EAAE,OAAO,GAAG,GAAG,CAAC;CACnC,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,uBAAuB,GAAG;IACtD,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,iBAAiB,CAAC,EAAE,OAAO,GAAG,GAAG,CAAC;CACnC,CAAC;AA4EF;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,QAAA,MAAM,kBAAkB,UAAW,uBAAuB,4CAKzD,CAAC;AAEF,eAAe,kBAAkB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Create.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-forms/Create.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAiF,MAAM,aAAa,CAAC;AAGzH,OAAO,EAAY,eAAe,EAAE,MAAM,aAAa,CAAC;AAYxD,KAAK,qBAAqB,GAAG,MAAM,CAAC;AAoDpC,iBAAS,wBAAwB,IAAI,qBAAqB,CAEzD;AAED,QAAA,MAAM,YAAY;cA7DN,MAAM,SAAS;;;
|
|
1
|
+
{"version":3,"file":"Create.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-forms/Create.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAiF,MAAM,aAAa,CAAC;AAGzH,OAAO,EAAY,eAAe,EAAE,MAAM,aAAa,CAAC;AAYxD,KAAK,qBAAqB,GAAG,MAAM,CAAC;AAoDpC,iBAAS,wBAAwB,IAAI,qBAAqB,CAEzD;AAED,QAAA,MAAM,YAAY;cA7DN,MAAM,SAAS;;;yKAmFxB,CAAC;AAEJ,eAAe,YAAY,CAAC;AAE5B,OAAO,EAAE,wBAAwB,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Edit.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-forms/Edit.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Edit.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-forms/Edit.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;;;;;;;;;4OAkCI"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BaseForm.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-forms/LongForm/BaseForm.tsx"],"names":[],"mappings":"AACA,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAK9C,KAAK,cAAc,GAAG,SAAS,GAAG;IAChC,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;
|
|
1
|
+
{"version":3,"file":"BaseForm.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-forms/LongForm/BaseForm.tsx"],"names":[],"mappings":"AACA,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAK9C,KAAK,cAAc,GAAG,SAAS,GAAG;IAChC,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAkCF,iBAAS,QAAQ,CAAC,KAAK,EAAE,cAAc,2CAYtC;AAED,YAAY,EAAE,cAAc,EAAE,CAAC;AAE/B,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SimpleForm.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-forms/SimpleForm.tsx"],"names":[],"mappings":";AAAA,OAAO,EAGL,eAAe,IAAI,iBAAiB,EAGrC,MAAM,aAAa,CAAC;AAIrB,OAAO,SAAS,MAAM,YAAY,CAAC;AAiBnC,MAAM,MAAM,eAAe,GAAG,iBAAiB,GAAG;IAChD,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IACrC,KAAK,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IACjC,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;CACtC,CAAC;AAEF;;;GAGG;AACH,QAAA,MAAM,UAAU;oEAAmE,eAAe,GAAG,WAAW;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"SimpleForm.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-forms/SimpleForm.tsx"],"names":[],"mappings":";AAAA,OAAO,EAGL,eAAe,IAAI,iBAAiB,EAGrC,MAAM,aAAa,CAAC;AAIrB,OAAO,SAAS,MAAM,YAAY,CAAC;AAiBnC,MAAM,MAAM,eAAe,GAAG,iBAAiB,GAAG;IAChD,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IACrC,KAAK,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IACjC,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;CACtC,CAAC;AAEF;;;GAGG;AACH,QAAA,MAAM,UAAU;oEAAmE,eAAe,GAAG,WAAW;;;;;;;;;;;;;;;;;;;;;;CAyB/G,CAAC;AA6BF,eAAe,UAAU,CAAC"}
|
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { TabbedFormProps as RaTabbedFormProps } from 'react-admin';
|
|
2
|
+
import { TabbedFormProps as RaTabbedFormProps, TabProps } from 'react-admin';
|
|
3
3
|
export type TabbedFormProps = RaTabbedFormProps & {
|
|
4
4
|
modal?: boolean;
|
|
5
5
|
content?: boolean;
|
|
6
6
|
subheader?: string | React.ReactNode;
|
|
7
7
|
title?: string | React.ReactNode | boolean;
|
|
8
8
|
secondary?: string | React.ReactNode;
|
|
9
|
+
/**
|
|
10
|
+
* Indicates if the form should have no padding.
|
|
11
|
+
* If true, the form will have no padding and you will be **responsible** for adding padding to the form's tabs.
|
|
12
|
+
*/
|
|
13
|
+
noPadding?: boolean;
|
|
9
14
|
};
|
|
10
|
-
declare const
|
|
15
|
+
declare const TabbedForm: {
|
|
11
16
|
(props: TabbedFormProps): import("react/jsx-runtime").JSX.Element;
|
|
12
17
|
defaultProps: {
|
|
13
18
|
toolbar: import("react/jsx-runtime").JSX.Element;
|
|
@@ -30,6 +35,10 @@ declare const ApplicaTabbedForm: {
|
|
|
30
35
|
};
|
|
31
36
|
displayName: string;
|
|
32
37
|
};
|
|
38
|
+
TabStack: ({ children, ...props }: StackTabProps) => JSX.Element;
|
|
33
39
|
};
|
|
34
|
-
export
|
|
40
|
+
export type StackTabProps = TabProps & {
|
|
41
|
+
children: React.ReactNode;
|
|
42
|
+
};
|
|
43
|
+
export default TabbedForm;
|
|
35
44
|
//# sourceMappingURL=TabbedForm.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TabbedForm.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-forms/TabbedForm.tsx"],"names":[],"mappings":";AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"TabbedForm.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-forms/TabbedForm.tsx"],"names":[],"mappings":";AAAA,OAAO,EAEL,eAAe,IAAI,iBAAiB,EAGpC,QAAQ,EACT,MAAM,aAAa,CAAC;AAQrB,MAAM,MAAM,eAAe,GAAG,iBAAiB,GAAG;IAChD,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IACrC,KAAK,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,GAAG,OAAO,CAAC;IAC3C,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IACrC;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC;AAmBF,QAAA,MAAM,UAAU;YAAW,eAAe;;;;;;;;;;;;;;;;;;;;;;uCA0CA,aAAa,KAAG,WAAW;CATpE,CAAC;AACF,MAAM,MAAM,aAAa,GAAG,QAAQ,GAAG;IACrC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AA4BF,eAAe,UAAU,CAAC"}
|
|
@@ -22,7 +22,7 @@ declare const StyledTableFormIterator: import("@emotion/styled").StyledComponent
|
|
|
22
22
|
TransitionProps: PropTypes.Requireable<PropTypes.InferProps<{}>>;
|
|
23
23
|
empty: PropTypes.Requireable<NonNullable<PropTypes.ReactNodeLike>>;
|
|
24
24
|
template: PropTypes.Requireable<object>;
|
|
25
|
-
}>, "translate" | "TransitionProps" | "field" | "formState" | "fieldState"> & Pick<TableFormIteratorProps, "replace" | "meta" | "sx" | "move" | "remove" | "append" | "prepend" | "swap" | "insert" | "update" | "disableActions">, keyof TableFormIteratorProps> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
25
|
+
}>, "translate" | "TransitionProps" | "field" | "formState" | "fieldState"> & Pick<TableFormIteratorProps, "replace" | "meta" | "sx" | "move" | "inset" | "remove" | "append" | "prepend" | "swap" | "insert" | "update" | "disableActions">, keyof TableFormIteratorProps> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
26
26
|
export interface TableFormIteratorProps extends Partial<UseFieldArrayReturn> {
|
|
27
27
|
addButton?: ReactElement;
|
|
28
28
|
children?: ReactNode;
|
|
@@ -42,6 +42,7 @@ export interface TableFormIteratorProps extends Partial<UseFieldArrayReturn> {
|
|
|
42
42
|
source?: string;
|
|
43
43
|
sx?: SxProps;
|
|
44
44
|
empty: ReactNode | string;
|
|
45
|
+
inset?: boolean;
|
|
45
46
|
}
|
|
46
47
|
export default StyledTableFormIterator;
|
|
47
48
|
//# sourceMappingURL=TableFormIterator.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableFormIterator.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-forms/TableForm/TableFormIterator.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAY,YAAY,EAAE,SAAS,EAA0C,MAAM,OAAO,CAAC;AAElG,OAAO,EAIL,OAAO,EAQR,MAAM,eAAe,CAAC;AACvB,OAAO,EAAoB,QAAQ,EAAqD,MAAM,SAAS,CAAC;AAIxG,OAAO,SAAS,MAAM,YAAY,CAAC;AAGnC,OAAO,EAAE,mBAAmB,EAAkB,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"TableFormIterator.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-forms/TableForm/TableFormIterator.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAY,YAAY,EAAE,SAAS,EAA0C,MAAM,OAAO,CAAC;AAElG,OAAO,EAIL,OAAO,EAQR,MAAM,eAAe,CAAC;AACvB,OAAO,EAAoB,QAAQ,EAAqD,MAAM,SAAS,CAAC;AAIxG,OAAO,SAAS,MAAM,YAAY,CAAC;AAGnC,OAAO,EAAE,mBAAmB,EAAkB,MAAM,iBAAiB,CAAC;AAgQtE,QAAA,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;gWAe1B,CAAC;AA6BJ,MAAM,WAAW,sBAAuB,SAAQ,OAAO,CAAC,mBAAmB,CAAC;IAC1E,SAAS,CAAC,EAAE,YAAY,CAAC;IACzB,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE;QAEL,KAAK,CAAC,EAAE,GAAG,CAAC;QACZ,YAAY,CAAC,EAAE,OAAO,CAAC;KACxB,CAAC;IACF,MAAM,CAAC,EAAE,QAAQ,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,EAAE,CAAC,EAAE,OAAO,CAAC;IACb,KAAK,EAAE,SAAS,GAAG,MAAM,CAAC;IAC1B,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,eAAe,uBAAuB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableFormIteratorItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-forms/TableForm/TableFormIteratorItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAY,YAAY,EAAE,SAAS,EAAyC,MAAM,OAAO,CAAC;AAKjG,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"TableFormIteratorItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-forms/TableForm/TableFormIteratorItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAY,YAAY,EAAE,SAAS,EAAyC,MAAM,OAAO,CAAC;AAKjG,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAInC,eAAO,MAAM,qBAAqB,4FAkEhC,CAAC;AAEH,MAAM,MAAM,0BAA0B,GAAG;IACvC,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACvC,MAAM,EAAE,QAAQ,CAAC;IACjB,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export default BooleanInput;
|
|
2
|
-
declare function BooleanInput({
|
|
2
|
+
declare function BooleanInput({ ...props }: {
|
|
3
3
|
[x: string]: any;
|
|
4
|
-
horizontal: any;
|
|
5
4
|
}): import("react/jsx-runtime").JSX.Element;
|
|
6
5
|
declare namespace BooleanInput {
|
|
7
6
|
const defaultProps: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BooleanInput.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-inputs/BooleanInput.jsx"],"names":[],"mappings":";AAaA
|
|
1
|
+
{"version":3,"file":"BooleanInput.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-inputs/BooleanInput.jsx"],"names":[],"mappings":";AAaA;;4CAkBC;;;;;;;;;;;;;;;;;;;sBA5BqB,YAAY"}
|
|
@@ -13,11 +13,6 @@ export type LabeledInputProps = InputProps & {
|
|
|
13
13
|
helperText?: string | boolean;
|
|
14
14
|
divider?: boolean;
|
|
15
15
|
};
|
|
16
|
-
/**
|
|
17
|
-
* Consente di disegnare un input con una label e un eventuale messaggio di aiuto.
|
|
18
|
-
*
|
|
19
|
-
* @returns {JSX.Element}
|
|
20
|
-
*/
|
|
21
16
|
declare const LabeledInput: {
|
|
22
17
|
({ label, children, display, helperText, sx, addLabel, divider, ...props }: LabeledInputProps): JSX.Element;
|
|
23
18
|
propTypes: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LabeledInput.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-inputs/LabeledInput.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,UAAU,EAAY,MAAM,aAAa,CAAC;AAG/D,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,MAAM,iBAAiB,GAAG,UAAU,GAAG;IAC3C,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,QAAQ,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC;IAC9B,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC;IAC7B,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAC9B,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF
|
|
1
|
+
{"version":3,"file":"LabeledInput.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-inputs/LabeledInput.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,UAAU,EAAY,MAAM,aAAa,CAAC;AAG/D,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,MAAM,iBAAiB,GAAG,UAAU,GAAG;IAC3C,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,QAAQ,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC;IAC9B,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC;IAC7B,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAC9B,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,QAAA,MAAM,YAAY;gFAA+E,iBAAiB,GAAG,WAAW;;;;;;;;;;;;;;;;;CA+D/H,CAAC;AAoBF,eAAe,YAAY,CAAC"}
|
|
@@ -8,32 +8,7 @@ declare function ReferenceManyInput({ reference, target, children, filters, acti
|
|
|
8
8
|
actions: any;
|
|
9
9
|
}): import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
declare namespace ReferenceManyInput {
|
|
11
|
-
const propTypes:
|
|
12
|
-
|
|
13
|
-
reference: PropTypes.Validator<string>;
|
|
14
|
-
target: PropTypes.Validator<string>;
|
|
15
|
-
filters: PropTypes.Requireable<NonNullable<PropTypes.ReactElementLike | ((...args: any[]) => any) | PropTypes.ReactNodeLike[] | null | undefined>>;
|
|
16
|
-
actions: PropTypes.Requireable<NonNullable<PropTypes.ReactElementLike | ((...args: any[]) => any) | null | undefined>>;
|
|
17
|
-
margin: PropTypes.Requireable<boolean>;
|
|
18
|
-
border: PropTypes.Requireable<boolean>;
|
|
19
|
-
className: PropTypes.Requireable<string>;
|
|
20
|
-
filter: PropTypes.Requireable<object>;
|
|
21
|
-
label: PropTypes.Requireable<NonNullable<string | boolean | PropTypes.ReactElementLike>>;
|
|
22
|
-
perPage: PropTypes.Requireable<number>;
|
|
23
|
-
record: PropTypes.Requireable<any>;
|
|
24
|
-
resource: PropTypes.Requireable<string>;
|
|
25
|
-
sortBy: PropTypes.Requireable<string>;
|
|
26
|
-
sortByOrder: PropTypes.Requireable<"ASC" | "DESC">;
|
|
27
|
-
source: PropTypes.Requireable<string>;
|
|
28
|
-
sort: PropTypes.Requireable<Required<PropTypes.InferProps<{
|
|
29
|
-
field: PropTypes.Requireable<string>;
|
|
30
|
-
order: PropTypes.Requireable<"ASC" | "DESC">;
|
|
31
|
-
}>>>;
|
|
32
|
-
};
|
|
33
|
-
const defaultProps: {
|
|
34
|
-
margin: boolean;
|
|
35
|
-
border: boolean;
|
|
36
|
-
};
|
|
11
|
+
const propTypes: any;
|
|
12
|
+
const defaultProps: any;
|
|
37
13
|
}
|
|
38
|
-
import PropTypes from 'prop-types';
|
|
39
14
|
//# sourceMappingURL=ReferenceManyInput.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ReferenceManyInput.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-inputs/ReferenceManyInput.jsx"],"names":[],"mappings":";AAMA;;;;;;;4CAWC
|
|
1
|
+
{"version":3,"file":"ReferenceManyInput.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-inputs/ReferenceManyInput.jsx"],"names":[],"mappings":";AAMA;;;;;;;4CAWC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/Datagrid/index.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/Datagrid/index.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAsC5C;;;;;;;;;GASG;AACH,QAAA,MAAM,QAAQ,UAAW,aAAa,KAAG,WAGxC,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"List.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-lists/List.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAiB,SAAS,EAAE,MAAM,aAAa,CAAC;AAIvD,OAAO,SAAS,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"List.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-lists/List.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAiB,SAAS,EAAE,MAAM,aAAa,CAAC;AAIvD,OAAO,SAAS,MAAM,YAAY,CAAC;AAwNnC,QAAA,MAAM,IAAI;YAAW,SAAS,GAAG,WAAW;;;;;;;;;;;;;;;;;;;;;;CAM3C,CAAC;AAMF,eAAe,IAAI,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NotificationList.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/NotificationList/NotificationList.jsx"],"names":[],"mappings":";AASA;;
|
|
1
|
+
{"version":3,"file":"NotificationList.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/NotificationList/NotificationList.jsx"],"names":[],"mappings":";AASA;;4CAwBC"}
|