@wizishop/angular-components 0.0.222 → 0.0.224
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 +480 -473
- 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/breadcrumbs/breadcrumbs.component.js +4 -2
- package/fesm2015/wizishop-angular-components.js +3 -1
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/breadcrumbs/breadcrumbs.component.d.ts +1 -0
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.224.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.222.tgz +0 -0
|
@@ -4244,6 +4244,7 @@
|
|
|
4244
4244
|
|
|
4245
4245
|
var BreadcrumbsComponent = /** @class */ (function () {
|
|
4246
4246
|
function BreadcrumbsComponent() {
|
|
4247
|
+
this.noResponsive = false;
|
|
4247
4248
|
this.index = 0;
|
|
4248
4249
|
this.indexChange = new i0.EventEmitter();
|
|
4249
4250
|
}
|
|
@@ -4258,12 +4259,13 @@
|
|
|
4258
4259
|
BreadcrumbsComponent.decorators = [
|
|
4259
4260
|
{ type: i0.Component, args: [{
|
|
4260
4261
|
selector: 'wac-breadcrumbs',
|
|
4261
|
-
template: "<div class=\"wac-breadcrumbs\">\n <div class=\"wac-breadcrumbs__wrapper\">\n <div class=\"wac-breadcrumbs__item\" *ngFor=\"let b of breadcrumbs; let i = index;\" [ngClass]=\"{'valid': b.valid, 'current': b['current']}\" (click)=\"valueChanged(i)\">\n <div class=\"round\" [ngClass]=\"{'valid': b.valid, 'current': b['current']}\"><span *ngIf=\"!b.valid\"><span *ngIf=\"i < 9\">0</span>{{ i + 1 }}</span><i class=\"fas fa-check\" *ngIf=\"b.valid\"></i></div>\n <div class=\"name\" [ngClass]=\"{'valid': b.valid, 'current': b['current']}\">{{ b.name }}</div>\n </div>\n </div>\n</div>\n"
|
|
4262
|
+
template: "<div class=\"wac-breadcrumbs\" [ngClass]=\"{'no-responsive': noResponsive}\">\n <div class=\"wac-breadcrumbs__wrapper\">\n <div class=\"wac-breadcrumbs__item\" *ngFor=\"let b of breadcrumbs; let i = index;\" [ngClass]=\"{'valid': b.valid, 'current': b['current']}\" (click)=\"valueChanged(i)\">\n <div class=\"round\" [ngClass]=\"{'valid': b.valid, 'current': b['current']}\"><span *ngIf=\"!b.valid\"><span *ngIf=\"i < 9\">0</span>{{ i + 1 }}</span><i class=\"fas fa-check\" *ngIf=\"b.valid\"></i></div>\n <div class=\"name\" [ngClass]=\"{'valid': b.valid, 'current': b['current']}\">{{ b.name }}</div>\n </div>\n </div>\n</div>\n"
|
|
4262
4263
|
},] }
|
|
4263
4264
|
];
|
|
4264
4265
|
BreadcrumbsComponent.ctorParameters = function () { return []; };
|
|
4265
4266
|
BreadcrumbsComponent.propDecorators = {
|
|
4266
4267
|
breadcrumbs: [{ type: i0.Input }],
|
|
4268
|
+
noResponsive: [{ type: i0.Input }],
|
|
4267
4269
|
indexChange: [{ type: i0.Output }]
|
|
4268
4270
|
};
|
|
4269
4271
|
|