react-autoql 4.7.1 → 4.8.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.
@@ -1,3 +1,10 @@
1
+ .react-autoql-spinner-centered {
2
+ width: 100%;
3
+ text-align: center;
4
+ padding-top: 10px; }
5
+
6
+ .react-autosuggest__suggestions-container--open::-webkit-scrollbar {
7
+ visibility: visible !important; }
1
8
 
2
9
  .react-autoql-icon {
3
10
  position: relative;
@@ -23,6 +30,7 @@ span.react-autoql-icon {
23
30
  padding: 0;
24
31
  opacity: 1;
25
32
  height: 1em;
33
+ width: 1em;
26
34
  margin-bottom: -0.15em; }
27
35
 
28
36
  .slack-logo {
@@ -229,7 +237,7 @@ span.react-autoql-icon {
229
237
  display: block;
230
238
  width: calc(100% - 20px);
231
239
  height: unset;
232
- border-radius: 24px;
240
+ border-radius: 15px;
233
241
  font-family: inherit;
234
242
  font-size: 15px;
235
243
  font-weight: normal;
@@ -238,7 +246,7 @@ span.react-autoql-icon {
238
246
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
239
247
  /* Default styles outside of data messenger */
240
248
  background-color: var(--react-autoql-background-color-primary);
241
- color: #5d5d5d; }
249
+ color: var(--react-autoql-text-color-primary); }
242
250
 
243
251
  .react-autoql-bar-container.autosuggest-top
244
252
  .react-autosuggest__suggestions-container--open {
@@ -287,7 +295,7 @@ span.react-autoql-icon {
287
295
  .react-autoql-bar-container .react-autosuggest__section-title {
288
296
  padding: 10px 0 0 10px;
289
297
  font-size: 12px;
290
- color: #777; }
298
+ color: var(--react-autoql-text-color-placeholder); }
291
299
 
292
300
  .input-response-loading-container {
293
301
  position: absolute;
@@ -311,7 +319,8 @@ span.react-autoql-icon {
311
319
  max-width: 100%;
312
320
  width: 100%;
313
321
  background-color: inherit;
314
- position: relative; }
322
+ position: relative;
323
+ display: flex; }
315
324
  .react-autoql-table-container.infinite:not(.last-page) .tabulator-row:last-child {
316
325
  margin-bottom: 40px; }
317
326
  .react-autoql-table-container .table-loader {
@@ -323,7 +332,7 @@ span.react-autoql-icon {
323
332
  background-color: transparent;
324
333
  color: var(--react-autoql-accent-color); }
325
334
  .react-autoql-table-container .table-loader.table-page-loader {
326
- top: 0;
335
+ top: 50px;
327
336
  bottom: 0;
328
337
  right: 0;
329
338
  left: 0; }
@@ -333,7 +342,7 @@ span.react-autoql-icon {
333
342
  z-index: 0; }
334
343
 
335
344
  .react-autoql-table {
336
- margin-bottom: 0; }
345
+ margin-bottom: 0 !important; }
337
346
 
338
347
  /* tabulator */
339
348
  .react-autoql-table.tabulator,
@@ -344,10 +353,32 @@ span.react-autoql-icon {
344
353
  .react-autoql-table.tabulator .tabulator-tableHolder .tabulator-table {
345
354
  background-color: inherit; }
346
355
 
356
+ .react-autoql-table-container:not(.supports-drilldown)
357
+ .react-autoql-table.tabulator
358
+ .tabulator-row
359
+ .tabulator-cell {
360
+ cursor: text; }
361
+
347
362
  .react-autoql-table-container.supports-drilldown
348
363
  .react-autoql-table.tabulator
349
- .tabulator-row.tabulator-unselectable:hover {
350
- cursor: pointer !important; }
364
+ .tabulator-row
365
+ .tabulator-cell.pivot-category {
366
+ font-weight: 600; }
367
+
368
+ .react-autoql-table-container.supports-drilldown
369
+ .react-autoql-table.tabulator
370
+ .tabulator-row
371
+ .tabulator-cell:not(.pivot-category) {
372
+ transition: color 0.1s ease;
373
+ cursor: pointer; }
374
+
375
+ .react-autoql-table-container.supports-drilldown.pivot .react-autoql-table.tabulator
376
+ .tabulator-row
377
+ .tabulator-cell:not(.pivot-category):hover,
378
+ .react-autoql-table-container.supports-drilldown:not(.pivot) .react-autoql-table.tabulator
379
+ .tabulator-row:hover
380
+ .tabulator-cell {
381
+ color: var(--react-autoql-accent-color); }
351
382
 
352
383
  .react-autoql-table.tabulator
353
384
  .tabulator-header
@@ -364,13 +395,15 @@ span.react-autoql-icon {
364
395
 
365
396
  .react-autoql-table.tabulator {
366
397
  background-color: inherit;
367
- height: 100%; }
398
+ flex: 1; }
368
399
 
369
400
  .react-autoql-table .tabulator-row {
370
401
  /* user-select: none; This breaks copy/paste */
371
402
  border-bottom: 1px solid var(--react-autoql-border-color);
372
403
  background-color: var(--react-autoql-background-color-primary);
373
404
  z-index: 1; }
405
+ .react-autoql-table .tabulator-row:last-child {
406
+ border-bottom: none; }
374
407
 
375
408
  .tabulator-cell:not(:first-child) {
376
409
  border-left: 1px solid !important;
@@ -382,7 +415,7 @@ span.react-autoql-icon {
382
415
  .react-autoql-table-container.resizing {
383
416
  width: 100vw; }
384
417
  .react-autoql-table-container.resizing .react-autoql-table {
385
- display: none; }
418
+ visibility: hidden; }
386
419
 
387
420
  .react-autoql-table-container.filtering {
388
421
  min-height: 125px; }
@@ -409,9 +442,9 @@ span.react-autoql-icon {
409
442
  .react-autoql-table-container:not(.filtering) .react-autoql-table .tabulator-header-filter {
410
443
  display: none; }
411
444
  .react-autoql-table-container:not(.filtering) .react-autoql-table .tabulator-tableHolder {
412
- min-height: calc(100% - 40px) !important;
413
- height: calc(100% - 40px) !important;
414
- max-height: calc(100% - 40px) !important; }
445
+ min-height: calc(100% - 34px) !important;
446
+ height: calc(100% - 34px) !important;
447
+ max-height: calc(100% - 34px) !important; }
415
448
 
416
449
  .react-autoql-table.tabulator
417
450
  .tabulator-header
@@ -465,9 +498,12 @@ span.react-autoql-icon {
465
498
  -webkit-transition: all 0.3s ease;
466
499
  transition: all 0.3s ease; }
467
500
 
501
+ .react-autoql-table .tabulator-tableHolder:hover::-webkit-scrollbar-corner {
502
+ background-color: transparent; }
503
+
468
504
  .react-autoql-table .tabulator-tableHolder:hover::-webkit-scrollbar-track,
469
505
  .react-autoql-table .tabulator-tableHolder:hover::-webkit-scrollbar-track-piece,
470
- .react-autoql-table .tabulator-tableHolder:hover::-webkit-scrollbar-corner {
506
+ .react-autoql-table .tabulator-tableHolder::-webkit-scrollbar-corner {
471
507
  background-color: transparent; }
472
508
 
473
509
  .react-autoql-table .tabulator-tableHolder:hover::-webkit-scrollbar-thumb {
@@ -486,7 +522,7 @@ span.react-autoql-icon {
486
522
  border: 1px solid #28a8e0; }
487
523
 
488
524
  .tabulator-table .tabulator-row .tabulator-cell {
489
- min-height: 38px; }
525
+ min-height: 32px; }
490
526
 
491
527
  /* Center header titles */
492
528
  .react-autoql-table .tabulator-header .tabulator-col {
@@ -773,51 +809,58 @@ g.legendOrdinal .legendTitle tspan {
773
809
  flex-grow: 1;
774
810
  flex-shrink: 1;
775
811
  overflow: hidden;
776
- transition: opacity 0.2s ease; }
812
+ transition: opacity 0.2s ease;
813
+ /* These are not inline styles since they do not apply to saved PNG charts */ }
777
814
  .react-autoql-chart-container svg {
778
815
  background: transparent !important; }
779
816
  .react-autoql-chart-container.loading {
780
817
  opacity: 0;
781
818
  transition: none; }
782
-
783
- /* These are not inline styles since they do not apply to saved PNG charts */
784
- .react-autoql-chart-container .square {
785
- transition: fill-opacity 0.3s ease; }
786
-
787
- .react-autoql-chart-container .bar,
788
- .react-autoql-chart-container .stacked-bar,
789
- .react-autoql-chart-container .circle {
790
- transition: fill-opacity 0.3s ease;
791
- fill-opacity: 0.7 !important; }
792
-
793
- .react-autoql-chart-container .bar:hover,
794
- .react-autoql-chart-container .stacked-bar:hover,
795
- .react-autoql-chart-container .circle:hover,
796
- .react-autoql-chart-container .square:hover {
797
- fill-opacity: 1 !important; }
798
-
799
- .react-autoql-chart-container .vertex-dot:hover,
800
- .react-autoql-chart-container .line-dot:hover,
801
- .react-autoql-chart-container .line-dot.active {
802
- opacity: 1 !important; }
803
-
804
- .react-autoql-chart-container .bar.active,
805
- .react-autoql-chart-container .stacked-bar.active {
806
- fill-opacity: 1 !important; }
807
-
808
- .axis {
809
- font-family: inherit; }
810
-
811
- .pie-chart .labels {
812
- font-size: 12px;
813
- font-weight: 600; }
814
-
815
- .react-autoql-chart-container g.tick {
816
- transition: opacity 0.3s ease; }
817
-
818
- .react-autoql-chart-container .react-autoql-heatmap-chart g.tick line,
819
- .react-autoql-chart-container .react-autoql-bubble-chart g.tick line {
820
- opacity: 0 !important; }
819
+ .react-autoql-chart-container .bar,
820
+ .react-autoql-chart-container .stacked-bar,
821
+ .react-autoql-chart-container .stacked-column,
822
+ .react-autoql-chart-container .circle,
823
+ .react-autoql-chart-container .stacked-area {
824
+ transition: fill-opacity 0.3s ease;
825
+ fill-opacity: 0.7 !important;
826
+ outline: none !important; }
827
+ .react-autoql-chart-container .bar:hover, .react-autoql-chart-container .bar.active,
828
+ .react-autoql-chart-container .stacked-bar:hover,
829
+ .react-autoql-chart-container .stacked-bar.active,
830
+ .react-autoql-chart-container .stacked-column:hover,
831
+ .react-autoql-chart-container .stacked-column.active,
832
+ .react-autoql-chart-container .circle:hover,
833
+ .react-autoql-chart-container .circle.active,
834
+ .react-autoql-chart-container .stacked-area:hover,
835
+ .react-autoql-chart-container .stacked-area.active {
836
+ fill-opacity: 1 !important; }
837
+ .react-autoql-chart-container .line-dot,
838
+ .react-autoql-chart-container .vertex-dot {
839
+ transition: opacity 0.3s ease;
840
+ opacity: 0 !important;
841
+ outline: none !important; }
842
+ .react-autoql-chart-container .line-dot:hover, .react-autoql-chart-container .line-dot.active,
843
+ .react-autoql-chart-container .vertex-dot:hover,
844
+ .react-autoql-chart-container .vertex-dot.active {
845
+ opacity: 1 !important; }
846
+ .react-autoql-chart-container .square {
847
+ transition: fill 0.2s ease;
848
+ outline: none !important; }
849
+ .react-autoql-chart-container .square:hover, .react-autoql-chart-container .square.active {
850
+ stroke-opacity: 0.5;
851
+ stroke: currentColor;
852
+ stroke-width: 1px;
853
+ fill: currentColor; }
854
+ .react-autoql-chart-container g.tick {
855
+ transition: opacity 0.3s ease; }
856
+ .react-autoql-chart-container .react-autoql-heatmap-chart g.tick line,
857
+ .react-autoql-chart-container .react-autoql-bubble-chart g.tick line {
858
+ opacity: 0 !important; }
859
+ .react-autoql-chart-container .axis {
860
+ font-family: inherit; }
861
+ .react-autoql-chart-container .pie-chart .labels {
862
+ font-size: 12px;
863
+ font-weight: 600; }
821
864
 
822
865
  .axis-selector-container {
823
866
  background: var(--react-autoql-background-color-primary);
@@ -828,7 +871,8 @@ g.legendOrdinal .legendTitle tspan {
828
871
  min-width: 150px;
829
872
  overflow-y: auto; }
830
873
  .axis-selector-container .axis-select-option.active {
831
- background: var(--react-autoql-hover-color); }
874
+ background: var(--react-autoql-hover-color);
875
+ outline: none !important; }
832
876
  .axis-selector-container .react-autoql-checkbox {
833
877
  margin-left: 20px; }
834
878
  .axis-selector-container .react-autoql-checkbox .react-autoql-checkbox__input {
@@ -1023,6 +1067,8 @@ g.legendOrdinal .legendTitle tspan {
1023
1067
  max-height: 150px;
1024
1068
  width: 100%;
1025
1069
  margin-top: 10px; }
1070
+ .query-output-footer.no-margin {
1071
+ margin: 0; }
1026
1072
 
1027
1073
  .dashboard-data-limit-warning-icon {
1028
1074
  color: var(--react-autoql-warning-color) !important;
@@ -1498,7 +1544,6 @@ g.legendOrdinal .legendTitle tspan {
1498
1544
  display: flex;
1499
1545
  flex-direction: column;
1500
1546
  flex-basis: auto;
1501
- --accent-color: #26a7df;
1502
1547
  position: relative;
1503
1548
  overflow: hidden;
1504
1549
  background: var(--react-autoql-background-color-primary, #fff);
@@ -1942,6 +1987,21 @@ g.legendOrdinal .legendTitle tspan {
1942
1987
  color: var(--react-autoql-danger-color);
1943
1988
  display: 'inline-block'; }
1944
1989
 
1990
+ ::-webkit-scrollbar {
1991
+ visibility: hidden;
1992
+ width: 6px;
1993
+ height: 6px; }
1994
+
1995
+ .scrollbar-content-container {
1996
+ position: absolute;
1997
+ height: 100%;
1998
+ width: 100%; }
1999
+
2000
+ .thumb-vertical,
2001
+ .thumb-horizontal {
2002
+ border-radius: 3px;
2003
+ background-color: var(--react-autoql-highlight-color);
2004
+ opacity: 0.2; }
1945
2005
 
1946
2006
  .notification-list-loading-container {
1947
2007
  text-align: center;
@@ -1972,9 +2032,6 @@ g.legendOrdinal .legendTitle tspan {
1972
2032
  .react-autoql-notification-list-container .notification-feed-list {
1973
2033
  padding: 0 20px;
1974
2034
  padding-top: 0; }
1975
- .react-autoql-notification-list-container .loader {
1976
- text-align: center;
1977
- margin: 10px; }
1978
2035
 
1979
2036
  .react-autoql-notification-dismiss-all {
1980
2037
  flex: 0;
@@ -2568,7 +2625,7 @@ g.legendOrdinal .legendTitle tspan {
2568
2625
  width: 100%;
2569
2626
  top: -31px;
2570
2627
  right: 0;
2571
- z-index: 1;
2628
+ z-index: 3;
2572
2629
  pointer-events: none;
2573
2630
  visibility: hidden;
2574
2631
  opacity: 0; }
@@ -2615,23 +2672,8 @@ g.legendOrdinal .legendTitle tspan {
2615
2672
  transform: scale(1);
2616
2673
  transform-origin: 0% 100%; } }
2617
2674
 
2618
- .react-autoql-drawer .chat-message-container {
2619
- scroll-behavior: smooth !important;
2620
- max-height: calc(100% - 140px);
2621
- overflow-y: auto;
2622
- overflow-x: hidden;
2623
- flex: 1; }
2624
- .react-autoql-drawer .chat-message-container .custom-scrollbar-container {
2625
- overflow-x: hidden !important;
2626
- margin-bottom: 0 !important; }
2627
-
2628
- /* custom scrollbar */
2629
- .react-autoql-drawer .chat-message-container > div:last-child {
2630
- opacity: 0;
2631
- transition: opacity 200ms ease; }
2632
-
2633
- .react-autoql-drawer .chat-message-container:hover > div:last-child {
2634
- opacity: 1; }
2675
+ .chat-content-scroll-container {
2676
+ flex: 1 0 0px; }
2635
2677
 
2636
2678
  .react-autoql-drawer .response-loading-container {
2637
2679
  position: absolute;
@@ -2639,6 +2681,7 @@ g.legendOrdinal .legendTitle tspan {
2639
2681
  left: 20px; }
2640
2682
 
2641
2683
  .react-autoql-drawer .chat-bar-container {
2684
+ flex: 0 0 auto;
2642
2685
  position: relative;
2643
2686
  padding: 10px; }
2644
2687
 
@@ -2695,7 +2738,8 @@ g.legendOrdinal .legendTitle tspan {
2695
2738
  display: flex;
2696
2739
  justify-content: space-between;
2697
2740
  border-radius: 2px;
2698
- padding-left: 10px; }
2741
+ padding-left: 10px;
2742
+ transition: color 0.1s ease, background-color 0.2s ease; }
2699
2743
  .react-autoql-cascader .options-container .option .option-arrow {
2700
2744
  opacity: 0.7; }
2701
2745
  .react-autoql-cascader .options-container .option .option-execute-icon {
@@ -2711,6 +2755,10 @@ g.legendOrdinal .legendTitle tspan {
2711
2755
  .react-autoql-cascader .options-container:not(:last-child) {
2712
2756
  border-right: 1px solid #d3d3d352; }
2713
2757
 
2758
+ .react-autoql-infinite-scroll-container {
2759
+ height: 100%;
2760
+ overflow: hidden; }
2761
+
2714
2762
  .query-tips-page-container {
2715
2763
  height: 100%;
2716
2764
  padding: 10px;
@@ -2837,6 +2885,378 @@ g.legendOrdinal .legendTitle tspan {
2837
2885
  100% {
2838
2886
  opacity: 1; } }
2839
2887
 
2888
+ .react-autoql-chatbar-input-container.data-explorer {
2889
+ flex: 0;
2890
+ padding: 10px;
2891
+ margin: 10px;
2892
+ margin-bottom: 0; }
2893
+ .react-autoql-chatbar-input-container.data-explorer.no-suggestions .react-autosuggest__suggestions-container--open
2894
+ .react-autosuggest__section-container:last-child
2895
+ ul {
2896
+ pointer-events: none;
2897
+ visibility: hidden;
2898
+ background: transparent !important;
2899
+ opacity: 0; }
2900
+ .react-autoql-chatbar-input-container.data-explorer.data-explorer {
2901
+ -webkit-animation: slideDown 0.5s ease;
2902
+ animation: slideDown 0.5s ease; }
2903
+ .react-autoql-chatbar-input-container.data-explorer .react-autoql-chatbar-input {
2904
+ margin: 0;
2905
+ width: 100%;
2906
+ padding-left: 46px;
2907
+ padding-right: 46px; }
2908
+ .react-autoql-chatbar-input-container.data-explorer .data-explorer-no-suggestions {
2909
+ padding-left: 10px;
2910
+ font-size: 14px; }
2911
+ .react-autoql-chatbar-input-container.data-explorer .react-autosuggest__container {
2912
+ position: relative; }
2913
+ .react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestions-container--open {
2914
+ position: absolute;
2915
+ margin: 0;
2916
+ padding-top: 5px;
2917
+ padding-bottom: 5px;
2918
+ display: block;
2919
+ width: 100%;
2920
+ height: unset;
2921
+ max-height: 250px;
2922
+ border-radius: 15px;
2923
+ font-family: inherit;
2924
+ font-size: 15px;
2925
+ font-weight: normal;
2926
+ z-index: 2;
2927
+ overflow: auto;
2928
+ margin-top: 3px;
2929
+ border: 1px solid var(--react-autoql-border-color);
2930
+ box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
2931
+ background-color: var(--react-autoql-background-color-primary);
2932
+ color: var(--react-autoql-text-color-primary); }
2933
+ .react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestions-list {
2934
+ margin: 0;
2935
+ padding: 0;
2936
+ list-style-type: none; }
2937
+ .react-autoql-chatbar-input-container.data-explorer .react-autosuggest__input--focused {
2938
+ outline: none; }
2939
+ .react-autoql-chatbar-input-container.data-explorer .react-autosuggest__input::-ms-clear,
2940
+ .react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestions-container {
2941
+ display: none; }
2942
+ .react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestion {
2943
+ cursor: pointer;
2944
+ padding: 2px;
2945
+ padding-left: 18px;
2946
+ letter-spacing: 0.05em;
2947
+ line-height: 22.5px; }
2948
+ .react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestion--highlighted {
2949
+ background-color: rgba(0, 0, 0, 0.1) !important; }
2950
+ .react-autoql-chatbar-input-container.data-explorer .react-autosuggest__section-title {
2951
+ padding: 10px 0 0 10px;
2952
+ font-size: 12px;
2953
+ color: var(--react-autoql-text-color-placeholder); }
2954
+
2955
+ .data-explorer-section {
2956
+ flex: 0 1 auto;
2957
+ max-height: 100%;
2958
+ position: relative;
2959
+ overflow: hidden;
2960
+ display: flex;
2961
+ flex-direction: column;
2962
+ margin: 0 10px; }
2963
+ .data-explorer-section.collapsed, .data-explorer-section.data-preview-section,
2964
+ .data-explorer-section.data-preview-section .react-autoql-card-content,
2965
+ .data-explorer-section.data-preview-section .react-autoql-card-user-content {
2966
+ flex: 0 0 auto !important; }
2967
+ .data-explorer-section .data-preview-scroll-container,
2968
+ .data-explorer-section .custom-scrollbar-view {
2969
+ scroll-behavior: smooth !important;
2970
+ width: 100%;
2971
+ height: 100%;
2972
+ white-space: nowrap;
2973
+ text-overflow: ellipsis;
2974
+ overflow: auto; }
2975
+ .data-explorer-section .data-explorer-data-preview {
2976
+ flex: 0 0 auto;
2977
+ overflow: hidden;
2978
+ min-height: 0;
2979
+ display: flex;
2980
+ flex-direction: column; }
2981
+ .data-explorer-section .data-explorer-data-preview .data-preview-loading-container {
2982
+ height: 200px;
2983
+ width: 100%;
2984
+ display: flex;
2985
+ justify-content: center;
2986
+ align-items: center; }
2987
+ .data-explorer-section .data-explorer-data-preview .tabulator-col-content,
2988
+ .data-explorer-section .data-explorer-data-preview .tabulator-cell {
2989
+ cursor: pointer !important;
2990
+ transition: color 0.2s ease; }
2991
+ .data-explorer-section .data-explorer-data-preview .tabulator-col-content:hover,
2992
+ .data-explorer-section .data-explorer-data-preview .tabulator-cell:hover {
2993
+ color: var(--react-autoql-accent-color);
2994
+ font-weight: 600; }
2995
+ .data-explorer-section .data-explorer-data-preview .data-preview {
2996
+ max-height: 100%;
2997
+ padding: 0 5px; }
2998
+ .data-explorer-section .data-explorer-data-preview table {
2999
+ table-layout: fixed;
3000
+ border-collapse: collapse; }
3001
+ .data-explorer-section .data-explorer-data-preview thead th {
3002
+ top: 0;
3003
+ padding: 0 6px;
3004
+ height: 35px;
3005
+ position: -webkit-sticky;
3006
+ position: sticky;
3007
+ background: var(--react-autoql-background-color-primary);
3008
+ box-shadow: inset 0 -2px 0 var(--react-autoql-border-color);
3009
+ transition: color 0.2s ease;
3010
+ cursor: pointer;
3011
+ color: var(--react-autoql-accent-color); }
3012
+ .data-explorer-section .data-explorer-data-preview thead th .data-preview-col-header {
3013
+ height: 100%;
3014
+ display: flex;
3015
+ flex-direction: row;
3016
+ align-items: center;
3017
+ justify-content: center; }
3018
+ .data-explorer-section .data-explorer-data-preview tbody tr {
3019
+ height: 27px; }
3020
+ .data-explorer-section .data-explorer-data-preview tbody tr:not(:last-child) {
3021
+ border-bottom: 1px solid var(--react-autoql-border-color); }
3022
+ .data-explorer-section .data-explorer-data-preview tbody tr td {
3023
+ padding: 0 10px; }
3024
+ .data-explorer-section .data-explorer-data-preview tbody tr td:not(:last-child) {
3025
+ border-right: 1px solid var(--react-autoql-border-color); }
3026
+
3027
+ .data-explorer-page-container .data-preview-tooltip {
3028
+ --border-color: var(--react-autoql-border-color);
3029
+ --bg-color: var(--react-autoql-background-color-primary);
3030
+ opacity: 1 !important;
3031
+ padding: 15px 25px !important;
3032
+ font-size: 0.875rem !important;
3033
+ background: var(--bg-color);
3034
+ border: 2px solid var(--border-color);
3035
+ color: var(--react-autoql-text-color);
3036
+ box-shadow: rgba(102, 105, 109, 0.2) 0px 8px 24px; }
3037
+ .data-explorer-page-container .data-preview-tooltip.place-bottom::before {
3038
+ border-bottom-color: var(--border-color) !important; }
3039
+ .data-explorer-page-container .data-preview-tooltip.place-bottom::after {
3040
+ border-bottom-color: var(--bg-color) !important; }
3041
+ .data-explorer-page-container .data-preview-tooltip.place-top::before {
3042
+ border-top-color: var(--border-color) !important; }
3043
+ .data-explorer-page-container .data-preview-tooltip.place-top::after {
3044
+ border-top-color: var(--bg-color) !important; }
3045
+ .data-explorer-page-container .data-preview-tooltip.place-right::before {
3046
+ border-right-color: var(--border-color) !important; }
3047
+ .data-explorer-page-container .data-preview-tooltip.place-right::after {
3048
+ border-right-color: var(--bg-color) !important; }
3049
+ .data-explorer-page-container .data-preview-tooltip.place-left::before {
3050
+ border-left-color: var(--border-color) !important; }
3051
+ .data-explorer-page-container .data-preview-tooltip.place-left::after {
3052
+ border-left-color: var(--bg-color) !important; }
3053
+ .data-explorer-page-container .data-preview-tooltip p {
3054
+ margin-bottom: 0; }
3055
+ .data-explorer-page-container .data-preview-tooltip .data-explorer-tooltip-section:not(:last-child) {
3056
+ margin-bottom: 5px; }
3057
+ .data-explorer-page-container .data-preview-tooltip .data-explorer-tooltip-title {
3058
+ font-weight: 600; }
3059
+ .data-explorer-page-container .data-preview-tooltip .data-explorer-tooltip-query {
3060
+ cursor: pointer;
3061
+ color: var(--react-autoql-accent-color);
3062
+ font-weight: 600; }
3063
+ .data-explorer-page-container .data-preview-tooltip .data-explorer-tooltip-query:hover {
3064
+ text-decoration: underline; }
3065
+ .data-explorer-page-container .data-preview-tooltip .data-explorer-tooltip-query .react-autoql-icon svg {
3066
+ stroke-width: 1px;
3067
+ stroke: currentColor; }
3068
+
3069
+ .react-autoql-card {
3070
+ background: var(--react-autoql-background-color-primary);
3071
+ border-radius: 6px;
3072
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13);
3073
+ padding: 15px;
3074
+ margin: 10px;
3075
+ overflow: hidden;
3076
+ display: flex;
3077
+ flex-direction: column;
3078
+ flex-wrap: nowrap; }
3079
+ .react-autoql-card .react-autoql-card-content {
3080
+ display: flex;
3081
+ flex-direction: column;
3082
+ flex-wrap: nowrap;
3083
+ transition: max-height 0.3s ease, opacity 0.3s ease;
3084
+ opacity: 1;
3085
+ flex: 0 1 auto;
3086
+ min-height: 0;
3087
+ overflow: hidden; }
3088
+ .react-autoql-card .react-autoql-card-content .react-autoql-card-user-content {
3089
+ flex: 0 1 auto;
3090
+ min-height: 100px;
3091
+ max-height: 100%;
3092
+ position: relative;
3093
+ overflow: hidden;
3094
+ display: flex;
3095
+ flex-direction: column;
3096
+ flex-wrap: nowrap; }
3097
+ .react-autoql-card.collapsed .react-autoql-card-content {
3098
+ pointer-events: none;
3099
+ opacity: 0; }
3100
+ .react-autoql-card .react-autoql-card-title {
3101
+ cursor: pointer;
3102
+ padding: 0 10px;
3103
+ flex: 0 0 auto;
3104
+ display: flex;
3105
+ justify-content: space-between;
3106
+ align-items: center;
3107
+ flex-wrap: nowrap;
3108
+ font-size: 18px;
3109
+ margin: 4px 0px;
3110
+ font-weight: 600; }
3111
+ .react-autoql-card .react-autoql-card-subtitle {
3112
+ padding: 0px 10px 5px 10px;
3113
+ flex: 0 0 auto; }
3114
+
3115
+ .react-autoql-chip {
3116
+ display: inline-flex;
3117
+ flex-direction: row;
3118
+ flex-wrap: nowrap;
3119
+ justify-content: space-between;
3120
+ border-radius: 5px;
3121
+ padding: 5px 8px;
3122
+ border: 1px solid transparent;
3123
+ background-color: var(--react-autoql-background-color-primary);
3124
+ color: var(--react-autoql-text-color-primary);
3125
+ transition: all 0.2s ease;
3126
+ margin-right: 10px;
3127
+ margin-top: 5px;
3128
+ box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
3129
+ cursor: pointer; }
3130
+ .react-autoql-chip:hover {
3131
+ border: 1px solid var(--react-autoql-accent-color); }
3132
+ .react-autoql-chip.selected {
3133
+ background-color: var(--react-autoql-accent-color);
3134
+ color: var(--react-autoql-accent-text-color); }
3135
+ .react-autoql-chip .react-autoql-chip-content {
3136
+ font-weight: 600; }
3137
+ .react-autoql-chip .react-autoql-chip-delete-btn {
3138
+ margin-left: 8px;
3139
+ transition: opacity 0.2s ease;
3140
+ opacity: 0.7; }
3141
+ .react-autoql-chip .react-autoql-chip-delete-btn:hover {
3142
+ opacity: 1; }
3143
+
3144
+ .data-explorer-page-container {
3145
+ height: 100%;
3146
+ padding: 0;
3147
+ display: flex;
3148
+ flex-direction: column;
3149
+ justify-content: flex-start;
3150
+ flex-wrap: nowrap;
3151
+ flex: 1 1;
3152
+ min-height: 0;
3153
+ color: var(--react-autoql-text-color-primary); }
3154
+ .data-explorer-page-container .data-explorer-intro-message {
3155
+ color: var(--react-autoql-text-color-primary);
3156
+ text-align: center;
3157
+ margin: 50px auto;
3158
+ padding: 0 40px;
3159
+ font-size: 15px; }
3160
+ .data-explorer-page-container .data-explorer-intro-message .intro-message-list-container {
3161
+ display: flex;
3162
+ justify-content: center;
3163
+ align-items: center;
3164
+ text-align: left; }
3165
+ .data-explorer-page-container .data-explorer-topic-icon {
3166
+ margin-right: 5px; }
3167
+ .data-explorer-page-container .exploring-title {
3168
+ display: flex;
3169
+ flex-direction: row;
3170
+ justify-content: space-between;
3171
+ flex-wrap: nowrap;
3172
+ align-items: flex-end;
3173
+ font-size: 16px;
3174
+ margin-bottom: 10px;
3175
+ padding: 0px 30px; }
3176
+ .data-explorer-page-container .exploring-title .clear-explorer-content-btn {
3177
+ cursor: pointer;
3178
+ font-size: 14px; }
3179
+ .data-explorer-page-container .exploring-title .clear-explorer-content-btn:hover {
3180
+ color: var(--react-autoql-accent-color); }
3181
+ .data-explorer-page-container .data-explorer-result-container {
3182
+ color: var(--react-autoql-text-color-primary);
3183
+ flex: 1;
3184
+ width: 100%;
3185
+ overflow: auto;
3186
+ padding-left: 5px;
3187
+ min-height: 0; }
3188
+ .data-explorer-page-container .data-explorer-result-container .data-explorer-sections-container {
3189
+ position: relative;
3190
+ height: 100%;
3191
+ width: 100%;
3192
+ display: flex;
3193
+ flex-direction: column;
3194
+ justify-content: flex-start;
3195
+ overflow: hidden; }
3196
+ .data-explorer-page-container .data-explorer-result-container .data-explorer-section:last-of-type {
3197
+ padding-bottom: 10px; }
3198
+ .data-explorer-page-container .data-explorer-result-container .data-explorer-selected-text {
3199
+ opacity: 0.8;
3200
+ font-weight: 600; }
3201
+ .data-explorer-page-container .data-explorer-result-container .data-explorer-query-suggestion-list {
3202
+ display: flex;
3203
+ flex-direction: column;
3204
+ flex-wrap: nowrap;
3205
+ height: 100%;
3206
+ padding-left: 8px; }
3207
+ .data-explorer-page-container .data-preview-scroll-component {
3208
+ flex: 1; }
3209
+ .data-explorer-page-container .data-explorer-card-placeholder {
3210
+ min-height: 90px;
3211
+ width: 100%;
3212
+ height: 100%;
3213
+ display: flex;
3214
+ justify-content: center;
3215
+ align-items: center; }
3216
+ .data-explorer-page-container .query-suggestion-list-scroll-component {
3217
+ color: var(--react-autoql-text-color-primary);
3218
+ flex: 1; }
3219
+ .data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item {
3220
+ cursor: pointer;
3221
+ position: relative;
3222
+ padding: 3px;
3223
+ color: var(--react-autoql-accent-color);
3224
+ display: flex;
3225
+ flex-direction: row;
3226
+ justify-content: space-between;
3227
+ flex-wrap: nowrap;
3228
+ align-items: center;
3229
+ font-weight: 600; }
3230
+ .data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item:hover {
3231
+ text-decoration: underline; }
3232
+ .data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .query-suggestion-text svg {
3233
+ stroke-width: 1px;
3234
+ stroke: currentColor; }
3235
+ .data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .animated-item {
3236
+ -webkit-animation: fadeIn 0.3s linear;
3237
+ animation: fadeIn 0.3s linear;
3238
+ -webkit-animation-fill-mode: both;
3239
+ animation-fill-mode: both; }
3240
+ .data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .query-tips-result-placeholder {
3241
+ margin-top: 50px; }
3242
+ .data-explorer-page-container .chat-bar-clear-btn {
3243
+ position: absolute;
3244
+ display: flex;
3245
+ justify-content: flex-start;
3246
+ align-items: center;
3247
+ right: 0;
3248
+ top: 0;
3249
+ width: 50px;
3250
+ height: 100%;
3251
+ font-size: 20px;
3252
+ visibility: hidden;
3253
+ color: var(--react-autoql-text-color-placeholder);
3254
+ cursor: pointer; }
3255
+ .data-explorer-page-container .chat-bar-clear-btn:hover {
3256
+ color: var(--react-autoql-accent-color); }
3257
+ .data-explorer-page-container .chat-bar-clear-btn.visible {
3258
+ visibility: visible; }
3259
+
2840
3260
  .filter-lock-menu {
2841
3261
  z-index: 99999 !important;
2842
3262
  transition: opacity 0.1s ease 0s !important;
@@ -3015,7 +3435,7 @@ g.legendOrdinal .legendTitle tspan {
3015
3435
  .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__section-title {
3016
3436
  padding: 10px 0 0 10px;
3017
3437
  font-size: 12px;
3018
- color: #777; }
3438
+ color: var(--react-autoql-text-color-placeholder); }
3019
3439
 
3020
3440
  @-webkit-keyframes highlightOut {
3021
3441
  100% {
@@ -3065,8 +3485,7 @@ g.legendOrdinal .legendTitle tspan {
3065
3485
  background: var(--react-autoql-background-color-secondary);
3066
3486
  overflow: hidden;
3067
3487
  border-radius: 4px;
3068
- flex-direction: column;
3069
- justify-content: stretch; }
3488
+ flex-direction: column; }
3070
3489
 
3071
3490
  .react-autoql-drawer .chat-header-container {
3072
3491
  display: flex;
@@ -3076,8 +3495,7 @@ g.legendOrdinal .legendTitle tspan {
3076
3495
  background: var(--react-autoql-accent-color);
3077
3496
  color: var(--react-autoql-accent-text-color);
3078
3497
  box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.1);
3079
- flex-grow: 0;
3080
- flex-shrink: 0;
3498
+ flex: 0 0 auto;
3081
3499
  z-index: 1; }
3082
3500
 
3083
3501
  .react-autoql-drawer .react-autoql-header-left-container {
@@ -3369,6 +3787,9 @@ g.legendOrdinal .legendTitle tspan {
3369
3787
  .page-switcher-container .tab.react-autoql-explore-queries span.react-autoql-icon svg {
3370
3788
  height: 22px;
3371
3789
  width: 23px; }
3790
+ .page-switcher-container .tab .react-autoql-icon.data-search svg {
3791
+ stroke: var(--react-autoql-accent-color);
3792
+ stroke-width: 0.3px; }
3372
3793
  .page-switcher-container.right {
3373
3794
  border-top-left-radius: 5px;
3374
3795
  border-bottom-left-radius: 5px;
@@ -3432,6 +3853,9 @@ g.legendOrdinal .legendTitle tspan {
3432
3853
  .page-switcher-container.bottom .tab {
3433
3854
  background: var(--react-autoql-background-color-secondary);
3434
3855
  color: var(--react-autoql-text-color-primary); }
3856
+ .page-switcher-container.bottom .tab .react-autoql-icon.data-search svg {
3857
+ stroke: var(--react-autoql-background-color-secondary);
3858
+ stroke-width: 0.3px; }
3435
3859
 
3436
3860
  .page-switcher-container .tab.active {
3437
3861
  background: var(--react-autoql-background-color-secondary);
@@ -3440,11 +3864,17 @@ g.legendOrdinal .legendTitle tspan {
3440
3864
  font-weight: bold;
3441
3865
  position: relative;
3442
3866
  z-index: 2; }
3867
+ .page-switcher-container .tab.active .react-autoql-icon.data-search svg {
3868
+ stroke: var(--react-autoql-background-color-secondary);
3869
+ stroke-width: 0.3px; }
3443
3870
 
3444
3871
  .page-switcher-container.bottom .tab.active {
3445
3872
  background: var(--react-autoql-accent-color);
3446
3873
  color: var(--react-autoql-accent-text-color);
3447
3874
  font-weight: bold; }
3875
+ .page-switcher-container.bottom .tab.active .react-autoql-icon.data-search svg {
3876
+ stroke: var(--react-autoql-accent-color);
3877
+ stroke-width: 0.3px; }
3448
3878
 
3449
3879
  /* animations */
3450
3880
  @-webkit-keyframes response-loading1 {
@@ -3897,7 +4327,7 @@ g.legendOrdinal .legendTitle tspan {
3897
4327
  padding-bottom: 5px;
3898
4328
  display: block;
3899
4329
  height: unset;
3900
- border-radius: 24px;
4330
+ border-radius: 15px;
3901
4331
  font-family: inherit;
3902
4332
  font-size: 15px;
3903
4333
  font-weight: normal;
@@ -3928,7 +4358,7 @@ g.legendOrdinal .legendTitle tspan {
3928
4358
  .dashboard-tile-input-container .react-autosuggest__section-title {
3929
4359
  padding: 10px 0 0 10px;
3930
4360
  font-size: 12px;
3931
- color: #777; }
4361
+ color: var(--react-autoql-text-color-placeholder); }
3932
4362
 
3933
4363
  /* Dragging placeholder styles */
3934
4364
  .react-autoql-db-dragging-placeholder-container {