Sha256: 1217dd4eb6501ab0c64bb996f7af78e6562a749f4e9f24fcec804396f3353cf9

Contents?: true

Size: 1.13 KB

Versions: 12

Compression:

Stored size: 1.13 KB

Contents

import ContainerController from "./editor/container_controller";
import ItemController from "./editor/item_controller";
import ListController from "./editor/list_controller";
import NewItemController from "./editor/new_item_controller";
import StatusBarController from "./editor/status_bar_controller";
import TableController from "./editor/table_controller";
import TrixController from "./editor/trix_controller";

const Definitions = [
  {
    identifier: "content--editor--container",
    controllerConstructor: ContainerController,
  },
  {
    identifier: "content--editor--item",
    controllerConstructor: ItemController,
  },
  {
    identifier: "content--editor--list",
    controllerConstructor: ListController,
  },
  {
    identifier: "content--editor--new-item",
    controllerConstructor: NewItemController,
  },
  {
    identifier: "content--editor--status-bar",
    controllerConstructor: StatusBarController,
  },
  {
    identifier: "content--editor--table",
    controllerConstructor: TableController,
  },
  {
    identifier: "content--editor--trix",
    controllerConstructor: TrixController,
  },
];

export { Definitions as default };

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
katalyst-content-2.7.1 app/javascript/content/application.js
katalyst-content-2.7.0 app/javascript/content/application.js
katalyst-content-2.6.2 app/javascript/content/application.js
katalyst-content-2.6.1 app/javascript/content/application.js
katalyst-content-2.6.0 app/javascript/content/application.js
katalyst-content-2.5.1 app/javascript/content/application.js
katalyst-content-2.5.0 app/javascript/content/application.js
katalyst-content-2.4.2 app/javascript/content/application.js
katalyst-content-2.4.1 app/javascript/content/application.js
katalyst-content-2.3.2 app/javascript/content/application.js
katalyst-content-2.3.1 app/javascript/content/application.js
katalyst-content-2.3.0 app/javascript/content/application.js