Skip to content

Commit

Permalink
chore(addon/components/paper-select): put back into paper-select folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewhartstonge committed Dec 10, 2024
1 parent 9e75a84 commit 1245296
Show file tree
Hide file tree
Showing 30 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,26 @@
@calculatePosition={{this.calculatePosition}}
@extra={{hash label=@label}}
@ebdTriggerComponent={{component
'paper-select-ebd-trigger'
'paper-select/ebd-trigger'
label=@label
selected=@selected
required=@required
disabled=@disabled
}}
@triggerComponent='paper-select-eps-trigger'
@triggerComponent='paper-select/eps-trigger'
@triggerClass='{{if this.validation.isInvalid "ng-invalid"}} {{if
this.validation.isTouched
"ng-dirty"
}}'
@ebdContentComponent={{component
'paper-select-ebd-content'
'paper-select/ebd-content'
searchEnabled=@searchEnabled
select=this.publicAPI
}}
@optionsComponent='paper-select-options'
@beforeOptionsComponent='paper-select-search'
@noMatchesMessageComponent='paper-select-no-matches-message'
@searchMessageComponent='paper-select-search-message'
@optionsComponent='paper-select/options'
@beforeOptionsComponent='paper-select/search'
@noMatchesMessageComponent='paper-select/no-matches-message'
@searchMessageComponent='paper-select/search-message'
@onClose={{this.handleClose}}
@onOpen={{this.handleOpen}}
@onFocus={{this.handleFocus}}
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

{{else}}

<PaperSelectOption
<PaperSelect::Option
class="ember-power-select-option"
aria-selected="{{ember-power-select-is-selected opt @select.selected}}"
aria-disabled={{if opt.disabled "true"}}
Expand All @@ -39,7 +39,7 @@
tabindex={{if opt.disabled "-1" "0"}}
selected={{if (ember-power-select-is-selected opt @select.selected) "selected" undefined}}>
{{yield opt @select}}
</PaperSelectOption>
</PaperSelect::Option>

{{/if}}

Expand Down Expand Up @@ -76,7 +76,7 @@

{{else}}

<PaperSelectOption
<PaperSelect::Option
class="ember-power-select-option"
aria-selected="{{ember-power-select-is-selected opt @select.selected}}"
aria-disabled={{if opt.disabled "true"}}
Expand All @@ -86,7 +86,7 @@
tabindex={{if opt.disabled "-1" "0"}}
selected={{if (ember-power-select-is-selected opt @select.selected) "selected" undefined}}>
{{yield opt @select}}
</PaperSelectOption>
</PaperSelect::Option>

{{/if}}

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion app/components/paper-select-ebd-content.js

This file was deleted.

1 change: 0 additions & 1 deletion app/components/paper-select-ebd-trigger.js

This file was deleted.

1 change: 0 additions & 1 deletion app/components/paper-select-eps-trigger.js

This file was deleted.

1 change: 0 additions & 1 deletion app/components/paper-select-no-matches-message.js

This file was deleted.

1 change: 0 additions & 1 deletion app/components/paper-select-option.js

This file was deleted.

1 change: 0 additions & 1 deletion app/components/paper-select-options.js

This file was deleted.

1 change: 0 additions & 1 deletion app/components/paper-select-search-message.js

This file was deleted.

1 change: 0 additions & 1 deletion app/components/paper-select-search.js

This file was deleted.

1 change: 1 addition & 0 deletions app/components/paper-select/ebd-content.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from 'ember-paper/components/paper-select/ebd-content';
1 change: 1 addition & 0 deletions app/components/paper-select/ebd-trigger.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from 'ember-paper/components/paper-select/ebd-trigger';
1 change: 1 addition & 0 deletions app/components/paper-select/eps-trigger.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from 'ember-paper/components/paper-select/eps-trigger';
1 change: 1 addition & 0 deletions app/components/paper-select/no-matches-message.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from 'ember-paper/components/paper-select/no-matches-message';
1 change: 1 addition & 0 deletions app/components/paper-select/option.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from 'ember-paper/components/paper-select/option';
1 change: 1 addition & 0 deletions app/components/paper-select/options.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from 'ember-paper/components/paper-select/options';
1 change: 1 addition & 0 deletions app/components/paper-select/search-message.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from 'ember-paper/components/paper-select/search-message';
1 change: 1 addition & 0 deletions app/components/paper-select/search.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from 'ember-paper/components/paper-select/search';

0 comments on commit 1245296

Please sign in to comment.