@skyux/ag-grid 11.0.0-alpha.13 → 11.0.0-alpha.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (20) hide show
  1. package/css/sky-ag-grid.css +57 -41
  2. package/documentation.json +1015 -1005
  3. package/esm2022/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.mjs +69 -3
  4. package/esm2022/lib/modules/ag-grid/ag-grid-wrapper.component.mjs +6 -1
  5. package/esm2022/lib/modules/ag-grid/ag-grid.service.mjs +5 -1
  6. package/esm2022/lib/modules/ag-grid/cell-editors/cell-editor-lookup/cell-editor-lookup.component.mjs +1 -1
  7. package/esm2022/lib/modules/ag-grid/cell-editors/cell-editor-lookup/cell-editor-lookup.module.mjs +3 -7
  8. package/esm2022/lib/modules/ag-grid/cell-renderers/cell-renderer-currency/cell-renderer-currency.module.mjs +3 -7
  9. package/esm2022/lib/modules/ag-grid/cell-renderers/cell-renderer-lookup/cell-renderer-lookup.module.mjs +4 -5
  10. package/esm2022/lib/modules/ag-grid/cell-validator/ag-grid-cell-validator.module.mjs +4 -5
  11. package/esm2022/lib/modules/ag-grid/types/cell-class.mjs +2 -1
  12. package/fesm2022/skyux-ag-grid.mjs +186 -118
  13. package/fesm2022/skyux-ag-grid.mjs.map +1 -1
  14. package/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.d.ts +3 -2
  15. package/lib/modules/ag-grid/cell-editors/cell-editor-lookup/cell-editor-lookup.module.d.ts +5 -6
  16. package/lib/modules/ag-grid/cell-renderers/cell-renderer-currency/cell-renderer-currency.module.d.ts +5 -6
  17. package/lib/modules/ag-grid/cell-renderers/cell-renderer-lookup/cell-renderer-lookup.module.d.ts +2 -3
  18. package/lib/modules/ag-grid/cell-validator/ag-grid-cell-validator.module.d.ts +3 -4
  19. package/lib/modules/ag-grid/types/cell-class.d.ts +1 -0
  20. package/package.json +15 -15
@@ -1141,6 +1141,10 @@
1141
1141
  background-color: var(--ag-background-color);
1142
1142
  }
1143
1143
 
1144
+ .ag-sticky-bottom {
1145
+ border-top: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
1146
+ }
1147
+
1144
1148
  .ag-root-wrapper,
1145
1149
  .ag-popup {
1146
1150
  --ag-indentation-level: 0;
@@ -1347,18 +1351,30 @@ ag-grid-aurelia {
1347
1351
  }
1348
1352
 
1349
1353
  .ag-body-viewport,
1350
- .ag-center-cols-viewport {
1354
+ .ag-center-cols-viewport,
1355
+ .ag-header-viewport,
1356
+ .ag-floating-top-viewport,
1357
+ .ag-floating-bottom-viewport,
1358
+ .ag-sticky-top-viewport,
1359
+ .ag-sticky-bottom-viewport {
1360
+ overflow-x: auto;
1351
1361
  -ms-overflow-style: none !important;
1352
1362
  scrollbar-width: none !important;
1353
1363
  }
1354
1364
 
1355
1365
  .ag-body-viewport::-webkit-scrollbar,
1356
- .ag-center-cols-viewport::-webkit-scrollbar {
1366
+ .ag-center-cols-viewport::-webkit-scrollbar,
1367
+ .ag-header-viewport::-webkit-scrollbar,
1368
+ .ag-floating-top-viewport::-webkit-scrollbar,
1369
+ .ag-floating-bottom-viewport::-webkit-scrollbar,
1370
+ .ag-sticky-top-viewport::-webkit-scrollbar,
1371
+ .ag-sticky-bottom-viewport::-webkit-scrollbar {
1357
1372
  display: none !important;
1358
1373
  }
1359
1374
 
1360
1375
  .ag-body-viewport {
1361
1376
  display: flex;
1377
+ overflow-x: hidden;
1362
1378
  }
1363
1379
 
1364
1380
  .ag-body-viewport.ag-layout-normal {
@@ -1366,10 +1382,14 @@ ag-grid-aurelia {
1366
1382
  -webkit-overflow-scrolling: touch;
1367
1383
  }
1368
1384
 
1385
+ .ag-sticky-top-container,
1386
+ .ag-sticky-bottom-container {
1387
+ min-height: 1px;
1388
+ }
1389
+
1369
1390
  .ag-center-cols-viewport {
1370
1391
  min-height: 100%;
1371
1392
  width: 100%;
1372
- overflow-x: auto;
1373
1393
  }
1374
1394
 
1375
1395
  .ag-body-horizontal-scroll-viewport {
@@ -1590,6 +1610,7 @@ ag-grid-aurelia {
1590
1610
  align-items: center;
1591
1611
  position: absolute;
1592
1612
  height: 100%;
1613
+ overflow: hidden;
1593
1614
  }
1594
1615
 
1595
1616
  .ag-header-cell.ag-header-active .ag-header-cell-menu-button,
@@ -1624,7 +1645,6 @@ ag-grid-aurelia {
1624
1645
  .ag-header-group-text {
1625
1646
  overflow: hidden;
1626
1647
  text-overflow: ellipsis;
1627
- white-space: nowrap;
1628
1648
  }
1629
1649
 
1630
1650
  .ag-header-cell-text {
@@ -1633,6 +1653,10 @@ ag-grid-aurelia {
1633
1653
  word-break: break-word;
1634
1654
  }
1635
1655
 
1656
+ .ag-header-group-cell .ag-header-cell-comp-wrapper {
1657
+ display: flex;
1658
+ }
1659
+
1636
1660
  .ag-header-cell:not(.ag-header-cell-auto-height) .ag-header-cell-comp-wrapper {
1637
1661
  height: 100%;
1638
1662
  display: flex;
@@ -2128,6 +2152,12 @@ ag-grid-aurelia {
2128
2152
  position: absolute;
2129
2153
  display: flex;
2130
2154
  width: 100%;
2155
+ overflow: hidden;
2156
+ height: 0px;
2157
+ }
2158
+
2159
+ .ag-sticky-bottom {
2160
+ box-sizing: content-box !important;
2131
2161
  }
2132
2162
 
2133
2163
  .ag-pinned-left-sticky-top,
@@ -2572,6 +2602,10 @@ ag-grid-aurelia {
2572
2602
  align-items: center;
2573
2603
  height: 100%;
2574
2604
  width: 100%;
2605
+ }
2606
+
2607
+ .ag-header-group-cell-label,
2608
+ .ag-cell-label-container {
2575
2609
  padding: 5px 0px;
2576
2610
  }
2577
2611
 
@@ -3902,16 +3936,6 @@ button[class^=ag-]:focus {
3902
3936
  border-bottom: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
3903
3937
  }
3904
3938
 
3905
- .ag-sticky-bottom::after {
3906
- content: "";
3907
- position: absolute;
3908
- top: 0;
3909
- left: 0;
3910
- width: 100%;
3911
- height: 1px;
3912
- border-top: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
3913
- }
3914
-
3915
3939
  .ag-row-highlight-above::after,
3916
3940
  .ag-row-highlight-below::after {
3917
3941
  content: "";
@@ -4085,10 +4109,6 @@ button[class^=ag-]:focus {
4085
4109
  padding: var(--ag-grid-size);
4086
4110
  }
4087
4111
 
4088
- .ag-overlay-no-rows-wrapper.ag-layout-auto-height {
4089
- padding-top: 30px;
4090
- }
4091
-
4092
4112
  .ag-skeleton-container {
4093
4113
  width: 100%;
4094
4114
  height: 100%;
@@ -5410,7 +5430,6 @@ button.ag-side-button-button:focus {
5410
5430
  .ag-chart {
5411
5431
  position: relative;
5412
5432
  display: flex;
5413
- overflow: hidden;
5414
5433
  width: 100%;
5415
5434
  height: 100%;
5416
5435
  }
@@ -5419,13 +5438,11 @@ button.ag-side-button-button:focus {
5419
5438
  position: relative;
5420
5439
  display: flex;
5421
5440
  flex: 1 1 auto;
5422
- overflow: hidden;
5423
5441
  }
5424
5442
 
5425
5443
  .ag-chart-canvas-wrapper {
5426
5444
  position: relative;
5427
5445
  flex: 1 1 auto;
5428
- overflow: hidden;
5429
5446
  }
5430
5447
 
5431
5448
  .ag-chart-menu {
@@ -7195,16 +7212,6 @@ button.ag-side-button-button:focus {
7195
7212
  min-height: 150px;
7196
7213
  }
7197
7214
 
7198
- .ag-theme-alpine .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
7199
- .ag-theme-alpine-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
7200
- .ag-theme-sky-data-entry-grid-modern-dark-compact .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
7201
- .ag-theme-sky-data-entry-grid-modern-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
7202
- .ag-theme-sky-data-grid-modern-dark-compact .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
7203
- .ag-theme-sky-data-grid-modern-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height,
7204
- .ag-theme-alpine-auto-dark .ag-overlay-no-rows-wrapper.ag-layout-auto-height {
7205
- padding-top: 60px;
7206
- }
7207
-
7208
7215
  .ag-theme-alpine .ag-date-time-list-page-entry-is-current,
7209
7216
  .ag-theme-alpine-dark .ag-date-time-list-page-entry-is-current,
7210
7217
  .ag-theme-sky-data-entry-grid-modern-dark-compact .ag-date-time-list-page-entry-is-current,
@@ -8051,16 +8058,17 @@ button.ag-side-button-button:focus {
8051
8058
  .ag-theme-sky-data-entry-grid-modern-dark-compact .ag-scrollbar-invisible.sky-viewkeeper-fixed {
8052
8059
  box-shadow: none;
8053
8060
  }
8054
- .ag-theme-sky-data-grid-default .ag-sticky-bottom::after,
8055
- .ag-theme-sky-data-entry-grid-default .ag-sticky-bottom::after,
8056
- .ag-theme-sky-data-grid-modern-light .ag-sticky-bottom::after,
8057
- .ag-theme-sky-data-entry-grid-modern-light .ag-sticky-bottom::after,
8058
- .ag-theme-sky-data-grid-modern-dark .ag-sticky-bottom::after,
8059
- .ag-theme-sky-data-entry-grid-modern-dark .ag-sticky-bottom::after,
8060
- .ag-theme-sky-data-grid-modern-light-compact .ag-sticky-bottom::after,
8061
- .ag-theme-sky-data-entry-grid-modern-light-compact .ag-sticky-bottom::after,
8062
- .ag-theme-sky-data-grid-modern-dark-compact .ag-sticky-bottom::after,
8063
- .ag-theme-sky-data-entry-grid-modern-dark-compact .ag-sticky-bottom::after {
8061
+ .ag-theme-sky-data-grid-default .ag-sticky-bottom,
8062
+ .ag-theme-sky-data-entry-grid-default .ag-sticky-bottom,
8063
+ .ag-theme-sky-data-grid-modern-light .ag-sticky-bottom,
8064
+ .ag-theme-sky-data-entry-grid-modern-light .ag-sticky-bottom,
8065
+ .ag-theme-sky-data-grid-modern-dark .ag-sticky-bottom,
8066
+ .ag-theme-sky-data-entry-grid-modern-dark .ag-sticky-bottom,
8067
+ .ag-theme-sky-data-grid-modern-light-compact .ag-sticky-bottom,
8068
+ .ag-theme-sky-data-entry-grid-modern-light-compact .ag-sticky-bottom,
8069
+ .ag-theme-sky-data-grid-modern-dark-compact .ag-sticky-bottom,
8070
+ .ag-theme-sky-data-entry-grid-modern-dark-compact .ag-sticky-bottom {
8071
+ background-color: transparent;
8064
8072
  border-color: transparent;
8065
8073
  }
8066
8074
  .ag-theme-sky-data-grid-default .ag-cell.ag-cell-focus a:focus-visible:not(:active),
@@ -8199,6 +8207,14 @@ button.ag-side-button-button:focus {
8199
8207
  border-left-width: 0;
8200
8208
  border-right-width: 0;
8201
8209
  }
8210
+ .ag-theme-sky-data-entry-grid-default .ag-cell.ag-cell-focus.ag-cell-inline-editing.sky-ag-grid-cell-template,
8211
+ .ag-theme-sky-data-entry-grid-modern-light .ag-cell.ag-cell-focus.ag-cell-inline-editing.sky-ag-grid-cell-template,
8212
+ .ag-theme-sky-data-entry-grid-modern-dark .ag-cell.ag-cell-focus.ag-cell-inline-editing.sky-ag-grid-cell-template,
8213
+ .ag-theme-sky-data-entry-grid-modern-light-compact .ag-cell.ag-cell-focus.ag-cell-inline-editing.sky-ag-grid-cell-template,
8214
+ .ag-theme-sky-data-entry-grid-modern-dark-compact .ag-cell.ag-cell-focus.ag-cell-inline-editing.sky-ag-grid-cell-template {
8215
+ padding-left: calc(var(--ag-cell-horizontal-padding) - 1px + var(--ag-row-group-indent-size) * var(--ag-indentation-level));
8216
+ padding-right: calc(var(--ag-cell-horizontal-padding) - 1px);
8217
+ }
8202
8218
  .ag-theme-sky-data-entry-grid-default .ag-cell.ag-cell-focus.ag-cell-inline-editing, .ag-theme-sky-data-entry-grid-default .ag-cell.ag-cell-focus.ag-cell-popup-editing,
8203
8219
  .ag-theme-sky-data-entry-grid-modern-light .ag-cell.ag-cell-focus.ag-cell-inline-editing,
8204
8220
  .ag-theme-sky-data-entry-grid-modern-light .ag-cell.ag-cell-focus.ag-cell-popup-editing,