dsh-config-manager 0.1.57 → 0.1.58
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/lib/client.d.ts +6 -0
- package/lib/client.js +6393 -5943
- package/lib/client.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/ui/history-model.d.ts +26 -0
- package/lib/ui/history-model.js +53 -0
- package/lib/ui/history-model.js.map +1 -1
- package/lib/ui/migration-consult-view.d.ts +34 -0
- package/lib/ui/migration-consult-view.js +50 -0
- package/lib/ui/migration-consult-view.js.map +1 -1
- package/package.json +1 -1
- package/src/client/about/AboutPanel.tsx +1 -1
- package/src/client/common/SectionComposition.tsx +36 -0
- package/src/client/config-manager.module.css +306 -13
- package/src/client/consult/ConsultCard.tsx +48 -34
- package/src/client/export/ExportView.tsx +33 -27
- package/src/client/history/HistoryPanel.tsx +13 -5
- package/src/client/import/ConflictList.tsx +51 -2
- package/src/client/import/PathMappingForm.tsx +3 -2
- package/src/client/market/MarketPanel.tsx +13 -7
- package/src/client/market/MyConfigsView.tsx +9 -5
- package/src/client/overview/OverviewPanel.tsx +2 -9
- package/src/client/snapshots/SnapshotsPanel.tsx +90 -47
- package/src/client/sync/SyncHistoryView.tsx +74 -32
- package/src/client/sync/SyncSettingsView.tsx +38 -19
- package/src/client/sync/history-model.test.ts +104 -2
- package/src/client/sync/history-model.ts +79 -0
- package/src/client/sync/sync-locales.ts +14 -0
- package/src/index.ts +1 -1
- package/src/ui/history-model.test.ts +76 -1
- package/src/ui/history-model.ts +59 -0
- package/src/ui/migration-consult-view.test.ts +69 -0
- package/src/ui/migration-consult-view.ts +59 -0
package/lib/client.d.ts
CHANGED
|
@@ -2613,6 +2613,12 @@ declare const zh$2: {
|
|
|
2613
2613
|
readonly 'history.column.autosync': '自动同步';
|
|
2614
2614
|
readonly 'history.channelGit': 'GitHub';
|
|
2615
2615
|
readonly 'history.channelWebdav': 'WebDAV';
|
|
2616
|
+
readonly 'history.stats.total': '共 {count} 条';
|
|
2617
|
+
readonly 'history.stats.snapshots': '快照 {count}';
|
|
2618
|
+
readonly 'history.stats.autosync': '自动同步 {count}';
|
|
2619
|
+
readonly 'history.stats.failed': '失败 {count}';
|
|
2620
|
+
readonly 'history.stats.skipped': '跳过 {count}';
|
|
2621
|
+
readonly 'history.stats.summary': '同步历史统计';
|
|
2616
2622
|
readonly 'toast.autosyncLoadFailed': '读取自动同步状态失败';
|
|
2617
2623
|
readonly 'toast.configSaveFailed': '保存通道配置失败';
|
|
2618
2624
|
readonly 'toast.configSaved': '通道配置已保存';
|