react-autoql 7.2.1-alpha.2 → 7.2.1-alpha.4
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 +57 -7
- 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 -2
package/dist/autoql.cjs.js.gz
CHANGED
|
Binary file
|
package/dist/autoql.esm.css
CHANGED
|
@@ -91,6 +91,7 @@ span.react-autoql-icon {
|
|
|
91
91
|
left: 82%; } }
|
|
92
92
|
|
|
93
93
|
.loading-container-centered {
|
|
94
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
94
95
|
height: 100%;
|
|
95
96
|
width: 100%;
|
|
96
97
|
display: flex;
|
|
@@ -545,6 +546,7 @@ span.react-autoql-icon {
|
|
|
545
546
|
color: var(--react-autoql-text-color-accent); }
|
|
546
547
|
|
|
547
548
|
.react-autoql-table-container {
|
|
549
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
548
550
|
display: flex;
|
|
549
551
|
flex-direction: column;
|
|
550
552
|
width: 100% !important;
|
|
@@ -579,6 +581,21 @@ span.react-autoql-icon {
|
|
|
579
581
|
position: absolute;
|
|
580
582
|
pointer-events: none;
|
|
581
583
|
opacity: 0; }
|
|
584
|
+
.react-autoql-table-container.empty:not(.filtering) .tabulator-headers {
|
|
585
|
+
height: 37px !important; }
|
|
586
|
+
.react-autoql-table-container.empty .react-autoql-table.tabulator {
|
|
587
|
+
overflow: auto; }
|
|
588
|
+
.react-autoql-table-container.empty .react-autoql-table.tabulator .tabulator-tableholder {
|
|
589
|
+
overflow: hidden; }
|
|
590
|
+
.react-autoql-table-container.empty .react-autoql-table.tabulator .tabulator-header {
|
|
591
|
+
border: none !important;
|
|
592
|
+
overflow: visible; }
|
|
593
|
+
.react-autoql-table-container.empty .react-autoql-table.tabulator .tabulator-header .tabulator-header-contents {
|
|
594
|
+
overflow: visible; }
|
|
595
|
+
.react-autoql-table-container.empty .react-autoql-table.tabulator .tabulator-header .tabulator-header-contents .tabulator-headers {
|
|
596
|
+
border-bottom: 2px solid var(--react-autoql-border-color); }
|
|
597
|
+
.react-autoql-table-container.empty .react-autoql-table.tabulator .tabulator-header .tabulator-header-contents .tabulator-headers .tabulator-col {
|
|
598
|
+
background: transparent; }
|
|
582
599
|
.react-autoql-table-container.resizing {
|
|
583
600
|
width: 100vw; }
|
|
584
601
|
.react-autoql-table-container.resizing .react-autoql-table {
|
|
@@ -606,6 +623,10 @@ span.react-autoql-icon {
|
|
|
606
623
|
max-height: calc(100% - 60px) !important; }
|
|
607
624
|
.react-autoql-table-container.filtering .filter-tag {
|
|
608
625
|
display: none; }
|
|
626
|
+
.react-autoql-table-container.filtering.empty .react-autoql-table.tabulator .tabulator-header {
|
|
627
|
+
border: none; }
|
|
628
|
+
.react-autoql-table-container.filtering.empty .react-autoql-table.tabulator .tabulator-header .tabulator-headers {
|
|
629
|
+
border-bottom: 2px solid var(--react-autoql-border-color); }
|
|
609
630
|
.react-autoql-table-container:not(.filtering) .tabulator-header-contents {
|
|
610
631
|
height: 35px; }
|
|
611
632
|
.react-autoql-table-container:not(.filtering) .tabulator-header-filter input {
|
|
@@ -734,6 +755,11 @@ span.react-autoql-icon {
|
|
|
734
755
|
pointer-events: none;
|
|
735
756
|
background-color: transparent;
|
|
736
757
|
color: var(--react-autoql-accent-color); }
|
|
758
|
+
.table-loader.table-placeholder {
|
|
759
|
+
color: var(--react-autoql-text-color-primary);
|
|
760
|
+
font-size: 12px;
|
|
761
|
+
opacity: 0.5;
|
|
762
|
+
top: 20px; }
|
|
737
763
|
.table-loader.table-page-loader {
|
|
738
764
|
top: 0;
|
|
739
765
|
bottom: 0;
|
|
@@ -1678,6 +1704,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1678
1704
|
.ReactModal__Content {
|
|
1679
1705
|
display: flex;
|
|
1680
1706
|
flex-direction: column;
|
|
1707
|
+
overflow: hidden !important;
|
|
1681
1708
|
transform: scale(0);
|
|
1682
1709
|
transition: all 0.2s ease-in-out;
|
|
1683
1710
|
color: var(--react-autoql-text-color-primary);
|
|
@@ -1708,8 +1735,11 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1708
1735
|
transform: scale(0); }
|
|
1709
1736
|
|
|
1710
1737
|
.react-autoql-modal-content {
|
|
1738
|
+
display: flex;
|
|
1739
|
+
flex-direction: column;
|
|
1711
1740
|
height: 100%;
|
|
1712
|
-
width: 100%;
|
|
1741
|
+
width: 100%;
|
|
1742
|
+
overflow: hidden; }
|
|
1713
1743
|
|
|
1714
1744
|
.react-autoql-modal-header {
|
|
1715
1745
|
position: relative;
|
|
@@ -1729,9 +1759,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1729
1759
|
.react-autoql-modal-body {
|
|
1730
1760
|
display: flex;
|
|
1731
1761
|
flex-direction: column;
|
|
1732
|
-
padding:
|
|
1762
|
+
padding: 20px 10px;
|
|
1733
1763
|
flex: 1;
|
|
1734
|
-
overflow: hidden; }
|
|
1764
|
+
overflow: hidden !important; }
|
|
1735
1765
|
.react-autoql-modal-body h3 {
|
|
1736
1766
|
color: var(--react-autoql-text-color-primary); }
|
|
1737
1767
|
|
|
@@ -2363,8 +2393,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2363
2393
|
.react-autoql-notification-list-container {
|
|
2364
2394
|
display: flex;
|
|
2365
2395
|
flex-direction: column;
|
|
2366
|
-
|
|
2367
|
-
|
|
2396
|
+
background: var(--react-autoql-background-color-primary);
|
|
2397
|
+
height: 100%; }
|
|
2368
2398
|
.react-autoql-notification-list-container .notification-feed-list {
|
|
2369
2399
|
padding: 0 20px;
|
|
2370
2400
|
padding-top: 0; }
|
|
@@ -2422,6 +2452,13 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2422
2452
|
color: var(--react-autoql-text-color-primary);
|
|
2423
2453
|
padding-top: 20px;
|
|
2424
2454
|
height: 100%; }
|
|
2455
|
+
.react-autoql-notification-settings .empty-list-message {
|
|
2456
|
+
color: var(--react-autoql-text-color-primary);
|
|
2457
|
+
text-align: center;
|
|
2458
|
+
margin-top: 75px; }
|
|
2459
|
+
.react-autoql-notification-settings .empty-list-message .empty-list-img {
|
|
2460
|
+
width: 250px;
|
|
2461
|
+
height: 250px; }
|
|
2425
2462
|
.react-autoql-notification-settings .react-autoql-notification-settings-container {
|
|
2426
2463
|
margin: 20px;
|
|
2427
2464
|
margin-top: 10px;
|
|
@@ -3256,11 +3293,11 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3256
3293
|
margin-right: 5px; }
|
|
3257
3294
|
.data-explorer-page-container .data-explorer-result-container {
|
|
3258
3295
|
color: var(--react-autoql-text-color-primary);
|
|
3259
|
-
flex: 1;
|
|
3260
3296
|
width: 100%;
|
|
3261
3297
|
overflow: auto;
|
|
3262
3298
|
padding-left: 5px;
|
|
3263
|
-
min-height: 0;
|
|
3299
|
+
min-height: 0;
|
|
3300
|
+
height: calc(100% - 130px); }
|
|
3264
3301
|
.data-explorer-page-container .data-explorer-result-container .data-explorer-sections-container {
|
|
3265
3302
|
position: relative;
|
|
3266
3303
|
height: 100%;
|
|
@@ -3625,6 +3662,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3625
3662
|
font-family: var(--react-autoql-font-family), sans-serif;
|
|
3626
3663
|
line-height: 22px;
|
|
3627
3664
|
outline: none !important; }
|
|
3665
|
+
.react-autoql-drawer .react-autoql-notification-list-container {
|
|
3666
|
+
height: calc(100% - 60px); }
|
|
3628
3667
|
|
|
3629
3668
|
.react-autoql-drawer.disable-selection {
|
|
3630
3669
|
-webkit-user-select: none;
|
|
@@ -4104,6 +4143,16 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4104
4143
|
top: 30px;
|
|
4105
4144
|
opacity: 0; } }
|
|
4106
4145
|
|
|
4146
|
+
.react-autoql-dashboard,
|
|
4147
|
+
.react-autoql-dashboard-container,
|
|
4148
|
+
.react-autoql-dashboard-tile,
|
|
4149
|
+
.dashboard-tile-title-container,
|
|
4150
|
+
.react-autoql-dashboard-tile-inner-div,
|
|
4151
|
+
.dashboard-tile-toolbars-container,
|
|
4152
|
+
.dashboard-tile-response-wrapper,
|
|
4153
|
+
.dashboard-tile-response-container {
|
|
4154
|
+
transform: translateZ(0) !important; }
|
|
4155
|
+
|
|
4107
4156
|
.react-autoql-dashboard .react-autoql-dashboard-tile {
|
|
4108
4157
|
background: var(--react-autoql-background-color-secondary, #fff);
|
|
4109
4158
|
color: var(--react-autoql-text-color-primary, #404040);
|
|
@@ -4518,6 +4567,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4518
4567
|
|
|
4519
4568
|
/* React Grid Layout overrides */
|
|
4520
4569
|
.react-grid-item .react-resizable-handle {
|
|
4570
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
4521
4571
|
z-index: 1;
|
|
4522
4572
|
position: absolute;
|
|
4523
4573
|
width: 11px;
|
package/dist/autoql.esm.css.gz
CHANGED
|
Binary file
|