aio-table 6.3.0 → 7.0.0
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/index.css +27 -7
- package/index.js +899 -904
- package/package.json +3 -3
package/index.css
CHANGED
|
@@ -19,7 +19,11 @@
|
|
|
19
19
|
display: flex;
|
|
20
20
|
width:100%;
|
|
21
21
|
flex:1;
|
|
22
|
+
padding:12px;
|
|
23
|
+
box-sizing:border-box;
|
|
22
24
|
overflow:hidden;
|
|
25
|
+
flex-basis: 0;
|
|
26
|
+
height:100%;
|
|
23
27
|
}
|
|
24
28
|
.aio-table-unit{
|
|
25
29
|
display: grid;
|
|
@@ -56,10 +60,15 @@
|
|
|
56
60
|
height:100%;
|
|
57
61
|
top:0;
|
|
58
62
|
background:#ddd;
|
|
59
|
-
left:calc(100% - 1px);
|
|
60
63
|
position:absolute;
|
|
61
64
|
}
|
|
62
|
-
.aio-table-title.
|
|
65
|
+
.aio-table-title.ltr:after{
|
|
66
|
+
left:calc(100% - 1px);
|
|
67
|
+
}
|
|
68
|
+
.aio-table-title.rtl:after{
|
|
69
|
+
right:calc(100% - 1px);
|
|
70
|
+
}
|
|
71
|
+
.aio-table-title.last-child:after{
|
|
63
72
|
display:none;
|
|
64
73
|
}
|
|
65
74
|
.aio-table.rtl .aio-table-title{
|
|
@@ -179,7 +188,6 @@ select.aio-table-input{
|
|
|
179
188
|
justify-content: center;
|
|
180
189
|
flex-shrink:0;
|
|
181
190
|
border-top:1px solid #ddd;
|
|
182
|
-
background:#eaecf0;
|
|
183
191
|
}
|
|
184
192
|
.aio-table-paging-button{
|
|
185
193
|
background:#fff;
|
|
@@ -201,6 +209,11 @@ select.aio-table-paging-button{
|
|
|
201
209
|
}
|
|
202
210
|
.aio-table-paging-number{
|
|
203
211
|
padding:0 6px;
|
|
212
|
+
background:#fff;
|
|
213
|
+
height:24px;
|
|
214
|
+
margin:0 3px;
|
|
215
|
+
line-height:24px;
|
|
216
|
+
border-radius:24px;
|
|
204
217
|
}
|
|
205
218
|
.aio-table-toggle{
|
|
206
219
|
height:24px;
|
|
@@ -246,7 +259,7 @@ select.aio-table-paging-button{
|
|
|
246
259
|
}
|
|
247
260
|
}
|
|
248
261
|
.aio-table-loading{
|
|
249
|
-
z-index:
|
|
262
|
+
z-index:10000000000000000000000;
|
|
250
263
|
position: absolute;
|
|
251
264
|
width:100%;
|
|
252
265
|
height:100%;
|
|
@@ -353,11 +366,11 @@ select.aio-table-paging-button{
|
|
|
353
366
|
white-space: pre-wrap;
|
|
354
367
|
}
|
|
355
368
|
.aio-table-toolbar{
|
|
356
|
-
padding:0 6px;
|
|
357
369
|
display:flex;
|
|
358
370
|
align-items: center;
|
|
359
371
|
flex-shrink:0;
|
|
360
|
-
|
|
372
|
+
padding:0 6px;
|
|
373
|
+
border-bottom:1px solid #ddd;
|
|
361
374
|
}
|
|
362
375
|
@media print{
|
|
363
376
|
.aio-table-toolbar{
|
|
@@ -370,7 +383,7 @@ select.aio-table-paging-button{
|
|
|
370
383
|
height:30px;
|
|
371
384
|
border-radius:36px;
|
|
372
385
|
width:30px;
|
|
373
|
-
margin:
|
|
386
|
+
margin:6px 3px;
|
|
374
387
|
}
|
|
375
388
|
|
|
376
389
|
.aio-table-splitter{
|
|
@@ -404,6 +417,7 @@ select.aio-table-paging-button{
|
|
|
404
417
|
border:1px solid #eee;
|
|
405
418
|
padding:0 6px;
|
|
406
419
|
box-sizing: border-box;
|
|
420
|
+
margin:6px 3px;
|
|
407
421
|
}
|
|
408
422
|
.aio-table-search-input{
|
|
409
423
|
flex:1;
|
|
@@ -519,4 +533,10 @@ select.aio-table-paging-button{
|
|
|
519
533
|
opacity:0.7;
|
|
520
534
|
flex:1;
|
|
521
535
|
position:relative;
|
|
536
|
+
}
|
|
537
|
+
.aio-table-popup-header{
|
|
538
|
+
font-size:12px;
|
|
539
|
+
border-bottom:1px dashed;
|
|
540
|
+
font-weight:bold;
|
|
541
|
+
padding:6px;
|
|
522
542
|
}
|