@salt-ds/ag-grid-theme 1.3.1 → 1.3.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/salt-ag-theme.css +373 -88
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salt-ds/ag-grid-theme",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/salt-ag-theme.css CHANGED
@@ -1,37 +1,46 @@
1
1
  /**** Auto generated by packages/ag-grid-theme/scripts/build.mjs ****/
2
2
 
3
3
  div[class*=ag-theme-salt-touch]{
4
+ --ag-list-item-height:60px;
4
5
  --agGrid-padding-default:16px;
5
6
  --agGrid-cornerTag-size-default:14px;
6
7
  --agGrid-column-separator-height:20px;
7
8
  }
8
9
 
9
10
  div[class*=ag-theme-salt-low]{
11
+ --ag-list-item-height:48px;
10
12
  --agGrid-padding-default:12px;
11
13
  --agGrid-cornerTag-size-default:12px;
12
14
  --agGrid-column-separator-height:16px;
13
15
  }
14
16
 
15
17
  div[class*=ag-theme-salt-medium]{
18
+ --ag-list-item-height:36px;
16
19
  --agGrid-padding-default:8px;
17
20
  --agGrid-cornerTag-size-default:10px;
18
21
  --agGrid-column-separator-height:12px;
19
22
  }
20
23
 
21
24
  div[class*=ag-theme-salt-high]{
25
+ --ag-list-item-height:24px;
22
26
  --agGrid-padding-default:8px;
23
27
  --agGrid-cornerTag-size-default:8px;
24
28
  --agGrid-column-separator-height:8px;
25
29
  }
26
30
 
27
31
  div[class*=ag-theme-salt-high-compact]{
32
+ --ag-list-item-height:20px;
28
33
  --salt-size-base:16px;
34
+ --salt-size-selectable:12px;
29
35
  --agGrid-column-separator-height:8px;
30
36
  --agGrid-padding-default:8px;
31
37
  --agGrid-cornerTag-size-default:8px;
32
38
  }
33
39
 
34
40
  div[class*=ag-theme-salt]{
41
+ --agGrid-range-selection-borderColor:var(
42
+ --salt-selectable-borderColor-selected
43
+ );
35
44
  --agGrid-column-separator-top:calc(50% - var(--agGrid-column-separator-height)*0.5);
36
45
  --agGrid-input-height:var(
37
46
  --saltAgGrid-input-height,
@@ -123,6 +132,8 @@ div[class*=ag-theme-salt]{
123
132
  }
124
133
 
125
134
  .ag-theme-salt-high-compact-light,.ag-theme-salt-high-light,.ag-theme-salt-low-light,.ag-theme-salt-medium-light,.ag-theme-salt-touch-light{
135
+ --agGrid-range-selection-background:rgba(0,0,0,.15);
136
+ --agGrid-highlight-text-color:#fff;
126
137
  --agGrid-tab-borderColor-active:var(
127
138
  --saltAgGrid-tab-borderColor-active,
128
139
  var(--salt-navigable-indicator-active)
@@ -195,6 +206,8 @@ div[class*=ag-theme-salt]{
195
206
  }
196
207
 
197
208
  .ag-theme-salt-high-compact-dark,.ag-theme-salt-high-dark,.ag-theme-salt-low-dark,.ag-theme-salt-medium-dark,.ag-theme-salt-touch-dark{
209
+ --agGrid-range-selection-background:hsla(0,0%,100%,.15);
210
+ --agGrid-highlight-text-color:#161616;
198
211
  --agGrid-tab-borderColor-active:var(
199
212
  --saltAgGrid-tab-borderColor-active,
200
213
  var(--salt-navigable-indicator-active)
@@ -260,6 +273,7 @@ div[class*=ag-theme-salt]{
260
273
  }
261
274
 
262
275
  .ag-theme-salt-high-compact-dark,.ag-theme-salt-high-compact-light{
276
+ --ag-list-item-height:20px;
263
277
  --agGrid-button-padding:var(--saltAgGrid-button-padding, 4px);
264
278
  --agGrid-editableCell-cornerTag-size-default:10px;
265
279
  --agGrid-input-fontSize:var(--saltAgGrid-input-fontSize, 10px);
@@ -5140,6 +5154,7 @@ div[class*=ag-theme-salt]{
5140
5154
  .ag-theme-salt-high-compact-dark .ag-input-field-input[class^=ag-][type=text]{
5141
5155
  font-family:var(--salt-text-fontFamily);
5142
5156
  font-size:var(--salt-text-fontSize);
5157
+ padding:0;
5143
5158
  }
5144
5159
  .ag-theme-salt-high-compact-dark .ag-menu .ag-input-field-input[type=text]{
5145
5160
  border:2px dotted transparent;
@@ -5165,7 +5180,6 @@ div[class*=ag-theme-salt]{
5165
5180
  padding-top:1px;
5166
5181
  }
5167
5182
  .ag-theme-salt-high-compact-dark .ag-set-filter-item{
5168
- height:calc(var(--salt-size-base) + var(--salt-spacing-100));
5169
5183
  margin:0;
5170
5184
  padding-left:var(--salt-spacing-100);
5171
5185
  padding-right:var(--salt-spacing-100);
@@ -5188,7 +5202,7 @@ div[class*=ag-theme-salt]{
5188
5202
  .ag-theme-salt-high-compact-dark .ag-list-item,.ag-theme-salt-high-compact-dark .ag-virtual-list-item{
5189
5203
  color:var(--agGrid-header-foreground);
5190
5204
  font-size:11px;
5191
- height:var(--agGrid-list-item-height) !important;
5205
+ height:var(--agGrid-list-item-height);
5192
5206
  }
5193
5207
  .ag-theme-salt-high-compact-dark .ag-list-item:hover,.ag-theme-salt-high-compact-dark .ag-virtual-list-item:hover{
5194
5208
  background-color:var(--agGrid-list-item-color-hover) !important;
@@ -5213,7 +5227,7 @@ div[class*=ag-theme-salt]{
5213
5227
  }
5214
5228
  .ag-theme-salt-high-compact-dark .ag-status-bar{
5215
5229
  color:var(--salt-text-secondary-foreground);
5216
- font-size:var(--salt-text-label-fontSize);
5230
+ font-size:var(--salt-text-fontSize);
5217
5231
  font-weight:var(--salt-text-label-fontWeight);
5218
5232
  height:var(--agGrid-row-height-default);
5219
5233
  line-height:var(--salt-text-label-lineHeight);
@@ -5225,11 +5239,15 @@ div[class*=ag-theme-salt]{
5225
5239
  padding:var(--salt-spacing-100) 0;
5226
5240
  }
5227
5241
  .ag-theme-salt-high-compact-dark .ag-status-name-value-value{
5228
- color:var(--salt-text-secondary-foreground);
5242
+ color:var(--salt-text-primary-foreground);
5243
+ font-weight:var(--salt-text-fontWeight-strong);
5229
5244
  }
5230
5245
  .ag-theme-salt-high-compact-dark .ag-header{
5231
5246
  border-color:var(--agGrid-header-borderColor);
5232
5247
  }
5248
+ .ag-theme-salt-high-compact-dark .ag-ltr .ag-header-cell .ag-header-cell-label .ag-header-cell-text{
5249
+ margin-right:auto;
5250
+ }
5233
5251
  .ag-theme-salt-high-compact-dark .ag-header-row{
5234
5252
  color:var(--agGrid-header-foreground);
5235
5253
  font-size:var(--agGrid-header-fontSize);
@@ -5243,7 +5261,7 @@ div[class*=ag-theme-salt]{
5243
5261
  margin-left:var(--salt-spacing-100);
5244
5262
  }
5245
5263
  .ag-theme-salt-high-compact-dark .ag-header-cell-auto-height .ag-header-cell-text{
5246
- overflow:auto;
5264
+ overflow:hidden;
5247
5265
  white-space:pre-wrap;
5248
5266
  }
5249
5267
  .ag-theme-salt-high-compact-dark .ag-keyboard-focus .ag-header-cell:focus:after{
@@ -5361,6 +5379,9 @@ div[class*=ag-theme-salt]{
5361
5379
  top:-1px;
5362
5380
  z-index:1;
5363
5381
  }
5382
+ .ag-theme-salt-high-compact-dark .ag-ltr .ag-row-group-leaf-indent{
5383
+ border-left:2px solid transparent;
5384
+ }
5364
5385
  .ag-theme-salt-high-compact-dark .ag-cell{
5365
5386
  border-left:0;
5366
5387
  padding-left:var(--salt-spacing-100);
@@ -5410,6 +5431,25 @@ div[class*=ag-theme-salt]{
5410
5431
  padding-left:2px;
5411
5432
  padding-right:2px;
5412
5433
  }
5434
+ .ag-theme-salt-high-compact-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-left{
5435
+ border-left:2px dotted var(--agGrid-range-selection-borderColor);
5436
+ }
5437
+ .ag-theme-salt-high-compact-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-right{
5438
+ border-right:2px dotted var(--agGrid-range-selection-borderColor);
5439
+ }
5440
+ .ag-theme-salt-high-compact-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-top{
5441
+ border-top:2px dotted var(--agGrid-range-selection-borderColor);
5442
+ }
5443
+ .ag-theme-salt-high-compact-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-bottom{
5444
+ border-bottom:2px dotted var(--agGrid-range-selection-borderColor);
5445
+ }
5446
+ .ag-theme-salt-high-compact-dark .ag-cell.ag-cell-range-selected-1:not(.ag-cell-focus),.ag-theme-salt-high-compact-dark .ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing){
5447
+ background:var(--agGrid-range-selection-background);
5448
+ }
5449
+ .ag-theme-salt-high-compact-dark .ag-cell.ag-cell-highlight{
5450
+ background:var(--salt-focused-outlineColor) !important;
5451
+ color:var(--agGrid-highlight-text-color);
5452
+ }
5413
5453
  .ag-theme-salt-high-compact-dark .ag-side-buttons{
5414
5454
  width:var(--salt-size-stackable);
5415
5455
  }
@@ -5546,10 +5586,10 @@ div[class*=ag-theme-salt]{
5546
5586
  .ag-theme-salt-high-compact-dark .ag-header-cell.ag-floating-filter:after{
5547
5587
  content:none;
5548
5588
  }
5549
- .ag-theme-salt-high-compact-dark .ag-floating-filter-body{
5589
+ .ag-theme-salt-high-compact-dark .ag-floating-filter-body,.ag-theme-salt-high-compact-dark .ag-floating-filter-button{
5550
5590
  border:1px solid transparent;
5551
5591
  }
5552
- .ag-theme-salt-high-compact-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body{
5592
+ .ag-theme-salt-high-compact-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body,.ag-theme-salt-high-compact-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-button{
5553
5593
  border:none;
5554
5594
  }
5555
5595
  .ag-theme-salt-high-compact-dark .ag-header-cell.ag-floating-filter:focus-within{
@@ -5571,7 +5611,7 @@ div[class*=ag-theme-salt]{
5571
5611
  .ag-theme-salt-high-compact-dark .ag-header-cell.ag-floating-filter,.ag-theme-salt-high-compact-dark .ag-header-row-column-filter,.ag-theme-salt-high-compact-dark .ag-pinned-right-header .ag-header-row{
5572
5612
  overflow:unset;
5573
5613
  }
5574
- .ag-theme-salt-high-compact-dark .ag-status-bar .ag-react-container{
5614
+ .ag-theme-salt-high-compact-dark .ag-floating-filter .ag-react-container,.ag-theme-salt-high-compact-dark .ag-status-bar .ag-react-container{
5575
5615
  align-items:center;
5576
5616
  display:flex;
5577
5617
  }
@@ -10451,6 +10491,7 @@ div[class*=ag-theme-salt]{
10451
10491
  .ag-theme-salt-high-compact-light .ag-input-field-input[class^=ag-][type=text]{
10452
10492
  font-family:var(--salt-text-fontFamily);
10453
10493
  font-size:var(--salt-text-fontSize);
10494
+ padding:0;
10454
10495
  }
10455
10496
  .ag-theme-salt-high-compact-light .ag-menu .ag-input-field-input[type=text]{
10456
10497
  border:2px dotted transparent;
@@ -10476,7 +10517,6 @@ div[class*=ag-theme-salt]{
10476
10517
  padding-top:1px;
10477
10518
  }
10478
10519
  .ag-theme-salt-high-compact-light .ag-set-filter-item{
10479
- height:calc(var(--salt-size-base) + var(--salt-spacing-100));
10480
10520
  margin:0;
10481
10521
  padding-left:var(--salt-spacing-100);
10482
10522
  padding-right:var(--salt-spacing-100);
@@ -10499,7 +10539,7 @@ div[class*=ag-theme-salt]{
10499
10539
  .ag-theme-salt-high-compact-light .ag-list-item,.ag-theme-salt-high-compact-light .ag-virtual-list-item{
10500
10540
  color:var(--agGrid-header-foreground);
10501
10541
  font-size:11px;
10502
- height:var(--agGrid-list-item-height) !important;
10542
+ height:var(--agGrid-list-item-height);
10503
10543
  }
10504
10544
  .ag-theme-salt-high-compact-light .ag-list-item:hover,.ag-theme-salt-high-compact-light .ag-virtual-list-item:hover{
10505
10545
  background-color:var(--agGrid-list-item-color-hover) !important;
@@ -10524,7 +10564,7 @@ div[class*=ag-theme-salt]{
10524
10564
  }
10525
10565
  .ag-theme-salt-high-compact-light .ag-status-bar{
10526
10566
  color:var(--salt-text-secondary-foreground);
10527
- font-size:var(--salt-text-label-fontSize);
10567
+ font-size:var(--salt-text-fontSize);
10528
10568
  font-weight:var(--salt-text-label-fontWeight);
10529
10569
  height:var(--agGrid-row-height-default);
10530
10570
  line-height:var(--salt-text-label-lineHeight);
@@ -10536,11 +10576,15 @@ div[class*=ag-theme-salt]{
10536
10576
  padding:var(--salt-spacing-100) 0;
10537
10577
  }
10538
10578
  .ag-theme-salt-high-compact-light .ag-status-name-value-value{
10539
- color:var(--salt-text-secondary-foreground);
10579
+ color:var(--salt-text-primary-foreground);
10580
+ font-weight:var(--salt-text-fontWeight-strong);
10540
10581
  }
10541
10582
  .ag-theme-salt-high-compact-light .ag-header{
10542
10583
  border-color:var(--agGrid-header-borderColor);
10543
10584
  }
10585
+ .ag-theme-salt-high-compact-light .ag-ltr .ag-header-cell .ag-header-cell-label .ag-header-cell-text{
10586
+ margin-right:auto;
10587
+ }
10544
10588
  .ag-theme-salt-high-compact-light .ag-header-row{
10545
10589
  color:var(--agGrid-header-foreground);
10546
10590
  font-size:var(--agGrid-header-fontSize);
@@ -10554,7 +10598,7 @@ div[class*=ag-theme-salt]{
10554
10598
  margin-left:var(--salt-spacing-100);
10555
10599
  }
10556
10600
  .ag-theme-salt-high-compact-light .ag-header-cell-auto-height .ag-header-cell-text{
10557
- overflow:auto;
10601
+ overflow:hidden;
10558
10602
  white-space:pre-wrap;
10559
10603
  }
10560
10604
  .ag-theme-salt-high-compact-light .ag-keyboard-focus .ag-header-cell:focus:after{
@@ -10672,6 +10716,9 @@ div[class*=ag-theme-salt]{
10672
10716
  top:-1px;
10673
10717
  z-index:1;
10674
10718
  }
10719
+ .ag-theme-salt-high-compact-light .ag-ltr .ag-row-group-leaf-indent{
10720
+ border-left:2px solid transparent;
10721
+ }
10675
10722
  .ag-theme-salt-high-compact-light .ag-cell{
10676
10723
  border-left:0;
10677
10724
  padding-left:var(--salt-spacing-100);
@@ -10721,6 +10768,25 @@ div[class*=ag-theme-salt]{
10721
10768
  padding-left:2px;
10722
10769
  padding-right:2px;
10723
10770
  }
10771
+ .ag-theme-salt-high-compact-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-left{
10772
+ border-left:2px dotted var(--agGrid-range-selection-borderColor);
10773
+ }
10774
+ .ag-theme-salt-high-compact-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-right{
10775
+ border-right:2px dotted var(--agGrid-range-selection-borderColor);
10776
+ }
10777
+ .ag-theme-salt-high-compact-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-top{
10778
+ border-top:2px dotted var(--agGrid-range-selection-borderColor);
10779
+ }
10780
+ .ag-theme-salt-high-compact-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-bottom{
10781
+ border-bottom:2px dotted var(--agGrid-range-selection-borderColor);
10782
+ }
10783
+ .ag-theme-salt-high-compact-light .ag-cell.ag-cell-range-selected-1:not(.ag-cell-focus),.ag-theme-salt-high-compact-light .ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing){
10784
+ background:var(--agGrid-range-selection-background);
10785
+ }
10786
+ .ag-theme-salt-high-compact-light .ag-cell.ag-cell-highlight{
10787
+ background:var(--salt-focused-outlineColor) !important;
10788
+ color:var(--agGrid-highlight-text-color);
10789
+ }
10724
10790
  .ag-theme-salt-high-compact-light .ag-side-buttons{
10725
10791
  width:var(--salt-size-stackable);
10726
10792
  }
@@ -10857,10 +10923,10 @@ div[class*=ag-theme-salt]{
10857
10923
  .ag-theme-salt-high-compact-light .ag-header-cell.ag-floating-filter:after{
10858
10924
  content:none;
10859
10925
  }
10860
- .ag-theme-salt-high-compact-light .ag-floating-filter-body{
10926
+ .ag-theme-salt-high-compact-light .ag-floating-filter-body,.ag-theme-salt-high-compact-light .ag-floating-filter-button{
10861
10927
  border:1px solid transparent;
10862
10928
  }
10863
- .ag-theme-salt-high-compact-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body{
10929
+ .ag-theme-salt-high-compact-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body,.ag-theme-salt-high-compact-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-button{
10864
10930
  border:none;
10865
10931
  }
10866
10932
  .ag-theme-salt-high-compact-light .ag-header-cell.ag-floating-filter:focus-within{
@@ -10882,7 +10948,7 @@ div[class*=ag-theme-salt]{
10882
10948
  .ag-theme-salt-high-compact-light .ag-header-cell.ag-floating-filter,.ag-theme-salt-high-compact-light .ag-header-row-column-filter,.ag-theme-salt-high-compact-light .ag-pinned-right-header .ag-header-row{
10883
10949
  overflow:unset;
10884
10950
  }
10885
- .ag-theme-salt-high-compact-light .ag-status-bar .ag-react-container{
10951
+ .ag-theme-salt-high-compact-light .ag-floating-filter .ag-react-container,.ag-theme-salt-high-compact-light .ag-status-bar .ag-react-container{
10886
10952
  align-items:center;
10887
10953
  display:flex;
10888
10954
  }
@@ -15771,6 +15837,7 @@ div[class*=ag-theme-salt]{
15771
15837
  .ag-theme-salt-high-dark .ag-input-field-input[class^=ag-][type=text]{
15772
15838
  font-family:var(--salt-text-fontFamily);
15773
15839
  font-size:var(--salt-text-fontSize);
15840
+ padding:0;
15774
15841
  }
15775
15842
  .ag-theme-salt-high-dark .ag-menu .ag-input-field-input[type=text]{
15776
15843
  border:2px dotted transparent;
@@ -15796,7 +15863,6 @@ div[class*=ag-theme-salt]{
15796
15863
  padding-top:1px;
15797
15864
  }
15798
15865
  .ag-theme-salt-high-dark .ag-set-filter-item{
15799
- height:calc(var(--salt-size-base) + var(--salt-spacing-100));
15800
15866
  margin:0;
15801
15867
  padding-left:var(--salt-spacing-100);
15802
15868
  padding-right:var(--salt-spacing-100);
@@ -15819,7 +15885,7 @@ div[class*=ag-theme-salt]{
15819
15885
  .ag-theme-salt-high-dark .ag-list-item,.ag-theme-salt-high-dark .ag-virtual-list-item{
15820
15886
  color:var(--agGrid-header-foreground);
15821
15887
  font-size:11px;
15822
- height:var(--agGrid-list-item-height) !important;
15888
+ height:var(--agGrid-list-item-height);
15823
15889
  }
15824
15890
  .ag-theme-salt-high-dark .ag-list-item:hover,.ag-theme-salt-high-dark .ag-virtual-list-item:hover{
15825
15891
  background-color:var(--agGrid-list-item-color-hover) !important;
@@ -15844,7 +15910,7 @@ div[class*=ag-theme-salt]{
15844
15910
  }
15845
15911
  .ag-theme-salt-high-dark .ag-status-bar{
15846
15912
  color:var(--salt-text-secondary-foreground);
15847
- font-size:var(--salt-text-label-fontSize);
15913
+ font-size:var(--salt-text-fontSize);
15848
15914
  font-weight:var(--salt-text-label-fontWeight);
15849
15915
  height:var(--agGrid-row-height-default);
15850
15916
  line-height:var(--salt-text-label-lineHeight);
@@ -15852,14 +15918,19 @@ div[class*=ag-theme-salt]{
15852
15918
  }
15853
15919
  .ag-theme-salt-high-dark .ag-status-panel{
15854
15920
  align-items:center;
15921
+ color:var(--salt-text-secondary-foreground);
15855
15922
  padding:var(--salt-spacing-100) 0;
15856
15923
  }
15857
- .ag-theme-salt-high-dark .ag-status-name-value-value,.ag-theme-salt-high-dark .ag-status-panel{
15858
- color:var(--salt-text-secondary-foreground);
15924
+ .ag-theme-salt-high-dark .ag-status-name-value-value{
15925
+ color:var(--salt-text-primary-foreground);
15926
+ font-weight:var(--salt-text-fontWeight-strong);
15859
15927
  }
15860
15928
  .ag-theme-salt-high-dark .ag-header{
15861
15929
  border-color:var(--agGrid-header-borderColor);
15862
15930
  }
15931
+ .ag-theme-salt-high-dark .ag-ltr .ag-header-cell .ag-header-cell-label .ag-header-cell-text{
15932
+ margin-right:auto;
15933
+ }
15863
15934
  .ag-theme-salt-high-dark .ag-header-row{
15864
15935
  color:var(--agGrid-header-foreground);
15865
15936
  font-size:var(--agGrid-header-fontSize);
@@ -15873,7 +15944,7 @@ div[class*=ag-theme-salt]{
15873
15944
  margin-left:var(--salt-spacing-100);
15874
15945
  }
15875
15946
  .ag-theme-salt-high-dark .ag-header-cell-auto-height .ag-header-cell-text{
15876
- overflow:auto;
15947
+ overflow:hidden;
15877
15948
  white-space:pre-wrap;
15878
15949
  }
15879
15950
  .ag-theme-salt-high-dark .ag-keyboard-focus .ag-header-cell:focus:after{
@@ -15991,6 +16062,9 @@ div[class*=ag-theme-salt]{
15991
16062
  top:-1px;
15992
16063
  z-index:1;
15993
16064
  }
16065
+ .ag-theme-salt-high-dark .ag-ltr .ag-row-group-leaf-indent{
16066
+ border-left:2px solid transparent;
16067
+ }
15994
16068
  .ag-theme-salt-high-dark .ag-cell{
15995
16069
  border-left:0;
15996
16070
  padding-left:var(--salt-spacing-100);
@@ -16040,6 +16114,25 @@ div[class*=ag-theme-salt]{
16040
16114
  padding-left:2px;
16041
16115
  padding-right:2px;
16042
16116
  }
16117
+ .ag-theme-salt-high-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-left{
16118
+ border-left:2px dotted var(--agGrid-range-selection-borderColor);
16119
+ }
16120
+ .ag-theme-salt-high-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-right{
16121
+ border-right:2px dotted var(--agGrid-range-selection-borderColor);
16122
+ }
16123
+ .ag-theme-salt-high-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-top{
16124
+ border-top:2px dotted var(--agGrid-range-selection-borderColor);
16125
+ }
16126
+ .ag-theme-salt-high-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-bottom{
16127
+ border-bottom:2px dotted var(--agGrid-range-selection-borderColor);
16128
+ }
16129
+ .ag-theme-salt-high-dark .ag-cell.ag-cell-range-selected-1:not(.ag-cell-focus),.ag-theme-salt-high-dark .ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing){
16130
+ background:var(--agGrid-range-selection-background);
16131
+ }
16132
+ .ag-theme-salt-high-dark .ag-cell.ag-cell-highlight{
16133
+ background:var(--salt-focused-outlineColor) !important;
16134
+ color:var(--agGrid-highlight-text-color);
16135
+ }
16043
16136
  .ag-theme-salt-high-dark .ag-side-buttons{
16044
16137
  width:var(--salt-size-stackable);
16045
16138
  }
@@ -16176,10 +16269,10 @@ div[class*=ag-theme-salt]{
16176
16269
  .ag-theme-salt-high-dark .ag-header-cell.ag-floating-filter:after{
16177
16270
  content:none;
16178
16271
  }
16179
- .ag-theme-salt-high-dark .ag-floating-filter-body{
16272
+ .ag-theme-salt-high-dark .ag-floating-filter-body,.ag-theme-salt-high-dark .ag-floating-filter-button{
16180
16273
  border:1px solid transparent;
16181
16274
  }
16182
- .ag-theme-salt-high-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body{
16275
+ .ag-theme-salt-high-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body,.ag-theme-salt-high-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-button{
16183
16276
  border:none;
16184
16277
  }
16185
16278
  .ag-theme-salt-high-dark .ag-header-cell.ag-floating-filter:focus-within{
@@ -16201,7 +16294,7 @@ div[class*=ag-theme-salt]{
16201
16294
  .ag-theme-salt-high-dark .ag-header-cell.ag-floating-filter,.ag-theme-salt-high-dark .ag-header-row-column-filter,.ag-theme-salt-high-dark .ag-pinned-right-header .ag-header-row{
16202
16295
  overflow:unset;
16203
16296
  }
16204
- .ag-theme-salt-high-dark .ag-status-bar .ag-react-container{
16297
+ .ag-theme-salt-high-dark .ag-floating-filter .ag-react-container,.ag-theme-salt-high-dark .ag-status-bar .ag-react-container{
16205
16298
  align-items:center;
16206
16299
  display:flex;
16207
16300
  }
@@ -21081,6 +21174,7 @@ div[class*=ag-theme-salt]{
21081
21174
  .ag-theme-salt-high-light .ag-input-field-input[class^=ag-][type=text]{
21082
21175
  font-family:var(--salt-text-fontFamily);
21083
21176
  font-size:var(--salt-text-fontSize);
21177
+ padding:0;
21084
21178
  }
21085
21179
  .ag-theme-salt-high-light .ag-menu .ag-input-field-input[type=text]{
21086
21180
  border:2px dotted transparent;
@@ -21106,7 +21200,6 @@ div[class*=ag-theme-salt]{
21106
21200
  padding-top:1px;
21107
21201
  }
21108
21202
  .ag-theme-salt-high-light .ag-set-filter-item{
21109
- height:calc(var(--salt-size-base) + var(--salt-spacing-100));
21110
21203
  margin:0;
21111
21204
  padding-left:var(--salt-spacing-100);
21112
21205
  padding-right:var(--salt-spacing-100);
@@ -21129,7 +21222,7 @@ div[class*=ag-theme-salt]{
21129
21222
  .ag-theme-salt-high-light .ag-list-item,.ag-theme-salt-high-light .ag-virtual-list-item{
21130
21223
  color:var(--agGrid-header-foreground);
21131
21224
  font-size:11px;
21132
- height:var(--agGrid-list-item-height) !important;
21225
+ height:var(--agGrid-list-item-height);
21133
21226
  }
21134
21227
  .ag-theme-salt-high-light .ag-list-item:hover,.ag-theme-salt-high-light .ag-virtual-list-item:hover{
21135
21228
  background-color:var(--agGrid-list-item-color-hover) !important;
@@ -21154,7 +21247,7 @@ div[class*=ag-theme-salt]{
21154
21247
  }
21155
21248
  .ag-theme-salt-high-light .ag-status-bar{
21156
21249
  color:var(--salt-text-secondary-foreground);
21157
- font-size:var(--salt-text-label-fontSize);
21250
+ font-size:var(--salt-text-fontSize);
21158
21251
  font-weight:var(--salt-text-label-fontWeight);
21159
21252
  height:var(--agGrid-row-height-default);
21160
21253
  line-height:var(--salt-text-label-lineHeight);
@@ -21162,14 +21255,19 @@ div[class*=ag-theme-salt]{
21162
21255
  }
21163
21256
  .ag-theme-salt-high-light .ag-status-panel{
21164
21257
  align-items:center;
21258
+ color:var(--salt-text-secondary-foreground);
21165
21259
  padding:var(--salt-spacing-100) 0;
21166
21260
  }
21167
- .ag-theme-salt-high-light .ag-status-name-value-value,.ag-theme-salt-high-light .ag-status-panel{
21168
- color:var(--salt-text-secondary-foreground);
21261
+ .ag-theme-salt-high-light .ag-status-name-value-value{
21262
+ color:var(--salt-text-primary-foreground);
21263
+ font-weight:var(--salt-text-fontWeight-strong);
21169
21264
  }
21170
21265
  .ag-theme-salt-high-light .ag-header{
21171
21266
  border-color:var(--agGrid-header-borderColor);
21172
21267
  }
21268
+ .ag-theme-salt-high-light .ag-ltr .ag-header-cell .ag-header-cell-label .ag-header-cell-text{
21269
+ margin-right:auto;
21270
+ }
21173
21271
  .ag-theme-salt-high-light .ag-header-row{
21174
21272
  color:var(--agGrid-header-foreground);
21175
21273
  font-size:var(--agGrid-header-fontSize);
@@ -21183,7 +21281,7 @@ div[class*=ag-theme-salt]{
21183
21281
  margin-left:var(--salt-spacing-100);
21184
21282
  }
21185
21283
  .ag-theme-salt-high-light .ag-header-cell-auto-height .ag-header-cell-text{
21186
- overflow:auto;
21284
+ overflow:hidden;
21187
21285
  white-space:pre-wrap;
21188
21286
  }
21189
21287
  .ag-theme-salt-high-light .ag-keyboard-focus .ag-header-cell:focus:after{
@@ -21301,6 +21399,9 @@ div[class*=ag-theme-salt]{
21301
21399
  top:-1px;
21302
21400
  z-index:1;
21303
21401
  }
21402
+ .ag-theme-salt-high-light .ag-ltr .ag-row-group-leaf-indent{
21403
+ border-left:2px solid transparent;
21404
+ }
21304
21405
  .ag-theme-salt-high-light .ag-cell{
21305
21406
  border-left:0;
21306
21407
  padding-left:var(--salt-spacing-100);
@@ -21350,6 +21451,25 @@ div[class*=ag-theme-salt]{
21350
21451
  padding-left:2px;
21351
21452
  padding-right:2px;
21352
21453
  }
21454
+ .ag-theme-salt-high-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-left{
21455
+ border-left:2px dotted var(--agGrid-range-selection-borderColor);
21456
+ }
21457
+ .ag-theme-salt-high-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-right{
21458
+ border-right:2px dotted var(--agGrid-range-selection-borderColor);
21459
+ }
21460
+ .ag-theme-salt-high-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-top{
21461
+ border-top:2px dotted var(--agGrid-range-selection-borderColor);
21462
+ }
21463
+ .ag-theme-salt-high-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-bottom{
21464
+ border-bottom:2px dotted var(--agGrid-range-selection-borderColor);
21465
+ }
21466
+ .ag-theme-salt-high-light .ag-cell.ag-cell-range-selected-1:not(.ag-cell-focus),.ag-theme-salt-high-light .ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing){
21467
+ background:var(--agGrid-range-selection-background);
21468
+ }
21469
+ .ag-theme-salt-high-light .ag-cell.ag-cell-highlight{
21470
+ background:var(--salt-focused-outlineColor) !important;
21471
+ color:var(--agGrid-highlight-text-color);
21472
+ }
21353
21473
  .ag-theme-salt-high-light .ag-side-buttons{
21354
21474
  width:var(--salt-size-stackable);
21355
21475
  }
@@ -21486,10 +21606,10 @@ div[class*=ag-theme-salt]{
21486
21606
  .ag-theme-salt-high-light .ag-header-cell.ag-floating-filter:after{
21487
21607
  content:none;
21488
21608
  }
21489
- .ag-theme-salt-high-light .ag-floating-filter-body{
21609
+ .ag-theme-salt-high-light .ag-floating-filter-body,.ag-theme-salt-high-light .ag-floating-filter-button{
21490
21610
  border:1px solid transparent;
21491
21611
  }
21492
- .ag-theme-salt-high-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body{
21612
+ .ag-theme-salt-high-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body,.ag-theme-salt-high-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-button{
21493
21613
  border:none;
21494
21614
  }
21495
21615
  .ag-theme-salt-high-light .ag-header-cell.ag-floating-filter:focus-within{
@@ -21511,7 +21631,7 @@ div[class*=ag-theme-salt]{
21511
21631
  .ag-theme-salt-high-light .ag-header-cell.ag-floating-filter,.ag-theme-salt-high-light .ag-header-row-column-filter,.ag-theme-salt-high-light .ag-pinned-right-header .ag-header-row{
21512
21632
  overflow:unset;
21513
21633
  }
21514
- .ag-theme-salt-high-light .ag-status-bar .ag-react-container{
21634
+ .ag-theme-salt-high-light .ag-floating-filter .ag-react-container,.ag-theme-salt-high-light .ag-status-bar .ag-react-container{
21515
21635
  align-items:center;
21516
21636
  display:flex;
21517
21637
  }
@@ -21520,6 +21640,7 @@ div[class*=ag-theme-salt]{
21520
21640
  }
21521
21641
 
21522
21642
  .ag-theme-salt-medium-dark,.ag-theme-salt-medium-light{
21643
+ --ag-list-item-height:36px;
21523
21644
  --agGrid-button-padding:var(--saltAgGrid-button-padding, 8px);
21524
21645
  --agGrid-editableCell-cornerTag-size-default:12px;
21525
21646
  --agGrid-input-fontSize:var(--saltAgGrid-input-fontSize, 12px);
@@ -26400,6 +26521,7 @@ div[class*=ag-theme-salt]{
26400
26521
  .ag-theme-salt-medium-dark .ag-input-field-input[class^=ag-][type=text]{
26401
26522
  font-family:var(--salt-text-fontFamily);
26402
26523
  font-size:var(--salt-text-fontSize);
26524
+ padding:0;
26403
26525
  }
26404
26526
  .ag-theme-salt-medium-dark .ag-menu .ag-input-field-input[type=text]{
26405
26527
  border:2px dotted transparent;
@@ -26425,7 +26547,6 @@ div[class*=ag-theme-salt]{
26425
26547
  padding-top:1px;
26426
26548
  }
26427
26549
  .ag-theme-salt-medium-dark .ag-set-filter-item{
26428
- height:calc(var(--salt-size-base) + var(--salt-spacing-100));
26429
26550
  margin:0;
26430
26551
  padding-left:var(--salt-spacing-100);
26431
26552
  padding-right:var(--salt-spacing-100);
@@ -26448,7 +26569,7 @@ div[class*=ag-theme-salt]{
26448
26569
  .ag-theme-salt-medium-dark .ag-list-item,.ag-theme-salt-medium-dark .ag-virtual-list-item{
26449
26570
  color:var(--agGrid-header-foreground);
26450
26571
  font-size:12px;
26451
- height:var(--agGrid-list-item-height) !important;
26572
+ height:var(--agGrid-list-item-height);
26452
26573
  }
26453
26574
  .ag-theme-salt-medium-dark .ag-list-item:hover,.ag-theme-salt-medium-dark .ag-virtual-list-item:hover{
26454
26575
  background-color:var(--agGrid-list-item-color-hover) !important;
@@ -26473,7 +26594,7 @@ div[class*=ag-theme-salt]{
26473
26594
  }
26474
26595
  .ag-theme-salt-medium-dark .ag-status-bar{
26475
26596
  color:var(--salt-text-secondary-foreground);
26476
- font-size:var(--salt-text-label-fontSize);
26597
+ font-size:var(--salt-text-fontSize);
26477
26598
  font-weight:var(--salt-text-label-fontWeight);
26478
26599
  height:var(--agGrid-row-height-default);
26479
26600
  line-height:var(--salt-text-label-lineHeight);
@@ -26481,14 +26602,19 @@ div[class*=ag-theme-salt]{
26481
26602
  }
26482
26603
  .ag-theme-salt-medium-dark .ag-status-panel{
26483
26604
  align-items:center;
26605
+ color:var(--salt-text-secondary-foreground);
26484
26606
  padding:var(--salt-spacing-100) 0;
26485
26607
  }
26486
- .ag-theme-salt-medium-dark .ag-status-name-value-value,.ag-theme-salt-medium-dark .ag-status-panel{
26487
- color:var(--salt-text-secondary-foreground);
26608
+ .ag-theme-salt-medium-dark .ag-status-name-value-value{
26609
+ color:var(--salt-text-primary-foreground);
26610
+ font-weight:var(--salt-text-fontWeight-strong);
26488
26611
  }
26489
26612
  .ag-theme-salt-medium-dark .ag-header{
26490
26613
  border-color:var(--agGrid-header-borderColor);
26491
26614
  }
26615
+ .ag-theme-salt-medium-dark .ag-ltr .ag-header-cell .ag-header-cell-label .ag-header-cell-text{
26616
+ margin-right:auto;
26617
+ }
26492
26618
  .ag-theme-salt-medium-dark .ag-header-row{
26493
26619
  color:var(--agGrid-header-foreground);
26494
26620
  font-size:var(--agGrid-header-fontSize);
@@ -26502,7 +26628,7 @@ div[class*=ag-theme-salt]{
26502
26628
  margin-left:var(--salt-spacing-100);
26503
26629
  }
26504
26630
  .ag-theme-salt-medium-dark .ag-header-cell-auto-height .ag-header-cell-text{
26505
- overflow:auto;
26631
+ overflow:hidden;
26506
26632
  white-space:pre-wrap;
26507
26633
  }
26508
26634
  .ag-theme-salt-medium-dark .ag-keyboard-focus .ag-header-cell:focus:after{
@@ -26620,6 +26746,9 @@ div[class*=ag-theme-salt]{
26620
26746
  top:-1px;
26621
26747
  z-index:1;
26622
26748
  }
26749
+ .ag-theme-salt-medium-dark .ag-ltr .ag-row-group-leaf-indent{
26750
+ border-left:2px solid transparent;
26751
+ }
26623
26752
  .ag-theme-salt-medium-dark .ag-cell{
26624
26753
  border-left:0;
26625
26754
  padding-left:var(--salt-spacing-100);
@@ -26669,6 +26798,25 @@ div[class*=ag-theme-salt]{
26669
26798
  padding-left:6px;
26670
26799
  padding-right:6px;
26671
26800
  }
26801
+ .ag-theme-salt-medium-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-left{
26802
+ border-left:2px dotted var(--agGrid-range-selection-borderColor);
26803
+ }
26804
+ .ag-theme-salt-medium-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-right{
26805
+ border-right:2px dotted var(--agGrid-range-selection-borderColor);
26806
+ }
26807
+ .ag-theme-salt-medium-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-top{
26808
+ border-top:2px dotted var(--agGrid-range-selection-borderColor);
26809
+ }
26810
+ .ag-theme-salt-medium-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-bottom{
26811
+ border-bottom:2px dotted var(--agGrid-range-selection-borderColor);
26812
+ }
26813
+ .ag-theme-salt-medium-dark .ag-cell.ag-cell-range-selected-1:not(.ag-cell-focus),.ag-theme-salt-medium-dark .ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing){
26814
+ background:var(--agGrid-range-selection-background);
26815
+ }
26816
+ .ag-theme-salt-medium-dark .ag-cell.ag-cell-highlight{
26817
+ background:var(--salt-focused-outlineColor) !important;
26818
+ color:var(--agGrid-highlight-text-color);
26819
+ }
26672
26820
  .ag-theme-salt-medium-dark .ag-side-buttons{
26673
26821
  width:var(--salt-size-stackable);
26674
26822
  }
@@ -26805,10 +26953,10 @@ div[class*=ag-theme-salt]{
26805
26953
  .ag-theme-salt-medium-dark .ag-header-cell.ag-floating-filter:after{
26806
26954
  content:none;
26807
26955
  }
26808
- .ag-theme-salt-medium-dark .ag-floating-filter-body{
26956
+ .ag-theme-salt-medium-dark .ag-floating-filter-body,.ag-theme-salt-medium-dark .ag-floating-filter-button{
26809
26957
  border:1px solid transparent;
26810
26958
  }
26811
- .ag-theme-salt-medium-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body{
26959
+ .ag-theme-salt-medium-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body,.ag-theme-salt-medium-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-button{
26812
26960
  border:none;
26813
26961
  }
26814
26962
  .ag-theme-salt-medium-dark .ag-header-cell.ag-floating-filter:focus-within{
@@ -26830,7 +26978,7 @@ div[class*=ag-theme-salt]{
26830
26978
  .ag-theme-salt-medium-dark .ag-header-cell.ag-floating-filter,.ag-theme-salt-medium-dark .ag-header-row-column-filter,.ag-theme-salt-medium-dark .ag-pinned-right-header .ag-header-row{
26831
26979
  overflow:unset;
26832
26980
  }
26833
- .ag-theme-salt-medium-dark .ag-status-bar .ag-react-container{
26981
+ .ag-theme-salt-medium-dark .ag-floating-filter .ag-react-container,.ag-theme-salt-medium-dark .ag-status-bar .ag-react-container{
26834
26982
  align-items:center;
26835
26983
  display:flex;
26836
26984
  }
@@ -31710,6 +31858,7 @@ div[class*=ag-theme-salt]{
31710
31858
  .ag-theme-salt-medium-light .ag-input-field-input[class^=ag-][type=text]{
31711
31859
  font-family:var(--salt-text-fontFamily);
31712
31860
  font-size:var(--salt-text-fontSize);
31861
+ padding:0;
31713
31862
  }
31714
31863
  .ag-theme-salt-medium-light .ag-menu .ag-input-field-input[type=text]{
31715
31864
  border:2px dotted transparent;
@@ -31735,7 +31884,6 @@ div[class*=ag-theme-salt]{
31735
31884
  padding-top:1px;
31736
31885
  }
31737
31886
  .ag-theme-salt-medium-light .ag-set-filter-item{
31738
- height:calc(var(--salt-size-base) + var(--salt-spacing-100));
31739
31887
  margin:0;
31740
31888
  padding-left:var(--salt-spacing-100);
31741
31889
  padding-right:var(--salt-spacing-100);
@@ -31758,7 +31906,7 @@ div[class*=ag-theme-salt]{
31758
31906
  .ag-theme-salt-medium-light .ag-list-item,.ag-theme-salt-medium-light .ag-virtual-list-item{
31759
31907
  color:var(--agGrid-header-foreground);
31760
31908
  font-size:12px;
31761
- height:var(--agGrid-list-item-height) !important;
31909
+ height:var(--agGrid-list-item-height);
31762
31910
  }
31763
31911
  .ag-theme-salt-medium-light .ag-list-item:hover,.ag-theme-salt-medium-light .ag-virtual-list-item:hover{
31764
31912
  background-color:var(--agGrid-list-item-color-hover) !important;
@@ -31783,7 +31931,7 @@ div[class*=ag-theme-salt]{
31783
31931
  }
31784
31932
  .ag-theme-salt-medium-light .ag-status-bar{
31785
31933
  color:var(--salt-text-secondary-foreground);
31786
- font-size:var(--salt-text-label-fontSize);
31934
+ font-size:var(--salt-text-fontSize);
31787
31935
  font-weight:var(--salt-text-label-fontWeight);
31788
31936
  height:var(--agGrid-row-height-default);
31789
31937
  line-height:var(--salt-text-label-lineHeight);
@@ -31791,14 +31939,19 @@ div[class*=ag-theme-salt]{
31791
31939
  }
31792
31940
  .ag-theme-salt-medium-light .ag-status-panel{
31793
31941
  align-items:center;
31942
+ color:var(--salt-text-secondary-foreground);
31794
31943
  padding:var(--salt-spacing-100) 0;
31795
31944
  }
31796
- .ag-theme-salt-medium-light .ag-status-name-value-value,.ag-theme-salt-medium-light .ag-status-panel{
31797
- color:var(--salt-text-secondary-foreground);
31945
+ .ag-theme-salt-medium-light .ag-status-name-value-value{
31946
+ color:var(--salt-text-primary-foreground);
31947
+ font-weight:var(--salt-text-fontWeight-strong);
31798
31948
  }
31799
31949
  .ag-theme-salt-medium-light .ag-header{
31800
31950
  border-color:var(--agGrid-header-borderColor);
31801
31951
  }
31952
+ .ag-theme-salt-medium-light .ag-ltr .ag-header-cell .ag-header-cell-label .ag-header-cell-text{
31953
+ margin-right:auto;
31954
+ }
31802
31955
  .ag-theme-salt-medium-light .ag-header-row{
31803
31956
  color:var(--agGrid-header-foreground);
31804
31957
  font-size:var(--agGrid-header-fontSize);
@@ -31812,7 +31965,7 @@ div[class*=ag-theme-salt]{
31812
31965
  margin-left:var(--salt-spacing-100);
31813
31966
  }
31814
31967
  .ag-theme-salt-medium-light .ag-header-cell-auto-height .ag-header-cell-text{
31815
- overflow:auto;
31968
+ overflow:hidden;
31816
31969
  white-space:pre-wrap;
31817
31970
  }
31818
31971
  .ag-theme-salt-medium-light .ag-keyboard-focus .ag-header-cell:focus:after{
@@ -31930,6 +32083,9 @@ div[class*=ag-theme-salt]{
31930
32083
  top:-1px;
31931
32084
  z-index:1;
31932
32085
  }
32086
+ .ag-theme-salt-medium-light .ag-ltr .ag-row-group-leaf-indent{
32087
+ border-left:2px solid transparent;
32088
+ }
31933
32089
  .ag-theme-salt-medium-light .ag-cell{
31934
32090
  border-left:0;
31935
32091
  padding-left:var(--salt-spacing-100);
@@ -31979,6 +32135,25 @@ div[class*=ag-theme-salt]{
31979
32135
  padding-left:6px;
31980
32136
  padding-right:6px;
31981
32137
  }
32138
+ .ag-theme-salt-medium-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-left{
32139
+ border-left:2px dotted var(--agGrid-range-selection-borderColor);
32140
+ }
32141
+ .ag-theme-salt-medium-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-right{
32142
+ border-right:2px dotted var(--agGrid-range-selection-borderColor);
32143
+ }
32144
+ .ag-theme-salt-medium-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-top{
32145
+ border-top:2px dotted var(--agGrid-range-selection-borderColor);
32146
+ }
32147
+ .ag-theme-salt-medium-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-bottom{
32148
+ border-bottom:2px dotted var(--agGrid-range-selection-borderColor);
32149
+ }
32150
+ .ag-theme-salt-medium-light .ag-cell.ag-cell-range-selected-1:not(.ag-cell-focus),.ag-theme-salt-medium-light .ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing){
32151
+ background:var(--agGrid-range-selection-background);
32152
+ }
32153
+ .ag-theme-salt-medium-light .ag-cell.ag-cell-highlight{
32154
+ background:var(--salt-focused-outlineColor) !important;
32155
+ color:var(--agGrid-highlight-text-color);
32156
+ }
31982
32157
  .ag-theme-salt-medium-light .ag-side-buttons{
31983
32158
  width:var(--salt-size-stackable);
31984
32159
  }
@@ -32115,10 +32290,10 @@ div[class*=ag-theme-salt]{
32115
32290
  .ag-theme-salt-medium-light .ag-header-cell.ag-floating-filter:after{
32116
32291
  content:none;
32117
32292
  }
32118
- .ag-theme-salt-medium-light .ag-floating-filter-body{
32293
+ .ag-theme-salt-medium-light .ag-floating-filter-body,.ag-theme-salt-medium-light .ag-floating-filter-button{
32119
32294
  border:1px solid transparent;
32120
32295
  }
32121
- .ag-theme-salt-medium-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body{
32296
+ .ag-theme-salt-medium-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body,.ag-theme-salt-medium-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-button{
32122
32297
  border:none;
32123
32298
  }
32124
32299
  .ag-theme-salt-medium-light .ag-header-cell.ag-floating-filter:focus-within{
@@ -32140,7 +32315,7 @@ div[class*=ag-theme-salt]{
32140
32315
  .ag-theme-salt-medium-light .ag-header-cell.ag-floating-filter,.ag-theme-salt-medium-light .ag-header-row-column-filter,.ag-theme-salt-medium-light .ag-pinned-right-header .ag-header-row{
32141
32316
  overflow:unset;
32142
32317
  }
32143
- .ag-theme-salt-medium-light .ag-status-bar .ag-react-container{
32318
+ .ag-theme-salt-medium-light .ag-floating-filter .ag-react-container,.ag-theme-salt-medium-light .ag-status-bar .ag-react-container{
32144
32319
  align-items:center;
32145
32320
  display:flex;
32146
32321
  }
@@ -32149,6 +32324,7 @@ div[class*=ag-theme-salt]{
32149
32324
  }
32150
32325
 
32151
32326
  .ag-theme-salt-low-dark,.ag-theme-salt-low-light{
32327
+ --ag-list-item-height:48px;
32152
32328
  --agGrid-button-padding:var(--saltAgGrid-button-padding, 12px);
32153
32329
  --agGrid-editableCell-cornerTag-size-default:14px;
32154
32330
  --agGrid-input-fontSize:var(--saltAgGrid-input-fontSize, 14px);
@@ -37025,6 +37201,7 @@ div[class*=ag-theme-salt]{
37025
37201
  .ag-theme-salt-low-dark .ag-input-field-input[class^=ag-][type=text]{
37026
37202
  font-family:var(--salt-text-fontFamily);
37027
37203
  font-size:var(--salt-text-fontSize);
37204
+ padding:0;
37028
37205
  }
37029
37206
  .ag-theme-salt-low-dark .ag-menu .ag-input-field-input[type=text]{
37030
37207
  border:2px dotted transparent;
@@ -37050,7 +37227,6 @@ div[class*=ag-theme-salt]{
37050
37227
  padding-top:1px;
37051
37228
  }
37052
37229
  .ag-theme-salt-low-dark .ag-set-filter-item{
37053
- height:calc(var(--salt-size-base) + var(--salt-spacing-100));
37054
37230
  margin:0;
37055
37231
  padding-left:var(--salt-spacing-100);
37056
37232
  padding-right:var(--salt-spacing-100);
@@ -37073,7 +37249,7 @@ div[class*=ag-theme-salt]{
37073
37249
  .ag-theme-salt-low-dark .ag-list-item,.ag-theme-salt-low-dark .ag-virtual-list-item{
37074
37250
  color:var(--agGrid-header-foreground);
37075
37251
  font-size:14px;
37076
- height:var(--agGrid-list-item-height) !important;
37252
+ height:var(--agGrid-list-item-height);
37077
37253
  }
37078
37254
  .ag-theme-salt-low-dark .ag-list-item:hover,.ag-theme-salt-low-dark .ag-virtual-list-item:hover{
37079
37255
  background-color:var(--agGrid-list-item-color-hover) !important;
@@ -37098,7 +37274,7 @@ div[class*=ag-theme-salt]{
37098
37274
  }
37099
37275
  .ag-theme-salt-low-dark .ag-status-bar{
37100
37276
  color:var(--salt-text-secondary-foreground);
37101
- font-size:var(--salt-text-label-fontSize);
37277
+ font-size:var(--salt-text-fontSize);
37102
37278
  font-weight:var(--salt-text-label-fontWeight);
37103
37279
  height:var(--agGrid-row-height-default);
37104
37280
  line-height:var(--salt-text-label-lineHeight);
@@ -37106,14 +37282,19 @@ div[class*=ag-theme-salt]{
37106
37282
  }
37107
37283
  .ag-theme-salt-low-dark .ag-status-panel{
37108
37284
  align-items:center;
37285
+ color:var(--salt-text-secondary-foreground);
37109
37286
  padding:var(--salt-spacing-100) 0;
37110
37287
  }
37111
- .ag-theme-salt-low-dark .ag-status-name-value-value,.ag-theme-salt-low-dark .ag-status-panel{
37112
- color:var(--salt-text-secondary-foreground);
37288
+ .ag-theme-salt-low-dark .ag-status-name-value-value{
37289
+ color:var(--salt-text-primary-foreground);
37290
+ font-weight:var(--salt-text-fontWeight-strong);
37113
37291
  }
37114
37292
  .ag-theme-salt-low-dark .ag-header{
37115
37293
  border-color:var(--agGrid-header-borderColor);
37116
37294
  }
37295
+ .ag-theme-salt-low-dark .ag-ltr .ag-header-cell .ag-header-cell-label .ag-header-cell-text{
37296
+ margin-right:auto;
37297
+ }
37117
37298
  .ag-theme-salt-low-dark .ag-header-row{
37118
37299
  color:var(--agGrid-header-foreground);
37119
37300
  font-size:var(--agGrid-header-fontSize);
@@ -37127,7 +37308,7 @@ div[class*=ag-theme-salt]{
37127
37308
  margin-left:var(--salt-spacing-100);
37128
37309
  }
37129
37310
  .ag-theme-salt-low-dark .ag-header-cell-auto-height .ag-header-cell-text{
37130
- overflow:auto;
37311
+ overflow:hidden;
37131
37312
  white-space:pre-wrap;
37132
37313
  }
37133
37314
  .ag-theme-salt-low-dark .ag-keyboard-focus .ag-header-cell:focus:after{
@@ -37245,6 +37426,9 @@ div[class*=ag-theme-salt]{
37245
37426
  top:-1px;
37246
37427
  z-index:1;
37247
37428
  }
37429
+ .ag-theme-salt-low-dark .ag-ltr .ag-row-group-leaf-indent{
37430
+ border-left:2px solid transparent;
37431
+ }
37248
37432
  .ag-theme-salt-low-dark .ag-cell{
37249
37433
  border-left:0;
37250
37434
  padding-left:var(--salt-spacing-100);
@@ -37294,6 +37478,25 @@ div[class*=ag-theme-salt]{
37294
37478
  padding-left:10px;
37295
37479
  padding-right:10px;
37296
37480
  }
37481
+ .ag-theme-salt-low-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-left{
37482
+ border-left:2px dotted var(--agGrid-range-selection-borderColor);
37483
+ }
37484
+ .ag-theme-salt-low-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-right{
37485
+ border-right:2px dotted var(--agGrid-range-selection-borderColor);
37486
+ }
37487
+ .ag-theme-salt-low-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-top{
37488
+ border-top:2px dotted var(--agGrid-range-selection-borderColor);
37489
+ }
37490
+ .ag-theme-salt-low-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-bottom{
37491
+ border-bottom:2px dotted var(--agGrid-range-selection-borderColor);
37492
+ }
37493
+ .ag-theme-salt-low-dark .ag-cell.ag-cell-range-selected-1:not(.ag-cell-focus),.ag-theme-salt-low-dark .ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing){
37494
+ background:var(--agGrid-range-selection-background);
37495
+ }
37496
+ .ag-theme-salt-low-dark .ag-cell.ag-cell-highlight{
37497
+ background:var(--salt-focused-outlineColor) !important;
37498
+ color:var(--agGrid-highlight-text-color);
37499
+ }
37297
37500
  .ag-theme-salt-low-dark .ag-side-buttons{
37298
37501
  width:var(--salt-size-stackable);
37299
37502
  }
@@ -37430,10 +37633,10 @@ div[class*=ag-theme-salt]{
37430
37633
  .ag-theme-salt-low-dark .ag-header-cell.ag-floating-filter:after{
37431
37634
  content:none;
37432
37635
  }
37433
- .ag-theme-salt-low-dark .ag-floating-filter-body{
37636
+ .ag-theme-salt-low-dark .ag-floating-filter-body,.ag-theme-salt-low-dark .ag-floating-filter-button{
37434
37637
  border:1px solid transparent;
37435
37638
  }
37436
- .ag-theme-salt-low-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body{
37639
+ .ag-theme-salt-low-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body,.ag-theme-salt-low-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-button{
37437
37640
  border:none;
37438
37641
  }
37439
37642
  .ag-theme-salt-low-dark .ag-header-cell.ag-floating-filter:focus-within{
@@ -37455,7 +37658,7 @@ div[class*=ag-theme-salt]{
37455
37658
  .ag-theme-salt-low-dark .ag-header-cell.ag-floating-filter,.ag-theme-salt-low-dark .ag-header-row-column-filter,.ag-theme-salt-low-dark .ag-pinned-right-header .ag-header-row{
37456
37659
  overflow:unset;
37457
37660
  }
37458
- .ag-theme-salt-low-dark .ag-status-bar .ag-react-container{
37661
+ .ag-theme-salt-low-dark .ag-floating-filter .ag-react-container,.ag-theme-salt-low-dark .ag-status-bar .ag-react-container{
37459
37662
  align-items:center;
37460
37663
  display:flex;
37461
37664
  }
@@ -42331,6 +42534,7 @@ div[class*=ag-theme-salt]{
42331
42534
  .ag-theme-salt-low-light .ag-input-field-input[class^=ag-][type=text]{
42332
42535
  font-family:var(--salt-text-fontFamily);
42333
42536
  font-size:var(--salt-text-fontSize);
42537
+ padding:0;
42334
42538
  }
42335
42539
  .ag-theme-salt-low-light .ag-menu .ag-input-field-input[type=text]{
42336
42540
  border:2px dotted transparent;
@@ -42356,7 +42560,6 @@ div[class*=ag-theme-salt]{
42356
42560
  padding-top:1px;
42357
42561
  }
42358
42562
  .ag-theme-salt-low-light .ag-set-filter-item{
42359
- height:calc(var(--salt-size-base) + var(--salt-spacing-100));
42360
42563
  margin:0;
42361
42564
  padding-left:var(--salt-spacing-100);
42362
42565
  padding-right:var(--salt-spacing-100);
@@ -42379,7 +42582,7 @@ div[class*=ag-theme-salt]{
42379
42582
  .ag-theme-salt-low-light .ag-list-item,.ag-theme-salt-low-light .ag-virtual-list-item{
42380
42583
  color:var(--agGrid-header-foreground);
42381
42584
  font-size:14px;
42382
- height:var(--agGrid-list-item-height) !important;
42585
+ height:var(--agGrid-list-item-height);
42383
42586
  }
42384
42587
  .ag-theme-salt-low-light .ag-list-item:hover,.ag-theme-salt-low-light .ag-virtual-list-item:hover{
42385
42588
  background-color:var(--agGrid-list-item-color-hover) !important;
@@ -42404,7 +42607,7 @@ div[class*=ag-theme-salt]{
42404
42607
  }
42405
42608
  .ag-theme-salt-low-light .ag-status-bar{
42406
42609
  color:var(--salt-text-secondary-foreground);
42407
- font-size:var(--salt-text-label-fontSize);
42610
+ font-size:var(--salt-text-fontSize);
42408
42611
  font-weight:var(--salt-text-label-fontWeight);
42409
42612
  height:var(--agGrid-row-height-default);
42410
42613
  line-height:var(--salt-text-label-lineHeight);
@@ -42412,14 +42615,19 @@ div[class*=ag-theme-salt]{
42412
42615
  }
42413
42616
  .ag-theme-salt-low-light .ag-status-panel{
42414
42617
  align-items:center;
42618
+ color:var(--salt-text-secondary-foreground);
42415
42619
  padding:var(--salt-spacing-100) 0;
42416
42620
  }
42417
- .ag-theme-salt-low-light .ag-status-name-value-value,.ag-theme-salt-low-light .ag-status-panel{
42418
- color:var(--salt-text-secondary-foreground);
42621
+ .ag-theme-salt-low-light .ag-status-name-value-value{
42622
+ color:var(--salt-text-primary-foreground);
42623
+ font-weight:var(--salt-text-fontWeight-strong);
42419
42624
  }
42420
42625
  .ag-theme-salt-low-light .ag-header{
42421
42626
  border-color:var(--agGrid-header-borderColor);
42422
42627
  }
42628
+ .ag-theme-salt-low-light .ag-ltr .ag-header-cell .ag-header-cell-label .ag-header-cell-text{
42629
+ margin-right:auto;
42630
+ }
42423
42631
  .ag-theme-salt-low-light .ag-header-row{
42424
42632
  color:var(--agGrid-header-foreground);
42425
42633
  font-size:var(--agGrid-header-fontSize);
@@ -42433,7 +42641,7 @@ div[class*=ag-theme-salt]{
42433
42641
  margin-left:var(--salt-spacing-100);
42434
42642
  }
42435
42643
  .ag-theme-salt-low-light .ag-header-cell-auto-height .ag-header-cell-text{
42436
- overflow:auto;
42644
+ overflow:hidden;
42437
42645
  white-space:pre-wrap;
42438
42646
  }
42439
42647
  .ag-theme-salt-low-light .ag-keyboard-focus .ag-header-cell:focus:after{
@@ -42551,6 +42759,9 @@ div[class*=ag-theme-salt]{
42551
42759
  top:-1px;
42552
42760
  z-index:1;
42553
42761
  }
42762
+ .ag-theme-salt-low-light .ag-ltr .ag-row-group-leaf-indent{
42763
+ border-left:2px solid transparent;
42764
+ }
42554
42765
  .ag-theme-salt-low-light .ag-cell{
42555
42766
  border-left:0;
42556
42767
  padding-left:var(--salt-spacing-100);
@@ -42600,6 +42811,25 @@ div[class*=ag-theme-salt]{
42600
42811
  padding-left:10px;
42601
42812
  padding-right:10px;
42602
42813
  }
42814
+ .ag-theme-salt-low-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-left{
42815
+ border-left:2px dotted var(--agGrid-range-selection-borderColor);
42816
+ }
42817
+ .ag-theme-salt-low-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-right{
42818
+ border-right:2px dotted var(--agGrid-range-selection-borderColor);
42819
+ }
42820
+ .ag-theme-salt-low-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-top{
42821
+ border-top:2px dotted var(--agGrid-range-selection-borderColor);
42822
+ }
42823
+ .ag-theme-salt-low-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-bottom{
42824
+ border-bottom:2px dotted var(--agGrid-range-selection-borderColor);
42825
+ }
42826
+ .ag-theme-salt-low-light .ag-cell.ag-cell-range-selected-1:not(.ag-cell-focus),.ag-theme-salt-low-light .ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing){
42827
+ background:var(--agGrid-range-selection-background);
42828
+ }
42829
+ .ag-theme-salt-low-light .ag-cell.ag-cell-highlight{
42830
+ background:var(--salt-focused-outlineColor) !important;
42831
+ color:var(--agGrid-highlight-text-color);
42832
+ }
42603
42833
  .ag-theme-salt-low-light .ag-side-buttons{
42604
42834
  width:var(--salt-size-stackable);
42605
42835
  }
@@ -42736,10 +42966,10 @@ div[class*=ag-theme-salt]{
42736
42966
  .ag-theme-salt-low-light .ag-header-cell.ag-floating-filter:after{
42737
42967
  content:none;
42738
42968
  }
42739
- .ag-theme-salt-low-light .ag-floating-filter-body{
42969
+ .ag-theme-salt-low-light .ag-floating-filter-body,.ag-theme-salt-low-light .ag-floating-filter-button{
42740
42970
  border:1px solid transparent;
42741
42971
  }
42742
- .ag-theme-salt-low-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body{
42972
+ .ag-theme-salt-low-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body,.ag-theme-salt-low-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-button{
42743
42973
  border:none;
42744
42974
  }
42745
42975
  .ag-theme-salt-low-light .ag-header-cell.ag-floating-filter:focus-within{
@@ -42761,7 +42991,7 @@ div[class*=ag-theme-salt]{
42761
42991
  .ag-theme-salt-low-light .ag-header-cell.ag-floating-filter,.ag-theme-salt-low-light .ag-header-row-column-filter,.ag-theme-salt-low-light .ag-pinned-right-header .ag-header-row{
42762
42992
  overflow:unset;
42763
42993
  }
42764
- .ag-theme-salt-low-light .ag-status-bar .ag-react-container{
42994
+ .ag-theme-salt-low-light .ag-floating-filter .ag-react-container,.ag-theme-salt-low-light .ag-status-bar .ag-react-container{
42765
42995
  align-items:center;
42766
42996
  display:flex;
42767
42997
  }
@@ -42770,6 +43000,7 @@ div[class*=ag-theme-salt]{
42770
43000
  }
42771
43001
 
42772
43002
  .ag-theme-salt-touch-dark,.ag-theme-salt-touch-light{
43003
+ --ag-list-item-height:60px;
42773
43004
  --agGrid-button-padding:var(--saltAgGrid-button-padding, 14px);
42774
43005
  --agGrid-editableCell-cornerTag-size-default:16px;
42775
43006
  --agGrid-input-fontSize:var(--saltAgGrid-input-fontSize, 14px);
@@ -47650,6 +47881,7 @@ div[class*=ag-theme-salt]{
47650
47881
  .ag-theme-salt-touch-light .ag-input-field-input[class^=ag-][type=text]{
47651
47882
  font-family:var(--salt-text-fontFamily);
47652
47883
  font-size:var(--salt-text-fontSize);
47884
+ padding:0;
47653
47885
  }
47654
47886
  .ag-theme-salt-touch-light .ag-menu .ag-input-field-input[type=text]{
47655
47887
  border:2px dotted transparent;
@@ -47675,7 +47907,6 @@ div[class*=ag-theme-salt]{
47675
47907
  padding-top:1px;
47676
47908
  }
47677
47909
  .ag-theme-salt-touch-light .ag-set-filter-item{
47678
- height:calc(var(--salt-size-base) + var(--salt-spacing-100));
47679
47910
  margin:0;
47680
47911
  padding-left:var(--salt-spacing-100);
47681
47912
  padding-right:var(--salt-spacing-100);
@@ -47698,7 +47929,7 @@ div[class*=ag-theme-salt]{
47698
47929
  .ag-theme-salt-touch-light .ag-list-item,.ag-theme-salt-touch-light .ag-virtual-list-item{
47699
47930
  color:var(--agGrid-header-foreground);
47700
47931
  font-size:16px;
47701
- height:var(--agGrid-list-item-height) !important;
47932
+ height:var(--agGrid-list-item-height);
47702
47933
  }
47703
47934
  .ag-theme-salt-touch-light .ag-list-item:hover,.ag-theme-salt-touch-light .ag-virtual-list-item:hover{
47704
47935
  background-color:var(--agGrid-list-item-color-hover) !important;
@@ -47723,7 +47954,7 @@ div[class*=ag-theme-salt]{
47723
47954
  }
47724
47955
  .ag-theme-salt-touch-light .ag-status-bar{
47725
47956
  color:var(--salt-text-secondary-foreground);
47726
- font-size:var(--salt-text-label-fontSize);
47957
+ font-size:var(--salt-text-fontSize);
47727
47958
  font-weight:var(--salt-text-label-fontWeight);
47728
47959
  height:var(--agGrid-row-height-default);
47729
47960
  line-height:var(--salt-text-label-lineHeight);
@@ -47731,14 +47962,19 @@ div[class*=ag-theme-salt]{
47731
47962
  }
47732
47963
  .ag-theme-salt-touch-light .ag-status-panel{
47733
47964
  align-items:center;
47965
+ color:var(--salt-text-secondary-foreground);
47734
47966
  padding:var(--salt-spacing-100) 0;
47735
47967
  }
47736
- .ag-theme-salt-touch-light .ag-status-name-value-value,.ag-theme-salt-touch-light .ag-status-panel{
47737
- color:var(--salt-text-secondary-foreground);
47968
+ .ag-theme-salt-touch-light .ag-status-name-value-value{
47969
+ color:var(--salt-text-primary-foreground);
47970
+ font-weight:var(--salt-text-fontWeight-strong);
47738
47971
  }
47739
47972
  .ag-theme-salt-touch-light .ag-header{
47740
47973
  border-color:var(--agGrid-header-borderColor);
47741
47974
  }
47975
+ .ag-theme-salt-touch-light .ag-ltr .ag-header-cell .ag-header-cell-label .ag-header-cell-text{
47976
+ margin-right:auto;
47977
+ }
47742
47978
  .ag-theme-salt-touch-light .ag-header-row{
47743
47979
  color:var(--agGrid-header-foreground);
47744
47980
  font-size:var(--agGrid-header-fontSize);
@@ -47752,7 +47988,7 @@ div[class*=ag-theme-salt]{
47752
47988
  margin-left:var(--salt-spacing-100);
47753
47989
  }
47754
47990
  .ag-theme-salt-touch-light .ag-header-cell-auto-height .ag-header-cell-text{
47755
- overflow:auto;
47991
+ overflow:hidden;
47756
47992
  white-space:pre-wrap;
47757
47993
  }
47758
47994
  .ag-theme-salt-touch-light .ag-keyboard-focus .ag-header-cell:focus:after{
@@ -47870,6 +48106,9 @@ div[class*=ag-theme-salt]{
47870
48106
  top:-1px;
47871
48107
  z-index:1;
47872
48108
  }
48109
+ .ag-theme-salt-touch-light .ag-ltr .ag-row-group-leaf-indent{
48110
+ border-left:2px solid transparent;
48111
+ }
47873
48112
  .ag-theme-salt-touch-light .ag-cell{
47874
48113
  border-left:0;
47875
48114
  padding-left:var(--salt-spacing-100);
@@ -47919,6 +48158,25 @@ div[class*=ag-theme-salt]{
47919
48158
  padding-left:14px;
47920
48159
  padding-right:14px;
47921
48160
  }
48161
+ .ag-theme-salt-touch-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-left{
48162
+ border-left:2px dotted var(--agGrid-range-selection-borderColor);
48163
+ }
48164
+ .ag-theme-salt-touch-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-right{
48165
+ border-right:2px dotted var(--agGrid-range-selection-borderColor);
48166
+ }
48167
+ .ag-theme-salt-touch-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-top{
48168
+ border-top:2px dotted var(--agGrid-range-selection-borderColor);
48169
+ }
48170
+ .ag-theme-salt-touch-light .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-bottom{
48171
+ border-bottom:2px dotted var(--agGrid-range-selection-borderColor);
48172
+ }
48173
+ .ag-theme-salt-touch-light .ag-cell.ag-cell-range-selected-1:not(.ag-cell-focus),.ag-theme-salt-touch-light .ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing){
48174
+ background:var(--agGrid-range-selection-background);
48175
+ }
48176
+ .ag-theme-salt-touch-light .ag-cell.ag-cell-highlight{
48177
+ background:var(--salt-focused-outlineColor) !important;
48178
+ color:var(--agGrid-highlight-text-color);
48179
+ }
47922
48180
  .ag-theme-salt-touch-light .ag-side-buttons{
47923
48181
  width:var(--salt-size-stackable);
47924
48182
  }
@@ -48055,10 +48313,10 @@ div[class*=ag-theme-salt]{
48055
48313
  .ag-theme-salt-touch-light .ag-header-cell.ag-floating-filter:after{
48056
48314
  content:none;
48057
48315
  }
48058
- .ag-theme-salt-touch-light .ag-floating-filter-body{
48316
+ .ag-theme-salt-touch-light .ag-floating-filter-body,.ag-theme-salt-touch-light .ag-floating-filter-button{
48059
48317
  border:1px solid transparent;
48060
48318
  }
48061
- .ag-theme-salt-touch-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body{
48319
+ .ag-theme-salt-touch-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body,.ag-theme-salt-touch-light .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-button{
48062
48320
  border:none;
48063
48321
  }
48064
48322
  .ag-theme-salt-touch-light .ag-header-cell.ag-floating-filter:focus-within{
@@ -48080,7 +48338,7 @@ div[class*=ag-theme-salt]{
48080
48338
  .ag-theme-salt-touch-light .ag-header-cell.ag-floating-filter,.ag-theme-salt-touch-light .ag-header-row-column-filter,.ag-theme-salt-touch-light .ag-pinned-right-header .ag-header-row{
48081
48339
  overflow:unset;
48082
48340
  }
48083
- .ag-theme-salt-touch-light .ag-status-bar .ag-react-container{
48341
+ .ag-theme-salt-touch-light .ag-floating-filter .ag-react-container,.ag-theme-salt-touch-light .ag-status-bar .ag-react-container{
48084
48342
  align-items:center;
48085
48343
  display:flex;
48086
48344
  }
@@ -52974,6 +53232,7 @@ div[class*=ag-theme-salt]{
52974
53232
  .ag-theme-salt-touch-dark .ag-input-field-input[class^=ag-][type=text]{
52975
53233
  font-family:var(--salt-text-fontFamily);
52976
53234
  font-size:var(--salt-text-fontSize);
53235
+ padding:0;
52977
53236
  }
52978
53237
  .ag-theme-salt-touch-dark .ag-menu .ag-input-field-input[type=text]{
52979
53238
  border:2px dotted transparent;
@@ -52999,7 +53258,6 @@ div[class*=ag-theme-salt]{
52999
53258
  padding-top:1px;
53000
53259
  }
53001
53260
  .ag-theme-salt-touch-dark .ag-set-filter-item{
53002
- height:calc(var(--salt-size-base) + var(--salt-spacing-100));
53003
53261
  margin:0;
53004
53262
  padding-left:var(--salt-spacing-100);
53005
53263
  padding-right:var(--salt-spacing-100);
@@ -53022,7 +53280,7 @@ div[class*=ag-theme-salt]{
53022
53280
  .ag-theme-salt-touch-dark .ag-list-item,.ag-theme-salt-touch-dark .ag-virtual-list-item{
53023
53281
  color:var(--agGrid-header-foreground);
53024
53282
  font-size:16px;
53025
- height:var(--agGrid-list-item-height) !important;
53283
+ height:var(--agGrid-list-item-height);
53026
53284
  }
53027
53285
  .ag-theme-salt-touch-dark .ag-list-item:hover,.ag-theme-salt-touch-dark .ag-virtual-list-item:hover{
53028
53286
  background-color:var(--agGrid-list-item-color-hover) !important;
@@ -53047,7 +53305,7 @@ div[class*=ag-theme-salt]{
53047
53305
  }
53048
53306
  .ag-theme-salt-touch-dark .ag-status-bar{
53049
53307
  color:var(--salt-text-secondary-foreground);
53050
- font-size:var(--salt-text-label-fontSize);
53308
+ font-size:var(--salt-text-fontSize);
53051
53309
  font-weight:var(--salt-text-label-fontWeight);
53052
53310
  height:var(--agGrid-row-height-default);
53053
53311
  line-height:var(--salt-text-label-lineHeight);
@@ -53055,14 +53313,19 @@ div[class*=ag-theme-salt]{
53055
53313
  }
53056
53314
  .ag-theme-salt-touch-dark .ag-status-panel{
53057
53315
  align-items:center;
53316
+ color:var(--salt-text-secondary-foreground);
53058
53317
  padding:var(--salt-spacing-100) 0;
53059
53318
  }
53060
- .ag-theme-salt-touch-dark .ag-status-name-value-value,.ag-theme-salt-touch-dark .ag-status-panel{
53061
- color:var(--salt-text-secondary-foreground);
53319
+ .ag-theme-salt-touch-dark .ag-status-name-value-value{
53320
+ color:var(--salt-text-primary-foreground);
53321
+ font-weight:var(--salt-text-fontWeight-strong);
53062
53322
  }
53063
53323
  .ag-theme-salt-touch-dark .ag-header{
53064
53324
  border-color:var(--agGrid-header-borderColor);
53065
53325
  }
53326
+ .ag-theme-salt-touch-dark .ag-ltr .ag-header-cell .ag-header-cell-label .ag-header-cell-text{
53327
+ margin-right:auto;
53328
+ }
53066
53329
  .ag-theme-salt-touch-dark .ag-header-row{
53067
53330
  color:var(--agGrid-header-foreground);
53068
53331
  font-size:var(--agGrid-header-fontSize);
@@ -53076,7 +53339,7 @@ div[class*=ag-theme-salt]{
53076
53339
  margin-left:var(--salt-spacing-100);
53077
53340
  }
53078
53341
  .ag-theme-salt-touch-dark .ag-header-cell-auto-height .ag-header-cell-text{
53079
- overflow:auto;
53342
+ overflow:hidden;
53080
53343
  white-space:pre-wrap;
53081
53344
  }
53082
53345
  .ag-theme-salt-touch-dark .ag-keyboard-focus .ag-header-cell:focus:after{
@@ -53194,6 +53457,9 @@ div[class*=ag-theme-salt]{
53194
53457
  top:-1px;
53195
53458
  z-index:1;
53196
53459
  }
53460
+ .ag-theme-salt-touch-dark .ag-ltr .ag-row-group-leaf-indent{
53461
+ border-left:2px solid transparent;
53462
+ }
53197
53463
  .ag-theme-salt-touch-dark .ag-cell{
53198
53464
  border-left:0;
53199
53465
  padding-left:var(--salt-spacing-100);
@@ -53243,6 +53509,25 @@ div[class*=ag-theme-salt]{
53243
53509
  padding-left:14px;
53244
53510
  padding-right:14px;
53245
53511
  }
53512
+ .ag-theme-salt-touch-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-left{
53513
+ border-left:2px dotted var(--agGrid-range-selection-borderColor);
53514
+ }
53515
+ .ag-theme-salt-touch-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-right{
53516
+ border-right:2px dotted var(--agGrid-range-selection-borderColor);
53517
+ }
53518
+ .ag-theme-salt-touch-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-top{
53519
+ border-top:2px dotted var(--agGrid-range-selection-borderColor);
53520
+ }
53521
+ .ag-theme-salt-touch-dark .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-bottom{
53522
+ border-bottom:2px dotted var(--agGrid-range-selection-borderColor);
53523
+ }
53524
+ .ag-theme-salt-touch-dark .ag-cell.ag-cell-range-selected-1:not(.ag-cell-focus),.ag-theme-salt-touch-dark .ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing){
53525
+ background:var(--agGrid-range-selection-background);
53526
+ }
53527
+ .ag-theme-salt-touch-dark .ag-cell.ag-cell-highlight{
53528
+ background:var(--salt-focused-outlineColor) !important;
53529
+ color:var(--agGrid-highlight-text-color);
53530
+ }
53246
53531
  .ag-theme-salt-touch-dark .ag-side-buttons{
53247
53532
  width:var(--salt-size-stackable);
53248
53533
  }
@@ -53379,10 +53664,10 @@ div[class*=ag-theme-salt]{
53379
53664
  .ag-theme-salt-touch-dark .ag-header-cell.ag-floating-filter:after{
53380
53665
  content:none;
53381
53666
  }
53382
- .ag-theme-salt-touch-dark .ag-floating-filter-body{
53667
+ .ag-theme-salt-touch-dark .ag-floating-filter-body,.ag-theme-salt-touch-dark .ag-floating-filter-button{
53383
53668
  border:1px solid transparent;
53384
53669
  }
53385
- .ag-theme-salt-touch-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body{
53670
+ .ag-theme-salt-touch-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-body,.ag-theme-salt-touch-dark .ag-header-cell.ag-floating-filter:focus-within .ag-floating-filter-button{
53386
53671
  border:none;
53387
53672
  }
53388
53673
  .ag-theme-salt-touch-dark .ag-header-cell.ag-floating-filter:focus-within{
@@ -53404,7 +53689,7 @@ div[class*=ag-theme-salt]{
53404
53689
  .ag-theme-salt-touch-dark .ag-header-cell.ag-floating-filter,.ag-theme-salt-touch-dark .ag-header-row-column-filter,.ag-theme-salt-touch-dark .ag-pinned-right-header .ag-header-row{
53405
53690
  overflow:unset;
53406
53691
  }
53407
- .ag-theme-salt-touch-dark .ag-status-bar .ag-react-container{
53692
+ .ag-theme-salt-touch-dark .ag-floating-filter .ag-react-container,.ag-theme-salt-touch-dark .ag-status-bar .ag-react-container{
53408
53693
  align-items:center;
53409
53694
  display:flex;
53410
53695
  }