@elderbyte/ngx-starter 19.1.0-beta.17 → 19.1.0-beta.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13984,7 +13984,7 @@ class ElderChipLabelDirective {
13984
13984
  * *
13985
13985
  **************************************************************************/
13986
13986
  this.baseClass = 'elder-chip-label';
13987
- this._appearance = 'md3';
13987
+ this._appearance = 'md3'; // DEPRECATED: has no effect in template
13988
13988
  }
13989
13989
  ngOnInit() {
13990
13990
  this.refreshClasses();
@@ -14032,13 +14032,7 @@ class ElderChipLabelDirective {
14032
14032
  .join(' ');
14033
14033
  }
14034
14034
  buildClasses() {
14035
- const appearance = this._appearance ?? 'legacy';
14036
- switch (appearance) {
14037
- case 'md3':
14038
- return [this.baseClass, 'md3', this.resolveColorClass() ?? 'none'];
14039
- case 'legacy':
14040
- return [this.baseClass, 'legacy', this.resolveColorClass()];
14041
- }
14035
+ return [this.baseClass, this.resolveColorClass() ?? 'none'];
14042
14036
  }
14043
14037
  resolveColorClass() {
14044
14038
  let colorClass;