react-autoql 8.0.1 → 8.0.2-alpha.3
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 +206 -146
- 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,
|
|
@@ -1503,8 +1509,6 @@ a {
|
|
|
1503
1509
|
min-height: calc(100% - 60px) !important;
|
|
1504
1510
|
height: calc(100% - 60px) !important;
|
|
1505
1511
|
max-height: calc(100% - 60px) !important; }
|
|
1506
|
-
.react-autoql-table-container.filtering .filter-tag {
|
|
1507
|
-
display: none; }
|
|
1508
1512
|
.react-autoql-table-container.filtering.empty .react-autoql-table.tabulator .tabulator-header {
|
|
1509
1513
|
border: none; }
|
|
1510
1514
|
.react-autoql-table-container.filtering.empty .react-autoql-table.tabulator .tabulator-header .tabulator-headers {
|
|
@@ -1528,7 +1532,8 @@ a {
|
|
|
1528
1532
|
outline: none !important;
|
|
1529
1533
|
text-overflow: ellipsis;
|
|
1530
1534
|
visibility: visible;
|
|
1531
|
-
opacity: 1;
|
|
1535
|
+
opacity: 1;
|
|
1536
|
+
height: 25px; }
|
|
1532
1537
|
.react-autoql-table-container .tabulator-header-filter input:focus {
|
|
1533
1538
|
border: 1px solid var(--react-autoql-accent-color); }
|
|
1534
1539
|
.react-autoql-table-container.supports-drilldown .tabulator-row .tabulator-cell:not(.pivot-category) {
|
|
@@ -1554,17 +1559,21 @@ a {
|
|
|
1554
1559
|
color: #e80000; }
|
|
1555
1560
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header {
|
|
1556
1561
|
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
|
-
|
|
1562
|
+
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .tabulator-col.is-filtered .tabulator-col-title:before {
|
|
1563
|
+
opacity: 1; }
|
|
1564
|
+
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .tabulator-col-title:before {
|
|
1565
|
+
content: '';
|
|
1566
|
+
display: inline-block;
|
|
1567
|
+
vertical-align: middle;
|
|
1568
|
+
opacity: 0;
|
|
1569
|
+
height: 8px;
|
|
1570
|
+
width: 8px;
|
|
1564
1571
|
margin-right: 5px;
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1572
|
+
margin-left: -12px;
|
|
1573
|
+
margin-bottom: 2px;
|
|
1574
|
+
border-radius: 10px;
|
|
1575
|
+
background: var(--react-autoql-warning-color);
|
|
1576
|
+
transition: opacity 0.3s ease; }
|
|
1568
1577
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row,
|
|
1569
1578
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header,
|
|
1570
1579
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-headers,
|
|
@@ -1579,11 +1588,13 @@ a {
|
|
|
1579
1588
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row:last-child {
|
|
1580
1589
|
border-bottom: none;
|
|
1581
1590
|
margin-bottom: 15px; }
|
|
1582
|
-
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row .tabulator-cell
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1591
|
+
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row .tabulator-cell {
|
|
1592
|
+
line-height: 1.5em; }
|
|
1593
|
+
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row .tabulator-cell:not(:first-child) {
|
|
1594
|
+
border-left: 1px solid !important;
|
|
1595
|
+
border-color: var(--react-autoql-table-border-color) !important; }
|
|
1596
|
+
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row .tabulator-cell.pivot-category {
|
|
1597
|
+
font-weight: 600; }
|
|
1587
1598
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .tabulator-col {
|
|
1588
1599
|
text-align: center !important;
|
|
1589
1600
|
border-color: transparent;
|
|
@@ -1996,7 +2007,8 @@ g.legendOrdinal tspan {
|
|
|
1996
2007
|
padding: 0 8px;
|
|
1997
2008
|
margin-right: 10px; }
|
|
1998
2009
|
.number-axis-selector-popover .axis-selector-apply-btn-container {
|
|
1999
|
-
flex: 0 0 auto;
|
|
2010
|
+
flex: 0 0 auto;
|
|
2011
|
+
padding-top: 10px; }
|
|
2000
2012
|
.number-axis-selector-popover .axis-selector-apply-btn-container .axis-selector-apply-btn {
|
|
2001
2013
|
margin: 0;
|
|
2002
2014
|
width: 100%; }
|
|
@@ -2053,9 +2065,12 @@ g.legendOrdinal tspan {
|
|
|
2053
2065
|
background: var(--react-autoql-accent-color);
|
|
2054
2066
|
color: var(--react-autoql-text-color-accent); }
|
|
2055
2067
|
|
|
2068
|
+
g.legendOrdinal text,
|
|
2069
|
+
g.legendOrdinal tspan {
|
|
2070
|
+
font-size: inherit; }
|
|
2071
|
+
|
|
2056
2072
|
g.legendOrdinal .legendTitle tspan {
|
|
2057
2073
|
letter-spacing: 0.04em !important;
|
|
2058
|
-
font-size: 12px;
|
|
2059
2074
|
cursor: default; }
|
|
2060
2075
|
|
|
2061
2076
|
.react-autoql-popover-mobile .number-selector-field-group-container {
|
|
@@ -2505,8 +2520,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2505
2520
|
color: var(--react-autoql-text-color-primary);
|
|
2506
2521
|
background-color: var(--react-autoql-background-color-primary);
|
|
2507
2522
|
border-radius: 5px;
|
|
2508
|
-
padding: 5px 13px 5px 13px;
|
|
2509
2523
|
height: 100%; }
|
|
2524
|
+
.react-autoql-reverse-translation-container .react-autoql-reverse-translation .react-autoql-icon-info {
|
|
2525
|
+
vertical-align: text-bottom;
|
|
2526
|
+
padding-bottom: 1.5px; }
|
|
2510
2527
|
|
|
2511
2528
|
.report-like-text-button {
|
|
2512
2529
|
background: none !important;
|
|
@@ -2546,7 +2563,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2546
2563
|
cursor: pointer; }
|
|
2547
2564
|
.react-autoql-btn.react-autoql-toolbar-btn.filter-btn {
|
|
2548
2565
|
line-height: 24px; }
|
|
2549
|
-
.react-autoql-btn.react-autoql-toolbar-btn.selected {
|
|
2566
|
+
.react-autoql-btn.react-autoql-toolbar-btn.react-autoql-toolbar-btn-selected {
|
|
2550
2567
|
color: var(--react-autoql-accent-color); }
|
|
2551
2568
|
|
|
2552
2569
|
.react-autoql-toolbar-btn.green {
|
|
@@ -2619,8 +2636,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2619
2636
|
display: flex;
|
|
2620
2637
|
flex-direction: column;
|
|
2621
2638
|
overflow: hidden !important;
|
|
2622
|
-
|
|
2623
|
-
|
|
2639
|
+
opacity: 0;
|
|
2640
|
+
transform: scale(50%);
|
|
2641
|
+
transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
|
|
2624
2642
|
color: var(--react-autoql-text-color-primary);
|
|
2625
2643
|
background: var(--react-autoql-background-color-secondary) !important;
|
|
2626
2644
|
box-shadow: 0 0 14px 1px var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15));
|
|
@@ -2651,8 +2669,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2651
2669
|
display: flex;
|
|
2652
2670
|
flex-direction: column;
|
|
2653
2671
|
overflow: hidden !important;
|
|
2654
|
-
|
|
2655
|
-
|
|
2672
|
+
opacity: 0;
|
|
2673
|
+
transform: scale(50%);
|
|
2674
|
+
transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
|
|
2656
2675
|
color: var(--react-autoql-text-color-primary);
|
|
2657
2676
|
background: var(--react-autoql-background-color-secondary) !important;
|
|
2658
2677
|
box-shadow: 0 0 14px 1px var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15));
|
|
@@ -2678,10 +2697,12 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2678
2697
|
color: var(--react-autoql-text-color-placeholder); } }
|
|
2679
2698
|
|
|
2680
2699
|
.ReactModal__Overlay--after-open .ReactModal__Content {
|
|
2681
|
-
transform: scale(1);
|
|
2700
|
+
transform: scale(1);
|
|
2701
|
+
opacity: 1; }
|
|
2682
2702
|
|
|
2683
2703
|
.ReactModal__Overlay--before-close .ReactModal__Content {
|
|
2684
|
-
transform: scale(
|
|
2704
|
+
transform: scale(50%);
|
|
2705
|
+
opacity: 0; }
|
|
2685
2706
|
|
|
2686
2707
|
.react-autoql-modal-content {
|
|
2687
2708
|
display: flex;
|
|
@@ -2690,6 +2711,18 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2690
2711
|
width: 100%;
|
|
2691
2712
|
overflow: hidden; }
|
|
2692
2713
|
|
|
2714
|
+
.react-autoql-modal-mobile {
|
|
2715
|
+
width: 100vw;
|
|
2716
|
+
max-width: 100vw;
|
|
2717
|
+
margin: 0;
|
|
2718
|
+
top: 0;
|
|
2719
|
+
position: fixed !important;
|
|
2720
|
+
left: 0;
|
|
2721
|
+
border: none !important;
|
|
2722
|
+
border-radius: 0 !important; }
|
|
2723
|
+
.react-autoql-modal-mobile .react-autoql-modal-body {
|
|
2724
|
+
padding: 20px 10px; }
|
|
2725
|
+
|
|
2693
2726
|
.react-autoql-modal-header {
|
|
2694
2727
|
display: flex;
|
|
2695
2728
|
align-items: flex-start;
|
|
@@ -3988,6 +4021,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3988
4021
|
padding-bottom: 10px;
|
|
3989
4022
|
overflow: hidden; }
|
|
3990
4023
|
|
|
4024
|
+
.react-autoql-notification-list-container-mobile .notification-feed-list {
|
|
4025
|
+
padding: 0 10px; }
|
|
4026
|
+
|
|
3991
4027
|
.notification-feed-top-options-container {
|
|
3992
4028
|
display: flex;
|
|
3993
4029
|
flex-direction: row;
|
|
@@ -4019,7 +4055,13 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4019
4055
|
height: 350px; }
|
|
4020
4056
|
|
|
4021
4057
|
.filter-lock-popover.filter-lock-popover-mobile {
|
|
4022
|
-
|
|
4058
|
+
border: none;
|
|
4059
|
+
transform: unset !important;
|
|
4060
|
+
height: calc(100vh - 80px);
|
|
4061
|
+
max-height: calc(100vh - 80px);
|
|
4062
|
+
top: 0px !important; }
|
|
4063
|
+
.filter-lock-popover.filter-lock-popover-mobile .popover-container-content {
|
|
4064
|
+
animation: scale-down-tl 0.2s ease; }
|
|
4023
4065
|
|
|
4024
4066
|
.filter-lock-popover .filter-lock-toast-container {
|
|
4025
4067
|
top: 0;
|
|
@@ -4048,7 +4090,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4048
4090
|
border-color: var(--react-autoql-danger-color); }
|
|
4049
4091
|
|
|
4050
4092
|
.filter-lock-menu-content {
|
|
4051
|
-
padding: 5px 10px;
|
|
4093
|
+
padding: 5px 10px;
|
|
4094
|
+
display: flex;
|
|
4095
|
+
flex-direction: column;
|
|
4096
|
+
height: 100%; }
|
|
4052
4097
|
.filter-lock-menu-content.closed {
|
|
4053
4098
|
opacity: 0; }
|
|
4054
4099
|
.filter-lock-menu-content h3,
|
|
@@ -4057,6 +4102,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4057
4102
|
color: var(--react-autoql-text-color-primary); }
|
|
4058
4103
|
.filter-lock-menu-content h4 {
|
|
4059
4104
|
font-weight: 500; }
|
|
4105
|
+
.filter-lock-menu-content .react-autoql-empty-filter-list {
|
|
4106
|
+
opacity: 0.7; }
|
|
4060
4107
|
.filter-lock-menu-content .react-autoql-filter-lock-list-loading-container,
|
|
4061
4108
|
.filter-lock-menu-content .react-autoql-empty-filter-list {
|
|
4062
4109
|
display: flex;
|
|
@@ -4064,7 +4111,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4064
4111
|
justify-content: center;
|
|
4065
4112
|
opacity: 0.8;
|
|
4066
4113
|
padding-right: 20px;
|
|
4067
|
-
padding-bottom: 45px;
|
|
4114
|
+
padding-bottom: 45px;
|
|
4115
|
+
color: var(--react-autoql-text-color-primary); }
|
|
4068
4116
|
.filter-lock-menu-content .react-autoql-filter-lock-list-loading-container,
|
|
4069
4117
|
.filter-lock-menu-content .react-autoql-empty-filter-list,
|
|
4070
4118
|
.filter-lock-menu-content .react-autoql-filter-list-container {
|
|
@@ -4264,6 +4312,14 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4264
4312
|
color: var(--react-autoql-text-color-primary);
|
|
4265
4313
|
opacity: 1; } }
|
|
4266
4314
|
|
|
4315
|
+
@keyframes scale-down-tl {
|
|
4316
|
+
0% {
|
|
4317
|
+
transform: scale(0.5);
|
|
4318
|
+
transform-origin: 0% 0%; }
|
|
4319
|
+
100% {
|
|
4320
|
+
transform: scale(1);
|
|
4321
|
+
transform-origin: 0% 0%; } }
|
|
4322
|
+
|
|
4267
4323
|
.chat-voice-record-button {
|
|
4268
4324
|
display: flex;
|
|
4269
4325
|
justify-content: center;
|
|
@@ -4454,113 +4510,120 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4454
4510
|
font-size: 20px;
|
|
4455
4511
|
color: #28a8e0; }
|
|
4456
4512
|
|
|
4457
|
-
.chat-
|
|
4513
|
+
.chat-message-and-rt-container {
|
|
4514
|
+
display: flex;
|
|
4515
|
+
flex-direction: column;
|
|
4516
|
+
justify-content: flex-start;
|
|
4517
|
+
align-items: flex-start;
|
|
4518
|
+
width: 100%;
|
|
4519
|
+
padding: 10px 20px 5px 20px;
|
|
4458
4520
|
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 {
|
|
4521
|
+
position: relative; }
|
|
4522
|
+
.chat-message-and-rt-container:first-child {
|
|
4523
|
+
padding-top: 20px; }
|
|
4524
|
+
.chat-message-and-rt-container.text .chat-single-message-container .chat-message-bubble {
|
|
4525
|
+
max-width: 85%; }
|
|
4526
|
+
.chat-message-and-rt-container .chat-single-message-container {
|
|
4491
4527
|
display: flex;
|
|
4528
|
+
width: 100%;
|
|
4492
4529
|
min-height: 0;
|
|
4493
|
-
|
|
4494
|
-
|
|
4530
|
+
flex: 1; }
|
|
4531
|
+
.chat-message-and-rt-container.request {
|
|
4532
|
+
animation: scale-up-br 0.5s ease; }
|
|
4533
|
+
.chat-message-and-rt-container.request.pwa {
|
|
4534
|
+
margin-bottom: 30px; }
|
|
4535
|
+
.chat-message-and-rt-container.request .chat-single-message-container {
|
|
4536
|
+
justify-content: flex-end; }
|
|
4537
|
+
.chat-message-and-rt-container.request .chat-single-message-container .chat-message-bubble {
|
|
4538
|
+
background: var(--react-autoql-accent-color);
|
|
4539
|
+
color: var(--react-autoql-text-color-accent); }
|
|
4540
|
+
.chat-message-and-rt-container.response {
|
|
4495
4541
|
animation: scale-up-bl 0.5s ease; }
|
|
4496
|
-
.chat-
|
|
4497
|
-
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
|
|
4542
|
+
.chat-message-and-rt-container.response.pwa {
|
|
4543
|
+
margin-bottom: 15px; }
|
|
4544
|
+
.chat-message-and-rt-container.response.pwa.text {
|
|
4545
|
+
margin-bottom: 0px; }
|
|
4546
|
+
.chat-message-and-rt-container.response .chat-single-message-container {
|
|
4547
|
+
justify-content: flex-start; }
|
|
4548
|
+
.chat-message-and-rt-container.response .chat-single-message-container .chat-message-bubble {
|
|
4549
|
+
background: var(--react-autoql-background-color-secondary);
|
|
4550
|
+
color: var(--react-autoql-text-color-primary); }
|
|
4551
|
+
.chat-message-and-rt-container.response .chat-single-message-container .chat-message-bubble:not(.text) {
|
|
4552
|
+
min-width: 125px; }
|
|
4553
|
+
.chat-message-and-rt-container .chat-message-toolbars-container {
|
|
4502
4554
|
display: flex;
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
.
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
padding:
|
|
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
|
-
|
|
4555
|
+
position: absolute;
|
|
4556
|
+
align-items: flex-start;
|
|
4557
|
+
justify-content: space-between;
|
|
4558
|
+
transition: opacity 0.3s ease, color 0.3s ease;
|
|
4559
|
+
width: 100%;
|
|
4560
|
+
top: -20px;
|
|
4561
|
+
right: 0;
|
|
4562
|
+
z-index: 3;
|
|
4563
|
+
padding: 0 10px; }
|
|
4564
|
+
.chat-message-and-rt-container .react-autoql-toolbar {
|
|
4565
|
+
display: flex;
|
|
4566
|
+
flex-wrap: nowrap;
|
|
4567
|
+
flex-direction: row; }
|
|
4568
|
+
.chat-message-and-rt-container .react-autoql-toolbar:not(.active) {
|
|
4569
|
+
pointer-events: none;
|
|
4570
|
+
visibility: hidden;
|
|
4571
|
+
opacity: 0; }
|
|
4572
|
+
.chat-message-and-rt-container:hover .react-autoql-toolbar,
|
|
4573
|
+
.chat-message-and-rt-container .react-autoql-toolbar.active {
|
|
4574
|
+
pointer-events: auto;
|
|
4575
|
+
visibility: visible;
|
|
4576
|
+
opacity: 1; }
|
|
4577
|
+
.chat-message-and-rt-container .react-autoql-toolbar-mobile {
|
|
4578
|
+
pointer-events: auto;
|
|
4579
|
+
visibility: visible;
|
|
4580
|
+
opacity: 1; }
|
|
4581
|
+
.chat-message-and-rt-container .chat-single-message-container {
|
|
4582
|
+
max-width: 100%; }
|
|
4583
|
+
.chat-message-and-rt-container .chat-single-message-container a {
|
|
4584
|
+
text-decoration: none;
|
|
4585
|
+
font-weight: 600;
|
|
4586
|
+
color: var(--react-autoql-accent-color); }
|
|
4587
|
+
.chat-message-and-rt-container .chat-single-message-container .query-more-btn {
|
|
4588
|
+
transition-property: color, border-color, background-color, opacity;
|
|
4589
|
+
transition-duration: 0.3s;
|
|
4590
|
+
transition-timing-function: ease;
|
|
4591
|
+
font-size: 22px;
|
|
4592
|
+
padding: 13px;
|
|
4593
|
+
margin-bottom: 6px;
|
|
4594
|
+
height: 42px;
|
|
4595
|
+
opacity: 0;
|
|
4596
|
+
visibility: hidden;
|
|
4597
|
+
cursor: pointer; }
|
|
4598
|
+
.chat-message-and-rt-container .chat-single-message-container .query-more-btn:hover {
|
|
4599
|
+
opacity: 1; }
|
|
4600
|
+
.chat-message-and-rt-container .chat-single-message-container .react-autoql-response-content-container .query-output-error-message,
|
|
4601
|
+
.chat-message-and-rt-container .chat-single-message-container .react-autoql-response-content-container .feedback-message {
|
|
4602
|
+
margin: 0;
|
|
4603
|
+
text-align: left; }
|
|
4604
|
+
.chat-message-and-rt-container .chat-single-message-container .spinner-loader:after {
|
|
4605
|
+
border: 1px solid var(--react-autoql-accent-color);
|
|
4606
|
+
border-color: var(--react-autoql-accent-color) transparent var(--react-autoql-accent-color) transparent; }
|
|
4607
|
+
.chat-message-and-rt-container .chat-single-message-container .chat-message-bubble {
|
|
4608
|
+
position: relative;
|
|
4609
|
+
padding: 13px;
|
|
4610
|
+
border-radius: 6px;
|
|
4611
|
+
max-width: 100%;
|
|
4612
|
+
word-wrap: break-word;
|
|
4613
|
+
font-family: inherit;
|
|
4614
|
+
font-size: 14px;
|
|
4615
|
+
letter-spacing: 0.04em;
|
|
4616
|
+
box-sizing: border-box;
|
|
4617
|
+
box-shadow: var(--react-autoql-box-shadow-1);
|
|
4618
|
+
max-height: 400px; }
|
|
4619
|
+
.chat-message-and-rt-container .chat-single-message-container .chat-message-bubble.active {
|
|
4620
|
+
border: 1px solid #c3c3c3; }
|
|
4621
|
+
.chat-message-and-rt-container .chat-message-rt-container {
|
|
4622
|
+
flex: 0 0 auto;
|
|
4623
|
+
padding-top: 5px;
|
|
4624
|
+
padding-left: 5px; }
|
|
4625
|
+
.chat-message-and-rt-container .chat-message-rt-container .react-autoql-reverse-translation {
|
|
4626
|
+
background: transparent; }
|
|
4564
4627
|
|
|
4565
4628
|
/* animations */
|
|
4566
4629
|
@keyframes scale-up-br {
|
|
@@ -4585,8 +4648,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4585
4648
|
width: 100%;
|
|
4586
4649
|
padding-bottom: 158px;
|
|
4587
4650
|
background-color: var(--react-autoql-background-color-primary); }
|
|
4588
|
-
.chat-content-scroll-container .chat-content-scrollbars-container {
|
|
4589
|
-
padding-top: 10px; }
|
|
4590
4651
|
|
|
4591
4652
|
.react-autoql-drawer .response-loading-container {
|
|
4592
4653
|
position: absolute;
|
|
@@ -5661,8 +5722,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
5661
5722
|
background: transparent;
|
|
5662
5723
|
width: 100%;
|
|
5663
5724
|
overflow: hidden;
|
|
5664
|
-
padding-top: 3px;
|
|
5665
|
-
min-width: 500px; }
|
|
5725
|
+
padding-top: 3px; }
|
|
5666
5726
|
|
|
5667
5727
|
.react-autoql-dashboard-container.edit-mode {
|
|
5668
5728
|
padding-bottom: 200px; }
|
package/dist/autoql.esm.css.gz
CHANGED
|
Binary file
|