app/javascript/tables/application.js in katalyst-tables-3.3.4 vs app/javascript/tables/application.js in katalyst-tables-3.4.0
- old
+ new
@@ -1,10 +1,11 @@
import OrderableItemController from "./orderable/item_controller";
import OrderableListController from "./orderable/list_controller";
import OrderableFormController from "./orderable/form_controller";
import SelectionFormController from "./selection/form_controller";
import SelectionItemController from "./selection/item_controller";
+import SelectionTableController from "./selection/table_controller";
import QueryController from "./query_controller";
import QueryInputController from "./query_input_controller";
const Definitions = [
{
@@ -24,9 +25,13 @@
controllerConstructor: SelectionFormController,
},
{
identifier: "tables--selection--item",
controllerConstructor: SelectionItemController,
+ },
+ {
+ identifier: "tables--selection--table",
+ controllerConstructor: SelectionTableController,
},
{
identifier: "tables--query",
controllerConstructor: QueryController,
},