@object-ui/plugin-view 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 +23 -0
- package/README.md +21 -1
- package/dist/index.js +2679 -2936
- package/dist/index.umd.cjs +1 -5
- package/dist/packages/plugin-view/src/config/view-config-schema.d.ts +20 -0
- package/dist/packages/plugin-view/src/config/view-config-utils.d.ts +58 -0
- package/dist/packages/plugin-view/src/index.d.ts +4 -0
- package/package.json +41 -9
- package/.turbo/turbo-build.log +0 -39
- package/src/FilterUI.tsx +0 -350
- package/src/ObjectView.tsx +0 -1133
- package/src/SharedViewLink.tsx +0 -199
- package/src/SortUI.tsx +0 -210
- package/src/ViewSwitcher.tsx +0 -379
- package/src/ViewTabBar.tsx +0 -656
- package/src/__tests__/FilterUI.test.tsx +0 -641
- package/src/__tests__/ObjectView.test.tsx +0 -705
- package/src/__tests__/SharedViewLinkPassword.test.tsx +0 -172
- package/src/__tests__/SortUI.test.tsx +0 -380
- package/src/__tests__/ViewTabBar.test.tsx +0 -710
- package/src/__tests__/config-sync-integration.test.tsx +0 -588
- package/src/__tests__/toolbar-consistency.test.tsx +0 -755
- package/src/index.tsx +0 -197
- package/tsconfig.json +0 -8
- package/vite.config.ts +0 -48
- package/vitest.config.ts +0 -12
- package/vitest.setup.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @object-ui/plugin-view
|
|
2
2
|
|
|
3
|
+
## 3.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @object-ui/types@3.3.2
|
|
8
|
+
- @object-ui/core@3.3.2
|
|
9
|
+
- @object-ui/react@3.3.2
|
|
10
|
+
- @object-ui/components@3.3.2
|
|
11
|
+
- @object-ui/plugin-form@3.3.2
|
|
12
|
+
- @object-ui/plugin-grid@3.3.2
|
|
13
|
+
|
|
14
|
+
## 3.3.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [b429568]
|
|
19
|
+
- @object-ui/components@3.3.1
|
|
20
|
+
- @object-ui/plugin-form@3.3.1
|
|
21
|
+
- @object-ui/plugin-grid@3.3.1
|
|
22
|
+
- @object-ui/types@3.3.1
|
|
23
|
+
- @object-ui/core@3.3.1
|
|
24
|
+
- @object-ui/react@3.3.1
|
|
25
|
+
|
|
3
26
|
## 3.3.0
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -344,6 +344,26 @@ const userView: ObjectViewSchema = {
|
|
|
344
344
|
};
|
|
345
345
|
```
|
|
346
346
|
|
|
347
|
+
<!-- release-metadata:v3.3.0 -->
|
|
348
|
+
|
|
349
|
+
## Compatibility
|
|
350
|
+
|
|
351
|
+
- **React:** 18.x or 19.x
|
|
352
|
+
- **Node.js:** ≥ 18
|
|
353
|
+
- **TypeScript:** ≥ 5.0 (strict mode)
|
|
354
|
+
- **`@objectstack/spec`:** ^3.3.0
|
|
355
|
+
- **`@objectstack/client`:** ^3.3.0
|
|
356
|
+
- **Tailwind CSS:** ≥ 3.4 (for packages with UI)
|
|
357
|
+
|
|
358
|
+
## Links
|
|
359
|
+
|
|
360
|
+
- 📚 [Documentation](https://www.objectui.org/docs/plugins/plugin-view)
|
|
361
|
+
- 📦 [npm package](https://www.npmjs.com/package/@object-ui/plugin-view)
|
|
362
|
+
- 📝 [Changelog](./CHANGELOG.md)
|
|
363
|
+
- 🐛 [Report an issue](https://github.com/objectstack-ai/objectui/issues)
|
|
364
|
+
- 🤝 [Contributing Guide](https://github.com/objectstack-ai/objectui/blob/main/CONTRIBUTING.md)
|
|
365
|
+
- 🗺️ [Roadmap](https://github.com/objectstack-ai/objectui/blob/main/ROADMAP.md)
|
|
366
|
+
|
|
347
367
|
## License
|
|
348
368
|
|
|
349
|
-
MIT
|
|
369
|
+
MIT — see [LICENSE](./LICENSE).
|