ag-grid-community 32.0.2 → 32.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +503 -85
- package/dist/ag-grid-community.js +9676 -6678
- package/dist/ag-grid-community.min.js +1 -1
- package/dist/ag-grid-community.min.noStyle.js +1 -1
- package/dist/ag-grid-community.noStyle.js +9577 -6573
- package/dist/package/main.cjs.js +9425 -6504
- package/dist/package/main.cjs.min.js +81 -70
- package/dist/package/main.esm.min.mjs +92 -81
- package/dist/package/main.esm.mjs +9424 -6503
- package/dist/package/package.json +34 -7
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideNodeManager.d.ts +16 -3
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideRowModel.d.ts +27 -7
- package/dist/types/client-side-row-model/clientSideRowModel/clientSideRowModelApi.d.ts +1 -0
- package/dist/types/client-side-row-model/clientSideRowModel/immutableService.d.ts +2 -1
- package/dist/types/client-side-row-model/clientSideRowModel/sortService.d.ts +1 -0
- package/dist/types/client-side-row-model/clientSideRowModelModule.d.ts +3 -4
- package/dist/types/client-side-row-model/version.d.ts +1 -1
- package/dist/types/core/alignedGridsModule.d.ts +1 -2
- package/dist/types/core/alignedGridsService.d.ts +1 -0
- package/dist/types/core/api/apiFunctionService.d.ts +6 -5
- package/dist/types/core/api/apiModule.d.ts +10 -11
- package/dist/types/core/api/apiUtils.d.ts +1 -1
- package/dist/types/core/api/gridApi.d.ts +621 -523
- package/dist/types/core/api/gridApiFunctions.d.ts +255 -0
- package/dist/types/core/api/sharedApiModule.d.ts +2 -3
- package/dist/types/core/api/ssrmInfiniteSharedApi.d.ts +1 -0
- package/dist/types/core/columns/columnEventDispatcher.d.ts +6 -4
- package/dist/types/core/columns/columnFactory.d.ts +6 -1
- package/dist/types/core/columns/columnModel.d.ts +11 -4
- package/dist/types/core/columns/columnModule.d.ts +2 -3
- package/dist/types/core/columns/columnUtils.d.ts +1 -0
- package/dist/types/core/columns/columnViewportService.d.ts +1 -0
- package/dist/types/core/columns/controlsColService.d.ts +11 -0
- package/dist/types/core/columns/dataTypeService.d.ts +3 -10
- package/dist/types/core/components/componentUtil.d.ts +2 -2
- package/dist/types/core/components/emptyBean.d.ts +21 -0
- package/dist/types/core/components/framework/componentTypes.d.ts +1 -0
- package/dist/types/core/components/framework/frameworkComponentWrapper.d.ts +1 -2
- package/dist/types/core/components/framework/userComponentFactory.d.ts +3 -1
- package/dist/types/core/components/framework/userComponentRegistry.d.ts +3 -1
- package/dist/types/core/context/beanStub.d.ts +2 -3
- package/dist/types/core/context/context.d.ts +8 -3
- package/dist/types/core/ctrlsService.d.ts +9 -6
- package/dist/types/core/dragAndDrop/dragAndDropImageComponent.d.ts +24 -0
- package/dist/types/core/dragAndDrop/dragAndDropService.d.ts +22 -10
- package/dist/types/core/dragAndDrop/dragModule.d.ts +1 -2
- package/dist/types/core/dragAndDrop/dragService.d.ts +4 -0
- package/dist/types/core/edit/cellEditors/simpleCellEditor.d.ts +2 -2
- package/dist/types/core/edit/editModule.d.ts +9 -10
- package/dist/types/core/edit/editService.d.ts +1 -1
- package/dist/types/core/edit/rowEditService.d.ts +1 -1
- package/dist/types/core/entities/agColumn.d.ts +4 -2
- package/dist/types/core/entities/agColumnGroup.d.ts +5 -0
- package/dist/types/core/entities/colDef.d.ts +26 -16
- package/dist/types/core/entities/dataType.d.ts +7 -0
- package/dist/types/core/entities/gridOptions.d.ts +248 -13
- package/dist/types/core/entities/rowNode.d.ts +69 -25
- package/dist/types/core/environment.d.ts +7 -4
- package/dist/types/core/eventService.d.ts +3 -3
- package/dist/types/core/eventTypes.d.ts +3 -3
- package/dist/types/core/events.d.ts +58 -12
- package/dist/types/core/filter/columnFilterService.d.ts +3 -1
- package/dist/types/core/filter/filterManager.d.ts +2 -0
- package/dist/types/core/filter/filterModule.d.ts +13 -14
- package/dist/types/core/filter/provided/iScalarFilter.d.ts +2 -0
- package/dist/types/core/filter/provided/providedFilter.d.ts +1 -1
- package/dist/types/core/focusService.d.ts +12 -2
- package/dist/types/core/grid.d.ts +10 -1
- package/dist/types/core/gridBodyComp/abstractFakeScrollComp.d.ts +3 -2
- package/dist/types/core/gridBodyComp/gridBodyCtrl.d.ts +8 -1
- package/dist/types/core/gridBodyComp/gridBodyScrollFeature.d.ts +10 -5
- package/dist/types/core/gridBodyComp/navigationService.d.ts +3 -1
- package/dist/types/core/gridBodyComp/rowContainer/rowContainerCtrl.d.ts +7 -3
- package/dist/types/core/gridBodyComp/rowDragFeature.d.ts +3 -2
- package/dist/types/core/gridBodyComp/scrollVisibleService.d.ts +10 -2
- package/dist/types/core/gridComp/gridCtrl.d.ts +5 -1
- package/dist/types/core/gridCoreModule.d.ts +2 -8
- package/dist/types/core/gridOptionsService.d.ts +10 -38
- package/dist/types/core/gridOptionsUtils.d.ts +54 -0
- package/dist/types/core/headerRendering/cells/abstractCell/abstractHeaderCellCtrl.d.ts +9 -6
- package/dist/types/core/headerRendering/cells/column/headerCellCtrl.d.ts +7 -6
- package/dist/types/core/headerRendering/cells/column/selectAllFeature.d.ts +6 -0
- package/dist/types/core/headerRendering/cells/columnGroup/headerGroupCellComp.d.ts +1 -0
- package/dist/types/core/headerRendering/cells/columnGroup/headerGroupCellCtrl.d.ts +6 -1
- package/dist/types/core/headerRendering/cells/floatingFilter/headerFilterCellCtrl.d.ts +2 -1
- package/dist/types/core/headerRendering/columnDrag/bodyDropPivotTarget.d.ts +1 -0
- package/dist/types/core/headerRendering/columnDrag/bodyDropTarget.d.ts +2 -0
- package/dist/types/core/headerRendering/columnDrag/moveColumnFeature.d.ts +21 -4
- package/dist/types/core/headerRendering/columnMoveHelper.d.ts +20 -10
- package/dist/types/core/headerRendering/gridHeaderCtrl.d.ts +1 -0
- package/dist/types/core/headerRendering/row/headerRowCtrl.d.ts +4 -8
- package/dist/types/core/headerRendering/rowContainer/headerRowContainerCtrl.d.ts +8 -8
- package/dist/types/core/interfaces/IRangeService.d.ts +3 -2
- package/dist/types/core/interfaces/IServerSideStore.d.ts +1 -1
- package/dist/types/core/interfaces/gridState.d.ts +28 -9
- package/dist/types/core/interfaces/iAdvancedFilterCtrl.d.ts +5 -1
- package/dist/types/core/interfaces/iCallbackParams.d.ts +5 -2
- package/dist/types/core/interfaces/iCellEditor.d.ts +4 -0
- package/dist/types/core/interfaces/iClientSideRowModel.d.ts +2 -6
- package/dist/types/core/interfaces/iColumn.d.ts +5 -1
- package/dist/types/core/interfaces/iExcelCreator.d.ts +69 -36
- package/dist/types/core/interfaces/iFrameworkOverrides.d.ts +6 -4
- package/dist/types/core/interfaces/iMenuFactory.d.ts +2 -1
- package/dist/types/core/interfaces/iModule.d.ts +10 -1
- package/dist/types/core/interfaces/iRowNode.d.ts +9 -2
- package/dist/types/core/interfaces/iRowNodeStage.d.ts +1 -3
- package/dist/types/core/interfaces/masterDetail.d.ts +2 -0
- package/dist/types/core/main.d.ts +11 -9
- package/dist/types/core/misc/menuService.d.ts +4 -2
- package/dist/types/core/misc/resizeObserverService.d.ts +0 -4
- package/dist/types/core/misc/state/stateModelMigration.d.ts +2 -0
- package/dist/types/core/misc/state/stateModule.d.ts +3 -4
- package/dist/types/core/misc/state/stateService.d.ts +2 -2
- package/dist/types/core/pagination/pageSizeSelector/pageSizeSelectorComp.d.ts +3 -1
- package/dist/types/core/pagination/paginationComp.d.ts +5 -4
- package/dist/types/core/pagination/paginationModule.d.ts +3 -4
- package/dist/types/core/pinnedRowModel/pinnedRowModel.d.ts +11 -9
- package/dist/types/core/pinnedRowModel/pinnedRowModule.d.ts +1 -2
- package/dist/types/core/propertyKeys.d.ts +2 -1
- package/dist/types/core/rendering/ariaAnnouncementService.d.ts +6 -1
- package/dist/types/core/rendering/cell/cellCtrl.d.ts +13 -10
- package/dist/types/core/rendering/cell/cellRangeFeature.d.ts +1 -1
- package/dist/types/core/rendering/columnAnimationService.d.ts +1 -0
- package/dist/types/core/rendering/columnHoverService.d.ts +1 -0
- package/dist/types/core/rendering/features/stickyRowFeature.d.ts +1 -0
- package/dist/types/core/rendering/overlays/loadingOverlayComponent.d.ts +1 -1
- package/dist/types/core/rendering/overlays/noRowsOverlayComponent.d.ts +1 -1
- package/dist/types/core/rendering/overlays/overlayModule.d.ts +1 -2
- package/dist/types/core/rendering/overlays/overlayService.d.ts +14 -1
- package/dist/types/core/rendering/overlays/overlayWrapperComponent.d.ts +6 -1
- package/dist/types/core/rendering/renderModule.d.ts +1 -2
- package/dist/types/core/rendering/row/rowComp.d.ts +0 -2
- package/dist/types/core/rendering/row/rowCtrl.d.ts +10 -8
- package/dist/types/core/rendering/rowRenderer.d.ts +1 -0
- package/dist/types/core/rowNodeCache/rowNodeBlockModule.d.ts +1 -2
- package/dist/types/core/selection/selectionService.d.ts +3 -2
- package/dist/types/core/syncService.d.ts +0 -1
- package/dist/types/core/utils/dom.d.ts +1 -1
- package/dist/types/core/utils/function.d.ts +2 -2
- package/dist/types/core/utils/icon.d.ts +76 -1
- package/dist/types/core/validation/apiFunctionValidator.d.ts +0 -1
- package/dist/types/core/validation/rules/gridOptionsValidations.d.ts +3 -0
- package/dist/types/core/validation/rules/selectionValidations.d.ts +3 -0
- package/dist/types/core/validation/validationService.d.ts +1 -4
- package/dist/types/core/validation/validationTypes.d.ts +2 -2
- package/dist/types/core/valueService/valueService.d.ts +6 -0
- package/dist/types/core/version.d.ts +1 -1
- package/dist/types/core/widgets/popupService.d.ts +1 -1
- package/dist/types/core/widgets/tooltipStateManager.d.ts +1 -0
- package/dist/types/csv-export/csvExportModule.d.ts +3 -4
- package/dist/types/csv-export/version.d.ts +1 -1
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteRowModel.d.ts +1 -1
- package/dist/types/infinite-row-model/infiniteRowModel/infiniteRowModelApi.d.ts +0 -1
- package/dist/types/infinite-row-model/infiniteRowModelModule.d.ts +3 -4
- package/dist/types/infinite-row-model/version.d.ts +1 -1
- package/package.json +34 -7
- package/styles/_css-content.scss +332 -114
- package/styles/ag-grid-no-native-widgets.css +71 -36
- package/styles/ag-grid-no-native-widgets.min.css +3 -3
- package/styles/ag-grid.css +71 -36
- package/styles/ag-grid.min.css +3 -3
- package/styles/ag-theme-alpine-no-font.css +18 -5
- package/styles/ag-theme-alpine-no-font.min.css +1 -1
- package/styles/ag-theme-alpine.css +18 -5
- package/styles/ag-theme-alpine.min.css +1 -1
- package/styles/ag-theme-balham-no-font.css +18 -0
- package/styles/ag-theme-balham-no-font.min.css +1 -1
- package/styles/ag-theme-balham.css +18 -0
- package/styles/ag-theme-balham.min.css +1 -1
- package/styles/ag-theme-material-no-font.css +41 -6
- package/styles/ag-theme-material-no-font.min.css +1 -1
- package/styles/ag-theme-material.css +41 -6
- package/styles/ag-theme-material.min.css +1 -1
- package/styles/ag-theme-quartz-no-font.css +18 -10
- package/styles/ag-theme-quartz-no-font.min.css +1 -1
- package/styles/ag-theme-quartz.css +18 -10
- package/styles/ag-theme-quartz.min.css +1 -1
- package/dist/types/core/utils/rowNode.d.ts +0 -14
- package/gulpfile.js +0 -34
- package/webpackBuild.sh +0 -17
package/styles/_css-content.scss
CHANGED
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
@mixin output-css-file($file, $ignore-missing: false) {
|
|
21
21
|
|
|
22
22
|
@if $file == "ag-grid-no-native-widgets.css" {
|
|
23
|
+
body {
|
|
24
|
+
--ag-legacy-styles-loaded: "true";
|
|
25
|
+
}
|
|
26
|
+
|
|
23
27
|
.ag-icon {
|
|
24
28
|
font-family: var(--ag-icon-font-family);
|
|
25
29
|
font-weight: var(--ag-icon-font-weight);
|
|
@@ -1158,6 +1162,10 @@
|
|
|
1158
1162
|
background-color: var(--ag-background-color);
|
|
1159
1163
|
}
|
|
1160
1164
|
|
|
1165
|
+
.ag-sticky-bottom {
|
|
1166
|
+
border-top: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1161
1169
|
.ag-root-wrapper,
|
|
1162
1170
|
.ag-popup {
|
|
1163
1171
|
--ag-indentation-level: 0;
|
|
@@ -1359,27 +1367,43 @@
|
|
|
1359
1367
|
}
|
|
1360
1368
|
|
|
1361
1369
|
.ag-body-viewport,
|
|
1362
|
-
.ag-center-cols-viewport
|
|
1370
|
+
.ag-center-cols-viewport,
|
|
1371
|
+
.ag-header-viewport,
|
|
1372
|
+
.ag-floating-top-viewport,
|
|
1373
|
+
.ag-floating-bottom-viewport,
|
|
1374
|
+
.ag-sticky-top-viewport,
|
|
1375
|
+
.ag-sticky-bottom-viewport {
|
|
1376
|
+
overflow-x: auto;
|
|
1363
1377
|
-ms-overflow-style: none !important;
|
|
1364
1378
|
scrollbar-width: none !important;
|
|
1365
1379
|
}
|
|
1366
1380
|
.ag-body-viewport::-webkit-scrollbar,
|
|
1367
|
-
.ag-center-cols-viewport::-webkit-scrollbar
|
|
1381
|
+
.ag-center-cols-viewport::-webkit-scrollbar,
|
|
1382
|
+
.ag-header-viewport::-webkit-scrollbar,
|
|
1383
|
+
.ag-floating-top-viewport::-webkit-scrollbar,
|
|
1384
|
+
.ag-floating-bottom-viewport::-webkit-scrollbar,
|
|
1385
|
+
.ag-sticky-top-viewport::-webkit-scrollbar,
|
|
1386
|
+
.ag-sticky-bottom-viewport::-webkit-scrollbar {
|
|
1368
1387
|
display: none !important;
|
|
1369
1388
|
}
|
|
1370
1389
|
|
|
1371
1390
|
.ag-body-viewport {
|
|
1372
1391
|
display: flex;
|
|
1392
|
+
overflow-x: hidden;
|
|
1373
1393
|
}
|
|
1374
1394
|
.ag-body-viewport.ag-layout-normal {
|
|
1375
1395
|
overflow-y: auto;
|
|
1376
1396
|
-webkit-overflow-scrolling: touch;
|
|
1377
1397
|
}
|
|
1378
1398
|
|
|
1399
|
+
.ag-sticky-top-container,
|
|
1400
|
+
.ag-sticky-bottom-container {
|
|
1401
|
+
min-height: 1px;
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1379
1404
|
.ag-center-cols-viewport {
|
|
1380
1405
|
min-height: 100%;
|
|
1381
1406
|
width: 100%;
|
|
1382
|
-
overflow-x: auto;
|
|
1383
1407
|
}
|
|
1384
1408
|
|
|
1385
1409
|
.ag-body-horizontal-scroll-viewport {
|
|
@@ -1590,6 +1614,7 @@
|
|
|
1590
1614
|
align-items: center;
|
|
1591
1615
|
position: absolute;
|
|
1592
1616
|
height: 100%;
|
|
1617
|
+
overflow: hidden;
|
|
1593
1618
|
}
|
|
1594
1619
|
|
|
1595
1620
|
.ag-header-cell.ag-header-active .ag-header-cell-menu-button,
|
|
@@ -1624,7 +1649,6 @@
|
|
|
1624
1649
|
.ag-header-group-text {
|
|
1625
1650
|
overflow: hidden;
|
|
1626
1651
|
text-overflow: ellipsis;
|
|
1627
|
-
white-space: nowrap;
|
|
1628
1652
|
}
|
|
1629
1653
|
|
|
1630
1654
|
.ag-header-cell-text {
|
|
@@ -1633,6 +1657,10 @@
|
|
|
1633
1657
|
word-break: break-word;
|
|
1634
1658
|
}
|
|
1635
1659
|
|
|
1660
|
+
.ag-header-group-cell .ag-header-cell-comp-wrapper {
|
|
1661
|
+
display: flex;
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1636
1664
|
.ag-header-cell:not(.ag-header-cell-auto-height) .ag-header-cell-comp-wrapper {
|
|
1637
1665
|
height: 100%;
|
|
1638
1666
|
display: flex;
|
|
@@ -1660,18 +1688,18 @@
|
|
|
1660
1688
|
cursor: ew-resize;
|
|
1661
1689
|
}
|
|
1662
1690
|
.ag-ltr .ag-header-cell-resize {
|
|
1663
|
-
right: -
|
|
1691
|
+
right: -3px;
|
|
1664
1692
|
}
|
|
1665
1693
|
.ag-rtl .ag-header-cell-resize {
|
|
1666
|
-
left: -
|
|
1694
|
+
left: -3px;
|
|
1667
1695
|
}
|
|
1668
1696
|
|
|
1669
1697
|
.ag-pinned-left-header .ag-header-cell-resize {
|
|
1670
|
-
right: -
|
|
1698
|
+
right: -3px;
|
|
1671
1699
|
}
|
|
1672
1700
|
|
|
1673
1701
|
.ag-pinned-right-header .ag-header-cell-resize {
|
|
1674
|
-
left: -
|
|
1702
|
+
left: -3px;
|
|
1675
1703
|
}
|
|
1676
1704
|
|
|
1677
1705
|
.ag-header-select-all {
|
|
@@ -2009,12 +2037,10 @@
|
|
|
2009
2037
|
}
|
|
2010
2038
|
|
|
2011
2039
|
.ag-dnd-ghost {
|
|
2012
|
-
position: absolute;
|
|
2013
2040
|
display: inline-flex;
|
|
2014
2041
|
align-items: center;
|
|
2015
2042
|
cursor: move;
|
|
2016
2043
|
white-space: nowrap;
|
|
2017
|
-
z-index: 9999;
|
|
2018
2044
|
}
|
|
2019
2045
|
|
|
2020
2046
|
.ag-overlay {
|
|
@@ -2118,6 +2144,12 @@
|
|
|
2118
2144
|
position: absolute;
|
|
2119
2145
|
display: flex;
|
|
2120
2146
|
width: 100%;
|
|
2147
|
+
overflow: hidden;
|
|
2148
|
+
height: 0px;
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
.ag-sticky-bottom {
|
|
2152
|
+
box-sizing: content-box !important;
|
|
2121
2153
|
}
|
|
2122
2154
|
|
|
2123
2155
|
.ag-pinned-left-sticky-top,
|
|
@@ -2544,6 +2576,10 @@
|
|
|
2544
2576
|
align-items: center;
|
|
2545
2577
|
height: 100%;
|
|
2546
2578
|
width: 100%;
|
|
2579
|
+
}
|
|
2580
|
+
|
|
2581
|
+
.ag-header-group-cell-label,
|
|
2582
|
+
.ag-cell-label-container {
|
|
2547
2583
|
padding: 5px 0px;
|
|
2548
2584
|
}
|
|
2549
2585
|
|
|
@@ -3386,7 +3422,7 @@
|
|
|
3386
3422
|
text-overflow: ellipsis;
|
|
3387
3423
|
border: var(--ag-borders-secondary) var(--ag-secondary-border-color);
|
|
3388
3424
|
color: var(--ag-secondary-foreground-color);
|
|
3389
|
-
height: var(--ag-header-height)
|
|
3425
|
+
height: var(--ag-header-height);
|
|
3390
3426
|
line-height: var(--ag-header-height);
|
|
3391
3427
|
margin: 0;
|
|
3392
3428
|
padding: 0 calc(var(--ag-grid-size) * 2);
|
|
@@ -3557,7 +3593,6 @@
|
|
|
3557
3593
|
}
|
|
3558
3594
|
|
|
3559
3595
|
.ag-pill .ag-pill-button:hover {
|
|
3560
|
-
color: var(--ag-active-color);
|
|
3561
3596
|
cursor: pointer;
|
|
3562
3597
|
}
|
|
3563
3598
|
|
|
@@ -3746,10 +3781,6 @@
|
|
|
3746
3781
|
padding-left: calc(var(--ag-indentation-level) * var(--ag-row-group-indent-size));
|
|
3747
3782
|
}
|
|
3748
3783
|
|
|
3749
|
-
.ag-pivot-leaf-group {
|
|
3750
|
-
margin-left: min(var(--ag-row-group-indent-size), var(--ag-row-group-indent-size) * var(--ag-indentation-level));
|
|
3751
|
-
}
|
|
3752
|
-
|
|
3753
3784
|
.ag-ltr .ag-row-group-leaf-indent {
|
|
3754
3785
|
margin-left: var(--ag-row-group-indent-size);
|
|
3755
3786
|
}
|
|
@@ -3757,6 +3788,10 @@
|
|
|
3757
3788
|
margin-right: var(--ag-row-group-indent-size);
|
|
3758
3789
|
}
|
|
3759
3790
|
|
|
3791
|
+
.ag-row:not(.ag-row-level-0) .ag-pivot-leaf-group {
|
|
3792
|
+
margin-left: var(--ag-row-group-indent-size);
|
|
3793
|
+
}
|
|
3794
|
+
|
|
3760
3795
|
.ag-value-change-delta {
|
|
3761
3796
|
padding-right: 2px;
|
|
3762
3797
|
}
|
|
@@ -3801,16 +3836,6 @@
|
|
|
3801
3836
|
border-bottom: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
|
|
3802
3837
|
}
|
|
3803
3838
|
|
|
3804
|
-
.ag-sticky-bottom::after {
|
|
3805
|
-
content: "";
|
|
3806
|
-
position: absolute;
|
|
3807
|
-
top: 0;
|
|
3808
|
-
left: 0;
|
|
3809
|
-
width: 100%;
|
|
3810
|
-
height: 1px;
|
|
3811
|
-
border-top: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
|
|
3812
|
-
}
|
|
3813
|
-
|
|
3814
3839
|
.ag-row-highlight-above::after,
|
|
3815
3840
|
.ag-row-highlight-below::after {
|
|
3816
3841
|
content: "";
|
|
@@ -3980,10 +4005,6 @@
|
|
|
3980
4005
|
padding: var(--ag-grid-size);
|
|
3981
4006
|
}
|
|
3982
4007
|
|
|
3983
|
-
.ag-overlay-no-rows-wrapper.ag-layout-auto-height {
|
|
3984
|
-
padding-top: 30px;
|
|
3985
|
-
}
|
|
3986
|
-
|
|
3987
4008
|
.ag-skeleton-container {
|
|
3988
4009
|
width: 100%;
|
|
3989
4010
|
height: 100%;
|
|
@@ -4755,7 +4776,6 @@
|
|
|
4755
4776
|
left: 0;
|
|
4756
4777
|
right: 0;
|
|
4757
4778
|
height: 1px;
|
|
4758
|
-
background-color: var(--ag-range-selection-border-color);
|
|
4759
4779
|
}
|
|
4760
4780
|
.ag-column-select-list .ag-item-highlight-top::after {
|
|
4761
4781
|
top: 0;
|
|
@@ -4918,6 +4938,26 @@
|
|
|
4918
4938
|
left: 0;
|
|
4919
4939
|
}
|
|
4920
4940
|
|
|
4941
|
+
.ag-header-highlight-before::after,
|
|
4942
|
+
.ag-header-highlight-after::after {
|
|
4943
|
+
content: "";
|
|
4944
|
+
position: absolute;
|
|
4945
|
+
height: 100%;
|
|
4946
|
+
width: 1px;
|
|
4947
|
+
}
|
|
4948
|
+
|
|
4949
|
+
.ag-header-highlight-before::after {
|
|
4950
|
+
left: 0px;
|
|
4951
|
+
}
|
|
4952
|
+
|
|
4953
|
+
.ag-header-highlight-after::after {
|
|
4954
|
+
right: 0px;
|
|
4955
|
+
}
|
|
4956
|
+
|
|
4957
|
+
.ag-pinned-left-header .ag-header-highlight-after::after {
|
|
4958
|
+
right: 1px;
|
|
4959
|
+
}
|
|
4960
|
+
|
|
4921
4961
|
.ag-header-cell-resize {
|
|
4922
4962
|
display: flex;
|
|
4923
4963
|
align-items: center;
|
|
@@ -5225,7 +5265,6 @@
|
|
|
5225
5265
|
.ag-chart {
|
|
5226
5266
|
position: relative;
|
|
5227
5267
|
display: flex;
|
|
5228
|
-
overflow: hidden;
|
|
5229
5268
|
width: 100%;
|
|
5230
5269
|
height: 100%;
|
|
5231
5270
|
}
|
|
@@ -5234,13 +5273,11 @@
|
|
|
5234
5273
|
position: relative;
|
|
5235
5274
|
display: flex;
|
|
5236
5275
|
flex: 1 1 auto;
|
|
5237
|
-
overflow: hidden;
|
|
5238
5276
|
}
|
|
5239
5277
|
|
|
5240
5278
|
.ag-chart-canvas-wrapper {
|
|
5241
5279
|
position: relative;
|
|
5242
5280
|
flex: 1 1 auto;
|
|
5243
|
-
overflow: hidden;
|
|
5244
5281
|
}
|
|
5245
5282
|
|
|
5246
5283
|
.ag-chart-menu {
|
|
@@ -5616,7 +5653,6 @@
|
|
|
5616
5653
|
left: 0;
|
|
5617
5654
|
right: 0;
|
|
5618
5655
|
height: 1px;
|
|
5619
|
-
background-color: var(--ag-range-selection-border-color);
|
|
5620
5656
|
}
|
|
5621
5657
|
.ag-charts-data-group-container .ag-item-highlight-top::after {
|
|
5622
5658
|
top: 0;
|
|
@@ -5788,7 +5824,6 @@
|
|
|
5788
5824
|
left: 0;
|
|
5789
5825
|
right: 0;
|
|
5790
5826
|
height: 1px;
|
|
5791
|
-
background-color: var(--ag-range-selection-border-color);
|
|
5792
5827
|
}
|
|
5793
5828
|
.ag-advanced-filter-builder-list .ag-item-highlight-top::after {
|
|
5794
5829
|
top: 0;
|
|
@@ -6043,6 +6078,10 @@
|
|
|
6043
6078
|
|
|
6044
6079
|
}
|
|
6045
6080
|
@else if $file == "ag-grid.css" {
|
|
6081
|
+
body {
|
|
6082
|
+
--ag-legacy-styles-loaded: "true";
|
|
6083
|
+
}
|
|
6084
|
+
|
|
6046
6085
|
.ag-icon {
|
|
6047
6086
|
font-family: var(--ag-icon-font-family);
|
|
6048
6087
|
font-weight: var(--ag-icon-font-weight);
|
|
@@ -7181,6 +7220,10 @@
|
|
|
7181
7220
|
background-color: var(--ag-background-color);
|
|
7182
7221
|
}
|
|
7183
7222
|
|
|
7223
|
+
.ag-sticky-bottom {
|
|
7224
|
+
border-top: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
|
|
7225
|
+
}
|
|
7226
|
+
|
|
7184
7227
|
.ag-root-wrapper,
|
|
7185
7228
|
.ag-popup {
|
|
7186
7229
|
--ag-indentation-level: 0;
|
|
@@ -7382,27 +7425,43 @@
|
|
|
7382
7425
|
}
|
|
7383
7426
|
|
|
7384
7427
|
.ag-body-viewport,
|
|
7385
|
-
.ag-center-cols-viewport
|
|
7428
|
+
.ag-center-cols-viewport,
|
|
7429
|
+
.ag-header-viewport,
|
|
7430
|
+
.ag-floating-top-viewport,
|
|
7431
|
+
.ag-floating-bottom-viewport,
|
|
7432
|
+
.ag-sticky-top-viewport,
|
|
7433
|
+
.ag-sticky-bottom-viewport {
|
|
7434
|
+
overflow-x: auto;
|
|
7386
7435
|
-ms-overflow-style: none !important;
|
|
7387
7436
|
scrollbar-width: none !important;
|
|
7388
7437
|
}
|
|
7389
7438
|
.ag-body-viewport::-webkit-scrollbar,
|
|
7390
|
-
.ag-center-cols-viewport::-webkit-scrollbar
|
|
7439
|
+
.ag-center-cols-viewport::-webkit-scrollbar,
|
|
7440
|
+
.ag-header-viewport::-webkit-scrollbar,
|
|
7441
|
+
.ag-floating-top-viewport::-webkit-scrollbar,
|
|
7442
|
+
.ag-floating-bottom-viewport::-webkit-scrollbar,
|
|
7443
|
+
.ag-sticky-top-viewport::-webkit-scrollbar,
|
|
7444
|
+
.ag-sticky-bottom-viewport::-webkit-scrollbar {
|
|
7391
7445
|
display: none !important;
|
|
7392
7446
|
}
|
|
7393
7447
|
|
|
7394
7448
|
.ag-body-viewport {
|
|
7395
7449
|
display: flex;
|
|
7450
|
+
overflow-x: hidden;
|
|
7396
7451
|
}
|
|
7397
7452
|
.ag-body-viewport.ag-layout-normal {
|
|
7398
7453
|
overflow-y: auto;
|
|
7399
7454
|
-webkit-overflow-scrolling: touch;
|
|
7400
7455
|
}
|
|
7401
7456
|
|
|
7457
|
+
.ag-sticky-top-container,
|
|
7458
|
+
.ag-sticky-bottom-container {
|
|
7459
|
+
min-height: 1px;
|
|
7460
|
+
}
|
|
7461
|
+
|
|
7402
7462
|
.ag-center-cols-viewport {
|
|
7403
7463
|
min-height: 100%;
|
|
7404
7464
|
width: 100%;
|
|
7405
|
-
overflow-x: auto;
|
|
7406
7465
|
}
|
|
7407
7466
|
|
|
7408
7467
|
.ag-body-horizontal-scroll-viewport {
|
|
@@ -7613,6 +7672,7 @@
|
|
|
7613
7672
|
align-items: center;
|
|
7614
7673
|
position: absolute;
|
|
7615
7674
|
height: 100%;
|
|
7675
|
+
overflow: hidden;
|
|
7616
7676
|
}
|
|
7617
7677
|
|
|
7618
7678
|
.ag-header-cell.ag-header-active .ag-header-cell-menu-button,
|
|
@@ -7647,7 +7707,6 @@
|
|
|
7647
7707
|
.ag-header-group-text {
|
|
7648
7708
|
overflow: hidden;
|
|
7649
7709
|
text-overflow: ellipsis;
|
|
7650
|
-
white-space: nowrap;
|
|
7651
7710
|
}
|
|
7652
7711
|
|
|
7653
7712
|
.ag-header-cell-text {
|
|
@@ -7656,6 +7715,10 @@
|
|
|
7656
7715
|
word-break: break-word;
|
|
7657
7716
|
}
|
|
7658
7717
|
|
|
7718
|
+
.ag-header-group-cell .ag-header-cell-comp-wrapper {
|
|
7719
|
+
display: flex;
|
|
7720
|
+
}
|
|
7721
|
+
|
|
7659
7722
|
.ag-header-cell:not(.ag-header-cell-auto-height) .ag-header-cell-comp-wrapper {
|
|
7660
7723
|
height: 100%;
|
|
7661
7724
|
display: flex;
|
|
@@ -7683,18 +7746,18 @@
|
|
|
7683
7746
|
cursor: ew-resize;
|
|
7684
7747
|
}
|
|
7685
7748
|
.ag-ltr .ag-header-cell-resize {
|
|
7686
|
-
right: -
|
|
7749
|
+
right: -3px;
|
|
7687
7750
|
}
|
|
7688
7751
|
.ag-rtl .ag-header-cell-resize {
|
|
7689
|
-
left: -
|
|
7752
|
+
left: -3px;
|
|
7690
7753
|
}
|
|
7691
7754
|
|
|
7692
7755
|
.ag-pinned-left-header .ag-header-cell-resize {
|
|
7693
|
-
right: -
|
|
7756
|
+
right: -3px;
|
|
7694
7757
|
}
|
|
7695
7758
|
|
|
7696
7759
|
.ag-pinned-right-header .ag-header-cell-resize {
|
|
7697
|
-
left: -
|
|
7760
|
+
left: -3px;
|
|
7698
7761
|
}
|
|
7699
7762
|
|
|
7700
7763
|
.ag-header-select-all {
|
|
@@ -8032,12 +8095,10 @@
|
|
|
8032
8095
|
}
|
|
8033
8096
|
|
|
8034
8097
|
.ag-dnd-ghost {
|
|
8035
|
-
position: absolute;
|
|
8036
8098
|
display: inline-flex;
|
|
8037
8099
|
align-items: center;
|
|
8038
8100
|
cursor: move;
|
|
8039
8101
|
white-space: nowrap;
|
|
8040
|
-
z-index: 9999;
|
|
8041
8102
|
}
|
|
8042
8103
|
|
|
8043
8104
|
.ag-overlay {
|
|
@@ -8141,6 +8202,12 @@
|
|
|
8141
8202
|
position: absolute;
|
|
8142
8203
|
display: flex;
|
|
8143
8204
|
width: 100%;
|
|
8205
|
+
overflow: hidden;
|
|
8206
|
+
height: 0px;
|
|
8207
|
+
}
|
|
8208
|
+
|
|
8209
|
+
.ag-sticky-bottom {
|
|
8210
|
+
box-sizing: content-box !important;
|
|
8144
8211
|
}
|
|
8145
8212
|
|
|
8146
8213
|
.ag-pinned-left-sticky-top,
|
|
@@ -8567,6 +8634,10 @@
|
|
|
8567
8634
|
align-items: center;
|
|
8568
8635
|
height: 100%;
|
|
8569
8636
|
width: 100%;
|
|
8637
|
+
}
|
|
8638
|
+
|
|
8639
|
+
.ag-header-group-cell-label,
|
|
8640
|
+
.ag-cell-label-container {
|
|
8570
8641
|
padding: 5px 0px;
|
|
8571
8642
|
}
|
|
8572
8643
|
|
|
@@ -9409,7 +9480,7 @@
|
|
|
9409
9480
|
text-overflow: ellipsis;
|
|
9410
9481
|
border: var(--ag-borders-secondary) var(--ag-secondary-border-color);
|
|
9411
9482
|
color: var(--ag-secondary-foreground-color);
|
|
9412
|
-
height: var(--ag-header-height)
|
|
9483
|
+
height: var(--ag-header-height);
|
|
9413
9484
|
line-height: var(--ag-header-height);
|
|
9414
9485
|
margin: 0;
|
|
9415
9486
|
padding: 0 calc(var(--ag-grid-size) * 2);
|
|
@@ -9580,7 +9651,6 @@
|
|
|
9580
9651
|
}
|
|
9581
9652
|
|
|
9582
9653
|
.ag-pill .ag-pill-button:hover {
|
|
9583
|
-
color: var(--ag-active-color);
|
|
9584
9654
|
cursor: pointer;
|
|
9585
9655
|
}
|
|
9586
9656
|
|
|
@@ -9769,10 +9839,6 @@
|
|
|
9769
9839
|
padding-left: calc(var(--ag-indentation-level) * var(--ag-row-group-indent-size));
|
|
9770
9840
|
}
|
|
9771
9841
|
|
|
9772
|
-
.ag-pivot-leaf-group {
|
|
9773
|
-
margin-left: min(var(--ag-row-group-indent-size), var(--ag-row-group-indent-size) * var(--ag-indentation-level));
|
|
9774
|
-
}
|
|
9775
|
-
|
|
9776
9842
|
.ag-ltr .ag-row-group-leaf-indent {
|
|
9777
9843
|
margin-left: var(--ag-row-group-indent-size);
|
|
9778
9844
|
}
|
|
@@ -9780,6 +9846,10 @@
|
|
|
9780
9846
|
margin-right: var(--ag-row-group-indent-size);
|
|
9781
9847
|
}
|
|
9782
9848
|
|
|
9849
|
+
.ag-row:not(.ag-row-level-0) .ag-pivot-leaf-group {
|
|
9850
|
+
margin-left: var(--ag-row-group-indent-size);
|
|
9851
|
+
}
|
|
9852
|
+
|
|
9783
9853
|
.ag-value-change-delta {
|
|
9784
9854
|
padding-right: 2px;
|
|
9785
9855
|
}
|
|
@@ -9824,16 +9894,6 @@
|
|
|
9824
9894
|
border-bottom: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
|
|
9825
9895
|
}
|
|
9826
9896
|
|
|
9827
|
-
.ag-sticky-bottom::after {
|
|
9828
|
-
content: "";
|
|
9829
|
-
position: absolute;
|
|
9830
|
-
top: 0;
|
|
9831
|
-
left: 0;
|
|
9832
|
-
width: 100%;
|
|
9833
|
-
height: 1px;
|
|
9834
|
-
border-top: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
|
|
9835
|
-
}
|
|
9836
|
-
|
|
9837
9897
|
.ag-row-highlight-above::after,
|
|
9838
9898
|
.ag-row-highlight-below::after {
|
|
9839
9899
|
content: "";
|
|
@@ -10003,10 +10063,6 @@
|
|
|
10003
10063
|
padding: var(--ag-grid-size);
|
|
10004
10064
|
}
|
|
10005
10065
|
|
|
10006
|
-
.ag-overlay-no-rows-wrapper.ag-layout-auto-height {
|
|
10007
|
-
padding-top: 30px;
|
|
10008
|
-
}
|
|
10009
|
-
|
|
10010
10066
|
.ag-skeleton-container {
|
|
10011
10067
|
width: 100%;
|
|
10012
10068
|
height: 100%;
|
|
@@ -10778,7 +10834,6 @@
|
|
|
10778
10834
|
left: 0;
|
|
10779
10835
|
right: 0;
|
|
10780
10836
|
height: 1px;
|
|
10781
|
-
background-color: var(--ag-range-selection-border-color);
|
|
10782
10837
|
}
|
|
10783
10838
|
.ag-column-select-list .ag-item-highlight-top::after {
|
|
10784
10839
|
top: 0;
|
|
@@ -10941,6 +10996,26 @@
|
|
|
10941
10996
|
left: 0;
|
|
10942
10997
|
}
|
|
10943
10998
|
|
|
10999
|
+
.ag-header-highlight-before::after,
|
|
11000
|
+
.ag-header-highlight-after::after {
|
|
11001
|
+
content: "";
|
|
11002
|
+
position: absolute;
|
|
11003
|
+
height: 100%;
|
|
11004
|
+
width: 1px;
|
|
11005
|
+
}
|
|
11006
|
+
|
|
11007
|
+
.ag-header-highlight-before::after {
|
|
11008
|
+
left: 0px;
|
|
11009
|
+
}
|
|
11010
|
+
|
|
11011
|
+
.ag-header-highlight-after::after {
|
|
11012
|
+
right: 0px;
|
|
11013
|
+
}
|
|
11014
|
+
|
|
11015
|
+
.ag-pinned-left-header .ag-header-highlight-after::after {
|
|
11016
|
+
right: 1px;
|
|
11017
|
+
}
|
|
11018
|
+
|
|
10944
11019
|
.ag-header-cell-resize {
|
|
10945
11020
|
display: flex;
|
|
10946
11021
|
align-items: center;
|
|
@@ -11248,7 +11323,6 @@
|
|
|
11248
11323
|
.ag-chart {
|
|
11249
11324
|
position: relative;
|
|
11250
11325
|
display: flex;
|
|
11251
|
-
overflow: hidden;
|
|
11252
11326
|
width: 100%;
|
|
11253
11327
|
height: 100%;
|
|
11254
11328
|
}
|
|
@@ -11257,13 +11331,11 @@
|
|
|
11257
11331
|
position: relative;
|
|
11258
11332
|
display: flex;
|
|
11259
11333
|
flex: 1 1 auto;
|
|
11260
|
-
overflow: hidden;
|
|
11261
11334
|
}
|
|
11262
11335
|
|
|
11263
11336
|
.ag-chart-canvas-wrapper {
|
|
11264
11337
|
position: relative;
|
|
11265
11338
|
flex: 1 1 auto;
|
|
11266
|
-
overflow: hidden;
|
|
11267
11339
|
}
|
|
11268
11340
|
|
|
11269
11341
|
.ag-chart-menu {
|
|
@@ -11639,7 +11711,6 @@
|
|
|
11639
11711
|
left: 0;
|
|
11640
11712
|
right: 0;
|
|
11641
11713
|
height: 1px;
|
|
11642
|
-
background-color: var(--ag-range-selection-border-color);
|
|
11643
11714
|
}
|
|
11644
11715
|
.ag-charts-data-group-container .ag-item-highlight-top::after {
|
|
11645
11716
|
top: 0;
|
|
@@ -11811,7 +11882,6 @@
|
|
|
11811
11882
|
left: 0;
|
|
11812
11883
|
right: 0;
|
|
11813
11884
|
height: 1px;
|
|
11814
|
-
background-color: var(--ag-range-selection-border-color);
|
|
11815
11885
|
}
|
|
11816
11886
|
.ag-advanced-filter-builder-list .ag-item-highlight-top::after {
|
|
11817
11887
|
top: 0;
|
|
@@ -12909,11 +12979,6 @@
|
|
|
12909
12979
|
.ag-theme-alpine-auto-dark .ag-layout-print .ag-center-cols-container {
|
|
12910
12980
|
min-height: 150px;
|
|
12911
12981
|
}
|
|
12912
|
-
.ag-theme-alpine .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
|
|
12913
|
-
.ag-theme-alpine-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
|
|
12914
|
-
.ag-theme-alpine-auto-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height {
|
|
12915
|
-
padding-top: 60px;
|
|
12916
|
-
}
|
|
12917
12982
|
.ag-theme-alpine .ag-date-time-list-page-entry-is-current,
|
|
12918
12983
|
.ag-theme-alpine-dark .ag-date-time-list-page-entry-is-current,
|
|
12919
12984
|
.ag-theme-alpine-auto-dark .ag-date-time-list-page-entry-is-current {
|
|
@@ -12925,6 +12990,24 @@
|
|
|
12925
12990
|
padding: var(--ag-grid-size);
|
|
12926
12991
|
font-weight: 600;
|
|
12927
12992
|
}
|
|
12993
|
+
.ag-theme-alpine .ag-list-item-hovered::after,
|
|
12994
|
+
.ag-theme-alpine-dark .ag-list-item-hovered::after,
|
|
12995
|
+
.ag-theme-alpine-auto-dark .ag-list-item-hovered::after {
|
|
12996
|
+
background-color: var(--ag-alpine-active-color);
|
|
12997
|
+
}
|
|
12998
|
+
.ag-theme-alpine .ag-pill .ag-pill-button:hover,
|
|
12999
|
+
.ag-theme-alpine-dark .ag-pill .ag-pill-button:hover,
|
|
13000
|
+
.ag-theme-alpine-auto-dark .ag-pill .ag-pill-button:hover {
|
|
13001
|
+
color: var(--ag-alpine-active-color);
|
|
13002
|
+
}
|
|
13003
|
+
.ag-theme-alpine .ag-header-highlight-before::after,
|
|
13004
|
+
.ag-theme-alpine .ag-header-highlight-after::after,
|
|
13005
|
+
.ag-theme-alpine-dark .ag-header-highlight-before::after,
|
|
13006
|
+
.ag-theme-alpine-dark .ag-header-highlight-after::after,
|
|
13007
|
+
.ag-theme-alpine-auto-dark .ag-header-highlight-before::after,
|
|
13008
|
+
.ag-theme-alpine-auto-dark .ag-header-highlight-after::after {
|
|
13009
|
+
background-color: var(--ag-alpine-active-color);
|
|
13010
|
+
}
|
|
12928
13011
|
|
|
12929
13012
|
}
|
|
12930
13013
|
@else if $file == "ag-theme-alpine.css" {
|
|
@@ -13477,11 +13560,6 @@
|
|
|
13477
13560
|
.ag-theme-alpine-auto-dark .ag-layout-print .ag-center-cols-container {
|
|
13478
13561
|
min-height: 150px;
|
|
13479
13562
|
}
|
|
13480
|
-
.ag-theme-alpine .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
|
|
13481
|
-
.ag-theme-alpine-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
|
|
13482
|
-
.ag-theme-alpine-auto-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height {
|
|
13483
|
-
padding-top: 60px;
|
|
13484
|
-
}
|
|
13485
13563
|
.ag-theme-alpine .ag-date-time-list-page-entry-is-current,
|
|
13486
13564
|
.ag-theme-alpine-dark .ag-date-time-list-page-entry-is-current,
|
|
13487
13565
|
.ag-theme-alpine-auto-dark .ag-date-time-list-page-entry-is-current {
|
|
@@ -13493,6 +13571,24 @@
|
|
|
13493
13571
|
padding: var(--ag-grid-size);
|
|
13494
13572
|
font-weight: 600;
|
|
13495
13573
|
}
|
|
13574
|
+
.ag-theme-alpine .ag-list-item-hovered::after,
|
|
13575
|
+
.ag-theme-alpine-dark .ag-list-item-hovered::after,
|
|
13576
|
+
.ag-theme-alpine-auto-dark .ag-list-item-hovered::after {
|
|
13577
|
+
background-color: var(--ag-alpine-active-color);
|
|
13578
|
+
}
|
|
13579
|
+
.ag-theme-alpine .ag-pill .ag-pill-button:hover,
|
|
13580
|
+
.ag-theme-alpine-dark .ag-pill .ag-pill-button:hover,
|
|
13581
|
+
.ag-theme-alpine-auto-dark .ag-pill .ag-pill-button:hover {
|
|
13582
|
+
color: var(--ag-alpine-active-color);
|
|
13583
|
+
}
|
|
13584
|
+
.ag-theme-alpine .ag-header-highlight-before::after,
|
|
13585
|
+
.ag-theme-alpine .ag-header-highlight-after::after,
|
|
13586
|
+
.ag-theme-alpine-dark .ag-header-highlight-before::after,
|
|
13587
|
+
.ag-theme-alpine-dark .ag-header-highlight-after::after,
|
|
13588
|
+
.ag-theme-alpine-auto-dark .ag-header-highlight-before::after,
|
|
13589
|
+
.ag-theme-alpine-auto-dark .ag-header-highlight-after::after {
|
|
13590
|
+
background-color: var(--ag-alpine-active-color);
|
|
13591
|
+
}
|
|
13496
13592
|
|
|
13497
13593
|
}
|
|
13498
13594
|
@else if $file == "ag-theme-balham-no-font.css" {
|
|
@@ -13830,6 +13926,24 @@
|
|
|
13830
13926
|
.ag-theme-balham-auto-dark .ag-color-input input[class^=ag-][type=text].ag-input-field-input {
|
|
13831
13927
|
min-height: calc(var(--ag-icon-size) + 4px);
|
|
13832
13928
|
}
|
|
13929
|
+
.ag-theme-balham .ag-list-item-hovered::after,
|
|
13930
|
+
.ag-theme-balham-dark .ag-list-item-hovered::after,
|
|
13931
|
+
.ag-theme-balham-auto-dark .ag-list-item-hovered::after {
|
|
13932
|
+
background-color: var(--ag-balham-active-color);
|
|
13933
|
+
}
|
|
13934
|
+
.ag-theme-balham .ag-pill .ag-pill-button:hover,
|
|
13935
|
+
.ag-theme-balham-dark .ag-pill .ag-pill-button:hover,
|
|
13936
|
+
.ag-theme-balham-auto-dark .ag-pill .ag-pill-button:hover {
|
|
13937
|
+
color: var(--ag-balham-active-color);
|
|
13938
|
+
}
|
|
13939
|
+
.ag-theme-balham .ag-header-highlight-before::after,
|
|
13940
|
+
.ag-theme-balham .ag-header-highlight-after::after,
|
|
13941
|
+
.ag-theme-balham-dark .ag-header-highlight-before::after,
|
|
13942
|
+
.ag-theme-balham-dark .ag-header-highlight-after::after,
|
|
13943
|
+
.ag-theme-balham-auto-dark .ag-header-highlight-before::after,
|
|
13944
|
+
.ag-theme-balham-auto-dark .ag-header-highlight-after::after {
|
|
13945
|
+
background-color: var(--ag-balham-active-color);
|
|
13946
|
+
}
|
|
13833
13947
|
|
|
13834
13948
|
}
|
|
13835
13949
|
@else if $file == "ag-theme-balham.css" {
|
|
@@ -14173,6 +14287,24 @@
|
|
|
14173
14287
|
.ag-theme-balham-auto-dark .ag-color-input input[class^=ag-][type=text].ag-input-field-input {
|
|
14174
14288
|
min-height: calc(var(--ag-icon-size) + 4px);
|
|
14175
14289
|
}
|
|
14290
|
+
.ag-theme-balham .ag-list-item-hovered::after,
|
|
14291
|
+
.ag-theme-balham-dark .ag-list-item-hovered::after,
|
|
14292
|
+
.ag-theme-balham-auto-dark .ag-list-item-hovered::after {
|
|
14293
|
+
background-color: var(--ag-balham-active-color);
|
|
14294
|
+
}
|
|
14295
|
+
.ag-theme-balham .ag-pill .ag-pill-button:hover,
|
|
14296
|
+
.ag-theme-balham-dark .ag-pill .ag-pill-button:hover,
|
|
14297
|
+
.ag-theme-balham-auto-dark .ag-pill .ag-pill-button:hover {
|
|
14298
|
+
color: var(--ag-balham-active-color);
|
|
14299
|
+
}
|
|
14300
|
+
.ag-theme-balham .ag-header-highlight-before::after,
|
|
14301
|
+
.ag-theme-balham .ag-header-highlight-after::after,
|
|
14302
|
+
.ag-theme-balham-dark .ag-header-highlight-before::after,
|
|
14303
|
+
.ag-theme-balham-dark .ag-header-highlight-after::after,
|
|
14304
|
+
.ag-theme-balham-auto-dark .ag-header-highlight-before::after,
|
|
14305
|
+
.ag-theme-balham-auto-dark .ag-header-highlight-after::after {
|
|
14306
|
+
background-color: var(--ag-balham-active-color);
|
|
14307
|
+
}
|
|
14176
14308
|
|
|
14177
14309
|
}
|
|
14178
14310
|
@else if $file == "ag-theme-material-no-font.css" {
|
|
@@ -14513,13 +14645,35 @@
|
|
|
14513
14645
|
color: var(--ag-foreground-color);
|
|
14514
14646
|
font-family: inherit;
|
|
14515
14647
|
font-size: inherit;
|
|
14516
|
-
height: calc(var(--ag-grid-size) * 5);
|
|
14517
14648
|
padding-bottom: var(--ag-grid-size);
|
|
14518
14649
|
border-width: 0;
|
|
14519
14650
|
border-radius: 0;
|
|
14520
14651
|
border-bottom: 2px solid;
|
|
14521
14652
|
border-bottom-color: var(--ag-border-color);
|
|
14522
14653
|
}
|
|
14654
|
+
.ag-theme-material input[class^=ag-]:not([type]):not(textarea),
|
|
14655
|
+
.ag-theme-material input[class^=ag-][type=text]:not(textarea),
|
|
14656
|
+
.ag-theme-material input[class^=ag-][type=number]:not(textarea),
|
|
14657
|
+
.ag-theme-material input[class^=ag-][type=tel]:not(textarea),
|
|
14658
|
+
.ag-theme-material input[class^=ag-][type=date]:not(textarea),
|
|
14659
|
+
.ag-theme-material input[class^=ag-][type=datetime-local]:not(textarea),
|
|
14660
|
+
.ag-theme-material textarea[class^=ag-]:not(textarea),
|
|
14661
|
+
.ag-theme-material-dark input[class^=ag-]:not([type]):not(textarea),
|
|
14662
|
+
.ag-theme-material-dark input[class^=ag-][type=text]:not(textarea),
|
|
14663
|
+
.ag-theme-material-dark input[class^=ag-][type=number]:not(textarea),
|
|
14664
|
+
.ag-theme-material-dark input[class^=ag-][type=tel]:not(textarea),
|
|
14665
|
+
.ag-theme-material-dark input[class^=ag-][type=date]:not(textarea),
|
|
14666
|
+
.ag-theme-material-dark input[class^=ag-][type=datetime-local]:not(textarea),
|
|
14667
|
+
.ag-theme-material-dark textarea[class^=ag-]:not(textarea),
|
|
14668
|
+
.ag-theme-material-auto-dark input[class^=ag-]:not([type]):not(textarea),
|
|
14669
|
+
.ag-theme-material-auto-dark input[class^=ag-][type=text]:not(textarea),
|
|
14670
|
+
.ag-theme-material-auto-dark input[class^=ag-][type=number]:not(textarea),
|
|
14671
|
+
.ag-theme-material-auto-dark input[class^=ag-][type=tel]:not(textarea),
|
|
14672
|
+
.ag-theme-material-auto-dark input[class^=ag-][type=date]:not(textarea),
|
|
14673
|
+
.ag-theme-material-auto-dark input[class^=ag-][type=datetime-local]:not(textarea),
|
|
14674
|
+
.ag-theme-material-auto-dark textarea[class^=ag-]:not(textarea) {
|
|
14675
|
+
height: calc(var(--ag-grid-size) * 5);
|
|
14676
|
+
}
|
|
14523
14677
|
.ag-theme-material input[class^=ag-]:not([type]):focus,
|
|
14524
14678
|
.ag-theme-material input[class^=ag-][type=text]:focus,
|
|
14525
14679
|
.ag-theme-material input[class^=ag-][type=number]:focus,
|
|
@@ -14677,11 +14831,6 @@
|
|
|
14677
14831
|
.ag-theme-material-auto-dark .ag-layout-print .ag-center-cols-container {
|
|
14678
14832
|
min-height: 150px;
|
|
14679
14833
|
}
|
|
14680
|
-
.ag-theme-material .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
|
|
14681
|
-
.ag-theme-material-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
|
|
14682
|
-
.ag-theme-material-auto-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height {
|
|
14683
|
-
padding-top: 60px;
|
|
14684
|
-
}
|
|
14685
14834
|
.ag-theme-material .ag-picker-field-wrapper:focus-within,
|
|
14686
14835
|
.ag-theme-material-dark .ag-picker-field-wrapper:focus-within,
|
|
14687
14836
|
.ag-theme-material-auto-dark .ag-picker-field-wrapper:focus-within {
|
|
@@ -14702,6 +14851,24 @@
|
|
|
14702
14851
|
.ag-theme-material-auto-dark .ag-filter-active .ag-icon-filter {
|
|
14703
14852
|
color: var(--ag-material-accent-color);
|
|
14704
14853
|
}
|
|
14854
|
+
.ag-theme-material .ag-list-item-hovered::after,
|
|
14855
|
+
.ag-theme-material-dark .ag-list-item-hovered::after,
|
|
14856
|
+
.ag-theme-material-auto-dark .ag-list-item-hovered::after {
|
|
14857
|
+
background-color: var(--ag-material-primary-color);
|
|
14858
|
+
}
|
|
14859
|
+
.ag-theme-material .ag-pill .ag-pill-button:hover,
|
|
14860
|
+
.ag-theme-material-dark .ag-pill .ag-pill-button:hover,
|
|
14861
|
+
.ag-theme-material-auto-dark .ag-pill .ag-pill-button:hover {
|
|
14862
|
+
color: var(--ag-material-primary-color);
|
|
14863
|
+
}
|
|
14864
|
+
.ag-theme-material .ag-header-highlight-before::after,
|
|
14865
|
+
.ag-theme-material .ag-header-highlight-after::after,
|
|
14866
|
+
.ag-theme-material-dark .ag-header-highlight-before::after,
|
|
14867
|
+
.ag-theme-material-dark .ag-header-highlight-after::after,
|
|
14868
|
+
.ag-theme-material-auto-dark .ag-header-highlight-before::after,
|
|
14869
|
+
.ag-theme-material-auto-dark .ag-header-highlight-after::after {
|
|
14870
|
+
background-color: var(--ag-material-primary-color);
|
|
14871
|
+
}
|
|
14705
14872
|
|
|
14706
14873
|
}
|
|
14707
14874
|
@else if $file == "ag-theme-material.css" {
|
|
@@ -15048,13 +15215,35 @@
|
|
|
15048
15215
|
color: var(--ag-foreground-color);
|
|
15049
15216
|
font-family: inherit;
|
|
15050
15217
|
font-size: inherit;
|
|
15051
|
-
height: calc(var(--ag-grid-size) * 5);
|
|
15052
15218
|
padding-bottom: var(--ag-grid-size);
|
|
15053
15219
|
border-width: 0;
|
|
15054
15220
|
border-radius: 0;
|
|
15055
15221
|
border-bottom: 2px solid;
|
|
15056
15222
|
border-bottom-color: var(--ag-border-color);
|
|
15057
15223
|
}
|
|
15224
|
+
.ag-theme-material input[class^=ag-]:not([type]):not(textarea),
|
|
15225
|
+
.ag-theme-material input[class^=ag-][type=text]:not(textarea),
|
|
15226
|
+
.ag-theme-material input[class^=ag-][type=number]:not(textarea),
|
|
15227
|
+
.ag-theme-material input[class^=ag-][type=tel]:not(textarea),
|
|
15228
|
+
.ag-theme-material input[class^=ag-][type=date]:not(textarea),
|
|
15229
|
+
.ag-theme-material input[class^=ag-][type=datetime-local]:not(textarea),
|
|
15230
|
+
.ag-theme-material textarea[class^=ag-]:not(textarea),
|
|
15231
|
+
.ag-theme-material-dark input[class^=ag-]:not([type]):not(textarea),
|
|
15232
|
+
.ag-theme-material-dark input[class^=ag-][type=text]:not(textarea),
|
|
15233
|
+
.ag-theme-material-dark input[class^=ag-][type=number]:not(textarea),
|
|
15234
|
+
.ag-theme-material-dark input[class^=ag-][type=tel]:not(textarea),
|
|
15235
|
+
.ag-theme-material-dark input[class^=ag-][type=date]:not(textarea),
|
|
15236
|
+
.ag-theme-material-dark input[class^=ag-][type=datetime-local]:not(textarea),
|
|
15237
|
+
.ag-theme-material-dark textarea[class^=ag-]:not(textarea),
|
|
15238
|
+
.ag-theme-material-auto-dark input[class^=ag-]:not([type]):not(textarea),
|
|
15239
|
+
.ag-theme-material-auto-dark input[class^=ag-][type=text]:not(textarea),
|
|
15240
|
+
.ag-theme-material-auto-dark input[class^=ag-][type=number]:not(textarea),
|
|
15241
|
+
.ag-theme-material-auto-dark input[class^=ag-][type=tel]:not(textarea),
|
|
15242
|
+
.ag-theme-material-auto-dark input[class^=ag-][type=date]:not(textarea),
|
|
15243
|
+
.ag-theme-material-auto-dark input[class^=ag-][type=datetime-local]:not(textarea),
|
|
15244
|
+
.ag-theme-material-auto-dark textarea[class^=ag-]:not(textarea) {
|
|
15245
|
+
height: calc(var(--ag-grid-size) * 5);
|
|
15246
|
+
}
|
|
15058
15247
|
.ag-theme-material input[class^=ag-]:not([type]):focus,
|
|
15059
15248
|
.ag-theme-material input[class^=ag-][type=text]:focus,
|
|
15060
15249
|
.ag-theme-material input[class^=ag-][type=number]:focus,
|
|
@@ -15212,11 +15401,6 @@
|
|
|
15212
15401
|
.ag-theme-material-auto-dark .ag-layout-print .ag-center-cols-container {
|
|
15213
15402
|
min-height: 150px;
|
|
15214
15403
|
}
|
|
15215
|
-
.ag-theme-material .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
|
|
15216
|
-
.ag-theme-material-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
|
|
15217
|
-
.ag-theme-material-auto-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height {
|
|
15218
|
-
padding-top: 60px;
|
|
15219
|
-
}
|
|
15220
15404
|
.ag-theme-material .ag-picker-field-wrapper:focus-within,
|
|
15221
15405
|
.ag-theme-material-dark .ag-picker-field-wrapper:focus-within,
|
|
15222
15406
|
.ag-theme-material-auto-dark .ag-picker-field-wrapper:focus-within {
|
|
@@ -15237,6 +15421,24 @@
|
|
|
15237
15421
|
.ag-theme-material-auto-dark .ag-filter-active .ag-icon-filter {
|
|
15238
15422
|
color: var(--ag-material-accent-color);
|
|
15239
15423
|
}
|
|
15424
|
+
.ag-theme-material .ag-list-item-hovered::after,
|
|
15425
|
+
.ag-theme-material-dark .ag-list-item-hovered::after,
|
|
15426
|
+
.ag-theme-material-auto-dark .ag-list-item-hovered::after {
|
|
15427
|
+
background-color: var(--ag-material-primary-color);
|
|
15428
|
+
}
|
|
15429
|
+
.ag-theme-material .ag-pill .ag-pill-button:hover,
|
|
15430
|
+
.ag-theme-material-dark .ag-pill .ag-pill-button:hover,
|
|
15431
|
+
.ag-theme-material-auto-dark .ag-pill .ag-pill-button:hover {
|
|
15432
|
+
color: var(--ag-material-primary-color);
|
|
15433
|
+
}
|
|
15434
|
+
.ag-theme-material .ag-header-highlight-before::after,
|
|
15435
|
+
.ag-theme-material .ag-header-highlight-after::after,
|
|
15436
|
+
.ag-theme-material-dark .ag-header-highlight-before::after,
|
|
15437
|
+
.ag-theme-material-dark .ag-header-highlight-after::after,
|
|
15438
|
+
.ag-theme-material-auto-dark .ag-header-highlight-before::after,
|
|
15439
|
+
.ag-theme-material-auto-dark .ag-header-highlight-after::after {
|
|
15440
|
+
background-color: var(--ag-material-primary-color);
|
|
15441
|
+
}
|
|
15240
15442
|
|
|
15241
15443
|
}
|
|
15242
15444
|
@else if $file == "ag-theme-quartz-no-font.css" {
|
|
@@ -15491,11 +15693,6 @@
|
|
|
15491
15693
|
background-color: var(--ag-control-panel-background-color);
|
|
15492
15694
|
color: color-mix(in srgb, transparent, var(--ag-foreground-color) 95%);
|
|
15493
15695
|
}
|
|
15494
|
-
.ag-theme-quartz .ag-menu-option .ag-icon,
|
|
15495
|
-
.ag-theme-quartz-dark .ag-menu-option .ag-icon,
|
|
15496
|
-
.ag-theme-quartz-auto-dark .ag-menu-option .ag-icon {
|
|
15497
|
-
opacity: 65%;
|
|
15498
|
-
}
|
|
15499
15696
|
.ag-theme-quartz .ag-menu-header,
|
|
15500
15697
|
.ag-theme-quartz-dark .ag-menu-header,
|
|
15501
15698
|
.ag-theme-quartz-auto-dark .ag-menu-header {
|
|
@@ -16249,11 +16446,6 @@
|
|
|
16249
16446
|
.ag-theme-quartz-auto-dark .ag-layout-print .ag-center-cols-container {
|
|
16250
16447
|
min-height: 150px;
|
|
16251
16448
|
}
|
|
16252
|
-
.ag-theme-quartz .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
|
|
16253
|
-
.ag-theme-quartz-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
|
|
16254
|
-
.ag-theme-quartz-auto-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height {
|
|
16255
|
-
padding-top: 60px;
|
|
16256
|
-
}
|
|
16257
16449
|
.ag-theme-quartz .ag-date-time-list-page-entry-is-current,
|
|
16258
16450
|
.ag-theme-quartz-dark .ag-date-time-list-page-entry-is-current,
|
|
16259
16451
|
.ag-theme-quartz-auto-dark .ag-date-time-list-page-entry-is-current {
|
|
@@ -16371,6 +16563,24 @@
|
|
|
16371
16563
|
.ag-theme-quartz-auto-dark .ag-details-row {
|
|
16372
16564
|
padding: calc(var(--ag-grid-size) * 3.75);
|
|
16373
16565
|
}
|
|
16566
|
+
.ag-theme-quartz .ag-list-item-hovered::after,
|
|
16567
|
+
.ag-theme-quartz-dark .ag-list-item-hovered::after,
|
|
16568
|
+
.ag-theme-quartz-auto-dark .ag-list-item-hovered::after {
|
|
16569
|
+
background-color: var(--ag-active-color);
|
|
16570
|
+
}
|
|
16571
|
+
.ag-theme-quartz .ag-pill .ag-pill-button:hover,
|
|
16572
|
+
.ag-theme-quartz-dark .ag-pill .ag-pill-button:hover,
|
|
16573
|
+
.ag-theme-quartz-auto-dark .ag-pill .ag-pill-button:hover {
|
|
16574
|
+
color: var(--ag-active-color);
|
|
16575
|
+
}
|
|
16576
|
+
.ag-theme-quartz .ag-header-highlight-before::after,
|
|
16577
|
+
.ag-theme-quartz .ag-header-highlight-after::after,
|
|
16578
|
+
.ag-theme-quartz-dark .ag-header-highlight-before::after,
|
|
16579
|
+
.ag-theme-quartz-dark .ag-header-highlight-after::after,
|
|
16580
|
+
.ag-theme-quartz-auto-dark .ag-header-highlight-before::after,
|
|
16581
|
+
.ag-theme-quartz-auto-dark .ag-header-highlight-after::after {
|
|
16582
|
+
background-color: var(--ag-active-color);
|
|
16583
|
+
}
|
|
16374
16584
|
|
|
16375
16585
|
.ag-theme-quartz-dark .ag-column-select-header-filter-wrapper .ag-input-wrapper::before,
|
|
16376
16586
|
.ag-theme-quartz-dark .ag-filter-toolpanel-search .ag-input-wrapper::before,
|
|
@@ -16646,11 +16856,6 @@
|
|
|
16646
16856
|
background-color: var(--ag-control-panel-background-color);
|
|
16647
16857
|
color: color-mix(in srgb, transparent, var(--ag-foreground-color) 95%);
|
|
16648
16858
|
}
|
|
16649
|
-
.ag-theme-quartz .ag-menu-option .ag-icon,
|
|
16650
|
-
.ag-theme-quartz-dark .ag-menu-option .ag-icon,
|
|
16651
|
-
.ag-theme-quartz-auto-dark .ag-menu-option .ag-icon {
|
|
16652
|
-
opacity: 65%;
|
|
16653
|
-
}
|
|
16654
16859
|
.ag-theme-quartz .ag-menu-header,
|
|
16655
16860
|
.ag-theme-quartz-dark .ag-menu-header,
|
|
16656
16861
|
.ag-theme-quartz-auto-dark .ag-menu-header {
|
|
@@ -17404,11 +17609,6 @@
|
|
|
17404
17609
|
.ag-theme-quartz-auto-dark .ag-layout-print .ag-center-cols-container {
|
|
17405
17610
|
min-height: 150px;
|
|
17406
17611
|
}
|
|
17407
|
-
.ag-theme-quartz .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
|
|
17408
|
-
.ag-theme-quartz-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
|
|
17409
|
-
.ag-theme-quartz-auto-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height {
|
|
17410
|
-
padding-top: 60px;
|
|
17411
|
-
}
|
|
17412
17612
|
.ag-theme-quartz .ag-date-time-list-page-entry-is-current,
|
|
17413
17613
|
.ag-theme-quartz-dark .ag-date-time-list-page-entry-is-current,
|
|
17414
17614
|
.ag-theme-quartz-auto-dark .ag-date-time-list-page-entry-is-current {
|
|
@@ -17526,6 +17726,24 @@
|
|
|
17526
17726
|
.ag-theme-quartz-auto-dark .ag-details-row {
|
|
17527
17727
|
padding: calc(var(--ag-grid-size) * 3.75);
|
|
17528
17728
|
}
|
|
17729
|
+
.ag-theme-quartz .ag-list-item-hovered::after,
|
|
17730
|
+
.ag-theme-quartz-dark .ag-list-item-hovered::after,
|
|
17731
|
+
.ag-theme-quartz-auto-dark .ag-list-item-hovered::after {
|
|
17732
|
+
background-color: var(--ag-active-color);
|
|
17733
|
+
}
|
|
17734
|
+
.ag-theme-quartz .ag-pill .ag-pill-button:hover,
|
|
17735
|
+
.ag-theme-quartz-dark .ag-pill .ag-pill-button:hover,
|
|
17736
|
+
.ag-theme-quartz-auto-dark .ag-pill .ag-pill-button:hover {
|
|
17737
|
+
color: var(--ag-active-color);
|
|
17738
|
+
}
|
|
17739
|
+
.ag-theme-quartz .ag-header-highlight-before::after,
|
|
17740
|
+
.ag-theme-quartz .ag-header-highlight-after::after,
|
|
17741
|
+
.ag-theme-quartz-dark .ag-header-highlight-before::after,
|
|
17742
|
+
.ag-theme-quartz-dark .ag-header-highlight-after::after,
|
|
17743
|
+
.ag-theme-quartz-auto-dark .ag-header-highlight-before::after,
|
|
17744
|
+
.ag-theme-quartz-auto-dark .ag-header-highlight-after::after {
|
|
17745
|
+
background-color: var(--ag-active-color);
|
|
17746
|
+
}
|
|
17529
17747
|
|
|
17530
17748
|
.ag-theme-quartz-dark .ag-column-select-header-filter-wrapper .ag-input-wrapper::before,
|
|
17531
17749
|
.ag-theme-quartz-dark .ag-filter-toolpanel-search .ag-input-wrapper::before,
|