react-autoql 7.3.1-alpha.2 → 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 +33 -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
|
@@ -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,12 @@ 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;
|
|
4447
|
+
opacity: 0.9; }
|
|
4445
4448
|
|
|
4446
4449
|
.react-autoql-dashboard-tile-inner-div .tabulator-header-contents {
|
|
4447
4450
|
height: 32px !important; }
|
|
@@ -4753,7 +4756,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4753
4756
|
.dashboard-tile-placeholder-text {
|
|
4754
4757
|
font-size: 15px;
|
|
4755
4758
|
color: var(--react-autoql-text-color-placeholder, rgba(0, 0, 0, 0.3));
|
|
4756
|
-
padding: 0
|
|
4759
|
+
padding: 0 20px;
|
|
4760
|
+
margin-bottom: 30px;
|
|
4761
|
+
font-style: italic; }
|
|
4757
4762
|
.dashboard-tile-placeholder-text .play-icon {
|
|
4758
4763
|
vertical-align: bottom;
|
|
4759
4764
|
line-height: 20px; }
|
|
@@ -4821,25 +4826,38 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4821
4826
|
|
|
4822
4827
|
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .layout-splitter {
|
|
4823
4828
|
margin-top: 8px;
|
|
4824
|
-
|
|
4825
|
-
|
|
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; }
|
|
4826
4842
|
|
|
4827
4843
|
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .splitter-collapse-btn {
|
|
4828
4844
|
display: flex;
|
|
4829
4845
|
justify-content: center;
|
|
4830
|
-
line-height:
|
|
4846
|
+
line-height: 24px;
|
|
4831
4847
|
width: 20px;
|
|
4832
4848
|
height: 20px;
|
|
4833
4849
|
border-radius: 10px;
|
|
4834
4850
|
margin-left: 90%;
|
|
4835
|
-
transform: translate(
|
|
4851
|
+
transform: translate(0px, -10px);
|
|
4836
4852
|
background: var(--react-autoql-background-color-secondary);
|
|
4837
|
-
border: 1px solid var(--react-autoql-
|
|
4838
|
-
|
|
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;
|
|
4839
4856
|
cursor: pointer; }
|
|
4840
4857
|
.dashboard-drilldown-modal .dashboard-drilldown-modal-content .splitter-collapse-btn:hover {
|
|
4858
|
+
background-color: var(--react-autoql-accent-color);
|
|
4841
4859
|
border-color: var(--react-autoql-accent-color);
|
|
4842
|
-
color: var(--react-autoql-
|
|
4860
|
+
color: var(--react-autoql-text-color-accent); }
|
|
4843
4861
|
|
|
4844
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) {
|
|
4845
4863
|
flex: 1; }
|
package/dist/autoql.esm.css.gz
CHANGED
|
Binary file
|