@almadar/cli-linux-x64 1.11.0 → 1.13.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/almadar +0 -0
- package/package.json +1 -1
- package/shells/almadar-shell/package.json +1 -1
- package/shells/almadar-shell/packages/client/package.json +1 -1
- package/shells/almadar-shell/packages/client/src/App.tsx +2 -3
- package/shells/almadar-shell/packages/client/src/index.css +29 -0
- package/shells/almadar-shell/pnpm-lock.yaml +37 -6
package/almadar
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -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
|
|
65
|
-
|
|
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.
|
|
31
|
-
version: 2.
|
|
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)
|
|
@@ -247,8 +247,8 @@ packages:
|
|
|
247
247
|
'@almadar/std@2.1.1':
|
|
248
248
|
resolution: {integrity: sha512-VL1BetWOMWXAv8+vQzX72+LrXz+CFdhcqJyoQKkBzUDzSX7YAJ0ojUXG1R1bHU5XLHvRTHl4LTZnXxUaNHpI1w==}
|
|
249
249
|
|
|
250
|
-
'@almadar/ui@2.
|
|
251
|
-
resolution: {integrity: sha512-
|
|
250
|
+
'@almadar/ui@2.6.0':
|
|
251
|
+
resolution: {integrity: sha512-o4MS75RjQtc9dF4yog5ZliYq3t1i8nyZUiGilcWCdGGpg2FEwkx/Toe4mEveVsasfFNuootYRQ5uDSWpvTCNxQ==}
|
|
252
252
|
peerDependencies:
|
|
253
253
|
'@react-three/drei': ^9.92.0 || ^10.0.0
|
|
254
254
|
'@react-three/fiber': ^8.15.0
|
|
@@ -3029,6 +3029,23 @@ packages:
|
|
|
3029
3029
|
openai:
|
|
3030
3030
|
optional: true
|
|
3031
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
|
+
|
|
3032
3049
|
leac@0.6.0:
|
|
3033
3050
|
resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==}
|
|
3034
3051
|
|
|
@@ -4739,7 +4756,7 @@ snapshots:
|
|
|
4739
4756
|
'@almadar/core': 2.1.3
|
|
4740
4757
|
'@almadar/operators': 2.0.3
|
|
4741
4758
|
|
|
4742
|
-
'@almadar/ui@2.
|
|
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)':
|
|
4743
4760
|
dependencies:
|
|
4744
4761
|
'@almadar/core': 2.1.3
|
|
4745
4762
|
'@almadar/evaluator': 2.1.1
|
|
@@ -4748,9 +4765,11 @@ snapshots:
|
|
|
4748
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)
|
|
4749
4766
|
'@tanstack/react-query': 5.90.21(react@18.3.1)
|
|
4750
4767
|
clsx: 2.1.1
|
|
4768
|
+
leaflet: 1.9.4
|
|
4751
4769
|
lucide-react: 0.344.0(react@18.3.1)
|
|
4752
4770
|
react: 18.3.1
|
|
4753
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)
|
|
4754
4773
|
react-markdown: 9.1.0(@types/react@18.3.28)(react@18.3.1)
|
|
4755
4774
|
react-router-dom: 7.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
4756
4775
|
react-syntax-highlighter: 16.1.1(react@18.3.1)
|
|
@@ -7789,7 +7808,7 @@ snapshots:
|
|
|
7789
7808
|
'@langchain/core': 1.1.30(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76))
|
|
7790
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)
|
|
7791
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)))
|
|
7792
|
-
langsmith: 0.5.
|
|
7811
|
+
langsmith: 0.5.9(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76))
|
|
7793
7812
|
uuid: 10.0.0
|
|
7794
7813
|
zod: 3.25.76
|
|
7795
7814
|
transitivePeerDependencies:
|
|
@@ -7824,6 +7843,18 @@ snapshots:
|
|
|
7824
7843
|
'@opentelemetry/api': 1.9.0
|
|
7825
7844
|
openai: 6.25.0(ws@8.19.0)(zod@3.25.76)
|
|
7826
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
|
+
|
|
7827
7858
|
leac@0.6.0: {}
|
|
7828
7859
|
|
|
7829
7860
|
leaflet@1.9.4: {}
|