@pipe0/base 0.4.7 → 0.5.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 +28 -0
- package/dist/index.d.mts +115431 -38998
- package/dist/index.mjs +12 -10
- package/package.json +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @pipe0/ops
|
|
2
2
|
|
|
3
|
+
## 0.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 436c852: New agent promps plus fix append pipes
|
|
8
|
+
- Updated dependencies [436c852]
|
|
9
|
+
- @pipe0/client@0.1.8
|
|
10
|
+
|
|
11
|
+
## 0.5.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 70036b5: Fix dependency declarations so consumers no longer have to hand-install internal libraries.
|
|
16
|
+
|
|
17
|
+
`@pipe0/react`: the libraries it only uses internally — `@dnd-kit/*`, `@floating-ui/react`,
|
|
18
|
+
`@hookform/resolvers`, `@tanstack/react-table`, `@tiptap/*`, and `react-hook-form` — moved from
|
|
19
|
+
`peerDependencies` to regular `dependencies`; they're never exposed on the public API, so the
|
|
20
|
+
library now controls their versions and installs them automatically. `@base-ui/react` was
|
|
21
|
+
promoted from a `dependency` to a `peerDependency` because its types are part of the public API
|
|
22
|
+
(`useRender.ComponentProps`) and consumers are expected to import it directly. `react`,
|
|
23
|
+
`react-dom`, and `zod` remain peers.
|
|
24
|
+
|
|
25
|
+
`@pipe0/base`: `zod` moved from `dependencies` to `peerDependencies` so the consumer's app,
|
|
26
|
+
`@pipe0/base`, and `@pipe0/react` all resolve to a single zod instance (avoiding duplicate-instance
|
|
27
|
+
type errors).
|
|
28
|
+
|
|
29
|
+
Consumers must now have `@base-ui/react`, `react`, `react-dom`, and `zod` installed as peers.
|
|
30
|
+
|
|
3
31
|
## 0.4.7
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|