@selfcommunity/react-ui 0.7.0-alpha.47 → 0.7.0-alpha.48
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/lib/cjs/components/UserProfileEdit/Section/Account.d.ts +10 -0
- package/lib/cjs/components/UserProfileEdit/Section/Account.d.ts.map +1 -1
- package/lib/cjs/components/UserProfileEdit/Section/Account.js +12 -10
- package/lib/cjs/components/UserProfileEdit/Section/Account.js.map +1 -1
- package/lib/cjs/components/UserProfileEdit/Section/AccountCredentials.d.ts +18 -0
- package/lib/cjs/components/UserProfileEdit/Section/AccountCredentials.d.ts.map +1 -0
- package/lib/cjs/components/UserProfileEdit/Section/AccountCredentials.js +260 -0
- package/lib/cjs/components/UserProfileEdit/Section/AccountCredentials.js.map +1 -0
- package/lib/cjs/shared/PasswordTextField/index.d.ts.map +1 -1
- package/lib/cjs/shared/PasswordTextField/index.js +5 -2
- package/lib/cjs/shared/PasswordTextField/index.js.map +1 -1
- package/lib/esm/components/UserProfileEdit/Section/Account.d.ts +10 -0
- package/lib/esm/components/UserProfileEdit/Section/Account.d.ts.map +1 -1
- package/lib/esm/components/UserProfileEdit/Section/Account.js +12 -10
- package/lib/esm/components/UserProfileEdit/Section/Account.js.map +1 -1
- package/lib/esm/components/UserProfileEdit/Section/AccountCredentials.d.ts +18 -0
- package/lib/esm/components/UserProfileEdit/Section/AccountCredentials.d.ts.map +1 -0
- package/lib/esm/components/UserProfileEdit/Section/AccountCredentials.js +231 -0
- package/lib/esm/components/UserProfileEdit/Section/AccountCredentials.js.map +1 -0
- package/lib/esm/shared/PasswordTextField/index.d.ts.map +1 -1
- package/lib/esm/shared/PasswordTextField/index.js +5 -2
- package/lib/esm/shared/PasswordTextField/index.js.map +1 -1
- package/lib/umd/react-ui.js +6 -6
- package/lib/umd/react-ui.js.LICENSE.txt +1 -1
- package/lib/umd/react-ui.js.map +1 -1
- package/package.json +5 -5
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
+
t[p] = s[p];
|
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
+
t[p[i]] = s[p[i]];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
import React, { useState } from 'react';
|
|
13
|
+
import { styled } from '@mui/material/styles';
|
|
14
|
+
import { Box, Button, CircularProgress, FormGroup, IconButton, InputAdornment, Popover, Typography } from '@mui/material';
|
|
15
|
+
import classNames from 'classnames';
|
|
16
|
+
import { useThemeProps } from '@mui/system';
|
|
17
|
+
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
|
18
|
+
import { formatHttpError, UserService } from '@selfcommunity/api-services';
|
|
19
|
+
import { SCOPE_SC_UI } from '../../../constants/Errors';
|
|
20
|
+
import { Logger } from '@selfcommunity/utils';
|
|
21
|
+
import BaseDialog from '../../../shared/BaseDialog';
|
|
22
|
+
import PasswordTextField from '../../../shared/PasswordTextField';
|
|
23
|
+
import EmailTextField from '../../../shared/EmailTextField';
|
|
24
|
+
import { LoadingButton } from '@mui/lab';
|
|
25
|
+
import Icon from '@mui/material/Icon';
|
|
26
|
+
import { useSnackbar } from 'notistack';
|
|
27
|
+
const messages = defineMessages({
|
|
28
|
+
changePasswordTitle: {
|
|
29
|
+
id: 'ui.userProfileEditAccountCredentials.changePassword',
|
|
30
|
+
defaultMessage: 'ui.userProfileEditAccountCredentials.changePassword'
|
|
31
|
+
},
|
|
32
|
+
confirmPasswordError: {
|
|
33
|
+
id: 'ui.userProfileEditAccountCredentials.confirmPassword.error',
|
|
34
|
+
defaultMessage: 'ui.userProfileEditAccountCredentials.confirmPassword.error'
|
|
35
|
+
},
|
|
36
|
+
emptyEmailError: {
|
|
37
|
+
id: 'ui.userProfileEditAccountCredentials.email.empty.error',
|
|
38
|
+
defaultMessage: 'ui.userProfileEditAccountCredentials.email.empty.error'
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
const PREFIX = 'SCAccountCredential';
|
|
42
|
+
const DIALOG_PREFIX = `${PREFIX}-password-dialog`;
|
|
43
|
+
const classes = {
|
|
44
|
+
root: `${PREFIX}-root`,
|
|
45
|
+
email: `${PREFIX}-email`,
|
|
46
|
+
success: `${PREFIX}-success`,
|
|
47
|
+
error: `${PREFIX}-error`,
|
|
48
|
+
form: `${DIALOG_PREFIX}-password-form`,
|
|
49
|
+
formField: `${DIALOG_PREFIX}-form-field`,
|
|
50
|
+
password: `${DIALOG_PREFIX}-password`,
|
|
51
|
+
confirmChangeButton: `${DIALOG_PREFIX}-confirm-change-button`
|
|
52
|
+
};
|
|
53
|
+
const Root = styled(Box, {
|
|
54
|
+
name: PREFIX,
|
|
55
|
+
slot: 'Root',
|
|
56
|
+
overridesResolver: (props, styles) => styles.root
|
|
57
|
+
})(({ theme }) => ({
|
|
58
|
+
[`& .${classes.email}, .${classes.password}`]: {
|
|
59
|
+
margin: theme.spacing(1, 0, 1, 0),
|
|
60
|
+
fontWeight: 'bold'
|
|
61
|
+
}
|
|
62
|
+
}));
|
|
63
|
+
const PasswordDialog = styled(BaseDialog, {
|
|
64
|
+
name: DIALOG_PREFIX,
|
|
65
|
+
slot: 'Root',
|
|
66
|
+
overridesResolver: (props, styles) => styles.root
|
|
67
|
+
})(({ theme }) => ({
|
|
68
|
+
'& .MuiDialogContent-root': {
|
|
69
|
+
[`& .${classes.form}`]: {
|
|
70
|
+
[`& .${classes.formField}`]: {
|
|
71
|
+
margin: theme.spacing(1, 1, 1, 0)
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
[`& .${classes.confirmChangeButton}`]: {
|
|
76
|
+
marginTop: theme.spacing(1)
|
|
77
|
+
}
|
|
78
|
+
}));
|
|
79
|
+
export default function AccountCredentials(inProps) {
|
|
80
|
+
var _a;
|
|
81
|
+
// PROPS
|
|
82
|
+
const props = useThemeProps({
|
|
83
|
+
props: inProps,
|
|
84
|
+
name: PREFIX
|
|
85
|
+
});
|
|
86
|
+
// CONTEXT
|
|
87
|
+
const { className = null, user } = props, rest = __rest(props, ["className", "user"]);
|
|
88
|
+
// STATE
|
|
89
|
+
const [openChangePasswordDialog, setOpenChangePasswordDialog] = useState(false);
|
|
90
|
+
const initialFieldState = {
|
|
91
|
+
email: (_a = user === null || user === void 0 ? void 0 : user.email) !== null && _a !== void 0 ? _a : '',
|
|
92
|
+
password: '',
|
|
93
|
+
newPassword: '',
|
|
94
|
+
confirmPassword: ''
|
|
95
|
+
};
|
|
96
|
+
const initialErrorState = {
|
|
97
|
+
email: '',
|
|
98
|
+
password: '',
|
|
99
|
+
newPassword: '',
|
|
100
|
+
confirmPassword: ''
|
|
101
|
+
};
|
|
102
|
+
const [field, setField] = useState(initialFieldState);
|
|
103
|
+
const [error, setError] = useState(initialErrorState);
|
|
104
|
+
const [isEditing, setIsEditing] = useState(false);
|
|
105
|
+
const [isSubmittingPassword, setIsSubmittingPassword] = useState(false);
|
|
106
|
+
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
107
|
+
const [anchorEl, setAnchorEl] = useState(null);
|
|
108
|
+
const open = Boolean(anchorEl);
|
|
109
|
+
const { enqueueSnackbar, closeSnackbar } = useSnackbar();
|
|
110
|
+
// INTL
|
|
111
|
+
const intl = useIntl();
|
|
112
|
+
// HANDLERS
|
|
113
|
+
const handlePopoverOpen = (event) => {
|
|
114
|
+
setAnchorEl(event.currentTarget);
|
|
115
|
+
};
|
|
116
|
+
const handlePopoverClose = () => {
|
|
117
|
+
setAnchorEl(null);
|
|
118
|
+
};
|
|
119
|
+
const handleChange = (event) => {
|
|
120
|
+
const { name, value } = event.target;
|
|
121
|
+
setField((prev) => (Object.assign(Object.assign({}, prev), { [name]: value })));
|
|
122
|
+
if (!value) {
|
|
123
|
+
setError((prev) => (Object.assign(Object.assign({}, prev), { [name]: value })));
|
|
124
|
+
}
|
|
125
|
+
};
|
|
126
|
+
const handleEmailBlur = (e) => {
|
|
127
|
+
if (!e.target.value) {
|
|
128
|
+
setField((prev) => (Object.assign(Object.assign({}, prev), { ['email']: user === null || user === void 0 ? void 0 : user.email })));
|
|
129
|
+
setIsEditing(false);
|
|
130
|
+
}
|
|
131
|
+
};
|
|
132
|
+
const validateInput = () => {
|
|
133
|
+
if (field.newPassword !== field.confirmPassword) {
|
|
134
|
+
setError((prev) => (Object.assign(Object.assign({}, prev), { ['confirmPassword']: intl.formatMessage(messages.confirmPasswordError) })));
|
|
135
|
+
}
|
|
136
|
+
};
|
|
137
|
+
const handleCloseDialog = () => {
|
|
138
|
+
setOpenChangePasswordDialog(false);
|
|
139
|
+
setField(initialFieldState);
|
|
140
|
+
setError(initialErrorState);
|
|
141
|
+
};
|
|
142
|
+
const handleSubmitPassword = (event) => {
|
|
143
|
+
event.preventDefault();
|
|
144
|
+
event.stopPropagation();
|
|
145
|
+
setIsSubmittingPassword(true);
|
|
146
|
+
UserService.changeUserPassword(user === null || user === void 0 ? void 0 : user.id, field.password, field.newPassword)
|
|
147
|
+
.then(() => {
|
|
148
|
+
setIsSubmittingPassword(false);
|
|
149
|
+
handleCloseDialog();
|
|
150
|
+
})
|
|
151
|
+
.catch((error) => {
|
|
152
|
+
setIsSubmittingPassword(false);
|
|
153
|
+
const _error = formatHttpError(error);
|
|
154
|
+
Logger.error(SCOPE_SC_UI, error);
|
|
155
|
+
if (_error.passwordError) {
|
|
156
|
+
setError((prev) => (Object.assign(Object.assign({}, prev), { ['password']: _error.passwordError.error })));
|
|
157
|
+
}
|
|
158
|
+
if (_error.newPasswordError) {
|
|
159
|
+
setError((prev) => (Object.assign(Object.assign({}, prev), { ['newPassword']: _error.newPasswordError.error })));
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
};
|
|
163
|
+
const handleSubmitEmail = (e) => {
|
|
164
|
+
e.preventDefault();
|
|
165
|
+
e.stopPropagation();
|
|
166
|
+
setIsSubmitting(true);
|
|
167
|
+
UserService.changeUserMail(user === null || user === void 0 ? void 0 : user.id, field.email, true)
|
|
168
|
+
.then((res) => {
|
|
169
|
+
handleVerifyEmail(res.validation_code);
|
|
170
|
+
})
|
|
171
|
+
.catch((error) => {
|
|
172
|
+
setIsSubmitting(false);
|
|
173
|
+
const _error = formatHttpError(error);
|
|
174
|
+
setError((prev) => (Object.assign(Object.assign({}, prev), { ['email']: _error.error })));
|
|
175
|
+
});
|
|
176
|
+
};
|
|
177
|
+
const handleVerifyEmail = (code) => {
|
|
178
|
+
UserService.confirmChangeUserMail(user === null || user === void 0 ? void 0 : user.id, field.email, code)
|
|
179
|
+
.then(() => {
|
|
180
|
+
setIsEditing(false);
|
|
181
|
+
setIsSubmitting(false);
|
|
182
|
+
enqueueSnackbar(React.createElement(FormattedMessage, { id: "ui.userProfileEditAccountCredentials.email.success", defaultMessage: "ui.userProfileEditAccountCredentials.email.success" }), {
|
|
183
|
+
variant: 'success',
|
|
184
|
+
autoHideDuration: 1500
|
|
185
|
+
});
|
|
186
|
+
})
|
|
187
|
+
.catch((error) => {
|
|
188
|
+
const _error = formatHttpError(error);
|
|
189
|
+
setError((prev) => (Object.assign(Object.assign({}, prev), { ['email']: _error.error })));
|
|
190
|
+
setIsSubmitting(false);
|
|
191
|
+
});
|
|
192
|
+
};
|
|
193
|
+
if (!user) {
|
|
194
|
+
return;
|
|
195
|
+
}
|
|
196
|
+
return (React.createElement(Root, Object.assign({ className: classNames(classes.root, className) }, rest),
|
|
197
|
+
React.createElement(React.Fragment, null,
|
|
198
|
+
React.createElement(Typography, { variant: "body1", className: classes.email },
|
|
199
|
+
React.createElement(FormattedMessage, { id: "ui.userProfileEditAccountCredentials.email", defaultMessage: "ui.userProfileEditAccountCredentials.email" })),
|
|
200
|
+
React.createElement(React.Fragment, null, isSubmitting ? (React.createElement(CircularProgress, null)) : (React.createElement(React.Fragment, null,
|
|
201
|
+
React.createElement(EmailTextField, { name: "email", disabled: !isEditing || isSubmitting, size: "small", value: field.email, onChange: handleChange, onBlur: handleEmailBlur, error: Boolean(error.email), helperText: error.email, InputProps: {
|
|
202
|
+
endAdornment: (React.createElement(InputAdornment, { position: "end" }, !isEditing ? (React.createElement(IconButton, { onClick: () => setIsEditing(true), edge: "end" },
|
|
203
|
+
React.createElement(Icon, null, "edit"))) : error.email ? (React.createElement(Icon, { color: "error" }, "error")) : (React.createElement(IconButton, { onClick: handleSubmitEmail, edge: "end", color: "primary", disabled: !field.email },
|
|
204
|
+
React.createElement(Icon, null, "check")))))
|
|
205
|
+
} })))),
|
|
206
|
+
React.createElement(Typography, { variant: "body1", className: classes.password },
|
|
207
|
+
React.createElement(FormattedMessage, { id: "ui.userProfileEditAccountCredentials.passwordLabel", defaultMessage: "ui.userProfileEditAccountCredentials.passwordLabel" })),
|
|
208
|
+
React.createElement(Button, { size: "small", variant: "outlined", onClick: () => setOpenChangePasswordDialog(true), sx: { mb: 1 } },
|
|
209
|
+
React.createElement(FormattedMessage, { id: "ui.userProfileEditAccountCredentials.changePassword", defaultMessage: "ui.userProfileEditAccountCredentials.changePassword" }))),
|
|
210
|
+
openChangePasswordDialog && (React.createElement(PasswordDialog, Object.assign({ title: intl.formatMessage(messages.changePasswordTitle), open: openChangePasswordDialog, onClose: handleCloseDialog }, rest),
|
|
211
|
+
React.createElement(FormGroup, { className: classes.form },
|
|
212
|
+
React.createElement(PasswordTextField, { className: classes.formField, name: "password", disabled: isSubmittingPassword, label: React.createElement(FormattedMessage, { id: "ui.userProfileEditAccountCredentials.password", defaultMessage: "ui.userProfileEditAccountCredentials.password" }), size: "medium", value: field.password, onChange: handleChange, error: Boolean(error.password), helperText: error.password }),
|
|
213
|
+
React.createElement(PasswordTextField, { name: "newPassword", className: classes.formField, disabled: isSubmittingPassword, label: React.createElement(FormattedMessage, { id: "ui.userProfileEditAccountCredentials.newPassword", defaultMessage: "ui.userProfileEditAccountCredentials.newPassword" }), size: "medium", value: field.newPassword, onChange: handleChange, error: Boolean(error.newPassword), helperText: error.newPassword, InputProps: {
|
|
214
|
+
endAdornment: (React.createElement(InputAdornment, { position: "end" },
|
|
215
|
+
React.createElement(IconButton, { "aria-label": "info", onClick: handlePopoverOpen, edge: "end" }, React.createElement(Icon, null, "info"))))
|
|
216
|
+
} }),
|
|
217
|
+
React.createElement(Popover, { open: open, anchorEl: anchorEl, anchorOrigin: {
|
|
218
|
+
vertical: 'center',
|
|
219
|
+
horizontal: 'left'
|
|
220
|
+
}, transformOrigin: {
|
|
221
|
+
vertical: 'center',
|
|
222
|
+
horizontal: 'right'
|
|
223
|
+
}, onClose: handlePopoverClose },
|
|
224
|
+
React.createElement(Box, { sx: { p: '10px' } },
|
|
225
|
+
React.createElement(Typography, { component: 'span', sx: { whiteSpace: 'pre-line' } },
|
|
226
|
+
React.createElement(FormattedMessage, { id: "ui.userProfileEditAccountCredentials.newPassword.info", defaultMessage: "ui.userProfileEditAccountCredentials.newPassword.info" })))),
|
|
227
|
+
React.createElement(PasswordTextField, { name: "confirmPassword", className: classes.formField, disabled: isSubmittingPassword, label: React.createElement(FormattedMessage, { id: "ui.userProfileEditAccountCredentials.confirmPassword", defaultMessage: "ui.userProfileEditAccountCredentials.confirmPassword" }), size: "medium", value: field.confirmPassword, onChange: handleChange, onBlur: validateInput, error: Boolean(error.confirmPassword), helperText: error.confirmPassword })),
|
|
228
|
+
React.createElement(LoadingButton, { className: classes.confirmChangeButton, loading: isSubmittingPassword, disabled: !field.confirmPassword || Boolean(error.password) || Boolean(error.newPassword), variant: "contained", onClick: handleSubmitPassword },
|
|
229
|
+
React.createElement(FormattedMessage, { id: "ui.userProfileEditAccountCredentials.changePassword", defaultMessage: "ui.userProfileEditAccountCredentials.changePassword" }))))));
|
|
230
|
+
}
|
|
231
|
+
//# sourceMappingURL=AccountCredentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AccountCredentials.js","sourceRoot":"","sources":["../../../../../src/components/UserProfileEdit/Section/AccountCredentials.tsx"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,KAAK,EAAE,EAAC,QAAQ,EAAC,MAAM,OAAO,CAAC;AACtC,OAAO,EAAC,MAAM,EAAC,MAAM,sBAAsB,CAAC;AAC5C,OAAO,EAAC,GAAG,EAAE,MAAM,EAAE,gBAAgB,EAAE,SAAS,EAAE,UAAU,EAAE,cAAc,EAAE,OAAO,EAAE,UAAU,EAAC,MAAM,eAAe,CAAC;AACxH,OAAO,UAAU,MAAM,YAAY,CAAC;AACpC,OAAO,EAAC,aAAa,EAAC,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAC,cAAc,EAAE,gBAAgB,EAAE,OAAO,EAAC,MAAM,YAAY,CAAC;AACrE,OAAO,EAAC,eAAe,EAAE,WAAW,EAAC,MAAM,6BAA6B,CAAC;AACzE,OAAO,EAAC,WAAW,EAAC,MAAM,2BAA2B,CAAC;AACtD,OAAO,EAAC,MAAM,EAAC,MAAM,sBAAsB,CAAC;AAC5C,OAAO,UAAU,MAAM,4BAA4B,CAAC;AACpD,OAAO,iBAAiB,MAAM,mCAAmC,CAAC;AAClE,OAAO,cAAc,MAAM,gCAAgC,CAAC;AAE5D,OAAO,EAAC,aAAa,EAAC,MAAM,UAAU,CAAC;AACvC,OAAO,IAAI,MAAM,oBAAoB,CAAC;AACtC,OAAO,EAAC,WAAW,EAAC,MAAM,WAAW,CAAC;AAEtC,MAAM,QAAQ,GAAG,cAAc,CAAC;IAC9B,mBAAmB,EAAE;QACnB,EAAE,EAAE,qDAAqD;QACzD,cAAc,EAAE,qDAAqD;KACtE;IACD,oBAAoB,EAAE;QACpB,EAAE,EAAE,4DAA4D;QAChE,cAAc,EAAE,4DAA4D;KAC7E;IACD,eAAe,EAAE;QACf,EAAE,EAAE,wDAAwD;QAC5D,cAAc,EAAE,wDAAwD;KACzE;CACF,CAAC,CAAC;AACH,MAAM,MAAM,GAAG,qBAAqB,CAAC;AACrC,MAAM,aAAa,GAAG,GAAG,MAAM,kBAAkB,CAAC;AAElD,MAAM,OAAO,GAAG;IACd,IAAI,EAAE,GAAG,MAAM,OAAO;IACtB,KAAK,EAAE,GAAG,MAAM,QAAQ;IACxB,OAAO,EAAE,GAAG,MAAM,UAAU;IAC5B,KAAK,EAAE,GAAG,MAAM,QAAQ;IACxB,IAAI,EAAE,GAAG,aAAa,gBAAgB;IACtC,SAAS,EAAE,GAAG,aAAa,aAAa;IACxC,QAAQ,EAAE,GAAG,aAAa,WAAW;IACrC,mBAAmB,EAAE,GAAG,aAAa,wBAAwB;CAC9D,CAAC;AAEF,MAAM,IAAI,GAAG,MAAM,CAAC,GAAG,EAAE;IACvB,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,iBAAiB,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI;CAClD,CAAC,CAAC,CAAC,EAAC,KAAK,EAAC,EAAE,EAAE,CAAC,CAAC;IACf,CAAC,MAAM,OAAO,CAAC,KAAK,MAAM,OAAO,CAAC,QAAQ,EAAE,CAAC,EAAE;QAC7C,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;QACjC,UAAU,EAAE,MAAM;KACnB;CACF,CAAC,CAAC,CAAC;AAEJ,MAAM,cAAc,GAAG,MAAM,CAAC,UAAU,EAAE;IACxC,IAAI,EAAE,aAAa;IACnB,IAAI,EAAE,MAAM;IACZ,iBAAiB,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI;CAClD,CAAC,CAAC,CAAC,EAAC,KAAK,EAAC,EAAE,EAAE,CAAC,CAAC;IACf,0BAA0B,EAAE;QAC1B,CAAC,MAAM,OAAO,CAAC,IAAI,EAAE,CAAC,EAAE;YACtB,CAAC,MAAM,OAAO,CAAC,SAAS,EAAE,CAAC,EAAE;gBAC3B,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;aAClC;SACF;KACF;IACD,CAAC,MAAM,OAAO,CAAC,mBAAmB,EAAE,CAAC,EAAE;QACrC,SAAS,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;KAC5B;CACF,CAAC,CAAC,CAAC;AAiBJ,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,OAA+B;;IACxE,QAAQ;IACR,MAAM,KAAK,GAA2B,aAAa,CAAC;QAClD,KAAK,EAAE,OAAO;QACd,IAAI,EAAE,MAAM;KACb,CAAC,CAAC;IACH,UAAU;IACV,MAAM,EAAC,SAAS,GAAG,IAAI,EAAE,IAAI,KAAa,KAAK,EAAb,IAAI,UAAI,KAAK,EAAzC,qBAAiC,CAAQ,CAAC;IAChD,QAAQ;IACR,MAAM,CAAC,wBAAwB,EAAE,2BAA2B,CAAC,GAAG,QAAQ,CAAU,KAAK,CAAC,CAAC;IACzF,MAAM,iBAAiB,GAAG;QACxB,KAAK,EAAE,MAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,KAAK,mCAAI,EAAE;QACxB,QAAQ,EAAE,EAAE;QACZ,WAAW,EAAE,EAAE;QACf,eAAe,EAAE,EAAE;KACpB,CAAC;IACF,MAAM,iBAAiB,GAAG;QACxB,KAAK,EAAE,EAAE;QACT,QAAQ,EAAE,EAAE;QACZ,WAAW,EAAE,EAAE;QACf,eAAe,EAAE,EAAE;KACpB,CAAC;IACF,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAG,QAAQ,CAAM,iBAAiB,CAAC,CAAC;IAC3D,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAG,QAAQ,CAAM,iBAAiB,CAAC,CAAC;IAC3D,MAAM,CAAC,SAAS,EAAE,YAAY,CAAC,GAAG,QAAQ,CAAU,KAAK,CAAC,CAAC;IAC3D,MAAM,CAAC,oBAAoB,EAAE,uBAAuB,CAAC,GAAG,QAAQ,CAAU,KAAK,CAAC,CAAC;IACjF,MAAM,CAAC,YAAY,EAAE,eAAe,CAAC,GAAG,QAAQ,CAAU,KAAK,CAAC,CAAC;IACjE,MAAM,CAAC,QAAQ,EAAE,WAAW,CAAC,GAAG,QAAQ,CAAqB,IAAI,CAAC,CAAC;IACnE,MAAM,IAAI,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;IAC/B,MAAM,EAAC,eAAe,EAAE,aAAa,EAAC,GAAG,WAAW,EAAE,CAAC;IACvD,OAAO;IACP,MAAM,IAAI,GAAG,OAAO,EAAE,CAAC;IAEvB,WAAW;IACX,MAAM,iBAAiB,GAAG,CAAC,KAAoC,EAAE,EAAE;QACjE,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;IACnC,CAAC,CAAC;IAEF,MAAM,kBAAkB,GAAG,GAAG,EAAE;QAC9B,WAAW,CAAC,IAAI,CAAC,CAAC;IACpB,CAAC,CAAC;IAEF,MAAM,YAAY,GAAG,CAAC,KAAK,EAAE,EAAE;QAC7B,MAAM,EAAC,IAAI,EAAE,KAAK,EAAC,GAAG,KAAK,CAAC,MAAM,CAAC;QACnC,QAAQ,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,iCAAK,IAAI,KAAE,CAAC,IAAI,CAAC,EAAE,KAAK,IAAE,CAAC,CAAC;QAC/C,IAAI,CAAC,KAAK,EAAE;YACV,QAAQ,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,iCAAK,IAAI,KAAE,CAAC,IAAI,CAAC,EAAE,KAAK,IAAE,CAAC,CAAC;SAChD;IACH,CAAC,CAAC;IACF,MAAM,eAAe,GAAG,CAAC,CAAC,EAAE,EAAE;QAC5B,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,EAAE;YACnB,QAAQ,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,iCAAK,IAAI,KAAE,CAAC,OAAO,CAAC,EAAE,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,KAAK,IAAE,CAAC,CAAC;YACxD,YAAY,CAAC,KAAK,CAAC,CAAC;SACrB;IACH,CAAC,CAAC;IACF,MAAM,aAAa,GAAG,GAAG,EAAE;QACzB,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK,CAAC,eAAe,EAAE;YAC/C,QAAQ,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,iCAAK,IAAI,KAAE,CAAC,iBAAiB,CAAC,EAAE,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,oBAAoB,CAAC,IAAE,CAAC,CAAC;SACzG;IACH,CAAC,CAAC;IAEF,MAAM,iBAAiB,GAAG,GAAG,EAAE;QAC7B,2BAA2B,CAAC,KAAK,CAAC,CAAC;QACnC,QAAQ,CAAC,iBAAiB,CAAC,CAAC;QAC5B,QAAQ,CAAC,iBAAiB,CAAC,CAAC;IAC9B,CAAC,CAAC;IAEF,MAAM,oBAAoB,GAAG,CAAC,KAAK,EAAE,EAAE;QACrC,KAAK,CAAC,cAAc,EAAE,CAAC;QACvB,KAAK,CAAC,eAAe,EAAE,CAAC;QACxB,uBAAuB,CAAC,IAAI,CAAC,CAAC;QAC9B,WAAW,CAAC,kBAAkB,CAAC,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,EAAE,KAAK,CAAC,QAAQ,EAAE,KAAK,CAAC,WAAW,CAAC;aACxE,IAAI,CAAC,GAAG,EAAE;YACT,uBAAuB,CAAC,KAAK,CAAC,CAAC;YAC/B,iBAAiB,EAAE,CAAC;QACtB,CAAC,CAAC;aACD,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;YACf,uBAAuB,CAAC,KAAK,CAAC,CAAC;YAC/B,MAAM,MAAM,GAAG,eAAe,CAAC,KAAK,CAAC,CAAC;YACtC,MAAM,CAAC,KAAK,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC;YACjC,IAAI,MAAM,CAAC,aAAa,EAAE;gBACxB,QAAQ,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,iCAAK,IAAI,KAAE,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC,aAAa,CAAC,KAAK,IAAE,CAAC,CAAC;aAC3E;YACD,IAAI,MAAM,CAAC,gBAAgB,EAAE;gBAC3B,QAAQ,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,iCAAK,IAAI,KAAE,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC,gBAAgB,CAAC,KAAK,IAAE,CAAC,CAAC;aACjF;QACH,CAAC,CAAC,CAAC;IACP,CAAC,CAAC;IAEF,MAAM,iBAAiB,GAAG,CAAC,CAAC,EAAE,EAAE;QAC9B,CAAC,CAAC,cAAc,EAAE,CAAC;QACnB,CAAC,CAAC,eAAe,EAAE,CAAC;QACpB,eAAe,CAAC,IAAI,CAAC,CAAC;QACtB,WAAW,CAAC,cAAc,CAAC,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,EAAE,KAAK,CAAC,KAAK,EAAE,IAAI,CAAC;aACpD,IAAI,CAAC,CAAC,GAA0B,EAAE,EAAE;YACnC,iBAAiB,CAAC,GAAG,CAAC,eAAe,CAAC,CAAC;QACzC,CAAC,CAAC;aACD,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;YACf,eAAe,CAAC,KAAK,CAAC,CAAC;YACvB,MAAM,MAAM,GAAG,eAAe,CAAC,KAAK,CAAC,CAAC;YACtC,QAAQ,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,iCAAK,IAAI,KAAE,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,IAAE,CAAC,CAAC;QAC3D,CAAC,CAAC,CAAC;IACP,CAAC,CAAC;IAEF,MAAM,iBAAiB,GAAG,CAAC,IAAI,EAAE,EAAE;QACjC,WAAW,CAAC,qBAAqB,CAAC,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,EAAE,KAAK,CAAC,KAAK,EAAE,IAAI,CAAC;aAC3D,IAAI,CAAC,GAAG,EAAE;YACT,YAAY,CAAC,KAAK,CAAC,CAAC;YACpB,eAAe,CAAC,KAAK,CAAC,CAAC;YACvB,eAAe,CACb,oBAAC,gBAAgB,IACf,EAAE,EAAC,oDAAoD,EACvD,cAAc,EAAC,oDAAoD,GACnE,EACF;gBACE,OAAO,EAAE,SAAS;gBAClB,gBAAgB,EAAE,IAAI;aACvB,CACF,CAAC;QACJ,CAAC,CAAC;aACD,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;YACf,MAAM,MAAM,GAAG,eAAe,CAAC,KAAK,CAAC,CAAC;YACtC,QAAQ,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,iCAAK,IAAI,KAAE,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,IAAE,CAAC,CAAC;YACzD,eAAe,CAAC,KAAK,CAAC,CAAC;QACzB,CAAC,CAAC,CAAC;IACP,CAAC,CAAC;IAEF,IAAI,CAAC,IAAI,EAAE;QACT,OAAO;KACR;IAED,OAAO,CACL,oBAAC,IAAI,kBAAC,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,IAAI,EAAE,SAAS,CAAC,IAAM,IAAI;QAC5D;YACE,oBAAC,UAAU,IAAC,OAAO,EAAC,OAAO,EAAC,SAAS,EAAE,OAAO,CAAC,KAAK;gBAClD,oBAAC,gBAAgB,IAAC,EAAE,EAAC,4CAA4C,EAAC,cAAc,EAAC,4CAA4C,GAAG,CACrH;YACb,0CACG,YAAY,CAAC,CAAC,CAAC,CACd,oBAAC,gBAAgB,OAAG,CACrB,CAAC,CAAC,CAAC,CACF;gBACE,oBAAC,cAAc,IACb,IAAI,EAAC,OAAO,EACZ,QAAQ,EAAE,CAAC,SAAS,IAAI,YAAY,EACpC,IAAI,EAAC,OAAO,EACZ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,QAAQ,EAAE,YAAY,EACtB,MAAM,EAAE,eAAe,EACvB,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,EAC3B,UAAU,EAAE,KAAK,CAAC,KAAK,EACvB,UAAU,EAAE;wBACV,YAAY,EAAE,CACZ,oBAAC,cAAc,IAAC,QAAQ,EAAC,KAAK,IAC3B,CAAC,SAAS,CAAC,CAAC,CAAC,CACZ,oBAAC,UAAU,IAAC,OAAO,EAAE,GAAG,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,EAAE,IAAI,EAAC,KAAK;4BACvD,oBAAC,IAAI,eAAY,CACN,CACd,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAChB,oBAAC,IAAI,IAAC,KAAK,EAAC,OAAO,YAAa,CACjC,CAAC,CAAC,CAAC,CACF,oBAAC,UAAU,IAAC,OAAO,EAAE,iBAAiB,EAAE,IAAI,EAAC,KAAK,EAAC,KAAK,EAAC,SAAS,EAAC,QAAQ,EAAE,CAAC,KAAK,CAAC,KAAK;4BACvF,oBAAC,IAAI,gBAAa,CACP,CACd,CACc,CAClB;qBACF,GACD,CACD,CACJ,CACA;YACH,oBAAC,UAAU,IAAC,OAAO,EAAC,OAAO,EAAC,SAAS,EAAE,OAAO,CAAC,QAAQ;gBACrD,oBAAC,gBAAgB,IACf,EAAE,EAAC,oDAAoD,EACvD,cAAc,EAAC,oDAAoD,GACnE,CACS;YACb,oBAAC,MAAM,IAAC,IAAI,EAAC,OAAO,EAAC,OAAO,EAAC,UAAU,EAAC,OAAO,EAAE,GAAG,EAAE,CAAC,2BAA2B,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAC,EAAE,EAAE,CAAC,EAAC;gBACnG,oBAAC,gBAAgB,IACf,EAAE,EAAC,qDAAqD,EACxD,cAAc,EAAC,qDAAqD,GACpE,CACK,CACR;QACF,wBAAwB,IAAI,CAC3B,oBAAC,cAAc,kBACb,KAAK,EAAE,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,mBAAmB,CAAC,EACvD,IAAI,EAAE,wBAAwB,EAC9B,OAAO,EAAE,iBAAiB,IACtB,IAAI;YACR,oBAAC,SAAS,IAAC,SAAS,EAAE,OAAO,CAAC,IAAI;gBAChC,oBAAC,iBAAiB,IAChB,SAAS,EAAE,OAAO,CAAC,SAAS,EAC5B,IAAI,EAAC,UAAU,EACf,QAAQ,EAAE,oBAAoB,EAC9B,KAAK,EACH,oBAAC,gBAAgB,IAAC,EAAE,EAAC,+CAA+C,EAAC,cAAc,EAAC,+CAA+C,GAAG,EAExI,IAAI,EAAC,QAAQ,EACb,KAAK,EAAE,KAAK,CAAC,QAAQ,EACrB,QAAQ,EAAE,YAAY,EACtB,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,EAC9B,UAAU,EAAE,KAAK,CAAC,QAAQ,GAC1B;gBACF,oBAAC,iBAAiB,IAChB,IAAI,EAAC,aAAa,EAClB,SAAS,EAAE,OAAO,CAAC,SAAS,EAC5B,QAAQ,EAAE,oBAAoB,EAC9B,KAAK,EACH,oBAAC,gBAAgB,IACf,EAAE,EAAC,kDAAkD,EACrD,cAAc,EAAC,kDAAkD,GACjE,EAEJ,IAAI,EAAC,QAAQ,EACb,KAAK,EAAE,KAAK,CAAC,WAAW,EACxB,QAAQ,EAAE,YAAY,EACtB,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,EACjC,UAAU,EAAE,KAAK,CAAC,WAAW,EAC7B,UAAU,EAAE;wBACV,YAAY,EAAE,CACZ,oBAAC,cAAc,IAAC,QAAQ,EAAC,KAAK;4BAC5B,oBAAC,UAAU,kBAAY,MAAM,EAAC,OAAO,EAAE,iBAAiB,EAAE,IAAI,EAAC,KAAK,IACjE,oBAAC,IAAI,eAAY,CACP,CACE,CAClB;qBACF,GACD;gBACF,oBAAC,OAAO,IACN,IAAI,EAAE,IAAI,EACV,QAAQ,EAAE,QAAQ,EAClB,YAAY,EAAE;wBACZ,QAAQ,EAAE,QAAQ;wBAClB,UAAU,EAAE,MAAM;qBACnB,EACD,eAAe,EAAE;wBACf,QAAQ,EAAE,QAAQ;wBAClB,UAAU,EAAE,OAAO;qBACpB,EACD,OAAO,EAAE,kBAAkB;oBAC3B,oBAAC,GAAG,IAAC,EAAE,EAAE,EAAC,CAAC,EAAE,MAAM,EAAC;wBAClB,oBAAC,UAAU,IAAC,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,EAAC,UAAU,EAAE,UAAU,EAAC;4BACzD,oBAAC,gBAAgB,IACf,EAAE,EAAC,uDAAuD,EAC1D,cAAc,EAAC,uDAAuD,GACtE,CACS,CACT,CACE;gBACV,oBAAC,iBAAiB,IAChB,IAAI,EAAC,iBAAiB,EACtB,SAAS,EAAE,OAAO,CAAC,SAAS,EAC5B,QAAQ,EAAE,oBAAoB,EAC9B,KAAK,EACH,oBAAC,gBAAgB,IACf,EAAE,EAAC,sDAAsD,EACzD,cAAc,EAAC,sDAAsD,GACrE,EAEJ,IAAI,EAAC,QAAQ,EACb,KAAK,EAAE,KAAK,CAAC,eAAe,EAC5B,QAAQ,EAAE,YAAY,EACtB,MAAM,EAAE,aAAa,EACrB,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,eAAe,CAAC,EACrC,UAAU,EAAE,KAAK,CAAC,eAAe,GACjC,CACQ;YACZ,oBAAC,aAAa,IACZ,SAAS,EAAE,OAAO,CAAC,mBAAmB,EACtC,OAAO,EAAE,oBAAoB,EAC7B,QAAQ,EAAE,CAAC,KAAK,CAAC,eAAe,IAAI,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,EACzF,OAAO,EAAC,WAAW,EACnB,OAAO,EAAE,oBAAoB;gBAC7B,oBAAC,gBAAgB,IACf,EAAE,EAAC,qDAAqD,EACxD,cAAc,EAAC,qDAAqD,GACpE,CACY,CACD,CAClB,CACI,CACR,CAAC;AACJ,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/shared/PasswordTextField/index.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAwC,cAAc,EAAC,MAAM,eAAe,CAAC;AAWpF,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,KAAK,EAAE,cAAc,GAAG,GAAG,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/shared/PasswordTextField/index.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAwC,cAAc,EAAC,MAAM,eAAe,CAAC;AAWpF,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,KAAK,EAAE,cAAc,GAAG,GAAG,CAAC,OAAO,CA4B5E"}
|
|
@@ -9,6 +9,7 @@ const Root = styled(TextField, {
|
|
|
9
9
|
overridesResolver: (props, styles) => styles.root
|
|
10
10
|
})(({ theme }) => ({}));
|
|
11
11
|
export default function PasswordTextField(props) {
|
|
12
|
+
var _a;
|
|
12
13
|
// STATE
|
|
13
14
|
const [showPassword, setShowPassword] = useState(false);
|
|
14
15
|
// HANDLERS
|
|
@@ -17,8 +18,10 @@ export default function PasswordTextField(props) {
|
|
|
17
18
|
};
|
|
18
19
|
// RENDER
|
|
19
20
|
return (React.createElement(Root, Object.assign({ type: showPassword ? 'text' : 'password' }, props, { InputProps: {
|
|
20
|
-
endAdornment: (React.createElement(
|
|
21
|
-
|
|
21
|
+
endAdornment: (React.createElement(React.Fragment, null, (_a = props === null || props === void 0 ? void 0 : props.InputProps) === null || _a === void 0 ? void 0 :
|
|
22
|
+
_a.endAdornment,
|
|
23
|
+
React.createElement(InputAdornment, { position: "end" },
|
|
24
|
+
React.createElement(IconButton, { "aria-label": "toggle password visibility", onClick: handleClick, edge: "end" }, showPassword ? React.createElement(Icon, null, "visibility_off") : React.createElement(Icon, null, "visibility")))))
|
|
22
25
|
} })));
|
|
23
26
|
}
|
|
24
27
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/shared/PasswordTextField/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAC,QAAQ,EAAC,MAAM,OAAO,CAAC;AACtC,OAAO,EAAC,MAAM,EAAC,MAAM,sBAAsB,CAAC;AAC5C,OAAO,EAAC,UAAU,EAAE,cAAc,EAAE,SAAS,EAAiB,MAAM,eAAe,CAAC;AACpF,OAAO,IAAI,MAAM,oBAAoB,CAAC;AAEtC,MAAM,MAAM,GAAG,qBAAqB,CAAC;AAErC,MAAM,IAAI,GAAG,MAAM,CAAC,SAAS,EAAE;IAC7B,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,iBAAiB,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI;CAClD,CAAC,CAAC,CAAC,EAAC,KAAK,EAAC,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;AAEtB,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,KAAqB
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/shared/PasswordTextField/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAC,QAAQ,EAAC,MAAM,OAAO,CAAC;AACtC,OAAO,EAAC,MAAM,EAAC,MAAM,sBAAsB,CAAC;AAC5C,OAAO,EAAC,UAAU,EAAE,cAAc,EAAE,SAAS,EAAiB,MAAM,eAAe,CAAC;AACpF,OAAO,IAAI,MAAM,oBAAoB,CAAC;AAEtC,MAAM,MAAM,GAAG,qBAAqB,CAAC;AAErC,MAAM,IAAI,GAAG,MAAM,CAAC,SAAS,EAAE;IAC7B,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,iBAAiB,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI;CAClD,CAAC,CAAC,CAAC,EAAC,KAAK,EAAC,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;AAEtB,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,KAAqB;;IAC7D,QAAQ;IACR,MAAM,CAAC,YAAY,EAAE,eAAe,CAAC,GAAG,QAAQ,CAAU,KAAK,CAAC,CAAC;IAEjE,WAAW;IACX,MAAM,WAAW,GAAG,GAAG,EAAE;QACvB,eAAe,CAAC,CAAC,YAAY,CAAC,CAAC;IACjC,CAAC,CAAC;IAEF,SAAS;IACT,OAAO,CACL,oBAAC,IAAI,kBACH,IAAI,EAAE,YAAY,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,UAAU,IACpC,KAAK,IACT,UAAU,EAAE;YACV,YAAY,EAAE,CACZ,0CACG,MAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,UAAU;mBAAE,YAAY;gBAChC,oBAAC,cAAc,IAAC,QAAQ,EAAC,KAAK;oBAC5B,oBAAC,UAAU,kBAAY,4BAA4B,EAAC,OAAO,EAAE,WAAW,EAAE,IAAI,EAAC,KAAK,IACjF,YAAY,CAAC,CAAC,CAAC,oBAAC,IAAI,yBAAsB,CAAC,CAAC,CAAC,oBAAC,IAAI,qBAAkB,CAC1D,CACE,CAChB,CACJ;SACF,IACD,CACH,CAAC;AACJ,CAAC"}
|