@skyux/grids 5.0.1 → 5.5.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.
Files changed (100) hide show
  1. package/README.md +6 -4
  2. package/bundles/skyux-grids.umd.js +23 -21
  3. package/documentation.json +241 -98
  4. package/esm2015/index.js +20 -0
  5. package/esm2015/index.js.map +1 -0
  6. package/esm2015/lib/modules/grid/grid-adapter.service.js +84 -0
  7. package/esm2015/lib/modules/grid/grid-adapter.service.js.map +1 -0
  8. package/esm2015/lib/modules/grid/grid-cell.component.js +46 -0
  9. package/esm2015/lib/modules/grid/grid-cell.component.js.map +1 -0
  10. package/esm2015/lib/modules/grid/grid-column.component.js +116 -0
  11. package/esm2015/lib/modules/grid/grid-column.component.js.map +1 -0
  12. package/esm2015/lib/modules/grid/grid-column.model.js +25 -0
  13. package/esm2015/lib/modules/grid/grid-column.model.js.map +1 -0
  14. package/esm2015/lib/modules/grid/grid.component.js +998 -0
  15. package/esm2015/lib/modules/grid/grid.component.js.map +1 -0
  16. package/esm2015/lib/modules/grid/grid.module.js +71 -0
  17. package/esm2015/lib/modules/grid/grid.module.js.map +1 -0
  18. package/esm2015/lib/modules/grid/types/grid-column-alignment.js +2 -0
  19. package/esm2015/lib/modules/grid/types/grid-column-alignment.js.map +1 -0
  20. package/esm2015/lib/modules/grid/types/grid-column-description-model-change.js +2 -0
  21. package/esm2015/lib/modules/grid/types/grid-column-description-model-change.js.map +1 -0
  22. package/esm2015/lib/modules/grid/types/grid-column-heading-model-change.js +2 -0
  23. package/esm2015/lib/modules/grid/types/grid-column-heading-model-change.js.map +1 -0
  24. package/esm2015/lib/modules/grid/types/grid-column-inline-help-popover-model-change.js +2 -0
  25. package/esm2015/lib/modules/grid/types/grid-column-inline-help-popover-model-change.js.map +1 -0
  26. package/esm2015/lib/modules/grid/types/grid-column-width-model-change.js +2 -0
  27. package/esm2015/lib/modules/grid/types/grid-column-width-model-change.js.map +1 -0
  28. package/esm2015/lib/modules/grid/types/grid-message-type.js +20 -0
  29. package/esm2015/lib/modules/grid/types/grid-message-type.js.map +1 -0
  30. package/esm2015/lib/modules/grid/types/grid-message.js +2 -0
  31. package/esm2015/lib/modules/grid/types/grid-message.js.map +1 -0
  32. package/esm2015/lib/modules/grid/types/grid-row-delete-cancel-args.js +2 -0
  33. package/esm2015/lib/modules/grid/types/grid-row-delete-cancel-args.js.map +1 -0
  34. package/esm2015/lib/modules/grid/types/grid-row-delete-config.js +2 -0
  35. package/esm2015/lib/modules/grid/types/grid-row-delete-config.js.map +1 -0
  36. package/esm2015/lib/modules/grid/types/grid-row-delete-confirm-args.js +2 -0
  37. package/esm2015/lib/modules/grid/types/grid-row-delete-confirm-args.js.map +1 -0
  38. package/esm2015/lib/modules/grid/types/grid-row-delete-contents.js +2 -0
  39. package/esm2015/lib/modules/grid/types/grid-row-delete-contents.js.map +1 -0
  40. package/esm2015/lib/modules/grid/types/grid-selected-rows-model-change.js +2 -0
  41. package/esm2015/lib/modules/grid/types/grid-selected-rows-model-change.js.map +1 -0
  42. package/esm2015/lib/modules/grid/types/grid-selected-rows-source.js +12 -0
  43. package/esm2015/lib/modules/grid/types/grid-selected-rows-source.js.map +1 -0
  44. package/esm2015/lib/modules/grid/types/grid-ui-config.js +2 -0
  45. package/esm2015/lib/modules/grid/types/grid-ui-config.js.map +1 -0
  46. package/esm2015/lib/modules/shared/skyux-grids-resources.module.js +45 -0
  47. package/esm2015/lib/modules/shared/skyux-grids-resources.module.js.map +1 -0
  48. package/esm2015/skyux-grids.js +2 -2
  49. package/esm2015/skyux-grids.js.map +1 -0
  50. package/fesm2015/skyux-grids.js +23 -21
  51. package/fesm2015/skyux-grids.js.map +1 -1
  52. package/index.d.ts +17 -0
  53. package/{modules → lib/modules}/grid/grid-adapter.service.d.ts +0 -0
  54. package/{modules → lib/modules}/grid/grid-cell.component.d.ts +0 -0
  55. package/{modules → lib/modules}/grid/grid-column.component.d.ts +2 -1
  56. package/{modules → lib/modules}/grid/grid-column.model.d.ts +0 -0
  57. package/{modules → lib/modules}/grid/grid.component.d.ts +2 -3
  58. package/{modules → lib/modules}/grid/grid.module.d.ts +0 -0
  59. package/{modules → lib/modules}/grid/types/grid-column-alignment.d.ts +0 -0
  60. package/{modules → lib/modules}/grid/types/grid-column-description-model-change.d.ts +0 -0
  61. package/{modules → lib/modules}/grid/types/grid-column-heading-model-change.d.ts +0 -0
  62. package/{modules → lib/modules}/grid/types/grid-column-inline-help-popover-model-change.d.ts +0 -0
  63. package/{modules → lib/modules}/grid/types/grid-column-width-model-change.d.ts +0 -0
  64. package/{modules → lib/modules}/grid/types/grid-message-type.d.ts +0 -0
  65. package/{modules → lib/modules}/grid/types/grid-message.d.ts +0 -0
  66. package/{modules → lib/modules}/grid/types/grid-row-delete-cancel-args.d.ts +0 -0
  67. package/{modules → lib/modules}/grid/types/grid-row-delete-config.d.ts +0 -0
  68. package/{modules → lib/modules}/grid/types/grid-row-delete-confirm-args.d.ts +0 -0
  69. package/{modules → lib/modules}/grid/types/grid-row-delete-contents.d.ts +0 -0
  70. package/{modules → lib/modules}/grid/types/grid-selected-rows-model-change.d.ts +0 -0
  71. package/{modules → lib/modules}/grid/types/grid-selected-rows-source.d.ts +0 -0
  72. package/{modules → lib/modules}/grid/types/grid-ui-config.d.ts +0 -0
  73. package/{modules → lib/modules}/shared/skyux-grids-resources.module.d.ts +0 -0
  74. package/package.json +25 -11
  75. package/skyux-grids.d.ts +1 -1
  76. package/LICENSE +0 -21
  77. package/bundles/skyux-grids.umd.js.map +0 -1
  78. package/esm2015/modules/grid/grid-adapter.service.js +0 -84
  79. package/esm2015/modules/grid/grid-cell.component.js +0 -46
  80. package/esm2015/modules/grid/grid-column.component.js +0 -115
  81. package/esm2015/modules/grid/grid-column.model.js +0 -25
  82. package/esm2015/modules/grid/grid.component.js +0 -997
  83. package/esm2015/modules/grid/grid.module.js +0 -71
  84. package/esm2015/modules/grid/types/grid-column-alignment.js +0 -2
  85. package/esm2015/modules/grid/types/grid-column-description-model-change.js +0 -2
  86. package/esm2015/modules/grid/types/grid-column-heading-model-change.js +0 -2
  87. package/esm2015/modules/grid/types/grid-column-inline-help-popover-model-change.js +0 -2
  88. package/esm2015/modules/grid/types/grid-column-width-model-change.js +0 -2
  89. package/esm2015/modules/grid/types/grid-message-type.js +0 -20
  90. package/esm2015/modules/grid/types/grid-message.js +0 -2
  91. package/esm2015/modules/grid/types/grid-row-delete-cancel-args.js +0 -2
  92. package/esm2015/modules/grid/types/grid-row-delete-config.js +0 -2
  93. package/esm2015/modules/grid/types/grid-row-delete-confirm-args.js +0 -2
  94. package/esm2015/modules/grid/types/grid-row-delete-contents.js +0 -2
  95. package/esm2015/modules/grid/types/grid-selected-rows-model-change.js +0 -2
  96. package/esm2015/modules/grid/types/grid-selected-rows-source.js +0 -12
  97. package/esm2015/modules/grid/types/grid-ui-config.js +0 -2
  98. package/esm2015/modules/shared/skyux-grids-resources.module.js +0 -45
  99. package/esm2015/public-api.js +0 -20
  100. package/public-api.d.ts +0 -17
@@ -93,6 +93,8 @@
93
93
  "name": "Component",
94
94
  "type": {
95
95
  "type": "reference",
96
+ "qualifiedName": "ComponentDecorator",
97
+ "package": "@angular/core",
96
98
  "name": "Component"
97
99
  },
98
100
  "arguments": {
@@ -131,11 +133,11 @@
131
133
  "isPublic": true
132
134
  },
133
135
  "comment": {
134
- "shortText": "Specifies the horizontal alignment of the column's data and header.",
136
+ "shortText": "Specifies the horizontal alignment of the column's data and header.\nOptions include: `\"left\"`, `\"center\"`, and `\"right\"`.",
135
137
  "tags": [
136
138
  {
137
139
  "tag": "default",
138
- "text": "'left'\n"
140
+ "text": "\"left\"\n"
139
141
  }
140
142
  ]
141
143
  },
@@ -144,6 +146,8 @@
144
146
  "name": "Input",
145
147
  "type": {
146
148
  "type": "reference",
149
+ "qualifiedName": "InputDecorator",
150
+ "package": "@angular/core",
147
151
  "name": "Input"
148
152
  },
149
153
  "arguments": {}
@@ -152,7 +156,7 @@
152
156
  "sources": [
153
157
  {
154
158
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
155
- "line": 35,
159
+ "line": 36,
156
160
  "character": 9
157
161
  }
158
162
  ],
@@ -179,6 +183,8 @@
179
183
  "name": "Input",
180
184
  "type": {
181
185
  "type": "reference",
186
+ "qualifiedName": "InputDecorator",
187
+ "package": "@angular/core",
182
188
  "name": "Input"
183
189
  },
184
190
  "arguments": {}
@@ -187,7 +193,7 @@
187
193
  "sources": [
188
194
  {
189
195
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
190
- "line": 41,
196
+ "line": 42,
191
197
  "character": 9
192
198
  }
193
199
  ],
@@ -207,7 +213,7 @@
207
213
  "sources": [
208
214
  {
209
215
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
210
- "line": 136,
216
+ "line": 137,
211
217
  "character": 9
212
218
  }
213
219
  ],
@@ -219,6 +225,8 @@
219
225
  "name": "string"
220
226
  }
221
227
  ],
228
+ "qualifiedName": "EventEmitter",
229
+ "package": "@angular/core",
222
230
  "name": "EventEmitter"
223
231
  },
224
232
  "defaultValue": "..."
@@ -234,7 +242,7 @@
234
242
  "sources": [
235
243
  {
236
244
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
237
- "line": 138,
245
+ "line": 139,
238
246
  "character": 9
239
247
  }
240
248
  ],
@@ -246,6 +254,8 @@
246
254
  "name": "SkyGridColumnDescriptionModelChange"
247
255
  }
248
256
  ],
257
+ "qualifiedName": "EventEmitter",
258
+ "package": "@angular/core",
249
259
  "name": "EventEmitter"
250
260
  },
251
261
  "defaultValue": "..."
@@ -272,6 +282,8 @@
272
282
  "name": "Input",
273
283
  "type": {
274
284
  "type": "reference",
285
+ "qualifiedName": "InputDecorator",
286
+ "package": "@angular/core",
275
287
  "name": "Input"
276
288
  },
277
289
  "arguments": {}
@@ -280,7 +292,7 @@
280
292
  "sources": [
281
293
  {
282
294
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
283
- "line": 48,
295
+ "line": 49,
284
296
  "character": 9
285
297
  }
286
298
  ],
@@ -305,6 +317,8 @@
305
317
  "name": "Input",
306
318
  "type": {
307
319
  "type": "reference",
320
+ "qualifiedName": "InputDecorator",
321
+ "package": "@angular/core",
308
322
  "name": "Input"
309
323
  },
310
324
  "arguments": {}
@@ -313,7 +327,7 @@
313
327
  "sources": [
314
328
  {
315
329
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
316
- "line": 57,
330
+ "line": 58,
317
331
  "character": 9
318
332
  }
319
333
  ],
@@ -338,6 +352,8 @@
338
352
  "name": "Input",
339
353
  "type": {
340
354
  "type": "reference",
355
+ "qualifiedName": "InputDecorator",
356
+ "package": "@angular/core",
341
357
  "name": "Input"
342
358
  },
343
359
  "arguments": {}
@@ -346,7 +362,7 @@
346
362
  "sources": [
347
363
  {
348
364
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
349
- "line": 63,
365
+ "line": 64,
350
366
  "character": 9
351
367
  }
352
368
  ],
@@ -366,7 +382,7 @@
366
382
  "sources": [
367
383
  {
368
384
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
369
- "line": 141,
385
+ "line": 142,
370
386
  "character": 9
371
387
  }
372
388
  ],
@@ -378,6 +394,8 @@
378
394
  "name": "string"
379
395
  }
380
396
  ],
397
+ "qualifiedName": "EventEmitter",
398
+ "package": "@angular/core",
381
399
  "name": "EventEmitter"
382
400
  },
383
401
  "defaultValue": "..."
@@ -393,7 +411,7 @@
393
411
  "sources": [
394
412
  {
395
413
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
396
- "line": 143,
414
+ "line": 144,
397
415
  "character": 9
398
416
  }
399
417
  ],
@@ -405,6 +423,8 @@
405
423
  "name": "SkyGridColumnHeadingModelChange"
406
424
  }
407
425
  ],
426
+ "qualifiedName": "EventEmitter",
427
+ "package": "@angular/core",
408
428
  "name": "EventEmitter"
409
429
  },
410
430
  "defaultValue": "..."
@@ -431,6 +451,8 @@
431
451
  "name": "Input",
432
452
  "type": {
433
453
  "type": "reference",
454
+ "qualifiedName": "InputDecorator",
455
+ "package": "@angular/core",
434
456
  "name": "Input"
435
457
  },
436
458
  "arguments": {}
@@ -439,7 +461,7 @@
439
461
  "sources": [
440
462
  {
441
463
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
442
- "line": 70,
464
+ "line": 71,
443
465
  "character": 9
444
466
  }
445
467
  ],
@@ -464,6 +486,8 @@
464
486
  "name": "Input",
465
487
  "type": {
466
488
  "type": "reference",
489
+ "qualifiedName": "InputDecorator",
490
+ "package": "@angular/core",
467
491
  "name": "Input"
468
492
  },
469
493
  "arguments": {}
@@ -472,7 +496,7 @@
472
496
  "sources": [
473
497
  {
474
498
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
475
- "line": 78,
499
+ "line": 79,
476
500
  "character": 9
477
501
  }
478
502
  ],
@@ -497,6 +521,8 @@
497
521
  "name": "Input",
498
522
  "type": {
499
523
  "type": "reference",
524
+ "qualifiedName": "InputDecorator",
525
+ "package": "@angular/core",
500
526
  "name": "Input"
501
527
  },
502
528
  "arguments": {}
@@ -505,7 +531,7 @@
505
531
  "sources": [
506
532
  {
507
533
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
508
- "line": 84,
534
+ "line": 85,
509
535
  "character": 9
510
536
  }
511
537
  ],
@@ -525,7 +551,7 @@
525
551
  "sources": [
526
552
  {
527
553
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
528
- "line": 146,
554
+ "line": 147,
529
555
  "character": 9
530
556
  }
531
557
  ],
@@ -537,6 +563,8 @@
537
563
  "name": "SkyGridColumnInlineHelpPopoverModelChange"
538
564
  }
539
565
  ],
566
+ "qualifiedName": "EventEmitter",
567
+ "package": "@angular/core",
540
568
  "name": "EventEmitter"
541
569
  },
542
570
  "defaultValue": "..."
@@ -563,6 +591,8 @@
563
591
  "name": "Input",
564
592
  "type": {
565
593
  "type": "reference",
594
+ "qualifiedName": "InputDecorator",
595
+ "package": "@angular/core",
566
596
  "name": "Input"
567
597
  },
568
598
  "arguments": {}
@@ -571,7 +601,7 @@
571
601
  "sources": [
572
602
  {
573
603
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
574
- "line": 91,
604
+ "line": 92,
575
605
  "character": 9
576
606
  }
577
607
  ],
@@ -603,6 +633,8 @@
603
633
  "name": "Input",
604
634
  "type": {
605
635
  "type": "reference",
636
+ "qualifiedName": "InputDecorator",
637
+ "package": "@angular/core",
606
638
  "name": "Input"
607
639
  },
608
640
  "arguments": {}
@@ -611,7 +643,7 @@
611
643
  "sources": [
612
644
  {
613
645
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
614
- "line": 100,
646
+ "line": 101,
615
647
  "character": 9
616
648
  }
617
649
  ],
@@ -633,6 +665,8 @@
633
665
  "name": "Input",
634
666
  "type": {
635
667
  "type": "reference",
668
+ "qualifiedName": "InputDecorator",
669
+ "package": "@angular/core",
636
670
  "name": "Input"
637
671
  },
638
672
  "arguments": {
@@ -643,7 +677,7 @@
643
677
  "sources": [
644
678
  {
645
679
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
646
- "line": 109,
680
+ "line": 110,
647
681
  "character": 9
648
682
  }
649
683
  ],
@@ -721,6 +755,8 @@
721
755
  "name": "Input",
722
756
  "type": {
723
757
  "type": "reference",
758
+ "qualifiedName": "InputDecorator",
759
+ "package": "@angular/core",
724
760
  "name": "Input"
725
761
  },
726
762
  "arguments": {
@@ -731,7 +767,7 @@
731
767
  "sources": [
732
768
  {
733
769
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
734
- "line": 127,
770
+ "line": 128,
735
771
  "character": 9
736
772
  }
737
773
  ],
@@ -743,6 +779,8 @@
743
779
  "name": "any"
744
780
  }
745
781
  ],
782
+ "qualifiedName": "TemplateRef",
783
+ "package": "@angular/core",
746
784
  "name": "TemplateRef"
747
785
  }
748
786
  },
@@ -762,6 +800,8 @@
762
800
  "name": "Input",
763
801
  "type": {
764
802
  "type": "reference",
803
+ "qualifiedName": "InputDecorator",
804
+ "package": "@angular/core",
765
805
  "name": "Input"
766
806
  },
767
807
  "arguments": {}
@@ -770,7 +810,7 @@
770
810
  "sources": [
771
811
  {
772
812
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
773
- "line": 134,
813
+ "line": 135,
774
814
  "character": 9
775
815
  }
776
816
  ],
@@ -790,7 +830,7 @@
790
830
  "sources": [
791
831
  {
792
832
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
793
- "line": 181,
833
+ "line": 182,
794
834
  "character": 13
795
835
  }
796
836
  ],
@@ -809,6 +849,8 @@
809
849
  "name": "any"
810
850
  }
811
851
  ],
852
+ "qualifiedName": "TemplateRef",
853
+ "package": "@angular/core",
812
854
  "name": "TemplateRef"
813
855
  }
814
856
  }
@@ -825,7 +867,7 @@
825
867
  "sources": [
826
868
  {
827
869
  "fileName": "projects/grids/src/modules/grid/grid-column.component.ts",
828
- "line": 152,
870
+ "line": 153,
829
871
  "character": 9
830
872
  }
831
873
  ],
@@ -845,6 +887,8 @@
845
887
  "flags": {},
846
888
  "type": {
847
889
  "type": "reference",
890
+ "qualifiedName": "SimpleChanges",
891
+ "package": "@angular/core",
848
892
  "name": "SimpleChanges"
849
893
  }
850
894
  }
@@ -922,6 +966,8 @@
922
966
  "implementedTypes": [
923
967
  {
924
968
  "type": "reference",
969
+ "qualifiedName": "OnChanges",
970
+ "package": "@angular/core",
925
971
  "name": "OnChanges"
926
972
  }
927
973
  ]
@@ -937,6 +983,8 @@
937
983
  "name": "Component",
938
984
  "type": {
939
985
  "type": "reference",
986
+ "qualifiedName": "ComponentDecorator",
987
+ "package": "@angular/core",
940
988
  "name": "Component"
941
989
  },
942
990
  "arguments": {
@@ -954,7 +1002,7 @@
954
1002
  "sources": [
955
1003
  {
956
1004
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
957
- "line": 346,
1005
+ "line": 345,
958
1006
  "character": 2
959
1007
  }
960
1008
  ],
@@ -985,6 +1033,8 @@
985
1033
  "flags": {},
986
1034
  "type": {
987
1035
  "type": "reference",
1036
+ "qualifiedName": "ChangeDetectorRef",
1037
+ "package": "@angular/core",
988
1038
  "name": "ChangeDetectorRef"
989
1039
  }
990
1040
  },
@@ -996,6 +1046,8 @@
996
1046
  "flags": {},
997
1047
  "type": {
998
1048
  "type": "reference",
1049
+ "qualifiedName": "DragulaService",
1050
+ "package": "ng2-dragula",
999
1051
  "name": "DragulaService"
1000
1052
  }
1001
1053
  },
@@ -1063,7 +1115,7 @@
1063
1115
  "sources": [
1064
1116
  {
1065
1117
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1066
- "line": 297,
1118
+ "line": 296,
1067
1119
  "character": 9
1068
1120
  }
1069
1121
  ],
@@ -1089,6 +1141,8 @@
1089
1141
  "name": "Output",
1090
1142
  "type": {
1091
1143
  "type": "reference",
1144
+ "qualifiedName": "OutputDecorator",
1145
+ "package": "@angular/core",
1092
1146
  "name": "Output"
1093
1147
  },
1094
1148
  "arguments": {}
@@ -1097,7 +1151,7 @@
1097
1151
  "sources": [
1098
1152
  {
1099
1153
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1100
- "line": 260,
1154
+ "line": 259,
1101
1155
  "character": 9
1102
1156
  }
1103
1157
  ],
@@ -1113,6 +1167,8 @@
1113
1167
  }
1114
1168
  }
1115
1169
  ],
1170
+ "qualifiedName": "EventEmitter",
1171
+ "package": "@angular/core",
1116
1172
  "name": "EventEmitter"
1117
1173
  },
1118
1174
  "defaultValue": "..."
@@ -1133,6 +1189,8 @@
1133
1189
  "name": "Input",
1134
1190
  "type": {
1135
1191
  "type": "reference",
1192
+ "qualifiedName": "InputDecorator",
1193
+ "package": "@angular/core",
1136
1194
  "name": "Input"
1137
1195
  },
1138
1196
  "arguments": {}
@@ -1164,7 +1222,7 @@
1164
1222
  "sources": [
1165
1223
  {
1166
1224
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1167
- "line": 298,
1225
+ "line": 297,
1168
1226
  "character": 9
1169
1227
  }
1170
1228
  ],
@@ -1176,6 +1234,8 @@
1176
1234
  "name": "ListSortFieldSelectorModel"
1177
1235
  }
1178
1236
  ],
1237
+ "qualifiedName": "BehaviorSubject",
1238
+ "package": "rxjs",
1179
1239
  "name": "BehaviorSubject"
1180
1240
  }
1181
1241
  },
@@ -1195,6 +1255,8 @@
1195
1255
  "name": "Input",
1196
1256
  "type": {
1197
1257
  "type": "reference",
1258
+ "qualifiedName": "InputDecorator",
1259
+ "package": "@angular/core",
1198
1260
  "name": "Input"
1199
1261
  },
1200
1262
  "arguments": {}
@@ -1226,7 +1288,7 @@
1226
1288
  "sources": [
1227
1289
  {
1228
1290
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1229
- "line": 299,
1291
+ "line": 298,
1230
1292
  "character": 9
1231
1293
  }
1232
1294
  ],
@@ -1260,6 +1322,8 @@
1260
1322
  "name": "Input",
1261
1323
  "type": {
1262
1324
  "type": "reference",
1325
+ "qualifiedName": "InputDecorator",
1326
+ "package": "@angular/core",
1263
1327
  "name": "Input"
1264
1328
  },
1265
1329
  "arguments": {}
@@ -1287,13 +1351,21 @@
1287
1351
  "isPublic": true
1288
1352
  },
1289
1353
  "comment": {
1290
- "shortText": "Specifies how the grid fits to its parent. The valid options are `width`,\nwhich fits the grid to the parent's full width, and `scroll`, which allows the grid\nto exceed the parent's width. If the grid does not have enough columns to fill\nthe parent's width, it always stretches to the parent's full width."
1354
+ "shortText": "Specifies how the grid fits to its parent. The valid options are `width`,\nwhich fits the grid to the parent's full width, and `scroll`, which allows the grid\nto exceed the parent's width. If the grid does not have enough columns to fill\nthe parent's width, it always stretches to the parent's full width.",
1355
+ "tags": [
1356
+ {
1357
+ "tag": "default",
1358
+ "text": "\"width\"\n"
1359
+ }
1360
+ ]
1291
1361
  },
1292
1362
  "decorators": [
1293
1363
  {
1294
1364
  "name": "Input",
1295
1365
  "type": {
1296
1366
  "type": "reference",
1367
+ "qualifiedName": "InputDecorator",
1368
+ "package": "@angular/core",
1297
1369
  "name": "Input"
1298
1370
  },
1299
1371
  "arguments": {}
@@ -1302,7 +1374,7 @@
1302
1374
  "sources": [
1303
1375
  {
1304
1376
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1305
- "line": 131,
1377
+ "line": 132,
1306
1378
  "character": 9
1307
1379
  }
1308
1380
  ],
@@ -1323,7 +1395,7 @@
1323
1395
  "sources": [
1324
1396
  {
1325
1397
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1326
- "line": 300,
1398
+ "line": 299,
1327
1399
  "character": 9
1328
1400
  }
1329
1401
  ],
@@ -1349,6 +1421,8 @@
1349
1421
  "name": "Input",
1350
1422
  "type": {
1351
1423
  "type": "reference",
1424
+ "qualifiedName": "InputDecorator",
1425
+ "package": "@angular/core",
1352
1426
  "name": "Input"
1353
1427
  },
1354
1428
  "arguments": {}
@@ -1357,7 +1431,7 @@
1357
1431
  "sources": [
1358
1432
  {
1359
1433
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1360
- "line": 137,
1434
+ "line": 138,
1361
1435
  "character": 9
1362
1436
  }
1363
1437
  ],
@@ -1383,6 +1457,8 @@
1383
1457
  "name": "Input",
1384
1458
  "type": {
1385
1459
  "type": "reference",
1460
+ "qualifiedName": "InputDecorator",
1461
+ "package": "@angular/core",
1386
1462
  "name": "Input"
1387
1463
  },
1388
1464
  "arguments": {}
@@ -1391,7 +1467,7 @@
1391
1467
  "sources": [
1392
1468
  {
1393
1469
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1394
- "line": 143,
1470
+ "line": 144,
1395
1471
  "character": 9
1396
1472
  }
1397
1473
  ],
@@ -1416,6 +1492,8 @@
1416
1492
  "name": "Input",
1417
1493
  "type": {
1418
1494
  "type": "reference",
1495
+ "qualifiedName": "InputDecorator",
1496
+ "package": "@angular/core",
1419
1497
  "name": "Input"
1420
1498
  },
1421
1499
  "arguments": {}
@@ -1424,7 +1502,7 @@
1424
1502
  "sources": [
1425
1503
  {
1426
1504
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1427
- "line": 150,
1505
+ "line": 151,
1428
1506
  "character": 9
1429
1507
  }
1430
1508
  ],
@@ -1444,7 +1522,7 @@
1444
1522
  "sources": [
1445
1523
  {
1446
1524
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1447
- "line": 302,
1525
+ "line": 301,
1448
1526
  "character": 9
1449
1527
  }
1450
1528
  ],
@@ -1467,7 +1545,7 @@
1467
1545
  "sources": [
1468
1546
  {
1469
1547
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1470
- "line": 303,
1548
+ "line": 302,
1471
1549
  "character": 9
1472
1550
  }
1473
1551
  ],
@@ -1493,6 +1571,8 @@
1493
1571
  "name": "Input",
1494
1572
  "type": {
1495
1573
  "type": "reference",
1574
+ "qualifiedName": "InputDecorator",
1575
+ "package": "@angular/core",
1496
1576
  "name": "Input"
1497
1577
  },
1498
1578
  "arguments": {}
@@ -1501,7 +1581,7 @@
1501
1581
  "sources": [
1502
1582
  {
1503
1583
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1504
- "line": 156,
1584
+ "line": 157,
1505
1585
  "character": 9
1506
1586
  }
1507
1587
  ],
@@ -1514,6 +1594,8 @@
1514
1594
  "name": "SkyGridMessage"
1515
1595
  }
1516
1596
  ],
1597
+ "qualifiedName": "Subject",
1598
+ "package": "rxjs",
1517
1599
  "name": "Subject"
1518
1600
  },
1519
1601
  "defaultValue": "..."
@@ -1529,7 +1611,7 @@
1529
1611
  "sources": [
1530
1612
  {
1531
1613
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1532
- "line": 304,
1614
+ "line": 303,
1533
1615
  "character": 9
1534
1616
  }
1535
1617
  ],
@@ -1555,6 +1637,8 @@
1555
1637
  "name": "Input",
1556
1638
  "type": {
1557
1639
  "type": "reference",
1640
+ "qualifiedName": "InputDecorator",
1641
+ "package": "@angular/core",
1558
1642
  "name": "Input"
1559
1643
  },
1560
1644
  "arguments": {}
@@ -1563,7 +1647,7 @@
1563
1647
  "sources": [
1564
1648
  {
1565
1649
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1566
- "line": 163,
1650
+ "line": 164,
1567
1651
  "character": 9
1568
1652
  }
1569
1653
  ],
@@ -1588,6 +1672,8 @@
1588
1672
  "name": "Output",
1589
1673
  "type": {
1590
1674
  "type": "reference",
1675
+ "qualifiedName": "OutputDecorator",
1676
+ "package": "@angular/core",
1591
1677
  "name": "Output"
1592
1678
  },
1593
1679
  "arguments": {}
@@ -1596,7 +1682,7 @@
1596
1682
  "sources": [
1597
1683
  {
1598
1684
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1599
- "line": 270,
1685
+ "line": 269,
1600
1686
  "character": 9
1601
1687
  }
1602
1688
  ],
@@ -1609,6 +1695,8 @@
1609
1695
  "name": "SkyGridSelectedRowsModelChange"
1610
1696
  }
1611
1697
  ],
1698
+ "qualifiedName": "EventEmitter",
1699
+ "package": "@angular/core",
1612
1700
  "name": "EventEmitter"
1613
1701
  },
1614
1702
  "defaultValue": "..."
@@ -1624,7 +1712,7 @@
1624
1712
  "sources": [
1625
1713
  {
1626
1714
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1627
- "line": 301,
1715
+ "line": 300,
1628
1716
  "character": 9
1629
1717
  }
1630
1718
  ],
@@ -1653,6 +1741,8 @@
1653
1741
  "name": "Input",
1654
1742
  "type": {
1655
1743
  "type": "reference",
1744
+ "qualifiedName": "InputDecorator",
1745
+ "package": "@angular/core",
1656
1746
  "name": "Input"
1657
1747
  },
1658
1748
  "arguments": {}
@@ -1661,7 +1751,7 @@
1661
1751
  "sources": [
1662
1752
  {
1663
1753
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1664
- "line": 171,
1754
+ "line": 172,
1665
1755
  "character": 9
1666
1756
  }
1667
1757
  ],
@@ -1686,6 +1776,8 @@
1686
1776
  "name": "Output",
1687
1777
  "type": {
1688
1778
  "type": "reference",
1779
+ "qualifiedName": "OutputDecorator",
1780
+ "package": "@angular/core",
1689
1781
  "name": "Output"
1690
1782
  },
1691
1783
  "arguments": {}
@@ -1694,7 +1786,7 @@
1694
1786
  "sources": [
1695
1787
  {
1696
1788
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1697
- "line": 289,
1789
+ "line": 288,
1698
1790
  "character": 9
1699
1791
  }
1700
1792
  ],
@@ -1709,6 +1801,8 @@
1709
1801
  }
1710
1802
  }
1711
1803
  ],
1804
+ "qualifiedName": "EventEmitter",
1805
+ "package": "@angular/core",
1712
1806
  "name": "EventEmitter"
1713
1807
  },
1714
1808
  "defaultValue": "..."
@@ -1722,13 +1816,15 @@
1722
1816
  "isPublic": true
1723
1817
  },
1724
1818
  "comment": {
1725
- "shortText": "Specifies a unique key for the UI Config Service to retrieve stored settings from a database.\nThe UI Config Service saves configuration settings for users and returns\n`selectedColumnIds` to preserve the columns to display and the preferred column order.\nFor more information about the UI Config Service, see\n[the sticky settings documentation](https://developer.blackbaud.com/skyux/learn/get-started/advanced/sticky-settings)."
1819
+ "shortText": "Specifies a unique key for the UI Config Service to retrieve stored settings from a database.\nThe UI Config Service saves configuration settings for users and returns\n`selectedColumnIds` to preserve the columns to display and the preferred column order. You must provide `id` values for your `sky-grid-column` elements because the UI Config Service depends on those values to organize columns based on user settings. For more information about the UI Config Service, see [the sticky settings documentation](https://developer.blackbaud.com/skyux/learn/get-started/sticky-settings)."
1726
1820
  },
1727
1821
  "decorators": [
1728
1822
  {
1729
1823
  "name": "Input",
1730
1824
  "type": {
1731
1825
  "type": "reference",
1826
+ "qualifiedName": "InputDecorator",
1827
+ "package": "@angular/core",
1732
1828
  "name": "Input"
1733
1829
  },
1734
1830
  "arguments": {}
@@ -1737,7 +1833,7 @@
1737
1833
  "sources": [
1738
1834
  {
1739
1835
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1740
- "line": 236,
1836
+ "line": 235,
1741
1837
  "character": 9
1742
1838
  }
1743
1839
  ],
@@ -1757,7 +1853,7 @@
1757
1853
  "sources": [
1758
1854
  {
1759
1855
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1760
- "line": 305,
1856
+ "line": 304,
1761
1857
  "character": 9
1762
1858
  }
1763
1859
  ],
@@ -1778,7 +1874,7 @@
1778
1874
  "sources": [
1779
1875
  {
1780
1876
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1781
- "line": 306,
1877
+ "line": 305,
1782
1878
  "character": 9
1783
1879
  }
1784
1880
  ],
@@ -1804,6 +1900,8 @@
1804
1900
  "name": "Input",
1805
1901
  "type": {
1806
1902
  "type": "reference",
1903
+ "qualifiedName": "InputDecorator",
1904
+ "package": "@angular/core",
1807
1905
  "name": "Input"
1808
1906
  },
1809
1907
  "arguments": {}
@@ -1812,7 +1910,7 @@
1812
1910
  "sources": [
1813
1911
  {
1814
1912
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1815
- "line": 248,
1913
+ "line": 247,
1816
1914
  "character": 9
1817
1915
  }
1818
1916
  ],
@@ -1837,6 +1935,8 @@
1837
1935
  "name": "Output",
1838
1936
  "type": {
1839
1937
  "type": "reference",
1938
+ "qualifiedName": "OutputDecorator",
1939
+ "package": "@angular/core",
1840
1940
  "name": "Output"
1841
1941
  },
1842
1942
  "arguments": {}
@@ -1845,7 +1945,7 @@
1845
1945
  "sources": [
1846
1946
  {
1847
1947
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1848
- "line": 295,
1948
+ "line": 294,
1849
1949
  "character": 9
1850
1950
  }
1851
1951
  ],
@@ -1857,6 +1957,8 @@
1857
1957
  "name": "ListSortFieldSelectorModel"
1858
1958
  }
1859
1959
  ],
1960
+ "qualifiedName": "EventEmitter",
1961
+ "package": "@angular/core",
1860
1962
  "name": "EventEmitter"
1861
1963
  },
1862
1964
  "defaultValue": "..."
@@ -1877,6 +1979,8 @@
1877
1979
  "name": "Input",
1878
1980
  "type": {
1879
1981
  "type": "reference",
1982
+ "qualifiedName": "InputDecorator",
1983
+ "package": "@angular/core",
1880
1984
  "name": "Input"
1881
1985
  },
1882
1986
  "arguments": {}
@@ -1885,7 +1989,7 @@
1885
1989
  "sources": [
1886
1990
  {
1887
1991
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1888
- "line": 254,
1992
+ "line": 253,
1889
1993
  "character": 9
1890
1994
  }
1891
1995
  ],
@@ -1907,6 +2011,8 @@
1907
2011
  "name": "Input",
1908
2012
  "type": {
1909
2013
  "type": "reference",
2014
+ "qualifiedName": "InputDecorator",
2015
+ "package": "@angular/core",
1910
2016
  "name": "Input"
1911
2017
  },
1912
2018
  "arguments": {}
@@ -1915,7 +2021,7 @@
1915
2021
  "sources": [
1916
2022
  {
1917
2023
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1918
- "line": 178,
2024
+ "line": 179,
1919
2025
  "character": 13
1920
2026
  }
1921
2027
  ],
@@ -1984,6 +2090,8 @@
1984
2090
  "name": "Input",
1985
2091
  "type": {
1986
2092
  "type": "reference",
2093
+ "qualifiedName": "InputDecorator",
2094
+ "package": "@angular/core",
1987
2095
  "name": "Input"
1988
2096
  },
1989
2097
  "arguments": {}
@@ -1992,7 +2100,7 @@
1992
2100
  "sources": [
1993
2101
  {
1994
2102
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
1995
- "line": 216,
2103
+ "line": 217,
1996
2104
  "character": 13
1997
2105
  }
1998
2106
  ],
@@ -2059,7 +2167,7 @@
2059
2167
  "sources": [
2060
2168
  {
2061
2169
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2062
- "line": 308,
2170
+ "line": 307,
2063
2171
  "character": 13
2064
2172
  }
2065
2173
  ],
@@ -2088,7 +2196,7 @@
2088
2196
  "sources": [
2089
2197
  {
2090
2198
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2091
- "line": 770,
2199
+ "line": 769,
2092
2200
  "character": 9
2093
2201
  }
2094
2202
  ],
@@ -2130,7 +2238,7 @@
2130
2238
  "sources": [
2131
2239
  {
2132
2240
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2133
- "line": 779,
2241
+ "line": 778,
2134
2242
  "character": 9
2135
2243
  }
2136
2244
  ],
@@ -2172,7 +2280,7 @@
2172
2280
  "sources": [
2173
2281
  {
2174
2282
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2175
- "line": 553,
2283
+ "line": 552,
2176
2284
  "character": 9
2177
2285
  }
2178
2286
  ],
@@ -2204,6 +2312,8 @@
2204
2312
  "name": "string"
2205
2313
  }
2206
2314
  ],
2315
+ "qualifiedName": "Observable",
2316
+ "package": "rxjs",
2207
2317
  "name": "Observable"
2208
2318
  }
2209
2319
  }
@@ -2220,7 +2330,7 @@
2220
2330
  "sources": [
2221
2331
  {
2222
2332
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2223
- "line": 489,
2333
+ "line": 488,
2224
2334
  "character": 9
2225
2335
  }
2226
2336
  ],
@@ -2262,7 +2372,7 @@
2262
2372
  "sources": [
2263
2373
  {
2264
2374
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2265
- "line": 568,
2375
+ "line": 567,
2266
2376
  "character": 9
2267
2377
  }
2268
2378
  ],
@@ -2294,6 +2404,8 @@
2294
2404
  "name": "string"
2295
2405
  }
2296
2406
  ],
2407
+ "qualifiedName": "Observable",
2408
+ "package": "rxjs",
2297
2409
  "name": "Observable"
2298
2410
  }
2299
2411
  }
@@ -2310,7 +2422,7 @@
2310
2422
  "sources": [
2311
2423
  {
2312
2424
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2313
- "line": 577,
2425
+ "line": 576,
2314
2426
  "character": 9
2315
2427
  }
2316
2428
  ],
@@ -2342,6 +2454,8 @@
2342
2454
  "name": "boolean"
2343
2455
  }
2344
2456
  ],
2457
+ "qualifiedName": "Observable",
2458
+ "package": "rxjs",
2345
2459
  "name": "Observable"
2346
2460
  }
2347
2461
  }
@@ -2358,7 +2472,7 @@
2358
2472
  "sources": [
2359
2473
  {
2360
2474
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2361
- "line": 784,
2475
+ "line": 783,
2362
2476
  "character": 9
2363
2477
  }
2364
2478
  ],
@@ -2400,7 +2514,7 @@
2400
2514
  "sources": [
2401
2515
  {
2402
2516
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2403
- "line": 766,
2517
+ "line": 765,
2404
2518
  "character": 9
2405
2519
  }
2406
2520
  ],
@@ -2442,7 +2556,7 @@
2442
2556
  "sources": [
2443
2557
  {
2444
2558
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2445
- "line": 540,
2559
+ "line": 539,
2446
2560
  "character": 9
2447
2561
  }
2448
2562
  ],
@@ -2474,6 +2588,8 @@
2474
2588
  "name": "string"
2475
2589
  }
2476
2590
  ],
2591
+ "qualifiedName": "Observable",
2592
+ "package": "rxjs",
2477
2593
  "name": "Observable"
2478
2594
  }
2479
2595
  }
@@ -2490,7 +2606,7 @@
2490
2606
  "sources": [
2491
2607
  {
2492
2608
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2493
- "line": 465,
2609
+ "line": 464,
2494
2610
  "character": 9
2495
2611
  }
2496
2612
  ],
@@ -2519,7 +2635,7 @@
2519
2635
  "sources": [
2520
2636
  {
2521
2637
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2522
- "line": 479,
2638
+ "line": 478,
2523
2639
  "character": 9
2524
2640
  }
2525
2641
  ],
@@ -2561,7 +2677,7 @@
2561
2677
  "sources": [
2562
2678
  {
2563
2679
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2564
- "line": 461,
2680
+ "line": 460,
2565
2681
  "character": 9
2566
2682
  }
2567
2683
  ],
@@ -2590,7 +2706,7 @@
2590
2706
  "sources": [
2591
2707
  {
2592
2708
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2593
- "line": 759,
2709
+ "line": 758,
2594
2710
  "character": 9
2595
2711
  }
2596
2712
  ],
@@ -2632,7 +2748,7 @@
2632
2748
  "sources": [
2633
2749
  {
2634
2750
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2635
- "line": 371,
2751
+ "line": 370,
2636
2752
  "character": 9
2637
2753
  }
2638
2754
  ],
@@ -2669,7 +2785,7 @@
2669
2785
  "sources": [
2670
2786
  {
2671
2787
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2672
- "line": 391,
2788
+ "line": 390,
2673
2789
  "character": 9
2674
2790
  }
2675
2791
  ],
@@ -2706,7 +2822,7 @@
2706
2822
  "sources": [
2707
2823
  {
2708
2824
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2709
- "line": 395,
2825
+ "line": 394,
2710
2826
  "character": 9
2711
2827
  }
2712
2828
  ],
@@ -2726,6 +2842,8 @@
2726
2842
  "flags": {},
2727
2843
  "type": {
2728
2844
  "type": "reference",
2845
+ "qualifiedName": "SimpleChanges",
2846
+ "package": "@angular/core",
2729
2847
  "name": "SimpleChanges"
2730
2848
  }
2731
2849
  }
@@ -2756,7 +2874,7 @@
2756
2874
  "sources": [
2757
2875
  {
2758
2876
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2759
- "line": 442,
2877
+ "line": 441,
2760
2878
  "character": 9
2761
2879
  }
2762
2880
  ],
@@ -2793,7 +2911,7 @@
2793
2911
  "sources": [
2794
2912
  {
2795
2913
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2796
- "line": 363,
2914
+ "line": 362,
2797
2915
  "character": 9
2798
2916
  }
2799
2917
  ],
@@ -2830,7 +2948,7 @@
2830
2948
  "sources": [
2831
2949
  {
2832
2950
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2833
- "line": 807,
2951
+ "line": 806,
2834
2952
  "character": 9
2835
2953
  }
2836
2954
  ],
@@ -2872,7 +2990,7 @@
2872
2990
  "sources": [
2873
2991
  {
2874
2992
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2875
- "line": 693,
2993
+ "line": 692,
2876
2994
  "character": 9
2877
2995
  }
2878
2996
  ],
@@ -2892,6 +3010,8 @@
2892
3010
  "flags": {},
2893
3011
  "type": {
2894
3012
  "type": "reference",
3013
+ "qualifiedName": "Event",
3014
+ "package": "typescript",
2895
3015
  "name": "Event"
2896
3016
  }
2897
3017
  }
@@ -2914,7 +3034,7 @@
2914
3034
  "sources": [
2915
3035
  {
2916
3036
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2917
- "line": 504,
3037
+ "line": 503,
2918
3038
  "character": 9
2919
3039
  }
2920
3040
  ],
@@ -2934,6 +3054,8 @@
2934
3054
  "flags": {},
2935
3055
  "type": {
2936
3056
  "type": "reference",
3057
+ "qualifiedName": "KeyboardEvent",
3058
+ "package": "typescript",
2937
3059
  "name": "KeyboardEvent"
2938
3060
  }
2939
3061
  },
@@ -2967,7 +3089,7 @@
2967
3089
  "sources": [
2968
3090
  {
2969
3091
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
2970
- "line": 683,
3092
+ "line": 682,
2971
3093
  "character": 9
2972
3094
  }
2973
3095
  ],
@@ -2987,6 +3109,8 @@
2987
3109
  "flags": {},
2988
3110
  "type": {
2989
3111
  "type": "reference",
3112
+ "qualifiedName": "KeyboardEvent",
3113
+ "package": "typescript",
2990
3114
  "name": "KeyboardEvent"
2991
3115
  }
2992
3116
  }
@@ -3009,7 +3133,7 @@
3009
3133
  "sources": [
3010
3134
  {
3011
3135
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3012
- "line": 585,
3136
+ "line": 584,
3013
3137
  "character": 9
3014
3138
  }
3015
3139
  ],
@@ -3038,7 +3162,7 @@
3038
3162
  "sources": [
3039
3163
  {
3040
3164
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3041
- "line": 636,
3165
+ "line": 635,
3042
3166
  "character": 9
3043
3167
  }
3044
3168
  ],
@@ -3058,6 +3182,8 @@
3058
3182
  "flags": {},
3059
3183
  "type": {
3060
3184
  "type": "reference",
3185
+ "qualifiedName": "MouseEvent",
3186
+ "package": "typescript",
3061
3187
  "name": "MouseEvent"
3062
3188
  }
3063
3189
  }
@@ -3080,7 +3206,7 @@
3080
3206
  "sources": [
3081
3207
  {
3082
3208
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3083
- "line": 720,
3209
+ "line": 719,
3084
3210
  "character": 9
3085
3211
  }
3086
3212
  ],
@@ -3100,6 +3226,8 @@
3100
3226
  "flags": {},
3101
3227
  "type": {
3102
3228
  "type": "reference",
3229
+ "qualifiedName": "Event",
3230
+ "package": "typescript",
3103
3231
  "name": "Event"
3104
3232
  }
3105
3233
  }
@@ -3122,7 +3250,7 @@
3122
3250
  "sources": [
3123
3251
  {
3124
3252
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3125
- "line": 724,
3253
+ "line": 723,
3126
3254
  "character": 9
3127
3255
  }
3128
3256
  ],
@@ -3142,6 +3270,8 @@
3142
3270
  "flags": {},
3143
3271
  "type": {
3144
3272
  "type": "reference",
3273
+ "qualifiedName": "KeyboardEvent",
3274
+ "package": "typescript",
3145
3275
  "name": "KeyboardEvent"
3146
3276
  }
3147
3277
  }
@@ -3164,7 +3294,7 @@
3164
3294
  "sources": [
3165
3295
  {
3166
3296
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3167
- "line": 702,
3297
+ "line": 701,
3168
3298
  "character": 9
3169
3299
  }
3170
3300
  ],
@@ -3184,6 +3314,8 @@
3184
3314
  "flags": {},
3185
3315
  "type": {
3186
3316
  "type": "reference",
3317
+ "qualifiedName": "MouseEvent",
3318
+ "package": "typescript",
3187
3319
  "name": "MouseEvent"
3188
3320
  }
3189
3321
  }
@@ -3206,7 +3338,7 @@
3206
3338
  "sources": [
3207
3339
  {
3208
3340
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3209
- "line": 733,
3341
+ "line": 732,
3210
3342
  "character": 9
3211
3343
  }
3212
3344
  ],
@@ -3226,6 +3358,8 @@
3226
3358
  "flags": {},
3227
3359
  "type": {
3228
3360
  "type": "reference",
3361
+ "qualifiedName": "MouseEvent",
3362
+ "package": "typescript",
3229
3363
  "name": "MouseEvent"
3230
3364
  }
3231
3365
  }
@@ -3248,7 +3382,7 @@
3248
3382
  "sources": [
3249
3383
  {
3250
3384
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3251
- "line": 745,
3385
+ "line": 744,
3252
3386
  "character": 9
3253
3387
  }
3254
3388
  ],
@@ -3301,7 +3435,7 @@
3301
3435
  "sources": [
3302
3436
  {
3303
3437
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3304
- "line": 793,
3438
+ "line": 792,
3305
3439
  "character": 9
3306
3440
  }
3307
3441
  ],
@@ -3343,7 +3477,7 @@
3343
3477
  "sources": [
3344
3478
  {
3345
3479
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3346
- "line": 789,
3480
+ "line": 788,
3347
3481
  "character": 9
3348
3482
  }
3349
3483
  ],
@@ -3387,6 +3521,8 @@
3387
3521
  "name": "HostListener",
3388
3522
  "type": {
3389
3523
  "type": "reference",
3524
+ "qualifiedName": "HostListenerDecorator",
3525
+ "package": "@angular/core",
3390
3526
  "name": "HostListener"
3391
3527
  },
3392
3528
  "arguments": {
@@ -3397,7 +3533,7 @@
3397
3533
  "sources": [
3398
3534
  {
3399
3535
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3400
- "line": 457,
3536
+ "line": 456,
3401
3537
  "character": 9
3402
3538
  }
3403
3539
  ],
@@ -3426,7 +3562,7 @@
3426
3562
  "sources": [
3427
3563
  {
3428
3564
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3429
- "line": 511,
3565
+ "line": 510,
3430
3566
  "character": 9
3431
3567
  }
3432
3568
  ],
@@ -3468,7 +3604,7 @@
3468
3604
  "sources": [
3469
3605
  {
3470
3606
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3471
- "line": 621,
3607
+ "line": 620,
3472
3608
  "character": 9
3473
3609
  }
3474
3610
  ],
@@ -3510,7 +3646,7 @@
3510
3646
  "sources": [
3511
3647
  {
3512
3648
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3513
- "line": 589,
3649
+ "line": 588,
3514
3650
  "character": 9
3515
3651
  }
3516
3652
  ],
@@ -3552,7 +3688,7 @@
3552
3688
  "sources": [
3553
3689
  {
3554
3690
  "fileName": "projects/grids/src/modules/grid/grid.component.ts",
3555
- "line": 604,
3691
+ "line": 603,
3556
3692
  "character": 9
3557
3693
  }
3558
3694
  ],
@@ -3687,22 +3823,32 @@
3687
3823
  "implementedTypes": [
3688
3824
  {
3689
3825
  "type": "reference",
3826
+ "qualifiedName": "OnInit",
3827
+ "package": "@angular/core",
3690
3828
  "name": "OnInit"
3691
3829
  },
3692
3830
  {
3693
3831
  "type": "reference",
3832
+ "qualifiedName": "AfterContentInit",
3833
+ "package": "@angular/core",
3694
3834
  "name": "AfterContentInit"
3695
3835
  },
3696
3836
  {
3697
3837
  "type": "reference",
3838
+ "qualifiedName": "AfterViewInit",
3839
+ "package": "@angular/core",
3698
3840
  "name": "AfterViewInit"
3699
3841
  },
3700
3842
  {
3701
3843
  "type": "reference",
3844
+ "qualifiedName": "OnChanges",
3845
+ "package": "@angular/core",
3702
3846
  "name": "OnChanges"
3703
3847
  },
3704
3848
  {
3705
3849
  "type": "reference",
3850
+ "qualifiedName": "OnDestroy",
3851
+ "package": "@angular/core",
3706
3852
  "name": "OnDestroy"
3707
3853
  }
3708
3854
  ]
@@ -3718,6 +3864,8 @@
3718
3864
  "name": "NgModule",
3719
3865
  "type": {
3720
3866
  "type": "reference",
3867
+ "qualifiedName": "NgModuleDecorator",
3868
+ "package": "@angular/core",
3721
3869
  "name": "NgModule"
3722
3870
  },
3723
3871
  "arguments": {
@@ -4028,18 +4176,13 @@
4028
4176
  ],
4029
4177
  "sources": [
4030
4178
  {
4031
- "fileName": "projects/grids/src/public-api.ts",
4179
+ "fileName": "index.ts",
4032
4180
  "line": 1,
4033
4181
  "character": 0
4034
4182
  }
4035
4183
  ]
4036
4184
  },
4037
4185
  "codeExamples": [
4038
- {
4039
- "fileName": ".eslintrc.json",
4040
- "filePath": "/projects/grids/documentation/code-examples/.eslintrc.json",
4041
- "rawContents": "{\n \"extends\": [\"../../.eslintrc.json\"],\n \"overrides\": [\n {\n \"files\": [\"*.ts\"],\n \"rules\": {\n \"@angular-eslint/directive-selector\": [\n \"error\",\n {\n \"type\": \"attribute\",\n \"prefix\": \"app\",\n \"style\": \"camelCase\"\n }\n ],\n \"@angular-eslint/component-selector\": [\n \"error\",\n {\n \"type\": \"element\",\n \"prefix\": \"app\",\n \"style\": \"kebab-case\"\n }\n ]\n }\n }\n ]\n}\n"
4042
- },
4043
4186
  {
4044
4187
  "fileName": "grid-demo.component.html",
4045
4188
  "filePath": "/projects/grids/documentation/code-examples/grid/basic/grid-demo.component.html",
@@ -4048,7 +4191,7 @@
4048
4191
  {
4049
4192
  "fileName": "grid-demo.component.ts",
4050
4193
  "filePath": "/projects/grids/documentation/code-examples/grid/basic/grid-demo.component.ts",
4051
- "rawContents": "import { Component } from '@angular/core';\n\nimport { ListSortFieldSelectorModel } from '@skyux/list-builder-common';\n\n@Component({\n selector: 'sky-grid-demo',\n templateUrl: './grid-demo.component.html',\n})\nexport class GridDemoComponent {\n public data: any[] = [\n {\n id: '1',\n name: 'Niels Bohr',\n email: 'niels.bohr@example.com',\n amount: 170.75,\n status: 'Paid',\n },\n {\n id: '2',\n name: 'Ada Lovelace',\n email: 'ada.lovelace@example.com',\n amount: 114.13,\n status: 'Paid',\n },\n {\n id: '3',\n name: 'Marie Curie',\n email: 'marie.curie@example.com',\n amount: 111,\n status: 'Past due',\n },\n {\n id: '4',\n name: 'Barbara McClintock',\n email: 'barbara.mcclintock@example.com',\n amount: 84.63,\n status: 'Paid',\n },\n {\n id: '5',\n name: 'Michael Faraday',\n email: 'michael.faraday@example.com',\n amount: 83.97,\n status: 'Paid',\n },\n {\n id: '6',\n name: 'Enrico Fermi',\n email: 'enrico.fermi@example.com',\n amount: 74.5,\n status: 'Past due',\n },\n {\n id: '7',\n name: 'Mae C. Jemison',\n email: 'mae.jemison@example.com',\n amount: 70.86,\n status: 'Paid',\n },\n ];\n\n public onSortChangeForGrid(activeSort: ListSortFieldSelectorModel): void {\n this.data = this.sortGridData(activeSort, this.data);\n }\n\n private sortGridData(\n activeSort: ListSortFieldSelectorModel,\n data: any[]\n ): any[] {\n const sortField = activeSort.fieldSelector;\n const descending = activeSort.descending;\n\n return data\n .sort((a: any, b: any) => {\n let value1 = a[sortField];\n let value2 = b[sortField];\n\n if (value1 && typeof value1 === 'string') {\n value1 = value1.toLowerCase();\n }\n\n if (value2 && typeof value2 === 'string') {\n value2 = value2.toLowerCase();\n }\n\n if (value1 === value2) {\n return 0;\n }\n\n let result = value1 > value2 ? 1 : -1;\n\n if (descending) {\n result *= -1;\n }\n\n return result;\n })\n .slice();\n }\n}\n"
4194
+ "rawContents": "import { Component } from '@angular/core';\n\nimport { ListSortFieldSelectorModel } from '@skyux/list-builder-common';\n\n@Component({\n selector: 'app-grid-demo',\n templateUrl: './grid-demo.component.html',\n})\nexport class GridDemoComponent {\n public data: any[] = [\n {\n id: '1',\n name: 'Niels Bohr',\n email: 'niels.bohr@example.com',\n amount: 170.75,\n status: 'Paid',\n },\n {\n id: '2',\n name: 'Ada Lovelace',\n email: 'ada.lovelace@example.com',\n amount: 114.13,\n status: 'Paid',\n },\n {\n id: '3',\n name: 'Marie Curie',\n email: 'marie.curie@example.com',\n amount: 111,\n status: 'Past due',\n },\n {\n id: '4',\n name: 'Barbara McClintock',\n email: 'barbara.mcclintock@example.com',\n amount: 84.63,\n status: 'Paid',\n },\n {\n id: '5',\n name: 'Michael Faraday',\n email: 'michael.faraday@example.com',\n amount: 83.97,\n status: 'Paid',\n },\n {\n id: '6',\n name: 'Enrico Fermi',\n email: 'enrico.fermi@example.com',\n amount: 74.5,\n status: 'Past due',\n },\n {\n id: '7',\n name: 'Mae C. Jemison',\n email: 'mae.jemison@example.com',\n amount: 70.86,\n status: 'Paid',\n },\n ];\n\n public onSortChangeForGrid(activeSort: ListSortFieldSelectorModel): void {\n this.data = this.sortGridData(activeSort, this.data);\n }\n\n private sortGridData(\n activeSort: ListSortFieldSelectorModel,\n data: any[]\n ): any[] {\n const sortField = activeSort.fieldSelector;\n const descending = activeSort.descending;\n\n return data\n .sort((a: any, b: any) => {\n let value1 = a[sortField];\n let value2 = b[sortField];\n\n if (value1 && typeof value1 === 'string') {\n value1 = value1.toLowerCase();\n }\n\n if (value2 && typeof value2 === 'string') {\n value2 = value2.toLowerCase();\n }\n\n if (value1 === value2) {\n return 0;\n }\n\n let result = value1 > value2 ? 1 : -1;\n\n if (descending) {\n result *= -1;\n }\n\n return result;\n })\n .slice();\n }\n}\n"
4052
4195
  },
4053
4196
  {
4054
4197
  "fileName": "grid-demo.module.ts",
@@ -4063,7 +4206,7 @@
4063
4206
  {
4064
4207
  "fileName": "grid-demo.component.ts",
4065
4208
  "filePath": "/projects/grids/documentation/code-examples/grid/column-template/grid-demo.component.ts",
4066
- "rawContents": "import { Component, OnInit } from '@angular/core';\n\nimport { ListSortFieldSelectorModel } from '@skyux/list-builder-common';\n\nimport { BehaviorSubject } from 'rxjs';\n\n@Component({\n selector: 'sky-grid-demo',\n templateUrl: './grid-demo.component.html',\n})\nexport class GridDemoComponent implements OnInit {\n public asyncHeading = new BehaviorSubject<string>('');\n\n public data: any[] = [\n {\n id: '1',\n name: 'Niels Bohr',\n email: 'niels.bohr@example.com',\n amount: 170.75,\n status: 'Paid',\n },\n {\n id: '2',\n name: 'Ada Lovelace',\n email: 'ada.lovelace@example.com',\n amount: 114.13,\n status: 'Paid',\n },\n {\n id: '3',\n name: 'Marie Curie',\n email: 'marie.curie@example.com',\n amount: 111,\n status: 'Past due',\n },\n {\n id: '4',\n name: 'Barbara McClintock',\n email: 'barbara.mcclintock@example.com',\n amount: 84.63,\n status: 'Paid',\n },\n {\n id: '5',\n name: 'Michael Faraday',\n email: 'michael.faraday@example.com',\n amount: 83.97,\n status: 'Paid',\n },\n {\n id: '6',\n name: 'Enrico Fermi',\n email: 'enrico.fermi@example.com',\n amount: 74.5,\n status: 'Past due',\n },\n {\n id: '7',\n name: 'Mae C. Jemison',\n email: 'mae.jemison@example.com',\n amount: 70.86,\n status: 'Paid',\n },\n ];\n\n public ngOnInit(): void {\n // Simulate async request:\n setTimeout(() => {\n this.asyncHeading.next('Amount');\n }, 1000);\n }\n\n public onSortChangeForGrid(activeSort: ListSortFieldSelectorModel): void {\n this.data = this.sortGridData(activeSort, this.data);\n }\n\n private sortGridData(\n activeSort: ListSortFieldSelectorModel,\n data: any[]\n ): any[] {\n const sortField = activeSort.fieldSelector;\n const descending = activeSort.descending;\n\n return data\n .sort((a: any, b: any) => {\n let value1 = a[sortField];\n let value2 = b[sortField];\n\n if (value1 && typeof value1 === 'string') {\n value1 = value1.toLowerCase();\n }\n\n if (value2 && typeof value2 === 'string') {\n value2 = value2.toLowerCase();\n }\n\n if (value1 === value2) {\n return 0;\n }\n\n let result = value1 > value2 ? 1 : -1;\n\n if (descending) {\n result *= -1;\n }\n\n return result;\n })\n .slice();\n }\n}\n"
4209
+ "rawContents": "import { Component, OnInit } from '@angular/core';\n\nimport { ListSortFieldSelectorModel } from '@skyux/list-builder-common';\n\nimport { BehaviorSubject } from 'rxjs';\n\n@Component({\n selector: 'app-grid-demo',\n templateUrl: './grid-demo.component.html',\n})\nexport class GridDemoComponent implements OnInit {\n public asyncHeading = new BehaviorSubject<string>('');\n\n public data: any[] = [\n {\n id: '1',\n name: 'Niels Bohr',\n email: 'niels.bohr@example.com',\n amount: 170.75,\n status: 'Paid',\n },\n {\n id: '2',\n name: 'Ada Lovelace',\n email: 'ada.lovelace@example.com',\n amount: 114.13,\n status: 'Paid',\n },\n {\n id: '3',\n name: 'Marie Curie',\n email: 'marie.curie@example.com',\n amount: 111,\n status: 'Past due',\n },\n {\n id: '4',\n name: 'Barbara McClintock',\n email: 'barbara.mcclintock@example.com',\n amount: 84.63,\n status: 'Paid',\n },\n {\n id: '5',\n name: 'Michael Faraday',\n email: 'michael.faraday@example.com',\n amount: 83.97,\n status: 'Paid',\n },\n {\n id: '6',\n name: 'Enrico Fermi',\n email: 'enrico.fermi@example.com',\n amount: 74.5,\n status: 'Past due',\n },\n {\n id: '7',\n name: 'Mae C. Jemison',\n email: 'mae.jemison@example.com',\n amount: 70.86,\n status: 'Paid',\n },\n ];\n\n public ngOnInit(): void {\n // Simulate async request:\n setTimeout(() => {\n this.asyncHeading.next('Amount');\n }, 1000);\n }\n\n public onSortChangeForGrid(activeSort: ListSortFieldSelectorModel): void {\n this.data = this.sortGridData(activeSort, this.data);\n }\n\n private sortGridData(\n activeSort: ListSortFieldSelectorModel,\n data: any[]\n ): any[] {\n const sortField = activeSort.fieldSelector;\n const descending = activeSort.descending;\n\n return data\n .sort((a: any, b: any) => {\n let value1 = a[sortField];\n let value2 = b[sortField];\n\n if (value1 && typeof value1 === 'string') {\n value1 = value1.toLowerCase();\n }\n\n if (value2 && typeof value2 === 'string') {\n value2 = value2.toLowerCase();\n }\n\n if (value1 === value2) {\n return 0;\n }\n\n let result = value1 > value2 ? 1 : -1;\n\n if (descending) {\n result *= -1;\n }\n\n return result;\n })\n .slice();\n }\n}\n"
4067
4210
  },
4068
4211
  {
4069
4212
  "fileName": "grid-demo.module.ts",
@@ -4078,7 +4221,7 @@
4078
4221
  {
4079
4222
  "fileName": "grid-demo.component.ts",
4080
4223
  "filePath": "/projects/grids/documentation/code-examples/grid/multiselect/grid-demo.component.ts",
4081
- "rawContents": "import { Component } from '@angular/core';\n\nimport { ListSortFieldSelectorModel } from '@skyux/list-builder-common';\n\nimport { SkyGridSelectedRowsModelChange } from '@skyux/grids';\n\n@Component({\n selector: 'sky-grid-demo',\n templateUrl: './grid-demo.component.html',\n})\nexport class GridDemoComponent {\n public data: any[] = [\n {\n id: '1',\n name: 'Niels Bohr',\n email: 'niels.bohr@example.com',\n amount: 170.75,\n status: 'Paid',\n },\n {\n id: '2',\n name: 'Ada Lovelace',\n email: 'ada.lovelace@example.com',\n amount: 114.13,\n status: 'Paid',\n },\n {\n id: '3',\n name: 'Marie Curie',\n email: 'marie.curie@example.com',\n amount: 111,\n status: 'Past due',\n },\n {\n id: '4',\n name: 'Barbara McClintock',\n email: 'barbara.mcclintock@example.com',\n amount: 84.63,\n status: 'Paid',\n },\n {\n id: '5',\n name: 'Michael Faraday',\n email: 'michael.faraday@example.com',\n amount: 83.97,\n status: 'Paid',\n },\n {\n id: '6',\n name: 'Enrico Fermi',\n email: 'enrico.fermi@example.com',\n amount: 74.5,\n status: 'Past due',\n },\n {\n id: '7',\n name: 'Mae C. Jemison',\n email: 'mae.jemison@example.com',\n amount: 70.86,\n status: 'Paid',\n },\n ];\n\n public selectedRows: string;\n\n public onMultiselectSelectionChange(\n value: SkyGridSelectedRowsModelChange\n ): void {\n this.selectedRows = value.selectedRowIds.toString();\n }\n\n public onSortChangeForGrid(activeSort: ListSortFieldSelectorModel): void {\n this.data = this.sortGridData(activeSort, this.data);\n }\n\n private sortGridData(\n activeSort: ListSortFieldSelectorModel,\n data: any[]\n ): any[] {\n const sortField = activeSort.fieldSelector;\n const descending = activeSort.descending;\n\n return data\n .sort((a: any, b: any) => {\n let value1 = a[sortField];\n let value2 = b[sortField];\n\n if (value1 && typeof value1 === 'string') {\n value1 = value1.toLowerCase();\n }\n\n if (value2 && typeof value2 === 'string') {\n value2 = value2.toLowerCase();\n }\n\n if (value1 === value2) {\n return 0;\n }\n\n let result = value1 > value2 ? 1 : -1;\n\n if (descending) {\n result *= -1;\n }\n\n return result;\n })\n .slice();\n }\n}\n"
4224
+ "rawContents": "import { Component } from '@angular/core';\n\nimport { ListSortFieldSelectorModel } from '@skyux/list-builder-common';\n\nimport { SkyGridSelectedRowsModelChange } from '@skyux/grids';\n\n@Component({\n selector: 'app-grid-demo',\n templateUrl: './grid-demo.component.html',\n})\nexport class GridDemoComponent {\n public data: any[] = [\n {\n id: '1',\n name: 'Niels Bohr',\n email: 'niels.bohr@example.com',\n amount: 170.75,\n status: 'Paid',\n },\n {\n id: '2',\n name: 'Ada Lovelace',\n email: 'ada.lovelace@example.com',\n amount: 114.13,\n status: 'Paid',\n },\n {\n id: '3',\n name: 'Marie Curie',\n email: 'marie.curie@example.com',\n amount: 111,\n status: 'Past due',\n },\n {\n id: '4',\n name: 'Barbara McClintock',\n email: 'barbara.mcclintock@example.com',\n amount: 84.63,\n status: 'Paid',\n },\n {\n id: '5',\n name: 'Michael Faraday',\n email: 'michael.faraday@example.com',\n amount: 83.97,\n status: 'Paid',\n },\n {\n id: '6',\n name: 'Enrico Fermi',\n email: 'enrico.fermi@example.com',\n amount: 74.5,\n status: 'Past due',\n },\n {\n id: '7',\n name: 'Mae C. Jemison',\n email: 'mae.jemison@example.com',\n amount: 70.86,\n status: 'Paid',\n },\n ];\n\n public selectedRows: string;\n\n public onMultiselectSelectionChange(\n value: SkyGridSelectedRowsModelChange\n ): void {\n this.selectedRows = value.selectedRowIds.toString();\n }\n\n public onSortChangeForGrid(activeSort: ListSortFieldSelectorModel): void {\n this.data = this.sortGridData(activeSort, this.data);\n }\n\n private sortGridData(\n activeSort: ListSortFieldSelectorModel,\n data: any[]\n ): any[] {\n const sortField = activeSort.fieldSelector;\n const descending = activeSort.descending;\n\n return data\n .sort((a: any, b: any) => {\n let value1 = a[sortField];\n let value2 = b[sortField];\n\n if (value1 && typeof value1 === 'string') {\n value1 = value1.toLowerCase();\n }\n\n if (value2 && typeof value2 === 'string') {\n value2 = value2.toLowerCase();\n }\n\n if (value1 === value2) {\n return 0;\n }\n\n let result = value1 > value2 ? 1 : -1;\n\n if (descending) {\n result *= -1;\n }\n\n return result;\n })\n .slice();\n }\n}\n"
4082
4225
  },
4083
4226
  {
4084
4227
  "fileName": "grid-demo.module.ts",
@@ -4086,4 +4229,4 @@
4086
4229
  "rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { SkyGridModule } from '@skyux/grids';\n\nimport { GridDemoComponent } from './grid-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyGridModule],\n declarations: [GridDemoComponent],\n exports: [GridDemoComponent],\n})\nexport class GridDemoModule {}\n"
4087
4230
  }
4088
4231
  ]
4089
- }
4232
+ }