diff --git a/addon/components/es-ulist.js b/addon/components/es-ulist.js index c49888d2..0cdf2606 100644 --- a/addon/components/es-ulist.js +++ b/addon/components/es-ulist.js @@ -2,8 +2,17 @@ import Component from '@ember/component'; import layout from '../templates/components/es-ulist'; import { computed } from '@ember/object'; +import { deprecate } from '@ember/application/deprecations'; export default Component.extend({ + init() { + this._super(...arguments); + + deprecate('es-ulist is deprecated and will be removed in the next version of ember-styleguide. If you think this has been done in error please contact the Learning Team in #dev-ember-learning in the Ember Community Discord.', null, { + id: 'styleguide-es-ulist', + until: '4.0.0' + }); + }, layout, classNames: ['es-ulist'], classNameBindings: ['hasBorder:bordered'],