@aloudata/aloudata-design 2.12.4-beta.1 → 2.12.4

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.
@@ -73,27 +73,18 @@
73
73
  cursor: col-resize;
74
74
  user-select: none;
75
75
  touch-action: none;
76
- background: var(--alias-colors-bg-skeleton-strong, #f3f4f6);
77
76
 
78
77
  &::after {
79
- position: absolute;
80
78
  content: '';
81
79
  display: block;
82
- height: 16px;
80
+ height: 100%;
83
81
  width: 1px;
84
- z-index: 1;
82
+ position: absolute;
85
83
  top: 50%;
86
- transform: translate(4px, -50%);
87
- background: var(--alias-colors-border-strong, #d1d5db);
88
- }
89
-
90
- &.ald-table-self-resizing {
91
- width: 2px;
92
- background-color: #126fdd;
93
-
94
- &::after {
95
- display: none;
96
- }
84
+ right: -1px;
85
+ z-index: 1;
86
+ transform: translateY(-50%);
87
+ background-color: var(--alias-colors-border-default, #e5e7eb);
97
88
  }
98
89
  }
99
90
 
@@ -183,7 +174,6 @@
183
174
  padding: @td-padding-size;
184
175
  font-size: 12px;
185
176
  overflow: hidden;
186
- white-space: nowrap;
187
177
  height: @header-height;
188
178
  display: flex;
189
179
  align-items: center;
@@ -330,7 +320,7 @@
330
320
  }
331
321
 
332
322
  .ald-table-header {
333
- background: var(--alias-colors-bg-skeleton-strong, #f3f4f6);
323
+ background-color: #fff;
334
324
  }
335
325
 
336
326
  .ald-table-header-scroll-placeholder {
@@ -372,13 +362,7 @@
372
362
  align-items: center;
373
363
  width: 100%;
374
364
  height: 100%;
375
- }
376
-
377
- .ald-table-row-selection-all-header-wrap {
378
- padding: 0 16px;
379
- display: flex;
380
- align-items: center;
381
- height: 100%;
365
+ justify-content: center;
382
366
  }
383
367
 
384
368
  /** Footer **/
@@ -41,7 +41,6 @@ export interface ITableColumn<TDataItem = unknown> {
41
41
  title: string | React.ReactNode;
42
42
  dataIndex?: string;
43
43
  width?: number | string;
44
- minWidth?: number;
45
44
  render?: (text: any, record: TDataItem, rowIndex: number) => React.ReactNode;
46
45
  ellipsis?: boolean;
47
46
  noPadding?: boolean;