@wizishop/angular-components 15.1.35 → 15.1.37
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 +94 -25
- package/esm2020/lib/components/row/row.component.mjs +6 -3
- package/fesm2015/wizishop-angular-components.mjs +5 -2
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +5 -2
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/row/row.component.d.ts +2 -1
- package/package.json +1 -1
- package/wizishop-angular-components-15.1.37.tgz +0 -0
- package/wizishop-angular-components-15.1.35.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -5707,14 +5707,83 @@ wac-optional-disable-container {
|
|
|
5707
5707
|
border: 1px solid $wac-border-form;
|
|
5708
5708
|
}
|
|
5709
5709
|
|
|
5710
|
+
|
|
5711
|
+
|
|
5710
5712
|
/*
|
|
5711
|
-
* Class for position
|
|
5713
|
+
* Class for position column
|
|
5712
5714
|
*/
|
|
5713
5715
|
|
|
5714
5716
|
&.direction-column {
|
|
5715
5717
|
flex-direction: column!important;
|
|
5718
|
+
&.top-middle {
|
|
5719
|
+
justify-content: flex-start;
|
|
5720
|
+
align-items: center;
|
|
5721
|
+
> * {
|
|
5722
|
+
width: auto!important;
|
|
5723
|
+
}
|
|
5724
|
+
}
|
|
5725
|
+
&.top-right {
|
|
5726
|
+
justify-content: flex-start;
|
|
5727
|
+
align-items: flex-end;
|
|
5728
|
+
> * {
|
|
5729
|
+
width: auto!important;
|
|
5730
|
+
}
|
|
5731
|
+
}
|
|
5732
|
+
&.middle-left {
|
|
5733
|
+
justify-content: center;
|
|
5734
|
+
align-items: flex-start;
|
|
5735
|
+
> * {
|
|
5736
|
+
width: auto!important;
|
|
5737
|
+
}
|
|
5738
|
+
}
|
|
5739
|
+
&.middle-right {
|
|
5740
|
+
justify-content: center;
|
|
5741
|
+
align-items: flex-end;
|
|
5742
|
+
> * {
|
|
5743
|
+
width: auto!important;
|
|
5744
|
+
}
|
|
5745
|
+
}
|
|
5746
|
+
&.bottom-left {
|
|
5747
|
+
justify-content: flex-end;
|
|
5748
|
+
align-items: flex-start;
|
|
5749
|
+
> * {
|
|
5750
|
+
width: auto!important;
|
|
5751
|
+
}
|
|
5752
|
+
}
|
|
5753
|
+
&.bottom-middle {
|
|
5754
|
+
justify-content: flex-end;
|
|
5755
|
+
align-items: center;
|
|
5756
|
+
> * {
|
|
5757
|
+
width: auto!important;
|
|
5758
|
+
}
|
|
5759
|
+
}
|
|
5760
|
+
&.stretch-left {
|
|
5761
|
+
justify-content: stretch;
|
|
5762
|
+
align-items: flex-start;
|
|
5763
|
+
> * {
|
|
5764
|
+
width: auto!important;
|
|
5765
|
+
}
|
|
5766
|
+
}
|
|
5767
|
+
&.stretch-middle {
|
|
5768
|
+
justify-content: stretch;
|
|
5769
|
+
align-items: center;
|
|
5770
|
+
> * {
|
|
5771
|
+
width: auto!important;
|
|
5772
|
+
}
|
|
5773
|
+
}
|
|
5774
|
+
&.stretch-right {
|
|
5775
|
+
justify-content: stretch;
|
|
5776
|
+
align-items: flex-end;
|
|
5777
|
+
> * {
|
|
5778
|
+
width: auto!important;
|
|
5779
|
+
}
|
|
5780
|
+
}
|
|
5716
5781
|
}
|
|
5717
5782
|
|
|
5783
|
+
/*
|
|
5784
|
+
* Class for position
|
|
5785
|
+
*/
|
|
5786
|
+
|
|
5718
5787
|
&.top-left {
|
|
5719
5788
|
justify-content: flex-start;
|
|
5720
5789
|
align-items: flex-start;
|
|
@@ -7237,6 +7306,30 @@ wac-optional-disable-container {
|
|
|
7237
7306
|
margin: inherit;
|
|
7238
7307
|
}
|
|
7239
7308
|
}
|
|
7309
|
+
.wac-token-check {
|
|
7310
|
+
display: inline-block;
|
|
7311
|
+
position: relative;
|
|
7312
|
+
padding: 11px 20px;
|
|
7313
|
+
border-style: solid;
|
|
7314
|
+
border-width: 1px;
|
|
7315
|
+
border-radius: 3px;
|
|
7316
|
+
box-sizing: border-box;
|
|
7317
|
+
border-color: $wac-border-light;
|
|
7318
|
+
font-size: 14px;
|
|
7319
|
+
line-height: 16px;
|
|
7320
|
+
font-weight: 400;
|
|
7321
|
+
> span:nth-child(2){
|
|
7322
|
+
font-weight: 600;
|
|
7323
|
+
}
|
|
7324
|
+
> strong {
|
|
7325
|
+
font-weight: 400;
|
|
7326
|
+
}
|
|
7327
|
+
> span {
|
|
7328
|
+
&.warning {
|
|
7329
|
+
color: $wac-primary-button;
|
|
7330
|
+
}
|
|
7331
|
+
}
|
|
7332
|
+
}
|
|
7240
7333
|
.wac-text-area {
|
|
7241
7334
|
|
|
7242
7335
|
::-webkit-input-placeholder {
|
|
@@ -7388,30 +7481,6 @@ wac-optional-disable-container {
|
|
|
7388
7481
|
}
|
|
7389
7482
|
}
|
|
7390
7483
|
}
|
|
7391
|
-
.wac-token-check {
|
|
7392
|
-
display: inline-block;
|
|
7393
|
-
position: relative;
|
|
7394
|
-
padding: 11px 20px;
|
|
7395
|
-
border-style: solid;
|
|
7396
|
-
border-width: 1px;
|
|
7397
|
-
border-radius: 3px;
|
|
7398
|
-
box-sizing: border-box;
|
|
7399
|
-
border-color: $wac-border-light;
|
|
7400
|
-
font-size: 14px;
|
|
7401
|
-
line-height: 16px;
|
|
7402
|
-
font-weight: 400;
|
|
7403
|
-
> span:nth-child(2){
|
|
7404
|
-
font-weight: 600;
|
|
7405
|
-
}
|
|
7406
|
-
> strong {
|
|
7407
|
-
font-weight: 400;
|
|
7408
|
-
}
|
|
7409
|
-
> span {
|
|
7410
|
-
&.warning {
|
|
7411
|
-
color: $wac-primary-button;
|
|
7412
|
-
}
|
|
7413
|
-
}
|
|
7414
|
-
}
|
|
7415
7484
|
span.wac-tooltip {
|
|
7416
7485
|
position: relative;
|
|
7417
7486
|
padding: 0.5rem;
|
|
@@ -13,6 +13,7 @@ export class RowComponent {
|
|
|
13
13
|
this.addWacBlock = false;
|
|
14
14
|
this.lineDisplayContent = false;
|
|
15
15
|
this.border = false;
|
|
16
|
+
this.padding = '';
|
|
16
17
|
this.halfMarginChild = '';
|
|
17
18
|
this.nbChildsClass = '';
|
|
18
19
|
}
|
|
@@ -70,10 +71,10 @@ export class RowComponent {
|
|
|
70
71
|
}
|
|
71
72
|
}
|
|
72
73
|
RowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: RowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
73
|
-
RowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: RowComponent, selector: "wac-row", inputs: { position: "position", width: "width", height: "height", responsiveAuto: "responsiveAuto", childrensWidthAuto: "childrensWidthAuto", visibility: "visibility", marginChild: "marginChild", addWacBlock: "addWacBlock", lineDisplayContent: "lineDisplayContent", border: "border" }, host: { listeners: { "window:resize": "onResize($event)" } }, viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true }], ngImport: i0, template: "<div [ngStyle]=\"{'transform': (childs > 1 ? 'translateX(-' + halfMarginChild + ')' : 'wrong'), 'width': (childs > 1 ? 'calc(100% + ' + marginChild + ')' : 'wrong')}\" class=\"wac-row {{ addWacBlock ? 'white-block' : '' }} {{ lineDisplayContent ? 'direction-column' : '' }} {{ border ? 'with-border' : '' }} {{ childrensWidthAuto ? 'childrens-width-auto' : '' }} {{ position ? position : '' }} {{ visibility ? visibility : '' }} {{ responsiveClass ? responsiveClass : '' }} {{nbChildsClass}} {{classWidth}}\" #container [ngClass]=\"{\n 'multiple-child': childs > 3,\n 'five-or-more-child': childs > 4,\n 'alone': childs === 1\n}\" [id]=\"id\">\n <ng-content></ng-content>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
74
|
+
RowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: RowComponent, selector: "wac-row", inputs: { position: "position", width: "width", height: "height", responsiveAuto: "responsiveAuto", childrensWidthAuto: "childrensWidthAuto", visibility: "visibility", marginChild: "marginChild", addWacBlock: "addWacBlock", lineDisplayContent: "lineDisplayContent", border: "border", padding: "padding" }, host: { listeners: { "window:resize": "onResize($event)" } }, viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true }], ngImport: i0, template: "<div [ngStyle]=\"{'padding': padding,'transform': (childs > 1 ? 'translateX(-' + halfMarginChild + ')' : 'wrong'), 'width': (childs > 1 ? 'calc(100% + ' + marginChild + ')' : 'wrong')}\" class=\"wac-row {{ addWacBlock ? 'white-block' : '' }} {{ lineDisplayContent ? 'direction-column' : '' }} {{ border ? 'with-border' : '' }} {{ childrensWidthAuto ? 'childrens-width-auto' : '' }} {{ position ? position : '' }} {{ visibility ? visibility : '' }} {{ responsiveClass ? responsiveClass : '' }} {{nbChildsClass}} {{classWidth}}\" #container [ngClass]=\"{\n 'multiple-child': childs > 3,\n 'five-or-more-child': childs > 4,\n 'alone': childs === 1\n}\" [id]=\"id\">\n <ng-content></ng-content>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
74
75
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: RowComponent, decorators: [{
|
|
75
76
|
type: Component,
|
|
76
|
-
args: [{ selector: 'wac-row', encapsulation: ViewEncapsulation.None, template: "<div [ngStyle]=\"{'transform': (childs > 1 ? 'translateX(-' + halfMarginChild + ')' : 'wrong'), 'width': (childs > 1 ? 'calc(100% + ' + marginChild + ')' : 'wrong')}\" class=\"wac-row {{ addWacBlock ? 'white-block' : '' }} {{ lineDisplayContent ? 'direction-column' : '' }} {{ border ? 'with-border' : '' }} {{ childrensWidthAuto ? 'childrens-width-auto' : '' }} {{ position ? position : '' }} {{ visibility ? visibility : '' }} {{ responsiveClass ? responsiveClass : '' }} {{nbChildsClass}} {{classWidth}}\" #container [ngClass]=\"{\n 'multiple-child': childs > 3,\n 'five-or-more-child': childs > 4,\n 'alone': childs === 1\n}\" [id]=\"id\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
77
|
+
args: [{ selector: 'wac-row', encapsulation: ViewEncapsulation.None, template: "<div [ngStyle]=\"{'padding': padding,'transform': (childs > 1 ? 'translateX(-' + halfMarginChild + ')' : 'wrong'), 'width': (childs > 1 ? 'calc(100% + ' + marginChild + ')' : 'wrong')}\" class=\"wac-row {{ addWacBlock ? 'white-block' : '' }} {{ lineDisplayContent ? 'direction-column' : '' }} {{ border ? 'with-border' : '' }} {{ childrensWidthAuto ? 'childrens-width-auto' : '' }} {{ position ? position : '' }} {{ visibility ? visibility : '' }} {{ responsiveClass ? responsiveClass : '' }} {{nbChildsClass}} {{classWidth}}\" #container [ngClass]=\"{\n 'multiple-child': childs > 3,\n 'five-or-more-child': childs > 4,\n 'alone': childs === 1\n}\" [id]=\"id\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
77
78
|
}], propDecorators: { position: [{
|
|
78
79
|
type: Input
|
|
79
80
|
}], width: [{
|
|
@@ -94,6 +95,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
94
95
|
type: Input
|
|
95
96
|
}], border: [{
|
|
96
97
|
type: Input
|
|
98
|
+
}], padding: [{
|
|
99
|
+
type: Input
|
|
97
100
|
}], container: [{
|
|
98
101
|
type: ViewChild,
|
|
99
102
|
args: [`container`]
|
|
@@ -101,4 +104,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
101
104
|
type: HostListener,
|
|
102
105
|
args: ['window:resize', ['$event']]
|
|
103
106
|
}] } });
|
|
104
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
107
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm93LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvcm93L3Jvdy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL3Jvdy9yb3cuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUVMLFNBQVMsRUFDVCxZQUFZLEVBQ1osS0FBSyxFQUVMLFNBQVMsRUFDVCxpQkFBaUIsRUFDbEIsTUFBTSxlQUFlLENBQUM7OztBQVF2QixNQUFNLE9BQU8sWUFBWTtJQUx6QjtRQVFFLE9BQUUsR0FBRyxFQUFFLENBQUM7UUFDUixXQUFNLEdBQUcsQ0FBQyxDQUFDO1FBQ1gsZUFBVSxHQUFHLEVBQUUsQ0FBQztRQUNoQixvQkFBZSxHQUFHLEVBQUUsQ0FBQztRQU1yQixtQkFBYyxHQUFHLEtBQUssQ0FBQztRQUV2Qix1QkFBa0IsR0FBRyxLQUFLLENBQUM7UUFJM0IsZ0JBQVcsR0FBRyxFQUFFLENBQUM7UUFFakIsZ0JBQVcsR0FBRyxLQUFLLENBQUM7UUFFcEIsdUJBQWtCLEdBQUcsS0FBSyxDQUFDO1FBRTNCLFdBQU0sR0FBRyxLQUFLLENBQUM7UUFFZixZQUFPLEdBQUcsRUFBRSxDQUFDO1FBQ2Isb0JBQWUsR0FBRyxFQUFFLENBQUM7UUFFckIsa0JBQWEsR0FBRyxFQUFFLENBQUM7S0F3RHBCO0lBdERDLFFBQVE7UUFDTixJQUFJLENBQUMsRUFBRSxHQUFHLE1BQU0sR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsR0FBRyxJQUFJLENBQUMsQ0FBQztRQUNwRCxJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUU7WUFDcEIsSUFBSSxDQUFDLGVBQWUsR0FBRyxR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QjtzQkFEakIsS0FBSztnQkFHTixNQUFNO3NCQURMLEtBQUs7Z0JBR04sT0FBTztzQkFETixLQUFLO2dCQUdrQixTQUFTO3NCQUFoQyxTQUFTO3VCQUFDLFdBQVc7Z0JBNkJ0QixRQUFRO3NCQURQLFlBQVk7dUJBQUMsZUFBZSxFQUFFLENBQUMsUUFBUSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQWZ0ZXJDb250ZW50SW5pdCxcbiAgQ29tcG9uZW50LCBFbGVtZW50UmVmLFxuICBIb3N0TGlzdGVuZXIsXG4gIElucHV0LFxuICBPbkluaXQsXG4gIFZpZXdDaGlsZCxcbiAgVmlld0VuY2Fwc3VsYXRpb25cbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge05HX1ZBTFVFX0FDQ0VTU09SfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3dhYy1yb3cnLFxuICB0ZW1wbGF0ZVVybDogJy4vcm93LmNvbXBvbmVudC5odG1sJyxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZVxufSlcbmV4cG9ydCBjbGFzcyBSb3dDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIEFmdGVyQ29udGVudEluaXQge1xuICBASW5wdXQoKVxuICBwb3NpdGlvbjogJ3RvcC1sZWZ0J3wndG9wLW1pZGRsZSd8J3RvcC1yaWdodCd8J21pZGRsZS1sZWZ0J3wnbWlkZGxlLW1pZGRsZSd8J21pZGRsZS1yaWdodCd8J2JvdHRvbS1sZWZ0J3wnYm90dG9tLW1pZGRsZSd8J2JvdHRvbS1yaWdodCd8J3N0cmV0Y2gtbGVmdCd8J3N0cmV0Y2gtbWlkZGxlJ3wnc3RyZXRjaC1yaWdodCc7XG4gIGlkID0gJyc7XG4gIGNoaWxkcyA9IDA7XG4gIGNsYXNzV2lkdGggPSAnJztcbiAgcmVzcG9uc2l2ZUNsYXNzID0gJyc7XG4gIEBJbnB1dCgpXG4gIHdpZHRoOiBzdHJpbmc7XG4gIEBJbnB1dCgpXG4gIGhlaWdodDogc3RyaW5nO1xuICBASW5wdXQoKVxuICByZXNwb25zaXZlQXV0byA9IGZhbHNlO1xuICBASW5wdXQoKVxuICBjaGlsZHJlbnNXaWR0aEF1dG8gPSBmYWxzZTtcbiAgQElucHV0KClcbiAgdmlzaWJpbGl0eTogJ21vYmlsZS1vbmx5J3wndGFibGV0LW9ubHknfCdkZXNrdG9wLW9ubHknfCd1bmRlci1kZXNrdG9wJ3wnYWJvdmUtbW9iaWxlJztcbiAgQElucHV0KClcbiAgbWFyZ2luQ2hpbGQgPSAnJztcbiAgQElucHV0KClcbiAgYWRkV2FjQmxvY2sgPSBmYWxzZTtcbiAgQElucHV0KClcbiAgbGluZURpc3BsYXlDb250ZW50ID0gZmFsc2U7XG4gIEBJbnB1dCgpXG4gIGJvcmRlciA9IGZhbHNlO1xuICBASW5wdXQoKVxuICBwYWRkaW5nID0gJyc7XG4gIGhhbGZNYXJnaW5DaGlsZCA9ICcnO1xuICBAVmlld0NoaWxkKGBjb250YWluZXJgKSBjb250YWluZXI6IEVsZW1lbnRSZWY7XG4gIG5iQ2hpbGRzQ2xhc3MgPSAnJztcblxuICBuZ09uSW5pdCgpIHtcbiAgICB0aGlzLmlkID0gJ3Jvdy0nICsgTWF0aC5mbG9vcihNYXRoLnJhbmRvbSgpICogMTAwMCk7XG4gICAgaWYgKHRoaXMubWFyZ2luQ2hpbGQpIHtcbiAgICAgIHRoaXMuaGFsZk1hcmdpbkNoaWxkID0gcGFyc2VJbnQodGhpcy5tYXJnaW5DaGlsZCkgLyAyICsgJ3B4JztcbiAgICB9XG4gIH1cblxuICByZXNwb25zaXZlQ29udHJvbChzaXplKSB7XG4gICAgaWYgKHNpemUgPiAxMDI0KSB7XG4gICAgICB0aGlzLmNsYXNzV2lkdGggPSAnJztcbiAgICB9IGVsc2UgaWYgKHNpemUgPD0gNDgwKSB7XG4gICAgICB0aGlzLmNsYXNzV2lkdGggPSAnbG93JztcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5jbGFzc1dpZHRoID0gJ21lZGl1bSc7XG4gICAgfVxuICB9XG5cbiAgaGFuZGxlUmVzcG9uc2l2ZUF1dG8oc2l6ZSkge1xuICAgIGlmIChzaXplIDwgNTAwKSB7XG4gICAgICB0aGlzLnJlc3BvbnNpdmVDbGFzcyA9ICdtb2JpbGUnO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLnJlc3BvbnNpdmVDbGFzcyA9ICcnO1xuICAgIH1cbiAgfVxuXG4gIEBIb3N0TGlzdGVuZXIoJ3dpbmRvdzpyZXNpemUnLCBbJyRldmVudCddKVxuICBvblJlc2l6ZSgpIHtcbiAgICAgIGNvbnN0IHNpemUgPSB0aGlzLmNvbnRhaW5lci5uYXRpdmVFbGVtZW50Lm9mZnNldFdpZHRoO1xuICAgICAgdGhpcy5yZXNwb25zaXZlQ29udHJvbChzaXplKTtcbiAgICAgIGlmICh0aGlzLnJlc3BvbnNpdmVBdXRvKSB7XG4gICAgICAgIHRoaXMuaGFuZGxlUmVzcG9uc2l2ZUF1dG8oc2l6ZSk7XG4gICAgICB9XG4gIH1cblxuICBuZ0FmdGVyQ29udGVudEluaXQoKSB7XG4gICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICB0aGlzLmNoaWxkcyA9IHRoaXMuY29udGFpbmVyLm5hdGl2ZUVsZW1lbnQuY2hpbGRFbGVtZW50Q291bnQ7XG4gICAgICBpZiAodGhpcy53aWR0aCkge1xuICAgICAgICBkb2N1bWVudC5nZXRFbGVtZW50QnlJZCh0aGlzLmlkKS5wYXJlbnRFbGVtZW50LnN0eWxlLm1heFdpZHRoID0gdGhpcy53aWR0aDtcbiAgICAgIH1cbiAgICAgIGlmICh0aGlzLmhlaWdodCkge1xuICAgICAgICBkb2N1bWVudC5nZXRFbGVtZW50QnlJZCh0aGlzLmlkKS5wYXJlbnRFbGVtZW50LnN0eWxlLm1heEhlaWdodCA9IHRoaXMuaGVpZ2h0O1xuICAgICAgfVxuICAgICAgaWYgKHRoaXMuY2hpbGRzID4gMSAmJiB0aGlzLm1hcmdpbkNoaWxkKSB7XG4gICAgICAgIGZvciAobGV0IGkgPSAwOyBpIDwgdGhpcy5jaGlsZHM7IGkrKykge1xuICAgICAgICAgIGNvbnN0IGNoaWxkOiBhbnkgPSBkb2N1bWVudC5nZXRFbGVtZW50QnlJZCh0aGlzLmlkKS5jaGlsZHJlbltpXTtcbiAgICAgICAgICBjaGlsZC5zdHlsZS5tYXJnaW5MZWZ0ID0gdGhpcy5oYWxmTWFyZ2luQ2hpbGQ7XG4gICAgICAgICAgY2hpbGQuc3R5bGUubWFyZ2luUmlnaHQgPSB0aGlzLmhhbGZNYXJnaW5DaGlsZDtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgdGhpcy5uYkNoaWxkc0NsYXNzID0gJ25iLWNoaWxkLScgKyB0aGlzLmNoaWxkcztcbiAgICAgIHRoaXMub25SZXNpemUoKTtcbiAgICB9LCAxKTtcbiAgfVxufVxuIiwiPGRpdiBbbmdTdHlsZV09XCJ7J3BhZGRpbmcnOiBwYWRkaW5nLCd0cmFuc2Zvcm0nOiAoY2hpbGRzID4gMSA/ICd0cmFuc2xhdGVYKC0nICsgaGFsZk1hcmdpbkNoaWxkICsgJyknIDogJ3dyb25nJyksICd3aWR0aCc6IChjaGlsZHMgPiAxID8gJ2NhbGMoMTAwJSArICcgKyBtYXJnaW5DaGlsZCAgKyAnKScgOiAnd3JvbmcnKX1cIiBjbGFzcz1cIndhYy1yb3cge3sgYWRkV2FjQmxvY2sgPyAnd2hpdGUtYmxvY2snIDogJycgfX0ge3sgbGluZURpc3BsYXlDb250ZW50ID8gJ2RpcmVjdGlvbi1jb2x1bW4nIDogJycgfX0ge3sgYm9yZGVyID8gJ3dpdGgtYm9yZGVyJyA6ICcnIH19IHt7IGNoaWxkcmVuc1dpZHRoQXV0byA/ICdjaGlsZHJlbnMtd2lkdGgtYXV0bycgOiAnJyB9fSB7eyBwb3NpdGlvbiA/IHBvc2l0aW9uIDogJycgfX0ge3sgdmlzaWJpbGl0eSA/IHZpc2liaWxpdHkgOiAnJyB9fSB7eyByZXNwb25zaXZlQ2xhc3MgPyByZXNwb25zaXZlQ2xhc3MgOiAnJyB9fSB7e25iQ2hpbGRzQ2xhc3N9fSB7e2NsYXNzV2lkdGh9fVwiICNjb250YWluZXIgW25nQ2xhc3NdPVwie1xuICAnbXVsdGlwbGUtY2hpbGQnOiBjaGlsZHMgPiAzLFxuICAnZml2ZS1vci1tb3JlLWNoaWxkJzogY2hpbGRzID4gNCxcbiAgJ2Fsb25lJzogY2hpbGRzID09PSAxXG59XCIgW2lkXT1cImlkXCI+XG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbjwvZGl2PlxuIl19
|
|
@@ -5944,6 +5944,7 @@ class RowComponent {
|
|
|
5944
5944
|
this.addWacBlock = false;
|
|
5945
5945
|
this.lineDisplayContent = false;
|
|
5946
5946
|
this.border = false;
|
|
5947
|
+
this.padding = '';
|
|
5947
5948
|
this.halfMarginChild = '';
|
|
5948
5949
|
this.nbChildsClass = '';
|
|
5949
5950
|
}
|
|
@@ -6001,10 +6002,10 @@ class RowComponent {
|
|
|
6001
6002
|
}
|
|
6002
6003
|
}
|
|
6003
6004
|
RowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: RowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6004
|
-
RowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: RowComponent, selector: "wac-row", inputs: { position: "position", width: "width", height: "height", responsiveAuto: "responsiveAuto", childrensWidthAuto: "childrensWidthAuto", visibility: "visibility", marginChild: "marginChild", addWacBlock: "addWacBlock", lineDisplayContent: "lineDisplayContent", border: "border" }, host: { listeners: { "window:resize": "onResize($event)" } }, viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true }], ngImport: i0, template: "<div [ngStyle]=\"{'transform': (childs > 1 ? 'translateX(-' + halfMarginChild + ')' : 'wrong'), 'width': (childs > 1 ? 'calc(100% + ' + marginChild + ')' : 'wrong')}\" class=\"wac-row {{ addWacBlock ? 'white-block' : '' }} {{ lineDisplayContent ? 'direction-column' : '' }} {{ border ? 'with-border' : '' }} {{ childrensWidthAuto ? 'childrens-width-auto' : '' }} {{ position ? position : '' }} {{ visibility ? visibility : '' }} {{ responsiveClass ? responsiveClass : '' }} {{nbChildsClass}} {{classWidth}}\" #container [ngClass]=\"{\n 'multiple-child': childs > 3,\n 'five-or-more-child': childs > 4,\n 'alone': childs === 1\n}\" [id]=\"id\">\n <ng-content></ng-content>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
6005
|
+
RowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: RowComponent, selector: "wac-row", inputs: { position: "position", width: "width", height: "height", responsiveAuto: "responsiveAuto", childrensWidthAuto: "childrensWidthAuto", visibility: "visibility", marginChild: "marginChild", addWacBlock: "addWacBlock", lineDisplayContent: "lineDisplayContent", border: "border", padding: "padding" }, host: { listeners: { "window:resize": "onResize($event)" } }, viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true }], ngImport: i0, template: "<div [ngStyle]=\"{'padding': padding,'transform': (childs > 1 ? 'translateX(-' + halfMarginChild + ')' : 'wrong'), 'width': (childs > 1 ? 'calc(100% + ' + marginChild + ')' : 'wrong')}\" class=\"wac-row {{ addWacBlock ? 'white-block' : '' }} {{ lineDisplayContent ? 'direction-column' : '' }} {{ border ? 'with-border' : '' }} {{ childrensWidthAuto ? 'childrens-width-auto' : '' }} {{ position ? position : '' }} {{ visibility ? visibility : '' }} {{ responsiveClass ? responsiveClass : '' }} {{nbChildsClass}} {{classWidth}}\" #container [ngClass]=\"{\n 'multiple-child': childs > 3,\n 'five-or-more-child': childs > 4,\n 'alone': childs === 1\n}\" [id]=\"id\">\n <ng-content></ng-content>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
6005
6006
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: RowComponent, decorators: [{
|
|
6006
6007
|
type: Component,
|
|
6007
|
-
args: [{ selector: 'wac-row', encapsulation: ViewEncapsulation.None, template: "<div [ngStyle]=\"{'transform': (childs > 1 ? 'translateX(-' + halfMarginChild + ')' : 'wrong'), 'width': (childs > 1 ? 'calc(100% + ' + marginChild + ')' : 'wrong')}\" class=\"wac-row {{ addWacBlock ? 'white-block' : '' }} {{ lineDisplayContent ? 'direction-column' : '' }} {{ border ? 'with-border' : '' }} {{ childrensWidthAuto ? 'childrens-width-auto' : '' }} {{ position ? position : '' }} {{ visibility ? visibility : '' }} {{ responsiveClass ? responsiveClass : '' }} {{nbChildsClass}} {{classWidth}}\" #container [ngClass]=\"{\n 'multiple-child': childs > 3,\n 'five-or-more-child': childs > 4,\n 'alone': childs === 1\n}\" [id]=\"id\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
6008
|
+
args: [{ selector: 'wac-row', encapsulation: ViewEncapsulation.None, template: "<div [ngStyle]=\"{'padding': padding,'transform': (childs > 1 ? 'translateX(-' + halfMarginChild + ')' : 'wrong'), 'width': (childs > 1 ? 'calc(100% + ' + marginChild + ')' : 'wrong')}\" class=\"wac-row {{ addWacBlock ? 'white-block' : '' }} {{ lineDisplayContent ? 'direction-column' : '' }} {{ border ? 'with-border' : '' }} {{ childrensWidthAuto ? 'childrens-width-auto' : '' }} {{ position ? position : '' }} {{ visibility ? visibility : '' }} {{ responsiveClass ? responsiveClass : '' }} {{nbChildsClass}} {{classWidth}}\" #container [ngClass]=\"{\n 'multiple-child': childs > 3,\n 'five-or-more-child': childs > 4,\n 'alone': childs === 1\n}\" [id]=\"id\">\n <ng-content></ng-content>\n</div>\n" }]
|
|
6008
6009
|
}], propDecorators: { position: [{
|
|
6009
6010
|
type: Input
|
|
6010
6011
|
}], width: [{
|
|
@@ -6025,6 +6026,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
6025
6026
|
type: Input
|
|
6026
6027
|
}], border: [{
|
|
6027
6028
|
type: Input
|
|
6029
|
+
}], padding: [{
|
|
6030
|
+
type: Input
|
|
6028
6031
|
}], container: [{
|
|
6029
6032
|
type: ViewChild,
|
|
6030
6033
|
args: [`container`]
|