@wizishop/angular-components 0.0.172 → 0.0.173

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.
@@ -4204,6 +4204,7 @@
4204
4204
  var WrapperSidebarComponent = /** @class */ (function () {
4205
4205
  function WrapperSidebarComponent() {
4206
4206
  this.reverse = false;
4207
+ this.hideBackground = false;
4207
4208
  }
4208
4209
  WrapperSidebarComponent.prototype.ngOnInit = function () {
4209
4210
  };
@@ -4212,12 +4213,13 @@
4212
4213
  WrapperSidebarComponent.decorators = [
4213
4214
  { type: i0.Component, args: [{
4214
4215
  selector: 'wac-wrapper-sidebar',
4215
- template: "<div class=\"wac-wrapper-sidebar\" [ngClass]=\"{'reverse': reverse}\">\n <div class=\"wac-wrapper-sidebar__left\">\n <ng-content select=\"[sidebar]\"></ng-content>\n </div>\n <div class=\"wac-wrapper-sidebar__right\" [style.backgroundImage]=\"'url(' + backgroundGrey + ')'\" [style.backgroundSize]=\"backgroundWidth\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n"
4216
+ template: "<div class=\"wac-wrapper-sidebar\" [ngClass]=\"{'reverse': reverse}\">\n <div class=\"wac-wrapper-sidebar__left\">\n <ng-content select=\"[sidebar]\"></ng-content>\n </div>\n <div class=\"wac-wrapper-sidebar__right\" [style.backgroundImage]=\"!hideBackground ? 'url(' + backgroundGrey + ')' : ''\" [style.backgroundSize]=\"backgroundWidth\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n"
4216
4217
  },] }
4217
4218
  ];
4218
4219
  WrapperSidebarComponent.ctorParameters = function () { return []; };
4219
4220
  WrapperSidebarComponent.propDecorators = {
4220
4221
  reverse: [{ type: i0.Input }],
4222
+ hideBackground: [{ type: i0.Input }],
4221
4223
  backgroundGrey: [{ type: i0.Input }],
4222
4224
  backgroundWidth: [{ type: i0.Input }]
4223
4225
  };