react-autoql 7.4.0-alpha.0 → 8.0.0-alpha.11
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 +78 -41
- 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
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
|
|
2
|
+
:root {
|
|
3
|
+
--react-autoql-danger-color-default: #ca0b00; }
|
|
4
|
+
|
|
2
5
|
.react-autoql-spinner-centered {
|
|
3
6
|
width: 100%;
|
|
4
7
|
text-align: center;
|
|
@@ -404,7 +407,6 @@ a {
|
|
|
404
407
|
.react-autoql-month-range-picker .react-autoql-month-picker-month-picker .month-picker-month.current-month.active .month-picker-month-text-wrapper .month-picker-month-text:after {
|
|
405
408
|
background: var(--react-autoql-text-color-accent); }
|
|
406
409
|
|
|
407
|
-
|
|
408
410
|
.react-autoql-date-picker .rdrCalendarWrapper,
|
|
409
411
|
.react-autoql-date-picker .rdrDateRangeWrapper,
|
|
410
412
|
.react-autoql-date-picker .react-autoql-month-range-picker {
|
|
@@ -573,16 +575,16 @@ a {
|
|
|
573
575
|
opacity: 0.8; }
|
|
574
576
|
|
|
575
577
|
.react-autoql-btn.react-autoql-btn-danger:not(.btn-filled) {
|
|
576
|
-
color: var(--react-autoql-danger-color,
|
|
577
|
-
border: 1px solid var(--react-autoql-danger-color,
|
|
578
|
+
color: var(--react-autoql-danger-color, var(--react-autoql-danger-color-default));
|
|
579
|
+
border: 1px solid var(--react-autoql-danger-color, var(--react-autoql-danger-color-default));
|
|
578
580
|
background: inherit; }
|
|
579
581
|
.react-autoql-btn.react-autoql-btn-danger:not(.btn-filled):hover {
|
|
580
582
|
background: var(--react-autoql-mask-color); }
|
|
581
583
|
|
|
582
584
|
.react-autoql-btn.react-autoql-btn-danger.btn-filled {
|
|
583
585
|
color: var(--react-autoql-text-color-accent);
|
|
584
|
-
background: var(--react-autoql-danger-color,
|
|
585
|
-
border: 1px solid var(--react-autoql-danger-color,
|
|
586
|
+
background: var(--react-autoql-danger-color, var(--react-autoql-danger-color-default));
|
|
587
|
+
border: 1px solid var(--react-autoql-danger-color, var(--react-autoql-danger-color-default)); }
|
|
586
588
|
.react-autoql-btn.react-autoql-btn-danger.btn-filled:hover {
|
|
587
589
|
opacity: 0.8; }
|
|
588
590
|
|
|
@@ -620,10 +622,10 @@ a {
|
|
|
620
622
|
.react-autoql-table-container.loading {
|
|
621
623
|
pointer-events: none; }
|
|
622
624
|
.react-autoql-table-container.hidden {
|
|
623
|
-
visibility: hidden;
|
|
624
|
-
position: absolute;
|
|
625
|
-
pointer-events: none;
|
|
626
|
-
opacity: 0; }
|
|
625
|
+
visibility: hidden !important;
|
|
626
|
+
position: absolute !important;
|
|
627
|
+
pointer-events: none !important;
|
|
628
|
+
opacity: 0 !important; }
|
|
627
629
|
.react-autoql-table-container.empty:not(.filtering) .tabulator-headers {
|
|
628
630
|
overflow: hidden;
|
|
629
631
|
height: 37px !important; }
|
|
@@ -678,7 +680,8 @@ a {
|
|
|
678
680
|
.react-autoql-table-container:not(.filtering) .tabulator-header-filter input {
|
|
679
681
|
opacity: 0;
|
|
680
682
|
visibility: hidden;
|
|
681
|
-
pointer-events: none;
|
|
683
|
+
pointer-events: none;
|
|
684
|
+
line-height: 14px; }
|
|
682
685
|
.react-autoql-table-container:not(.filtering) .react-autoql-tabulator-container .tabulator-tableholder {
|
|
683
686
|
min-height: calc(100% - 37px) !important;
|
|
684
687
|
height: calc(100% - 37px) !important;
|
|
@@ -1531,17 +1534,19 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1531
1534
|
font-size: inherit; }
|
|
1532
1535
|
|
|
1533
1536
|
.no-columns-error-message {
|
|
1534
|
-
|
|
1537
|
+
display: flex;
|
|
1538
|
+
flex-direction: column;
|
|
1539
|
+
align-items: center;
|
|
1540
|
+
justify-content: center;
|
|
1535
1541
|
padding: 20px;
|
|
1536
1542
|
font-size: 13px; }
|
|
1537
1543
|
.no-columns-error-message .warning-icon {
|
|
1538
1544
|
font-size: 22px;
|
|
1539
1545
|
display: block;
|
|
1540
|
-
margin-bottom:
|
|
1541
|
-
|
|
1546
|
+
margin-bottom: 10px;
|
|
1547
|
+
color: var(--react-autoql-warning-color); }
|
|
1542
1548
|
.no-columns-error-message .eye-icon {
|
|
1543
|
-
vertical-align:
|
|
1544
|
-
line-height: 18px; }
|
|
1549
|
+
vertical-align: middle; }
|
|
1545
1550
|
|
|
1546
1551
|
.query-output-footer {
|
|
1547
1552
|
display: flex;
|
|
@@ -2228,6 +2233,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2228
2233
|
.rule-simple-validation-container .expression-term-validation-valid {
|
|
2229
2234
|
color: var(--react-autoql-success-color); }
|
|
2230
2235
|
|
|
2236
|
+
.data-alert-condition-statement .data-alert-condition-statement-query1,
|
|
2237
|
+
.data-alert-condition-statement .data-alert-condition-statement-query2 {
|
|
2238
|
+
font-style: italic; }
|
|
2239
|
+
|
|
2231
2240
|
.notification-rule-outer-container {
|
|
2232
2241
|
position: relative;
|
|
2233
2242
|
padding-bottom: 5px; }
|
|
@@ -2303,9 +2312,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2303
2312
|
padding: 10px 20px;
|
|
2304
2313
|
font-weight: 500;
|
|
2305
2314
|
color: var(--react-autoql-accent-color); }
|
|
2306
|
-
.react-autoql-notification-list-item .react-autoql-notification-condition-statement .data-alert-condition-statement-query1,
|
|
2307
|
-
.react-autoql-notification-list-item .react-autoql-notification-condition-statement .data-alert-condition-statement-query2 {
|
|
2308
|
-
font-style: italic; }
|
|
2309
2315
|
.react-autoql-notification-list-item .react-autoql-notification-condition-statement .data-alert-condition-statement-operator {
|
|
2310
2316
|
text-decoration: underline; }
|
|
2311
2317
|
.react-autoql-notification-list-item .react-autoql-notification-condition-statement .data-alerts-container,
|
|
@@ -2554,14 +2560,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2554
2560
|
opacity: 1;
|
|
2555
2561
|
top: 0; } }
|
|
2556
2562
|
|
|
2557
|
-
|
|
2558
2563
|
.data-alert-schedule-builder-step .schedule-builder-day-of-year-selector {
|
|
2559
2564
|
display: inline-flex;
|
|
2560
2565
|
align-items: flex-end; }
|
|
2561
2566
|
|
|
2562
|
-
.data-alert-schedule-builder-step .data-alert-condition-statement {
|
|
2563
|
-
font-style: italic; }
|
|
2564
|
-
|
|
2565
2567
|
.data-alert-schedule-builder-step .schedule-builder-at-connector {
|
|
2566
2568
|
padding-bottom: 8px; }
|
|
2567
2569
|
|
|
@@ -2581,7 +2583,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2581
2583
|
|
|
2582
2584
|
.data-alert-schedule-builder-step .frequency-type-container {
|
|
2583
2585
|
padding: 3px 5px;
|
|
2584
|
-
margin-bottom:
|
|
2586
|
+
margin-bottom: 15px; }
|
|
2585
2587
|
.data-alert-schedule-builder-step .frequency-type-container .react-autoql-select {
|
|
2586
2588
|
padding-left: 2px; }
|
|
2587
2589
|
|
|
@@ -2594,6 +2596,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2594
2596
|
width: 100%;
|
|
2595
2597
|
min-width: -moz-fit-content;
|
|
2596
2598
|
min-width: fit-content; }
|
|
2599
|
+
.data-alert-schedule-builder-step .frequency-settings-container .react-autoql-info-tooltip {
|
|
2600
|
+
color: var(--react-autoql-accent-color);
|
|
2601
|
+
opacity: 1; }
|
|
2597
2602
|
.data-alert-schedule-builder-step .frequency-settings-container .react-autoql-data-alert-frequency-option.check-frequency {
|
|
2598
2603
|
display: flex;
|
|
2599
2604
|
width: 300px;
|
|
@@ -2641,7 +2646,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2641
2646
|
display: block;
|
|
2642
2647
|
margin-top: 16px;
|
|
2643
2648
|
text-align: center;
|
|
2644
|
-
|
|
2649
|
+
color: var(--react-autoql-accent-color);
|
|
2645
2650
|
cursor: pointer; }
|
|
2646
2651
|
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container .react-autoql-step-hoz-dot {
|
|
2647
2652
|
width: 2em;
|
|
@@ -2656,14 +2661,16 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2656
2661
|
border-radius: 50%;
|
|
2657
2662
|
justify-content: center;
|
|
2658
2663
|
background: var(--react-autoql-background-color-secondary);
|
|
2659
|
-
border: 1px solid var(--react-autoql-
|
|
2660
|
-
color: var(--react-autoql-
|
|
2664
|
+
border: 1px solid var(--react-autoql-accent-color);
|
|
2665
|
+
color: var(--react-autoql-accent-color);
|
|
2661
2666
|
transition: opacity 0.2s ease; }
|
|
2662
2667
|
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container .react-autoql-step-hoz-dot span {
|
|
2663
2668
|
font-size: 1rem;
|
|
2664
2669
|
font-variant-numeric: tabular-nums; }
|
|
2665
2670
|
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.complete, .react-autoql-steps-hoz-container .react-autoql-step-hoz-container.active {
|
|
2666
2671
|
color: var(--react-autoql-accent-color); }
|
|
2672
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.complete .react-autoql-step-hoz-title, .react-autoql-steps-hoz-container .react-autoql-step-hoz-container.active .react-autoql-step-hoz-title {
|
|
2673
|
+
font-weight: 500; }
|
|
2667
2674
|
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.complete .react-autoql-step-hoz-dot,
|
|
2668
2675
|
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.complete .react-autoql-step-connector, .react-autoql-steps-hoz-container .react-autoql-step-hoz-container.active .react-autoql-step-hoz-dot,
|
|
2669
2676
|
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.active .react-autoql-step-connector {
|
|
@@ -2675,7 +2682,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2675
2682
|
background: var(--react-autoql-warning-color);
|
|
2676
2683
|
color: var(--react-autoql-text-color-accent); }
|
|
2677
2684
|
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.disabled .react-autoql-step-hoz-dot,
|
|
2678
|
-
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.disabled .react-autoql-step-hoz-title,
|
|
2685
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.disabled .react-autoql-step-hoz-title-container .react-autoql-step-hoz-title,
|
|
2679
2686
|
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.disabled .react-autoql-step-connector {
|
|
2680
2687
|
cursor: default !important;
|
|
2681
2688
|
color: var(--react-autoql-text-color-placeholder);
|
|
@@ -2687,10 +2694,13 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2687
2694
|
position: absolute; }
|
|
2688
2695
|
.react-autoql-steps-hoz-container .react-autoql-step-connector-container .react-autoql-step-connector {
|
|
2689
2696
|
display: block;
|
|
2690
|
-
border-color: var(--react-autoql-
|
|
2697
|
+
border-color: var(--react-autoql-accent-color);
|
|
2691
2698
|
border-top-style: solid;
|
|
2692
2699
|
border-top-width: 1px; }
|
|
2693
2700
|
|
|
2701
|
+
.data-alert-settings-modal-content {
|
|
2702
|
+
padding: 20px 100px; }
|
|
2703
|
+
|
|
2694
2704
|
.react-autoql-data-alert-setting-group {
|
|
2695
2705
|
display: flex;
|
|
2696
2706
|
flex-direction: row; }
|
|
@@ -2743,20 +2753,49 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2743
2753
|
white-space: nowrap; }
|
|
2744
2754
|
|
|
2745
2755
|
.react-autoql-data-alert-modal-body {
|
|
2746
|
-
padding:
|
|
2756
|
+
padding: 0; }
|
|
2757
|
+
|
|
2758
|
+
.react-autoql-data-alert-creation-modal {
|
|
2759
|
+
height: calc(100vh - 90px); }
|
|
2760
|
+
.react-autoql-data-alert-creation-modal .react-autoql-modal-footer {
|
|
2761
|
+
padding: 0; }
|
|
2762
|
+
.react-autoql-data-alert-creation-modal .react-autoql-modal-footer .data-alert-modal-query-summary-container {
|
|
2763
|
+
position: relative; }
|
|
2764
|
+
.react-autoql-data-alert-creation-modal .react-autoql-modal-footer .data-alert-modal-query-summary-container .data-alert-modal-query-summary-background {
|
|
2765
|
+
position: absolute;
|
|
2766
|
+
top: 0;
|
|
2767
|
+
left: 0;
|
|
2768
|
+
bottom: 0;
|
|
2769
|
+
right: 0;
|
|
2770
|
+
opacity: 0.2;
|
|
2771
|
+
background: var(--react-autoql-accent-color); }
|
|
2772
|
+
.react-autoql-data-alert-creation-modal .react-autoql-modal-footer .data-alert-modal-query-summary-container .data-alert-modal-query-summary {
|
|
2773
|
+
position: relative;
|
|
2774
|
+
padding: 10px 20px;
|
|
2775
|
+
text-align: center;
|
|
2776
|
+
color: var(--react-autoql-text-color-primary); }
|
|
2777
|
+
.react-autoql-data-alert-creation-modal .react-autoql-modal-footer .react-autoql-data-alert-modal-footer {
|
|
2778
|
+
width: 100%;
|
|
2779
|
+
display: flex;
|
|
2780
|
+
justify-content: space-between;
|
|
2781
|
+
padding: 8px 10px; }
|
|
2747
2782
|
|
|
2748
2783
|
.react-autoql-data-alert-modal-content {
|
|
2749
2784
|
height: 400px;
|
|
2750
2785
|
max-height: 90vh;
|
|
2751
|
-
padding: 0px 80px;
|
|
2752
2786
|
display: flex;
|
|
2753
2787
|
flex-direction: column; }
|
|
2788
|
+
.react-autoql-data-alert-modal-content .react-autoql-steps-hoz-container {
|
|
2789
|
+
padding: 40px 100px;
|
|
2790
|
+
padding-bottom: 20px; }
|
|
2754
2791
|
.react-autoql-data-alert-modal-content .react-autoql-data-alert-modal-step {
|
|
2755
2792
|
font-weight: 400;
|
|
2756
2793
|
font-size: 15px;
|
|
2757
|
-
padding
|
|
2794
|
+
padding: 100px;
|
|
2795
|
+
padding-top: 15px;
|
|
2796
|
+
padding-bottom: 20px; }
|
|
2758
2797
|
.react-autoql-data-alert-modal-content .react-autoql-data-alert-modal-step .react-autoql-data-alert-frequency-option {
|
|
2759
|
-
margin-right:
|
|
2798
|
+
margin-right: 5px; }
|
|
2760
2799
|
.react-autoql-data-alert-modal-content .react-autoql-data-alert-modal-step .data-alert-modal-condition-title {
|
|
2761
2800
|
margin-top: 20px;
|
|
2762
2801
|
margin-bottom: 5px; }
|
|
@@ -2809,6 +2848,13 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2809
2848
|
animation: none; }
|
|
2810
2849
|
.react-autoql-data-alert-modal-content .compose-message-section .preview-section .data-alert-preview .react-autoql-notification-extra-content {
|
|
2811
2850
|
display: none !important; }
|
|
2851
|
+
.react-autoql-data-alert-modal-content .data-alert-modal-step-content-container {
|
|
2852
|
+
display: flex;
|
|
2853
|
+
flex-direction: column;
|
|
2854
|
+
flex-wrap: nowrap;
|
|
2855
|
+
justify-content: space-between;
|
|
2856
|
+
width: 100%;
|
|
2857
|
+
height: 100%; }
|
|
2812
2858
|
.react-autoql-data-alert-modal-content .react-autoql-step-content p {
|
|
2813
2859
|
margin-bottom: 0.5em;
|
|
2814
2860
|
margin-top: 0.5em;
|
|
@@ -2820,11 +2866,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2820
2866
|
.react-autoql-data-alert-modal-content .data-alert-chunked-rt {
|
|
2821
2867
|
color: var(--react-autoql-text-color-primary); }
|
|
2822
2868
|
|
|
2823
|
-
.react-autoql-data-alert-modal-footer {
|
|
2824
|
-
width: 100%;
|
|
2825
|
-
display: flex;
|
|
2826
|
-
justify-content: space-between; }
|
|
2827
|
-
|
|
2828
2869
|
.modal-footer-button-container {
|
|
2829
2870
|
display: flex;
|
|
2830
2871
|
flex-direction: row; }
|
|
@@ -3466,7 +3507,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3466
3507
|
.chat-single-message-container .query-more-btn:hover {
|
|
3467
3508
|
opacity: 1; }
|
|
3468
3509
|
.chat-single-message-container .react-autoql-response-content-container .query-output-error-message,
|
|
3469
|
-
.chat-single-message-container .react-autoql-response-content-container .no-columns-error-message,
|
|
3470
3510
|
.chat-single-message-container .react-autoql-response-content-container .feedback-message {
|
|
3471
3511
|
margin: 0;
|
|
3472
3512
|
text-align: left; }
|
|
@@ -3776,9 +3816,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3776
3816
|
list-style-type: none; }
|
|
3777
3817
|
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__input--focused {
|
|
3778
3818
|
outline: none; }
|
|
3779
|
-
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__input::-ms-clear,
|
|
3780
|
-
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestions-container {
|
|
3781
|
-
display: none; }
|
|
3782
3819
|
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestion {
|
|
3783
3820
|
cursor: pointer;
|
|
3784
3821
|
padding: 2px;
|
package/dist/autoql.esm.css.gz
CHANGED
|
Binary file
|