aio-table 6.3.2 → 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.
Files changed (3) hide show
  1. package/index.css +20 -5
  2. package/index.js +880 -910
  3. 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;
@@ -184,7 +188,6 @@ select.aio-table-input{
184
188
  justify-content: center;
185
189
  flex-shrink:0;
186
190
  border-top:1px solid #ddd;
187
- background:#eaecf0;
188
191
  }
189
192
  .aio-table-paging-button{
190
193
  background:#fff;
@@ -206,6 +209,11 @@ select.aio-table-paging-button{
206
209
  }
207
210
  .aio-table-paging-number{
208
211
  padding:0 6px;
212
+ background:#fff;
213
+ height:24px;
214
+ margin:0 3px;
215
+ line-height:24px;
216
+ border-radius:24px;
209
217
  }
210
218
  .aio-table-toggle{
211
219
  height:24px;
@@ -251,7 +259,7 @@ select.aio-table-paging-button{
251
259
  }
252
260
  }
253
261
  .aio-table-loading{
254
- z-index:100;
262
+ z-index:10000000000000000000000;
255
263
  position: absolute;
256
264
  width:100%;
257
265
  height:100%;
@@ -358,11 +366,11 @@ select.aio-table-paging-button{
358
366
  white-space: pre-wrap;
359
367
  }
360
368
  .aio-table-toolbar{
361
- padding:0 6px;
362
369
  display:flex;
363
370
  align-items: center;
364
371
  flex-shrink:0;
365
- height:36px;
372
+ padding:0 6px;
373
+ border-bottom:1px solid #ddd;
366
374
  }
367
375
  @media print{
368
376
  .aio-table-toolbar{
@@ -375,7 +383,7 @@ select.aio-table-paging-button{
375
383
  height:30px;
376
384
  border-radius:36px;
377
385
  width:30px;
378
- margin:0 3px;
386
+ margin:6px 3px;
379
387
  }
380
388
 
381
389
  .aio-table-splitter{
@@ -409,6 +417,7 @@ select.aio-table-paging-button{
409
417
  border:1px solid #eee;
410
418
  padding:0 6px;
411
419
  box-sizing: border-box;
420
+ margin:6px 3px;
412
421
  }
413
422
  .aio-table-search-input{
414
423
  flex:1;
@@ -524,4 +533,10 @@ select.aio-table-paging-button{
524
533
  opacity:0.7;
525
534
  flex:1;
526
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;
527
542
  }