Skip to content
This repository was archived by the owner on Jan 12, 2026. It is now read-only.

Commit 595c7d9

Browse files
Style fixes
1 parent 7335dff commit 595c7d9

File tree

3 files changed

+4
-183
lines changed

3 files changed

+4
-183
lines changed

src/components/controls/collapseToggle.tsx

Lines changed: 0 additions & 43 deletions
This file was deleted.

src/components/controls/collapsibleResizableContainer.tsx

Lines changed: 0 additions & 129 deletions
This file was deleted.

src/components/form/configUIForm.tsx

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ import { FormFooter, FormWrapper, GuideComponent } from '../display';
3030
import { PluginTable } from '../inputs';
3131
import { Sections } from './sections/sections';
3232
import { PluginConfig } from '../../types';
33-
import { CollapsibleResizableContainer } from '../controls/collapsibleResizableContainer';
3433

3534
const FormStepper = React.lazy(() =>
3635
import('../display/formStepper').then((module) => ({
@@ -47,7 +46,7 @@ export interface ConfigUIFormProps {
4746
values: Record<string, any>,
4847
tablesList?: PluginTable[],
4948
) => PluginUiMessagePayload['validation_passed']['values'];
50-
container?: HTMLElement;
49+
container?: HTMLElement | ShadowRoot;
5150
}
5251

5352
/**
@@ -200,7 +199,7 @@ export function ConfigUIForm({ prepareSubmitValues, container }: ConfigUIFormPro
200199
<FormStepper steps={config.steps.map(({ title }) => title)} activeIndex={step} />
201200
</Box>
202201
)}
203-
<Stack direction="row" spacing={3}>
202+
<Stack direction="row" spacing={5} alignItems="flex-start">
204203
<Box
205204
sx={{
206205
flex: '1 1 0',
@@ -250,15 +249,9 @@ export function ConfigUIForm({ prepareSubmitValues, container }: ConfigUIFormPro
250249
</Stack>
251250
</form>
252251
</Box>
253-
<CollapsibleResizableContainer
254-
collapsible={true}
255-
minWidth={360}
256-
width={500}
257-
maxWidth={500}
258-
togglePosition="left"
259-
>
252+
<Box sx={{ width: 500, minWidth: 360, position: 'sticky', top: 10 }}>
260253
<GuideComponent pluginUiMessageHandler={pluginUiMessageHandler} />
261-
</CollapsibleResizableContainer>
254+
</Box>
262255
</Stack>
263256
</FormProvider>
264257
</ThemeProvider>

0 commit comments

Comments
 (0)