react-autoql 7.3.2-alpha.3 → 7.3.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 +33 -16
- 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
|
@@ -982,7 +982,7 @@ span.react-autoql-icon {
|
|
|
982
982
|
color: var(--react-autoql-accent-color, #26a7df); }
|
|
983
983
|
.react-autoql-select:not(.outlined) {
|
|
984
984
|
font-weight: 600;
|
|
985
|
-
padding: 0
|
|
985
|
+
padding: 0;
|
|
986
986
|
margin: 0; }
|
|
987
987
|
.react-autoql-select.outlined {
|
|
988
988
|
margin: 0 3px;
|
|
@@ -1835,7 +1835,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1835
1835
|
display: inline-block;
|
|
1836
1836
|
font-size: inherit;
|
|
1837
1837
|
line-height: 1em;
|
|
1838
|
-
width: 1em;
|
|
1838
|
+
width: 1em;
|
|
1839
|
+
height: 1em; }
|
|
1839
1840
|
.react-autoql-notifications-button-container .react-autoql-notifications-button {
|
|
1840
1841
|
font-size: 1em;
|
|
1841
1842
|
line-height: 0;
|
|
@@ -1860,8 +1861,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1860
1861
|
border-radius: 50%;
|
|
1861
1862
|
height: 0.6em;
|
|
1862
1863
|
width: 0.6em;
|
|
1863
|
-
|
|
1864
|
-
|
|
1864
|
+
top: -0.2em;
|
|
1865
|
+
right: -0.2em; }
|
|
1865
1866
|
|
|
1866
1867
|
.react-autoql-input-container {
|
|
1867
1868
|
position: relative;
|
|
@@ -4438,10 +4439,11 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4438
4439
|
visibility: hidden;
|
|
4439
4440
|
opacity: 0; }
|
|
4440
4441
|
|
|
4441
|
-
.react-autoql-dashboard-tile-inner-div .single-value-response {
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
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; }
|
|
4445
4447
|
|
|
4446
4448
|
.react-autoql-dashboard-tile-inner-div .tabulator-header-contents {
|
|
4447
4449
|
height: 32px !important; }
|
|
@@ -4753,7 +4755,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4753
4755
|
.dashboard-tile-placeholder-text {
|
|
4754
4756
|
font-size: 15px;
|
|
4755
4757
|
color: var(--react-autoql-text-color-placeholder, rgba(0, 0, 0, 0.3));
|
|
4756
|
-
padding: 0
|
|
4758
|
+
padding: 0 20px;
|
|
4759
|
+
margin-bottom: 30px;
|
|
4760
|
+
font-style: italic; }
|
|
4757
4761
|
.dashboard-tile-placeholder-text .play-icon {
|
|
4758
4762
|
vertical-align: bottom;
|
|
4759
4763
|
line-height: 20px; }
|
|
@@ -4821,25 +4825,38 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4821
4825
|
|
|
4822
4826
|
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .layout-splitter {
|
|
4823
4827
|
margin-top: 8px;
|
|
4824
|
-
|
|
4825
|
-
|
|
4828
|
+
padding: 2px;
|
|
4829
|
+
height: 2px;
|
|
4830
|
+
background: transparent;
|
|
4831
|
+
border-bottom: 1px solid var(--react-autoql-border-color);
|
|
4832
|
+
border-color: var(--react-autoql-border-color);
|
|
4833
|
+
transition: border-color 0.2s ease; }
|
|
4834
|
+
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .layout-splitter:hover {
|
|
4835
|
+
border-width: 2px;
|
|
4836
|
+
border-color: var(--react-autoql-accent-color); }
|
|
4837
|
+
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .layout-splitter:hover + .splitter-collapse-btn {
|
|
4838
|
+
border-color: var(--react-autoql-accent-color);
|
|
4839
|
+
color: var(--react-autoql-accent-color);
|
|
4840
|
+
font-weight: 600; }
|
|
4826
4841
|
|
|
4827
4842
|
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .splitter-collapse-btn {
|
|
4828
4843
|
display: flex;
|
|
4829
4844
|
justify-content: center;
|
|
4830
|
-
line-height:
|
|
4845
|
+
line-height: 24px;
|
|
4831
4846
|
width: 20px;
|
|
4832
4847
|
height: 20px;
|
|
4833
4848
|
border-radius: 10px;
|
|
4834
4849
|
margin-left: 90%;
|
|
4835
|
-
transform: translate(
|
|
4850
|
+
transform: translate(0px, -10px);
|
|
4836
4851
|
background: var(--react-autoql-background-color-secondary);
|
|
4837
|
-
border: 1px solid var(--react-autoql-
|
|
4838
|
-
|
|
4852
|
+
border: 1px solid var(--react-autoql-border-color);
|
|
4853
|
+
border-color: var(--react-autoql-border-color);
|
|
4854
|
+
transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
|
|
4839
4855
|
cursor: pointer; }
|
|
4840
4856
|
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .splitter-collapse-btn:hover {
|
|
4857
|
+
background-color: var(--react-autoql-accent-color);
|
|
4841
4858
|
border-color: var(--react-autoql-accent-color);
|
|
4842
|
-
color: var(--react-autoql-
|
|
4859
|
+
color: var(--react-autoql-text-color-accent); }
|
|
4843
4860
|
|
|
4844
4861
|
.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) {
|
|
4845
4862
|
flex: 1; }
|
package/dist/autoql.esm.css.gz
CHANGED
|
Binary file
|