@wizishop/angular-components 0.0.211 → 0.0.213
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 +368 -358
- package/bundles/wizishop-angular-components.umd.js +4 -2
- 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 +5 -3
- package/fesm2015/wizishop-angular-components.js +4 -2
- 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.213.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.211.tgz +0 -0
|
@@ -4221,6 +4221,7 @@
|
|
|
4221
4221
|
function WrapperSidebarComponent() {
|
|
4222
4222
|
this.reverse = false;
|
|
4223
4223
|
this.hideBackground = false;
|
|
4224
|
+
this.stickySidebar = false;
|
|
4224
4225
|
}
|
|
4225
4226
|
WrapperSidebarComponent.prototype.ngOnInit = function () {
|
|
4226
4227
|
};
|
|
@@ -4229,7 +4230,7 @@
|
|
|
4229
4230
|
WrapperSidebarComponent.decorators = [
|
|
4230
4231
|
{ type: i0.Component, args: [{
|
|
4231
4232
|
selector: 'wac-wrapper-sidebar',
|
|
4232
|
-
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 && backgroundGrey !== '' ? 'url(' + backgroundGrey + ')' : ''\" [style.backgroundSize]=\"backgroundWidth\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n"
|
|
4233
|
+
template: "<div class=\"wac-wrapper-sidebar\" [ngClass]=\"{'reverse': reverse}\">\n <div class=\"wac-wrapper-sidebar__left\" [ngClass]=\"{'sticky': stickySidebar}\">\n <ng-content select=\"[sidebar]\"></ng-content>\n </div>\n <div class=\"wac-wrapper-sidebar__right\" [style.backgroundImage]=\"!hideBackground && backgroundGrey !== '' ? 'url(' + backgroundGrey + ')' : ''\" [style.backgroundSize]=\"backgroundWidth\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n"
|
|
4233
4234
|
},] }
|
|
4234
4235
|
];
|
|
4235
4236
|
WrapperSidebarComponent.ctorParameters = function () { return []; };
|
|
@@ -4237,7 +4238,8 @@
|
|
|
4237
4238
|
reverse: [{ type: i0.Input }],
|
|
4238
4239
|
hideBackground: [{ type: i0.Input }],
|
|
4239
4240
|
backgroundGrey: [{ type: i0.Input }],
|
|
4240
|
-
backgroundWidth: [{ type: i0.Input }]
|
|
4241
|
+
backgroundWidth: [{ type: i0.Input }],
|
|
4242
|
+
stickySidebar: [{ type: i0.Input }]
|
|
4241
4243
|
};
|
|
4242
4244
|
|
|
4243
4245
|
var BreadcrumbsComponent = /** @class */ (function () {
|