mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-23 23:19:40 +01:00
94 lines
3.4 KiB
TypeScript
94 lines
3.4 KiB
TypeScript
/*
|
|
This file is part of the Notesnook project (https://notesnook.com/)
|
|
|
|
Copyright (C) 2023 Streetwriters (Private) Limited
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import React from "react";
|
|
|
|
const AddNotebookDialog = React.lazy(() => import("./add-notebook-dialog"));
|
|
const BuyDialog = React.lazy(() => import("./buy-dialog"));
|
|
const Confirm = React.lazy(() => import("./confirm"));
|
|
const EmailVerificationDialog = React.lazy(
|
|
() => import("./email-verification-dialog")
|
|
);
|
|
const ImportDialog = React.lazy(() => import("./import-dialog"));
|
|
const LoadingDialog = React.lazy(() => import("./loading-dialog"));
|
|
const ProgressDialog = React.lazy(() => import("./progress-dialog"));
|
|
const MoveDialog = React.lazy(() => import("./move-note-dialog"));
|
|
const PasswordDialog = React.lazy(() => import("./password-dialog"));
|
|
const RecoveryKeyDialog = React.lazy(() => import("./recovery-key-dialog"));
|
|
const ItemDialog = React.lazy(() => import("./item-dialog"));
|
|
const FeatureDialog = React.lazy(() => import("./feature-dialog"));
|
|
const TrackingDetailsDialog = React.lazy(
|
|
() => import("./tracking-details-dialog")
|
|
);
|
|
const ReminderDialog = React.lazy(() => import("./reminder-dialog"));
|
|
const AddReminderDialog = React.lazy(() => import("./add-reminder-dialog"));
|
|
const ReminderPreviewDialog = React.lazy(
|
|
() => import("./reminder-preview-dialog")
|
|
);
|
|
const AnnouncementDialog = React.lazy(() => import("./announcement-dialog"));
|
|
const IssueDialog = React.lazy(() => import("./issue-dialog"));
|
|
const MultifactorDialog = React.lazy(() => import("./mfa/multi-factor-dialog"));
|
|
const RecoveryCodesDialog = React.lazy(
|
|
() => import("./mfa/recovery-code-dialog")
|
|
);
|
|
// import { MultifactorDialog, RecoveryCodesDialog } from "./multi-factor-dialog";
|
|
const OnboardingDialog = React.lazy(() => import("./onboarding-dialog"));
|
|
const AttachmentsDialog = React.lazy(() => import("./attachments-dialog"));
|
|
const Prompt = React.lazy(() => import("./prompt"));
|
|
const ToolbarConfigDialog = React.lazy(() => import("./toolbar-config-dialog"));
|
|
const MigrationDialog = React.lazy(() => import("./migration-dialog"));
|
|
const EmailChangeDialog = React.lazy(() => import("./email-change-dialog"));
|
|
const LanguageSelectorDialog = React.lazy(
|
|
() => import("./language-selector-dialog")
|
|
);
|
|
const BillingHistoryDialog = React.lazy(
|
|
() => import("./billing-history-dialog")
|
|
);
|
|
|
|
export const Dialogs = {
|
|
AddNotebookDialog,
|
|
ToolbarConfigDialog,
|
|
TrackingDetailsDialog,
|
|
BuyDialog,
|
|
Confirm,
|
|
Prompt,
|
|
EmailVerificationDialog,
|
|
LoadingDialog,
|
|
MoveDialog,
|
|
PasswordDialog,
|
|
RecoveryKeyDialog,
|
|
ItemDialog,
|
|
FeatureDialog,
|
|
ProgressDialog,
|
|
ReminderDialog,
|
|
AnnouncementDialog,
|
|
IssueDialog,
|
|
ImportDialog,
|
|
MultifactorDialog,
|
|
RecoveryCodesDialog,
|
|
OnboardingDialog,
|
|
AttachmentsDialog,
|
|
MigrationDialog,
|
|
AddReminderDialog,
|
|
ReminderPreviewDialog,
|
|
EmailChangeDialog,
|
|
LanguageSelectorDialog,
|
|
BillingHistoryDialog
|
|
};
|