@almadar/cli-linux-arm64 1.12.0 → 1.14.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 +7 -7
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
|
|
@@ -4756,7 +4756,7 @@ snapshots:
|
|
|
4756
4756
|
'@almadar/core': 2.1.3
|
|
4757
4757
|
'@almadar/operators': 2.0.3
|
|
4758
4758
|
|
|
4759
|
-
'@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)':
|
|
4760
4760
|
dependencies:
|
|
4761
4761
|
'@almadar/core': 2.1.3
|
|
4762
4762
|
'@almadar/evaluator': 2.1.1
|
|
@@ -7806,11 +7806,11 @@ snapshots:
|
|
|
7806
7806
|
langchain@1.2.26(@langchain/core@1.1.30(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76)))(@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):
|
|
7807
7807
|
dependencies:
|
|
7808
7808
|
'@langchain/core': 1.1.30(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76))
|
|
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@
|
|
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)
|
|
7810
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)))
|
|
7811
7811
|
langsmith: 0.5.9(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76))
|
|
7812
7812
|
uuid: 10.0.0
|
|
7813
|
-
zod:
|
|
7813
|
+
zod: 3.25.76
|
|
7814
7814
|
transitivePeerDependencies:
|
|
7815
7815
|
- '@opentelemetry/api'
|
|
7816
7816
|
- '@opentelemetry/exporter-trace-otlp-proto'
|