@industry-theme/backlogmd-kanban-panel 1.0.40 → 1.0.41
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/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/panels/KanbanPanel.d.ts +2 -2
- package/dist/panels/KanbanPanel.d.ts.map +1 -1
- package/dist/panels/TaskDetailPanel.d.ts +2 -2
- package/dist/panels/TaskDetailPanel.d.ts.map +1 -1
- package/dist/panels/kanban/hooks/useKanbanData.d.ts +3 -2
- package/dist/panels/kanban/hooks/useKanbanData.d.ts.map +1 -1
- package/dist/panels/milestone/hooks/useMilestoneData.d.ts +3 -2
- package/dist/panels/milestone/hooks/useMilestoneData.d.ts.map +1 -1
- package/dist/panels.bundle.css +1 -1
- package/dist/panels.bundle.js +37 -29
- package/dist/panels.bundle.js.map +1 -1
- package/dist/types/index.d.ts +18 -0
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +4 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -4,4 +4,22 @@
|
|
|
4
4
|
* Re-exports core types from @principal-ade/panel-framework-core
|
|
5
5
|
*/
|
|
6
6
|
export type { DataSlice, WorkspaceMetadata, RepositoryMetadata, FileTreeSource, ActiveFileSlice, PanelEventType, PanelEvent, PanelEventEmitter, PanelActions, PanelContextValue, PanelComponentProps, PanelMetadata, PanelLifecycleHooks, PanelDefinition, PanelModule, PanelRegistryEntry, PanelLoader, PanelRegistryConfig, } from '@principal-ade/panel-framework-core';
|
|
7
|
+
import type { PanelActions as CorePanelActions, PanelComponentProps as CorePanelComponentProps, DataSlice } from '@principal-ade/panel-framework-core';
|
|
8
|
+
export type { FileTree } from '@principal-ai/repository-abstraction';
|
|
9
|
+
import type { FileTree } from '@principal-ai/repository-abstraction';
|
|
10
|
+
/**
|
|
11
|
+
* Typed context for KanbanPanel and TaskDetailPanel
|
|
12
|
+
* Both panels use fileTree slice
|
|
13
|
+
*/
|
|
14
|
+
export interface KanbanPanelContext {
|
|
15
|
+
fileTree: DataSlice<FileTree>;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Typed panel props for KanbanPanel
|
|
19
|
+
*/
|
|
20
|
+
export type KanbanPanelPropsTyped = CorePanelComponentProps<CorePanelActions, KanbanPanelContext>;
|
|
21
|
+
/**
|
|
22
|
+
* Typed panel props for TaskDetailPanel
|
|
23
|
+
*/
|
|
24
|
+
export type TaskDetailPanelPropsTyped = CorePanelComponentProps<CorePanelActions, KanbanPanelContext>;
|
|
7
25
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,YAAY,EAEV,SAAS,EACT,iBAAiB,EACjB,kBAAkB,EAClB,cAAc,EACd,eAAe,EAGf,cAAc,EACd,UAAU,EACV,iBAAiB,EAGjB,YAAY,EACZ,iBAAiB,EACjB,mBAAmB,EAGnB,aAAa,EACb,mBAAmB,EACnB,eAAe,EACf,WAAW,EAGX,kBAAkB,EAClB,WAAW,EACX,mBAAmB,GACpB,MAAM,qCAAqC,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,YAAY,EAEV,SAAS,EACT,iBAAiB,EACjB,kBAAkB,EAClB,cAAc,EACd,eAAe,EAGf,cAAc,EACd,UAAU,EACV,iBAAiB,EAGjB,YAAY,EACZ,iBAAiB,EACjB,mBAAmB,EAGnB,aAAa,EACb,mBAAmB,EACnB,eAAe,EACf,WAAW,EAGX,kBAAkB,EAClB,WAAW,EACX,mBAAmB,GACpB,MAAM,qCAAqC,CAAC;AAE7C,OAAO,KAAK,EACV,YAAY,IAAI,gBAAgB,EAChC,mBAAmB,IAAI,uBAAuB,EAC9C,SAAS,EACV,MAAM,qCAAqC,CAAC;AAG7C,YAAY,EAAE,QAAQ,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sCAAsC,CAAC;AAMrE;;;GAGG;AACH,MAAM,WAAW,kBAAkB;IACjC,QAAQ,EAAE,SAAS,CAAC,QAAQ,CAAC,CAAC;CAC/B;AAED;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,uBAAuB,CACzD,gBAAgB,EAChB,kBAAkB,CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG,uBAAuB,CAC7D,gBAAgB,EAChB,kBAAkB,CACnB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@industry-theme/backlogmd-kanban-panel",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.41",
|
|
4
4
|
"description": "Kanban board panel for visualizing Backlog.md tasks in the industry-themed panel framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/panels.bundle.js",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"@dnd-kit/sortable": "^10.0.0",
|
|
62
62
|
"@dnd-kit/utilities": "^3.2.2",
|
|
63
63
|
"@industry-theme/markdown-panels": "^0.2.20",
|
|
64
|
-
"@principal-ade/industry-theme": "^0.1.
|
|
65
|
-
"@principal-ade/panel-framework-core": "^0.
|
|
66
|
-
"@principal-ade/panel-layouts": "^0.3.
|
|
64
|
+
"@principal-ade/industry-theme": "^0.1.7",
|
|
65
|
+
"@principal-ade/panel-framework-core": "^0.4.2",
|
|
66
|
+
"@principal-ade/panel-layouts": "^0.3.20",
|
|
67
67
|
"@principal-ade/utcp-panel-event": "^0.1.0",
|
|
68
68
|
"clsx": "^2.1.1",
|
|
69
69
|
"hast-util-sanitize": "^5.0.2",
|