@@ -922,18 +922,26 @@ describe('CdkTable', () => {
922
922
undefined ,
923
923
headerRows [ 2 ] . getBoundingClientRect ( ) . height ,
924
924
] ,
925
+ offsets : [
926
+ 0 ,
927
+ undefined ,
928
+ headerRows [ 0 ] . getBoundingClientRect ( ) . height ,
929
+ ] ,
925
930
elements : [ [ headerRows [ 0 ] ] , undefined , [ headerRows [ 2 ] ] ] ,
926
931
} ) ;
927
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
932
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
933
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
928
934
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
929
935
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
930
936
931
937
component . stickyHeaders = [ ] ;
932
938
fixture . detectChanges ( ) ;
933
939
flushMicrotasks ( ) ;
934
940
expectNoStickyStyles ( headerRows ) ;
935
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
936
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
941
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
942
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
943
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
944
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
937
945
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
938
946
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
939
947
} ) ) ;
@@ -949,13 +957,15 @@ describe('CdkTable', () => {
949
957
expectNoStickyStyles ( [ footerRows [ 1 ] ] ) ;
950
958
expectStickyStyles ( footerRows [ 2 ] , '10' , { bottom : '0px' } ) ;
951
959
expectStickyBorderClass ( footerRows [ 2 ] ) ;
952
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
960
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
961
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
953
962
expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( {
954
963
sizes : [
955
964
footerRows [ 2 ] . getBoundingClientRect ( ) . height ,
956
965
undefined ,
957
966
footerRows [ 0 ] . getBoundingClientRect ( ) . height ,
958
967
] ,
968
+ offsets : [ 0 , undefined , footerRows [ 0 ] . getBoundingClientRect ( ) . height ] ,
959
969
elements : [ [ footerRows [ 2 ] ] , undefined , [ footerRows [ 0 ] ] ] ,
960
970
} ) ;
961
971
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
@@ -965,8 +975,10 @@ describe('CdkTable', () => {
965
975
fixture . detectChanges ( ) ;
966
976
flushMicrotasks ( ) ;
967
977
expectNoStickyStyles ( footerRows ) ;
968
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
969
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
978
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
979
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
980
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
981
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
970
982
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
971
983
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
972
984
} ) ) ;
@@ -1010,8 +1022,10 @@ describe('CdkTable', () => {
1010
1022
expectStickyBorderClass ( cells [ 2 ] , { left : true } ) ;
1011
1023
expectNoStickyStyles ( [ cells [ 1 ] , cells [ 3 ] , cells [ 4 ] , cells [ 5 ] ] ) ;
1012
1024
} ) ;
1013
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1014
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1025
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1026
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1027
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1028
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1015
1029
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( {
1016
1030
sizes : [
1017
1031
getCells ( dataRows [ 0 ] ) [ 0 ] . getBoundingClientRect ( ) . width ,
@@ -1028,8 +1042,10 @@ describe('CdkTable', () => {
1028
1042
headerRows . forEach ( row => expectNoStickyStyles ( getHeaderCells ( row ) ) ) ;
1029
1043
dataRows . forEach ( row => expectNoStickyStyles ( getCells ( row ) ) ) ;
1030
1044
footerRows . forEach ( row => expectNoStickyStyles ( getFooterCells ( row ) ) ) ;
1031
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1032
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1045
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1046
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1047
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1048
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1033
1049
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1034
1050
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1035
1051
} ) ) ;
@@ -1063,8 +1079,10 @@ describe('CdkTable', () => {
1063
1079
expectStickyBorderClass ( cells [ 3 ] , { right : true } ) ;
1064
1080
expectNoStickyStyles ( [ cells [ 0 ] , cells [ 1 ] , cells [ 2 ] , cells [ 4 ] ] ) ;
1065
1081
} ) ;
1066
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1067
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1082
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1083
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1084
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1085
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1068
1086
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1069
1087
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( {
1070
1088
sizes : [
@@ -1080,8 +1098,10 @@ describe('CdkTable', () => {
1080
1098
headerRows . forEach ( row => expectNoStickyStyles ( getHeaderCells ( row ) ) ) ;
1081
1099
dataRows . forEach ( row => expectNoStickyStyles ( getCells ( row ) ) ) ;
1082
1100
footerRows . forEach ( row => expectNoStickyStyles ( getFooterCells ( row ) ) ) ;
1083
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1084
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1101
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1102
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1103
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1104
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1085
1105
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1086
1106
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1087
1107
} ) ) ;
@@ -1169,10 +1189,12 @@ describe('CdkTable', () => {
1169
1189
1170
1190
expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( {
1171
1191
sizes : [ headerRows [ 0 ] . getBoundingClientRect ( ) . height ] ,
1192
+ offsets : [ 0 ] ,
1172
1193
elements : [ [ headerRows [ 0 ] ] ] ,
1173
1194
} ) ;
1174
1195
expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( {
1175
1196
sizes : [ footerRows [ 2 ] . getBoundingClientRect ( ) . height ] ,
1197
+ offsets : [ 0 ] ,
1176
1198
elements : [ [ footerRows [ 2 ] ] ] ,
1177
1199
} ) ;
1178
1200
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( {
@@ -1193,8 +1215,10 @@ describe('CdkTable', () => {
1193
1215
dataRows . forEach ( row => expectNoStickyStyles ( [ row , ...getCells ( row ) ] ) ) ;
1194
1216
footerRows . forEach ( row => expectNoStickyStyles ( [ row , ...getFooterCells ( row ) ] ) ) ;
1195
1217
1196
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1197
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1218
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1219
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1220
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1221
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1198
1222
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1199
1223
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1200
1224
} ) ) ;
@@ -1235,9 +1259,15 @@ describe('CdkTable', () => {
1235
1259
undefined ,
1236
1260
headerRows [ 2 ] . getBoundingClientRect ( ) . height ,
1237
1261
] ,
1262
+ offsets : [
1263
+ 0 ,
1264
+ undefined ,
1265
+ headerRows [ 0 ] . getBoundingClientRect ( ) . height ,
1266
+ ] ,
1238
1267
elements : [ getHeaderCells ( headerRows [ 0 ] ) , undefined , getHeaderCells ( headerRows [ 2 ] ) ] ,
1239
1268
} ) ;
1240
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1269
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1270
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1241
1271
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1242
1272
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1243
1273
@@ -1246,8 +1276,10 @@ describe('CdkTable', () => {
1246
1276
flushMicrotasks ( ) ;
1247
1277
expectNoStickyStyles ( headerRows ) ; // No sticky styles on rows for native table
1248
1278
headerRows . forEach ( row => expectNoStickyStyles ( getHeaderCells ( row ) ) ) ;
1249
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1250
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1279
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1280
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1281
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1282
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1251
1283
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1252
1284
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1253
1285
} ) ) ;
@@ -1268,13 +1300,19 @@ describe('CdkTable', () => {
1268
1300
} ) ;
1269
1301
expectNoStickyStyles ( getFooterCells ( footerRows [ 1 ] ) ) ;
1270
1302
expectNoStickyStyles ( footerRows ) ; // No sticky styles on rows for native table
1271
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1303
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1304
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1272
1305
expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( {
1273
1306
sizes : [
1274
1307
footerRows [ 2 ] . getBoundingClientRect ( ) . height ,
1275
1308
undefined ,
1276
1309
footerRows [ 0 ] . getBoundingClientRect ( ) . height ,
1277
1310
] ,
1311
+ offsets : [
1312
+ 0 ,
1313
+ undefined ,
1314
+ footerRows [ 2 ] . getBoundingClientRect ( ) . height ,
1315
+ ] ,
1278
1316
elements : [ getFooterCells ( footerRows [ 2 ] ) , undefined , getFooterCells ( footerRows [ 0 ] ) ] ,
1279
1317
} ) ;
1280
1318
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
@@ -1285,8 +1323,10 @@ describe('CdkTable', () => {
1285
1323
flushMicrotasks ( ) ;
1286
1324
expectNoStickyStyles ( footerRows ) ; // No sticky styles on rows for native table
1287
1325
footerRows . forEach ( row => expectNoStickyStyles ( getFooterCells ( row ) ) ) ;
1288
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1289
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1326
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1327
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1328
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1329
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1290
1330
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1291
1331
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1292
1332
} ) ) ;
@@ -1339,8 +1379,10 @@ describe('CdkTable', () => {
1339
1379
expectStickyBorderClass ( cells [ 2 ] , { left : true } ) ;
1340
1380
expectNoStickyStyles ( [ cells [ 1 ] , cells [ 3 ] , cells [ 4 ] , cells [ 5 ] ] ) ;
1341
1381
} ) ;
1342
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1343
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1382
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1383
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1384
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1385
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1344
1386
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( {
1345
1387
sizes : [
1346
1388
getCells ( dataRows [ 0 ] ) [ 0 ] . getBoundingClientRect ( ) . width ,
@@ -1356,8 +1398,10 @@ describe('CdkTable', () => {
1356
1398
headerRows . forEach ( row => expectNoStickyStyles ( getHeaderCells ( row ) ) ) ;
1357
1399
dataRows . forEach ( row => expectNoStickyStyles ( getCells ( row ) ) ) ;
1358
1400
footerRows . forEach ( row => expectNoStickyStyles ( getFooterCells ( row ) ) ) ;
1359
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1360
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1401
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1402
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1403
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1404
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1361
1405
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1362
1406
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1363
1407
} ) ) ;
@@ -1391,8 +1435,10 @@ describe('CdkTable', () => {
1391
1435
expectStickyBorderClass ( cells [ 3 ] , { right : true } ) ;
1392
1436
expectNoStickyStyles ( [ cells [ 0 ] , cells [ 1 ] , cells [ 2 ] , cells [ 4 ] ] ) ;
1393
1437
} ) ;
1394
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1395
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1438
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1439
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1440
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1441
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1396
1442
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1397
1443
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( {
1398
1444
sizes : [
@@ -1408,8 +1454,10 @@ describe('CdkTable', () => {
1408
1454
headerRows . forEach ( row => expectNoStickyStyles ( getHeaderCells ( row ) ) ) ;
1409
1455
dataRows . forEach ( row => expectNoStickyStyles ( getCells ( row ) ) ) ;
1410
1456
footerRows . forEach ( row => expectNoStickyStyles ( getFooterCells ( row ) ) ) ;
1411
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1412
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1457
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1458
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1459
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1460
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1413
1461
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1414
1462
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1415
1463
} ) ) ;
@@ -1464,10 +1512,12 @@ describe('CdkTable', () => {
1464
1512
1465
1513
expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( {
1466
1514
sizes : [ headerRows [ 0 ] . getBoundingClientRect ( ) . height ] ,
1515
+ offsets : [ 0 ] ,
1467
1516
elements : [ getHeaderCells ( headerRows [ 0 ] ) ] ,
1468
1517
} ) ;
1469
1518
expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( {
1470
1519
sizes : [ footerRows [ 2 ] . getBoundingClientRect ( ) . height ] ,
1520
+ offsets : [ 0 ] ,
1471
1521
elements : [ getFooterCells ( footerRows [ 2 ] ) ] ,
1472
1522
} ) ;
1473
1523
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( {
@@ -1488,8 +1538,10 @@ describe('CdkTable', () => {
1488
1538
dataRows . forEach ( row => expectNoStickyStyles ( [ row , ...getCells ( row ) ] ) ) ;
1489
1539
footerRows . forEach ( row => expectNoStickyStyles ( [ row , ...getFooterCells ( row ) ] ) ) ;
1490
1540
1491
- expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1492
- expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual ( { sizes : [ ] , elements : [ ] } ) ;
1541
+ expect ( component . mostRecentStickyHeaderRowsUpdate ) . toEqual (
1542
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1543
+ expect ( component . mostRecentStickyFooterRowsUpdate ) . toEqual (
1544
+ { sizes : [ ] , offsets : [ ] , elements : [ ] } ) ;
1493
1545
expect ( component . mostRecentStickyColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1494
1546
expect ( component . mostRecentStickyEndColumnsUpdate ) . toEqual ( { sizes : [ ] } ) ;
1495
1547
} ) ) ;
0 commit comments