@almadar/orb 1.17.1 → 2.43.0
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/package.json +6 -6
- package/shells/almadar-shell/package.json +1 -1
- package/shells/almadar-shell/packages/client/package.json +11 -6
- package/shells/almadar-shell/packages/client/src/App.tsx +3 -0
- package/shells/almadar-shell/packages/client/src/main.tsx +1 -3
- package/shells/almadar-shell/packages/client/vite.config.ts +1 -0
- package/shells/almadar-shell/packages/server/package.json +4 -4
- package/shells/almadar-shell/pnpm-lock.yaml +304 -72
- package/shells/orb-shell/packages/client/package-lock.json +11190 -0
- package/shells/orb-shell/packages/server/package-lock.json +6322 -0
- package/shells/orb-shell/packages/shared/package-lock.json +24 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/orb",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.43.0",
|
|
4
4
|
"description": "Orb CLI - Compile Orbital schemas to full-stack applications",
|
|
5
5
|
"license": "BSL-1.1",
|
|
6
6
|
"repository": {
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"node": ">=16.0.0"
|
|
50
50
|
},
|
|
51
51
|
"optionalDependencies": {
|
|
52
|
-
"@almadar/orb-darwin-x64": "
|
|
53
|
-
"@almadar/orb-darwin-arm64": "
|
|
54
|
-
"@almadar/orb-linux-x64": "
|
|
55
|
-
"@almadar/orb-linux-arm64": "
|
|
56
|
-
"@almadar/orb-windows-x64": "
|
|
52
|
+
"@almadar/orb-darwin-x64": "2.43.0",
|
|
53
|
+
"@almadar/orb-darwin-arm64": "2.43.0",
|
|
54
|
+
"@almadar/orb-linux-x64": "2.43.0",
|
|
55
|
+
"@almadar/orb-linux-arm64": "2.43.0",
|
|
56
|
+
"@almadar/orb-windows-x64": "2.43.0"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"test:watch": "vitest"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@almadar/ui": ">=2.
|
|
17
|
-
"@almadar/evaluator": "
|
|
18
|
-
"@almadar/patterns": "
|
|
19
|
-
"@almadar/core": "
|
|
16
|
+
"@almadar/ui": ">=2.34.1",
|
|
17
|
+
"@almadar/evaluator": ">=2.6.0",
|
|
18
|
+
"@almadar/patterns": ">=2.8.12",
|
|
19
|
+
"@almadar/core": ">=2.9.0",
|
|
20
20
|
"firebase": "^11.4.0",
|
|
21
21
|
"@tanstack/react-query": "^5.67.3",
|
|
22
22
|
"react": "^19.0.0",
|
|
@@ -33,7 +33,12 @@
|
|
|
33
33
|
"monaco-editor": "^0.52.2",
|
|
34
34
|
"leaflet": "^1.9.4",
|
|
35
35
|
"react-leaflet": "^4.2.1",
|
|
36
|
-
"lucide-react": "^0.344.0"
|
|
36
|
+
"lucide-react": "^0.344.0",
|
|
37
|
+
"three": "^0.160.0",
|
|
38
|
+
"@react-three/fiber": "^9.0.0",
|
|
39
|
+
"@react-three/drei": "^9.92.0",
|
|
40
|
+
"@react-three/postprocessing": "^3.0.0",
|
|
41
|
+
"postprocessing": "^6.39.0"
|
|
37
42
|
},
|
|
38
43
|
"devDependencies": {
|
|
39
44
|
"@almadar/eslint-plugin": ">=2.3.0",
|
|
@@ -52,4 +57,4 @@
|
|
|
52
57
|
"vite": "^6.2.1",
|
|
53
58
|
"vitest": "^2.1.9"
|
|
54
59
|
}
|
|
55
|
-
}
|
|
60
|
+
}
|
|
@@ -16,6 +16,7 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
|
16
16
|
import { ThemeProvider, UISlotProvider } from '@almadar/ui/context';
|
|
17
17
|
import { UISlotComponent, NotifyListener } from '@almadar/ui/components';
|
|
18
18
|
import {
|
|
19
|
+
EntityStoreProvider,
|
|
19
20
|
EventBusProvider,
|
|
20
21
|
VerificationProvider,
|
|
21
22
|
} from '@almadar/ui/providers';
|
|
@@ -48,6 +49,7 @@ function App() {
|
|
|
48
49
|
<I18nProvider value={i18nValue}>
|
|
49
50
|
<QueryClientProvider client={queryClient}>
|
|
50
51
|
<ThemeProvider>
|
|
52
|
+
<EntityStoreProvider>
|
|
51
53
|
<EventBusProvider>
|
|
52
54
|
<VerificationProvider>
|
|
53
55
|
<UISlotProvider>
|
|
@@ -72,6 +74,7 @@ function App() {
|
|
|
72
74
|
</UISlotProvider>
|
|
73
75
|
</VerificationProvider>
|
|
74
76
|
</EventBusProvider>
|
|
77
|
+
</EntityStoreProvider>
|
|
75
78
|
</ThemeProvider>
|
|
76
79
|
</QueryClientProvider>
|
|
77
80
|
</I18nProvider>
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"test:watch": "vitest"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@almadar/server": "
|
|
17
|
-
"@almadar/evaluator": "
|
|
18
|
-
"@almadar/core": "
|
|
19
|
-
"@almadar/integrations": ">=2.
|
|
16
|
+
"@almadar/server": ">=2.1.5",
|
|
17
|
+
"@almadar/evaluator": ">=2.6.0",
|
|
18
|
+
"@almadar/core": ">=2.9.0",
|
|
19
|
+
"@almadar/integrations": ">=2.3.0",
|
|
20
20
|
"cors": "^2.8.5",
|
|
21
21
|
"dotenv": "^16.4.7",
|
|
22
22
|
"express": "^4.21.2",
|