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