Skip to content

Commit 1245296

Browse files
chore(addon/components/paper-select): put back into paper-select folder.
1 parent 9e75a84 commit 1245296

30 files changed

+19
-19
lines changed

addon/components/paper-select.hbs renamed to addon/components/paper-select/index.hbs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,26 @@
2424
@calculatePosition={{this.calculatePosition}}
2525
@extra={{hash label=@label}}
2626
@ebdTriggerComponent={{component
27-
'paper-select-ebd-trigger'
27+
'paper-select/ebd-trigger'
2828
label=@label
2929
selected=@selected
3030
required=@required
3131
disabled=@disabled
3232
}}
33-
@triggerComponent='paper-select-eps-trigger'
33+
@triggerComponent='paper-select/eps-trigger'
3434
@triggerClass='{{if this.validation.isInvalid "ng-invalid"}} {{if
3535
this.validation.isTouched
3636
"ng-dirty"
3737
}}'
3838
@ebdContentComponent={{component
39-
'paper-select-ebd-content'
39+
'paper-select/ebd-content'
4040
searchEnabled=@searchEnabled
4141
select=this.publicAPI
4242
}}
43-
@optionsComponent='paper-select-options'
44-
@beforeOptionsComponent='paper-select-search'
45-
@noMatchesMessageComponent='paper-select-no-matches-message'
46-
@searchMessageComponent='paper-select-search-message'
43+
@optionsComponent='paper-select/options'
44+
@beforeOptionsComponent='paper-select/search'
45+
@noMatchesMessageComponent='paper-select/no-matches-message'
46+
@searchMessageComponent='paper-select/search-message'
4747
@onClose={{this.handleClose}}
4848
@onOpen={{this.handleOpen}}
4949
@onFocus={{this.handleFocus}}

addon/components/paper-select-options.hbs renamed to addon/components/paper-select/options.hbs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
{{else}}
3131

32-
<PaperSelectOption
32+
<PaperSelect::Option
3333
class="ember-power-select-option"
3434
aria-selected="{{ember-power-select-is-selected opt @select.selected}}"
3535
aria-disabled={{if opt.disabled "true"}}
@@ -39,7 +39,7 @@
3939
tabindex={{if opt.disabled "-1" "0"}}
4040
selected={{if (ember-power-select-is-selected opt @select.selected) "selected" undefined}}>
4141
{{yield opt @select}}
42-
</PaperSelectOption>
42+
</PaperSelect::Option>
4343

4444
{{/if}}
4545

@@ -76,7 +76,7 @@
7676

7777
{{else}}
7878

79-
<PaperSelectOption
79+
<PaperSelect::Option
8080
class="ember-power-select-option"
8181
aria-selected="{{ember-power-select-is-selected opt @select.selected}}"
8282
aria-disabled={{if opt.disabled "true"}}
@@ -86,7 +86,7 @@
8686
tabindex={{if opt.disabled "-1" "0"}}
8787
selected={{if (ember-power-select-is-selected opt @select.selected) "selected" undefined}}>
8888
{{yield opt @select}}
89-
</PaperSelectOption>
89+
</PaperSelect::Option>
9090

9191
{{/if}}
9292

app/components/paper-select-ebd-content.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/components/paper-select-ebd-trigger.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/components/paper-select-eps-trigger.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/components/paper-select-no-matches-message.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/components/paper-select-option.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/components/paper-select-options.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/components/paper-select-search-message.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/components/paper-select-search.js

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from 'ember-paper/components/paper-select/ebd-content';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from 'ember-paper/components/paper-select/ebd-trigger';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from 'ember-paper/components/paper-select/eps-trigger';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from 'ember-paper/components/paper-select/no-matches-message';

app/components/paper-select/option.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from 'ember-paper/components/paper-select/option';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from 'ember-paper/components/paper-select/options';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from 'ember-paper/components/paper-select/search-message';

app/components/paper-select/search.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from 'ember-paper/components/paper-select/search';

0 commit comments

Comments
 (0)