@elliemae/ds-basic 3.22.1-rc.0 → 3.23.0-rc.1

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.
@@ -6549,155 +6549,6 @@ div.em-ds-button {
6549
6549
  .em-ds-zoom-resize .em-ds-selectbox__control--is-focused .em-ds-selectbox__value-container--has-value span {
6550
6550
  display: none; }
6551
6551
 
6552
- .em-ds-indeterminate-progress-indicator__bar {
6553
- background-color: #e0e3e8;
6554
- overflow: hidden; }
6555
-
6556
- .em-ds-indeterminate-progress-indicator__bar-indicator {
6557
- height: 0.30769rem; }
6558
-
6559
- @keyframes indeterminateAnimation {
6560
- 0% {
6561
- transform: scaleX(0.015);
6562
- transform-origin: 0% 0%;
6563
- background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 10%, #1394e5); }
6564
- 25% {
6565
- transform: scaleX(0.4); }
6566
- 50% {
6567
- transform: scaleX(0.015);
6568
- transform-origin: 100% 0%;
6569
- background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 10%, #1394e5); }
6570
- 50.1% {
6571
- transform: scaleX(0.015);
6572
- transform-origin: 100% 0%;
6573
- background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8) 10%, #1394e5); }
6574
- 75% {
6575
- transform: scaleX(0.4); }
6576
- 100% {
6577
- transform: scaleX(0.015);
6578
- transform-origin: 0% 0%;
6579
- background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8) 10%, #1394e5); } }
6580
-
6581
- @keyframes processingSuccess {
6582
- 0%, 30% {
6583
- transform: translateX(-50%);
6584
- width: 50%; }
6585
- 15% {
6586
- transform: translateX(150%);
6587
- width: 50%; }
6588
- 0%, 60% {
6589
- transform: translateX(-50%);
6590
- width: 50%; }
6591
- 45% {
6592
- transform: translateX(150%);
6593
- width: 50%; }
6594
- 0%, 90% {
6595
- transform: translateX(-50%);
6596
- width: 50%; }
6597
- 75% {
6598
- transform: translateX(150%);
6599
- width: 50%; }
6600
- 100% {
6601
- transform: translateX(0%); } }
6602
-
6603
- @keyframes processingSuccessEnd {
6604
- 0% {
6605
- transform: translateX(-50%);
6606
- width: 50%; }
6607
- 45% {
6608
- transform: translateX(150%);
6609
- width: 50%; }
6610
- 100% {
6611
- transform: translateX(0%);
6612
- background-color: #207e56; } }
6613
-
6614
- @keyframes processingFail {
6615
- 0%, 30% {
6616
- transform: translateX(-50%);
6617
- width: 50%; }
6618
- 15% {
6619
- transform: translateX(150%);
6620
- width: 50%; }
6621
- 0%, 60% {
6622
- transform: translateX(-50%);
6623
- width: 50%; }
6624
- 45% {
6625
- transform: translateX(150%);
6626
- width: 50%; }
6627
- 0%, 90% {
6628
- transform: translateX(-50%);
6629
- width: 50%; }
6630
- 75% {
6631
- transform: translateX(150%);
6632
- width: 50%; }
6633
- 100% {
6634
- transform: translateX(0%); } }
6635
-
6636
- @keyframes processingFailEnd {
6637
- 0% {
6638
- transform: translateX(-50%);
6639
- width: 50%; }
6640
- 45% {
6641
- transform: translateX(150%);
6642
- width: 50%; }
6643
- 100% {
6644
- transform: translateX(0%);
6645
- background-color: #e34256; } }
6646
-
6647
- @keyframes labelAnimation {
6648
- 0% {
6649
- opacity: 1; }
6650
- 92% {
6651
- opacity: 1; }
6652
- 95% {
6653
- opacity: 0; }
6654
- 100% {
6655
- opacity: 1; } }
6656
-
6657
- .em-ds-indeterminate-progress-indicator {
6658
- width: 100%;
6659
- padding: 0.61538rem 1.84615rem; }
6660
- .em-ds-indeterminate-progress-indicator-default .em-ds-indeterminate-progress-indicator__bar-indicator {
6661
- background-color: #697489;
6662
- width: 50%; }
6663
- .em-ds-indeterminate-progress-indicator-complete .em-ds-indeterminate-progress-indicator__bar-indicator {
6664
- background-color: #207e56; }
6665
- .em-ds-indeterminate-progress-indicator-failed .em-ds-indeterminate-progress-indicator__bar-indicator {
6666
- background-color: #e34256; }
6667
- .em-ds-indeterminate-progress-indicator-processing .em-ds-indeterminate-progress-indicator__bar-indicator {
6668
- background-color: #1394e5;
6669
- width: 50%; }
6670
- .em-ds-indeterminate-progress-indicator-processing.animated .em-ds-indeterminate-progress-indicator__bar-indicator {
6671
- width: 100%;
6672
- animation: indeterminateAnimation 2s cubic-bezier(0.645, 0.045, 0.355, 1) infinite; }
6673
- .em-ds-indeterminate-progress-indicator-processing.em-ds-indeterminate-progress-indicator-complete .em-ds-indeterminate-progress-indicator__bar-indicator {
6674
- animation: processingSuccessEnd 1s ease-in-out;
6675
- animation-fill-mode: forwards; }
6676
- .em-ds-indeterminate-progress-indicator-processing.em-ds-indeterminate-progress-indicator-complete .em-ds-indeterminate-progress-indicator-tooltip-text {
6677
- animation: labelAnimation 1s ease-in-out; }
6678
- .em-ds-indeterminate-progress-indicator-processing-complete .em-ds-indeterminate-progress-indicator__bar-indicator {
6679
- background-color: #1394e5;
6680
- width: 50%;
6681
- animation: processingSuccess 4s infinite;
6682
- animation-fill-mode: forwards; }
6683
- .em-ds-indeterminate-progress-indicator-processing-complete.em-ds-indeterminate-progress-indicator-complete .em-ds-indeterminate-progress-indicator__bar-indicator {
6684
- animation: processingSuccessEnd 1s ease-in-out;
6685
- animation-fill-mode: forwards; }
6686
- .em-ds-indeterminate-progress-indicator-processing-complete.em-ds-indeterminate-progress-indicator-complete .em-ds-indeterminate-progress-indicator-tooltip-text {
6687
- animation: labelAnimation 1s ease-in-out; }
6688
- .em-ds-indeterminate-progress-indicator-processing-fail .em-ds-indeterminate-progress-indicator__bar-indicator {
6689
- background-color: #1394e5;
6690
- width: 50%;
6691
- animation: processingFail 4s infinite;
6692
- animation-fill-mode: forwards; }
6693
- .em-ds-indeterminate-progress-indicator-processing-fail.em-ds-indeterminate-progress-indicator-failed .em-ds-indeterminate-progress-indicator__bar-indicator {
6694
- animation: processingFailEnd 1s ease-in-out;
6695
- animation-fill-mode: forwards; }
6696
- .em-ds-indeterminate-progress-indicator-processing-fail.em-ds-indeterminate-progress-indicator-failed .em-ds-indeterminate-progress-indicator-tooltip-text {
6697
- animation: labelAnimation 1s ease-in-out; }
6698
- .em-ds-indeterminate-progress-indicator.line-only {
6699
- padding: 0; }
6700
-
6701
6552
  .em-ds-page-number {
6702
6553
  position: relative;
6703
6554
  display: inline-flex;