{#if addProperty}
0
? `width: 100%;`
: `width: calc(100% - ${panelButtonWidth - pannelExtraButtonWidth}px);`}
>
{@render addProperty?.()}
{/if}
(previewSchema ? previewSchema : schema),
(newSchema) => {
schema = newSchema
tick().then(() => dispatch('change', schema))
}
}
{dndType}
{disableDnd}
{onlyMaskPassword}
bind:args
on:click={(e) => {
opened = e.detail
}}
on:reorder={(e) => {
schema = {
...schema,
order: e.detail
}
tick().then(() => dispatch('change', schema))
}}
prettifyHeader={isAppInput}
disabled={!!previewSchema}
{diff}
on:acceptChange
on:rejectChange
on:nestedChange={() => {
dispatch('change', schema)
}}
{shouldDispatchChanges}
bind:isValid
noVariablePicker={noVariablePicker || customUi?.disableVariablePicker === true}
/>
{@render runButton?.()}