@applica-software-guru/react-admin 1.0.59 → 1.0.61
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 +1 -1
- package/dist/ApplicaAdmin.d.ts +28 -12
- package/dist/ApplicaAdmin.d.ts.map +1 -1
- package/dist/components/AuthBackground.d.ts +3 -0
- package/dist/components/AuthBackground.d.ts.map +1 -0
- package/dist/components/AuthCard.d.ts.map +1 -0
- package/dist/components/{ra-pages/LoginPage/AuthWrapper.d.ts → AuthWrapper.d.ts} +3 -1
- package/dist/components/AuthWrapper.d.ts.map +1 -0
- package/dist/components/Layout/Drawer/DrawerHeader/DrawerHeaderStyled.d.ts +1 -1
- package/dist/components/Layout/Header/HeaderContent/index.d.ts +3 -3
- package/dist/components/Layout/Header/index.d.ts +3 -3
- package/dist/components/Layout/index.d.ts +3 -3
- package/dist/components/ra-inputs/TextInput.d.ts +7 -6
- package/dist/components/ra-inputs/TextInput.d.ts.map +1 -1
- package/dist/components/ra-pages/LoginPage.d.ts +52 -0
- package/dist/components/ra-pages/LoginPage.d.ts.map +1 -0
- package/dist/components/ra-pages/RecoverPage.d.ts +12 -0
- package/dist/components/ra-pages/RecoverPage.d.ts.map +1 -0
- package/dist/components/ra-pages/RegisterPage.d.ts +11 -0
- package/dist/components/ra-pages/RegisterPage.d.ts.map +1 -0
- package/dist/components/ra-pages/index.d.ts +3 -1
- package/dist/components/ra-pages/index.d.ts.map +1 -1
- package/dist/components/ra-pages/types.d.ts +28 -0
- package/dist/components/ra-pages/types.d.ts.map +1 -0
- package/dist/hooks/useMenu.d.ts.map +1 -1
- package/dist/react-admin.cjs.js +52 -52
- package/dist/react-admin.cjs.js.map +1 -1
- package/dist/react-admin.es.js +7312 -7094
- package/dist/react-admin.es.js.map +1 -1
- package/dist/react-admin.umd.js +52 -52
- package/dist/react-admin.umd.js.map +1 -1
- package/package.json +4 -4
- package/src/ApplicaAdmin.tsx +45 -23
- package/src/assets/background.svg +58 -0
- package/src/components/AuthBackground.tsx +99 -0
- package/src/components/{ra-pages/LoginPage/AuthCard.jsx → AuthCard.jsx} +1 -1
- package/src/components/AuthWrapper.jsx +53 -0
- package/src/components/Layout/Header/HeaderContent/index.jsx +3 -3
- package/src/components/Layout/Header/index.jsx +3 -3
- package/src/components/Layout/index.jsx +3 -3
- package/src/components/ra-inputs/{TextInput.jsx → TextInput.tsx} +5 -3
- package/src/components/ra-pages/LoginPage.tsx +153 -0
- package/src/components/ra-pages/RecoverPage.tsx +75 -0
- package/src/components/ra-pages/RegisterPage.tsx +78 -0
- package/src/components/ra-pages/index.ts +3 -2
- package/src/components/ra-pages/types.ts +26 -0
- package/src/hooks/useMenu.jsx +6 -5
- package/src/playground/App.jsx +13 -7
- package/src/playground/config.jsx +1 -0
- package/src/playground/menu.jsx +0 -8
- package/dist/components/ra-pages/LoginPage/AuthCard.d.ts.map +0 -1
- package/dist/components/ra-pages/LoginPage/AuthLogin.d.ts +0 -6
- package/dist/components/ra-pages/LoginPage/AuthLogin.d.ts.map +0 -1
- package/dist/components/ra-pages/LoginPage/AuthWrapper.d.ts.map +0 -1
- package/dist/components/ra-pages/LoginPage/Login.d.ts +0 -34
- package/dist/components/ra-pages/LoginPage/Login.d.ts.map +0 -1
- package/dist/components/ra-pages/LoginPage/index.d.ts +0 -3
- package/dist/components/ra-pages/LoginPage/index.d.ts.map +0 -1
- package/src/components/ra-pages/LoginPage/AuthLogin.jsx +0 -79
- package/src/components/ra-pages/LoginPage/AuthWrapper.jsx +0 -46
- package/src/components/ra-pages/LoginPage/Login.tsx +0 -61
- package/src/components/ra-pages/LoginPage/index.jsx +0 -3
- /package/dist/components/{ra-pages/LoginPage/AuthCard.d.ts → AuthCard.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Per avviare il progetto, segui questi passi:
|
|
|
22
22
|
|
|
23
23
|
- `nvm use` per impostare la versione di Node.js corretta;
|
|
24
24
|
- `npm install` per installare le dipendenze;
|
|
25
|
-
- `npm
|
|
25
|
+
- `npm start` per avviare il playground in modalità sviluppo;
|
|
26
26
|
- divertiti a testare le componenti!
|
|
27
27
|
|
|
28
28
|
## Contribuire
|
package/dist/ApplicaAdmin.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AdminProps } from 'react-admin';
|
|
1
|
+
import { AdminProps, AuthProvider, DataProvider } from 'react-admin';
|
|
2
2
|
import { MenuProps } from 'src/types';
|
|
3
3
|
export type ApplicaAdminProps = AdminProps & {
|
|
4
4
|
/**
|
|
@@ -48,13 +48,14 @@ export type ApplicaAdminProps = AdminProps & {
|
|
|
48
48
|
/**
|
|
49
49
|
* Il provider di autenticazione da utilizzare nell'applicazione.
|
|
50
50
|
*/
|
|
51
|
-
dataProvider:
|
|
51
|
+
dataProvider: DataProvider;
|
|
52
52
|
/**
|
|
53
53
|
* Il provider di dati da utilizzare nell'applicazione.
|
|
54
54
|
*/
|
|
55
|
-
authProvider:
|
|
55
|
+
authProvider: AuthProvider;
|
|
56
56
|
/**
|
|
57
57
|
* Indica il nome della risorsa REST da utilizzare per la gestione delle notifiche.
|
|
58
|
+
* @default "entities/notification"
|
|
58
59
|
* @example
|
|
59
60
|
* // In questo caso, le notifiche verranno gestite tramite la risorsa "entities/notification"
|
|
60
61
|
* <ApplicaAdmin notification="entities/notification" />
|
|
@@ -65,18 +66,33 @@ export type ApplicaAdminProps = AdminProps & {
|
|
|
65
66
|
* Se le notifiche sono abilitate comparirà automaticamente un'icona in alto a destra nell'header.
|
|
66
67
|
*
|
|
67
68
|
* @example
|
|
68
|
-
*
|
|
69
|
-
* <ApplicaAdmin disableNotification />
|
|
69
|
+
* <ApplicaAdmin enableNotification />
|
|
70
70
|
*/
|
|
71
|
-
|
|
71
|
+
enableNotification: boolean;
|
|
72
72
|
/**
|
|
73
73
|
* Indica se la schermata di registrazione deve essere disabilitata.
|
|
74
|
+
* Se abilitata è necessario registrare una pagina, nelle rotte, che punti a /register
|
|
75
|
+
*
|
|
76
|
+
* @example
|
|
77
|
+
* // Pagina di base realizzata da Applica
|
|
78
|
+
* import { RegisterPage } from '.';
|
|
79
|
+
* <CustomRoutes noLayout>
|
|
80
|
+
* <Route path="/register" component={RegisterPage} />
|
|
81
|
+
* </CustomRoutes>
|
|
74
82
|
*/
|
|
75
|
-
|
|
83
|
+
enableRegistration: boolean;
|
|
76
84
|
/**
|
|
77
85
|
* Indica se la schermata di recupero password deve essere disabilitata.
|
|
86
|
+
* Se abilitata è necessario registrare una pagina, nelle rotte, che punti a /recover
|
|
87
|
+
*
|
|
88
|
+
* @example
|
|
89
|
+
* // Pagina di base realizzata da Applica
|
|
90
|
+
* import { RecoverPage } from '.';
|
|
91
|
+
* <CustomRoutes noLayout>
|
|
92
|
+
* <Route path="/recover" component={RecoverPage} />
|
|
93
|
+
* </CustomRoutes>
|
|
78
94
|
*/
|
|
79
|
-
|
|
95
|
+
enablePasswordRecover: boolean;
|
|
80
96
|
};
|
|
81
97
|
/**
|
|
82
98
|
* Definisce un'applicazione super figa basata su React Admi, Mantis Theme ed il nostro stile.
|
|
@@ -111,16 +127,16 @@ export type ApplicaAdminProps = AdminProps & {
|
|
|
111
127
|
* @returns {React.ReactElement}
|
|
112
128
|
*/
|
|
113
129
|
declare const ApplicaAdmin: {
|
|
114
|
-
({ theme, apiUrl, defaultLocale, development, logoMain, logoIcon, loginPage, menu, name, version, dataProvider, authProvider, notification,
|
|
130
|
+
({ theme, apiUrl, defaultLocale, development, logoMain, logoIcon, loginPage, menu, name, version, dataProvider, authProvider, notification, enableNotification, enableRegistration, enablePasswordRecover, ...props }: ApplicaAdminProps): import("react/jsx-runtime").JSX.Element | null;
|
|
115
131
|
defaultProps: {
|
|
116
132
|
fileFields: never[];
|
|
117
133
|
defaultLocale: string;
|
|
118
134
|
development: boolean;
|
|
119
135
|
version: string;
|
|
120
136
|
notification: string;
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
137
|
+
enableNotification: boolean;
|
|
138
|
+
enableRegistration: boolean;
|
|
139
|
+
enableForgotPassword: boolean;
|
|
124
140
|
loginPage: import("react/jsx-runtime").JSX.Element;
|
|
125
141
|
store: import("react-admin").Store;
|
|
126
142
|
title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ApplicaAdmin.d.ts","sourceRoot":"","sources":["../../src/ApplicaAdmin.tsx"],"names":[],"mappings":"
|
|
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;AASrE,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AA8BtC,MAAM,MAAM,iBAAiB,GAAG,UAAU,GAAG;IAC3C;;;;;;OAMG;IACH,KAAK,EAAE,GAAG,CAAC;IACX;;;;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,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,YAAY,EAAE,YAAY,CAAC;IAC3B;;OAEG;IACH,YAAY,EAAE,YAAY,CAAC;IAC3B;;;;;;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;CAChC,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,QAAA,MAAM,YAAY;2NAkBf,iBAAiB;;;;;;;;;;;;;;;CAgGnB,CAAC;AAkCF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthBackground.d.ts","sourceRoot":"","sources":["../../../src/components/AuthBackground.tsx"],"names":[],"mappings":"AAGA,QAAA,MAAM,cAAc,+CA6FnB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthCard.d.ts","sourceRoot":"","sources":["../../../src/components/AuthCard.jsx"],"names":[],"mappings":";AAKA;;;4CAqBC;;;;;;sBAxBqB,YAAY"}
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
export default AuthWrapper;
|
|
2
|
-
declare function AuthWrapper({ version, name, children }: {
|
|
2
|
+
declare function AuthWrapper({ version, name, children, background }: {
|
|
3
3
|
version: any;
|
|
4
4
|
name: any;
|
|
5
5
|
children: any;
|
|
6
|
+
background?: (() => import("react/jsx-runtime").JSX.Element) | undefined;
|
|
6
7
|
}): import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
declare namespace AuthWrapper {
|
|
8
9
|
namespace propTypes {
|
|
9
10
|
const children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
10
11
|
const version: PropTypes.Requireable<string>;
|
|
11
12
|
const name: PropTypes.Requireable<string>;
|
|
13
|
+
const background: PropTypes.Requireable<NonNullable<object | PropTypes.ReactNodeLike>>;
|
|
12
14
|
}
|
|
13
15
|
}
|
|
14
16
|
import PropTypes from 'prop-types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthWrapper.d.ts","sourceRoot":"","sources":["../../../src/components/AuthWrapper.jsx"],"names":[],"mappings":";AASA;;;;;4CAmCC;;;;;;;;;sBAtCqB,YAAY"}
|
|
@@ -6,5 +6,5 @@ declare const DrawerHeaderStyled: import("@emotion/styled").StyledComponent<impo
|
|
|
6
6
|
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
7
7
|
} & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
8
8
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
9
|
-
}, "children" | "ref" | "sx" |
|
|
9
|
+
}, "children" | "ref" | "sx" | ("p" | "color" | "border" | "boxShadow" | "fontWeight" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "component"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
10
10
|
//# sourceMappingURL=DrawerHeaderStyled.d.ts.map
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export default HeaderContent;
|
|
2
|
-
declare function HeaderContent({ logoMain, logoIcon, notification,
|
|
2
|
+
declare function HeaderContent({ logoMain, logoIcon, notification, enableNotification }: {
|
|
3
3
|
logoMain: any;
|
|
4
4
|
logoIcon: any;
|
|
5
5
|
notification: any;
|
|
6
|
-
|
|
6
|
+
enableNotification: any;
|
|
7
7
|
}): import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
declare namespace HeaderContent {
|
|
9
9
|
namespace propTypes {
|
|
10
10
|
const logoMain: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
11
11
|
const logoIcon: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
12
12
|
const notification: PropTypes.Requireable<string>;
|
|
13
|
-
const
|
|
13
|
+
const enableNotification: PropTypes.Requireable<boolean>;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
import PropTypes from 'prop-types';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export default Header;
|
|
2
|
-
declare function Header({ open, logoMain, logoIcon, handleDrawerToggle, notification,
|
|
2
|
+
declare function Header({ open, logoMain, logoIcon, handleDrawerToggle, notification, enableNotification }: {
|
|
3
3
|
open: any;
|
|
4
4
|
logoMain: any;
|
|
5
5
|
logoIcon: any;
|
|
6
6
|
handleDrawerToggle: any;
|
|
7
7
|
notification: any;
|
|
8
|
-
|
|
8
|
+
enableNotification: any;
|
|
9
9
|
}): import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
declare namespace Header {
|
|
11
11
|
namespace propTypes {
|
|
@@ -14,7 +14,7 @@ declare namespace Header {
|
|
|
14
14
|
const logoMain: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
15
15
|
const logoIcon: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
16
16
|
const notification: PropTypes.Requireable<string>;
|
|
17
|
-
const
|
|
17
|
+
const enableNotification: PropTypes.Requireable<boolean>;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
import PropTypes from 'prop-types';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export default Layout;
|
|
2
|
-
declare function Layout({ children, name, version, logoMain, logoIcon, notification,
|
|
2
|
+
declare function Layout({ children, name, version, logoMain, logoIcon, notification, enableNotification }: {
|
|
3
3
|
children: any;
|
|
4
4
|
name: any;
|
|
5
5
|
version: any;
|
|
6
6
|
logoMain: any;
|
|
7
7
|
logoIcon: any;
|
|
8
8
|
notification: any;
|
|
9
|
-
|
|
9
|
+
enableNotification: any;
|
|
10
10
|
}): import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
declare namespace Layout {
|
|
12
12
|
namespace propTypes {
|
|
@@ -16,7 +16,7 @@ declare namespace Layout {
|
|
|
16
16
|
const logoMain: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
17
17
|
const logoIcon: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
18
18
|
const notification: PropTypes.Requireable<string>;
|
|
19
|
-
const
|
|
19
|
+
const enableNotification: PropTypes.Requireable<boolean>;
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
import PropTypes from 'prop-types';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { TextInputProps } from 'react-admin';
|
|
2
|
+
declare const TextInput: {
|
|
3
|
+
(props: TextInputProps): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
defaultProps: {
|
|
5
5
|
options: {};
|
|
6
6
|
};
|
|
7
|
-
|
|
7
|
+
propTypes: {
|
|
8
8
|
sx: import("prop-types").Requireable<object>;
|
|
9
9
|
children: import("prop-types").Requireable<import("prop-types").ReactElementLike>;
|
|
10
10
|
label: import("prop-types").Requireable<NonNullable<string | boolean | null | undefined>>;
|
|
@@ -18,5 +18,6 @@ declare namespace TextInput {
|
|
|
18
18
|
className: import("prop-types").Requireable<string>;
|
|
19
19
|
options: import("prop-types").Requireable<object>;
|
|
20
20
|
};
|
|
21
|
-
}
|
|
21
|
+
};
|
|
22
|
+
export default TextInput;
|
|
22
23
|
//# sourceMappingURL=TextInput.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextInput.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-inputs/TextInput.
|
|
1
|
+
{"version":3,"file":"TextInput.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-inputs/TextInput.tsx"],"names":[],"mappings":"AAAA,OAAO,EAA4B,cAAc,EAAE,MAAM,aAAa,CAAC;AAIvE,QAAA,MAAM,SAAS;YAAW,cAAc;;;;;;;;;;;;;;;;;;CAMvC,CAAC;AAWF,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { BaseAuthProps } from './types';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
export type LoginPageProps = BaseAuthProps & {
|
|
4
|
+
/**
|
|
5
|
+
* Indica se abilitare o meno la schermata di recupero password.
|
|
6
|
+
* Se abilitato è opportuno registrare una rotta a /recover con un componente
|
|
7
|
+
* che si occupi del recupero, puoi utilizzare direttamente il componente di Applica
|
|
8
|
+
*
|
|
9
|
+
* @see RecoverPage per maggiori informazioni.
|
|
10
|
+
* @example
|
|
11
|
+
* import { RecoverPage } from '../..';
|
|
12
|
+
* <CustomRoutes noLayout>
|
|
13
|
+
* <Route path="/recover" component={RecoverPage} />
|
|
14
|
+
* </CustomRoutes>
|
|
15
|
+
*/
|
|
16
|
+
enablePasswordRecover?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Indica se abilitare o meno la schermata di registrazione.
|
|
19
|
+
* Se abilitato è opportuno registrare una rotta a /register con un componente
|
|
20
|
+
* che si occupi della registrazione, puoi utilizzare direttamente il componente di Applica
|
|
21
|
+
*
|
|
22
|
+
* @see RegisterPage per maggiori informazioni.
|
|
23
|
+
* @example
|
|
24
|
+
* import { RegisterPage } from '../..';
|
|
25
|
+
* <CustomRoutes noLayout>
|
|
26
|
+
* <Route path="/register" component={RegisterPage} />
|
|
27
|
+
* </CustomRoutes>
|
|
28
|
+
*/
|
|
29
|
+
enableRegistration?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Indica la pagina a cui reindirizzare l'utente dopo il login.
|
|
32
|
+
* Se non specificata viene utilizzata la home page di react-admin.
|
|
33
|
+
*/
|
|
34
|
+
redirectTo: string;
|
|
35
|
+
};
|
|
36
|
+
declare const LoginPage: {
|
|
37
|
+
({ version, name, enablePasswordRecover, enableRegistration, redirectTo, background }: LoginPageProps): import("react/jsx-runtime").JSX.Element;
|
|
38
|
+
propTypes: {
|
|
39
|
+
version: PropTypes.Validator<string>;
|
|
40
|
+
name: PropTypes.Validator<string>;
|
|
41
|
+
enablePasswordRecover: PropTypes.Requireable<boolean>;
|
|
42
|
+
enableRegister: PropTypes.Requireable<boolean>;
|
|
43
|
+
background: PropTypes.Requireable<PropTypes.ReactElementLike>;
|
|
44
|
+
};
|
|
45
|
+
defaultProps: {
|
|
46
|
+
enablePasswordRecover: boolean;
|
|
47
|
+
enableRegister: boolean;
|
|
48
|
+
background: import("react/jsx-runtime").JSX.Element;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
export default LoginPage;
|
|
52
|
+
//# sourceMappingURL=LoginPage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LoginPage.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-pages/LoginPage.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AACxC,OAAO,SAAS,MAAM,YAAY,CAAC;AAInC,MAAM,MAAM,cAAc,GAAG,aAAa,GAAG;IAC3C;;;;;;;;;;;OAWG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC;;;;;;;;;;;OAWG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC;AACF,QAAA,MAAM,SAAS;2FAA0F,cAAc;;;;;;;;;;;;;CA6FtH,CAAC;AAeF,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BaseAuthProps } from './types';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
declare const RecoverPage: {
|
|
4
|
+
({ name, version, background }: BaseAuthProps): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
propTypes: {
|
|
6
|
+
name: PropTypes.Validator<string>;
|
|
7
|
+
version: PropTypes.Validator<string>;
|
|
8
|
+
background: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export default RecoverPage;
|
|
12
|
+
//# sourceMappingURL=RecoverPage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecoverPage.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-pages/RecoverPage.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAGxC,OAAO,SAAS,MAAM,YAAY,CAAC;AAGnC,QAAA,MAAM,WAAW;oCAAmC,aAAa;;;;;;CAsDhE,CAAC;AAQF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseAuthProps } from './types';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
declare const RegisterPage: {
|
|
4
|
+
({ name, version }: BaseAuthProps): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
propTypes: {
|
|
6
|
+
name: PropTypes.Validator<string>;
|
|
7
|
+
version: PropTypes.Validator<string>;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
export default RegisterPage;
|
|
11
|
+
//# sourceMappingURL=RegisterPage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RegisterPage.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-pages/RegisterPage.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAGxC,OAAO,SAAS,MAAM,YAAY,CAAC;AAInC,QAAA,MAAM,YAAY;wBAAuB,aAAa;;;;;CA0DrD,CAAC;AAOF,eAAe,YAAY,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-pages/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-pages/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,aAAa,CAAC;AACpC,OAAO,WAAW,MAAM,eAAe,CAAC;AACxC,OAAO,YAAY,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export type BaseAuthProps = {
|
|
3
|
+
/**
|
|
4
|
+
* Versione dell'applicazione da mostrare.
|
|
5
|
+
*/
|
|
6
|
+
version: string;
|
|
7
|
+
/**
|
|
8
|
+
* Nome dell'applicazione da mostrare.
|
|
9
|
+
*/
|
|
10
|
+
name: string;
|
|
11
|
+
/**
|
|
12
|
+
* Immagine di sfondo della pagina.
|
|
13
|
+
* Se non specificata viene utilizzata l'immagine di default.
|
|
14
|
+
*
|
|
15
|
+
* @see AuthBackground per maggiori informazioni.
|
|
16
|
+
* @example
|
|
17
|
+
* // Esempio di Background personalizzato:
|
|
18
|
+
* const MyBackground = () => (
|
|
19
|
+
* <Box sx={{ position: 'absolute', filter: 'blur(20px)', bottom: 0, p: 4, pb: 8 }}>
|
|
20
|
+
* <svg width="100%" height="calc(100vh - 175px)" viewBox="0 0 117 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
21
|
+
* <path .. />
|
|
22
|
+
* </svg>
|
|
23
|
+
* </Box>
|
|
24
|
+
* )
|
|
25
|
+
*/
|
|
26
|
+
background: React.ReactNode | React.ElementType | any;
|
|
27
|
+
};
|
|
28
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-pages/types.ts"],"names":[],"mappings":";AAAA,MAAM,MAAM,aAAa,GAAG;IAC1B;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;;;;;;;;;;;OAcG;IACH,UAAU,EAAE,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC,WAAW,GAAG,GAAG,CAAC;CACvD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useMenu.d.ts","sourceRoot":"","sources":["../../../src/hooks/useMenu.jsx"],"names":[],"mappings":";AA+KA;;;;;
|
|
1
|
+
{"version":3,"file":"useMenu.d.ts","sourceRoot":"","sources":["../../../src/hooks/useMenu.jsx"],"names":[],"mappings":";AA+KA;;;;;EAiCC"}
|