@skyux/list-builder 5.0.0-beta.1 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/bundles/skyux-list-builder.umd.js +312 -332
  2. package/documentation.json +287 -439
  3. package/esm2015/modules/list/list-data-response.model.js +1 -1
  4. package/esm2015/modules/list/list-data.provider.js +1 -1
  5. package/esm2015/modules/list/list-paging.component.js +1 -1
  6. package/esm2015/modules/list/list-view.component.js +8 -8
  7. package/esm2015/modules/list/list.component.js +45 -42
  8. package/esm2015/modules/list/list.module.js +8 -16
  9. package/esm2015/modules/list/state/filters/filters.orchestrator.js +2 -3
  10. package/esm2015/modules/list/state/items/items.orchestrator.js +10 -9
  11. package/esm2015/modules/list/state/items/load.action.js +1 -1
  12. package/esm2015/modules/list/state/list-state-action.type.js +1 -1
  13. package/esm2015/modules/list/state/list-state.model.js +1 -1
  14. package/esm2015/modules/list/state/list-state.rxstate.js +4 -4
  15. package/esm2015/modules/list/state/list-state.state-node.js +5 -6
  16. package/esm2015/modules/list/state/paging/paging.orchestrator.js +2 -3
  17. package/esm2015/modules/list/state/paging/set-max-pages.action.js +1 -1
  18. package/esm2015/modules/list/state/paging/set-page-number.action.js +1 -1
  19. package/esm2015/modules/list/state/search/search.orchestrator.js +5 -4
  20. package/esm2015/modules/list/state/search/set-functions.action.js +1 -1
  21. package/esm2015/modules/list/state/selected/selected.orchestrator.js +9 -10
  22. package/esm2015/modules/list/state/selected/set-items-selected.action.js +1 -1
  23. package/esm2015/modules/list/state/sort/set-field-selectors.action.js +1 -1
  24. package/esm2015/modules/list/state/sort/sort.model.js +1 -1
  25. package/esm2015/modules/list/state/sort/sort.orchestrator.js +4 -5
  26. package/esm2015/modules/list/state/toolbar/disable.action.js +1 -1
  27. package/esm2015/modules/list/state/toolbar/load.action.js +1 -1
  28. package/esm2015/modules/list/state/toolbar/toolbar.orchestrator.js +3 -4
  29. package/esm2015/modules/list/state/views/load.action.js +1 -1
  30. package/esm2015/modules/list/state/views/view.model.js +1 -1
  31. package/esm2015/modules/list/state/views/views.model.js +1 -1
  32. package/esm2015/modules/list/state/views/views.orchestrator.js +2 -4
  33. package/esm2015/modules/list-data-provider-in-memory/list-data-in-memory.provider.js +24 -14
  34. package/esm2015/modules/list-filters/filter.model.js +1 -1
  35. package/esm2015/modules/list-filters/list-filter-button.component.js +9 -9
  36. package/esm2015/modules/list-filters/list-filter-inline-item-renderer.component.js +7 -7
  37. package/esm2015/modules/list-filters/list-filter-inline-item.component.js +9 -8
  38. package/esm2015/modules/list-filters/list-filter-inline.component.js +12 -11
  39. package/esm2015/modules/list-filters/list-filter-inline.model.js +1 -1
  40. package/esm2015/modules/list-filters/list-filter-summary.component.js +8 -8
  41. package/esm2015/modules/list-filters/list-filters.module.js +10 -17
  42. package/esm2015/modules/list-paging/list-paging.component.js +14 -15
  43. package/esm2015/modules/list-paging/list-paging.module.js +8 -19
  44. package/esm2015/modules/list-toolbar/list-multiselect-toolbar.component.js +26 -25
  45. package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-action.component.js +8 -8
  46. package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-action.js +1 -1
  47. package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-actions-host.component.js +7 -7
  48. package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.js +10 -16
  49. package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-actions.module.js +10 -14
  50. package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-actions.service.js +5 -5
  51. package/esm2015/modules/list-toolbar/list-toolbar-item-renderer.component.js +7 -7
  52. package/esm2015/modules/list-toolbar/list-toolbar-item.component.js +6 -6
  53. package/esm2015/modules/list-toolbar/list-toolbar-search-actions.component.js +5 -5
  54. package/esm2015/modules/list-toolbar/list-toolbar-sort.component.js +5 -5
  55. package/esm2015/modules/list-toolbar/list-toolbar-view-actions.component.js +5 -5
  56. package/esm2015/modules/list-toolbar/list-toolbar.component.js +69 -67
  57. package/esm2015/modules/list-toolbar/list-toolbar.module.js +10 -10
  58. package/esm2015/modules/list-toolbar/state/config/config.orchestrator.js +2 -4
  59. package/esm2015/modules/list-toolbar/state/toolbar-state-action.type.js +1 -1
  60. package/esm2015/modules/list-toolbar/state/toolbar-state.rxstate.js +4 -4
  61. package/esm2015/modules/list-toolbar/state/toolbar-state.state-node.js +5 -7
  62. package/esm2015/modules/shared/sky-list-builder-resources.module.js +24 -12
  63. package/fesm2015/skyux-list-builder.js +356 -373
  64. package/fesm2015/skyux-list-builder.js.map +1 -1
  65. package/package.json +14 -14
  66. package/bundles/skyux-list-builder.umd.js.map +0 -1
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "anchorIds": {
3
+ "SkyListSecondaryActionsComponent": "class-skylistsecondaryactionscomponent",
3
4
  "ListDataRequestModel": "class-listdatarequestmodel",
4
5
  "ListDataResponseModel": "class-listdataresponsemodel",
5
6
  "ListFilterModel": "class-listfiltermodel",
@@ -12,7 +13,6 @@
12
13
  "SkyListInMemoryDataProvider": "class-skylistinmemorydataprovider",
13
14
  "SkyListModule": "class-skylistmodule",
14
15
  "SkyListPagingModule": "class-skylistpagingmodule",
15
- "SkyListSecondaryActionsComponent": "class-skylistsecondaryactionscomponent",
16
16
  "SkyListSecondaryActionsModule": "class-skylistsecondaryactionsmodule",
17
17
  "SkyListToolbarComponent": "class-skylisttoolbarcomponent",
18
18
  "SkyListToolbarModule": "class-skylisttoolbarmodule",
@@ -30,11 +30,19 @@
30
30
  "typedoc": {
31
31
  "id": 0,
32
32
  "name": "@skyux/list-builder",
33
- "kind": 0,
33
+ "kind": 1,
34
34
  "kindString": "Project",
35
35
  "flags": {},
36
36
  "originalName": "",
37
37
  "children": [
38
+ {
39
+ "id": 726,
40
+ "name": "SkyListSecondaryActionsComponent",
41
+ "kind": 16777216,
42
+ "kindString": "Reference",
43
+ "flags": {},
44
+ "target": 83
45
+ },
38
46
  {
39
47
  "id": 114,
40
48
  "name": "ListDataRequestModel",
@@ -282,8 +290,8 @@
282
290
  "sources": [
283
291
  {
284
292
  "fileName": "projects/list-builder/src/modules/list/list-data-response.model.ts",
285
- "line": 16,
286
- "character": 3
293
+ "line": 14,
294
+ "character": 2
287
295
  }
288
296
  ],
289
297
  "signatures": [
@@ -330,8 +338,8 @@
330
338
  "sources": [
331
339
  {
332
340
  "fileName": "projects/list-builder/src/modules/list/list-data-response.model.ts",
333
- "line": 9,
334
- "character": 10
341
+ "line": 7,
342
+ "character": 9
335
343
  }
336
344
  ],
337
345
  "type": {
@@ -353,8 +361,8 @@
353
361
  "sources": [
354
362
  {
355
363
  "fileName": "projects/list-builder/src/modules/list/list-data-response.model.ts",
356
- "line": 14,
357
- "character": 10
364
+ "line": 12,
365
+ "character": 9
358
366
  }
359
367
  ],
360
368
  "type": {
@@ -386,8 +394,8 @@
386
394
  "sources": [
387
395
  {
388
396
  "fileName": "projects/list-builder/src/modules/list/list-data-response.model.ts",
389
- "line": 5,
390
- "character": 14
397
+ "line": 3,
398
+ "character": 13
391
399
  }
392
400
  ]
393
401
  },
@@ -407,7 +415,7 @@
407
415
  "sources": [
408
416
  {
409
417
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
410
- "line": 44,
418
+ "line": 41,
411
419
  "character": 2
412
420
  }
413
421
  ],
@@ -455,7 +463,7 @@
455
463
  "sources": [
456
464
  {
457
465
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
458
- "line": 34,
466
+ "line": 31,
459
467
  "character": 9
460
468
  }
461
469
  ],
@@ -484,7 +492,7 @@
484
492
  "sources": [
485
493
  {
486
494
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
487
- "line": 23,
495
+ "line": 20,
488
496
  "character": 9
489
497
  }
490
498
  ],
@@ -502,13 +510,10 @@
502
510
  "flags": {
503
511
  "isPublic": true
504
512
  },
505
- "comment": {
506
- "shortText": "Specifies a function to determine whether items are filtered.\nThis property is required when using an in-memory data provider.\nFor information about `ListItemModel`, see the\n[shared classes for lists](https://developer.blackbaud.com/skyux-list-builder-common/docs/list-builder-common)."
507
- },
508
513
  "sources": [
509
514
  {
510
515
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
511
- "line": 42,
516
+ "line": 39,
512
517
  "character": 9
513
518
  }
514
519
  ],
@@ -577,7 +582,7 @@
577
582
  "sources": [
578
583
  {
579
584
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
580
- "line": 17,
585
+ "line": 14,
581
586
  "character": 9
582
587
  }
583
588
  ],
@@ -606,7 +611,7 @@
606
611
  "sources": [
607
612
  {
608
613
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
609
- "line": 11,
614
+ "line": 8,
610
615
  "character": 9
611
616
  }
612
617
  ],
@@ -629,7 +634,7 @@
629
634
  "sources": [
630
635
  {
631
636
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
632
- "line": 28,
637
+ "line": 25,
633
638
  "character": 9
634
639
  }
635
640
  ],
@@ -663,7 +668,7 @@
663
668
  "sources": [
664
669
  {
665
670
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
666
- "line": 5,
671
+ "line": 3,
667
672
  "character": 13
668
673
  }
669
674
  ]
@@ -1195,7 +1200,7 @@
1195
1200
  "sources": [
1196
1201
  {
1197
1202
  "fileName": "projects/list-builder/src/modules/list/state/sort/sort.model.ts",
1198
- "line": 26,
1203
+ "line": 24,
1199
1204
  "character": 2
1200
1205
  }
1201
1206
  ],
@@ -1243,7 +1248,7 @@
1243
1248
  "sources": [
1244
1249
  {
1245
1250
  "fileName": "projects/list-builder/src/modules/list/state/sort/sort.model.ts",
1246
- "line": 14,
1251
+ "line": 12,
1247
1252
  "character": 9
1248
1253
  }
1249
1254
  ],
@@ -1271,7 +1276,7 @@
1271
1276
  "sources": [
1272
1277
  {
1273
1278
  "fileName": "projects/list-builder/src/modules/list/state/sort/sort.model.ts",
1274
- "line": 24,
1279
+ "line": 22,
1275
1280
  "character": 9
1276
1281
  }
1277
1282
  ],
@@ -1298,7 +1303,7 @@
1298
1303
  "sources": [
1299
1304
  {
1300
1305
  "fileName": "projects/list-builder/src/modules/list/state/sort/sort.model.ts",
1301
- "line": 18,
1306
+ "line": 16,
1302
1307
  "character": 9
1303
1308
  }
1304
1309
  ],
@@ -1334,7 +1339,7 @@
1334
1339
  "sources": [
1335
1340
  {
1336
1341
  "fileName": "projects/list-builder/src/modules/list/state/sort/sort.model.ts",
1337
- "line": 10,
1342
+ "line": 8,
1338
1343
  "character": 13
1339
1344
  }
1340
1345
  ]
@@ -1353,7 +1358,7 @@
1353
1358
  "name": "Component"
1354
1359
  },
1355
1360
  "arguments": {
1356
- "obj": "{\n selector: 'sky-list',\n template: '<ng-content></ng-content>',\n providers: [ListState, ListStateDispatcher],\n changeDetection: ChangeDetectionStrategy.OnPush\n}"
1361
+ "obj": "{\n selector: 'sky-list',\n template: '<ng-content></ng-content>',\n providers: [ListState, ListStateDispatcher],\n changeDetection: ChangeDetectionStrategy.OnPush,\n}"
1357
1362
  }
1358
1363
  }
1359
1364
  ],
@@ -1367,7 +1372,7 @@
1367
1372
  "sources": [
1368
1373
  {
1369
1374
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1370
- "line": 225,
1375
+ "line": 184,
1371
1376
  "character": 2
1372
1377
  }
1373
1378
  ],
@@ -1434,7 +1439,7 @@
1434
1439
  "sources": [
1435
1440
  {
1436
1441
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1437
- "line": 192,
1442
+ "line": 152,
1438
1443
  "character": 9
1439
1444
  }
1440
1445
  ],
@@ -1472,7 +1477,7 @@
1472
1477
  "sources": [
1473
1478
  {
1474
1479
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1475
- "line": 204,
1480
+ "line": 164,
1476
1481
  "character": 9
1477
1482
  }
1478
1483
  ],
@@ -1517,7 +1522,7 @@
1517
1522
  "sources": [
1518
1523
  {
1519
1524
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1520
- "line": 141,
1525
+ "line": 100,
1521
1526
  "character": 9
1522
1527
  }
1523
1528
  ],
@@ -1579,7 +1584,7 @@
1579
1584
  "sources": [
1580
1585
  {
1581
1586
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1582
- "line": 150,
1587
+ "line": 109,
1583
1588
  "character": 9
1584
1589
  }
1585
1590
  ],
@@ -1599,7 +1604,7 @@
1599
1604
  "sources": [
1600
1605
  {
1601
1606
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1602
- "line": 131,
1607
+ "line": 90,
1603
1608
  "character": 9
1604
1609
  }
1605
1610
  ],
@@ -1634,7 +1639,7 @@
1634
1639
  "sources": [
1635
1640
  {
1636
1641
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1637
- "line": 164,
1642
+ "line": 123,
1638
1643
  "character": 9
1639
1644
  }
1640
1645
  ],
@@ -1651,9 +1656,6 @@
1651
1656
  "flags": {
1652
1657
  "isPublic": true
1653
1658
  },
1654
- "comment": {
1655
- "shortText": "Specifies a function to apply as a global sort on the list."
1656
- },
1657
1659
  "decorators": [
1658
1660
  {
1659
1661
  "name": "Input",
@@ -1669,7 +1671,7 @@
1669
1671
  "sources": [
1670
1672
  {
1671
1673
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1672
- "line": 211,
1674
+ "line": 171,
1673
1675
  "character": 9
1674
1676
  }
1675
1677
  ],
@@ -1749,7 +1751,7 @@
1749
1751
  "sources": [
1750
1752
  {
1751
1753
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1752
- "line": 172,
1754
+ "line": 131,
1753
1755
  "character": 9
1754
1756
  }
1755
1757
  ],
@@ -1803,7 +1805,7 @@
1803
1805
  "sources": [
1804
1806
  {
1805
1807
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1806
- "line": 198,
1808
+ "line": 158,
1807
1809
  "character": 9
1808
1810
  }
1809
1811
  ],
@@ -1854,7 +1856,7 @@
1854
1856
  "sources": [
1855
1857
  {
1856
1858
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1857
- "line": 180,
1859
+ "line": 139,
1858
1860
  "character": 9
1859
1861
  }
1860
1862
  ],
@@ -1907,7 +1909,7 @@
1907
1909
  "sources": [
1908
1910
  {
1909
1911
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1910
- "line": 348,
1912
+ "line": 326,
1911
1913
  "character": 6
1912
1914
  }
1913
1915
  ],
@@ -1943,7 +1945,7 @@
1943
1945
  "sources": [
1944
1946
  {
1945
1947
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1946
- "line": 476,
1948
+ "line": 490,
1947
1949
  "character": 13
1948
1950
  }
1949
1951
  ],
@@ -1978,7 +1980,7 @@
1978
1980
  "sources": [
1979
1981
  {
1980
1982
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1981
- "line": 462,
1983
+ "line": 477,
1982
1984
  "character": 13
1983
1985
  }
1984
1986
  ],
@@ -2013,7 +2015,7 @@
2013
2015
  "sources": [
2014
2016
  {
2015
2017
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2016
- "line": 452,
2018
+ "line": 461,
2017
2019
  "character": 13
2018
2020
  }
2019
2021
  ],
@@ -2051,7 +2053,7 @@
2051
2053
  "sources": [
2052
2054
  {
2053
2055
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2054
- "line": 472,
2056
+ "line": 486,
2055
2057
  "character": 13
2056
2058
  }
2057
2059
  ],
@@ -2083,7 +2085,7 @@
2083
2085
  "sources": [
2084
2086
  {
2085
2087
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2086
- "line": 230,
2088
+ "line": 189,
2087
2089
  "character": 9
2088
2090
  }
2089
2091
  ],
@@ -2120,7 +2122,7 @@
2120
2122
  "sources": [
2121
2123
  {
2122
2124
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2123
- "line": 314,
2125
+ "line": 286,
2124
2126
  "character": 9
2125
2127
  }
2126
2128
  ],
@@ -2170,7 +2172,7 @@
2170
2172
  "sources": [
2171
2173
  {
2172
2174
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2173
- "line": 336,
2175
+ "line": 312,
2174
2176
  "character": 9
2175
2177
  }
2176
2178
  ],
@@ -2207,7 +2209,7 @@
2207
2209
  "sources": [
2208
2210
  {
2209
2211
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2210
- "line": 341,
2212
+ "line": 317,
2211
2213
  "character": 9
2212
2214
  }
2213
2215
  ],
@@ -2275,7 +2277,7 @@
2275
2277
  "sources": [
2276
2278
  {
2277
2279
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2278
- "line": 130,
2280
+ "line": 87,
2279
2281
  "character": 13
2280
2282
  }
2281
2283
  ],
@@ -2308,7 +2310,7 @@
2308
2310
  "name": "NgModule"
2309
2311
  },
2310
2312
  "arguments": {
2311
- "obj": "{\n declarations: [\n SkyListFilterButtonComponent,\n SkyListFilterSummaryComponent,\n SkyListFilterInlineItemComponent,\n SkyListFilterInlineComponent,\n SkyListFilterInlineItemRendererComponent\n ],\n imports: [\n CommonModule,\n SkyFilterModule\n ],\n exports: [\n SkyListFilterButtonComponent,\n SkyListFilterSummaryComponent,\n SkyListFilterInlineItemComponent,\n SkyListFilterInlineComponent\n ]\n}"
2313
+ "obj": "{\n declarations: [\n SkyListFilterButtonComponent,\n SkyListFilterSummaryComponent,\n SkyListFilterInlineItemComponent,\n SkyListFilterInlineComponent,\n SkyListFilterInlineItemRendererComponent,\n ],\n imports: [CommonModule, SkyFilterModule],\n exports: [\n SkyListFilterButtonComponent,\n SkyListFilterSummaryComponent,\n SkyListFilterInlineItemComponent,\n SkyListFilterInlineComponent,\n ],\n}"
2312
2314
  }
2313
2315
  }
2314
2316
  ],
@@ -2347,7 +2349,7 @@
2347
2349
  "sources": [
2348
2350
  {
2349
2351
  "fileName": "projects/list-builder/src/modules/list-filters/list-filters.module.ts",
2350
- "line": 33,
2352
+ "line": 28,
2351
2353
  "character": 13
2352
2354
  }
2353
2355
  ]
@@ -2368,7 +2370,7 @@
2368
2370
  "sources": [
2369
2371
  {
2370
2372
  "fileName": "projects/list-builder/src/modules/list-data-provider-in-memory/list-data-in-memory.provider.ts",
2371
- "line": 36,
2373
+ "line": 28,
2372
2374
  "character": 2
2373
2375
  }
2374
2376
  ],
@@ -2486,7 +2488,7 @@
2486
2488
  "sources": [
2487
2489
  {
2488
2490
  "fileName": "projects/list-builder/src/modules/list-data-provider-in-memory/list-data-in-memory.provider.ts",
2489
- "line": 25,
2491
+ "line": 16,
2490
2492
  "character": 9
2491
2493
  }
2492
2494
  ],
@@ -2516,7 +2518,7 @@
2516
2518
  "sources": [
2517
2519
  {
2518
2520
  "fileName": "projects/list-builder/src/modules/list-data-provider-in-memory/list-data-in-memory.provider.ts",
2519
- "line": 53,
2521
+ "line": 51,
2520
2522
  "character": 9
2521
2523
  }
2522
2524
  ],
@@ -2559,7 +2561,7 @@
2559
2561
  "sources": [
2560
2562
  {
2561
2563
  "fileName": "projects/list-builder/src/modules/list-data-provider-in-memory/list-data-in-memory.provider.ts",
2562
- "line": 57,
2564
+ "line": 55,
2563
2565
  "character": 9
2564
2566
  }
2565
2567
  ],
@@ -2634,7 +2636,7 @@
2634
2636
  "sources": [
2635
2637
  {
2636
2638
  "fileName": "projects/list-builder/src/modules/list-data-provider-in-memory/list-data-in-memory.provider.ts",
2637
- "line": 24,
2639
+ "line": 15,
2638
2640
  "character": 13
2639
2641
  }
2640
2642
  ],
@@ -2659,7 +2661,7 @@
2659
2661
  "name": "NgModule"
2660
2662
  },
2661
2663
  "arguments": {
2662
- "obj": "{\n declarations: [\n SkyListComponent\n ],\n imports: [\n CommonModule\n ],\n exports: [\n SkyListComponent\n ]\n}"
2664
+ "obj": "{\n declarations: [SkyListComponent],\n imports: [CommonModule],\n exports: [SkyListComponent],\n}"
2663
2665
  }
2664
2666
  }
2665
2667
  ],
@@ -2698,7 +2700,7 @@
2698
2700
  "sources": [
2699
2701
  {
2700
2702
  "fileName": "projects/list-builder/src/modules/list/list.module.ts",
2701
- "line": 16,
2703
+ "line": 10,
2702
2704
  "character": 13
2703
2705
  }
2704
2706
  ]
@@ -2717,7 +2719,7 @@
2717
2719
  "name": "NgModule"
2718
2720
  },
2719
2721
  "arguments": {
2720
- "obj": "{\n declarations: [\n SkyListPagingComponent\n ],\n imports: [\n CommonModule,\n SkyPagingModule\n ],\n exports: [\n SkyListPagingComponent\n ]\n}"
2722
+ "obj": "{\n declarations: [SkyListPagingComponent],\n imports: [CommonModule, SkyPagingModule],\n exports: [SkyListPagingComponent],\n}"
2721
2723
  }
2722
2724
  }
2723
2725
  ],
@@ -2756,171 +2758,9 @@
2756
2758
  "sources": [
2757
2759
  {
2758
2760
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.module.ts",
2759
- "line": 18,
2760
- "character": 13
2761
- }
2762
- ]
2763
- },
2764
- {
2765
- "id": 726,
2766
- "name": "SkyListSecondaryActionsComponent",
2767
- "kind": 128,
2768
- "kindString": "Class",
2769
- "flags": {},
2770
- "comment": {
2771
- "shortText": "Adds a dropdown to the list toolbar for secondary actions. If the dropdown does not\ninclude actions, the secondary actions dropdown is hidden."
2772
- },
2773
- "decorators": [
2774
- {
2775
- "name": "Component",
2776
- "type": {
2777
- "type": "reference",
2778
- "name": "Component"
2779
- },
2780
- "arguments": {
2781
- "obj": "{\n selector: 'sky-list-secondary-actions',\n templateUrl: './list-secondary-actions.component.html',\n providers: [\n SkyListSecondaryActionsService\n ],\n changeDetection: ChangeDetectionStrategy.OnPush\n}"
2782
- }
2783
- }
2784
- ],
2785
- "children": [
2786
- {
2787
- "id": 727,
2788
- "name": "constructor",
2789
- "kind": 512,
2790
- "kindString": "Constructor",
2791
- "flags": {},
2792
- "sources": [
2793
- {
2794
- "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.ts",
2795
- "line": 44,
2796
- "character": 2
2797
- }
2798
- ],
2799
- "signatures": [
2800
- {
2801
- "id": 728,
2802
- "name": "new SkyListSecondaryActionsComponent",
2803
- "kind": 16384,
2804
- "kindString": "Constructor signature",
2805
- "flags": {},
2806
- "parameters": [
2807
- {
2808
- "id": 729,
2809
- "name": "dispatcher",
2810
- "kind": 32768,
2811
- "kindString": "Parameter",
2812
- "flags": {},
2813
- "type": {
2814
- "type": "reference",
2815
- "name": "ListStateDispatcher"
2816
- }
2817
- }
2818
- ],
2819
- "type": {
2820
- "type": "reference",
2821
- "id": 83,
2822
- "name": "SkyListSecondaryActionsComponent"
2823
- }
2824
- }
2825
- ]
2826
- },
2827
- {
2828
- "id": 730,
2829
- "name": "actions",
2830
- "kind": 1024,
2831
- "kindString": "Property",
2832
- "flags": {
2833
- "isPublic": true
2834
- },
2835
- "sources": [
2836
- {
2837
- "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.ts",
2838
- "line": 34,
2839
- "character": 9
2840
- }
2841
- ],
2842
- "type": {
2843
- "type": "array",
2844
- "elementType": {
2845
- "type": "intrinsic",
2846
- "name": "any"
2847
- }
2848
- },
2849
- "defaultValue": "[]"
2850
- },
2851
- {
2852
- "id": 733,
2853
- "name": "ngAfterViewInit",
2854
- "kind": 2048,
2855
- "kindString": "Method",
2856
- "flags": {
2857
- "isPublic": true
2858
- },
2859
- "sources": [
2860
- {
2861
- "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.ts",
2862
- "line": 48,
2863
- "character": 9
2864
- }
2865
- ],
2866
- "signatures": [
2867
- {
2868
- "id": 734,
2869
- "name": "ngAfterViewInit",
2870
- "kind": 4096,
2871
- "kindString": "Call signature",
2872
- "flags": {},
2873
- "type": {
2874
- "type": "intrinsic",
2875
- "name": "void"
2876
- },
2877
- "implementationOf": {
2878
- "type": "reference",
2879
- "name": "AfterViewInit.ngAfterViewInit"
2880
- }
2881
- }
2882
- ],
2883
- "implementationOf": {
2884
- "type": "reference",
2885
- "name": "AfterViewInit.ngAfterViewInit"
2886
- }
2887
- }
2888
- ],
2889
- "groups": [
2890
- {
2891
- "title": "Constructors",
2892
- "kind": 512,
2893
- "children": [
2894
- 727
2895
- ]
2896
- },
2897
- {
2898
- "title": "Properties",
2899
- "kind": 1024,
2900
- "children": [
2901
- 730
2902
- ]
2903
- },
2904
- {
2905
- "title": "Methods",
2906
- "kind": 2048,
2907
- "children": [
2908
- 733
2909
- ]
2910
- }
2911
- ],
2912
- "sources": [
2913
- {
2914
- "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.ts",
2915
- "line": 33,
2761
+ "line": 11,
2916
2762
  "character": 13
2917
2763
  }
2918
- ],
2919
- "implementedTypes": [
2920
- {
2921
- "type": "reference",
2922
- "name": "AfterViewInit"
2923
- }
2924
2764
  ]
2925
2765
  },
2926
2766
  {
@@ -2937,7 +2777,7 @@
2937
2777
  "name": "NgModule"
2938
2778
  },
2939
2779
  "arguments": {
2940
- "obj": "{\n declarations: [\n SkyListSecondaryActionsComponent,\n SkyListSecondaryActionsHostComponent,\n SkyListSecondaryActionComponent\n ],\n imports: [\n CommonModule,\n SkyDropdownModule,\n SkyI18nModule,\n SkyIconModule,\n SkyListBuilderResourcesModule\n ],\n exports: [\n SkyListSecondaryActionsComponent,\n SkyListSecondaryActionComponent\n ]\n}"
2780
+ "obj": "{\n declarations: [\n SkyListSecondaryActionsComponent,\n SkyListSecondaryActionsHostComponent,\n SkyListSecondaryActionComponent,\n ],\n imports: [\n CommonModule,\n SkyDropdownModule,\n SkyI18nModule,\n SkyIconModule,\n SkyListBuilderResourcesModule,\n ],\n exports: [SkyListSecondaryActionsComponent, SkyListSecondaryActionComponent],\n}"
2941
2781
  }
2942
2782
  }
2943
2783
  ],
@@ -2976,13 +2816,13 @@
2976
2816
  "sources": [
2977
2817
  {
2978
2818
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.module.ts",
2979
- "line": 55,
2819
+ "line": 34,
2980
2820
  "character": 13
2981
2821
  }
2982
2822
  ]
2983
2823
  },
2984
2824
  {
2985
- "id": 735,
2825
+ "id": 727,
2986
2826
  "name": "SkyListToolbarComponent",
2987
2827
  "kind": 128,
2988
2828
  "kindString": "Class",
@@ -2998,13 +2838,13 @@
2998
2838
  "name": "Component"
2999
2839
  },
3000
2840
  "arguments": {
3001
- "obj": "{\n selector: 'sky-list-toolbar',\n templateUrl: './list-toolbar.component.html',\n styleUrls: ['./list-toolbar.component.scss'],\n providers: [\n ListToolbarState,\n ListToolbarStateDispatcher,\n ListToolbarStateModel\n ],\n changeDetection: ChangeDetectionStrategy.OnPush\n}"
2841
+ "obj": "{\n selector: 'sky-list-toolbar',\n templateUrl: './list-toolbar.component.html',\n styleUrls: ['./list-toolbar.component.scss'],\n providers: [\n ListToolbarState,\n ListToolbarStateDispatcher,\n ListToolbarStateModel,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n}"
3002
2842
  }
3003
2843
  }
3004
2844
  ],
3005
2845
  "children": [
3006
2846
  {
3007
- "id": 736,
2847
+ "id": 728,
3008
2848
  "name": "constructor",
3009
2849
  "kind": 512,
3010
2850
  "kindString": "Constructor",
@@ -3012,20 +2852,20 @@
3012
2852
  "sources": [
3013
2853
  {
3014
2854
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3015
- "line": 264,
2855
+ "line": 232,
3016
2856
  "character": 2
3017
2857
  }
3018
2858
  ],
3019
2859
  "signatures": [
3020
2860
  {
3021
- "id": 737,
2861
+ "id": 729,
3022
2862
  "name": "new SkyListToolbarComponent",
3023
2863
  "kind": 16384,
3024
2864
  "kindString": "Constructor signature",
3025
2865
  "flags": {},
3026
2866
  "parameters": [
3027
2867
  {
3028
- "id": 738,
2868
+ "id": 730,
3029
2869
  "name": "changeDetector",
3030
2870
  "kind": 32768,
3031
2871
  "kindString": "Parameter",
@@ -3036,7 +2876,7 @@
3036
2876
  }
3037
2877
  },
3038
2878
  {
3039
- "id": 739,
2879
+ "id": 731,
3040
2880
  "name": "state",
3041
2881
  "kind": 32768,
3042
2882
  "kindString": "Parameter",
@@ -3047,7 +2887,7 @@
3047
2887
  }
3048
2888
  },
3049
2889
  {
3050
- "id": 740,
2890
+ "id": 732,
3051
2891
  "name": "dispatcher",
3052
2892
  "kind": 32768,
3053
2893
  "kindString": "Parameter",
@@ -3058,7 +2898,7 @@
3058
2898
  }
3059
2899
  },
3060
2900
  {
3061
- "id": 741,
2901
+ "id": 733,
3062
2902
  "name": "toolbarState",
3063
2903
  "kind": 32768,
3064
2904
  "kindString": "Parameter",
@@ -3069,7 +2909,7 @@
3069
2909
  }
3070
2910
  },
3071
2911
  {
3072
- "id": 742,
2912
+ "id": 734,
3073
2913
  "name": "toolbarDispatcher",
3074
2914
  "kind": 32768,
3075
2915
  "kindString": "Parameter",
@@ -3082,14 +2922,14 @@
3082
2922
  ],
3083
2923
  "type": {
3084
2924
  "type": "reference",
3085
- "id": 735,
2925
+ "id": 727,
3086
2926
  "name": "SkyListToolbarComponent"
3087
2927
  }
3088
2928
  }
3089
2929
  ]
3090
2930
  },
3091
2931
  {
3092
- "id": 768,
2932
+ "id": 760,
3093
2933
  "name": "appliedFilters",
3094
2934
  "kind": 1024,
3095
2935
  "kindString": "Property",
@@ -3099,7 +2939,7 @@
3099
2939
  "sources": [
3100
2940
  {
3101
2941
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3102
- "line": 206,
2942
+ "line": 174,
3103
2943
  "character": 9
3104
2944
  }
3105
2945
  ],
@@ -3119,7 +2959,7 @@
3119
2959
  }
3120
2960
  },
3121
2961
  {
3122
- "id": 761,
2962
+ "id": 753,
3123
2963
  "name": "centerTemplates",
3124
2964
  "kind": 1024,
3125
2965
  "kindString": "Property",
@@ -3129,7 +2969,7 @@
3129
2969
  "sources": [
3130
2970
  {
3131
2971
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3132
- "line": 199,
2972
+ "line": 167,
3133
2973
  "character": 9
3134
2974
  }
3135
2975
  ],
@@ -3142,7 +2982,7 @@
3142
2982
  }
3143
2983
  },
3144
2984
  {
3145
- "id": 775,
2985
+ "id": 767,
3146
2986
  "name": "filterButtonId",
3147
2987
  "kind": 1024,
3148
2988
  "kindString": "Property",
@@ -3152,7 +2992,7 @@
3152
2992
  "sources": [
3153
2993
  {
3154
2994
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3155
- "line": 214,
2995
+ "line": 182,
3156
2996
  "character": 9
3157
2997
  }
3158
2998
  ],
@@ -3163,7 +3003,7 @@
3163
3003
  "defaultValue": "..."
3164
3004
  },
3165
3005
  {
3166
- "id": 773,
3006
+ "id": 765,
3167
3007
  "name": "hasAdditionalToolbarSection",
3168
3008
  "kind": 1024,
3169
3009
  "kindString": "Property",
@@ -3173,7 +3013,7 @@
3173
3013
  "sources": [
3174
3014
  {
3175
3015
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3176
- "line": 211,
3016
+ "line": 179,
3177
3017
  "character": 9
3178
3018
  }
3179
3019
  ],
@@ -3184,7 +3024,7 @@
3184
3024
  "defaultValue": "false"
3185
3025
  },
3186
3026
  {
3187
- "id": 769,
3027
+ "id": 761,
3188
3028
  "name": "hasAppliedFilters",
3189
3029
  "kind": 1024,
3190
3030
  "kindString": "Property",
@@ -3194,7 +3034,7 @@
3194
3034
  "sources": [
3195
3035
  {
3196
3036
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3197
- "line": 207,
3037
+ "line": 175,
3198
3038
  "character": 9
3199
3039
  }
3200
3040
  ],
@@ -3210,7 +3050,7 @@
3210
3050
  }
3211
3051
  },
3212
3052
  {
3213
- "id": 771,
3053
+ "id": 763,
3214
3054
  "name": "hasInlineFilters",
3215
3055
  "kind": 1024,
3216
3056
  "kindString": "Property",
@@ -3220,7 +3060,7 @@
3220
3060
  "sources": [
3221
3061
  {
3222
3062
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3223
- "line": 209,
3063
+ "line": 177,
3224
3064
  "character": 9
3225
3065
  }
3226
3066
  ],
@@ -3230,7 +3070,7 @@
3230
3070
  }
3231
3071
  },
3232
3072
  {
3233
- "id": 774,
3073
+ "id": 766,
3234
3074
  "name": "hasViewActions",
3235
3075
  "kind": 1024,
3236
3076
  "kindString": "Property",
@@ -3240,7 +3080,7 @@
3240
3080
  "sources": [
3241
3081
  {
3242
3082
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3243
- "line": 212,
3083
+ "line": 180,
3244
3084
  "character": 9
3245
3085
  }
3246
3086
  ],
@@ -3251,7 +3091,7 @@
3251
3091
  "defaultValue": "false"
3252
3092
  },
3253
3093
  {
3254
- "id": 772,
3094
+ "id": 764,
3255
3095
  "name": "inlineFilterBarExpanded",
3256
3096
  "kind": 1024,
3257
3097
  "kindString": "Property",
@@ -3261,7 +3101,7 @@
3261
3101
  "sources": [
3262
3102
  {
3263
3103
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3264
- "line": 210,
3104
+ "line": 178,
3265
3105
  "character": 9
3266
3106
  }
3267
3107
  ],
@@ -3272,7 +3112,7 @@
3272
3112
  "defaultValue": "false"
3273
3113
  },
3274
3114
  {
3275
- "id": 766,
3115
+ "id": 758,
3276
3116
  "name": "isMultiselectEnabled",
3277
3117
  "kind": 1024,
3278
3118
  "kindString": "Property",
@@ -3282,7 +3122,7 @@
3282
3122
  "sources": [
3283
3123
  {
3284
3124
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3285
- "line": 204,
3125
+ "line": 172,
3286
3126
  "character": 9
3287
3127
  }
3288
3128
  ],
@@ -3298,7 +3138,7 @@
3298
3138
  }
3299
3139
  },
3300
3140
  {
3301
- "id": 764,
3141
+ "id": 756,
3302
3142
  "name": "isSearchEnabled",
3303
3143
  "kind": 1024,
3304
3144
  "kindString": "Property",
@@ -3308,7 +3148,7 @@
3308
3148
  "sources": [
3309
3149
  {
3310
3150
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3311
- "line": 202,
3151
+ "line": 170,
3312
3152
  "character": 9
3313
3153
  }
3314
3154
  ],
@@ -3324,7 +3164,7 @@
3324
3164
  }
3325
3165
  },
3326
3166
  {
3327
- "id": 767,
3167
+ "id": 759,
3328
3168
  "name": "isSortSelectorEnabled",
3329
3169
  "kind": 1024,
3330
3170
  "kindString": "Property",
@@ -3334,7 +3174,7 @@
3334
3174
  "sources": [
3335
3175
  {
3336
3176
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3337
- "line": 205,
3177
+ "line": 173,
3338
3178
  "character": 9
3339
3179
  }
3340
3180
  ],
@@ -3350,7 +3190,7 @@
3350
3190
  }
3351
3191
  },
3352
3192
  {
3353
- "id": 765,
3193
+ "id": 757,
3354
3194
  "name": "isToolbarDisabled",
3355
3195
  "kind": 1024,
3356
3196
  "kindString": "Property",
@@ -3360,7 +3200,7 @@
3360
3200
  "sources": [
3361
3201
  {
3362
3202
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3363
- "line": 203,
3203
+ "line": 171,
3364
3204
  "character": 9
3365
3205
  }
3366
3206
  ],
@@ -3371,7 +3211,7 @@
3371
3211
  "defaultValue": "false"
3372
3212
  },
3373
3213
  {
3374
- "id": 760,
3214
+ "id": 752,
3375
3215
  "name": "leftTemplates",
3376
3216
  "kind": 1024,
3377
3217
  "kindString": "Property",
@@ -3381,7 +3221,7 @@
3381
3221
  "sources": [
3382
3222
  {
3383
3223
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3384
- "line": 198,
3224
+ "line": 166,
3385
3225
  "character": 9
3386
3226
  }
3387
3227
  ],
@@ -3394,7 +3234,7 @@
3394
3234
  }
3395
3235
  },
3396
3236
  {
3397
- "id": 776,
3237
+ "id": 768,
3398
3238
  "name": "listFilterInlineId",
3399
3239
  "kind": 1024,
3400
3240
  "kindString": "Property",
@@ -3404,7 +3244,7 @@
3404
3244
  "sources": [
3405
3245
  {
3406
3246
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3407
- "line": 215,
3247
+ "line": 183,
3408
3248
  "character": 9
3409
3249
  }
3410
3250
  ],
@@ -3415,7 +3255,7 @@
3415
3255
  "defaultValue": "..."
3416
3256
  },
3417
3257
  {
3418
- "id": 747,
3258
+ "id": 739,
3419
3259
  "name": "placeholder",
3420
3260
  "kind": 1024,
3421
3261
  "kindString": "Property",
@@ -3444,7 +3284,7 @@
3444
3284
  "sources": [
3445
3285
  {
3446
3286
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3447
- "line": 150,
3287
+ "line": 114,
3448
3288
  "character": 9
3449
3289
  }
3450
3290
  ],
@@ -3454,7 +3294,7 @@
3454
3294
  }
3455
3295
  },
3456
3296
  {
3457
- "id": 762,
3297
+ "id": 754,
3458
3298
  "name": "rightTemplates",
3459
3299
  "kind": 1024,
3460
3300
  "kindString": "Property",
@@ -3464,7 +3304,7 @@
3464
3304
  "sources": [
3465
3305
  {
3466
3306
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3467
- "line": 200,
3307
+ "line": 168,
3468
3308
  "character": 9
3469
3309
  }
3470
3310
  ],
@@ -3477,7 +3317,7 @@
3477
3317
  }
3478
3318
  },
3479
3319
  {
3480
- "id": 749,
3320
+ "id": 741,
3481
3321
  "name": "searchComponent",
3482
3322
  "kind": 1024,
3483
3323
  "kindString": "Property",
@@ -3493,14 +3333,14 @@
3493
3333
  },
3494
3334
  "arguments": {
3495
3335
  "selector": "SkySearchComponent",
3496
- "opts": "{\n read: SkySearchComponent,\n static: false\n }"
3336
+ "opts": "{\n read: SkySearchComponent,\n static: false,\n }"
3497
3337
  }
3498
3338
  }
3499
3339
  ],
3500
3340
  "sources": [
3501
3341
  {
3502
3342
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3503
- "line": 163,
3343
+ "line": 127,
3504
3344
  "character": 9
3505
3345
  }
3506
3346
  ],
@@ -3510,7 +3350,7 @@
3510
3350
  }
3511
3351
  },
3512
3352
  {
3513
- "id": 748,
3353
+ "id": 740,
3514
3354
  "name": "searchEnabled",
3515
3355
  "kind": 1024,
3516
3356
  "kindString": "Property",
@@ -3539,7 +3379,7 @@
3539
3379
  "sources": [
3540
3380
  {
3541
3381
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3542
- "line": 157,
3382
+ "line": 121,
3543
3383
  "character": 9
3544
3384
  }
3545
3385
  ],
@@ -3564,7 +3404,7 @@
3564
3404
  }
3565
3405
  },
3566
3406
  {
3567
- "id": 752,
3407
+ "id": 744,
3568
3408
  "name": "searchText",
3569
3409
  "kind": 1024,
3570
3410
  "kindString": "Property",
@@ -3587,7 +3427,7 @@
3587
3427
  "sources": [
3588
3428
  {
3589
3429
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3590
- "line": 185,
3430
+ "line": 149,
3591
3431
  "character": 9
3592
3432
  }
3593
3433
  ],
@@ -3612,7 +3452,7 @@
3612
3452
  }
3613
3453
  },
3614
3454
  {
3615
- "id": 758,
3455
+ "id": 750,
3616
3456
  "name": "searchTextInput",
3617
3457
  "kind": 1024,
3618
3458
  "kindString": "Property",
@@ -3622,7 +3462,7 @@
3622
3462
  "sources": [
3623
3463
  {
3624
3464
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3625
- "line": 196,
3465
+ "line": 164,
3626
3466
  "character": 9
3627
3467
  }
3628
3468
  ],
@@ -3638,7 +3478,7 @@
3638
3478
  }
3639
3479
  },
3640
3480
  {
3641
- "id": 770,
3481
+ "id": 762,
3642
3482
  "name": "showFilterSummary",
3643
3483
  "kind": 1024,
3644
3484
  "kindString": "Property",
@@ -3648,7 +3488,7 @@
3648
3488
  "sources": [
3649
3489
  {
3650
3490
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3651
- "line": 208,
3491
+ "line": 176,
3652
3492
  "character": 9
3653
3493
  }
3654
3494
  ],
@@ -3658,7 +3498,7 @@
3658
3498
  }
3659
3499
  },
3660
3500
  {
3661
- "id": 750,
3501
+ "id": 742,
3662
3502
  "name": "sortSelectorEnabled",
3663
3503
  "kind": 1024,
3664
3504
  "kindString": "Property",
@@ -3687,7 +3527,7 @@
3687
3527
  "sources": [
3688
3528
  {
3689
3529
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3690
- "line": 170,
3530
+ "line": 134,
3691
3531
  "character": 9
3692
3532
  }
3693
3533
  ],
@@ -3712,7 +3552,7 @@
3712
3552
  }
3713
3553
  },
3714
3554
  {
3715
- "id": 757,
3555
+ "id": 749,
3716
3556
  "name": "sortSelectors",
3717
3557
  "kind": 1024,
3718
3558
  "kindString": "Property",
@@ -3722,7 +3562,7 @@
3722
3562
  "sources": [
3723
3563
  {
3724
3564
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3725
- "line": 195,
3565
+ "line": 163,
3726
3566
  "character": 9
3727
3567
  }
3728
3568
  ],
@@ -3741,7 +3581,7 @@
3741
3581
  }
3742
3582
  },
3743
3583
  {
3744
- "id": 792,
3584
+ "id": 784,
3745
3585
  "name": "toolbarDispatcher",
3746
3586
  "kind": 1024,
3747
3587
  "kindString": "Property",
@@ -3754,7 +3594,7 @@
3754
3594
  }
3755
3595
  },
3756
3596
  {
3757
- "id": 751,
3597
+ "id": 743,
3758
3598
  "name": "toolbarType",
3759
3599
  "kind": 1024,
3760
3600
  "kindString": "Property",
@@ -3783,7 +3623,7 @@
3783
3623
  "sources": [
3784
3624
  {
3785
3625
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3786
- "line": 179,
3626
+ "line": 143,
3787
3627
  "character": 9
3788
3628
  }
3789
3629
  ],
@@ -3794,7 +3634,7 @@
3794
3634
  "defaultValue": "'standard'"
3795
3635
  },
3796
3636
  {
3797
- "id": 763,
3637
+ "id": 755,
3798
3638
  "name": "type",
3799
3639
  "kind": 1024,
3800
3640
  "kindString": "Property",
@@ -3804,7 +3644,7 @@
3804
3644
  "sources": [
3805
3645
  {
3806
3646
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3807
- "line": 201,
3647
+ "line": 169,
3808
3648
  "character": 9
3809
3649
  }
3810
3650
  ],
@@ -3820,7 +3660,7 @@
3820
3660
  }
3821
3661
  },
3822
3662
  {
3823
- "id": 759,
3663
+ "id": 751,
3824
3664
  "name": "view",
3825
3665
  "kind": 1024,
3826
3666
  "kindString": "Property",
@@ -3830,7 +3670,7 @@
3830
3670
  "sources": [
3831
3671
  {
3832
3672
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3833
- "line": 197,
3673
+ "line": 165,
3834
3674
  "character": 9
3835
3675
  }
3836
3676
  ],
@@ -3846,7 +3686,7 @@
3846
3686
  }
3847
3687
  },
3848
3688
  {
3849
- "id": 755,
3689
+ "id": 747,
3850
3690
  "name": "filterButtonAriaControls",
3851
3691
  "kind": 262144,
3852
3692
  "kindString": "Accessor",
@@ -3856,13 +3696,13 @@
3856
3696
  "sources": [
3857
3697
  {
3858
3698
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3859
- "line": 191,
3699
+ "line": 159,
3860
3700
  "character": 13
3861
3701
  }
3862
3702
  ],
3863
3703
  "getSignature": [
3864
3704
  {
3865
- "id": 756,
3705
+ "id": 748,
3866
3706
  "name": "filterButtonAriaControls",
3867
3707
  "kind": 524288,
3868
3708
  "kindString": "Get signature",
@@ -3875,7 +3715,7 @@
3875
3715
  ]
3876
3716
  },
3877
3717
  {
3878
- "id": 753,
3718
+ "id": 745,
3879
3719
  "name": "isFilterBarDisplayed",
3880
3720
  "kind": 262144,
3881
3721
  "kindString": "Accessor",
@@ -3885,13 +3725,13 @@
3885
3725
  "sources": [
3886
3726
  {
3887
3727
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3888
- "line": 187,
3728
+ "line": 151,
3889
3729
  "character": 13
3890
3730
  }
3891
3731
  ],
3892
3732
  "getSignature": [
3893
3733
  {
3894
- "id": 754,
3734
+ "id": 746,
3895
3735
  "name": "isFilterBarDisplayed",
3896
3736
  "kind": 524288,
3897
3737
  "kindString": "Get signature",
@@ -3904,7 +3744,7 @@
3904
3744
  ]
3905
3745
  },
3906
3746
  {
3907
- "id": 802,
3747
+ "id": 794,
3908
3748
  "name": "inlineFilterButtonClick",
3909
3749
  "kind": 2048,
3910
3750
  "kindString": "Method",
@@ -3914,13 +3754,13 @@
3914
3754
  "sources": [
3915
3755
  {
3916
3756
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3917
- "line": 502,
3757
+ "line": 459,
3918
3758
  "character": 9
3919
3759
  }
3920
3760
  ],
3921
3761
  "signatures": [
3922
3762
  {
3923
- "id": 803,
3763
+ "id": 795,
3924
3764
  "name": "inlineFilterButtonClick",
3925
3765
  "kind": 4096,
3926
3766
  "kindString": "Call signature",
@@ -3933,7 +3773,7 @@
3933
3773
  ]
3934
3774
  },
3935
3775
  {
3936
- "id": 795,
3776
+ "id": 787,
3937
3777
  "name": "ngAfterContentInit",
3938
3778
  "kind": 2048,
3939
3779
  "kindString": "Method",
@@ -3943,13 +3783,13 @@
3943
3783
  "sources": [
3944
3784
  {
3945
3785
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3946
- "line": 409,
3786
+ "line": 376,
3947
3787
  "character": 9
3948
3788
  }
3949
3789
  ],
3950
3790
  "signatures": [
3951
3791
  {
3952
- "id": 796,
3792
+ "id": 788,
3953
3793
  "name": "ngAfterContentInit",
3954
3794
  "kind": 4096,
3955
3795
  "kindString": "Call signature",
@@ -3970,7 +3810,7 @@
3970
3810
  }
3971
3811
  },
3972
3812
  {
3973
- "id": 797,
3813
+ "id": 789,
3974
3814
  "name": "ngOnDestroy",
3975
3815
  "kind": 2048,
3976
3816
  "kindString": "Method",
@@ -3980,13 +3820,13 @@
3980
3820
  "sources": [
3981
3821
  {
3982
3822
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3983
- "line": 482,
3823
+ "line": 438,
3984
3824
  "character": 9
3985
3825
  }
3986
3826
  ],
3987
3827
  "signatures": [
3988
3828
  {
3989
- "id": 798,
3829
+ "id": 790,
3990
3830
  "name": "ngOnDestroy",
3991
3831
  "kind": 4096,
3992
3832
  "kindString": "Call signature",
@@ -4007,7 +3847,7 @@
4007
3847
  }
4008
3848
  },
4009
3849
  {
4010
- "id": 793,
3850
+ "id": 785,
4011
3851
  "name": "ngOnInit",
4012
3852
  "kind": 2048,
4013
3853
  "kindString": "Method",
@@ -4017,13 +3857,13 @@
4017
3857
  "sources": [
4018
3858
  {
4019
3859
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
4020
- "line": 272,
3860
+ "line": 240,
4021
3861
  "character": 9
4022
3862
  }
4023
3863
  ],
4024
3864
  "signatures": [
4025
3865
  {
4026
- "id": 794,
3866
+ "id": 786,
4027
3867
  "name": "ngOnInit",
4028
3868
  "kind": 4096,
4029
3869
  "kindString": "Call signature",
@@ -4044,7 +3884,7 @@
4044
3884
  }
4045
3885
  },
4046
3886
  {
4047
- "id": 799,
3887
+ "id": 791,
4048
3888
  "name": "setSort",
4049
3889
  "kind": 2048,
4050
3890
  "kindString": "Method",
@@ -4054,20 +3894,20 @@
4054
3894
  "sources": [
4055
3895
  {
4056
3896
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
4057
- "line": 488,
3897
+ "line": 444,
4058
3898
  "character": 9
4059
3899
  }
4060
3900
  ],
4061
3901
  "signatures": [
4062
3902
  {
4063
- "id": 800,
3903
+ "id": 792,
4064
3904
  "name": "setSort",
4065
3905
  "kind": 4096,
4066
3906
  "kindString": "Call signature",
4067
3907
  "flags": {},
4068
3908
  "parameters": [
4069
3909
  {
4070
- "id": 801,
3910
+ "id": 793,
4071
3911
  "name": "sort",
4072
3912
  "kind": 32768,
4073
3913
  "kindString": "Parameter",
@@ -4087,7 +3927,7 @@
4087
3927
  ]
4088
3928
  },
4089
3929
  {
4090
- "id": 804,
3930
+ "id": 796,
4091
3931
  "name": "updateSearchText",
4092
3932
  "kind": 2048,
4093
3933
  "kindString": "Method",
@@ -4097,20 +3937,20 @@
4097
3937
  "sources": [
4098
3938
  {
4099
3939
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
4100
- "line": 506,
3940
+ "line": 463,
4101
3941
  "character": 9
4102
3942
  }
4103
3943
  ],
4104
3944
  "signatures": [
4105
3945
  {
4106
- "id": 805,
3946
+ "id": 797,
4107
3947
  "name": "updateSearchText",
4108
3948
  "kind": 4096,
4109
3949
  "kindString": "Call signature",
4110
3950
  "flags": {},
4111
3951
  "parameters": [
4112
3952
  {
4113
- "id": 806,
3953
+ "id": 798,
4114
3954
  "name": "searchText",
4115
3955
  "kind": 32768,
4116
3956
  "kindString": "Parameter",
@@ -4134,67 +3974,67 @@
4134
3974
  "title": "Constructors",
4135
3975
  "kind": 512,
4136
3976
  "children": [
4137
- 736
3977
+ 728
4138
3978
  ]
4139
3979
  },
4140
3980
  {
4141
3981
  "title": "Properties",
4142
3982
  "kind": 1024,
4143
3983
  "children": [
4144
- 768,
3984
+ 760,
3985
+ 753,
3986
+ 767,
3987
+ 765,
4145
3988
  761,
4146
- 775,
4147
- 773,
4148
- 769,
4149
- 771,
4150
- 774,
4151
- 772,
3989
+ 763,
4152
3990
  766,
4153
3991
  764,
4154
- 767,
4155
- 765,
4156
- 760,
4157
- 776,
4158
- 747,
4159
- 762,
4160
- 749,
4161
- 748,
4162
- 752,
4163
3992
  758,
4164
- 770,
4165
- 750,
3993
+ 756,
3994
+ 759,
4166
3995
  757,
4167
- 792,
4168
- 751,
4169
- 763,
4170
- 759
3996
+ 752,
3997
+ 768,
3998
+ 739,
3999
+ 754,
4000
+ 741,
4001
+ 740,
4002
+ 744,
4003
+ 750,
4004
+ 762,
4005
+ 742,
4006
+ 749,
4007
+ 784,
4008
+ 743,
4009
+ 755,
4010
+ 751
4171
4011
  ]
4172
4012
  },
4173
4013
  {
4174
4014
  "title": "Accessors",
4175
4015
  "kind": 262144,
4176
4016
  "children": [
4177
- 755,
4178
- 753
4017
+ 747,
4018
+ 745
4179
4019
  ]
4180
4020
  },
4181
4021
  {
4182
4022
  "title": "Methods",
4183
4023
  "kind": 2048,
4184
4024
  "children": [
4185
- 802,
4186
- 795,
4187
- 797,
4188
- 793,
4189
- 799,
4190
- 804
4025
+ 794,
4026
+ 787,
4027
+ 789,
4028
+ 785,
4029
+ 791,
4030
+ 796
4191
4031
  ]
4192
4032
  }
4193
4033
  ],
4194
4034
  "sources": [
4195
4035
  {
4196
4036
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
4197
- "line": 123,
4037
+ "line": 86,
4198
4038
  "character": 13
4199
4039
  }
4200
4040
  ],
@@ -4227,7 +4067,7 @@
4227
4067
  "name": "NgModule"
4228
4068
  },
4229
4069
  "arguments": {
4230
- "obj": "{\n declarations: [\n SkyListToolbarComponent,\n SkyListToolbarItemComponent,\n SkyListToolbarItemRendererComponent,\n SkyListMultiselectToolbarComponent,\n SkyListToolbarSearchActionsComponent,\n SkyListToolbarSortComponent,\n SkyListToolbarViewActionsComponent\n ],\n imports: [\n CommonModule,\n SkyCheckboxModule,\n SkyI18nModule,\n SkyToolbarModule,\n SkySearchModule,\n SkySortModule,\n SkyFilterModule,\n SkyListFiltersModule,\n SkyIconModule,\n SkyListBuilderResourcesModule\n ],\n exports: [\n SkyListToolbarComponent,\n SkyListToolbarItemComponent,\n SkyListToolbarSearchActionsComponent,\n SkyListToolbarSortComponent,\n SkyListToolbarViewActionsComponent\n ]\n}"
4070
+ "obj": "{\n declarations: [\n SkyListToolbarComponent,\n SkyListToolbarItemComponent,\n SkyListToolbarItemRendererComponent,\n SkyListMultiselectToolbarComponent,\n SkyListToolbarSearchActionsComponent,\n SkyListToolbarSortComponent,\n SkyListToolbarViewActionsComponent,\n ],\n imports: [\n CommonModule,\n SkyCheckboxModule,\n SkyI18nModule,\n SkyToolbarModule,\n SkySearchModule,\n SkySortModule,\n SkyFilterModule,\n SkyListFiltersModule,\n SkyIconModule,\n SkyListBuilderResourcesModule,\n ],\n exports: [\n SkyListToolbarComponent,\n SkyListToolbarItemComponent,\n SkyListToolbarSearchActionsComponent,\n SkyListToolbarSortComponent,\n SkyListToolbarViewActionsComponent,\n ],\n}"
4231
4071
  }
4232
4072
  }
4233
4073
  ],
@@ -4266,7 +4106,7 @@
4266
4106
  "sources": [
4267
4107
  {
4268
4108
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.module.ts",
4269
- "line": 100,
4109
+ "line": 65,
4270
4110
  "character": 13
4271
4111
  }
4272
4112
  ]
@@ -4288,7 +4128,7 @@
4288
4128
  "name": "Component"
4289
4129
  },
4290
4130
  "arguments": {
4291
- "obj": "{\n selector: 'sky-list-filter-button',\n templateUrl: './list-filter-button.component.html'\n}"
4131
+ "obj": "{\n selector: 'sky-list-filter-button',\n templateUrl: './list-filter-button.component.html',\n}"
4292
4132
  }
4293
4133
  }
4294
4134
  ],
@@ -4302,7 +4142,7 @@
4302
4142
  "sources": [
4303
4143
  {
4304
4144
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-button.component.ts",
4305
- "line": 37,
4145
+ "line": 33,
4306
4146
  "character": 2
4307
4147
  }
4308
4148
  ],
@@ -4345,7 +4185,7 @@
4345
4185
  "sources": [
4346
4186
  {
4347
4187
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-button.component.ts",
4348
- "line": 41,
4188
+ "line": 35,
4349
4189
  "character": 9
4350
4190
  }
4351
4191
  ],
@@ -4391,7 +4231,7 @@
4391
4231
  "sources": [
4392
4232
  {
4393
4233
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-button.component.ts",
4394
- "line": 28,
4234
+ "line": 24,
4395
4235
  "character": 13
4396
4236
  }
4397
4237
  ],
@@ -4419,7 +4259,7 @@
4419
4259
  "name": "Component"
4420
4260
  },
4421
4261
  "arguments": {
4422
- "obj": "{\n selector: 'sky-list-toolbar-view-actions',\n templateUrl: './list-toolbar-view-actions.component.html',\n styleUrls: ['./list-toolbar-view-actions.component.scss']\n}"
4262
+ "obj": "{\n selector: 'sky-list-toolbar-view-actions',\n templateUrl: './list-toolbar-view-actions.component.html',\n styleUrls: ['./list-toolbar-view-actions.component.scss'],\n}"
4423
4263
  }
4424
4264
  }
4425
4265
  ],
@@ -4458,7 +4298,7 @@
4458
4298
  "sources": [
4459
4299
  {
4460
4300
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-view-actions.component.ts",
4461
- "line": 16,
4301
+ "line": 14,
4462
4302
  "character": 13
4463
4303
  }
4464
4304
  ]
@@ -4480,7 +4320,7 @@
4480
4320
  "name": "Component"
4481
4321
  },
4482
4322
  "arguments": {
4483
- "obj": "{\n selector: 'sky-list-toolbar-search-actions',\n templateUrl: './list-toolbar-search-actions.component.html',\n styleUrls: ['./list-toolbar-search-actions.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush\n}"
4323
+ "obj": "{\n selector: 'sky-list-toolbar-search-actions',\n templateUrl: './list-toolbar-search-actions.component.html',\n styleUrls: ['./list-toolbar-search-actions.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n}"
4484
4324
  }
4485
4325
  }
4486
4326
  ],
@@ -4519,7 +4359,7 @@
4519
4359
  "sources": [
4520
4360
  {
4521
4361
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-search-actions.component.ts",
4522
- "line": 15,
4362
+ "line": 12,
4523
4363
  "character": 13
4524
4364
  }
4525
4365
  ]
@@ -4541,7 +4381,7 @@
4541
4381
  "name": "Component"
4542
4382
  },
4543
4383
  "arguments": {
4544
- "obj": "{\n selector: 'sky-list-filter-summary',\n templateUrl: './list-filter-summary.component.html'\n}"
4384
+ "obj": "{\n selector: 'sky-list-filter-summary',\n templateUrl: './list-filter-summary.component.html',\n}"
4545
4385
  }
4546
4386
  }
4547
4387
  ],
@@ -4555,7 +4395,7 @@
4555
4395
  "sources": [
4556
4396
  {
4557
4397
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4558
- "line": 50,
4398
+ "line": 38,
4559
4399
  "character": 2
4560
4400
  }
4561
4401
  ],
@@ -4609,7 +4449,7 @@
4609
4449
  "sources": [
4610
4450
  {
4611
4451
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4612
- "line": 48,
4452
+ "line": 36,
4613
4453
  "character": 9
4614
4454
  }
4615
4455
  ],
@@ -4652,7 +4492,7 @@
4652
4492
  "sources": [
4653
4493
  {
4654
4494
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4655
- "line": 46,
4495
+ "line": 34,
4656
4496
  "character": 9
4657
4497
  }
4658
4498
  ],
@@ -4680,7 +4520,7 @@
4680
4520
  "sources": [
4681
4521
  {
4682
4522
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4683
- "line": 76,
4523
+ "line": 68,
4684
4524
  "character": 9
4685
4525
  }
4686
4526
  ],
@@ -4723,7 +4563,7 @@
4723
4563
  "sources": [
4724
4564
  {
4725
4565
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4726
- "line": 69,
4566
+ "line": 61,
4727
4567
  "character": 9
4728
4568
  }
4729
4569
  ],
@@ -4765,7 +4605,7 @@
4765
4605
  "sources": [
4766
4606
  {
4767
4607
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4768
- "line": 55,
4608
+ "line": 43,
4769
4609
  "character": 9
4770
4610
  }
4771
4611
  ],
@@ -4821,7 +4661,7 @@
4821
4661
  "sources": [
4822
4662
  {
4823
4663
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4824
- "line": 39,
4664
+ "line": 28,
4825
4665
  "character": 13
4826
4666
  }
4827
4667
  ],
@@ -4849,7 +4689,7 @@
4849
4689
  "name": "Component"
4850
4690
  },
4851
4691
  "arguments": {
4852
- "obj": "{\n selector: 'sky-list-filter-inline-item',\n template: '<ng-content></ng-content>'\n}"
4692
+ "obj": "{\n selector: 'sky-list-filter-inline-item',\n template: '<ng-content></ng-content>',\n}"
4853
4693
  }
4854
4694
  }
4855
4695
  ],
@@ -4899,7 +4739,7 @@
4899
4739
  "sources": [
4900
4740
  {
4901
4741
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
4902
- "line": 41,
4742
+ "line": 39,
4903
4743
  "character": 9
4904
4744
  }
4905
4745
  ],
@@ -4916,9 +4756,6 @@
4916
4756
  "flags": {
4917
4757
  "isPublic": true
4918
4758
  },
4919
- "comment": {
4920
- "shortText": "Specifies the function to apply to determine whether an item is filtered.\nThis property is required when using an in-memory data provider. For information\nabout `ListItemModel`, see the\n[shared classes for lists](https://developer.blackbaud.com/skyux-list-builder-common/docs/list-builder-common)."
4921
- },
4922
4759
  "decorators": [
4923
4760
  {
4924
4761
  "name": "Input",
@@ -4934,7 +4771,7 @@
4934
4771
  "sources": [
4935
4772
  {
4936
4773
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
4937
- "line": 51,
4774
+ "line": 49,
4938
4775
  "character": 9
4939
4776
  }
4940
4777
  ],
@@ -5019,7 +4856,7 @@
5019
4856
  "sources": [
5020
4857
  {
5021
4858
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
5022
- "line": 28,
4859
+ "line": 26,
5023
4860
  "character": 9
5024
4861
  }
5025
4862
  ],
@@ -5039,7 +4876,7 @@
5039
4876
  "sources": [
5040
4877
  {
5041
4878
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
5042
- "line": 63,
4879
+ "line": 61,
5043
4880
  "character": 9
5044
4881
  }
5045
4882
  ],
@@ -5087,7 +4924,7 @@
5087
4924
  "sources": [
5088
4925
  {
5089
4926
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
5090
- "line": 60,
4927
+ "line": 59,
5091
4928
  "character": 9
5092
4929
  }
5093
4930
  ],
@@ -5126,7 +4963,7 @@
5126
4963
  "sources": [
5127
4964
  {
5128
4965
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
5129
- "line": 34,
4966
+ "line": 32,
5130
4967
  "character": 9
5131
4968
  }
5132
4969
  ],
@@ -5146,7 +4983,7 @@
5146
4983
  "sources": [
5147
4984
  {
5148
4985
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
5149
- "line": 74,
4986
+ "line": 72,
5150
4987
  "character": 13
5151
4988
  }
5152
4989
  ],
@@ -5181,7 +5018,7 @@
5181
5018
  "sources": [
5182
5019
  {
5183
5020
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
5184
- "line": 68,
5021
+ "line": 66,
5185
5022
  "character": 9
5186
5023
  }
5187
5024
  ],
@@ -5246,7 +5083,7 @@
5246
5083
  "sources": [
5247
5084
  {
5248
5085
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
5249
- "line": 22,
5086
+ "line": 20,
5250
5087
  "character": 13
5251
5088
  }
5252
5089
  ],
@@ -5274,7 +5111,7 @@
5274
5111
  "name": "Component"
5275
5112
  },
5276
5113
  "arguments": {
5277
- "obj": "{\n selector: 'sky-list-filter-inline',\n templateUrl: './list-filter-inline.component.html'\n}"
5114
+ "obj": "{\n selector: 'sky-list-filter-inline',\n templateUrl: './list-filter-inline.component.html',\n}"
5278
5115
  }
5279
5116
  }
5280
5117
  ],
@@ -5288,7 +5125,7 @@
5288
5125
  "sources": [
5289
5126
  {
5290
5127
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline.component.ts",
5291
- "line": 48,
5128
+ "line": 36,
5292
5129
  "character": 2
5293
5130
  }
5294
5131
  ],
@@ -5342,7 +5179,7 @@
5342
5179
  "sources": [
5343
5180
  {
5344
5181
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline.component.ts",
5345
- "line": 43,
5182
+ "line": 31,
5346
5183
  "character": 9
5347
5184
  }
5348
5185
  ],
@@ -5366,7 +5203,7 @@
5366
5203
  "sources": [
5367
5204
  {
5368
5205
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline.component.ts",
5369
- "line": 73,
5206
+ "line": 63,
5370
5207
  "character": 9
5371
5208
  }
5372
5209
  ],
@@ -5395,7 +5232,7 @@
5395
5232
  "sources": [
5396
5233
  {
5397
5234
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline.component.ts",
5398
- "line": 53,
5235
+ "line": 41,
5399
5236
  "character": 9
5400
5237
  }
5401
5238
  ],
@@ -5449,7 +5286,7 @@
5449
5286
  "sources": [
5450
5287
  {
5451
5288
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline.component.ts",
5452
- "line": 42,
5289
+ "line": 30,
5453
5290
  "character": 13
5454
5291
  }
5455
5292
  ],
@@ -5477,7 +5314,7 @@
5477
5314
  "name": "Component"
5478
5315
  },
5479
5316
  "arguments": {
5480
- "obj": "{\n selector: 'sky-list-paging',\n templateUrl: './list-paging.component.html',\n providers: [\n { provide: ListPagingComponent, useExisting: listPagingComponentRef }\n ],\n changeDetection: ChangeDetectionStrategy.OnPush\n}"
5317
+ "obj": "{\n selector: 'sky-list-paging',\n templateUrl: './list-paging.component.html',\n providers: [\n { provide: ListPagingComponent, useExisting: listPagingComponentRef },\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n}"
5481
5318
  }
5482
5319
  }
5483
5320
  ],
@@ -5491,7 +5328,7 @@
5491
5328
  "sources": [
5492
5329
  {
5493
5330
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5494
- "line": 84,
5331
+ "line": 75,
5495
5332
  "character": 2
5496
5333
  }
5497
5334
  ],
@@ -5553,7 +5390,7 @@
5553
5390
  "sources": [
5554
5391
  {
5555
5392
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5556
- "line": 76,
5393
+ "line": 67,
5557
5394
  "character": 9
5558
5395
  }
5559
5396
  ],
@@ -5579,7 +5416,7 @@
5579
5416
  "sources": [
5580
5417
  {
5581
5418
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5582
- "line": 82,
5419
+ "line": 73,
5583
5420
  "character": 9
5584
5421
  }
5585
5422
  ],
@@ -5605,7 +5442,7 @@
5605
5442
  "sources": [
5606
5443
  {
5607
5444
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5608
- "line": 80,
5445
+ "line": 71,
5609
5446
  "character": 9
5610
5447
  }
5611
5448
  ],
@@ -5631,7 +5468,7 @@
5631
5468
  "sources": [
5632
5469
  {
5633
5470
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5634
- "line": 78,
5471
+ "line": 69,
5635
5472
  "character": 9
5636
5473
  }
5637
5474
  ],
@@ -5676,7 +5513,7 @@
5676
5513
  "sources": [
5677
5514
  {
5678
5515
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5679
- "line": 67,
5516
+ "line": 58,
5680
5517
  "character": 9
5681
5518
  }
5682
5519
  ],
@@ -5731,7 +5568,7 @@
5731
5568
  "sources": [
5732
5569
  {
5733
5570
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5734
- "line": 74,
5571
+ "line": 65,
5735
5572
  "character": 9
5736
5573
  }
5737
5574
  ],
@@ -5786,7 +5623,7 @@
5786
5623
  "sources": [
5787
5624
  {
5788
5625
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5789
- "line": 60,
5626
+ "line": 51,
5790
5627
  "character": 9
5791
5628
  }
5792
5629
  ],
@@ -5822,7 +5659,7 @@
5822
5659
  "sources": [
5823
5660
  {
5824
5661
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5825
- "line": 91,
5662
+ "line": 79,
5826
5663
  "character": 9
5827
5664
  }
5828
5665
  ],
@@ -5859,7 +5696,7 @@
5859
5696
  "sources": [
5860
5697
  {
5861
5698
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5862
- "line": 134,
5699
+ "line": 130,
5863
5700
  "character": 9
5864
5701
  }
5865
5702
  ],
@@ -5924,7 +5761,7 @@
5924
5761
  "sources": [
5925
5762
  {
5926
5763
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5927
- "line": 54,
5764
+ "line": 42,
5928
5765
  "character": 13
5929
5766
  }
5930
5767
  ],
@@ -5958,7 +5795,7 @@
5958
5795
  "name": "Component"
5959
5796
  },
5960
5797
  "arguments": {
5961
- "obj": "{\n selector: 'sky-list-secondary-action',\n templateUrl: './list-secondary-action.component.html'\n}"
5798
+ "obj": "{\n selector: 'sky-list-secondary-action',\n templateUrl: './list-secondary-action.component.html',\n}"
5962
5799
  }
5963
5800
  }
5964
5801
  ],
@@ -5972,7 +5809,7 @@
5972
5809
  "sources": [
5973
5810
  {
5974
5811
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-action.component.ts",
5975
- "line": 25,
5812
+ "line": 24,
5976
5813
  "character": 2
5977
5814
  }
5978
5815
  ],
@@ -6015,7 +5852,7 @@
6015
5852
  "sources": [
6016
5853
  {
6017
5854
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-action.component.ts",
6018
- "line": 29,
5855
+ "line": 26,
6019
5856
  "character": 9
6020
5857
  }
6021
5858
  ],
@@ -6089,7 +5926,7 @@
6089
5926
  "name": "Component"
6090
5927
  },
6091
5928
  "arguments": {
6092
- "obj": "{\n selector: 'sky-list-secondary-actions',\n templateUrl: './list-secondary-actions.component.html',\n providers: [\n SkyListSecondaryActionsService\n ],\n changeDetection: ChangeDetectionStrategy.OnPush\n}"
5929
+ "obj": "{\n selector: 'sky-list-secondary-actions',\n templateUrl: './list-secondary-actions.component.html',\n providers: [SkyListSecondaryActionsService],\n changeDetection: ChangeDetectionStrategy.OnPush,\n}"
6093
5930
  }
6094
5931
  }
6095
5932
  ],
@@ -6103,7 +5940,7 @@
6103
5940
  "sources": [
6104
5941
  {
6105
5942
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.ts",
6106
- "line": 44,
5943
+ "line": 36,
6107
5944
  "character": 2
6108
5945
  }
6109
5946
  ],
@@ -6146,7 +5983,7 @@
6146
5983
  "sources": [
6147
5984
  {
6148
5985
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.ts",
6149
- "line": 34,
5986
+ "line": 26,
6150
5987
  "character": 9
6151
5988
  }
6152
5989
  ],
@@ -6170,7 +6007,7 @@
6170
6007
  "sources": [
6171
6008
  {
6172
6009
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.ts",
6173
- "line": 48,
6010
+ "line": 38,
6174
6011
  "character": 9
6175
6012
  }
6176
6013
  ],
@@ -6223,7 +6060,7 @@
6223
6060
  "sources": [
6224
6061
  {
6225
6062
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.ts",
6226
- "line": 33,
6063
+ "line": 25,
6227
6064
  "character": 13
6228
6065
  }
6229
6066
  ],
@@ -6251,7 +6088,7 @@
6251
6088
  "name": "Component"
6252
6089
  },
6253
6090
  "arguments": {
6254
- "obj": "{\n selector: 'sky-list-toolbar-item',\n template: '<ng-content></ng-content>'\n}"
6091
+ "obj": "{\n selector: 'sky-list-toolbar-item',\n template: '<ng-content></ng-content>',\n}"
6255
6092
  }
6256
6093
  }
6257
6094
  ],
@@ -6301,7 +6138,7 @@
6301
6138
  "sources": [
6302
6139
  {
6303
6140
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-item.component.ts",
6304
- "line": 16,
6141
+ "line": 22,
6305
6142
  "character": 18
6306
6143
  }
6307
6144
  ],
@@ -6341,7 +6178,7 @@
6341
6178
  "sources": [
6342
6179
  {
6343
6180
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-item.component.ts",
6344
- "line": 21,
6181
+ "line": 27,
6345
6182
  "character": 18
6346
6183
  }
6347
6184
  ],
@@ -6381,7 +6218,7 @@
6381
6218
  "sources": [
6382
6219
  {
6383
6220
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-item.component.ts",
6384
- "line": 27,
6221
+ "line": 33,
6385
6222
  "character": 18
6386
6223
  }
6387
6224
  ],
@@ -6402,7 +6239,7 @@
6402
6239
  "sources": [
6403
6240
  {
6404
6241
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-item.component.ts",
6405
- "line": 29,
6242
+ "line": 35,
6406
6243
  "character": 13
6407
6244
  }
6408
6245
  ],
@@ -6455,7 +6292,7 @@
6455
6292
  "sources": [
6456
6293
  {
6457
6294
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-item.component.ts",
6458
- "line": 12,
6295
+ "line": 18,
6459
6296
  "character": 13
6460
6297
  }
6461
6298
  ]
@@ -6477,7 +6314,7 @@
6477
6314
  "name": "Component"
6478
6315
  },
6479
6316
  "arguments": {
6480
- "obj": "{\n selector: 'sky-list-toolbar-sort',\n template: ''\n }"
6317
+ "obj": "{\n selector: 'sky-list-toolbar-sort',\n template: '',\n}"
6481
6318
  }
6482
6319
  }
6483
6320
  ],
@@ -6534,7 +6371,7 @@
6534
6371
  {
6535
6372
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-sort.component.ts",
6536
6373
  "line": 34,
6537
- "character": 11
6374
+ "character": 9
6538
6375
  }
6539
6376
  ],
6540
6377
  "type": {
@@ -6573,7 +6410,7 @@
6573
6410
  {
6574
6411
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-sort.component.ts",
6575
6412
  "line": 22,
6576
- "character": 11
6413
+ "character": 9
6577
6414
  }
6578
6415
  ],
6579
6416
  "type": {
@@ -6612,7 +6449,7 @@
6612
6449
  {
6613
6450
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-sort.component.ts",
6614
6451
  "line": 16,
6615
- "character": 11
6452
+ "character": 9
6616
6453
  }
6617
6454
  ],
6618
6455
  "type": {
@@ -6651,7 +6488,7 @@
6651
6488
  {
6652
6489
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-sort.component.ts",
6653
6490
  "line": 28,
6654
- "character": 11
6491
+ "character": 9
6655
6492
  }
6656
6493
  ],
6657
6494
  "type": {
@@ -6683,12 +6520,19 @@
6683
6520
  {
6684
6521
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-sort.component.ts",
6685
6522
  "line": 10,
6686
- "character": 15
6523
+ "character": 13
6687
6524
  }
6688
6525
  ]
6689
6526
  }
6690
6527
  ],
6691
6528
  "groups": [
6529
+ {
6530
+ "title": "References",
6531
+ "kind": 16777216,
6532
+ "children": [
6533
+ 726
6534
+ ]
6535
+ },
6692
6536
  {
6693
6537
  "title": "Classes",
6694
6538
  "kind": 128,
@@ -6705,9 +6549,8 @@
6705
6549
  582,
6706
6550
  139,
6707
6551
  644,
6708
- 726,
6709
6552
  649,
6710
- 735,
6553
+ 727,
6711
6554
  652,
6712
6555
  1,
6713
6556
  108,
@@ -6732,100 +6575,105 @@
6732
6575
  ]
6733
6576
  },
6734
6577
  "codeExamples": [
6578
+ {
6579
+ "fileName": ".eslintrc.json",
6580
+ "filePath": "/projects/list-builder/documentation/code-examples/.eslintrc.json",
6581
+ "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"
6582
+ },
6735
6583
  {
6736
6584
  "fileName": "list-filters-demo.component.html",
6737
6585
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/inline-filters/list-filters-demo.component.html",
6738
- "rawContents": "<sky-list\n [data]=\"items\"\n>\n <sky-list-toolbar>\n <sky-list-filter-inline>\n <sky-list-filter-inline-item\n defaultValue=\"any\"\n name=\"fruitType\"\n value=\"any\"\n [filter]=\"fruitTypeFilterFunction\"\n >\n <ng-template\n let-filter=\"filter\"\n >\n <label\n class=\"sky-control-label\"\n [for]=\"fruitTypeSelect.id\"\n >\n Fruit type\n </label>\n <select\n skyId\n [ngModel]=\"filter.value\"\n (ngModelChange)=\"filter.changed($event)\"\n #fruitTypeSelect=\"skyId\"\n >\n <option\n value=\"any\"\n >\n Any fruit\n </option>\n <option\n value=\"citrus\"\n >\n Citrus\n </option>\n <option\n value=\"berry\"\n >\n Berry\n </option>\n </select>\n </ng-template>\n </sky-list-filter-inline-item>\n <sky-list-filter-inline-item\n name=\"hideOrange\"\n [filter]=\"hideOrangeFilterFunction\"\n >\n <ng-template\n let-filter=\"filter\"\n >\n <sky-checkbox\n [ngModel]=\"filter.value\"\n (ngModelChange)=\"filter.changed($event)\"\n >\n <sky-checkbox-label>\n Hide orange fruits\n </sky-checkbox-label>\n </sky-checkbox>\n </ng-template>\n </sky-list-filter-inline-item>\n </sky-list-filter-inline>\n </sky-list-toolbar>\n <sky-list-view-grid>\n <sky-grid-column\n field=\"name\"\n heading=\"Name\"\n >\n </sky-grid-column>\n <sky-grid-column\n field=\"description\"\n heading=\"Description\"\n >\n </sky-grid-column>\n </sky-list-view-grid>\n</sky-list>\n"
6586
+ "rawContents": "<sky-list [data]=\"items\">\n <sky-list-toolbar>\n <sky-list-filter-inline>\n <sky-list-filter-inline-item\n defaultValue=\"any\"\n name=\"fruitType\"\n value=\"any\"\n [filter]=\"fruitTypeFilterFunction\"\n >\n <ng-template let-filter=\"filter\">\n <label class=\"sky-control-label\" [for]=\"fruitTypeSelect.id\">\n Fruit type\n </label>\n <select\n skyId\n [ngModel]=\"filter.value\"\n (ngModelChange)=\"filter.changed($event)\"\n #fruitTypeSelect=\"skyId\"\n >\n <option value=\"any\">Any fruit</option>\n <option value=\"citrus\">Citrus</option>\n <option value=\"berry\">Berry</option>\n </select>\n </ng-template>\n </sky-list-filter-inline-item>\n <sky-list-filter-inline-item\n name=\"hideOrange\"\n [filter]=\"hideOrangeFilterFunction\"\n >\n <ng-template let-filter=\"filter\">\n <sky-checkbox\n [ngModel]=\"filter.value\"\n (ngModelChange)=\"filter.changed($event)\"\n >\n <sky-checkbox-label> Hide orange fruits </sky-checkbox-label>\n </sky-checkbox>\n </ng-template>\n </sky-list-filter-inline-item>\n </sky-list-filter-inline>\n </sky-list-toolbar>\n <!-- Add your list-view here -->\n</sky-list>\n"
6739
6587
  },
6740
6588
  {
6741
6589
  "fileName": "list-filters-demo.component.ts",
6742
6590
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/inline-filters/list-filters-demo.component.ts",
6743
- "rawContents": "import {\n Component\n} from '@angular/core';\n\nimport {\n ListItemModel\n} from '@skyux/list-builder-common';\n\nimport {\n Observable,\n of\n} from 'rxjs';\n\n@Component({\n selector: 'app-list-filters-demo',\n templateUrl: './list-filters-demo.component.html'\n})\nexport class ListFiltersDemoComponent {\n\n public items: Observable<any> = of([\n {\n id: 0,\n name: 'Orange',\n description: 'A round, orange fruit.',\n type: 'citrus',\n color: 'orange'\n },\n {\n id: 1,\n name: 'Mango',\n description: 'Delicious in smoothies, but don\\'t eat the skin.',\n type: 'other',\n color: 'orange'\n },\n {\n id: 2,\n name: 'Lime',\n description: 'A sour, green fruit used in many drinks.',\n type: 'citrus',\n color: 'green'\n },\n {\n id: 3,\n name: 'Strawberry',\n description: 'A red fruit that goes well with shortcake.',\n type: 'berry',\n color: 'red'\n },\n {\n id: 4,\n name: 'Blueberry',\n description: 'A small, blue fruit often found in muffins.',\n type: 'berry',\n color: 'blue'\n }\n ]);\n\n public fruitTypeFilterFunction(item: ListItemModel, filterValue: any): boolean {\n return filterValue === 'any' || filterValue === item.data.type;\n }\n\n public hideOrangeFilterFunction(item: ListItemModel, filterValue: any): boolean {\n return !filterValue || (filterValue && item.data.color !== 'orange');\n }\n}\n"
6591
+ "rawContents": "import { Component } from '@angular/core';\n\nimport { ListItemModel } from '@skyux/list-builder-common';\n\nimport { Observable, of } from 'rxjs';\n\n@Component({\n selector: 'app-list-filters-demo',\n templateUrl: './list-filters-demo.component.html',\n})\nexport class ListFiltersDemoComponent {\n public items: Observable<any> = of([\n {\n id: 0,\n name: 'Orange',\n description: 'A round, orange fruit.',\n type: 'citrus',\n color: 'orange',\n },\n {\n id: 1,\n name: 'Mango',\n description: \"Delicious in smoothies, but don't eat the skin.\",\n type: 'other',\n color: 'orange',\n },\n {\n id: 2,\n name: 'Lime',\n description: 'A sour, green fruit used in many drinks.',\n type: 'citrus',\n color: 'green',\n },\n {\n id: 3,\n name: 'Strawberry',\n description: 'A red fruit that goes well with shortcake.',\n type: 'berry',\n color: 'red',\n },\n {\n id: 4,\n name: 'Blueberry',\n description: 'A small, blue fruit often found in muffins.',\n type: 'berry',\n color: 'blue',\n },\n ]);\n\n public fruitTypeFilterFunction(\n item: ListItemModel,\n filterValue: any\n ): boolean {\n return filterValue === 'any' || filterValue === item.data.type;\n }\n\n public hideOrangeFilterFunction(\n item: ListItemModel,\n filterValue: any\n ): boolean {\n return !filterValue || (filterValue && item.data.color !== 'orange');\n }\n}\n"
6744
6592
  },
6745
6593
  {
6746
6594
  "fileName": "list-filters-demo.module.ts",
6747
6595
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/inline-filters/list-filters-demo.module.ts",
6748
- "rawContents": "import {\n NgModule\n} from '@angular/core';\n\nimport {\n CommonModule\n} from '@angular/common';\n\nimport {\n FormsModule\n} from '@angular/forms';\n\nimport {\n SkyIdModule\n} from '@skyux/core';\n\nimport {\n SkyCheckboxModule\n} from '@skyux/forms';\n\nimport {\n SkyListFiltersModule,\n SkyListModule,\n SkyListToolbarModule\n} from '@skyux/list-builder';\n\nimport {\n SkyListViewGridModule\n} from '@skyux/list-builder-view-grids';\n\nimport {\n SkyFilterModule\n} from '@skyux/lists';\n\nimport {\n ListFiltersDemoComponent\n} from './list-filters-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n FormsModule,\n SkyCheckboxModule,\n SkyFilterModule,\n SkyIdModule,\n SkyListFiltersModule,\n SkyListModule,\n SkyListToolbarModule,\n SkyListViewGridModule\n ],\n declarations: [\n ListFiltersDemoComponent\n ],\n exports: [\n ListFiltersDemoComponent\n ]\n})\nexport class ListFiltersDemoModule { }\n"
6596
+ "rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { FormsModule } from '@angular/forms';\n\nimport { SkyIdModule } from '@skyux/core';\n\nimport { SkyCheckboxModule } from '@skyux/forms';\n\nimport {\n SkyListFiltersModule,\n SkyListModule,\n SkyListToolbarModule,\n} from '@skyux/list-builder';\n\nimport { SkyFilterModule } from '@skyux/lists';\n\nimport { ListFiltersDemoComponent } from './list-filters-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n FormsModule,\n SkyCheckboxModule,\n SkyFilterModule,\n SkyIdModule,\n SkyListFiltersModule,\n SkyListModule,\n SkyListToolbarModule,\n ],\n declarations: [ListFiltersDemoComponent],\n exports: [ListFiltersDemoComponent],\n})\nexport class ListFiltersDemoModule {}\n"
6749
6597
  },
6750
6598
  {
6751
6599
  "fileName": "list-filters-demo-modal-context.ts",
6752
6600
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/modal-filters/list-filters-demo-modal-context.ts",
6753
- "rawContents": "export class ListFiltersDemoModalContext {\n\n public appliedFilters: any[];\n\n}\n"
6601
+ "rawContents": "export class ListFiltersDemoModalContext {\n public appliedFilters: any[];\n}\n"
6754
6602
  },
6755
6603
  {
6756
6604
  "fileName": "list-filters-demo-modal.component.html",
6757
6605
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/modal-filters/list-filters-demo-modal.component.html",
6758
- "rawContents": "<sky-modal>\n <sky-modal-header>\n {{headerText}}\n </sky-modal-header>\n <sky-modal-content>\n <label\n class=\"sky-control-label\"\n [for]=\"fruitTypeSelect.id\"\n >\n Fruit type\n </label>\n <select\n class=\"sky-form-control\"\n skyId\n [(ngModel)]=\"fruitType\"\n #fruitTypeSelect=\"skyId\"\n >\n <option\n value=\"any\"\n >\n Any fruit\n </option>\n <option\n value=\"citrus\"\n >\n Citrus\n </option>\n <option\n value=\"berry\"\n >\n Berry\n </option>\n </select>\n <div\n style=\"margin-top: 15px;\"\n >\n <sky-checkbox\n [(ngModel)]=\"hideOrange\"\n >\n <sky-checkbox-label>\n Hide orange fruits\n </sky-checkbox-label>\n </sky-checkbox>\n </div>\n </sky-modal-content>\n <sky-modal-footer>\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"applyFilters()\"\n >\n Apply\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"clearAllFilters()\"\n >\n Clear filters\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"cancel()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n</sky-modal>\n"
6606
+ "rawContents": "<sky-modal>\n <sky-modal-header>\n {{ headerText }}\n </sky-modal-header>\n <sky-modal-content>\n <label class=\"sky-control-label\" [for]=\"fruitTypeSelect.id\">\n Fruit type\n </label>\n <select\n class=\"sky-form-control\"\n skyId\n [(ngModel)]=\"fruitType\"\n #fruitTypeSelect=\"skyId\"\n >\n <option value=\"any\">Any fruit</option>\n <option value=\"citrus\">Citrus</option>\n <option value=\"berry\">Berry</option>\n </select>\n <div style=\"margin-top: 15px\">\n <sky-checkbox [(ngModel)]=\"hideOrange\">\n <sky-checkbox-label> Hide orange fruits </sky-checkbox-label>\n </sky-checkbox>\n </div>\n </sky-modal-content>\n <sky-modal-footer>\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"applyFilters()\"\n >\n Apply\n </button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"clearAllFilters()\"\n >\n Clear filters\n </button>\n <button class=\"sky-btn sky-btn-link\" type=\"button\" (click)=\"cancel()\">\n Cancel\n </button>\n </sky-modal-footer>\n</sky-modal>\n"
6759
6607
  },
6760
6608
  {
6761
6609
  "fileName": "list-filters-demo-modal.component.ts",
6762
6610
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/modal-filters/list-filters-demo-modal.component.ts",
6763
- "rawContents": "import {\n Component\n} from '@angular/core';\n\nimport {\n ListItemModel\n} from '@skyux/list-builder-common';\n\nimport {\n ListFilterModel\n} from '@skyux/list-builder';\n\nimport {\n SkyModalInstance\n} from '@skyux/modals';\n\nimport {\n ListFiltersDemoModalContext\n} from './list-filters-demo-modal-context';\n\n@Component({\n selector: 'app-demo-filter-modal-form',\n templateUrl: './list-filters-demo-modal.component.html'\n})\nexport class ListFilterDemoModalComponent {\n\n public fruitType: string = 'any';\n\n public hideOrange: boolean;\n\n public headerText: string = 'Filters';\n\n constructor(\n public context: ListFiltersDemoModalContext,\n public instance: SkyModalInstance\n ) {\n if (this.context && this.context.appliedFilters && this.context.appliedFilters.length > 0) {\n this.setFormFilters(this.context.appliedFilters);\n } else {\n this.clearAllFilters();\n }\n }\n\n public applyFilters(): void {\n let result = this.getAppliedFiltersArray();\n this.instance.save(result);\n }\n\n public cancel(): void {\n this.instance.cancel();\n }\n\n public clearAllFilters(): void {\n this.hideOrange = false;\n this.fruitType = 'any';\n }\n\n private fruitTypeFilterFunction(item: ListItemModel, filterValue: any): boolean {\n return filterValue === item.data.type;\n }\n\n private getAppliedFiltersArray(): ListFilterModel[] {\n let appliedFilters: ListFilterModel[] = [];\n if (this.fruitType !== 'any') {\n\n appliedFilters.push(new ListFilterModel({\n name: 'fruitType',\n value: this.fruitType,\n label: this.fruitType,\n filterFunction: this.fruitTypeFilterFunction\n }));\n }\n\n if (this.hideOrange) {\n appliedFilters.push(new ListFilterModel({\n name: 'hideOrange',\n value: true,\n label: 'hide orange fruits',\n filterFunction: this.hideOrangeFilterFunction\n }));\n }\n\n return appliedFilters;\n }\n\n private hideOrangeFilterFunction(item: ListItemModel, filterValue: any): boolean {\n return !filterValue || (filterValue && item.data.color !== 'orange');\n }\n\n private setFormFilters(appliedFilters: any[]): void {\n for (let i = 0; i < appliedFilters.length; i++) {\n if (appliedFilters[i].name === 'fruitType') {\n this.fruitType = appliedFilters[i].value;\n }\n\n if (appliedFilters[i].name === 'hideOrange') {\n this.hideOrange = appliedFilters[i].value;\n }\n }\n }\n}\n"
6611
+ "rawContents": "import { Component } from '@angular/core';\n\nimport { ListItemModel } from '@skyux/list-builder-common';\n\nimport { ListFilterModel } from '@skyux/list-builder';\n\nimport { SkyModalInstance } from '@skyux/modals';\n\nimport { ListFiltersDemoModalContext } from './list-filters-demo-modal-context';\n\n@Component({\n selector: 'app-demo-filter-modal-form',\n templateUrl: './list-filters-demo-modal.component.html',\n})\nexport class ListFilterDemoModalComponent {\n public fruitType: string = 'any';\n\n public hideOrange: boolean;\n\n public headerText: string = 'Filters';\n\n constructor(\n public context: ListFiltersDemoModalContext,\n public instance: SkyModalInstance\n ) {\n if (\n this.context &&\n this.context.appliedFilters &&\n this.context.appliedFilters.length > 0\n ) {\n this.setFormFilters(this.context.appliedFilters);\n } else {\n this.clearAllFilters();\n }\n }\n\n public applyFilters(): void {\n let result = this.getAppliedFiltersArray();\n this.instance.save(result);\n }\n\n public cancel(): void {\n this.instance.cancel();\n }\n\n public clearAllFilters(): void {\n this.hideOrange = false;\n this.fruitType = 'any';\n }\n\n private fruitTypeFilterFunction(\n item: ListItemModel,\n filterValue: any\n ): boolean {\n return filterValue === item.data.type;\n }\n\n private getAppliedFiltersArray(): ListFilterModel[] {\n let appliedFilters: ListFilterModel[] = [];\n if (this.fruitType !== 'any') {\n appliedFilters.push(\n new ListFilterModel({\n name: 'fruitType',\n value: this.fruitType,\n label: this.fruitType,\n filterFunction: this.fruitTypeFilterFunction,\n })\n );\n }\n\n if (this.hideOrange) {\n appliedFilters.push(\n new ListFilterModel({\n name: 'hideOrange',\n value: true,\n label: 'hide orange fruits',\n filterFunction: this.hideOrangeFilterFunction,\n })\n );\n }\n\n return appliedFilters;\n }\n\n private hideOrangeFilterFunction(\n item: ListItemModel,\n filterValue: any\n ): boolean {\n return !filterValue || (filterValue && item.data.color !== 'orange');\n }\n\n private setFormFilters(appliedFilters: any[]): void {\n for (let i = 0; i < appliedFilters.length; i++) {\n if (appliedFilters[i].name === 'fruitType') {\n this.fruitType = appliedFilters[i].value;\n }\n\n if (appliedFilters[i].name === 'hideOrange') {\n this.hideOrange = appliedFilters[i].value;\n }\n }\n }\n}\n"
6764
6612
  },
6765
6613
  {
6766
6614
  "fileName": "list-filters-demo.component.html",
6767
6615
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/modal-filters/list-filters-demo.component.html",
6768
- "rawContents": "<sky-list\n [appliedFilters]=\"listFilters\"\n [data]=\"items\"\n (appliedFiltersChange)=\"modalFilters = $event\"\n>\n <sky-list-toolbar\n [searchEnabled]=\"false\"\n >\n <sky-list-filter-button>\n <sky-filter-button\n (filterButtonClick)=\"openFilterModal()\"\n [showButtonText]=\"true\"\n >\n </sky-filter-button>\n </sky-list-filter-button>\n <sky-list-filter-summary\n (summaryItemClick)=\"openFilterModal()\"\n >\n </sky-list-filter-summary>\n </sky-list-toolbar>\n <sky-list-view-grid>\n <sky-grid-column\n field=\"name\"\n heading=\"Name\"\n >\n </sky-grid-column>\n <sky-grid-column\n field=\"description\"\n heading=\"Description\"\n >\n </sky-grid-column>\n </sky-list-view-grid>\n</sky-list>\n"
6616
+ "rawContents": "<sky-list\n [appliedFilters]=\"listFilters\"\n [data]=\"items\"\n (appliedFiltersChange)=\"modalFilters = $event\"\n>\n <sky-list-toolbar [searchEnabled]=\"false\">\n <sky-list-filter-button>\n <sky-filter-button\n (filterButtonClick)=\"openFilterModal()\"\n [showButtonText]=\"true\"\n >\n </sky-filter-button>\n </sky-list-filter-button>\n <sky-list-filter-summary (summaryItemClick)=\"openFilterModal()\">\n </sky-list-filter-summary>\n </sky-list-toolbar>\n <!-- Add your list-view here -->\n</sky-list>\n"
6769
6617
  },
6770
6618
  {
6771
6619
  "fileName": "list-filters-demo.component.ts",
6772
6620
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/modal-filters/list-filters-demo.component.ts",
6773
- "rawContents": "import {\n Component\n} from '@angular/core';\n\nimport {\n ListFilterModel\n} from '@skyux/list-builder';\n\nimport {\n SkyModalCloseArgs,\n SkyModalService\n} from '@skyux/modals';\n\nimport {\n of\n} from 'rxjs';\n\nimport {\n ListFilterDemoModalComponent\n} from './list-filters-demo-modal.component';\n\nimport {\n ListFiltersDemoModalContext\n} from './list-filters-demo-modal-context';\n\n@Component({\n selector: 'app-list-filters-demo',\n templateUrl: './list-filters-demo.component.html'\n})\nexport class ListFiltersDemoComponent {\n\n public items = of([\n {\n id: 0,\n name: 'Orange',\n description: 'A round, orange fruit.',\n type: 'citrus',\n color: 'orange'\n },\n {\n id: 1,\n name: 'Mango',\n description: 'Delicious in smoothies, but don\\'t eat the skin.',\n type: 'other',\n color: 'orange'\n },\n {\n id: 2,\n name: 'Lime',\n description: 'A sour, green fruit used in many drinks.',\n type: 'citrus',\n color: 'green'\n },\n {\n id: 3,\n name: 'Strawberry',\n description: 'A red fruit that goes well with shortcake.',\n type: 'berry',\n color: 'red'\n },\n {\n id: 4,\n name: 'Blueberry',\n description: 'A small, blue fruit often found in muffins.',\n type: 'berry',\n color: 'blue'\n }\n ]);\n\n public listFilters: ListFilterModel[] = [];\n\n public modalFilters: ListFilterModel[] = [];\n\n constructor(\n private modalService: SkyModalService\n ) { }\n\n public openFilterModal(): void {\n const instance = this.modalService.open(ListFilterDemoModalComponent, [{\n provide: ListFiltersDemoModalContext,\n useValue: {\n appliedFilters: this.modalFilters\n }\n }]);\n\n instance.closed.subscribe((result: SkyModalCloseArgs) => {\n if (result.reason === 'save') {\n this.listFilters = result.data.slice();\n }\n });\n }\n}\n"
6621
+ "rawContents": "import { Component } from '@angular/core';\n\nimport { ListFilterModel } from '@skyux/list-builder';\n\nimport { SkyModalCloseArgs, SkyModalService } from '@skyux/modals';\n\nimport { of } from 'rxjs';\n\nimport { ListFilterDemoModalComponent } from './list-filters-demo-modal.component';\n\nimport { ListFiltersDemoModalContext } from './list-filters-demo-modal-context';\n\n@Component({\n selector: 'app-list-filters-demo',\n templateUrl: './list-filters-demo.component.html',\n})\nexport class ListFiltersDemoComponent {\n public items = of([\n {\n id: 0,\n name: 'Orange',\n description: 'A round, orange fruit.',\n type: 'citrus',\n color: 'orange',\n },\n {\n id: 1,\n name: 'Mango',\n description: \"Delicious in smoothies, but don't eat the skin.\",\n type: 'other',\n color: 'orange',\n },\n {\n id: 2,\n name: 'Lime',\n description: 'A sour, green fruit used in many drinks.',\n type: 'citrus',\n color: 'green',\n },\n {\n id: 3,\n name: 'Strawberry',\n description: 'A red fruit that goes well with shortcake.',\n type: 'berry',\n color: 'red',\n },\n {\n id: 4,\n name: 'Blueberry',\n description: 'A small, blue fruit often found in muffins.',\n type: 'berry',\n color: 'blue',\n },\n ]);\n\n public listFilters: ListFilterModel[] = [];\n\n public modalFilters: ListFilterModel[] = [];\n\n constructor(private modalService: SkyModalService) {}\n\n public openFilterModal(): void {\n const instance = this.modalService.open(ListFilterDemoModalComponent, [\n {\n provide: ListFiltersDemoModalContext,\n useValue: {\n appliedFilters: this.modalFilters,\n },\n },\n ]);\n\n instance.closed.subscribe((result: SkyModalCloseArgs) => {\n if (result.reason === 'save') {\n this.listFilters = result.data.slice();\n }\n });\n }\n}\n"
6774
6622
  },
6775
6623
  {
6776
6624
  "fileName": "list-filters-demo.module.ts",
6777
6625
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/modal-filters/list-filters-demo.module.ts",
6778
- "rawContents": "import {\n NgModule\n} from '@angular/core';\n\nimport {\n CommonModule\n} from '@angular/common';\n\nimport {\n FormsModule\n} from '@angular/forms';\n\nimport {\n SkyIdModule\n} from '@skyux/core';\n\nimport {\n SkyCheckboxModule\n} from '@skyux/forms';\n\nimport {\n SkyListFiltersModule,\n SkyListModule,\n SkyListToolbarModule\n} from '@skyux/list-builder';\n\nimport {\n SkyListViewGridModule\n} from '@skyux/list-builder-view-grids';\n\nimport {\n SkyFilterModule\n} from '@skyux/lists';\n\nimport {\n SkyModalModule\n} from '@skyux/modals';\n\nimport {\n ListFiltersDemoComponent\n} from './list-filters-demo.component';\n\nimport {\n ListFilterDemoModalComponent\n} from './list-filters-demo-modal.component';\n\n@NgModule({\n imports: [\n CommonModule,\n FormsModule,\n SkyCheckboxModule,\n SkyFilterModule,\n SkyIdModule,\n SkyListFiltersModule,\n SkyListModule,\n SkyListToolbarModule,\n SkyListViewGridModule,\n SkyModalModule\n ],\n declarations: [\n ListFiltersDemoComponent,\n ListFilterDemoModalComponent\n ],\n entryComponents: [\n ListFilterDemoModalComponent\n ],\n exports: [\n ListFiltersDemoComponent\n ]\n})\nexport class ListFiltersDemoModule { }\n"
6626
+ "rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { FormsModule } from '@angular/forms';\n\nimport { SkyIdModule } from '@skyux/core';\n\nimport { SkyCheckboxModule } from '@skyux/forms';\n\nimport {\n SkyListFiltersModule,\n SkyListModule,\n SkyListToolbarModule,\n} from '@skyux/list-builder';\n\nimport { SkyFilterModule } from '@skyux/lists';\n\nimport { SkyModalModule } from '@skyux/modals';\n\nimport { ListFiltersDemoComponent } from './list-filters-demo.component';\n\nimport { ListFilterDemoModalComponent } from './list-filters-demo-modal.component';\n\n@NgModule({\n imports: [\n CommonModule,\n FormsModule,\n SkyCheckboxModule,\n SkyFilterModule,\n SkyIdModule,\n SkyListFiltersModule,\n SkyListModule,\n SkyListToolbarModule,\n SkyModalModule,\n ],\n declarations: [ListFiltersDemoComponent, ListFilterDemoModalComponent],\n entryComponents: [ListFilterDemoModalComponent],\n exports: [ListFiltersDemoComponent],\n})\nexport class ListFiltersDemoModule {}\n"
6779
6627
  },
6780
6628
  {
6781
6629
  "fileName": "list-paging-demo.component.html",
6782
6630
  "filePath": "/projects/list-builder/documentation/code-examples/list-paging/basic/list-paging-demo.component.html",
6783
- "rawContents": "<sky-list\n [data]=\"data\"\n>\n <sky-list-view-grid\n #grid\n >\n <sky-grid-column\n field=\"name\"\n heading=\"Name\"\n >\n </sky-grid-column>\n <sky-grid-column\n field=\"email\"\n heading=\"Email\"\n >\n </sky-grid-column>\n <sky-grid-column\n field=\"amount\"\n heading=\"Amount\"\n >\n </sky-grid-column>\n </sky-list-view-grid>\n <sky-list-paging\n pageSize=\"5\"\n ></sky-list-paging>\n</sky-list>\n"
6631
+ "rawContents": "<sky-list [data]=\"data\">\n <!-- Add your list-view here -->\n <sky-list-paging pageSize=\"5\"></sky-list-paging>\n</sky-list>\n"
6784
6632
  },
6785
6633
  {
6786
6634
  "fileName": "list-paging-demo.component.scss",
6787
6635
  "filePath": "/projects/list-builder/documentation/code-examples/list-paging/basic/list-paging-demo.component.scss",
6788
- "rawContents": "@import \"~@skyux/theme/scss/mixins\";\n\n::ng-deep .sky-grid-table {\n @include sky-border(dark, top);\n}\n"
6636
+ "rawContents": "@import '~@skyux/theme/scss/mixins';\n\n::ng-deep .sky-grid-table {\n @include sky-border(dark, top);\n}\n"
6789
6637
  },
6790
6638
  {
6791
6639
  "fileName": "list-paging-demo.component.ts",
6792
6640
  "filePath": "/projects/list-builder/documentation/code-examples/list-paging/basic/list-paging-demo.component.ts",
6793
- "rawContents": "import {\n Component\n} from '@angular/core';\n\n@Component({\n selector: 'app-list-paging-demo',\n templateUrl: './list-paging-demo.component.html',\n styleUrls: ['./list-paging-demo.component.scss']\n})\nexport class ListPagingDemoComponent {\n\n public data: any[] = [\n { id: '1', name: 'Niels Bohr', email: 'niels.bohr@example.com', amount: 170.75, status: 'Paid' },\n { id: '2', name: 'Ada Lovelace', email: 'ada.lovelace@example.com', amount: 114.13, status: 'Paid' },\n { id: '3', name: 'Marie Curie', email: 'marie.curie@example.com', amount: 111, status: 'Past due' },\n { id: '4', name: 'Barbara McClintock', email: 'barbara.mcclintock@example.com', amount: 84.63, status: 'Paid' },\n { id: '5', name: 'Michael Faraday', email: 'michael.faraday@example.com', amount: 83.97, status: 'Paid' },\n { id: '6', name: 'Enrico Fermi', email: 'enrico.fermi@example.com', amount: 74.5, status: 'Past due' },\n { id: '7', name: 'Mae C. Jemison', email: 'mae.jemison@example.com', amount: 70.86, status: 'Paid' },\n { id: '8', name: 'Nikola Tesla', email: 'nikola.tesla@example.com', amount: 15.00, status: 'Paid' },\n { id: '9', name: 'Hubert J. Farnsworth', email: 'hubert.j.farnsworth@example.com', amount: 999.99, status: 'Past Due' }\n ];\n\n}\n"
6641
+ "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-list-paging-demo',\n templateUrl: './list-paging-demo.component.html',\n styleUrls: ['./list-paging-demo.component.scss'],\n})\nexport class ListPagingDemoComponent {\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 id: '8',\n name: 'Nikola Tesla',\n email: 'nikola.tesla@example.com',\n amount: 15.0,\n status: 'Paid',\n },\n {\n id: '9',\n name: 'Hubert J. Farnsworth',\n email: 'hubert.j.farnsworth@example.com',\n amount: 999.99,\n status: 'Past Due',\n },\n ];\n}\n"
6794
6642
  },
6795
6643
  {
6796
6644
  "fileName": "list-paging-demo.module.ts",
6797
6645
  "filePath": "/projects/list-builder/documentation/code-examples/list-paging/basic/list-paging-demo.module.ts",
6798
- "rawContents": "import {\n NgModule\n} from '@angular/core';\n\nimport {\n CommonModule\n} from '@angular/common';\n\nimport {\n SkyListModule,\n SkyListPagingModule\n} from '@skyux/list-builder';\n\nimport {\n SkyListViewGridModule\n} from '@skyux/list-builder-view-grids';\n\nimport {\n ListPagingDemoComponent\n} from './list-paging-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n SkyListModule,\n SkyListPagingModule,\n SkyListViewGridModule\n ],\n declarations: [\n ListPagingDemoComponent\n ],\n exports: [\n ListPagingDemoComponent\n ]\n})\nexport class ListPagingDemoModule { }\n"
6646
+ "rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport {\n SkyListModule,\n SkyListPagingModule,\n} from '@skyux/list-builder';\n\nimport { ListPagingDemoComponent } from './list-paging-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyListModule, SkyListPagingModule],\n declarations: [ListPagingDemoComponent],\n exports: [ListPagingDemoComponent],\n})\nexport class ListPagingDemoModule {}\n"
6799
6647
  },
6800
6648
  {
6801
6649
  "fileName": "list-toolbar-demo.component.html",
6802
6650
  "filePath": "/projects/list-builder/documentation/code-examples/list-toolbar/basic/list-toolbar-demo.component.html",
6803
- "rawContents": "<sky-list\n [data]=\"data\"\n>\n <sky-list-toolbar>\n <sky-list-toolbar-item\n id=\"custom-item\"\n index=\"0\"\n location=\"left\"\n >\n <ng-template>\n <sky-dropdown\n buttonStyle=\"primary\"\n >\n <sky-dropdown-button>\n <sky-icon\n icon=\"plus-circle\"\n ></sky-icon>\n Add\n </sky-dropdown-button>\n </sky-dropdown>\n </ng-template>\n </sky-list-toolbar-item>\n <sky-list-filter-button>\n <sky-filter-button\n [showButtonText]=\"true\"\n (filterButtonClick)=\"onFilterButtonClicked()\"\n >\n </sky-filter-button>\n </sky-list-filter-button>\n <sky-list-filter-summary\n (summaryItemClick)=\"onSummaryItemClick()\"\n >\n </sky-list-filter-summary>\n <sky-list-toolbar-sort\n field=\"column2\"\n label=\"Fruit name (A - Z)\"\n type=\"string\"\n [descending]=\"false\"\n >\n </sky-list-toolbar-sort>\n <sky-list-toolbar-sort\n field=\"column2\"\n label=\"Fruit name (Z - A)\"\n type=\"string\"\n [descending]=\"true\"\n >\n </sky-list-toolbar-sort>\n <sky-list-column-selector-action\n [gridView]=\"grid\"\n >\n </sky-list-column-selector-action>\n <sky-list-secondary-actions>\n <sky-list-secondary-action>\n <button\n type=\"button\"\n >\n Option\n </button>\n </sky-list-secondary-action>\n </sky-list-secondary-actions>\n <sky-list-toolbar-view-actions>\n <form\n novalidate\n [formGroup]=\"myForm\"\n >\n <sky-radio-group\n formControlName=\"myView\"\n >\n <div\n class=\"sky-switch-icon-group\"\n >\n <sky-radio *ngFor=\"let view of views\"\n [icon]=\"view.icon\"\n [label]=\"view.label\"\n [value]=\"view.name\"\n >\n </sky-radio>\n </div>\n </sky-radio-group>\n </form>\n </sky-list-toolbar-view-actions>\n </sky-list-toolbar>\n <sky-list-view-grid\n #grid\n >\n <sky-grid-column\n field=\"name\"\n heading=\"Name\"\n >\n </sky-grid-column>\n <sky-grid-column\n field=\"email\"\n heading=\"Email\"\n >\n </sky-grid-column>\n <sky-grid-column\n field=\"amount\"\n heading=\"Amount\"\n >\n </sky-grid-column>\n </sky-list-view-grid>\n</sky-list>\n"
6651
+ "rawContents": "<sky-list [data]=\"data\">\n <sky-list-toolbar>\n <sky-list-toolbar-item id=\"custom-item\" index=\"0\" location=\"left\">\n <ng-template>\n <sky-dropdown buttonStyle=\"primary\">\n <sky-dropdown-button>\n <sky-icon icon=\"plus-circle\"></sky-icon>\n Add\n </sky-dropdown-button>\n </sky-dropdown>\n </ng-template>\n </sky-list-toolbar-item>\n <sky-list-filter-button>\n <sky-filter-button\n [showButtonText]=\"true\"\n (filterButtonClick)=\"onFilterButtonClicked()\"\n >\n </sky-filter-button>\n </sky-list-filter-button>\n <sky-list-filter-summary (summaryItemClick)=\"onSummaryItemClick()\">\n </sky-list-filter-summary>\n <sky-list-toolbar-sort\n field=\"column2\"\n label=\"Fruit name (A - Z)\"\n type=\"string\"\n [descending]=\"false\"\n >\n </sky-list-toolbar-sort>\n <sky-list-toolbar-sort\n field=\"column2\"\n label=\"Fruit name (Z - A)\"\n type=\"string\"\n [descending]=\"true\"\n >\n </sky-list-toolbar-sort>\n <sky-list-column-selector-action [gridView]=\"grid\">\n </sky-list-column-selector-action>\n <sky-list-secondary-actions>\n <sky-list-secondary-action>\n <button type=\"button\">Option</button>\n </sky-list-secondary-action>\n </sky-list-secondary-actions>\n <sky-list-toolbar-view-actions>\n <form novalidate [formGroup]=\"myForm\">\n <sky-radio-group formControlName=\"myView\">\n <div class=\"sky-switch-icon-group\">\n <sky-radio\n *ngFor=\"let view of views\"\n [icon]=\"view.icon\"\n [label]=\"view.label\"\n [value]=\"view.name\"\n >\n </sky-radio>\n </div>\n </sky-radio-group>\n </form>\n </sky-list-toolbar-view-actions>\n </sky-list-toolbar>\n <!-- Add your list-view here -->\n</sky-list>\n"
6804
6652
  },
6805
6653
  {
6806
6654
  "fileName": "list-toolbar-demo.component.ts",
6807
6655
  "filePath": "/projects/list-builder/documentation/code-examples/list-toolbar/basic/list-toolbar-demo.component.ts",
6808
- "rawContents": "import {\n Component,\n OnInit\n} from '@angular/core';\n\nimport {\n FormBuilder,\n FormGroup\n} from '@angular/forms';\n\n@Component({\n selector: 'app-list-toolbar-demo',\n templateUrl: './list-toolbar-demo.component.html'\n})\nexport class ListToolbarDemoComponent implements OnInit {\n\n public data: any[] = [\n { id: '1', name: 'Niels Bohr', email: 'niels.bohr@example.com', amount: 170.75, status: 'Paid' },\n { id: '2', name: 'Ada Lovelace', email: 'ada.lovelace@example.com', amount: 114.13, status: 'Paid' },\n { id: '3', name: 'Marie Curie', email: 'marie.curie@example.com', amount: 111, status: 'Past due' },\n { id: '4', name: 'Barbara McClintock', email: 'barbara.mcclintock@example.com', amount: 84.63, status: 'Paid' },\n { id: '5', name: 'Michael Faraday', email: 'michael.faraday@example.com', amount: 83.97, status: 'Paid' },\n { id: '6', name: 'Enrico Fermi', email: 'enrico.fermi@example.com', amount: 74.5, status: 'Past due' },\n { id: '7', name: 'Mae C. Jemison', email: 'mae.jemison@example.com', amount: 70.86, status: 'Paid' },\n { id: '8', name: 'Nikola Tesla', email: 'nikola.tesla@example.com', amount: 15.00, status: 'Paid' },\n { id: '9', name: 'Hubert J. Farnsworth', email: 'hubert.j.farnsworth@example.com', amount: 999.99, status: 'Past Due' }\n ];\n\n public myForm: FormGroup;\n\n public views: any[] = [\n { icon: 'table', label: 'Table', name: 'table' },\n { icon: 'list', label: 'List', name: 'list' },\n { icon: 'th-large', label: 'Cards', name: 'cards' },\n { icon: 'map-marker', label: 'Map', name: 'map' }\n ];\n\n constructor(\n private formBuilder: FormBuilder\n ) { }\n\n public ngOnInit(): void {\n this.myForm = this.formBuilder.group({\n myView: this.views[0].name\n });\n }\n\n public onFilterButtonClicked(): void {\n alert('Filter button clicked');\n }\n\n public onSummaryItemClick(): void {\n alert('Filter summary item clicked');\n }\n\n}\n"
6656
+ "rawContents": "import { Component, OnInit } from '@angular/core';\n\nimport { FormBuilder, FormGroup } from '@angular/forms';\n\n@Component({\n selector: 'app-list-toolbar-demo',\n templateUrl: './list-toolbar-demo.component.html',\n})\nexport class ListToolbarDemoComponent implements OnInit {\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 id: '8',\n name: 'Nikola Tesla',\n email: 'nikola.tesla@example.com',\n amount: 15.0,\n status: 'Paid',\n },\n {\n id: '9',\n name: 'Hubert J. Farnsworth',\n email: 'hubert.j.farnsworth@example.com',\n amount: 999.99,\n status: 'Past Due',\n },\n ];\n\n public myForm: FormGroup;\n\n public views: any[] = [\n { icon: 'table', label: 'Table', name: 'table' },\n { icon: 'list', label: 'List', name: 'list' },\n { icon: 'th-large', label: 'Cards', name: 'cards' },\n { icon: 'map-marker', label: 'Map', name: 'map' },\n ];\n\n constructor(private formBuilder: FormBuilder) {}\n\n public ngOnInit(): void {\n this.myForm = this.formBuilder.group({\n myView: this.views[0].name,\n });\n }\n\n public onFilterButtonClicked(): void {\n alert('Filter button clicked');\n }\n\n public onSummaryItemClick(): void {\n alert('Filter summary item clicked');\n }\n}\n"
6809
6657
  },
6810
6658
  {
6811
6659
  "fileName": "list-toolbar-demo.module.ts",
6812
6660
  "filePath": "/projects/list-builder/documentation/code-examples/list-toolbar/basic/list-toolbar-demo.module.ts",
6813
- "rawContents": "import {\n NgModule\n} from '@angular/core';\n\nimport {\n CommonModule\n} from '@angular/common';\n\nimport {\n FormsModule,\n ReactiveFormsModule\n} from '@angular/forms';\n\nimport {\n SkyRadioModule\n} from '@skyux/forms';\n\nimport {\n SkyIconModule\n} from '@skyux/indicators';\n\nimport {\n SkyListFiltersModule,\n SkyListModule,\n SkyListSecondaryActionsModule,\n SkyListToolbarModule\n} from '@skyux/list-builder';\n\nimport {\n SkyListViewGridModule\n} from '@skyux/list-builder-view-grids';\n\nimport {\n SkyFilterModule\n} from '@skyux/lists';\n\nimport {\nSkyDropdownModule\n} from '@skyux/popovers';\n\nimport {\n ListToolbarDemoComponent\n} from './list-toolbar-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n FormsModule,\n SkyDropdownModule,\n SkyFilterModule,\n SkyIconModule,\n SkyListFiltersModule,\n SkyListModule,\n SkyListSecondaryActionsModule,\n SkyListToolbarModule,\n SkyListViewGridModule,\n SkyRadioModule,\n ReactiveFormsModule\n ],\n declarations: [\n ListToolbarDemoComponent\n ],\n exports: [\n ListToolbarDemoComponent\n ]\n})\nexport class ListToolbarDemoModule { }\n"
6661
+ "rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\n\nimport { SkyRadioModule } from '@skyux/forms';\n\nimport { SkyIconModule } from '@skyux/indicators';\n\nimport {\n SkyListFiltersModule,\n SkyListModule,\n SkyListSecondaryActionsModule,\n SkyListToolbarModule,\n} from '@skyux/list-builder';\n\nimport { SkyFilterModule } from '@skyux/lists';\n\nimport { SkyDropdownModule } from '@skyux/popovers';\n\nimport { ListToolbarDemoComponent } from './list-toolbar-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n FormsModule,\n SkyDropdownModule,\n SkyFilterModule,\n SkyIconModule,\n SkyListFiltersModule,\n SkyListModule,\n SkyListSecondaryActionsModule,\n SkyListToolbarModule,\n SkyRadioModule,\n ReactiveFormsModule,\n ],\n declarations: [ListToolbarDemoComponent],\n exports: [ListToolbarDemoComponent],\n})\nexport class ListToolbarDemoModule {}\n"
6814
6662
  },
6815
6663
  {
6816
6664
  "fileName": "list-toolbar-demo.component.html",
6817
6665
  "filePath": "/projects/list-builder/documentation/code-examples/list-toolbar/custom/list-toolbar-demo.component.html",
6818
- "rawContents": "<sky-list\n [data]=\"data\"\n>\n <sky-list-toolbar>\n <sky-list-toolbar-item\n id=\"custom-item\"\n location=\"left\"\n >\n <ng-template>\n <button\n class=\"sky-btn sky-btn-default\"\n >\n Left\n </button>\n </ng-template>\n </sky-list-toolbar-item>\n <sky-list-toolbar-item\n id=\"custom-item2\"\n index=\"1\"\n location=\"center\"\n >\n <ng-template>\n <button\n class=\"sky-btn sky-btn-default\"\n >\n Center\n </button>\n </ng-template>\n </sky-list-toolbar-item>\n </sky-list-toolbar>\n <sky-list-view-grid\n #grid\n >\n <sky-grid-column\n field=\"name\"\n heading=\"Name\"\n >\n </sky-grid-column>\n <sky-grid-column\n field=\"email\"\n heading=\"Email\"\n >\n </sky-grid-column>\n <sky-grid-column\n field=\"amount\"\n heading=\"Amount\"\n >\n </sky-grid-column>\n </sky-list-view-grid>\n</sky-list>\n"
6666
+ "rawContents": "<sky-list [data]=\"data\">\n <sky-list-toolbar>\n <sky-list-toolbar-item id=\"custom-item\" location=\"left\">\n <ng-template>\n <button class=\"sky-btn sky-btn-default\">Left</button>\n </ng-template>\n </sky-list-toolbar-item>\n <sky-list-toolbar-item id=\"custom-item2\" index=\"1\" location=\"center\">\n <ng-template>\n <button class=\"sky-btn sky-btn-default\">Center</button>\n </ng-template>\n </sky-list-toolbar-item>\n </sky-list-toolbar>\n <!-- Add your list-view here -->\n</sky-list>\n"
6819
6667
  },
6820
6668
  {
6821
6669
  "fileName": "list-toolbar-demo.component.ts",
6822
6670
  "filePath": "/projects/list-builder/documentation/code-examples/list-toolbar/custom/list-toolbar-demo.component.ts",
6823
- "rawContents": "import {\n Component\n} from '@angular/core';\n\n@Component({\n selector: 'app-list-toolbar-demo',\n templateUrl: './list-toolbar-demo.component.html'\n})\nexport class ListToolbarDemoComponent {\n\n public data: any[] = [\n { id: '1', name: 'Niels Bohr', email: 'niels.bohr@example.com', amount: 170.75, status: 'Paid' },\n { id: '2', name: 'Ada Lovelace', email: 'ada.lovelace@example.com', amount: 114.13, status: 'Paid' },\n { id: '3', name: 'Marie Curie', email: 'marie.curie@example.com', amount: 111, status: 'Past due' },\n { id: '4', name: 'Barbara McClintock', email: 'barbara.mcclintock@example.com', amount: 84.63, status: 'Paid' },\n { id: '5', name: 'Michael Faraday', email: 'michael.faraday@example.com', amount: 83.97, status: 'Paid' },\n { id: '6', name: 'Enrico Fermi', email: 'enrico.fermi@example.com', amount: 74.5, status: 'Past due' },\n { id: '7', name: 'Mae C. Jemison', email: 'mae.jemison@example.com', amount: 70.86, status: 'Paid' },\n { id: '8', name: 'Nikola Tesla', email: 'nikola.tesla@example.com', amount: 15.00, status: 'Paid' },\n { id: '9', name: 'Hubert J. Farnsworth', email: 'hubert.j.farnsworth@example.com', amount: 999.99, status: 'Past Due' }\n ];\n\n}\n"
6671
+ "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-list-toolbar-demo',\n templateUrl: './list-toolbar-demo.component.html',\n})\nexport class ListToolbarDemoComponent {\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 id: '8',\n name: 'Nikola Tesla',\n email: 'nikola.tesla@example.com',\n amount: 15.0,\n status: 'Paid',\n },\n {\n id: '9',\n name: 'Hubert J. Farnsworth',\n email: 'hubert.j.farnsworth@example.com',\n amount: 999.99,\n status: 'Past Due',\n },\n ];\n}\n"
6824
6672
  },
6825
6673
  {
6826
6674
  "fileName": "list-toolbar-demo.module.ts",
6827
6675
  "filePath": "/projects/list-builder/documentation/code-examples/list-toolbar/custom/list-toolbar-demo.module.ts",
6828
- "rawContents": "import {\n NgModule\n} from '@angular/core';\n\nimport {\n CommonModule\n} from '@angular/common';\n\nimport {\n SkyListModule,\n SkyListToolbarModule\n} from '@skyux/list-builder';\n\nimport {\n SkyListViewGridModule\n} from '@skyux/list-builder-view-grids';\n\nimport {\n ListToolbarDemoComponent\n} from './list-toolbar-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n SkyListModule,\n SkyListToolbarModule,\n SkyListViewGridModule\n ],\n declarations: [\n ListToolbarDemoComponent\n ],\n exports: [\n ListToolbarDemoComponent\n ]\n})\nexport class ListToolbarDemoModule { }\n"
6676
+ "rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport {\n SkyListModule,\n SkyListToolbarModule,\n} from '@skyux/list-builder';\n\nimport { ListToolbarDemoComponent } from './list-toolbar-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyListModule, SkyListToolbarModule],\n declarations: [ListToolbarDemoComponent],\n exports: [ListToolbarDemoComponent],\n})\nexport class ListToolbarDemoModule {}\n"
6829
6677
  }
6830
6678
  ]
6831
6679
  }