@gooddata/sdk-ui-ext 10.37.0 → 10.38.0-alpha.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.
- package/NOTICE +173 -661
- package/esm/internal/components/BaseVisualization.js +1 -1
- package/esm/internal/components/BaseVisualization.js.map +1 -1
- package/esm/internal/components/configurationControls/colors/ColorsSection.js +2 -2
- package/esm/internal/components/configurationControls/colors/ColorsSection.js.map +1 -1
- package/esm/internal/components/configurationControls/colors/colorDropdown/ColorPaletteItem.d.ts.map +1 -1
- package/esm/internal/components/configurationControls/colors/colorDropdown/ColorPaletteItem.js +2 -5
- package/esm/internal/components/configurationControls/colors/colorDropdown/ColorPaletteItem.js.map +1 -1
- package/esm/internal/components/dialogs/userManagementDialogs/DataSources/backend/loadUserDataSourceOptionsPromise.js +2 -2
- package/esm/internal/components/dialogs/userManagementDialogs/DataSources/backend/loadUserDataSourceOptionsPromise.js.map +1 -1
- package/esm/internal/components/dialogs/userManagementDialogs/dialogHooks.d.ts.map +1 -1
- package/esm/internal/components/dialogs/userManagementDialogs/dialogHooks.js +8 -5
- package/esm/internal/components/dialogs/userManagementDialogs/dialogHooks.js.map +1 -1
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/PluggablePivotTableNext.d.ts +1 -0
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/PluggablePivotTableNext.d.ts.map +1 -1
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/PluggablePivotTableNext.js +11 -3
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/PluggablePivotTableNext.js.map +1 -1
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/pivotTableNextConfigFromInsight.d.ts.map +1 -1
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/pivotTableNextConfigFromInsight.js +6 -0
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/pivotTableNextConfigFromInsight.js.map +1 -1
- package/esm/internal/utils/embeddingCodeGenerator/index.d.ts +1 -1
- package/esm/internal/utils/embeddingCodeGenerator/index.d.ts.map +1 -1
- package/esm/internal/utils/embeddingCodeGenerator/index.js +1 -2
- package/esm/internal/utils/embeddingCodeGenerator/index.js.map +1 -1
- package/package.json +22 -22
- package/styles/internal/css/repeater.css +482 -19
- package/styles/internal/css/repeater.css.map +1 -1
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/configHelpers.d.ts +0 -14
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/configHelpers.d.ts.map +0 -1
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/configHelpers.js +0 -28
- package/esm/internal/components/pluggableVisualizations/pivotTableNext/configHelpers.js.map +0 -1
|
@@ -85,6 +85,28 @@
|
|
|
85
85
|
display: none;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
+
.gd-repeater .ag-filter-panel-buttons {
|
|
89
|
+
display: flex;
|
|
90
|
+
justify-content: flex-end;
|
|
91
|
+
overflow: hidden;
|
|
92
|
+
padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding) 0;
|
|
93
|
+
flex-wrap: wrap;
|
|
94
|
+
gap: var(--ag-widget-vertical-spacing) var(--ag-widget-horizontal-spacing);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.gd-repeater .ag-filter-panel-buttons-button {
|
|
98
|
+
line-height: 1.5;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.gd-repeater .ag-filter-panel .ag-standard-button.ag-filter-panel-buttons-apply-button {
|
|
102
|
+
color: var(--ag-filter-panel-apply-button-color);
|
|
103
|
+
background-color: var(--ag-filter-panel-apply-button-background-color);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.gd-repeater .ag-filter-panel > *:where(:last-child) {
|
|
107
|
+
padding-bottom: var(--ag-widget-container-vertical-padding);
|
|
108
|
+
}
|
|
109
|
+
|
|
88
110
|
.gd-repeater .ag-row.ag-row-pinned-source {
|
|
89
111
|
color: var(--ag-pinned-source-row-text-color);
|
|
90
112
|
background-color: var(--ag-pinned-source-row-background-color);
|
|
@@ -1176,6 +1198,108 @@
|
|
|
1176
1198
|
opacity: var(--ag-icon-image-opacity-pinned-top, var(--ag-icon-image-opacity, 0.9));
|
|
1177
1199
|
}
|
|
1178
1200
|
|
|
1201
|
+
.gd-repeater .ag-icon-chevron-up {
|
|
1202
|
+
font-family: var(--ag-icon-font-family-chevron-up, var(--ag-icon-font-family));
|
|
1203
|
+
font-weight: var(--ag-icon-font-weight-chevron-up, var(--ag-icon-font-weight));
|
|
1204
|
+
color: var(--ag-icon-font-color-chevron-up, var(--ag-icon-font-color));
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
.gd-repeater .ag-icon-chevron-up::before {
|
|
1208
|
+
content: var(--ag-icon-font-code-chevron-up, "\f140");
|
|
1209
|
+
display: var(--ag-icon-font-display-chevron-up, var(--ag-icon-font-display));
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.gd-repeater .ag-icon-chevron-up::after {
|
|
1213
|
+
background-image: var(--ag-icon-image-chevron-up, var(--ag-icon-image));
|
|
1214
|
+
display: var(--ag-icon-image-display-chevron-up, var(--ag-icon-image-display));
|
|
1215
|
+
opacity: var(--ag-icon-image-opacity-chevron-up, var(--ag-icon-image-opacity, 0.9));
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
.gd-repeater .ag-icon-chevron-down {
|
|
1219
|
+
font-family: var(--ag-icon-font-family-chevron-down, var(--ag-icon-font-family));
|
|
1220
|
+
font-weight: var(--ag-icon-font-weight-chevron-down, var(--ag-icon-font-weight));
|
|
1221
|
+
color: var(--ag-icon-font-color-chevron-down, var(--ag-icon-font-color));
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
.gd-repeater .ag-icon-chevron-down::before {
|
|
1225
|
+
content: var(--ag-icon-font-code-chevron-down, "\f141");
|
|
1226
|
+
display: var(--ag-icon-font-display-chevron-down, var(--ag-icon-font-display));
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
.gd-repeater .ag-icon-chevron-down::after {
|
|
1230
|
+
background-image: var(--ag-icon-image-chevron-down, var(--ag-icon-image));
|
|
1231
|
+
display: var(--ag-icon-image-display-chevron-down, var(--ag-icon-image-display));
|
|
1232
|
+
opacity: var(--ag-icon-image-opacity-chevron-down, var(--ag-icon-image-opacity, 0.9));
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
.gd-repeater .ag-icon-chevron-left {
|
|
1236
|
+
font-family: var(--ag-icon-font-family-chevron-left, var(--ag-icon-font-family));
|
|
1237
|
+
font-weight: var(--ag-icon-font-weight-chevron-left, var(--ag-icon-font-weight));
|
|
1238
|
+
color: var(--ag-icon-font-color-chevron-left, var(--ag-icon-font-color));
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
.gd-repeater .ag-icon-chevron-left::before {
|
|
1242
|
+
content: var(--ag-icon-font-code-chevron-left, "\f142");
|
|
1243
|
+
display: var(--ag-icon-font-display-chevron-left, var(--ag-icon-font-display));
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
.gd-repeater .ag-icon-chevron-left::after {
|
|
1247
|
+
background-image: var(--ag-icon-image-chevron-left, var(--ag-icon-image));
|
|
1248
|
+
display: var(--ag-icon-image-display-chevron-left, var(--ag-icon-image-display));
|
|
1249
|
+
opacity: var(--ag-icon-image-opacity-chevron-left, var(--ag-icon-image-opacity, 0.9));
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.gd-repeater .ag-icon-chevron-right {
|
|
1253
|
+
font-family: var(--ag-icon-font-family-chevron-right, var(--ag-icon-font-family));
|
|
1254
|
+
font-weight: var(--ag-icon-font-weight-chevron-right, var(--ag-icon-font-weight));
|
|
1255
|
+
color: var(--ag-icon-font-color-chevron-right, var(--ag-icon-font-color));
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
.gd-repeater .ag-icon-chevron-right::before {
|
|
1259
|
+
content: var(--ag-icon-font-code-chevron-right, "\f143");
|
|
1260
|
+
display: var(--ag-icon-font-display-chevron-right, var(--ag-icon-font-display));
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
.gd-repeater .ag-icon-chevron-right::after {
|
|
1264
|
+
background-image: var(--ag-icon-image-chevron-right, var(--ag-icon-image));
|
|
1265
|
+
display: var(--ag-icon-image-display-chevron-right, var(--ag-icon-image-display));
|
|
1266
|
+
opacity: var(--ag-icon-image-opacity-chevron-right, var(--ag-icon-image-opacity, 0.9));
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
.gd-repeater .ag-icon-filter-add {
|
|
1270
|
+
font-family: var(--ag-icon-font-family-filter-add, var(--ag-icon-font-family));
|
|
1271
|
+
font-weight: var(--ag-icon-font-weight-filter-add, var(--ag-icon-font-weight));
|
|
1272
|
+
color: var(--ag-icon-font-color-filter-add, var(--ag-icon-font-color));
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
.gd-repeater .ag-icon-filter-add::before {
|
|
1276
|
+
content: var(--ag-icon-font-code-filter-add, "\f144");
|
|
1277
|
+
display: var(--ag-icon-font-display-filter-add, var(--ag-icon-font-display));
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
.gd-repeater .ag-icon-filter-add::after {
|
|
1281
|
+
background-image: var(--ag-icon-image-filter-add, var(--ag-icon-image));
|
|
1282
|
+
display: var(--ag-icon-image-display-filter-add, var(--ag-icon-image-display));
|
|
1283
|
+
opacity: var(--ag-icon-image-opacity-filter-add, var(--ag-icon-image-opacity, 0.9));
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.gd-repeater .ag-icon-edit {
|
|
1287
|
+
font-family: var(--ag-icon-font-family-edit, var(--ag-icon-font-family));
|
|
1288
|
+
font-weight: var(--ag-icon-font-weight-edit, var(--ag-icon-font-weight));
|
|
1289
|
+
color: var(--ag-icon-font-color-edit, var(--ag-icon-font-color));
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
.gd-repeater .ag-icon-edit::before {
|
|
1293
|
+
content: var(--ag-icon-font-code-edit, "\f145");
|
|
1294
|
+
display: var(--ag-icon-font-display-edit, var(--ag-icon-font-display));
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
.gd-repeater .ag-icon-edit::after {
|
|
1298
|
+
background-image: var(--ag-icon-image-edit, var(--ag-icon-image));
|
|
1299
|
+
display: var(--ag-icon-image-display-edit, var(--ag-icon-image-display));
|
|
1300
|
+
opacity: var(--ag-icon-image-opacity-edit, var(--ag-icon-image-opacity, 0.9));
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1179
1303
|
.gd-repeater .ag-icon-row-drag::before {
|
|
1180
1304
|
content: var(--ag-icon-font-code-grip);
|
|
1181
1305
|
}
|
|
@@ -1197,6 +1321,13 @@
|
|
|
1197
1321
|
--ag-background-color: #fff;
|
|
1198
1322
|
--ag-header-background-color: transparent;
|
|
1199
1323
|
--ag-tooltip-background-color: transparent;
|
|
1324
|
+
--ag-tooltip-error-background-color: color-mix(
|
|
1325
|
+
in srgb,
|
|
1326
|
+
var(--ag-background-color),
|
|
1327
|
+
var(--ag-invalid-color) 10%
|
|
1328
|
+
);
|
|
1329
|
+
--ag-tooltip-error-text-color: var(--ag-invalid-color);
|
|
1330
|
+
--ag-tooltip-error-border-color: color-mix(in srgb, var(--ag-background-color), var(--ag-invalid-color) 25%);
|
|
1200
1331
|
--ag-subheader-background-color: transparent;
|
|
1201
1332
|
--ag-subheader-toolbar-background-color: transparent;
|
|
1202
1333
|
--ag-control-panel-background-color: transparent;
|
|
@@ -1248,6 +1379,11 @@
|
|
|
1248
1379
|
--ag-input-border-color: var(--ag-secondary-border-color);
|
|
1249
1380
|
--ag-borders-input-invalid: solid 2px;
|
|
1250
1381
|
--ag-input-border-color-invalid: var(--ag-invalid-color);
|
|
1382
|
+
--ag-full-row-invalid-background-color: color-mix(
|
|
1383
|
+
in srgb,
|
|
1384
|
+
var(--ag-background-color),
|
|
1385
|
+
var(--ag-invalid-color) 25%
|
|
1386
|
+
);
|
|
1251
1387
|
--ag-borders-side-button: var(--ag-borders);
|
|
1252
1388
|
--ag-border-radius: 0px;
|
|
1253
1389
|
--ag-wrapper-border-radius: var(--ag-border-radius);
|
|
@@ -1278,6 +1414,7 @@
|
|
|
1278
1414
|
--ag-toggle-button-height: var(--ag-icon-size);
|
|
1279
1415
|
--ag-toggle-button-width: calc(var(--ag-toggle-button-height) * 2);
|
|
1280
1416
|
--ag-input-focus-box-shadow: none;
|
|
1417
|
+
--ag-input-error-focus-box-shadow: none;
|
|
1281
1418
|
--ag-input-focus-border-color: none;
|
|
1282
1419
|
--ag-minichart-selected-chart-color: var(--ag-checkbox-checked-color);
|
|
1283
1420
|
--ag-minichart-selected-page-color: var(--ag-checkbox-checked-color);
|
|
@@ -1294,6 +1431,7 @@
|
|
|
1294
1431
|
--ag-cell-widget-spacing: var(--ag-cell-horizontal-padding);
|
|
1295
1432
|
--ag-row-height: calc(var(--ag-grid-size) * 6 + 1px);
|
|
1296
1433
|
--ag-header-height: var(--ag-row-height);
|
|
1434
|
+
--ag-pagination-panel-height: var(--ag-header-height);
|
|
1297
1435
|
--ag-list-item-height: calc(var(--ag-grid-size) * 5);
|
|
1298
1436
|
--ag-column-select-indent-size: calc(var(--ag-grid-size) + var(--ag-icon-size));
|
|
1299
1437
|
--ag-set-filter-indent-size: calc(var(--ag-grid-size) + var(--ag-icon-size));
|
|
@@ -1318,6 +1456,14 @@
|
|
|
1318
1456
|
--ag-find-active-match-color: var(--ag-foreground-color);
|
|
1319
1457
|
--ag-find-match-background-color: #ffff00;
|
|
1320
1458
|
--ag-find-active-match-background-color: #ffa500;
|
|
1459
|
+
--ag-cell-batch-edit-background-color: rgb(220 181 139 / 16%);
|
|
1460
|
+
--ag-cell-batch-edit-text-color: #422f00;
|
|
1461
|
+
--ag-row-batch-edit-background-color: var(--ag-cell-batch-edit-background-color);
|
|
1462
|
+
--ag-row-batch-edit-text-color: var(--ag-cell-batch-edit-text-color);
|
|
1463
|
+
--ag-filter-panel-apply-button-color: var(--ag-foreground-color);
|
|
1464
|
+
--ag-filter-panel-apply-button-background-color: var(--ag-background-color);
|
|
1465
|
+
--ag-filter-panel-card-subtle-color: var(--ag-foreground-color);
|
|
1466
|
+
--ag-filter-panel-card-subtle-hover-color: var(--ag-foreground-color);
|
|
1321
1467
|
}
|
|
1322
1468
|
|
|
1323
1469
|
.gd-repeater .ag-root-wrapper,
|
|
@@ -2195,6 +2341,10 @@
|
|
|
2195
2341
|
line-height: normal;
|
|
2196
2342
|
}
|
|
2197
2343
|
|
|
2344
|
+
.gd-repeater .ag-row.ag-row-editing-invalid .ag-cell-inline-editing {
|
|
2345
|
+
opacity: 0.8;
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2198
2348
|
.gd-repeater .ag-cell .ag-icon {
|
|
2199
2349
|
display: inline-block;
|
|
2200
2350
|
vertical-align: middle;
|
|
@@ -2907,6 +3057,11 @@
|
|
|
2907
3057
|
cursor: ns-resize;
|
|
2908
3058
|
}
|
|
2909
3059
|
|
|
3060
|
+
.gd-repeater .ag-floating-bottom .ag-row-numbers-resizer {
|
|
3061
|
+
bottom: unset;
|
|
3062
|
+
top: -2px;
|
|
3063
|
+
}
|
|
3064
|
+
|
|
2910
3065
|
.gd-repeater .ag-icon {
|
|
2911
3066
|
display: block;
|
|
2912
3067
|
speak: none;
|
|
@@ -2993,7 +3148,8 @@
|
|
|
2993
3148
|
flex: 1 1 auto;
|
|
2994
3149
|
}
|
|
2995
3150
|
|
|
2996
|
-
.gd-repeater .ag-floating-filter-input .ag-input-field-input[type=date]
|
|
3151
|
+
.gd-repeater .ag-floating-filter-input .ag-input-field-input[type=date],
|
|
3152
|
+
.gd-repeater .ag-floating-filter-input .ag-input-field-input[type=datetime-local] {
|
|
2997
3153
|
width: 1px;
|
|
2998
3154
|
}
|
|
2999
3155
|
|
|
@@ -3341,6 +3497,23 @@
|
|
|
3341
3497
|
border-color: var(--ag-input-focus-border-color);
|
|
3342
3498
|
}
|
|
3343
3499
|
|
|
3500
|
+
.gd-repeater input[class^=ag-]:not([type]):focus.invalid, .gd-repeater input[class^=ag-]:not([type]):focus:invalid,
|
|
3501
|
+
.gd-repeater input[class^=ag-][type=text]:focus.invalid,
|
|
3502
|
+
.gd-repeater input[class^=ag-][type=text]:focus:invalid,
|
|
3503
|
+
.gd-repeater input[class^=ag-][type=number]:focus.invalid,
|
|
3504
|
+
.gd-repeater input[class^=ag-][type=number]:focus:invalid,
|
|
3505
|
+
.gd-repeater input[class^=ag-][type=tel]:focus.invalid,
|
|
3506
|
+
.gd-repeater input[class^=ag-][type=tel]:focus:invalid,
|
|
3507
|
+
.gd-repeater input[class^=ag-][type=date]:focus.invalid,
|
|
3508
|
+
.gd-repeater input[class^=ag-][type=date]:focus:invalid,
|
|
3509
|
+
.gd-repeater input[class^=ag-][type=datetime-local]:focus.invalid,
|
|
3510
|
+
.gd-repeater input[class^=ag-][type=datetime-local]:focus:invalid,
|
|
3511
|
+
.gd-repeater textarea[class^=ag-]:focus.invalid,
|
|
3512
|
+
.gd-repeater textarea[class^=ag-]:focus:invalid {
|
|
3513
|
+
box-shadow: var(--ag-input-error-focus-box-shadow);
|
|
3514
|
+
border-color: var(--ag-invalid-color);
|
|
3515
|
+
}
|
|
3516
|
+
|
|
3344
3517
|
.gd-repeater input[class^=ag-]:not([type]):invalid,
|
|
3345
3518
|
.gd-repeater input[class^=ag-][type=text]:invalid,
|
|
3346
3519
|
.gd-repeater input[class^=ag-][type=number]:invalid,
|
|
@@ -3369,6 +3542,12 @@
|
|
|
3369
3542
|
box-shadow: var(--ag-input-focus-box-shadow);
|
|
3370
3543
|
}
|
|
3371
3544
|
|
|
3545
|
+
.gd-repeater input[class^=ag-][type=button]:focus:invalid, .gd-repeater input[class^=ag-][type=button]:focus.invalid,
|
|
3546
|
+
.gd-repeater button[class^=ag-]:focus:invalid,
|
|
3547
|
+
.gd-repeater button[class^=ag-]:focus.invalid {
|
|
3548
|
+
box-shadow: var(--ag-input-error-focus-box-shadow);
|
|
3549
|
+
}
|
|
3550
|
+
|
|
3372
3551
|
.gd-repeater .ag-drag-handle {
|
|
3373
3552
|
color: var(--ag-secondary-foreground-color);
|
|
3374
3553
|
}
|
|
@@ -3583,6 +3762,14 @@
|
|
|
3583
3762
|
border-color: var(--ag-input-focus-border-color);
|
|
3584
3763
|
}
|
|
3585
3764
|
|
|
3765
|
+
.gd-repeater .ag-picker-field-wrapper.ag-picker-has-focus.invalid, .gd-repeater .ag-picker-field-wrapper:focus-within.invalid {
|
|
3766
|
+
box-shadow: var(--ag-input-error-focus-box-shadow);
|
|
3767
|
+
}
|
|
3768
|
+
|
|
3769
|
+
.gd-repeater .ag-picker-field-wrapper.invalid {
|
|
3770
|
+
border: var(--ag-borders-input-invalid) var(--ag-input-border-color-invalid);
|
|
3771
|
+
}
|
|
3772
|
+
|
|
3586
3773
|
.gd-repeater .ag-picker-field-button {
|
|
3587
3774
|
background-color: var(--ag-background-color);
|
|
3588
3775
|
color: var(--ag-secondary-foreground-color);
|
|
@@ -3962,6 +4149,13 @@
|
|
|
3962
4149
|
white-space: normal;
|
|
3963
4150
|
}
|
|
3964
4151
|
|
|
4152
|
+
.gd-repeater .ag-tooltip.ag-cell-editor-tooltip {
|
|
4153
|
+
background-color: var(--ag-tooltip-error-background-color);
|
|
4154
|
+
color: var(--ag-tooltip-error-text-color);
|
|
4155
|
+
border: var(--ag-borders) var(--ag-tooltip-error-border-color);
|
|
4156
|
+
font-weight: 500;
|
|
4157
|
+
}
|
|
4158
|
+
|
|
3965
4159
|
.gd-repeater .ag-tooltip.ag-tooltip-animate,
|
|
3966
4160
|
.gd-repeater .ag-tooltip-custom.ag-tooltip-animate {
|
|
3967
4161
|
transition: opacity 1s;
|
|
@@ -4182,6 +4376,10 @@
|
|
|
4182
4376
|
border-bottom: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
|
|
4183
4377
|
}
|
|
4184
4378
|
|
|
4379
|
+
.gd-repeater .ag-row.ag-row-editing-invalid {
|
|
4380
|
+
background-color: var(--ag-full-row-invalid-background-color);
|
|
4381
|
+
}
|
|
4382
|
+
|
|
4185
4383
|
.gd-repeater .ag-spanned-cell-wrapper {
|
|
4186
4384
|
background-color: var(--ag-background-color);
|
|
4187
4385
|
position: absolute;
|
|
@@ -4193,6 +4391,7 @@
|
|
|
4193
4391
|
}
|
|
4194
4392
|
|
|
4195
4393
|
.gd-repeater .ag-row-highlight-above::after,
|
|
4394
|
+
.gd-repeater .ag-row-highlight-inside::after,
|
|
4196
4395
|
.gd-repeater .ag-row-highlight-below::after {
|
|
4197
4396
|
content: "";
|
|
4198
4397
|
position: absolute;
|
|
@@ -4200,14 +4399,31 @@
|
|
|
4200
4399
|
height: 1px;
|
|
4201
4400
|
background-color: var(--ag-range-selection-border-color);
|
|
4202
4401
|
left: 1px;
|
|
4402
|
+
pointer-events: none;
|
|
4203
4403
|
}
|
|
4204
4404
|
|
|
4205
4405
|
.gd-repeater .ag-row-highlight-above::after {
|
|
4206
|
-
top:
|
|
4406
|
+
top: 0;
|
|
4207
4407
|
}
|
|
4208
4408
|
|
|
4209
4409
|
.gd-repeater .ag-row-highlight-below::after {
|
|
4210
|
-
bottom:
|
|
4410
|
+
bottom: 0;
|
|
4411
|
+
}
|
|
4412
|
+
|
|
4413
|
+
.gd-repeater .ag-row-highlight-indent::after {
|
|
4414
|
+
display: block;
|
|
4415
|
+
width: auto;
|
|
4416
|
+
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));
|
|
4417
|
+
right: 1px;
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
.gd-repeater .ag-row-highlight-inside::after {
|
|
4421
|
+
display: block;
|
|
4422
|
+
width: auto;
|
|
4423
|
+
height: auto;
|
|
4424
|
+
inset: 0;
|
|
4425
|
+
background-color: var(--ag-selected-row-background-color);
|
|
4426
|
+
border: 1px solid var(--ag-range-selection-border-color);
|
|
4211
4427
|
}
|
|
4212
4428
|
|
|
4213
4429
|
.gd-repeater .ag-row-odd {
|
|
@@ -4605,7 +4821,7 @@
|
|
|
4605
4821
|
}
|
|
4606
4822
|
|
|
4607
4823
|
.gd-repeater .ag-fill-handle {
|
|
4608
|
-
cursor:
|
|
4824
|
+
cursor: crosshair;
|
|
4609
4825
|
}
|
|
4610
4826
|
|
|
4611
4827
|
.gd-repeater .ag-range-handle {
|
|
@@ -4616,6 +4832,10 @@
|
|
|
4616
4832
|
border-color: var(--ag-input-focus-border-color) !important;
|
|
4617
4833
|
}
|
|
4618
4834
|
|
|
4835
|
+
.gd-repeater .ag-cell-inline-editing.ag-cell-editing-error {
|
|
4836
|
+
border-color: var(--ag-invalid-color) !important;
|
|
4837
|
+
}
|
|
4838
|
+
|
|
4619
4839
|
.gd-repeater .ag-menu {
|
|
4620
4840
|
border: var(--ag-borders) var(--ag-border-color);
|
|
4621
4841
|
background: var(--ag-background-color);
|
|
@@ -5170,6 +5390,204 @@
|
|
|
5170
5390
|
color: var(--ag-secondary-foreground-color);
|
|
5171
5391
|
}
|
|
5172
5392
|
|
|
5393
|
+
.gd-repeater .ag-filter-panel {
|
|
5394
|
+
display: flex;
|
|
5395
|
+
flex-direction: column;
|
|
5396
|
+
width: 100%;
|
|
5397
|
+
}
|
|
5398
|
+
|
|
5399
|
+
.gd-repeater .ag-filter-panel .ag-simple-filter-body-wrapper {
|
|
5400
|
+
padding: var(--ag-widget-vertical-spacing) var(--ag-widget-container-horizontal-padding) 0;
|
|
5401
|
+
}
|
|
5402
|
+
|
|
5403
|
+
.gd-repeater .ag-filter-panel .ag-mini-filter {
|
|
5404
|
+
margin-top: var(--ag-widget-vertical-spacing);
|
|
5405
|
+
margin-left: var(--ag-widget-container-horizontal-padding);
|
|
5406
|
+
margin-right: var(--ag-widget-container-horizontal-padding);
|
|
5407
|
+
}
|
|
5408
|
+
|
|
5409
|
+
.gd-repeater .ag-filter-panel .ag-standard-button {
|
|
5410
|
+
transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
|
|
5411
|
+
}
|
|
5412
|
+
|
|
5413
|
+
.gd-repeater .ag-filter-panel .ag-simple-filter-body-wrapper > *:last-child,
|
|
5414
|
+
.gd-repeater .ag-filter-panel .ag-set-filter-body-wrapper {
|
|
5415
|
+
margin-bottom: var(--ag-widget-container-vertical-padding);
|
|
5416
|
+
}
|
|
5417
|
+
|
|
5418
|
+
.gd-repeater .ag-filter-panel-container {
|
|
5419
|
+
flex: 1;
|
|
5420
|
+
overflow: auto;
|
|
5421
|
+
padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding) 0;
|
|
5422
|
+
}
|
|
5423
|
+
|
|
5424
|
+
.gd-repeater .ag-filter-panel-container > *:not(:last-child) {
|
|
5425
|
+
margin-bottom: var(--ag-widget-container-vertical-padding);
|
|
5426
|
+
}
|
|
5427
|
+
|
|
5428
|
+
.gd-repeater .ag-filter-card {
|
|
5429
|
+
border: 1px solid var(--ag-border-color);
|
|
5430
|
+
border-radius: var(--ag-border-radius);
|
|
5431
|
+
background-color: var(--ag-background-color);
|
|
5432
|
+
}
|
|
5433
|
+
|
|
5434
|
+
.gd-repeater .ag-ltr .ag-filter-card .ag-set-filter-item {
|
|
5435
|
+
padding-left: calc(var(--ag-widget-container-horizontal-padding) + var(--ag-indentation-level) * var(--ag-set-filter-indent-size));
|
|
5436
|
+
padding-right: var(--ag-widget-container-horizontal-padding);
|
|
5437
|
+
}
|
|
5438
|
+
|
|
5439
|
+
.gd-repeater .ag-rtl .ag-filter-card .ag-set-filter-item {
|
|
5440
|
+
padding-right: calc(var(--ag-widget-container-horizontal-padding) + var(--ag-indentation-level) * var(--ag-set-filter-indent-size));
|
|
5441
|
+
padding-left: var(--ag-widget-container-horizontal-padding);
|
|
5442
|
+
}
|
|
5443
|
+
|
|
5444
|
+
.gd-repeater .ag-filter-card-header {
|
|
5445
|
+
display: flex;
|
|
5446
|
+
flex-direction: row;
|
|
5447
|
+
align-items: center;
|
|
5448
|
+
padding-top: var(--ag-widget-vertical-spacing);
|
|
5449
|
+
}
|
|
5450
|
+
|
|
5451
|
+
.gd-repeater .ag-ltr .ag-filter-card-header > *:not(:last-child) {
|
|
5452
|
+
padding-right: var(--ag-grid-size);
|
|
5453
|
+
}
|
|
5454
|
+
|
|
5455
|
+
.gd-repeater .ag-rtl .ag-filter-card-header > *:not(:last-child) {
|
|
5456
|
+
padding-left: var(--ag-grid-size);
|
|
5457
|
+
}
|
|
5458
|
+
|
|
5459
|
+
.gd-repeater .ag-filter-card-heading {
|
|
5460
|
+
flex: 1;
|
|
5461
|
+
overflow: hidden;
|
|
5462
|
+
padding-top: calc(var(--ag-widget-container-vertical-padding) - var(--ag-widget-vertical-spacing));
|
|
5463
|
+
padding-bottom: calc(var(--ag-widget-container-vertical-padding) - var(--ag-widget-vertical-spacing));
|
|
5464
|
+
}
|
|
5465
|
+
|
|
5466
|
+
.gd-repeater .ag-ltr .ag-filter-card-heading {
|
|
5467
|
+
padding-left: var(--ag-widget-horizontal-spacing);
|
|
5468
|
+
}
|
|
5469
|
+
|
|
5470
|
+
.gd-repeater .ag-rtl .ag-filter-card-heading {
|
|
5471
|
+
padding-right: var(--ag-widget-horizontal-spacing);
|
|
5472
|
+
}
|
|
5473
|
+
|
|
5474
|
+
.gd-repeater .ag-filter-card-expand {
|
|
5475
|
+
display: flex;
|
|
5476
|
+
flex-direction: row;
|
|
5477
|
+
width: 100%;
|
|
5478
|
+
justify-content: space-between;
|
|
5479
|
+
align-items: center;
|
|
5480
|
+
}
|
|
5481
|
+
|
|
5482
|
+
.gd-repeater .ag-filter-card-title {
|
|
5483
|
+
overflow: hidden;
|
|
5484
|
+
text-overflow: ellipsis;
|
|
5485
|
+
}
|
|
5486
|
+
|
|
5487
|
+
.gd-repeater .ag-filter-card-expand-icon {
|
|
5488
|
+
display: flex;
|
|
5489
|
+
flex: 1;
|
|
5490
|
+
justify-content: end;
|
|
5491
|
+
}
|
|
5492
|
+
|
|
5493
|
+
.gd-repeater .ag-filter-card-editing-icon {
|
|
5494
|
+
margin: 0 var(--ag-grid-size);
|
|
5495
|
+
}
|
|
5496
|
+
|
|
5497
|
+
.gd-repeater .ag-filter-card-summary,
|
|
5498
|
+
.gd-repeater .ag-filter-card-expand-icon .ag-icon,
|
|
5499
|
+
.gd-repeater .ag-filter-card-delete-icon .ag-icon,
|
|
5500
|
+
.gd-repeater .ag-filter-card-editing-icon .ag-icon {
|
|
5501
|
+
color: var(--ag-filter-panel-card-subtle-color);
|
|
5502
|
+
}
|
|
5503
|
+
|
|
5504
|
+
.gd-repeater .ag-filter-card-expand-icon .ag-icon,
|
|
5505
|
+
.gd-repeater .ag-filter-card-delete-icon .ag-icon {
|
|
5506
|
+
transition: color 0.25s ease-in-out;
|
|
5507
|
+
}
|
|
5508
|
+
|
|
5509
|
+
.gd-repeater .ag-filter-card-expand-icon:hover .ag-icon,
|
|
5510
|
+
.gd-repeater .ag-filter-card-delete-icon:hover .ag-icon {
|
|
5511
|
+
color: var(--ag-filter-panel-card-subtle-hover-color);
|
|
5512
|
+
}
|
|
5513
|
+
|
|
5514
|
+
.gd-repeater .ag-filter-card-heading:hover .ag-filter-card-expand-icon .ag-icon {
|
|
5515
|
+
color: var(--ag-filter-panel-card-subtle-hover-color);
|
|
5516
|
+
}
|
|
5517
|
+
|
|
5518
|
+
.gd-repeater .ag-filter-card-expand,
|
|
5519
|
+
.gd-repeater .ag-filter-card-delete {
|
|
5520
|
+
border-radius: var(--ag-button-border-radius);
|
|
5521
|
+
background: none;
|
|
5522
|
+
border: none;
|
|
5523
|
+
cursor: pointer;
|
|
5524
|
+
padding: 0;
|
|
5525
|
+
}
|
|
5526
|
+
|
|
5527
|
+
.gd-repeater .ag-filter-panel .ag-standard-button {
|
|
5528
|
+
cursor: pointer;
|
|
5529
|
+
}
|
|
5530
|
+
|
|
5531
|
+
.gd-repeater .ag-filter-card-summary,
|
|
5532
|
+
.gd-repeater .ag-filter-type-select {
|
|
5533
|
+
margin-left: var(--ag-widget-container-horizontal-padding);
|
|
5534
|
+
margin-right: var(--ag-widget-container-horizontal-padding);
|
|
5535
|
+
}
|
|
5536
|
+
|
|
5537
|
+
.gd-repeater .ag-ltr .ag-filter-card-delete {
|
|
5538
|
+
margin-right: var(--ag-widget-horizontal-spacing);
|
|
5539
|
+
}
|
|
5540
|
+
|
|
5541
|
+
.gd-repeater .ag-rtl .ag-filter-card-delete {
|
|
5542
|
+
margin-left: var(--ag-widget-horizontal-spacing);
|
|
5543
|
+
}
|
|
5544
|
+
|
|
5545
|
+
.gd-repeater .ag-filter-card-summary {
|
|
5546
|
+
margin-bottom: var(--ag-widget-container-vertical-padding);
|
|
5547
|
+
}
|
|
5548
|
+
|
|
5549
|
+
.gd-repeater .ag-filter-type-select {
|
|
5550
|
+
padding-top: var(--ag-widget-vertical-spacing);
|
|
5551
|
+
}
|
|
5552
|
+
|
|
5553
|
+
.gd-repeater .ag-filter-card-add {
|
|
5554
|
+
padding: 0;
|
|
5555
|
+
border: 0;
|
|
5556
|
+
}
|
|
5557
|
+
|
|
5558
|
+
.gd-repeater .ag-filter-add-button {
|
|
5559
|
+
display: flex;
|
|
5560
|
+
flex-direction: row;
|
|
5561
|
+
width: 100%;
|
|
5562
|
+
align-items: center;
|
|
5563
|
+
line-height: 1.5;
|
|
5564
|
+
}
|
|
5565
|
+
|
|
5566
|
+
.gd-repeater .ag-ltr .ag-filter-add-button-label {
|
|
5567
|
+
margin-left: var(--ag-grid-size);
|
|
5568
|
+
}
|
|
5569
|
+
|
|
5570
|
+
.gd-repeater .ag-rtl .ag-filter-add-button-label {
|
|
5571
|
+
margin-right: var(--ag-grid-size);
|
|
5572
|
+
}
|
|
5573
|
+
|
|
5574
|
+
.gd-repeater .ag-filter-add-select {
|
|
5575
|
+
border: 0;
|
|
5576
|
+
}
|
|
5577
|
+
|
|
5578
|
+
.gd-repeater .ag-ltr .ag-filter-add-select .ag-text-field-input {
|
|
5579
|
+
padding-left: calc(var(--ag-grid-size) * 1.5 + 12px) !important;
|
|
5580
|
+
}
|
|
5581
|
+
|
|
5582
|
+
.gd-repeater .ag-rtl .ag-filter-add-select .ag-text-field-input {
|
|
5583
|
+
padding-right: calc(var(--ag-grid-size) * 1.5 + 12px) !important;
|
|
5584
|
+
}
|
|
5585
|
+
|
|
5586
|
+
.gd-repeater .ag-filter-add-select .ag-rich-select-value {
|
|
5587
|
+
padding: calc((1.5 * var(--ag-font-size) + 4 * var(--ag-grid-size) - var(--ag-input-height)) / 2) var(--ag-grid-size);
|
|
5588
|
+
border: 0;
|
|
5589
|
+
}
|
|
5590
|
+
|
|
5173
5591
|
.gd-repeater .ag-pivot-mode-panel {
|
|
5174
5592
|
min-height: var(--ag-header-height);
|
|
5175
5593
|
height: var(--ag-header-height);
|
|
@@ -5506,7 +5924,7 @@
|
|
|
5506
5924
|
border-top: 1px solid;
|
|
5507
5925
|
border-top-color: var(--ag-border-color);
|
|
5508
5926
|
color: var(--ag-secondary-foreground-color);
|
|
5509
|
-
height: var(--ag-
|
|
5927
|
+
height: var(--ag-pagination-panel-height);
|
|
5510
5928
|
}
|
|
5511
5929
|
|
|
5512
5930
|
.gd-repeater .ag-paging-panel > * {
|
|
@@ -6272,32 +6690,30 @@
|
|
|
6272
6690
|
width: 100%;
|
|
6273
6691
|
}
|
|
6274
6692
|
|
|
6275
|
-
.gd-repeater .ag-advanced-filter-
|
|
6693
|
+
.gd-repeater .ag-advanced-filter-buttons {
|
|
6694
|
+
display: contents;
|
|
6695
|
+
}
|
|
6696
|
+
|
|
6276
6697
|
.gd-repeater .ag-advanced-filter-builder-button {
|
|
6698
|
+
display: flex;
|
|
6699
|
+
align-items: center;
|
|
6700
|
+
border: 0;
|
|
6701
|
+
background-color: unset;
|
|
6702
|
+
color: var(--ag-foreground-color);
|
|
6703
|
+
font-size: var(--ag-font-size);
|
|
6704
|
+
font-weight: 600;
|
|
6277
6705
|
line-height: normal;
|
|
6278
6706
|
white-space: nowrap;
|
|
6279
6707
|
}
|
|
6280
6708
|
|
|
6281
|
-
.gd-repeater .ag-ltr .ag-advanced-filter-apply-button,
|
|
6282
6709
|
.gd-repeater .ag-ltr .ag-advanced-filter-builder-button {
|
|
6283
6710
|
margin-left: calc(var(--ag-grid-size) * 2);
|
|
6284
6711
|
}
|
|
6285
6712
|
|
|
6286
|
-
.gd-repeater .ag-rtl .ag-advanced-filter-apply-button,
|
|
6287
6713
|
.gd-repeater .ag-rtl .ag-advanced-filter-builder-button {
|
|
6288
6714
|
margin-right: calc(var(--ag-grid-size) * 2);
|
|
6289
6715
|
}
|
|
6290
6716
|
|
|
6291
|
-
.gd-repeater .ag-advanced-filter-builder-button {
|
|
6292
|
-
display: flex;
|
|
6293
|
-
align-items: center;
|
|
6294
|
-
border: 0;
|
|
6295
|
-
background-color: unset;
|
|
6296
|
-
color: var(--ag-foreground-color);
|
|
6297
|
-
font-size: var(--ag-font-size);
|
|
6298
|
-
font-weight: 600;
|
|
6299
|
-
}
|
|
6300
|
-
|
|
6301
6717
|
.gd-repeater .ag-advanced-filter-builder-button:hover:not(:disabled) {
|
|
6302
6718
|
background-color: var(--ag-row-hover-color);
|
|
6303
6719
|
}
|
|
@@ -6633,6 +7049,21 @@
|
|
|
6633
7049
|
cursor: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lY2FwOnJvdW5kO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxLjU7Ij4KICAgIDxnIHRyYW5zZm9ybT0ibWF0cml4KDEuNTc4NCwwLDAsMS44NjQyOSwtNC40MTM0OSwtNy4yMTIxMikiPgogICAgICAgIDxwYXRoIGQ9Ik01Ljk3OSw4LjkxMUw1Ljk3OSwxMC4zMDZMMy40NDUsOC4xNkw1Ljk3OSw2LjAxNEw1Ljk3OSw3LjQwOUwxMi4yODUsNy40MDlMMTIuMjg1LDguOTExTDUuOTc5LDguOTExWiIgc3R5bGU9InN0cm9rZTp3aGl0ZTtzdHJva2Utd2lkdGg6MC40MXB4OyIvPgogICAgPC9nPgo8L3N2Zz4K"), auto;
|
|
6634
7050
|
}
|
|
6635
7051
|
|
|
7052
|
+
.gd-repeater .ag-cell-batch-edit {
|
|
7053
|
+
background-color: var(--ag-cell-batch-edit-background-color);
|
|
7054
|
+
color: var(--ag-cell-batch-edit-text-color);
|
|
7055
|
+
}
|
|
7056
|
+
|
|
7057
|
+
.gd-repeater .ag-cell.ag-cell-inline-editing {
|
|
7058
|
+
background-color: var(--ag-background-color);
|
|
7059
|
+
background-image: linear-gradient(0deg, var(--ag-input-background-color), var(--ag-input-background-color));
|
|
7060
|
+
}
|
|
7061
|
+
|
|
7062
|
+
.gd-repeater .ag-row-batch-edit {
|
|
7063
|
+
background-color: var(--ag-row-batch-edit-background-color);
|
|
7064
|
+
color: var(--ag-row-batch-edit-text-color);
|
|
7065
|
+
}
|
|
7066
|
+
|
|
6636
7067
|
.gd-repeater .ag-input-field-input {
|
|
6637
7068
|
width: 100%;
|
|
6638
7069
|
min-width: 0;
|
|
@@ -6671,6 +7102,10 @@
|
|
|
6671
7102
|
box-shadow: var(--ag-input-focus-box-shadow);
|
|
6672
7103
|
}
|
|
6673
7104
|
|
|
7105
|
+
.gd-repeater .ag-cell-editing-error .ag-checkbox-input-wrapper:focus-within, .gd-repeater .ag-cell-editing-error .ag-checkbox-input-wrapper:active {
|
|
7106
|
+
box-shadow: var(--ag-input-error-focus-box-shadow);
|
|
7107
|
+
}
|
|
7108
|
+
|
|
6674
7109
|
.gd-repeater .ag-checkbox-input-wrapper.ag-disabled {
|
|
6675
7110
|
opacity: 0.5;
|
|
6676
7111
|
}
|
|
@@ -6817,6 +7252,10 @@
|
|
|
6817
7252
|
box-shadow: var(--ag-input-focus-box-shadow);
|
|
6818
7253
|
}
|
|
6819
7254
|
|
|
7255
|
+
.gd-repeater .ag-cell-editing-error .ag-radio-button-input-wrapper:focus-within, .gd-repeater .ag-cell-editing-error .ag-radio-button-input-wrapper:active {
|
|
7256
|
+
box-shadow: var(--ag-input-error-focus-box-shadow);
|
|
7257
|
+
}
|
|
7258
|
+
|
|
6820
7259
|
.gd-repeater .ag-radio-button-input-wrapper.ag-disabled {
|
|
6821
7260
|
opacity: 0.5;
|
|
6822
7261
|
}
|
|
@@ -6997,10 +7436,13 @@
|
|
|
6997
7436
|
--ag-find-active-match-color: var(--ag-foreground-color);
|
|
6998
7437
|
--ag-find-active-match-background-color: #ffa500;
|
|
6999
7438
|
--ag-input-focus-box-shadow: 0 0 2px 1px var(--ag-input-focus-border-color);
|
|
7439
|
+
--ag-input-error-focus-box-shadow: 0 0 2px 1px var(--ag-invalid-color);
|
|
7000
7440
|
--ag-range-selection-border-color: var(--ag-balham-active-color);
|
|
7001
7441
|
--ag-checkbox-checked-color: var(--ag-balham-active-color);
|
|
7002
7442
|
--ag-checkbox-background-color: var(--ag-background-color);
|
|
7003
7443
|
--ag-panel-background-color: var(--ag-header-background-color);
|
|
7444
|
+
--ag-filter-panel-apply-button-color: var(--ag-background-color);
|
|
7445
|
+
--ag-filter-panel-apply-button-background-color: var(--ag-balham-active-color);
|
|
7004
7446
|
--ag-secondary-foreground-color: rgba(0, 0, 0, 0.54);
|
|
7005
7447
|
--ag-disabled-foreground-color: rgba(0, 0, 0, 0.38);
|
|
7006
7448
|
--ag-subheader-toolbar-background-color: rgba(226, 233, 235, 0.5);
|
|
@@ -7056,6 +7498,7 @@
|
|
|
7056
7498
|
--ag-advanced-filter-value-pill-color: #374c86;
|
|
7057
7499
|
--ag-find-match-color: var(--ag-background-color);
|
|
7058
7500
|
--ag-find-active-match-color: var(--ag-background-color);
|
|
7501
|
+
--ag-filter-panel-apply-button-color: var(--ag-foreground-color);
|
|
7059
7502
|
--ag-secondary-foreground-color: var(--ag-foreground-color);
|
|
7060
7503
|
--ag-disabled-foreground-color: rgba(245, 245, 245, 0.38);
|
|
7061
7504
|
--ag-subheader-toolbar-background-color: rgba(17, 17, 17, 0.5);
|
|
@@ -7074,7 +7517,10 @@
|
|
|
7074
7517
|
--ag-range-selection-chart-category-background-color: rgba(26, 177, 74, 0.5);
|
|
7075
7518
|
--ag-range-selection-chart-background-color: rgba(45, 166, 255, 0.5);
|
|
7076
7519
|
--ag-input-focus-box-shadow: 0 0 4px 1.5px var(--ag-input-focus-border-color);
|
|
7520
|
+
--ag-input-error-focus-box-shadow: 0 0 4px 1.5px
|
|
7521
|
+
color-mix(in srgb, var(--ag-background-color), var(--ag-invalid-color) 0.5%);
|
|
7077
7522
|
--ag-row-loading-skeleton-effect-color: rgba(202, 203, 204, 0.4);
|
|
7523
|
+
--ag-cell-batch-edit-text-color: #f3d0b3;
|
|
7078
7524
|
color-scheme: dark;
|
|
7079
7525
|
}
|
|
7080
7526
|
|
|
@@ -7101,6 +7547,7 @@
|
|
|
7101
7547
|
--ag-advanced-filter-value-pill-color: #374c86;
|
|
7102
7548
|
--ag-find-match-color: var(--ag-background-color);
|
|
7103
7549
|
--ag-find-active-match-color: var(--ag-background-color);
|
|
7550
|
+
--ag-filter-panel-apply-button-color: var(--ag-foreground-color);
|
|
7104
7551
|
--ag-secondary-foreground-color: var(--ag-foreground-color);
|
|
7105
7552
|
--ag-disabled-foreground-color: rgba(245, 245, 245, 0.38);
|
|
7106
7553
|
--ag-subheader-toolbar-background-color: rgba(17, 17, 17, 0.5);
|
|
@@ -7119,7 +7566,10 @@
|
|
|
7119
7566
|
--ag-range-selection-chart-category-background-color: rgba(26, 177, 74, 0.5);
|
|
7120
7567
|
--ag-range-selection-chart-background-color: rgba(45, 166, 255, 0.5);
|
|
7121
7568
|
--ag-input-focus-box-shadow: 0 0 4px 1.5px var(--ag-input-focus-border-color);
|
|
7569
|
+
--ag-input-error-focus-box-shadow: 0 0 4px 1.5px
|
|
7570
|
+
color-mix(in srgb, var(--ag-background-color), var(--ag-invalid-color) 0.5%);
|
|
7122
7571
|
--ag-row-loading-skeleton-effect-color: rgba(202, 203, 204, 0.4);
|
|
7572
|
+
--ag-cell-batch-edit-text-color: #f3d0b3;
|
|
7123
7573
|
color-scheme: dark;
|
|
7124
7574
|
}
|
|
7125
7575
|
}
|
|
@@ -7378,9 +7828,22 @@
|
|
|
7378
7828
|
color: var(--ag-disabled-foreground-color);
|
|
7379
7829
|
}
|
|
7380
7830
|
|
|
7831
|
+
.gd-repeater .ag-theme-balham .ag-filter-panel .ag-standard-button.ag-filter-panel-buttons-apply-button:disabled,
|
|
7832
|
+
.gd-repeater .ag-theme-balham-dark .ag-filter-panel .ag-standard-button.ag-filter-panel-buttons-apply-button:disabled,
|
|
7833
|
+
.gd-repeater .ag-theme-balham-auto-dark .ag-filter-panel .ag-standard-button.ag-filter-panel-buttons-apply-button:disabled {
|
|
7834
|
+
color: unset;
|
|
7835
|
+
background-color: unset;
|
|
7836
|
+
}
|
|
7837
|
+
|
|
7838
|
+
.gd-repeater .ag-theme-balham .ag-filter-card-title,
|
|
7839
|
+
.gd-repeater .ag-theme-balham-dark .ag-filter-card-title,
|
|
7840
|
+
.gd-repeater .ag-theme-balham-auto-dark .ag-filter-card-title {
|
|
7841
|
+
font-weight: 600;
|
|
7842
|
+
}
|
|
7843
|
+
|
|
7381
7844
|
@font-face {
|
|
7382
7845
|
font-family: "agGridBalham";
|
|
7383
|
-
src: url(data:font/woff2;charset=utf-8;base64,
|
|
7846
|
+
src: url(data:font/woff2;charset=utf-8;base64,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);
|
|
7384
7847
|
font-weight: normal;
|
|
7385
7848
|
font-style: normal;
|
|
7386
7849
|
}
|