react-autoql 6.1.5 → 6.2.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.
Binary file
@@ -896,6 +896,24 @@ g.legendOrdinal .legendTitle tspan {
896
896
  background: var(--react-autoql-background-color-secondary);
897
897
  padding: 5px; }
898
898
 
899
+ .chart-loader {
900
+ position: absolute;
901
+ display: flex;
902
+ justify-content: center;
903
+ align-items: center;
904
+ pointer-events: none;
905
+ opacity: 0.6;
906
+ background-color: var(--react-autoql-background-color-primary);
907
+ color: var(--react-autoql-accent-color);
908
+ border-radius: 10%; }
909
+ .chart-loader.chart-page-loader {
910
+ top: 25%;
911
+ bottom: 0;
912
+ right: 0;
913
+ left: 50%;
914
+ width: 40px;
915
+ height: 40px; }
916
+
899
917
  .react-autoql-select {
900
918
  border: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.1));
901
919
  border-radius: 4px;
@@ -1789,6 +1807,9 @@ g.legendOrdinal .legendTitle tspan {
1789
1807
  font-size: 15px;
1790
1808
  line-height: 15px;
1791
1809
  padding-top: 2px; }
1810
+ .react-autoql-step-title.disabled {
1811
+ cursor: default;
1812
+ color: var(--react-autoql-text-color-placeholder, lightgray); }
1792
1813
 
1793
1814
  .react-autoql-step-subtitle {
1794
1815
  font-size: 13px;
@@ -1951,7 +1972,7 @@ g.legendOrdinal .legendTitle tspan {
1951
1972
  .notification-modal-content .step-btn-container {
1952
1973
  text-align: right;
1953
1974
  display: flex;
1954
- min-height: 20px; }
1975
+ min-height: 30px; }
1955
1976
 
1956
1977
  .expression-valid-checkmark.react-autoql-icon svg {
1957
1978
  color: var(--react-autoql-success-color); }
Binary file