@object-ui/mobile 3.3.0 → 3.3.2
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 +102 -0
- package/README.md +21 -1
- package/package.json +31 -7
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
# @object-ui/mobile
|
|
2
|
+
|
|
3
|
+
## 3.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @object-ui/types@3.3.2
|
|
8
|
+
|
|
9
|
+
## 3.3.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- @object-ui/types@3.3.1
|
|
14
|
+
|
|
15
|
+
## 3.3.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- @object-ui/types@3.3.0
|
|
20
|
+
|
|
21
|
+
## 3.2.0
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- @object-ui/types@3.2.0
|
|
26
|
+
|
|
27
|
+
## 3.1.5
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- @object-ui/types@3.1.5
|
|
32
|
+
|
|
33
|
+
## 3.1.4
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- @object-ui/types@3.1.4
|
|
38
|
+
|
|
39
|
+
## 3.1.3
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- @object-ui/types@3.1.3
|
|
44
|
+
|
|
45
|
+
## 3.1.2
|
|
46
|
+
|
|
47
|
+
### Patch Changes
|
|
48
|
+
|
|
49
|
+
- @object-ui/types@3.1.2
|
|
50
|
+
|
|
51
|
+
## 3.1.1
|
|
52
|
+
|
|
53
|
+
### Patch Changes
|
|
54
|
+
|
|
55
|
+
- Updated dependencies
|
|
56
|
+
- @object-ui/types@3.1.1
|
|
57
|
+
|
|
58
|
+
## 3.0.3
|
|
59
|
+
|
|
60
|
+
### Patch Changes
|
|
61
|
+
|
|
62
|
+
- @object-ui/types@3.0.3
|
|
63
|
+
|
|
64
|
+
## 3.0.2
|
|
65
|
+
|
|
66
|
+
### Patch Changes
|
|
67
|
+
|
|
68
|
+
- @object-ui/types@3.0.2
|
|
69
|
+
|
|
70
|
+
## 3.0.1
|
|
71
|
+
|
|
72
|
+
### Patch Changes
|
|
73
|
+
|
|
74
|
+
- @object-ui/types@3.0.1
|
|
75
|
+
|
|
76
|
+
## 3.0.0
|
|
77
|
+
|
|
78
|
+
### Minor Changes
|
|
79
|
+
|
|
80
|
+
- 87979c3: Upgrade to @objectstack v3.0.0 and console bundle optimization
|
|
81
|
+
- Upgraded all @objectstack/\* packages from ^2.0.7 to ^3.0.0
|
|
82
|
+
- Breaking change migrations: Hub → Cloud namespace, definePlugin removed, PaginatedResult.value → .records, PaginatedResult.count → .total, client.meta.getObject() → client.meta.getItem()
|
|
83
|
+
- Console bundle optimization: split monolithic 3.7 MB chunk into 17 granular cacheable chunks (95% main entry reduction)
|
|
84
|
+
- Added gzip + brotli pre-compression via vite-plugin-compression2
|
|
85
|
+
- Lazy MSW loading for build:server (~150 KB gzip saved)
|
|
86
|
+
- Added bundle analysis with rollup-plugin-visualizer
|
|
87
|
+
|
|
88
|
+
### Patch Changes
|
|
89
|
+
|
|
90
|
+
- Updated dependencies [87979c3]
|
|
91
|
+
- @object-ui/types@3.0.0
|
|
92
|
+
|
|
93
|
+
## 2.0.0
|
|
94
|
+
|
|
95
|
+
### Major Changes
|
|
96
|
+
|
|
97
|
+
- b859617: Release v1.0.0 — unify all package versions to 1.0.0
|
|
98
|
+
|
|
99
|
+
### Patch Changes
|
|
100
|
+
|
|
101
|
+
- Updated dependencies [b859617]
|
|
102
|
+
- @object-ui/types@2.0.0
|
package/README.md
CHANGED
|
@@ -127,6 +127,26 @@ const manifest = generatePWAManifest({ name: 'My App', themeColor: '#000' });
|
|
|
127
127
|
registerServiceWorker({ cacheStrategy: 'network-first' });
|
|
128
128
|
```
|
|
129
129
|
|
|
130
|
+
<!-- release-metadata:v3.3.0 -->
|
|
131
|
+
|
|
132
|
+
## Compatibility
|
|
133
|
+
|
|
134
|
+
- **React:** 18.x or 19.x
|
|
135
|
+
- **Node.js:** ≥ 18
|
|
136
|
+
- **TypeScript:** ≥ 5.0 (strict mode)
|
|
137
|
+
- **`@objectstack/spec`:** ^3.3.0
|
|
138
|
+
- **`@objectstack/client`:** ^3.3.0
|
|
139
|
+
- **Tailwind CSS:** ≥ 3.4 (for packages with UI)
|
|
140
|
+
|
|
141
|
+
## Links
|
|
142
|
+
|
|
143
|
+
- 📚 [Documentation](https://www.objectui.org/docs/packages/mobile)
|
|
144
|
+
- 📦 [npm package](https://www.npmjs.com/package/@object-ui/mobile)
|
|
145
|
+
- 📝 [Changelog](./CHANGELOG.md)
|
|
146
|
+
- 🐛 [Report an issue](https://github.com/objectstack-ai/objectui/issues)
|
|
147
|
+
- 🤝 [Contributing Guide](https://github.com/objectstack-ai/objectui/blob/main/CONTRIBUTING.md)
|
|
148
|
+
- 🗺️ [Roadmap](https://github.com/objectstack-ai/objectui/blob/main/ROADMAP.md)
|
|
149
|
+
|
|
130
150
|
## License
|
|
131
151
|
|
|
132
|
-
MIT
|
|
152
|
+
MIT — see [LICENSE](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@object-ui/mobile",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Mobile optimization for Object UI with responsive components, PWA support, and touch gesture handling.",
|
|
7
|
-
"homepage": "https://www.objectui.org",
|
|
7
|
+
"homepage": "https://www.objectui.org/docs/packages/mobile",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/objectstack-ai/objectui.git",
|
|
10
|
+
"url": "git+https://github.com/objectstack-ai/objectui.git",
|
|
11
11
|
"directory": "packages/mobile"
|
|
12
12
|
},
|
|
13
13
|
"main": "./dist/index.js",
|
|
@@ -21,19 +21,43 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
|
-
"dist"
|
|
24
|
+
"dist",
|
|
25
|
+
"README.md",
|
|
26
|
+
"CHANGELOG.md",
|
|
27
|
+
"LICENSE"
|
|
25
28
|
],
|
|
26
29
|
"peerDependencies": {
|
|
27
30
|
"react": "^18.0.0 || ^19.0.0"
|
|
28
31
|
},
|
|
29
32
|
"dependencies": {
|
|
30
|
-
"@object-ui/types": "3.3.
|
|
33
|
+
"@object-ui/types": "3.3.2"
|
|
31
34
|
},
|
|
32
35
|
"devDependencies": {
|
|
33
36
|
"@types/react": "19.2.14",
|
|
34
37
|
"react": "19.2.5",
|
|
35
|
-
"typescript": "^6.0.
|
|
36
|
-
"vitest": "^4.1.
|
|
38
|
+
"typescript": "^6.0.3",
|
|
39
|
+
"vitest": "^4.1.5"
|
|
40
|
+
},
|
|
41
|
+
"keywords": [
|
|
42
|
+
"objectui",
|
|
43
|
+
"sdui",
|
|
44
|
+
"schema-driven-ui",
|
|
45
|
+
"react",
|
|
46
|
+
"tailwind",
|
|
47
|
+
"shadcn",
|
|
48
|
+
"objectstack",
|
|
49
|
+
"mobile",
|
|
50
|
+
"pwa",
|
|
51
|
+
"responsive",
|
|
52
|
+
"touch",
|
|
53
|
+
"offline"
|
|
54
|
+
],
|
|
55
|
+
"author": "ObjectStack Team <team@objectstack.ai>",
|
|
56
|
+
"bugs": {
|
|
57
|
+
"url": "https://github.com/objectstack-ai/objectui/issues"
|
|
58
|
+
},
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public"
|
|
37
61
|
},
|
|
38
62
|
"scripts": {
|
|
39
63
|
"build": "tsc",
|