aio-table 5.2.0 → 6.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.
Files changed (3) hide show
  1. package/index.css +51 -2
  2. package/index.js +3176 -2577
  3. package/package.json +2 -2
package/index.css CHANGED
@@ -29,7 +29,7 @@
29
29
  }
30
30
  #aio-table-first-split{
31
31
  width:fit-content;
32
- overflow-x:scroll;
32
+ overflow-x:scroll !important;
33
33
  }
34
34
  #aio-table-second-split{
35
35
  flex:1;
@@ -89,6 +89,13 @@
89
89
  text-overflow:ellipsis;
90
90
  background:#fff;
91
91
  }
92
+ .aio-table-cell-selectable{
93
+ user-select: text;
94
+ -webkit-user-select: text;
95
+ }
96
+ .aio-table-cell-hidden{
97
+ display:none;
98
+ }
92
99
  .aio-table-content{
93
100
  width:100%;
94
101
  overflow:hidden;
@@ -128,6 +135,7 @@
128
135
  .aio-table-input{
129
136
  border:none;
130
137
  outline:none;
138
+ background:none;
131
139
  flex:1;
132
140
  width:100%;
133
141
  position:relative;
@@ -242,13 +250,15 @@ select.aio-table-paging-button{
242
250
  .aio-table-cell.aio-table-relative-filter{
243
251
  opacity:.4;
244
252
  }
245
- .aio-table-cell.striped[data-evenodd = even]{
253
+ .aio-table-cell.striped{
246
254
  background:#f5f5f5
247
255
  }
248
256
  .aio-table-filter-popup{
249
257
  background:#e3e6ea;
250
258
  padding:6px;
259
+
251
260
  }
261
+
252
262
  .aio-table-filter-icon{
253
263
  width:24px;
254
264
  height:100%;
@@ -279,6 +289,7 @@ select.aio-table-paging-button{
279
289
  background:rgb(243, 246, 248);
280
290
  color:#888;
281
291
  cursor:pointer;
292
+ font-family:inherit;
282
293
  }
283
294
 
284
295
  .aio-table-filter-item select{
@@ -287,12 +298,14 @@ select.aio-table-paging-button{
287
298
  border:none;
288
299
  outline:none;
289
300
  cursor: pointer;
301
+ font-family:inherit;
290
302
  }
291
303
  .aio-table-filter-item input{
292
304
  height:24px;
293
305
  outline:none;
294
306
  width:120px;
295
307
  border:none;
308
+ font-family:inherit;
296
309
  }
297
310
  .aio-table-filter-remove{
298
311
  height:26px;
@@ -309,6 +322,7 @@ select.aio-table-paging-button{
309
322
  align-items: center;
310
323
  justify-content: center;
311
324
  margin-bottom: 6px;
325
+ cursor:pointer;
312
326
  }
313
327
  .aio-table-group{
314
328
  display:flex;
@@ -437,6 +451,8 @@ select.aio-table-paging-button{
437
451
  position:relative;
438
452
  display:flex;
439
453
  box-sizing: border-box;
454
+ user-select: text;
455
+ -webkit-user-select: text;
440
456
  }
441
457
 
442
458
  .r-layout-item{
@@ -500,4 +516,37 @@ display:none;
500
516
 
501
517
  .aio-table-unit::-webkit-scrollbar-thumb:hover {
502
518
  background-color: #868e9e;
519
+ }
520
+ .aio-table-options{
521
+ background:none;
522
+ font-size:inherit;
523
+ color:inherit;
524
+ }
525
+ .aio-table-slider{
526
+ display:flex;
527
+ font-size:inherit;
528
+ align-items:center;
529
+ height:100%;
530
+ width:100%;
531
+ }
532
+ .aio-table-cell-has-subtext{
533
+ flex:1;
534
+ height:100%;
535
+ display:flex;
536
+ flex-direction:column;
537
+ }
538
+ .aio-table-cell-uptext{
539
+ display:flex;
540
+ align-items:center;
541
+ flex:1;
542
+ position:relative;
543
+ white-space:nowrap;
544
+ }
545
+ .aio-table-cell-subtext{
546
+ display:flex;
547
+ align-items:center;
548
+ font-size:80%;
549
+ opacity:0.7;
550
+ flex:1;
551
+ position:relative;
503
552
  }