diff --git a/ember-power-select/CHANGELOG.md b/ember-power-select/CHANGELOG.md index 4119ec437..6d27d1f4f 100644 --- a/ember-power-select/CHANGELOG.md +++ b/ember-power-select/CHANGELOG.md @@ -228,6 +228,9 @@ - [BREAKING] All actions starting with `on` (e.g. `onchange` and `onopen`) are now spelled with camelCase (`@onChange` and `@onOpen`) - [BREAKING] @searchEnabled is now false by default +# 2.3.5 +- [BUGFIX] Could not find module ember-compatibility-helpers + # 2.3.4 - [BUGFIX] Add back node 6 in the list of supported engines diff --git a/ember-power-select/src/components/power-select.hbs b/ember-power-select/src/components/power-select.hbs index d055cd31d..7787d2b5c 100644 --- a/ember-power-select/src/components/power-select.hbs +++ b/ember-power-select/src/components/power-select.hbs @@ -83,8 +83,8 @@ @ariaActiveDescendant={{concat publicAPI.uniqueId "-" this.highlightedIndex}} @ariaLabelledBy={{@ariaLabelledBy}} @ariaLabel={{@ariaLabel}} - as |opt term|> - {{yield opt term}} + as |opt select|> + {{yield opt select}} {{/let}} @@ -190,106 +190,4 @@ {{/if}} {{/let}} - -{{!-- - - {{#let (component this.triggerComponent) as |Trigger|}} - - {{yield opt term}} - - {{/let}} - - - {{#let (component this.beforeOptionsComponent) as |BeforeOptions|}} - - {{/let}} - {{#if this.mustShowSearchMessage}} - {{#let (component this.searchMessageComponent) as |SearchMessage|}} - - {{/let}} - {{else if this.mustShowNoMessages}} - {{#if this.noMatchesMessage}} -
    -
  • - {{this.noMatchesMessage}} -
  • -
- {{/if}} - {{else}} - {{#let (component this.optionsComponent) as |Options|}} - - {{yield option term}} - - {{/let}} - {{/if}} - {{#let (component this.afterOptionsComponent) as |AfterOptions|}} - - {{/let}} -
-
--}} + \ No newline at end of file