Repository URL to install this package:
|
Version:
2.4.3 ▾
|
import { Widget, WidgetView } from "./widget";
import { toggle_attribute } from "../../core/dom";
export class ControlView extends WidgetView {
connect_signals() {
super.connect_signals();
const p = this.model.properties;
this.on_change(p.disabled, () => {
for (const el of this.controls()) {
toggle_attribute(el, "disabled", this.model.disabled);
}
});
}
}
ControlView.__name__ = "ControlView";
export class Control extends Widget {
constructor(attrs) {
super(attrs);
}
}
Control.__name__ = "Control";
//# sourceMappingURL=control.js.map