Skip to content

multiple depreciations detected in 2.0.1 #110

@nsharrok

Description

@nsharrok

Why am I getting these depreciations?
[email protected] is the version I am using.
I am using Ember 3.28

The checked property path was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.checked}}

The joinedClassNames property was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.joinedClassNames}}

The radioId property was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.radioId}}

The radioClass property path was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.radioClass}}

The autofocus property path was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.autofocus}}

The disabled property path was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.disabled}}

The name property path was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.name}}

The required property path was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.required}}

The tabindex property path was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.tabindex}}

The groupValue property path was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.groupValue}}

The value property path was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.value}}
Transition Plan
1
The ariaLabelledby property path was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.ariaLabelledby}}

The ariaDescribedby property path was used in the ember-radio-button/templates/components/radio-button.hbs template without using this. This fallback behavior has been deprecated, all properties must be looked up on this when used in the template: {{this.ariaDescribedby}}

Here is a snip of the module's template
ember-radio-button/addon/components/radio-button.hbs

  {{radio-button-input
      class=radioClass
      id=radioId
      autofocus=autofocus
      disabled=disabled
      name=name
      required=required
      tabindex=tabindex
      groupValue=groupValue
      value=value
      ariaLabelledby=ariaLabelledby
      ariaDescribedby=ariaDescribedby
      changed=(action "changed")}}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions