react-autoql 3.2.1 → 3.4.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.
@@ -407,6 +407,11 @@ span.react-autoql-icon {
407
407
  -webkit-transition: all 0.3s ease;
408
408
  transition: all 0.3s ease; }
409
409
 
410
+ .react-autoql-table.tabulator .tabulator-tableHolder {
411
+ min-height: calc(100% - 40px) !important;
412
+ height: calc(100% - 40px) !important;
413
+ max-height: calc(100% - 40px) !important; }
414
+
410
415
  .react-autoql-table .tabulator-tableHolder:hover::-webkit-scrollbar-track,
411
416
  .react-autoql-table .tabulator-tableHolder:hover::-webkit-scrollbar-track-piece,
412
417
  .react-autoql-table .tabulator-tableHolder:hover::-webkit-scrollbar-corner {
@@ -440,6 +445,9 @@ the whole table when the filter button is clicked */
440
445
  .tabulator-col {
441
446
  height: auto !important; }
442
447
 
448
+ .tabulator-table .tabulator-row .tabulator-cell {
449
+ min-height: 38px; }
450
+
443
451
  /* Center header titles */
444
452
  .react-autoql-table .tabulator-header .tabulator-col {
445
453
  text-align: center !important; }
@@ -860,7 +868,7 @@ g.legendOrdinal .legendTitle tspan {
860
868
  .react-autoql-select-popup-container .react-autoql-select-popup li:hover {
861
869
  background: var(--react-autoql-hover-color, rgba(0, 0, 0, 0.04)); }
862
870
 
863
- .react-autoql-response-content-container {
871
+ .react-autoql-response-content-container:not(.html-content) {
864
872
  position: relative;
865
873
  display: flex;
866
874
  flex-direction: column;
@@ -873,13 +881,54 @@ g.legendOrdinal .legendTitle tspan {
873
881
  overflow: hidden;
874
882
  color: var(--react-autoql-text-color-primary); }
875
883
 
884
+ .react-autoql-response-content-container.html-content {
885
+ position: relative;
886
+ background-color: inherit;
887
+ text-align: left;
888
+ font-size: 14px;
889
+ height: 100%;
890
+ width: 100%;
891
+ overflow: hidden;
892
+ color: var(--react-autoql-text-color-primary); }
893
+ .react-autoql-response-content-container.html-content table th {
894
+ border-bottom: 2px solid var(--react-autoql-border-color); }
895
+ .react-autoql-response-content-container.html-content table tr:not(:last-child) {
896
+ border-bottom: 1px solid var(--react-autoql-border-color); }
897
+ .react-autoql-response-content-container.html-content table td:not(:last-child) {
898
+ border-right: 1px solid var(--react-autoql-border-color); }
899
+ .react-autoql-response-content-container.html-content table th,
900
+ .react-autoql-response-content-container.html-content table td {
901
+ padding: 5px 10px; }
902
+ .react-autoql-response-content-container.html-content * {
903
+ font-size: inherit; }
904
+ .react-autoql-response-content-container.html-content sup,
905
+ .react-autoql-response-content-container.html-content sub {
906
+ font-size: 10px; }
907
+ .react-autoql-response-content-container.html-content > *:first-child {
908
+ margin-top: 0 !important; }
909
+ .react-autoql-response-content-container.html-content > *:last-child {
910
+ margin-bottom: 0 !important; }
911
+ .react-autoql-response-content-container.html-content caption {
912
+ display: table-caption;
913
+ text-align: -webkit-center;
914
+ padding-top: unset;
915
+ padding-bottom: unset;
916
+ color: unset;
917
+ text-align: unset;
918
+ caption-side: unset; }
919
+
876
920
  .react-autoql-response-content-container.table {
877
- max-height: 100vh !important; }
921
+ max-height: 100vh !important;
922
+ overflow-y: scroll;
923
+ scrollbar-width: none; }
924
+
925
+ .react-autoql-response-content-container.table::-webkit-scrollbar {
926
+ width: 0;
927
+ height: 0; }
878
928
 
879
929
  .react-autoql-suggestion-btn {
880
930
  padding: 6px 14px;
881
931
  background: transparent;
882
- border-radius: 4px;
883
932
  font-family: inherit;
884
933
  font-size: 12px;
885
934
  margin-bottom: 5px;
@@ -887,8 +936,8 @@ g.legendOrdinal .legendTitle tspan {
887
936
  cursor: pointer;
888
937
  letter-spacing: 0.05em;
889
938
  transition: all 0.1s ease;
890
- /* border: 1px solid rgba(0, 0, 0, 0.15); */
891
- border-color: #e2e2e26e;
939
+ border: 1px solid rgba(0, 0, 0, 0.15);
940
+ border-radius: 5px;
892
941
  color: inherit; }
893
942
 
894
943
  .react-autoql-suggestion-btn:hover {
@@ -919,6 +968,9 @@ g.legendOrdinal .legendTitle tspan {
919
968
  margin-bottom: -3px;
920
969
  margin-right: 3px; }
921
970
 
971
+ .qanda-positive-feedback-checkmark.react-autoql-icon svg {
972
+ color: var(--react-autoql-success-color); }
973
+
922
974
  .react-autoql-suggestion-message {
923
975
  height: 100%;
924
976
  width: 100%;
@@ -1753,7 +1805,9 @@ g.legendOrdinal .legendTitle tspan {
1753
1805
  padding-left: 8px; }
1754
1806
 
1755
1807
  .notification-modal-content .step-btn-container {
1756
- text-align: right; }
1808
+ text-align: right;
1809
+ display: flex;
1810
+ min-height: 50px; }
1757
1811
 
1758
1812
  .expression-valid-checkmark.react-autoql-icon svg {
1759
1813
  color: var(--react-autoql-success-color); }
@@ -1918,6 +1972,11 @@ g.legendOrdinal .legendTitle tspan {
1918
1972
  .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-enable-checkbox {
1919
1973
  margin-bottom: 4px;
1920
1974
  margin-right: 8px; }
1975
+ .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-disable-checkbox {
1976
+ margin-bottom: 4px;
1977
+ margin-right: 8px;
1978
+ opacity: 0.5;
1979
+ pointer-events: none; }
1921
1980
  .react-autoql-notification-settings .react-autoql-notification-title-container {
1922
1981
  display: flex;
1923
1982
  justify-content: space-between;
@@ -1948,6 +2007,14 @@ g.legendOrdinal .legendTitle tspan {
1948
2007
  padding-right: 10px; }
1949
2008
  .react-autoql-notification-settings .react-autoql-notification-setting-display-name .react-autoql-notification-setting-display-name-message {
1950
2009
  opacity: 0.5; }
2010
+ .react-autoql-notification-settings .react-autoql-re-initialize-btn {
2011
+ vertical-align: middle;
2012
+ margin-bottom: 4px;
2013
+ height: 18px; }
2014
+ .react-autoql-notification-settings .react-autoql-re-initialize-btn-text {
2015
+ display: flex;
2016
+ align-items: center;
2017
+ margin-top: -25px; }
1951
2018
 
1952
2019
 
1953
2020
  .notification-read-only-group {
@@ -2645,7 +2712,8 @@ so we dont have to redraw the whole table */
2645
2712
  .react-autoql-cascader {
2646
2713
  position: relative;
2647
2714
  white-space: nowrap;
2648
- overflow: hidden; }
2715
+ overflow: hidden;
2716
+ min-width: 300px; }
2649
2717
  .react-autoql-cascader .options-container {
2650
2718
  transition: max-width 0.3s ease;
2651
2719
  display: inline-block;
@@ -2854,7 +2922,7 @@ so we dont have to redraw the whole table */
2854
2922
  border-radius: 50px !important;
2855
2923
  font-size: 22px; }
2856
2924
  .react-autoql-drawer .drawer-handle.default-logo {
2857
- background-color: #26a7df;
2925
+ background-color: var(--react-autoql-accent-color, #26a7df);
2858
2926
  color: #fff; }
2859
2927
  .react-autoql-drawer .drawer-handle.default-logo .react-autoql-bubbles-outlined {
2860
2928
  position: absolute;
@@ -3210,6 +3278,13 @@ so we dont have to redraw the whole table */
3210
3278
  flex-direction: column;
3211
3279
  align-items: center; }
3212
3280
 
3281
+ .dashboard-data-limit-warning-icon {
3282
+ color: var(--react-autoql-warning-color) !important;
3283
+ position: absolute !important;
3284
+ bottom: 40px;
3285
+ right: 16px;
3286
+ font-size: 20px; }
3287
+
3213
3288
  .react-autoql-dashboard-tile-drag-handle {
3214
3289
  transition: opacity 0.3s ease;
3215
3290
  position: absolute;
@@ -3714,7 +3789,9 @@ so we dont have to redraw the whole table */
3714
3789
  padding-right: 20px; }
3715
3790
  .dashboard-drilldown-modal .drilldown-hide-chart-btn.bottom {
3716
3791
  position: absolute;
3717
- bottom: 5px; }
3792
+ bottom: 5px;
3793
+ width: 100px;
3794
+ right: 0; }
3718
3795
  .dashboard-drilldown-modal .drilldown-hide-chart-btn.top {
3719
3796
  padding-top: 10px;
3720
3797
  margin-bottom: -8px; }