1
0
mirror of https://github.com/flarum/core.git synced 2025-08-16 13:24:11 +02:00

Bundled output for commit 7db2d0f697

Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
This commit is contained in:
flarum-bot
2021-10-30 22:31:34 +00:00
parent 7db2d0f697
commit 45927f1068
21 changed files with 122 additions and 88 deletions

View File

@@ -2,7 +2,8 @@
* The `ChangeEmailModal` component shows a modal dialog which allows the user
* to change their email address.
*/
export default class ChangeEmailModal extends Modal {
export default class ChangeEmailModal extends Modal<any> {
constructor();
/**
* Whether or not the email has been changed successfully.
*

View File

@@ -2,6 +2,7 @@
* The `ChangePasswordModal` component shows a modal dialog which allows the
* user to send themself a password reset email.
*/
export default class ChangePasswordModal extends Modal {
export default class ChangePasswordModal extends Modal<any> {
constructor();
}
import Modal from "../../common/components/Modal";

View File

@@ -6,7 +6,8 @@
*
* - `email`
*/
export default class ForgotPasswordModal extends Modal {
export default class ForgotPasswordModal extends Modal<any> {
constructor();
/**
* The value of the email input.
*

View File

@@ -6,7 +6,8 @@
* - `identification`
* - `password`
*/
export default class LogInModal extends Modal {
export default class LogInModal extends Modal<any> {
constructor();
/**
* The value of the identification input.
*

View File

@@ -1,7 +1,8 @@
/**
* The 'RenameDiscussionModal' displays a modal dialog with an input to rename a discussion
*/
export default class RenameDiscussionModal extends Modal {
export default class RenameDiscussionModal extends Modal<any> {
constructor();
discussion: any;
currentTitle: any;
newTitle: Stream<any> | undefined;

View File

@@ -8,7 +8,8 @@
* - `password`
* - `token` An email token to sign up with.
*/
export default class SignUpModal extends Modal {
export default class SignUpModal extends Modal<any> {
constructor();
/**
* The value of the username input.
*