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.
Files changed (33) hide show
  1. package/lib/client.d.ts +6 -0
  2. package/lib/client.js +6393 -5943
  3. package/lib/client.js.map +1 -1
  4. package/lib/index.js +1 -1
  5. package/lib/ui/history-model.d.ts +26 -0
  6. package/lib/ui/history-model.js +53 -0
  7. package/lib/ui/history-model.js.map +1 -1
  8. package/lib/ui/migration-consult-view.d.ts +34 -0
  9. package/lib/ui/migration-consult-view.js +50 -0
  10. package/lib/ui/migration-consult-view.js.map +1 -1
  11. package/package.json +1 -1
  12. package/src/client/about/AboutPanel.tsx +1 -1
  13. package/src/client/common/SectionComposition.tsx +36 -0
  14. package/src/client/config-manager.module.css +306 -13
  15. package/src/client/consult/ConsultCard.tsx +48 -34
  16. package/src/client/export/ExportView.tsx +33 -27
  17. package/src/client/history/HistoryPanel.tsx +13 -5
  18. package/src/client/import/ConflictList.tsx +51 -2
  19. package/src/client/import/PathMappingForm.tsx +3 -2
  20. package/src/client/market/MarketPanel.tsx +13 -7
  21. package/src/client/market/MyConfigsView.tsx +9 -5
  22. package/src/client/overview/OverviewPanel.tsx +2 -9
  23. package/src/client/snapshots/SnapshotsPanel.tsx +90 -47
  24. package/src/client/sync/SyncHistoryView.tsx +74 -32
  25. package/src/client/sync/SyncSettingsView.tsx +38 -19
  26. package/src/client/sync/history-model.test.ts +104 -2
  27. package/src/client/sync/history-model.ts +79 -0
  28. package/src/client/sync/sync-locales.ts +14 -0
  29. package/src/index.ts +1 -1
  30. package/src/ui/history-model.test.ts +76 -1
  31. package/src/ui/history-model.ts +59 -0
  32. package/src/ui/migration-consult-view.test.ts +69 -0
  33. 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': '通道配置已保存';