[backport cloud/1.37] control widget fixes (#8163)

Manual backport of #8112 and #8160 to `cloud/1.37`

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-8163-backport-cloud-1-37-control-widget-fixes-2ed6d73d3650815cb458e8adc44ad4bc)
by [Unito](https://www.unito.io)

---------

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
AustinMroz
2026-01-19 15:03:31 -08:00
committed by GitHub
parent 05cbccefe0
commit 995906a109
5 changed files with 8 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 58 KiB

View File

@@ -2540,6 +2540,7 @@ export class Subgraph
this.inputNode.configure(data.inputNode) this.inputNode.configure(data.inputNode)
this.outputNode.configure(data.outputNode) this.outputNode.configure(data.outputNode)
for (const node of this.nodes) node.updateComputedDisabled()
} }
override configure( override configure(

View File

@@ -141,6 +141,7 @@ export abstract class BaseWidget<
// @ts-expect-error Prevent naming conflicts with custom nodes. // @ts-expect-error Prevent naming conflicts with custom nodes.
labelBaseline, labelBaseline,
promoted, promoted,
linkedWidgets,
...safeValues ...safeValues
} = widget } = widget

View File

@@ -139,6 +139,9 @@ export function addValueControlWidgets(
'Allows the linked widget to be changed automatically, for example randomizing the noise seed.' 'Allows the linked widget to be changed automatically, for example randomizing the noise seed.'
valueControl[IS_CONTROL_WIDGET] = true valueControl[IS_CONTROL_WIDGET] = true
updateControlWidgetLabel(valueControl) updateControlWidgetLabel(valueControl)
Object.defineProperty(valueControl, 'disabled', {
get: () => targetWidget.computedDisabled
})
const widgets: [IComboWidget, ...IStringWidget[]] = [valueControl] const widgets: [IComboWidget, ...IStringWidget[]] = [valueControl]
const isCombo = isComboWidget(targetWidget) const isCombo = isComboWidget(targetWidget)
@@ -160,6 +163,9 @@ export function addValueControlWidgets(
updateControlWidgetLabel(comboFilter) updateControlWidgetLabel(comboFilter)
comboFilter.tooltip = comboFilter.tooltip =
"Allows for filtering the list of values when changing the value via the control generate mode. Allows for RegEx matches in the format /abc/ to only filter to values containing 'abc'." "Allows for filtering the list of values when changing the value via the control generate mode. Allows for RegEx matches in the format /abc/ to only filter to values containing 'abc'."
Object.defineProperty(comboFilter, 'disabled', {
get: () => targetWidget.computedDisabled
})
widgets.push(comboFilter) widgets.push(comboFilter)
} }