@symphony-talent/component-library 1.9.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. package/esm2020/lib/atoms/atoms.module.mjs +3 -11
  2. package/esm2020/lib/atoms/grid/framework/contact-activity-score/{contact-activity-score.component.module.mjs → contact-activity-score.module.mjs} +1 -1
  3. package/esm2020/lib/atoms/grid/framework/framework.module.mjs +2 -2
  4. package/esm2020/lib/atoms/input-checkbox/input-checkbox.model.mjs +2 -0
  5. package/esm2020/lib/design-guide/typography/typography.component.mjs +31 -0
  6. package/esm2020/lib/design-guide/typography/typography.model.mjs +2 -0
  7. package/esm2020/lib/design-guide/typography/typography.module.mjs +46 -0
  8. package/esm2020/lib/molecules/card/card.component.mjs +28 -0
  9. package/esm2020/lib/molecules/card/card.model.mjs +2 -0
  10. package/esm2020/lib/molecules/card/card.module.mjs +22 -0
  11. package/esm2020/lib/molecules/molecules.module.mjs +4 -26
  12. package/esm2020/lib/organisms/card-list/card-list.component.mjs +23 -0
  13. package/esm2020/lib/organisms/card-list/card-list.module.mjs +19 -0
  14. package/esm2020/lib/organisms/organisms.module.mjs +40 -0
  15. package/esm2020/lib/pages/setting-list-page/setting-list-page.component.mjs +33 -0
  16. package/esm2020/lib/pages/setting-list-page/setting-list-page.model.mjs +2 -0
  17. package/esm2020/lib/pages/setting-list-page/setting-list-page.module.mjs +46 -0
  18. package/esm2020/lib/templates/setting-list-template/setting-list-template.component.mjs +12 -0
  19. package/esm2020/lib/templates/setting-list-template/setting-list-template.module.mjs +28 -0
  20. package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +3 -11
  21. package/esm2020/projects/component-library/lib/atoms/grid/framework/contact-activity-score/{contact-activity-score.component.module.mjs → contact-activity-score.module.mjs} +1 -1
  22. package/esm2020/projects/component-library/lib/atoms/grid/framework/framework.module.mjs +2 -2
  23. package/esm2020/projects/component-library/lib/atoms/input-checkbox/input-checkbox.model.mjs +2 -0
  24. package/esm2020/projects/component-library/lib/design-guide/typography/typography.component.mjs +31 -0
  25. package/esm2020/projects/component-library/lib/design-guide/typography/typography.model.mjs +2 -0
  26. package/esm2020/projects/component-library/lib/design-guide/typography/typography.module.mjs +46 -0
  27. package/esm2020/projects/component-library/lib/molecules/card/card.component.mjs +28 -0
  28. package/esm2020/projects/component-library/lib/molecules/card/card.model.mjs +2 -0
  29. package/esm2020/projects/component-library/lib/molecules/card/card.module.mjs +22 -0
  30. package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +4 -26
  31. package/esm2020/projects/component-library/lib/organisms/card-list/card-list.component.mjs +23 -0
  32. package/esm2020/projects/component-library/lib/organisms/card-list/card-list.module.mjs +19 -0
  33. package/esm2020/projects/component-library/lib/organisms/organisms.module.mjs +40 -0
  34. package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.component.mjs +33 -0
  35. package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.model.mjs +2 -0
  36. package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.module.mjs +46 -0
  37. package/esm2020/projects/component-library/lib/templates/setting-list-template/setting-list-template.component.mjs +12 -0
  38. package/esm2020/projects/component-library/lib/templates/setting-list-template/setting-list-template.module.mjs +28 -0
  39. package/esm2020/projects/component-library/public-api.mjs +50 -42
  40. package/esm2020/public-api.mjs +50 -42
  41. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +1216 -989
  42. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  43. package/fesm2015/symphony-talent-component-library.mjs +1216 -989
  44. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  45. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +1216 -989
  46. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  47. package/fesm2020/symphony-talent-component-library.mjs +1216 -989
  48. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  49. package/lib/atoms/atoms.module.d.ts +22 -24
  50. package/lib/atoms/grid/framework/contact-activity-score/{contact-activity-score.component.module.d.ts → contact-activity-score.module.d.ts} +0 -0
  51. package/lib/atoms/grid/framework/framework.module.d.ts +1 -1
  52. package/lib/atoms/input-checkbox/input-checkbox.model.d.ts +5 -0
  53. package/lib/design-guide/typography/typography.component.d.ts +9 -0
  54. package/lib/design-guide/typography/typography.model.d.ts +9 -0
  55. package/lib/design-guide/typography/typography.module.d.ts +14 -0
  56. package/lib/molecules/card/card.component.d.ts +11 -0
  57. package/lib/molecules/card/card.model.d.ts +6 -0
  58. package/lib/molecules/card/card.module.d.ts +12 -0
  59. package/lib/molecules/molecules.module.d.ts +4 -6
  60. package/lib/organisms/card-list/card-list.component.d.ts +11 -0
  61. package/lib/organisms/card-list/card-list.module.d.ts +9 -0
  62. package/lib/organisms/organisms.module.d.ts +12 -0
  63. package/lib/pages/setting-list-page/setting-list-page.component.d.ts +15 -0
  64. package/lib/pages/setting-list-page/setting-list-page.model.d.ts +6 -0
  65. package/lib/pages/setting-list-page/setting-list-page.module.d.ts +14 -0
  66. package/lib/templates/setting-list-template/setting-list-template.component.d.ts +6 -0
  67. package/lib/templates/setting-list-template/setting-list-template.module.d.ts +9 -0
  68. package/package.json +1 -1
  69. package/projects/component-library/lib/atoms/atoms.module.d.ts +22 -24
  70. package/projects/component-library/lib/atoms/grid/framework/contact-activity-score/{contact-activity-score.component.module.d.ts → contact-activity-score.module.d.ts} +0 -0
  71. package/projects/component-library/lib/atoms/grid/framework/framework.module.d.ts +1 -1
  72. package/projects/component-library/lib/atoms/input-checkbox/input-checkbox.model.d.ts +5 -0
  73. package/projects/component-library/lib/design-guide/typography/typography.component.d.ts +9 -0
  74. package/projects/component-library/lib/design-guide/typography/typography.model.d.ts +9 -0
  75. package/projects/component-library/lib/design-guide/typography/typography.module.d.ts +14 -0
  76. package/projects/component-library/lib/molecules/card/card.component.d.ts +11 -0
  77. package/projects/component-library/lib/molecules/card/card.model.d.ts +6 -0
  78. package/projects/component-library/lib/molecules/card/card.module.d.ts +12 -0
  79. package/projects/component-library/lib/molecules/molecules.module.d.ts +4 -6
  80. package/projects/component-library/lib/organisms/card-list/card-list.component.d.ts +11 -0
  81. package/projects/component-library/lib/organisms/card-list/card-list.module.d.ts +9 -0
  82. package/projects/component-library/lib/organisms/organisms.module.d.ts +12 -0
  83. package/projects/component-library/lib/pages/setting-list-page/setting-list-page.component.d.ts +15 -0
  84. package/projects/component-library/lib/pages/setting-list-page/setting-list-page.model.d.ts +6 -0
  85. package/projects/component-library/lib/pages/setting-list-page/setting-list-page.module.d.ts +14 -0
  86. package/projects/component-library/lib/templates/setting-list-template/setting-list-template.component.d.ts +6 -0
  87. package/projects/component-library/lib/templates/setting-list-template/setting-list-template.module.d.ts +9 -0
  88. package/projects/component-library/public-api.d.ts +49 -41
  89. package/public-api.d.ts +49 -41
  90. package/esm2020/lib/design-guide/color-swatch-collection/color-swatch-collection.component.mjs +0 -16
  91. package/esm2020/lib/design-guide/color-swatch-collection/color-swatch-collection.module.mjs +0 -19
  92. package/esm2020/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.component.mjs +0 -16
  93. package/esm2020/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.module.mjs +0 -19
  94. package/lib/design-guide/color-swatch-collection/color-swatch-collection.component.d.ts +0 -8
  95. package/lib/design-guide/color-swatch-collection/color-swatch-collection.module.d.ts +0 -9
  96. package/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.component.d.ts +0 -8
  97. package/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.module.d.ts +0 -9
@@ -2,49 +2,59 @@ export * from './lib/atoms/avatar/avatar.component';
2
2
  export * from './lib/atoms/avatar/avatar.module';
3
3
  export * from './lib/atoms/button/button.component';
4
4
  export * from './lib/atoms/button/button.module';
5
- export * from './lib/atoms/pill/pill.module';
6
- export * from './lib/atoms/pill/pill.component';
7
- export * from './lib/atoms/pill/pill.model';
8
- export * from './lib/atoms/task-icon/task-icon.component';
9
- export * from './lib/atoms/task-icon/task-icon.module';
10
- export * from './lib/atoms/color-sample/color-sample.component';
11
- export * from './lib/atoms/color-sample/color-sample.module';
5
+ export * from './lib/atoms/contextual-menu/contextual-menu.component';
6
+ export * from './lib/atoms/contextual-menu/contextual-menu.module';
7
+ export * from './lib/atoms/contextual-menu/contextual-menu.model';
8
+ export * from './lib/atoms/filter-area/filter-area.component';
9
+ export * from './lib/atoms/filter-area/filter-area.module';
10
+ export * from './lib/atoms/grid/grid.component';
11
+ export * from './lib/atoms/grid/grid.module';
12
+ export * from './lib/atoms/grid/grid.model';
13
+ export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component';
14
+ export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.module';
15
+ export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model';
16
+ export * from './lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component';
17
+ export * from './lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module';
18
+ export * from './lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model';
19
+ export * from './lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component';
20
+ export * from './lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module';
21
+ export * from './lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model';
22
+ export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component';
23
+ export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component.module';
24
+ export * from './lib/atoms/grid/framework/framework.module';
25
+ export * from './lib/atoms/h1/h1.component';
26
+ export * from './lib/atoms/h1/h1.module';
12
27
  export * from './lib/atoms/h2/h2.component';
13
28
  export * from './lib/atoms/h2/h2.module';
14
29
  export * from './lib/atoms/h3/h3.component';
15
30
  export * from './lib/atoms/h3/h3.module';
16
31
  export * from './lib/atoms/h4/h4.component';
17
32
  export * from './lib/atoms/h4/h4.module';
18
- export * from './lib/atoms/h1/h1.component';
19
- export * from './lib/atoms/h1/h1.module';
20
- export * from './lib/atoms/paragraph/paragraph.component';
21
- export * from './lib/atoms/paragraph/paragraph.module';
22
33
  export * from './lib/atoms/h5/h5.component';
23
34
  export * from './lib/atoms/h5/h5.module';
35
+ export * from './lib/atoms/paragraph/paragraph.component';
36
+ export * from './lib/atoms/paragraph/paragraph.module';
24
37
  export * from './lib/atoms/icon/icon.component';
25
38
  export * from './lib/atoms/icon/icon.module';
39
+ export * from './lib/atoms/icon/icon.enum';
26
40
  export * from './lib/atoms/icon-wrapper/icon-wrapper.component';
27
41
  export * from './lib/atoms/icon-wrapper/icon-wrapper.module';
28
42
  export * from './lib/atoms/input-checkbox/input-checkbox.component';
29
43
  export * from './lib/atoms/input-checkbox/input-checkbox.module';
44
+ export * from './lib/atoms/input-checkbox/input-checkbox.model';
45
+ export * from './lib/atoms/input-dropdown/input-dropdown.component';
46
+ export * from './lib/atoms/input-dropdown/input-dropdown.module';
47
+ export * from './lib/atoms/input-dropdown/input-dropdown-list.model';
48
+ export * from './lib/atoms/input-dropdown/input-dropdown-list-item.model';
30
49
  export * from './lib/atoms/input-radio/input-radio.component';
31
50
  export * from './lib/atoms/input-radio/input-radio.module';
32
51
  export * from './lib/atoms/input-text/input-text.component';
33
52
  export * from './lib/atoms/input-text/input-text.module';
34
- export * from './lib/atoms/contextual-menu/contextual-menu.component';
35
- export * from './lib/atoms/contextual-menu/contextual-menu.module';
36
- export * from './lib/atoms/input-dropdown/input-dropdown.component';
37
- export * from './lib/atoms/input-dropdown/input-dropdown.module';
38
- export * from './lib/atoms/filter-area/filter-area.component';
39
- export * from './lib/atoms/filter-area/filter-area.module';
40
- export * from './lib/atoms/two-column-filter-area/two-column-filter-area.component';
41
- export * from './lib/atoms/two-column-filter-area/two-column-filter-area.module';
42
- export * from './lib/atoms/grid/grid.component';
43
- export * from './lib/atoms/grid/grid.module';
44
- export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component';
45
- export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module';
46
- export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component';
47
- export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component.module';
53
+ export * from './lib/atoms/input-toggle/input-toggle.component';
54
+ export * from './lib/atoms/input-toggle/input-toggle.module';
55
+ export * from './lib/atoms/pill/pill.module';
56
+ export * from './lib/atoms/pill/pill.component';
57
+ export * from './lib/atoms/pill/pill.model';
48
58
  export * from './lib/atoms/sfx-loader/sfx-loader.component';
49
59
  export * from './lib/atoms/sfx-loader/sfx-loader.module';
50
60
  export * from './lib/atoms/sfx-page-loader/sfx-page-loader.component';
@@ -53,27 +63,25 @@ export * from './lib/atoms/sfx-progress-bar/sfx-progress-bar.component';
53
63
  export * from './lib/atoms/sfx-progress-bar/sfx-progress-bar.module';
54
64
  export * from './lib/atoms/toaster-alert/toaster-alert.component';
55
65
  export * from './lib/atoms/toaster-alert/toaster-alert.module';
66
+ export * from './lib/atoms/toaster-alert/toaster-alert.model';
67
+ export * from './lib/atoms/two-column-filter-area/two-column-filter-area.component';
68
+ export * from './lib/atoms/two-column-filter-area/two-column-filter-area.module';
56
69
  export * from './lib/atoms/atoms.module';
57
70
  export * from './lib/molecules/breadcrumb/breadcrumb.component';
58
71
  export * from './lib/molecules/breadcrumb/breadcrumb.module';
59
- export * from './lib/molecules/color-swatch/color-swatch.component';
60
- export * from './lib/molecules/color-swatch/color-swatch.module';
61
- export * from './lib/molecules/icon-swatch/icon-swatch.component';
62
- export * from './lib/molecules/icon-swatch/icon-swatch.module';
63
- export * from './lib/molecules/note/note.component';
64
- export * from './lib/molecules/note/note.module';
72
+ export * from './lib/molecules/breadcrumb/breadcrumb.model';
73
+ export * from './lib/molecules/card/card.component';
74
+ export * from './lib/molecules/card/card.module';
75
+ export * from './lib/molecules/card/card.model';
65
76
  export * from './lib/molecules/pills/pills.component';
66
77
  export * from './lib/molecules/pills/pills.module';
67
- export * from './lib/molecules/task/task.component';
68
- export * from './lib/molecules/task/task.module';
69
78
  export * from './lib/molecules/molecules.module';
70
- export * from './lib/organisms/task-list/task-list.component';
71
- export * from './lib/organisms/task-list/task-list.module';
72
- export * from './lib/organisms/note-list/note-list.component';
73
- export * from './lib/organisms/note-list/note-list.module';
79
+ export * from './lib/organisms/card-list/card-list.component';
80
+ export * from './lib/organisms/card-list/card-list.module';
81
+ export * from './lib/organisms/organisms.module';
74
82
  export * from './lib/pages/events-settings-page/events-settings-page.component';
75
83
  export * from './lib/pages/events-settings-page/events-settings-page.module';
76
- export * from './lib/design-guide/color-swatch-collection/color-swatch-collection.component';
77
- export * from './lib/design-guide/color-swatch-collection/color-swatch-collection.module';
78
- export * from './lib/design-guide/icon-explorer/icon-explorer.component';
79
- export * from './lib/design-guide/icon-explorer/icon-explorer.module';
84
+ export * from './lib/pages/events-settings-page/events-settings-page.model';
85
+ export * from './lib/pages/setting-list-page/setting-list-page.component';
86
+ export * from './lib/pages/setting-list-page/setting-list-page.module';
87
+ export * from './lib/pages/setting-list-page/setting-list-page.model';
package/public-api.d.ts CHANGED
@@ -2,49 +2,59 @@ export * from './lib/atoms/avatar/avatar.component';
2
2
  export * from './lib/atoms/avatar/avatar.module';
3
3
  export * from './lib/atoms/button/button.component';
4
4
  export * from './lib/atoms/button/button.module';
5
- export * from './lib/atoms/pill/pill.module';
6
- export * from './lib/atoms/pill/pill.component';
7
- export * from './lib/atoms/pill/pill.model';
8
- export * from './lib/atoms/task-icon/task-icon.component';
9
- export * from './lib/atoms/task-icon/task-icon.module';
10
- export * from './lib/atoms/color-sample/color-sample.component';
11
- export * from './lib/atoms/color-sample/color-sample.module';
5
+ export * from './lib/atoms/contextual-menu/contextual-menu.component';
6
+ export * from './lib/atoms/contextual-menu/contextual-menu.module';
7
+ export * from './lib/atoms/contextual-menu/contextual-menu.model';
8
+ export * from './lib/atoms/filter-area/filter-area.component';
9
+ export * from './lib/atoms/filter-area/filter-area.module';
10
+ export * from './lib/atoms/grid/grid.component';
11
+ export * from './lib/atoms/grid/grid.module';
12
+ export * from './lib/atoms/grid/grid.model';
13
+ export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component';
14
+ export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.module';
15
+ export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model';
16
+ export * from './lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component';
17
+ export * from './lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module';
18
+ export * from './lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model';
19
+ export * from './lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component';
20
+ export * from './lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module';
21
+ export * from './lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model';
22
+ export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component';
23
+ export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component.module';
24
+ export * from './lib/atoms/grid/framework/framework.module';
25
+ export * from './lib/atoms/h1/h1.component';
26
+ export * from './lib/atoms/h1/h1.module';
12
27
  export * from './lib/atoms/h2/h2.component';
13
28
  export * from './lib/atoms/h2/h2.module';
14
29
  export * from './lib/atoms/h3/h3.component';
15
30
  export * from './lib/atoms/h3/h3.module';
16
31
  export * from './lib/atoms/h4/h4.component';
17
32
  export * from './lib/atoms/h4/h4.module';
18
- export * from './lib/atoms/h1/h1.component';
19
- export * from './lib/atoms/h1/h1.module';
20
- export * from './lib/atoms/paragraph/paragraph.component';
21
- export * from './lib/atoms/paragraph/paragraph.module';
22
33
  export * from './lib/atoms/h5/h5.component';
23
34
  export * from './lib/atoms/h5/h5.module';
35
+ export * from './lib/atoms/paragraph/paragraph.component';
36
+ export * from './lib/atoms/paragraph/paragraph.module';
24
37
  export * from './lib/atoms/icon/icon.component';
25
38
  export * from './lib/atoms/icon/icon.module';
39
+ export * from './lib/atoms/icon/icon.enum';
26
40
  export * from './lib/atoms/icon-wrapper/icon-wrapper.component';
27
41
  export * from './lib/atoms/icon-wrapper/icon-wrapper.module';
28
42
  export * from './lib/atoms/input-checkbox/input-checkbox.component';
29
43
  export * from './lib/atoms/input-checkbox/input-checkbox.module';
44
+ export * from './lib/atoms/input-checkbox/input-checkbox.model';
45
+ export * from './lib/atoms/input-dropdown/input-dropdown.component';
46
+ export * from './lib/atoms/input-dropdown/input-dropdown.module';
47
+ export * from './lib/atoms/input-dropdown/input-dropdown-list.model';
48
+ export * from './lib/atoms/input-dropdown/input-dropdown-list-item.model';
30
49
  export * from './lib/atoms/input-radio/input-radio.component';
31
50
  export * from './lib/atoms/input-radio/input-radio.module';
32
51
  export * from './lib/atoms/input-text/input-text.component';
33
52
  export * from './lib/atoms/input-text/input-text.module';
34
- export * from './lib/atoms/contextual-menu/contextual-menu.component';
35
- export * from './lib/atoms/contextual-menu/contextual-menu.module';
36
- export * from './lib/atoms/input-dropdown/input-dropdown.component';
37
- export * from './lib/atoms/input-dropdown/input-dropdown.module';
38
- export * from './lib/atoms/filter-area/filter-area.component';
39
- export * from './lib/atoms/filter-area/filter-area.module';
40
- export * from './lib/atoms/two-column-filter-area/two-column-filter-area.component';
41
- export * from './lib/atoms/two-column-filter-area/two-column-filter-area.module';
42
- export * from './lib/atoms/grid/grid.component';
43
- export * from './lib/atoms/grid/grid.module';
44
- export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component';
45
- export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module';
46
- export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component';
47
- export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component.module';
53
+ export * from './lib/atoms/input-toggle/input-toggle.component';
54
+ export * from './lib/atoms/input-toggle/input-toggle.module';
55
+ export * from './lib/atoms/pill/pill.module';
56
+ export * from './lib/atoms/pill/pill.component';
57
+ export * from './lib/atoms/pill/pill.model';
48
58
  export * from './lib/atoms/sfx-loader/sfx-loader.component';
49
59
  export * from './lib/atoms/sfx-loader/sfx-loader.module';
50
60
  export * from './lib/atoms/sfx-page-loader/sfx-page-loader.component';
@@ -53,27 +63,25 @@ export * from './lib/atoms/sfx-progress-bar/sfx-progress-bar.component';
53
63
  export * from './lib/atoms/sfx-progress-bar/sfx-progress-bar.module';
54
64
  export * from './lib/atoms/toaster-alert/toaster-alert.component';
55
65
  export * from './lib/atoms/toaster-alert/toaster-alert.module';
66
+ export * from './lib/atoms/toaster-alert/toaster-alert.model';
67
+ export * from './lib/atoms/two-column-filter-area/two-column-filter-area.component';
68
+ export * from './lib/atoms/two-column-filter-area/two-column-filter-area.module';
56
69
  export * from './lib/atoms/atoms.module';
57
70
  export * from './lib/molecules/breadcrumb/breadcrumb.component';
58
71
  export * from './lib/molecules/breadcrumb/breadcrumb.module';
59
- export * from './lib/molecules/color-swatch/color-swatch.component';
60
- export * from './lib/molecules/color-swatch/color-swatch.module';
61
- export * from './lib/molecules/icon-swatch/icon-swatch.component';
62
- export * from './lib/molecules/icon-swatch/icon-swatch.module';
63
- export * from './lib/molecules/note/note.component';
64
- export * from './lib/molecules/note/note.module';
72
+ export * from './lib/molecules/breadcrumb/breadcrumb.model';
73
+ export * from './lib/molecules/card/card.component';
74
+ export * from './lib/molecules/card/card.module';
75
+ export * from './lib/molecules/card/card.model';
65
76
  export * from './lib/molecules/pills/pills.component';
66
77
  export * from './lib/molecules/pills/pills.module';
67
- export * from './lib/molecules/task/task.component';
68
- export * from './lib/molecules/task/task.module';
69
78
  export * from './lib/molecules/molecules.module';
70
- export * from './lib/organisms/task-list/task-list.component';
71
- export * from './lib/organisms/task-list/task-list.module';
72
- export * from './lib/organisms/note-list/note-list.component';
73
- export * from './lib/organisms/note-list/note-list.module';
79
+ export * from './lib/organisms/card-list/card-list.component';
80
+ export * from './lib/organisms/card-list/card-list.module';
81
+ export * from './lib/organisms/organisms.module';
74
82
  export * from './lib/pages/events-settings-page/events-settings-page.component';
75
83
  export * from './lib/pages/events-settings-page/events-settings-page.module';
76
- export * from './lib/design-guide/color-swatch-collection/color-swatch-collection.component';
77
- export * from './lib/design-guide/color-swatch-collection/color-swatch-collection.module';
78
- export * from './lib/design-guide/icon-explorer/icon-explorer.component';
79
- export * from './lib/design-guide/icon-explorer/icon-explorer.module';
84
+ export * from './lib/pages/events-settings-page/events-settings-page.model';
85
+ export * from './lib/pages/setting-list-page/setting-list-page.component';
86
+ export * from './lib/pages/setting-list-page/setting-list-page.module';
87
+ export * from './lib/pages/setting-list-page/setting-list-page.model';
@@ -1,16 +0,0 @@
1
- import { Component, Input, ViewEncapsulation } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "../../molecules/color-swatch/color-swatch.component";
4
- import * as i2 from "@angular/common";
5
- export class ColorSwatchCollectionComponent {
6
- constructor() { }
7
- }
8
- ColorSwatchCollectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
9
- ColorSwatchCollectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ColorSwatchCollectionComponent, selector: "symphony-main-ui-color-swatch", inputs: { colorList: "colorList" }, ngImport: i0, template: "<ul class=\"color-list list-unstyled\">\n <li class=\"color-list-item\" *ngFor=\"let color of colorList\">\n <symphony-ui-color-explorer\n [colorSwatchModel]=\"color\"\n ></symphony-ui-color-explorer>\n </li>\n</ul>\n", styles: [".data-vis .color-list,.data-vis-ext .color-list{flex-direction:column;flex-wrap:wrap;display:flex;height:100vh;width:50vw}.data-vis .color-list-item,.data-vis-ext .color-list-item{padding:0;flex:0 0 20%}.main-ui .color-list-item{padding:5px 0}\n"], components: [{ type: i1.ColorSwatchComponent, selector: "symphony-ui-color-explorer", inputs: ["colorSwatchModel"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], encapsulation: i0.ViewEncapsulation.None });
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionComponent, decorators: [{
11
- type: Component,
12
- args: [{ selector: 'symphony-main-ui-color-swatch', encapsulation: ViewEncapsulation.None, template: "<ul class=\"color-list list-unstyled\">\n <li class=\"color-list-item\" *ngFor=\"let color of colorList\">\n <symphony-ui-color-explorer\n [colorSwatchModel]=\"color\"\n ></symphony-ui-color-explorer>\n </li>\n</ul>\n", styles: [".data-vis .color-list,.data-vis-ext .color-list{flex-direction:column;flex-wrap:wrap;display:flex;height:100vh;width:50vw}.data-vis .color-list-item,.data-vis-ext .color-list-item{padding:0;flex:0 0 20%}.main-ui .color-list-item{padding:5px 0}\n"] }]
13
- }], ctorParameters: function () { return []; }, propDecorators: { colorList: [{
14
- type: Input
15
- }] } });
16
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tcG9uZW50LWxpYnJhcnkvc3JjL2xpYi9kZXNpZ24tZ3VpZGUvY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24vY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tcG9uZW50LWxpYnJhcnkvc3JjL2xpYi9kZXNpZ24tZ3VpZGUvY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24vY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7QUFTNUUsTUFBTSxPQUFPLDhCQUE4QjtJQUd6QyxnQkFBZSxDQUFDOzsySEFITCw4QkFBOEI7K0dBQTlCLDhCQUE4Qix5R0NUM0Msd09BT0E7MkZERWEsOEJBQThCO2tCQU4xQyxTQUFTOytCQUNFLCtCQUErQixpQkFHMUIsaUJBQWlCLENBQUMsSUFBSTswRUFHNUIsU0FBUztzQkFBakIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbG9yU3dhdGNoTW9kZWwgfSBmcm9tICcuLi8uLi9tb2xlY3VsZXMvY29sb3Itc3dhdGNoL2NvbG9yLXN3YXRjaC5tb2RlbCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3N5bXBob255LW1haW4tdWktY29sb3Itc3dhdGNoJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2NvbG9yLXN3YXRjaC1jb2xsZWN0aW9uLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24uY29tcG9uZW50LnNjc3MnXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbn0pXG5leHBvcnQgY2xhc3MgQ29sb3JTd2F0Y2hDb2xsZWN0aW9uQ29tcG9uZW50IHtcbiAgQElucHV0KCkgY29sb3JMaXN0OiBDb2xvclN3YXRjaE1vZGVsW107XG5cbiAgY29uc3RydWN0b3IoKSB7fVxuXG59XG4iLCI8dWwgY2xhc3M9XCJjb2xvci1saXN0IGxpc3QtdW5zdHlsZWRcIj5cbiAgPGxpIGNsYXNzPVwiY29sb3ItbGlzdC1pdGVtXCIgKm5nRm9yPVwibGV0IGNvbG9yIG9mIGNvbG9yTGlzdFwiPlxuICAgIDxzeW1waG9ueS11aS1jb2xvci1leHBsb3JlclxuICAgICAgW2NvbG9yU3dhdGNoTW9kZWxdPVwiY29sb3JcIlxuICAgID48L3N5bXBob255LXVpLWNvbG9yLWV4cGxvcmVyPlxuICA8L2xpPlxuPC91bD5cbiJdfQ==
@@ -1,19 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { ColorSwatchModule } from '../../molecules/color-swatch/color-swatch.module';
4
- import { ColorSwatchCollectionComponent } from './color-swatch-collection.component';
5
- import * as i0 from "@angular/core";
6
- export class ColorSwatchCollectionModule {
7
- }
8
- ColorSwatchCollectionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
9
- ColorSwatchCollectionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, declarations: [ColorSwatchCollectionComponent], imports: [CommonModule, ColorSwatchModule] });
10
- ColorSwatchCollectionModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, imports: [[CommonModule, ColorSwatchModule]] });
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, decorators: [{
12
- type: NgModule,
13
- args: [{
14
- declarations: [ColorSwatchCollectionComponent],
15
- imports: [CommonModule, ColorSwatchModule],
16
- exports: []
17
- }]
18
- }] });
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24ubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tcG9uZW50LWxpYnJhcnkvc3JjL2xpYi9kZXNpZ24tZ3VpZGUvY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24vY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGtEQUFrRCxDQUFDO0FBQ3JGLE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLHFDQUFxQyxDQUFDOztBQU9yRixNQUFNLE9BQU8sMkJBQTJCOzt3SEFBM0IsMkJBQTJCO3lIQUEzQiwyQkFBMkIsaUJBSnZCLDhCQUE4QixhQUNuQyxZQUFZLEVBQUUsaUJBQWlCO3lIQUc5QiwyQkFBMkIsWUFIN0IsQ0FBQyxZQUFZLEVBQUUsaUJBQWlCLENBQUM7MkZBRy9CLDJCQUEyQjtrQkFMdkMsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUUsQ0FBQyw4QkFBOEIsQ0FBQztvQkFDOUMsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLGlCQUFpQixDQUFDO29CQUMxQyxPQUFPLEVBQUUsRUFBRTtpQkFDWiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ29sb3JTd2F0Y2hNb2R1bGUgfSBmcm9tICcuLi8uLi9tb2xlY3VsZXMvY29sb3Itc3dhdGNoL2NvbG9yLXN3YXRjaC5tb2R1bGUnO1xuaW1wb3J0IHsgQ29sb3JTd2F0Y2hDb2xsZWN0aW9uQ29tcG9uZW50IH0gZnJvbSAnLi9jb2xvci1zd2F0Y2gtY29sbGVjdGlvbi5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtDb2xvclN3YXRjaENvbGxlY3Rpb25Db21wb25lbnRdLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBDb2xvclN3YXRjaE1vZHVsZV0sXG4gIGV4cG9ydHM6IFtdXG59KVxuZXhwb3J0IGNsYXNzIENvbG9yU3dhdGNoQ29sbGVjdGlvbk1vZHVsZSB7fVxuIl19
@@ -1,16 +0,0 @@
1
- import { Component, Input, ViewEncapsulation } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "../../molecules/color-swatch/color-swatch.component";
4
- import * as i2 from "@angular/common";
5
- export class ColorSwatchCollectionComponent {
6
- constructor() { }
7
- }
8
- ColorSwatchCollectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
9
- ColorSwatchCollectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ColorSwatchCollectionComponent, selector: "symphony-main-ui-color-swatch", inputs: { colorList: "colorList" }, ngImport: i0, template: "<ul class=\"color-list list-unstyled\">\n <li class=\"color-list-item\" *ngFor=\"let color of colorList\">\n <symphony-ui-color-explorer\n [colorSwatchModel]=\"color\"\n ></symphony-ui-color-explorer>\n </li>\n</ul>\n", styles: [".data-vis .color-list,.data-vis-ext .color-list{flex-direction:column;flex-wrap:wrap;display:flex;height:100vh;width:50vw}.data-vis .color-list-item,.data-vis-ext .color-list-item{padding:0;flex:0 0 20%}.main-ui .color-list-item{padding:5px 0}\n"], components: [{ type: i1.ColorSwatchComponent, selector: "symphony-ui-color-explorer", inputs: ["colorSwatchModel"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], encapsulation: i0.ViewEncapsulation.None });
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionComponent, decorators: [{
11
- type: Component,
12
- args: [{ selector: 'symphony-main-ui-color-swatch', encapsulation: ViewEncapsulation.None, template: "<ul class=\"color-list list-unstyled\">\n <li class=\"color-list-item\" *ngFor=\"let color of colorList\">\n <symphony-ui-color-explorer\n [colorSwatchModel]=\"color\"\n ></symphony-ui-color-explorer>\n </li>\n</ul>\n", styles: [".data-vis .color-list,.data-vis-ext .color-list{flex-direction:column;flex-wrap:wrap;display:flex;height:100vh;width:50vw}.data-vis .color-list-item,.data-vis-ext .color-list-item{padding:0;flex:0 0 20%}.main-ui .color-list-item{padding:5px 0}\n"] }]
13
- }], ctorParameters: function () { return []; }, propDecorators: { colorList: [{
14
- type: Input
15
- }] } });
16
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tcG9uZW50LWxpYnJhcnkvc3JjL2xpYi9kZXNpZ24tZ3VpZGUvY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24vY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tcG9uZW50LWxpYnJhcnkvc3JjL2xpYi9kZXNpZ24tZ3VpZGUvY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24vY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7QUFTNUUsTUFBTSxPQUFPLDhCQUE4QjtJQUd6QyxnQkFBZSxDQUFDOzsySEFITCw4QkFBOEI7K0dBQTlCLDhCQUE4Qix5R0NUM0Msd09BT0E7MkZERWEsOEJBQThCO2tCQU4xQyxTQUFTOytCQUNFLCtCQUErQixpQkFHMUIsaUJBQWlCLENBQUMsSUFBSTswRUFHNUIsU0FBUztzQkFBakIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbG9yU3dhdGNoTW9kZWwgfSBmcm9tICcuLi8uLi9tb2xlY3VsZXMvY29sb3Itc3dhdGNoL2NvbG9yLXN3YXRjaC5tb2RlbCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3N5bXBob255LW1haW4tdWktY29sb3Itc3dhdGNoJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2NvbG9yLXN3YXRjaC1jb2xsZWN0aW9uLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24uY29tcG9uZW50LnNjc3MnXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbn0pXG5leHBvcnQgY2xhc3MgQ29sb3JTd2F0Y2hDb2xsZWN0aW9uQ29tcG9uZW50IHtcbiAgQElucHV0KCkgY29sb3JMaXN0OiBDb2xvclN3YXRjaE1vZGVsW107XG5cbiAgY29uc3RydWN0b3IoKSB7fVxuXG59XG4iLCI8dWwgY2xhc3M9XCJjb2xvci1saXN0IGxpc3QtdW5zdHlsZWRcIj5cbiAgPGxpIGNsYXNzPVwiY29sb3ItbGlzdC1pdGVtXCIgKm5nRm9yPVwibGV0IGNvbG9yIG9mIGNvbG9yTGlzdFwiPlxuICAgIDxzeW1waG9ueS11aS1jb2xvci1leHBsb3JlclxuICAgICAgW2NvbG9yU3dhdGNoTW9kZWxdPVwiY29sb3JcIlxuICAgID48L3N5bXBob255LXVpLWNvbG9yLWV4cGxvcmVyPlxuICA8L2xpPlxuPC91bD5cbiJdfQ==
@@ -1,19 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { ColorSwatchModule } from '../../molecules/color-swatch/color-swatch.module';
4
- import { ColorSwatchCollectionComponent } from './color-swatch-collection.component';
5
- import * as i0 from "@angular/core";
6
- export class ColorSwatchCollectionModule {
7
- }
8
- ColorSwatchCollectionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
9
- ColorSwatchCollectionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, declarations: [ColorSwatchCollectionComponent], imports: [CommonModule, ColorSwatchModule] });
10
- ColorSwatchCollectionModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, imports: [[CommonModule, ColorSwatchModule]] });
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchCollectionModule, decorators: [{
12
- type: NgModule,
13
- args: [{
14
- declarations: [ColorSwatchCollectionComponent],
15
- imports: [CommonModule, ColorSwatchModule],
16
- exports: []
17
- }]
18
- }] });
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24ubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tcG9uZW50LWxpYnJhcnkvc3JjL2xpYi9kZXNpZ24tZ3VpZGUvY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24vY29sb3Itc3dhdGNoLWNvbGxlY3Rpb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGtEQUFrRCxDQUFDO0FBQ3JGLE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLHFDQUFxQyxDQUFDOztBQU9yRixNQUFNLE9BQU8sMkJBQTJCOzt3SEFBM0IsMkJBQTJCO3lIQUEzQiwyQkFBMkIsaUJBSnZCLDhCQUE4QixhQUNuQyxZQUFZLEVBQUUsaUJBQWlCO3lIQUc5QiwyQkFBMkIsWUFIN0IsQ0FBQyxZQUFZLEVBQUUsaUJBQWlCLENBQUM7MkZBRy9CLDJCQUEyQjtrQkFMdkMsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUUsQ0FBQyw4QkFBOEIsQ0FBQztvQkFDOUMsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLGlCQUFpQixDQUFDO29CQUMxQyxPQUFPLEVBQUUsRUFBRTtpQkFDWiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ29sb3JTd2F0Y2hNb2R1bGUgfSBmcm9tICcuLi8uLi9tb2xlY3VsZXMvY29sb3Itc3dhdGNoL2NvbG9yLXN3YXRjaC5tb2R1bGUnO1xuaW1wb3J0IHsgQ29sb3JTd2F0Y2hDb2xsZWN0aW9uQ29tcG9uZW50IH0gZnJvbSAnLi9jb2xvci1zd2F0Y2gtY29sbGVjdGlvbi5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtDb2xvclN3YXRjaENvbGxlY3Rpb25Db21wb25lbnRdLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBDb2xvclN3YXRjaE1vZHVsZV0sXG4gIGV4cG9ydHM6IFtdXG59KVxuZXhwb3J0IGNsYXNzIENvbG9yU3dhdGNoQ29sbGVjdGlvbk1vZHVsZSB7fVxuIl19
@@ -1,8 +0,0 @@
1
- import { ColorSwatchModel } from '../../molecules/color-swatch/color-swatch.model';
2
- import * as i0 from "@angular/core";
3
- export declare class ColorSwatchCollectionComponent {
4
- colorList: ColorSwatchModel[];
5
- constructor();
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ColorSwatchCollectionComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ColorSwatchCollectionComponent, "symphony-main-ui-color-swatch", never, { "colorList": "colorList"; }, {}, never, never>;
8
- }
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./color-swatch-collection.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../../molecules/color-swatch/color-swatch.module";
5
- export declare class ColorSwatchCollectionModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ColorSwatchCollectionModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<ColorSwatchCollectionModule, [typeof i1.ColorSwatchCollectionComponent], [typeof i2.CommonModule, typeof i3.ColorSwatchModule], never>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<ColorSwatchCollectionModule>;
9
- }
@@ -1,8 +0,0 @@
1
- import { ColorSwatchModel } from '../../molecules/color-swatch/color-swatch.model';
2
- import * as i0 from "@angular/core";
3
- export declare class ColorSwatchCollectionComponent {
4
- colorList: ColorSwatchModel[];
5
- constructor();
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ColorSwatchCollectionComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ColorSwatchCollectionComponent, "symphony-main-ui-color-swatch", never, { "colorList": "colorList"; }, {}, never, never>;
8
- }
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./color-swatch-collection.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../../molecules/color-swatch/color-swatch.module";
5
- export declare class ColorSwatchCollectionModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ColorSwatchCollectionModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<ColorSwatchCollectionModule, [typeof i1.ColorSwatchCollectionComponent], [typeof i2.CommonModule, typeof i3.ColorSwatchModule], never>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<ColorSwatchCollectionModule>;
9
- }