@wizishop/angular-components 15.1.15 → 15.1.16
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 +124 -124
- package/esm2020/lib/components/alert-popup/alert-popup.service.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/package.json +1 -1
- package/wizishop-angular-components-15.1.16.tgz +0 -0
- package/wizishop-angular-components-15.1.15.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -5073,6 +5073,80 @@ wac-optional-disable-container {
|
|
|
5073
5073
|
}
|
|
5074
5074
|
}
|
|
5075
5075
|
}
|
|
5076
|
+
.wac-progressBarContent {
|
|
5077
|
+
position: relative;
|
|
5078
|
+
width: 100%;
|
|
5079
|
+
display: block;
|
|
5080
|
+
.progressBar {
|
|
5081
|
+
position: relative;
|
|
5082
|
+
width: 88%;
|
|
5083
|
+
margin-bottom: 1rem;
|
|
5084
|
+
progress {
|
|
5085
|
+
&.progress {
|
|
5086
|
+
margin-bottom: 0;
|
|
5087
|
+
height: rem(2);
|
|
5088
|
+
&::-webkit-progress-value {
|
|
5089
|
+
transition: width 0.5s ease;
|
|
5090
|
+
}
|
|
5091
|
+
}
|
|
5092
|
+
}
|
|
5093
|
+
span {
|
|
5094
|
+
position: absolute;
|
|
5095
|
+
top: -4px;
|
|
5096
|
+
height: 11px;
|
|
5097
|
+
width: 11px;
|
|
5098
|
+
background-color: $wac-border-color;
|
|
5099
|
+
border-radius: 50%;
|
|
5100
|
+
}
|
|
5101
|
+
.is-danger {
|
|
5102
|
+
background-color: $wac-primary-button;
|
|
5103
|
+
&::-webkit-progress-value {
|
|
5104
|
+
background-color: $wac-primary-button;
|
|
5105
|
+
}
|
|
5106
|
+
}
|
|
5107
|
+
.is-warning {
|
|
5108
|
+
background-color: $wac-orange-color;
|
|
5109
|
+
&::-webkit-progress-value {
|
|
5110
|
+
background-color: $wac-orange-color;
|
|
5111
|
+
}
|
|
5112
|
+
}
|
|
5113
|
+
.is-success {
|
|
5114
|
+
background-color: $wac-green-color;
|
|
5115
|
+
&::-webkit-progress-value {
|
|
5116
|
+
background-color: $wac-green-color;
|
|
5117
|
+
}
|
|
5118
|
+
}
|
|
5119
|
+
}
|
|
5120
|
+
.size {
|
|
5121
|
+
display: inline;
|
|
5122
|
+
color: $wac-color-text-grey;
|
|
5123
|
+
position: absolute;
|
|
5124
|
+
right: 0;
|
|
5125
|
+
top: -9px;
|
|
5126
|
+
background: $wac-white;
|
|
5127
|
+
padding-left: 0.875rem;
|
|
5128
|
+
.is-success {
|
|
5129
|
+
color: $wac-green-color;
|
|
5130
|
+
}
|
|
5131
|
+
.is-warning {
|
|
5132
|
+
color: $wac-orange-color;
|
|
5133
|
+
}
|
|
5134
|
+
.is-danger {
|
|
5135
|
+
color: $wac-primary-button;
|
|
5136
|
+
}
|
|
5137
|
+
> span {
|
|
5138
|
+
font-size: rem(14) !important;
|
|
5139
|
+
line-height: 1;
|
|
5140
|
+
transform: translateY(-3px);
|
|
5141
|
+
display: inline-block;
|
|
5142
|
+
letter-spacing: 0;
|
|
5143
|
+
strong {
|
|
5144
|
+
letter-spacing: 0;
|
|
5145
|
+
font-weight: 600;
|
|
5146
|
+
}
|
|
5147
|
+
}
|
|
5148
|
+
}
|
|
5149
|
+
}
|
|
5076
5150
|
.wac-free {
|
|
5077
5151
|
height: 100%;
|
|
5078
5152
|
width: 100%;
|
|
@@ -5197,80 +5271,6 @@ wac-optional-disable-container {
|
|
|
5197
5271
|
.wac-free .ps-content > * {
|
|
5198
5272
|
padding-right: 15px;
|
|
5199
5273
|
}
|
|
5200
|
-
.wac-progressBarContent {
|
|
5201
|
-
position: relative;
|
|
5202
|
-
width: 100%;
|
|
5203
|
-
display: block;
|
|
5204
|
-
.progressBar {
|
|
5205
|
-
position: relative;
|
|
5206
|
-
width: 88%;
|
|
5207
|
-
margin-bottom: 1rem;
|
|
5208
|
-
progress {
|
|
5209
|
-
&.progress {
|
|
5210
|
-
margin-bottom: 0;
|
|
5211
|
-
height: rem(2);
|
|
5212
|
-
&::-webkit-progress-value {
|
|
5213
|
-
transition: width 0.5s ease;
|
|
5214
|
-
}
|
|
5215
|
-
}
|
|
5216
|
-
}
|
|
5217
|
-
span {
|
|
5218
|
-
position: absolute;
|
|
5219
|
-
top: -4px;
|
|
5220
|
-
height: 11px;
|
|
5221
|
-
width: 11px;
|
|
5222
|
-
background-color: $wac-border-color;
|
|
5223
|
-
border-radius: 50%;
|
|
5224
|
-
}
|
|
5225
|
-
.is-danger {
|
|
5226
|
-
background-color: $wac-primary-button;
|
|
5227
|
-
&::-webkit-progress-value {
|
|
5228
|
-
background-color: $wac-primary-button;
|
|
5229
|
-
}
|
|
5230
|
-
}
|
|
5231
|
-
.is-warning {
|
|
5232
|
-
background-color: $wac-orange-color;
|
|
5233
|
-
&::-webkit-progress-value {
|
|
5234
|
-
background-color: $wac-orange-color;
|
|
5235
|
-
}
|
|
5236
|
-
}
|
|
5237
|
-
.is-success {
|
|
5238
|
-
background-color: $wac-green-color;
|
|
5239
|
-
&::-webkit-progress-value {
|
|
5240
|
-
background-color: $wac-green-color;
|
|
5241
|
-
}
|
|
5242
|
-
}
|
|
5243
|
-
}
|
|
5244
|
-
.size {
|
|
5245
|
-
display: inline;
|
|
5246
|
-
color: $wac-color-text-grey;
|
|
5247
|
-
position: absolute;
|
|
5248
|
-
right: 0;
|
|
5249
|
-
top: -9px;
|
|
5250
|
-
background: $wac-white;
|
|
5251
|
-
padding-left: 0.875rem;
|
|
5252
|
-
.is-success {
|
|
5253
|
-
color: $wac-green-color;
|
|
5254
|
-
}
|
|
5255
|
-
.is-warning {
|
|
5256
|
-
color: $wac-orange-color;
|
|
5257
|
-
}
|
|
5258
|
-
.is-danger {
|
|
5259
|
-
color: $wac-primary-button;
|
|
5260
|
-
}
|
|
5261
|
-
> span {
|
|
5262
|
-
font-size: rem(14) !important;
|
|
5263
|
-
line-height: 1;
|
|
5264
|
-
transform: translateY(-3px);
|
|
5265
|
-
display: inline-block;
|
|
5266
|
-
letter-spacing: 0;
|
|
5267
|
-
strong {
|
|
5268
|
-
letter-spacing: 0;
|
|
5269
|
-
font-weight: 600;
|
|
5270
|
-
}
|
|
5271
|
-
}
|
|
5272
|
-
}
|
|
5273
|
-
}
|
|
5274
5274
|
.wac-radio {
|
|
5275
5275
|
.is-checkradio[type='radio'] {
|
|
5276
5276
|
outline: 0 !important;
|
|
@@ -6639,6 +6639,38 @@ wac-optional-disable-container {
|
|
|
6639
6639
|
}
|
|
6640
6640
|
}
|
|
6641
6641
|
}
|
|
6642
|
+
.wac-tag-label {
|
|
6643
|
+
@include flexbox();
|
|
6644
|
+
background-color: $wac-gray-background;
|
|
6645
|
+
border-radius: 3px;
|
|
6646
|
+
border: 1px solid $wac-gray-background;
|
|
6647
|
+
transition: border-color 0.3s ease-in-out;
|
|
6648
|
+
|
|
6649
|
+
&__wrapper {
|
|
6650
|
+
padding: 7.5px 13px;
|
|
6651
|
+
font-size: 14px;
|
|
6652
|
+
line-height: 16px;
|
|
6653
|
+
color: $wac-second-color;
|
|
6654
|
+
|
|
6655
|
+
i {
|
|
6656
|
+
margin-left: 10px;
|
|
6657
|
+
font-size: 12px;
|
|
6658
|
+
line-height: 23px;
|
|
6659
|
+
color: $wac-border-form;
|
|
6660
|
+
transition: color 0.3s ease-in-out;
|
|
6661
|
+
}
|
|
6662
|
+
}
|
|
6663
|
+
|
|
6664
|
+
&:hover {
|
|
6665
|
+
border-color: $wac-input-border;
|
|
6666
|
+
transition: border-color 0.3s ease-in-out;
|
|
6667
|
+
|
|
6668
|
+
.wac-label__wrapper i {
|
|
6669
|
+
color: $wac-second-color;
|
|
6670
|
+
transition: color 0.3s ease-in-out;
|
|
6671
|
+
}
|
|
6672
|
+
}
|
|
6673
|
+
}
|
|
6642
6674
|
.wac-text {
|
|
6643
6675
|
font-size: rem(14);
|
|
6644
6676
|
line-height: rem(25);
|
|
@@ -6678,38 +6710,6 @@ wac-optional-disable-container {
|
|
|
6678
6710
|
margin: inherit;
|
|
6679
6711
|
}
|
|
6680
6712
|
}
|
|
6681
|
-
.wac-tag-label {
|
|
6682
|
-
@include flexbox();
|
|
6683
|
-
background-color: $wac-gray-background;
|
|
6684
|
-
border-radius: 3px;
|
|
6685
|
-
border: 1px solid $wac-gray-background;
|
|
6686
|
-
transition: border-color 0.3s ease-in-out;
|
|
6687
|
-
|
|
6688
|
-
&__wrapper {
|
|
6689
|
-
padding: 7.5px 13px;
|
|
6690
|
-
font-size: 14px;
|
|
6691
|
-
line-height: 16px;
|
|
6692
|
-
color: $wac-second-color;
|
|
6693
|
-
|
|
6694
|
-
i {
|
|
6695
|
-
margin-left: 10px;
|
|
6696
|
-
font-size: 12px;
|
|
6697
|
-
line-height: 23px;
|
|
6698
|
-
color: $wac-border-form;
|
|
6699
|
-
transition: color 0.3s ease-in-out;
|
|
6700
|
-
}
|
|
6701
|
-
}
|
|
6702
|
-
|
|
6703
|
-
&:hover {
|
|
6704
|
-
border-color: $wac-input-border;
|
|
6705
|
-
transition: border-color 0.3s ease-in-out;
|
|
6706
|
-
|
|
6707
|
-
.wac-label__wrapper i {
|
|
6708
|
-
color: $wac-second-color;
|
|
6709
|
-
transition: color 0.3s ease-in-out;
|
|
6710
|
-
}
|
|
6711
|
-
}
|
|
6712
|
-
}
|
|
6713
6713
|
.wac-text-area {
|
|
6714
6714
|
|
|
6715
6715
|
::-webkit-input-placeholder {
|
|
@@ -7196,7 +7196,24 @@ span.wac-tooltip {
|
|
|
7196
7196
|
&--disabled {
|
|
7197
7197
|
cursor: not-allowed;
|
|
7198
7198
|
}
|
|
7199
|
-
}
|
|
7199
|
+
}.wac-expansion-panel-header {
|
|
7200
|
+
display: flex;
|
|
7201
|
+
width: 100%;
|
|
7202
|
+
justify-content: space-between;
|
|
7203
|
+
align-items: center;
|
|
7204
|
+
align-content: flex-start;
|
|
7205
|
+
cursor: pointer;
|
|
7206
|
+
|
|
7207
|
+
&--disabled {
|
|
7208
|
+
cursor: not-allowed;
|
|
7209
|
+
}
|
|
7210
|
+
|
|
7211
|
+
&__icon {
|
|
7212
|
+
font-size: 20px;
|
|
7213
|
+
}
|
|
7214
|
+
}
|
|
7215
|
+
|
|
7216
|
+
h1.wac-h1 {
|
|
7200
7217
|
font-size: rem(30);
|
|
7201
7218
|
line-height: rem(35);
|
|
7202
7219
|
font-weight: 600;
|
|
@@ -7221,23 +7238,6 @@ span.wac-tooltip {
|
|
|
7221
7238
|
font-weight: normal;
|
|
7222
7239
|
}
|
|
7223
7240
|
}
|
|
7224
|
-
.wac-expansion-panel-header {
|
|
7225
|
-
display: flex;
|
|
7226
|
-
width: 100%;
|
|
7227
|
-
justify-content: space-between;
|
|
7228
|
-
align-items: center;
|
|
7229
|
-
align-content: flex-start;
|
|
7230
|
-
cursor: pointer;
|
|
7231
|
-
|
|
7232
|
-
&--disabled {
|
|
7233
|
-
cursor: not-allowed;
|
|
7234
|
-
}
|
|
7235
|
-
|
|
7236
|
-
&__icon {
|
|
7237
|
-
font-size: 20px;
|
|
7238
|
-
}
|
|
7239
|
-
}
|
|
7240
|
-
|
|
7241
7241
|
h2.wac-h2 {
|
|
7242
7242
|
font-size: rem(18);
|
|
7243
7243
|
line-height: rem(21);
|
|
@@ -23,8 +23,11 @@ export class AlertPopupService {
|
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
AlertPopupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: AlertPopupService, deps: [{ token: i1.DomService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
26
|
-
AlertPopupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: AlertPopupService });
|
|
26
|
+
AlertPopupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: AlertPopupService, providedIn: 'root' });
|
|
27
27
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: AlertPopupService, decorators: [{
|
|
28
|
-
type: Injectable
|
|
28
|
+
type: Injectable,
|
|
29
|
+
args: [{
|
|
30
|
+
providedIn: 'root'
|
|
31
|
+
}]
|
|
29
32
|
}], ctorParameters: function () { return [{ type: i1.DomService }]; } });
|
|
30
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
33
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQtcG9wdXAuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvYWxlcnQtcG9wdXAvYWxlcnQtcG9wdXAuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDOzs7QUFNOUQsTUFBTSxPQUFPLGlCQUFpQjtJQUM1QixZQUFvQixVQUFzQjtRQUF0QixlQUFVLEdBQVYsVUFBVSxDQUFZO0lBQUcsQ0FBQztJQUU5QyxJQUFJLENBQUMsTUFBd0I7UUFDM0IsTUFBTSxZQUFZLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUVsRCxPQUFPLFlBQVksQ0FBQyxRQUFRLENBQUM7SUFDL0IsQ0FBQztJQUVPLGVBQWUsQ0FBQyxNQUF3QjtRQUM5QyxNQUFNLFlBQVksR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLHFCQUFxQixDQUFDLG1CQUFtQixDQUFDLENBQUM7UUFFaEYsTUFBTSxHQUFHLE1BQU0sQ0FBQyxNQUFNLENBQ3BCO1lBQ0UsUUFBUSxFQUFFLFFBQVE7U0FDbkIsRUFDRCxNQUFNLENBQ1AsQ0FBQztRQUVGLFlBQVksQ0FBQyxRQUFRLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQztRQUV0QyxZQUFZLENBQUMsUUFBUSxDQUFDLFdBQVcsRUFBRSxDQUFDLFNBQVMsQ0FBQyxHQUFHLEVBQUU7WUFDakQsWUFBWSxDQUFDLE9BQU8sRUFBRSxDQUFDO1FBQ3pCLENBQUMsQ0FBQyxDQUFDO1FBRUgsT0FBTyxZQUFZLENBQUM7SUFDdEIsQ0FBQzs7OEdBMUJVLGlCQUFpQjtrSEFBakIsaUJBQWlCLGNBRmhCLE1BQU07MkZBRVAsaUJBQWlCO2tCQUg3QixVQUFVO21CQUFDO29CQUNWLFVBQVUsRUFBRSxNQUFNO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFsZXJ0UG9wdXBDb21wb25lbnQgfSBmcm9tICcuL2FsZXJ0LXBvcHVwLmNvbXBvbmVudCc7XG5pbXBvcnQge0RvbVNlcnZpY2V9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2RvbS5zZXJ2aWNlJztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCdcbn0pXG5leHBvcnQgY2xhc3MgQWxlcnRQb3B1cFNlcnZpY2Uge1xuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGRvbVNlcnZpY2U6IERvbVNlcnZpY2UpIHt9XG5cbiAgb3Blbihjb25maWc6IEFsZXJ0UG9wdXBDb25maWcpOiBBbGVydFBvcHVwQ29tcG9uZW50IHtcbiAgICBjb25zdCBjb21wb25lbnRSZWYgPSB0aGlzLmdldENvbXBvbmVudFJlZihjb25maWcpO1xuXG4gICAgcmV0dXJuIGNvbXBvbmVudFJlZi5pbnN0YW5jZTtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0Q29tcG9uZW50UmVmKGNvbmZpZzogQWxlcnRQb3B1cENvbmZpZykge1xuICAgIGNvbnN0IGNvbXBvbmVudFJlZiA9IHRoaXMuZG9tU2VydmljZS5hdHRhY2hDb21wb25lbnRQb3J0YWwoQWxlcnRQb3B1cENvbXBvbmVudCk7XG5cbiAgICBjb25maWcgPSBPYmplY3QuYXNzaWduKFxuICAgICAge1xuICAgICAgICBwb3NpdGlvbjogJ2lzLXRvcCdcbiAgICAgIH0sXG4gICAgICBjb25maWdcbiAgICApO1xuXG4gICAgY29tcG9uZW50UmVmLmluc3RhbmNlLmNvbmZpZyA9IGNvbmZpZztcblxuICAgIGNvbXBvbmVudFJlZi5pbnN0YW5jZS5hZnRlckNsb3NlZCgpLnN1YnNjcmliZSgoKSA9PiB7XG4gICAgICBjb21wb25lbnRSZWYuZGVzdHJveSgpO1xuICAgIH0pO1xuXG4gICAgcmV0dXJuIGNvbXBvbmVudFJlZjtcbiAgfVxufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFsZXJ0UG9wdXBDb25maWcge1xuICBtZXNzYWdlOiBzdHJpbmc7XG4gIHRpdGxlPzogc3RyaW5nO1xuICBpY29uPzogc3RyaW5nO1xuICBjb2xvcj86IHN0cmluZztcbiAgcG9zaXRpb24/OiBzdHJpbmc7XG4gIGR1cmF0aW9uPzogbnVtYmVyO1xuICBleHRyYUNsYXNzZXM/OiBzdHJpbmc7XG4gIGZ1bGxzaXplPzogYm9vbGVhbjtcbiAgb3BhY2l0eT86IGJvb2xlYW47XG4gIHNtYWxsPzogYm9vbGVhbjtcbn1cbiJdfQ==
|
|
@@ -4434,9 +4434,12 @@ class AlertPopupService {
|
|
|
4434
4434
|
}
|
|
4435
4435
|
}
|
|
4436
4436
|
AlertPopupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: AlertPopupService, deps: [{ token: DomService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4437
|
-
AlertPopupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: AlertPopupService });
|
|
4437
|
+
AlertPopupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: AlertPopupService, providedIn: 'root' });
|
|
4438
4438
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: AlertPopupService, decorators: [{
|
|
4439
|
-
type: Injectable
|
|
4439
|
+
type: Injectable,
|
|
4440
|
+
args: [{
|
|
4441
|
+
providedIn: 'root'
|
|
4442
|
+
}]
|
|
4440
4443
|
}], ctorParameters: function () { return [{ type: DomService }]; } });
|
|
4441
4444
|
|
|
4442
4445
|
class AlertPopupModule {
|