@gooddata/sdk-ui-gen-ai 10.37.0 → 10.38.0-alpha.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.
- package/NOTICE +19 -28
- package/esm/components/EmptyState.d.ts.map +1 -1
- package/esm/components/EmptyState.js +5 -4
- package/esm/components/EmptyState.js.map +1 -1
- package/esm/components/GenAIChatOverlay.d.ts.map +1 -1
- package/esm/components/GenAIChatOverlay.js +5 -4
- package/esm/components/GenAIChatOverlay.js.map +1 -1
- package/esm/components/GlobalError.d.ts +1 -4
- package/esm/components/GlobalError.d.ts.map +1 -1
- package/esm/components/GlobalError.js +4 -4
- package/esm/components/GlobalError.js.map +1 -1
- package/esm/components/Input.d.ts.map +1 -1
- package/esm/components/Input.js +5 -4
- package/esm/components/Input.js.map +1 -1
- package/esm/components/messages/AssistantMessage.d.ts.map +1 -1
- package/esm/components/messages/AssistantMessage.js +5 -4
- package/esm/components/messages/AssistantMessage.js.map +1 -1
- package/esm/components/messages/contents/VisualizationSaveDialog.d.ts.map +1 -1
- package/esm/components/messages/contents/VisualizationSaveDialog.js +5 -4
- package/esm/components/messages/contents/VisualizationSaveDialog.js.map +1 -1
- package/package.json +14 -14
- package/styles/css/main.css +517 -19
- package/styles/css/main.css.map +1 -1
package/styles/css/main.css
CHANGED
|
@@ -2068,6 +2068,28 @@ button.gd-list-item {
|
|
|
2068
2068
|
display: none;
|
|
2069
2069
|
}
|
|
2070
2070
|
|
|
2071
|
+
.gd-table-component .ag-filter-panel-buttons {
|
|
2072
|
+
display: flex;
|
|
2073
|
+
justify-content: flex-end;
|
|
2074
|
+
overflow: hidden;
|
|
2075
|
+
padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding) 0;
|
|
2076
|
+
flex-wrap: wrap;
|
|
2077
|
+
gap: var(--ag-widget-vertical-spacing) var(--ag-widget-horizontal-spacing);
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
.gd-table-component .ag-filter-panel-buttons-button {
|
|
2081
|
+
line-height: 1.5;
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2084
|
+
.gd-table-component .ag-filter-panel .ag-standard-button.ag-filter-panel-buttons-apply-button {
|
|
2085
|
+
color: var(--ag-filter-panel-apply-button-color);
|
|
2086
|
+
background-color: var(--ag-filter-panel-apply-button-background-color);
|
|
2087
|
+
}
|
|
2088
|
+
|
|
2089
|
+
.gd-table-component .ag-filter-panel > *:where(:last-child) {
|
|
2090
|
+
padding-bottom: var(--ag-widget-container-vertical-padding);
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2071
2093
|
.gd-table-component .ag-row.ag-row-pinned-source {
|
|
2072
2094
|
color: var(--ag-pinned-source-row-text-color);
|
|
2073
2095
|
background-color: var(--ag-pinned-source-row-background-color);
|
|
@@ -3159,6 +3181,108 @@ button.gd-list-item {
|
|
|
3159
3181
|
opacity: var(--ag-icon-image-opacity-pinned-top, var(--ag-icon-image-opacity, 0.9));
|
|
3160
3182
|
}
|
|
3161
3183
|
|
|
3184
|
+
.gd-table-component .ag-icon-chevron-up {
|
|
3185
|
+
font-family: var(--ag-icon-font-family-chevron-up, var(--ag-icon-font-family));
|
|
3186
|
+
font-weight: var(--ag-icon-font-weight-chevron-up, var(--ag-icon-font-weight));
|
|
3187
|
+
color: var(--ag-icon-font-color-chevron-up, var(--ag-icon-font-color));
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3190
|
+
.gd-table-component .ag-icon-chevron-up::before {
|
|
3191
|
+
content: var(--ag-icon-font-code-chevron-up, "\f140");
|
|
3192
|
+
display: var(--ag-icon-font-display-chevron-up, var(--ag-icon-font-display));
|
|
3193
|
+
}
|
|
3194
|
+
|
|
3195
|
+
.gd-table-component .ag-icon-chevron-up::after {
|
|
3196
|
+
background-image: var(--ag-icon-image-chevron-up, var(--ag-icon-image));
|
|
3197
|
+
display: var(--ag-icon-image-display-chevron-up, var(--ag-icon-image-display));
|
|
3198
|
+
opacity: var(--ag-icon-image-opacity-chevron-up, var(--ag-icon-image-opacity, 0.9));
|
|
3199
|
+
}
|
|
3200
|
+
|
|
3201
|
+
.gd-table-component .ag-icon-chevron-down {
|
|
3202
|
+
font-family: var(--ag-icon-font-family-chevron-down, var(--ag-icon-font-family));
|
|
3203
|
+
font-weight: var(--ag-icon-font-weight-chevron-down, var(--ag-icon-font-weight));
|
|
3204
|
+
color: var(--ag-icon-font-color-chevron-down, var(--ag-icon-font-color));
|
|
3205
|
+
}
|
|
3206
|
+
|
|
3207
|
+
.gd-table-component .ag-icon-chevron-down::before {
|
|
3208
|
+
content: var(--ag-icon-font-code-chevron-down, "\f141");
|
|
3209
|
+
display: var(--ag-icon-font-display-chevron-down, var(--ag-icon-font-display));
|
|
3210
|
+
}
|
|
3211
|
+
|
|
3212
|
+
.gd-table-component .ag-icon-chevron-down::after {
|
|
3213
|
+
background-image: var(--ag-icon-image-chevron-down, var(--ag-icon-image));
|
|
3214
|
+
display: var(--ag-icon-image-display-chevron-down, var(--ag-icon-image-display));
|
|
3215
|
+
opacity: var(--ag-icon-image-opacity-chevron-down, var(--ag-icon-image-opacity, 0.9));
|
|
3216
|
+
}
|
|
3217
|
+
|
|
3218
|
+
.gd-table-component .ag-icon-chevron-left {
|
|
3219
|
+
font-family: var(--ag-icon-font-family-chevron-left, var(--ag-icon-font-family));
|
|
3220
|
+
font-weight: var(--ag-icon-font-weight-chevron-left, var(--ag-icon-font-weight));
|
|
3221
|
+
color: var(--ag-icon-font-color-chevron-left, var(--ag-icon-font-color));
|
|
3222
|
+
}
|
|
3223
|
+
|
|
3224
|
+
.gd-table-component .ag-icon-chevron-left::before {
|
|
3225
|
+
content: var(--ag-icon-font-code-chevron-left, "\f142");
|
|
3226
|
+
display: var(--ag-icon-font-display-chevron-left, var(--ag-icon-font-display));
|
|
3227
|
+
}
|
|
3228
|
+
|
|
3229
|
+
.gd-table-component .ag-icon-chevron-left::after {
|
|
3230
|
+
background-image: var(--ag-icon-image-chevron-left, var(--ag-icon-image));
|
|
3231
|
+
display: var(--ag-icon-image-display-chevron-left, var(--ag-icon-image-display));
|
|
3232
|
+
opacity: var(--ag-icon-image-opacity-chevron-left, var(--ag-icon-image-opacity, 0.9));
|
|
3233
|
+
}
|
|
3234
|
+
|
|
3235
|
+
.gd-table-component .ag-icon-chevron-right {
|
|
3236
|
+
font-family: var(--ag-icon-font-family-chevron-right, var(--ag-icon-font-family));
|
|
3237
|
+
font-weight: var(--ag-icon-font-weight-chevron-right, var(--ag-icon-font-weight));
|
|
3238
|
+
color: var(--ag-icon-font-color-chevron-right, var(--ag-icon-font-color));
|
|
3239
|
+
}
|
|
3240
|
+
|
|
3241
|
+
.gd-table-component .ag-icon-chevron-right::before {
|
|
3242
|
+
content: var(--ag-icon-font-code-chevron-right, "\f143");
|
|
3243
|
+
display: var(--ag-icon-font-display-chevron-right, var(--ag-icon-font-display));
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3246
|
+
.gd-table-component .ag-icon-chevron-right::after {
|
|
3247
|
+
background-image: var(--ag-icon-image-chevron-right, var(--ag-icon-image));
|
|
3248
|
+
display: var(--ag-icon-image-display-chevron-right, var(--ag-icon-image-display));
|
|
3249
|
+
opacity: var(--ag-icon-image-opacity-chevron-right, var(--ag-icon-image-opacity, 0.9));
|
|
3250
|
+
}
|
|
3251
|
+
|
|
3252
|
+
.gd-table-component .ag-icon-filter-add {
|
|
3253
|
+
font-family: var(--ag-icon-font-family-filter-add, var(--ag-icon-font-family));
|
|
3254
|
+
font-weight: var(--ag-icon-font-weight-filter-add, var(--ag-icon-font-weight));
|
|
3255
|
+
color: var(--ag-icon-font-color-filter-add, var(--ag-icon-font-color));
|
|
3256
|
+
}
|
|
3257
|
+
|
|
3258
|
+
.gd-table-component .ag-icon-filter-add::before {
|
|
3259
|
+
content: var(--ag-icon-font-code-filter-add, "\f144");
|
|
3260
|
+
display: var(--ag-icon-font-display-filter-add, var(--ag-icon-font-display));
|
|
3261
|
+
}
|
|
3262
|
+
|
|
3263
|
+
.gd-table-component .ag-icon-filter-add::after {
|
|
3264
|
+
background-image: var(--ag-icon-image-filter-add, var(--ag-icon-image));
|
|
3265
|
+
display: var(--ag-icon-image-display-filter-add, var(--ag-icon-image-display));
|
|
3266
|
+
opacity: var(--ag-icon-image-opacity-filter-add, var(--ag-icon-image-opacity, 0.9));
|
|
3267
|
+
}
|
|
3268
|
+
|
|
3269
|
+
.gd-table-component .ag-icon-edit {
|
|
3270
|
+
font-family: var(--ag-icon-font-family-edit, var(--ag-icon-font-family));
|
|
3271
|
+
font-weight: var(--ag-icon-font-weight-edit, var(--ag-icon-font-weight));
|
|
3272
|
+
color: var(--ag-icon-font-color-edit, var(--ag-icon-font-color));
|
|
3273
|
+
}
|
|
3274
|
+
|
|
3275
|
+
.gd-table-component .ag-icon-edit::before {
|
|
3276
|
+
content: var(--ag-icon-font-code-edit, "\f145");
|
|
3277
|
+
display: var(--ag-icon-font-display-edit, var(--ag-icon-font-display));
|
|
3278
|
+
}
|
|
3279
|
+
|
|
3280
|
+
.gd-table-component .ag-icon-edit::after {
|
|
3281
|
+
background-image: var(--ag-icon-image-edit, var(--ag-icon-image));
|
|
3282
|
+
display: var(--ag-icon-image-display-edit, var(--ag-icon-image-display));
|
|
3283
|
+
opacity: var(--ag-icon-image-opacity-edit, var(--ag-icon-image-opacity, 0.9));
|
|
3284
|
+
}
|
|
3285
|
+
|
|
3162
3286
|
.gd-table-component .ag-icon-row-drag::before {
|
|
3163
3287
|
content: var(--ag-icon-font-code-grip);
|
|
3164
3288
|
}
|
|
@@ -3180,6 +3304,13 @@ button.gd-list-item {
|
|
|
3180
3304
|
--ag-background-color: #fff;
|
|
3181
3305
|
--ag-header-background-color: transparent;
|
|
3182
3306
|
--ag-tooltip-background-color: transparent;
|
|
3307
|
+
--ag-tooltip-error-background-color: color-mix(
|
|
3308
|
+
in srgb,
|
|
3309
|
+
var(--ag-background-color),
|
|
3310
|
+
var(--ag-invalid-color) 10%
|
|
3311
|
+
);
|
|
3312
|
+
--ag-tooltip-error-text-color: var(--ag-invalid-color);
|
|
3313
|
+
--ag-tooltip-error-border-color: color-mix(in srgb, var(--ag-background-color), var(--ag-invalid-color) 25%);
|
|
3183
3314
|
--ag-subheader-background-color: transparent;
|
|
3184
3315
|
--ag-subheader-toolbar-background-color: transparent;
|
|
3185
3316
|
--ag-control-panel-background-color: transparent;
|
|
@@ -3231,6 +3362,11 @@ button.gd-list-item {
|
|
|
3231
3362
|
--ag-input-border-color: var(--ag-secondary-border-color);
|
|
3232
3363
|
--ag-borders-input-invalid: solid 2px;
|
|
3233
3364
|
--ag-input-border-color-invalid: var(--ag-invalid-color);
|
|
3365
|
+
--ag-full-row-invalid-background-color: color-mix(
|
|
3366
|
+
in srgb,
|
|
3367
|
+
var(--ag-background-color),
|
|
3368
|
+
var(--ag-invalid-color) 25%
|
|
3369
|
+
);
|
|
3234
3370
|
--ag-borders-side-button: var(--ag-borders);
|
|
3235
3371
|
--ag-border-radius: 0px;
|
|
3236
3372
|
--ag-wrapper-border-radius: var(--ag-border-radius);
|
|
@@ -3261,6 +3397,7 @@ button.gd-list-item {
|
|
|
3261
3397
|
--ag-toggle-button-height: var(--ag-icon-size);
|
|
3262
3398
|
--ag-toggle-button-width: calc(var(--ag-toggle-button-height) * 2);
|
|
3263
3399
|
--ag-input-focus-box-shadow: none;
|
|
3400
|
+
--ag-input-error-focus-box-shadow: none;
|
|
3264
3401
|
--ag-input-focus-border-color: none;
|
|
3265
3402
|
--ag-minichart-selected-chart-color: var(--ag-checkbox-checked-color);
|
|
3266
3403
|
--ag-minichart-selected-page-color: var(--ag-checkbox-checked-color);
|
|
@@ -3277,6 +3414,7 @@ button.gd-list-item {
|
|
|
3277
3414
|
--ag-cell-widget-spacing: var(--ag-cell-horizontal-padding);
|
|
3278
3415
|
--ag-row-height: calc(var(--ag-grid-size) * 6 + 1px);
|
|
3279
3416
|
--ag-header-height: var(--ag-row-height);
|
|
3417
|
+
--ag-pagination-panel-height: var(--ag-header-height);
|
|
3280
3418
|
--ag-list-item-height: calc(var(--ag-grid-size) * 5);
|
|
3281
3419
|
--ag-column-select-indent-size: calc(var(--ag-grid-size) + var(--ag-icon-size));
|
|
3282
3420
|
--ag-set-filter-indent-size: calc(var(--ag-grid-size) + var(--ag-icon-size));
|
|
@@ -3301,6 +3439,14 @@ button.gd-list-item {
|
|
|
3301
3439
|
--ag-find-active-match-color: var(--ag-foreground-color);
|
|
3302
3440
|
--ag-find-match-background-color: #ffff00;
|
|
3303
3441
|
--ag-find-active-match-background-color: #ffa500;
|
|
3442
|
+
--ag-cell-batch-edit-background-color: rgb(220 181 139 / 16%);
|
|
3443
|
+
--ag-cell-batch-edit-text-color: #422f00;
|
|
3444
|
+
--ag-row-batch-edit-background-color: var(--ag-cell-batch-edit-background-color);
|
|
3445
|
+
--ag-row-batch-edit-text-color: var(--ag-cell-batch-edit-text-color);
|
|
3446
|
+
--ag-filter-panel-apply-button-color: var(--ag-foreground-color);
|
|
3447
|
+
--ag-filter-panel-apply-button-background-color: var(--ag-background-color);
|
|
3448
|
+
--ag-filter-panel-card-subtle-color: var(--ag-foreground-color);
|
|
3449
|
+
--ag-filter-panel-card-subtle-hover-color: var(--ag-foreground-color);
|
|
3304
3450
|
}
|
|
3305
3451
|
|
|
3306
3452
|
.gd-table-component .ag-root-wrapper,
|
|
@@ -4178,6 +4324,10 @@ button.gd-list-item {
|
|
|
4178
4324
|
line-height: normal;
|
|
4179
4325
|
}
|
|
4180
4326
|
|
|
4327
|
+
.gd-table-component .ag-row.ag-row-editing-invalid .ag-cell-inline-editing {
|
|
4328
|
+
opacity: 0.8;
|
|
4329
|
+
}
|
|
4330
|
+
|
|
4181
4331
|
.gd-table-component .ag-cell .ag-icon {
|
|
4182
4332
|
display: inline-block;
|
|
4183
4333
|
vertical-align: middle;
|
|
@@ -4890,6 +5040,11 @@ button.gd-list-item {
|
|
|
4890
5040
|
cursor: ns-resize;
|
|
4891
5041
|
}
|
|
4892
5042
|
|
|
5043
|
+
.gd-table-component .ag-floating-bottom .ag-row-numbers-resizer {
|
|
5044
|
+
bottom: unset;
|
|
5045
|
+
top: -2px;
|
|
5046
|
+
}
|
|
5047
|
+
|
|
4893
5048
|
.gd-table-component .ag-icon {
|
|
4894
5049
|
display: block;
|
|
4895
5050
|
speak: none;
|
|
@@ -4976,7 +5131,8 @@ button.gd-list-item {
|
|
|
4976
5131
|
flex: 1 1 auto;
|
|
4977
5132
|
}
|
|
4978
5133
|
|
|
4979
|
-
.gd-table-component .ag-floating-filter-input .ag-input-field-input[type=date]
|
|
5134
|
+
.gd-table-component .ag-floating-filter-input .ag-input-field-input[type=date],
|
|
5135
|
+
.gd-table-component .ag-floating-filter-input .ag-input-field-input[type=datetime-local] {
|
|
4980
5136
|
width: 1px;
|
|
4981
5137
|
}
|
|
4982
5138
|
|
|
@@ -5324,6 +5480,23 @@ button.gd-list-item {
|
|
|
5324
5480
|
border-color: var(--ag-input-focus-border-color);
|
|
5325
5481
|
}
|
|
5326
5482
|
|
|
5483
|
+
.gd-table-component input[class^=ag-]:not([type]):focus.invalid, .gd-table-component input[class^=ag-]:not([type]):focus:invalid,
|
|
5484
|
+
.gd-table-component input[class^=ag-][type=text]:focus.invalid,
|
|
5485
|
+
.gd-table-component input[class^=ag-][type=text]:focus:invalid,
|
|
5486
|
+
.gd-table-component input[class^=ag-][type=number]:focus.invalid,
|
|
5487
|
+
.gd-table-component input[class^=ag-][type=number]:focus:invalid,
|
|
5488
|
+
.gd-table-component input[class^=ag-][type=tel]:focus.invalid,
|
|
5489
|
+
.gd-table-component input[class^=ag-][type=tel]:focus:invalid,
|
|
5490
|
+
.gd-table-component input[class^=ag-][type=date]:focus.invalid,
|
|
5491
|
+
.gd-table-component input[class^=ag-][type=date]:focus:invalid,
|
|
5492
|
+
.gd-table-component input[class^=ag-][type=datetime-local]:focus.invalid,
|
|
5493
|
+
.gd-table-component input[class^=ag-][type=datetime-local]:focus:invalid,
|
|
5494
|
+
.gd-table-component textarea[class^=ag-]:focus.invalid,
|
|
5495
|
+
.gd-table-component textarea[class^=ag-]:focus:invalid {
|
|
5496
|
+
box-shadow: var(--ag-input-error-focus-box-shadow);
|
|
5497
|
+
border-color: var(--ag-invalid-color);
|
|
5498
|
+
}
|
|
5499
|
+
|
|
5327
5500
|
.gd-table-component input[class^=ag-]:not([type]):invalid,
|
|
5328
5501
|
.gd-table-component input[class^=ag-][type=text]:invalid,
|
|
5329
5502
|
.gd-table-component input[class^=ag-][type=number]:invalid,
|
|
@@ -5352,6 +5525,12 @@ button.gd-list-item {
|
|
|
5352
5525
|
box-shadow: var(--ag-input-focus-box-shadow);
|
|
5353
5526
|
}
|
|
5354
5527
|
|
|
5528
|
+
.gd-table-component input[class^=ag-][type=button]:focus:invalid, .gd-table-component input[class^=ag-][type=button]:focus.invalid,
|
|
5529
|
+
.gd-table-component button[class^=ag-]:focus:invalid,
|
|
5530
|
+
.gd-table-component button[class^=ag-]:focus.invalid {
|
|
5531
|
+
box-shadow: var(--ag-input-error-focus-box-shadow);
|
|
5532
|
+
}
|
|
5533
|
+
|
|
5355
5534
|
.gd-table-component .ag-drag-handle {
|
|
5356
5535
|
color: var(--ag-secondary-foreground-color);
|
|
5357
5536
|
}
|
|
@@ -5566,6 +5745,14 @@ button.gd-list-item {
|
|
|
5566
5745
|
border-color: var(--ag-input-focus-border-color);
|
|
5567
5746
|
}
|
|
5568
5747
|
|
|
5748
|
+
.gd-table-component .ag-picker-field-wrapper.ag-picker-has-focus.invalid, .gd-table-component .ag-picker-field-wrapper:focus-within.invalid {
|
|
5749
|
+
box-shadow: var(--ag-input-error-focus-box-shadow);
|
|
5750
|
+
}
|
|
5751
|
+
|
|
5752
|
+
.gd-table-component .ag-picker-field-wrapper.invalid {
|
|
5753
|
+
border: var(--ag-borders-input-invalid) var(--ag-input-border-color-invalid);
|
|
5754
|
+
}
|
|
5755
|
+
|
|
5569
5756
|
.gd-table-component .ag-picker-field-button {
|
|
5570
5757
|
background-color: var(--ag-background-color);
|
|
5571
5758
|
color: var(--ag-secondary-foreground-color);
|
|
@@ -5945,6 +6132,13 @@ button.gd-list-item {
|
|
|
5945
6132
|
white-space: normal;
|
|
5946
6133
|
}
|
|
5947
6134
|
|
|
6135
|
+
.gd-table-component .ag-tooltip.ag-cell-editor-tooltip {
|
|
6136
|
+
background-color: var(--ag-tooltip-error-background-color);
|
|
6137
|
+
color: var(--ag-tooltip-error-text-color);
|
|
6138
|
+
border: var(--ag-borders) var(--ag-tooltip-error-border-color);
|
|
6139
|
+
font-weight: 500;
|
|
6140
|
+
}
|
|
6141
|
+
|
|
5948
6142
|
.gd-table-component .ag-tooltip.ag-tooltip-animate,
|
|
5949
6143
|
.gd-table-component .ag-tooltip-custom.ag-tooltip-animate {
|
|
5950
6144
|
transition: opacity 1s;
|
|
@@ -6165,6 +6359,10 @@ button.gd-list-item {
|
|
|
6165
6359
|
border-bottom: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
|
|
6166
6360
|
}
|
|
6167
6361
|
|
|
6362
|
+
.gd-table-component .ag-row.ag-row-editing-invalid {
|
|
6363
|
+
background-color: var(--ag-full-row-invalid-background-color);
|
|
6364
|
+
}
|
|
6365
|
+
|
|
6168
6366
|
.gd-table-component .ag-spanned-cell-wrapper {
|
|
6169
6367
|
background-color: var(--ag-background-color);
|
|
6170
6368
|
position: absolute;
|
|
@@ -6176,6 +6374,7 @@ button.gd-list-item {
|
|
|
6176
6374
|
}
|
|
6177
6375
|
|
|
6178
6376
|
.gd-table-component .ag-row-highlight-above::after,
|
|
6377
|
+
.gd-table-component .ag-row-highlight-inside::after,
|
|
6179
6378
|
.gd-table-component .ag-row-highlight-below::after {
|
|
6180
6379
|
content: "";
|
|
6181
6380
|
position: absolute;
|
|
@@ -6183,14 +6382,31 @@ button.gd-list-item {
|
|
|
6183
6382
|
height: 1px;
|
|
6184
6383
|
background-color: var(--ag-range-selection-border-color);
|
|
6185
6384
|
left: 1px;
|
|
6385
|
+
pointer-events: none;
|
|
6186
6386
|
}
|
|
6187
6387
|
|
|
6188
6388
|
.gd-table-component .ag-row-highlight-above::after {
|
|
6189
|
-
top:
|
|
6389
|
+
top: 0;
|
|
6190
6390
|
}
|
|
6191
6391
|
|
|
6192
6392
|
.gd-table-component .ag-row-highlight-below::after {
|
|
6193
|
-
bottom:
|
|
6393
|
+
bottom: 0;
|
|
6394
|
+
}
|
|
6395
|
+
|
|
6396
|
+
.gd-table-component .ag-row-highlight-indent::after {
|
|
6397
|
+
display: block;
|
|
6398
|
+
width: auto;
|
|
6399
|
+
left: calc(2 * (var(--ag-cell-widget-spacing) + var(--ag-icon-size)) + var(--ag-cell-horizontal-padding) + var(--ag-row-highlight-level) * var(--ag-row-group-indent-size));
|
|
6400
|
+
right: 1px;
|
|
6401
|
+
}
|
|
6402
|
+
|
|
6403
|
+
.gd-table-component .ag-row-highlight-inside::after {
|
|
6404
|
+
display: block;
|
|
6405
|
+
width: auto;
|
|
6406
|
+
height: auto;
|
|
6407
|
+
inset: 0;
|
|
6408
|
+
background-color: var(--ag-selected-row-background-color);
|
|
6409
|
+
border: 1px solid var(--ag-range-selection-border-color);
|
|
6194
6410
|
}
|
|
6195
6411
|
|
|
6196
6412
|
.gd-table-component .ag-row-odd {
|
|
@@ -6588,7 +6804,7 @@ button.gd-list-item {
|
|
|
6588
6804
|
}
|
|
6589
6805
|
|
|
6590
6806
|
.gd-table-component .ag-fill-handle {
|
|
6591
|
-
cursor:
|
|
6807
|
+
cursor: crosshair;
|
|
6592
6808
|
}
|
|
6593
6809
|
|
|
6594
6810
|
.gd-table-component .ag-range-handle {
|
|
@@ -6599,6 +6815,10 @@ button.gd-list-item {
|
|
|
6599
6815
|
border-color: var(--ag-input-focus-border-color) !important;
|
|
6600
6816
|
}
|
|
6601
6817
|
|
|
6818
|
+
.gd-table-component .ag-cell-inline-editing.ag-cell-editing-error {
|
|
6819
|
+
border-color: var(--ag-invalid-color) !important;
|
|
6820
|
+
}
|
|
6821
|
+
|
|
6602
6822
|
.gd-table-component .ag-menu {
|
|
6603
6823
|
border: var(--ag-borders) var(--ag-border-color);
|
|
6604
6824
|
background: var(--ag-background-color);
|
|
@@ -7153,6 +7373,204 @@ button.gd-list-item {
|
|
|
7153
7373
|
color: var(--ag-secondary-foreground-color);
|
|
7154
7374
|
}
|
|
7155
7375
|
|
|
7376
|
+
.gd-table-component .ag-filter-panel {
|
|
7377
|
+
display: flex;
|
|
7378
|
+
flex-direction: column;
|
|
7379
|
+
width: 100%;
|
|
7380
|
+
}
|
|
7381
|
+
|
|
7382
|
+
.gd-table-component .ag-filter-panel .ag-simple-filter-body-wrapper {
|
|
7383
|
+
padding: var(--ag-widget-vertical-spacing) var(--ag-widget-container-horizontal-padding) 0;
|
|
7384
|
+
}
|
|
7385
|
+
|
|
7386
|
+
.gd-table-component .ag-filter-panel .ag-mini-filter {
|
|
7387
|
+
margin-top: var(--ag-widget-vertical-spacing);
|
|
7388
|
+
margin-left: var(--ag-widget-container-horizontal-padding);
|
|
7389
|
+
margin-right: var(--ag-widget-container-horizontal-padding);
|
|
7390
|
+
}
|
|
7391
|
+
|
|
7392
|
+
.gd-table-component .ag-filter-panel .ag-standard-button {
|
|
7393
|
+
transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
|
|
7394
|
+
}
|
|
7395
|
+
|
|
7396
|
+
.gd-table-component .ag-filter-panel .ag-simple-filter-body-wrapper > *:last-child,
|
|
7397
|
+
.gd-table-component .ag-filter-panel .ag-set-filter-body-wrapper {
|
|
7398
|
+
margin-bottom: var(--ag-widget-container-vertical-padding);
|
|
7399
|
+
}
|
|
7400
|
+
|
|
7401
|
+
.gd-table-component .ag-filter-panel-container {
|
|
7402
|
+
flex: 1;
|
|
7403
|
+
overflow: auto;
|
|
7404
|
+
padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding) 0;
|
|
7405
|
+
}
|
|
7406
|
+
|
|
7407
|
+
.gd-table-component .ag-filter-panel-container > *:not(:last-child) {
|
|
7408
|
+
margin-bottom: var(--ag-widget-container-vertical-padding);
|
|
7409
|
+
}
|
|
7410
|
+
|
|
7411
|
+
.gd-table-component .ag-filter-card {
|
|
7412
|
+
border: 1px solid var(--ag-border-color);
|
|
7413
|
+
border-radius: var(--ag-border-radius);
|
|
7414
|
+
background-color: var(--ag-background-color);
|
|
7415
|
+
}
|
|
7416
|
+
|
|
7417
|
+
.gd-table-component .ag-ltr .ag-filter-card .ag-set-filter-item {
|
|
7418
|
+
padding-left: calc(var(--ag-widget-container-horizontal-padding) + var(--ag-indentation-level) * var(--ag-set-filter-indent-size));
|
|
7419
|
+
padding-right: var(--ag-widget-container-horizontal-padding);
|
|
7420
|
+
}
|
|
7421
|
+
|
|
7422
|
+
.gd-table-component .ag-rtl .ag-filter-card .ag-set-filter-item {
|
|
7423
|
+
padding-right: calc(var(--ag-widget-container-horizontal-padding) + var(--ag-indentation-level) * var(--ag-set-filter-indent-size));
|
|
7424
|
+
padding-left: var(--ag-widget-container-horizontal-padding);
|
|
7425
|
+
}
|
|
7426
|
+
|
|
7427
|
+
.gd-table-component .ag-filter-card-header {
|
|
7428
|
+
display: flex;
|
|
7429
|
+
flex-direction: row;
|
|
7430
|
+
align-items: center;
|
|
7431
|
+
padding-top: var(--ag-widget-vertical-spacing);
|
|
7432
|
+
}
|
|
7433
|
+
|
|
7434
|
+
.gd-table-component .ag-ltr .ag-filter-card-header > *:not(:last-child) {
|
|
7435
|
+
padding-right: var(--ag-grid-size);
|
|
7436
|
+
}
|
|
7437
|
+
|
|
7438
|
+
.gd-table-component .ag-rtl .ag-filter-card-header > *:not(:last-child) {
|
|
7439
|
+
padding-left: var(--ag-grid-size);
|
|
7440
|
+
}
|
|
7441
|
+
|
|
7442
|
+
.gd-table-component .ag-filter-card-heading {
|
|
7443
|
+
flex: 1;
|
|
7444
|
+
overflow: hidden;
|
|
7445
|
+
padding-top: calc(var(--ag-widget-container-vertical-padding) - var(--ag-widget-vertical-spacing));
|
|
7446
|
+
padding-bottom: calc(var(--ag-widget-container-vertical-padding) - var(--ag-widget-vertical-spacing));
|
|
7447
|
+
}
|
|
7448
|
+
|
|
7449
|
+
.gd-table-component .ag-ltr .ag-filter-card-heading {
|
|
7450
|
+
padding-left: var(--ag-widget-horizontal-spacing);
|
|
7451
|
+
}
|
|
7452
|
+
|
|
7453
|
+
.gd-table-component .ag-rtl .ag-filter-card-heading {
|
|
7454
|
+
padding-right: var(--ag-widget-horizontal-spacing);
|
|
7455
|
+
}
|
|
7456
|
+
|
|
7457
|
+
.gd-table-component .ag-filter-card-expand {
|
|
7458
|
+
display: flex;
|
|
7459
|
+
flex-direction: row;
|
|
7460
|
+
width: 100%;
|
|
7461
|
+
justify-content: space-between;
|
|
7462
|
+
align-items: center;
|
|
7463
|
+
}
|
|
7464
|
+
|
|
7465
|
+
.gd-table-component .ag-filter-card-title {
|
|
7466
|
+
overflow: hidden;
|
|
7467
|
+
text-overflow: ellipsis;
|
|
7468
|
+
}
|
|
7469
|
+
|
|
7470
|
+
.gd-table-component .ag-filter-card-expand-icon {
|
|
7471
|
+
display: flex;
|
|
7472
|
+
flex: 1;
|
|
7473
|
+
justify-content: end;
|
|
7474
|
+
}
|
|
7475
|
+
|
|
7476
|
+
.gd-table-component .ag-filter-card-editing-icon {
|
|
7477
|
+
margin: 0 var(--ag-grid-size);
|
|
7478
|
+
}
|
|
7479
|
+
|
|
7480
|
+
.gd-table-component .ag-filter-card-summary,
|
|
7481
|
+
.gd-table-component .ag-filter-card-expand-icon .ag-icon,
|
|
7482
|
+
.gd-table-component .ag-filter-card-delete-icon .ag-icon,
|
|
7483
|
+
.gd-table-component .ag-filter-card-editing-icon .ag-icon {
|
|
7484
|
+
color: var(--ag-filter-panel-card-subtle-color);
|
|
7485
|
+
}
|
|
7486
|
+
|
|
7487
|
+
.gd-table-component .ag-filter-card-expand-icon .ag-icon,
|
|
7488
|
+
.gd-table-component .ag-filter-card-delete-icon .ag-icon {
|
|
7489
|
+
transition: color 0.25s ease-in-out;
|
|
7490
|
+
}
|
|
7491
|
+
|
|
7492
|
+
.gd-table-component .ag-filter-card-expand-icon:hover .ag-icon,
|
|
7493
|
+
.gd-table-component .ag-filter-card-delete-icon:hover .ag-icon {
|
|
7494
|
+
color: var(--ag-filter-panel-card-subtle-hover-color);
|
|
7495
|
+
}
|
|
7496
|
+
|
|
7497
|
+
.gd-table-component .ag-filter-card-heading:hover .ag-filter-card-expand-icon .ag-icon {
|
|
7498
|
+
color: var(--ag-filter-panel-card-subtle-hover-color);
|
|
7499
|
+
}
|
|
7500
|
+
|
|
7501
|
+
.gd-table-component .ag-filter-card-expand,
|
|
7502
|
+
.gd-table-component .ag-filter-card-delete {
|
|
7503
|
+
border-radius: var(--ag-button-border-radius);
|
|
7504
|
+
background: none;
|
|
7505
|
+
border: none;
|
|
7506
|
+
cursor: pointer;
|
|
7507
|
+
padding: 0;
|
|
7508
|
+
}
|
|
7509
|
+
|
|
7510
|
+
.gd-table-component .ag-filter-panel .ag-standard-button {
|
|
7511
|
+
cursor: pointer;
|
|
7512
|
+
}
|
|
7513
|
+
|
|
7514
|
+
.gd-table-component .ag-filter-card-summary,
|
|
7515
|
+
.gd-table-component .ag-filter-type-select {
|
|
7516
|
+
margin-left: var(--ag-widget-container-horizontal-padding);
|
|
7517
|
+
margin-right: var(--ag-widget-container-horizontal-padding);
|
|
7518
|
+
}
|
|
7519
|
+
|
|
7520
|
+
.gd-table-component .ag-ltr .ag-filter-card-delete {
|
|
7521
|
+
margin-right: var(--ag-widget-horizontal-spacing);
|
|
7522
|
+
}
|
|
7523
|
+
|
|
7524
|
+
.gd-table-component .ag-rtl .ag-filter-card-delete {
|
|
7525
|
+
margin-left: var(--ag-widget-horizontal-spacing);
|
|
7526
|
+
}
|
|
7527
|
+
|
|
7528
|
+
.gd-table-component .ag-filter-card-summary {
|
|
7529
|
+
margin-bottom: var(--ag-widget-container-vertical-padding);
|
|
7530
|
+
}
|
|
7531
|
+
|
|
7532
|
+
.gd-table-component .ag-filter-type-select {
|
|
7533
|
+
padding-top: var(--ag-widget-vertical-spacing);
|
|
7534
|
+
}
|
|
7535
|
+
|
|
7536
|
+
.gd-table-component .ag-filter-card-add {
|
|
7537
|
+
padding: 0;
|
|
7538
|
+
border: 0;
|
|
7539
|
+
}
|
|
7540
|
+
|
|
7541
|
+
.gd-table-component .ag-filter-add-button {
|
|
7542
|
+
display: flex;
|
|
7543
|
+
flex-direction: row;
|
|
7544
|
+
width: 100%;
|
|
7545
|
+
align-items: center;
|
|
7546
|
+
line-height: 1.5;
|
|
7547
|
+
}
|
|
7548
|
+
|
|
7549
|
+
.gd-table-component .ag-ltr .ag-filter-add-button-label {
|
|
7550
|
+
margin-left: var(--ag-grid-size);
|
|
7551
|
+
}
|
|
7552
|
+
|
|
7553
|
+
.gd-table-component .ag-rtl .ag-filter-add-button-label {
|
|
7554
|
+
margin-right: var(--ag-grid-size);
|
|
7555
|
+
}
|
|
7556
|
+
|
|
7557
|
+
.gd-table-component .ag-filter-add-select {
|
|
7558
|
+
border: 0;
|
|
7559
|
+
}
|
|
7560
|
+
|
|
7561
|
+
.gd-table-component .ag-ltr .ag-filter-add-select .ag-text-field-input {
|
|
7562
|
+
padding-left: calc(var(--ag-grid-size) * 1.5 + 12px) !important;
|
|
7563
|
+
}
|
|
7564
|
+
|
|
7565
|
+
.gd-table-component .ag-rtl .ag-filter-add-select .ag-text-field-input {
|
|
7566
|
+
padding-right: calc(var(--ag-grid-size) * 1.5 + 12px) !important;
|
|
7567
|
+
}
|
|
7568
|
+
|
|
7569
|
+
.gd-table-component .ag-filter-add-select .ag-rich-select-value {
|
|
7570
|
+
padding: calc((1.5 * var(--ag-font-size) + 4 * var(--ag-grid-size) - var(--ag-input-height)) / 2) var(--ag-grid-size);
|
|
7571
|
+
border: 0;
|
|
7572
|
+
}
|
|
7573
|
+
|
|
7156
7574
|
.gd-table-component .ag-pivot-mode-panel {
|
|
7157
7575
|
min-height: var(--ag-header-height);
|
|
7158
7576
|
height: var(--ag-header-height);
|
|
@@ -7489,7 +7907,7 @@ button.gd-list-item {
|
|
|
7489
7907
|
border-top: 1px solid;
|
|
7490
7908
|
border-top-color: var(--ag-border-color);
|
|
7491
7909
|
color: var(--ag-secondary-foreground-color);
|
|
7492
|
-
height: var(--ag-
|
|
7910
|
+
height: var(--ag-pagination-panel-height);
|
|
7493
7911
|
}
|
|
7494
7912
|
|
|
7495
7913
|
.gd-table-component .ag-paging-panel > * {
|
|
@@ -8255,32 +8673,30 @@ button.gd-list-item {
|
|
|
8255
8673
|
width: 100%;
|
|
8256
8674
|
}
|
|
8257
8675
|
|
|
8258
|
-
.gd-table-component .ag-advanced-filter-
|
|
8676
|
+
.gd-table-component .ag-advanced-filter-buttons {
|
|
8677
|
+
display: contents;
|
|
8678
|
+
}
|
|
8679
|
+
|
|
8259
8680
|
.gd-table-component .ag-advanced-filter-builder-button {
|
|
8681
|
+
display: flex;
|
|
8682
|
+
align-items: center;
|
|
8683
|
+
border: 0;
|
|
8684
|
+
background-color: unset;
|
|
8685
|
+
color: var(--ag-foreground-color);
|
|
8686
|
+
font-size: var(--ag-font-size);
|
|
8687
|
+
font-weight: 600;
|
|
8260
8688
|
line-height: normal;
|
|
8261
8689
|
white-space: nowrap;
|
|
8262
8690
|
}
|
|
8263
8691
|
|
|
8264
|
-
.gd-table-component .ag-ltr .ag-advanced-filter-apply-button,
|
|
8265
8692
|
.gd-table-component .ag-ltr .ag-advanced-filter-builder-button {
|
|
8266
8693
|
margin-left: calc(var(--ag-grid-size) * 2);
|
|
8267
8694
|
}
|
|
8268
8695
|
|
|
8269
|
-
.gd-table-component .ag-rtl .ag-advanced-filter-apply-button,
|
|
8270
8696
|
.gd-table-component .ag-rtl .ag-advanced-filter-builder-button {
|
|
8271
8697
|
margin-right: calc(var(--ag-grid-size) * 2);
|
|
8272
8698
|
}
|
|
8273
8699
|
|
|
8274
|
-
.gd-table-component .ag-advanced-filter-builder-button {
|
|
8275
|
-
display: flex;
|
|
8276
|
-
align-items: center;
|
|
8277
|
-
border: 0;
|
|
8278
|
-
background-color: unset;
|
|
8279
|
-
color: var(--ag-foreground-color);
|
|
8280
|
-
font-size: var(--ag-font-size);
|
|
8281
|
-
font-weight: 600;
|
|
8282
|
-
}
|
|
8283
|
-
|
|
8284
8700
|
.gd-table-component .ag-advanced-filter-builder-button:hover:not(:disabled) {
|
|
8285
8701
|
background-color: var(--ag-row-hover-color);
|
|
8286
8702
|
}
|
|
@@ -8616,6 +9032,21 @@ button.gd-list-item {
|
|
|
8616
9032
|
cursor: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lY2FwOnJvdW5kO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjU7Ij4KICAgIDxnIHRyYW5zZm9ybT0ibWF0cml4KDEuNTc4NCwwLDAsMS44NjQyOSwtNC40MTM0OSwtNy4yMTIxMikiPgogICAgICAgIDxwYXRoIGQ9Ik01Ljk3OSw4LjkxMUw1Ljk3OSwxMC4zMDZMMy40NDUsOC4xNkw1Ljk3OSw2LjAxNEw1Ljk3OSw3LjQwOUwxMi4yODUsNy40MDlMMTIuMjg1LDguOTExTDUuOTc5LDguOTExWiIgc3R5bGU9InN0cm9rZTp3aGl0ZTtzdHJva2Utd2lkdGg6MC40MXB4OyIvPgogICAgPC9nPgo8L3N2Zz4K"), auto;
|
|
8617
9033
|
}
|
|
8618
9034
|
|
|
9035
|
+
.gd-table-component .ag-cell-batch-edit {
|
|
9036
|
+
background-color: var(--ag-cell-batch-edit-background-color);
|
|
9037
|
+
color: var(--ag-cell-batch-edit-text-color);
|
|
9038
|
+
}
|
|
9039
|
+
|
|
9040
|
+
.gd-table-component .ag-cell.ag-cell-inline-editing {
|
|
9041
|
+
background-color: var(--ag-background-color);
|
|
9042
|
+
background-image: linear-gradient(0deg, var(--ag-input-background-color), var(--ag-input-background-color));
|
|
9043
|
+
}
|
|
9044
|
+
|
|
9045
|
+
.gd-table-component .ag-row-batch-edit {
|
|
9046
|
+
background-color: var(--ag-row-batch-edit-background-color);
|
|
9047
|
+
color: var(--ag-row-batch-edit-text-color);
|
|
9048
|
+
}
|
|
9049
|
+
|
|
8619
9050
|
.gd-table-component .ag-input-field-input {
|
|
8620
9051
|
width: 100%;
|
|
8621
9052
|
min-width: 0;
|
|
@@ -8654,6 +9085,10 @@ button.gd-list-item {
|
|
|
8654
9085
|
box-shadow: var(--ag-input-focus-box-shadow);
|
|
8655
9086
|
}
|
|
8656
9087
|
|
|
9088
|
+
.gd-table-component .ag-cell-editing-error .ag-checkbox-input-wrapper:focus-within, .gd-table-component .ag-cell-editing-error .ag-checkbox-input-wrapper:active {
|
|
9089
|
+
box-shadow: var(--ag-input-error-focus-box-shadow);
|
|
9090
|
+
}
|
|
9091
|
+
|
|
8657
9092
|
.gd-table-component .ag-checkbox-input-wrapper.ag-disabled {
|
|
8658
9093
|
opacity: 0.5;
|
|
8659
9094
|
}
|
|
@@ -8800,6 +9235,10 @@ button.gd-list-item {
|
|
|
8800
9235
|
box-shadow: var(--ag-input-focus-box-shadow);
|
|
8801
9236
|
}
|
|
8802
9237
|
|
|
9238
|
+
.gd-table-component .ag-cell-editing-error .ag-radio-button-input-wrapper:focus-within, .gd-table-component .ag-cell-editing-error .ag-radio-button-input-wrapper:active {
|
|
9239
|
+
box-shadow: var(--ag-input-error-focus-box-shadow);
|
|
9240
|
+
}
|
|
9241
|
+
|
|
8803
9242
|
.gd-table-component .ag-radio-button-input-wrapper.ag-disabled {
|
|
8804
9243
|
opacity: 0.5;
|
|
8805
9244
|
}
|
|
@@ -8980,10 +9419,13 @@ button.gd-list-item {
|
|
|
8980
9419
|
--ag-find-active-match-color: var(--ag-foreground-color);
|
|
8981
9420
|
--ag-find-active-match-background-color: #ffa500;
|
|
8982
9421
|
--ag-input-focus-box-shadow: 0 0 2px 1px var(--ag-input-focus-border-color);
|
|
9422
|
+
--ag-input-error-focus-box-shadow: 0 0 2px 1px var(--ag-invalid-color);
|
|
8983
9423
|
--ag-range-selection-border-color: var(--ag-balham-active-color);
|
|
8984
9424
|
--ag-checkbox-checked-color: var(--ag-balham-active-color);
|
|
8985
9425
|
--ag-checkbox-background-color: var(--ag-background-color);
|
|
8986
9426
|
--ag-panel-background-color: var(--ag-header-background-color);
|
|
9427
|
+
--ag-filter-panel-apply-button-color: var(--ag-background-color);
|
|
9428
|
+
--ag-filter-panel-apply-button-background-color: var(--ag-balham-active-color);
|
|
8987
9429
|
--ag-secondary-foreground-color: rgba(0, 0, 0, 0.54);
|
|
8988
9430
|
--ag-disabled-foreground-color: rgba(0, 0, 0, 0.38);
|
|
8989
9431
|
--ag-subheader-toolbar-background-color: rgba(226, 233, 235, 0.5);
|
|
@@ -9039,6 +9481,7 @@ button.gd-list-item {
|
|
|
9039
9481
|
--ag-advanced-filter-value-pill-color: #374c86;
|
|
9040
9482
|
--ag-find-match-color: var(--ag-background-color);
|
|
9041
9483
|
--ag-find-active-match-color: var(--ag-background-color);
|
|
9484
|
+
--ag-filter-panel-apply-button-color: var(--ag-foreground-color);
|
|
9042
9485
|
--ag-secondary-foreground-color: var(--ag-foreground-color);
|
|
9043
9486
|
--ag-disabled-foreground-color: rgba(245, 245, 245, 0.38);
|
|
9044
9487
|
--ag-subheader-toolbar-background-color: rgba(17, 17, 17, 0.5);
|
|
@@ -9057,7 +9500,10 @@ button.gd-list-item {
|
|
|
9057
9500
|
--ag-range-selection-chart-category-background-color: rgba(26, 177, 74, 0.5);
|
|
9058
9501
|
--ag-range-selection-chart-background-color: rgba(45, 166, 255, 0.5);
|
|
9059
9502
|
--ag-input-focus-box-shadow: 0 0 4px 1.5px var(--ag-input-focus-border-color);
|
|
9503
|
+
--ag-input-error-focus-box-shadow: 0 0 4px 1.5px
|
|
9504
|
+
color-mix(in srgb, var(--ag-background-color), var(--ag-invalid-color) 0.5%);
|
|
9060
9505
|
--ag-row-loading-skeleton-effect-color: rgba(202, 203, 204, 0.4);
|
|
9506
|
+
--ag-cell-batch-edit-text-color: #f3d0b3;
|
|
9061
9507
|
color-scheme: dark;
|
|
9062
9508
|
}
|
|
9063
9509
|
|
|
@@ -9084,6 +9530,7 @@ button.gd-list-item {
|
|
|
9084
9530
|
--ag-advanced-filter-value-pill-color: #374c86;
|
|
9085
9531
|
--ag-find-match-color: var(--ag-background-color);
|
|
9086
9532
|
--ag-find-active-match-color: var(--ag-background-color);
|
|
9533
|
+
--ag-filter-panel-apply-button-color: var(--ag-foreground-color);
|
|
9087
9534
|
--ag-secondary-foreground-color: var(--ag-foreground-color);
|
|
9088
9535
|
--ag-disabled-foreground-color: rgba(245, 245, 245, 0.38);
|
|
9089
9536
|
--ag-subheader-toolbar-background-color: rgba(17, 17, 17, 0.5);
|
|
@@ -9102,7 +9549,10 @@ button.gd-list-item {
|
|
|
9102
9549
|
--ag-range-selection-chart-category-background-color: rgba(26, 177, 74, 0.5);
|
|
9103
9550
|
--ag-range-selection-chart-background-color: rgba(45, 166, 255, 0.5);
|
|
9104
9551
|
--ag-input-focus-box-shadow: 0 0 4px 1.5px var(--ag-input-focus-border-color);
|
|
9552
|
+
--ag-input-error-focus-box-shadow: 0 0 4px 1.5px
|
|
9553
|
+
color-mix(in srgb, var(--ag-background-color), var(--ag-invalid-color) 0.5%);
|
|
9105
9554
|
--ag-row-loading-skeleton-effect-color: rgba(202, 203, 204, 0.4);
|
|
9555
|
+
--ag-cell-batch-edit-text-color: #f3d0b3;
|
|
9106
9556
|
color-scheme: dark;
|
|
9107
9557
|
}
|
|
9108
9558
|
}
|
|
@@ -9361,9 +9811,22 @@ button.gd-list-item {
|
|
|
9361
9811
|
color: var(--ag-disabled-foreground-color);
|
|
9362
9812
|
}
|
|
9363
9813
|
|
|
9814
|
+
.gd-table-component .ag-theme-balham .ag-filter-panel .ag-standard-button.ag-filter-panel-buttons-apply-button:disabled,
|
|
9815
|
+
.gd-table-component .ag-theme-balham-dark .ag-filter-panel .ag-standard-button.ag-filter-panel-buttons-apply-button:disabled,
|
|
9816
|
+
.gd-table-component .ag-theme-balham-auto-dark .ag-filter-panel .ag-standard-button.ag-filter-panel-buttons-apply-button:disabled {
|
|
9817
|
+
color: unset;
|
|
9818
|
+
background-color: unset;
|
|
9819
|
+
}
|
|
9820
|
+
|
|
9821
|
+
.gd-table-component .ag-theme-balham .ag-filter-card-title,
|
|
9822
|
+
.gd-table-component .ag-theme-balham-dark .ag-filter-card-title,
|
|
9823
|
+
.gd-table-component .ag-theme-balham-auto-dark .ag-filter-card-title {
|
|
9824
|
+
font-weight: 600;
|
|
9825
|
+
}
|
|
9826
|
+
|
|
9364
9827
|
@font-face {
|
|
9365
9828
|
font-family: "agGridBalham";
|
|
9366
|
-
src: url(data:font/woff2;charset=utf-8;base64,
|
|
9829
|
+
src: url(data:font/woff2;charset=utf-8;base64,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);
|
|
9367
9830
|
font-weight: normal;
|
|
9368
9831
|
font-style: normal;
|
|
9369
9832
|
}
|
|
@@ -9965,6 +10428,16 @@ button.gd-list-item {
|
|
|
9965
10428
|
text-align: right;
|
|
9966
10429
|
}
|
|
9967
10430
|
|
|
10431
|
+
.gd-pivot-table-next__header-cell--total {
|
|
10432
|
+
font-weight: bold;
|
|
10433
|
+
background-color: var(--gd-table-totalBackgroundColor, var(--gd-palette-complementary-2-from-theme, rgba(176, 190, 202, 0.2)));
|
|
10434
|
+
}
|
|
10435
|
+
|
|
10436
|
+
.gd-pivot-table-next__header-cell--subtotal {
|
|
10437
|
+
font-weight: bold;
|
|
10438
|
+
background-color: var(--gd-table-subtotalBackgroundColor, var(--gd-palette-complementary-1-from-theme, rgba(176, 190, 202, 0.1)));
|
|
10439
|
+
}
|
|
10440
|
+
|
|
9968
10441
|
.gd-pivot-table-next__header-cell.ag-column-first {
|
|
9969
10442
|
border-left: none;
|
|
9970
10443
|
border-top: none;
|
|
@@ -10004,6 +10477,31 @@ button.gd-list-item {
|
|
|
10004
10477
|
color: var(--gd-table-nullValueColor, var(--gd-palette-complementary-6, #94a1ad));
|
|
10005
10478
|
}
|
|
10006
10479
|
|
|
10480
|
+
.gd-pivot-table-next__cell--total {
|
|
10481
|
+
font-weight: bold;
|
|
10482
|
+
color: var(--gd-table-totalValueColor, var(--gd-palette-complementary-9, #000));
|
|
10483
|
+
background-color: var(--gd-table-totalBackgroundColor, var(--gd-palette-complementary-2-from-theme, rgba(176, 190, 202, 0.2)));
|
|
10484
|
+
}
|
|
10485
|
+
|
|
10486
|
+
.gd-pivot-table-next__cell--subtotal {
|
|
10487
|
+
font-weight: bold;
|
|
10488
|
+
color: var(--gd-table-totalValueColor, var(--gd-palette-complementary-9, #000));
|
|
10489
|
+
background-color: var(--gd-table-subtotalBackgroundColor, var(--gd-palette-complementary-1-from-theme, rgba(176, 190, 202, 0.1)));
|
|
10490
|
+
}
|
|
10491
|
+
|
|
10492
|
+
.gd-pivot-table-next__cell--overall-total {
|
|
10493
|
+
font-weight: bold;
|
|
10494
|
+
color: var(--gd-table-totalValueColor, var(--gd-palette-complementary-9, #000));
|
|
10495
|
+
background-color: var(--gd-table-totalBackgroundColor-from-theme, var(--gd-palette-complementary-1-from-theme, rgba(176, 190, 202, 0.4)));
|
|
10496
|
+
}
|
|
10497
|
+
|
|
10498
|
+
.gd-pivot-table-next__cell--total-header {
|
|
10499
|
+
font-weight: bold;
|
|
10500
|
+
color: var(--gd-table-totalValueColor, var(--gd-palette-complementary-9, #000));
|
|
10501
|
+
background-color: var(--gd-table-totalBackgroundColor, var(--gd-palette-complementary-2-from-theme, rgba(176, 190, 202, 0.2)));
|
|
10502
|
+
text-align: left;
|
|
10503
|
+
}
|
|
10504
|
+
|
|
10007
10505
|
.gd-pivot-table-next__cell.ag-column-first {
|
|
10008
10506
|
border-left: none;
|
|
10009
10507
|
}
|