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