mirror of
https://github.com/TryGhost/Ghost-Admin.git
synced 2023-12-14 02:33:04 +01:00
d6058dbf27
no issue Keeps component JS backing files and template files in the same directory which avoids hunting across directories when working with components. Also lets you see all components when looking at one directory, whereas previously template-only or js-only components may not have been obvious without looking at both directories. - ran [codemod](https://github.com/ember-codemods/ember-component-template-colocation-migrator/) for app-level components - manually moved in-repo-addon component templates in `lib/koenig-editor` - removed all explicit `layout` imports as JS/template associations are now made at build-time removing the need for them - updated `.embercli` to default to new flat component structure
16 lines
594 B
Handlebars
16 lines
594 B
Handlebars
{{yield (hash
|
|
headerClass=this.headerClass
|
|
headerHeight=this.headerHeight
|
|
isDraggedOver=this.isDraggedOver
|
|
isFullScreen=this.isFullScreen
|
|
droppedFiles=this.droppedFiles
|
|
uploadedImageUrls=this.uploadedImageUrls
|
|
imageMimeTypes=this.imageMimeTypes
|
|
imageExtensions=this.imageExtensions
|
|
toggleFullScreen=(action "toggleFullScreen")
|
|
togglePreview=(action "togglePreview")
|
|
toggleSplitScreen=(action "toggleSplitScreen")
|
|
uploadComplete=(action "uploadComplete")
|
|
uploadCancelled=(action "uploadCancelled")
|
|
uploadImages=(action "uploadImages")
|
|
)}}
|