react-autoql 7.2.1-alpha.1 → 7.2.1-alpha.3
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.
- package/dist/autoql.cjs.js +1 -1
- package/dist/autoql.cjs.js.gz +0 -0
- package/dist/autoql.esm.css +110 -66
- package/dist/autoql.esm.css.gz +0 -0
- package/dist/autoql.esm.js +1 -1
- package/dist/autoql.esm.js.gz +0 -0
- package/package.json +2 -10
package/dist/autoql.cjs.js.gz
CHANGED
|
Binary file
|
package/dist/autoql.esm.css
CHANGED
|
@@ -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,45 @@ span.react-autoql-icon {
|
|
|
553
555
|
position: relative;
|
|
554
556
|
box-sizing: border-box;
|
|
555
557
|
flex: 1; }
|
|
556
|
-
.react-autoql-table-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
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
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.
|
|
569
|
-
|
|
582
|
+
.react-autoql-table-container.empty:not(.filtering) .tabulator-headers {
|
|
583
|
+
height: 37px !important; }
|
|
584
|
+
.react-autoql-table-container.empty .react-autoql-table.tabulator {
|
|
585
|
+
overflow: auto; }
|
|
586
|
+
.react-autoql-table-container.empty .react-autoql-table.tabulator .tabulator-tableholder {
|
|
587
|
+
overflow: hidden; }
|
|
588
|
+
.react-autoql-table-container.empty .react-autoql-table.tabulator .tabulator-header {
|
|
589
|
+
border: none !important;
|
|
590
|
+
overflow: visible; }
|
|
591
|
+
.react-autoql-table-container.empty .react-autoql-table.tabulator .tabulator-header .tabulator-header-contents {
|
|
592
|
+
overflow: visible; }
|
|
593
|
+
.react-autoql-table-container.empty .react-autoql-table.tabulator .tabulator-header .tabulator-header-contents .tabulator-headers {
|
|
594
|
+
border-bottom: 2px solid var(--react-autoql-border-color); }
|
|
595
|
+
.react-autoql-table-container.empty .react-autoql-table.tabulator .tabulator-header .tabulator-header-contents .tabulator-headers .tabulator-col {
|
|
596
|
+
background: transparent; }
|
|
570
597
|
.react-autoql-table-container.resizing {
|
|
571
598
|
width: 100vw; }
|
|
572
599
|
.react-autoql-table-container.resizing .react-autoql-table {
|
|
@@ -588,21 +615,25 @@ span.react-autoql-icon {
|
|
|
588
615
|
.react-autoql-table-container.filtering .tabulator-header-contents .tabulator-headers,
|
|
589
616
|
.react-autoql-table-container.filtering .tabulator-header-contents .tabulator-col-resize-handle {
|
|
590
617
|
height: 100% !important; }
|
|
591
|
-
.react-autoql-table-container.filtering .react-autoql-
|
|
618
|
+
.react-autoql-table-container.filtering .react-autoql-tabulator-container .tabulator-tableholder {
|
|
592
619
|
min-height: calc(100% - 60px) !important;
|
|
593
620
|
height: calc(100% - 60px) !important;
|
|
594
621
|
max-height: calc(100% - 60px) !important; }
|
|
595
622
|
.react-autoql-table-container.filtering .filter-tag {
|
|
596
623
|
display: none; }
|
|
624
|
+
.react-autoql-table-container.filtering.empty .react-autoql-table.tabulator .tabulator-header {
|
|
625
|
+
border: none; }
|
|
626
|
+
.react-autoql-table-container.filtering.empty .react-autoql-table.tabulator .tabulator-header .tabulator-headers {
|
|
627
|
+
border-bottom: 2px solid var(--react-autoql-border-color); }
|
|
597
628
|
.react-autoql-table-container:not(.filtering) .tabulator-header-contents {
|
|
598
629
|
height: 35px; }
|
|
599
630
|
.react-autoql-table-container:not(.filtering) .tabulator-header-filter input {
|
|
600
631
|
opacity: 0;
|
|
601
632
|
visibility: hidden; }
|
|
602
|
-
.react-autoql-table-container:not(.filtering) .react-autoql-
|
|
603
|
-
min-height: calc(100% -
|
|
604
|
-
height: calc(100% -
|
|
605
|
-
max-height: calc(100% -
|
|
633
|
+
.react-autoql-table-container:not(.filtering) .react-autoql-tabulator-container .tabulator-tableholder {
|
|
634
|
+
min-height: calc(100% - 37px) !important;
|
|
635
|
+
height: calc(100% - 37px) !important;
|
|
636
|
+
max-height: calc(100% - 37px) !important; }
|
|
606
637
|
.react-autoql-table-container .tabulator-header-filter input {
|
|
607
638
|
border: 1px solid var(--react-autoql-border-color);
|
|
608
639
|
border-radius: 4px;
|
|
@@ -614,38 +645,6 @@ span.react-autoql-icon {
|
|
|
614
645
|
opacity: 1; }
|
|
615
646
|
.react-autoql-table-container .tabulator-header-filter input:focus {
|
|
616
647
|
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
648
|
.react-autoql-table-container.supports-drilldown .tabulator-row .tabulator-cell:not(.pivot-category) {
|
|
650
649
|
transition: color 0.1s ease;
|
|
651
650
|
cursor: pointer; }
|
|
@@ -676,7 +675,8 @@ span.react-autoql-icon {
|
|
|
676
675
|
font-size: 10px;
|
|
677
676
|
margin-right: 5px;
|
|
678
677
|
vertical-align: top;
|
|
679
|
-
line-height: 21px;
|
|
678
|
+
line-height: 21px;
|
|
679
|
+
margin-left: -11px; }
|
|
680
680
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row,
|
|
681
681
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header,
|
|
682
682
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-headers,
|
|
@@ -689,7 +689,8 @@ span.react-autoql-icon {
|
|
|
689
689
|
background-color: var(--react-autoql-background-color-secondary);
|
|
690
690
|
z-index: 1; }
|
|
691
691
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row:last-child {
|
|
692
|
-
border-bottom: none;
|
|
692
|
+
border-bottom: none;
|
|
693
|
+
margin-bottom: 15px; }
|
|
693
694
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row .tabulator-cell:not(:first-child) {
|
|
694
695
|
border-left: 1px solid !important;
|
|
695
696
|
border-color: rgba(0, 0, 0, 0.06) !important; }
|
|
@@ -700,7 +701,7 @@ span.react-autoql-icon {
|
|
|
700
701
|
border-color: transparent;
|
|
701
702
|
background-color: var(--react-autoql-background-color-secondary); }
|
|
702
703
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .tabulator-col .tabulator-col-title {
|
|
703
|
-
padding-left:
|
|
704
|
+
padding-left: 12px !important;
|
|
704
705
|
padding-right: 15px !important; }
|
|
705
706
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
|
|
706
707
|
padding: 8px 5px; }
|
|
@@ -744,6 +745,43 @@ span.react-autoql-icon {
|
|
|
744
745
|
.tabulator-alert {
|
|
745
746
|
display: none !important; }
|
|
746
747
|
|
|
748
|
+
.table-loader {
|
|
749
|
+
position: absolute;
|
|
750
|
+
display: flex;
|
|
751
|
+
justify-content: center;
|
|
752
|
+
align-items: center;
|
|
753
|
+
pointer-events: none;
|
|
754
|
+
background-color: transparent;
|
|
755
|
+
color: var(--react-autoql-accent-color); }
|
|
756
|
+
.table-loader.table-placeholder {
|
|
757
|
+
color: var(--react-autoql-text-color-primary);
|
|
758
|
+
font-size: 12px;
|
|
759
|
+
opacity: 0.5;
|
|
760
|
+
top: 20px; }
|
|
761
|
+
.table-loader.table-page-loader {
|
|
762
|
+
top: 0;
|
|
763
|
+
bottom: 0;
|
|
764
|
+
right: 0;
|
|
765
|
+
left: 0; }
|
|
766
|
+
.table-loader.table-page-loader .page-loader-spinner {
|
|
767
|
+
display: flex;
|
|
768
|
+
justify-content: center;
|
|
769
|
+
align-items: center;
|
|
770
|
+
width: 40px;
|
|
771
|
+
height: 40px;
|
|
772
|
+
background-color: var(--react-autoql-background-color-secondary);
|
|
773
|
+
border: 1px solid var(--react-autoql-border-color);
|
|
774
|
+
box-shadow: var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15)) 0px 8px 24px;
|
|
775
|
+
border-radius: 4px; }
|
|
776
|
+
.table-loader.table-page-loader .page-loader-spinner .spinner-loader {
|
|
777
|
+
margin: 0;
|
|
778
|
+
height: 17px;
|
|
779
|
+
width: 17px; }
|
|
780
|
+
.table-loader.table-scroll-loader {
|
|
781
|
+
bottom: 20px;
|
|
782
|
+
width: 100%;
|
|
783
|
+
z-index: 0; }
|
|
784
|
+
|
|
747
785
|
.content {
|
|
748
786
|
margin: 2rem; }
|
|
749
787
|
|
|
@@ -991,7 +1029,8 @@ g.legendOrdinal tspan {
|
|
|
991
1029
|
background: var(--react-autoql-background-color-secondary);
|
|
992
1030
|
color: var(--react-autoql-text-color-primary);
|
|
993
1031
|
padding: 10px;
|
|
994
|
-
z-index: 9999;
|
|
1032
|
+
z-index: 9999;
|
|
1033
|
+
flex: 1; }
|
|
995
1034
|
.number-axis-selector-popover .number-axis-selector-popover-content h4 {
|
|
996
1035
|
margin: 0;
|
|
997
1036
|
margin-top: 5px;
|
|
@@ -1117,14 +1156,18 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1117
1156
|
.react-autoql-chart-container {
|
|
1118
1157
|
position: relative;
|
|
1119
1158
|
width: 100%;
|
|
1159
|
+
height: 100%;
|
|
1160
|
+
max-height: 100%;
|
|
1120
1161
|
flex-grow: 1;
|
|
1121
1162
|
flex-shrink: 1;
|
|
1163
|
+
flex-basis: 100vh;
|
|
1122
1164
|
overflow: hidden;
|
|
1123
1165
|
color: var(--react-autoql-text-color-primary);
|
|
1124
1166
|
background: var(--react-autoql-background-color-secondary);
|
|
1125
1167
|
transition: opacity 0.2s ease;
|
|
1126
1168
|
/* These are not inline styles since they do not apply to saved PNG charts */ }
|
|
1127
1169
|
.react-autoql-chart-container.hidden {
|
|
1170
|
+
position: absolute;
|
|
1128
1171
|
visibility: hidden;
|
|
1129
1172
|
flex: 0 0 0;
|
|
1130
1173
|
opacity: 0;
|
|
@@ -1137,6 +1180,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1137
1180
|
transition: none; }
|
|
1138
1181
|
.react-autoql-chart-container.loading-rows {
|
|
1139
1182
|
pointer-events: none; }
|
|
1183
|
+
.react-autoql-chart-container .legend-hidden-field-arrow {
|
|
1184
|
+
outline: none !important; }
|
|
1140
1185
|
.react-autoql-chart-container .legendCells .cell.hidden text {
|
|
1141
1186
|
color: var(--react-autoql-background-disabled);
|
|
1142
1187
|
opacity: 0.4 !important; }
|
|
@@ -1165,7 +1210,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1165
1210
|
.react-autoql-chart-container .slice,
|
|
1166
1211
|
.react-autoql-chart-container .stacked-bar,
|
|
1167
1212
|
.react-autoql-chart-container .stacked-column {
|
|
1168
|
-
cursor: pointer;
|
|
1213
|
+
cursor: pointer;
|
|
1214
|
+
stroke: transparent;
|
|
1215
|
+
stroke-width: 10px; }
|
|
1169
1216
|
.react-autoql-chart-container .bar,
|
|
1170
1217
|
.react-autoql-chart-container .column,
|
|
1171
1218
|
.react-autoql-chart-container .line,
|
|
@@ -1296,6 +1343,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1296
1343
|
.react-autoql-response-content-container.chart {
|
|
1297
1344
|
width: 100vw;
|
|
1298
1345
|
max-width: 100%;
|
|
1346
|
+
flex: 1 1 100vh;
|
|
1299
1347
|
overflow: hidden; }
|
|
1300
1348
|
|
|
1301
1349
|
.react-autoql-suggestion-btn {
|
|
@@ -1386,15 +1434,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1386
1434
|
.query-output-footer.bottom {
|
|
1387
1435
|
justify-content: space-between; }
|
|
1388
1436
|
|
|
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
1437
|
.dashboard-data-limit-warning-icon {
|
|
1399
1438
|
color: var(--react-autoql-warning-color) !important;
|
|
1400
1439
|
margin-left: 10px;
|
|
@@ -1593,6 +1632,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1593
1632
|
color: var(--react-autoql-text-color-primary);
|
|
1594
1633
|
cursor: pointer;
|
|
1595
1634
|
outline: none !important; }
|
|
1635
|
+
.react-autoql-toolbar-btn.filter-btn {
|
|
1636
|
+
line-height: 24px; }
|
|
1596
1637
|
.react-autoql-toolbar-btn.selected {
|
|
1597
1638
|
color: var(--react-autoql-accent-color); }
|
|
1598
1639
|
|
|
@@ -1690,6 +1731,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1690
1731
|
.ReactModal__Overlay--before-close .ReactModal__Content {
|
|
1691
1732
|
transform: scale(0); }
|
|
1692
1733
|
|
|
1734
|
+
.react-autoql-modal-content {
|
|
1735
|
+
height: 100%;
|
|
1736
|
+
width: 100%; }
|
|
1737
|
+
|
|
1693
1738
|
.react-autoql-modal-header {
|
|
1694
1739
|
position: relative;
|
|
1695
1740
|
text-align: center;
|
|
@@ -2342,8 +2387,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2342
2387
|
.react-autoql-notification-list-container {
|
|
2343
2388
|
display: flex;
|
|
2344
2389
|
flex-direction: column;
|
|
2345
|
-
|
|
2346
|
-
|
|
2390
|
+
background: var(--react-autoql-background-color-primary);
|
|
2391
|
+
height: 100%; }
|
|
2347
2392
|
.react-autoql-notification-list-container .notification-feed-list {
|
|
2348
2393
|
padding: 0 20px;
|
|
2349
2394
|
padding-top: 0; }
|
|
@@ -3235,11 +3280,11 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3235
3280
|
margin-right: 5px; }
|
|
3236
3281
|
.data-explorer-page-container .data-explorer-result-container {
|
|
3237
3282
|
color: var(--react-autoql-text-color-primary);
|
|
3238
|
-
flex: 1;
|
|
3239
3283
|
width: 100%;
|
|
3240
3284
|
overflow: auto;
|
|
3241
3285
|
padding-left: 5px;
|
|
3242
|
-
min-height: 0;
|
|
3286
|
+
min-height: 0;
|
|
3287
|
+
height: calc(100% - 130px); }
|
|
3243
3288
|
.data-explorer-page-container .data-explorer-result-container .data-explorer-sections-container {
|
|
3244
3289
|
position: relative;
|
|
3245
3290
|
height: 100%;
|
|
@@ -3604,6 +3649,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3604
3649
|
font-family: var(--react-autoql-font-family), sans-serif;
|
|
3605
3650
|
line-height: 22px;
|
|
3606
3651
|
outline: none !important; }
|
|
3652
|
+
.react-autoql-drawer .react-autoql-notification-list-container {
|
|
3653
|
+
height: calc(100% - 60px); }
|
|
3607
3654
|
|
|
3608
3655
|
.react-autoql-drawer.disable-selection {
|
|
3609
3656
|
-webkit-user-select: none;
|
|
@@ -4187,13 +4234,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4187
4234
|
height: 55px !important; }
|
|
4188
4235
|
|
|
4189
4236
|
.react-autoql-dashboard-tile-inner-div .react-autoql-table,
|
|
4190
|
-
.react-autoql-dashboard-tile-inner-div .
|
|
4237
|
+
.react-autoql-dashboard-tile-inner-div .table-row-count {
|
|
4191
4238
|
color: var(--react-autoql-text-color-primary);
|
|
4192
4239
|
font-size: 11px; }
|
|
4193
4240
|
|
|
4194
|
-
.react-autoql-dashboard-tile-inner-div .query-output-table-row-count {
|
|
4195
|
-
padding: 0; }
|
|
4196
|
-
|
|
4197
4241
|
.react-autoql-dashboard-tile-inner-div .dashboard-tile-response-wrapper {
|
|
4198
4242
|
flex: 1;
|
|
4199
4243
|
width: 100%;
|
package/dist/autoql.esm.css.gz
CHANGED
|
Binary file
|