react-autoql 7.3.0 → 7.3.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.
- package/dist/autoql.cjs.js +1 -1
- package/dist/autoql.cjs.js.gz +0 -0
- package/dist/autoql.esm.css +73 -0
- 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;
|
|
@@ -3493,6 +3504,63 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3493
3504
|
color: var(--react-autoql-danger-color);
|
|
3494
3505
|
border-color: var(--react-autoql-danger-color); }
|
|
3495
3506
|
|
|
3507
|
+
.mobile-filter-lock-menu {
|
|
3508
|
+
z-index: 99999 !important;
|
|
3509
|
+
top: -4px !important;
|
|
3510
|
+
min-width: 95vw;
|
|
3511
|
+
max-width: 95vw;
|
|
3512
|
+
min-height: 0px;
|
|
3513
|
+
max-height: 95vh;
|
|
3514
|
+
height: 350px;
|
|
3515
|
+
padding: 10px; }
|
|
3516
|
+
.mobile-filter-lock-menu .filter-lock-menu-content-container {
|
|
3517
|
+
background: var(--react-autoql-background-color-secondary);
|
|
3518
|
+
color: var(--react-autoql-text-color-primary);
|
|
3519
|
+
box-shadow: 0px 0 8px var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15));
|
|
3520
|
+
transition: opacity 0.1s ease 0s !important;
|
|
3521
|
+
border: 1px solid #ababab52;
|
|
3522
|
+
padding: 0 !important;
|
|
3523
|
+
border-radius: 4px;
|
|
3524
|
+
height: 100%;
|
|
3525
|
+
width: 100%;
|
|
3526
|
+
opacity: 1; }
|
|
3527
|
+
.mobile-filter-lock-menu .filter-lock-menu-popover-arrow {
|
|
3528
|
+
border-bottom: 10px solid var(--react-autoql-border-color) !important;
|
|
3529
|
+
top: 1px !important;
|
|
3530
|
+
opacity: 1; }
|
|
3531
|
+
.mobile-filter-lock-menu .filter-lock-menu-popover-arrow::after {
|
|
3532
|
+
content: '';
|
|
3533
|
+
position: absolute;
|
|
3534
|
+
border-left: 9px solid transparent;
|
|
3535
|
+
border-right: 9px solid transparent;
|
|
3536
|
+
border-bottom: 9px solid var(--react-autoql-background-color-secondary);
|
|
3537
|
+
top: 1px;
|
|
3538
|
+
left: -9px; }
|
|
3539
|
+
.mobile-filter-lock-menu .filter-lock-toast-container {
|
|
3540
|
+
top: 0;
|
|
3541
|
+
position: absolute;
|
|
3542
|
+
max-width: calc(100% - 36px);
|
|
3543
|
+
padding: 10px;
|
|
3544
|
+
font-size: 14px; }
|
|
3545
|
+
.mobile-filter-lock-menu .filter-lock-toast-container .Toastify__toast {
|
|
3546
|
+
min-height: 48px; }
|
|
3547
|
+
.mobile-filter-lock-menu .filter-lock-toast-container .Toastify__toast-body {
|
|
3548
|
+
justify-content: center; }
|
|
3549
|
+
.mobile-filter-lock-menu .filter-lock-toast-container .Toastify__toast-body > div:last-child {
|
|
3550
|
+
flex: unset; }
|
|
3551
|
+
.mobile-filter-lock-menu .include-exclude-toggle-group {
|
|
3552
|
+
height: 23px;
|
|
3553
|
+
font-size: 12px;
|
|
3554
|
+
font-weight: 200; }
|
|
3555
|
+
.mobile-filter-lock-menu .include-exclude-toggle-group .react-autoql-radio-btn.active {
|
|
3556
|
+
background-color: var(--react-autoql-border-color); }
|
|
3557
|
+
.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 {
|
|
3558
|
+
color: var(--react-autoql-accent-color);
|
|
3559
|
+
border-color: var(--react-autoql-accent-color); }
|
|
3560
|
+
.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 {
|
|
3561
|
+
color: var(--react-autoql-danger-color);
|
|
3562
|
+
border-color: var(--react-autoql-danger-color); }
|
|
3563
|
+
|
|
3496
3564
|
.filter-lock-menu-content {
|
|
3497
3565
|
padding: 15px 0 0px 20px;
|
|
3498
3566
|
display: flex;
|
|
@@ -3765,6 +3833,11 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3765
3833
|
background: var(--react-autoql-background-color-primary);
|
|
3766
3834
|
overflow: hidden;
|
|
3767
3835
|
border-radius: 4px; }
|
|
3836
|
+
.react-autoql-drawer .react-autoql-mobile-drawer-content-container {
|
|
3837
|
+
width: 100%;
|
|
3838
|
+
height: 100%;
|
|
3839
|
+
background: var(--react-autoql-background-color-primary);
|
|
3840
|
+
overflow: hidden; }
|
|
3768
3841
|
.react-autoql-drawer .chat-header-container {
|
|
3769
3842
|
display: flex;
|
|
3770
3843
|
justify-content: space-between;
|
package/dist/autoql.esm.css.gz
CHANGED
|
Binary file
|