@almadar/cli-linux-arm64 1.9.0 → 1.9.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/almadar CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/cli-linux-arm64",
3
- "version": "1.9.0",
3
+ "version": "1.9.1",
4
4
  "description": "Almadar CLI binary for linux-arm64",
5
5
  "license": "MIT",
6
6
  "repository": { "type": "git", "url": "https://github.com/almadar-io/almadar.git" },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/shell",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "private": true,
5
5
  "description": "Minimal full-stack shell template for Almadar applications",
6
6
  "packageManager": "pnpm@10.30.3",
@@ -13,7 +13,7 @@
13
13
  "test:watch": "vitest"
14
14
  },
15
15
  "dependencies": {
16
- "@almadar/ui": "^2.2.0",
16
+ "@almadar/ui": "^2.6.0",
17
17
  "@almadar/evaluator": "^2.0.0",
18
18
  "@almadar/patterns": "^2.0.0",
19
19
  "@almadar/core": "^2.1.0",
@@ -31,6 +31,8 @@
31
31
  "react-force-graph-2d": "^1.25.5",
32
32
  "@monaco-editor/react": "^4.7.0",
33
33
  "monaco-editor": "^0.52.2",
34
+ "leaflet": "^1.9.4",
35
+ "react-leaflet": "^4.2.1",
34
36
  "lucide-react": "^0.344.0"
35
37
  },
36
38
  "devDependencies": {
@@ -61,9 +61,8 @@ function App() {
61
61
  {/* {{GENERATED_ROUTES}} */}
62
62
  <Route path="/" element={<div>Welcome to Almadar</div>} />
63
63
  </Routes>
64
- {/* Portal slots for modal, drawer, and toast overlays */}
65
- <UISlotComponent slot="modal" portal />
66
- <UISlotComponent slot="drawer" portal />
64
+ {/* Portal slots rendered by compiled trait views via CompiledPortal */}
65
+ {/* Toast notifications (non-overlapping, always safe to render here) */}
67
66
  <UISlotComponent slot="toast" portal />
68
67
  <NotifyListener />
69
68
  </BrowserRouter>
@@ -4,3 +4,32 @@
4
4
  @tailwind base;
5
5
  @tailwind components;
6
6
  @tailwind utilities;
7
+
8
+ /* Page-level layout: padding and max-width for main content area */
9
+ .ui-slot-main {
10
+ padding: 1.5rem 1rem;
11
+ max-width: 80rem;
12
+ margin-left: auto;
13
+ margin-right: auto;
14
+ }
15
+
16
+ @media (min-width: 768px) {
17
+ .ui-slot-main {
18
+ padding: 1.5rem 1.5rem;
19
+ }
20
+ }
21
+
22
+ @media (min-width: 1024px) {
23
+ .ui-slot-main {
24
+ padding: 2rem 2rem;
25
+ }
26
+ }
27
+
28
+ /* Global transition baseline: smooth state changes on interactive elements */
29
+ button,
30
+ a,
31
+ [role="button"],
32
+ [data-entity-row],
33
+ [data-interactive] {
34
+ transition: all var(--transition-normal, 250ms) var(--transition-timing, cubic-bezier(0.4, 0, 0.2, 1));
35
+ }
@@ -27,8 +27,8 @@ importers:
27
27
  specifier: ^2.0.0
28
28
  version: 2.0.1
29
29
  '@almadar/ui':
30
- specifier: ^2.2.0
31
- version: 2.2.0(@react-three/drei@10.7.7(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@types/react@18.3.28)(@types/three@0.183.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@tanstack/react-query@5.90.21(react@18.3.1))(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react-router-dom@7.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(three@0.160.1)
30
+ specifier: ^2.6.0
31
+ version: 2.6.0(@react-three/drei@10.7.7(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@types/react@18.3.28)(@types/three@0.183.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@tanstack/react-query@5.90.21(react@18.3.1))(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react-router-dom@7.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(three@0.160.1)
32
32
  '@monaco-editor/react':
33
33
  specifier: ^4.7.0
34
34
  version: 4.7.0(monaco-editor@0.52.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -38,6 +38,9 @@ importers:
38
38
  firebase:
39
39
  specifier: ^11.4.0
40
40
  version: 11.10.0
41
+ leaflet:
42
+ specifier: ^1.9.4
43
+ version: 1.9.4
41
44
  lucide-react:
42
45
  specifier: ^0.344.0
43
46
  version: 0.344.0(react@18.3.1)
@@ -53,6 +56,9 @@ importers:
53
56
  react-force-graph-2d:
54
57
  specifier: ^1.25.5
55
58
  version: 1.29.1(react@18.3.1)
59
+ react-leaflet:
60
+ specifier: ^4.2.1
61
+ version: 4.2.1(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
56
62
  react-markdown:
57
63
  specifier: ^9.0.1
58
64
  version: 9.1.0(@types/react@18.3.28)(react@18.3.1)
@@ -241,8 +247,8 @@ packages:
241
247
  '@almadar/std@2.1.1':
242
248
  resolution: {integrity: sha512-VL1BetWOMWXAv8+vQzX72+LrXz+CFdhcqJyoQKkBzUDzSX7YAJ0ojUXG1R1bHU5XLHvRTHl4LTZnXxUaNHpI1w==}
243
249
 
244
- '@almadar/ui@2.2.0':
245
- resolution: {integrity: sha512-VtwETFQQqu+vAWCIY7+LttvRH3peN4X2hlZTwjdzRNeTh7Vl/iZAKQHoPaVZLh5x266CzrIAJPdocS7Jf+LMcg==}
250
+ '@almadar/ui@2.6.0':
251
+ resolution: {integrity: sha512-o4MS75RjQtc9dF4yog5ZliYq3t1i8nyZUiGilcWCdGGpg2FEwkx/Toe4mEveVsasfFNuootYRQ5uDSWpvTCNxQ==}
246
252
  peerDependencies:
247
253
  '@react-three/drei': ^9.92.0 || ^10.0.0
248
254
  '@react-three/fiber': ^8.15.0
@@ -1312,6 +1318,13 @@ packages:
1312
1318
  react: ^18.0 || ^19.0 || ^19.0.0-rc
1313
1319
  react-dom: ^18.0 || ^19.0 || ^19.0.0-rc
1314
1320
 
1321
+ '@react-leaflet/core@2.1.0':
1322
+ resolution: {integrity: sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==}
1323
+ peerDependencies:
1324
+ leaflet: ^1.9.0
1325
+ react: ^18.0.0
1326
+ react-dom: ^18.0.0
1327
+
1315
1328
  '@react-three/drei@10.7.7':
1316
1329
  resolution: {integrity: sha512-ff+J5iloR0k4tC++QtD/j9u3w5fzfgFAWDtAGQah9pF2B1YgOq/5JxqY0/aVoQG5r3xSZz0cv5tk2YuBob4xEQ==}
1317
1330
  peerDependencies:
@@ -3016,9 +3029,29 @@ packages:
3016
3029
  openai:
3017
3030
  optional: true
3018
3031
 
3032
+ langsmith@0.5.9:
3033
+ resolution: {integrity: sha512-mT88HlYTz7IZzVJP/OM7D6PAR3kzcbPGjYDJpx64ua9WiJXFqQx6YKewxIIxkVSZCb9I/9TiYvPYfZ4rawOdEg==}
3034
+ peerDependencies:
3035
+ '@opentelemetry/api': '*'
3036
+ '@opentelemetry/exporter-trace-otlp-proto': '*'
3037
+ '@opentelemetry/sdk-trace-base': '*'
3038
+ openai: '*'
3039
+ peerDependenciesMeta:
3040
+ '@opentelemetry/api':
3041
+ optional: true
3042
+ '@opentelemetry/exporter-trace-otlp-proto':
3043
+ optional: true
3044
+ '@opentelemetry/sdk-trace-base':
3045
+ optional: true
3046
+ openai:
3047
+ optional: true
3048
+
3019
3049
  leac@0.6.0:
3020
3050
  resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==}
3021
3051
 
3052
+ leaflet@1.9.4:
3053
+ resolution: {integrity: sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==}
3054
+
3022
3055
  levn@0.4.1:
3023
3056
  resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
3024
3057
  engines: {node: '>= 0.8.0'}
@@ -3678,6 +3711,13 @@ packages:
3678
3711
  peerDependencies:
3679
3712
  react: '>=16.13.1'
3680
3713
 
3714
+ react-leaflet@4.2.1:
3715
+ resolution: {integrity: sha512-p9chkvhcKrWn/H/1FFeVSqLdReGwn2qmiobOQGO3BifX+/vV/39qhY8dGqbdcPh1e6jxh/QHriLXr7a4eLFK4Q==}
3716
+ peerDependencies:
3717
+ leaflet: ^1.9.0
3718
+ react: ^18.0.0
3719
+ react-dom: ^18.0.0
3720
+
3681
3721
  react-markdown@9.1.0:
3682
3722
  resolution: {integrity: sha512-xaijuJB0kzGiUdG7nc2MOMDUDBWPyGAjZtUrow9XxUeua8IqeP+VlIfAZ3bphpcLTnSZXz6z9jcVC/TCwbfgdw==}
3683
3723
  peerDependencies:
@@ -4716,7 +4756,7 @@ snapshots:
4716
4756
  '@almadar/core': 2.1.3
4717
4757
  '@almadar/operators': 2.0.3
4718
4758
 
4719
- '@almadar/ui@2.2.0(@react-three/drei@10.7.7(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@types/react@18.3.28)(@types/three@0.183.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@tanstack/react-query@5.90.21(react@18.3.1))(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react-router-dom@7.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(three@0.160.1)':
4759
+ '@almadar/ui@2.6.0(@react-three/drei@10.7.7(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@types/react@18.3.28)(@types/three@0.183.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@tanstack/react-query@5.90.21(react@18.3.1))(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react-router-dom@7.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(three@0.160.1)':
4720
4760
  dependencies:
4721
4761
  '@almadar/core': 2.1.3
4722
4762
  '@almadar/evaluator': 2.1.1
@@ -4725,9 +4765,11 @@ snapshots:
4725
4765
  '@react-three/fiber': 8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1)
4726
4766
  '@tanstack/react-query': 5.90.21(react@18.3.1)
4727
4767
  clsx: 2.1.1
4768
+ leaflet: 1.9.4
4728
4769
  lucide-react: 0.344.0(react@18.3.1)
4729
4770
  react: 18.3.1
4730
4771
  react-dom: 18.3.1(react@18.3.1)
4772
+ react-leaflet: 4.2.1(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
4731
4773
  react-markdown: 9.1.0(@types/react@18.3.28)(react@18.3.1)
4732
4774
  react-router-dom: 7.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
4733
4775
  react-syntax-highlighter: 16.1.1(react@18.3.1)
@@ -5769,6 +5811,12 @@ snapshots:
5769
5811
  react-dom: 18.3.1(react@18.3.1)
5770
5812
  react-promise-suspense: 0.3.4
5771
5813
 
5814
+ '@react-leaflet/core@2.1.0(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
5815
+ dependencies:
5816
+ leaflet: 1.9.4
5817
+ react: 18.3.1
5818
+ react-dom: 18.3.1(react@18.3.1)
5819
+
5772
5820
  '@react-three/drei@10.7.7(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@types/react@18.3.28)(@types/three@0.183.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1)':
5773
5821
  dependencies:
5774
5822
  '@babel/runtime': 7.28.6
@@ -7760,7 +7808,7 @@ snapshots:
7760
7808
  '@langchain/core': 1.1.30(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76))
7761
7809
  '@langchain/langgraph': 1.2.0(@langchain/core@1.1.30(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(zod@3.25.76)
7762
7810
  '@langchain/langgraph-checkpoint': 1.0.0(@langchain/core@1.1.30(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76)))
7763
- langsmith: 0.5.7(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76))
7811
+ langsmith: 0.5.9(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76))
7764
7812
  uuid: 10.0.0
7765
7813
  zod: 3.25.76
7766
7814
  transitivePeerDependencies:
@@ -7795,8 +7843,22 @@ snapshots:
7795
7843
  '@opentelemetry/api': 1.9.0
7796
7844
  openai: 6.25.0(ws@8.19.0)(zod@3.25.76)
7797
7845
 
7846
+ langsmith@0.5.9(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76)):
7847
+ dependencies:
7848
+ '@types/uuid': 10.0.0
7849
+ chalk: 5.6.2
7850
+ console-table-printer: 2.15.0
7851
+ p-queue: 6.6.2
7852
+ semver: 7.7.4
7853
+ uuid: 10.0.0
7854
+ optionalDependencies:
7855
+ '@opentelemetry/api': 1.9.0
7856
+ openai: 6.25.0(ws@8.19.0)(zod@3.25.76)
7857
+
7798
7858
  leac@0.6.0: {}
7799
7859
 
7860
+ leaflet@1.9.4: {}
7861
+
7800
7862
  levn@0.4.1:
7801
7863
  dependencies:
7802
7864
  prelude-ls: 1.2.1
@@ -8628,6 +8690,13 @@ snapshots:
8628
8690
  jerrypick: 1.1.2
8629
8691
  react: 18.3.1
8630
8692
 
8693
+ react-leaflet@4.2.1(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
8694
+ dependencies:
8695
+ '@react-leaflet/core': 2.1.0(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
8696
+ leaflet: 1.9.4
8697
+ react: 18.3.1
8698
+ react-dom: 18.3.1(react@18.3.1)
8699
+
8631
8700
  react-markdown@9.1.0(@types/react@18.3.28)(react@18.3.1):
8632
8701
  dependencies:
8633
8702
  '@types/hast': 3.0.4