PortableInfoboxBuilder: add support for format

This commit is contained in:
CosmicAlpha 2024-05-11 18:47:09 -06:00
parent 03ea9fcaff
commit c7c3873b5d

View file

@ -127,6 +127,10 @@
placeholder: this.msg( 'nodeparam-label' ),
disabled: true
} );
this.nodeInputFormat = new OO.ui.TextInputWidget( {
placeholder: this.msg( 'nodeparam-format' ),
disabled: true
} );
this.nodeInputDefault = new OO.ui.TextInputWidget( {
placeholder: this.msg( 'nodeparam-default' ),
disabled: true
@ -154,6 +158,12 @@
help: this.msg( 'nodeparamhelp-label', [], true ),
disabled: true
} ).$element,
new OO.ui.FieldLayout( this.nodeInputFormat, {
label: this.msg( 'nodeparam-format' ),
align: 'top',
help: this.msg( 'nodeparamhelp-format', [], true ),
disabled: true
} ).$element,
new OO.ui.FieldLayout( this.nodeInputDefault, {
label: this.msg( 'nodeparam-default' ),
align: 'top',
@ -180,6 +190,7 @@
this.toggleNodeMenuWidget( this.nodeInputSource, supports.source, 'source' );
this.toggleNodeMenuWidget( this.nodeInputLabel, supports.label, 'label' );
this.toggleNodeMenuWidget( this.nodeInputFormat, supports.format, 'format' );
this.toggleNodeMenuWidget( this.nodeInputDefault, supports.default, 'default' );
this.toggleNodeMenuWidget( this.nodeInputValue, supports.value, 'value' );
}