@william2000/dsh-nova-ui-task-board 0.3.0 → 0.3.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.
Files changed (51) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +34 -74
  3. package/cordis.patch.yml +0 -6
  4. package/lib/client.js +4 -5924
  5. package/lib/index.js +11 -4950
  6. package/lib/types/client/NovaPluginsSection.d.ts +0 -23
  7. package/lib/types/client/NovaTaskBoardSettingsCard.d.ts +0 -8
  8. package/lib/types/client/apply-guard.d.ts +0 -20
  9. package/lib/types/client/board/ConfirmDialog.d.ts +0 -3
  10. package/lib/types/client/board/ConfirmTaskDialog.d.ts +0 -1
  11. package/lib/types/client/board/ConvertTaskModal.d.ts +0 -4
  12. package/lib/types/client/board/NewTaskModal.d.ts +0 -1
  13. package/lib/types/client/board/RequirementSplitModal.d.ts +0 -4
  14. package/lib/types/client/board/SplitConfirmDialog.d.ts +0 -2
  15. package/lib/types/client/board/TaskBoard.d.ts +0 -5
  16. package/lib/types/client/board/TaskCard.d.ts +0 -23
  17. package/lib/types/client/board/TaskDetail.d.ts +0 -1
  18. package/lib/types/client/board/status-key.d.ts +0 -5
  19. package/lib/types/client/board-controller.d.ts +0 -159
  20. package/lib/types/client/board-mount.d.ts +0 -7
  21. package/lib/types/client/chat-integration.d.ts +0 -64
  22. package/lib/types/client/drag-utils.d.ts +0 -52
  23. package/lib/types/client/filter.d.ts +0 -22
  24. package/lib/types/client/grouping.d.ts +0 -39
  25. package/lib/types/client/host-api.d.ts +0 -44
  26. package/lib/types/client/index.d.ts +0 -21
  27. package/lib/types/client/legacy-store.d.ts +0 -22
  28. package/lib/types/client/locales.d.ts +0 -22
  29. package/lib/types/client/schedule-presets.d.ts +0 -9
  30. package/lib/types/client/sidebar-entry-core.d.ts +0 -33
  31. package/lib/types/client/sidebar-entry.d.ts +0 -16
  32. package/lib/types/core/context.d.ts +0 -77
  33. package/lib/types/core/cron.d.ts +0 -42
  34. package/lib/types/core/migrate.d.ts +0 -31
  35. package/lib/types/core/model.d.ts +0 -263
  36. package/lib/types/core/recovery.d.ts +0 -18
  37. package/lib/types/core/split.d.ts +0 -55
  38. package/lib/types/core/transitions.d.ts +0 -349
  39. package/lib/types/dsh-home.d.ts +0 -16
  40. package/lib/types/host-automation.d.ts +0 -40
  41. package/lib/types/host-ledger.d.ts +0 -104
  42. package/lib/types/host-routes.d.ts +0 -42
  43. package/lib/types/host-runner.d.ts +0 -85
  44. package/lib/types/host-service.d.ts +0 -219
  45. package/lib/types/index.d.ts +0 -61
  46. package/lib/types/loopback.d.ts +0 -18
  47. package/lib/types/mount-once.d.ts +0 -8
  48. package/lib/types/protocol.d.ts +0 -75
  49. package/package.json +16 -5
  50. package/lib/client.js.map +0 -1
  51. package/lib/types/client/PlaceholderBoard.d.ts +0 -9
@@ -1,9 +0,0 @@
1
- /**
2
- * T001 占位看板视图:脚手架阶段只渲染标题与占位说明;业务看板 UI
3
- * (五列、卡片、详情、新建、归档等)由 T004 实现。
4
- */
5
- import type { PlaceholderBoardController } from './board-controller.ts';
6
- /** Placeholder board body for the scaffold milestone. */
7
- export declare function PlaceholderBoard(_props: {
8
- controller: PlaceholderBoardController;
9
- }): JSX.Element;