@radioactive-labs/plutonium 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/dist/css/plutonium.css +1 -1
- package/src/dist/js/plutonium.js +5 -0
- package/src/dist/js/plutonium.js.map +3 -3
- package/src/dist/js/plutonium.min.js +28 -28
- package/src/dist/js/plutonium.min.js.map +4 -4
- package/src/js/controllers/register_controllers.js +2 -0
- package/src/js/controllers/sidebar_controller.js +3 -0
|
@@ -16,9 +16,11 @@ import ResourceTabListController from "./resource_tab_list_controller.js"
|
|
|
16
16
|
import AttachmentInputController from "./attachment_input_controller.js"
|
|
17
17
|
import AttachmentPreviewController from "./attachment_preview_controller.js"
|
|
18
18
|
import AttachmentPreviewContainerController from "./attachment_preview_container_controller.js"
|
|
19
|
+
import SidebarController from "./sidebar_controller.js"
|
|
19
20
|
|
|
20
21
|
export default function (application) {
|
|
21
22
|
// Register controllers here
|
|
23
|
+
application.register("sidebar", SidebarController)
|
|
22
24
|
application.register("resource-header", ResourceHeaderController)
|
|
23
25
|
application.register("nested-resource-form-fields", NestedResourceFormFieldsController)
|
|
24
26
|
application.register("form", FormController)
|