@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.
- package/fesm2022/elderbyte-ngx-starter.mjs +2 -8
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/package.json +1 -1
- package/theming/abstracts/_elder-design-tokens.scss +9 -8
- package/theming/base/_elder-m2-legacy-base.scss +17 -17
- package/theming/components/_elder-chip-theme.scss +73 -94
- package/theming/components/_elder-nav-theme.scss +2 -2
- package/theming/components/_legacy-elder-chip-theme.scss +119 -0
|
@@ -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
|
-
|
|
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;
|