@object-ui/plugin-form 3.1.2 → 3.1.3

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @object-ui/plugin-form@3.1.2 build /home/runner/work/objectui/objectui/packages/plugin-form
2
+ > @object-ui/plugin-form@3.1.3 build /home/runner/work/objectui/objectui/packages/plugin-form
3
3
  > vite build
4
4
 
5
5
  vite v7.3.1 building client environment for production...
@@ -10,7 +10,7 @@ rendering chunks...
10
10
  [vite:dts] Start generate declaration files...
11
11
  computing gzip size...
12
12
  dist/index.js 68.68 kB │ gzip: 14.37 kB
13
- [vite:dts] Declaration files built in 29166ms.
13
+ [vite:dts] Declaration files built in 25700ms.
14
14
  
15
15
  No name was provided for external module "@object-ui/core" in "output.globals" – guessing "core".
16
16
  No name was provided for external module "@object-ui/react" in "output.globals" – guessing "react".
@@ -18,4 +18,4 @@ computing gzip size...
18
18
  No name was provided for external module "@object-ui/components" in "output.globals" – guessing "components".
19
19
  No name was provided for external module "lucide-react" in "output.globals" – guessing "lucideReact".
20
20
  dist/index.umd.cjs 46.52 kB │ gzip: 12.08 kB
21
- ✓ built in 31.51s
21
+ ✓ built in 27.83s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @object-ui/plugin-form
2
2
 
3
+ ## 3.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - @object-ui/types@3.1.3
8
+ - @object-ui/core@3.1.3
9
+ - @object-ui/react@3.1.3
10
+ - @object-ui/components@3.1.3
11
+ - @object-ui/fields@3.1.3
12
+
3
13
  ## 3.1.2
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@object-ui/plugin-form",
3
- "version": "3.1.2",
3
+ "version": "3.1.3",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Form plugin for Object UI",
@@ -15,12 +15,12 @@
15
15
  }
16
16
  },
17
17
  "dependencies": {
18
- "lucide-react": "^0.576.0",
19
- "@object-ui/components": "3.1.2",
20
- "@object-ui/core": "3.1.2",
21
- "@object-ui/fields": "3.1.2",
22
- "@object-ui/react": "3.1.2",
23
- "@object-ui/types": "3.1.2"
18
+ "lucide-react": "^0.577.0",
19
+ "@object-ui/components": "3.1.3",
20
+ "@object-ui/core": "3.1.3",
21
+ "@object-ui/fields": "3.1.3",
22
+ "@object-ui/react": "3.1.3",
23
+ "@object-ui/types": "3.1.3"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "react": "^18.0.0 || ^19.0.0",
@@ -32,7 +32,7 @@
32
32
  "typescript": "^5.9.3",
33
33
  "vite": "^7.3.1",
34
34
  "vite-plugin-dts": "^4.5.4",
35
- "@object-ui/data-objectstack": "3.1.2"
35
+ "@object-ui/data-objectstack": "3.1.3"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "vite build",
@@ -19,7 +19,7 @@ const BASE_URL = process.env.OBJECTSTACK_API_URL || 'http://localhost';
19
19
  const mockSchema = ContactObject;
20
20
 
21
21
  const mockRecord = {
22
- _id: '1',
22
+ id: '1',
23
23
  name: 'Alice Johnson',
24
24
  email: 'alice@example.com',
25
25
  status: 'Active'