@quadrokit/ui 0.3.2 → 0.3.4

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -29,4 +29,4 @@ Adding a preset: extend [`src/styles.css`](src/styles.css) with new `html[data-q
29
29
 
30
30
  ## Peer dependencies
31
31
 
32
- `react` and `react-dom` ^18 or ^19.
32
+ `react` and `react-dom` ^18 or ^19. **`@quadrokit/client`** `^0.3.0` is required for hooks that use the generated REST client (e.g. `useQuadroPagedCollection`). Use a normal semver range in `package.json` — do **not** use `workspace:*` here (that is for the monorepo only and breaks installs from the npm registry).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quadrokit/ui",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",
@@ -34,7 +34,7 @@
34
34
  "tailwind-merge": "^3.5.0"
35
35
  },
36
36
  "peerDependencies": {
37
- "@quadrokit/client": "workspace:*",
37
+ "@quadrokit/client": "^0.3.4",
38
38
  "react": "^18 || ^19",
39
39
  "react-dom": "^18 || ^19"
40
40
  },