mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
Added a readonly
setting to Input.
This commit is contained in:
parent
02e9690187
commit
8d4b149fba
@ -6,7 +6,7 @@ import { is_any_property, Property } from "../observable/property/Property";
|
|||||||
import "./Input.css";
|
import "./Input.css";
|
||||||
import { WidgetProperty } from "../observable/property/WidgetProperty";
|
import { WidgetProperty } from "../observable/property/WidgetProperty";
|
||||||
|
|
||||||
export type InputOptions = LabelledControlOptions;
|
export type InputOptions = { readonly?: boolean } & LabelledControlOptions;
|
||||||
|
|
||||||
export abstract class Input<T> extends LabelledControl {
|
export abstract class Input<T> extends LabelledControl {
|
||||||
readonly element: HTMLElement;
|
readonly element: HTMLElement;
|
||||||
@ -39,6 +39,12 @@ export abstract class Input<T> extends LabelledControl {
|
|||||||
this._value.set_val(this.get_value(), { silent: false });
|
this._value.set_val(this.get_value(), { silent: false });
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (options) {
|
||||||
|
if (options.readonly) {
|
||||||
|
this.set_attr("readOnly", true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.element.append(this.input_element);
|
this.element.append(this.input_element);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user