Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

multiple depreciations detected in 2.0.1 #110

Open
nsharrok opened this issue Jan 5, 2022 · 0 comments
Open

multiple depreciations detected in 2.0.1 #110

nsharrok opened this issue Jan 5, 2022 · 0 comments

Comments

@nsharrok
Copy link

nsharrok commented Jan 5, 2022

Why am I getting these depreciations?
ember-radio-button@2.0.1 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")}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant