@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.
- package/angular-components.scss +5216 -5216
- package/bundles/wizishop-angular-components.umd.js +3 -1
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/wrapper-sidebar/wrapper-sidebar.component.js +4 -2
- package/fesm2015/wizishop-angular-components.js +3 -1
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/wrapper-sidebar/wrapper-sidebar.component.d.ts +1 -0
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.173.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.172.tgz +0 -0
|
@@ -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
|
};
|