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