@ic-reactor/react 3.0.6-beta.4 → 3.0.7-beta.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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -124,14 +124,14 @@ function Greeting() {
124
124
 
125
125
  ### Reactor vs DisplayReactor
126
126
 
127
- | Feature | `Reactor` | `DisplayReactor` |
128
- | ------------- | ---------------- | --------------------------- |
129
- | Types | Raw Candid types | Display-friendly types |
130
- | BigInt | `bigint` | `string` |
131
- | Principal | `Principal` | `string` |
132
- | Vec nat8 | `Uint8Array` | <= 96 bytes: `string` (hex) |
133
- | Result | Unwrapped | Unwrapped |
134
- | Form-friendly | No | Yes |
127
+ | Feature | `Reactor` | `DisplayReactor` |
128
+ | ------------- | ---------------- | ---------------------------- |
129
+ | Types | Raw Candid types | Display-friendly types |
130
+ | BigInt | `bigint` | `string` |
131
+ | Principal | `Principal` | `string` |
132
+ | Vec nat8 | `Uint8Array` | <= 512 bytes: `string` (hex) |
133
+ | Result | Unwrapped | Unwrapped |
134
+ | Form-friendly | No | Yes |
135
135
 
136
136
  ```typescript
137
137
  import { DisplayReactor } from "@ic-reactor/react"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ic-reactor/react",
3
- "version": "3.0.6-beta.4",
3
+ "version": "3.0.7-beta.1",
4
4
  "description": "IC Reactor React Library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -41,7 +41,7 @@
41
41
  "author": "Behrad Deylami",
42
42
  "license": "MIT",
43
43
  "dependencies": {
44
- "@ic-reactor/core": "^3.0.6-beta.4"
44
+ "@ic-reactor/core": "^3.0.7-beta.1"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "react": ">=18.0.0",
@@ -55,7 +55,7 @@
55
55
  "@tanstack/react-query": "^5.90",
56
56
  "@testing-library/dom": "^10.4.1",
57
57
  "@testing-library/jest-dom": "^6.9.1",
58
- "@testing-library/react": "^16.3.1",
58
+ "@testing-library/react": "^16.3.2",
59
59
  "@types/react": "^19.2.7",
60
60
  "@types/react-dom": "^19.2.3",
61
61
  "fake-indexeddb": "^6.2.5",