novo-elements 8.0.1 → 8.1.0-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (211) hide show
  1. package/elements/agenda/common/AgendaDateChange.scss +3 -1
  2. package/elements/agenda/common/AgendaHoursLayout.scss +52 -0
  3. package/elements/agenda/day/AgendaDayView.scss +40 -85
  4. package/elements/agenda/month/AgendaMonthView.scss +139 -135
  5. package/elements/agenda/week/AgendaWeekView.scss +70 -66
  6. package/elements/card/Card.d.ts +2 -2
  7. package/elements/card/Card.scss +27 -55
  8. package/elements/card/CardContent.scss +8 -0
  9. package/elements/card/CardFooter.scss +10 -0
  10. package/elements/card/CardHeader.scss +14 -0
  11. package/elements/date-picker/DatePicker.scss +181 -348
  12. package/elements/date-picker/DatePickerInput.scss +45 -0
  13. package/elements/date-picker/DateRangeInput.scss +55 -0
  14. package/elements/date-picker/MultiDateInput.scss +50 -0
  15. package/elements/date-time-picker/DateTimePickerInput.scss +14 -0
  16. package/elements/date-time-picker/_DateTimePicker.scss +4 -17
  17. package/elements/dropdown/Dropdown.scss +3 -3
  18. package/elements/header/Header.scss +14 -19
  19. package/elements/header/HeaderSpacer.scss +7 -0
  20. package/elements/icon/Icon.scss +1 -1
  21. package/elements/list/List.scss +5 -111
  22. package/elements/list/list-item-content.scss +34 -0
  23. package/elements/list/list-item-end.scss +8 -0
  24. package/elements/list/list-item-header-avatar.scss +12 -0
  25. package/elements/list/list-item-header-end.scss +4 -0
  26. package/elements/list/list-item-header-title.scss +17 -0
  27. package/elements/list/list-item-header.scss +17 -0
  28. package/elements/list/list-item.scss +47 -0
  29. package/elements/loading/Loading.scss +4 -1
  30. package/elements/loading/NovoSpinner.scss +3 -1
  31. package/elements/modal/modal.component.scss +19 -115
  32. package/elements/modal/notification.component.scss +108 -0
  33. package/elements/places/places.component.scss +3 -1
  34. package/elements/quick-note/QuickNote.scss +2 -31
  35. package/elements/quick-note/extras/quick-note-results/QuickNoteResults.scss +18 -0
  36. package/elements/radio/Radio.scss +32 -41
  37. package/elements/radio/radio-group.scss +53 -0
  38. package/elements/search/SearchBox.scss +2 -2
  39. package/elements/select/Select.scss +1 -1
  40. package/elements/simple-table/table.scss +2 -1
  41. package/elements/slider/Slider.scss +2 -2
  42. package/elements/stepper/step-header.component.scss +141 -52
  43. package/elements/stepper/stepper.component.scss +66 -166
  44. package/elements/switch/Switch.scss +5 -5
  45. package/elements/tabbed-group-picker/TabbedGroupPicker.scss +127 -125
  46. package/elements/table/extras/table-footer/table-footer.scss +3 -0
  47. package/elements/table/extras/table-header/table-header.scss +9 -0
  48. package/elements/tabs/tab-button.scss +54 -0
  49. package/elements/tabs/tab-content.scss +6 -0
  50. package/elements/tabs/tab-header.scss +6 -0
  51. package/elements/tabs/tab-nav.scss +39 -0
  52. package/elements/tabs/tab-outlet.scss +3 -0
  53. package/elements/tabs/tab.scss +190 -0
  54. package/elements/tiles/Tiles.scss +3 -1
  55. package/elements/time-picker/TimePicker.scss +3 -46
  56. package/elements/time-picker/TimePickerInput.scss +44 -0
  57. package/elements/tip-well/TipWell.scss +4 -1
  58. package/elements/toast/Toast.scss +151 -162
  59. package/elements/tooltip/Tooltip.scss +1 -1
  60. package/elements/value/Value.scss +21 -23
  61. package/esm2020/elements/agenda/common/AgendaDateChange.mjs +4 -7
  62. package/esm2020/elements/agenda/day/AgendaDayView.mjs +4 -7
  63. package/esm2020/elements/agenda/month/AgendaMonthView.mjs +4 -7
  64. package/esm2020/elements/agenda/week/AgendaWeekView.mjs +4 -7
  65. package/esm2020/elements/card/Card.mjs +17 -31
  66. package/esm2020/elements/date-picker/DatePicker.mjs +5 -10
  67. package/esm2020/elements/date-picker/DatePickerInput.mjs +4 -8
  68. package/esm2020/elements/date-picker/DateRangeInput.mjs +4 -8
  69. package/esm2020/elements/date-picker/MultiDateInput.mjs +4 -8
  70. package/esm2020/elements/date-time-picker/DateTimePicker.mjs +5 -10
  71. package/esm2020/elements/date-time-picker/DateTimePickerInput.mjs +4 -8
  72. package/esm2020/elements/dropdown/Dropdown.mjs +5 -10
  73. package/esm2020/elements/header/Header.mjs +6 -12
  74. package/esm2020/elements/icon/Icon.mjs +5 -10
  75. package/esm2020/elements/list/List.mjs +27 -59
  76. package/esm2020/elements/loading/Loading.mjs +7 -13
  77. package/esm2020/elements/modal/modal.component.mjs +9 -17
  78. package/esm2020/elements/places/places.component.mjs +4 -8
  79. package/esm2020/elements/quick-note/QuickNote.mjs +3 -7
  80. package/esm2020/elements/quick-note/extras/quick-note-results/QuickNoteResults.mjs +5 -9
  81. package/esm2020/elements/radio/Radio.mjs +5 -10
  82. package/esm2020/elements/radio/RadioGroup.mjs +5 -10
  83. package/esm2020/elements/search/SearchBox.mjs +4 -9
  84. package/esm2020/elements/select/Select.mjs +6 -12
  85. package/esm2020/elements/slider/Slider.mjs +5 -9
  86. package/esm2020/elements/stepper/step-header.component.mjs +2 -2
  87. package/esm2020/elements/stepper/stepper.component.mjs +7 -7
  88. package/esm2020/elements/switch/Switch.mjs +5 -10
  89. package/esm2020/elements/tabbed-group-picker/TabbedGroupPicker.mjs +3 -3
  90. package/esm2020/elements/table/extras/table-footer/TableFooter.mjs +3 -6
  91. package/esm2020/elements/table/extras/table-header/TableHeader.mjs +3 -6
  92. package/esm2020/elements/tabs/Tabs.mjs +22 -50
  93. package/esm2020/elements/tiles/Tiles.mjs +4 -9
  94. package/esm2020/elements/time-picker/TimePicker.mjs +5 -10
  95. package/esm2020/elements/time-picker/TimePickerInput.mjs +4 -8
  96. package/esm2020/elements/tip-well/TipWell.mjs +5 -9
  97. package/esm2020/elements/toast/Toast.mjs +5 -9
  98. package/esm2020/elements/tooltip/Tooltip.component.mjs +3 -3
  99. package/esm2020/elements/value/Value.mjs +4 -7
  100. package/fesm2015/novo-elements-elements-agenda.mjs +12 -24
  101. package/fesm2015/novo-elements-elements-agenda.mjs.map +1 -1
  102. package/fesm2015/novo-elements-elements-card.mjs +16 -30
  103. package/fesm2015/novo-elements-elements-card.mjs.map +1 -1
  104. package/fesm2015/novo-elements-elements-date-picker.mjs +13 -30
  105. package/fesm2015/novo-elements-elements-date-picker.mjs.map +1 -1
  106. package/fesm2015/novo-elements-elements-date-time-picker.mjs +7 -16
  107. package/fesm2015/novo-elements-elements-date-time-picker.mjs.map +1 -1
  108. package/fesm2015/novo-elements-elements-dropdown.mjs +4 -9
  109. package/fesm2015/novo-elements-elements-dropdown.mjs.map +1 -1
  110. package/fesm2015/novo-elements-elements-header.mjs +5 -11
  111. package/fesm2015/novo-elements-elements-header.mjs.map +1 -1
  112. package/fesm2015/novo-elements-elements-icon.mjs +4 -9
  113. package/fesm2015/novo-elements-elements-icon.mjs.map +1 -1
  114. package/fesm2015/novo-elements-elements-list.mjs +26 -58
  115. package/fesm2015/novo-elements-elements-list.mjs.map +1 -1
  116. package/fesm2015/novo-elements-elements-loading.mjs +6 -12
  117. package/fesm2015/novo-elements-elements-loading.mjs.map +1 -1
  118. package/fesm2015/novo-elements-elements-modal.mjs +8 -16
  119. package/fesm2015/novo-elements-elements-modal.mjs.map +1 -1
  120. package/fesm2015/novo-elements-elements-places.mjs +3 -7
  121. package/fesm2015/novo-elements-elements-places.mjs.map +1 -1
  122. package/fesm2015/novo-elements-elements-quick-note.mjs +6 -14
  123. package/fesm2015/novo-elements-elements-quick-note.mjs.map +1 -1
  124. package/fesm2015/novo-elements-elements-radio.mjs +8 -18
  125. package/fesm2015/novo-elements-elements-radio.mjs.map +1 -1
  126. package/fesm2015/novo-elements-elements-search.mjs +3 -8
  127. package/fesm2015/novo-elements-elements-search.mjs.map +1 -1
  128. package/fesm2015/novo-elements-elements-select.mjs +5 -11
  129. package/fesm2015/novo-elements-elements-select.mjs.map +1 -1
  130. package/fesm2015/novo-elements-elements-slider.mjs +4 -8
  131. package/fesm2015/novo-elements-elements-slider.mjs.map +1 -1
  132. package/fesm2015/novo-elements-elements-stepper.mjs +8 -8
  133. package/fesm2015/novo-elements-elements-stepper.mjs.map +1 -1
  134. package/fesm2015/novo-elements-elements-switch.mjs +4 -9
  135. package/fesm2015/novo-elements-elements-switch.mjs.map +1 -1
  136. package/fesm2015/novo-elements-elements-tabbed-group-picker.mjs +2 -2
  137. package/fesm2015/novo-elements-elements-tabbed-group-picker.mjs.map +1 -1
  138. package/fesm2015/novo-elements-elements-table.mjs +4 -10
  139. package/fesm2015/novo-elements-elements-table.mjs.map +1 -1
  140. package/fesm2015/novo-elements-elements-tabs.mjs +21 -49
  141. package/fesm2015/novo-elements-elements-tabs.mjs.map +1 -1
  142. package/fesm2015/novo-elements-elements-tiles.mjs +3 -8
  143. package/fesm2015/novo-elements-elements-tiles.mjs.map +1 -1
  144. package/fesm2015/novo-elements-elements-time-picker.mjs +7 -16
  145. package/fesm2015/novo-elements-elements-time-picker.mjs.map +1 -1
  146. package/fesm2015/novo-elements-elements-tip-well.mjs +4 -8
  147. package/fesm2015/novo-elements-elements-tip-well.mjs.map +1 -1
  148. package/fesm2015/novo-elements-elements-toast.mjs +4 -8
  149. package/fesm2015/novo-elements-elements-toast.mjs.map +1 -1
  150. package/fesm2015/novo-elements-elements-tooltip.mjs +2 -2
  151. package/fesm2015/novo-elements-elements-tooltip.mjs.map +1 -1
  152. package/fesm2015/novo-elements-elements-value.mjs +3 -6
  153. package/fesm2015/novo-elements-elements-value.mjs.map +1 -1
  154. package/fesm2020/novo-elements-elements-agenda.mjs +12 -24
  155. package/fesm2020/novo-elements-elements-agenda.mjs.map +1 -1
  156. package/fesm2020/novo-elements-elements-card.mjs +16 -30
  157. package/fesm2020/novo-elements-elements-card.mjs.map +1 -1
  158. package/fesm2020/novo-elements-elements-date-picker.mjs +13 -30
  159. package/fesm2020/novo-elements-elements-date-picker.mjs.map +1 -1
  160. package/fesm2020/novo-elements-elements-date-time-picker.mjs +7 -16
  161. package/fesm2020/novo-elements-elements-date-time-picker.mjs.map +1 -1
  162. package/fesm2020/novo-elements-elements-dropdown.mjs +4 -9
  163. package/fesm2020/novo-elements-elements-dropdown.mjs.map +1 -1
  164. package/fesm2020/novo-elements-elements-header.mjs +5 -11
  165. package/fesm2020/novo-elements-elements-header.mjs.map +1 -1
  166. package/fesm2020/novo-elements-elements-icon.mjs +4 -9
  167. package/fesm2020/novo-elements-elements-icon.mjs.map +1 -1
  168. package/fesm2020/novo-elements-elements-list.mjs +26 -58
  169. package/fesm2020/novo-elements-elements-list.mjs.map +1 -1
  170. package/fesm2020/novo-elements-elements-loading.mjs +6 -12
  171. package/fesm2020/novo-elements-elements-loading.mjs.map +1 -1
  172. package/fesm2020/novo-elements-elements-modal.mjs +8 -16
  173. package/fesm2020/novo-elements-elements-modal.mjs.map +1 -1
  174. package/fesm2020/novo-elements-elements-places.mjs +3 -7
  175. package/fesm2020/novo-elements-elements-places.mjs.map +1 -1
  176. package/fesm2020/novo-elements-elements-quick-note.mjs +6 -14
  177. package/fesm2020/novo-elements-elements-quick-note.mjs.map +1 -1
  178. package/fesm2020/novo-elements-elements-radio.mjs +8 -18
  179. package/fesm2020/novo-elements-elements-radio.mjs.map +1 -1
  180. package/fesm2020/novo-elements-elements-search.mjs +3 -8
  181. package/fesm2020/novo-elements-elements-search.mjs.map +1 -1
  182. package/fesm2020/novo-elements-elements-select.mjs +5 -11
  183. package/fesm2020/novo-elements-elements-select.mjs.map +1 -1
  184. package/fesm2020/novo-elements-elements-slider.mjs +4 -8
  185. package/fesm2020/novo-elements-elements-slider.mjs.map +1 -1
  186. package/fesm2020/novo-elements-elements-stepper.mjs +8 -8
  187. package/fesm2020/novo-elements-elements-stepper.mjs.map +1 -1
  188. package/fesm2020/novo-elements-elements-switch.mjs +4 -9
  189. package/fesm2020/novo-elements-elements-switch.mjs.map +1 -1
  190. package/fesm2020/novo-elements-elements-tabbed-group-picker.mjs +2 -2
  191. package/fesm2020/novo-elements-elements-tabbed-group-picker.mjs.map +1 -1
  192. package/fesm2020/novo-elements-elements-table.mjs +4 -10
  193. package/fesm2020/novo-elements-elements-table.mjs.map +1 -1
  194. package/fesm2020/novo-elements-elements-tabs.mjs +21 -49
  195. package/fesm2020/novo-elements-elements-tabs.mjs.map +1 -1
  196. package/fesm2020/novo-elements-elements-tiles.mjs +3 -8
  197. package/fesm2020/novo-elements-elements-tiles.mjs.map +1 -1
  198. package/fesm2020/novo-elements-elements-time-picker.mjs +7 -16
  199. package/fesm2020/novo-elements-elements-time-picker.mjs.map +1 -1
  200. package/fesm2020/novo-elements-elements-tip-well.mjs +4 -8
  201. package/fesm2020/novo-elements-elements-tip-well.mjs.map +1 -1
  202. package/fesm2020/novo-elements-elements-toast.mjs +4 -8
  203. package/fesm2020/novo-elements-elements-toast.mjs.map +1 -1
  204. package/fesm2020/novo-elements-elements-tooltip.mjs +2 -2
  205. package/fesm2020/novo-elements-elements-tooltip.mjs.map +1 -1
  206. package/fesm2020/novo-elements-elements-value.mjs +3 -6
  207. package/fesm2020/novo-elements-elements-value.mjs.map +1 -1
  208. package/novo-elements.scss +10 -43
  209. package/package.json +1 -1
  210. package/elements/tabs/Tabs.scss +0 -298
  211. package/elements/value/Values.scss +0 -57
@@ -10,19 +10,15 @@ export class NovoListElement {
10
10
  }
11
11
  }
12
12
  NovoListElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoListElement, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
13
- NovoListElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoListElement, selector: "novo-list", inputs: { theme: "theme", direction: "direction" }, host: { properties: { "class.vertical-list": "direction === \"vertical\"", "class.horizontal-list": "direction === \"horizontal\"", "attr.theme": "theme" }, classAttribute: "novo-list" }, ngImport: i0, template: ` <ng-content></ng-content> `, isInline: true });
13
+ NovoListElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoListElement, selector: "novo-list", inputs: { theme: "theme", direction: "direction" }, host: { properties: { "class.vertical-list": "direction === \"vertical\"", "class.horizontal-list": "direction === \"horizontal\"", "attr.theme": "theme" }, classAttribute: "novo-list" }, ngImport: i0, template: ` <ng-content></ng-content> `, isInline: true, styles: [":host{display:flex}:host.vertical-list{flex-direction:column}:host.horizontal-list{flex-direction:row}.novo-list-item .avatar .novo-item-content,a[list-item] .avatar .novo-item-content,button[list-item] .avatar .novo-item-content{margin-left:2.7em}\n"] });
14
14
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoListElement, decorators: [{
15
15
  type: Component,
16
- args: [{
17
- selector: 'novo-list',
18
- host: {
16
+ args: [{ selector: 'novo-list', host: {
19
17
  class: 'novo-list',
20
18
  '[class.vertical-list]': 'direction === "vertical"',
21
19
  '[class.horizontal-list]': 'direction === "horizontal"',
22
20
  '[attr.theme]': 'theme',
23
- },
24
- template: ` <ng-content></ng-content> `,
25
- }]
21
+ }, template: ` <ng-content></ng-content> `, styles: [":host{display:flex}:host.vertical-list{flex-direction:column}:host.horizontal-list{flex-direction:row}.novo-list-item .avatar .novo-item-content,a[list-item] .avatar .novo-item-content,button[list-item] .avatar .novo-item-content{margin-left:2.7em}\n"] }]
26
22
  }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { theme: [{
27
23
  type: Input
28
24
  }], direction: [{
@@ -31,16 +27,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
31
27
  export class NovoItemAvatarElement {
32
28
  }
33
29
  NovoItemAvatarElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoItemAvatarElement, deps: [], target: i0.ɵɵFactoryTarget.Component });
34
- NovoItemAvatarElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoItemAvatarElement, selector: "item-avatar, novo-item-avatar", inputs: { icon: "icon", color: "color" }, host: { classAttribute: "novo-item-avatar" }, ngImport: i0, template: ` <novo-icon *ngIf="icon" [color]="color || icon">{{ icon }}</novo-icon> `, isInline: true, components: [{ type: i1.NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
30
+ NovoItemAvatarElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoItemAvatarElement, selector: "item-avatar, novo-item-avatar", inputs: { icon: "icon", color: "color" }, host: { classAttribute: "novo-item-avatar" }, ngImport: i0, template: ` <novo-icon *ngIf="icon" [color]="color || icon">{{ icon }}</novo-icon> `, isInline: true, styles: [":host{margin-right:.5em}:host ::ng-deep i.black{color:#000}:host ::ng-deep i.white{color:#fff}:host ::ng-deep i.gray{color:#9e9e9e}:host ::ng-deep i.grey{color:#9e9e9e}:host ::ng-deep i.offWhite{color:#f7f7f7}:host ::ng-deep i.bright{color:#f7f7f7}:host ::ng-deep i.light{color:#dbdbdb}:host ::ng-deep i.neutral{color:#4f5361}:host ::ng-deep i.dark{color:#3d464d}:host ::ng-deep i.orange{color:#ff6900}:host ::ng-deep i.navigation{color:#202945}:host ::ng-deep i.skyBlue{color:#009bdf}:host ::ng-deep i.steel{color:#5b6770}:host ::ng-deep i.metal{color:#637893}:host ::ng-deep i.sand{color:#f4f4f4}:host ::ng-deep i.silver{color:#e2e2e2}:host ::ng-deep i.stone{color:#bebebe}:host ::ng-deep i.ash{color:#a0a0a0}:host ::ng-deep i.slate{color:#707070}:host ::ng-deep i.onyx{color:#526980}:host ::ng-deep i.charcoal{color:#282828}:host ::ng-deep i.moonlight{color:#1a242f}:host ::ng-deep i.midnight{color:#202945}:host ::ng-deep i.darkness{color:#161f27}:host ::ng-deep i.navy{color:#0d2d42}:host ::ng-deep i.aqua{color:#3bafda}:host ::ng-deep i.ocean{color:#4a89dc}:host ::ng-deep i.mint{color:#37bc9b}:host ::ng-deep i.grass{color:#8cc152}:host ::ng-deep i.sunflower{color:#f6b042}:host ::ng-deep i.bittersweet{color:#eb6845}:host ::ng-deep i.grapefruit{color:#da4453}:host ::ng-deep i.carnation{color:#d770ad}:host ::ng-deep i.lavender{color:#967adc}:host ::ng-deep i.mountain{color:#9678b6}:host ::ng-deep i.info{color:#4a89dc}:host ::ng-deep i.positive{color:#4a89dc}:host ::ng-deep i.success{color:#8cc152}:host ::ng-deep i.negative{color:#da4453}:host ::ng-deep i.danger{color:#da4453}:host ::ng-deep i.error{color:#da4453}:host ::ng-deep i.warning{color:#f6b042}:host ::ng-deep i.empty{color:#cccdcc}:host ::ng-deep i.disabled{color:#bebebe}:host ::ng-deep i.background{color:#f7f7f7}:host ::ng-deep i.backgroundDark{color:#e2e2e2}:host ::ng-deep i.presentation{color:#5b6770}:host ::ng-deep i.bullhorn{color:#ff6900}:host ::ng-deep i.pulse{color:#3bafda}:host ::ng-deep i.company{color:#39d}:host ::ng-deep i.candidate{color:#4b7}:host ::ng-deep i.lead{color:#a69}:host ::ng-deep i.contact{color:#fa4}:host ::ng-deep i.clientcontact{color:#fa4}:host ::ng-deep i.opportunity{color:#625}:host ::ng-deep i.job{color:#b56}:host ::ng-deep i.joborder{color:#b56}:host ::ng-deep i.submission{color:#a9adbb}:host ::ng-deep i.sendout{color:#747884}:host ::ng-deep i.placement{color:#0b344f}:host ::ng-deep i.note{color:#747884}:host ::ng-deep i.contract{color:#454ea0}:host ::ng-deep i.jobCode{color:#696d79}:host ::ng-deep i.earnCode{color:#696d79}:host ::ng-deep i.invoiceStatement{color:#696d79}:host ::ng-deep i.billableCharge{color:#696d79}:host ::ng-deep i.payableCharge{color:#696d79}:host ::ng-deep i.user{color:#696d79}:host ::ng-deep i.corporateUser{color:#696d79}:host ::ng-deep i.distributionList{color:#696d79}:host ::ng-deep i.credential{color:#696d79}:host ::ng-deep i.person{color:#696d79}\n"], components: [{ type: i1.NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
35
31
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoItemAvatarElement, decorators: [{
36
32
  type: Component,
37
- args: [{
38
- selector: 'item-avatar, novo-item-avatar',
39
- template: ` <novo-icon *ngIf="icon" [color]="color || icon">{{ icon }}</novo-icon> `,
40
- host: {
33
+ args: [{ selector: 'item-avatar, novo-item-avatar', template: ` <novo-icon *ngIf="icon" [color]="color || icon">{{ icon }}</novo-icon> `, host: {
41
34
  class: 'novo-item-avatar',
42
- },
43
- }]
35
+ }, styles: [":host{margin-right:.5em}:host ::ng-deep i.black{color:#000}:host ::ng-deep i.white{color:#fff}:host ::ng-deep i.gray{color:#9e9e9e}:host ::ng-deep i.grey{color:#9e9e9e}:host ::ng-deep i.offWhite{color:#f7f7f7}:host ::ng-deep i.bright{color:#f7f7f7}:host ::ng-deep i.light{color:#dbdbdb}:host ::ng-deep i.neutral{color:#4f5361}:host ::ng-deep i.dark{color:#3d464d}:host ::ng-deep i.orange{color:#ff6900}:host ::ng-deep i.navigation{color:#202945}:host ::ng-deep i.skyBlue{color:#009bdf}:host ::ng-deep i.steel{color:#5b6770}:host ::ng-deep i.metal{color:#637893}:host ::ng-deep i.sand{color:#f4f4f4}:host ::ng-deep i.silver{color:#e2e2e2}:host ::ng-deep i.stone{color:#bebebe}:host ::ng-deep i.ash{color:#a0a0a0}:host ::ng-deep i.slate{color:#707070}:host ::ng-deep i.onyx{color:#526980}:host ::ng-deep i.charcoal{color:#282828}:host ::ng-deep i.moonlight{color:#1a242f}:host ::ng-deep i.midnight{color:#202945}:host ::ng-deep i.darkness{color:#161f27}:host ::ng-deep i.navy{color:#0d2d42}:host ::ng-deep i.aqua{color:#3bafda}:host ::ng-deep i.ocean{color:#4a89dc}:host ::ng-deep i.mint{color:#37bc9b}:host ::ng-deep i.grass{color:#8cc152}:host ::ng-deep i.sunflower{color:#f6b042}:host ::ng-deep i.bittersweet{color:#eb6845}:host ::ng-deep i.grapefruit{color:#da4453}:host ::ng-deep i.carnation{color:#d770ad}:host ::ng-deep i.lavender{color:#967adc}:host ::ng-deep i.mountain{color:#9678b6}:host ::ng-deep i.info{color:#4a89dc}:host ::ng-deep i.positive{color:#4a89dc}:host ::ng-deep i.success{color:#8cc152}:host ::ng-deep i.negative{color:#da4453}:host ::ng-deep i.danger{color:#da4453}:host ::ng-deep i.error{color:#da4453}:host ::ng-deep i.warning{color:#f6b042}:host ::ng-deep i.empty{color:#cccdcc}:host ::ng-deep i.disabled{color:#bebebe}:host ::ng-deep i.background{color:#f7f7f7}:host ::ng-deep i.backgroundDark{color:#e2e2e2}:host ::ng-deep i.presentation{color:#5b6770}:host ::ng-deep i.bullhorn{color:#ff6900}:host ::ng-deep i.pulse{color:#3bafda}:host ::ng-deep i.company{color:#39d}:host ::ng-deep i.candidate{color:#4b7}:host ::ng-deep i.lead{color:#a69}:host ::ng-deep i.contact{color:#fa4}:host ::ng-deep i.clientcontact{color:#fa4}:host ::ng-deep i.opportunity{color:#625}:host ::ng-deep i.job{color:#b56}:host ::ng-deep i.joborder{color:#b56}:host ::ng-deep i.submission{color:#a9adbb}:host ::ng-deep i.sendout{color:#747884}:host ::ng-deep i.placement{color:#0b344f}:host ::ng-deep i.note{color:#747884}:host ::ng-deep i.contract{color:#454ea0}:host ::ng-deep i.jobCode{color:#696d79}:host ::ng-deep i.earnCode{color:#696d79}:host ::ng-deep i.invoiceStatement{color:#696d79}:host ::ng-deep i.billableCharge{color:#696d79}:host ::ng-deep i.payableCharge{color:#696d79}:host ::ng-deep i.user{color:#696d79}:host ::ng-deep i.corporateUser{color:#696d79}:host ::ng-deep i.distributionList{color:#696d79}:host ::ng-deep i.credential{color:#696d79}:host ::ng-deep i.person{color:#696d79}\n"] }]
44
36
  }], propDecorators: { icon: [{
45
37
  type: Input
46
38
  }], color: [{
@@ -49,16 +41,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
49
41
  export class NovoItemTitleElement {
50
42
  }
51
43
  NovoItemTitleElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoItemTitleElement, deps: [], target: i0.ɵɵFactoryTarget.Component });
52
- NovoItemTitleElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoItemTitleElement, selector: "item-title, novo-item-title", host: { classAttribute: "novo-item-title" }, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true });
44
+ NovoItemTitleElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoItemTitleElement, selector: "item-title, novo-item-title", host: { classAttribute: "novo-item-title" }, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, styles: [":host-context([theme=black]){color:#fff}:host-context([theme=black]) i{color:#fff}:host-context([theme=white]){color:#3d464d}:host-context([theme=white]) i{color:#3d464d}:host-context([theme=gray]){color:#3d464d}:host-context([theme=gray]) i{color:#3d464d}:host-context([theme=grey]){color:#3d464d}:host-context([theme=grey]) i{color:#3d464d}:host-context([theme=offWhite]){color:#3d464d}:host-context([theme=offWhite]) i{color:#3d464d}:host-context([theme=bright]){color:#3d464d}:host-context([theme=bright]) i{color:#3d464d}:host-context([theme=light]){color:#3d464d}:host-context([theme=light]) i{color:#3d464d}:host-context([theme=neutral]){color:#fff}:host-context([theme=neutral]) i{color:#fff}:host-context([theme=dark]){color:#fff}:host-context([theme=dark]) i{color:#fff}:host-context([theme=orange]){color:#3d464d}:host-context([theme=orange]) i{color:#3d464d}:host-context([theme=navigation]){color:#fff}:host-context([theme=navigation]) i{color:#fff}:host-context([theme=skyBlue]){color:#fff}:host-context([theme=skyBlue]) i{color:#fff}:host-context([theme=steel]){color:#fff}:host-context([theme=steel]) i{color:#fff}:host-context([theme=metal]){color:#fff}:host-context([theme=metal]) i{color:#fff}:host-context([theme=sand]){color:#3d464d}:host-context([theme=sand]) i{color:#3d464d}:host-context([theme=silver]){color:#3d464d}:host-context([theme=silver]) i{color:#3d464d}:host-context([theme=stone]){color:#3d464d}:host-context([theme=stone]) i{color:#3d464d}:host-context([theme=ash]){color:#3d464d}:host-context([theme=ash]) i{color:#3d464d}:host-context([theme=slate]){color:#fff}:host-context([theme=slate]) i{color:#fff}:host-context([theme=onyx]){color:#fff}:host-context([theme=onyx]) i{color:#fff}:host-context([theme=charcoal]){color:#fff}:host-context([theme=charcoal]) i{color:#fff}:host-context([theme=moonlight]){color:#fff}:host-context([theme=moonlight]) i{color:#fff}:host-context([theme=midnight]){color:#fff}:host-context([theme=midnight]) i{color:#fff}:host-context([theme=darkness]){color:#fff}:host-context([theme=darkness]) i{color:#fff}:host-context([theme=navy]){color:#fff}:host-context([theme=navy]) i{color:#fff}:host-context([theme=aqua]){color:#3d464d}:host-context([theme=aqua]) i{color:#3d464d}:host-context([theme=ocean]){color:#fff}:host-context([theme=ocean]) i{color:#fff}:host-context([theme=mint]){color:#3d464d}:host-context([theme=mint]) i{color:#3d464d}:host-context([theme=grass]){color:#fff}:host-context([theme=grass]) i{color:#fff}:host-context([theme=sunflower]){color:#fff}:host-context([theme=sunflower]) i{color:#fff}:host-context([theme=bittersweet]){color:#fff}:host-context([theme=bittersweet]) i{color:#fff}:host-context([theme=grapefruit]){color:#fff}:host-context([theme=grapefruit]) i{color:#fff}:host-context([theme=carnation]){color:#fff}:host-context([theme=carnation]) i{color:#fff}:host-context([theme=lavender]){color:#fff}:host-context([theme=lavender]) i{color:#fff}:host-context([theme=mountain]){color:#fff}:host-context([theme=mountain]) i{color:#fff}:host-context([theme=info]){color:#fff}:host-context([theme=info]) i{color:#fff}:host-context([theme=positive]){color:#fff}:host-context([theme=positive]) i{color:#fff}:host-context([theme=success]){color:#fff}:host-context([theme=success]) i{color:#fff}:host-context([theme=negative]){color:#fff}:host-context([theme=negative]) i{color:#fff}:host-context([theme=danger]){color:#fff}:host-context([theme=danger]) i{color:#fff}:host-context([theme=error]){color:#fff}:host-context([theme=error]) i{color:#fff}:host-context([theme=warning]){color:#fff}:host-context([theme=warning]) i{color:#fff}:host-context([theme=empty]){color:#3d464d}:host-context([theme=empty]) i{color:#3d464d}:host-context([theme=disabled]){color:#3d464d}:host-context([theme=disabled]) i{color:#3d464d}:host-context([theme=background]){color:#3d464d}:host-context([theme=background]) i{color:#3d464d}:host-context([theme=backgroundDark]){color:#3d464d}:host-context([theme=backgroundDark]) i{color:#3d464d}:host-context([theme=presentation]){color:#fff}:host-context([theme=presentation]) i{color:#fff}:host-context([theme=bullhorn]){color:#3d464d}:host-context([theme=bullhorn]) i{color:#3d464d}:host-context([theme=pulse]){color:#3d464d}:host-context([theme=pulse]) i{color:#3d464d}:host-context([theme=company]){color:#fff}:host-context([theme=company]) i{color:#fff}:host-context([theme=candidate]){color:#fff}:host-context([theme=candidate]) i{color:#fff}:host-context([theme=lead]){color:#fff}:host-context([theme=lead]) i{color:#fff}:host-context([theme=contact]){color:#fff}:host-context([theme=contact]) i{color:#fff}:host-context([theme=clientcontact]){color:#fff}:host-context([theme=clientcontact]) i{color:#fff}:host-context([theme=opportunity]){color:#fff}:host-context([theme=opportunity]) i{color:#fff}:host-context([theme=job]){color:#fff}:host-context([theme=job]) i{color:#fff}:host-context([theme=joborder]){color:#fff}:host-context([theme=joborder]) i{color:#fff}:host-context([theme=submission]){color:#3d464d}:host-context([theme=submission]) i{color:#3d464d}:host-context([theme=sendout]){color:#fff}:host-context([theme=sendout]) i{color:#fff}:host-context([theme=placement]){color:#fff}:host-context([theme=placement]) i{color:#fff}:host-context([theme=note]){color:#fff}:host-context([theme=note]) i{color:#fff}:host-context([theme=contract]){color:#fff}:host-context([theme=contract]) i{color:#fff}:host-context([theme=jobCode]){color:#fff}:host-context([theme=jobCode]) i{color:#fff}:host-context([theme=earnCode]){color:#fff}:host-context([theme=earnCode]) i{color:#fff}:host-context([theme=invoiceStatement]){color:#fff}:host-context([theme=invoiceStatement]) i{color:#fff}:host-context([theme=billableCharge]){color:#fff}:host-context([theme=billableCharge]) i{color:#fff}:host-context([theme=payableCharge]){color:#fff}:host-context([theme=payableCharge]) i{color:#fff}:host-context([theme=user]){color:#fff}:host-context([theme=user]) i{color:#fff}:host-context([theme=corporateUser]){color:#fff}:host-context([theme=corporateUser]) i{color:#fff}:host-context([theme=distributionList]){color:#fff}:host-context([theme=distributionList]) i{color:#fff}:host-context([theme=credential]){color:#fff}:host-context([theme=credential]) i{color:#fff}:host-context([theme=person]){color:#fff}:host-context([theme=person]) i{color:#fff}:host{display:block;color:inherit;font-size:inherit;flex:2 0 0}\n"] });
53
45
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoItemTitleElement, decorators: [{
54
46
  type: Component,
55
- args: [{
56
- selector: 'item-title, novo-item-title',
57
- template: `<ng-content></ng-content>`,
58
- host: {
47
+ args: [{ selector: 'item-title, novo-item-title', template: `<ng-content></ng-content>`, host: {
59
48
  class: 'novo-item-title',
60
- },
61
- }]
49
+ }, styles: [":host-context([theme=black]){color:#fff}:host-context([theme=black]) i{color:#fff}:host-context([theme=white]){color:#3d464d}:host-context([theme=white]) i{color:#3d464d}:host-context([theme=gray]){color:#3d464d}:host-context([theme=gray]) i{color:#3d464d}:host-context([theme=grey]){color:#3d464d}:host-context([theme=grey]) i{color:#3d464d}:host-context([theme=offWhite]){color:#3d464d}:host-context([theme=offWhite]) i{color:#3d464d}:host-context([theme=bright]){color:#3d464d}:host-context([theme=bright]) i{color:#3d464d}:host-context([theme=light]){color:#3d464d}:host-context([theme=light]) i{color:#3d464d}:host-context([theme=neutral]){color:#fff}:host-context([theme=neutral]) i{color:#fff}:host-context([theme=dark]){color:#fff}:host-context([theme=dark]) i{color:#fff}:host-context([theme=orange]){color:#3d464d}:host-context([theme=orange]) i{color:#3d464d}:host-context([theme=navigation]){color:#fff}:host-context([theme=navigation]) i{color:#fff}:host-context([theme=skyBlue]){color:#fff}:host-context([theme=skyBlue]) i{color:#fff}:host-context([theme=steel]){color:#fff}:host-context([theme=steel]) i{color:#fff}:host-context([theme=metal]){color:#fff}:host-context([theme=metal]) i{color:#fff}:host-context([theme=sand]){color:#3d464d}:host-context([theme=sand]) i{color:#3d464d}:host-context([theme=silver]){color:#3d464d}:host-context([theme=silver]) i{color:#3d464d}:host-context([theme=stone]){color:#3d464d}:host-context([theme=stone]) i{color:#3d464d}:host-context([theme=ash]){color:#3d464d}:host-context([theme=ash]) i{color:#3d464d}:host-context([theme=slate]){color:#fff}:host-context([theme=slate]) i{color:#fff}:host-context([theme=onyx]){color:#fff}:host-context([theme=onyx]) i{color:#fff}:host-context([theme=charcoal]){color:#fff}:host-context([theme=charcoal]) i{color:#fff}:host-context([theme=moonlight]){color:#fff}:host-context([theme=moonlight]) i{color:#fff}:host-context([theme=midnight]){color:#fff}:host-context([theme=midnight]) i{color:#fff}:host-context([theme=darkness]){color:#fff}:host-context([theme=darkness]) i{color:#fff}:host-context([theme=navy]){color:#fff}:host-context([theme=navy]) i{color:#fff}:host-context([theme=aqua]){color:#3d464d}:host-context([theme=aqua]) i{color:#3d464d}:host-context([theme=ocean]){color:#fff}:host-context([theme=ocean]) i{color:#fff}:host-context([theme=mint]){color:#3d464d}:host-context([theme=mint]) i{color:#3d464d}:host-context([theme=grass]){color:#fff}:host-context([theme=grass]) i{color:#fff}:host-context([theme=sunflower]){color:#fff}:host-context([theme=sunflower]) i{color:#fff}:host-context([theme=bittersweet]){color:#fff}:host-context([theme=bittersweet]) i{color:#fff}:host-context([theme=grapefruit]){color:#fff}:host-context([theme=grapefruit]) i{color:#fff}:host-context([theme=carnation]){color:#fff}:host-context([theme=carnation]) i{color:#fff}:host-context([theme=lavender]){color:#fff}:host-context([theme=lavender]) i{color:#fff}:host-context([theme=mountain]){color:#fff}:host-context([theme=mountain]) i{color:#fff}:host-context([theme=info]){color:#fff}:host-context([theme=info]) i{color:#fff}:host-context([theme=positive]){color:#fff}:host-context([theme=positive]) i{color:#fff}:host-context([theme=success]){color:#fff}:host-context([theme=success]) i{color:#fff}:host-context([theme=negative]){color:#fff}:host-context([theme=negative]) i{color:#fff}:host-context([theme=danger]){color:#fff}:host-context([theme=danger]) i{color:#fff}:host-context([theme=error]){color:#fff}:host-context([theme=error]) i{color:#fff}:host-context([theme=warning]){color:#fff}:host-context([theme=warning]) i{color:#fff}:host-context([theme=empty]){color:#3d464d}:host-context([theme=empty]) i{color:#3d464d}:host-context([theme=disabled]){color:#3d464d}:host-context([theme=disabled]) i{color:#3d464d}:host-context([theme=background]){color:#3d464d}:host-context([theme=background]) i{color:#3d464d}:host-context([theme=backgroundDark]){color:#3d464d}:host-context([theme=backgroundDark]) i{color:#3d464d}:host-context([theme=presentation]){color:#fff}:host-context([theme=presentation]) i{color:#fff}:host-context([theme=bullhorn]){color:#3d464d}:host-context([theme=bullhorn]) i{color:#3d464d}:host-context([theme=pulse]){color:#3d464d}:host-context([theme=pulse]) i{color:#3d464d}:host-context([theme=company]){color:#fff}:host-context([theme=company]) i{color:#fff}:host-context([theme=candidate]){color:#fff}:host-context([theme=candidate]) i{color:#fff}:host-context([theme=lead]){color:#fff}:host-context([theme=lead]) i{color:#fff}:host-context([theme=contact]){color:#fff}:host-context([theme=contact]) i{color:#fff}:host-context([theme=clientcontact]){color:#fff}:host-context([theme=clientcontact]) i{color:#fff}:host-context([theme=opportunity]){color:#fff}:host-context([theme=opportunity]) i{color:#fff}:host-context([theme=job]){color:#fff}:host-context([theme=job]) i{color:#fff}:host-context([theme=joborder]){color:#fff}:host-context([theme=joborder]) i{color:#fff}:host-context([theme=submission]){color:#3d464d}:host-context([theme=submission]) i{color:#3d464d}:host-context([theme=sendout]){color:#fff}:host-context([theme=sendout]) i{color:#fff}:host-context([theme=placement]){color:#fff}:host-context([theme=placement]) i{color:#fff}:host-context([theme=note]){color:#fff}:host-context([theme=note]) i{color:#fff}:host-context([theme=contract]){color:#fff}:host-context([theme=contract]) i{color:#fff}:host-context([theme=jobCode]){color:#fff}:host-context([theme=jobCode]) i{color:#fff}:host-context([theme=earnCode]){color:#fff}:host-context([theme=earnCode]) i{color:#fff}:host-context([theme=invoiceStatement]){color:#fff}:host-context([theme=invoiceStatement]) i{color:#fff}:host-context([theme=billableCharge]){color:#fff}:host-context([theme=billableCharge]) i{color:#fff}:host-context([theme=payableCharge]){color:#fff}:host-context([theme=payableCharge]) i{color:#fff}:host-context([theme=user]){color:#fff}:host-context([theme=user]) i{color:#fff}:host-context([theme=corporateUser]){color:#fff}:host-context([theme=corporateUser]) i{color:#fff}:host-context([theme=distributionList]){color:#fff}:host-context([theme=distributionList]) i{color:#fff}:host-context([theme=credential]){color:#fff}:host-context([theme=credential]) i{color:#fff}:host-context([theme=person]){color:#fff}:host-context([theme=person]) i{color:#fff}:host{display:block;color:inherit;font-size:inherit;flex:2 0 0}\n"] }]
62
50
  }] });
63
51
  export class NovoItemHeaderElement {
64
52
  }
@@ -69,68 +57,52 @@ NovoItemHeaderElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
69
57
  <ng-content select="item-title, novo-item-title"></ng-content>
70
58
  <ng-content select="item-header-end, novo-item-header-end"></ng-content>
71
59
  </novo-title>
72
- `, isInline: true, components: [{ type: i3.NovoTitle, selector: "novo-title,[novo-title]" }] });
60
+ `, isInline: true, styles: [":host-context([theme=black]){color:#fff}:host-context([theme=black]) h6,:host-context([theme=black]) i{color:#fff}:host-context([theme=white]){color:#3d464d}:host-context([theme=white]) h6,:host-context([theme=white]) i{color:#3d464d}:host-context([theme=gray]){color:#3d464d}:host-context([theme=gray]) h6,:host-context([theme=gray]) i{color:#3d464d}:host-context([theme=grey]){color:#3d464d}:host-context([theme=grey]) h6,:host-context([theme=grey]) i{color:#3d464d}:host-context([theme=offWhite]){color:#3d464d}:host-context([theme=offWhite]) h6,:host-context([theme=offWhite]) i{color:#3d464d}:host-context([theme=bright]){color:#3d464d}:host-context([theme=bright]) h6,:host-context([theme=bright]) i{color:#3d464d}:host-context([theme=light]){color:#3d464d}:host-context([theme=light]) h6,:host-context([theme=light]) i{color:#3d464d}:host-context([theme=neutral]){color:#fff}:host-context([theme=neutral]) h6,:host-context([theme=neutral]) i{color:#fff}:host-context([theme=dark]){color:#fff}:host-context([theme=dark]) h6,:host-context([theme=dark]) i{color:#fff}:host-context([theme=orange]){color:#3d464d}:host-context([theme=orange]) h6,:host-context([theme=orange]) i{color:#3d464d}:host-context([theme=navigation]){color:#fff}:host-context([theme=navigation]) h6,:host-context([theme=navigation]) i{color:#fff}:host-context([theme=skyBlue]){color:#fff}:host-context([theme=skyBlue]) h6,:host-context([theme=skyBlue]) i{color:#fff}:host-context([theme=steel]){color:#fff}:host-context([theme=steel]) h6,:host-context([theme=steel]) i{color:#fff}:host-context([theme=metal]){color:#fff}:host-context([theme=metal]) h6,:host-context([theme=metal]) i{color:#fff}:host-context([theme=sand]){color:#3d464d}:host-context([theme=sand]) h6,:host-context([theme=sand]) i{color:#3d464d}:host-context([theme=silver]){color:#3d464d}:host-context([theme=silver]) h6,:host-context([theme=silver]) i{color:#3d464d}:host-context([theme=stone]){color:#3d464d}:host-context([theme=stone]) h6,:host-context([theme=stone]) i{color:#3d464d}:host-context([theme=ash]){color:#3d464d}:host-context([theme=ash]) h6,:host-context([theme=ash]) i{color:#3d464d}:host-context([theme=slate]){color:#fff}:host-context([theme=slate]) h6,:host-context([theme=slate]) i{color:#fff}:host-context([theme=onyx]){color:#fff}:host-context([theme=onyx]) h6,:host-context([theme=onyx]) i{color:#fff}:host-context([theme=charcoal]){color:#fff}:host-context([theme=charcoal]) h6,:host-context([theme=charcoal]) i{color:#fff}:host-context([theme=moonlight]){color:#fff}:host-context([theme=moonlight]) h6,:host-context([theme=moonlight]) i{color:#fff}:host-context([theme=midnight]){color:#fff}:host-context([theme=midnight]) h6,:host-context([theme=midnight]) i{color:#fff}:host-context([theme=darkness]){color:#fff}:host-context([theme=darkness]) h6,:host-context([theme=darkness]) i{color:#fff}:host-context([theme=navy]){color:#fff}:host-context([theme=navy]) h6,:host-context([theme=navy]) i{color:#fff}:host-context([theme=aqua]){color:#3d464d}:host-context([theme=aqua]) h6,:host-context([theme=aqua]) i{color:#3d464d}:host-context([theme=ocean]){color:#fff}:host-context([theme=ocean]) h6,:host-context([theme=ocean]) i{color:#fff}:host-context([theme=mint]){color:#3d464d}:host-context([theme=mint]) h6,:host-context([theme=mint]) i{color:#3d464d}:host-context([theme=grass]){color:#fff}:host-context([theme=grass]) h6,:host-context([theme=grass]) i{color:#fff}:host-context([theme=sunflower]){color:#fff}:host-context([theme=sunflower]) h6,:host-context([theme=sunflower]) i{color:#fff}:host-context([theme=bittersweet]){color:#fff}:host-context([theme=bittersweet]) h6,:host-context([theme=bittersweet]) i{color:#fff}:host-context([theme=grapefruit]){color:#fff}:host-context([theme=grapefruit]) h6,:host-context([theme=grapefruit]) i{color:#fff}:host-context([theme=carnation]){color:#fff}:host-context([theme=carnation]) h6,:host-context([theme=carnation]) i{color:#fff}:host-context([theme=lavender]){color:#fff}:host-context([theme=lavender]) h6,:host-context([theme=lavender]) i{color:#fff}:host-context([theme=mountain]){color:#fff}:host-context([theme=mountain]) h6,:host-context([theme=mountain]) i{color:#fff}:host-context([theme=info]){color:#fff}:host-context([theme=info]) h6,:host-context([theme=info]) i{color:#fff}:host-context([theme=positive]){color:#fff}:host-context([theme=positive]) h6,:host-context([theme=positive]) i{color:#fff}:host-context([theme=success]){color:#fff}:host-context([theme=success]) h6,:host-context([theme=success]) i{color:#fff}:host-context([theme=negative]){color:#fff}:host-context([theme=negative]) h6,:host-context([theme=negative]) i{color:#fff}:host-context([theme=danger]){color:#fff}:host-context([theme=danger]) h6,:host-context([theme=danger]) i{color:#fff}:host-context([theme=error]){color:#fff}:host-context([theme=error]) h6,:host-context([theme=error]) i{color:#fff}:host-context([theme=warning]){color:#fff}:host-context([theme=warning]) h6,:host-context([theme=warning]) i{color:#fff}:host-context([theme=empty]){color:#3d464d}:host-context([theme=empty]) h6,:host-context([theme=empty]) i{color:#3d464d}:host-context([theme=disabled]){color:#3d464d}:host-context([theme=disabled]) h6,:host-context([theme=disabled]) i{color:#3d464d}:host-context([theme=background]){color:#3d464d}:host-context([theme=background]) h6,:host-context([theme=background]) i{color:#3d464d}:host-context([theme=backgroundDark]){color:#3d464d}:host-context([theme=backgroundDark]) h6,:host-context([theme=backgroundDark]) i{color:#3d464d}:host-context([theme=presentation]){color:#fff}:host-context([theme=presentation]) h6,:host-context([theme=presentation]) i{color:#fff}:host-context([theme=bullhorn]){color:#3d464d}:host-context([theme=bullhorn]) h6,:host-context([theme=bullhorn]) i{color:#3d464d}:host-context([theme=pulse]){color:#3d464d}:host-context([theme=pulse]) h6,:host-context([theme=pulse]) i{color:#3d464d}:host-context([theme=company]){color:#fff}:host-context([theme=company]) h6,:host-context([theme=company]) i{color:#fff}:host-context([theme=candidate]){color:#fff}:host-context([theme=candidate]) h6,:host-context([theme=candidate]) i{color:#fff}:host-context([theme=lead]){color:#fff}:host-context([theme=lead]) h6,:host-context([theme=lead]) i{color:#fff}:host-context([theme=contact]){color:#fff}:host-context([theme=contact]) h6,:host-context([theme=contact]) i{color:#fff}:host-context([theme=clientcontact]){color:#fff}:host-context([theme=clientcontact]) h6,:host-context([theme=clientcontact]) i{color:#fff}:host-context([theme=opportunity]){color:#fff}:host-context([theme=opportunity]) h6,:host-context([theme=opportunity]) i{color:#fff}:host-context([theme=job]){color:#fff}:host-context([theme=job]) h6,:host-context([theme=job]) i{color:#fff}:host-context([theme=joborder]){color:#fff}:host-context([theme=joborder]) h6,:host-context([theme=joborder]) i{color:#fff}:host-context([theme=submission]){color:#3d464d}:host-context([theme=submission]) h6,:host-context([theme=submission]) i{color:#3d464d}:host-context([theme=sendout]){color:#fff}:host-context([theme=sendout]) h6,:host-context([theme=sendout]) i{color:#fff}:host-context([theme=placement]){color:#fff}:host-context([theme=placement]) h6,:host-context([theme=placement]) i{color:#fff}:host-context([theme=note]){color:#fff}:host-context([theme=note]) h6,:host-context([theme=note]) i{color:#fff}:host-context([theme=contract]){color:#fff}:host-context([theme=contract]) h6,:host-context([theme=contract]) i{color:#fff}:host-context([theme=jobCode]){color:#fff}:host-context([theme=jobCode]) h6,:host-context([theme=jobCode]) i{color:#fff}:host-context([theme=earnCode]){color:#fff}:host-context([theme=earnCode]) h6,:host-context([theme=earnCode]) i{color:#fff}:host-context([theme=invoiceStatement]){color:#fff}:host-context([theme=invoiceStatement]) h6,:host-context([theme=invoiceStatement]) i{color:#fff}:host-context([theme=billableCharge]){color:#fff}:host-context([theme=billableCharge]) h6,:host-context([theme=billableCharge]) i{color:#fff}:host-context([theme=payableCharge]){color:#fff}:host-context([theme=payableCharge]) h6,:host-context([theme=payableCharge]) i{color:#fff}:host-context([theme=user]){color:#fff}:host-context([theme=user]) h6,:host-context([theme=user]) i{color:#fff}:host-context([theme=corporateUser]){color:#fff}:host-context([theme=corporateUser]) h6,:host-context([theme=corporateUser]) i{color:#fff}:host-context([theme=distributionList]){color:#fff}:host-context([theme=distributionList]) h6,:host-context([theme=distributionList]) i{color:#fff}:host-context([theme=credential]){color:#fff}:host-context([theme=credential]) h6,:host-context([theme=credential]) i{color:#fff}:host-context([theme=person]){color:#fff}:host-context([theme=person]) h6,:host-context([theme=person]) i{color:#fff}:host .novo-item-header-container{display:flex;align-items:center}\n"], components: [{ type: i3.NovoTitle, selector: "novo-title,[novo-title]" }] });
73
61
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoItemHeaderElement, decorators: [{
74
62
  type: Component,
75
- args: [{
76
- selector: 'item-header, novo-item-header',
77
- template: `
63
+ args: [{ selector: 'item-header, novo-item-header', template: `
78
64
  <novo-title class="novo-item-header-container" size="md">
79
65
  <ng-content select="item-avatar, novo-item-avatar"></ng-content>
80
66
  <ng-content select="item-title, novo-item-title"></ng-content>
81
67
  <ng-content select="item-header-end, novo-item-header-end"></ng-content>
82
68
  </novo-title>
83
- `,
84
- host: {
69
+ `, host: {
85
70
  class: 'novo-item-header',
86
- },
87
- }]
71
+ }, styles: [":host-context([theme=black]){color:#fff}:host-context([theme=black]) h6,:host-context([theme=black]) i{color:#fff}:host-context([theme=white]){color:#3d464d}:host-context([theme=white]) h6,:host-context([theme=white]) i{color:#3d464d}:host-context([theme=gray]){color:#3d464d}:host-context([theme=gray]) h6,:host-context([theme=gray]) i{color:#3d464d}:host-context([theme=grey]){color:#3d464d}:host-context([theme=grey]) h6,:host-context([theme=grey]) i{color:#3d464d}:host-context([theme=offWhite]){color:#3d464d}:host-context([theme=offWhite]) h6,:host-context([theme=offWhite]) i{color:#3d464d}:host-context([theme=bright]){color:#3d464d}:host-context([theme=bright]) h6,:host-context([theme=bright]) i{color:#3d464d}:host-context([theme=light]){color:#3d464d}:host-context([theme=light]) h6,:host-context([theme=light]) i{color:#3d464d}:host-context([theme=neutral]){color:#fff}:host-context([theme=neutral]) h6,:host-context([theme=neutral]) i{color:#fff}:host-context([theme=dark]){color:#fff}:host-context([theme=dark]) h6,:host-context([theme=dark]) i{color:#fff}:host-context([theme=orange]){color:#3d464d}:host-context([theme=orange]) h6,:host-context([theme=orange]) i{color:#3d464d}:host-context([theme=navigation]){color:#fff}:host-context([theme=navigation]) h6,:host-context([theme=navigation]) i{color:#fff}:host-context([theme=skyBlue]){color:#fff}:host-context([theme=skyBlue]) h6,:host-context([theme=skyBlue]) i{color:#fff}:host-context([theme=steel]){color:#fff}:host-context([theme=steel]) h6,:host-context([theme=steel]) i{color:#fff}:host-context([theme=metal]){color:#fff}:host-context([theme=metal]) h6,:host-context([theme=metal]) i{color:#fff}:host-context([theme=sand]){color:#3d464d}:host-context([theme=sand]) h6,:host-context([theme=sand]) i{color:#3d464d}:host-context([theme=silver]){color:#3d464d}:host-context([theme=silver]) h6,:host-context([theme=silver]) i{color:#3d464d}:host-context([theme=stone]){color:#3d464d}:host-context([theme=stone]) h6,:host-context([theme=stone]) i{color:#3d464d}:host-context([theme=ash]){color:#3d464d}:host-context([theme=ash]) h6,:host-context([theme=ash]) i{color:#3d464d}:host-context([theme=slate]){color:#fff}:host-context([theme=slate]) h6,:host-context([theme=slate]) i{color:#fff}:host-context([theme=onyx]){color:#fff}:host-context([theme=onyx]) h6,:host-context([theme=onyx]) i{color:#fff}:host-context([theme=charcoal]){color:#fff}:host-context([theme=charcoal]) h6,:host-context([theme=charcoal]) i{color:#fff}:host-context([theme=moonlight]){color:#fff}:host-context([theme=moonlight]) h6,:host-context([theme=moonlight]) i{color:#fff}:host-context([theme=midnight]){color:#fff}:host-context([theme=midnight]) h6,:host-context([theme=midnight]) i{color:#fff}:host-context([theme=darkness]){color:#fff}:host-context([theme=darkness]) h6,:host-context([theme=darkness]) i{color:#fff}:host-context([theme=navy]){color:#fff}:host-context([theme=navy]) h6,:host-context([theme=navy]) i{color:#fff}:host-context([theme=aqua]){color:#3d464d}:host-context([theme=aqua]) h6,:host-context([theme=aqua]) i{color:#3d464d}:host-context([theme=ocean]){color:#fff}:host-context([theme=ocean]) h6,:host-context([theme=ocean]) i{color:#fff}:host-context([theme=mint]){color:#3d464d}:host-context([theme=mint]) h6,:host-context([theme=mint]) i{color:#3d464d}:host-context([theme=grass]){color:#fff}:host-context([theme=grass]) h6,:host-context([theme=grass]) i{color:#fff}:host-context([theme=sunflower]){color:#fff}:host-context([theme=sunflower]) h6,:host-context([theme=sunflower]) i{color:#fff}:host-context([theme=bittersweet]){color:#fff}:host-context([theme=bittersweet]) h6,:host-context([theme=bittersweet]) i{color:#fff}:host-context([theme=grapefruit]){color:#fff}:host-context([theme=grapefruit]) h6,:host-context([theme=grapefruit]) i{color:#fff}:host-context([theme=carnation]){color:#fff}:host-context([theme=carnation]) h6,:host-context([theme=carnation]) i{color:#fff}:host-context([theme=lavender]){color:#fff}:host-context([theme=lavender]) h6,:host-context([theme=lavender]) i{color:#fff}:host-context([theme=mountain]){color:#fff}:host-context([theme=mountain]) h6,:host-context([theme=mountain]) i{color:#fff}:host-context([theme=info]){color:#fff}:host-context([theme=info]) h6,:host-context([theme=info]) i{color:#fff}:host-context([theme=positive]){color:#fff}:host-context([theme=positive]) h6,:host-context([theme=positive]) i{color:#fff}:host-context([theme=success]){color:#fff}:host-context([theme=success]) h6,:host-context([theme=success]) i{color:#fff}:host-context([theme=negative]){color:#fff}:host-context([theme=negative]) h6,:host-context([theme=negative]) i{color:#fff}:host-context([theme=danger]){color:#fff}:host-context([theme=danger]) h6,:host-context([theme=danger]) i{color:#fff}:host-context([theme=error]){color:#fff}:host-context([theme=error]) h6,:host-context([theme=error]) i{color:#fff}:host-context([theme=warning]){color:#fff}:host-context([theme=warning]) h6,:host-context([theme=warning]) i{color:#fff}:host-context([theme=empty]){color:#3d464d}:host-context([theme=empty]) h6,:host-context([theme=empty]) i{color:#3d464d}:host-context([theme=disabled]){color:#3d464d}:host-context([theme=disabled]) h6,:host-context([theme=disabled]) i{color:#3d464d}:host-context([theme=background]){color:#3d464d}:host-context([theme=background]) h6,:host-context([theme=background]) i{color:#3d464d}:host-context([theme=backgroundDark]){color:#3d464d}:host-context([theme=backgroundDark]) h6,:host-context([theme=backgroundDark]) i{color:#3d464d}:host-context([theme=presentation]){color:#fff}:host-context([theme=presentation]) h6,:host-context([theme=presentation]) i{color:#fff}:host-context([theme=bullhorn]){color:#3d464d}:host-context([theme=bullhorn]) h6,:host-context([theme=bullhorn]) i{color:#3d464d}:host-context([theme=pulse]){color:#3d464d}:host-context([theme=pulse]) h6,:host-context([theme=pulse]) i{color:#3d464d}:host-context([theme=company]){color:#fff}:host-context([theme=company]) h6,:host-context([theme=company]) i{color:#fff}:host-context([theme=candidate]){color:#fff}:host-context([theme=candidate]) h6,:host-context([theme=candidate]) i{color:#fff}:host-context([theme=lead]){color:#fff}:host-context([theme=lead]) h6,:host-context([theme=lead]) i{color:#fff}:host-context([theme=contact]){color:#fff}:host-context([theme=contact]) h6,:host-context([theme=contact]) i{color:#fff}:host-context([theme=clientcontact]){color:#fff}:host-context([theme=clientcontact]) h6,:host-context([theme=clientcontact]) i{color:#fff}:host-context([theme=opportunity]){color:#fff}:host-context([theme=opportunity]) h6,:host-context([theme=opportunity]) i{color:#fff}:host-context([theme=job]){color:#fff}:host-context([theme=job]) h6,:host-context([theme=job]) i{color:#fff}:host-context([theme=joborder]){color:#fff}:host-context([theme=joborder]) h6,:host-context([theme=joborder]) i{color:#fff}:host-context([theme=submission]){color:#3d464d}:host-context([theme=submission]) h6,:host-context([theme=submission]) i{color:#3d464d}:host-context([theme=sendout]){color:#fff}:host-context([theme=sendout]) h6,:host-context([theme=sendout]) i{color:#fff}:host-context([theme=placement]){color:#fff}:host-context([theme=placement]) h6,:host-context([theme=placement]) i{color:#fff}:host-context([theme=note]){color:#fff}:host-context([theme=note]) h6,:host-context([theme=note]) i{color:#fff}:host-context([theme=contract]){color:#fff}:host-context([theme=contract]) h6,:host-context([theme=contract]) i{color:#fff}:host-context([theme=jobCode]){color:#fff}:host-context([theme=jobCode]) h6,:host-context([theme=jobCode]) i{color:#fff}:host-context([theme=earnCode]){color:#fff}:host-context([theme=earnCode]) h6,:host-context([theme=earnCode]) i{color:#fff}:host-context([theme=invoiceStatement]){color:#fff}:host-context([theme=invoiceStatement]) h6,:host-context([theme=invoiceStatement]) i{color:#fff}:host-context([theme=billableCharge]){color:#fff}:host-context([theme=billableCharge]) h6,:host-context([theme=billableCharge]) i{color:#fff}:host-context([theme=payableCharge]){color:#fff}:host-context([theme=payableCharge]) h6,:host-context([theme=payableCharge]) i{color:#fff}:host-context([theme=user]){color:#fff}:host-context([theme=user]) h6,:host-context([theme=user]) i{color:#fff}:host-context([theme=corporateUser]){color:#fff}:host-context([theme=corporateUser]) h6,:host-context([theme=corporateUser]) i{color:#fff}:host-context([theme=distributionList]){color:#fff}:host-context([theme=distributionList]) h6,:host-context([theme=distributionList]) i{color:#fff}:host-context([theme=credential]){color:#fff}:host-context([theme=credential]) h6,:host-context([theme=credential]) i{color:#fff}:host-context([theme=person]){color:#fff}:host-context([theme=person]) h6,:host-context([theme=person]) i{color:#fff}:host .novo-item-header-container{display:flex;align-items:center}\n"] }]
88
72
  }] });
89
73
  export class NovoItemDateElement {
90
74
  }
91
75
  NovoItemDateElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoItemDateElement, deps: [], target: i0.ɵɵFactoryTarget.Component });
92
- NovoItemDateElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoItemDateElement, selector: "item-header-end, novo-item-header-end", host: { classAttribute: "novo-item-header-end" }, ngImport: i0, template: ` <ng-content></ng-content> `, isInline: true });
76
+ NovoItemDateElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoItemDateElement, selector: "item-header-end, novo-item-header-end", host: { classAttribute: "novo-item-header-end" }, ngImport: i0, template: ` <ng-content></ng-content> `, isInline: true, styles: [":host{flex:1 0 0;text-align:right}\n"] });
93
77
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoItemDateElement, decorators: [{
94
78
  type: Component,
95
- args: [{
96
- selector: 'item-header-end, novo-item-header-end',
97
- template: ` <ng-content></ng-content> `,
98
- host: {
79
+ args: [{ selector: 'item-header-end, novo-item-header-end', template: ` <ng-content></ng-content> `, host: {
99
80
  class: 'novo-item-header-end',
100
- },
101
- }]
81
+ }, styles: [":host{flex:1 0 0;text-align:right}\n"] }]
102
82
  }] });
103
83
  export class NovoItemContentElement {
104
84
  }
105
85
  NovoItemContentElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoItemContentElement, deps: [], target: i0.ɵɵFactoryTarget.Component });
106
- NovoItemContentElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoItemContentElement, selector: "item-content, novo-item-content", inputs: { direction: "direction" }, host: { properties: { "class.vertical-list": "direction === \"vertical\"", "class.horizontal-list": "direction === \"horizontal\"" }, classAttribute: "novo-item-content" }, ngImport: i0, template: ` <ng-content></ng-content> `, isInline: true });
86
+ NovoItemContentElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoItemContentElement, selector: "item-content, novo-item-content", inputs: { direction: "direction" }, host: { properties: { "class.vertical-list": "direction === \"vertical\"", "class.horizontal-list": "direction === \"horizontal\"" }, classAttribute: "novo-item-content" }, ngImport: i0, template: ` <ng-content></ng-content> `, isInline: true, styles: [":host-context([theme=black])>::ng-deep *{color:#ffffffa6}:host-context([theme=white])>::ng-deep *{color:#ffffffa6}:host-context([theme=gray])>::ng-deep *{color:#ffffffa6}:host-context([theme=grey])>::ng-deep *{color:#ffffffa6}:host-context([theme=offWhite])>::ng-deep *{color:#ffffffa6}:host-context([theme=bright])>::ng-deep *{color:#ffffffa6}:host-context([theme=light])>::ng-deep *{color:#ffffffa6}:host-context([theme=neutral])>::ng-deep *{color:#ffffffa6}:host-context([theme=dark])>::ng-deep *{color:#ffffffa6}:host-context([theme=orange])>::ng-deep *{color:#ffffffa6}:host-context([theme=navigation])>::ng-deep *{color:#ffffffa6}:host-context([theme=skyBlue])>::ng-deep *{color:#ffffffa6}:host-context([theme=steel])>::ng-deep *{color:#ffffffa6}:host-context([theme=metal])>::ng-deep *{color:#ffffffa6}:host-context([theme=sand])>::ng-deep *{color:#ffffffa6}:host-context([theme=silver])>::ng-deep *{color:#ffffffa6}:host-context([theme=stone])>::ng-deep *{color:#ffffffa6}:host-context([theme=ash])>::ng-deep *{color:#ffffffa6}:host-context([theme=slate])>::ng-deep *{color:#ffffffa6}:host-context([theme=onyx])>::ng-deep *{color:#ffffffa6}:host-context([theme=charcoal])>::ng-deep *{color:#ffffffa6}:host-context([theme=moonlight])>::ng-deep *{color:#ffffffa6}:host-context([theme=midnight])>::ng-deep *{color:#ffffffa6}:host-context([theme=darkness])>::ng-deep *{color:#ffffffa6}:host-context([theme=navy])>::ng-deep *{color:#ffffffa6}:host-context([theme=aqua])>::ng-deep *{color:#ffffffa6}:host-context([theme=ocean])>::ng-deep *{color:#ffffffa6}:host-context([theme=mint])>::ng-deep *{color:#ffffffa6}:host-context([theme=grass])>::ng-deep *{color:#ffffffa6}:host-context([theme=sunflower])>::ng-deep *{color:#ffffffa6}:host-context([theme=bittersweet])>::ng-deep *{color:#ffffffa6}:host-context([theme=grapefruit])>::ng-deep *{color:#ffffffa6}:host-context([theme=carnation])>::ng-deep *{color:#ffffffa6}:host-context([theme=lavender])>::ng-deep *{color:#ffffffa6}:host-context([theme=mountain])>::ng-deep *{color:#ffffffa6}:host-context([theme=info])>::ng-deep *{color:#ffffffa6}:host-context([theme=positive])>::ng-deep *{color:#ffffffa6}:host-context([theme=success])>::ng-deep *{color:#ffffffa6}:host-context([theme=negative])>::ng-deep *{color:#ffffffa6}:host-context([theme=danger])>::ng-deep *{color:#ffffffa6}:host-context([theme=error])>::ng-deep *{color:#ffffffa6}:host-context([theme=warning])>::ng-deep *{color:#ffffffa6}:host-context([theme=empty])>::ng-deep *{color:#ffffffa6}:host-context([theme=disabled])>::ng-deep *{color:#ffffffa6}:host-context([theme=background])>::ng-deep *{color:#ffffffa6}:host-context([theme=backgroundDark])>::ng-deep *{color:#ffffffa6}:host-context([theme=presentation])>::ng-deep *{color:#ffffffa6}:host-context([theme=bullhorn])>::ng-deep *{color:#ffffffa6}:host-context([theme=pulse])>::ng-deep *{color:#ffffffa6}:host-context([theme=company])>::ng-deep *{color:#ffffffa6}:host-context([theme=candidate])>::ng-deep *{color:#ffffffa6}:host-context([theme=lead])>::ng-deep *{color:#ffffffa6}:host-context([theme=contact])>::ng-deep *{color:#ffffffa6}:host-context([theme=clientcontact])>::ng-deep *{color:#ffffffa6}:host-context([theme=opportunity])>::ng-deep *{color:#ffffffa6}:host-context([theme=job])>::ng-deep *{color:#ffffffa6}:host-context([theme=joborder])>::ng-deep *{color:#ffffffa6}:host-context([theme=submission])>::ng-deep *{color:#ffffffa6}:host-context([theme=sendout])>::ng-deep *{color:#ffffffa6}:host-context([theme=placement])>::ng-deep *{color:#ffffffa6}:host-context([theme=note])>::ng-deep *{color:#ffffffa6}:host-context([theme=contract])>::ng-deep *{color:#ffffffa6}:host-context([theme=jobCode])>::ng-deep *{color:#ffffffa6}:host-context([theme=earnCode])>::ng-deep *{color:#ffffffa6}:host-context([theme=invoiceStatement])>::ng-deep *{color:#ffffffa6}:host-context([theme=billableCharge])>::ng-deep *{color:#ffffffa6}:host-context([theme=payableCharge])>::ng-deep *{color:#ffffffa6}:host-context([theme=user])>::ng-deep *{color:#ffffffa6}:host-context([theme=corporateUser])>::ng-deep *{color:#ffffffa6}:host-context([theme=distributionList])>::ng-deep *{color:#ffffffa6}:host-context([theme=credential])>::ng-deep *{color:#ffffffa6}:host-context([theme=person])>::ng-deep *{color:#ffffffa6}:host-context(.novo-list.avatar){margin-left:2.7em}:host{display:flex;margin-left:.2em}:host.novo-item-content>::ng-deep *{color:#434343d9}:host.novo-item-content ::ng-deep i.black{color:#000}:host.novo-item-content ::ng-deep i.white{color:#fff}:host.novo-item-content ::ng-deep i.gray{color:#9e9e9e}:host.novo-item-content ::ng-deep i.grey{color:#9e9e9e}:host.novo-item-content ::ng-deep i.offWhite{color:#f7f7f7}:host.novo-item-content ::ng-deep i.bright{color:#f7f7f7}:host.novo-item-content ::ng-deep i.light{color:#dbdbdb}:host.novo-item-content ::ng-deep i.neutral{color:#4f5361}:host.novo-item-content ::ng-deep i.dark{color:#3d464d}:host.novo-item-content ::ng-deep i.orange{color:#ff6900}:host.novo-item-content ::ng-deep i.navigation{color:#202945}:host.novo-item-content ::ng-deep i.skyBlue{color:#009bdf}:host.novo-item-content ::ng-deep i.steel{color:#5b6770}:host.novo-item-content ::ng-deep i.metal{color:#637893}:host.novo-item-content ::ng-deep i.sand{color:#f4f4f4}:host.novo-item-content ::ng-deep i.silver{color:#e2e2e2}:host.novo-item-content ::ng-deep i.stone{color:#bebebe}:host.novo-item-content ::ng-deep i.ash{color:#a0a0a0}:host.novo-item-content ::ng-deep i.slate{color:#707070}:host.novo-item-content ::ng-deep i.onyx{color:#526980}:host.novo-item-content ::ng-deep i.charcoal{color:#282828}:host.novo-item-content ::ng-deep i.moonlight{color:#1a242f}:host.novo-item-content ::ng-deep i.midnight{color:#202945}:host.novo-item-content ::ng-deep i.darkness{color:#161f27}:host.novo-item-content ::ng-deep i.navy{color:#0d2d42}:host.novo-item-content ::ng-deep i.aqua{color:#3bafda}:host.novo-item-content ::ng-deep i.ocean{color:#4a89dc}:host.novo-item-content ::ng-deep i.mint{color:#37bc9b}:host.novo-item-content ::ng-deep i.grass{color:#8cc152}:host.novo-item-content ::ng-deep i.sunflower{color:#f6b042}:host.novo-item-content ::ng-deep i.bittersweet{color:#eb6845}:host.novo-item-content ::ng-deep i.grapefruit{color:#da4453}:host.novo-item-content ::ng-deep i.carnation{color:#d770ad}:host.novo-item-content ::ng-deep i.lavender{color:#967adc}:host.novo-item-content ::ng-deep i.mountain{color:#9678b6}:host.novo-item-content ::ng-deep i.info{color:#4a89dc}:host.novo-item-content ::ng-deep i.positive{color:#4a89dc}:host.novo-item-content ::ng-deep i.success{color:#8cc152}:host.novo-item-content ::ng-deep i.negative{color:#da4453}:host.novo-item-content ::ng-deep i.danger{color:#da4453}:host.novo-item-content ::ng-deep i.error{color:#da4453}:host.novo-item-content ::ng-deep i.warning{color:#f6b042}:host.novo-item-content ::ng-deep i.empty{color:#cccdcc}:host.novo-item-content ::ng-deep i.disabled{color:#bebebe}:host.novo-item-content ::ng-deep i.background{color:#f7f7f7}:host.novo-item-content ::ng-deep i.backgroundDark{color:#e2e2e2}:host.novo-item-content ::ng-deep i.presentation{color:#5b6770}:host.novo-item-content ::ng-deep i.bullhorn{color:#ff6900}:host.novo-item-content ::ng-deep i.pulse{color:#3bafda}:host.novo-item-content ::ng-deep i.company{color:#39d}:host.novo-item-content ::ng-deep i.candidate{color:#4b7}:host.novo-item-content ::ng-deep i.lead{color:#a69}:host.novo-item-content ::ng-deep i.contact{color:#fa4}:host.novo-item-content ::ng-deep i.clientcontact{color:#fa4}:host.novo-item-content ::ng-deep i.opportunity{color:#625}:host.novo-item-content ::ng-deep i.job{color:#b56}:host.novo-item-content ::ng-deep i.joborder{color:#b56}:host.novo-item-content ::ng-deep i.submission{color:#a9adbb}:host.novo-item-content ::ng-deep i.sendout{color:#747884}:host.novo-item-content ::ng-deep i.placement{color:#0b344f}:host.novo-item-content ::ng-deep i.note{color:#747884}:host.novo-item-content ::ng-deep i.contract{color:#454ea0}:host.novo-item-content ::ng-deep i.jobCode{color:#696d79}:host.novo-item-content ::ng-deep i.earnCode{color:#696d79}:host.novo-item-content ::ng-deep i.invoiceStatement{color:#696d79}:host.novo-item-content ::ng-deep i.billableCharge{color:#696d79}:host.novo-item-content ::ng-deep i.payableCharge{color:#696d79}:host.novo-item-content ::ng-deep i.user{color:#696d79}:host.novo-item-content ::ng-deep i.corporateUser{color:#696d79}:host.novo-item-content ::ng-deep i.distributionList{color:#696d79}:host.novo-item-content ::ng-deep i.credential{color:#696d79}:host.novo-item-content ::ng-deep i.person{color:#696d79}:host.vertical-list{flex-direction:column}:host.horizontal-list{flex-direction:row}\n"] });
107
87
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoItemContentElement, decorators: [{
108
88
  type: Component,
109
- args: [{
110
- selector: 'item-content, novo-item-content',
111
- host: {
89
+ args: [{ selector: 'item-content, novo-item-content', host: {
112
90
  class: 'novo-item-content',
113
91
  '[class.vertical-list]': 'direction === "vertical"',
114
92
  '[class.horizontal-list]': 'direction === "horizontal"',
115
- },
116
- template: ` <ng-content></ng-content> `,
117
- }]
93
+ }, template: ` <ng-content></ng-content> `, styles: [":host-context([theme=black])>::ng-deep *{color:#ffffffa6}:host-context([theme=white])>::ng-deep *{color:#ffffffa6}:host-context([theme=gray])>::ng-deep *{color:#ffffffa6}:host-context([theme=grey])>::ng-deep *{color:#ffffffa6}:host-context([theme=offWhite])>::ng-deep *{color:#ffffffa6}:host-context([theme=bright])>::ng-deep *{color:#ffffffa6}:host-context([theme=light])>::ng-deep *{color:#ffffffa6}:host-context([theme=neutral])>::ng-deep *{color:#ffffffa6}:host-context([theme=dark])>::ng-deep *{color:#ffffffa6}:host-context([theme=orange])>::ng-deep *{color:#ffffffa6}:host-context([theme=navigation])>::ng-deep *{color:#ffffffa6}:host-context([theme=skyBlue])>::ng-deep *{color:#ffffffa6}:host-context([theme=steel])>::ng-deep *{color:#ffffffa6}:host-context([theme=metal])>::ng-deep *{color:#ffffffa6}:host-context([theme=sand])>::ng-deep *{color:#ffffffa6}:host-context([theme=silver])>::ng-deep *{color:#ffffffa6}:host-context([theme=stone])>::ng-deep *{color:#ffffffa6}:host-context([theme=ash])>::ng-deep *{color:#ffffffa6}:host-context([theme=slate])>::ng-deep *{color:#ffffffa6}:host-context([theme=onyx])>::ng-deep *{color:#ffffffa6}:host-context([theme=charcoal])>::ng-deep *{color:#ffffffa6}:host-context([theme=moonlight])>::ng-deep *{color:#ffffffa6}:host-context([theme=midnight])>::ng-deep *{color:#ffffffa6}:host-context([theme=darkness])>::ng-deep *{color:#ffffffa6}:host-context([theme=navy])>::ng-deep *{color:#ffffffa6}:host-context([theme=aqua])>::ng-deep *{color:#ffffffa6}:host-context([theme=ocean])>::ng-deep *{color:#ffffffa6}:host-context([theme=mint])>::ng-deep *{color:#ffffffa6}:host-context([theme=grass])>::ng-deep *{color:#ffffffa6}:host-context([theme=sunflower])>::ng-deep *{color:#ffffffa6}:host-context([theme=bittersweet])>::ng-deep *{color:#ffffffa6}:host-context([theme=grapefruit])>::ng-deep *{color:#ffffffa6}:host-context([theme=carnation])>::ng-deep *{color:#ffffffa6}:host-context([theme=lavender])>::ng-deep *{color:#ffffffa6}:host-context([theme=mountain])>::ng-deep *{color:#ffffffa6}:host-context([theme=info])>::ng-deep *{color:#ffffffa6}:host-context([theme=positive])>::ng-deep *{color:#ffffffa6}:host-context([theme=success])>::ng-deep *{color:#ffffffa6}:host-context([theme=negative])>::ng-deep *{color:#ffffffa6}:host-context([theme=danger])>::ng-deep *{color:#ffffffa6}:host-context([theme=error])>::ng-deep *{color:#ffffffa6}:host-context([theme=warning])>::ng-deep *{color:#ffffffa6}:host-context([theme=empty])>::ng-deep *{color:#ffffffa6}:host-context([theme=disabled])>::ng-deep *{color:#ffffffa6}:host-context([theme=background])>::ng-deep *{color:#ffffffa6}:host-context([theme=backgroundDark])>::ng-deep *{color:#ffffffa6}:host-context([theme=presentation])>::ng-deep *{color:#ffffffa6}:host-context([theme=bullhorn])>::ng-deep *{color:#ffffffa6}:host-context([theme=pulse])>::ng-deep *{color:#ffffffa6}:host-context([theme=company])>::ng-deep *{color:#ffffffa6}:host-context([theme=candidate])>::ng-deep *{color:#ffffffa6}:host-context([theme=lead])>::ng-deep *{color:#ffffffa6}:host-context([theme=contact])>::ng-deep *{color:#ffffffa6}:host-context([theme=clientcontact])>::ng-deep *{color:#ffffffa6}:host-context([theme=opportunity])>::ng-deep *{color:#ffffffa6}:host-context([theme=job])>::ng-deep *{color:#ffffffa6}:host-context([theme=joborder])>::ng-deep *{color:#ffffffa6}:host-context([theme=submission])>::ng-deep *{color:#ffffffa6}:host-context([theme=sendout])>::ng-deep *{color:#ffffffa6}:host-context([theme=placement])>::ng-deep *{color:#ffffffa6}:host-context([theme=note])>::ng-deep *{color:#ffffffa6}:host-context([theme=contract])>::ng-deep *{color:#ffffffa6}:host-context([theme=jobCode])>::ng-deep *{color:#ffffffa6}:host-context([theme=earnCode])>::ng-deep *{color:#ffffffa6}:host-context([theme=invoiceStatement])>::ng-deep *{color:#ffffffa6}:host-context([theme=billableCharge])>::ng-deep *{color:#ffffffa6}:host-context([theme=payableCharge])>::ng-deep *{color:#ffffffa6}:host-context([theme=user])>::ng-deep *{color:#ffffffa6}:host-context([theme=corporateUser])>::ng-deep *{color:#ffffffa6}:host-context([theme=distributionList])>::ng-deep *{color:#ffffffa6}:host-context([theme=credential])>::ng-deep *{color:#ffffffa6}:host-context([theme=person])>::ng-deep *{color:#ffffffa6}:host-context(.novo-list.avatar){margin-left:2.7em}:host{display:flex;margin-left:.2em}:host.novo-item-content>::ng-deep *{color:#434343d9}:host.novo-item-content ::ng-deep i.black{color:#000}:host.novo-item-content ::ng-deep i.white{color:#fff}:host.novo-item-content ::ng-deep i.gray{color:#9e9e9e}:host.novo-item-content ::ng-deep i.grey{color:#9e9e9e}:host.novo-item-content ::ng-deep i.offWhite{color:#f7f7f7}:host.novo-item-content ::ng-deep i.bright{color:#f7f7f7}:host.novo-item-content ::ng-deep i.light{color:#dbdbdb}:host.novo-item-content ::ng-deep i.neutral{color:#4f5361}:host.novo-item-content ::ng-deep i.dark{color:#3d464d}:host.novo-item-content ::ng-deep i.orange{color:#ff6900}:host.novo-item-content ::ng-deep i.navigation{color:#202945}:host.novo-item-content ::ng-deep i.skyBlue{color:#009bdf}:host.novo-item-content ::ng-deep i.steel{color:#5b6770}:host.novo-item-content ::ng-deep i.metal{color:#637893}:host.novo-item-content ::ng-deep i.sand{color:#f4f4f4}:host.novo-item-content ::ng-deep i.silver{color:#e2e2e2}:host.novo-item-content ::ng-deep i.stone{color:#bebebe}:host.novo-item-content ::ng-deep i.ash{color:#a0a0a0}:host.novo-item-content ::ng-deep i.slate{color:#707070}:host.novo-item-content ::ng-deep i.onyx{color:#526980}:host.novo-item-content ::ng-deep i.charcoal{color:#282828}:host.novo-item-content ::ng-deep i.moonlight{color:#1a242f}:host.novo-item-content ::ng-deep i.midnight{color:#202945}:host.novo-item-content ::ng-deep i.darkness{color:#161f27}:host.novo-item-content ::ng-deep i.navy{color:#0d2d42}:host.novo-item-content ::ng-deep i.aqua{color:#3bafda}:host.novo-item-content ::ng-deep i.ocean{color:#4a89dc}:host.novo-item-content ::ng-deep i.mint{color:#37bc9b}:host.novo-item-content ::ng-deep i.grass{color:#8cc152}:host.novo-item-content ::ng-deep i.sunflower{color:#f6b042}:host.novo-item-content ::ng-deep i.bittersweet{color:#eb6845}:host.novo-item-content ::ng-deep i.grapefruit{color:#da4453}:host.novo-item-content ::ng-deep i.carnation{color:#d770ad}:host.novo-item-content ::ng-deep i.lavender{color:#967adc}:host.novo-item-content ::ng-deep i.mountain{color:#9678b6}:host.novo-item-content ::ng-deep i.info{color:#4a89dc}:host.novo-item-content ::ng-deep i.positive{color:#4a89dc}:host.novo-item-content ::ng-deep i.success{color:#8cc152}:host.novo-item-content ::ng-deep i.negative{color:#da4453}:host.novo-item-content ::ng-deep i.danger{color:#da4453}:host.novo-item-content ::ng-deep i.error{color:#da4453}:host.novo-item-content ::ng-deep i.warning{color:#f6b042}:host.novo-item-content ::ng-deep i.empty{color:#cccdcc}:host.novo-item-content ::ng-deep i.disabled{color:#bebebe}:host.novo-item-content ::ng-deep i.background{color:#f7f7f7}:host.novo-item-content ::ng-deep i.backgroundDark{color:#e2e2e2}:host.novo-item-content ::ng-deep i.presentation{color:#5b6770}:host.novo-item-content ::ng-deep i.bullhorn{color:#ff6900}:host.novo-item-content ::ng-deep i.pulse{color:#3bafda}:host.novo-item-content ::ng-deep i.company{color:#39d}:host.novo-item-content ::ng-deep i.candidate{color:#4b7}:host.novo-item-content ::ng-deep i.lead{color:#a69}:host.novo-item-content ::ng-deep i.contact{color:#fa4}:host.novo-item-content ::ng-deep i.clientcontact{color:#fa4}:host.novo-item-content ::ng-deep i.opportunity{color:#625}:host.novo-item-content ::ng-deep i.job{color:#b56}:host.novo-item-content ::ng-deep i.joborder{color:#b56}:host.novo-item-content ::ng-deep i.submission{color:#a9adbb}:host.novo-item-content ::ng-deep i.sendout{color:#747884}:host.novo-item-content ::ng-deep i.placement{color:#0b344f}:host.novo-item-content ::ng-deep i.note{color:#747884}:host.novo-item-content ::ng-deep i.contract{color:#454ea0}:host.novo-item-content ::ng-deep i.jobCode{color:#696d79}:host.novo-item-content ::ng-deep i.earnCode{color:#696d79}:host.novo-item-content ::ng-deep i.invoiceStatement{color:#696d79}:host.novo-item-content ::ng-deep i.billableCharge{color:#696d79}:host.novo-item-content ::ng-deep i.payableCharge{color:#696d79}:host.novo-item-content ::ng-deep i.user{color:#696d79}:host.novo-item-content ::ng-deep i.corporateUser{color:#696d79}:host.novo-item-content ::ng-deep i.distributionList{color:#696d79}:host.novo-item-content ::ng-deep i.credential{color:#696d79}:host.novo-item-content ::ng-deep i.person{color:#696d79}:host.vertical-list{flex-direction:column}:host.horizontal-list{flex-direction:row}\n"] }]
118
94
  }], propDecorators: { direction: [{
119
95
  type: Input
120
96
  }] } });
121
97
  export class NovoItemEndElement {
122
98
  }
123
99
  NovoItemEndElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoItemEndElement, deps: [], target: i0.ɵɵFactoryTarget.Component });
124
- NovoItemEndElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoItemEndElement, selector: "item-end, novo-item-end", host: { classAttribute: "novo-item-end" }, ngImport: i0, template: ` <ng-content></ng-content> `, isInline: true });
100
+ NovoItemEndElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoItemEndElement, selector: "item-end, novo-item-end", host: { classAttribute: "novo-item-end" }, ngImport: i0, template: ` <ng-content></ng-content> `, isInline: true, styles: [":host{align-self:center;flex:1;text-align:right}:host i{line-height:1.4em}\n"] });
125
101
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoItemEndElement, decorators: [{
126
102
  type: Component,
127
- args: [{
128
- selector: 'item-end, novo-item-end',
129
- template: ` <ng-content></ng-content> `,
130
- host: {
103
+ args: [{ selector: 'item-end, novo-item-end', template: ` <ng-content></ng-content> `, host: {
131
104
  class: 'novo-item-end',
132
- },
133
- }]
105
+ }, styles: [":host{align-self:center;flex:1;text-align:right}:host i{line-height:1.4em}\n"] }]
134
106
  }] });
135
107
  export class NovoListItemElement {
136
108
  constructor(element) {
@@ -149,23 +121,19 @@ NovoListItemElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
149
121
  </div>
150
122
  <ng-content></ng-content>
151
123
  <ng-content select="item-end, novo-item-end"></ng-content>
152
- `, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
124
+ `, isInline: true, styles: [":host-context([theme=black]){background:#000000;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=black]) item-title h6,:host-context([theme=black]) i{color:#fff}:host-context([theme=black]) item-content>*{color:#ffffffa6}:host-context([theme=black]):hover,:host-context([theme=black]):active{background:#333333}:host-context([theme=white]){background:#ffffff;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=white]) item-title h6,:host-context([theme=white]) i{color:#3d464d}:host-context([theme=white]) item-content>*{color:#ffffffa6}:host-context([theme=white]):hover,:host-context([theme=white]):active{background:white}:host-context([theme=gray]){background:#9e9e9e;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=gray]) item-title h6,:host-context([theme=gray]) i{color:#3d464d}:host-context([theme=gray]) item-content>*{color:#ffffffa6}:host-context([theme=gray]):hover,:host-context([theme=gray]):active{background:#d1d1d1}:host-context([theme=grey]){background:#9e9e9e;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=grey]) item-title h6,:host-context([theme=grey]) i{color:#3d464d}:host-context([theme=grey]) item-content>*{color:#ffffffa6}:host-context([theme=grey]):hover,:host-context([theme=grey]):active{background:#d1d1d1}:host-context([theme=offWhite]){background:#f7f7f7;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=offWhite]) item-title h6,:host-context([theme=offWhite]) i{color:#3d464d}:host-context([theme=offWhite]) item-content>*{color:#ffffffa6}:host-context([theme=offWhite]):hover,:host-context([theme=offWhite]):active{background:white}:host-context([theme=bright]){background:#f7f7f7;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=bright]) item-title h6,:host-context([theme=bright]) i{color:#3d464d}:host-context([theme=bright]) item-content>*{color:#ffffffa6}:host-context([theme=bright]):hover,:host-context([theme=bright]):active{background:white}:host-context([theme=light]){background:#dbdbdb;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=light]) item-title h6,:host-context([theme=light]) i{color:#3d464d}:host-context([theme=light]) item-content>*{color:#ffffffa6}:host-context([theme=light]):hover,:host-context([theme=light]):active{background:white}:host-context([theme=neutral]){background:#4f5361;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=neutral]) item-title h6,:host-context([theme=neutral]) i{color:#fff}:host-context([theme=neutral]) item-content>*{color:#ffffffa6}:host-context([theme=neutral]):hover,:host-context([theme=neutral]):active{background:#7f8497}:host-context([theme=dark]){background:#3d464d;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=dark]) item-title h6,:host-context([theme=dark]) i{color:#fff}:host-context([theme=dark]) item-content>*{color:#ffffffa6}:host-context([theme=dark]):hover,:host-context([theme=dark]):active{background:#6a7a86}:host-context([theme=orange]){background:#ff6900;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=orange]) item-title h6,:host-context([theme=orange]) i{color:#3d464d}:host-context([theme=orange]) item-content>*{color:#ffffffa6}:host-context([theme=orange]):hover,:host-context([theme=orange]):active{background:#ffa566}:host-context([theme=navigation]){background:#202945;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=navigation]) item-title h6,:host-context([theme=navigation]) i{color:#fff}:host-context([theme=navigation]) item-content>*{color:#ffffffa6}:host-context([theme=navigation]):hover,:host-context([theme=navigation]):active{background:#40528b}:host-context([theme=skyBlue]){background:#009bdf;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=skyBlue]) item-title h6,:host-context([theme=skyBlue]) i{color:#fff}:host-context([theme=skyBlue]) item-content>*{color:#ffffffa6}:host-context([theme=skyBlue]):hover,:host-context([theme=skyBlue]):active{background:#46c7ff}:host-context([theme=steel]){background:#5b6770;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=steel]) item-title h6,:host-context([theme=steel]) i{color:#fff}:host-context([theme=steel]) item-content>*{color:#ffffffa6}:host-context([theme=steel]):hover,:host-context([theme=steel]):active{background:#8e9aa3}:host-context([theme=metal]){background:#637893;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=metal]) item-title h6,:host-context([theme=metal]) i{color:#fff}:host-context([theme=metal]) item-content>*{color:#ffffffa6}:host-context([theme=metal]):hover,:host-context([theme=metal]):active{background:#9eacbe}:host-context([theme=sand]){background:#f4f4f4;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=sand]) item-title h6,:host-context([theme=sand]) i{color:#3d464d}:host-context([theme=sand]) item-content>*{color:#ffffffa6}:host-context([theme=sand]):hover,:host-context([theme=sand]):active{background:white}:host-context([theme=silver]){background:#e2e2e2;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=silver]) item-title h6,:host-context([theme=silver]) i{color:#3d464d}:host-context([theme=silver]) item-content>*{color:#ffffffa6}:host-context([theme=silver]):hover,:host-context([theme=silver]):active{background:white}:host-context([theme=stone]){background:#bebebe;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=stone]) item-title h6,:host-context([theme=stone]) i{color:#3d464d}:host-context([theme=stone]) item-content>*{color:#ffffffa6}:host-context([theme=stone]):hover,:host-context([theme=stone]):active{background:#f1f1f1}:host-context([theme=ash]){background:#a0a0a0;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=ash]) item-title h6,:host-context([theme=ash]) i{color:#3d464d}:host-context([theme=ash]) item-content>*{color:#ffffffa6}:host-context([theme=ash]):hover,:host-context([theme=ash]):active{background:lightgray}:host-context([theme=slate]){background:#707070;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=slate]) item-title h6,:host-context([theme=slate]) i{color:#fff}:host-context([theme=slate]) item-content>*{color:#ffffffa6}:host-context([theme=slate]):hover,:host-context([theme=slate]):active{background:#a3a3a3}:host-context([theme=onyx]){background:#526980;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=onyx]) item-title h6,:host-context([theme=onyx]) i{color:#fff}:host-context([theme=onyx]) item-content>*{color:#ffffffa6}:host-context([theme=onyx]):hover,:host-context([theme=onyx]):active{background:#869cb2}:host-context([theme=charcoal]){background:#282828;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=charcoal]) item-title h6,:host-context([theme=charcoal]) i{color:#fff}:host-context([theme=charcoal]) item-content>*{color:#ffffffa6}:host-context([theme=charcoal]):hover,:host-context([theme=charcoal]):active{background:#5b5b5b}:host-context([theme=moonlight]){background:#1a242f;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=moonlight]) item-title h6,:host-context([theme=moonlight]) i{color:#fff}:host-context([theme=moonlight]) item-content>*{color:#ffffffa6}:host-context([theme=moonlight]):hover,:host-context([theme=moonlight]):active{background:#3e5671}:host-context([theme=midnight]){background:#202945;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=midnight]) item-title h6,:host-context([theme=midnight]) i{color:#fff}:host-context([theme=midnight]) item-content>*{color:#ffffffa6}:host-context([theme=midnight]):hover,:host-context([theme=midnight]):active{background:#40528b}:host-context([theme=darkness]){background:#161f27;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=darkness]) item-title h6,:host-context([theme=darkness]) i{color:#fff}:host-context([theme=darkness]) item-content>*{color:#ffffffa6}:host-context([theme=darkness]):hover,:host-context([theme=darkness]):active{background:#3b5368}:host-context([theme=navy]){background:#0d2d42;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=navy]) item-title h6,:host-context([theme=navy]) i{color:#fff}:host-context([theme=navy]) item-content>*{color:#ffffffa6}:host-context([theme=navy]):hover,:host-context([theme=navy]):active{background:#1e6797}:host-context([theme=aqua]){background:#3bafda;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=aqua]) item-title h6,:host-context([theme=aqua]) i{color:#3d464d}:host-context([theme=aqua]) item-content>*{color:#ffffffa6}:host-context([theme=aqua]):hover,:host-context([theme=aqua]):active{background:#91d2ea}:host-context([theme=ocean]){background:#4a89dc;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=ocean]) item-title h6,:host-context([theme=ocean]) i{color:#fff}:host-context([theme=ocean]) item-content>*{color:#ffffffa6}:host-context([theme=ocean]):hover,:host-context([theme=ocean]):active{background:#9fc1ed}:host-context([theme=mint]){background:#37bc9b;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=mint]) item-title h6,:host-context([theme=mint]) i{color:#3d464d}:host-context([theme=mint]) item-content>*{color:#ffffffa6}:host-context([theme=mint]):hover,:host-context([theme=mint]):active{background:#7fdac3}:host-context([theme=grass]){background:#8cc152;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=grass]) item-title h6,:host-context([theme=grass]) i{color:#fff}:host-context([theme=grass]) item-content>*{color:#ffffffa6}:host-context([theme=grass]):hover,:host-context([theme=grass]):active{background:#bedc9d}:host-context([theme=sunflower]){background:#f6b042;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=sunflower]) item-title h6,:host-context([theme=sunflower]) i{color:#fff}:host-context([theme=sunflower]) item-content>*{color:#ffffffa6}:host-context([theme=sunflower]):hover,:host-context([theme=sunflower]):active{background:#fbd9a3}:host-context([theme=bittersweet]){background:#eb6845;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=bittersweet]) item-title h6,:host-context([theme=bittersweet]) i{color:#fff}:host-context([theme=bittersweet]) item-content>*{color:#ffffffa6}:host-context([theme=bittersweet]):hover,:host-context([theme=bittersweet]):active{background:#f5b3a1}:host-context([theme=grapefruit]){background:#da4453;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=grapefruit]) item-title h6,:host-context([theme=grapefruit]) i{color:#fff}:host-context([theme=grapefruit]) item-content>*{color:#ffffffa6}:host-context([theme=grapefruit]):hover,:host-context([theme=grapefruit]):active{background:#eb99a1}:host-context([theme=carnation]){background:#d770ad;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=carnation]) item-title h6,:host-context([theme=carnation]) i{color:#fff}:host-context([theme=carnation]) item-content>*{color:#ffffffa6}:host-context([theme=carnation]):hover,:host-context([theme=carnation]):active{background:#edc0db}:host-context([theme=lavender]){background:#967adc;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=lavender]) item-title h6,:host-context([theme=lavender]) i{color:#fff}:host-context([theme=lavender]) item-content>*{color:#ffffffa6}:host-context([theme=lavender]):hover,:host-context([theme=lavender]):active{background:#d6cbf1}:host-context([theme=mountain]){background:#9678b6;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=mountain]) item-title h6,:host-context([theme=mountain]) i{color:#fff}:host-context([theme=mountain]) item-content>*{color:#ffffffa6}:host-context([theme=mountain]):hover,:host-context([theme=mountain]):active{background:#c9bada}:host-context([theme=info]){background:#4a89dc;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=info]) item-title h6,:host-context([theme=info]) i{color:#fff}:host-context([theme=info]) item-content>*{color:#ffffffa6}:host-context([theme=info]):hover,:host-context([theme=info]):active{background:#9fc1ed}:host-context([theme=positive]){background:#4a89dc;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=positive]) item-title h6,:host-context([theme=positive]) i{color:#fff}:host-context([theme=positive]) item-content>*{color:#ffffffa6}:host-context([theme=positive]):hover,:host-context([theme=positive]):active{background:#9fc1ed}:host-context([theme=success]){background:#8cc152;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=success]) item-title h6,:host-context([theme=success]) i{color:#fff}:host-context([theme=success]) item-content>*{color:#ffffffa6}:host-context([theme=success]):hover,:host-context([theme=success]):active{background:#bedc9d}:host-context([theme=negative]){background:#da4453;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=negative]) item-title h6,:host-context([theme=negative]) i{color:#fff}:host-context([theme=negative]) item-content>*{color:#ffffffa6}:host-context([theme=negative]):hover,:host-context([theme=negative]):active{background:#eb99a1}:host-context([theme=danger]){background:#da4453;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=danger]) item-title h6,:host-context([theme=danger]) i{color:#fff}:host-context([theme=danger]) item-content>*{color:#ffffffa6}:host-context([theme=danger]):hover,:host-context([theme=danger]):active{background:#eb99a1}:host-context([theme=error]){background:#da4453;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=error]) item-title h6,:host-context([theme=error]) i{color:#fff}:host-context([theme=error]) item-content>*{color:#ffffffa6}:host-context([theme=error]):hover,:host-context([theme=error]):active{background:#eb99a1}:host-context([theme=warning]){background:#f6b042;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=warning]) item-title h6,:host-context([theme=warning]) i{color:#fff}:host-context([theme=warning]) item-content>*{color:#ffffffa6}:host-context([theme=warning]):hover,:host-context([theme=warning]):active{background:#fbd9a3}:host-context([theme=empty]){background:#cccdcc;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=empty]) item-title h6,:host-context([theme=empty]) i{color:#3d464d}:host-context([theme=empty]) item-content>*{color:#ffffffa6}:host-context([theme=empty]):hover,:host-context([theme=empty]):active{background:white}:host-context([theme=disabled]){background:#bebebe;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=disabled]) item-title h6,:host-context([theme=disabled]) i{color:#3d464d}:host-context([theme=disabled]) item-content>*{color:#ffffffa6}:host-context([theme=disabled]):hover,:host-context([theme=disabled]):active{background:#f1f1f1}:host-context([theme=background]){background:#f7f7f7;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=background]) item-title h6,:host-context([theme=background]) i{color:#3d464d}:host-context([theme=background]) item-content>*{color:#ffffffa6}:host-context([theme=background]):hover,:host-context([theme=background]):active{background:white}:host-context([theme=backgroundDark]){background:#e2e2e2;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=backgroundDark]) item-title h6,:host-context([theme=backgroundDark]) i{color:#3d464d}:host-context([theme=backgroundDark]) item-content>*{color:#ffffffa6}:host-context([theme=backgroundDark]):hover,:host-context([theme=backgroundDark]):active{background:white}:host-context([theme=presentation]){background:#5b6770;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=presentation]) item-title h6,:host-context([theme=presentation]) i{color:#fff}:host-context([theme=presentation]) item-content>*{color:#ffffffa6}:host-context([theme=presentation]):hover,:host-context([theme=presentation]):active{background:#8e9aa3}:host-context([theme=bullhorn]){background:#ff6900;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=bullhorn]) item-title h6,:host-context([theme=bullhorn]) i{color:#3d464d}:host-context([theme=bullhorn]) item-content>*{color:#ffffffa6}:host-context([theme=bullhorn]):hover,:host-context([theme=bullhorn]):active{background:#ffa566}:host-context([theme=pulse]){background:#3bafda;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=pulse]) item-title h6,:host-context([theme=pulse]) i{color:#3d464d}:host-context([theme=pulse]) item-content>*{color:#ffffffa6}:host-context([theme=pulse]):hover,:host-context([theme=pulse]):active{background:#91d2ea}:host-context([theme=company]){background:#3399dd;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=company]) item-title h6,:host-context([theme=company]) i{color:#fff}:host-context([theme=company]) item-content>*{color:#ffffffa6}:host-context([theme=company]):hover,:host-context([theme=company]):active{background:#8ac5ec}:host-context([theme=candidate]){background:#44bb77;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=candidate]) item-title h6,:host-context([theme=candidate]) i{color:#fff}:host-context([theme=candidate]) item-content>*{color:#ffffffa6}:host-context([theme=candidate]):hover,:host-context([theme=candidate]):active{background:#8fd6ad}:host-context([theme=lead]){background:#aa6699;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=lead]) item-title h6,:host-context([theme=lead]) i{color:#fff}:host-context([theme=lead]) item-content>*{color:#ffffffa6}:host-context([theme=lead]):hover,:host-context([theme=lead]):active{background:#cea8c5}:host-context([theme=contact]){background:#ffaa44;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=contact]) item-title h6,:host-context([theme=contact]) i{color:#fff}:host-context([theme=contact]) item-content>*{color:#ffffffa6}:host-context([theme=contact]):hover,:host-context([theme=contact]):active{background:#ffd8aa}:host-context([theme=clientcontact]){background:#ffaa44;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=clientcontact]) item-title h6,:host-context([theme=clientcontact]) i{color:#fff}:host-context([theme=clientcontact]) item-content>*{color:#ffffffa6}:host-context([theme=clientcontact]):hover,:host-context([theme=clientcontact]):active{background:#ffd8aa}:host-context([theme=opportunity]){background:#662255;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=opportunity]) item-title h6,:host-context([theme=opportunity]) i{color:#fff}:host-context([theme=opportunity]) item-content>*{color:#ffffffa6}:host-context([theme=opportunity]):hover,:host-context([theme=opportunity]):active{background:#b33c95}:host-context([theme=job]){background:#bb5566;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=job]) item-title h6,:host-context([theme=job]) i{color:#fff}:host-context([theme=job]) item-content>*{color:#ffffffa6}:host-context([theme=job]):hover,:host-context([theme=job]):active{background:#d89ea8}:host-context([theme=joborder]){background:#bb5566;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=joborder]) item-title h6,:host-context([theme=joborder]) i{color:#fff}:host-context([theme=joborder]) item-content>*{color:#ffffffa6}:host-context([theme=joborder]):hover,:host-context([theme=joborder]):active{background:#d89ea8}:host-context([theme=submission]){background:#a9adbb;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=submission]) item-title h6,:host-context([theme=submission]) i{color:#3d464d}:host-context([theme=submission]) item-content>*{color:#ffffffa6}:host-context([theme=submission]):hover,:host-context([theme=submission]):active{background:#e2e3e8}:host-context([theme=sendout]){background:#747884;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=sendout]) item-title h6,:host-context([theme=sendout]) i{color:#fff}:host-context([theme=sendout]) item-content>*{color:#ffffffa6}:host-context([theme=sendout]):hover,:host-context([theme=sendout]):active{background:#aaacb4}:host-context([theme=placement]){background:#0b344f;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=placement]) item-title h6,:host-context([theme=placement]) i{color:#fff}:host-context([theme=placement]) item-content>*{color:#ffffffa6}:host-context([theme=placement]):hover,:host-context([theme=placement]):active{background:#176fa9}:host-context([theme=note]){background:#747884;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=note]) item-title h6,:host-context([theme=note]) i{color:#fff}:host-context([theme=note]) item-content>*{color:#ffffffa6}:host-context([theme=note]):hover,:host-context([theme=note]):active{background:#aaacb4}:host-context([theme=contract]){background:#454ea0;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=contract]) item-title h6,:host-context([theme=contract]) i{color:#fff}:host-context([theme=contract]) item-content>*{color:#ffffffa6}:host-context([theme=contract]):hover,:host-context([theme=contract]):active{background:#8289c9}:host-context([theme=jobCode]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=jobCode]) item-title h6,:host-context([theme=jobCode]) i{color:#fff}:host-context([theme=jobCode]) item-content>*{color:#ffffffa6}:host-context([theme=jobCode]):hover,:host-context([theme=jobCode]):active{background:#9ea1aa}:host-context([theme=earnCode]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=earnCode]) item-title h6,:host-context([theme=earnCode]) i{color:#fff}:host-context([theme=earnCode]) item-content>*{color:#ffffffa6}:host-context([theme=earnCode]):hover,:host-context([theme=earnCode]):active{background:#9ea1aa}:host-context([theme=invoiceStatement]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=invoiceStatement]) item-title h6,:host-context([theme=invoiceStatement]) i{color:#fff}:host-context([theme=invoiceStatement]) item-content>*{color:#ffffffa6}:host-context([theme=invoiceStatement]):hover,:host-context([theme=invoiceStatement]):active{background:#9ea1aa}:host-context([theme=billableCharge]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=billableCharge]) item-title h6,:host-context([theme=billableCharge]) i{color:#fff}:host-context([theme=billableCharge]) item-content>*{color:#ffffffa6}:host-context([theme=billableCharge]):hover,:host-context([theme=billableCharge]):active{background:#9ea1aa}:host-context([theme=payableCharge]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=payableCharge]) item-title h6,:host-context([theme=payableCharge]) i{color:#fff}:host-context([theme=payableCharge]) item-content>*{color:#ffffffa6}:host-context([theme=payableCharge]):hover,:host-context([theme=payableCharge]):active{background:#9ea1aa}:host-context([theme=user]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=user]) item-title h6,:host-context([theme=user]) i{color:#fff}:host-context([theme=user]) item-content>*{color:#ffffffa6}:host-context([theme=user]):hover,:host-context([theme=user]):active{background:#9ea1aa}:host-context([theme=corporateUser]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=corporateUser]) item-title h6,:host-context([theme=corporateUser]) i{color:#fff}:host-context([theme=corporateUser]) item-content>*{color:#ffffffa6}:host-context([theme=corporateUser]):hover,:host-context([theme=corporateUser]):active{background:#9ea1aa}:host-context([theme=distributionList]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=distributionList]) item-title h6,:host-context([theme=distributionList]) i{color:#fff}:host-context([theme=distributionList]) item-content>*{color:#ffffffa6}:host-context([theme=distributionList]):hover,:host-context([theme=distributionList]):active{background:#9ea1aa}:host-context([theme=credential]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=credential]) item-title h6,:host-context([theme=credential]) i{color:#fff}:host-context([theme=credential]) item-content>*{color:#ffffffa6}:host-context([theme=credential]):hover,:host-context([theme=credential]):active{background:#9ea1aa}:host-context([theme=person]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=person]) item-title h6,:host-context([theme=person]) i{color:#fff}:host-context([theme=person]) item-content>*{color:#ffffffa6}:host-context([theme=person]):hover,:host-context([theme=person]):active{background:#9ea1aa}:host{border-bottom:1px solid #f4f4f4;border-bottom:1px solid var(--border, #f4f4f4);padding:1rem;display:flex;flex-direction:row;outline:none}:host:hover{background:rgba(74,137,220,.2)}:host.active{background:rgba(74,137,220,.3)}:host:last-child{border-bottom:none}:host .list-item{display:flex;flex-direction:column;flex:1 0 100%}\n"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
153
125
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoListItemElement, decorators: [{
154
126
  type: Component,
155
- args: [{
156
- selector: 'novo-list-item, a[list-item], button[list-item]',
157
- template: `
127
+ args: [{ selector: 'novo-list-item, a[list-item], button[list-item]', template: `
158
128
  <div class="list-item" [ngClass]="{ avatar: avatar }" *ngIf="_content || _header">
159
129
  <ng-content select="item-header, novo-item-header"></ng-content>
160
130
  <ng-content select="item-content, novo-item-content"></ng-content>
161
131
  </div>
162
132
  <ng-content></ng-content>
163
133
  <ng-content select="item-end, novo-item-end"></ng-content>
164
- `,
165
- host: {
134
+ `, host: {
166
135
  class: 'novo-list-item',
167
- },
168
- }]
136
+ }, styles: [":host-context([theme=black]){background:#000000;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=black]) item-title h6,:host-context([theme=black]) i{color:#fff}:host-context([theme=black]) item-content>*{color:#ffffffa6}:host-context([theme=black]):hover,:host-context([theme=black]):active{background:#333333}:host-context([theme=white]){background:#ffffff;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=white]) item-title h6,:host-context([theme=white]) i{color:#3d464d}:host-context([theme=white]) item-content>*{color:#ffffffa6}:host-context([theme=white]):hover,:host-context([theme=white]):active{background:white}:host-context([theme=gray]){background:#9e9e9e;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=gray]) item-title h6,:host-context([theme=gray]) i{color:#3d464d}:host-context([theme=gray]) item-content>*{color:#ffffffa6}:host-context([theme=gray]):hover,:host-context([theme=gray]):active{background:#d1d1d1}:host-context([theme=grey]){background:#9e9e9e;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=grey]) item-title h6,:host-context([theme=grey]) i{color:#3d464d}:host-context([theme=grey]) item-content>*{color:#ffffffa6}:host-context([theme=grey]):hover,:host-context([theme=grey]):active{background:#d1d1d1}:host-context([theme=offWhite]){background:#f7f7f7;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=offWhite]) item-title h6,:host-context([theme=offWhite]) i{color:#3d464d}:host-context([theme=offWhite]) item-content>*{color:#ffffffa6}:host-context([theme=offWhite]):hover,:host-context([theme=offWhite]):active{background:white}:host-context([theme=bright]){background:#f7f7f7;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=bright]) item-title h6,:host-context([theme=bright]) i{color:#3d464d}:host-context([theme=bright]) item-content>*{color:#ffffffa6}:host-context([theme=bright]):hover,:host-context([theme=bright]):active{background:white}:host-context([theme=light]){background:#dbdbdb;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=light]) item-title h6,:host-context([theme=light]) i{color:#3d464d}:host-context([theme=light]) item-content>*{color:#ffffffa6}:host-context([theme=light]):hover,:host-context([theme=light]):active{background:white}:host-context([theme=neutral]){background:#4f5361;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=neutral]) item-title h6,:host-context([theme=neutral]) i{color:#fff}:host-context([theme=neutral]) item-content>*{color:#ffffffa6}:host-context([theme=neutral]):hover,:host-context([theme=neutral]):active{background:#7f8497}:host-context([theme=dark]){background:#3d464d;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=dark]) item-title h6,:host-context([theme=dark]) i{color:#fff}:host-context([theme=dark]) item-content>*{color:#ffffffa6}:host-context([theme=dark]):hover,:host-context([theme=dark]):active{background:#6a7a86}:host-context([theme=orange]){background:#ff6900;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=orange]) item-title h6,:host-context([theme=orange]) i{color:#3d464d}:host-context([theme=orange]) item-content>*{color:#ffffffa6}:host-context([theme=orange]):hover,:host-context([theme=orange]):active{background:#ffa566}:host-context([theme=navigation]){background:#202945;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=navigation]) item-title h6,:host-context([theme=navigation]) i{color:#fff}:host-context([theme=navigation]) item-content>*{color:#ffffffa6}:host-context([theme=navigation]):hover,:host-context([theme=navigation]):active{background:#40528b}:host-context([theme=skyBlue]){background:#009bdf;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=skyBlue]) item-title h6,:host-context([theme=skyBlue]) i{color:#fff}:host-context([theme=skyBlue]) item-content>*{color:#ffffffa6}:host-context([theme=skyBlue]):hover,:host-context([theme=skyBlue]):active{background:#46c7ff}:host-context([theme=steel]){background:#5b6770;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=steel]) item-title h6,:host-context([theme=steel]) i{color:#fff}:host-context([theme=steel]) item-content>*{color:#ffffffa6}:host-context([theme=steel]):hover,:host-context([theme=steel]):active{background:#8e9aa3}:host-context([theme=metal]){background:#637893;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=metal]) item-title h6,:host-context([theme=metal]) i{color:#fff}:host-context([theme=metal]) item-content>*{color:#ffffffa6}:host-context([theme=metal]):hover,:host-context([theme=metal]):active{background:#9eacbe}:host-context([theme=sand]){background:#f4f4f4;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=sand]) item-title h6,:host-context([theme=sand]) i{color:#3d464d}:host-context([theme=sand]) item-content>*{color:#ffffffa6}:host-context([theme=sand]):hover,:host-context([theme=sand]):active{background:white}:host-context([theme=silver]){background:#e2e2e2;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=silver]) item-title h6,:host-context([theme=silver]) i{color:#3d464d}:host-context([theme=silver]) item-content>*{color:#ffffffa6}:host-context([theme=silver]):hover,:host-context([theme=silver]):active{background:white}:host-context([theme=stone]){background:#bebebe;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=stone]) item-title h6,:host-context([theme=stone]) i{color:#3d464d}:host-context([theme=stone]) item-content>*{color:#ffffffa6}:host-context([theme=stone]):hover,:host-context([theme=stone]):active{background:#f1f1f1}:host-context([theme=ash]){background:#a0a0a0;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=ash]) item-title h6,:host-context([theme=ash]) i{color:#3d464d}:host-context([theme=ash]) item-content>*{color:#ffffffa6}:host-context([theme=ash]):hover,:host-context([theme=ash]):active{background:lightgray}:host-context([theme=slate]){background:#707070;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=slate]) item-title h6,:host-context([theme=slate]) i{color:#fff}:host-context([theme=slate]) item-content>*{color:#ffffffa6}:host-context([theme=slate]):hover,:host-context([theme=slate]):active{background:#a3a3a3}:host-context([theme=onyx]){background:#526980;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=onyx]) item-title h6,:host-context([theme=onyx]) i{color:#fff}:host-context([theme=onyx]) item-content>*{color:#ffffffa6}:host-context([theme=onyx]):hover,:host-context([theme=onyx]):active{background:#869cb2}:host-context([theme=charcoal]){background:#282828;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=charcoal]) item-title h6,:host-context([theme=charcoal]) i{color:#fff}:host-context([theme=charcoal]) item-content>*{color:#ffffffa6}:host-context([theme=charcoal]):hover,:host-context([theme=charcoal]):active{background:#5b5b5b}:host-context([theme=moonlight]){background:#1a242f;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=moonlight]) item-title h6,:host-context([theme=moonlight]) i{color:#fff}:host-context([theme=moonlight]) item-content>*{color:#ffffffa6}:host-context([theme=moonlight]):hover,:host-context([theme=moonlight]):active{background:#3e5671}:host-context([theme=midnight]){background:#202945;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=midnight]) item-title h6,:host-context([theme=midnight]) i{color:#fff}:host-context([theme=midnight]) item-content>*{color:#ffffffa6}:host-context([theme=midnight]):hover,:host-context([theme=midnight]):active{background:#40528b}:host-context([theme=darkness]){background:#161f27;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=darkness]) item-title h6,:host-context([theme=darkness]) i{color:#fff}:host-context([theme=darkness]) item-content>*{color:#ffffffa6}:host-context([theme=darkness]):hover,:host-context([theme=darkness]):active{background:#3b5368}:host-context([theme=navy]){background:#0d2d42;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=navy]) item-title h6,:host-context([theme=navy]) i{color:#fff}:host-context([theme=navy]) item-content>*{color:#ffffffa6}:host-context([theme=navy]):hover,:host-context([theme=navy]):active{background:#1e6797}:host-context([theme=aqua]){background:#3bafda;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=aqua]) item-title h6,:host-context([theme=aqua]) i{color:#3d464d}:host-context([theme=aqua]) item-content>*{color:#ffffffa6}:host-context([theme=aqua]):hover,:host-context([theme=aqua]):active{background:#91d2ea}:host-context([theme=ocean]){background:#4a89dc;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=ocean]) item-title h6,:host-context([theme=ocean]) i{color:#fff}:host-context([theme=ocean]) item-content>*{color:#ffffffa6}:host-context([theme=ocean]):hover,:host-context([theme=ocean]):active{background:#9fc1ed}:host-context([theme=mint]){background:#37bc9b;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=mint]) item-title h6,:host-context([theme=mint]) i{color:#3d464d}:host-context([theme=mint]) item-content>*{color:#ffffffa6}:host-context([theme=mint]):hover,:host-context([theme=mint]):active{background:#7fdac3}:host-context([theme=grass]){background:#8cc152;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=grass]) item-title h6,:host-context([theme=grass]) i{color:#fff}:host-context([theme=grass]) item-content>*{color:#ffffffa6}:host-context([theme=grass]):hover,:host-context([theme=grass]):active{background:#bedc9d}:host-context([theme=sunflower]){background:#f6b042;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=sunflower]) item-title h6,:host-context([theme=sunflower]) i{color:#fff}:host-context([theme=sunflower]) item-content>*{color:#ffffffa6}:host-context([theme=sunflower]):hover,:host-context([theme=sunflower]):active{background:#fbd9a3}:host-context([theme=bittersweet]){background:#eb6845;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=bittersweet]) item-title h6,:host-context([theme=bittersweet]) i{color:#fff}:host-context([theme=bittersweet]) item-content>*{color:#ffffffa6}:host-context([theme=bittersweet]):hover,:host-context([theme=bittersweet]):active{background:#f5b3a1}:host-context([theme=grapefruit]){background:#da4453;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=grapefruit]) item-title h6,:host-context([theme=grapefruit]) i{color:#fff}:host-context([theme=grapefruit]) item-content>*{color:#ffffffa6}:host-context([theme=grapefruit]):hover,:host-context([theme=grapefruit]):active{background:#eb99a1}:host-context([theme=carnation]){background:#d770ad;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=carnation]) item-title h6,:host-context([theme=carnation]) i{color:#fff}:host-context([theme=carnation]) item-content>*{color:#ffffffa6}:host-context([theme=carnation]):hover,:host-context([theme=carnation]):active{background:#edc0db}:host-context([theme=lavender]){background:#967adc;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=lavender]) item-title h6,:host-context([theme=lavender]) i{color:#fff}:host-context([theme=lavender]) item-content>*{color:#ffffffa6}:host-context([theme=lavender]):hover,:host-context([theme=lavender]):active{background:#d6cbf1}:host-context([theme=mountain]){background:#9678b6;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=mountain]) item-title h6,:host-context([theme=mountain]) i{color:#fff}:host-context([theme=mountain]) item-content>*{color:#ffffffa6}:host-context([theme=mountain]):hover,:host-context([theme=mountain]):active{background:#c9bada}:host-context([theme=info]){background:#4a89dc;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=info]) item-title h6,:host-context([theme=info]) i{color:#fff}:host-context([theme=info]) item-content>*{color:#ffffffa6}:host-context([theme=info]):hover,:host-context([theme=info]):active{background:#9fc1ed}:host-context([theme=positive]){background:#4a89dc;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=positive]) item-title h6,:host-context([theme=positive]) i{color:#fff}:host-context([theme=positive]) item-content>*{color:#ffffffa6}:host-context([theme=positive]):hover,:host-context([theme=positive]):active{background:#9fc1ed}:host-context([theme=success]){background:#8cc152;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=success]) item-title h6,:host-context([theme=success]) i{color:#fff}:host-context([theme=success]) item-content>*{color:#ffffffa6}:host-context([theme=success]):hover,:host-context([theme=success]):active{background:#bedc9d}:host-context([theme=negative]){background:#da4453;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=negative]) item-title h6,:host-context([theme=negative]) i{color:#fff}:host-context([theme=negative]) item-content>*{color:#ffffffa6}:host-context([theme=negative]):hover,:host-context([theme=negative]):active{background:#eb99a1}:host-context([theme=danger]){background:#da4453;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=danger]) item-title h6,:host-context([theme=danger]) i{color:#fff}:host-context([theme=danger]) item-content>*{color:#ffffffa6}:host-context([theme=danger]):hover,:host-context([theme=danger]):active{background:#eb99a1}:host-context([theme=error]){background:#da4453;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=error]) item-title h6,:host-context([theme=error]) i{color:#fff}:host-context([theme=error]) item-content>*{color:#ffffffa6}:host-context([theme=error]):hover,:host-context([theme=error]):active{background:#eb99a1}:host-context([theme=warning]){background:#f6b042;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=warning]) item-title h6,:host-context([theme=warning]) i{color:#fff}:host-context([theme=warning]) item-content>*{color:#ffffffa6}:host-context([theme=warning]):hover,:host-context([theme=warning]):active{background:#fbd9a3}:host-context([theme=empty]){background:#cccdcc;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=empty]) item-title h6,:host-context([theme=empty]) i{color:#3d464d}:host-context([theme=empty]) item-content>*{color:#ffffffa6}:host-context([theme=empty]):hover,:host-context([theme=empty]):active{background:white}:host-context([theme=disabled]){background:#bebebe;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=disabled]) item-title h6,:host-context([theme=disabled]) i{color:#3d464d}:host-context([theme=disabled]) item-content>*{color:#ffffffa6}:host-context([theme=disabled]):hover,:host-context([theme=disabled]):active{background:#f1f1f1}:host-context([theme=background]){background:#f7f7f7;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=background]) item-title h6,:host-context([theme=background]) i{color:#3d464d}:host-context([theme=background]) item-content>*{color:#ffffffa6}:host-context([theme=background]):hover,:host-context([theme=background]):active{background:white}:host-context([theme=backgroundDark]){background:#e2e2e2;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=backgroundDark]) item-title h6,:host-context([theme=backgroundDark]) i{color:#3d464d}:host-context([theme=backgroundDark]) item-content>*{color:#ffffffa6}:host-context([theme=backgroundDark]):hover,:host-context([theme=backgroundDark]):active{background:white}:host-context([theme=presentation]){background:#5b6770;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=presentation]) item-title h6,:host-context([theme=presentation]) i{color:#fff}:host-context([theme=presentation]) item-content>*{color:#ffffffa6}:host-context([theme=presentation]):hover,:host-context([theme=presentation]):active{background:#8e9aa3}:host-context([theme=bullhorn]){background:#ff6900;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=bullhorn]) item-title h6,:host-context([theme=bullhorn]) i{color:#3d464d}:host-context([theme=bullhorn]) item-content>*{color:#ffffffa6}:host-context([theme=bullhorn]):hover,:host-context([theme=bullhorn]):active{background:#ffa566}:host-context([theme=pulse]){background:#3bafda;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=pulse]) item-title h6,:host-context([theme=pulse]) i{color:#3d464d}:host-context([theme=pulse]) item-content>*{color:#ffffffa6}:host-context([theme=pulse]):hover,:host-context([theme=pulse]):active{background:#91d2ea}:host-context([theme=company]){background:#3399dd;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=company]) item-title h6,:host-context([theme=company]) i{color:#fff}:host-context([theme=company]) item-content>*{color:#ffffffa6}:host-context([theme=company]):hover,:host-context([theme=company]):active{background:#8ac5ec}:host-context([theme=candidate]){background:#44bb77;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=candidate]) item-title h6,:host-context([theme=candidate]) i{color:#fff}:host-context([theme=candidate]) item-content>*{color:#ffffffa6}:host-context([theme=candidate]):hover,:host-context([theme=candidate]):active{background:#8fd6ad}:host-context([theme=lead]){background:#aa6699;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=lead]) item-title h6,:host-context([theme=lead]) i{color:#fff}:host-context([theme=lead]) item-content>*{color:#ffffffa6}:host-context([theme=lead]):hover,:host-context([theme=lead]):active{background:#cea8c5}:host-context([theme=contact]){background:#ffaa44;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=contact]) item-title h6,:host-context([theme=contact]) i{color:#fff}:host-context([theme=contact]) item-content>*{color:#ffffffa6}:host-context([theme=contact]):hover,:host-context([theme=contact]):active{background:#ffd8aa}:host-context([theme=clientcontact]){background:#ffaa44;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=clientcontact]) item-title h6,:host-context([theme=clientcontact]) i{color:#fff}:host-context([theme=clientcontact]) item-content>*{color:#ffffffa6}:host-context([theme=clientcontact]):hover,:host-context([theme=clientcontact]):active{background:#ffd8aa}:host-context([theme=opportunity]){background:#662255;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=opportunity]) item-title h6,:host-context([theme=opportunity]) i{color:#fff}:host-context([theme=opportunity]) item-content>*{color:#ffffffa6}:host-context([theme=opportunity]):hover,:host-context([theme=opportunity]):active{background:#b33c95}:host-context([theme=job]){background:#bb5566;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=job]) item-title h6,:host-context([theme=job]) i{color:#fff}:host-context([theme=job]) item-content>*{color:#ffffffa6}:host-context([theme=job]):hover,:host-context([theme=job]):active{background:#d89ea8}:host-context([theme=joborder]){background:#bb5566;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=joborder]) item-title h6,:host-context([theme=joborder]) i{color:#fff}:host-context([theme=joborder]) item-content>*{color:#ffffffa6}:host-context([theme=joborder]):hover,:host-context([theme=joborder]):active{background:#d89ea8}:host-context([theme=submission]){background:#a9adbb;color:#3d464d;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=submission]) item-title h6,:host-context([theme=submission]) i{color:#3d464d}:host-context([theme=submission]) item-content>*{color:#ffffffa6}:host-context([theme=submission]):hover,:host-context([theme=submission]):active{background:#e2e3e8}:host-context([theme=sendout]){background:#747884;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=sendout]) item-title h6,:host-context([theme=sendout]) i{color:#fff}:host-context([theme=sendout]) item-content>*{color:#ffffffa6}:host-context([theme=sendout]):hover,:host-context([theme=sendout]):active{background:#aaacb4}:host-context([theme=placement]){background:#0b344f;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=placement]) item-title h6,:host-context([theme=placement]) i{color:#fff}:host-context([theme=placement]) item-content>*{color:#ffffffa6}:host-context([theme=placement]):hover,:host-context([theme=placement]):active{background:#176fa9}:host-context([theme=note]){background:#747884;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=note]) item-title h6,:host-context([theme=note]) i{color:#fff}:host-context([theme=note]) item-content>*{color:#ffffffa6}:host-context([theme=note]):hover,:host-context([theme=note]):active{background:#aaacb4}:host-context([theme=contract]){background:#454ea0;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=contract]) item-title h6,:host-context([theme=contract]) i{color:#fff}:host-context([theme=contract]) item-content>*{color:#ffffffa6}:host-context([theme=contract]):hover,:host-context([theme=contract]):active{background:#8289c9}:host-context([theme=jobCode]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=jobCode]) item-title h6,:host-context([theme=jobCode]) i{color:#fff}:host-context([theme=jobCode]) item-content>*{color:#ffffffa6}:host-context([theme=jobCode]):hover,:host-context([theme=jobCode]):active{background:#9ea1aa}:host-context([theme=earnCode]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=earnCode]) item-title h6,:host-context([theme=earnCode]) i{color:#fff}:host-context([theme=earnCode]) item-content>*{color:#ffffffa6}:host-context([theme=earnCode]):hover,:host-context([theme=earnCode]):active{background:#9ea1aa}:host-context([theme=invoiceStatement]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=invoiceStatement]) item-title h6,:host-context([theme=invoiceStatement]) i{color:#fff}:host-context([theme=invoiceStatement]) item-content>*{color:#ffffffa6}:host-context([theme=invoiceStatement]):hover,:host-context([theme=invoiceStatement]):active{background:#9ea1aa}:host-context([theme=billableCharge]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=billableCharge]) item-title h6,:host-context([theme=billableCharge]) i{color:#fff}:host-context([theme=billableCharge]) item-content>*{color:#ffffffa6}:host-context([theme=billableCharge]):hover,:host-context([theme=billableCharge]):active{background:#9ea1aa}:host-context([theme=payableCharge]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=payableCharge]) item-title h6,:host-context([theme=payableCharge]) i{color:#fff}:host-context([theme=payableCharge]) item-content>*{color:#ffffffa6}:host-context([theme=payableCharge]):hover,:host-context([theme=payableCharge]):active{background:#9ea1aa}:host-context([theme=user]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=user]) item-title h6,:host-context([theme=user]) i{color:#fff}:host-context([theme=user]) item-content>*{color:#ffffffa6}:host-context([theme=user]):hover,:host-context([theme=user]):active{background:#9ea1aa}:host-context([theme=corporateUser]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=corporateUser]) item-title h6,:host-context([theme=corporateUser]) i{color:#fff}:host-context([theme=corporateUser]) item-content>*{color:#ffffffa6}:host-context([theme=corporateUser]):hover,:host-context([theme=corporateUser]):active{background:#9ea1aa}:host-context([theme=distributionList]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=distributionList]) item-title h6,:host-context([theme=distributionList]) i{color:#fff}:host-context([theme=distributionList]) item-content>*{color:#ffffffa6}:host-context([theme=distributionList]):hover,:host-context([theme=distributionList]):active{background:#9ea1aa}:host-context([theme=credential]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=credential]) item-title h6,:host-context([theme=credential]) i{color:#fff}:host-context([theme=credential]) item-content>*{color:#ffffffa6}:host-context([theme=credential]):hover,:host-context([theme=credential]):active{background:#9ea1aa}:host-context([theme=person]){background:#696d79;color:#fff;border:unset;border-bottom:1px solid rgba(255,255,255,.1);outline:none}:host-context([theme=person]) item-title h6,:host-context([theme=person]) i{color:#fff}:host-context([theme=person]) item-content>*{color:#ffffffa6}:host-context([theme=person]):hover,:host-context([theme=person]):active{background:#9ea1aa}:host{border-bottom:1px solid #f4f4f4;border-bottom:1px solid var(--border, #f4f4f4);padding:1rem;display:flex;flex-direction:row;outline:none}:host:hover{background:rgba(74,137,220,.2)}:host.active{background:rgba(74,137,220,.3)}:host:last-child{border-bottom:none}:host .list-item{display:flex;flex-direction:column;flex:1 0 100%}\n"] }]
169
137
  }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _content: [{
170
138
  type: ContentChild,
171
139
  args: [NovoItemContentElement]
@@ -173,4 +141,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
173
141
  type: ContentChild,
174
142
  args: [NovoItemHeaderElement]
175
143
  }] } });
176
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTGlzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25vdm8tZWxlbWVudHMvc3JjL2VsZW1lbnRzL2xpc3QvTGlzdC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNO0FBQ04sT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsVUFBVSxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFZbkYsTUFBTSxPQUFPLGVBQWU7SUFNMUIsWUFBbUIsT0FBbUI7UUFBbkIsWUFBTyxHQUFQLE9BQU8sQ0FBWTtJQUFHLENBQUM7OzZHQU4vQixlQUFlO2lHQUFmLGVBQWUsaVNBRmhCLDZCQUE2Qjs0RkFFNUIsZUFBZTtrQkFWM0IsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsV0FBVztvQkFDckIsSUFBSSxFQUFFO3dCQUNKLEtBQUssRUFBRSxXQUFXO3dCQUNsQix1QkFBdUIsRUFBRSwwQkFBMEI7d0JBQ25ELHlCQUF5QixFQUFFLDRCQUE0Qjt3QkFDdkQsY0FBYyxFQUFFLE9BQU87cUJBQ3hCO29CQUNELFFBQVEsRUFBRSw2QkFBNkI7aUJBQ3hDO2lHQUdDLEtBQUs7c0JBREosS0FBSztnQkFHTixTQUFTO3NCQURSLEtBQUs7O0FBYVIsTUFBTSxPQUFPLHFCQUFxQjs7bUhBQXJCLHFCQUFxQjt1R0FBckIscUJBQXFCLDZKQUx0QiwwRUFBMEU7NEZBS3pFLHFCQUFxQjtrQkFQakMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsK0JBQStCO29CQUN6QyxRQUFRLEVBQUUsMEVBQTBFO29CQUNwRixJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLGtCQUFrQjtxQkFDMUI7aUJBQ0Y7OEJBR0MsSUFBSTtzQkFESCxLQUFLO2dCQUdOLEtBQUs7c0JBREosS0FBSzs7QUFXUixNQUFNLE9BQU8sb0JBQW9COztrSEFBcEIsb0JBQW9CO3NHQUFwQixvQkFBb0IsZ0hBTHJCLDJCQUEyQjs0RkFLMUIsb0JBQW9CO2tCQVBoQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSw2QkFBNkI7b0JBQ3ZDLFFBQVEsRUFBRSwyQkFBMkI7b0JBQ3JDLElBQUksRUFBRTt3QkFDSixLQUFLLEVBQUUsaUJBQWlCO3FCQUN6QjtpQkFDRjs7QUFnQkQsTUFBTSxPQUFPLHFCQUFxQjs7bUhBQXJCLHFCQUFxQjt1R0FBckIscUJBQXFCLG1IQVh0Qjs7Ozs7O0dBTVQ7NEZBS1UscUJBQXFCO2tCQWJqQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSwrQkFBK0I7b0JBQ3pDLFFBQVEsRUFBRTs7Ozs7O0dBTVQ7b0JBQ0QsSUFBSSxFQUFFO3dCQUNKLEtBQUssRUFBRSxrQkFBa0I7cUJBQzFCO2lCQUNGOztBQVVELE1BQU0sT0FBTyxtQkFBbUI7O2lIQUFuQixtQkFBbUI7cUdBQW5CLG1CQUFtQiwrSEFMcEIsNkJBQTZCOzRGQUs1QixtQkFBbUI7a0JBUC9CLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHVDQUF1QztvQkFDakQsUUFBUSxFQUFFLDZCQUE2QjtvQkFDdkMsSUFBSSxFQUFFO3dCQUNKLEtBQUssRUFBRSxzQkFBc0I7cUJBQzlCO2lCQUNGOztBQVlELE1BQU0sT0FBTyxzQkFBc0I7O29IQUF0QixzQkFBc0I7d0dBQXRCLHNCQUFzQix3UkFGdkIsNkJBQTZCOzRGQUU1QixzQkFBc0I7a0JBVGxDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGlDQUFpQztvQkFDM0MsSUFBSSxFQUFFO3dCQUNKLEtBQUssRUFBRSxtQkFBbUI7d0JBQzFCLHVCQUF1QixFQUFFLDBCQUEwQjt3QkFDbkQseUJBQXlCLEVBQUUsNEJBQTRCO3FCQUN4RDtvQkFDRCxRQUFRLEVBQUUsNkJBQTZCO2lCQUN4Qzs4QkFHQyxTQUFTO3NCQURSLEtBQUs7O0FBV1IsTUFBTSxPQUFPLGtCQUFrQjs7Z0hBQWxCLGtCQUFrQjtvR0FBbEIsa0JBQWtCLDBHQUxuQiw2QkFBNkI7NEZBSzVCLGtCQUFrQjtrQkFQOUIsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUseUJBQXlCO29CQUNuQyxRQUFRLEVBQUUsNkJBQTZCO29CQUN2QyxJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLGVBQWU7cUJBQ3ZCO2lCQUNGOztBQWlCRCxNQUFNLE9BQU8sbUJBQW1CO0lBSzlCLFlBQW9CLE9BQW1CO1FBQW5CLFlBQU8sR0FBUCxPQUFPLENBQVk7UUFKdkMsV0FBTSxHQUFZLEtBQUssQ0FBQztJQUlrQixDQUFDO0lBRTNDLFFBQVE7UUFDTixJQUFJLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxhQUFhLENBQUMsYUFBYSxDQUFDLENBQUM7SUFDMUUsQ0FBQzs7aUhBVFUsbUJBQW1CO3FHQUFuQixtQkFBbUIseUtBRWhCLHNCQUFzQiwwRUFDdEIscUJBQXFCLGdEQWZ6Qjs7Ozs7OztHQU9UOzRGQUtVLG1CQUFtQjtrQkFkL0IsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsaURBQWlEO29CQUMzRCxRQUFRLEVBQUU7Ozs7Ozs7R0FPVDtvQkFDRCxJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLGdCQUFnQjtxQkFDeEI7aUJBQ0Y7aUdBR3VDLFFBQVE7c0JBQTdDLFlBQVk7dUJBQUMsc0JBQXNCO2dCQUNDLE9BQU87c0JBQTNDLFlBQVk7dUJBQUMscUJBQXFCIiwic291cmNlc0NvbnRlbnQiOlsiLy8gTkcyXG5pbXBvcnQgeyBDb21wb25lbnQsIENvbnRlbnRDaGlsZCwgRWxlbWVudFJlZiwgSW5wdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdub3ZvLWxpc3QnLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdub3ZvLWxpc3QnLFxuICAgICdbY2xhc3MudmVydGljYWwtbGlzdF0nOiAnZGlyZWN0aW9uID09PSBcInZlcnRpY2FsXCInLFxuICAgICdbY2xhc3MuaG9yaXpvbnRhbC1saXN0XSc6ICdkaXJlY3Rpb24gPT09IFwiaG9yaXpvbnRhbFwiJyxcbiAgICAnW2F0dHIudGhlbWVdJzogJ3RoZW1lJyxcbiAgfSxcbiAgdGVtcGxhdGU6IGAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PiBgLFxufSlcbmV4cG9ydCBjbGFzcyBOb3ZvTGlzdEVsZW1lbnQge1xuICBASW5wdXQoKVxuICB0aGVtZTogc3RyaW5nO1xuICBASW5wdXQoKVxuICBkaXJlY3Rpb246IHN0cmluZztcblxuICBjb25zdHJ1Y3RvcihwdWJsaWMgZWxlbWVudDogRWxlbWVudFJlZikge31cbn1cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnaXRlbS1hdmF0YXIsIG5vdm8taXRlbS1hdmF0YXInLFxuICB0ZW1wbGF0ZTogYCA8bm92by1pY29uICpuZ0lmPVwiaWNvblwiIFtjb2xvcl09XCJjb2xvciB8fCBpY29uXCI+e3sgaWNvbiB9fTwvbm92by1pY29uPiBgLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdub3ZvLWl0ZW0tYXZhdGFyJyxcbiAgfSxcbn0pXG5leHBvcnQgY2xhc3MgTm92b0l0ZW1BdmF0YXJFbGVtZW50IHtcbiAgQElucHV0KClcbiAgaWNvbjogc3RyaW5nO1xuICBASW5wdXQoKVxuICBjb2xvcjogc3RyaW5nO1xufVxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdpdGVtLXRpdGxlLCBub3ZvLWl0ZW0tdGl0bGUnLFxuICB0ZW1wbGF0ZTogYDxuZy1jb250ZW50PjwvbmctY29udGVudD5gLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdub3ZvLWl0ZW0tdGl0bGUnLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBOb3ZvSXRlbVRpdGxlRWxlbWVudCB7fVxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdpdGVtLWhlYWRlciwgbm92by1pdGVtLWhlYWRlcicsXG4gIHRlbXBsYXRlOiBgXG4gICAgPG5vdm8tdGl0bGUgY2xhc3M9XCJub3ZvLWl0ZW0taGVhZGVyLWNvbnRhaW5lclwiIHNpemU9XCJtZFwiPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiaXRlbS1hdmF0YXIsIG5vdm8taXRlbS1hdmF0YXJcIj48L25nLWNvbnRlbnQ+XG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJpdGVtLXRpdGxlLCBub3ZvLWl0ZW0tdGl0bGVcIj48L25nLWNvbnRlbnQ+XG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJpdGVtLWhlYWRlci1lbmQsIG5vdm8taXRlbS1oZWFkZXItZW5kXCI+PC9uZy1jb250ZW50PlxuICAgIDwvbm92by10aXRsZT5cbiAgYCxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnbm92by1pdGVtLWhlYWRlcicsXG4gIH0sXG59KVxuZXhwb3J0IGNsYXNzIE5vdm9JdGVtSGVhZGVyRWxlbWVudCB7fVxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdpdGVtLWhlYWRlci1lbmQsIG5vdm8taXRlbS1oZWFkZXItZW5kJyxcbiAgdGVtcGxhdGU6IGAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PiBgLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdub3ZvLWl0ZW0taGVhZGVyLWVuZCcsXG4gIH0sXG59KVxuZXhwb3J0IGNsYXNzIE5vdm9JdGVtRGF0ZUVsZW1lbnQge31cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnaXRlbS1jb250ZW50LCBub3ZvLWl0ZW0tY29udGVudCcsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ25vdm8taXRlbS1jb250ZW50JyxcbiAgICAnW2NsYXNzLnZlcnRpY2FsLWxpc3RdJzogJ2RpcmVjdGlvbiA9PT0gXCJ2ZXJ0aWNhbFwiJyxcbiAgICAnW2NsYXNzLmhvcml6b250YWwtbGlzdF0nOiAnZGlyZWN0aW9uID09PSBcImhvcml6b250YWxcIicsXG4gIH0sXG4gIHRlbXBsYXRlOiBgIDxuZy1jb250ZW50PjwvbmctY29udGVudD4gYCxcbn0pXG5leHBvcnQgY2xhc3MgTm92b0l0ZW1Db250ZW50RWxlbWVudCB7XG4gIEBJbnB1dCgpXG4gIGRpcmVjdGlvbjogc3RyaW5nO1xufVxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdpdGVtLWVuZCwgbm92by1pdGVtLWVuZCcsXG4gIHRlbXBsYXRlOiBgIDxuZy1jb250ZW50PjwvbmctY29udGVudD4gYCxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnbm92by1pdGVtLWVuZCcsXG4gIH0sXG59KVxuZXhwb3J0IGNsYXNzIE5vdm9JdGVtRW5kRWxlbWVudCB7fVxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdub3ZvLWxpc3QtaXRlbSwgYVtsaXN0LWl0ZW1dLCBidXR0b25bbGlzdC1pdGVtXScsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGRpdiBjbGFzcz1cImxpc3QtaXRlbVwiIFtuZ0NsYXNzXT1cInsgYXZhdGFyOiBhdmF0YXIgfVwiICpuZ0lmPVwiX2NvbnRlbnQgfHwgX2hlYWRlclwiPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiaXRlbS1oZWFkZXIsIG5vdm8taXRlbS1oZWFkZXJcIj48L25nLWNvbnRlbnQ+XG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJpdGVtLWNvbnRlbnQsIG5vdm8taXRlbS1jb250ZW50XCI+PC9uZy1jb250ZW50PlxuICAgIDwvZGl2PlxuICAgIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJpdGVtLWVuZCwgbm92by1pdGVtLWVuZFwiPjwvbmctY29udGVudD5cbiAgYCxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnbm92by1saXN0LWl0ZW0nLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBOb3ZvTGlzdEl0ZW1FbGVtZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgYXZhdGFyOiBib29sZWFuID0gZmFsc2U7XG4gIEBDb250ZW50Q2hpbGQoTm92b0l0ZW1Db250ZW50RWxlbWVudCkgX2NvbnRlbnQ6IE5vdm9JdGVtQ29udGVudEVsZW1lbnQ7XG4gIEBDb250ZW50Q2hpbGQoTm92b0l0ZW1IZWFkZXJFbGVtZW50KSBfaGVhZGVyOiBOb3ZvSXRlbUhlYWRlckVsZW1lbnQ7XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBlbGVtZW50OiBFbGVtZW50UmVmKSB7fVxuXG4gIG5nT25Jbml0KCkge1xuICAgIHRoaXMuYXZhdGFyID0gISF0aGlzLmVsZW1lbnQubmF0aXZlRWxlbWVudC5xdWVyeVNlbGVjdG9yKCdpdGVtLWF2YXRhcicpO1xuICB9XG59XG4iXX0=
144
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTGlzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25vdm8tZWxlbWVudHMvc3JjL2VsZW1lbnRzL2xpc3QvTGlzdC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNO0FBQ04sT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsVUFBVSxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFhbkYsTUFBTSxPQUFPLGVBQWU7SUFNMUIsWUFBbUIsT0FBbUI7UUFBbkIsWUFBTyxHQUFQLE9BQU8sQ0FBWTtJQUFHLENBQUM7OzZHQU4vQixlQUFlO2lHQUFmLGVBQWUsaVNBSGhCLDZCQUE2Qjs0RkFHNUIsZUFBZTtrQkFYM0IsU0FBUzsrQkFDRSxXQUFXLFFBQ2Y7d0JBQ0osS0FBSyxFQUFFLFdBQVc7d0JBQ2xCLHVCQUF1QixFQUFFLDBCQUEwQjt3QkFDbkQseUJBQXlCLEVBQUUsNEJBQTRCO3dCQUN2RCxjQUFjLEVBQUUsT0FBTztxQkFDeEIsWUFDUyw2QkFBNkI7aUdBS3ZDLEtBQUs7c0JBREosS0FBSztnQkFHTixTQUFTO3NCQURSLEtBQUs7O0FBY1IsTUFBTSxPQUFPLHFCQUFxQjs7bUhBQXJCLHFCQUFxQjt1R0FBckIscUJBQXFCLDZKQU50QiwwRUFBMEU7NEZBTXpFLHFCQUFxQjtrQkFSakMsU0FBUzsrQkFDRSwrQkFBK0IsWUFDL0IsMEVBQTBFLFFBRTlFO3dCQUNKLEtBQUssRUFBRSxrQkFBa0I7cUJBQzFCOzhCQUlELElBQUk7c0JBREgsS0FBSztnQkFHTixLQUFLO3NCQURKLEtBQUs7O0FBWVIsTUFBTSxPQUFPLG9CQUFvQjs7a0hBQXBCLG9CQUFvQjtzR0FBcEIsb0JBQW9CLGdIQU5yQiwyQkFBMkI7NEZBTTFCLG9CQUFvQjtrQkFSaEMsU0FBUzsrQkFDRSw2QkFBNkIsWUFDN0IsMkJBQTJCLFFBRS9CO3dCQUNKLEtBQUssRUFBRSxpQkFBaUI7cUJBQ3pCOztBQWtCSCxNQUFNLE9BQU8scUJBQXFCOzttSEFBckIscUJBQXFCO3VHQUFyQixxQkFBcUIsbUhBWnRCOzs7Ozs7R0FNVDs0RkFNVSxxQkFBcUI7a0JBZGpDLFNBQVM7K0JBQ0UsK0JBQStCLFlBQy9COzs7Ozs7R0FNVCxRQUVLO3dCQUNKLEtBQUssRUFBRSxrQkFBa0I7cUJBQzFCOztBQVlILE1BQU0sT0FBTyxtQkFBbUI7O2lIQUFuQixtQkFBbUI7cUdBQW5CLG1CQUFtQiwrSEFOcEIsNkJBQTZCOzRGQU01QixtQkFBbUI7a0JBUi9CLFNBQVM7K0JBQ0UsdUNBQXVDLFlBQ3ZDLDZCQUE2QixRQUVqQzt3QkFDSixLQUFLLEVBQUUsc0JBQXNCO3FCQUM5Qjs7QUFjSCxNQUFNLE9BQU8sc0JBQXNCOztvSEFBdEIsc0JBQXNCO3dHQUF0QixzQkFBc0Isd1JBSHZCLDZCQUE2Qjs0RkFHNUIsc0JBQXNCO2tCQVZsQyxTQUFTOytCQUNFLGlDQUFpQyxRQUNyQzt3QkFDSixLQUFLLEVBQUUsbUJBQW1CO3dCQUMxQix1QkFBdUIsRUFBRSwwQkFBMEI7d0JBQ25ELHlCQUF5QixFQUFFLDRCQUE0QjtxQkFDeEQsWUFDUyw2QkFBNkI7OEJBS3ZDLFNBQVM7c0JBRFIsS0FBSzs7QUFZUixNQUFNLE9BQU8sa0JBQWtCOztnSEFBbEIsa0JBQWtCO29HQUFsQixrQkFBa0IsMEdBTm5CLDZCQUE2Qjs0RkFNNUIsa0JBQWtCO2tCQVI5QixTQUFTOytCQUNFLHlCQUF5QixZQUN6Qiw2QkFBNkIsUUFFakM7d0JBQ0osS0FBSyxFQUFFLGVBQWU7cUJBQ3ZCOztBQW1CSCxNQUFNLE9BQU8sbUJBQW1CO0lBSzlCLFlBQW9CLE9BQW1CO1FBQW5CLFlBQU8sR0FBUCxPQUFPLENBQVk7UUFKdkMsV0FBTSxHQUFZLEtBQUssQ0FBQztJQUlrQixDQUFDO0lBRTNDLFFBQVE7UUFDTixJQUFJLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxhQUFhLENBQUMsYUFBYSxDQUFDLENBQUM7SUFDMUUsQ0FBQzs7aUhBVFUsbUJBQW1CO3FHQUFuQixtQkFBbUIseUtBRWhCLHNCQUFzQiwwRUFDdEIscUJBQXFCLGdEQWhCekI7Ozs7Ozs7R0FPVDs0RkFNVSxtQkFBbUI7a0JBZi9CLFNBQVM7K0JBQ0UsaURBQWlELFlBQ2pEOzs7Ozs7O0dBT1QsUUFFSzt3QkFDSixLQUFLLEVBQUUsZ0JBQWdCO3FCQUN4QjtpR0FJcUMsUUFBUTtzQkFBN0MsWUFBWTt1QkFBQyxzQkFBc0I7Z0JBQ0MsT0FBTztzQkFBM0MsWUFBWTt1QkFBQyxxQkFBcUIiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBORzJcbmltcG9ydCB7IENvbXBvbmVudCwgQ29udGVudENoaWxkLCBFbGVtZW50UmVmLCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ25vdm8tbGlzdCcsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ25vdm8tbGlzdCcsXG4gICAgJ1tjbGFzcy52ZXJ0aWNhbC1saXN0XSc6ICdkaXJlY3Rpb24gPT09IFwidmVydGljYWxcIicsXG4gICAgJ1tjbGFzcy5ob3Jpem9udGFsLWxpc3RdJzogJ2RpcmVjdGlvbiA9PT0gXCJob3Jpem9udGFsXCInLFxuICAgICdbYXR0ci50aGVtZV0nOiAndGhlbWUnLFxuICB9LFxuICB0ZW1wbGF0ZTogYCA8bmctY29udGVudD48L25nLWNvbnRlbnQ+IGAsXG4gIHN0eWxlVXJsczogWycuL0xpc3Quc2NzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBOb3ZvTGlzdEVsZW1lbnQge1xuICBASW5wdXQoKVxuICB0aGVtZTogc3RyaW5nO1xuICBASW5wdXQoKVxuICBkaXJlY3Rpb246IHN0cmluZztcblxuICBjb25zdHJ1Y3RvcihwdWJsaWMgZWxlbWVudDogRWxlbWVudFJlZikge31cbn1cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnaXRlbS1hdmF0YXIsIG5vdm8taXRlbS1hdmF0YXInLFxuICB0ZW1wbGF0ZTogYCA8bm92by1pY29uICpuZ0lmPVwiaWNvblwiIFtjb2xvcl09XCJjb2xvciB8fCBpY29uXCI+e3sgaWNvbiB9fTwvbm92by1pY29uPiBgLFxuICBzdHlsZVVybHM6IFsnLi9saXN0LWl0ZW0taGVhZGVyLWF2YXRhci5zY3NzJ10sXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ25vdm8taXRlbS1hdmF0YXInLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBOb3ZvSXRlbUF2YXRhckVsZW1lbnQge1xuICBASW5wdXQoKVxuICBpY29uOiBzdHJpbmc7XG4gIEBJbnB1dCgpXG4gIGNvbG9yOiBzdHJpbmc7XG59XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2l0ZW0tdGl0bGUsIG5vdm8taXRlbS10aXRsZScsXG4gIHRlbXBsYXRlOiBgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PmAsXG4gIHN0eWxlVXJsczogWycuL2xpc3QtaXRlbS1oZWFkZXItdGl0bGUuc2NzcyddLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdub3ZvLWl0ZW0tdGl0bGUnLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBOb3ZvSXRlbVRpdGxlRWxlbWVudCB7fVxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdpdGVtLWhlYWRlciwgbm92by1pdGVtLWhlYWRlcicsXG4gIHRlbXBsYXRlOiBgXG4gICAgPG5vdm8tdGl0bGUgY2xhc3M9XCJub3ZvLWl0ZW0taGVhZGVyLWNvbnRhaW5lclwiIHNpemU9XCJtZFwiPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiaXRlbS1hdmF0YXIsIG5vdm8taXRlbS1hdmF0YXJcIj48L25nLWNvbnRlbnQ+XG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJpdGVtLXRpdGxlLCBub3ZvLWl0ZW0tdGl0bGVcIj48L25nLWNvbnRlbnQ+XG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJpdGVtLWhlYWRlci1lbmQsIG5vdm8taXRlbS1oZWFkZXItZW5kXCI+PC9uZy1jb250ZW50PlxuICAgIDwvbm92by10aXRsZT5cbiAgYCxcbiAgc3R5bGVVcmxzOiBbJy4vbGlzdC1pdGVtLWhlYWRlci5zY3NzJ10sXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ25vdm8taXRlbS1oZWFkZXInLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBOb3ZvSXRlbUhlYWRlckVsZW1lbnQge31cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnaXRlbS1oZWFkZXItZW5kLCBub3ZvLWl0ZW0taGVhZGVyLWVuZCcsXG4gIHRlbXBsYXRlOiBgIDxuZy1jb250ZW50PjwvbmctY29udGVudD4gYCxcbiAgc3R5bGVVcmxzOiBbJy4vbGlzdC1pdGVtLWhlYWRlci1lbmQuc2NzcyddLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdub3ZvLWl0ZW0taGVhZGVyLWVuZCcsXG4gIH0sXG59KVxuZXhwb3J0IGNsYXNzIE5vdm9JdGVtRGF0ZUVsZW1lbnQge31cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnaXRlbS1jb250ZW50LCBub3ZvLWl0ZW0tY29udGVudCcsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ25vdm8taXRlbS1jb250ZW50JyxcbiAgICAnW2NsYXNzLnZlcnRpY2FsLWxpc3RdJzogJ2RpcmVjdGlvbiA9PT0gXCJ2ZXJ0aWNhbFwiJyxcbiAgICAnW2NsYXNzLmhvcml6b250YWwtbGlzdF0nOiAnZGlyZWN0aW9uID09PSBcImhvcml6b250YWxcIicsXG4gIH0sXG4gIHRlbXBsYXRlOiBgIDxuZy1jb250ZW50PjwvbmctY29udGVudD4gYCxcbiAgc3R5bGVVcmxzOiBbJy4vbGlzdC1pdGVtLWNvbnRlbnQuc2NzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBOb3ZvSXRlbUNvbnRlbnRFbGVtZW50IHtcbiAgQElucHV0KClcbiAgZGlyZWN0aW9uOiBzdHJpbmc7XG59XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2l0ZW0tZW5kLCBub3ZvLWl0ZW0tZW5kJyxcbiAgdGVtcGxhdGU6IGAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PiBgLFxuICBzdHlsZVVybHM6IFsnLi9saXN0LWl0ZW0tZW5kLnNjc3MnXSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnbm92by1pdGVtLWVuZCcsXG4gIH0sXG59KVxuZXhwb3J0IGNsYXNzIE5vdm9JdGVtRW5kRWxlbWVudCB7fVxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdub3ZvLWxpc3QtaXRlbSwgYVtsaXN0LWl0ZW1dLCBidXR0b25bbGlzdC1pdGVtXScsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGRpdiBjbGFzcz1cImxpc3QtaXRlbVwiIFtuZ0NsYXNzXT1cInsgYXZhdGFyOiBhdmF0YXIgfVwiICpuZ0lmPVwiX2NvbnRlbnQgfHwgX2hlYWRlclwiPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiaXRlbS1oZWFkZXIsIG5vdm8taXRlbS1oZWFkZXJcIj48L25nLWNvbnRlbnQ+XG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJpdGVtLWNvbnRlbnQsIG5vdm8taXRlbS1jb250ZW50XCI+PC9uZy1jb250ZW50PlxuICAgIDwvZGl2PlxuICAgIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJpdGVtLWVuZCwgbm92by1pdGVtLWVuZFwiPjwvbmctY29udGVudD5cbiAgYCxcbiAgc3R5bGVVcmxzOiBbJy4vbGlzdC1pdGVtLnNjc3MnXSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnbm92by1saXN0LWl0ZW0nLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBOb3ZvTGlzdEl0ZW1FbGVtZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgYXZhdGFyOiBib29sZWFuID0gZmFsc2U7XG4gIEBDb250ZW50Q2hpbGQoTm92b0l0ZW1Db250ZW50RWxlbWVudCkgX2NvbnRlbnQ6IE5vdm9JdGVtQ29udGVudEVsZW1lbnQ7XG4gIEBDb250ZW50Q2hpbGQoTm92b0l0ZW1IZWFkZXJFbGVtZW50KSBfaGVhZGVyOiBOb3ZvSXRlbUhlYWRlckVsZW1lbnQ7XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBlbGVtZW50OiBFbGVtZW50UmVmKSB7fVxuXG4gIG5nT25Jbml0KCkge1xuICAgIHRoaXMuYXZhdGFyID0gISF0aGlzLmVsZW1lbnQubmF0aXZlRWxlbWVudC5xdWVyeVNlbGVjdG9yKCdpdGVtLWF2YXRhcicpO1xuICB9XG59XG4iXX0=
@@ -28,19 +28,16 @@ NovoLoadingElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
28
28
  <span class="dot"></span>
29
29
  <span class="dot"></span>
30
30
  <span class="dot"></span>
31
- `, isInline: true });
31
+ `, isInline: true, styles: [":host{padding:20px;display:flex;flex-direction:row;font-size:13px;gap:.3em}:host.size-small{padding:8px;font-size:8px}:host.size-large{font-size:18px}:host span.dot{display:block;border-radius:50%;height:1em;width:1em}:host span.dot:nth-of-type(1){background-color:#4a89dc}:host span.dot:nth-of-type(2){background-color:#967adc}:host span.dot:nth-of-type(3){background-color:#da4453}:host span.dot:nth-of-type(4){background-color:#f6b042}:host span.dot:nth-of-type(5){background-color:#37bc9b}:host span.dot:nth-of-type(1){-webkit-animation:jump 1.6s ease-in-out 70ms forward infinite \"\" \"\";animation:jump 1.6s ease-in-out 70ms forward infinite \"\" \"\";-webkit-animation-name:jump;animation-name:jump;-webkit-animation-duration:1.6s;animation-duration:1.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:70ms;animation-delay:70ms;-webkit-animation-direction:forward;animation-direction:forward;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:\"\";animation-fill-mode:\"\";-webkit-animation-play-state:\"\";animation-play-state:\"\"}:host span.dot:nth-of-type(2){-webkit-animation:jump 1.6s ease-in-out .14s forward infinite \"\" \"\";animation:jump 1.6s ease-in-out .14s forward infinite \"\" \"\";-webkit-animation-name:jump;animation-name:jump;-webkit-animation-duration:1.6s;animation-duration:1.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:.14s;animation-delay:.14s;-webkit-animation-direction:forward;animation-direction:forward;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:\"\";animation-fill-mode:\"\";-webkit-animation-play-state:\"\";animation-play-state:\"\"}:host span.dot:nth-of-type(3){-webkit-animation:jump 1.6s ease-in-out .21s forward infinite \"\" \"\";animation:jump 1.6s ease-in-out .21s forward infinite \"\" \"\";-webkit-animation-name:jump;animation-name:jump;-webkit-animation-duration:1.6s;animation-duration:1.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:.21s;animation-delay:.21s;-webkit-animation-direction:forward;animation-direction:forward;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:\"\";animation-fill-mode:\"\";-webkit-animation-play-state:\"\";animation-play-state:\"\"}:host span.dot:nth-of-type(4){-webkit-animation:jump 1.6s ease-in-out .28s forward infinite \"\" \"\";animation:jump 1.6s ease-in-out .28s forward infinite \"\" \"\";-webkit-animation-name:jump;animation-name:jump;-webkit-animation-duration:1.6s;animation-duration:1.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:.28s;animation-delay:.28s;-webkit-animation-direction:forward;animation-direction:forward;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:\"\";animation-fill-mode:\"\";-webkit-animation-play-state:\"\";animation-play-state:\"\"}:host span.dot:nth-of-type(5){-webkit-animation:jump 1.6s ease-in-out .35s forward infinite \"\" \"\";animation:jump 1.6s ease-in-out .35s forward infinite \"\" \"\";-webkit-animation-name:jump;animation-name:jump;-webkit-animation-duration:1.6s;animation-duration:1.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:.35s;animation-delay:.35s;-webkit-animation-direction:forward;animation-direction:forward;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:\"\";animation-fill-mode:\"\";-webkit-animation-play-state:\"\";animation-play-state:\"\"}:host.color-aqua span.dot{background-color:#3bafda}:host.color-ocean span.dot{background-color:#4a89dc}:host.color-mint span.dot{background-color:#37bc9b}:host.color-grass span.dot{background-color:#8cc152}:host.color-sunflower span.dot{background-color:#f6b042}:host.color-bittersweet span.dot{background-color:#eb6845}:host.color-grapefruit span.dot{background-color:#da4453}:host.color-carnation span.dot{background-color:#d770ad}:host.color-lavender span.dot{background-color:#967adc}:host.color-mountain span.dot{background-color:#9678b6}:host.white span.dot,:host[inverse] span.dot{background-color:#fff!important}@-webkit-keyframes jump{0%{transform:translateY(0)}30%{transform:translateY(0);opacity:1}45%{transform:translateY(-1.2em);opacity:.5}60%{transform:translateY(.8em);opacity:.95}to{transform:translateY(0);opacity:1}}@keyframes jump{0%{transform:translateY(0)}30%{transform:translateY(0);opacity:1}45%{transform:translateY(-1.2em);opacity:.5}60%{transform:translateY(.8em);opacity:.95}to{transform:translateY(0);opacity:1}}\n"] });
32
32
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoLoadingElement, decorators: [{
33
33
  type: Component,
34
- args: [{
35
- selector: 'novo-loading',
36
- template: `
34
+ args: [{ selector: 'novo-loading', template: `
37
35
  <span class="dot"></span>
38
36
  <span class="dot"></span>
39
37
  <span class="dot"></span>
40
38
  <span class="dot"></span>
41
39
  <span class="dot"></span>
42
- `,
43
- }]
40
+ `, styles: [":host{padding:20px;display:flex;flex-direction:row;font-size:13px;gap:.3em}:host.size-small{padding:8px;font-size:8px}:host.size-large{font-size:18px}:host span.dot{display:block;border-radius:50%;height:1em;width:1em}:host span.dot:nth-of-type(1){background-color:#4a89dc}:host span.dot:nth-of-type(2){background-color:#967adc}:host span.dot:nth-of-type(3){background-color:#da4453}:host span.dot:nth-of-type(4){background-color:#f6b042}:host span.dot:nth-of-type(5){background-color:#37bc9b}:host span.dot:nth-of-type(1){-webkit-animation:jump 1.6s ease-in-out 70ms forward infinite \"\" \"\";animation:jump 1.6s ease-in-out 70ms forward infinite \"\" \"\";-webkit-animation-name:jump;animation-name:jump;-webkit-animation-duration:1.6s;animation-duration:1.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:70ms;animation-delay:70ms;-webkit-animation-direction:forward;animation-direction:forward;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:\"\";animation-fill-mode:\"\";-webkit-animation-play-state:\"\";animation-play-state:\"\"}:host span.dot:nth-of-type(2){-webkit-animation:jump 1.6s ease-in-out .14s forward infinite \"\" \"\";animation:jump 1.6s ease-in-out .14s forward infinite \"\" \"\";-webkit-animation-name:jump;animation-name:jump;-webkit-animation-duration:1.6s;animation-duration:1.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:.14s;animation-delay:.14s;-webkit-animation-direction:forward;animation-direction:forward;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:\"\";animation-fill-mode:\"\";-webkit-animation-play-state:\"\";animation-play-state:\"\"}:host span.dot:nth-of-type(3){-webkit-animation:jump 1.6s ease-in-out .21s forward infinite \"\" \"\";animation:jump 1.6s ease-in-out .21s forward infinite \"\" \"\";-webkit-animation-name:jump;animation-name:jump;-webkit-animation-duration:1.6s;animation-duration:1.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:.21s;animation-delay:.21s;-webkit-animation-direction:forward;animation-direction:forward;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:\"\";animation-fill-mode:\"\";-webkit-animation-play-state:\"\";animation-play-state:\"\"}:host span.dot:nth-of-type(4){-webkit-animation:jump 1.6s ease-in-out .28s forward infinite \"\" \"\";animation:jump 1.6s ease-in-out .28s forward infinite \"\" \"\";-webkit-animation-name:jump;animation-name:jump;-webkit-animation-duration:1.6s;animation-duration:1.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:.28s;animation-delay:.28s;-webkit-animation-direction:forward;animation-direction:forward;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:\"\";animation-fill-mode:\"\";-webkit-animation-play-state:\"\";animation-play-state:\"\"}:host span.dot:nth-of-type(5){-webkit-animation:jump 1.6s ease-in-out .35s forward infinite \"\" \"\";animation:jump 1.6s ease-in-out .35s forward infinite \"\" \"\";-webkit-animation-name:jump;animation-name:jump;-webkit-animation-duration:1.6s;animation-duration:1.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:.35s;animation-delay:.35s;-webkit-animation-direction:forward;animation-direction:forward;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:\"\";animation-fill-mode:\"\";-webkit-animation-play-state:\"\";animation-play-state:\"\"}:host.color-aqua span.dot{background-color:#3bafda}:host.color-ocean span.dot{background-color:#4a89dc}:host.color-mint span.dot{background-color:#37bc9b}:host.color-grass span.dot{background-color:#8cc152}:host.color-sunflower span.dot{background-color:#f6b042}:host.color-bittersweet span.dot{background-color:#eb6845}:host.color-grapefruit span.dot{background-color:#da4453}:host.color-carnation span.dot{background-color:#d770ad}:host.color-lavender span.dot{background-color:#967adc}:host.color-mountain span.dot{background-color:#9678b6}:host.white span.dot,:host[inverse] span.dot{background-color:#fff!important}@-webkit-keyframes jump{0%{transform:translateY(0)}30%{transform:translateY(0);opacity:1}45%{transform:translateY(-1.2em);opacity:.5}60%{transform:translateY(.8em);opacity:.95}to{transform:translateY(0);opacity:1}}@keyframes jump{0%{transform:translateY(0)}30%{transform:translateY(0);opacity:1}45%{transform:translateY(-1.2em);opacity:.5}60%{transform:translateY(.8em);opacity:.95}to{transform:translateY(0);opacity:1}}\n"] }]
44
41
  }], propDecorators: { theme: [{
45
42
  type: Input
46
43
  }], color: [{
@@ -90,12 +87,10 @@ NovoSpinnerElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
90
87
  <div class="dot10 dot"></div>
91
88
  <div class="dot11 dot"></div>
92
89
  <div class="dot12 dot"></div>
93
- `, isInline: true });
90
+ `, isInline: true, styles: [":host{display:inline-block;width:1.8em;height:1.8em;position:relative}:host.size-small{width:1.2em;height:1.2em}:host.size-large{width:2.1em;height:2.1em}:host .dot{width:100%;height:100%;position:absolute;left:0;top:0}:host .dot:before{content:\"\";display:block;margin:0 auto;width:15%;height:15%;background-color:#333;border-radius:100%;-webkit-animation:dotFadeDelay 1.2s infinite ease-in-out both;animation:dotFadeDelay 1.2s infinite ease-in-out both}:host.aqua .dot:before{background-color:#3bafda}:host.ocean .dot:before{background-color:#4a89dc}:host.mint .dot:before{background-color:#37bc9b}:host.grass .dot:before{background-color:#8cc152}:host.sunflower .dot:before{background-color:#f6b042}:host.bittersweet .dot:before{background-color:#eb6845}:host.grapefruit .dot:before{background-color:#da4453}:host.carnation .dot:before{background-color:#d770ad}:host.lavender .dot:before{background-color:#967adc}:host.mountain .dot:before{background-color:#9678b6}:host.multicolor .dot:nth-of-type(1):before{background-color:#3bafda}:host.multicolor .dot:nth-of-type(2):before{background-color:#4a89dc}:host.multicolor .dot:nth-of-type(3):before{background-color:#37bc9b}:host.multicolor .dot:nth-of-type(4):before{background-color:#8cc152}:host.multicolor .dot:nth-of-type(5):before{background-color:#f6b042}:host.multicolor .dot:nth-of-type(6):before{background-color:#eb6845}:host.multicolor .dot:nth-of-type(7):before{background-color:#da4453}:host.multicolor .dot:nth-of-type(8):before{background-color:#d770ad}:host.multicolor .dot:nth-of-type(9):before{background-color:#967adc}:host.multicolor .dot:nth-of-type(10):before{background-color:#9678b6}:host.white .dot:before,:host[inverse] .dot:before{background-color:#fff}:host .dot2{transform:rotate(30deg)}:host .dot3{transform:rotate(60deg)}:host .dot4{transform:rotate(90deg)}:host .dot5{transform:rotate(120deg)}:host .dot6{transform:rotate(150deg)}:host .dot7{transform:rotate(180deg)}:host .dot8{transform:rotate(210deg)}:host .dot9{transform:rotate(240deg)}:host .dot10{transform:rotate(270deg)}:host .dot11{transform:rotate(300deg)}:host .dot12{transform:rotate(330deg)}:host .dot2:before{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}:host .dot3:before{-webkit-animation-delay:-1s;animation-delay:-1s}:host .dot4:before{-webkit-animation-delay:-.9s;animation-delay:-.9s}:host .dot5:before{-webkit-animation-delay:-.8s;animation-delay:-.8s}:host .dot6:before{-webkit-animation-delay:-.7s;animation-delay:-.7s}:host .dot7:before{-webkit-animation-delay:-.6s;animation-delay:-.6s}:host .dot8:before{-webkit-animation-delay:-.5s;animation-delay:-.5s}:host .dot9:before{-webkit-animation-delay:-.4s;animation-delay:-.4s}:host .dot10:before{-webkit-animation-delay:-.3s;animation-delay:-.3s}:host .dot11:before{-webkit-animation-delay:-.2s;animation-delay:-.2s}:host .dot12:before{-webkit-animation-delay:-.1s;animation-delay:-.1s}@-webkit-keyframes dotFadeDelay{0%,39%,to{opacity:0}40%{opacity:1}}@keyframes dotFadeDelay{0%,39%,to{opacity:0}40%{opacity:1}}\n"] });
94
91
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoSpinnerElement, decorators: [{
95
92
  type: Component,
96
- args: [{
97
- selector: 'novo-spinner',
98
- template: `
93
+ args: [{ selector: 'novo-spinner', template: `
99
94
  <div class="dot1 dot"></div>
100
95
  <div class="dot2 dot"></div>
101
96
  <div class="dot3 dot"></div>
@@ -108,8 +103,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
108
103
  <div class="dot10 dot"></div>
109
104
  <div class="dot11 dot"></div>
110
105
  <div class="dot12 dot"></div>
111
- `,
112
- }]
106
+ `, styles: [":host{display:inline-block;width:1.8em;height:1.8em;position:relative}:host.size-small{width:1.2em;height:1.2em}:host.size-large{width:2.1em;height:2.1em}:host .dot{width:100%;height:100%;position:absolute;left:0;top:0}:host .dot:before{content:\"\";display:block;margin:0 auto;width:15%;height:15%;background-color:#333;border-radius:100%;-webkit-animation:dotFadeDelay 1.2s infinite ease-in-out both;animation:dotFadeDelay 1.2s infinite ease-in-out both}:host.aqua .dot:before{background-color:#3bafda}:host.ocean .dot:before{background-color:#4a89dc}:host.mint .dot:before{background-color:#37bc9b}:host.grass .dot:before{background-color:#8cc152}:host.sunflower .dot:before{background-color:#f6b042}:host.bittersweet .dot:before{background-color:#eb6845}:host.grapefruit .dot:before{background-color:#da4453}:host.carnation .dot:before{background-color:#d770ad}:host.lavender .dot:before{background-color:#967adc}:host.mountain .dot:before{background-color:#9678b6}:host.multicolor .dot:nth-of-type(1):before{background-color:#3bafda}:host.multicolor .dot:nth-of-type(2):before{background-color:#4a89dc}:host.multicolor .dot:nth-of-type(3):before{background-color:#37bc9b}:host.multicolor .dot:nth-of-type(4):before{background-color:#8cc152}:host.multicolor .dot:nth-of-type(5):before{background-color:#f6b042}:host.multicolor .dot:nth-of-type(6):before{background-color:#eb6845}:host.multicolor .dot:nth-of-type(7):before{background-color:#da4453}:host.multicolor .dot:nth-of-type(8):before{background-color:#d770ad}:host.multicolor .dot:nth-of-type(9):before{background-color:#967adc}:host.multicolor .dot:nth-of-type(10):before{background-color:#9678b6}:host.white .dot:before,:host[inverse] .dot:before{background-color:#fff}:host .dot2{transform:rotate(30deg)}:host .dot3{transform:rotate(60deg)}:host .dot4{transform:rotate(90deg)}:host .dot5{transform:rotate(120deg)}:host .dot6{transform:rotate(150deg)}:host .dot7{transform:rotate(180deg)}:host .dot8{transform:rotate(210deg)}:host .dot9{transform:rotate(240deg)}:host .dot10{transform:rotate(270deg)}:host .dot11{transform:rotate(300deg)}:host .dot12{transform:rotate(330deg)}:host .dot2:before{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}:host .dot3:before{-webkit-animation-delay:-1s;animation-delay:-1s}:host .dot4:before{-webkit-animation-delay:-.9s;animation-delay:-.9s}:host .dot5:before{-webkit-animation-delay:-.8s;animation-delay:-.8s}:host .dot6:before{-webkit-animation-delay:-.7s;animation-delay:-.7s}:host .dot7:before{-webkit-animation-delay:-.6s;animation-delay:-.6s}:host .dot8:before{-webkit-animation-delay:-.5s;animation-delay:-.5s}:host .dot9:before{-webkit-animation-delay:-.4s;animation-delay:-.4s}:host .dot10:before{-webkit-animation-delay:-.3s;animation-delay:-.3s}:host .dot11:before{-webkit-animation-delay:-.2s;animation-delay:-.2s}:host .dot12:before{-webkit-animation-delay:-.1s;animation-delay:-.1s}@-webkit-keyframes dotFadeDelay{0%,39%,to{opacity:0}40%{opacity:1}}@keyframes dotFadeDelay{0%,39%,to{opacity:0}40%{opacity:1}}\n"] }]
113
107
  }], propDecorators: { theme: [{
114
108
  type: Input
115
109
  }], color: [{
@@ -194,4 +188,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
194
188
  }], isLoading: [{
195
189
  type: Input
196
190
  }] } });
197
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTG9hZGluZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25vdm8tZWxlbWVudHMvc3JjL2VsZW1lbnRzL2xvYWRpbmcvTG9hZGluZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNO0FBQ04sT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDOUQsT0FBTyxFQUNMLFNBQVMsRUFDVCxlQUFlLEVBQ2YsU0FBUyxFQUVULFdBQVcsRUFDWCxLQUFLLEVBQ0wsU0FBUyxFQUNULFdBQVcsRUFDWCxnQkFBZ0IsR0FDakIsTUFBTSxlQUFlLENBQUM7O0FBWXZCLE1BQU0sT0FBTyxrQkFBa0I7SUFWL0I7UUE0QkUsU0FBSSxHQUFXLFFBQVEsQ0FBQztLQU16QjtJQXZCQzs7O1FBR0k7SUFDSixJQUNJLEtBQUssQ0FBQyxLQUFhO1FBQ3JCLE9BQU8sQ0FBQyxJQUFJLENBQUMscURBQXFELENBQUMsQ0FBQztRQUNwRSxJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUNyQixDQUFDO0lBQ0QsSUFBSSxLQUFLO1FBQ1AsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDO0lBQ3BCLENBQUM7SUFRRCxJQUNJLFFBQVE7UUFDVixPQUFPLENBQUMsU0FBUyxJQUFJLENBQUMsS0FBSyxFQUFFLEVBQUUsUUFBUSxJQUFJLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDaEUsQ0FBQzs7Z0hBdkJVLGtCQUFrQjtvR0FBbEIsa0JBQWtCLGtLQVJuQjs7Ozs7O0dBTVQ7NEZBRVUsa0JBQWtCO2tCQVY5QixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxjQUFjO29CQUN4QixRQUFRLEVBQUU7Ozs7OztHQU1UO2lCQUNGOzhCQU9LLEtBQUs7c0JBRFIsS0FBSztnQkFVTixLQUFLO3NCQURKLEtBQUs7Z0JBSU4sSUFBSTtzQkFESCxLQUFLO2dCQUlGLFFBQVE7c0JBRFgsV0FBVzt1QkFBQyxPQUFPOztBQXVCdEIsTUFBTSxPQUFPLGtCQUFrQjtJQWpCL0I7UUFtQ0UsU0FBSSxHQUFXLFFBQVEsQ0FBQztLQWV6QjtJQWhDQzs7O1FBR0k7SUFDSixJQUNJLEtBQUssQ0FBQyxLQUFhO1FBQ3JCLE9BQU8sQ0FBQyxJQUFJLENBQUMscURBQXFELENBQUMsQ0FBQztRQUNwRSxJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUNyQixDQUFDO0lBQ0QsSUFBSSxLQUFLO1FBQ1AsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDO0lBQ3BCLENBQUM7SUFTRCxJQUFJLE9BQU87UUFDVCxPQUFPLElBQUksQ0FBQyxRQUFRLENBQUM7SUFDdkIsQ0FBQztJQUNELElBQ0ksT0FBTyxDQUFDLEtBQWM7UUFDeEIsSUFBSSxDQUFDLFFBQVEsR0FBRyxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMvQyxDQUFDO0lBRUQsSUFDSSxRQUFRO1FBQ1YsT0FBTyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLGFBQWEsQ0FBQyxDQUFDLENBQUMsU0FBUyxJQUFJLENBQUMsS0FBSyxFQUFFLEVBQUUsUUFBUSxJQUFJLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDL0YsQ0FBQzs7Z0hBaENVLGtCQUFrQjtvR0FBbEIsa0JBQWtCLHNMQWZuQjs7Ozs7Ozs7Ozs7OztHQWFUOzRGQUVVLGtCQUFrQjtrQkFqQjlCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGNBQWM7b0JBQ3hCLFFBQVEsRUFBRTs7Ozs7Ozs7Ozs7OztHQWFUO2lCQUNGOzhCQU9LLEtBQUs7c0JBRFIsS0FBSztnQkFVTixLQUFLO3NCQURKLEtBQUs7Z0JBSU4sSUFBSTtzQkFESCxLQUFLO2dCQVFGLE9BQU87c0JBRFYsS0FBSztnQkFNRixRQUFRO3NCQURYLFdBQVc7dUJBQUMsT0FBTzs7QUFTdEIsTUFBTSxPQUFPLHFCQUFxQjtJQUhsQztRQUtFLGFBQVEsR0FBWSxJQUFJLENBQUM7S0FDMUI7O21IQUhZLHFCQUFxQjt1R0FBckIscUJBQXFCOzRGQUFyQixxQkFBcUI7a0JBSGpDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLFlBQVk7aUJBQ3ZCOzhCQUdDLFFBQVE7c0JBRFAsV0FBVzt1QkFBQyxnQkFBZ0I7O0FBTS9CLE1BQU0sT0FBTyxtQkFBbUI7O2lIQUFuQixtQkFBbUI7cUdBQW5CLG1CQUFtQjs0RkFBbkIsbUJBQW1CO2tCQUgvQixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxVQUFVO2lCQUNyQjs7QUFNRCxNQUFNLE9BQU8sc0JBQXNCO0lBVWpDLFlBQW9CLGFBQStCO1FBQS9CLGtCQUFhLEdBQWIsYUFBYSxDQUFrQjtRQUozQyxZQUFPLEdBQUcsS0FBSyxDQUFDO1FBQ2hCLGtCQUFhLEdBQTZDLEVBQUUsQ0FBQztRQUM3RCxnQkFBVyxHQUEyQyxFQUFFLENBQUM7SUFFWCxDQUFDO0lBRXZELElBQ0ksU0FBUyxDQUFDLFNBQWtCO1FBQzlCLElBQUksQ0FBQyxTQUFTLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFO1lBQy9CLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDO1lBQ3BDLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsQ0FBQztZQUM5RCxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQztTQUNyQjthQUFNLElBQUksU0FBUyxJQUFJLElBQUksQ0FBQyxPQUFPLEVBQUU7WUFDcEMsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUM7WUFDdEMsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxlQUFlLENBQUMsQ0FBQztZQUMxRCxJQUFJLENBQUMsT0FBTyxHQUFHLEtBQUssQ0FBQztTQUN0QjtJQUNILENBQUM7SUFDRCxXQUFXLENBQUMsU0FBc0M7UUFDaEQsT0FBTyxTQUFTLElBQUksU0FBUyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsa0JBQWtCLENBQUMsQ0FBQyxFQUFFLElBQUksRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQ2pHLENBQUM7SUFDRCxZQUFZLENBQUMsS0FBNkI7UUFDeEMsSUFBSSxLQUFLLEVBQUU7WUFDVCxLQUFLLE1BQU0sSUFBSSxJQUFJLEtBQUssRUFBRTtnQkFDeEIsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDO2FBQ2hCO1NBQ0Y7SUFDSCxDQUFDOztvSEFqQ1Usc0JBQXNCO3dHQUF0QixzQkFBc0IseUhBQ2hCLHFCQUFxQixRQUFVLFdBQVcsa0RBRTFDLG1CQUFtQixRQUFVLFdBQVc7NEZBSDlDLHNCQUFzQjtrQkFIbEMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsYUFBYTtpQkFDeEI7dUdBR1EsaUJBQWlCO3NCQUR2QixlQUFlO3VCQUFDLHFCQUFxQixFQUFFLEVBQUUsSUFBSSxFQUFFLFdBQVcsRUFBRTtnQkFHdEQsZUFBZTtzQkFEckIsZUFBZTt1QkFBQyxtQkFBbUIsRUFBRSxFQUFFLElBQUksRUFBRSxXQUFXLEVBQUU7Z0JBVXZELFNBQVM7c0JBRFosS0FBSyIsInNvdXJjZXNDb250ZW50IjpbIi8vIE5HMlxuaW1wb3J0IHsgY29lcmNlQm9vbGVhblByb3BlcnR5IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2NvZXJjaW9uJztcbmltcG9ydCB7XG4gIENvbXBvbmVudCxcbiAgQ29udGVudENoaWxkcmVuLFxuICBEaXJlY3RpdmUsXG4gIEVtYmVkZGVkVmlld1JlZixcbiAgSG9zdEJpbmRpbmcsXG4gIElucHV0LFxuICBRdWVyeUxpc3QsXG4gIFRlbXBsYXRlUmVmLFxuICBWaWV3Q29udGFpbmVyUmVmLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbm92by1sb2FkaW5nJyxcbiAgdGVtcGxhdGU6IGBcbiAgICA8c3BhbiBjbGFzcz1cImRvdFwiPjwvc3Bhbj5cbiAgICA8c3BhbiBjbGFzcz1cImRvdFwiPjwvc3Bhbj5cbiAgICA8c3BhbiBjbGFzcz1cImRvdFwiPjwvc3Bhbj5cbiAgICA8c3BhbiBjbGFzcz1cImRvdFwiPjwvc3Bhbj5cbiAgICA8c3BhbiBjbGFzcz1cImRvdFwiPjwvc3Bhbj5cbiAgYCxcbn0pXG5leHBvcnQgY2xhc3MgTm92b0xvYWRpbmdFbGVtZW50IHtcbiAgLyoqXG4gICAqICoqZGVwcmVjYXRlZCoqIHBsZWFzZSB1c2UgYGNvbG9yYC5cbiAgICogQGRlcHJlY2F0ZWRcbiAgICoqL1xuICBASW5wdXQoKVxuICBzZXQgdGhlbWUodmFsdWU6IHN0cmluZykge1xuICAgIGNvbnNvbGUud2FybihgJ3RoZW1lJyBwcm9wZXJ0eSBpcyBkZXByZWNhdGVkLCBwbGVhc2UgdXNlICdjb2xvcicuYCk7XG4gICAgdGhpcy5jb2xvciA9IHZhbHVlO1xuICB9XG4gIGdldCB0aGVtZSgpOiBzdHJpbmcge1xuICAgIHJldHVybiB0aGlzLmNvbG9yO1xuICB9XG5cbiAgQElucHV0KClcbiAgY29sb3I6IHN0cmluZztcblxuICBASW5wdXQoKVxuICBzaXplOiBzdHJpbmcgPSAnbWVkaXVtJztcblxuICBASG9zdEJpbmRpbmcoJ2NsYXNzJylcbiAgZ2V0IGhiX2NsYXNzKCkge1xuICAgIHJldHVybiBbYGNvbG9yLSR7dGhpcy5jb2xvcn1gLCBgc2l6ZS0ke3RoaXMuc2l6ZX1gXS5qb2luKCcgJyk7XG4gIH1cbn1cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbm92by1zcGlubmVyJyxcbiAgdGVtcGxhdGU6IGBcbiAgICA8ZGl2IGNsYXNzPVwiZG90MSBkb3RcIj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiZG90MiBkb3RcIj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiZG90MyBkb3RcIj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiZG90NCBkb3RcIj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiZG90NSBkb3RcIj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiZG90NiBkb3RcIj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiZG90NyBkb3RcIj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiZG90OCBkb3RcIj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiZG90OSBkb3RcIj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiZG90MTAgZG90XCI+PC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImRvdDExIGRvdFwiPjwvZGl2PlxuICAgIDxkaXYgY2xhc3M9XCJkb3QxMiBkb3RcIj48L2Rpdj5cbiAgYCxcbn0pXG5leHBvcnQgY2xhc3MgTm92b1NwaW5uZXJFbGVtZW50IHtcbiAgLyoqXG4gICAqICoqZGVwcmVjYXRlZCoqIHBsZWFzZSB1c2UgYGNvbG9yYC5cbiAgICogQGRlcHJlY2F0ZWRcbiAgICoqL1xuICBASW5wdXQoKVxuICBzZXQgdGhlbWUodmFsdWU6IHN0cmluZykge1xuICAgIGNvbnNvbGUud2FybihgJ3RoZW1lJyBwcm9wZXJ0eSBpcyBkZXByZWNhdGVkLCBwbGVhc2UgdXNlICdjb2xvcicuYCk7XG4gICAgdGhpcy5jb2xvciA9IHZhbHVlO1xuICB9XG4gIGdldCB0aGVtZSgpOiBzdHJpbmcge1xuICAgIHJldHVybiB0aGlzLmNvbG9yO1xuICB9XG5cbiAgQElucHV0KClcbiAgY29sb3I6IHN0cmluZztcblxuICBASW5wdXQoKVxuICBzaXplOiBzdHJpbmcgPSAnbWVkaXVtJztcblxuICBwcml2YXRlIF9pbnZlcnNlOiBib29sZWFuO1xuICBnZXQgaW52ZXJzZSgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5faW52ZXJzZTtcbiAgfVxuICBASW5wdXQoKVxuICBzZXQgaW52ZXJzZSh2YWx1ZTogYm9vbGVhbikge1xuICAgIHRoaXMuX2ludmVyc2UgPSBjb2VyY2VCb29sZWFuUHJvcGVydHkodmFsdWUpO1xuICB9XG5cbiAgQEhvc3RCaW5kaW5nKCdjbGFzcycpXG4gIGdldCBoYl9jbGFzcygpIHtcbiAgICByZXR1cm4gW3RoaXMuaW52ZXJzZSA/ICdjb2xvci13aGl0ZScgOiBgY29sb3ItJHt0aGlzLmNvbG9yfWAsIGBzaXplLSR7dGhpcy5zaXplfWBdLmpvaW4oJyAnKTtcbiAgfVxufVxuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbc2tlbGV0b25dJyxcbn0pXG5leHBvcnQgY2xhc3MgTm92b1NrZWxldG9uRGlyZWN0aXZlIHtcbiAgQEhvc3RCaW5kaW5nKCdjbGFzcy5za2VsZXRvbicpXG4gIHNrZWxldG9uOiBib29sZWFuID0gdHJ1ZTtcbn1cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tsb2FkZWRdJyxcbn0pXG5leHBvcnQgY2xhc3MgTm92b0xvYWRlZERpcmVjdGl2ZSB7fVxuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbaXNMb2FkaW5nXScsXG59KVxuZXhwb3J0IGNsYXNzIE5vdm9Jc0xvYWRpbmdEaXJlY3RpdmUge1xuICBAQ29udGVudENoaWxkcmVuKE5vdm9Ta2VsZXRvbkRpcmVjdGl2ZSwgeyByZWFkOiBUZW1wbGF0ZVJlZiB9KVxuICBwdWJsaWMgc2tlbGV0b25UZW1wbGF0ZXM6IFF1ZXJ5TGlzdDxUZW1wbGF0ZVJlZjxhbnk+PjtcbiAgQENvbnRlbnRDaGlsZHJlbihOb3ZvTG9hZGVkRGlyZWN0aXZlLCB7IHJlYWQ6IFRlbXBsYXRlUmVmIH0pXG4gIHB1YmxpYyBsb2FkZWRUZW1wbGF0ZXM6IFF1ZXJ5TGlzdDxUZW1wbGF0ZVJlZjxhbnk+PjtcblxuICBwcml2YXRlIGhhc1ZpZXcgPSBmYWxzZTtcbiAgcHJpdmF0ZSBza2VsZXRvblZpZXdzOiBFbWJlZGRlZFZpZXdSZWY8Tm92b1NrZWxldG9uRGlyZWN0aXZlPltdID0gW107XG4gIHByaXZhdGUgbG9hZGVkVmlld3M6IEVtYmVkZGVkVmlld1JlZjxOb3ZvTG9hZGVkRGlyZWN0aXZlPltdID0gW107XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSB2aWV3Q29udGFpbmVyOiBWaWV3Q29udGFpbmVyUmVmKSB7fVxuXG4gIEBJbnB1dCgpXG4gIHNldCBpc0xvYWRpbmcoY29uZGl0aW9uOiBib29sZWFuKSB7XG4gICAgaWYgKCFjb25kaXRpb24gJiYgIXRoaXMuaGFzVmlldykge1xuICAgICAgdGhpcy5kZXN0cm95Vmlld3ModGhpcy5sb2FkZWRWaWV3cyk7XG4gICAgICB0aGlzLnNrZWxldG9uVmlld3MgPSB0aGlzLmNyZWF0ZVZpZXdzKHRoaXMuc2tlbGV0b25UZW1wbGF0ZXMpO1xuICAgICAgdGhpcy5oYXNWaWV3ID0gdHJ1ZTtcbiAgICB9IGVsc2UgaWYgKGNvbmRpdGlvbiAmJiB0aGlzLmhhc1ZpZXcpIHtcbiAgICAgIHRoaXMuZGVzdHJveVZpZXdzKHRoaXMuc2tlbGV0b25WaWV3cyk7XG4gICAgICB0aGlzLmxvYWRlZFZpZXdzID0gdGhpcy5jcmVhdGVWaWV3cyh0aGlzLmxvYWRlZFRlbXBsYXRlcyk7XG4gICAgICB0aGlzLmhhc1ZpZXcgPSBmYWxzZTtcbiAgICB9XG4gIH1cbiAgY3JlYXRlVmlld3ModGVtcGxhdGVzOiBRdWVyeUxpc3Q8VGVtcGxhdGVSZWY8YW55Pj4pIHtcbiAgICByZXR1cm4gdGVtcGxhdGVzICYmIHRlbXBsYXRlcy5tYXAoKHYsIGkpID0+IHRoaXMudmlld0NvbnRhaW5lci5jcmVhdGVFbWJlZGRlZFZpZXcodiwgbnVsbCwgaSkpO1xuICB9XG4gIGRlc3Ryb3lWaWV3cyh2aWV3czogRW1iZWRkZWRWaWV3UmVmPGFueT5bXSkge1xuICAgIGlmICh2aWV3cykge1xuICAgICAgZm9yIChjb25zdCB2aWV3IG9mIHZpZXdzKSB7XG4gICAgICAgIHZpZXcuZGVzdHJveSgpO1xuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIl19
191
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTG9hZGluZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25vdm8tZWxlbWVudHMvc3JjL2VsZW1lbnRzL2xvYWRpbmcvTG9hZGluZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNO0FBQ04sT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDOUQsT0FBTyxFQUNMLFNBQVMsRUFDVCxlQUFlLEVBQ2YsU0FBUyxFQUVULFdBQVcsRUFDWCxLQUFLLEVBQ0wsU0FBUyxFQUNULFdBQVcsRUFDWCxnQkFBZ0IsR0FDakIsTUFBTSxlQUFlLENBQUM7O0FBYXZCLE1BQU0sT0FBTyxrQkFBa0I7SUFYL0I7UUE2QkUsU0FBSSxHQUFXLFFBQVEsQ0FBQztLQU16QjtJQXZCQzs7O1FBR0k7SUFDSixJQUNJLEtBQUssQ0FBQyxLQUFhO1FBQ3JCLE9BQU8sQ0FBQyxJQUFJLENBQUMscURBQXFELENBQUMsQ0FBQztRQUNwRSxJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUNyQixDQUFDO0lBQ0QsSUFBSSxLQUFLO1FBQ1AsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDO0lBQ3BCLENBQUM7SUFRRCxJQUNJLFFBQVE7UUFDVixPQUFPLENBQUMsU0FBUyxJQUFJLENBQUMsS0FBSyxFQUFFLEVBQUUsUUFBUSxJQUFJLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDaEUsQ0FBQzs7Z0hBdkJVLGtCQUFrQjtvR0FBbEIsa0JBQWtCLGtLQVJuQjs7Ozs7O0dBTVQ7NEZBRVUsa0JBQWtCO2tCQVg5QixTQUFTOytCQUNFLGNBQWMsWUFFZDs7Ozs7O0dBTVQ7OEJBUUcsS0FBSztzQkFEUixLQUFLO2dCQVVOLEtBQUs7c0JBREosS0FBSztnQkFJTixJQUFJO3NCQURILEtBQUs7Z0JBSUYsUUFBUTtzQkFEWCxXQUFXO3VCQUFDLE9BQU87O0FBd0J0QixNQUFNLE9BQU8sa0JBQWtCO0lBbEIvQjtRQW9DRSxTQUFJLEdBQVcsUUFBUSxDQUFDO0tBZXpCO0lBaENDOzs7UUFHSTtJQUNKLElBQ0ksS0FBSyxDQUFDLEtBQWE7UUFDckIsT0FBTyxDQUFDLElBQUksQ0FBQyxxREFBcUQsQ0FBQyxDQUFDO1FBQ3BFLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3JCLENBQUM7SUFDRCxJQUFJLEtBQUs7UUFDUCxPQUFPLElBQUksQ0FBQyxLQUFLLENBQUM7SUFDcEIsQ0FBQztJQVNELElBQUksT0FBTztRQUNULE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQztJQUN2QixDQUFDO0lBQ0QsSUFDSSxPQUFPLENBQUMsS0FBYztRQUN4QixJQUFJLENBQUMsUUFBUSxHQUFHLHFCQUFxQixDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQy9DLENBQUM7SUFFRCxJQUNJLFFBQVE7UUFDVixPQUFPLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsYUFBYSxDQUFDLENBQUMsQ0FBQyxTQUFTLElBQUksQ0FBQyxLQUFLLEVBQUUsRUFBRSxRQUFRLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUMvRixDQUFDOztnSEFoQ1Usa0JBQWtCO29HQUFsQixrQkFBa0Isc0xBZm5COzs7Ozs7Ozs7Ozs7O0dBYVQ7NEZBRVUsa0JBQWtCO2tCQWxCOUIsU0FBUzsrQkFDRSxjQUFjLFlBRWQ7Ozs7Ozs7Ozs7Ozs7R0FhVDs4QkFRRyxLQUFLO3NCQURSLEtBQUs7Z0JBVU4sS0FBSztzQkFESixLQUFLO2dCQUlOLElBQUk7c0JBREgsS0FBSztnQkFRRixPQUFPO3NCQURWLEtBQUs7Z0JBTUYsUUFBUTtzQkFEWCxXQUFXO3VCQUFDLE9BQU87O0FBU3RCLE1BQU0sT0FBTyxxQkFBcUI7SUFIbEM7UUFLRSxhQUFRLEdBQVksSUFBSSxDQUFDO0tBQzFCOzttSEFIWSxxQkFBcUI7dUdBQXJCLHFCQUFxQjs0RkFBckIscUJBQXFCO2tCQUhqQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxZQUFZO2lCQUN2Qjs4QkFHQyxRQUFRO3NCQURQLFdBQVc7dUJBQUMsZ0JBQWdCOztBQU0vQixNQUFNLE9BQU8sbUJBQW1COztpSEFBbkIsbUJBQW1CO3FHQUFuQixtQkFBbUI7NEZBQW5CLG1CQUFtQjtrQkFIL0IsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsVUFBVTtpQkFDckI7O0FBTUQsTUFBTSxPQUFPLHNCQUFzQjtJQVVqQyxZQUFvQixhQUErQjtRQUEvQixrQkFBYSxHQUFiLGFBQWEsQ0FBa0I7UUFKM0MsWUFBTyxHQUFHLEtBQUssQ0FBQztRQUNoQixrQkFBYSxHQUE2QyxFQUFFLENBQUM7UUFDN0QsZ0JBQVcsR0FBMkMsRUFBRSxDQUFDO0lBRVgsQ0FBQztJQUV2RCxJQUNJLFNBQVMsQ0FBQyxTQUFrQjtRQUM5QixJQUFJLENBQUMsU0FBUyxJQUFJLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRTtZQUMvQixJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztZQUNwQyxJQUFJLENBQUMsYUFBYSxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLENBQUM7WUFDOUQsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUM7U0FDckI7YUFBTSxJQUFJLFNBQVMsSUFBSSxJQUFJLENBQUMsT0FBTyxFQUFFO1lBQ3BDLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFDO1lBQ3RDLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUM7WUFDMUQsSUFBSSxDQUFDLE9BQU8sR0FBRyxLQUFLLENBQUM7U0FDdEI7SUFDSCxDQUFDO0lBQ0QsV0FBVyxDQUFDLFNBQXNDO1FBQ2hELE9BQU8sU0FBUyxJQUFJLFNBQVMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLGtCQUFrQixDQUFDLENBQUMsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUNqRyxDQUFDO0lBQ0QsWUFBWSxDQUFDLEtBQTZCO1FBQ3hDLElBQUksS0FBSyxFQUFFO1lBQ1QsS0FBSyxNQUFNLElBQUksSUFBSSxLQUFLLEVBQUU7Z0JBQ3hCLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQzthQUNoQjtTQUNGO0lBQ0gsQ0FBQzs7b0hBakNVLHNCQUFzQjt3R0FBdEIsc0JBQXNCLHlIQUNoQixxQkFBcUIsUUFBVSxXQUFXLGtEQUUxQyxtQkFBbUIsUUFBVSxXQUFXOzRGQUg5QyxzQkFBc0I7a0JBSGxDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGFBQWE7aUJBQ3hCO3VHQUdRLGlCQUFpQjtzQkFEdkIsZUFBZTt1QkFBQyxxQkFBcUIsRUFBRSxFQUFFLElBQUksRUFBRSxXQUFXLEVBQUU7Z0JBR3RELGVBQWU7c0JBRHJCLGVBQWU7dUJBQUMsbUJBQW1CLEVBQUUsRUFBRSxJQUFJLEVBQUUsV0FBVyxFQUFFO2dCQVV2RCxTQUFTO3NCQURaLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBORzJcbmltcG9ydCB7IGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9jb2VyY2lvbic7XG5pbXBvcnQge1xuICBDb21wb25lbnQsXG4gIENvbnRlbnRDaGlsZHJlbixcbiAgRGlyZWN0aXZlLFxuICBFbWJlZGRlZFZpZXdSZWYsXG4gIEhvc3RCaW5kaW5nLFxuICBJbnB1dCxcbiAgUXVlcnlMaXN0LFxuICBUZW1wbGF0ZVJlZixcbiAgVmlld0NvbnRhaW5lclJlZixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ25vdm8tbG9hZGluZycsXG4gIHN0eWxlVXJsczogWycuL0xvYWRpbmcuc2NzcyddLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxzcGFuIGNsYXNzPVwiZG90XCI+PC9zcGFuPlxuICAgIDxzcGFuIGNsYXNzPVwiZG90XCI+PC9zcGFuPlxuICAgIDxzcGFuIGNsYXNzPVwiZG90XCI+PC9zcGFuPlxuICAgIDxzcGFuIGNsYXNzPVwiZG90XCI+PC9zcGFuPlxuICAgIDxzcGFuIGNsYXNzPVwiZG90XCI+PC9zcGFuPlxuICBgLFxufSlcbmV4cG9ydCBjbGFzcyBOb3ZvTG9hZGluZ0VsZW1lbnQge1xuICAvKipcbiAgICogKipkZXByZWNhdGVkKiogcGxlYXNlIHVzZSBgY29sb3JgLlxuICAgKiBAZGVwcmVjYXRlZFxuICAgKiovXG4gIEBJbnB1dCgpXG4gIHNldCB0aGVtZSh2YWx1ZTogc3RyaW5nKSB7XG4gICAgY29uc29sZS53YXJuKGAndGhlbWUnIHByb3BlcnR5IGlzIGRlcHJlY2F0ZWQsIHBsZWFzZSB1c2UgJ2NvbG9yJy5gKTtcbiAgICB0aGlzLmNvbG9yID0gdmFsdWU7XG4gIH1cbiAgZ2V0IHRoZW1lKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMuY29sb3I7XG4gIH1cblxuICBASW5wdXQoKVxuICBjb2xvcjogc3RyaW5nO1xuXG4gIEBJbnB1dCgpXG4gIHNpemU6IHN0cmluZyA9ICdtZWRpdW0nO1xuXG4gIEBIb3N0QmluZGluZygnY2xhc3MnKVxuICBnZXQgaGJfY2xhc3MoKSB7XG4gICAgcmV0dXJuIFtgY29sb3ItJHt0aGlzLmNvbG9yfWAsIGBzaXplLSR7dGhpcy5zaXplfWBdLmpvaW4oJyAnKTtcbiAgfVxufVxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdub3ZvLXNwaW5uZXInLFxuICBzdHlsZVVybHM6IFsnLi9Ob3ZvU3Bpbm5lci5zY3NzJ10sXG4gIHRlbXBsYXRlOiBgXG4gICAgPGRpdiBjbGFzcz1cImRvdDEgZG90XCI+PC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImRvdDIgZG90XCI+PC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImRvdDMgZG90XCI+PC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImRvdDQgZG90XCI+PC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImRvdDUgZG90XCI+PC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImRvdDYgZG90XCI+PC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImRvdDcgZG90XCI+PC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImRvdDggZG90XCI+PC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImRvdDkgZG90XCI+PC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImRvdDEwIGRvdFwiPjwvZGl2PlxuICAgIDxkaXYgY2xhc3M9XCJkb3QxMSBkb3RcIj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiZG90MTIgZG90XCI+PC9kaXY+XG4gIGAsXG59KVxuZXhwb3J0IGNsYXNzIE5vdm9TcGlubmVyRWxlbWVudCB7XG4gIC8qKlxuICAgKiAqKmRlcHJlY2F0ZWQqKiBwbGVhc2UgdXNlIGBjb2xvcmAuXG4gICAqIEBkZXByZWNhdGVkXG4gICAqKi9cbiAgQElucHV0KClcbiAgc2V0IHRoZW1lKHZhbHVlOiBzdHJpbmcpIHtcbiAgICBjb25zb2xlLndhcm4oYCd0aGVtZScgcHJvcGVydHkgaXMgZGVwcmVjYXRlZCwgcGxlYXNlIHVzZSAnY29sb3InLmApO1xuICAgIHRoaXMuY29sb3IgPSB2YWx1ZTtcbiAgfVxuICBnZXQgdGhlbWUoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gdGhpcy5jb2xvcjtcbiAgfVxuXG4gIEBJbnB1dCgpXG4gIGNvbG9yOiBzdHJpbmc7XG5cbiAgQElucHV0KClcbiAgc2l6ZTogc3RyaW5nID0gJ21lZGl1bSc7XG5cbiAgcHJpdmF0ZSBfaW52ZXJzZTogYm9vbGVhbjtcbiAgZ2V0IGludmVyc2UoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuX2ludmVyc2U7XG4gIH1cbiAgQElucHV0KClcbiAgc2V0IGludmVyc2UodmFsdWU6IGJvb2xlYW4pIHtcbiAgICB0aGlzLl9pbnZlcnNlID0gY29lcmNlQm9vbGVhblByb3BlcnR5KHZhbHVlKTtcbiAgfVxuXG4gIEBIb3N0QmluZGluZygnY2xhc3MnKVxuICBnZXQgaGJfY2xhc3MoKSB7XG4gICAgcmV0dXJuIFt0aGlzLmludmVyc2UgPyAnY29sb3Itd2hpdGUnIDogYGNvbG9yLSR7dGhpcy5jb2xvcn1gLCBgc2l6ZS0ke3RoaXMuc2l6ZX1gXS5qb2luKCcgJyk7XG4gIH1cbn1cblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW3NrZWxldG9uXScsXG59KVxuZXhwb3J0IGNsYXNzIE5vdm9Ta2VsZXRvbkRpcmVjdGl2ZSB7XG4gIEBIb3N0QmluZGluZygnY2xhc3Muc2tlbGV0b24nKVxuICBza2VsZXRvbjogYm9vbGVhbiA9IHRydWU7XG59XG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbbG9hZGVkXScsXG59KVxuZXhwb3J0IGNsYXNzIE5vdm9Mb2FkZWREaXJlY3RpdmUge31cblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2lzTG9hZGluZ10nLFxufSlcbmV4cG9ydCBjbGFzcyBOb3ZvSXNMb2FkaW5nRGlyZWN0aXZlIHtcbiAgQENvbnRlbnRDaGlsZHJlbihOb3ZvU2tlbGV0b25EaXJlY3RpdmUsIHsgcmVhZDogVGVtcGxhdGVSZWYgfSlcbiAgcHVibGljIHNrZWxldG9uVGVtcGxhdGVzOiBRdWVyeUxpc3Q8VGVtcGxhdGVSZWY8YW55Pj47XG4gIEBDb250ZW50Q2hpbGRyZW4oTm92b0xvYWRlZERpcmVjdGl2ZSwgeyByZWFkOiBUZW1wbGF0ZVJlZiB9KVxuICBwdWJsaWMgbG9hZGVkVGVtcGxhdGVzOiBRdWVyeUxpc3Q8VGVtcGxhdGVSZWY8YW55Pj47XG5cbiAgcHJpdmF0ZSBoYXNWaWV3ID0gZmFsc2U7XG4gIHByaXZhdGUgc2tlbGV0b25WaWV3czogRW1iZWRkZWRWaWV3UmVmPE5vdm9Ta2VsZXRvbkRpcmVjdGl2ZT5bXSA9IFtdO1xuICBwcml2YXRlIGxvYWRlZFZpZXdzOiBFbWJlZGRlZFZpZXdSZWY8Tm92b0xvYWRlZERpcmVjdGl2ZT5bXSA9IFtdO1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgdmlld0NvbnRhaW5lcjogVmlld0NvbnRhaW5lclJlZikge31cblxuICBASW5wdXQoKVxuICBzZXQgaXNMb2FkaW5nKGNvbmRpdGlvbjogYm9vbGVhbikge1xuICAgIGlmICghY29uZGl0aW9uICYmICF0aGlzLmhhc1ZpZXcpIHtcbiAgICAgIHRoaXMuZGVzdHJveVZpZXdzKHRoaXMubG9hZGVkVmlld3MpO1xuICAgICAgdGhpcy5za2VsZXRvblZpZXdzID0gdGhpcy5jcmVhdGVWaWV3cyh0aGlzLnNrZWxldG9uVGVtcGxhdGVzKTtcbiAgICAgIHRoaXMuaGFzVmlldyA9IHRydWU7XG4gICAgfSBlbHNlIGlmIChjb25kaXRpb24gJiYgdGhpcy5oYXNWaWV3KSB7XG4gICAgICB0aGlzLmRlc3Ryb3lWaWV3cyh0aGlzLnNrZWxldG9uVmlld3MpO1xuICAgICAgdGhpcy5sb2FkZWRWaWV3cyA9IHRoaXMuY3JlYXRlVmlld3ModGhpcy5sb2FkZWRUZW1wbGF0ZXMpO1xuICAgICAgdGhpcy5oYXNWaWV3ID0gZmFsc2U7XG4gICAgfVxuICB9XG4gIGNyZWF0ZVZpZXdzKHRlbXBsYXRlczogUXVlcnlMaXN0PFRlbXBsYXRlUmVmPGFueT4+KSB7XG4gICAgcmV0dXJuIHRlbXBsYXRlcyAmJiB0ZW1wbGF0ZXMubWFwKCh2LCBpKSA9PiB0aGlzLnZpZXdDb250YWluZXIuY3JlYXRlRW1iZWRkZWRWaWV3KHYsIG51bGwsIGkpKTtcbiAgfVxuICBkZXN0cm95Vmlld3Modmlld3M6IEVtYmVkZGVkVmlld1JlZjxhbnk+W10pIHtcbiAgICBpZiAodmlld3MpIHtcbiAgICAgIGZvciAoY29uc3QgdmlldyBvZiB2aWV3cykge1xuICAgICAgICB2aWV3LmRlc3Ryb3koKTtcbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiJdfQ==