@applica-software-guru/react-admin 1.4.200 → 1.4.201
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/components/ra-buttons/EditInDialogButton.d.ts +3 -2
- package/dist/components/ra-buttons/EditInDialogButton.d.ts.map +1 -1
- package/dist/components/ra-forms/Create.d.ts +1 -1
- package/dist/react-admin.cjs.js +1 -1
- package/dist/react-admin.cjs.js.map +1 -1
- package/dist/react-admin.es.js +1059 -1053
- package/dist/react-admin.es.js.map +1 -1
- package/dist/react-admin.umd.js +1 -1
- package/dist/react-admin.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ra-buttons/EditInDialogButton.tsx +25 -13
|
@@ -1,12 +1,13 @@
|
|
|
1
|
+
import { EditControllerProps } from 'react-admin';
|
|
1
2
|
import React from 'react';
|
|
2
3
|
import { Breakpoint } from '@mui/material';
|
|
3
|
-
export type EditInDialogButtonProps = {
|
|
4
|
+
export type EditInDialogButtonProps = EditControllerProps & {
|
|
4
5
|
fullWidth?: boolean;
|
|
5
6
|
maxWidth?: false | Breakpoint | undefined;
|
|
6
7
|
label?: string;
|
|
7
8
|
children: React.ReactElement;
|
|
8
9
|
style?: React.CSSProperties;
|
|
9
10
|
};
|
|
10
|
-
export declare function EditInDialogButton({ fullWidth, maxWidth, label, style, ...props }: EditInDialogButtonProps): JSX.Element;
|
|
11
|
+
export declare function EditInDialogButton({ fullWidth, maxWidth, label, style, children, ...props }: EditInDialogButtonProps): JSX.Element;
|
|
11
12
|
export default EditInDialogButton;
|
|
12
13
|
//# sourceMappingURL=EditInDialogButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EditInDialogButton.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-buttons/EditInDialogButton.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"EditInDialogButton.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-buttons/EditInDialogButton.tsx"],"names":[],"mappings":"AACA,OAAO,EAGL,mBAAmB,EAOpB,MAAM,aAAa,CAAC;AACrB,OAAO,KAAgC,MAAM,OAAO,CAAC;AAErD,OAAO,EAAE,UAAU,EAAoB,MAAM,eAAe,CAAC;AAgE7D,MAAM,MAAM,uBAAuB,GAAG,mBAAmB,GAAG;IAC1D,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,KAAK,GAAG,UAAU,GAAG,SAAS,CAAC;IAC1C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,KAAK,CAAC,YAAY,CAAC;IAC7B,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC7B,CAAC;AAEF,wBAAgB,kBAAkB,CAAC,EACjC,SAAgB,EAChB,QAAe,EACf,KAAwB,EACxB,KAAK,EACL,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,uBAAuB,GAAG,GAAG,CAAC,OAAO,CAiCvC;AAED,eAAe,kBAAkB,CAAC"}
|
|
@@ -6,6 +6,6 @@ export declare const Create: import("@emotion/styled").StyledComponent<Pick<Crea
|
|
|
6
6
|
children: React.ReactNode;
|
|
7
7
|
useDefaults?: boolean | undefined;
|
|
8
8
|
queryOptions?: UseQueryOptions<unknown, unknown, unknown, import("react-query").QueryKey> | undefined;
|
|
9
|
-
}, "children" | "
|
|
9
|
+
}, "children" | "queryOptions" | "useDefaults" | keyof CreateProps<any, Error, any>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
10
10
|
export default Create;
|
|
11
11
|
//# sourceMappingURL=Create.d.ts.map
|