react-autoql 7.3.0 → 7.3.2-alpha.10
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 +106 -15
- 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 +1 -1
package/dist/autoql.cjs.js.gz
CHANGED
|
Binary file
|
package/dist/autoql.esm.css
CHANGED
|
@@ -1064,6 +1064,17 @@ g.legendOrdinal tspan {
|
|
|
1064
1064
|
.react-autoql-axis-selector-arrow {
|
|
1065
1065
|
opacity: 1 !important; }
|
|
1066
1066
|
|
|
1067
|
+
.drilldown-info-icon,
|
|
1068
|
+
.max-rows-info-icon {
|
|
1069
|
+
stroke: currentColor;
|
|
1070
|
+
stroke-width: 0; }
|
|
1071
|
+
|
|
1072
|
+
.drilldown-info-icon {
|
|
1073
|
+
fill: var(--react-autoql-info-color); }
|
|
1074
|
+
|
|
1075
|
+
.max-rows-info-icon {
|
|
1076
|
+
fill: var(--react-autoql-warning-color); }
|
|
1077
|
+
|
|
1067
1078
|
.number-axis-selector-popover .number-axis-selector-popover-content {
|
|
1068
1079
|
display: flex;
|
|
1069
1080
|
flex-direction: column;
|
|
@@ -1824,7 +1835,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1824
1835
|
display: inline-block;
|
|
1825
1836
|
font-size: inherit;
|
|
1826
1837
|
line-height: 1em;
|
|
1827
|
-
width: 1em;
|
|
1838
|
+
width: 1em;
|
|
1839
|
+
height: 1em; }
|
|
1828
1840
|
.react-autoql-notifications-button-container .react-autoql-notifications-button {
|
|
1829
1841
|
font-size: 1em;
|
|
1830
1842
|
line-height: 0;
|
|
@@ -1849,8 +1861,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1849
1861
|
border-radius: 50%;
|
|
1850
1862
|
height: 0.6em;
|
|
1851
1863
|
width: 0.6em;
|
|
1852
|
-
|
|
1853
|
-
|
|
1864
|
+
top: -0.2em;
|
|
1865
|
+
right: -0.2em; }
|
|
1854
1866
|
|
|
1855
1867
|
.react-autoql-input-container {
|
|
1856
1868
|
position: relative;
|
|
@@ -3493,6 +3505,63 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3493
3505
|
color: var(--react-autoql-danger-color);
|
|
3494
3506
|
border-color: var(--react-autoql-danger-color); }
|
|
3495
3507
|
|
|
3508
|
+
.mobile-filter-lock-menu {
|
|
3509
|
+
z-index: 99999 !important;
|
|
3510
|
+
top: -4px !important;
|
|
3511
|
+
min-width: 95vw;
|
|
3512
|
+
max-width: 95vw;
|
|
3513
|
+
min-height: 0px;
|
|
3514
|
+
max-height: 95vh;
|
|
3515
|
+
height: 350px;
|
|
3516
|
+
padding: 10px; }
|
|
3517
|
+
.mobile-filter-lock-menu .filter-lock-menu-content-container {
|
|
3518
|
+
background: var(--react-autoql-background-color-secondary);
|
|
3519
|
+
color: var(--react-autoql-text-color-primary);
|
|
3520
|
+
box-shadow: 0px 0 8px var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15));
|
|
3521
|
+
transition: opacity 0.1s ease 0s !important;
|
|
3522
|
+
border: 1px solid #ababab52;
|
|
3523
|
+
padding: 0 !important;
|
|
3524
|
+
border-radius: 4px;
|
|
3525
|
+
height: 100%;
|
|
3526
|
+
width: 100%;
|
|
3527
|
+
opacity: 1; }
|
|
3528
|
+
.mobile-filter-lock-menu .filter-lock-menu-popover-arrow {
|
|
3529
|
+
border-bottom: 10px solid var(--react-autoql-border-color) !important;
|
|
3530
|
+
top: 1px !important;
|
|
3531
|
+
opacity: 1; }
|
|
3532
|
+
.mobile-filter-lock-menu .filter-lock-menu-popover-arrow::after {
|
|
3533
|
+
content: '';
|
|
3534
|
+
position: absolute;
|
|
3535
|
+
border-left: 9px solid transparent;
|
|
3536
|
+
border-right: 9px solid transparent;
|
|
3537
|
+
border-bottom: 9px solid var(--react-autoql-background-color-secondary);
|
|
3538
|
+
top: 1px;
|
|
3539
|
+
left: -9px; }
|
|
3540
|
+
.mobile-filter-lock-menu .filter-lock-toast-container {
|
|
3541
|
+
top: 0;
|
|
3542
|
+
position: absolute;
|
|
3543
|
+
max-width: calc(100% - 36px);
|
|
3544
|
+
padding: 10px;
|
|
3545
|
+
font-size: 14px; }
|
|
3546
|
+
.mobile-filter-lock-menu .filter-lock-toast-container .Toastify__toast {
|
|
3547
|
+
min-height: 48px; }
|
|
3548
|
+
.mobile-filter-lock-menu .filter-lock-toast-container .Toastify__toast-body {
|
|
3549
|
+
justify-content: center; }
|
|
3550
|
+
.mobile-filter-lock-menu .filter-lock-toast-container .Toastify__toast-body > div:last-child {
|
|
3551
|
+
flex: unset; }
|
|
3552
|
+
.mobile-filter-lock-menu .include-exclude-toggle-group {
|
|
3553
|
+
height: 23px;
|
|
3554
|
+
font-size: 12px;
|
|
3555
|
+
font-weight: 200; }
|
|
3556
|
+
.mobile-filter-lock-menu .include-exclude-toggle-group .react-autoql-radio-btn.active {
|
|
3557
|
+
background-color: var(--react-autoql-border-color); }
|
|
3558
|
+
.mobile-filter-lock-menu .include-exclude-toggle-group :first-child.react-autoql-radio-btn:hover, .mobile-filter-lock-menu .include-exclude-toggle-group :first-child.react-autoql-radio-btn.active {
|
|
3559
|
+
color: var(--react-autoql-accent-color);
|
|
3560
|
+
border-color: var(--react-autoql-accent-color); }
|
|
3561
|
+
.mobile-filter-lock-menu .include-exclude-toggle-group :nth-child(2).react-autoql-radio-btn:hover, .mobile-filter-lock-menu .include-exclude-toggle-group :nth-child(2).react-autoql-radio-btn.active {
|
|
3562
|
+
color: var(--react-autoql-danger-color);
|
|
3563
|
+
border-color: var(--react-autoql-danger-color); }
|
|
3564
|
+
|
|
3496
3565
|
.filter-lock-menu-content {
|
|
3497
3566
|
padding: 15px 0 0px 20px;
|
|
3498
3567
|
display: flex;
|
|
@@ -3765,6 +3834,11 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3765
3834
|
background: var(--react-autoql-background-color-primary);
|
|
3766
3835
|
overflow: hidden;
|
|
3767
3836
|
border-radius: 4px; }
|
|
3837
|
+
.react-autoql-drawer .react-autoql-mobile-drawer-content-container {
|
|
3838
|
+
width: 100%;
|
|
3839
|
+
height: 100%;
|
|
3840
|
+
background: var(--react-autoql-background-color-primary);
|
|
3841
|
+
overflow: hidden; }
|
|
3768
3842
|
.react-autoql-drawer .chat-header-container {
|
|
3769
3843
|
display: flex;
|
|
3770
3844
|
justify-content: space-between;
|
|
@@ -4365,10 +4439,12 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4365
4439
|
visibility: hidden;
|
|
4366
4440
|
opacity: 0; }
|
|
4367
4441
|
|
|
4368
|
-
.react-autoql-dashboard-tile-inner-div .single-value-response {
|
|
4369
|
-
|
|
4370
|
-
|
|
4371
|
-
|
|
4442
|
+
.react-autoql-dashboard-tile-inner-div .single-value-response-flex-container {
|
|
4443
|
+
display: flex;
|
|
4444
|
+
align-items: center; }
|
|
4445
|
+
.react-autoql-dashboard-tile-inner-div .single-value-response-flex-container .single-value-response {
|
|
4446
|
+
font-size: 32px;
|
|
4447
|
+
opacity: 0.9; }
|
|
4372
4448
|
|
|
4373
4449
|
.react-autoql-dashboard-tile-inner-div .tabulator-header-contents {
|
|
4374
4450
|
height: 32px !important; }
|
|
@@ -4680,7 +4756,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4680
4756
|
.dashboard-tile-placeholder-text {
|
|
4681
4757
|
font-size: 15px;
|
|
4682
4758
|
color: var(--react-autoql-text-color-placeholder, rgba(0, 0, 0, 0.3));
|
|
4683
|
-
padding: 0
|
|
4759
|
+
padding: 0 20px;
|
|
4760
|
+
margin-bottom: 30px;
|
|
4761
|
+
font-style: italic; }
|
|
4684
4762
|
.dashboard-tile-placeholder-text .play-icon {
|
|
4685
4763
|
vertical-align: bottom;
|
|
4686
4764
|
line-height: 20px; }
|
|
@@ -4748,25 +4826,38 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4748
4826
|
|
|
4749
4827
|
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .layout-splitter {
|
|
4750
4828
|
margin-top: 8px;
|
|
4751
|
-
|
|
4752
|
-
|
|
4829
|
+
padding: 2px;
|
|
4830
|
+
height: 2px;
|
|
4831
|
+
background: transparent;
|
|
4832
|
+
border-bottom: 1px solid var(--react-autoql-border-color);
|
|
4833
|
+
border-color: var(--react-autoql-border-color);
|
|
4834
|
+
transition: border-color 0.2s ease; }
|
|
4835
|
+
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .layout-splitter:hover {
|
|
4836
|
+
border-width: 2px;
|
|
4837
|
+
border-color: var(--react-autoql-accent-color); }
|
|
4838
|
+
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .layout-splitter:hover + .splitter-collapse-btn {
|
|
4839
|
+
border-color: var(--react-autoql-accent-color);
|
|
4840
|
+
color: var(--react-autoql-accent-color);
|
|
4841
|
+
font-weight: 600; }
|
|
4753
4842
|
|
|
4754
4843
|
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .splitter-collapse-btn {
|
|
4755
4844
|
display: flex;
|
|
4756
4845
|
justify-content: center;
|
|
4757
|
-
line-height:
|
|
4846
|
+
line-height: 24px;
|
|
4758
4847
|
width: 20px;
|
|
4759
4848
|
height: 20px;
|
|
4760
4849
|
border-radius: 10px;
|
|
4761
4850
|
margin-left: 90%;
|
|
4762
|
-
transform: translate(
|
|
4851
|
+
transform: translate(0px, -10px);
|
|
4763
4852
|
background: var(--react-autoql-background-color-secondary);
|
|
4764
|
-
border: 1px solid var(--react-autoql-
|
|
4765
|
-
|
|
4853
|
+
border: 1px solid var(--react-autoql-border-color);
|
|
4854
|
+
border-color: var(--react-autoql-border-color);
|
|
4855
|
+
transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
|
|
4766
4856
|
cursor: pointer; }
|
|
4767
4857
|
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .splitter-collapse-btn:hover {
|
|
4858
|
+
background-color: var(--react-autoql-accent-color);
|
|
4768
4859
|
border-color: var(--react-autoql-accent-color);
|
|
4769
|
-
color: var(--react-autoql-
|
|
4860
|
+
color: var(--react-autoql-text-color-accent); }
|
|
4770
4861
|
|
|
4771
4862
|
.dashboard-drilldown-modal .dashboard-drilldown-modal-content.chart-hidden .layout-pane:not(.layout-pane-primary), .dashboard-drilldown-modal .dashboard-drilldown-modal-content.table-only .layout-pane:not(.layout-pane-primary) {
|
|
4772
4863
|
flex: 1; }
|
package/dist/autoql.esm.css.gz
CHANGED
|
Binary file
|