2021-05-13 07:29:46 +08:00
|
|
|
/**
|
|
|
|
* The `EditUserModal` component displays a modal dialog with a login form.
|
|
|
|
*/
|
2021-11-23 21:06:36 +08:00
|
|
|
export default class EditUserModal extends Modal<import("./Modal").IInternalModalAttrs> {
|
2021-10-31 06:31:34 +08:00
|
|
|
constructor();
|
2021-05-13 07:29:46 +08:00
|
|
|
username: Stream<any> | undefined;
|
|
|
|
email: Stream<any> | undefined;
|
|
|
|
isEmailConfirmed: Stream<any> | undefined;
|
|
|
|
setPassword: Stream<boolean> | undefined;
|
|
|
|
password: Stream<any> | undefined;
|
|
|
|
groups: {} | undefined;
|
2021-11-12 04:05:26 +08:00
|
|
|
fields(): ItemList<any>;
|
2021-05-13 07:29:46 +08:00
|
|
|
activate(): void;
|
|
|
|
data(): {
|
|
|
|
relationships: {};
|
|
|
|
};
|
|
|
|
nonAdminEditingAdmin(): any;
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
protected userIsAdmin(user: any): any;
|
|
|
|
}
|
|
|
|
import Modal from "./Modal";
|
|
|
|
import Stream from "../utils/Stream";
|
|
|
|
import ItemList from "../utils/ItemList";
|