selector-component.js 636 B

12345678910111213141516
  1. import { Component } from "../core/models/components/component";
  2. import { ComponentOptions } from "../core/models/components/component-options";
  3. import { SelectorDrawer } from "../components/selector-component/drawers/selector-drawer";
  4. import { COMPONENT_TYPE } from "../core/enums/component-type-enum";
  5. export class SelectorComponent extends Component {
  6. constructor() {
  7. const options = new ComponentOptions(
  8. "15d1b49619c946809fdb6922f4d7b657",
  9. "Selector",
  10. "selector",
  11. COMPONENT_TYPE.SELECTOR
  12. );
  13. super(new SelectorDrawer(), options);
  14. }
  15. }
  16. export const selectorComponent = new SelectorComponent();