@native-systems/ui 1.0.2 → 1.0.4
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/index.cjs +71 -69
- package/dist/index.d.ts +9 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +71 -69
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -112,6 +112,7 @@ const ForwardRef$4 = /*#__PURE__*/ React__namespace.forwardRef(EyeIcon);
|
|
|
112
112
|
function InputField({
|
|
113
113
|
id,
|
|
114
114
|
label,
|
|
115
|
+
hideLabel = false,
|
|
115
116
|
register,
|
|
116
117
|
type,
|
|
117
118
|
required,
|
|
@@ -122,12 +123,14 @@ function InputField({
|
|
|
122
123
|
return jsxRuntime.jsxs('div', {
|
|
123
124
|
className: 'flex flex-col space-y-2',
|
|
124
125
|
children: [
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
126
|
+
!hideLabel
|
|
127
|
+
? jsxRuntime.jsx('label', {
|
|
128
|
+
htmlFor: id,
|
|
129
|
+
className:
|
|
130
|
+
'block ml-1 text-sm font-medium text-gray-700 dark:text-white',
|
|
131
|
+
children: label,
|
|
132
|
+
})
|
|
133
|
+
: null,
|
|
131
134
|
isPasswordField
|
|
132
135
|
? jsxRuntime.jsxs('div', {
|
|
133
136
|
className: 'relative w-full',
|
|
@@ -138,12 +141,12 @@ function InputField({
|
|
|
138
141
|
type: isPasswordVisible ? 'text' : 'password',
|
|
139
142
|
autoComplete: autoCompleteId,
|
|
140
143
|
placeholder: label,
|
|
141
|
-
className: `w-full block py-3 pr-
|
|
144
|
+
className: `relative w-full block py-3 pr-10 pl-3 text-sm text-font-950 bg-base-0 border rounded-lg border-base-500/15 appearance-none focus:outline-none focus:ring-primary-500 placeholder-font-400 dark:text-font-0 dark:text-font-100 dark:bg-base-950 dark:placeholder-font-600 ${type === 'number' ? 'text-right' : ''}`,
|
|
142
145
|
...register,
|
|
143
146
|
}),
|
|
144
147
|
jsxRuntime.jsx('div', {
|
|
145
148
|
className:
|
|
146
|
-
'absolute top-1/2 right-2
|
|
149
|
+
'absolute top-1/2 right-2 size-5 -translate-y-1/2 text-font-400 dark:text-font-600 cursor-pointer transition-colors hover:text-font-300 dark:hover:text-font-500',
|
|
147
150
|
children: isPasswordVisible
|
|
148
151
|
? jsxRuntime.jsx(ForwardRef$5, {
|
|
149
152
|
onClick: () => {
|
|
@@ -164,14 +167,14 @@ function InputField({
|
|
|
164
167
|
type: type,
|
|
165
168
|
autoComplete: autoCompleteId,
|
|
166
169
|
placeholder: label,
|
|
167
|
-
className: `relative w-full block py-3 pr-10 pl-3 text-
|
|
170
|
+
className: `relative w-full block py-3 pr-10 pl-3 text-sm text-font-950 bg-base-0 border rounded-lg border-base-500/15 appearance-none focus:outline-none focus:ring-primary-500 placeholder-font-400 dark:text-font-0 dark:text-font-100 dark:bg-base-950 dark:placeholder-font-600 ${type === 'number' ? 'text-right' : ''}`,
|
|
168
171
|
...register,
|
|
169
172
|
}),
|
|
170
173
|
],
|
|
171
174
|
});
|
|
172
175
|
}
|
|
173
176
|
|
|
174
|
-
const SigninForm = ({ mapText, onSubmit, errorMessage }) => {
|
|
177
|
+
const SigninForm = ({ mapText, onSubmit, errorMessage, hideLabels }) => {
|
|
175
178
|
const { register, handleSubmit } = reactHookForm.useForm({
|
|
176
179
|
shouldUseNativeValidation: true,
|
|
177
180
|
});
|
|
@@ -183,91 +186,90 @@ const SigninForm = ({ mapText, onSubmit, errorMessage }) => {
|
|
|
183
186
|
id: 'email',
|
|
184
187
|
label: mapText('auth:form.email.label'),
|
|
185
188
|
type: 'text',
|
|
189
|
+
hideLabel: hideLabels,
|
|
186
190
|
required: true,
|
|
187
191
|
autoCompleteId: 'email',
|
|
188
192
|
register: register('email', {
|
|
189
193
|
required: mapText('form.email.validations.required'),
|
|
190
194
|
}),
|
|
191
195
|
}),
|
|
192
|
-
jsxRuntime.jsx(
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
required: mapText('form.password.validations.required'),
|
|
202
|
-
}),
|
|
203
|
-
isPasswordField: true,
|
|
196
|
+
jsxRuntime.jsx(InputField, {
|
|
197
|
+
id: 'password',
|
|
198
|
+
label: mapText('auth:form.password.label'),
|
|
199
|
+
type: 'password',
|
|
200
|
+
hideLabel: hideLabels,
|
|
201
|
+
required: true,
|
|
202
|
+
autoCompleteId: 'password',
|
|
203
|
+
register: register('password', {
|
|
204
|
+
required: mapText('form.password.validations.required'),
|
|
204
205
|
}),
|
|
206
|
+
isPasswordField: true,
|
|
205
207
|
}),
|
|
206
208
|
jsxRuntime.jsxs('div', {
|
|
207
209
|
children: [
|
|
208
|
-
jsxRuntime.jsx('
|
|
210
|
+
jsxRuntime.jsx('input', {
|
|
209
211
|
type: 'submit',
|
|
212
|
+
value: mapText('auth:form.submit.text'),
|
|
210
213
|
className:
|
|
211
|
-
'w-full flex justify-center px-4 py-3 text-sm
|
|
212
|
-
children: mapText('auth:form.submit.text'),
|
|
213
|
-
}),
|
|
214
|
-
jsxRuntime.jsx('span', {
|
|
215
|
-
className: 'block mt-2 text-sm font-medium text-red-500',
|
|
216
|
-
children: errorMessage,
|
|
214
|
+
'w-full flex justify-center px-4 py-3 text-sm text-white bg-[length:200%_200%] bg-primary-shimmer border-none border rounded-lg shadow-sm transition-transform animate-shimmerdelayed cursor-pointer hover:scale-105 focus:outline-none focus:ring-1 focus:ring-base-600/20 focus:ring-offset-0 dark:focus:ring-base-500',
|
|
217
215
|
}),
|
|
216
|
+
errorMessage &&
|
|
217
|
+
jsxRuntime.jsx('span', {
|
|
218
|
+
className: 'block mt-2.5 text-sm text-red-600',
|
|
219
|
+
children: errorMessage,
|
|
220
|
+
}),
|
|
218
221
|
],
|
|
219
222
|
}),
|
|
220
223
|
jsxRuntime.jsx('div', {
|
|
221
224
|
className: 'flex justify-between items-center',
|
|
222
|
-
children: jsxRuntime.jsx('
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
'font-medium text-primary transition-colors hover:text-primary-500 dark:text-white',
|
|
228
|
-
children: mapText('auth:form.forgot.text'),
|
|
229
|
-
}),
|
|
225
|
+
children: jsxRuntime.jsx('a', {
|
|
226
|
+
href: '',
|
|
227
|
+
className:
|
|
228
|
+
'text-sm text-font-600 transition-colors hover:text-primary-500 dark:text-font-400',
|
|
229
|
+
children: mapText('auth:form.forgot.text'),
|
|
230
230
|
}),
|
|
231
231
|
}),
|
|
232
232
|
],
|
|
233
233
|
});
|
|
234
234
|
};
|
|
235
235
|
|
|
236
|
-
function SigninLayout({
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
236
|
+
function SigninLayout({
|
|
237
|
+
mapText,
|
|
238
|
+
onSubmit,
|
|
239
|
+
errorMessage,
|
|
240
|
+
logoSrc,
|
|
241
|
+
hideLabels = false,
|
|
242
|
+
}) {
|
|
243
|
+
return jsxRuntime.jsx('div', {
|
|
244
|
+
className:
|
|
245
|
+
'sign-in-layout-container size-full z-10 relative flex justify-end items-center p-5 sm:p-10',
|
|
246
|
+
children: jsxRuntime.jsx('div', {
|
|
247
|
+
className: 'w-full flex flex-row justify-center items-stretch max-w-xl',
|
|
248
|
+
children: jsxRuntime.jsxs('div', {
|
|
245
249
|
className:
|
|
246
|
-
'
|
|
247
|
-
children:
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
children: [
|
|
253
|
-
jsxRuntime.jsx('h2', {
|
|
254
|
-
className:
|
|
255
|
-
'mt-6 text-3xl font-extrabold text-gray-900 select-none dark:text-white',
|
|
256
|
-
children: mapText('auth:page.title'),
|
|
257
|
-
}),
|
|
258
|
-
jsxRuntime.jsx('div', {
|
|
259
|
-
className: 'mt-10',
|
|
260
|
-
children: jsxRuntime.jsx(SigninForm, {
|
|
261
|
-
mapText: mapText,
|
|
262
|
-
onSubmit: (values) => onSubmit(values.email, values.password),
|
|
263
|
-
errorMessage: errorMessage,
|
|
264
|
-
}),
|
|
265
|
-
}),
|
|
266
|
-
],
|
|
250
|
+
'sign-in-dialog w-full p-5 bg-base-0/70 rounded-lg sm:p-10 dark:bg-base-950/70',
|
|
251
|
+
children: [
|
|
252
|
+
jsxRuntime.jsx('img', {
|
|
253
|
+
className: 'w-auto h-10 mb-20 object-cover',
|
|
254
|
+
src: logoSrc,
|
|
255
|
+
alt: '',
|
|
267
256
|
}),
|
|
268
|
-
|
|
257
|
+
jsxRuntime.jsx('h2', {
|
|
258
|
+
className: '',
|
|
259
|
+
children: mapText('auth:form.submit.text'),
|
|
260
|
+
}),
|
|
261
|
+
jsxRuntime.jsx('div', {
|
|
262
|
+
className: 'mt-5',
|
|
263
|
+
children: jsxRuntime.jsx(SigninForm, {
|
|
264
|
+
mapText: mapText,
|
|
265
|
+
onSubmit: (values) => onSubmit(values.email, values.password),
|
|
266
|
+
errorMessage: errorMessage,
|
|
267
|
+
hideLabels: hideLabels,
|
|
268
|
+
}),
|
|
269
|
+
}),
|
|
270
|
+
],
|
|
269
271
|
}),
|
|
270
|
-
|
|
272
|
+
}),
|
|
271
273
|
});
|
|
272
274
|
}
|
|
273
275
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2,13 +2,14 @@ declare module "@native-systems/ui" {
|
|
|
2
2
|
type InputFieldProps = {
|
|
3
3
|
id: string;
|
|
4
4
|
label: string;
|
|
5
|
+
hideLabel?: boolean;
|
|
5
6
|
register: any;
|
|
6
7
|
type: string;
|
|
7
8
|
required: boolean;
|
|
8
9
|
autoCompleteId?: string;
|
|
9
10
|
isPasswordField?: boolean;
|
|
10
11
|
};
|
|
11
|
-
export function InputField({ id, label, register, type, required, autoCompleteId, isPasswordField, }: InputFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export function InputField({ id, label, hideLabel, register, type, required, autoCompleteId, isPasswordField, }: InputFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
declare module "@native-systems/ui" {
|
|
@@ -20,8 +21,9 @@ declare module "@native-systems/ui" {
|
|
|
20
21
|
mapText: (key: string) => string;
|
|
21
22
|
onSubmit: (values: any) => void;
|
|
22
23
|
errorMessage: string | null;
|
|
24
|
+
hideLabels: boolean;
|
|
23
25
|
};
|
|
24
|
-
export const SigninForm: ({ mapText, onSubmit, errorMessage }: ISigninFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
export const SigninForm: ({ mapText, onSubmit, errorMessage, hideLabels }: ISigninFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
25
27
|
}
|
|
26
28
|
|
|
27
29
|
declare module "@native-systems/ui" {
|
|
@@ -33,8 +35,10 @@ declare module "@native-systems/ui" {
|
|
|
33
35
|
mapText: (key: string) => string;
|
|
34
36
|
onSubmit: (email: string, password: string) => void;
|
|
35
37
|
errorMessage: string | null;
|
|
38
|
+
logoSrc?: string;
|
|
39
|
+
hideLabels?: boolean;
|
|
36
40
|
}
|
|
37
|
-
export function SigninLayout({ mapText, onSubmit, errorMessage, }: SigninLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
41
|
+
export function SigninLayout({ mapText, onSubmit, errorMessage, logoSrc, hideLabels }: SigninLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
38
42
|
}
|
|
39
43
|
|
|
40
44
|
declare module "@native-systems/ui" {
|
|
@@ -145,10 +149,11 @@ declare module "@native-systems/ui" {
|
|
|
145
149
|
SaveButton: typeof Util.SaveButton;
|
|
146
150
|
Textarea: typeof Util.Textarea;
|
|
147
151
|
SigninLayout: typeof UI.SigninLayout;
|
|
148
|
-
SigninForm: ({ mapText, onSubmit, errorMessage }: {
|
|
152
|
+
SigninForm: ({ mapText, onSubmit, errorMessage, hideLabels }: {
|
|
149
153
|
mapText: (key: string) => string;
|
|
150
154
|
onSubmit: (values: any) => void;
|
|
151
155
|
errorMessage: string | null;
|
|
156
|
+
hideLabels: boolean;
|
|
152
157
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
153
158
|
};
|
|
154
159
|
export default _default;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["src/components/util/views/Input.tsx","src/components/auth/widgets/SigninForm.tsx","src/components/auth/layout/SigninLayout.tsx","src/components/util/layout/MainContentFrame.tsx","src/components/util/widgets/Pagination.tsx","src/components/util/views/CancelButton.tsx","src/components/util/views/ErrorDisplay.tsx","src/components/util/views/HowToCloseText.tsx","src/components/util/views/LoadingSpinner.tsx","src/components/util/views/SaveButton.tsx","src/components/util/views/Textarea.tsx","src/context/TemplateParserContext.tsx","src/index.ts"],"names":[],"mappings":";IAIA,KAAK,eAAe,GAAG;QACrB,EAAE,EAAE,MAAM,CAAC;QACX,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,GAAG,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,OAAO,CAAC;QAClB,cAAc,CAAC,EAAE,MAAM,CAAC;QACxB,eAAe,CAAC,EAAE,OAAO,CAAC;KAC3B,CAAC;IAEF,MAAM,UAAU,UAAU,CAAC,EACzB,EAAE,EACF,KAAK,EACL,QAAQ,EACR,IAAI,EACJ,QAAQ,EACR,cAAsB,EACtB,eAAuB,GACxB,EAAE,eAAe,GAAA,OAAA,mBAAA,EAAA,GAAA,CAAA,OAAA,CAuDjB;;;;;;;;
|
|
1
|
+
{"version":3,"sources":["src/components/util/views/Input.tsx","src/components/auth/widgets/SigninForm.tsx","src/components/auth/layout/SigninLayout.tsx","src/components/util/layout/MainContentFrame.tsx","src/components/util/widgets/Pagination.tsx","src/components/util/views/CancelButton.tsx","src/components/util/views/ErrorDisplay.tsx","src/components/util/views/HowToCloseText.tsx","src/components/util/views/LoadingSpinner.tsx","src/components/util/views/SaveButton.tsx","src/components/util/views/Textarea.tsx","src/context/TemplateParserContext.tsx","src/index.ts"],"names":[],"mappings":"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","file":"index.d.ts","sourceRoot":".."}
|
package/dist/index.esm.js
CHANGED
|
@@ -89,6 +89,7 @@ const ForwardRef$4 = /*#__PURE__*/ React.forwardRef(EyeIcon);
|
|
|
89
89
|
function InputField({
|
|
90
90
|
id,
|
|
91
91
|
label,
|
|
92
|
+
hideLabel = false,
|
|
92
93
|
register,
|
|
93
94
|
type,
|
|
94
95
|
required,
|
|
@@ -99,12 +100,14 @@ function InputField({
|
|
|
99
100
|
return jsxs('div', {
|
|
100
101
|
className: 'flex flex-col space-y-2',
|
|
101
102
|
children: [
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
103
|
+
!hideLabel
|
|
104
|
+
? jsx('label', {
|
|
105
|
+
htmlFor: id,
|
|
106
|
+
className:
|
|
107
|
+
'block ml-1 text-sm font-medium text-gray-700 dark:text-white',
|
|
108
|
+
children: label,
|
|
109
|
+
})
|
|
110
|
+
: null,
|
|
108
111
|
isPasswordField
|
|
109
112
|
? jsxs('div', {
|
|
110
113
|
className: 'relative w-full',
|
|
@@ -115,12 +118,12 @@ function InputField({
|
|
|
115
118
|
type: isPasswordVisible ? 'text' : 'password',
|
|
116
119
|
autoComplete: autoCompleteId,
|
|
117
120
|
placeholder: label,
|
|
118
|
-
className: `w-full block py-3 pr-
|
|
121
|
+
className: `relative w-full block py-3 pr-10 pl-3 text-sm text-font-950 bg-base-0 border rounded-lg border-base-500/15 appearance-none focus:outline-none focus:ring-primary-500 placeholder-font-400 dark:text-font-0 dark:text-font-100 dark:bg-base-950 dark:placeholder-font-600 ${type === 'number' ? 'text-right' : ''}`,
|
|
119
122
|
...register,
|
|
120
123
|
}),
|
|
121
124
|
jsx('div', {
|
|
122
125
|
className:
|
|
123
|
-
'absolute top-1/2 right-2
|
|
126
|
+
'absolute top-1/2 right-2 size-5 -translate-y-1/2 text-font-400 dark:text-font-600 cursor-pointer transition-colors hover:text-font-300 dark:hover:text-font-500',
|
|
124
127
|
children: isPasswordVisible
|
|
125
128
|
? jsx(ForwardRef$5, {
|
|
126
129
|
onClick: () => {
|
|
@@ -141,14 +144,14 @@ function InputField({
|
|
|
141
144
|
type: type,
|
|
142
145
|
autoComplete: autoCompleteId,
|
|
143
146
|
placeholder: label,
|
|
144
|
-
className: `relative w-full block py-3 pr-10 pl-3 text-
|
|
147
|
+
className: `relative w-full block py-3 pr-10 pl-3 text-sm text-font-950 bg-base-0 border rounded-lg border-base-500/15 appearance-none focus:outline-none focus:ring-primary-500 placeholder-font-400 dark:text-font-0 dark:text-font-100 dark:bg-base-950 dark:placeholder-font-600 ${type === 'number' ? 'text-right' : ''}`,
|
|
145
148
|
...register,
|
|
146
149
|
}),
|
|
147
150
|
],
|
|
148
151
|
});
|
|
149
152
|
}
|
|
150
153
|
|
|
151
|
-
const SigninForm = ({ mapText, onSubmit, errorMessage }) => {
|
|
154
|
+
const SigninForm = ({ mapText, onSubmit, errorMessage, hideLabels }) => {
|
|
152
155
|
const { register, handleSubmit } = useForm({
|
|
153
156
|
shouldUseNativeValidation: true,
|
|
154
157
|
});
|
|
@@ -160,91 +163,90 @@ const SigninForm = ({ mapText, onSubmit, errorMessage }) => {
|
|
|
160
163
|
id: 'email',
|
|
161
164
|
label: mapText('auth:form.email.label'),
|
|
162
165
|
type: 'text',
|
|
166
|
+
hideLabel: hideLabels,
|
|
163
167
|
required: true,
|
|
164
168
|
autoCompleteId: 'email',
|
|
165
169
|
register: register('email', {
|
|
166
170
|
required: mapText('form.email.validations.required'),
|
|
167
171
|
}),
|
|
168
172
|
}),
|
|
169
|
-
jsx(
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
required: mapText('form.password.validations.required'),
|
|
179
|
-
}),
|
|
180
|
-
isPasswordField: true,
|
|
173
|
+
jsx(InputField, {
|
|
174
|
+
id: 'password',
|
|
175
|
+
label: mapText('auth:form.password.label'),
|
|
176
|
+
type: 'password',
|
|
177
|
+
hideLabel: hideLabels,
|
|
178
|
+
required: true,
|
|
179
|
+
autoCompleteId: 'password',
|
|
180
|
+
register: register('password', {
|
|
181
|
+
required: mapText('form.password.validations.required'),
|
|
181
182
|
}),
|
|
183
|
+
isPasswordField: true,
|
|
182
184
|
}),
|
|
183
185
|
jsxs('div', {
|
|
184
186
|
children: [
|
|
185
|
-
jsx('
|
|
187
|
+
jsx('input', {
|
|
186
188
|
type: 'submit',
|
|
189
|
+
value: mapText('auth:form.submit.text'),
|
|
187
190
|
className:
|
|
188
|
-
'w-full flex justify-center px-4 py-3 text-sm
|
|
189
|
-
children: mapText('auth:form.submit.text'),
|
|
190
|
-
}),
|
|
191
|
-
jsx('span', {
|
|
192
|
-
className: 'block mt-2 text-sm font-medium text-red-500',
|
|
193
|
-
children: errorMessage,
|
|
191
|
+
'w-full flex justify-center px-4 py-3 text-sm text-white bg-[length:200%_200%] bg-primary-shimmer border-none border rounded-lg shadow-sm transition-transform animate-shimmerdelayed cursor-pointer hover:scale-105 focus:outline-none focus:ring-1 focus:ring-base-600/20 focus:ring-offset-0 dark:focus:ring-base-500',
|
|
194
192
|
}),
|
|
193
|
+
errorMessage &&
|
|
194
|
+
jsx('span', {
|
|
195
|
+
className: 'block mt-2.5 text-sm text-red-600',
|
|
196
|
+
children: errorMessage,
|
|
197
|
+
}),
|
|
195
198
|
],
|
|
196
199
|
}),
|
|
197
200
|
jsx('div', {
|
|
198
201
|
className: 'flex justify-between items-center',
|
|
199
|
-
children: jsx('
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
'font-medium text-primary transition-colors hover:text-primary-500 dark:text-white',
|
|
205
|
-
children: mapText('auth:form.forgot.text'),
|
|
206
|
-
}),
|
|
202
|
+
children: jsx('a', {
|
|
203
|
+
href: '',
|
|
204
|
+
className:
|
|
205
|
+
'text-sm text-font-600 transition-colors hover:text-primary-500 dark:text-font-400',
|
|
206
|
+
children: mapText('auth:form.forgot.text'),
|
|
207
207
|
}),
|
|
208
208
|
}),
|
|
209
209
|
],
|
|
210
210
|
});
|
|
211
211
|
};
|
|
212
212
|
|
|
213
|
-
function SigninLayout({
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
213
|
+
function SigninLayout({
|
|
214
|
+
mapText,
|
|
215
|
+
onSubmit,
|
|
216
|
+
errorMessage,
|
|
217
|
+
logoSrc,
|
|
218
|
+
hideLabels = false,
|
|
219
|
+
}) {
|
|
220
|
+
return jsx('div', {
|
|
221
|
+
className:
|
|
222
|
+
'sign-in-layout-container size-full z-10 relative flex justify-end items-center p-5 sm:p-10',
|
|
223
|
+
children: jsx('div', {
|
|
224
|
+
className: 'w-full flex flex-row justify-center items-stretch max-w-xl',
|
|
225
|
+
children: jsxs('div', {
|
|
222
226
|
className:
|
|
223
|
-
'
|
|
224
|
-
children:
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
children: [
|
|
230
|
-
jsx('h2', {
|
|
231
|
-
className:
|
|
232
|
-
'mt-6 text-3xl font-extrabold text-gray-900 select-none dark:text-white',
|
|
233
|
-
children: mapText('auth:page.title'),
|
|
234
|
-
}),
|
|
235
|
-
jsx('div', {
|
|
236
|
-
className: 'mt-10',
|
|
237
|
-
children: jsx(SigninForm, {
|
|
238
|
-
mapText: mapText,
|
|
239
|
-
onSubmit: (values) => onSubmit(values.email, values.password),
|
|
240
|
-
errorMessage: errorMessage,
|
|
241
|
-
}),
|
|
242
|
-
}),
|
|
243
|
-
],
|
|
227
|
+
'sign-in-dialog w-full p-5 bg-base-0/70 rounded-lg sm:p-10 dark:bg-base-950/70',
|
|
228
|
+
children: [
|
|
229
|
+
jsx('img', {
|
|
230
|
+
className: 'w-auto h-10 mb-20 object-cover',
|
|
231
|
+
src: logoSrc,
|
|
232
|
+
alt: '',
|
|
244
233
|
}),
|
|
245
|
-
|
|
234
|
+
jsx('h2', {
|
|
235
|
+
className: '',
|
|
236
|
+
children: mapText('auth:form.submit.text'),
|
|
237
|
+
}),
|
|
238
|
+
jsx('div', {
|
|
239
|
+
className: 'mt-5',
|
|
240
|
+
children: jsx(SigninForm, {
|
|
241
|
+
mapText: mapText,
|
|
242
|
+
onSubmit: (values) => onSubmit(values.email, values.password),
|
|
243
|
+
errorMessage: errorMessage,
|
|
244
|
+
hideLabels: hideLabels,
|
|
245
|
+
}),
|
|
246
|
+
}),
|
|
247
|
+
],
|
|
246
248
|
}),
|
|
247
|
-
|
|
249
|
+
}),
|
|
248
250
|
});
|
|
249
251
|
}
|
|
250
252
|
|