react-autoql 6.0.2 → 6.1.1
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 -3
- package/dist/autoql.cjs.js.gz +0 -0
- package/dist/autoql.esm.css +42 -6
- package/dist/autoql.esm.css.gz +0 -0
- package/dist/autoql.esm.js +1 -3
- package/dist/autoql.esm.js.gz +0 -0
- package/package.json +17 -19
package/dist/autoql.cjs.js.gz
CHANGED
|
Binary file
|
package/dist/autoql.esm.css
CHANGED
|
@@ -2552,7 +2552,17 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2552
2552
|
flex-direction: column;
|
|
2553
2553
|
justify-content: flex-start; }
|
|
2554
2554
|
.query-tips-page-container h2 {
|
|
2555
|
-
color: var(--react-autoql-text-color-primary);
|
|
2555
|
+
color: var(--react-autoql-text-color-primary);
|
|
2556
|
+
display: block;
|
|
2557
|
+
font-size: 1.5em;
|
|
2558
|
+
-webkit-margin-before: 0.83em;
|
|
2559
|
+
margin-block-start: 0.83em;
|
|
2560
|
+
-webkit-margin-after: 0.83em;
|
|
2561
|
+
margin-block-end: 0.83em;
|
|
2562
|
+
-webkit-margin-start: 0px;
|
|
2563
|
+
margin-inline-start: 0px;
|
|
2564
|
+
-webkit-margin-end: 0px;
|
|
2565
|
+
margin-inline-end: 0px; }
|
|
2556
2566
|
.query-tips-page-container .react-autoql-chatbar-input-container {
|
|
2557
2567
|
flex: 0;
|
|
2558
2568
|
padding: 10px; }
|
|
@@ -2576,7 +2586,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2576
2586
|
font-weight: bold;
|
|
2577
2587
|
color: var(--react-autoql-accent-color); }
|
|
2578
2588
|
.query-tips-page-container .query-tips-result-container .query-tips-result-placeholder {
|
|
2579
|
-
|
|
2589
|
+
font-size: 15px;
|
|
2590
|
+
margin-top: 50px;
|
|
2591
|
+
margin: 50px auto;
|
|
2592
|
+
padding: 0 40px; }
|
|
2580
2593
|
.query-tips-page-container .chat-bar-clear-btn {
|
|
2581
2594
|
position: absolute;
|
|
2582
2595
|
display: flex;
|
|
@@ -2768,6 +2781,12 @@ ul {
|
|
|
2768
2781
|
.data-explorer-section.data-preview-section .react-autoql-card-content,
|
|
2769
2782
|
.data-explorer-section.data-preview-section .react-autoql-card-user-content {
|
|
2770
2783
|
flex: 0 0 auto !important; }
|
|
2784
|
+
.data-explorer-section .data-preview-error-message {
|
|
2785
|
+
white-space: initial;
|
|
2786
|
+
text-align: center;
|
|
2787
|
+
font-size: 13px;
|
|
2788
|
+
margin-top: 20px;
|
|
2789
|
+
margin-bottom: 10px; }
|
|
2771
2790
|
.data-explorer-section .data-preview-scroll-container,
|
|
2772
2791
|
.data-explorer-section .custom-scrollbar-view {
|
|
2773
2792
|
width: 100%;
|
|
@@ -2775,6 +2794,12 @@ ul {
|
|
|
2775
2794
|
white-space: nowrap;
|
|
2776
2795
|
text-overflow: ellipsis;
|
|
2777
2796
|
overflow: auto; }
|
|
2797
|
+
.data-explorer-section .custom-scrollbar-view:hover::-webkit-scrollbar-corner {
|
|
2798
|
+
background-color: transparent; }
|
|
2799
|
+
.data-explorer-section .custom-scrollbar-view:hover::-webkit-scrollbar-track,
|
|
2800
|
+
.data-explorer-section .custom-scrollbar-view:hover::-webkit-scrollbar-track-piece,
|
|
2801
|
+
.data-explorer-section .custom-scrollbar-view::-webkit-scrollbar-corner {
|
|
2802
|
+
background-color: transparent; }
|
|
2778
2803
|
.data-explorer-section .data-explorer-data-preview {
|
|
2779
2804
|
flex: 0 0 auto;
|
|
2780
2805
|
overflow: hidden;
|
|
@@ -2819,7 +2844,7 @@ ul {
|
|
|
2819
2844
|
align-items: center;
|
|
2820
2845
|
justify-content: center; }
|
|
2821
2846
|
.data-explorer-section .data-explorer-data-preview tbody tr {
|
|
2822
|
-
height:
|
|
2847
|
+
height: 24px; }
|
|
2823
2848
|
.data-explorer-section .data-explorer-data-preview tbody tr:not(:last-child) {
|
|
2824
2849
|
border-bottom: 1px solid var(--react-autoql-border-color); }
|
|
2825
2850
|
.data-explorer-section .data-explorer-data-preview tbody tr td {
|
|
@@ -2886,6 +2911,18 @@ ul {
|
|
|
2886
2911
|
padding: 0 40px;
|
|
2887
2912
|
font-size: 15px;
|
|
2888
2913
|
flex: 1; }
|
|
2914
|
+
.data-explorer-page-container .data-explorer-intro-message h2 {
|
|
2915
|
+
display: block;
|
|
2916
|
+
font-size: 1.5em;
|
|
2917
|
+
-webkit-margin-before: 0.83em;
|
|
2918
|
+
margin-block-start: 0.83em;
|
|
2919
|
+
-webkit-margin-after: 0.83em;
|
|
2920
|
+
margin-block-end: 0.83em;
|
|
2921
|
+
-webkit-margin-start: 0px;
|
|
2922
|
+
margin-inline-start: 0px;
|
|
2923
|
+
-webkit-margin-end: 0px;
|
|
2924
|
+
margin-inline-end: 0px;
|
|
2925
|
+
color: var(--react-autoql-text-color-primary); }
|
|
2889
2926
|
.data-explorer-page-container .data-explorer-intro-message .intro-message-list-container {
|
|
2890
2927
|
display: flex;
|
|
2891
2928
|
justify-content: center;
|
|
@@ -2964,8 +3001,6 @@ ul {
|
|
|
2964
3001
|
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .animated-item {
|
|
2965
3002
|
animation: fadeIn 0.3s linear;
|
|
2966
3003
|
animation-fill-mode: both; }
|
|
2967
|
-
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .query-tips-result-placeholder {
|
|
2968
|
-
margin-top: 50px; }
|
|
2969
3004
|
.data-explorer-page-container .chat-bar-clear-btn {
|
|
2970
3005
|
position: absolute;
|
|
2971
3006
|
display: flex;
|
|
@@ -3527,7 +3562,8 @@ ul {
|
|
|
3527
3562
|
box-shadow: 0px 0 8px rgba(0, 0, 0, 0.15);
|
|
3528
3563
|
transition: opacity 0.2s ease 0s !important;
|
|
3529
3564
|
opacity: 1 !important;
|
|
3530
|
-
overflow: hidden !important;
|
|
3565
|
+
overflow: hidden !important;
|
|
3566
|
+
background-color: var(--react-autoql-background-color-secondary); }
|
|
3531
3567
|
|
|
3532
3568
|
.clear-messages-confirm-popover {
|
|
3533
3569
|
color: var(--react-autoql-text-color-primary);
|
package/dist/autoql.esm.css.gz
CHANGED
|
Binary file
|