secret-list/item partial removed (#11710)

* secret-list/item partial removed

* remove all partials and I'm sure break many things.

* changing props types and breaking more things

* cleanup

* fix options for backend

* fix transform list item test
This commit is contained in:
Angel Garbarino
2021-06-02 08:59:31 -06:00
committed by GitHub
parent 8d515fec2b
commit f7ac6bb97f
15 changed files with 166 additions and 163 deletions

View File

@@ -19,7 +19,7 @@ module('Integration | Component | transform-list-item', function(hooks) {
this.set('itemPath', 'role/foo');
this.set('itemType', 'role');
this.set('item', item);
await render(hbs`<TransformListItem
await render(hbs`<SecretList::TransformListItem
@item={{item}}
@itemPath={{itemPath}}
@itemType={{itemType}}
@@ -41,7 +41,7 @@ module('Integration | Component | transform-list-item', function(hooks) {
this.set('itemPath', 'template/foo');
this.set('itemType', 'template');
this.set('item', item);
await render(hbs`<TransformListItem
await render(hbs`<SecretList::TransformListItem
@item={{item}}
@itemPath={{itemPath}}
@itemType={{itemType}}
@@ -64,7 +64,7 @@ module('Integration | Component | transform-list-item', function(hooks) {
this.set('itemPath', 'alphabet/foo');
this.set('itemType', 'alphabet');
this.set('item', item);
await render(hbs`<TransformListItem
await render(hbs`<SecretList::TransformListItem
@item={{item}}
@itemPath={{itemPath}}
@itemType={{itemType}}
@@ -87,7 +87,7 @@ module('Integration | Component | transform-list-item', function(hooks) {
this.set('itemPath', 'template/builtin/foo');
this.set('itemType', 'template');
this.set('item', item);
await render(hbs`<TransformListItem
await render(hbs`<SecretList::TransformListItem
@item={{item}}
@itemPath={{itemPath}}
@itemType={{itemType}}
@@ -109,7 +109,7 @@ module('Integration | Component | transform-list-item', function(hooks) {
this.set('itemPath', 'alphabet/builtin/foo');
this.set('itemType', 'alphabet');
this.set('item', item);
await render(hbs`<TransformListItem
await render(hbs`<SecretList::TransformListItem
@item={{item}}
@itemPath={{itemPath}}
@itemType={{itemType}}