react-autoql 4.9.0 → 5.0.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 -1
- package/dist/autoql.cjs.js.gz +0 -0
- package/dist/autoql.esm.css +160 -88
- package/dist/autoql.esm.css.gz +0 -0
- package/dist/autoql.esm.js +2 -2
- package/dist/autoql.esm.js.gz +0 -0
- package/package.json +5 -4
package/dist/autoql.cjs.js.gz
CHANGED
|
Binary file
|
package/dist/autoql.esm.css
CHANGED
|
@@ -80,14 +80,6 @@ span.react-autoql-icon {
|
|
|
80
80
|
.chat-voice-record-icon {
|
|
81
81
|
vertical-align: top; }
|
|
82
82
|
|
|
83
|
-
.react-autoql-tooltip {
|
|
84
|
-
font-family: inherit;
|
|
85
|
-
letter-spacing: 0.04em;
|
|
86
|
-
text-align: left;
|
|
87
|
-
padding: 7px 15px;
|
|
88
|
-
opacity: 1 !important;
|
|
89
|
-
z-index: 99999 !important; }
|
|
90
|
-
|
|
91
83
|
@-webkit-keyframes slide {
|
|
92
84
|
0% {
|
|
93
85
|
transform: translateX(-100%); }
|
|
@@ -817,23 +809,35 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
817
809
|
opacity: 0;
|
|
818
810
|
transition: none; }
|
|
819
811
|
.react-autoql-chart-container .bar,
|
|
812
|
+
.react-autoql-chart-container .column,
|
|
813
|
+
.react-autoql-chart-container .circle,
|
|
814
|
+
.react-autoql-chart-container .line,
|
|
815
|
+
.react-autoql-chart-container .slice,
|
|
816
|
+
.react-autoql-chart-container .stacked-area,
|
|
820
817
|
.react-autoql-chart-container .stacked-bar,
|
|
821
818
|
.react-autoql-chart-container .stacked-column,
|
|
822
|
-
.react-autoql-chart-container .
|
|
823
|
-
.react-autoql-chart-container .stacked-area {
|
|
819
|
+
.react-autoql-chart-container .swatch {
|
|
824
820
|
transition: fill-opacity 0.3s ease;
|
|
825
|
-
fill-opacity:
|
|
821
|
+
fill-opacity: 1 !important;
|
|
826
822
|
outline: none !important; }
|
|
827
823
|
.react-autoql-chart-container .bar:hover, .react-autoql-chart-container .bar.active,
|
|
824
|
+
.react-autoql-chart-container .column:hover,
|
|
825
|
+
.react-autoql-chart-container .column.active,
|
|
826
|
+
.react-autoql-chart-container .circle:hover,
|
|
827
|
+
.react-autoql-chart-container .circle.active,
|
|
828
|
+
.react-autoql-chart-container .line:hover,
|
|
829
|
+
.react-autoql-chart-container .line.active,
|
|
830
|
+
.react-autoql-chart-container .slice:hover,
|
|
831
|
+
.react-autoql-chart-container .slice.active,
|
|
832
|
+
.react-autoql-chart-container .stacked-area:hover,
|
|
833
|
+
.react-autoql-chart-container .stacked-area.active,
|
|
828
834
|
.react-autoql-chart-container .stacked-bar:hover,
|
|
829
835
|
.react-autoql-chart-container .stacked-bar.active,
|
|
830
836
|
.react-autoql-chart-container .stacked-column:hover,
|
|
831
837
|
.react-autoql-chart-container .stacked-column.active,
|
|
832
|
-
.react-autoql-chart-container .
|
|
833
|
-
.react-autoql-chart-container .
|
|
834
|
-
|
|
835
|
-
.react-autoql-chart-container .stacked-area.active {
|
|
836
|
-
fill-opacity: 1 !important; }
|
|
838
|
+
.react-autoql-chart-container .swatch:hover,
|
|
839
|
+
.react-autoql-chart-container .swatch.active {
|
|
840
|
+
fill-opacity: 0.7 !important; }
|
|
837
841
|
.react-autoql-chart-container .line-dot,
|
|
838
842
|
.react-autoql-chart-container .vertex-dot {
|
|
839
843
|
transition: opacity 0.3s ease;
|
|
@@ -3264,16 +3268,19 @@ ul {
|
|
|
3264
3268
|
border-radius: 4px;
|
|
3265
3269
|
box-shadow: 0px 0 8px rgba(0, 0, 0, 0.15);
|
|
3266
3270
|
opacity: 1;
|
|
3267
|
-
min-width:
|
|
3268
|
-
max-width:
|
|
3269
|
-
min-height:
|
|
3270
|
-
max-height:
|
|
3271
|
+
min-width: 450px;
|
|
3272
|
+
max-width: 95vw;
|
|
3273
|
+
min-height: 0px;
|
|
3274
|
+
max-height: 95vh;
|
|
3275
|
+
height: 350px;
|
|
3271
3276
|
background: var(--react-autoql-background-color-primary);
|
|
3272
|
-
color: var(--react-autoql-text-color-primary);
|
|
3273
|
-
overflow-y: auto !important; }
|
|
3277
|
+
color: var(--react-autoql-text-color-primary); }
|
|
3274
3278
|
.filter-lock-menu .filter-lock-toast-container {
|
|
3275
3279
|
top: 0;
|
|
3276
|
-
position: absolute;
|
|
3280
|
+
position: absolute;
|
|
3281
|
+
max-width: calc(100% - 36px);
|
|
3282
|
+
padding: 10px;
|
|
3283
|
+
font-size: 14px; }
|
|
3277
3284
|
.filter-lock-menu .filter-lock-toast-container .Toastify__toast {
|
|
3278
3285
|
min-height: 48px; }
|
|
3279
3286
|
.filter-lock-menu .filter-lock-toast-container .Toastify__toast-body {
|
|
@@ -3294,84 +3301,139 @@ ul {
|
|
|
3294
3301
|
border-color: var(--react-autoql-danger-color); }
|
|
3295
3302
|
|
|
3296
3303
|
.filter-lock-menu-content {
|
|
3297
|
-
padding: 15px 20px;
|
|
3304
|
+
padding: 15px 0 0px 20px;
|
|
3298
3305
|
display: flex;
|
|
3299
3306
|
flex-direction: column;
|
|
3300
3307
|
justify-content: stretch;
|
|
3301
|
-
height: 100%;
|
|
3308
|
+
height: 100%;
|
|
3309
|
+
width: 100%;
|
|
3310
|
+
box-sizing: border-box; }
|
|
3302
3311
|
.filter-lock-menu-content.closed {
|
|
3303
3312
|
opacity: 0; }
|
|
3304
3313
|
.filter-lock-menu-content h3 {
|
|
3305
|
-
margin-top:
|
|
3306
|
-
margin-bottom:
|
|
3314
|
+
margin-top: 0px;
|
|
3315
|
+
margin-bottom: 0px;
|
|
3307
3316
|
color: var(--react-autoql-text-color-primary); }
|
|
3308
3317
|
.filter-lock-menu-content h4 {
|
|
3309
3318
|
margin-top: 3px;
|
|
3310
3319
|
margin-bottom: 5px;
|
|
3311
|
-
color: var(--react-autoql-text-color-primary);
|
|
3312
|
-
|
|
3313
|
-
.filter-lock-menu-content .react-autoql-
|
|
3314
|
-
|
|
3320
|
+
color: var(--react-autoql-text-color-primary); }
|
|
3321
|
+
.filter-lock-menu-content .react-autoql-filter-lock-list-loading-container,
|
|
3322
|
+
.filter-lock-menu-content .react-autoql-empty-filter-list {
|
|
3323
|
+
display: flex;
|
|
3324
|
+
align-items: center;
|
|
3325
|
+
justify-content: center;
|
|
3326
|
+
opacity: 0.8;
|
|
3327
|
+
padding-right: 20px;
|
|
3328
|
+
padding-bottom: 45px; }
|
|
3329
|
+
.filter-lock-menu-content .react-autoql-filter-lock-list-loading-container,
|
|
3330
|
+
.filter-lock-menu-content .react-autoql-empty-filter-list,
|
|
3315
3331
|
.filter-lock-menu-content .react-autoql-filter-list-container {
|
|
3316
|
-
flex: 1
|
|
3332
|
+
flex: 1; }
|
|
3317
3333
|
.filter-lock-menu-content .filter-lock-menu-header {
|
|
3318
3334
|
flex: 0;
|
|
3319
3335
|
width: 100%;
|
|
3320
3336
|
display: flex;
|
|
3337
|
+
align-items: center;
|
|
3321
3338
|
align-items: flex-start;
|
|
3322
|
-
justify-content: space-between;
|
|
3339
|
+
justify-content: space-between;
|
|
3340
|
+
padding-bottom: 15px;
|
|
3341
|
+
box-sizing: border-box;
|
|
3342
|
+
padding-right: 15px; }
|
|
3323
3343
|
.filter-lock-menu-content .filter-lock-menu-header .filter-locking-close-btn {
|
|
3324
3344
|
border: none;
|
|
3325
3345
|
margin: 0;
|
|
3326
3346
|
padding: 0;
|
|
3327
3347
|
font-size: 20px; }
|
|
3348
|
+
.filter-lock-menu-content .filter-lock-menu-header .filter-locking-saving-indicator {
|
|
3349
|
+
display: inline-block;
|
|
3350
|
+
font-weight: 400;
|
|
3351
|
+
font-size: 14px;
|
|
3352
|
+
padding-right: 20px;
|
|
3353
|
+
color: var(--react-autoql-accent-color); }
|
|
3328
3354
|
.filter-lock-menu-content .filter-lock-menu-footer {
|
|
3329
3355
|
width: 100%;
|
|
3330
3356
|
display: flex;
|
|
3331
3357
|
justify-content: flex-end; }
|
|
3332
|
-
.filter-lock-menu-content .react-autoql-empty-condition-list {
|
|
3333
|
-
opacity: 0.8;
|
|
3334
|
-
width: 100%;
|
|
3335
|
-
text-align: center;
|
|
3336
|
-
padding-top: 70px; }
|
|
3337
3358
|
.filter-lock-menu-content .react-autoql-filter-list-container {
|
|
3338
|
-
margin:
|
|
3339
|
-
|
|
3359
|
+
margin-top: 15px;
|
|
3360
|
+
margin-right: 0;
|
|
3361
|
+
overflow: hidden; }
|
|
3362
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title {
|
|
3340
3363
|
width: 100%;
|
|
3341
3364
|
display: flex;
|
|
3365
|
+
flex-wrap: nowrap;
|
|
3342
3366
|
flex-direction: row;
|
|
3367
|
+
align-items: flex-start;
|
|
3343
3368
|
justify-content: space-between;
|
|
3344
|
-
flex-wrap: nowrap;
|
|
3345
3369
|
margin-bottom: 4px; }
|
|
3346
|
-
.filter-lock-menu-content .react-autoql-filter-list-container .
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
max-width:
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
-
|
|
3371
|
-
|
|
3372
|
-
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3370
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title .filter-lock-category-title {
|
|
3371
|
+
padding-right: 10px;
|
|
3372
|
+
padding-top: 1px;
|
|
3373
|
+
max-width: 195px;
|
|
3374
|
+
overflow: hidden;
|
|
3375
|
+
text-overflow: ellipsis; }
|
|
3376
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title .filter-name-column {
|
|
3377
|
+
display: flex;
|
|
3378
|
+
flex-wrap: wrap;
|
|
3379
|
+
flex-direction: row;
|
|
3380
|
+
align-items: center;
|
|
3381
|
+
justify-content: flex-start;
|
|
3382
|
+
flex: 1; }
|
|
3383
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title .persist-toggle-column {
|
|
3384
|
+
display: flex;
|
|
3385
|
+
flex-wrap: nowrap;
|
|
3386
|
+
flex-direction: row;
|
|
3387
|
+
align-items: center;
|
|
3388
|
+
justify-content: flex-end;
|
|
3389
|
+
flex: 0 0 auto;
|
|
3390
|
+
margin-right: 40px; }
|
|
3391
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title .persist-toggle-column .react-autoql-icon {
|
|
3392
|
+
margin-left: 3px; }
|
|
3393
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-item-container {
|
|
3394
|
+
margin-bottom: 10px;
|
|
3395
|
+
margin-right: 0px; }
|
|
3396
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-item-container .react-autoql-filter-list-item {
|
|
3397
|
+
display: flex;
|
|
3398
|
+
flex-direction: row;
|
|
3399
|
+
justify-content: space-between;
|
|
3400
|
+
flex-wrap: nowrap;
|
|
3401
|
+
padding-right: 10px;
|
|
3402
|
+
margin-bottom: 1px;
|
|
3403
|
+
margin-top: 1px;
|
|
3404
|
+
padding-top: 1px;
|
|
3405
|
+
padding-bottom: 1px;
|
|
3406
|
+
padding-left: 5px;
|
|
3407
|
+
margin-right: 10px; }
|
|
3408
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-item-container .react-autoql-filter-list-item .react-autoql-filter-list-item-filter {
|
|
3409
|
+
overflow: hidden;
|
|
3410
|
+
text-overflow: ellipsis;
|
|
3411
|
+
padding-right: 5px; }
|
|
3412
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-item-container .react-autoql-filter-list-item .react-autoql-filter-list-item-actions {
|
|
3413
|
+
white-space: nowrap;
|
|
3414
|
+
display: flex;
|
|
3415
|
+
justify-content: center;
|
|
3416
|
+
align-items: center; }
|
|
3417
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-item-container .react-autoql-filter-list-item .persist-toggle {
|
|
3418
|
+
margin: 0 25px; }
|
|
3419
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-item-container .react-autoql-filter-list-item .react-autoql-remove-filter-icon {
|
|
3420
|
+
cursor: pointer; }
|
|
3421
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-item-container .react-autoql-filter-list-item .react-autoql-remove-filter-icon:hover {
|
|
3422
|
+
color: var(--react-autoql-danger-color); }
|
|
3423
|
+
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-item-container .react-autoql-filter-list-item.react-autoql-highlight-row {
|
|
3424
|
+
background-color: var(--react-autoql-accent-color);
|
|
3425
|
+
color: var(--react-autoql-accent-text-color);
|
|
3426
|
+
-webkit-animation-name: highlightIn, highlightOut;
|
|
3427
|
+
animation-name: highlightIn, highlightOut;
|
|
3428
|
+
-webkit-animation-duration: 300ms, 300ms;
|
|
3429
|
+
animation-duration: 300ms, 300ms;
|
|
3430
|
+
-webkit-animation-delay: 0ms, 1000ms;
|
|
3431
|
+
animation-delay: 0ms, 1000ms;
|
|
3432
|
+
-webkit-animation-timing-function: ease-in, ease-out;
|
|
3433
|
+
animation-timing-function: ease-in, ease-out;
|
|
3434
|
+
-webkit-animation-iteration-count: 1, 1;
|
|
3435
|
+
animation-iteration-count: 1, 1; }
|
|
3436
|
+
.filter-lock-menu-content .react-autoql-filter-locking-input {
|
|
3375
3437
|
padding: 5px;
|
|
3376
3438
|
padding-left: 20px;
|
|
3377
3439
|
height: 32px;
|
|
@@ -3386,14 +3448,16 @@ ul {
|
|
|
3386
3448
|
border: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.1));
|
|
3387
3449
|
background: var(--react-autoql-background-color-primary);
|
|
3388
3450
|
color: var(--react-autoql-text-color-primary); }
|
|
3389
|
-
.filter-lock-menu-content .react-autoql-
|
|
3451
|
+
.filter-lock-menu-content .react-autoql-filter-locking-input:hover {
|
|
3390
3452
|
box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1); }
|
|
3391
|
-
.filter-lock-menu-content .react-autoql-
|
|
3453
|
+
.filter-lock-menu-content .react-autoql-filter-locking-input::-moz-placeholder {
|
|
3392
3454
|
color: rgba(var(--react-autoql-text-color-placeholder), 2) !important;
|
|
3393
3455
|
opacity: 0.5; }
|
|
3394
|
-
.filter-lock-menu-content .react-autoql-
|
|
3456
|
+
.filter-lock-menu-content .react-autoql-filter-locking-input::placeholder {
|
|
3395
3457
|
color: rgba(var(--react-autoql-text-color-placeholder), 2) !important;
|
|
3396
3458
|
opacity: 0.5; }
|
|
3459
|
+
.filter-lock-menu-content .react-autosuggest__container {
|
|
3460
|
+
margin-right: 20px; }
|
|
3397
3461
|
.filter-lock-menu-content .react-autosuggest__container--open {
|
|
3398
3462
|
position: relative; }
|
|
3399
3463
|
.filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open {
|
|
@@ -3410,20 +3474,22 @@ ul {
|
|
|
3410
3474
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13);
|
|
3411
3475
|
text-align: left;
|
|
3412
3476
|
border-radius: 4px;
|
|
3413
|
-
height: auto;
|
|
3414
3477
|
width: 100%;
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
|
|
3478
|
+
height: auto;
|
|
3479
|
+
max-height: calc(90vh - 180px);
|
|
3480
|
+
box-sizing: border-box;
|
|
3481
|
+
overflow: hidden; }
|
|
3482
|
+
.filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .filter-lock-suggestion-item {
|
|
3418
3483
|
cursor: pointer;
|
|
3419
3484
|
width: 100%;
|
|
3420
|
-
columns: 2;
|
|
3421
|
-
-webkit-columns: 2;
|
|
3422
|
-
list-style: none;
|
|
3423
|
-
-moz-columns: 2;
|
|
3424
3485
|
letter-spacing: 0.05em;
|
|
3425
3486
|
line-height: 22.5px;
|
|
3426
|
-
padding: 0px 20px 3px 20px;
|
|
3487
|
+
padding: 0px 20px 3px 20px;
|
|
3488
|
+
box-sizing: border-box;
|
|
3489
|
+
line-height: inherit;
|
|
3490
|
+
margin-bottom: 5px;
|
|
3491
|
+
overflow: hidden;
|
|
3492
|
+
text-overflow: ellipsis; }
|
|
3427
3493
|
.filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__suggestion {
|
|
3428
3494
|
color: var(--react-autoql-text-color-primary); }
|
|
3429
3495
|
.filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__suggestions-list {
|
|
@@ -3456,18 +3522,22 @@ ul {
|
|
|
3456
3522
|
@-webkit-keyframes highlightIn {
|
|
3457
3523
|
100% {
|
|
3458
3524
|
background-color: var(--react-autoql-accent-color);
|
|
3459
|
-
color: var(--react-autoql-accent-text-color);
|
|
3525
|
+
color: var(--react-autoql-accent-text-color);
|
|
3526
|
+
opacity: 0.8; }
|
|
3460
3527
|
0% {
|
|
3461
3528
|
background-color: var(--react-autoql-background-color-primary);
|
|
3462
|
-
color: var(--react-autoql-text-color-primary);
|
|
3529
|
+
color: var(--react-autoql-text-color-primary);
|
|
3530
|
+
opacity: 1; } }
|
|
3463
3531
|
|
|
3464
3532
|
@keyframes highlightIn {
|
|
3465
3533
|
100% {
|
|
3466
3534
|
background-color: var(--react-autoql-accent-color);
|
|
3467
|
-
color: var(--react-autoql-accent-text-color);
|
|
3535
|
+
color: var(--react-autoql-accent-text-color);
|
|
3536
|
+
opacity: 0.8; }
|
|
3468
3537
|
0% {
|
|
3469
3538
|
background-color: var(--react-autoql-background-color-primary);
|
|
3470
|
-
color: var(--react-autoql-text-color-primary);
|
|
3539
|
+
color: var(--react-autoql-text-color-primary);
|
|
3540
|
+
opacity: 1; } }
|
|
3471
3541
|
|
|
3472
3542
|
.react-autoql-drawer {
|
|
3473
3543
|
font-family: var(--react-autoql-font-family), sans-serif;
|
|
@@ -3670,7 +3740,7 @@ ul {
|
|
|
3670
3740
|
cursor: ns-resize; }
|
|
3671
3741
|
|
|
3672
3742
|
/* Tooltips */
|
|
3673
|
-
.react-autoql-
|
|
3743
|
+
.react-autoql-tooltip {
|
|
3674
3744
|
font-family: var(--react-autoql-font-family), sans-serif;
|
|
3675
3745
|
letter-spacing: 0.04em;
|
|
3676
3746
|
line-height: 1.5em;
|
|
@@ -3679,7 +3749,9 @@ ul {
|
|
|
3679
3749
|
text-align: left;
|
|
3680
3750
|
opacity: 1 !important;
|
|
3681
3751
|
z-index: 99999 !important;
|
|
3682
|
-
/* necessary to show up on top of rc drawer */
|
|
3752
|
+
/* necessary to show up on top of rc drawer */
|
|
3753
|
+
max-width: 300px;
|
|
3754
|
+
word-break: break-word; }
|
|
3683
3755
|
|
|
3684
3756
|
.interpretation-tooltip {
|
|
3685
3757
|
font-family: var(--react-autoql-font-family), sans-serif;
|
package/dist/autoql.esm.css.gz
CHANGED
|
Binary file
|