react-autoql 4.4.5 → 4.5.2
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.esm.css +60 -33
- 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 +1 -1
package/dist/autoql.esm.css
CHANGED
|
@@ -310,7 +310,27 @@ span.react-autoql-icon {
|
|
|
310
310
|
flex: 1;
|
|
311
311
|
max-width: 100%;
|
|
312
312
|
width: 100%;
|
|
313
|
-
background-color: inherit;
|
|
313
|
+
background-color: inherit;
|
|
314
|
+
position: relative; }
|
|
315
|
+
.react-autoql-table-container.infinite:not(.last-page) .tabulator-row:last-child {
|
|
316
|
+
margin-bottom: 40px; }
|
|
317
|
+
.react-autoql-table-container .table-loader {
|
|
318
|
+
position: absolute;
|
|
319
|
+
display: flex;
|
|
320
|
+
justify-content: center;
|
|
321
|
+
align-items: center;
|
|
322
|
+
pointer-events: none;
|
|
323
|
+
background-color: transparent;
|
|
324
|
+
color: var(--react-autoql-accent-color); }
|
|
325
|
+
.react-autoql-table-container .table-loader.table-page-loader {
|
|
326
|
+
top: 0;
|
|
327
|
+
bottom: 0;
|
|
328
|
+
right: 0;
|
|
329
|
+
left: 0; }
|
|
330
|
+
.react-autoql-table-container .table-loader.table-scroll-loader {
|
|
331
|
+
bottom: 20px;
|
|
332
|
+
width: 100%;
|
|
333
|
+
z-index: 0; }
|
|
314
334
|
|
|
315
335
|
.react-autoql-table {
|
|
316
336
|
margin-bottom: 0; }
|
|
@@ -348,7 +368,9 @@ span.react-autoql-icon {
|
|
|
348
368
|
|
|
349
369
|
.react-autoql-table .tabulator-row {
|
|
350
370
|
/* user-select: none; This breaks copy/paste */
|
|
351
|
-
border-bottom: 1px solid var(--react-autoql-border-color);
|
|
371
|
+
border-bottom: 1px solid var(--react-autoql-border-color);
|
|
372
|
+
background-color: var(--react-autoql-background-color-primary);
|
|
373
|
+
z-index: 1; }
|
|
352
374
|
|
|
353
375
|
.tabulator-cell:not(:first-child) {
|
|
354
376
|
border-left: 1px solid !important;
|
|
@@ -368,7 +390,12 @@ span.react-autoql-icon {
|
|
|
368
390
|
display: none; }
|
|
369
391
|
.react-autoql-table-container.filtering .react-autoql-table .tabulator-col {
|
|
370
392
|
height: 72px !important; }
|
|
371
|
-
.react-autoql-table-container.filtering .
|
|
393
|
+
.react-autoql-table-container.filtering.infinite .tabulator-col.DATE_STRING .tabulator-header-filter,
|
|
394
|
+
.react-autoql-table-container.filtering.infinite .tabulator-col.DATE .tabulator-header-filter {
|
|
395
|
+
display: none; }
|
|
396
|
+
.react-autoql-table-container.filtering.limited .tabulator-col .tabulator-header-filter,
|
|
397
|
+
.react-autoql-table-container.filtering.infinite .tabulator-col:not(.DATE_STRING):not(.DATE)
|
|
398
|
+
.tabulator-header-filter {
|
|
372
399
|
display: inline; }
|
|
373
400
|
.react-autoql-table-container.filtering .react-autoql-table .tabulator-tableHolder {
|
|
374
401
|
min-height: calc(100% - 74px) !important;
|
|
@@ -486,6 +513,36 @@ span.react-autoql-icon {
|
|
|
486
513
|
.comparison-value-negative {
|
|
487
514
|
color: #e80000; }
|
|
488
515
|
|
|
516
|
+
.spinner-loader {
|
|
517
|
+
display: inline-block;
|
|
518
|
+
width: 14px;
|
|
519
|
+
height: 14px;
|
|
520
|
+
margin-right: 6px; }
|
|
521
|
+
|
|
522
|
+
.spinner-loader:after {
|
|
523
|
+
content: ' ';
|
|
524
|
+
display: block;
|
|
525
|
+
width: 16px;
|
|
526
|
+
height: 16px;
|
|
527
|
+
margin: 0px;
|
|
528
|
+
border-radius: 50%;
|
|
529
|
+
border: 1px solid currentColor;
|
|
530
|
+
border-color: currentColor transparent currentColor transparent;
|
|
531
|
+
-webkit-animation: spinner-loader 1.2s linear infinite;
|
|
532
|
+
animation: spinner-loader 1.2s linear infinite; }
|
|
533
|
+
|
|
534
|
+
@-webkit-keyframes spinner-loader {
|
|
535
|
+
0% {
|
|
536
|
+
transform: rotate(0deg); }
|
|
537
|
+
100% {
|
|
538
|
+
transform: rotate(360deg); } }
|
|
539
|
+
|
|
540
|
+
@keyframes spinner-loader {
|
|
541
|
+
0% {
|
|
542
|
+
transform: rotate(0deg); }
|
|
543
|
+
100% {
|
|
544
|
+
transform: rotate(360deg); } }
|
|
545
|
+
|
|
489
546
|
g.legendOrdinal,
|
|
490
547
|
g.legendOrdinal tspan {
|
|
491
548
|
stroke-width: 10px;
|
|
@@ -666,36 +723,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
666
723
|
.react-autoql-list-item:not(:last-child) {
|
|
667
724
|
border-bottom: 1px solid #d3d3d34a; }
|
|
668
725
|
|
|
669
|
-
.spinner-loader {
|
|
670
|
-
display: inline-block;
|
|
671
|
-
width: 14px;
|
|
672
|
-
height: 14px;
|
|
673
|
-
margin-right: 6px; }
|
|
674
|
-
|
|
675
|
-
.spinner-loader:after {
|
|
676
|
-
content: ' ';
|
|
677
|
-
display: block;
|
|
678
|
-
width: 16px;
|
|
679
|
-
height: 16px;
|
|
680
|
-
margin: 0px;
|
|
681
|
-
border-radius: 50%;
|
|
682
|
-
border: 1px solid currentColor;
|
|
683
|
-
border-color: currentColor transparent currentColor transparent;
|
|
684
|
-
-webkit-animation: spinner-loader 1.2s linear infinite;
|
|
685
|
-
animation: spinner-loader 1.2s linear infinite; }
|
|
686
|
-
|
|
687
|
-
@-webkit-keyframes spinner-loader {
|
|
688
|
-
0% {
|
|
689
|
-
transform: rotate(0deg); }
|
|
690
|
-
100% {
|
|
691
|
-
transform: rotate(360deg); } }
|
|
692
|
-
|
|
693
|
-
@keyframes spinner-loader {
|
|
694
|
-
0% {
|
|
695
|
-
transform: rotate(0deg); }
|
|
696
|
-
100% {
|
|
697
|
-
transform: rotate(360deg); } }
|
|
698
|
-
|
|
699
726
|
.react-autoql-btn {
|
|
700
727
|
border-radius: 4px;
|
|
701
728
|
cursor: pointer;
|
package/dist/autoql.esm.css.gz
CHANGED
|
Binary file
|