@dereekb/dbx-web 5.2.1 → 5.3.0

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.
@@ -15,7 +15,7 @@ import * as i3 from '@angular/material/progress-spinner';
15
15
  import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
16
16
  import * as i3$1 from '@angular/common';
17
17
  import { CommonModule } from '@angular/common';
18
- import { getValueFromGetter, mergeObjects, splitCommaSeparatedStringToSet, modifier, combineMaps, addModifiers, removeModifiers, applyBestFit, isMaybeNot, toReadableError, build, ServerErrorResponse, UnauthorizedServerErrorResponse, maybeModifierMapToFunction } from '@dereekb/util';
18
+ import { getValueFromGetter, mergeObjects, splitCommaSeparatedStringToSet, modifier, combineMaps, addModifiers, removeModifiers, applyBestFit, isMaybeNot, isNotNullOrEmptyString, toReadableError, build, ServerErrorResponse, UnauthorizedServerErrorResponse, maybeModifierMapToFunction } from '@dereekb/util';
19
19
  import * as i3$2 from '@angular/material/progress-bar';
20
20
  import { MatProgressBarModule } from '@angular/material/progress-bar';
21
21
  import * as i6 from '@angular/material/core';
@@ -2656,8 +2656,9 @@ class DbxTwoColumnFullLeftDirective {
2656
2656
  return this._fullLeft.value;
2657
2657
  }
2658
2658
  set fullLeft(fullLeft) {
2659
- if (fullLeft != null && fullLeft !== '') {
2660
- this._fullLeft.next(fullLeft);
2659
+ if (isNotNullOrEmptyString(fullLeft)) {
2660
+ // only respond to boolean values
2661
+ this._fullLeft.next(Boolean(fullLeft));
2661
2662
  }
2662
2663
  }
2663
2664
  ngOnInit() {