@skyux/list-builder 5.0.0 → 5.0.1

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/bundles/skyux-list-builder.umd.js.map +1 -1
  3. package/documentation.json +184 -179
  4. package/esm2015/modules/list/list-data-response.model.js +1 -1
  5. package/esm2015/modules/list/list-data.provider.js +1 -1
  6. package/esm2015/modules/list/list-paging.component.js +1 -1
  7. package/esm2015/modules/list/list-view.component.js +8 -8
  8. package/esm2015/modules/list/list.component.js +45 -42
  9. package/esm2015/modules/list/list.module.js +8 -16
  10. package/esm2015/modules/list/state/filters/filters.orchestrator.js +2 -3
  11. package/esm2015/modules/list/state/items/items.orchestrator.js +10 -9
  12. package/esm2015/modules/list/state/items/load.action.js +1 -1
  13. package/esm2015/modules/list/state/list-state-action.type.js +1 -1
  14. package/esm2015/modules/list/state/list-state.model.js +1 -1
  15. package/esm2015/modules/list/state/list-state.rxstate.js +4 -4
  16. package/esm2015/modules/list/state/list-state.state-node.js +5 -6
  17. package/esm2015/modules/list/state/paging/paging.orchestrator.js +2 -3
  18. package/esm2015/modules/list/state/paging/set-max-pages.action.js +1 -1
  19. package/esm2015/modules/list/state/paging/set-page-number.action.js +1 -1
  20. package/esm2015/modules/list/state/search/search.orchestrator.js +5 -4
  21. package/esm2015/modules/list/state/search/set-functions.action.js +1 -1
  22. package/esm2015/modules/list/state/selected/selected.orchestrator.js +9 -10
  23. package/esm2015/modules/list/state/selected/set-items-selected.action.js +1 -1
  24. package/esm2015/modules/list/state/sort/set-field-selectors.action.js +1 -1
  25. package/esm2015/modules/list/state/sort/sort.model.js +1 -1
  26. package/esm2015/modules/list/state/sort/sort.orchestrator.js +4 -5
  27. package/esm2015/modules/list/state/toolbar/disable.action.js +1 -1
  28. package/esm2015/modules/list/state/toolbar/load.action.js +1 -1
  29. package/esm2015/modules/list/state/toolbar/toolbar.orchestrator.js +3 -4
  30. package/esm2015/modules/list/state/views/load.action.js +1 -1
  31. package/esm2015/modules/list/state/views/view.model.js +1 -1
  32. package/esm2015/modules/list/state/views/views.model.js +1 -1
  33. package/esm2015/modules/list/state/views/views.orchestrator.js +2 -4
  34. package/esm2015/modules/list-data-provider-in-memory/list-data-in-memory.provider.js +24 -14
  35. package/esm2015/modules/list-filters/filter.model.js +1 -1
  36. package/esm2015/modules/list-filters/list-filter-button.component.js +9 -9
  37. package/esm2015/modules/list-filters/list-filter-inline-item-renderer.component.js +7 -7
  38. package/esm2015/modules/list-filters/list-filter-inline-item.component.js +9 -8
  39. package/esm2015/modules/list-filters/list-filter-inline.component.js +12 -11
  40. package/esm2015/modules/list-filters/list-filter-inline.model.js +1 -1
  41. package/esm2015/modules/list-filters/list-filter-summary.component.js +8 -8
  42. package/esm2015/modules/list-filters/list-filters.module.js +10 -17
  43. package/esm2015/modules/list-paging/list-paging.component.js +14 -15
  44. package/esm2015/modules/list-paging/list-paging.module.js +8 -19
  45. package/esm2015/modules/list-toolbar/list-multiselect-toolbar.component.js +26 -25
  46. package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-action.component.js +8 -8
  47. package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-action.js +1 -1
  48. package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-actions-host.component.js +7 -7
  49. package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.js +10 -16
  50. package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-actions.module.js +10 -14
  51. package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-actions.service.js +5 -5
  52. package/esm2015/modules/list-toolbar/list-toolbar-item-renderer.component.js +7 -7
  53. package/esm2015/modules/list-toolbar/list-toolbar-item.component.js +6 -6
  54. package/esm2015/modules/list-toolbar/list-toolbar-search-actions.component.js +5 -5
  55. package/esm2015/modules/list-toolbar/list-toolbar-sort.component.js +5 -5
  56. package/esm2015/modules/list-toolbar/list-toolbar-view-actions.component.js +5 -5
  57. package/esm2015/modules/list-toolbar/list-toolbar.component.js +69 -67
  58. package/esm2015/modules/list-toolbar/list-toolbar.module.js +10 -10
  59. package/esm2015/modules/list-toolbar/state/config/config.orchestrator.js +2 -4
  60. package/esm2015/modules/list-toolbar/state/toolbar-state-action.type.js +1 -1
  61. package/esm2015/modules/list-toolbar/state/toolbar-state.rxstate.js +4 -4
  62. package/esm2015/modules/list-toolbar/state/toolbar-state.state-node.js +5 -7
  63. package/esm2015/modules/shared/sky-list-builder-resources.module.js +24 -12
  64. package/fesm2015/skyux-list-builder.js +356 -373
  65. package/fesm2015/skyux-list-builder.js.map +1 -1
  66. package/package.json +13 -13
@@ -290,8 +290,8 @@
290
290
  "sources": [
291
291
  {
292
292
  "fileName": "projects/list-builder/src/modules/list/list-data-response.model.ts",
293
- "line": 16,
294
- "character": 3
293
+ "line": 14,
294
+ "character": 2
295
295
  }
296
296
  ],
297
297
  "signatures": [
@@ -338,8 +338,8 @@
338
338
  "sources": [
339
339
  {
340
340
  "fileName": "projects/list-builder/src/modules/list/list-data-response.model.ts",
341
- "line": 9,
342
- "character": 10
341
+ "line": 7,
342
+ "character": 9
343
343
  }
344
344
  ],
345
345
  "type": {
@@ -361,8 +361,8 @@
361
361
  "sources": [
362
362
  {
363
363
  "fileName": "projects/list-builder/src/modules/list/list-data-response.model.ts",
364
- "line": 14,
365
- "character": 10
364
+ "line": 12,
365
+ "character": 9
366
366
  }
367
367
  ],
368
368
  "type": {
@@ -394,8 +394,8 @@
394
394
  "sources": [
395
395
  {
396
396
  "fileName": "projects/list-builder/src/modules/list/list-data-response.model.ts",
397
- "line": 5,
398
- "character": 14
397
+ "line": 3,
398
+ "character": 13
399
399
  }
400
400
  ]
401
401
  },
@@ -415,7 +415,7 @@
415
415
  "sources": [
416
416
  {
417
417
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
418
- "line": 44,
418
+ "line": 41,
419
419
  "character": 2
420
420
  }
421
421
  ],
@@ -463,7 +463,7 @@
463
463
  "sources": [
464
464
  {
465
465
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
466
- "line": 34,
466
+ "line": 31,
467
467
  "character": 9
468
468
  }
469
469
  ],
@@ -492,7 +492,7 @@
492
492
  "sources": [
493
493
  {
494
494
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
495
- "line": 23,
495
+ "line": 20,
496
496
  "character": 9
497
497
  }
498
498
  ],
@@ -513,7 +513,7 @@
513
513
  "sources": [
514
514
  {
515
515
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
516
- "line": 42,
516
+ "line": 39,
517
517
  "character": 9
518
518
  }
519
519
  ],
@@ -582,7 +582,7 @@
582
582
  "sources": [
583
583
  {
584
584
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
585
- "line": 17,
585
+ "line": 14,
586
586
  "character": 9
587
587
  }
588
588
  ],
@@ -611,7 +611,7 @@
611
611
  "sources": [
612
612
  {
613
613
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
614
- "line": 11,
614
+ "line": 8,
615
615
  "character": 9
616
616
  }
617
617
  ],
@@ -634,7 +634,7 @@
634
634
  "sources": [
635
635
  {
636
636
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
637
- "line": 28,
637
+ "line": 25,
638
638
  "character": 9
639
639
  }
640
640
  ],
@@ -668,7 +668,7 @@
668
668
  "sources": [
669
669
  {
670
670
  "fileName": "projects/list-builder/src/modules/list-filters/filter.model.ts",
671
- "line": 5,
671
+ "line": 3,
672
672
  "character": 13
673
673
  }
674
674
  ]
@@ -1200,7 +1200,7 @@
1200
1200
  "sources": [
1201
1201
  {
1202
1202
  "fileName": "projects/list-builder/src/modules/list/state/sort/sort.model.ts",
1203
- "line": 26,
1203
+ "line": 24,
1204
1204
  "character": 2
1205
1205
  }
1206
1206
  ],
@@ -1248,7 +1248,7 @@
1248
1248
  "sources": [
1249
1249
  {
1250
1250
  "fileName": "projects/list-builder/src/modules/list/state/sort/sort.model.ts",
1251
- "line": 14,
1251
+ "line": 12,
1252
1252
  "character": 9
1253
1253
  }
1254
1254
  ],
@@ -1276,7 +1276,7 @@
1276
1276
  "sources": [
1277
1277
  {
1278
1278
  "fileName": "projects/list-builder/src/modules/list/state/sort/sort.model.ts",
1279
- "line": 24,
1279
+ "line": 22,
1280
1280
  "character": 9
1281
1281
  }
1282
1282
  ],
@@ -1303,7 +1303,7 @@
1303
1303
  "sources": [
1304
1304
  {
1305
1305
  "fileName": "projects/list-builder/src/modules/list/state/sort/sort.model.ts",
1306
- "line": 18,
1306
+ "line": 16,
1307
1307
  "character": 9
1308
1308
  }
1309
1309
  ],
@@ -1339,7 +1339,7 @@
1339
1339
  "sources": [
1340
1340
  {
1341
1341
  "fileName": "projects/list-builder/src/modules/list/state/sort/sort.model.ts",
1342
- "line": 10,
1342
+ "line": 8,
1343
1343
  "character": 13
1344
1344
  }
1345
1345
  ]
@@ -1358,7 +1358,7 @@
1358
1358
  "name": "Component"
1359
1359
  },
1360
1360
  "arguments": {
1361
- "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}"
1362
1362
  }
1363
1363
  }
1364
1364
  ],
@@ -1372,7 +1372,7 @@
1372
1372
  "sources": [
1373
1373
  {
1374
1374
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1375
- "line": 225,
1375
+ "line": 184,
1376
1376
  "character": 2
1377
1377
  }
1378
1378
  ],
@@ -1439,7 +1439,7 @@
1439
1439
  "sources": [
1440
1440
  {
1441
1441
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1442
- "line": 192,
1442
+ "line": 152,
1443
1443
  "character": 9
1444
1444
  }
1445
1445
  ],
@@ -1477,7 +1477,7 @@
1477
1477
  "sources": [
1478
1478
  {
1479
1479
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1480
- "line": 204,
1480
+ "line": 164,
1481
1481
  "character": 9
1482
1482
  }
1483
1483
  ],
@@ -1522,7 +1522,7 @@
1522
1522
  "sources": [
1523
1523
  {
1524
1524
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1525
- "line": 141,
1525
+ "line": 100,
1526
1526
  "character": 9
1527
1527
  }
1528
1528
  ],
@@ -1584,7 +1584,7 @@
1584
1584
  "sources": [
1585
1585
  {
1586
1586
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1587
- "line": 150,
1587
+ "line": 109,
1588
1588
  "character": 9
1589
1589
  }
1590
1590
  ],
@@ -1604,7 +1604,7 @@
1604
1604
  "sources": [
1605
1605
  {
1606
1606
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1607
- "line": 131,
1607
+ "line": 90,
1608
1608
  "character": 9
1609
1609
  }
1610
1610
  ],
@@ -1639,7 +1639,7 @@
1639
1639
  "sources": [
1640
1640
  {
1641
1641
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1642
- "line": 164,
1642
+ "line": 123,
1643
1643
  "character": 9
1644
1644
  }
1645
1645
  ],
@@ -1671,7 +1671,7 @@
1671
1671
  "sources": [
1672
1672
  {
1673
1673
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1674
- "line": 211,
1674
+ "line": 171,
1675
1675
  "character": 9
1676
1676
  }
1677
1677
  ],
@@ -1751,7 +1751,7 @@
1751
1751
  "sources": [
1752
1752
  {
1753
1753
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1754
- "line": 172,
1754
+ "line": 131,
1755
1755
  "character": 9
1756
1756
  }
1757
1757
  ],
@@ -1805,7 +1805,7 @@
1805
1805
  "sources": [
1806
1806
  {
1807
1807
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1808
- "line": 198,
1808
+ "line": 158,
1809
1809
  "character": 9
1810
1810
  }
1811
1811
  ],
@@ -1856,7 +1856,7 @@
1856
1856
  "sources": [
1857
1857
  {
1858
1858
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1859
- "line": 180,
1859
+ "line": 139,
1860
1860
  "character": 9
1861
1861
  }
1862
1862
  ],
@@ -1909,7 +1909,7 @@
1909
1909
  "sources": [
1910
1910
  {
1911
1911
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1912
- "line": 348,
1912
+ "line": 326,
1913
1913
  "character": 6
1914
1914
  }
1915
1915
  ],
@@ -1945,7 +1945,7 @@
1945
1945
  "sources": [
1946
1946
  {
1947
1947
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1948
- "line": 476,
1948
+ "line": 490,
1949
1949
  "character": 13
1950
1950
  }
1951
1951
  ],
@@ -1980,7 +1980,7 @@
1980
1980
  "sources": [
1981
1981
  {
1982
1982
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
1983
- "line": 462,
1983
+ "line": 477,
1984
1984
  "character": 13
1985
1985
  }
1986
1986
  ],
@@ -2015,7 +2015,7 @@
2015
2015
  "sources": [
2016
2016
  {
2017
2017
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2018
- "line": 452,
2018
+ "line": 461,
2019
2019
  "character": 13
2020
2020
  }
2021
2021
  ],
@@ -2053,7 +2053,7 @@
2053
2053
  "sources": [
2054
2054
  {
2055
2055
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2056
- "line": 472,
2056
+ "line": 486,
2057
2057
  "character": 13
2058
2058
  }
2059
2059
  ],
@@ -2085,7 +2085,7 @@
2085
2085
  "sources": [
2086
2086
  {
2087
2087
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2088
- "line": 230,
2088
+ "line": 189,
2089
2089
  "character": 9
2090
2090
  }
2091
2091
  ],
@@ -2122,7 +2122,7 @@
2122
2122
  "sources": [
2123
2123
  {
2124
2124
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2125
- "line": 314,
2125
+ "line": 286,
2126
2126
  "character": 9
2127
2127
  }
2128
2128
  ],
@@ -2172,7 +2172,7 @@
2172
2172
  "sources": [
2173
2173
  {
2174
2174
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2175
- "line": 336,
2175
+ "line": 312,
2176
2176
  "character": 9
2177
2177
  }
2178
2178
  ],
@@ -2209,7 +2209,7 @@
2209
2209
  "sources": [
2210
2210
  {
2211
2211
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2212
- "line": 341,
2212
+ "line": 317,
2213
2213
  "character": 9
2214
2214
  }
2215
2215
  ],
@@ -2277,7 +2277,7 @@
2277
2277
  "sources": [
2278
2278
  {
2279
2279
  "fileName": "projects/list-builder/src/modules/list/list.component.ts",
2280
- "line": 130,
2280
+ "line": 87,
2281
2281
  "character": 13
2282
2282
  }
2283
2283
  ],
@@ -2310,7 +2310,7 @@
2310
2310
  "name": "NgModule"
2311
2311
  },
2312
2312
  "arguments": {
2313
- "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}"
2314
2314
  }
2315
2315
  }
2316
2316
  ],
@@ -2349,7 +2349,7 @@
2349
2349
  "sources": [
2350
2350
  {
2351
2351
  "fileName": "projects/list-builder/src/modules/list-filters/list-filters.module.ts",
2352
- "line": 33,
2352
+ "line": 28,
2353
2353
  "character": 13
2354
2354
  }
2355
2355
  ]
@@ -2370,7 +2370,7 @@
2370
2370
  "sources": [
2371
2371
  {
2372
2372
  "fileName": "projects/list-builder/src/modules/list-data-provider-in-memory/list-data-in-memory.provider.ts",
2373
- "line": 36,
2373
+ "line": 28,
2374
2374
  "character": 2
2375
2375
  }
2376
2376
  ],
@@ -2488,7 +2488,7 @@
2488
2488
  "sources": [
2489
2489
  {
2490
2490
  "fileName": "projects/list-builder/src/modules/list-data-provider-in-memory/list-data-in-memory.provider.ts",
2491
- "line": 25,
2491
+ "line": 16,
2492
2492
  "character": 9
2493
2493
  }
2494
2494
  ],
@@ -2518,7 +2518,7 @@
2518
2518
  "sources": [
2519
2519
  {
2520
2520
  "fileName": "projects/list-builder/src/modules/list-data-provider-in-memory/list-data-in-memory.provider.ts",
2521
- "line": 53,
2521
+ "line": 51,
2522
2522
  "character": 9
2523
2523
  }
2524
2524
  ],
@@ -2561,7 +2561,7 @@
2561
2561
  "sources": [
2562
2562
  {
2563
2563
  "fileName": "projects/list-builder/src/modules/list-data-provider-in-memory/list-data-in-memory.provider.ts",
2564
- "line": 57,
2564
+ "line": 55,
2565
2565
  "character": 9
2566
2566
  }
2567
2567
  ],
@@ -2636,7 +2636,7 @@
2636
2636
  "sources": [
2637
2637
  {
2638
2638
  "fileName": "projects/list-builder/src/modules/list-data-provider-in-memory/list-data-in-memory.provider.ts",
2639
- "line": 24,
2639
+ "line": 15,
2640
2640
  "character": 13
2641
2641
  }
2642
2642
  ],
@@ -2661,7 +2661,7 @@
2661
2661
  "name": "NgModule"
2662
2662
  },
2663
2663
  "arguments": {
2664
- "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}"
2665
2665
  }
2666
2666
  }
2667
2667
  ],
@@ -2700,7 +2700,7 @@
2700
2700
  "sources": [
2701
2701
  {
2702
2702
  "fileName": "projects/list-builder/src/modules/list/list.module.ts",
2703
- "line": 16,
2703
+ "line": 10,
2704
2704
  "character": 13
2705
2705
  }
2706
2706
  ]
@@ -2719,7 +2719,7 @@
2719
2719
  "name": "NgModule"
2720
2720
  },
2721
2721
  "arguments": {
2722
- "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}"
2723
2723
  }
2724
2724
  }
2725
2725
  ],
@@ -2758,7 +2758,7 @@
2758
2758
  "sources": [
2759
2759
  {
2760
2760
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.module.ts",
2761
- "line": 18,
2761
+ "line": 11,
2762
2762
  "character": 13
2763
2763
  }
2764
2764
  ]
@@ -2777,7 +2777,7 @@
2777
2777
  "name": "NgModule"
2778
2778
  },
2779
2779
  "arguments": {
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: [\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}"
2781
2781
  }
2782
2782
  }
2783
2783
  ],
@@ -2816,7 +2816,7 @@
2816
2816
  "sources": [
2817
2817
  {
2818
2818
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.module.ts",
2819
- "line": 55,
2819
+ "line": 34,
2820
2820
  "character": 13
2821
2821
  }
2822
2822
  ]
@@ -2838,7 +2838,7 @@
2838
2838
  "name": "Component"
2839
2839
  },
2840
2840
  "arguments": {
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}"
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}"
2842
2842
  }
2843
2843
  }
2844
2844
  ],
@@ -2852,7 +2852,7 @@
2852
2852
  "sources": [
2853
2853
  {
2854
2854
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
2855
- "line": 264,
2855
+ "line": 232,
2856
2856
  "character": 2
2857
2857
  }
2858
2858
  ],
@@ -2939,7 +2939,7 @@
2939
2939
  "sources": [
2940
2940
  {
2941
2941
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
2942
- "line": 206,
2942
+ "line": 174,
2943
2943
  "character": 9
2944
2944
  }
2945
2945
  ],
@@ -2969,7 +2969,7 @@
2969
2969
  "sources": [
2970
2970
  {
2971
2971
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
2972
- "line": 199,
2972
+ "line": 167,
2973
2973
  "character": 9
2974
2974
  }
2975
2975
  ],
@@ -2992,7 +2992,7 @@
2992
2992
  "sources": [
2993
2993
  {
2994
2994
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
2995
- "line": 214,
2995
+ "line": 182,
2996
2996
  "character": 9
2997
2997
  }
2998
2998
  ],
@@ -3013,7 +3013,7 @@
3013
3013
  "sources": [
3014
3014
  {
3015
3015
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3016
- "line": 211,
3016
+ "line": 179,
3017
3017
  "character": 9
3018
3018
  }
3019
3019
  ],
@@ -3034,7 +3034,7 @@
3034
3034
  "sources": [
3035
3035
  {
3036
3036
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3037
- "line": 207,
3037
+ "line": 175,
3038
3038
  "character": 9
3039
3039
  }
3040
3040
  ],
@@ -3060,7 +3060,7 @@
3060
3060
  "sources": [
3061
3061
  {
3062
3062
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3063
- "line": 209,
3063
+ "line": 177,
3064
3064
  "character": 9
3065
3065
  }
3066
3066
  ],
@@ -3080,7 +3080,7 @@
3080
3080
  "sources": [
3081
3081
  {
3082
3082
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3083
- "line": 212,
3083
+ "line": 180,
3084
3084
  "character": 9
3085
3085
  }
3086
3086
  ],
@@ -3101,7 +3101,7 @@
3101
3101
  "sources": [
3102
3102
  {
3103
3103
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3104
- "line": 210,
3104
+ "line": 178,
3105
3105
  "character": 9
3106
3106
  }
3107
3107
  ],
@@ -3122,7 +3122,7 @@
3122
3122
  "sources": [
3123
3123
  {
3124
3124
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3125
- "line": 204,
3125
+ "line": 172,
3126
3126
  "character": 9
3127
3127
  }
3128
3128
  ],
@@ -3148,7 +3148,7 @@
3148
3148
  "sources": [
3149
3149
  {
3150
3150
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3151
- "line": 202,
3151
+ "line": 170,
3152
3152
  "character": 9
3153
3153
  }
3154
3154
  ],
@@ -3174,7 +3174,7 @@
3174
3174
  "sources": [
3175
3175
  {
3176
3176
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3177
- "line": 205,
3177
+ "line": 173,
3178
3178
  "character": 9
3179
3179
  }
3180
3180
  ],
@@ -3200,7 +3200,7 @@
3200
3200
  "sources": [
3201
3201
  {
3202
3202
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3203
- "line": 203,
3203
+ "line": 171,
3204
3204
  "character": 9
3205
3205
  }
3206
3206
  ],
@@ -3221,7 +3221,7 @@
3221
3221
  "sources": [
3222
3222
  {
3223
3223
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3224
- "line": 198,
3224
+ "line": 166,
3225
3225
  "character": 9
3226
3226
  }
3227
3227
  ],
@@ -3244,7 +3244,7 @@
3244
3244
  "sources": [
3245
3245
  {
3246
3246
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3247
- "line": 215,
3247
+ "line": 183,
3248
3248
  "character": 9
3249
3249
  }
3250
3250
  ],
@@ -3284,7 +3284,7 @@
3284
3284
  "sources": [
3285
3285
  {
3286
3286
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3287
- "line": 150,
3287
+ "line": 114,
3288
3288
  "character": 9
3289
3289
  }
3290
3290
  ],
@@ -3304,7 +3304,7 @@
3304
3304
  "sources": [
3305
3305
  {
3306
3306
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3307
- "line": 200,
3307
+ "line": 168,
3308
3308
  "character": 9
3309
3309
  }
3310
3310
  ],
@@ -3333,14 +3333,14 @@
3333
3333
  },
3334
3334
  "arguments": {
3335
3335
  "selector": "SkySearchComponent",
3336
- "opts": "{\n read: SkySearchComponent,\n static: false\n }"
3336
+ "opts": "{\n read: SkySearchComponent,\n static: false,\n }"
3337
3337
  }
3338
3338
  }
3339
3339
  ],
3340
3340
  "sources": [
3341
3341
  {
3342
3342
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3343
- "line": 163,
3343
+ "line": 127,
3344
3344
  "character": 9
3345
3345
  }
3346
3346
  ],
@@ -3379,7 +3379,7 @@
3379
3379
  "sources": [
3380
3380
  {
3381
3381
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3382
- "line": 157,
3382
+ "line": 121,
3383
3383
  "character": 9
3384
3384
  }
3385
3385
  ],
@@ -3427,7 +3427,7 @@
3427
3427
  "sources": [
3428
3428
  {
3429
3429
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3430
- "line": 185,
3430
+ "line": 149,
3431
3431
  "character": 9
3432
3432
  }
3433
3433
  ],
@@ -3462,7 +3462,7 @@
3462
3462
  "sources": [
3463
3463
  {
3464
3464
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3465
- "line": 196,
3465
+ "line": 164,
3466
3466
  "character": 9
3467
3467
  }
3468
3468
  ],
@@ -3488,7 +3488,7 @@
3488
3488
  "sources": [
3489
3489
  {
3490
3490
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3491
- "line": 208,
3491
+ "line": 176,
3492
3492
  "character": 9
3493
3493
  }
3494
3494
  ],
@@ -3527,7 +3527,7 @@
3527
3527
  "sources": [
3528
3528
  {
3529
3529
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3530
- "line": 170,
3530
+ "line": 134,
3531
3531
  "character": 9
3532
3532
  }
3533
3533
  ],
@@ -3562,7 +3562,7 @@
3562
3562
  "sources": [
3563
3563
  {
3564
3564
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3565
- "line": 195,
3565
+ "line": 163,
3566
3566
  "character": 9
3567
3567
  }
3568
3568
  ],
@@ -3623,7 +3623,7 @@
3623
3623
  "sources": [
3624
3624
  {
3625
3625
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3626
- "line": 179,
3626
+ "line": 143,
3627
3627
  "character": 9
3628
3628
  }
3629
3629
  ],
@@ -3644,7 +3644,7 @@
3644
3644
  "sources": [
3645
3645
  {
3646
3646
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3647
- "line": 201,
3647
+ "line": 169,
3648
3648
  "character": 9
3649
3649
  }
3650
3650
  ],
@@ -3670,7 +3670,7 @@
3670
3670
  "sources": [
3671
3671
  {
3672
3672
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3673
- "line": 197,
3673
+ "line": 165,
3674
3674
  "character": 9
3675
3675
  }
3676
3676
  ],
@@ -3696,7 +3696,7 @@
3696
3696
  "sources": [
3697
3697
  {
3698
3698
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3699
- "line": 191,
3699
+ "line": 159,
3700
3700
  "character": 13
3701
3701
  }
3702
3702
  ],
@@ -3725,7 +3725,7 @@
3725
3725
  "sources": [
3726
3726
  {
3727
3727
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3728
- "line": 187,
3728
+ "line": 151,
3729
3729
  "character": 13
3730
3730
  }
3731
3731
  ],
@@ -3754,7 +3754,7 @@
3754
3754
  "sources": [
3755
3755
  {
3756
3756
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3757
- "line": 502,
3757
+ "line": 459,
3758
3758
  "character": 9
3759
3759
  }
3760
3760
  ],
@@ -3783,7 +3783,7 @@
3783
3783
  "sources": [
3784
3784
  {
3785
3785
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3786
- "line": 409,
3786
+ "line": 376,
3787
3787
  "character": 9
3788
3788
  }
3789
3789
  ],
@@ -3820,7 +3820,7 @@
3820
3820
  "sources": [
3821
3821
  {
3822
3822
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3823
- "line": 482,
3823
+ "line": 438,
3824
3824
  "character": 9
3825
3825
  }
3826
3826
  ],
@@ -3857,7 +3857,7 @@
3857
3857
  "sources": [
3858
3858
  {
3859
3859
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3860
- "line": 272,
3860
+ "line": 240,
3861
3861
  "character": 9
3862
3862
  }
3863
3863
  ],
@@ -3894,7 +3894,7 @@
3894
3894
  "sources": [
3895
3895
  {
3896
3896
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3897
- "line": 488,
3897
+ "line": 444,
3898
3898
  "character": 9
3899
3899
  }
3900
3900
  ],
@@ -3937,7 +3937,7 @@
3937
3937
  "sources": [
3938
3938
  {
3939
3939
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
3940
- "line": 506,
3940
+ "line": 463,
3941
3941
  "character": 9
3942
3942
  }
3943
3943
  ],
@@ -4034,7 +4034,7 @@
4034
4034
  "sources": [
4035
4035
  {
4036
4036
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.component.ts",
4037
- "line": 123,
4037
+ "line": 86,
4038
4038
  "character": 13
4039
4039
  }
4040
4040
  ],
@@ -4067,7 +4067,7 @@
4067
4067
  "name": "NgModule"
4068
4068
  },
4069
4069
  "arguments": {
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}"
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}"
4071
4071
  }
4072
4072
  }
4073
4073
  ],
@@ -4106,7 +4106,7 @@
4106
4106
  "sources": [
4107
4107
  {
4108
4108
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar.module.ts",
4109
- "line": 100,
4109
+ "line": 65,
4110
4110
  "character": 13
4111
4111
  }
4112
4112
  ]
@@ -4128,7 +4128,7 @@
4128
4128
  "name": "Component"
4129
4129
  },
4130
4130
  "arguments": {
4131
- "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}"
4132
4132
  }
4133
4133
  }
4134
4134
  ],
@@ -4142,7 +4142,7 @@
4142
4142
  "sources": [
4143
4143
  {
4144
4144
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-button.component.ts",
4145
- "line": 37,
4145
+ "line": 33,
4146
4146
  "character": 2
4147
4147
  }
4148
4148
  ],
@@ -4185,7 +4185,7 @@
4185
4185
  "sources": [
4186
4186
  {
4187
4187
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-button.component.ts",
4188
- "line": 41,
4188
+ "line": 35,
4189
4189
  "character": 9
4190
4190
  }
4191
4191
  ],
@@ -4231,7 +4231,7 @@
4231
4231
  "sources": [
4232
4232
  {
4233
4233
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-button.component.ts",
4234
- "line": 28,
4234
+ "line": 24,
4235
4235
  "character": 13
4236
4236
  }
4237
4237
  ],
@@ -4259,7 +4259,7 @@
4259
4259
  "name": "Component"
4260
4260
  },
4261
4261
  "arguments": {
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}"
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}"
4263
4263
  }
4264
4264
  }
4265
4265
  ],
@@ -4298,7 +4298,7 @@
4298
4298
  "sources": [
4299
4299
  {
4300
4300
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-view-actions.component.ts",
4301
- "line": 16,
4301
+ "line": 14,
4302
4302
  "character": 13
4303
4303
  }
4304
4304
  ]
@@ -4320,7 +4320,7 @@
4320
4320
  "name": "Component"
4321
4321
  },
4322
4322
  "arguments": {
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}"
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}"
4324
4324
  }
4325
4325
  }
4326
4326
  ],
@@ -4359,7 +4359,7 @@
4359
4359
  "sources": [
4360
4360
  {
4361
4361
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-search-actions.component.ts",
4362
- "line": 15,
4362
+ "line": 12,
4363
4363
  "character": 13
4364
4364
  }
4365
4365
  ]
@@ -4381,7 +4381,7 @@
4381
4381
  "name": "Component"
4382
4382
  },
4383
4383
  "arguments": {
4384
- "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}"
4385
4385
  }
4386
4386
  }
4387
4387
  ],
@@ -4395,7 +4395,7 @@
4395
4395
  "sources": [
4396
4396
  {
4397
4397
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4398
- "line": 50,
4398
+ "line": 38,
4399
4399
  "character": 2
4400
4400
  }
4401
4401
  ],
@@ -4449,7 +4449,7 @@
4449
4449
  "sources": [
4450
4450
  {
4451
4451
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4452
- "line": 48,
4452
+ "line": 36,
4453
4453
  "character": 9
4454
4454
  }
4455
4455
  ],
@@ -4492,7 +4492,7 @@
4492
4492
  "sources": [
4493
4493
  {
4494
4494
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4495
- "line": 46,
4495
+ "line": 34,
4496
4496
  "character": 9
4497
4497
  }
4498
4498
  ],
@@ -4520,7 +4520,7 @@
4520
4520
  "sources": [
4521
4521
  {
4522
4522
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4523
- "line": 76,
4523
+ "line": 68,
4524
4524
  "character": 9
4525
4525
  }
4526
4526
  ],
@@ -4563,7 +4563,7 @@
4563
4563
  "sources": [
4564
4564
  {
4565
4565
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4566
- "line": 69,
4566
+ "line": 61,
4567
4567
  "character": 9
4568
4568
  }
4569
4569
  ],
@@ -4605,7 +4605,7 @@
4605
4605
  "sources": [
4606
4606
  {
4607
4607
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4608
- "line": 55,
4608
+ "line": 43,
4609
4609
  "character": 9
4610
4610
  }
4611
4611
  ],
@@ -4661,7 +4661,7 @@
4661
4661
  "sources": [
4662
4662
  {
4663
4663
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-summary.component.ts",
4664
- "line": 39,
4664
+ "line": 28,
4665
4665
  "character": 13
4666
4666
  }
4667
4667
  ],
@@ -4689,7 +4689,7 @@
4689
4689
  "name": "Component"
4690
4690
  },
4691
4691
  "arguments": {
4692
- "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}"
4693
4693
  }
4694
4694
  }
4695
4695
  ],
@@ -4739,7 +4739,7 @@
4739
4739
  "sources": [
4740
4740
  {
4741
4741
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
4742
- "line": 41,
4742
+ "line": 39,
4743
4743
  "character": 9
4744
4744
  }
4745
4745
  ],
@@ -4771,7 +4771,7 @@
4771
4771
  "sources": [
4772
4772
  {
4773
4773
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
4774
- "line": 51,
4774
+ "line": 49,
4775
4775
  "character": 9
4776
4776
  }
4777
4777
  ],
@@ -4856,7 +4856,7 @@
4856
4856
  "sources": [
4857
4857
  {
4858
4858
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
4859
- "line": 28,
4859
+ "line": 26,
4860
4860
  "character": 9
4861
4861
  }
4862
4862
  ],
@@ -4876,7 +4876,7 @@
4876
4876
  "sources": [
4877
4877
  {
4878
4878
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
4879
- "line": 63,
4879
+ "line": 61,
4880
4880
  "character": 9
4881
4881
  }
4882
4882
  ],
@@ -4924,7 +4924,7 @@
4924
4924
  "sources": [
4925
4925
  {
4926
4926
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
4927
- "line": 60,
4927
+ "line": 59,
4928
4928
  "character": 9
4929
4929
  }
4930
4930
  ],
@@ -4963,7 +4963,7 @@
4963
4963
  "sources": [
4964
4964
  {
4965
4965
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
4966
- "line": 34,
4966
+ "line": 32,
4967
4967
  "character": 9
4968
4968
  }
4969
4969
  ],
@@ -4983,7 +4983,7 @@
4983
4983
  "sources": [
4984
4984
  {
4985
4985
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
4986
- "line": 74,
4986
+ "line": 72,
4987
4987
  "character": 13
4988
4988
  }
4989
4989
  ],
@@ -5018,7 +5018,7 @@
5018
5018
  "sources": [
5019
5019
  {
5020
5020
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
5021
- "line": 68,
5021
+ "line": 66,
5022
5022
  "character": 9
5023
5023
  }
5024
5024
  ],
@@ -5083,7 +5083,7 @@
5083
5083
  "sources": [
5084
5084
  {
5085
5085
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline-item.component.ts",
5086
- "line": 22,
5086
+ "line": 20,
5087
5087
  "character": 13
5088
5088
  }
5089
5089
  ],
@@ -5111,7 +5111,7 @@
5111
5111
  "name": "Component"
5112
5112
  },
5113
5113
  "arguments": {
5114
- "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}"
5115
5115
  }
5116
5116
  }
5117
5117
  ],
@@ -5125,7 +5125,7 @@
5125
5125
  "sources": [
5126
5126
  {
5127
5127
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline.component.ts",
5128
- "line": 48,
5128
+ "line": 36,
5129
5129
  "character": 2
5130
5130
  }
5131
5131
  ],
@@ -5179,7 +5179,7 @@
5179
5179
  "sources": [
5180
5180
  {
5181
5181
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline.component.ts",
5182
- "line": 43,
5182
+ "line": 31,
5183
5183
  "character": 9
5184
5184
  }
5185
5185
  ],
@@ -5203,7 +5203,7 @@
5203
5203
  "sources": [
5204
5204
  {
5205
5205
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline.component.ts",
5206
- "line": 73,
5206
+ "line": 63,
5207
5207
  "character": 9
5208
5208
  }
5209
5209
  ],
@@ -5232,7 +5232,7 @@
5232
5232
  "sources": [
5233
5233
  {
5234
5234
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline.component.ts",
5235
- "line": 53,
5235
+ "line": 41,
5236
5236
  "character": 9
5237
5237
  }
5238
5238
  ],
@@ -5286,7 +5286,7 @@
5286
5286
  "sources": [
5287
5287
  {
5288
5288
  "fileName": "projects/list-builder/src/modules/list-filters/list-filter-inline.component.ts",
5289
- "line": 42,
5289
+ "line": 30,
5290
5290
  "character": 13
5291
5291
  }
5292
5292
  ],
@@ -5314,7 +5314,7 @@
5314
5314
  "name": "Component"
5315
5315
  },
5316
5316
  "arguments": {
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}"
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}"
5318
5318
  }
5319
5319
  }
5320
5320
  ],
@@ -5328,7 +5328,7 @@
5328
5328
  "sources": [
5329
5329
  {
5330
5330
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5331
- "line": 84,
5331
+ "line": 75,
5332
5332
  "character": 2
5333
5333
  }
5334
5334
  ],
@@ -5390,7 +5390,7 @@
5390
5390
  "sources": [
5391
5391
  {
5392
5392
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5393
- "line": 76,
5393
+ "line": 67,
5394
5394
  "character": 9
5395
5395
  }
5396
5396
  ],
@@ -5416,7 +5416,7 @@
5416
5416
  "sources": [
5417
5417
  {
5418
5418
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5419
- "line": 82,
5419
+ "line": 73,
5420
5420
  "character": 9
5421
5421
  }
5422
5422
  ],
@@ -5442,7 +5442,7 @@
5442
5442
  "sources": [
5443
5443
  {
5444
5444
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5445
- "line": 80,
5445
+ "line": 71,
5446
5446
  "character": 9
5447
5447
  }
5448
5448
  ],
@@ -5468,7 +5468,7 @@
5468
5468
  "sources": [
5469
5469
  {
5470
5470
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5471
- "line": 78,
5471
+ "line": 69,
5472
5472
  "character": 9
5473
5473
  }
5474
5474
  ],
@@ -5513,7 +5513,7 @@
5513
5513
  "sources": [
5514
5514
  {
5515
5515
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5516
- "line": 67,
5516
+ "line": 58,
5517
5517
  "character": 9
5518
5518
  }
5519
5519
  ],
@@ -5568,7 +5568,7 @@
5568
5568
  "sources": [
5569
5569
  {
5570
5570
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5571
- "line": 74,
5571
+ "line": 65,
5572
5572
  "character": 9
5573
5573
  }
5574
5574
  ],
@@ -5623,7 +5623,7 @@
5623
5623
  "sources": [
5624
5624
  {
5625
5625
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5626
- "line": 60,
5626
+ "line": 51,
5627
5627
  "character": 9
5628
5628
  }
5629
5629
  ],
@@ -5659,7 +5659,7 @@
5659
5659
  "sources": [
5660
5660
  {
5661
5661
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5662
- "line": 91,
5662
+ "line": 79,
5663
5663
  "character": 9
5664
5664
  }
5665
5665
  ],
@@ -5696,7 +5696,7 @@
5696
5696
  "sources": [
5697
5697
  {
5698
5698
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5699
- "line": 134,
5699
+ "line": 130,
5700
5700
  "character": 9
5701
5701
  }
5702
5702
  ],
@@ -5761,7 +5761,7 @@
5761
5761
  "sources": [
5762
5762
  {
5763
5763
  "fileName": "projects/list-builder/src/modules/list-paging/list-paging.component.ts",
5764
- "line": 54,
5764
+ "line": 42,
5765
5765
  "character": 13
5766
5766
  }
5767
5767
  ],
@@ -5795,7 +5795,7 @@
5795
5795
  "name": "Component"
5796
5796
  },
5797
5797
  "arguments": {
5798
- "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}"
5799
5799
  }
5800
5800
  }
5801
5801
  ],
@@ -5809,7 +5809,7 @@
5809
5809
  "sources": [
5810
5810
  {
5811
5811
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-action.component.ts",
5812
- "line": 25,
5812
+ "line": 24,
5813
5813
  "character": 2
5814
5814
  }
5815
5815
  ],
@@ -5852,7 +5852,7 @@
5852
5852
  "sources": [
5853
5853
  {
5854
5854
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-action.component.ts",
5855
- "line": 29,
5855
+ "line": 26,
5856
5856
  "character": 9
5857
5857
  }
5858
5858
  ],
@@ -5926,7 +5926,7 @@
5926
5926
  "name": "Component"
5927
5927
  },
5928
5928
  "arguments": {
5929
- "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}"
5930
5930
  }
5931
5931
  }
5932
5932
  ],
@@ -5940,7 +5940,7 @@
5940
5940
  "sources": [
5941
5941
  {
5942
5942
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.ts",
5943
- "line": 44,
5943
+ "line": 36,
5944
5944
  "character": 2
5945
5945
  }
5946
5946
  ],
@@ -5983,7 +5983,7 @@
5983
5983
  "sources": [
5984
5984
  {
5985
5985
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.ts",
5986
- "line": 34,
5986
+ "line": 26,
5987
5987
  "character": 9
5988
5988
  }
5989
5989
  ],
@@ -6007,7 +6007,7 @@
6007
6007
  "sources": [
6008
6008
  {
6009
6009
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.ts",
6010
- "line": 48,
6010
+ "line": 38,
6011
6011
  "character": 9
6012
6012
  }
6013
6013
  ],
@@ -6060,7 +6060,7 @@
6060
6060
  "sources": [
6061
6061
  {
6062
6062
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.ts",
6063
- "line": 33,
6063
+ "line": 25,
6064
6064
  "character": 13
6065
6065
  }
6066
6066
  ],
@@ -6088,7 +6088,7 @@
6088
6088
  "name": "Component"
6089
6089
  },
6090
6090
  "arguments": {
6091
- "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}"
6092
6092
  }
6093
6093
  }
6094
6094
  ],
@@ -6138,7 +6138,7 @@
6138
6138
  "sources": [
6139
6139
  {
6140
6140
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-item.component.ts",
6141
- "line": 16,
6141
+ "line": 22,
6142
6142
  "character": 18
6143
6143
  }
6144
6144
  ],
@@ -6178,7 +6178,7 @@
6178
6178
  "sources": [
6179
6179
  {
6180
6180
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-item.component.ts",
6181
- "line": 21,
6181
+ "line": 27,
6182
6182
  "character": 18
6183
6183
  }
6184
6184
  ],
@@ -6218,7 +6218,7 @@
6218
6218
  "sources": [
6219
6219
  {
6220
6220
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-item.component.ts",
6221
- "line": 27,
6221
+ "line": 33,
6222
6222
  "character": 18
6223
6223
  }
6224
6224
  ],
@@ -6239,7 +6239,7 @@
6239
6239
  "sources": [
6240
6240
  {
6241
6241
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-item.component.ts",
6242
- "line": 29,
6242
+ "line": 35,
6243
6243
  "character": 13
6244
6244
  }
6245
6245
  ],
@@ -6292,7 +6292,7 @@
6292
6292
  "sources": [
6293
6293
  {
6294
6294
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-item.component.ts",
6295
- "line": 12,
6295
+ "line": 18,
6296
6296
  "character": 13
6297
6297
  }
6298
6298
  ]
@@ -6314,7 +6314,7 @@
6314
6314
  "name": "Component"
6315
6315
  },
6316
6316
  "arguments": {
6317
- "obj": "{\n selector: 'sky-list-toolbar-sort',\n template: ''\n }"
6317
+ "obj": "{\n selector: 'sky-list-toolbar-sort',\n template: '',\n}"
6318
6318
  }
6319
6319
  }
6320
6320
  ],
@@ -6371,7 +6371,7 @@
6371
6371
  {
6372
6372
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-sort.component.ts",
6373
6373
  "line": 34,
6374
- "character": 11
6374
+ "character": 9
6375
6375
  }
6376
6376
  ],
6377
6377
  "type": {
@@ -6410,7 +6410,7 @@
6410
6410
  {
6411
6411
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-sort.component.ts",
6412
6412
  "line": 22,
6413
- "character": 11
6413
+ "character": 9
6414
6414
  }
6415
6415
  ],
6416
6416
  "type": {
@@ -6449,7 +6449,7 @@
6449
6449
  {
6450
6450
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-sort.component.ts",
6451
6451
  "line": 16,
6452
- "character": 11
6452
+ "character": 9
6453
6453
  }
6454
6454
  ],
6455
6455
  "type": {
@@ -6488,7 +6488,7 @@
6488
6488
  {
6489
6489
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-sort.component.ts",
6490
6490
  "line": 28,
6491
- "character": 11
6491
+ "character": 9
6492
6492
  }
6493
6493
  ],
6494
6494
  "type": {
@@ -6520,7 +6520,7 @@
6520
6520
  {
6521
6521
  "fileName": "projects/list-builder/src/modules/list-toolbar/list-toolbar-sort.component.ts",
6522
6522
  "line": 10,
6523
- "character": 15
6523
+ "character": 13
6524
6524
  }
6525
6525
  ]
6526
6526
  }
@@ -6575,100 +6575,105 @@
6575
6575
  ]
6576
6576
  },
6577
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
+ },
6578
6583
  {
6579
6584
  "fileName": "list-filters-demo.component.html",
6580
6585
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/inline-filters/list-filters-demo.component.html",
6581
- "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 <!-- Add your list-view here -->\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"
6582
6587
  },
6583
6588
  {
6584
6589
  "fileName": "list-filters-demo.component.ts",
6585
6590
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/inline-filters/list-filters-demo.component.ts",
6586
- "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"
6587
6592
  },
6588
6593
  {
6589
6594
  "fileName": "list-filters-demo.module.ts",
6590
6595
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/inline-filters/list-filters-demo.module.ts",
6591
- "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 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 ],\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"
6592
6597
  },
6593
6598
  {
6594
6599
  "fileName": "list-filters-demo-modal-context.ts",
6595
6600
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/modal-filters/list-filters-demo-modal-context.ts",
6596
- "rawContents": "export class ListFiltersDemoModalContext {\n\n public appliedFilters: any[];\n\n}\n"
6601
+ "rawContents": "export class ListFiltersDemoModalContext {\n public appliedFilters: any[];\n}\n"
6597
6602
  },
6598
6603
  {
6599
6604
  "fileName": "list-filters-demo-modal.component.html",
6600
6605
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/modal-filters/list-filters-demo-modal.component.html",
6601
- "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"
6602
6607
  },
6603
6608
  {
6604
6609
  "fileName": "list-filters-demo-modal.component.ts",
6605
6610
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/modal-filters/list-filters-demo-modal.component.ts",
6606
- "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"
6607
6612
  },
6608
6613
  {
6609
6614
  "fileName": "list-filters-demo.component.html",
6610
6615
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/modal-filters/list-filters-demo.component.html",
6611
- "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 <!-- Add your list-view here -->\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"
6612
6617
  },
6613
6618
  {
6614
6619
  "fileName": "list-filters-demo.component.ts",
6615
6620
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/modal-filters/list-filters-demo.component.ts",
6616
- "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"
6617
6622
  },
6618
6623
  {
6619
6624
  "fileName": "list-filters-demo.module.ts",
6620
6625
  "filePath": "/projects/list-builder/documentation/code-examples/list-filters/modal-filters/list-filters-demo.module.ts",
6621
- "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 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 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"
6622
6627
  },
6623
6628
  {
6624
6629
  "fileName": "list-paging-demo.component.html",
6625
6630
  "filePath": "/projects/list-builder/documentation/code-examples/list-paging/basic/list-paging-demo.component.html",
6626
- "rawContents": "<sky-list\n [data]=\"data\"\n>\n <!-- Add your list-view here -->\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"
6627
6632
  },
6628
6633
  {
6629
6634
  "fileName": "list-paging-demo.component.scss",
6630
6635
  "filePath": "/projects/list-builder/documentation/code-examples/list-paging/basic/list-paging-demo.component.scss",
6631
- "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"
6632
6637
  },
6633
6638
  {
6634
6639
  "fileName": "list-paging-demo.component.ts",
6635
6640
  "filePath": "/projects/list-builder/documentation/code-examples/list-paging/basic/list-paging-demo.component.ts",
6636
- "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"
6637
6642
  },
6638
6643
  {
6639
6644
  "fileName": "list-paging-demo.module.ts",
6640
6645
  "filePath": "/projects/list-builder/documentation/code-examples/list-paging/basic/list-paging-demo.module.ts",
6641
- "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 ListPagingDemoComponent\n} from './list-paging-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n SkyListModule,\n SkyListPagingModule\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"
6642
6647
  },
6643
6648
  {
6644
6649
  "fileName": "list-toolbar-demo.component.html",
6645
6650
  "filePath": "/projects/list-builder/documentation/code-examples/list-toolbar/basic/list-toolbar-demo.component.html",
6646
- "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 <!-- Add your list-view here -->\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"
6647
6652
  },
6648
6653
  {
6649
6654
  "fileName": "list-toolbar-demo.component.ts",
6650
6655
  "filePath": "/projects/list-builder/documentation/code-examples/list-toolbar/basic/list-toolbar-demo.component.ts",
6651
- "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"
6652
6657
  },
6653
6658
  {
6654
6659
  "fileName": "list-toolbar-demo.module.ts",
6655
6660
  "filePath": "/projects/list-builder/documentation/code-examples/list-toolbar/basic/list-toolbar-demo.module.ts",
6656
- "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 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 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"
6657
6662
  },
6658
6663
  {
6659
6664
  "fileName": "list-toolbar-demo.component.html",
6660
6665
  "filePath": "/projects/list-builder/documentation/code-examples/list-toolbar/custom/list-toolbar-demo.component.html",
6661
- "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 <!-- Add your list-view here -->\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"
6662
6667
  },
6663
6668
  {
6664
6669
  "fileName": "list-toolbar-demo.component.ts",
6665
6670
  "filePath": "/projects/list-builder/documentation/code-examples/list-toolbar/custom/list-toolbar-demo.component.ts",
6666
- "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"
6667
6672
  },
6668
6673
  {
6669
6674
  "fileName": "list-toolbar-demo.module.ts",
6670
6675
  "filePath": "/projects/list-builder/documentation/code-examples/list-toolbar/custom/list-toolbar-demo.module.ts",
6671
- "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 ListToolbarDemoComponent\n} from './list-toolbar-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n SkyListModule,\n SkyListToolbarModule\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"
6672
6677
  }
6673
6678
  ]
6674
6679
  }