@skyux/indicators 8.0.0-alpha.1 → 8.0.0-alpha.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.
- package/documentation.json +205 -205
- package/esm2020/lib/modules/chevron/chevron.component.mjs +2 -2
- package/esm2020/lib/modules/expansion-indicator/expansion-indicator.component.mjs +2 -2
- package/fesm2015/skyux-indicators.mjs +2 -2
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +2 -2
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/package.json +5 -5
|
@@ -410,7 +410,7 @@ class SkyExpansionIndicatorComponent {
|
|
|
410
410
|
*/
|
|
411
411
|
set direction(value) {
|
|
412
412
|
/* istanbul ignore else */
|
|
413
|
-
if (value
|
|
413
|
+
if (value !== this.directionOrDefault) {
|
|
414
414
|
this.directionOrDefault = value ? value : 'up';
|
|
415
415
|
}
|
|
416
416
|
}
|
|
@@ -460,7 +460,7 @@ class SkyChevronComponent {
|
|
|
460
460
|
*/
|
|
461
461
|
set direction(value) {
|
|
462
462
|
/* istanbul ignore else */
|
|
463
|
-
if (value
|
|
463
|
+
if (value !== this.directionOrDefault) {
|
|
464
464
|
this.directionOrDefault = value ? value : 'up';
|
|
465
465
|
/* istanbul ignore else */
|
|
466
466
|
if (this.directionOrDefault === 'up') {
|