@wizishop/angular-components 15.1.36 → 15.1.38
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
CHANGED
|
@@ -5475,6 +5475,80 @@ wac-optional-disable-container {
|
|
|
5475
5475
|
.wac-free .ps-content > * {
|
|
5476
5476
|
padding-right: 15px;
|
|
5477
5477
|
}
|
|
5478
|
+
.wac-progressBarContent {
|
|
5479
|
+
position: relative;
|
|
5480
|
+
width: 100%;
|
|
5481
|
+
display: block;
|
|
5482
|
+
.progressBar {
|
|
5483
|
+
position: relative;
|
|
5484
|
+
width: 88%;
|
|
5485
|
+
margin-bottom: 1rem;
|
|
5486
|
+
progress {
|
|
5487
|
+
&.progress {
|
|
5488
|
+
margin-bottom: 0;
|
|
5489
|
+
height: rem(2);
|
|
5490
|
+
&::-webkit-progress-value {
|
|
5491
|
+
transition: width 0.5s ease;
|
|
5492
|
+
}
|
|
5493
|
+
}
|
|
5494
|
+
}
|
|
5495
|
+
span {
|
|
5496
|
+
position: absolute;
|
|
5497
|
+
top: -4px;
|
|
5498
|
+
height: 11px;
|
|
5499
|
+
width: 11px;
|
|
5500
|
+
background-color: $wac-border-color;
|
|
5501
|
+
border-radius: 50%;
|
|
5502
|
+
}
|
|
5503
|
+
.is-danger {
|
|
5504
|
+
background-color: $wac-primary-button;
|
|
5505
|
+
&::-webkit-progress-value {
|
|
5506
|
+
background-color: $wac-primary-button;
|
|
5507
|
+
}
|
|
5508
|
+
}
|
|
5509
|
+
.is-warning {
|
|
5510
|
+
background-color: $wac-orange-color;
|
|
5511
|
+
&::-webkit-progress-value {
|
|
5512
|
+
background-color: $wac-orange-color;
|
|
5513
|
+
}
|
|
5514
|
+
}
|
|
5515
|
+
.is-success {
|
|
5516
|
+
background-color: $wac-green-color;
|
|
5517
|
+
&::-webkit-progress-value {
|
|
5518
|
+
background-color: $wac-green-color;
|
|
5519
|
+
}
|
|
5520
|
+
}
|
|
5521
|
+
}
|
|
5522
|
+
.size {
|
|
5523
|
+
display: inline;
|
|
5524
|
+
color: $wac-color-text-grey;
|
|
5525
|
+
position: absolute;
|
|
5526
|
+
right: 0;
|
|
5527
|
+
top: -9px;
|
|
5528
|
+
background: $wac-white;
|
|
5529
|
+
padding-left: 0.875rem;
|
|
5530
|
+
.is-success {
|
|
5531
|
+
color: $wac-green-color;
|
|
5532
|
+
}
|
|
5533
|
+
.is-warning {
|
|
5534
|
+
color: $wac-orange-color;
|
|
5535
|
+
}
|
|
5536
|
+
.is-danger {
|
|
5537
|
+
color: $wac-primary-button;
|
|
5538
|
+
}
|
|
5539
|
+
> span {
|
|
5540
|
+
font-size: rem(14) !important;
|
|
5541
|
+
line-height: 1;
|
|
5542
|
+
transform: translateY(-3px);
|
|
5543
|
+
display: inline-block;
|
|
5544
|
+
letter-spacing: 0;
|
|
5545
|
+
strong {
|
|
5546
|
+
letter-spacing: 0;
|
|
5547
|
+
font-weight: 600;
|
|
5548
|
+
}
|
|
5549
|
+
}
|
|
5550
|
+
}
|
|
5551
|
+
}
|
|
5478
5552
|
.wac-radio {
|
|
5479
5553
|
.is-checkradio[type='radio'] {
|
|
5480
5554
|
outline: 0 !important;
|
|
@@ -5603,80 +5677,6 @@ wac-optional-disable-container {
|
|
|
5603
5677
|
}
|
|
5604
5678
|
}
|
|
5605
5679
|
}
|
|
5606
|
-
.wac-progressBarContent {
|
|
5607
|
-
position: relative;
|
|
5608
|
-
width: 100%;
|
|
5609
|
-
display: block;
|
|
5610
|
-
.progressBar {
|
|
5611
|
-
position: relative;
|
|
5612
|
-
width: 88%;
|
|
5613
|
-
margin-bottom: 1rem;
|
|
5614
|
-
progress {
|
|
5615
|
-
&.progress {
|
|
5616
|
-
margin-bottom: 0;
|
|
5617
|
-
height: rem(2);
|
|
5618
|
-
&::-webkit-progress-value {
|
|
5619
|
-
transition: width 0.5s ease;
|
|
5620
|
-
}
|
|
5621
|
-
}
|
|
5622
|
-
}
|
|
5623
|
-
span {
|
|
5624
|
-
position: absolute;
|
|
5625
|
-
top: -4px;
|
|
5626
|
-
height: 11px;
|
|
5627
|
-
width: 11px;
|
|
5628
|
-
background-color: $wac-border-color;
|
|
5629
|
-
border-radius: 50%;
|
|
5630
|
-
}
|
|
5631
|
-
.is-danger {
|
|
5632
|
-
background-color: $wac-primary-button;
|
|
5633
|
-
&::-webkit-progress-value {
|
|
5634
|
-
background-color: $wac-primary-button;
|
|
5635
|
-
}
|
|
5636
|
-
}
|
|
5637
|
-
.is-warning {
|
|
5638
|
-
background-color: $wac-orange-color;
|
|
5639
|
-
&::-webkit-progress-value {
|
|
5640
|
-
background-color: $wac-orange-color;
|
|
5641
|
-
}
|
|
5642
|
-
}
|
|
5643
|
-
.is-success {
|
|
5644
|
-
background-color: $wac-green-color;
|
|
5645
|
-
&::-webkit-progress-value {
|
|
5646
|
-
background-color: $wac-green-color;
|
|
5647
|
-
}
|
|
5648
|
-
}
|
|
5649
|
-
}
|
|
5650
|
-
.size {
|
|
5651
|
-
display: inline;
|
|
5652
|
-
color: $wac-color-text-grey;
|
|
5653
|
-
position: absolute;
|
|
5654
|
-
right: 0;
|
|
5655
|
-
top: -9px;
|
|
5656
|
-
background: $wac-white;
|
|
5657
|
-
padding-left: 0.875rem;
|
|
5658
|
-
.is-success {
|
|
5659
|
-
color: $wac-green-color;
|
|
5660
|
-
}
|
|
5661
|
-
.is-warning {
|
|
5662
|
-
color: $wac-orange-color;
|
|
5663
|
-
}
|
|
5664
|
-
.is-danger {
|
|
5665
|
-
color: $wac-primary-button;
|
|
5666
|
-
}
|
|
5667
|
-
> span {
|
|
5668
|
-
font-size: rem(14) !important;
|
|
5669
|
-
line-height: 1;
|
|
5670
|
-
transform: translateY(-3px);
|
|
5671
|
-
display: inline-block;
|
|
5672
|
-
letter-spacing: 0;
|
|
5673
|
-
strong {
|
|
5674
|
-
letter-spacing: 0;
|
|
5675
|
-
font-weight: 600;
|
|
5676
|
-
}
|
|
5677
|
-
}
|
|
5678
|
-
}
|
|
5679
|
-
}
|
|
5680
5680
|
.wac-row {
|
|
5681
5681
|
display: flex;
|
|
5682
5682
|
justify-content: space-between;
|
|
@@ -5705,16 +5705,98 @@ wac-optional-disable-container {
|
|
|
5705
5705
|
*/
|
|
5706
5706
|
&.with-border {
|
|
5707
5707
|
border: 1px solid $wac-border-form;
|
|
5708
|
+
padding: 20px;
|
|
5708
5709
|
}
|
|
5709
5710
|
|
|
5711
|
+
|
|
5712
|
+
|
|
5710
5713
|
/*
|
|
5711
|
-
* Class for position
|
|
5714
|
+
* Class for position column
|
|
5712
5715
|
*/
|
|
5713
5716
|
|
|
5714
5717
|
&.direction-column {
|
|
5715
5718
|
flex-direction: column!important;
|
|
5719
|
+
&.top-middle {
|
|
5720
|
+
justify-content: flex-start;
|
|
5721
|
+
align-items: center;
|
|
5722
|
+
> * {
|
|
5723
|
+
width: auto!important;
|
|
5724
|
+
}
|
|
5725
|
+
}
|
|
5726
|
+
&.top-right {
|
|
5727
|
+
justify-content: flex-start;
|
|
5728
|
+
align-items: flex-end;
|
|
5729
|
+
> * {
|
|
5730
|
+
width: auto!important;
|
|
5731
|
+
}
|
|
5732
|
+
}
|
|
5733
|
+
&.middle-left {
|
|
5734
|
+
justify-content: center;
|
|
5735
|
+
align-items: flex-start;
|
|
5736
|
+
> * {
|
|
5737
|
+
width: auto!important;
|
|
5738
|
+
}
|
|
5739
|
+
}
|
|
5740
|
+
&.middle-right {
|
|
5741
|
+
justify-content: center;
|
|
5742
|
+
align-items: flex-end;
|
|
5743
|
+
> * {
|
|
5744
|
+
width: auto!important;
|
|
5745
|
+
}
|
|
5746
|
+
}
|
|
5747
|
+
&.bottom-left {
|
|
5748
|
+
justify-content: flex-end;
|
|
5749
|
+
align-items: flex-start;
|
|
5750
|
+
> * {
|
|
5751
|
+
width: auto!important;
|
|
5752
|
+
}
|
|
5753
|
+
}
|
|
5754
|
+
&.bottom-middle {
|
|
5755
|
+
justify-content: flex-end;
|
|
5756
|
+
align-items: center;
|
|
5757
|
+
> * {
|
|
5758
|
+
width: auto!important;
|
|
5759
|
+
}
|
|
5760
|
+
}
|
|
5761
|
+
&.stretch-left {
|
|
5762
|
+
justify-content: stretch;
|
|
5763
|
+
align-items: flex-start;
|
|
5764
|
+
> * {
|
|
5765
|
+
width: auto!important;
|
|
5766
|
+
}
|
|
5767
|
+
}
|
|
5768
|
+
&.stretch-middle {
|
|
5769
|
+
justify-content: stretch;
|
|
5770
|
+
align-items: center;
|
|
5771
|
+
> * {
|
|
5772
|
+
width: auto!important;
|
|
5773
|
+
}
|
|
5774
|
+
}
|
|
5775
|
+
&.stretch-right {
|
|
5776
|
+
justify-content: stretch;
|
|
5777
|
+
align-items: flex-end;
|
|
5778
|
+
> * {
|
|
5779
|
+
width: auto!important;
|
|
5780
|
+
}
|
|
5781
|
+
}
|
|
5782
|
+
> * {
|
|
5783
|
+
&:not(:last-child) {
|
|
5784
|
+
@include media('>=tablet') {
|
|
5785
|
+
margin: 0 0 15px !important;
|
|
5786
|
+
}
|
|
5787
|
+
}
|
|
5788
|
+
&:last-child {
|
|
5789
|
+
@include media('>=tablet') {
|
|
5790
|
+
margin: 0 !important;
|
|
5791
|
+
}
|
|
5792
|
+
}
|
|
5793
|
+
}
|
|
5716
5794
|
}
|
|
5717
5795
|
|
|
5796
|
+
/*
|
|
5797
|
+
* Class for position
|
|
5798
|
+
*/
|
|
5799
|
+
|
|
5718
5800
|
&.top-left {
|
|
5719
5801
|
justify-content: flex-start;
|
|
5720
5802
|
align-items: flex-start;
|
|
@@ -5902,6 +5984,7 @@ wac-optional-disable-container {
|
|
|
5902
5984
|
}
|
|
5903
5985
|
> * {
|
|
5904
5986
|
width: 100%;
|
|
5987
|
+
display: flex;
|
|
5905
5988
|
&:not(:last-child) {
|
|
5906
5989
|
@include media('<tablet') {
|
|
5907
5990
|
margin: 0 0 15px!important;
|
package/package.json
CHANGED
|
index 19b897a..0b0c6c3 100644
|
|
|
Binary file
|