react-autoql 7.2.1-alpha.0 → 7.2.1-alpha.2

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
@@ -545,6 +545,8 @@ span.react-autoql-icon {
545
545
  color: var(--react-autoql-text-color-accent); }
546
546
 
547
547
  .react-autoql-table-container {
548
+ display: flex;
549
+ flex-direction: column;
548
550
  width: 100% !important;
549
551
  max-width: 100%;
550
552
  max-height: 100%;
@@ -553,20 +555,30 @@ span.react-autoql-icon {
553
555
  position: relative;
554
556
  box-sizing: border-box;
555
557
  flex: 1; }
556
- .react-autoql-table-container .react-autoql-tablulator-container {
558
+ .react-autoql-table-container .table-row-count {
559
+ flex: 0;
560
+ width: 100%;
561
+ font-size: 13px;
562
+ opacity: 0.6;
563
+ text-align: center;
564
+ padding-top: 3px; }
565
+ .react-autoql-table-container .react-autoql-tabulator-container {
557
566
  position: relative;
558
- height: calc(100% - 30px);
559
- max-height: calc(100% - 30px); }
560
- .react-autoql-table-container .react-autoql-tablulator-container .tabulator-cell,
561
- .react-autoql-table-container .react-autoql-tablulator-container .tabulator-col {
567
+ flex: 1;
568
+ width: 100%;
569
+ max-height: 100%;
570
+ min-height: 100px;
571
+ display: flex;
572
+ flex-direction: column;
573
+ overflow: hidden; }
574
+ .react-autoql-table-container .react-autoql-tabulator-container .tabulator-cell,
575
+ .react-autoql-table-container .react-autoql-tabulator-container .tabulator-col {
562
576
  color: var(--react-autoql-text-color-primary); }
563
577
  .react-autoql-table-container.hidden {
564
578
  visibility: hidden;
565
579
  position: absolute;
566
580
  pointer-events: none;
567
581
  opacity: 0; }
568
- .react-autoql-table-container.infinite:not(.last-page) .tabulator-row:last-child {
569
- margin-bottom: 40px; }
570
582
  .react-autoql-table-container.resizing {
571
583
  width: 100vw; }
572
584
  .react-autoql-table-container.resizing .react-autoql-table {
@@ -588,7 +600,7 @@ span.react-autoql-icon {
588
600
  .react-autoql-table-container.filtering .tabulator-header-contents .tabulator-headers,
589
601
  .react-autoql-table-container.filtering .tabulator-header-contents .tabulator-col-resize-handle {
590
602
  height: 100% !important; }
591
- .react-autoql-table-container.filtering .react-autoql-tablulator-container .tabulator-tableholder {
603
+ .react-autoql-table-container.filtering .react-autoql-tabulator-container .tabulator-tableholder {
592
604
  min-height: calc(100% - 60px) !important;
593
605
  height: calc(100% - 60px) !important;
594
606
  max-height: calc(100% - 60px) !important; }
@@ -599,10 +611,10 @@ span.react-autoql-icon {
599
611
  .react-autoql-table-container:not(.filtering) .tabulator-header-filter input {
600
612
  opacity: 0;
601
613
  visibility: hidden; }
602
- .react-autoql-table-container:not(.filtering) .react-autoql-tablulator-container .tabulator-tableholder {
603
- min-height: calc(100% - 35px) !important;
604
- height: calc(100% - 35px) !important;
605
- max-height: calc(100% - 35px) !important; }
614
+ .react-autoql-table-container:not(.filtering) .react-autoql-tabulator-container .tabulator-tableholder {
615
+ min-height: calc(100% - 37px) !important;
616
+ height: calc(100% - 37px) !important;
617
+ max-height: calc(100% - 37px) !important; }
606
618
  .react-autoql-table-container .tabulator-header-filter input {
607
619
  border: 1px solid var(--react-autoql-border-color);
608
620
  border-radius: 4px;
@@ -614,38 +626,6 @@ span.react-autoql-icon {
614
626
  opacity: 1; }
615
627
  .react-autoql-table-container .tabulator-header-filter input:focus {
616
628
  border: 1px solid var(--react-autoql-accent-color); }
617
- .react-autoql-table-container .table-loader {
618
- position: absolute;
619
- display: flex;
620
- justify-content: center;
621
- align-items: center;
622
- pointer-events: none;
623
- background-color: transparent;
624
- background-color: inherit;
625
- color: var(--react-autoql-accent-color); }
626
- .react-autoql-table-container .table-loader.table-page-loader {
627
- top: 0;
628
- bottom: 0;
629
- right: 0;
630
- left: 0; }
631
- .react-autoql-table-container .table-loader.table-page-loader .page-loader-spinner {
632
- display: flex;
633
- justify-content: center;
634
- align-items: center;
635
- width: 40px;
636
- height: 40px;
637
- background-color: var(--react-autoql-background-color-secondary);
638
- border: 1px solid var(--react-autoql-border-color);
639
- box-shadow: var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15)) 0px 8px 24px;
640
- border-radius: 4px; }
641
- .react-autoql-table-container .table-loader.table-page-loader .page-loader-spinner .spinner-loader {
642
- margin: 0;
643
- height: 17px;
644
- width: 17px; }
645
- .react-autoql-table-container .table-loader.table-scroll-loader {
646
- bottom: 20px;
647
- width: 100%;
648
- z-index: 0; }
649
629
  .react-autoql-table-container.supports-drilldown .tabulator-row .tabulator-cell:not(.pivot-category) {
650
630
  transition: color 0.1s ease;
651
631
  cursor: pointer; }
@@ -676,7 +656,8 @@ span.react-autoql-icon {
676
656
  font-size: 10px;
677
657
  margin-right: 5px;
678
658
  vertical-align: top;
679
- line-height: 21px; }
659
+ line-height: 21px;
660
+ margin-left: -11px; }
680
661
  .react-autoql-table-container .react-autoql-table.tabulator .tabulator-row,
681
662
  .react-autoql-table-container .react-autoql-table.tabulator .tabulator-header,
682
663
  .react-autoql-table-container .react-autoql-table.tabulator .tabulator-headers,
@@ -689,7 +670,8 @@ span.react-autoql-icon {
689
670
  background-color: var(--react-autoql-background-color-secondary);
690
671
  z-index: 1; }
691
672
  .react-autoql-table-container .react-autoql-table.tabulator .tabulator-row:last-child {
692
- border-bottom: none; }
673
+ border-bottom: none;
674
+ margin-bottom: 15px; }
693
675
  .react-autoql-table-container .react-autoql-table.tabulator .tabulator-row .tabulator-cell:not(:first-child) {
694
676
  border-left: 1px solid !important;
695
677
  border-color: rgba(0, 0, 0, 0.06) !important; }
@@ -700,7 +682,7 @@ span.react-autoql-icon {
700
682
  border-color: transparent;
701
683
  background-color: var(--react-autoql-background-color-secondary); }
702
684
  .react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .tabulator-col .tabulator-col-title {
703
- padding-left: 10px !important;
685
+ padding-left: 12px !important;
704
686
  padding-right: 15px !important; }
705
687
  .react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
706
688
  padding: 8px 5px; }
@@ -744,6 +726,38 @@ span.react-autoql-icon {
744
726
  .tabulator-alert {
745
727
  display: none !important; }
746
728
 
729
+ .table-loader {
730
+ position: absolute;
731
+ display: flex;
732
+ justify-content: center;
733
+ align-items: center;
734
+ pointer-events: none;
735
+ background-color: transparent;
736
+ color: var(--react-autoql-accent-color); }
737
+ .table-loader.table-page-loader {
738
+ top: 0;
739
+ bottom: 0;
740
+ right: 0;
741
+ left: 0; }
742
+ .table-loader.table-page-loader .page-loader-spinner {
743
+ display: flex;
744
+ justify-content: center;
745
+ align-items: center;
746
+ width: 40px;
747
+ height: 40px;
748
+ background-color: var(--react-autoql-background-color-secondary);
749
+ border: 1px solid var(--react-autoql-border-color);
750
+ box-shadow: var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15)) 0px 8px 24px;
751
+ border-radius: 4px; }
752
+ .table-loader.table-page-loader .page-loader-spinner .spinner-loader {
753
+ margin: 0;
754
+ height: 17px;
755
+ width: 17px; }
756
+ .table-loader.table-scroll-loader {
757
+ bottom: 20px;
758
+ width: 100%;
759
+ z-index: 0; }
760
+
747
761
  .content {
748
762
  margin: 2rem; }
749
763
 
@@ -991,7 +1005,8 @@ g.legendOrdinal tspan {
991
1005
  background: var(--react-autoql-background-color-secondary);
992
1006
  color: var(--react-autoql-text-color-primary);
993
1007
  padding: 10px;
994
- z-index: 9999; }
1008
+ z-index: 9999;
1009
+ flex: 1; }
995
1010
  .number-axis-selector-popover .number-axis-selector-popover-content h4 {
996
1011
  margin: 0;
997
1012
  margin-top: 5px;
@@ -1117,14 +1132,18 @@ g.legendOrdinal .legendTitle tspan {
1117
1132
  .react-autoql-chart-container {
1118
1133
  position: relative;
1119
1134
  width: 100%;
1135
+ height: 100%;
1136
+ max-height: 100%;
1120
1137
  flex-grow: 1;
1121
1138
  flex-shrink: 1;
1139
+ flex-basis: 100vh;
1122
1140
  overflow: hidden;
1123
1141
  color: var(--react-autoql-text-color-primary);
1124
1142
  background: var(--react-autoql-background-color-secondary);
1125
1143
  transition: opacity 0.2s ease;
1126
1144
  /* These are not inline styles since they do not apply to saved PNG charts */ }
1127
1145
  .react-autoql-chart-container.hidden {
1146
+ position: absolute;
1128
1147
  visibility: hidden;
1129
1148
  flex: 0 0 0;
1130
1149
  opacity: 0;
@@ -1137,6 +1156,8 @@ g.legendOrdinal .legendTitle tspan {
1137
1156
  transition: none; }
1138
1157
  .react-autoql-chart-container.loading-rows {
1139
1158
  pointer-events: none; }
1159
+ .react-autoql-chart-container .legend-hidden-field-arrow {
1160
+ outline: none !important; }
1140
1161
  .react-autoql-chart-container .legendCells .cell.hidden text {
1141
1162
  color: var(--react-autoql-background-disabled);
1142
1163
  opacity: 0.4 !important; }
@@ -1165,7 +1186,9 @@ g.legendOrdinal .legendTitle tspan {
1165
1186
  .react-autoql-chart-container .slice,
1166
1187
  .react-autoql-chart-container .stacked-bar,
1167
1188
  .react-autoql-chart-container .stacked-column {
1168
- cursor: pointer; }
1189
+ cursor: pointer;
1190
+ stroke: transparent;
1191
+ stroke-width: 10px; }
1169
1192
  .react-autoql-chart-container .bar,
1170
1193
  .react-autoql-chart-container .column,
1171
1194
  .react-autoql-chart-container .line,
@@ -1296,6 +1319,7 @@ g.legendOrdinal .legendTitle tspan {
1296
1319
  .react-autoql-response-content-container.chart {
1297
1320
  width: 100vw;
1298
1321
  max-width: 100%;
1322
+ flex: 1 1 100vh;
1299
1323
  overflow: hidden; }
1300
1324
 
1301
1325
  .react-autoql-suggestion-btn {
@@ -1386,15 +1410,6 @@ g.legendOrdinal .legendTitle tspan {
1386
1410
  .query-output-footer.bottom {
1387
1411
  justify-content: space-between; }
1388
1412
 
1389
- .query-output-table-row-count {
1390
- position: absolute;
1391
- bottom: 0;
1392
- width: 100%;
1393
- padding-top: 3px;
1394
- font-size: 13px;
1395
- opacity: 0.6;
1396
- text-align: center; }
1397
-
1398
1413
  .dashboard-data-limit-warning-icon {
1399
1414
  color: var(--react-autoql-warning-color) !important;
1400
1415
  margin-left: 10px;
@@ -1593,6 +1608,8 @@ g.legendOrdinal .legendTitle tspan {
1593
1608
  color: var(--react-autoql-text-color-primary);
1594
1609
  cursor: pointer;
1595
1610
  outline: none !important; }
1611
+ .react-autoql-toolbar-btn.filter-btn {
1612
+ line-height: 24px; }
1596
1613
  .react-autoql-toolbar-btn.selected {
1597
1614
  color: var(--react-autoql-accent-color); }
1598
1615
 
@@ -1690,6 +1707,10 @@ g.legendOrdinal .legendTitle tspan {
1690
1707
  .ReactModal__Overlay--before-close .ReactModal__Content {
1691
1708
  transform: scale(0); }
1692
1709
 
1710
+ .react-autoql-modal-content {
1711
+ height: 100%;
1712
+ width: 100%; }
1713
+
1693
1714
  .react-autoql-modal-header {
1694
1715
  position: relative;
1695
1716
  text-align: center;
@@ -4187,13 +4208,10 @@ g.legendOrdinal .legendTitle tspan {
4187
4208
  height: 55px !important; }
4188
4209
 
4189
4210
  .react-autoql-dashboard-tile-inner-div .react-autoql-table,
4190
- .react-autoql-dashboard-tile-inner-div .query-output-table-row-count {
4211
+ .react-autoql-dashboard-tile-inner-div .table-row-count {
4191
4212
  color: var(--react-autoql-text-color-primary);
4192
4213
  font-size: 11px; }
4193
4214
 
4194
- .react-autoql-dashboard-tile-inner-div .query-output-table-row-count {
4195
- padding: 0; }
4196
-
4197
4215
  .react-autoql-dashboard-tile-inner-div .dashboard-tile-response-wrapper {
4198
4216
  flex: 1;
4199
4217
  width: 100%;
Binary file