mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-25 16:09:42 +01:00
179 lines
4.4 KiB
JavaScript
179 lines
4.4 KiB
JavaScript
/*
|
|
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/>.
|
|
*/
|
|
|
|
export const eOnLoadNote = "500";
|
|
|
|
export const eOpenActionSheet = "501";
|
|
|
|
export const eCloseActionSheet = "502";
|
|
|
|
export const eOpenSimpleDialog = "503";
|
|
|
|
export const eCloseSimpleDialog = "504";
|
|
|
|
export const eOpenMoveNoteDialog = "505";
|
|
|
|
export const eCloseMoveNoteDialog = "506";
|
|
|
|
export const eOpenAddNotebookDialog = "507";
|
|
|
|
export const eCloseAddNotebookDialog = "508";
|
|
|
|
export const eOpenLoginDialog = "511";
|
|
|
|
export const eCloseLoginDialog = "512";
|
|
|
|
export const eLoginDialogNavigateBack = "514";
|
|
|
|
export const eOpenSideMenu = "515";
|
|
|
|
export const eCloseSideMenu = "516";
|
|
|
|
export const eOpenFullscreenEditor = "517";
|
|
|
|
export const eCloseFullscreenEditor = "518";
|
|
|
|
export const eEnableGestures = "519";
|
|
|
|
export const eDisableGestures = "520";
|
|
|
|
export const eOpenModalMenu = "521";
|
|
|
|
export const eCloseModalMenu = "522";
|
|
|
|
export const eSendSideMenuOverlayRef = "523";
|
|
|
|
export const eMoveNoteDialogNavigateBack = "524";
|
|
|
|
export const eShowToast = "525";
|
|
|
|
export const eHideToast = "526";
|
|
|
|
export const eThemeUpdated = "527";
|
|
|
|
export const eScrollEvent = "528";
|
|
|
|
export const eUpdateNotebookRoute = "529";
|
|
|
|
export const eOpenVaultDialog = "530";
|
|
|
|
export const eCloseVaultDialog = "531";
|
|
|
|
export const refreshNotesPage = "532";
|
|
|
|
export const eClearSearch = "533";
|
|
|
|
export const eClearEditor = "534";
|
|
|
|
export const eApplyChanges = "535";
|
|
|
|
export const eShowMergeDialog = "536";
|
|
|
|
export const eSwitchNightMode = "537";
|
|
|
|
export const eStartSyncer = "538";
|
|
|
|
export const eSetModalNavigator = "539";
|
|
|
|
export const eOpenPremiumDialog = "540";
|
|
|
|
export const eClosePremiumDialog = "541";
|
|
|
|
export const eResetApp = "542";
|
|
|
|
export const eOpenExportDialog = "543";
|
|
|
|
export const eCloseExportDialog = "544";
|
|
|
|
export const eOpenRecoveryKeyDialog = "545";
|
|
|
|
export const eCloseRecoveryKeyDialog = "546";
|
|
|
|
export const eOpenPendingDialog = "547";
|
|
|
|
export const eClosePendingDialog = "548";
|
|
|
|
export const eOpenPremiumStatusDialog = "549";
|
|
|
|
export const eClosePremiumStatusDialog = "550";
|
|
|
|
export const eOpenSheet = "551";
|
|
|
|
export const eCloseSheet = "552";
|
|
|
|
export const eOpenRestoreDialog = "553";
|
|
|
|
export const eCloseRestoreDialog = "554";
|
|
|
|
export const eOnNoteEdited = "555";
|
|
|
|
export const eUpdateSearchState = "556";
|
|
|
|
export const eOpenResultDialog = "557";
|
|
export const eCloseResultDialog = "558";
|
|
|
|
export const eOpenSortDialog = "559";
|
|
export const eCloseSortDialog = "560";
|
|
|
|
export const eOpenJumpToDialog = "561";
|
|
export const eCloseJumpToDialog = "562";
|
|
|
|
export const eShowGetPremium = "563";
|
|
export const eOpenRateDialog = "564";
|
|
export const eCloseRateDialog = "565";
|
|
|
|
export const eOpenPublishNoteDialog = "566";
|
|
export const eClosePublishNoteDialog = "567";
|
|
|
|
export const eOpenTagsDialog = "568";
|
|
export const eCloseTagsDialog = "569";
|
|
|
|
export const eOpenAttachmentsDialog = "600";
|
|
export const eCloseAttachmentDialog = "601";
|
|
|
|
export const eOpenTrialEndingDialog = "602";
|
|
|
|
export const eOpenAnnouncementDialog = "603";
|
|
export const eCloseAnnouncementDialog = "604";
|
|
|
|
export const eOpenLoading = "605";
|
|
export const eCloseLoading = "606";
|
|
|
|
export const eOnNotebookUpdated = "607";
|
|
|
|
export const eUserLoggedIn = "608";
|
|
|
|
export const eLoginSessionExpired = "609";
|
|
export const eDBItemUpdate = "610";
|
|
export const eGroupOptionsUpdated = "611";
|
|
export const eOnRefreshSearch = "612";
|
|
|
|
export const eOpenAppLockPasswordDialog = "613";
|
|
export const eCloseAppLocKPasswordDailog = "614";
|
|
export const eEditorTabFocused = "615";
|
|
export const eUnlockNote = "616";
|
|
export const eOnChangeFluidTab = "617";
|
|
export const eUnlockWithBiometrics = "618";
|
|
export const eUnlockWithPassword = "619";
|
|
export const eUpdateNoteInEditor = "620";
|
|
export const eOnEnterEditor = "621";
|
|
export const eOnExitEditor = "622";
|
|
export const eEditorReset = "623";
|
|
export const eAfterSync = "624";
|