@object-ui/app-shell 4.0.11 → 4.2.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.
- package/CHANGELOG.md +86 -0
- package/dist/components/ManagedByBanner.d.ts +16 -0
- package/dist/components/ManagedByBanner.js +38 -0
- package/dist/console/home/HomeLayout.js +1 -1
- package/dist/console/home/HomePage.js +3 -1
- package/dist/layout/AppHeader.js +187 -2
- package/dist/layout/AppSidebar.js +32 -14
- package/dist/layout/UnifiedSidebar.js +30 -13
- package/dist/utils/crudAffordances.d.ts +41 -0
- package/dist/utils/crudAffordances.js +35 -0
- package/dist/views/ObjectView.js +54 -4
- package/dist/views/RecordDetailView.js +223 -40
- package/dist/views/RecordFormPage.js +2 -1
- package/dist/views/ReportView.js +16 -1
- package/package.json +27 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@object-ui/app-shell",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Minimal application shell for ObjectUI - framework-agnostic rendering engine",
|
|
@@ -25,39 +25,39 @@
|
|
|
25
25
|
"./styles.css": "./src/styles.css"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"lucide-react": "^1.
|
|
28
|
+
"lucide-react": "^1.16.0",
|
|
29
29
|
"sonner": "^2.0.7",
|
|
30
|
-
"@object-ui/auth": "4.
|
|
31
|
-
"@object-ui/collaboration": "4.
|
|
32
|
-
"@object-ui/components": "4.
|
|
33
|
-
"@object-ui/core": "4.
|
|
34
|
-
"@object-ui/data-objectstack": "4.
|
|
35
|
-
"@object-ui/fields": "4.
|
|
36
|
-
"@object-ui/i18n": "4.
|
|
37
|
-
"@object-ui/layout": "4.
|
|
38
|
-
"@object-ui/permissions": "4.
|
|
39
|
-
"@object-ui/react": "4.
|
|
40
|
-
"@object-ui/types": "4.
|
|
30
|
+
"@object-ui/auth": "4.2.1",
|
|
31
|
+
"@object-ui/collaboration": "4.2.1",
|
|
32
|
+
"@object-ui/components": "4.2.1",
|
|
33
|
+
"@object-ui/core": "4.2.1",
|
|
34
|
+
"@object-ui/data-objectstack": "4.2.1",
|
|
35
|
+
"@object-ui/fields": "4.2.1",
|
|
36
|
+
"@object-ui/i18n": "4.2.1",
|
|
37
|
+
"@object-ui/layout": "4.2.1",
|
|
38
|
+
"@object-ui/permissions": "4.2.1",
|
|
39
|
+
"@object-ui/react": "4.2.1",
|
|
40
|
+
"@object-ui/types": "4.2.1"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": "^18.0.0 || ^19.0.0",
|
|
44
44
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
45
45
|
"react-router-dom": "^6.0.0 || ^7.0.0",
|
|
46
|
-
"@object-ui/plugin-calendar": "4.
|
|
47
|
-
"@object-ui/plugin-charts": "4.
|
|
48
|
-
"@object-ui/plugin-chatbot": "4.
|
|
49
|
-
"@object-ui/plugin-dashboard": "4.
|
|
50
|
-
"@object-ui/plugin-designer": "4.
|
|
51
|
-
"@object-ui/plugin-detail": "4.
|
|
52
|
-
"@object-ui/plugin-form": "4.
|
|
53
|
-
"@object-ui/plugin-grid": "4.
|
|
54
|
-
"@object-ui/plugin-kanban": "4.
|
|
55
|
-
"@object-ui/plugin-list": "4.
|
|
56
|
-
"@object-ui/plugin-report": "4.
|
|
57
|
-
"@object-ui/plugin-view": "4.
|
|
46
|
+
"@object-ui/plugin-calendar": "^4.2.1",
|
|
47
|
+
"@object-ui/plugin-charts": "^4.2.1",
|
|
48
|
+
"@object-ui/plugin-chatbot": "^4.2.1",
|
|
49
|
+
"@object-ui/plugin-dashboard": "^4.2.1",
|
|
50
|
+
"@object-ui/plugin-designer": "^4.2.1",
|
|
51
|
+
"@object-ui/plugin-detail": "^4.2.1",
|
|
52
|
+
"@object-ui/plugin-form": "^4.2.1",
|
|
53
|
+
"@object-ui/plugin-grid": "^4.2.1",
|
|
54
|
+
"@object-ui/plugin-kanban": "^4.2.1",
|
|
55
|
+
"@object-ui/plugin-list": "^4.2.1",
|
|
56
|
+
"@object-ui/plugin-report": "^4.2.1",
|
|
57
|
+
"@object-ui/plugin-view": "^4.2.1"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@types/node": "^25.
|
|
60
|
+
"@types/node": "^25.9.0",
|
|
61
61
|
"@types/react": "19.2.14",
|
|
62
62
|
"@types/react-dom": "19.2.3",
|
|
63
63
|
"react": "19.2.6",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"react-router-dom": "^7.15.0",
|
|
66
66
|
"sonner": "^2.0.7",
|
|
67
67
|
"typescript": "^6.0.3",
|
|
68
|
-
"vite": "^8.0.
|
|
68
|
+
"vite": "^8.0.13"
|
|
69
69
|
},
|
|
70
70
|
"keywords": [
|
|
71
71
|
"objectui",
|