@wizishop/angular-components 15.1.42 → 15.1.46
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 +6 -0
- package/esm2020/lib/components/tab/tab.component.mjs +3 -3
- package/fesm2015/wizishop-angular-components.mjs +2 -2
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +2 -2
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/tab/tab.component.d.ts +1 -0
- package/package.json +1 -1
- package/wizishop-angular-components-15.1.46.tgz +0 -0
- package/wizishop-angular-components-15.1.42.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -6758,6 +6758,7 @@ wac-optional-disable-container {
|
|
|
6758
6758
|
position: relative;
|
|
6759
6759
|
font-size: 14px;
|
|
6760
6760
|
line-height: 25px;
|
|
6761
|
+
padding-bottom: 7px;
|
|
6761
6762
|
color: $wac-secondary-color;
|
|
6762
6763
|
|
|
6763
6764
|
&:hover {
|
|
@@ -6780,8 +6781,13 @@ wac-optional-disable-container {
|
|
|
6780
6781
|
transition: width 0.3s ease-in-out, color 0.3s ease-in-out;
|
|
6781
6782
|
}
|
|
6782
6783
|
|
|
6784
|
+
&--right {
|
|
6785
|
+
margin-left: auto;
|
|
6786
|
+
}
|
|
6787
|
+
|
|
6783
6788
|
&--selected {
|
|
6784
6789
|
color: $wac-main-text;
|
|
6790
|
+
font-weight: 500;
|
|
6785
6791
|
|
|
6786
6792
|
&:after {
|
|
6787
6793
|
width: 100%;
|
|
@@ -19,10 +19,10 @@ export class TabComponent {
|
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
TabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: TabComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
22
|
-
TabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: TabComponent, isStandalone: true, selector: "wac-tab", inputs: { underline: "underline", button: "button", marginBottom: "marginBottom", tabs: "tabs", index: "index" }, outputs: { indexChange: "indexChange" }, ngImport: i0, template: "<div class=\"wac-tab\" [ngClass]=\"{'wac-tab--underline': underline, 'wac-tab--button' : button}\">\n <div class=\"wac-tab__wrapper\" [ngStyle]=\"{'margin-bottom': marginBottom}\">\n <a\n *ngFor=\"let tab of tabs\"\n class=\"wac-tab__wrapper__tab\"\n [ngClass]=\"index === tab.index
|
|
22
|
+
TabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: TabComponent, isStandalone: true, selector: "wac-tab", inputs: { underline: "underline", button: "button", marginBottom: "marginBottom", tabs: "tabs", index: "index" }, outputs: { indexChange: "indexChange" }, ngImport: i0, template: "<div class=\"wac-tab\" [ngClass]=\"{'wac-tab--underline': underline, 'wac-tab--button' : button}\">\n <div class=\"wac-tab__wrapper\" [ngStyle]=\"{'margin-bottom': marginBottom}\">\n <a\n *ngFor=\"let tab of tabs\"\n class=\"wac-tab__wrapper__tab\"\n [ngClass]=\"{'wac-tab__wrapper__tab--selected': index === tab.index, 'wac-tab__wrapper__tab--right': tab.right}\"\n (click)=\"valueChanged(tab.index)\"\n [innerHTML]=\"tab.label\"\n >\n </a>\n </div>\n</div>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
23
23
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: TabComponent, decorators: [{
|
|
24
24
|
type: Component,
|
|
25
|
-
args: [{ selector: 'wac-tab', encapsulation: ViewEncapsulation.None, standalone: true, imports: [CommonModule], template: "<div class=\"wac-tab\" [ngClass]=\"{'wac-tab--underline': underline, 'wac-tab--button' : button}\">\n <div class=\"wac-tab__wrapper\" [ngStyle]=\"{'margin-bottom': marginBottom}\">\n <a\n *ngFor=\"let tab of tabs\"\n class=\"wac-tab__wrapper__tab\"\n [ngClass]=\"index === tab.index
|
|
25
|
+
args: [{ selector: 'wac-tab', encapsulation: ViewEncapsulation.None, standalone: true, imports: [CommonModule], template: "<div class=\"wac-tab\" [ngClass]=\"{'wac-tab--underline': underline, 'wac-tab--button' : button}\">\n <div class=\"wac-tab__wrapper\" [ngStyle]=\"{'margin-bottom': marginBottom}\">\n <a\n *ngFor=\"let tab of tabs\"\n class=\"wac-tab__wrapper__tab\"\n [ngClass]=\"{'wac-tab__wrapper__tab--selected': index === tab.index, 'wac-tab__wrapper__tab--right': tab.right}\"\n (click)=\"valueChanged(tab.index)\"\n [innerHTML]=\"tab.label\"\n >\n </a>\n </div>\n</div>\n" }]
|
|
26
26
|
}], ctorParameters: function () { return []; }, propDecorators: { underline: [{
|
|
27
27
|
type: Input
|
|
28
28
|
}], button: [{
|
|
@@ -36,4 +36,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
36
36
|
}], indexChange: [{
|
|
37
37
|
type: Output
|
|
38
38
|
}] } });
|
|
39
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
39
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFiLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvdGFiL3RhYi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL3RhYi90YWIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7OztBQVcxRixNQUFNLE9BQU8sWUFBWTtJQW9CdkI7UUFuQkEsNEJBQTRCO1FBQzVCLHlCQUF5QjtRQUd6QixjQUFTLEdBQUcsS0FBSyxDQUFDO1FBR2xCLFdBQU0sR0FBRyxLQUFLLENBQUM7UUFHZixpQkFBWSxHQUFHLE1BQU0sQ0FBQztRQUd0QixTQUFJLEdBQVUsRUFBRSxDQUFDO1FBRVIsVUFBSyxHQUFXLENBQUMsQ0FBQztRQUVqQixnQkFBVyxHQUFHLElBQUksWUFBWSxFQUFVLENBQUM7SUFFcEMsQ0FBQztJQUVoQixZQUFZLENBQUMsQ0FBQztRQUNaLElBQUksQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDO1FBQ2YsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ3BDLENBQUM7O3lHQXpCVSxZQUFZOzZGQUFaLFlBQVksOE5DWnpCLGtmQVlBLDJDREZZLFlBQVk7MkZBRVgsWUFBWTtrQkFQeEIsU0FBUzsrQkFDRSxTQUFTLGlCQUVKLGlCQUFpQixDQUFDLElBQUksY0FDekIsSUFBSSxXQUNQLENBQUMsWUFBWSxDQUFDOzBFQU92QixTQUFTO3NCQURSLEtBQUs7Z0JBSU4sTUFBTTtzQkFETCxLQUFLO2dCQUlOLFlBQVk7c0JBRFgsS0FBSztnQkFJTixJQUFJO3NCQURILEtBQUs7Z0JBR0csS0FBSztzQkFBYixLQUFLO2dCQUVJLFdBQVc7c0JBQXBCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPdXRwdXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmV4cG9ydCB0eXBlIFRhYiA9IHtsYWJlbDpzdHJpbmcsIGluZGV4OiBudW1iZXIsIHJpZ2h0PzogYm9vbGVhbn07XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3dhYy10YWInLFxuICB0ZW1wbGF0ZVVybDogJy4vdGFiLmNvbXBvbmVudC5odG1sJyxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV1cbn0pXG5leHBvcnQgY2xhc3MgVGFiQ29tcG9uZW50IHtcbiAgLy8gVE9ETyBpbXBsZW1lbnQgbmctY29udGVudFxuICAvLyBUT0RPIGltcGxlbWVudCBuZ01vZGVsXG5cbiAgQElucHV0KClcbiAgdW5kZXJsaW5lID0gZmFsc2U7XG5cbiAgQElucHV0KClcbiAgYnV0dG9uID0gZmFsc2U7XG5cbiAgQElucHV0KClcbiAgbWFyZ2luQm90dG9tID0gJzMwcHgnO1xuXG4gIEBJbnB1dCgpXG4gIHRhYnM6IFRhYltdID0gW107XG5cbiAgQElucHV0KCkgaW5kZXg6IG51bWJlciA9IDA7XG5cbiAgQE91dHB1dCgpIGluZGV4Q2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcjxudW1iZXI+KCk7XG5cbiAgY29uc3RydWN0b3IoKSB7fVxuXG4gIHZhbHVlQ2hhbmdlZChpKSB7XG4gICAgdGhpcy5pbmRleCA9IGk7XG4gICAgdGhpcy5pbmRleENoYW5nZS5lbWl0KHRoaXMuaW5kZXgpO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwid2FjLXRhYlwiIFtuZ0NsYXNzXT1cInsnd2FjLXRhYi0tdW5kZXJsaW5lJzogdW5kZXJsaW5lLCAnd2FjLXRhYi0tYnV0dG9uJyA6IGJ1dHRvbn1cIj5cbiAgPGRpdiBjbGFzcz1cIndhYy10YWJfX3dyYXBwZXJcIiBbbmdTdHlsZV09XCJ7J21hcmdpbi1ib3R0b20nOiBtYXJnaW5Cb3R0b219XCI+XG4gICAgPGFcbiAgICAgICpuZ0Zvcj1cImxldCB0YWIgb2YgdGFic1wiXG4gICAgICBjbGFzcz1cIndhYy10YWJfX3dyYXBwZXJfX3RhYlwiXG4gICAgICBbbmdDbGFzc109XCJ7J3dhYy10YWJfX3dyYXBwZXJfX3RhYi0tc2VsZWN0ZWQnOiBpbmRleCA9PT0gdGFiLmluZGV4LCAnd2FjLXRhYl9fd3JhcHBlcl9fdGFiLS1yaWdodCc6IHRhYi5yaWdodH1cIlxuICAgICAgKGNsaWNrKT1cInZhbHVlQ2hhbmdlZCh0YWIuaW5kZXgpXCJcbiAgICAgIFtpbm5lckhUTUxdPVwidGFiLmxhYmVsXCJcbiAgICA+XG4gICAgPC9hPlxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
|
|
@@ -1989,10 +1989,10 @@ class TabComponent {
|
|
|
1989
1989
|
}
|
|
1990
1990
|
}
|
|
1991
1991
|
TabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: TabComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1992
|
-
TabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: TabComponent, isStandalone: true, selector: "wac-tab", inputs: { underline: "underline", button: "button", marginBottom: "marginBottom", tabs: "tabs", index: "index" }, outputs: { indexChange: "indexChange" }, ngImport: i0, template: "<div class=\"wac-tab\" [ngClass]=\"{'wac-tab--underline': underline, 'wac-tab--button' : button}\">\n <div class=\"wac-tab__wrapper\" [ngStyle]=\"{'margin-bottom': marginBottom}\">\n <a\n *ngFor=\"let tab of tabs\"\n class=\"wac-tab__wrapper__tab\"\n [ngClass]=\"index === tab.index
|
|
1992
|
+
TabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: TabComponent, isStandalone: true, selector: "wac-tab", inputs: { underline: "underline", button: "button", marginBottom: "marginBottom", tabs: "tabs", index: "index" }, outputs: { indexChange: "indexChange" }, ngImport: i0, template: "<div class=\"wac-tab\" [ngClass]=\"{'wac-tab--underline': underline, 'wac-tab--button' : button}\">\n <div class=\"wac-tab__wrapper\" [ngStyle]=\"{'margin-bottom': marginBottom}\">\n <a\n *ngFor=\"let tab of tabs\"\n class=\"wac-tab__wrapper__tab\"\n [ngClass]=\"{'wac-tab__wrapper__tab--selected': index === tab.index, 'wac-tab__wrapper__tab--right': tab.right}\"\n (click)=\"valueChanged(tab.index)\"\n [innerHTML]=\"tab.label\"\n >\n </a>\n </div>\n</div>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
1993
1993
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: TabComponent, decorators: [{
|
|
1994
1994
|
type: Component,
|
|
1995
|
-
args: [{ selector: 'wac-tab', encapsulation: ViewEncapsulation.None, standalone: true, imports: [CommonModule], template: "<div class=\"wac-tab\" [ngClass]=\"{'wac-tab--underline': underline, 'wac-tab--button' : button}\">\n <div class=\"wac-tab__wrapper\" [ngStyle]=\"{'margin-bottom': marginBottom}\">\n <a\n *ngFor=\"let tab of tabs\"\n class=\"wac-tab__wrapper__tab\"\n [ngClass]=\"index === tab.index
|
|
1995
|
+
args: [{ selector: 'wac-tab', encapsulation: ViewEncapsulation.None, standalone: true, imports: [CommonModule], template: "<div class=\"wac-tab\" [ngClass]=\"{'wac-tab--underline': underline, 'wac-tab--button' : button}\">\n <div class=\"wac-tab__wrapper\" [ngStyle]=\"{'margin-bottom': marginBottom}\">\n <a\n *ngFor=\"let tab of tabs\"\n class=\"wac-tab__wrapper__tab\"\n [ngClass]=\"{'wac-tab__wrapper__tab--selected': index === tab.index, 'wac-tab__wrapper__tab--right': tab.right}\"\n (click)=\"valueChanged(tab.index)\"\n [innerHTML]=\"tab.label\"\n >\n </a>\n </div>\n</div>\n" }]
|
|
1996
1996
|
}], ctorParameters: function () { return []; }, propDecorators: { underline: [{
|
|
1997
1997
|
type: Input
|
|
1998
1998
|
}], button: [{
|