@contractspec/example.team-hub 1.57.0 → 1.58.0
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/announcement/announcement.operations.d.ts +50 -56
- package/dist/announcement/announcement.operations.d.ts.map +1 -1
- package/dist/announcement/announcement.operations.js +70 -51
- package/dist/announcement/announcement.schema.d.ts +50 -55
- package/dist/announcement/announcement.schema.d.ts.map +1 -1
- package/dist/announcement/announcement.schema.js +29 -71
- package/dist/announcement/index.d.ts +6 -3
- package/dist/announcement/index.d.ts.map +1 -0
- package/dist/announcement/index.js +73 -3
- package/dist/browser/announcement/announcement.operations.js +71 -0
- package/dist/browser/announcement/announcement.schema.js +30 -0
- package/dist/browser/announcement/index.js +73 -0
- package/dist/browser/docs/index.js +94 -0
- package/dist/browser/docs/team-hub.docblock.js +94 -0
- package/dist/browser/entities/index.js +231 -0
- package/dist/browser/events.js +134 -0
- package/dist/browser/example.js +42 -0
- package/dist/browser/handlers/index.js +5 -0
- package/dist/browser/index.js +642 -0
- package/dist/browser/presentations/index.js +131 -0
- package/dist/browser/presentations/team-hub.presentation.js +131 -0
- package/dist/browser/presentations.js +148 -0
- package/dist/browser/ritual/index.js +124 -0
- package/dist/browser/ritual/ritual.operations.js +121 -0
- package/dist/browser/ritual/ritual.schema.js +41 -0
- package/dist/browser/space/index.js +66 -0
- package/dist/browser/space/space.operations.js +64 -0
- package/dist/browser/space/space.schema.js +27 -0
- package/dist/browser/task/index.js +171 -0
- package/dist/browser/task/task.operations.js +168 -0
- package/dist/browser/task/task.schema.js +40 -0
- package/dist/browser/team-hub.capability.js +40 -0
- package/dist/browser/team-hub.feature.js +69 -0
- package/dist/docs/index.d.ts +2 -1
- package/dist/docs/index.d.ts.map +1 -0
- package/dist/docs/index.js +95 -1
- package/dist/docs/team-hub.docblock.d.ts +2 -1
- package/dist/docs/team-hub.docblock.d.ts.map +1 -0
- package/dist/docs/team-hub.docblock.js +45 -56
- package/dist/entities/index.d.ts +138 -143
- package/dist/entities/index.d.ts.map +1 -1
- package/dist/entities/index.js +221 -252
- package/dist/events.d.ts +217 -223
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +122 -201
- package/dist/example.d.ts +2 -6
- package/dist/example.d.ts.map +1 -1
- package/dist/example.js +41 -55
- package/dist/handlers/index.d.ts +1 -4
- package/dist/handlers/index.d.ts.map +1 -1
- package/dist/handlers/index.js +5 -8
- package/dist/index.d.ts +12 -15
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +642 -15
- package/dist/node/announcement/announcement.operations.js +71 -0
- package/dist/node/announcement/announcement.schema.js +30 -0
- package/dist/node/announcement/index.js +73 -0
- package/dist/node/docs/index.js +94 -0
- package/dist/node/docs/team-hub.docblock.js +94 -0
- package/dist/node/entities/index.js +231 -0
- package/dist/node/events.js +134 -0
- package/dist/node/example.js +42 -0
- package/dist/node/handlers/index.js +5 -0
- package/dist/node/index.js +642 -0
- package/dist/node/presentations/index.js +131 -0
- package/dist/node/presentations/team-hub.presentation.js +131 -0
- package/dist/node/presentations.js +148 -0
- package/dist/node/ritual/index.js +124 -0
- package/dist/node/ritual/ritual.operations.js +121 -0
- package/dist/node/ritual/ritual.schema.js +41 -0
- package/dist/node/space/index.js +66 -0
- package/dist/node/space/space.operations.js +64 -0
- package/dist/node/space/space.schema.js +27 -0
- package/dist/node/task/index.js +171 -0
- package/dist/node/task/task.operations.js +168 -0
- package/dist/node/task/task.schema.js +40 -0
- package/dist/node/team-hub.capability.js +40 -0
- package/dist/node/team-hub.feature.js +69 -0
- package/dist/presentations/index.d.ts +2 -2
- package/dist/presentations/index.d.ts.map +1 -0
- package/dist/presentations/index.js +132 -3
- package/dist/presentations/team-hub.presentation.d.ts +6 -11
- package/dist/presentations/team-hub.presentation.d.ts.map +1 -1
- package/dist/presentations/team-hub.presentation.js +126 -125
- package/dist/presentations.d.ts +7 -11
- package/dist/presentations.d.ts.map +1 -1
- package/dist/presentations.js +142 -147
- package/dist/ritual/index.d.ts +6 -3
- package/dist/ritual/index.d.ts.map +1 -0
- package/dist/ritual/index.js +124 -3
- package/dist/ritual/ritual.operations.d.ts +92 -98
- package/dist/ritual/ritual.operations.d.ts.map +1 -1
- package/dist/ritual/ritual.operations.js +119 -95
- package/dist/ritual/ritual.schema.d.ts +67 -72
- package/dist/ritual/ritual.schema.d.ts.map +1 -1
- package/dist/ritual/ritual.schema.js +39 -95
- package/dist/space/index.d.ts +6 -3
- package/dist/space/index.d.ts.map +1 -0
- package/dist/space/index.js +66 -3
- package/dist/space/space.operations.d.ts +38 -44
- package/dist/space/space.operations.d.ts.map +1 -1
- package/dist/space/space.operations.js +63 -50
- package/dist/space/space.schema.d.ts +38 -43
- package/dist/space/space.schema.d.ts.map +1 -1
- package/dist/space/space.schema.js +26 -59
- package/dist/task/index.d.ts +6 -3
- package/dist/task/index.d.ts.map +1 -0
- package/dist/task/index.js +171 -3
- package/dist/task/task.operations.d.ts +212 -218
- package/dist/task/task.operations.d.ts.map +1 -1
- package/dist/task/task.operations.js +163 -174
- package/dist/task/task.schema.d.ts +63 -68
- package/dist/task/task.schema.d.ts.map +1 -1
- package/dist/task/task.schema.js +38 -91
- package/dist/team-hub.capability.d.ts +3 -8
- package/dist/team-hub.capability.d.ts.map +1 -1
- package/dist/team-hub.capability.js +41 -38
- package/dist/team-hub.feature.d.ts +1 -6
- package/dist/team-hub.feature.d.ts.map +1 -1
- package/dist/team-hub.feature.js +68 -159
- package/package.json +261 -57
- package/dist/announcement/announcement.operations.js.map +0 -1
- package/dist/announcement/announcement.schema.js.map +0 -1
- package/dist/docs/team-hub.docblock.js.map +0 -1
- package/dist/entities/index.js.map +0 -1
- package/dist/events.js.map +0 -1
- package/dist/example.js.map +0 -1
- package/dist/handlers/index.js.map +0 -1
- package/dist/presentations/team-hub.presentation.js.map +0 -1
- package/dist/presentations.js.map +0 -1
- package/dist/ritual/ritual.operations.js.map +0 -1
- package/dist/ritual/ritual.schema.js.map +0 -1
- package/dist/space/space.operations.js.map +0 -1
- package/dist/space/space.schema.js.map +0 -1
- package/dist/task/task.operations.js.map +0 -1
- package/dist/task/task.schema.js.map +0 -1
- package/dist/team-hub.capability.js.map +0 -1
- package/dist/team-hub.feature.js.map +0 -1
|
@@ -1,3 +1,132 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
// @bun
|
|
2
|
+
// src/presentations/team-hub.presentation.ts
|
|
3
|
+
import { definePresentation, StabilityEnum } from "@contractspec/lib.contracts";
|
|
4
|
+
var OWNERS = ["@team-hub"];
|
|
5
|
+
var TeamDashboardPresentation = definePresentation({
|
|
6
|
+
meta: {
|
|
7
|
+
key: "team-hub.dashboard",
|
|
8
|
+
version: "1.0.0",
|
|
9
|
+
title: "Team Dashboard",
|
|
10
|
+
description: "Main team hub dashboard.",
|
|
11
|
+
domain: "team-hub",
|
|
12
|
+
owners: [...OWNERS],
|
|
13
|
+
stability: StabilityEnum.Experimental,
|
|
14
|
+
goal: "Central hub for team activity.",
|
|
15
|
+
context: "Landing page for team members.",
|
|
16
|
+
tags: ["dashboard", "team"]
|
|
17
|
+
},
|
|
18
|
+
source: {
|
|
19
|
+
type: "component",
|
|
20
|
+
framework: "react",
|
|
21
|
+
componentKey: "TeamDashboard"
|
|
22
|
+
},
|
|
23
|
+
targets: ["react"]
|
|
24
|
+
});
|
|
25
|
+
var SpaceListPresentation = definePresentation({
|
|
26
|
+
meta: {
|
|
27
|
+
key: "team-hub.space.list",
|
|
28
|
+
version: "1.0.0",
|
|
29
|
+
title: "Space List",
|
|
30
|
+
description: "List of team spaces.",
|
|
31
|
+
domain: "team-hub",
|
|
32
|
+
owners: [...OWNERS],
|
|
33
|
+
stability: StabilityEnum.Experimental,
|
|
34
|
+
goal: "Navigate between team spaces.",
|
|
35
|
+
context: "Sidebar or spaces hub.",
|
|
36
|
+
tags: ["space", "list"]
|
|
37
|
+
},
|
|
38
|
+
source: {
|
|
39
|
+
type: "component",
|
|
40
|
+
framework: "react",
|
|
41
|
+
componentKey: "SpaceList"
|
|
42
|
+
},
|
|
43
|
+
targets: ["react"]
|
|
44
|
+
});
|
|
45
|
+
var TaskBoardPresentation = definePresentation({
|
|
46
|
+
meta: {
|
|
47
|
+
key: "team-hub.task.board",
|
|
48
|
+
version: "1.0.0",
|
|
49
|
+
title: "Task Board",
|
|
50
|
+
description: "Kanban board for team tasks.",
|
|
51
|
+
domain: "team-hub",
|
|
52
|
+
owners: [...OWNERS],
|
|
53
|
+
stability: StabilityEnum.Experimental,
|
|
54
|
+
goal: "Visualize task progress.",
|
|
55
|
+
context: "Project management view.",
|
|
56
|
+
tags: ["task", "board"]
|
|
57
|
+
},
|
|
58
|
+
source: {
|
|
59
|
+
type: "component",
|
|
60
|
+
framework: "react",
|
|
61
|
+
componentKey: "TaskBoard"
|
|
62
|
+
},
|
|
63
|
+
targets: ["react"]
|
|
64
|
+
});
|
|
65
|
+
var TaskDetailPresentation = definePresentation({
|
|
66
|
+
meta: {
|
|
67
|
+
key: "team-hub.task.detail",
|
|
68
|
+
version: "1.0.0",
|
|
69
|
+
title: "Task Detail",
|
|
70
|
+
description: "Detailed view of a task.",
|
|
71
|
+
domain: "team-hub",
|
|
72
|
+
owners: [...OWNERS],
|
|
73
|
+
stability: StabilityEnum.Experimental,
|
|
74
|
+
goal: "View and edit task details.",
|
|
75
|
+
context: "Task modal or page.",
|
|
76
|
+
tags: ["task", "detail"]
|
|
77
|
+
},
|
|
78
|
+
source: {
|
|
79
|
+
type: "component",
|
|
80
|
+
framework: "react",
|
|
81
|
+
componentKey: "TaskDetail"
|
|
82
|
+
},
|
|
83
|
+
targets: ["react"]
|
|
84
|
+
});
|
|
85
|
+
var RitualCalendarPresentation = definePresentation({
|
|
86
|
+
meta: {
|
|
87
|
+
key: "team-hub.ritual.calendar",
|
|
88
|
+
version: "1.0.0",
|
|
89
|
+
title: "Ritual Calendar",
|
|
90
|
+
description: "Calendar of team rituals and events.",
|
|
91
|
+
domain: "team-hub",
|
|
92
|
+
owners: [...OWNERS],
|
|
93
|
+
stability: StabilityEnum.Experimental,
|
|
94
|
+
goal: "Schedule and view team events.",
|
|
95
|
+
context: "Calendar view.",
|
|
96
|
+
tags: ["ritual", "calendar"]
|
|
97
|
+
},
|
|
98
|
+
source: {
|
|
99
|
+
type: "component",
|
|
100
|
+
framework: "react",
|
|
101
|
+
componentKey: "RitualCalendar"
|
|
102
|
+
},
|
|
103
|
+
targets: ["react"]
|
|
104
|
+
});
|
|
105
|
+
var AnnouncementFeedPresentation = definePresentation({
|
|
106
|
+
meta: {
|
|
107
|
+
key: "team-hub.announcement.feed",
|
|
108
|
+
version: "1.0.0",
|
|
109
|
+
title: "Announcement Feed",
|
|
110
|
+
description: "Feed of team announcements.",
|
|
111
|
+
domain: "team-hub",
|
|
112
|
+
owners: [...OWNERS],
|
|
113
|
+
stability: StabilityEnum.Experimental,
|
|
114
|
+
goal: "Broadcast important team news.",
|
|
115
|
+
context: "Dashboard widget or dedicated page.",
|
|
116
|
+
tags: ["announcement", "feed"]
|
|
117
|
+
},
|
|
118
|
+
source: {
|
|
119
|
+
type: "component",
|
|
120
|
+
framework: "react",
|
|
121
|
+
componentKey: "AnnouncementFeed"
|
|
122
|
+
},
|
|
123
|
+
targets: ["react"]
|
|
124
|
+
});
|
|
125
|
+
export {
|
|
126
|
+
TeamDashboardPresentation,
|
|
127
|
+
TaskDetailPresentation,
|
|
128
|
+
TaskBoardPresentation,
|
|
129
|
+
SpaceListPresentation,
|
|
130
|
+
RitualCalendarPresentation,
|
|
131
|
+
AnnouncementFeedPresentation
|
|
132
|
+
};
|
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
declare const
|
|
5
|
-
declare const
|
|
6
|
-
declare const
|
|
7
|
-
declare const TaskDetailPresentation: _contractspec_lib_contracts0.PresentationSpec;
|
|
8
|
-
declare const RitualCalendarPresentation: _contractspec_lib_contracts0.PresentationSpec;
|
|
9
|
-
declare const AnnouncementFeedPresentation: _contractspec_lib_contracts0.PresentationSpec;
|
|
10
|
-
//#endregion
|
|
11
|
-
export { AnnouncementFeedPresentation, RitualCalendarPresentation, SpaceListPresentation, TaskBoardPresentation, TaskDetailPresentation, TeamDashboardPresentation };
|
|
1
|
+
export declare const TeamDashboardPresentation: import("@contractspec/lib.contracts").PresentationSpec;
|
|
2
|
+
export declare const SpaceListPresentation: import("@contractspec/lib.contracts").PresentationSpec;
|
|
3
|
+
export declare const TaskBoardPresentation: import("@contractspec/lib.contracts").PresentationSpec;
|
|
4
|
+
export declare const TaskDetailPresentation: import("@contractspec/lib.contracts").PresentationSpec;
|
|
5
|
+
export declare const RitualCalendarPresentation: import("@contractspec/lib.contracts").PresentationSpec;
|
|
6
|
+
export declare const AnnouncementFeedPresentation: import("@contractspec/lib.contracts").PresentationSpec;
|
|
12
7
|
//# sourceMappingURL=team-hub.presentation.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"team-hub.presentation.d.ts","
|
|
1
|
+
{"version":3,"file":"team-hub.presentation.d.ts","sourceRoot":"","sources":["../../src/presentations/team-hub.presentation.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,yBAAyB,wDAmBpC,CAAC;AAEH,eAAO,MAAM,qBAAqB,wDAmBhC,CAAC;AAEH,eAAO,MAAM,qBAAqB,wDAmBhC,CAAC;AAEH,eAAO,MAAM,sBAAsB,wDAmBjC,CAAC;AAEH,eAAO,MAAM,0BAA0B,wDAmBrC,CAAC;AAEH,eAAO,MAAM,4BAA4B,wDAmBvC,CAAC"}
|
|
@@ -1,131 +1,132 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
componentKey: "TeamDashboard"
|
|
25
|
-
},
|
|
26
|
-
targets: ["react"]
|
|
1
|
+
// @bun
|
|
2
|
+
// src/presentations/team-hub.presentation.ts
|
|
3
|
+
import { definePresentation, StabilityEnum } from "@contractspec/lib.contracts";
|
|
4
|
+
var OWNERS = ["@team-hub"];
|
|
5
|
+
var TeamDashboardPresentation = definePresentation({
|
|
6
|
+
meta: {
|
|
7
|
+
key: "team-hub.dashboard",
|
|
8
|
+
version: "1.0.0",
|
|
9
|
+
title: "Team Dashboard",
|
|
10
|
+
description: "Main team hub dashboard.",
|
|
11
|
+
domain: "team-hub",
|
|
12
|
+
owners: [...OWNERS],
|
|
13
|
+
stability: StabilityEnum.Experimental,
|
|
14
|
+
goal: "Central hub for team activity.",
|
|
15
|
+
context: "Landing page for team members.",
|
|
16
|
+
tags: ["dashboard", "team"]
|
|
17
|
+
},
|
|
18
|
+
source: {
|
|
19
|
+
type: "component",
|
|
20
|
+
framework: "react",
|
|
21
|
+
componentKey: "TeamDashboard"
|
|
22
|
+
},
|
|
23
|
+
targets: ["react"]
|
|
27
24
|
});
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
25
|
+
var SpaceListPresentation = definePresentation({
|
|
26
|
+
meta: {
|
|
27
|
+
key: "team-hub.space.list",
|
|
28
|
+
version: "1.0.0",
|
|
29
|
+
title: "Space List",
|
|
30
|
+
description: "List of team spaces.",
|
|
31
|
+
domain: "team-hub",
|
|
32
|
+
owners: [...OWNERS],
|
|
33
|
+
stability: StabilityEnum.Experimental,
|
|
34
|
+
goal: "Navigate between team spaces.",
|
|
35
|
+
context: "Sidebar or spaces hub.",
|
|
36
|
+
tags: ["space", "list"]
|
|
37
|
+
},
|
|
38
|
+
source: {
|
|
39
|
+
type: "component",
|
|
40
|
+
framework: "react",
|
|
41
|
+
componentKey: "SpaceList"
|
|
42
|
+
},
|
|
43
|
+
targets: ["react"]
|
|
47
44
|
});
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
45
|
+
var TaskBoardPresentation = definePresentation({
|
|
46
|
+
meta: {
|
|
47
|
+
key: "team-hub.task.board",
|
|
48
|
+
version: "1.0.0",
|
|
49
|
+
title: "Task Board",
|
|
50
|
+
description: "Kanban board for team tasks.",
|
|
51
|
+
domain: "team-hub",
|
|
52
|
+
owners: [...OWNERS],
|
|
53
|
+
stability: StabilityEnum.Experimental,
|
|
54
|
+
goal: "Visualize task progress.",
|
|
55
|
+
context: "Project management view.",
|
|
56
|
+
tags: ["task", "board"]
|
|
57
|
+
},
|
|
58
|
+
source: {
|
|
59
|
+
type: "component",
|
|
60
|
+
framework: "react",
|
|
61
|
+
componentKey: "TaskBoard"
|
|
62
|
+
},
|
|
63
|
+
targets: ["react"]
|
|
67
64
|
});
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
65
|
+
var TaskDetailPresentation = definePresentation({
|
|
66
|
+
meta: {
|
|
67
|
+
key: "team-hub.task.detail",
|
|
68
|
+
version: "1.0.0",
|
|
69
|
+
title: "Task Detail",
|
|
70
|
+
description: "Detailed view of a task.",
|
|
71
|
+
domain: "team-hub",
|
|
72
|
+
owners: [...OWNERS],
|
|
73
|
+
stability: StabilityEnum.Experimental,
|
|
74
|
+
goal: "View and edit task details.",
|
|
75
|
+
context: "Task modal or page.",
|
|
76
|
+
tags: ["task", "detail"]
|
|
77
|
+
},
|
|
78
|
+
source: {
|
|
79
|
+
type: "component",
|
|
80
|
+
framework: "react",
|
|
81
|
+
componentKey: "TaskDetail"
|
|
82
|
+
},
|
|
83
|
+
targets: ["react"]
|
|
87
84
|
});
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
85
|
+
var RitualCalendarPresentation = definePresentation({
|
|
86
|
+
meta: {
|
|
87
|
+
key: "team-hub.ritual.calendar",
|
|
88
|
+
version: "1.0.0",
|
|
89
|
+
title: "Ritual Calendar",
|
|
90
|
+
description: "Calendar of team rituals and events.",
|
|
91
|
+
domain: "team-hub",
|
|
92
|
+
owners: [...OWNERS],
|
|
93
|
+
stability: StabilityEnum.Experimental,
|
|
94
|
+
goal: "Schedule and view team events.",
|
|
95
|
+
context: "Calendar view.",
|
|
96
|
+
tags: ["ritual", "calendar"]
|
|
97
|
+
},
|
|
98
|
+
source: {
|
|
99
|
+
type: "component",
|
|
100
|
+
framework: "react",
|
|
101
|
+
componentKey: "RitualCalendar"
|
|
102
|
+
},
|
|
103
|
+
targets: ["react"]
|
|
107
104
|
});
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
105
|
+
var AnnouncementFeedPresentation = definePresentation({
|
|
106
|
+
meta: {
|
|
107
|
+
key: "team-hub.announcement.feed",
|
|
108
|
+
version: "1.0.0",
|
|
109
|
+
title: "Announcement Feed",
|
|
110
|
+
description: "Feed of team announcements.",
|
|
111
|
+
domain: "team-hub",
|
|
112
|
+
owners: [...OWNERS],
|
|
113
|
+
stability: StabilityEnum.Experimental,
|
|
114
|
+
goal: "Broadcast important team news.",
|
|
115
|
+
context: "Dashboard widget or dedicated page.",
|
|
116
|
+
tags: ["announcement", "feed"]
|
|
117
|
+
},
|
|
118
|
+
source: {
|
|
119
|
+
type: "component",
|
|
120
|
+
framework: "react",
|
|
121
|
+
componentKey: "AnnouncementFeed"
|
|
122
|
+
},
|
|
123
|
+
targets: ["react"]
|
|
127
124
|
});
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
125
|
+
export {
|
|
126
|
+
TeamDashboardPresentation,
|
|
127
|
+
TaskDetailPresentation,
|
|
128
|
+
TaskBoardPresentation,
|
|
129
|
+
SpaceListPresentation,
|
|
130
|
+
RitualCalendarPresentation,
|
|
131
|
+
AnnouncementFeedPresentation
|
|
132
|
+
};
|
package/dist/presentations.d.ts
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
import { PresentationSpec } from
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
declare const
|
|
5
|
-
declare const
|
|
6
|
-
declare const
|
|
7
|
-
declare const
|
|
8
|
-
declare const RitualCalendarPresentation: PresentationSpec;
|
|
9
|
-
declare const AnnouncementFeedPresentation: PresentationSpec;
|
|
10
|
-
//#endregion
|
|
11
|
-
export { AnnouncementFeedPresentation, RitualCalendarPresentation, SpaceListPresentation, TaskBoardPresentation, TaskDetailPresentation, TeamDashboardPresentation };
|
|
1
|
+
import type { PresentationSpec } from '@contractspec/lib.contracts';
|
|
2
|
+
export declare const TeamDashboardPresentation: PresentationSpec;
|
|
3
|
+
export declare const SpaceListPresentation: PresentationSpec;
|
|
4
|
+
export declare const TaskBoardPresentation: PresentationSpec;
|
|
5
|
+
export declare const TaskDetailPresentation: PresentationSpec;
|
|
6
|
+
export declare const RitualCalendarPresentation: PresentationSpec;
|
|
7
|
+
export declare const AnnouncementFeedPresentation: PresentationSpec;
|
|
12
8
|
//# sourceMappingURL=presentations.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"presentations.d.ts","
|
|
1
|
+
{"version":3,"file":"presentations.d.ts","sourceRoot":"","sources":["../src/presentations.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAGpE,eAAO,MAAM,yBAAyB,EAAE,gBAsBvC,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,gBAsBnC,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,gBAsBnC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,gBAsBpC,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,gBAsBxC,CAAC;AAEF,eAAO,MAAM,4BAA4B,EAAE,gBAsB1C,CAAC"}
|