SYNC: AI assistant

This commit is contained in:
SPRINX0\prochazka
2025-12-10 08:12:48 +01:00
committed by Diflow
parent de6acfa1ce
commit a71129df4b
3 changed files with 55 additions and 30 deletions

View File

@@ -4,6 +4,7 @@
export let hideContent = false;
export let fixedWidth = 0;
export let skipDefineWidth = false;
export let flexContainer = false;
export function scrollTop() {
domDiv.scrollTop = 0;
@@ -14,6 +15,7 @@
on:drop
bind:this={domDiv}
class:hideContent
class:flexContainer
class:leftFixedWidth={!fixedWidth && !skipDefineWidth}
data-testid={$$props['data-testid']}
style:width={fixedWidth ? `${fixedWidth}px` : undefined}
@@ -35,4 +37,8 @@
div.hideContent {
visibility: hidden;
}
div.flexContainer {
display: flex;
}
</style>