@innovaccer/design-system 4.5.0 → 4.6.0

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.
@@ -2635,6 +2635,10 @@ body {
2635
2635
  white-space: nowrap;
2636
2636
  }
2637
2637
 
2638
+ .bottom-0 {
2639
+ bottom: 0;
2640
+ }
2641
+
2638
2642
  /* fallback */
2639
2643
  @font-face {
2640
2644
  font-family: 'Material Symbols Rounded';
@@ -6810,6 +6814,7 @@ body {
6810
6814
  background-color: var(--primary);
6811
6815
  border-radius: var(--spacing-m);
6812
6816
  transition: var(--duration--slow-01) var(--standard-expressive-curve);
6817
+ height: 100%;
6813
6818
  }
6814
6819
 
6815
6820
  .ProgressBar-indicator--small {
@@ -6820,6 +6825,25 @@ body {
6820
6825
  height: var(--spacing);
6821
6826
  }
6822
6827
 
6828
+ .ProgressBar-indicator--indeterminate {
6829
+ background-color: var(--primary);
6830
+ border-radius: var(--spacing-m);
6831
+ position: absolute;
6832
+ bottom: 0;
6833
+ top: 0;
6834
+ width: 32%;
6835
+ animation: indeterminate-progress-bar 1.4s infinite linear;
6836
+ }
6837
+
6838
+ @keyframes indeterminate-progress-bar {
6839
+ from {
6840
+ left: -32%;
6841
+ }
6842
+ to {
6843
+ left: 100%;
6844
+ }
6845
+ }
6846
+
6823
6847
  /* Radio */
6824
6848
 
6825
6849
  .Radio {