@tangle-network/agent-app 0.46.6 → 0.46.7
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/dist/studio-react/composer-option-controls.d.ts +7 -2
- package/dist/studio-react/generation-notice.d.ts +3 -4
- package/dist/studio-react/index.js +93 -32
- package/dist/studio-react/index.js.map +1 -1
- package/dist/studio-react/studio-generation-screen.d.ts +8 -0
- package/dist/theme/tokens.css +0 -2
- package/package.json +1 -1
|
@@ -22,6 +22,14 @@
|
|
|
22
22
|
* lets the host navigate; every row of that batch still flows through
|
|
23
23
|
* `onGenerated` so the host's list stays whole.
|
|
24
24
|
*
|
|
25
|
+
* The root bakes in `min-h-full` so the sticky composer dock sits at the bottom
|
|
26
|
+
* of the nearest scroll container. A `min-h-*` utility passed through
|
|
27
|
+
* `className` will not reliably win: equal specificity lets the later-in-sheet
|
|
28
|
+
* `.min-h-full` rule take precedence. Do not make this root its own scroll
|
|
29
|
+
* container through `className`; wrap the screen in a
|
|
30
|
+
* `min-h-0 flex-1 overflow-y-auto` container and let the root fill it instead
|
|
31
|
+
* (issue #465, item 5).
|
|
32
|
+
*
|
|
25
33
|
* Assumes a `StudioToastProvider` and a `StudioPlaybackProvider` above it.
|
|
26
34
|
*/
|
|
27
35
|
import { type JSX } from 'react';
|
package/dist/theme/tokens.css
CHANGED
|
@@ -344,7 +344,6 @@
|
|
|
344
344
|
percentages over a near-black card read as no tint at all. */
|
|
345
345
|
--studio-send-gradient: linear-gradient(135deg, #4f46e5, #5b4ed4);
|
|
346
346
|
--studio-notice-bg: color-mix(in srgb, hsl(var(--primary)) 8%, hsl(var(--card)));
|
|
347
|
-
--studio-notice-border: color-mix(in srgb, hsl(var(--primary)) 28%, hsl(var(--border)));
|
|
348
347
|
}
|
|
349
348
|
|
|
350
349
|
/**
|
|
@@ -440,7 +439,6 @@
|
|
|
440
439
|
stronger, because 8% of a tint over a near-black card is not a tint. */
|
|
441
440
|
--studio-send-gradient: linear-gradient(135deg, #4c3fc5, #7c6cf6);
|
|
442
441
|
--studio-notice-bg: color-mix(in srgb, hsl(var(--primary)) 15%, hsl(var(--card)));
|
|
443
|
-
--studio-notice-border: color-mix(in srgb, hsl(var(--primary)) 40%, hsl(var(--border)));
|
|
444
442
|
}
|
|
445
443
|
|
|
446
444
|
/**
|
package/package.json
CHANGED