@plutonhq/core-frontend 0.0.1
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/LICENSE +202 -0
- package/README.md +3 -0
- package/dist/@types/backups.d.ts +76 -0
- package/dist/@types/backups.d.ts.map +1 -0
- package/dist/@types/devices.d.ts +234 -0
- package/dist/@types/devices.d.ts.map +1 -0
- package/dist/@types/index.d.ts +11 -0
- package/dist/@types/index.d.ts.map +1 -0
- package/dist/@types/index.js +2 -0
- package/dist/@types/index.js.map +1 -0
- package/dist/@types/plans.d.ts +192 -0
- package/dist/@types/plans.d.ts.map +1 -0
- package/dist/@types/restores.d.ts +107 -0
- package/dist/@types/restores.d.ts.map +1 -0
- package/dist/@types/settings.d.ts +20 -0
- package/dist/@types/settings.d.ts.map +1 -0
- package/dist/@types/storages.d.ts +33 -0
- package/dist/@types/storages.d.ts.map +1 -0
- package/dist/@types/system.d.ts +12 -0
- package/dist/@types/system.d.ts.map +1 -0
- package/dist/components/App/App/App.d.ts +3 -0
- package/dist/components/App/App/App.d.ts.map +1 -0
- package/dist/components/App/App/App.js +35 -0
- package/dist/components/App/App/App.js.map +1 -0
- package/dist/components/App/App/App.module.scss +14 -0
- package/dist/components/App/App/App.module.scss.js +10 -0
- package/dist/components/App/App/App.module.scss.js.map +1 -0
- package/dist/components/App/AppContent/AppContent.d.ts +4 -0
- package/dist/components/App/AppContent/AppContent.d.ts.map +1 -0
- package/dist/components/App/AppContent/AppContent.js +7 -0
- package/dist/components/App/AppContent/AppContent.js.map +1 -0
- package/dist/components/App/AppContent/AppContent.module.scss +12 -0
- package/dist/components/App/AppContent/AppContent.module.scss.js +8 -0
- package/dist/components/App/AppContent/AppContent.module.scss.js.map +1 -0
- package/dist/components/App/Footer/Footer.d.ts +8 -0
- package/dist/components/App/Footer/Footer.d.ts.map +1 -0
- package/dist/components/App/Footer/Footer.js +23 -0
- package/dist/components/App/Footer/Footer.js.map +1 -0
- package/dist/components/App/Footer/Footer.module.scss +23 -0
- package/dist/components/App/Footer/Footer.module.scss.js +8 -0
- package/dist/components/App/Footer/Footer.module.scss.js.map +1 -0
- package/dist/components/App/PageTitle/PageTitle.d.ts +5 -0
- package/dist/components/App/PageTitle/PageTitle.d.ts.map +1 -0
- package/dist/components/App/PageTitle/PageTitle.js +13 -0
- package/dist/components/App/PageTitle/PageTitle.js.map +1 -0
- package/dist/components/App/SideNav/SideNav.d.ts +3 -0
- package/dist/components/App/SideNav/SideNav.d.ts.map +1 -0
- package/dist/components/App/SideNav/SideNav.js +91 -0
- package/dist/components/App/SideNav/SideNav.js.map +1 -0
- package/dist/components/App/SideNav/SideNav.module.scss +58 -0
- package/dist/components/App/SideNav/SideNav.module.scss.js +12 -0
- package/dist/components/App/SideNav/SideNav.module.scss.js.map +1 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.d.ts +7 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.d.ts.map +1 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.js +94 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.js.map +1 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.module.scss +142 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.module.scss.js +40 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.module.scss.js.map +1 -0
- package/dist/components/Device/DeviceCPU/DeviceCPU.d.ts +7 -0
- package/dist/components/Device/DeviceCPU/DeviceCPU.d.ts.map +1 -0
- package/dist/components/Device/DeviceCPU/DeviceCPU.js +51 -0
- package/dist/components/Device/DeviceCPU/DeviceCPU.js.map +1 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.d.ts +8 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.d.ts.map +1 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.js +27 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.js.map +1 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.module.scss +214 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.module.scss.js +42 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.module.scss.js.map +1 -0
- package/dist/components/Device/DeviceItem/DeviceItem.d.ts +8 -0
- package/dist/components/Device/DeviceItem/DeviceItem.d.ts.map +1 -0
- package/dist/components/Device/DeviceItem/DeviceItem.js +89 -0
- package/dist/components/Device/DeviceItem/DeviceItem.js.map +1 -0
- package/dist/components/Device/DeviceItem/DeviceItem.module.scss +216 -0
- package/dist/components/Device/DeviceItem/DeviceItem.module.scss.js +38 -0
- package/dist/components/Device/DeviceItem/DeviceItem.module.scss.js.map +1 -0
- package/dist/components/Device/DeviceMemory/DeviceMemory.d.ts +7 -0
- package/dist/components/Device/DeviceMemory/DeviceMemory.d.ts.map +1 -0
- package/dist/components/Device/DeviceMemory/DeviceMemory.js +82 -0
- package/dist/components/Device/DeviceMemory/DeviceMemory.js.map +1 -0
- package/dist/components/Device/DeviceNetworks/DeviceNetworks.d.ts +7 -0
- package/dist/components/Device/DeviceNetworks/DeviceNetworks.d.ts.map +1 -0
- package/dist/components/Device/DeviceNetworks/DeviceNetworks.js +28 -0
- package/dist/components/Device/DeviceNetworks/DeviceNetworks.js.map +1 -0
- package/dist/components/Device/DeviceRcloneSettings/DeviceRcloneSettings.d.ts +8 -0
- package/dist/components/Device/DeviceRcloneSettings/DeviceRcloneSettings.d.ts.map +1 -0
- package/dist/components/Device/DeviceRcloneSettings/DeviceRcloneSettings.js +140 -0
- package/dist/components/Device/DeviceRcloneSettings/DeviceRcloneSettings.js.map +1 -0
- package/dist/components/Device/DeviceResticSettings/DeviceResticSettings.d.ts +8 -0
- package/dist/components/Device/DeviceResticSettings/DeviceResticSettings.d.ts.map +1 -0
- package/dist/components/Device/DeviceResticSettings/DeviceResticSettings.js +55 -0
- package/dist/components/Device/DeviceResticSettings/DeviceResticSettings.js.map +1 -0
- package/dist/components/Device/DeviceStorageDisks/DeviceStorageDisks.d.ts +7 -0
- package/dist/components/Device/DeviceStorageDisks/DeviceStorageDisks.d.ts.map +1 -0
- package/dist/components/Device/DeviceStorageDisks/DeviceStorageDisks.js +26 -0
- package/dist/components/Device/DeviceStorageDisks/DeviceStorageDisks.js.map +1 -0
- package/dist/components/Device/DeviceStorageDrives/DeviceStorageDrives.d.ts +7 -0
- package/dist/components/Device/DeviceStorageDrives/DeviceStorageDrives.d.ts.map +1 -0
- package/dist/components/Device/DeviceStorageDrives/DeviceStorageDrives.js +48 -0
- package/dist/components/Device/DeviceStorageDrives/DeviceStorageDrives.js.map +1 -0
- package/dist/components/Device/DeviceSystem/DeviceSystem.d.ts +8 -0
- package/dist/components/Device/DeviceSystem/DeviceSystem.d.ts.map +1 -0
- package/dist/components/Device/DeviceSystem/DeviceSystem.js +43 -0
- package/dist/components/Device/DeviceSystem/DeviceSystem.js.map +1 -0
- package/dist/components/Device/EditDevice/EditDevice.d.ts +8 -0
- package/dist/components/Device/EditDevice/EditDevice.d.ts.map +1 -0
- package/dist/components/Device/EditDevice/EditDevice.js +130 -0
- package/dist/components/Device/EditDevice/EditDevice.js.map +1 -0
- package/dist/components/Device/EditDevice/EditDevice.module.scss +110 -0
- package/dist/components/Device/EditDevice/EditDevice.module.scss.js +20 -0
- package/dist/components/Device/EditDevice/EditDevice.module.scss.js.map +1 -0
- package/dist/components/Plan/AddPlan/AddPlan.d.ts +7 -0
- package/dist/components/Plan/AddPlan/AddPlan.d.ts.map +1 -0
- package/dist/components/Plan/AddPlan/AddPlan.js +38 -0
- package/dist/components/Plan/AddPlan/AddPlan.js.map +1 -0
- package/dist/components/Plan/AddPlan/AddPlan.module.scss +191 -0
- package/dist/components/Plan/AddPlan/AddPlan.module.scss.js +20 -0
- package/dist/components/Plan/AddPlan/AddPlan.module.scss.js.map +1 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.d.ts +14 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.d.ts.map +1 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.js +73 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.js.map +1 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.module.scss +189 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.module.scss.js +46 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.module.scss.js.map +1 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.d.ts +12 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.d.ts.map +1 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.js +160 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.js.map +1 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.module.scss +120 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.module.scss.js +34 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.module.scss.js.map +1 -0
- package/dist/components/Plan/Backups/Backups.d.ts +11 -0
- package/dist/components/Plan/Backups/Backups.d.ts.map +1 -0
- package/dist/components/Plan/Backups/Backups.js +276 -0
- package/dist/components/Plan/Backups/Backups.js.map +1 -0
- package/dist/components/Plan/Backups/Backups.module.scss +210 -0
- package/dist/components/Plan/Backups/Backups.module.scss.js +46 -0
- package/dist/components/Plan/Backups/Backups.module.scss.js.map +1 -0
- package/dist/components/Plan/EditPlan/EditPlan.d.ts +8 -0
- package/dist/components/Plan/EditPlan/EditPlan.d.ts.map +1 -0
- package/dist/components/Plan/EditPlan/EditPlan.js +42 -0
- package/dist/components/Plan/EditPlan/EditPlan.js.map +1 -0
- package/dist/components/Plan/EditPlan/EditPlan.module.scss +41 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.d.ts +7 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.d.ts.map +1 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.js +49 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.js.map +1 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.module.scss +58 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.module.scss.js +16 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanForm/PlanForm.d.ts +15 -0
- package/dist/components/Plan/PlanForm/PlanForm.d.ts.map +1 -0
- package/dist/components/Plan/PlanForm/PlanForm.js +173 -0
- package/dist/components/Plan/PlanForm/PlanForm.js.map +1 -0
- package/dist/components/Plan/PlanForm/PlanForm.module.scss +72 -0
- package/dist/components/Plan/PlanForm/PlanForm.module.scss.js +18 -0
- package/dist/components/Plan/PlanForm/PlanForm.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanForm/PlanFormNav.d.ts +8 -0
- package/dist/components/Plan/PlanForm/PlanFormNav.d.ts.map +1 -0
- package/dist/components/Plan/PlanForm/PlanFormNav.js +70 -0
- package/dist/components/Plan/PlanForm/PlanFormNav.js.map +1 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.d.ts +9 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.d.ts.map +1 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.js +49 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.js.map +1 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.module.scss +44 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.module.scss.js +18 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanItems/PlanItem.d.ts +8 -0
- package/dist/components/Plan/PlanItems/PlanItem.d.ts.map +1 -0
- package/dist/components/Plan/PlanItems/PlanItem.js +171 -0
- package/dist/components/Plan/PlanItems/PlanItem.js.map +1 -0
- package/dist/components/Plan/PlanItems/PlanItem.module.scss +332 -0
- package/dist/components/Plan/PlanItems/PlanItem.module.scss.js +40 -0
- package/dist/components/Plan/PlanItems/PlanItem.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanLogs/PlanLogs.d.ts +9 -0
- package/dist/components/Plan/PlanLogs/PlanLogs.d.ts.map +1 -0
- package/dist/components/Plan/PlanLogs/PlanLogs.js +13 -0
- package/dist/components/Plan/PlanLogs/PlanLogs.js.map +1 -0
- package/dist/components/Plan/PlanLogs/PlanLogs.module.scss +0 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.d.ts +7 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.d.ts.map +1 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.js +33 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.js.map +1 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.module.scss +42 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.module.scss.js +20 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.d.ts +13 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.d.ts.map +1 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.js +45 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.js.map +1 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.module.scss +19 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.module.scss.js +8 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanPruneModal/PlanPruneModal.d.ts +12 -0
- package/dist/components/Plan/PlanPruneModal/PlanPruneModal.d.ts.map +1 -0
- package/dist/components/Plan/PlanPruneModal/PlanPruneModal.js +44 -0
- package/dist/components/Plan/PlanPruneModal/PlanPruneModal.js.map +1 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.d.ts +9 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.d.ts.map +1 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.js +56 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.js.map +1 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.module.scss +9 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.module.scss.js +8 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanAdvancedSettings.d.ts +11 -0
- package/dist/components/Plan/PlanSettings/PlanAdvancedSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanAdvancedSettings.js +94 -0
- package/dist/components/Plan/PlanSettings/PlanAdvancedSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanGeneralSettings.d.ts +8 -0
- package/dist/components/Plan/PlanSettings/PlanGeneralSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanGeneralSettings.js +55 -0
- package/dist/components/Plan/PlanSettings/PlanGeneralSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanNotificationSettings.d.ts +10 -0
- package/dist/components/Plan/PlanSettings/PlanNotificationSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanNotificationSettings.js +67 -0
- package/dist/components/Plan/PlanSettings/PlanNotificationSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanPerformanceSettings.d.ts +8 -0
- package/dist/components/Plan/PlanSettings/PlanPerformanceSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanPerformanceSettings.js +88 -0
- package/dist/components/Plan/PlanSettings/PlanPerformanceSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanPruneSettings.d.ts +8 -0
- package/dist/components/Plan/PlanSettings/PlanPruneSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanPruneSettings.js +104 -0
- package/dist/components/Plan/PlanSettings/PlanPruneSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanScriptsSettings.d.ts +9 -0
- package/dist/components/Plan/PlanSettings/PlanScriptsSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanScriptsSettings.js +273 -0
- package/dist/components/Plan/PlanSettings/PlanScriptsSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanSettings.module.scss +464 -0
- package/dist/components/Plan/PlanSettings/PlanSettings.module.scss.js +60 -0
- package/dist/components/Plan/PlanSettings/PlanSettings.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanSourceSettings.d.ts +10 -0
- package/dist/components/Plan/PlanSettings/PlanSourceSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanSourceSettings.js +47 -0
- package/dist/components/Plan/PlanSettings/PlanSourceSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanStrategySettings.d.ts +16 -0
- package/dist/components/Plan/PlanSettings/PlanStrategySettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanStrategySettings.js +19 -0
- package/dist/components/Plan/PlanSettings/PlanStrategySettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanTypeSettings.d.ts +16 -0
- package/dist/components/Plan/PlanSettings/PlanTypeSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanTypeSettings.js +17 -0
- package/dist/components/Plan/PlanSettings/PlanTypeSettings.js.map +1 -0
- package/dist/components/Plan/PlanStats/PlanStats.d.ts +9 -0
- package/dist/components/Plan/PlanStats/PlanStats.d.ts.map +1 -0
- package/dist/components/Plan/PlanStats/PlanStats.js +81 -0
- package/dist/components/Plan/PlanStats/PlanStats.js.map +1 -0
- package/dist/components/Plan/PlanStats/PlanStats.module.scss +125 -0
- package/dist/components/Plan/PlanStats/PlanStats.module.scss.js +22 -0
- package/dist/components/Plan/PlanStats/PlanStats.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanUnlockModal/PlanUnlockModal.d.ts +8 -0
- package/dist/components/Plan/PlanUnlockModal/PlanUnlockModal.d.ts.map +1 -0
- package/dist/components/Plan/PlanUnlockModal/PlanUnlockModal.js +29 -0
- package/dist/components/Plan/PlanUnlockModal/PlanUnlockModal.js.map +1 -0
- package/dist/components/Plan/Restores/Restores.d.ts +10 -0
- package/dist/components/Plan/Restores/Restores.d.ts.map +1 -0
- package/dist/components/Plan/Restores/Restores.js +144 -0
- package/dist/components/Plan/Restores/Restores.js.map +1 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.d.ts +8 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.d.ts.map +1 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.js +27 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.js.map +1 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.module.scss +71 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.module.scss.js +16 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.module.scss.js.map +1 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.d.ts +17 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.d.ts.map +1 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.js +268 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.js.map +1 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.module.scss +326 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.module.scss.js +70 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.module.scss.js.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreConfirmStep.d.ts +17 -0
- package/dist/components/Restore/RestoreWizard/RestoreConfirmStep.d.ts.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreConfirmStep.js +77 -0
- package/dist/components/Restore/RestoreWizard/RestoreConfirmStep.js.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreFileSelectorStep.d.ts +19 -0
- package/dist/components/Restore/RestoreWizard/RestoreFileSelectorStep.d.ts.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreFileSelectorStep.js +59 -0
- package/dist/components/Restore/RestoreWizard/RestoreFileSelectorStep.js.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestorePreviewStep.d.ts +18 -0
- package/dist/components/Restore/RestoreWizard/RestorePreviewStep.d.ts.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestorePreviewStep.js +85 -0
- package/dist/components/Restore/RestoreWizard/RestorePreviewStep.js.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreSettingsStep.d.ts +11 -0
- package/dist/components/Restore/RestoreWizard/RestoreSettingsStep.d.ts.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreSettingsStep.js +160 -0
- package/dist/components/Restore/RestoreWizard/RestoreSettingsStep.js.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.d.ts +8 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.d.ts.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.js +115 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.js.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.module.scss +390 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.module.scss.js +64 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.module.scss.js.map +1 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.d.ts +8 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.d.ts.map +1 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.js +192 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.js.map +1 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.module.scss +299 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.module.scss.js +68 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.module.scss.js.map +1 -0
- package/dist/components/Settings/AppLogs/AppLogs.d.ts +6 -0
- package/dist/components/Settings/AppLogs/AppLogs.d.ts.map +1 -0
- package/dist/components/Settings/AppLogs/AppLogs.js +14 -0
- package/dist/components/Settings/AppLogs/AppLogs.js.map +1 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.d.ts +8 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.d.ts.map +1 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.js +59 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.js.map +1 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.module.scss +3 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.module.scss.js +8 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.module.scss.js.map +1 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.d.ts +8 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.d.ts.map +1 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.js +47 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.js.map +1 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.module.scss +38 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.module.scss.js +12 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.module.scss.js.map +1 -0
- package/dist/components/Settings/IntegrationSettings/SMTPSettings.d.ts +9 -0
- package/dist/components/Settings/IntegrationSettings/SMTPSettings.d.ts.map +1 -0
- package/dist/components/Settings/IntegrationSettings/SMTPSettings.js +73 -0
- package/dist/components/Settings/IntegrationSettings/SMTPSettings.js.map +1 -0
- package/dist/components/Skeleton/SkeletonItems.d.ts +8 -0
- package/dist/components/Skeleton/SkeletonItems.d.ts.map +1 -0
- package/dist/components/Skeleton/SkeletonItems.js +21 -0
- package/dist/components/Skeleton/SkeletonItems.js.map +1 -0
- package/dist/components/Skeleton/SkeletonItems.module.scss +162 -0
- package/dist/components/Skeleton/SkeletonItems.module.scss.js +26 -0
- package/dist/components/Skeleton/SkeletonItems.module.scss.js.map +1 -0
- package/dist/components/Storage/AddStorage/AddStorage.d.ts +6 -0
- package/dist/components/Storage/AddStorage/AddStorage.d.ts.map +1 -0
- package/dist/components/Storage/AddStorage/AddStorage.js +186 -0
- package/dist/components/Storage/AddStorage/AddStorage.js.map +1 -0
- package/dist/components/Storage/AddStorage/AddStorage.module.scss +168 -0
- package/dist/components/Storage/AddStorage/AddStorage.module.scss.js +34 -0
- package/dist/components/Storage/AddStorage/AddStorage.module.scss.js.map +1 -0
- package/dist/components/Storage/EditStorage/EditStorage.d.ts +8 -0
- package/dist/components/Storage/EditStorage/EditStorage.d.ts.map +1 -0
- package/dist/components/Storage/EditStorage/EditStorage.js +149 -0
- package/dist/components/Storage/EditStorage/EditStorage.js.map +1 -0
- package/dist/components/Storage/EditStorage/EditStorage.module.scss +0 -0
- package/dist/components/Storage/StorageAuthSettings/StorageAuthSettings.d.ts +14 -0
- package/dist/components/Storage/StorageAuthSettings/StorageAuthSettings.d.ts.map +1 -0
- package/dist/components/Storage/StorageAuthSettings/StorageAuthSettings.js +116 -0
- package/dist/components/Storage/StorageAuthSettings/StorageAuthSettings.js.map +1 -0
- package/dist/components/Storage/StorageItem/StorageItem.d.ts +8 -0
- package/dist/components/Storage/StorageItem/StorageItem.d.ts.map +1 -0
- package/dist/components/Storage/StorageItem/StorageItem.js +149 -0
- package/dist/components/Storage/StorageItem/StorageItem.js.map +1 -0
- package/dist/components/Storage/StorageItem/StorageItem.module.scss +231 -0
- package/dist/components/Storage/StorageItem/StorageItem.module.scss.js +32 -0
- package/dist/components/Storage/StorageItem/StorageItem.module.scss.js.map +1 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.d.ts +10 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.d.ts.map +1 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.js +139 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.js.map +1 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.module.scss +29 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.module.scss.js +8 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.module.scss.js.map +1 -0
- package/dist/components/common/ActionModal/ActionModal.d.ts +25 -0
- package/dist/components/common/ActionModal/ActionModal.d.ts.map +1 -0
- package/dist/components/common/ActionModal/ActionModal.js +42 -0
- package/dist/components/common/ActionModal/ActionModal.js.map +1 -0
- package/dist/components/common/ActionModal/ActionModal.module.scss +60 -0
- package/dist/components/common/ActionModal/ActionModal.module.scss.js +16 -0
- package/dist/components/common/ActionModal/ActionModal.module.scss.js.map +1 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.d.ts +13 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.d.ts.map +1 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.js +47 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.js.map +1 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.module.scss +88 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.module.scss.js +30 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.module.scss.js.map +1 -0
- package/dist/components/common/Button/Button.d.ts +15 -0
- package/dist/components/common/Button/Button.d.ts.map +1 -0
- package/dist/components/common/Button/Button.js +25 -0
- package/dist/components/common/Button/Button.js.map +1 -0
- package/dist/components/common/Button/Button.module.scss +56 -0
- package/dist/components/common/Button/Button.module.scss.js +26 -0
- package/dist/components/common/Button/Button.module.scss.js.map +1 -0
- package/dist/components/common/FileIcon/FileIcon.d.ts +8 -0
- package/dist/components/common/FileIcon/FileIcon.d.ts.map +1 -0
- package/dist/components/common/FileIcon/FileIcon.js +10 -0
- package/dist/components/common/FileIcon/FileIcon.js.map +1 -0
- package/dist/components/common/FileManager/FileManager.d.ts +14 -0
- package/dist/components/common/FileManager/FileManager.d.ts.map +1 -0
- package/dist/components/common/FileManager/FileManager.js +156 -0
- package/dist/components/common/FileManager/FileManager.js.map +1 -0
- package/dist/components/common/FileManager/FileManager.module.scss +196 -0
- package/dist/components/common/FileManager/FileManager.module.scss.js +30 -0
- package/dist/components/common/FileManager/FileManager.module.scss.js.map +1 -0
- package/dist/components/common/FolderPicker/FolderPicker.d.ts +12 -0
- package/dist/components/common/FolderPicker/FolderPicker.d.ts.map +1 -0
- package/dist/components/common/FolderPicker/FolderPicker.js +50 -0
- package/dist/components/common/FolderPicker/FolderPicker.js.map +1 -0
- package/dist/components/common/FolderPicker/FolderPicker.module.scss +77 -0
- package/dist/components/common/FolderPicker/FolderPicker.module.scss.js +16 -0
- package/dist/components/common/FolderPicker/FolderPicker.module.scss.js.map +1 -0
- package/dist/components/common/Icon/Icon.d.ts +10 -0
- package/dist/components/common/Icon/Icon.d.ts.map +1 -0
- package/dist/components/common/Icon/Icon.js +1349 -0
- package/dist/components/common/Icon/Icon.js.map +1 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.d.ts +8 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.d.ts.map +1 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.js +30 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.js.map +1 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.module.scss +51 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.module.scss.js +10 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.module.scss.js.map +1 -0
- package/dist/components/common/LogViewer/LogViewer.d.ts +13 -0
- package/dist/components/common/LogViewer/LogViewer.d.ts.map +1 -0
- package/dist/components/common/LogViewer/LogViewer.js +112 -0
- package/dist/components/common/LogViewer/LogViewer.js.map +1 -0
- package/dist/components/common/LogViewer/LogViewer.module.scss +188 -0
- package/dist/components/common/LogViewer/LogViewer.module.scss.js +52 -0
- package/dist/components/common/LogViewer/LogViewer.module.scss.js.map +1 -0
- package/dist/components/common/Logo/Logo.d.ts +9 -0
- package/dist/components/common/Logo/Logo.d.ts.map +1 -0
- package/dist/components/common/Logo/Logo.js +12 -0
- package/dist/components/common/Logo/Logo.js.map +1 -0
- package/dist/components/common/Modal/Modal.d.ts +13 -0
- package/dist/components/common/Modal/Modal.d.ts.map +1 -0
- package/dist/components/common/Modal/Modal.js +49 -0
- package/dist/components/common/Modal/Modal.js.map +1 -0
- package/dist/components/common/Modal/Modal.module.scss +81 -0
- package/dist/components/common/Modal/Modal.module.scss.js +16 -0
- package/dist/components/common/Modal/Modal.module.scss.js.map +1 -0
- package/dist/components/common/NotFound/NotFound.d.ts +8 -0
- package/dist/components/common/NotFound/NotFound.d.ts.map +1 -0
- package/dist/components/common/NotFound/NotFound.js +20 -0
- package/dist/components/common/NotFound/NotFound.js.map +1 -0
- package/dist/components/common/NotFound/NotFound.module.scss +36 -0
- package/dist/components/common/NotFound/NotFound.module.scss.js +8 -0
- package/dist/components/common/NotFound/NotFound.module.scss.js.map +1 -0
- package/dist/components/common/PageHeader/PageHeader.d.ts +12 -0
- package/dist/components/common/PageHeader/PageHeader.d.ts.map +1 -0
- package/dist/components/common/PageHeader/PageHeader.js +22 -0
- package/dist/components/common/PageHeader/PageHeader.js.map +1 -0
- package/dist/components/common/PageHeader/PageHeader.module.scss +61 -0
- package/dist/components/common/PageHeader/PageHeader.module.scss.js +14 -0
- package/dist/components/common/PageHeader/PageHeader.module.scss.js.map +1 -0
- package/dist/components/common/PathPicker/PathPicker.d.ts +16 -0
- package/dist/components/common/PathPicker/PathPicker.d.ts.map +1 -0
- package/dist/components/common/PathPicker/PathPicker.js +213 -0
- package/dist/components/common/PathPicker/PathPicker.js.map +1 -0
- package/dist/components/common/PathPicker/PathPicker.module.scss +278 -0
- package/dist/components/common/PathPicker/PathPicker.module.scss.js +38 -0
- package/dist/components/common/PathPicker/PathPicker.module.scss.js.map +1 -0
- package/dist/components/common/SearchItems/SearchItems.d.ts +7 -0
- package/dist/components/common/SearchItems/SearchItems.d.ts.map +1 -0
- package/dist/components/common/SearchItems/SearchItems.js +38 -0
- package/dist/components/common/SearchItems/SearchItems.js.map +1 -0
- package/dist/components/common/SearchItems/SearchItems.module.scss +48 -0
- package/dist/components/common/SearchItems/SearchItems.module.scss.js +14 -0
- package/dist/components/common/SearchItems/SearchItems.module.scss.js.map +1 -0
- package/dist/components/common/SidePanel/SidePanel.d.ts +12 -0
- package/dist/components/common/SidePanel/SidePanel.d.ts.map +1 -0
- package/dist/components/common/SidePanel/SidePanel.js +40 -0
- package/dist/components/common/SidePanel/SidePanel.js.map +1 -0
- package/dist/components/common/SidePanel/SidePanel.module.scss +217 -0
- package/dist/components/common/SidePanel/SidePanel.module.scss.js +26 -0
- package/dist/components/common/SidePanel/SidePanel.module.scss.js.map +1 -0
- package/dist/components/common/SortItems/SortItems.d.ts +10 -0
- package/dist/components/common/SortItems/SortItems.d.ts.map +1 -0
- package/dist/components/common/SortItems/SortItems.js +52 -0
- package/dist/components/common/SortItems/SortItems.js.map +1 -0
- package/dist/components/common/SortItems/SortItems.module.scss +53 -0
- package/dist/components/common/SortItems/SortItems.module.scss.js +16 -0
- package/dist/components/common/SortItems/SortItems.module.scss.js.map +1 -0
- package/dist/components/common/StatusLabel/StatusLabel.d.ts +7 -0
- package/dist/components/common/StatusLabel/StatusLabel.d.ts.map +1 -0
- package/dist/components/common/StatusLabel/StatusLabel.js +29 -0
- package/dist/components/common/StatusLabel/StatusLabel.js.map +1 -0
- package/dist/components/common/StatusLabel/StatusLabel.module.scss +0 -0
- package/dist/components/common/Tabs/Tabs.d.ts +32 -0
- package/dist/components/common/Tabs/Tabs.d.ts.map +1 -0
- package/dist/components/common/Tabs/Tabs.js +33 -0
- package/dist/components/common/Tabs/Tabs.js.map +1 -0
- package/dist/components/common/Tabs/Tabs.module.scss +43 -0
- package/dist/components/common/Tabs/Tabs.module.scss.js +15 -0
- package/dist/components/common/Tabs/Tabs.module.scss.js.map +1 -0
- package/dist/components/common/TagsFilter/TagsFilter.d.ts +7 -0
- package/dist/components/common/TagsFilter/TagsFilter.d.ts.map +1 -0
- package/dist/components/common/TagsFilter/TagsFilter.js +45 -0
- package/dist/components/common/TagsFilter/TagsFilter.js.map +1 -0
- package/dist/components/common/TagsFilter/TagsFilter.module.scss +59 -0
- package/dist/components/common/TagsFilter/TagsFilter.module.scss.js +18 -0
- package/dist/components/common/TagsFilter/TagsFilter.module.scss.js.map +1 -0
- package/dist/components/common/form/FormField/FormField.d.ts +14 -0
- package/dist/components/common/form/FormField/FormField.d.ts.map +1 -0
- package/dist/components/common/form/FormField/FormField.js +19 -0
- package/dist/components/common/form/FormField/FormField.js.map +1 -0
- package/dist/components/common/form/FormField/FormField.module.scss +32 -0
- package/dist/components/common/form/FormField/FormField.module.scss.js +18 -0
- package/dist/components/common/form/FormField/FormField.module.scss.js.map +1 -0
- package/dist/components/common/form/Input/Input.d.ts +21 -0
- package/dist/components/common/form/Input/Input.d.ts.map +1 -0
- package/dist/components/common/form/Input/Input.js +57 -0
- package/dist/components/common/form/Input/Input.js.map +1 -0
- package/dist/components/common/form/Input/Input.module.scss +71 -0
- package/dist/components/common/form/Input/Input.module.scss.js +22 -0
- package/dist/components/common/form/Input/Input.module.scss.js.map +1 -0
- package/dist/components/common/form/IntervalField/IntervalField.d.ts +14 -0
- package/dist/components/common/form/IntervalField/IntervalField.d.ts.map +1 -0
- package/dist/components/common/form/IntervalField/IntervalField.js +133 -0
- package/dist/components/common/form/IntervalField/IntervalField.js.map +1 -0
- package/dist/components/common/form/IntervalField/IntervalField.module.scss +47 -0
- package/dist/components/common/form/IntervalField/IntervalField.module.scss.js +18 -0
- package/dist/components/common/form/IntervalField/IntervalField.module.scss.js.map +1 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.d.ts +26 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.d.ts.map +1 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.js +76 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.js.map +1 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.module.scss +157 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.module.scss.js +30 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.module.scss.js.map +1 -0
- package/dist/components/common/form/NumberInput/NumberInput.d.ts +19 -0
- package/dist/components/common/form/NumberInput/NumberInput.d.ts.map +1 -0
- package/dist/components/common/form/NumberInput/NumberInput.js +63 -0
- package/dist/components/common/form/NumberInput/NumberInput.js.map +1 -0
- package/dist/components/common/form/NumberInput/NumberInput.module.scss +102 -0
- package/dist/components/common/form/NumberInput/NumberInput.module.scss.js +22 -0
- package/dist/components/common/form/NumberInput/NumberInput.module.scss.js.map +1 -0
- package/dist/components/common/form/PasswordField/PasswordField.d.ts +19 -0
- package/dist/components/common/form/PasswordField/PasswordField.d.ts.map +1 -0
- package/dist/components/common/form/PasswordField/PasswordField.js +57 -0
- package/dist/components/common/form/PasswordField/PasswordField.js.map +1 -0
- package/dist/components/common/form/PasswordField/PasswordField.module.scss +78 -0
- package/dist/components/common/form/PasswordField/PasswordField.module.scss.js +24 -0
- package/dist/components/common/form/PasswordField/PasswordField.module.scss.js.map +1 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.d.ts +20 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.d.ts.map +1 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.js +50 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.js.map +1 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.module.scss +104 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.module.scss.js +26 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.module.scss.js.map +1 -0
- package/dist/components/common/form/Select/Select.d.ts +27 -0
- package/dist/components/common/form/Select/Select.d.ts.map +1 -0
- package/dist/components/common/form/Select/Select.js +76 -0
- package/dist/components/common/form/Select/Select.js.map +1 -0
- package/dist/components/common/form/Select/Select.module.scss +193 -0
- package/dist/components/common/form/Select/Select.module.scss.js +40 -0
- package/dist/components/common/form/Select/Select.module.scss.js.map +1 -0
- package/dist/components/common/form/SizePicker/SizePicker.d.ts +13 -0
- package/dist/components/common/form/SizePicker/SizePicker.d.ts.map +1 -0
- package/dist/components/common/form/SizePicker/SizePicker.js +60 -0
- package/dist/components/common/form/SizePicker/SizePicker.js.map +1 -0
- package/dist/components/common/form/SizePicker/SizePicker.module.scss +82 -0
- package/dist/components/common/form/SizePicker/SizePicker.module.scss.js +20 -0
- package/dist/components/common/form/SizePicker/SizePicker.module.scss.js.map +1 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.d.ts +18 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.d.ts.map +1 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.js +77 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.js.map +1 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.module.scss +114 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.module.scss.js +16 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.module.scss.js.map +1 -0
- package/dist/components/common/form/TagsInput/TagsInput.d.ts +13 -0
- package/dist/components/common/form/TagsInput/TagsInput.d.ts.map +1 -0
- package/dist/components/common/form/TagsInput/TagsInput.js +51 -0
- package/dist/components/common/form/TagsInput/TagsInput.js.map +1 -0
- package/dist/components/common/form/TagsInput/TagsInput.module.scss +54 -0
- package/dist/components/common/form/TagsInput/TagsInput.module.scss.js +14 -0
- package/dist/components/common/form/TagsInput/TagsInput.module.scss.js.map +1 -0
- package/dist/components/common/form/TimePicker/TimePicker.d.ts +10 -0
- package/dist/components/common/form/TimePicker/TimePicker.d.ts.map +1 -0
- package/dist/components/common/form/TimePicker/TimePicker.js +69 -0
- package/dist/components/common/form/TimePicker/TimePicker.js.map +1 -0
- package/dist/components/common/form/TimePicker/TimePicker.module.scss +73 -0
- package/dist/components/common/form/TimePicker/TimePicker.module.scss.js +28 -0
- package/dist/components/common/form/TimePicker/TimePicker.module.scss.js.map +1 -0
- package/dist/components/common/form/Toggle/Toggle.d.ts +13 -0
- package/dist/components/common/form/Toggle/Toggle.d.ts.map +1 -0
- package/dist/components/common/form/Toggle/Toggle.js +19 -0
- package/dist/components/common/form/Toggle/Toggle.js.map +1 -0
- package/dist/components/common/form/Toggle/Toggle.module.scss +68 -0
- package/dist/components/common/form/Toggle/Toggle.module.scss.js +12 -0
- package/dist/components/common/form/Toggle/Toggle.module.scss.js.map +1 -0
- package/dist/components/common/form/Tristate/Tristate.d.ts +17 -0
- package/dist/components/common/form/Tristate/Tristate.d.ts.map +1 -0
- package/dist/components/common/form/Tristate/Tristate.js +34 -0
- package/dist/components/common/form/Tristate/Tristate.js.map +1 -0
- package/dist/components/common/form/Tristate/Tristate.module.scss +67 -0
- package/dist/components/common/form/Tristate/Tristate.module.scss.js +18 -0
- package/dist/components/common/form/Tristate/Tristate.module.scss.js.map +1 -0
- package/dist/components/index.d.ts +100 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components.js +198 -0
- package/dist/components.js.map +1 -0
- package/dist/config/features.d.ts +5 -0
- package/dist/config/features.d.ts.map +1 -0
- package/dist/context/ComponentOverrideContext.d.ts +13 -0
- package/dist/context/ComponentOverrideContext.d.ts.map +1 -0
- package/dist/context/ComponentOverrideContext.js +9 -0
- package/dist/context/ComponentOverrideContext.js.map +1 -0
- package/dist/context/ThemeContext.d.ts +13 -0
- package/dist/context/ThemeContext.d.ts.map +1 -0
- package/dist/context/ThemeContext.js +38 -0
- package/dist/context/ThemeContext.js.map +1 -0
- package/dist/context/index.d.ts +6 -0
- package/dist/context/index.d.ts.map +1 -0
- package/dist/context.js +10 -0
- package/dist/context.js.map +1 -0
- package/dist/favicon.png +0 -0
- package/dist/hooks/index.d.ts +6 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/usePlanSingleActions.d.ts +28 -0
- package/dist/hooks/usePlanSingleActions.d.ts.map +1 -0
- package/dist/hooks/usePlanSingleActions.js +70 -0
- package/dist/hooks/usePlanSingleActions.js.map +1 -0
- package/dist/hooks/usePwaAutoUpdate.d.ts +6 -0
- package/dist/hooks/usePwaAutoUpdate.d.ts.map +1 -0
- package/dist/hooks/usePwaAutoUpdate.js +16 -0
- package/dist/hooks/usePwaAutoUpdate.js.map +1 -0
- package/dist/hooks.js +7 -0
- package/dist/hooks.js.map +1 -0
- package/dist/icons/icon-128x128.png +0 -0
- package/dist/icons/icon-144x144.png +0 -0
- package/dist/icons/icon-192x192.png +0 -0
- package/dist/icons/icon-512x512.png +0 -0
- package/dist/icons/icon-72x72.png +0 -0
- package/dist/icons/icon-96x96.png +0 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -0
- package/dist/main.d.ts +2 -0
- package/dist/main.d.ts.map +1 -0
- package/dist/providers/1fichier.png +0 -0
- package/dist/providers/arvan.png +0 -0
- package/dist/providers/azureBlob.png +0 -0
- package/dist/providers/azureFiles.png +0 -0
- package/dist/providers/b2.png +0 -0
- package/dist/providers/box.png +0 -0
- package/dist/providers/ceph.png +0 -0
- package/dist/providers/dreamobjects.png +0 -0
- package/dist/providers/drive.png +0 -0
- package/dist/providers/dropbox.png +0 -0
- package/dist/providers/files.png +0 -0
- package/dist/providers/ftp.png +0 -0
- package/dist/providers/gcs.png +0 -0
- package/dist/providers/gofile.png +0 -0
- package/dist/providers/gphotos.png +0 -0
- package/dist/providers/hdfs.png +0 -0
- package/dist/providers/hidrive.png +0 -0
- package/dist/providers/http.png +0 -0
- package/dist/providers/ibmcos.png +0 -0
- package/dist/providers/idrive.png +0 -0
- package/dist/providers/internetarchive.png +0 -0
- package/dist/providers/ionos.png +0 -0
- package/dist/providers/jottacloud.png +0 -0
- package/dist/providers/koofr.png +0 -0
- package/dist/providers/leviia.png +0 -0
- package/dist/providers/liara.png +0 -0
- package/dist/providers/linkbox.png +0 -0
- package/dist/providers/linode.png +0 -0
- package/dist/providers/local.png +0 -0
- package/dist/providers/lyvecloud.png +0 -0
- package/dist/providers/magalu.png +0 -0
- package/dist/providers/mailru.png +0 -0
- package/dist/providers/mega.png +0 -0
- package/dist/providers/minio.png +0 -0
- package/dist/providers/netstorage.png +0 -0
- package/dist/providers/obs.png +0 -0
- package/dist/providers/onedrive.png +0 -0
- package/dist/providers/opendrive.png +0 -0
- package/dist/providers/oracle.png +0 -0
- package/dist/providers/oss.png +0 -0
- package/dist/providers/outscale.png +0 -0
- package/dist/providers/pcloud.png +0 -0
- package/dist/providers/petabox.png +0 -0
- package/dist/providers/pikpak.png +0 -0
- package/dist/providers/pixeldrain.png +0 -0
- package/dist/providers/premiumizeme.png +0 -0
- package/dist/providers/proton.png +0 -0
- package/dist/providers/putio.png +0 -0
- package/dist/providers/qingstor.png +0 -0
- package/dist/providers/qiniu.png +0 -0
- package/dist/providers/quatrix.png +0 -0
- package/dist/providers/r2.png +0 -0
- package/dist/providers/rackcorp.png +0 -0
- package/dist/providers/rclone.png +0 -0
- package/dist/providers/s3.png +0 -0
- package/dist/providers/scaleway.png +0 -0
- package/dist/providers/seafile.png +0 -0
- package/dist/providers/seaweedfs.png +0 -0
- package/dist/providers/selectel.png +0 -0
- package/dist/providers/sftp.png +0 -0
- package/dist/providers/sharefile.png +0 -0
- package/dist/providers/sia.png +0 -0
- package/dist/providers/smb.png +0 -0
- package/dist/providers/spaces.png +0 -0
- package/dist/providers/storj.png +0 -0
- package/dist/providers/sugarsync.png +0 -0
- package/dist/providers/swift.png +0 -0
- package/dist/providers/synologyc2.png +0 -0
- package/dist/providers/tencent.png +0 -0
- package/dist/providers/ulozto.png +0 -0
- package/dist/providers/wasabi.png +0 -0
- package/dist/providers/webdav.png +0 -0
- package/dist/providers/yandex.png +0 -0
- package/dist/providers/zoho.png +0 -0
- package/dist/router.d.ts +2 -0
- package/dist/router.d.ts.map +1 -0
- package/dist/router.js +40 -0
- package/dist/router.js.map +1 -0
- package/dist/routes/DeviceSingle/DeviceSingle.d.ts +3 -0
- package/dist/routes/DeviceSingle/DeviceSingle.d.ts.map +1 -0
- package/dist/routes/DeviceSingle/DeviceSingle.js +67 -0
- package/dist/routes/DeviceSingle/DeviceSingle.js.map +1 -0
- package/dist/routes/DeviceSingle/DeviceSingle.module.scss +105 -0
- package/dist/routes/DeviceSingle/DeviceSingle.module.scss.js +14 -0
- package/dist/routes/DeviceSingle/DeviceSingle.module.scss.js.map +1 -0
- package/dist/routes/Login/Login.d.ts +3 -0
- package/dist/routes/Login/Login.d.ts.map +1 -0
- package/dist/routes/Login/Login.js +72 -0
- package/dist/routes/Login/Login.js.map +1 -0
- package/dist/routes/Login/Login.module.scss +94 -0
- package/dist/routes/Login/Login.module.scss.js +20 -0
- package/dist/routes/Login/Login.module.scss.js.map +1 -0
- package/dist/routes/NotFoundRoute/NotFoundRoute.d.ts +3 -0
- package/dist/routes/NotFoundRoute/NotFoundRoute.d.ts.map +1 -0
- package/dist/routes/NotFoundRoute/NotFoundRoute.js +7 -0
- package/dist/routes/NotFoundRoute/NotFoundRoute.js.map +1 -0
- package/dist/routes/NotFoundRoute/NotFoundRoute.module.scss +0 -0
- package/dist/routes/PlanSingle/PlanSingle.d.ts +3 -0
- package/dist/routes/PlanSingle/PlanSingle.d.ts.map +1 -0
- package/dist/routes/PlanSingle/PlanSingle.js +172 -0
- package/dist/routes/PlanSingle/PlanSingle.js.map +1 -0
- package/dist/routes/PlanSingle/PlanSingle.module.scss +76 -0
- package/dist/routes/PlanSingle/PlanSingle.module.scss.js +20 -0
- package/dist/routes/PlanSingle/PlanSingle.module.scss.js.map +1 -0
- package/dist/routes/Plans/Plans.d.ts +3 -0
- package/dist/routes/Plans/Plans.d.ts.map +1 -0
- package/dist/routes/Plans/Plans.js +91 -0
- package/dist/routes/Plans/Plans.js.map +1 -0
- package/dist/routes/Plans/Plans.module.scss +29 -0
- package/dist/routes/Plans/Plans.module.scss.js +12 -0
- package/dist/routes/Plans/Plans.module.scss.js.map +1 -0
- package/dist/routes/Settings/Settings.d.ts +3 -0
- package/dist/routes/Settings/Settings.d.ts.map +1 -0
- package/dist/routes/Settings/Settings.js +89 -0
- package/dist/routes/Settings/Settings.js.map +1 -0
- package/dist/routes/Settings/Settings.module.scss +112 -0
- package/dist/routes/Settings/Settings.module.scss.js +20 -0
- package/dist/routes/Settings/Settings.module.scss.js.map +1 -0
- package/dist/routes/Sources/Sources.d.ts +7 -0
- package/dist/routes/Sources/Sources.d.ts.map +1 -0
- package/dist/routes/Sources/Sources.js +50 -0
- package/dist/routes/Sources/Sources.js.map +1 -0
- package/dist/routes/Sources/Sources.module.scss +29 -0
- package/dist/routes/Sources/Sources.module.scss.js +12 -0
- package/dist/routes/Sources/Sources.module.scss.js.map +1 -0
- package/dist/routes/Storages/Storages.d.ts +3 -0
- package/dist/routes/Storages/Storages.d.ts.map +1 -0
- package/dist/routes/Storages/Storages.js +63 -0
- package/dist/routes/Storages/Storages.js.map +1 -0
- package/dist/routes/Storages/Storages.module.scss +30 -0
- package/dist/routes/Storages/Storages.module.scss.js +12 -0
- package/dist/routes/Storages/Storages.module.scss.js.map +1 -0
- package/dist/routes/index.d.ts +9 -0
- package/dist/routes/index.d.ts.map +1 -0
- package/dist/routes.js +19 -0
- package/dist/routes.js.map +1 -0
- package/dist/screenshots/screenshot-desktop.png +0 -0
- package/dist/screenshots/screenshot-mobile.png +0 -0
- package/dist/services/backups.d.ts +53 -0
- package/dist/services/backups.d.ts.map +1 -0
- package/dist/services/backups.js +182 -0
- package/dist/services/backups.js.map +1 -0
- package/dist/services/devices.d.ts +33 -0
- package/dist/services/devices.d.ts.map +1 -0
- package/dist/services/devices.js +130 -0
- package/dist/services/devices.js.map +1 -0
- package/dist/services/index.d.ts +11 -0
- package/dist/services/index.d.ts.map +1 -0
- package/dist/services/plans.d.ts +40 -0
- package/dist/services/plans.d.ts.map +1 -0
- package/dist/services/plans.js +307 -0
- package/dist/services/plans.js.map +1 -0
- package/dist/services/restores.d.ts +71 -0
- package/dist/services/restores.d.ts.map +1 -0
- package/dist/services/restores.js +204 -0
- package/dist/services/restores.js.map +1 -0
- package/dist/services/settings.d.ts +27 -0
- package/dist/services/settings.d.ts.map +1 -0
- package/dist/services/settings.js +124 -0
- package/dist/services/settings.js.map +1 -0
- package/dist/services/storage.d.ts +33 -0
- package/dist/services/storage.d.ts.map +1 -0
- package/dist/services/storage.js +147 -0
- package/dist/services/storage.js.map +1 -0
- package/dist/services/users.d.ts +12 -0
- package/dist/services/users.d.ts.map +1 -0
- package/dist/services/users.js +68 -0
- package/dist/services/users.js.map +1 -0
- package/dist/services.js +110 -0
- package/dist/services.js.map +1 -0
- package/dist/styles/core-frontend.css +1 -0
- package/dist/styles/fields.scss +49 -0
- package/dist/styles/global.scss +360 -0
- package/dist/styles/steps.scss +67 -0
- package/dist/utils/constants.d.ts +6 -0
- package/dist/utils/constants.d.ts.map +1 -0
- package/dist/utils/constants.js +92 -0
- package/dist/utils/constants.js.map +1 -0
- package/dist/utils/dummy.d.ts +2 -0
- package/dist/utils/dummy.d.ts.map +1 -0
- package/dist/utils/getIconNameforFile.d.ts +2 -0
- package/dist/utils/getIconNameforFile.d.ts.map +1 -0
- package/dist/utils/getIconNameforFile.js +71 -0
- package/dist/utils/getIconNameforFile.js.map +1 -0
- package/dist/utils/helpers.d.ts +36 -0
- package/dist/utils/helpers.d.ts.map +1 -0
- package/dist/utils/helpers.js +176 -0
- package/dist/utils/helpers.js.map +1 -0
- package/dist/utils/index.d.ts +11 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/plans.d.ts +5 -0
- package/dist/utils/plans.d.ts.map +1 -0
- package/dist/utils/plans.js +61 -0
- package/dist/utils/plans.js.map +1 -0
- package/dist/utils/progressHelpers.d.ts +7 -0
- package/dist/utils/progressHelpers.d.ts.map +1 -0
- package/dist/utils/progressHelpers.js +164 -0
- package/dist/utils/progressHelpers.js.map +1 -0
- package/dist/utils/restore.d.ts +5 -0
- package/dist/utils/restore.d.ts.map +1 -0
- package/dist/utils/restore.js +14 -0
- package/dist/utils/restore.js.map +1 -0
- package/dist/utils/storageProviders.d.ts +376 -0
- package/dist/utils/storageProviders.d.ts.map +1 -0
- package/dist/utils/storageProviders.js +377 -0
- package/dist/utils/storageProviders.js.map +1 -0
- package/dist/utils/supportedExtensions.d.ts +1797 -0
- package/dist/utils/supportedExtensions.d.ts.map +1 -0
- package/dist/utils/supportedExtensions.js +5471 -0
- package/dist/utils/supportedExtensions.js.map +1 -0
- package/dist/utils.js +48 -0
- package/dist/utils.js.map +1 -0
- package/package.json +142 -0
- package/src/@types/backups.ts +75 -0
- package/src/@types/devices.ts +239 -0
- package/src/@types/index.ts +11 -0
- package/src/@types/plans.ts +197 -0
- package/src/@types/restores.ts +115 -0
- package/src/@types/settings.ts +20 -0
- package/src/@types/storages.ts +30 -0
- package/src/@types/system.ts +11 -0
- package/src/assets/fileicons.css +6205 -0
- package/src/assets/fileicons.png +0 -0
- package/src/assets/fonts/Inter18pt-Bold.woff +0 -0
- package/src/assets/fonts/Inter18pt-Bold.woff2 +0 -0
- package/src/assets/fonts/Inter18pt-Regular.woff +0 -0
- package/src/assets/fonts/Inter18pt-Regular.woff2 +0 -0
- package/src/assets/fonts/Inter18pt-SemiBold.woff +0 -0
- package/src/assets/fonts/Inter18pt-SemiBold.woff2 +0 -0
- package/src/assets/fonts/fonts.css +29 -0
- package/src/components/App/App/App.module.scss +14 -0
- package/src/components/App/App/App.tsx +51 -0
- package/src/components/App/AppContent/AppContent.module.scss +12 -0
- package/src/components/App/AppContent/AppContent.tsx +14 -0
- package/src/components/App/Footer/Footer.module.scss +23 -0
- package/src/components/App/Footer/Footer.tsx +34 -0
- package/src/components/App/PageTitle/PageTitle.tsx +16 -0
- package/src/components/App/SideNav/SideNav.module.scss +58 -0
- package/src/components/App/SideNav/SideNav.tsx +106 -0
- package/src/components/Device/DeviceBackups/DeviceBackups.module.scss +142 -0
- package/src/components/Device/DeviceBackups/DeviceBackups.tsx +135 -0
- package/src/components/Device/DeviceCPU/DeviceCPU.tsx +60 -0
- package/src/components/Device/DeviceInfo/DeviceInfo.module.scss +214 -0
- package/src/components/Device/DeviceInfo/DeviceInfo.tsx +44 -0
- package/src/components/Device/DeviceItem/DeviceItem.module.scss +216 -0
- package/src/components/Device/DeviceItem/DeviceItem.tsx +94 -0
- package/src/components/Device/DeviceMemory/DeviceMemory.tsx +97 -0
- package/src/components/Device/DeviceNetworks/DeviceNetworks.tsx +48 -0
- package/src/components/Device/DeviceRcloneSettings/DeviceRcloneSettings.tsx +150 -0
- package/src/components/Device/DeviceResticSettings/DeviceResticSettings.tsx +59 -0
- package/src/components/Device/DeviceStorageDisks/DeviceStorageDisks.tsx +38 -0
- package/src/components/Device/DeviceStorageDrives/DeviceStorageDrives.tsx +51 -0
- package/src/components/Device/DeviceSystem/DeviceSystem.tsx +52 -0
- package/src/components/Device/EditDevice/EditDevice.module.scss +110 -0
- package/src/components/Device/EditDevice/EditDevice.tsx +154 -0
- package/src/components/Plan/AddPlan/AddPlan.module.scss +191 -0
- package/src/components/Plan/AddPlan/AddPlan.tsx +56 -0
- package/src/components/Plan/BackupEvents/BackupEvents.module.scss +189 -0
- package/src/components/Plan/BackupEvents/BackupEvents.tsx +113 -0
- package/src/components/Plan/BackupProgress/BackupProgress.module.scss +120 -0
- package/src/components/Plan/BackupProgress/BackupProgress.tsx +212 -0
- package/src/components/Plan/Backups/Backups.module.scss +210 -0
- package/src/components/Plan/Backups/Backups.tsx +295 -0
- package/src/components/Plan/EditPlan/EditPlan.module.scss +41 -0
- package/src/components/Plan/EditPlan/EditPlan.tsx +56 -0
- package/src/components/Plan/PlanBackups/PlanBackups.module.scss +58 -0
- package/src/components/Plan/PlanBackups/PlanBackups.tsx +55 -0
- package/src/components/Plan/PlanForm/PlanForm.module.scss +72 -0
- package/src/components/Plan/PlanForm/PlanForm.tsx +249 -0
- package/src/components/Plan/PlanForm/PlanFormNav.tsx +64 -0
- package/src/components/Plan/PlanHistory/PlanHistory.module.scss +44 -0
- package/src/components/Plan/PlanHistory/PlanHistory.tsx +65 -0
- package/src/components/Plan/PlanItems/PlanItem.module.scss +332 -0
- package/src/components/Plan/PlanItems/PlanItem.tsx +202 -0
- package/src/components/Plan/PlanLogs/PlanLogs.module.scss +0 -0
- package/src/components/Plan/PlanLogs/PlanLogs.tsx +25 -0
- package/src/components/Plan/PlanPendingBackup/PlanPendingBackup.module.scss +42 -0
- package/src/components/Plan/PlanPendingBackup/PlanPendingBackup.tsx +55 -0
- package/src/components/Plan/PlanProgress/PlanProgress.module.scss +19 -0
- package/src/components/Plan/PlanProgress/PlanProgress.tsx +75 -0
- package/src/components/Plan/PlanPruneModal/PlanPruneModal.tsx +59 -0
- package/src/components/Plan/PlanRemoveModal/PlanRemoveModal.module.scss +9 -0
- package/src/components/Plan/PlanRemoveModal/PlanRemoveModal.tsx +72 -0
- package/src/components/Plan/PlanSettings/PlanAdvancedSettings.tsx +115 -0
- package/src/components/Plan/PlanSettings/PlanGeneralSettings.tsx +53 -0
- package/src/components/Plan/PlanSettings/PlanNotificationSettings.tsx +78 -0
- package/src/components/Plan/PlanSettings/PlanPerformanceSettings.tsx +87 -0
- package/src/components/Plan/PlanSettings/PlanPruneSettings.tsx +104 -0
- package/src/components/Plan/PlanSettings/PlanScriptsSettings.tsx +290 -0
- package/src/components/Plan/PlanSettings/PlanSettings.module.scss +464 -0
- package/src/components/Plan/PlanSettings/PlanSourceSettings.tsx +56 -0
- package/src/components/Plan/PlanSettings/PlanStrategySettings.tsx +34 -0
- package/src/components/Plan/PlanSettings/PlanTypeSettings.tsx +34 -0
- package/src/components/Plan/PlanStats/PlanStats.module.scss +125 -0
- package/src/components/Plan/PlanStats/PlanStats.tsx +96 -0
- package/src/components/Plan/PlanUnlockModal/PlanUnlockModal.tsx +34 -0
- package/src/components/Plan/Restores/Restores.tsx +155 -0
- package/src/components/Restore/RestoreChangeViewer/RestoreChangeViewer.module.scss +71 -0
- package/src/components/Restore/RestoreChangeViewer/RestoreChangeViewer.tsx +37 -0
- package/src/components/Restore/RestoreFileSelector/RestoreFileSelector.module.scss +326 -0
- package/src/components/Restore/RestoreFileSelector/RestoreFileSelector.tsx +518 -0
- package/src/components/Restore/RestoreWizard/RestoreConfirmStep.tsx +105 -0
- package/src/components/Restore/RestoreWizard/RestoreFileSelectorStep.tsx +79 -0
- package/src/components/Restore/RestoreWizard/RestorePreviewStep.tsx +124 -0
- package/src/components/Restore/RestoreWizard/RestoreSettingsStep.tsx +171 -0
- package/src/components/Restore/RestoreWizard/RestoreWizard.module.scss +390 -0
- package/src/components/Restore/RestoreWizard/RestoreWizard.tsx +135 -0
- package/src/components/Restore/RestoredFileBrowser/RestoredFileBrowser.module.scss +299 -0
- package/src/components/Restore/RestoredFileBrowser/RestoredFileBrowser.tsx +329 -0
- package/src/components/Settings/AppLogs/AppLogs.tsx +23 -0
- package/src/components/Settings/GeneralSettings/GeneralSettings.module.scss +3 -0
- package/src/components/Settings/GeneralSettings/GeneralSettings.tsx +65 -0
- package/src/components/Settings/IntegrationSettings/IntegrationSettings.module.scss +38 -0
- package/src/components/Settings/IntegrationSettings/IntegrationSettings.tsx +62 -0
- package/src/components/Settings/IntegrationSettings/SMTPSettings.tsx +97 -0
- package/src/components/Skeleton/SkeletonItems.module.scss +162 -0
- package/src/components/Skeleton/SkeletonItems.tsx +33 -0
- package/src/components/Storage/AddStorage/AddStorage.module.scss +168 -0
- package/src/components/Storage/AddStorage/AddStorage.tsx +279 -0
- package/src/components/Storage/EditStorage/EditStorage.module.scss +0 -0
- package/src/components/Storage/EditStorage/EditStorage.tsx +213 -0
- package/src/components/Storage/StorageAuthSettings/StorageAuthSettings.tsx +120 -0
- package/src/components/Storage/StorageItem/StorageItem.module.scss +231 -0
- package/src/components/Storage/StorageItem/StorageItem.tsx +150 -0
- package/src/components/Storage/StorageSettings/StorageSettings.module.scss +29 -0
- package/src/components/Storage/StorageSettings/StorageSettings.tsx +176 -0
- package/src/components/common/ActionModal/ActionModal.module.scss +60 -0
- package/src/components/common/ActionModal/ActionModal.tsx +71 -0
- package/src/components/common/AnimatedWrapper/AnimatedWrapper.module.scss +88 -0
- package/src/components/common/AnimatedWrapper/AnimatedWrapper.tsx +66 -0
- package/src/components/common/Button/Button.module.scss +56 -0
- package/src/components/common/Button/Button.tsx +36 -0
- package/src/components/common/FileIcon/FileIcon.tsx +20 -0
- package/src/components/common/FileManager/FileManager.module.scss +196 -0
- package/src/components/common/FileManager/FileManager.tsx +251 -0
- package/src/components/common/FolderPicker/FolderPicker.module.scss +77 -0
- package/src/components/common/FolderPicker/FolderPicker.tsx +60 -0
- package/src/components/common/Icon/Icon.tsx +1494 -0
- package/src/components/common/ItemsLayout/ItemsLayout.module.scss +51 -0
- package/src/components/common/ItemsLayout/ItemsLayout.tsx +43 -0
- package/src/components/common/LogViewer/LogViewer.module.scss +188 -0
- package/src/components/common/LogViewer/LogViewer.tsx +161 -0
- package/src/components/common/Logo/Logo.tsx +19 -0
- package/src/components/common/Modal/Modal.module.scss +81 -0
- package/src/components/common/Modal/Modal.tsx +88 -0
- package/src/components/common/NotFound/NotFound.module.scss +36 -0
- package/src/components/common/NotFound/NotFound.tsx +22 -0
- package/src/components/common/PageHeader/PageHeader.module.scss +61 -0
- package/src/components/common/PageHeader/PageHeader.tsx +36 -0
- package/src/components/common/PathPicker/PathPicker.module.scss +278 -0
- package/src/components/common/PathPicker/PathPicker.tsx +270 -0
- package/src/components/common/SearchItems/SearchItems.module.scss +48 -0
- package/src/components/common/SearchItems/SearchItems.tsx +45 -0
- package/src/components/common/SidePanel/SidePanel.module.scss +217 -0
- package/src/components/common/SidePanel/SidePanel.tsx +68 -0
- package/src/components/common/SortItems/SortItems.module.scss +53 -0
- package/src/components/common/SortItems/SortItems.tsx +61 -0
- package/src/components/common/StatusLabel/StatusLabel.module.scss +0 -0
- package/src/components/common/StatusLabel/StatusLabel.tsx +36 -0
- package/src/components/common/Tabs/Tabs.module.scss +43 -0
- package/src/components/common/Tabs/Tabs.tsx +101 -0
- package/src/components/common/TagsFilter/TagsFilter.module.scss +59 -0
- package/src/components/common/TagsFilter/TagsFilter.tsx +52 -0
- package/src/components/common/form/FormField/FormField.module.scss +32 -0
- package/src/components/common/form/FormField/FormField.tsx +38 -0
- package/src/components/common/form/Input/Input.module.scss +71 -0
- package/src/components/common/form/Input/Input.tsx +72 -0
- package/src/components/common/form/IntervalField/IntervalField.module.scss +47 -0
- package/src/components/common/form/IntervalField/IntervalField.tsx +148 -0
- package/src/components/common/form/MultiSelect/MultiSelect.module.scss +157 -0
- package/src/components/common/form/MultiSelect/MultiSelect.tsx +132 -0
- package/src/components/common/form/NumberInput/NumberInput.module.scss +102 -0
- package/src/components/common/form/NumberInput/NumberInput.tsx +90 -0
- package/src/components/common/form/PasswordField/PasswordField.module.scss +78 -0
- package/src/components/common/form/PasswordField/PasswordField.tsx +73 -0
- package/src/components/common/form/RadioIconSelect/RadioIconSelect.module.scss +104 -0
- package/src/components/common/form/RadioIconSelect/RadioIconSelect.tsx +68 -0
- package/src/components/common/form/Select/Select.module.scss +193 -0
- package/src/components/common/form/Select/Select.tsx +123 -0
- package/src/components/common/form/SizePicker/SizePicker.module.scss +82 -0
- package/src/components/common/form/SizePicker/SizePicker.tsx +98 -0
- package/src/components/common/form/StoragePicker/StoragePicker.module.scss +114 -0
- package/src/components/common/form/StoragePicker/StoragePicker.tsx +106 -0
- package/src/components/common/form/TagsInput/TagsInput.module.scss +54 -0
- package/src/components/common/form/TagsInput/TagsInput.tsx +83 -0
- package/src/components/common/form/TimePicker/TimePicker.module.scss +73 -0
- package/src/components/common/form/TimePicker/TimePicker.tsx +99 -0
- package/src/components/common/form/Toggle/Toggle.module.scss +68 -0
- package/src/components/common/form/Toggle/Toggle.tsx +34 -0
- package/src/components/common/form/Tristate/Tristate.module.scss +67 -0
- package/src/components/common/form/Tristate/Tristate.tsx +48 -0
- package/src/components/index.ts +117 -0
- package/src/config/features.ts +4 -0
- package/src/context/ComponentOverrideContext.tsx +25 -0
- package/src/context/ThemeContext.tsx +68 -0
- package/src/context/index.ts +6 -0
- package/src/hooks/index.ts +6 -0
- package/src/hooks/usePlanSingleActions.tsx +137 -0
- package/src/hooks/usePwaAutoUpdate.ts +33 -0
- package/src/index.ts +26 -0
- package/src/main.tsx +24 -0
- package/src/router.tsx +48 -0
- package/src/routes/DeviceSingle/DeviceSingle.module.scss +105 -0
- package/src/routes/DeviceSingle/DeviceSingle.tsx +86 -0
- package/src/routes/Login/Login.module.scss +94 -0
- package/src/routes/Login/Login.tsx +99 -0
- package/src/routes/NotFoundRoute/NotFoundRoute.module.scss +0 -0
- package/src/routes/NotFoundRoute/NotFoundRoute.tsx +7 -0
- package/src/routes/PlanSingle/PlanSingle.module.scss +76 -0
- package/src/routes/PlanSingle/PlanSingle.tsx +181 -0
- package/src/routes/Plans/Plans.module.scss +29 -0
- package/src/routes/Plans/Plans.tsx +128 -0
- package/src/routes/Settings/Settings.module.scss +112 -0
- package/src/routes/Settings/Settings.tsx +102 -0
- package/src/routes/Sources/Sources.module.scss +29 -0
- package/src/routes/Sources/Sources.tsx +86 -0
- package/src/routes/Storages/Storages.module.scss +30 -0
- package/src/routes/Storages/Storages.tsx +92 -0
- package/src/routes/index.ts +9 -0
- package/src/services/backups.ts +231 -0
- package/src/services/devices.ts +161 -0
- package/src/services/index.ts +11 -0
- package/src/services/plans.ts +393 -0
- package/src/services/restores.ts +261 -0
- package/src/services/settings.ts +163 -0
- package/src/services/storage.ts +201 -0
- package/src/services/users.ts +91 -0
- package/src/styles/fields.scss +49 -0
- package/src/styles/global.scss +360 -0
- package/src/styles/steps.scss +67 -0
- package/src/utils/constants.ts +89 -0
- package/src/utils/dummy.ts +0 -0
- package/src/utils/getIconNameforFile.ts +142 -0
- package/src/utils/helpers.ts +440 -0
- package/src/utils/index.ts +12 -0
- package/src/utils/plans.ts +78 -0
- package/src/utils/progressHelpers.ts +244 -0
- package/src/utils/restore.ts +28 -0
- package/src/utils/storageProviders.ts +374 -0
- package/src/utils/supportedExtensions.ts +5595 -0
- package/src/vite-env.d.ts +2 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
export interface BackupCompletionStats {
|
|
2
|
+
files_new: number;
|
|
3
|
+
files_changed: number;
|
|
4
|
+
files_unmodified: number;
|
|
5
|
+
dirs_new: number;
|
|
6
|
+
dirs_changed: number;
|
|
7
|
+
dirs_unmodified: number;
|
|
8
|
+
data_blobs: number;
|
|
9
|
+
tree_blobs: number;
|
|
10
|
+
data_added: number;
|
|
11
|
+
data_added_packed: number;
|
|
12
|
+
total_files_processed: number;
|
|
13
|
+
total_bytes_processed: number;
|
|
14
|
+
total_duration: number;
|
|
15
|
+
snapshot_id: string;
|
|
16
|
+
}
|
|
17
|
+
export interface BackupTaskStats {
|
|
18
|
+
message_type: string;
|
|
19
|
+
files_new: number;
|
|
20
|
+
files_changed: number;
|
|
21
|
+
files_unmodified: number;
|
|
22
|
+
dirs_new: number;
|
|
23
|
+
dirs_changed: number;
|
|
24
|
+
dirs_unmodified: number;
|
|
25
|
+
data_blobs: number;
|
|
26
|
+
tree_blobs: number;
|
|
27
|
+
data_added: number;
|
|
28
|
+
data_added_packed: number;
|
|
29
|
+
total_files_processed: number;
|
|
30
|
+
total_bytes_processed: number;
|
|
31
|
+
total_duration: number;
|
|
32
|
+
snapshot_id: string;
|
|
33
|
+
dry_run: boolean;
|
|
34
|
+
}
|
|
35
|
+
export type Backup = {
|
|
36
|
+
id: string;
|
|
37
|
+
snapshotId: string;
|
|
38
|
+
started: number;
|
|
39
|
+
ended: number;
|
|
40
|
+
duration: number;
|
|
41
|
+
status: 'completed' | 'cancelled' | 'failed' | 'started';
|
|
42
|
+
inProgress: boolean;
|
|
43
|
+
totalFiles: number;
|
|
44
|
+
totalSize: number;
|
|
45
|
+
changes: {
|
|
46
|
+
new: number;
|
|
47
|
+
modified: number;
|
|
48
|
+
removed: number;
|
|
49
|
+
};
|
|
50
|
+
active?: boolean;
|
|
51
|
+
errorMsg?: string;
|
|
52
|
+
download?: {
|
|
53
|
+
status: string;
|
|
54
|
+
started?: number;
|
|
55
|
+
ended?: number;
|
|
56
|
+
error?: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
export interface BackupProgressEvent {
|
|
60
|
+
timestamp: string;
|
|
61
|
+
phase: string;
|
|
62
|
+
action: string;
|
|
63
|
+
completed: boolean;
|
|
64
|
+
resticData?: any;
|
|
65
|
+
error?: string;
|
|
66
|
+
}
|
|
67
|
+
export interface BackupProgressData {
|
|
68
|
+
planId: string;
|
|
69
|
+
backupId: string;
|
|
70
|
+
status: string;
|
|
71
|
+
startTime: string;
|
|
72
|
+
lastUpdate: string;
|
|
73
|
+
events: BackupProgressEvent[];
|
|
74
|
+
duration?: number;
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=backups.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"backups.d.ts","sourceRoot":"","sources":["../../src/@types/backups.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,qBAAqB;IACnC,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,gBAAgB,EAAE,MAAM,CAAC;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,eAAe;IAC7B,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,gBAAgB,EAAE,MAAM,CAAC;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,OAAO,CAAC;CACnB;AAED,MAAM,MAAM,MAAM,GAAG;IAClB,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,WAAW,GAAG,WAAW,GAAG,QAAQ,GAAG,SAAS,CAAC;IACzD,UAAU,EAAE,OAAO,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;IAC5D,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE;QACR,MAAM,EAAE,MAAM,CAAC;QACf,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,MAAM,CAAC;KACjB,CAAC;CACJ,CAAC;AAEF,MAAM,WAAW,mBAAmB;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,kBAAkB;IAChC,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,mBAAmB,EAAE,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
import { PlanChildItem } from './plans';
|
|
2
|
+
export interface Device {
|
|
3
|
+
id: string;
|
|
4
|
+
ip: string;
|
|
5
|
+
name: string;
|
|
6
|
+
type: string;
|
|
7
|
+
connected: boolean;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
agentId: string | null;
|
|
10
|
+
versions: {
|
|
11
|
+
agent: string | null;
|
|
12
|
+
restic: string | null;
|
|
13
|
+
rclone: string | null;
|
|
14
|
+
};
|
|
15
|
+
host: string | null;
|
|
16
|
+
port: number | null;
|
|
17
|
+
hostname: string | null;
|
|
18
|
+
os: string | null;
|
|
19
|
+
platform: string | null;
|
|
20
|
+
disks: {
|
|
21
|
+
filesystem: string;
|
|
22
|
+
totalBytes: number;
|
|
23
|
+
usedBytes: number;
|
|
24
|
+
availableBytes: number;
|
|
25
|
+
usagePercentage: number;
|
|
26
|
+
mountPoint: string;
|
|
27
|
+
}[] | null;
|
|
28
|
+
status: string | null;
|
|
29
|
+
isRemote: boolean;
|
|
30
|
+
lastSeen: string | null;
|
|
31
|
+
plans: PlanChildItem[];
|
|
32
|
+
tags: string[];
|
|
33
|
+
metrics: DeviceMetrics | null;
|
|
34
|
+
settings: {
|
|
35
|
+
tempDir: string;
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
export interface DeviceMetrics {
|
|
39
|
+
system: {
|
|
40
|
+
manufacturer: string;
|
|
41
|
+
model: string;
|
|
42
|
+
version: string;
|
|
43
|
+
serial: string;
|
|
44
|
+
uuid: string;
|
|
45
|
+
};
|
|
46
|
+
cpu: {
|
|
47
|
+
manufacturer: string;
|
|
48
|
+
brand: string;
|
|
49
|
+
speed: number;
|
|
50
|
+
cores: number;
|
|
51
|
+
physicalCores: number;
|
|
52
|
+
processors: number;
|
|
53
|
+
cache: {
|
|
54
|
+
l1d?: number;
|
|
55
|
+
l1i?: number;
|
|
56
|
+
l2?: number;
|
|
57
|
+
l3?: number;
|
|
58
|
+
};
|
|
59
|
+
load: {
|
|
60
|
+
currentLoad: number;
|
|
61
|
+
cpus: number[];
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
memory: {
|
|
65
|
+
total: number;
|
|
66
|
+
free: number;
|
|
67
|
+
used: number;
|
|
68
|
+
active: number;
|
|
69
|
+
available: number;
|
|
70
|
+
swapTotal: number;
|
|
71
|
+
swapUsed: number;
|
|
72
|
+
swapFree: number;
|
|
73
|
+
layout: Array<{
|
|
74
|
+
size: number;
|
|
75
|
+
bank: string;
|
|
76
|
+
type: string;
|
|
77
|
+
clockSpeed: number;
|
|
78
|
+
formFactor: string;
|
|
79
|
+
manufacturer: string;
|
|
80
|
+
partNum: string;
|
|
81
|
+
serialNum: string;
|
|
82
|
+
voltageConfigured: number;
|
|
83
|
+
voltageMin: number;
|
|
84
|
+
voltageMax: number;
|
|
85
|
+
}>;
|
|
86
|
+
};
|
|
87
|
+
os: {
|
|
88
|
+
platform: string;
|
|
89
|
+
distro: string;
|
|
90
|
+
release: string;
|
|
91
|
+
kernel: string;
|
|
92
|
+
arch: string;
|
|
93
|
+
hostname: string;
|
|
94
|
+
logofile: string;
|
|
95
|
+
isServer: boolean;
|
|
96
|
+
};
|
|
97
|
+
disks: {
|
|
98
|
+
physical: Array<{
|
|
99
|
+
device: string;
|
|
100
|
+
name: string;
|
|
101
|
+
type: string;
|
|
102
|
+
vendor: string;
|
|
103
|
+
size: number;
|
|
104
|
+
interfaceType: string;
|
|
105
|
+
}>;
|
|
106
|
+
filesystems: Array<{
|
|
107
|
+
fs: string;
|
|
108
|
+
type: string;
|
|
109
|
+
size: number;
|
|
110
|
+
used: number;
|
|
111
|
+
available: number;
|
|
112
|
+
use: number;
|
|
113
|
+
mount: string;
|
|
114
|
+
name: string;
|
|
115
|
+
}>;
|
|
116
|
+
};
|
|
117
|
+
time: {
|
|
118
|
+
current: number;
|
|
119
|
+
uptime: number;
|
|
120
|
+
timezone: string;
|
|
121
|
+
timezoneName: string;
|
|
122
|
+
};
|
|
123
|
+
network: Array<{
|
|
124
|
+
iface: string;
|
|
125
|
+
ifaceName: string;
|
|
126
|
+
ip4: string;
|
|
127
|
+
ip6: string;
|
|
128
|
+
mac: string;
|
|
129
|
+
internal: boolean;
|
|
130
|
+
operstate: string;
|
|
131
|
+
type: string;
|
|
132
|
+
speed: number;
|
|
133
|
+
dhcp: boolean;
|
|
134
|
+
}>;
|
|
135
|
+
docker?: {
|
|
136
|
+
info: {
|
|
137
|
+
containers: number;
|
|
138
|
+
containersRunning: number;
|
|
139
|
+
containersPaused: number;
|
|
140
|
+
containersStopped: number;
|
|
141
|
+
images: number;
|
|
142
|
+
driver: string;
|
|
143
|
+
memoryLimit: boolean;
|
|
144
|
+
swapLimit: boolean;
|
|
145
|
+
kernelMemory: boolean;
|
|
146
|
+
cpuCfsPeriod: boolean;
|
|
147
|
+
cpuCfsQuota: boolean;
|
|
148
|
+
cpuShares: boolean;
|
|
149
|
+
cpuSet: boolean;
|
|
150
|
+
ipv4Forwarding: boolean;
|
|
151
|
+
bridgeNfIptables: boolean;
|
|
152
|
+
bridgeNfIp6tables: boolean;
|
|
153
|
+
debug: boolean;
|
|
154
|
+
nfd: number;
|
|
155
|
+
oomKillDisable: boolean;
|
|
156
|
+
ngoroutines: number;
|
|
157
|
+
systemTime: string;
|
|
158
|
+
loggingDriver: string;
|
|
159
|
+
cgroupDriver: string;
|
|
160
|
+
nEventsListener: number;
|
|
161
|
+
kernelVersion: string;
|
|
162
|
+
operatingSystem: string;
|
|
163
|
+
osType: string;
|
|
164
|
+
architecture: string;
|
|
165
|
+
serverVersion: string;
|
|
166
|
+
};
|
|
167
|
+
containers: Array<{
|
|
168
|
+
id: string;
|
|
169
|
+
name: string;
|
|
170
|
+
image: string;
|
|
171
|
+
imageID: string;
|
|
172
|
+
command: string;
|
|
173
|
+
created: number;
|
|
174
|
+
started: number;
|
|
175
|
+
finished: number;
|
|
176
|
+
state: string;
|
|
177
|
+
status: string;
|
|
178
|
+
ports: string;
|
|
179
|
+
mounts: string;
|
|
180
|
+
networkMode: string;
|
|
181
|
+
networks: Record<string, any>;
|
|
182
|
+
memoryUsage: number;
|
|
183
|
+
memoryLimit: number;
|
|
184
|
+
cpuPercent: number;
|
|
185
|
+
restartCount: number;
|
|
186
|
+
platform: string;
|
|
187
|
+
sizeRw: number;
|
|
188
|
+
sizeRootFs: number;
|
|
189
|
+
}>;
|
|
190
|
+
};
|
|
191
|
+
}
|
|
192
|
+
export interface DeviceSettings {
|
|
193
|
+
tempDir?: string;
|
|
194
|
+
restic?: {
|
|
195
|
+
maxProcessor?: number | '';
|
|
196
|
+
cacheDir?: string;
|
|
197
|
+
tempDir?: string;
|
|
198
|
+
readConcurrency?: number | '';
|
|
199
|
+
packSize?: string;
|
|
200
|
+
};
|
|
201
|
+
rclone?: {
|
|
202
|
+
tempDir?: string;
|
|
203
|
+
cacheDir?: string;
|
|
204
|
+
bwlimit?: string;
|
|
205
|
+
timeout?: string;
|
|
206
|
+
retries?: number | '';
|
|
207
|
+
lowLevelRetries?: number | '';
|
|
208
|
+
transfers?: number | '';
|
|
209
|
+
checkers?: number | '';
|
|
210
|
+
bufferSize?: string;
|
|
211
|
+
multiThreadStream?: number | '';
|
|
212
|
+
configPass?: string;
|
|
213
|
+
};
|
|
214
|
+
}
|
|
215
|
+
export interface DevicePlan {
|
|
216
|
+
id: string;
|
|
217
|
+
title: string;
|
|
218
|
+
method: string;
|
|
219
|
+
createdAt: string;
|
|
220
|
+
isActive: boolean;
|
|
221
|
+
sourceConfig: {
|
|
222
|
+
includes: string[];
|
|
223
|
+
excludes: string[];
|
|
224
|
+
};
|
|
225
|
+
storage: {
|
|
226
|
+
id: string;
|
|
227
|
+
path: string;
|
|
228
|
+
name: string;
|
|
229
|
+
type: string;
|
|
230
|
+
typeName: string;
|
|
231
|
+
};
|
|
232
|
+
size: number;
|
|
233
|
+
}
|
|
234
|
+
//# sourceMappingURL=devices.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"devices.d.ts","sourceRoot":"","sources":["../../src/@types/devices.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Type definitions exports
|
|
3
|
+
*/
|
|
4
|
+
export * from './backups';
|
|
5
|
+
export * from './devices';
|
|
6
|
+
export * from './plans';
|
|
7
|
+
export * from './restores';
|
|
8
|
+
export * from './settings';
|
|
9
|
+
export * from './storages';
|
|
10
|
+
export * from './system';
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/@types/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|