@wizishop/angular-components 15.1.36 → 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
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;
|
|
@@ -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;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|