@elderbyte/ngx-starter 15.3.1 → 15.3.2

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.
@@ -20912,7 +20912,7 @@ class ElderChipLabelDirective {
20912
20912
  * Fields *
20913
20913
  * *
20914
20914
  **************************************************************************/
20915
- this.baseClass = 'elderChipLabel';
20915
+ this.baseClass = 'elder-chip-label';
20916
20916
  this.appearance = 'md3';
20917
20917
  }
20918
20918
  /***************************************************************************
@@ -20929,7 +20929,7 @@ class ElderChipLabelDirective {
20929
20929
  * *
20930
20930
  **************************************************************************/
20931
20931
  buildClassesString() {
20932
- const classes = ['elderChipLabel'];
20932
+ const classes = [this.baseClass];
20933
20933
  if (this.appearance) {
20934
20934
  classes.push(this.getAppearanceClass(this.appearance));
20935
20935
  }
@@ -20958,34 +20958,34 @@ class ElderChipLabelDirective {
20958
20958
  if (state) {
20959
20959
  switch (state) {
20960
20960
  case 'none':
20961
- return 'stateNone';
20961
+ return 'state-none';
20962
20962
  case 'open':
20963
- return 'stateOpen';
20963
+ return 'state-open';
20964
20964
  case 'inProgress':
20965
- return 'stateInProgress';
20965
+ return 'state-in-progress';
20966
20966
  case 'completed':
20967
- return 'stateCompleted';
20967
+ return 'state-completed';
20968
20968
  case 'warn':
20969
- return 'stateWarn';
20969
+ return 'state-warn';
20970
20970
  case 'error':
20971
- return 'stateError';
20971
+ return 'state-error';
20972
20972
  default:
20973
- return 'stateOther';
20973
+ return 'state-other';
20974
20974
  }
20975
20975
  }
20976
20976
  else {
20977
- return 'stateNone';
20977
+ return 'state-none';
20978
20978
  }
20979
20979
  }
20980
20980
  getThemeColorClass(color) {
20981
20981
  if (color) {
20982
20982
  switch (color) {
20983
20983
  case 'primary':
20984
- return 'colorPrimary';
20984
+ return 'color-primary';
20985
20985
  case 'accent':
20986
- return 'colorAccent';
20986
+ return 'color-accent';
20987
20987
  case 'warn':
20988
- return 'colorWarn';
20988
+ return 'color-warn';
20989
20989
  }
20990
20990
  }
20991
20991
  else {