@critical-path/react 0.9.0 → 0.9.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.
package/CHANGELOG.md CHANGED
@@ -1,10 +1,17 @@
1
1
  # @critical-path/react
2
2
 
3
+ ## 0.9.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b4b2c98]
8
+ - @critical-path/mcp@0.3.1
9
+
3
10
  ## 0.9.0
4
11
 
5
12
  ### Minor Changes
6
13
 
7
- - e2a7eef: Introduce Bret Victor's Ladder of Abstraction and Critical Path Method (CPM) timeline synthesis to the framework data model:
14
+ - e2a7eef: Introduce Ladder of Abstraction and Critical Path Method (CPM) timeline synthesis to the framework data model:
8
15
  - **Core Domain**: Multi-scale timeline synthesis model across Macro phase rollups, Standard CPM Gantt schedule (early/late bounds, float/slack calculation, bottleneck identification), and Concrete grounding (deliverables, file attachments, daily effort distribution, and reality deltas). Added `calculateCriticalPath`, `getTimelineLadder`, and `getTaskLadder` to `CriticalPathEngine`.
9
16
  - **Server Router**: HTTP endpoints `GET /projects/:id/critical-path`, `GET /projects/:id/ladder`, and `GET /tasks/:id/ladder`.
10
17
  - **Client SDK**: `CriticalPathClient` methods `calculateCriticalPath`, `getTimelineLadder`, and `getTaskLadder`.
package/README.md CHANGED
@@ -114,7 +114,7 @@ export function ActivityStream({ taskId }: { taskId: string }) {
114
114
  }
115
115
  ```
116
116
 
117
- ### 5. Bret Victor's Ladder of Abstraction (`useTimelineLadder` & `useCriticalPath`)
117
+ ### 5. Ladder of Abstraction (`useTimelineLadder` & `useCriticalPath`)
118
118
 
119
119
  Fluidly traverse between Macro phase health, Standard Gantt tasks with CPM critical paths, and Concrete deliverables/effort:
120
120
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@critical-path/react",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "React Context Provider and Hooks for Critical Path headless project management framework",
5
5
  "author": "Jack James",
6
6
  "license": "MIT",
@@ -19,8 +19,8 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "@critical-path/client": "0.10.0",
22
- "@critical-path/mcp": "0.3.0",
23
- "@critical-path/core": "0.16.0"
22
+ "@critical-path/core": "0.16.0",
23
+ "@critical-path/mcp": "0.3.1"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "react": "^18.0.0 || ^19.0.0"