import { view } from "./view"; import { cx_ui } from "./cx-ui.js"; import { selector } from "./selector.js"; import { dictionary } from "./dictionary.js"; export class space extends view { #manager; constructor(manager) { super(); this.#manager = manager; } show() { return cx_ui.push("return", () => { this.#manager.view = new selector(this.#manager); }, (button) => { button.value = new dictionary().get("selector.return"); }); } }