react-autoql 8.0.1 → 8.0.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 +240 -147
- 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
|
@@ -55,7 +55,6 @@ a {
|
|
|
55
55
|
|
|
56
56
|
.react-tiny-popover-container {
|
|
57
57
|
z-index: 99999;
|
|
58
|
-
opacity: 1 !important;
|
|
59
58
|
overflow: hidden !important;
|
|
60
59
|
max-width: 95vw;
|
|
61
60
|
min-height: 0px;
|
|
@@ -111,22 +110,28 @@ a {
|
|
|
111
110
|
display: flex; }
|
|
112
111
|
.react-tiny-popover-container.react-autoql-popover-mobile {
|
|
113
112
|
display: flex;
|
|
114
|
-
top: 0px !important;
|
|
115
113
|
left: 0px !important;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
margin: 0 !important;
|
|
120
|
-
min-height: 45px;
|
|
121
|
-
max-height: calc(100vh - 120px);
|
|
114
|
+
right: 0px !important;
|
|
115
|
+
top: 45% !important;
|
|
116
|
+
transform: translate(0, -50%) !important;
|
|
122
117
|
width: 100vw !important;
|
|
123
118
|
max-width: 100vw !important;
|
|
119
|
+
padding: 0 !important;
|
|
120
|
+
min-height: 45px;
|
|
121
|
+
max-height: calc(100vh - 150px);
|
|
124
122
|
border-radius: 0 !important;
|
|
125
123
|
background: var(--react-autoql-background-color-secondary);
|
|
126
|
-
box-shadow: 0px 0px
|
|
124
|
+
box-shadow: 0px 0px 100vh 100vh var(--react-autoql-mobile-mask-color, rgba(0, 0, 0, 0.15)), 0px 0 8px var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15));
|
|
125
|
+
animation: fade 0.2s ease; }
|
|
127
126
|
.react-tiny-popover-container.react-autoql-popover-mobile .popover-container-content {
|
|
128
127
|
border-radius: 0 !important; }
|
|
129
128
|
|
|
129
|
+
@keyframes fade {
|
|
130
|
+
from {
|
|
131
|
+
opacity: 0; }
|
|
132
|
+
to {
|
|
133
|
+
opacity: 1; } }
|
|
134
|
+
|
|
130
135
|
.react-autoql-menu {
|
|
131
136
|
list-style-type: none;
|
|
132
137
|
width: 100%;
|
|
@@ -321,6 +326,7 @@ a {
|
|
|
321
326
|
|
|
322
327
|
.react-autoql-custom-scrollbars.scrollbar-container .ps__rail-y,
|
|
323
328
|
.react-autoql-custom-scrollbars.scrollbar-container .ps__rail-x {
|
|
329
|
+
z-index: 1;
|
|
324
330
|
background-color: transparent; }
|
|
325
331
|
.react-autoql-custom-scrollbars.scrollbar-container .ps__rail-y:hover, .react-autoql-custom-scrollbars.scrollbar-container .ps__rail-y.ps--clicking,
|
|
326
332
|
.react-autoql-custom-scrollbars.scrollbar-container .ps__rail-x:hover,
|
|
@@ -943,6 +949,11 @@ a {
|
|
|
943
949
|
.react-autoql-input-and-label-container .react-autoql-input-container input[type='number'] {
|
|
944
950
|
-moz-appearance: textfield;
|
|
945
951
|
/* Firefox */ }
|
|
952
|
+
.react-autoql-input-and-label-container .react-autoql-input-container input[type='search']::-webkit-search-decoration,
|
|
953
|
+
.react-autoql-input-and-label-container .react-autoql-input-container input[type='search']::-webkit-search-cancel-button,
|
|
954
|
+
.react-autoql-input-and-label-container .react-autoql-input-container input[type='search']::-webkit-search-results-button,
|
|
955
|
+
.react-autoql-input-and-label-container .react-autoql-input-container input[type='search']::-webkit-search-results-decoration {
|
|
956
|
+
-webkit-appearance: none; }
|
|
946
957
|
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input-and-icon {
|
|
947
958
|
flex: 1; }
|
|
948
959
|
.react-autoql-input-and-label-container .react-autoql-input-container.with-select .react-autoql-input {
|
|
@@ -1503,8 +1514,6 @@ a {
|
|
|
1503
1514
|
min-height: calc(100% - 60px) !important;
|
|
1504
1515
|
height: calc(100% - 60px) !important;
|
|
1505
1516
|
max-height: calc(100% - 60px) !important; }
|
|
1506
|
-
.react-autoql-table-container.filtering .filter-tag {
|
|
1507
|
-
display: none; }
|
|
1508
1517
|
.react-autoql-table-container.filtering.empty .react-autoql-table.tabulator .tabulator-header {
|
|
1509
1518
|
border: none; }
|
|
1510
1519
|
.react-autoql-table-container.filtering.empty .react-autoql-table.tabulator .tabulator-header .tabulator-headers {
|
|
@@ -1524,13 +1533,34 @@ a {
|
|
|
1524
1533
|
border: 1px solid var(--react-autoql-border-color);
|
|
1525
1534
|
border-radius: 4px;
|
|
1526
1535
|
background: transparent;
|
|
1527
|
-
padding: 4px
|
|
1536
|
+
padding: 4px 16px 4px 8px !important;
|
|
1528
1537
|
outline: none !important;
|
|
1529
1538
|
text-overflow: ellipsis;
|
|
1530
1539
|
visibility: visible;
|
|
1531
|
-
opacity: 1;
|
|
1540
|
+
opacity: 1;
|
|
1541
|
+
height: 25px; }
|
|
1542
|
+
.react-autoql-table-container .tabulator-header-filter input::-webkit-search-decoration, .react-autoql-table-container .tabulator-header-filter input::-webkit-search-cancel-button, .react-autoql-table-container .tabulator-header-filter input::-webkit-search-results-button, .react-autoql-table-container .tabulator-header-filter input::-webkit-search-results-decoration {
|
|
1543
|
+
-webkit-appearance: none; }
|
|
1532
1544
|
.react-autoql-table-container .tabulator-header-filter input:focus {
|
|
1533
1545
|
border: 1px solid var(--react-autoql-accent-color); }
|
|
1546
|
+
.react-autoql-table-container .tabulator-header-filter .react-autoql-input-clear-btn {
|
|
1547
|
+
position: absolute;
|
|
1548
|
+
display: flex;
|
|
1549
|
+
justify-content: center;
|
|
1550
|
+
align-items: center;
|
|
1551
|
+
height: 12px;
|
|
1552
|
+
width: 12px;
|
|
1553
|
+
right: 0;
|
|
1554
|
+
top: 50%;
|
|
1555
|
+
transform: translate(-50%, -50%);
|
|
1556
|
+
color: var(--react-autoql-background-color-secondary);
|
|
1557
|
+
background: var(--react-autoql-text-color-placeholder);
|
|
1558
|
+
border-radius: 6px; }
|
|
1559
|
+
.react-autoql-table-container .tabulator-header-filter .react-autoql-input-clear-btn span {
|
|
1560
|
+
font-family: sans-serif;
|
|
1561
|
+
height: 12px;
|
|
1562
|
+
font-size: 11px;
|
|
1563
|
+
line-height: 100%; }
|
|
1534
1564
|
.react-autoql-table-container.supports-drilldown .tabulator-row .tabulator-cell:not(.pivot-category) {
|
|
1535
1565
|
transition: color 0.1s ease;
|
|
1536
1566
|
cursor: pointer; }
|
|
@@ -1554,17 +1584,25 @@ a {
|
|
|
1554
1584
|
color: #e80000; }
|
|
1555
1585
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header {
|
|
1556
1586
|
border-bottom: 2px solid var(--react-autoql-border-color); }
|
|
1557
|
-
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1587
|
+
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header input:-moz-placeholder-shown + .react-autoql-input-clear-btn {
|
|
1588
|
+
visibility: hidden; }
|
|
1589
|
+
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header input:placeholder-shown + .react-autoql-input-clear-btn {
|
|
1590
|
+
visibility: hidden; }
|
|
1591
|
+
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .tabulator-col.is-filtered .tabulator-col-title:before {
|
|
1592
|
+
opacity: 1; }
|
|
1593
|
+
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .tabulator-col-title:before {
|
|
1594
|
+
content: '';
|
|
1595
|
+
display: inline-block;
|
|
1596
|
+
vertical-align: middle;
|
|
1597
|
+
opacity: 0;
|
|
1598
|
+
height: 8px;
|
|
1599
|
+
width: 8px;
|
|
1564
1600
|
margin-right: 5px;
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1601
|
+
margin-left: -12px;
|
|
1602
|
+
margin-bottom: 2px;
|
|
1603
|
+
border-radius: 10px;
|
|
1604
|
+
background: var(--react-autoql-warning-color);
|
|
1605
|
+
transition: opacity 0.3s ease; }
|
|
1568
1606
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row,
|
|
1569
1607
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header,
|
|
1570
1608
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-headers,
|
|
@@ -1579,11 +1617,13 @@ a {
|
|
|
1579
1617
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row:last-child {
|
|
1580
1618
|
border-bottom: none;
|
|
1581
1619
|
margin-bottom: 15px; }
|
|
1582
|
-
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row .tabulator-cell
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1620
|
+
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row .tabulator-cell {
|
|
1621
|
+
line-height: 1.5em; }
|
|
1622
|
+
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row .tabulator-cell:not(:first-child) {
|
|
1623
|
+
border-left: 1px solid !important;
|
|
1624
|
+
border-color: var(--react-autoql-table-border-color) !important; }
|
|
1625
|
+
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row .tabulator-cell.pivot-category {
|
|
1626
|
+
font-weight: 600; }
|
|
1587
1627
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .tabulator-col {
|
|
1588
1628
|
text-align: center !important;
|
|
1589
1629
|
border-color: transparent;
|
|
@@ -1996,7 +2036,8 @@ g.legendOrdinal tspan {
|
|
|
1996
2036
|
padding: 0 8px;
|
|
1997
2037
|
margin-right: 10px; }
|
|
1998
2038
|
.number-axis-selector-popover .axis-selector-apply-btn-container {
|
|
1999
|
-
flex: 0 0 auto;
|
|
2039
|
+
flex: 0 0 auto;
|
|
2040
|
+
padding-top: 10px; }
|
|
2000
2041
|
.number-axis-selector-popover .axis-selector-apply-btn-container .axis-selector-apply-btn {
|
|
2001
2042
|
margin: 0;
|
|
2002
2043
|
width: 100%; }
|
|
@@ -2053,9 +2094,12 @@ g.legendOrdinal tspan {
|
|
|
2053
2094
|
background: var(--react-autoql-accent-color);
|
|
2054
2095
|
color: var(--react-autoql-text-color-accent); }
|
|
2055
2096
|
|
|
2097
|
+
g.legendOrdinal text,
|
|
2098
|
+
g.legendOrdinal tspan {
|
|
2099
|
+
font-size: inherit; }
|
|
2100
|
+
|
|
2056
2101
|
g.legendOrdinal .legendTitle tspan {
|
|
2057
2102
|
letter-spacing: 0.04em !important;
|
|
2058
|
-
font-size: 12px;
|
|
2059
2103
|
cursor: default; }
|
|
2060
2104
|
|
|
2061
2105
|
.react-autoql-popover-mobile .number-selector-field-group-container {
|
|
@@ -2505,8 +2549,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2505
2549
|
color: var(--react-autoql-text-color-primary);
|
|
2506
2550
|
background-color: var(--react-autoql-background-color-primary);
|
|
2507
2551
|
border-radius: 5px;
|
|
2508
|
-
padding: 5px 13px 5px 13px;
|
|
2509
2552
|
height: 100%; }
|
|
2553
|
+
.react-autoql-reverse-translation-container .react-autoql-reverse-translation .react-autoql-icon-info {
|
|
2554
|
+
vertical-align: text-bottom;
|
|
2555
|
+
padding-bottom: 1.5px; }
|
|
2510
2556
|
|
|
2511
2557
|
.report-like-text-button {
|
|
2512
2558
|
background: none !important;
|
|
@@ -2546,7 +2592,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2546
2592
|
cursor: pointer; }
|
|
2547
2593
|
.react-autoql-btn.react-autoql-toolbar-btn.filter-btn {
|
|
2548
2594
|
line-height: 24px; }
|
|
2549
|
-
.react-autoql-btn.react-autoql-toolbar-btn.selected {
|
|
2595
|
+
.react-autoql-btn.react-autoql-toolbar-btn.react-autoql-toolbar-btn-selected {
|
|
2550
2596
|
color: var(--react-autoql-accent-color); }
|
|
2551
2597
|
|
|
2552
2598
|
.react-autoql-toolbar-btn.green {
|
|
@@ -2619,8 +2665,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2619
2665
|
display: flex;
|
|
2620
2666
|
flex-direction: column;
|
|
2621
2667
|
overflow: hidden !important;
|
|
2622
|
-
|
|
2623
|
-
|
|
2668
|
+
opacity: 0;
|
|
2669
|
+
transform: scale(50%);
|
|
2670
|
+
transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
|
|
2624
2671
|
color: var(--react-autoql-text-color-primary);
|
|
2625
2672
|
background: var(--react-autoql-background-color-secondary) !important;
|
|
2626
2673
|
box-shadow: 0 0 14px 1px var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15));
|
|
@@ -2651,8 +2698,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2651
2698
|
display: flex;
|
|
2652
2699
|
flex-direction: column;
|
|
2653
2700
|
overflow: hidden !important;
|
|
2654
|
-
|
|
2655
|
-
|
|
2701
|
+
opacity: 0;
|
|
2702
|
+
transform: scale(50%);
|
|
2703
|
+
transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
|
|
2656
2704
|
color: var(--react-autoql-text-color-primary);
|
|
2657
2705
|
background: var(--react-autoql-background-color-secondary) !important;
|
|
2658
2706
|
box-shadow: 0 0 14px 1px var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15));
|
|
@@ -2678,10 +2726,12 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2678
2726
|
color: var(--react-autoql-text-color-placeholder); } }
|
|
2679
2727
|
|
|
2680
2728
|
.ReactModal__Overlay--after-open .ReactModal__Content {
|
|
2681
|
-
transform: scale(1);
|
|
2729
|
+
transform: scale(1);
|
|
2730
|
+
opacity: 1; }
|
|
2682
2731
|
|
|
2683
2732
|
.ReactModal__Overlay--before-close .ReactModal__Content {
|
|
2684
|
-
transform: scale(
|
|
2733
|
+
transform: scale(50%);
|
|
2734
|
+
opacity: 0; }
|
|
2685
2735
|
|
|
2686
2736
|
.react-autoql-modal-content {
|
|
2687
2737
|
display: flex;
|
|
@@ -2690,6 +2740,18 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2690
2740
|
width: 100%;
|
|
2691
2741
|
overflow: hidden; }
|
|
2692
2742
|
|
|
2743
|
+
.react-autoql-modal-mobile {
|
|
2744
|
+
width: 100vw;
|
|
2745
|
+
max-width: 100vw;
|
|
2746
|
+
margin: 0;
|
|
2747
|
+
top: 0;
|
|
2748
|
+
position: fixed !important;
|
|
2749
|
+
left: 0;
|
|
2750
|
+
border: none !important;
|
|
2751
|
+
border-radius: 0 !important; }
|
|
2752
|
+
.react-autoql-modal-mobile .react-autoql-modal-body {
|
|
2753
|
+
padding: 20px 10px; }
|
|
2754
|
+
|
|
2693
2755
|
.react-autoql-modal-header {
|
|
2694
2756
|
display: flex;
|
|
2695
2757
|
align-items: flex-start;
|
|
@@ -3988,6 +4050,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3988
4050
|
padding-bottom: 10px;
|
|
3989
4051
|
overflow: hidden; }
|
|
3990
4052
|
|
|
4053
|
+
.react-autoql-notification-list-container-mobile .notification-feed-list {
|
|
4054
|
+
padding: 0 10px; }
|
|
4055
|
+
|
|
3991
4056
|
.notification-feed-top-options-container {
|
|
3992
4057
|
display: flex;
|
|
3993
4058
|
flex-direction: row;
|
|
@@ -4019,7 +4084,13 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4019
4084
|
height: 350px; }
|
|
4020
4085
|
|
|
4021
4086
|
.filter-lock-popover.filter-lock-popover-mobile {
|
|
4022
|
-
|
|
4087
|
+
border: none;
|
|
4088
|
+
transform: unset !important;
|
|
4089
|
+
height: calc(100% - 80px);
|
|
4090
|
+
max-height: calc(100% - 80px);
|
|
4091
|
+
top: 0px !important; }
|
|
4092
|
+
.filter-lock-popover.filter-lock-popover-mobile .popover-container-content {
|
|
4093
|
+
animation: scale-down-tl 0.2s ease; }
|
|
4023
4094
|
|
|
4024
4095
|
.filter-lock-popover .filter-lock-toast-container {
|
|
4025
4096
|
top: 0;
|
|
@@ -4048,7 +4119,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4048
4119
|
border-color: var(--react-autoql-danger-color); }
|
|
4049
4120
|
|
|
4050
4121
|
.filter-lock-menu-content {
|
|
4051
|
-
padding: 5px 10px;
|
|
4122
|
+
padding: 5px 10px;
|
|
4123
|
+
display: flex;
|
|
4124
|
+
flex-direction: column;
|
|
4125
|
+
height: 100%; }
|
|
4052
4126
|
.filter-lock-menu-content.closed {
|
|
4053
4127
|
opacity: 0; }
|
|
4054
4128
|
.filter-lock-menu-content h3,
|
|
@@ -4057,6 +4131,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4057
4131
|
color: var(--react-autoql-text-color-primary); }
|
|
4058
4132
|
.filter-lock-menu-content h4 {
|
|
4059
4133
|
font-weight: 500; }
|
|
4134
|
+
.filter-lock-menu-content .react-autoql-empty-filter-list {
|
|
4135
|
+
opacity: 0.7; }
|
|
4060
4136
|
.filter-lock-menu-content .react-autoql-filter-lock-list-loading-container,
|
|
4061
4137
|
.filter-lock-menu-content .react-autoql-empty-filter-list {
|
|
4062
4138
|
display: flex;
|
|
@@ -4064,7 +4140,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4064
4140
|
justify-content: center;
|
|
4065
4141
|
opacity: 0.8;
|
|
4066
4142
|
padding-right: 20px;
|
|
4067
|
-
padding-bottom: 45px;
|
|
4143
|
+
padding-bottom: 45px;
|
|
4144
|
+
color: var(--react-autoql-text-color-primary); }
|
|
4068
4145
|
.filter-lock-menu-content .react-autoql-filter-lock-list-loading-container,
|
|
4069
4146
|
.filter-lock-menu-content .react-autoql-empty-filter-list,
|
|
4070
4147
|
.filter-lock-menu-content .react-autoql-filter-list-container {
|
|
@@ -4264,6 +4341,14 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4264
4341
|
color: var(--react-autoql-text-color-primary);
|
|
4265
4342
|
opacity: 1; } }
|
|
4266
4343
|
|
|
4344
|
+
@keyframes scale-down-tl {
|
|
4345
|
+
0% {
|
|
4346
|
+
transform: scale(0.5);
|
|
4347
|
+
transform-origin: 0% 0%; }
|
|
4348
|
+
100% {
|
|
4349
|
+
transform: scale(1);
|
|
4350
|
+
transform-origin: 0% 0%; } }
|
|
4351
|
+
|
|
4267
4352
|
.chat-voice-record-button {
|
|
4268
4353
|
display: flex;
|
|
4269
4354
|
justify-content: center;
|
|
@@ -4454,113 +4539,120 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4454
4539
|
font-size: 20px;
|
|
4455
4540
|
color: #28a8e0; }
|
|
4456
4541
|
|
|
4457
|
-
.chat-
|
|
4542
|
+
.chat-message-and-rt-container {
|
|
4543
|
+
display: flex;
|
|
4544
|
+
flex-direction: column;
|
|
4545
|
+
justify-content: flex-start;
|
|
4546
|
+
align-items: flex-start;
|
|
4547
|
+
width: 100%;
|
|
4548
|
+
padding: 10px 20px 5px 20px;
|
|
4458
4549
|
transition: background-color 0.2s ease;
|
|
4459
|
-
|
|
4460
|
-
.chat-
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
.chat-
|
|
4465
|
-
max-height: 81%; }
|
|
4466
|
-
.chat-single-message-container:first-of-type {
|
|
4467
|
-
margin-top: 10px; }
|
|
4468
|
-
.chat-single-message-container .query-more-btn {
|
|
4469
|
-
transition-property: color, border-color, background-color, opacity;
|
|
4470
|
-
transition-duration: 0.3s;
|
|
4471
|
-
transition-timing-function: ease;
|
|
4472
|
-
font-size: 22px;
|
|
4473
|
-
padding: 13px;
|
|
4474
|
-
margin-bottom: 6px;
|
|
4475
|
-
height: 42px;
|
|
4476
|
-
opacity: 0;
|
|
4477
|
-
visibility: hidden;
|
|
4478
|
-
cursor: pointer; }
|
|
4479
|
-
.chat-single-message-container .query-more-btn:hover {
|
|
4480
|
-
opacity: 1; }
|
|
4481
|
-
.chat-single-message-container .react-autoql-response-content-container .query-output-error-message,
|
|
4482
|
-
.chat-single-message-container .react-autoql-response-content-container .feedback-message {
|
|
4483
|
-
margin: 0;
|
|
4484
|
-
text-align: left; }
|
|
4485
|
-
.chat-single-message-container .spinner-loader:after {
|
|
4486
|
-
border: 1px solid var(--react-autoql-accent-color);
|
|
4487
|
-
border-color: var(--react-autoql-accent-color) transparent var(--react-autoql-accent-color) transparent; }
|
|
4488
|
-
.chat-single-message-container .chat-message-bubble {
|
|
4489
|
-
box-shadow: var(--react-autoql-box-shadow-1); }
|
|
4490
|
-
.chat-single-message-container.response {
|
|
4550
|
+
position: relative; }
|
|
4551
|
+
.chat-message-and-rt-container:first-child {
|
|
4552
|
+
padding-top: 20px; }
|
|
4553
|
+
.chat-message-and-rt-container.text .chat-single-message-container .chat-message-bubble {
|
|
4554
|
+
max-width: 85%; }
|
|
4555
|
+
.chat-message-and-rt-container .chat-single-message-container {
|
|
4491
4556
|
display: flex;
|
|
4557
|
+
width: 100%;
|
|
4492
4558
|
min-height: 0;
|
|
4493
|
-
|
|
4494
|
-
|
|
4559
|
+
flex: 1; }
|
|
4560
|
+
.chat-message-and-rt-container.request {
|
|
4561
|
+
animation: scale-up-br 0.5s ease; }
|
|
4562
|
+
.chat-message-and-rt-container.request.pwa {
|
|
4563
|
+
margin-bottom: 30px; }
|
|
4564
|
+
.chat-message-and-rt-container.request .chat-single-message-container {
|
|
4565
|
+
justify-content: flex-end; }
|
|
4566
|
+
.chat-message-and-rt-container.request .chat-single-message-container .chat-message-bubble {
|
|
4567
|
+
background: var(--react-autoql-accent-color);
|
|
4568
|
+
color: var(--react-autoql-text-color-accent); }
|
|
4569
|
+
.chat-message-and-rt-container.response {
|
|
4495
4570
|
animation: scale-up-bl 0.5s ease; }
|
|
4496
|
-
.chat-
|
|
4497
|
-
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
|
|
4571
|
+
.chat-message-and-rt-container.response.pwa {
|
|
4572
|
+
margin-bottom: 15px; }
|
|
4573
|
+
.chat-message-and-rt-container.response.pwa.text {
|
|
4574
|
+
margin-bottom: 0px; }
|
|
4575
|
+
.chat-message-and-rt-container.response .chat-single-message-container {
|
|
4576
|
+
justify-content: flex-start; }
|
|
4577
|
+
.chat-message-and-rt-container.response .chat-single-message-container .chat-message-bubble {
|
|
4578
|
+
background: var(--react-autoql-background-color-secondary);
|
|
4579
|
+
color: var(--react-autoql-text-color-primary); }
|
|
4580
|
+
.chat-message-and-rt-container.response .chat-single-message-container .chat-message-bubble:not(.text) {
|
|
4581
|
+
min-width: 125px; }
|
|
4582
|
+
.chat-message-and-rt-container .chat-message-toolbars-container {
|
|
4502
4583
|
display: flex;
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
.
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
|
|
4536
|
-
|
|
4537
|
-
|
|
4538
|
-
|
|
4539
|
-
|
|
4540
|
-
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
opacity:
|
|
4548
|
-
.chat-
|
|
4549
|
-
.chat-
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
|
|
4553
|
-
|
|
4554
|
-
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
|
|
4558
|
-
|
|
4559
|
-
|
|
4560
|
-
|
|
4561
|
-
|
|
4562
|
-
|
|
4563
|
-
|
|
4584
|
+
position: absolute;
|
|
4585
|
+
align-items: flex-start;
|
|
4586
|
+
justify-content: space-between;
|
|
4587
|
+
transition: opacity 0.3s ease, color 0.3s ease;
|
|
4588
|
+
left: -10px;
|
|
4589
|
+
right: -10px;
|
|
4590
|
+
margin-bottom: -10px;
|
|
4591
|
+
bottom: 100%;
|
|
4592
|
+
z-index: 3; }
|
|
4593
|
+
.chat-message-and-rt-container .react-autoql-toolbar {
|
|
4594
|
+
display: flex;
|
|
4595
|
+
flex-wrap: nowrap;
|
|
4596
|
+
flex-direction: row; }
|
|
4597
|
+
.chat-message-and-rt-container .react-autoql-toolbar:not(.active) {
|
|
4598
|
+
pointer-events: none;
|
|
4599
|
+
visibility: hidden;
|
|
4600
|
+
opacity: 0; }
|
|
4601
|
+
.chat-message-and-rt-container:hover .react-autoql-toolbar,
|
|
4602
|
+
.chat-message-and-rt-container .react-autoql-toolbar.active {
|
|
4603
|
+
pointer-events: auto;
|
|
4604
|
+
visibility: visible;
|
|
4605
|
+
opacity: 1; }
|
|
4606
|
+
.chat-message-and-rt-container .react-autoql-toolbar-mobile {
|
|
4607
|
+
pointer-events: auto;
|
|
4608
|
+
visibility: visible;
|
|
4609
|
+
opacity: 1; }
|
|
4610
|
+
.chat-message-and-rt-container .chat-single-message-container {
|
|
4611
|
+
max-width: 100%; }
|
|
4612
|
+
.chat-message-and-rt-container .chat-single-message-container a {
|
|
4613
|
+
text-decoration: none;
|
|
4614
|
+
font-weight: 600;
|
|
4615
|
+
color: var(--react-autoql-accent-color); }
|
|
4616
|
+
.chat-message-and-rt-container .chat-single-message-container .query-more-btn {
|
|
4617
|
+
transition-property: color, border-color, background-color, opacity;
|
|
4618
|
+
transition-duration: 0.3s;
|
|
4619
|
+
transition-timing-function: ease;
|
|
4620
|
+
font-size: 22px;
|
|
4621
|
+
padding: 13px;
|
|
4622
|
+
margin-bottom: 6px;
|
|
4623
|
+
height: 42px;
|
|
4624
|
+
opacity: 0;
|
|
4625
|
+
visibility: hidden;
|
|
4626
|
+
cursor: pointer; }
|
|
4627
|
+
.chat-message-and-rt-container .chat-single-message-container .query-more-btn:hover {
|
|
4628
|
+
opacity: 1; }
|
|
4629
|
+
.chat-message-and-rt-container .chat-single-message-container .react-autoql-response-content-container .query-output-error-message,
|
|
4630
|
+
.chat-message-and-rt-container .chat-single-message-container .react-autoql-response-content-container .feedback-message {
|
|
4631
|
+
margin: 0;
|
|
4632
|
+
text-align: left; }
|
|
4633
|
+
.chat-message-and-rt-container .chat-single-message-container .spinner-loader:after {
|
|
4634
|
+
border: 1px solid var(--react-autoql-accent-color);
|
|
4635
|
+
border-color: var(--react-autoql-accent-color) transparent var(--react-autoql-accent-color) transparent; }
|
|
4636
|
+
.chat-message-and-rt-container .chat-single-message-container .chat-message-bubble {
|
|
4637
|
+
position: relative;
|
|
4638
|
+
padding: 13px;
|
|
4639
|
+
border-radius: 6px;
|
|
4640
|
+
max-width: 100%;
|
|
4641
|
+
word-wrap: break-word;
|
|
4642
|
+
font-family: inherit;
|
|
4643
|
+
font-size: 14px;
|
|
4644
|
+
letter-spacing: 0.04em;
|
|
4645
|
+
box-sizing: border-box;
|
|
4646
|
+
box-shadow: var(--react-autoql-box-shadow-1);
|
|
4647
|
+
max-height: 400px; }
|
|
4648
|
+
.chat-message-and-rt-container .chat-single-message-container .chat-message-bubble.active {
|
|
4649
|
+
border: 1px solid #c3c3c3; }
|
|
4650
|
+
.chat-message-and-rt-container .chat-message-rt-container {
|
|
4651
|
+
flex: 0 0 auto;
|
|
4652
|
+
padding-top: 5px;
|
|
4653
|
+
padding-left: 5px; }
|
|
4654
|
+
.chat-message-and-rt-container .chat-message-rt-container .react-autoql-reverse-translation {
|
|
4655
|
+
background: transparent; }
|
|
4564
4656
|
|
|
4565
4657
|
/* animations */
|
|
4566
4658
|
@keyframes scale-up-br {
|
|
@@ -4585,8 +4677,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4585
4677
|
width: 100%;
|
|
4586
4678
|
padding-bottom: 158px;
|
|
4587
4679
|
background-color: var(--react-autoql-background-color-primary); }
|
|
4588
|
-
.chat-content-scroll-container .chat-content-scrollbars-container {
|
|
4589
|
-
padding-top: 10px; }
|
|
4590
4680
|
|
|
4591
4681
|
.react-autoql-drawer .response-loading-container {
|
|
4592
4682
|
position: absolute;
|
|
@@ -4735,6 +4825,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4735
4825
|
.react-autoql-drawer .react-autoql-header-center-container {
|
|
4736
4826
|
font-size: 18px;
|
|
4737
4827
|
letter-spacing: 0.05em; }
|
|
4828
|
+
.react-autoql-drawer .react-autoql-header-left-container.hidden {
|
|
4829
|
+
width: 0px; }
|
|
4830
|
+
.react-autoql-drawer .react-autoql-header-right-container.hidden {
|
|
4831
|
+
width: 0px; }
|
|
4738
4832
|
.react-autoql-drawer .drawer-content-wrapper {
|
|
4739
4833
|
transition: unset !important; } }
|
|
4740
4834
|
|
|
@@ -5661,8 +5755,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
5661
5755
|
background: transparent;
|
|
5662
5756
|
width: 100%;
|
|
5663
5757
|
overflow: hidden;
|
|
5664
|
-
padding-top: 3px;
|
|
5665
|
-
min-width: 500px; }
|
|
5758
|
+
padding-top: 3px; }
|
|
5666
5759
|
|
|
5667
5760
|
.react-autoql-dashboard-container.edit-mode {
|
|
5668
5761
|
padding-bottom: 200px; }
|
package/dist/autoql.esm.css.gz
CHANGED
|
Binary file
|