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
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Component, Directive, Input, EventEmitter, HostBinding, Output, NgModule } from '@angular/core';
2
+ import { Component, Input, EventEmitter, HostBinding, Output, NgModule } from '@angular/core';
3
3
  import { BooleanInput } from 'novo-elements/utils';
4
4
  import * as i1 from 'novo-elements/services';
5
5
  import * as i2 from 'novo-elements/elements/loading';
@@ -46,18 +46,15 @@ class CardContentElement {
46
46
  this.condensed = false;
47
47
  }
48
48
  }
49
- CardContentElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CardContentElement, deps: [], target: i0.ɵɵFactoryTarget.Directive });
50
- CardContentElement.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: CardContentElement, selector: "novo-card-content, [novo-card-content], [novoCardContent]", inputs: { condensed: "condensed" }, host: { properties: { "class.condensed": "condensed" }, classAttribute: "novo-card-content" }, ngImport: i0 });
49
+ CardContentElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CardContentElement, deps: [], target: i0.ɵɵFactoryTarget.Component });
50
+ CardContentElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CardContentElement, selector: "novo-card-content, [novo-card-content], [novoCardContent]", inputs: { condensed: "condensed" }, host: { properties: { "class.condensed": "condensed" }, classAttribute: "novo-card-content" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [":host{display:block}:host:not(.condensed){padding:1rem}\n"] });
51
51
  __decorate([
52
52
  BooleanInput(),
53
53
  __metadata("design:type", Boolean)
54
54
  ], CardContentElement.prototype, "condensed", void 0);
55
55
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CardContentElement, decorators: [{
56
- type: Directive,
57
- args: [{
58
- selector: 'novo-card-content, [novo-card-content], [novoCardContent]',
59
- host: { class: 'novo-card-content', '[class.condensed]': 'condensed' },
60
- }]
56
+ type: Component,
57
+ args: [{ selector: 'novo-card-content, [novo-card-content], [novoCardContent]', host: { class: 'novo-card-content', '[class.condensed]': 'condensed' }, template: '<ng-content></ng-content>', styles: [":host{display:block}:host:not(.condensed){padding:1rem}\n"] }]
61
58
  }], propDecorators: { condensed: [{
62
59
  type: Input
63
60
  }] } });
@@ -76,13 +73,10 @@ CardHeaderElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
76
73
  <div class="novo-card-header-actions">
77
74
  <ng-content select="novo-action"></ng-content>
78
75
  </div>
79
- `, isInline: true });
76
+ `, isInline: true, styles: [":host{padding:1rem 1rem 0;display:flex;flex-direction:row;align-items:center;gap:1rem}:host[color=black]{color:#fff;background:#000000}:host[color=white]{color:#3d464d;background:#ffffff}:host[color=gray]{color:#3d464d;background:#9e9e9e}:host[color=grey]{color:#3d464d;background:#9e9e9e}:host[color=offWhite]{color:#3d464d;background:#f7f7f7}:host[color=bright]{color:#3d464d;background:#f7f7f7}:host[color=light]{color:#3d464d;background:#dbdbdb}:host[color=neutral]{color:#fff;background:#4f5361}:host[color=dark]{color:#fff;background:#3d464d}:host[color=orange]{color:#3d464d;background:#ff6900}:host[color=navigation]{color:#fff;background:#202945}:host[color=skyBlue]{color:#fff;background:#009bdf}:host[color=steel]{color:#fff;background:#5b6770}:host[color=metal]{color:#fff;background:#637893}:host[color=sand]{color:#3d464d;background:#f4f4f4}:host[color=silver]{color:#3d464d;background:#e2e2e2}:host[color=stone]{color:#3d464d;background:#bebebe}:host[color=ash]{color:#3d464d;background:#a0a0a0}:host[color=slate]{color:#fff;background:#707070}:host[color=onyx]{color:#fff;background:#526980}:host[color=charcoal]{color:#fff;background:#282828}:host[color=moonlight]{color:#fff;background:#1a242f}:host[color=midnight]{color:#fff;background:#202945}:host[color=darkness]{color:#fff;background:#161f27}:host[color=navy]{color:#fff;background:#0d2d42}:host[color=aqua]{color:#3d464d;background:#3bafda}:host[color=ocean]{color:#fff;background:#4a89dc}:host[color=mint]{color:#3d464d;background:#37bc9b}:host[color=grass]{color:#fff;background:#8cc152}:host[color=sunflower]{color:#fff;background:#f6b042}:host[color=bittersweet]{color:#fff;background:#eb6845}:host[color=grapefruit]{color:#fff;background:#da4453}:host[color=carnation]{color:#fff;background:#d770ad}:host[color=lavender]{color:#fff;background:#967adc}:host[color=mountain]{color:#fff;background:#9678b6}:host[color=info]{color:#fff;background:#4a89dc}:host[color=positive]{color:#fff;background:#4a89dc}:host[color=success]{color:#fff;background:#8cc152}:host[color=negative]{color:#fff;background:#da4453}:host[color=danger]{color:#fff;background:#da4453}:host[color=error]{color:#fff;background:#da4453}:host[color=warning]{color:#fff;background:#f6b042}:host[color=empty]{color:#3d464d;background:#cccdcc}:host[color=disabled]{color:#3d464d;background:#bebebe}:host[color=background]{color:#3d464d;background:#f7f7f7}:host[color=backgroundDark]{color:#3d464d;background:#e2e2e2}:host[color=presentation]{color:#fff;background:#5b6770}:host[color=bullhorn]{color:#3d464d;background:#ff6900}:host[color=pulse]{color:#3d464d;background:#3bafda}:host[color=company]{color:#fff;background:#3399dd}:host[color=candidate]{color:#fff;background:#44bb77}:host[color=lead]{color:#fff;background:#aa6699}:host[color=contact]{color:#fff;background:#ffaa44}:host[color=clientcontact]{color:#fff;background:#ffaa44}:host[color=opportunity]{color:#fff;background:#662255}:host[color=job]{color:#fff;background:#bb5566}:host[color=joborder]{color:#fff;background:#bb5566}:host[color=submission]{color:#3d464d;background:#a9adbb}:host[color=sendout]{color:#fff;background:#747884}:host[color=placement]{color:#fff;background:#0b344f}:host[color=note]{color:#fff;background:#747884}:host[color=contract]{color:#fff;background:#454ea0}:host[color=jobCode]{color:#fff;background:#696d79}:host[color=earnCode]{color:#fff;background:#696d79}:host[color=invoiceStatement]{color:#fff;background:#696d79}:host[color=billableCharge]{color:#fff;background:#696d79}:host[color=payableCharge]{color:#fff;background:#696d79}:host[color=user]{color:#fff;background:#696d79}:host[color=corporateUser]{color:#fff;background:#696d79}:host[color=distributionList]{color:#fff;background:#696d79}:host[color=credential]{color:#fff;background:#696d79}:host[color=person]{color:#fff;background:#696d79}:host .novo-card-header-text{flex:1 1 0px}\n"] });
80
77
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CardHeaderElement, decorators: [{
81
78
  type: Component,
82
- args: [{
83
- selector: 'novo-card-header, [novo-card-header], [novoCardHeader]',
84
- host: { class: 'novo-card-header' },
85
- template: `
79
+ args: [{ selector: 'novo-card-header, [novo-card-header], [novoCardHeader]', host: { class: 'novo-card-header' }, template: `
86
80
  <ng-content select="novo-avatar, [novo-avatar], novo-icon"></ng-content>
87
81
  <div class="novo-card-header-text">
88
82
  <ng-content select="novo-title, [novo-title], novo-text, novo-label, novo-caption"></ng-content>
@@ -91,19 +85,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
91
85
  <div class="novo-card-header-actions">
92
86
  <ng-content select="novo-action"></ng-content>
93
87
  </div>
94
- `,
95
- }]
88
+ `, styles: [":host{padding:1rem 1rem 0;display:flex;flex-direction:row;align-items:center;gap:1rem}:host[color=black]{color:#fff;background:#000000}:host[color=white]{color:#3d464d;background:#ffffff}:host[color=gray]{color:#3d464d;background:#9e9e9e}:host[color=grey]{color:#3d464d;background:#9e9e9e}:host[color=offWhite]{color:#3d464d;background:#f7f7f7}:host[color=bright]{color:#3d464d;background:#f7f7f7}:host[color=light]{color:#3d464d;background:#dbdbdb}:host[color=neutral]{color:#fff;background:#4f5361}:host[color=dark]{color:#fff;background:#3d464d}:host[color=orange]{color:#3d464d;background:#ff6900}:host[color=navigation]{color:#fff;background:#202945}:host[color=skyBlue]{color:#fff;background:#009bdf}:host[color=steel]{color:#fff;background:#5b6770}:host[color=metal]{color:#fff;background:#637893}:host[color=sand]{color:#3d464d;background:#f4f4f4}:host[color=silver]{color:#3d464d;background:#e2e2e2}:host[color=stone]{color:#3d464d;background:#bebebe}:host[color=ash]{color:#3d464d;background:#a0a0a0}:host[color=slate]{color:#fff;background:#707070}:host[color=onyx]{color:#fff;background:#526980}:host[color=charcoal]{color:#fff;background:#282828}:host[color=moonlight]{color:#fff;background:#1a242f}:host[color=midnight]{color:#fff;background:#202945}:host[color=darkness]{color:#fff;background:#161f27}:host[color=navy]{color:#fff;background:#0d2d42}:host[color=aqua]{color:#3d464d;background:#3bafda}:host[color=ocean]{color:#fff;background:#4a89dc}:host[color=mint]{color:#3d464d;background:#37bc9b}:host[color=grass]{color:#fff;background:#8cc152}:host[color=sunflower]{color:#fff;background:#f6b042}:host[color=bittersweet]{color:#fff;background:#eb6845}:host[color=grapefruit]{color:#fff;background:#da4453}:host[color=carnation]{color:#fff;background:#d770ad}:host[color=lavender]{color:#fff;background:#967adc}:host[color=mountain]{color:#fff;background:#9678b6}:host[color=info]{color:#fff;background:#4a89dc}:host[color=positive]{color:#fff;background:#4a89dc}:host[color=success]{color:#fff;background:#8cc152}:host[color=negative]{color:#fff;background:#da4453}:host[color=danger]{color:#fff;background:#da4453}:host[color=error]{color:#fff;background:#da4453}:host[color=warning]{color:#fff;background:#f6b042}:host[color=empty]{color:#3d464d;background:#cccdcc}:host[color=disabled]{color:#3d464d;background:#bebebe}:host[color=background]{color:#3d464d;background:#f7f7f7}:host[color=backgroundDark]{color:#3d464d;background:#e2e2e2}:host[color=presentation]{color:#fff;background:#5b6770}:host[color=bullhorn]{color:#3d464d;background:#ff6900}:host[color=pulse]{color:#3d464d;background:#3bafda}:host[color=company]{color:#fff;background:#3399dd}:host[color=candidate]{color:#fff;background:#44bb77}:host[color=lead]{color:#fff;background:#aa6699}:host[color=contact]{color:#fff;background:#ffaa44}:host[color=clientcontact]{color:#fff;background:#ffaa44}:host[color=opportunity]{color:#fff;background:#662255}:host[color=job]{color:#fff;background:#bb5566}:host[color=joborder]{color:#fff;background:#bb5566}:host[color=submission]{color:#3d464d;background:#a9adbb}:host[color=sendout]{color:#fff;background:#747884}:host[color=placement]{color:#fff;background:#0b344f}:host[color=note]{color:#fff;background:#747884}:host[color=contract]{color:#fff;background:#454ea0}:host[color=jobCode]{color:#fff;background:#696d79}:host[color=earnCode]{color:#fff;background:#696d79}:host[color=invoiceStatement]{color:#fff;background:#696d79}:host[color=billableCharge]{color:#fff;background:#696d79}:host[color=payableCharge]{color:#fff;background:#696d79}:host[color=user]{color:#fff;background:#696d79}:host[color=corporateUser]{color:#fff;background:#696d79}:host[color=distributionList]{color:#fff;background:#696d79}:host[color=credential]{color:#fff;background:#696d79}:host[color=person]{color:#fff;background:#696d79}:host .novo-card-header-text{flex:1 1 0px}\n"] }]
96
89
  }] });
97
90
  class CardFooterElement {
98
91
  }
99
- CardFooterElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CardFooterElement, deps: [], target: i0.ɵɵFactoryTarget.Directive });
100
- CardFooterElement.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: CardFooterElement, selector: "novo-card-footer, [novo-card-footer], [novoCardFooter]", host: { classAttribute: "novo-card-footer" }, ngImport: i0 });
92
+ CardFooterElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CardFooterElement, deps: [], target: i0.ɵɵFactoryTarget.Component });
93
+ CardFooterElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CardFooterElement, selector: "novo-card-footer, [novo-card-footer], [novoCardFooter]", host: { classAttribute: "novo-card-footer" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [":host{padding:0 1rem 1rem;display:flex;flex-direction:row;align-items:center;gap:1rem}:host[color=black]{color:#fff;background:#000000}:host[color=white]{color:#3d464d;background:#ffffff}:host[color=gray]{color:#3d464d;background:#9e9e9e}:host[color=grey]{color:#3d464d;background:#9e9e9e}:host[color=offWhite]{color:#3d464d;background:#f7f7f7}:host[color=bright]{color:#3d464d;background:#f7f7f7}:host[color=light]{color:#3d464d;background:#dbdbdb}:host[color=neutral]{color:#fff;background:#4f5361}:host[color=dark]{color:#fff;background:#3d464d}:host[color=orange]{color:#3d464d;background:#ff6900}:host[color=navigation]{color:#fff;background:#202945}:host[color=skyBlue]{color:#fff;background:#009bdf}:host[color=steel]{color:#fff;background:#5b6770}:host[color=metal]{color:#fff;background:#637893}:host[color=sand]{color:#3d464d;background:#f4f4f4}:host[color=silver]{color:#3d464d;background:#e2e2e2}:host[color=stone]{color:#3d464d;background:#bebebe}:host[color=ash]{color:#3d464d;background:#a0a0a0}:host[color=slate]{color:#fff;background:#707070}:host[color=onyx]{color:#fff;background:#526980}:host[color=charcoal]{color:#fff;background:#282828}:host[color=moonlight]{color:#fff;background:#1a242f}:host[color=midnight]{color:#fff;background:#202945}:host[color=darkness]{color:#fff;background:#161f27}:host[color=navy]{color:#fff;background:#0d2d42}:host[color=aqua]{color:#3d464d;background:#3bafda}:host[color=ocean]{color:#fff;background:#4a89dc}:host[color=mint]{color:#3d464d;background:#37bc9b}:host[color=grass]{color:#fff;background:#8cc152}:host[color=sunflower]{color:#fff;background:#f6b042}:host[color=bittersweet]{color:#fff;background:#eb6845}:host[color=grapefruit]{color:#fff;background:#da4453}:host[color=carnation]{color:#fff;background:#d770ad}:host[color=lavender]{color:#fff;background:#967adc}:host[color=mountain]{color:#fff;background:#9678b6}:host[color=info]{color:#fff;background:#4a89dc}:host[color=positive]{color:#fff;background:#4a89dc}:host[color=success]{color:#fff;background:#8cc152}:host[color=negative]{color:#fff;background:#da4453}:host[color=danger]{color:#fff;background:#da4453}:host[color=error]{color:#fff;background:#da4453}:host[color=warning]{color:#fff;background:#f6b042}:host[color=empty]{color:#3d464d;background:#cccdcc}:host[color=disabled]{color:#3d464d;background:#bebebe}:host[color=background]{color:#3d464d;background:#f7f7f7}:host[color=backgroundDark]{color:#3d464d;background:#e2e2e2}:host[color=presentation]{color:#fff;background:#5b6770}:host[color=bullhorn]{color:#3d464d;background:#ff6900}:host[color=pulse]{color:#3d464d;background:#3bafda}:host[color=company]{color:#fff;background:#3399dd}:host[color=candidate]{color:#fff;background:#44bb77}:host[color=lead]{color:#fff;background:#aa6699}:host[color=contact]{color:#fff;background:#ffaa44}:host[color=clientcontact]{color:#fff;background:#ffaa44}:host[color=opportunity]{color:#fff;background:#662255}:host[color=job]{color:#fff;background:#bb5566}:host[color=joborder]{color:#fff;background:#bb5566}:host[color=submission]{color:#3d464d;background:#a9adbb}:host[color=sendout]{color:#fff;background:#747884}:host[color=placement]{color:#fff;background:#0b344f}:host[color=note]{color:#fff;background:#747884}:host[color=contract]{color:#fff;background:#454ea0}:host[color=jobCode]{color:#fff;background:#696d79}:host[color=earnCode]{color:#fff;background:#696d79}:host[color=invoiceStatement]{color:#fff;background:#696d79}:host[color=billableCharge]{color:#fff;background:#696d79}:host[color=payableCharge]{color:#fff;background:#696d79}:host[color=user]{color:#fff;background:#696d79}:host[color=corporateUser]{color:#fff;background:#696d79}:host[color=distributionList]{color:#fff;background:#696d79}:host[color=credential]{color:#fff;background:#696d79}:host[color=person]{color:#fff;background:#696d79}\n"] });
101
94
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CardFooterElement, decorators: [{
102
- type: Directive,
103
- args: [{
104
- selector: 'novo-card-footer, [novo-card-footer], [novoCardFooter]',
105
- host: { class: 'novo-card-footer' },
106
- }]
95
+ type: Component,
96
+ args: [{ selector: 'novo-card-footer, [novo-card-footer], [novoCardFooter]', host: { class: 'novo-card-footer' }, template: '<ng-content></ng-content>', styles: [":host{padding:0 1rem 1rem;display:flex;flex-direction:row;align-items:center;gap:1rem}:host[color=black]{color:#fff;background:#000000}:host[color=white]{color:#3d464d;background:#ffffff}:host[color=gray]{color:#3d464d;background:#9e9e9e}:host[color=grey]{color:#3d464d;background:#9e9e9e}:host[color=offWhite]{color:#3d464d;background:#f7f7f7}:host[color=bright]{color:#3d464d;background:#f7f7f7}:host[color=light]{color:#3d464d;background:#dbdbdb}:host[color=neutral]{color:#fff;background:#4f5361}:host[color=dark]{color:#fff;background:#3d464d}:host[color=orange]{color:#3d464d;background:#ff6900}:host[color=navigation]{color:#fff;background:#202945}:host[color=skyBlue]{color:#fff;background:#009bdf}:host[color=steel]{color:#fff;background:#5b6770}:host[color=metal]{color:#fff;background:#637893}:host[color=sand]{color:#3d464d;background:#f4f4f4}:host[color=silver]{color:#3d464d;background:#e2e2e2}:host[color=stone]{color:#3d464d;background:#bebebe}:host[color=ash]{color:#3d464d;background:#a0a0a0}:host[color=slate]{color:#fff;background:#707070}:host[color=onyx]{color:#fff;background:#526980}:host[color=charcoal]{color:#fff;background:#282828}:host[color=moonlight]{color:#fff;background:#1a242f}:host[color=midnight]{color:#fff;background:#202945}:host[color=darkness]{color:#fff;background:#161f27}:host[color=navy]{color:#fff;background:#0d2d42}:host[color=aqua]{color:#3d464d;background:#3bafda}:host[color=ocean]{color:#fff;background:#4a89dc}:host[color=mint]{color:#3d464d;background:#37bc9b}:host[color=grass]{color:#fff;background:#8cc152}:host[color=sunflower]{color:#fff;background:#f6b042}:host[color=bittersweet]{color:#fff;background:#eb6845}:host[color=grapefruit]{color:#fff;background:#da4453}:host[color=carnation]{color:#fff;background:#d770ad}:host[color=lavender]{color:#fff;background:#967adc}:host[color=mountain]{color:#fff;background:#9678b6}:host[color=info]{color:#fff;background:#4a89dc}:host[color=positive]{color:#fff;background:#4a89dc}:host[color=success]{color:#fff;background:#8cc152}:host[color=negative]{color:#fff;background:#da4453}:host[color=danger]{color:#fff;background:#da4453}:host[color=error]{color:#fff;background:#da4453}:host[color=warning]{color:#fff;background:#f6b042}:host[color=empty]{color:#3d464d;background:#cccdcc}:host[color=disabled]{color:#3d464d;background:#bebebe}:host[color=background]{color:#3d464d;background:#f7f7f7}:host[color=backgroundDark]{color:#3d464d;background:#e2e2e2}:host[color=presentation]{color:#fff;background:#5b6770}:host[color=bullhorn]{color:#3d464d;background:#ff6900}:host[color=pulse]{color:#3d464d;background:#3bafda}:host[color=company]{color:#fff;background:#3399dd}:host[color=candidate]{color:#fff;background:#44bb77}:host[color=lead]{color:#fff;background:#aa6699}:host[color=contact]{color:#fff;background:#ffaa44}:host[color=clientcontact]{color:#fff;background:#ffaa44}:host[color=opportunity]{color:#fff;background:#662255}:host[color=job]{color:#fff;background:#bb5566}:host[color=joborder]{color:#fff;background:#bb5566}:host[color=submission]{color:#3d464d;background:#a9adbb}:host[color=sendout]{color:#fff;background:#747884}:host[color=placement]{color:#fff;background:#0b344f}:host[color=note]{color:#fff;background:#747884}:host[color=contract]{color:#fff;background:#454ea0}:host[color=jobCode]{color:#fff;background:#696d79}:host[color=earnCode]{color:#fff;background:#696d79}:host[color=invoiceStatement]{color:#fff;background:#696d79}:host[color=billableCharge]{color:#fff;background:#696d79}:host[color=payableCharge]{color:#fff;background:#696d79}:host[color=user]{color:#fff;background:#696d79}:host[color=corporateUser]{color:#fff;background:#696d79}:host[color=distributionList]{color:#fff;background:#696d79}:host[color=credential]{color:#fff;background:#696d79}:host[color=person]{color:#fff;background:#696d79}\n"] }]
107
97
  }] });
108
98
  class CardElement {
109
99
  constructor(labels) {
@@ -207,21 +197,18 @@ CardElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "
207
197
  *ngIf="!(loading || config.loading) && !(message || config.message)"
208
198
  select="footer,novo-card-footer,[novo-card-footer],[novoCardFooter]"
209
199
  ></ng-content>
210
- `, isInline: true, components: [{ type: i2.NovoLoadingElement, selector: "novo-loading", inputs: ["theme", "color", "size"] }, { type: i3.NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }, { type: i4.NovoButtonElement, selector: "novo-button,button[theme]", inputs: ["color", "side", "size", "theme", "loading", "icon", "disabled"] }], directives: [{ type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i6.TooltipDirective, selector: "[tooltip]", inputs: ["tooltip", "tooltipPosition", "tooltipType", "tooltipSize", "tooltipBounce", "tooltipNoAnimate", "tooltipRounded", "tooltipAlways", "tooltipActive", "tooltipPreline", "removeTooltipArrow", "tooltipAutoPosition", "tooltipIsHTML"] }, { type: i5.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
200
+ `, isInline: true, styles: [":host{display:flex;flex-flow:column;background-color:#fff;background-color:var(--background-bright, #ffffff);box-shadow:0 -1px 3px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f;border-radius:.4em;position:relative;overflow-x:hidden}:host.loading{min-height:200px}:host div.card-loading-container{position:absolute;top:43px;left:0;right:0;bottom:0;border-radius:.4em;background-color:#fff;background-color:var(--background-bright, #ffffff);display:flex;flex-direction:column;justify-content:center;align-items:center;z-index:1}:host header{display:flex;flex-flow:row nowrap;align-items:center;justify-content:space-between;padding:.5em}:host header .title{display:flex;align-items:center;min-width:0;flex:1}:host header .title ::ng-deep i.bhi-move{color:#dbdbdb;margin-right:.3em;cursor:pointer}:host header .title h1,:host header .title h2,:host header .title h3{font-size:1.6rem;font-weight:500;line-height:1.5;color:#3d464d;color:var(--text-main, #3d464d);width:100%;padding:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host header .title h1 i,:host header .title h2 i,:host header .title h3 i{font-size:1.2em}:host header .title h1 i.bhi-info,:host header .title h2 i.bhi-info,:host header .title h3 i.bhi-info{color:#dbdbdb}:host header .actions{color:#5f6d78;white-space:nowrap}:host p.card-message{padding:20px 0;max-width:inherit;text-align:center;line-height:25px;color:#b8b8b8}:host p.card-message i{display:block;font-size:24px;margin:0 0 .5em;color:#d1d1d1}:host footer{display:flex;justify-content:center}:host.novo-card-inline{display:inline-flex;justify-self:start;align-self:start}:host.novo-card-inset-none{padding:0}:host.novo-card-inset-small{padding:.5rem}:host.novo-card-inset-medium{padding:1rem}:host.novo-card-inset-large{padding:1.25rem}:host ::ng-deep .novo-card-header+.novo-card-content.condensed,:host ::ng-deep .novo-card-header+:not(.novo-card-content){margin-top:.5rem}:host ::ng-deep [novo-card-image]{width:100%;margin:1rem 0}\n"], components: [{ type: i2.NovoLoadingElement, selector: "novo-loading", inputs: ["theme", "color", "size"] }, { type: i3.NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }, { type: i4.NovoButtonElement, selector: "novo-button,button[theme]", inputs: ["color", "side", "size", "theme", "loading", "icon", "disabled"] }], directives: [{ type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i6.TooltipDirective, selector: "[tooltip]", inputs: ["tooltip", "tooltipPosition", "tooltipType", "tooltipSize", "tooltipBounce", "tooltipNoAnimate", "tooltipRounded", "tooltipAlways", "tooltipActive", "tooltipPreline", "removeTooltipArrow", "tooltipAutoPosition", "tooltipIsHTML"] }, { type: i5.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
211
201
  __decorate([
212
202
  BooleanInput(),
213
203
  __metadata("design:type", Boolean)
214
204
  ], CardElement.prototype, "inline", void 0);
215
205
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CardElement, decorators: [{
216
206
  type: Component,
217
- args: [{
218
- selector: 'novo-card',
219
- host: {
207
+ args: [{ selector: 'novo-card', host: {
220
208
  class: 'novo-card',
221
209
  '[attr.data-automation-id]': 'cardAutomationId',
222
210
  '[class.loading]': 'loading || config.loading',
223
- },
224
- template: `
211
+ }, template: `
225
212
  <!--Loading-->
226
213
  <div class="card-loading-container" *ngIf="loading || config.loading">
227
214
  <novo-loading theme="line" [attr.data-automation-id]="cardAutomationId + '-loading'"></novo-loading>
@@ -282,8 +269,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
282
269
  *ngIf="!(loading || config.loading) && !(message || config.message)"
283
270
  select="footer,novo-card-footer,[novo-card-footer],[novoCardFooter]"
284
271
  ></ng-content>
285
- `,
286
- }]
272
+ `, styles: [":host{display:flex;flex-flow:column;background-color:#fff;background-color:var(--background-bright, #ffffff);box-shadow:0 -1px 3px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f;border-radius:.4em;position:relative;overflow-x:hidden}:host.loading{min-height:200px}:host div.card-loading-container{position:absolute;top:43px;left:0;right:0;bottom:0;border-radius:.4em;background-color:#fff;background-color:var(--background-bright, #ffffff);display:flex;flex-direction:column;justify-content:center;align-items:center;z-index:1}:host header{display:flex;flex-flow:row nowrap;align-items:center;justify-content:space-between;padding:.5em}:host header .title{display:flex;align-items:center;min-width:0;flex:1}:host header .title ::ng-deep i.bhi-move{color:#dbdbdb;margin-right:.3em;cursor:pointer}:host header .title h1,:host header .title h2,:host header .title h3{font-size:1.6rem;font-weight:500;line-height:1.5;color:#3d464d;color:var(--text-main, #3d464d);width:100%;padding:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host header .title h1 i,:host header .title h2 i,:host header .title h3 i{font-size:1.2em}:host header .title h1 i.bhi-info,:host header .title h2 i.bhi-info,:host header .title h3 i.bhi-info{color:#dbdbdb}:host header .actions{color:#5f6d78;white-space:nowrap}:host p.card-message{padding:20px 0;max-width:inherit;text-align:center;line-height:25px;color:#b8b8b8}:host p.card-message i{display:block;font-size:24px;margin:0 0 .5em;color:#d1d1d1}:host footer{display:flex;justify-content:center}:host.novo-card-inline{display:inline-flex;justify-self:start;align-self:start}:host.novo-card-inset-none{padding:0}:host.novo-card-inset-small{padding:.5rem}:host.novo-card-inset-medium{padding:1rem}:host.novo-card-inset-large{padding:1.25rem}:host ::ng-deep .novo-card-header+.novo-card-content.condensed,:host ::ng-deep .novo-card-header+:not(.novo-card-content){margin-top:.5rem}:host ::ng-deep [novo-card-image]{width:100%;margin:1rem 0}\n"] }]
287
273
  }], ctorParameters: function () { return [{ type: i1.NovoLabelService }]; }, propDecorators: { padding: [{
288
274
  type: Input
289
275
  }], config: [{
@@ -1 +1 @@
1
- {"version":3,"file":"novo-elements-elements-card.mjs","sources":["../../../projects/novo-elements/src/elements/card/Card.ts","../../../projects/novo-elements/src/elements/card/Card.module.ts","../../../projects/novo-elements/src/elements/card/novo-elements-elements-card.ts"],"sourcesContent":["// NG2\nimport { Component, Directive, EventEmitter, HostBinding, Input, OnChanges, OnInit, Output, SimpleChanges } from '@angular/core';\n// APP\nimport { NovoLabelService } from 'novo-elements/services';\nimport { BooleanInput } from 'novo-elements/utils';\n\n@Component({\n selector: 'novo-card-actions',\n template: '<ng-content></ng-content>',\n})\nexport class CardActionsElement {}\n\n/**\n * Content of a card, needed as it's used as a selector in the API.\n */\n@Directive({\n selector: 'novo-card-content, [novo-card-content], [novoCardContent]',\n host: { class: 'novo-card-content', '[class.condensed]': 'condensed' },\n})\nexport class CardContentElement {\n @Input() @BooleanInput() condensed: boolean = false;\n}\n\n/**\n * Content of a card, needed as it's used as a selector in the API.\n */\n@Component({\n selector: 'novo-card-header, [novo-card-header], [novoCardHeader]',\n host: { class: 'novo-card-header' },\n template: `\n <ng-content select=\"novo-avatar, [novo-avatar], novo-icon\"></ng-content>\n <div class=\"novo-card-header-text\">\n <ng-content select=\"novo-title, [novo-title], novo-text, novo-label, novo-caption\"></ng-content>\n </div>\n <ng-content></ng-content>\n <div class=\"novo-card-header-actions\">\n <ng-content select=\"novo-action\"></ng-content>\n </div>\n `,\n})\nexport class CardHeaderElement {}\n\n@Directive({\n selector: 'novo-card-footer, [novo-card-footer], [novoCardFooter]',\n host: { class: 'novo-card-footer' },\n})\nexport class CardFooterElement {}\n\n@Component({\n selector: 'novo-card',\n host: {\n class: 'novo-card',\n '[attr.data-automation-id]': 'cardAutomationId',\n '[class.loading]': 'loading || config.loading',\n },\n template: `\n <!--Loading-->\n <div class=\"card-loading-container\" *ngIf=\"loading || config.loading\">\n <novo-loading theme=\"line\" [attr.data-automation-id]=\"cardAutomationId + '-loading'\"></novo-loading>\n </div>\n <!--Card Header-->\n <header *ngIf=\"title || config.title\">\n <div class=\"title\">\n <!--Grabber Icon-->\n <novo-icon\n *ngIf=\"move || config.move\"\n tooltip=\"{{ labels.move }}\"\n tooltipPosition=\"bottom-right\"\n [attr.data-automation-id]=\"cardAutomationId + '-move'\"\n >move</novo-icon\n >\n <!--Card Title-->\n <h3 [attr.data-automation-id]=\"cardAutomationId + '-title'\">\n <span [tooltip]=\"iconTooltip\" tooltipPosition=\"right\"><i *ngIf=\"icon\" [ngClass]=\"iconClass\"></i></span>\n {{ title || config.title }}\n </h3>\n </div>\n <!--Card Actions-->\n <div class=\"actions\" [attr.data-automation-id]=\"cardAutomationId + '-actions'\">\n <ng-content select=\"novo-card-actions\"></ng-content>\n <novo-button\n theme=\"icon\"\n icon=\"refresh\"\n (click)=\"toggleRefresh()\"\n *ngIf=\"refresh || config.refresh\"\n [attr.data-automation-id]=\"cardAutomationId + '-refresh'\"\n tooltip=\"{{ labels.refresh }}\"\n tooltipPosition=\"bottom-left\"\n ></novo-button>\n\n <novo-button\n theme=\"icon\"\n icon=\"close-o\"\n (click)=\"toggleClose()\"\n *ngIf=\"close || config.close\"\n [attr.data-automation-id]=\"cardAutomationId + '-close'\"\n tooltip=\"{{ labels.close }}\"\n tooltipPosition=\"bottom-left\"\n ></novo-button>\n </div>\n </header>\n <!--Content (transcluded)-->\n <ng-content *ngIf=\"!(loading || config.loading) && !(message || config.message)\"></ng-content>\n <!--Error/Empty Message-->\n <p\n class=\"card-message\"\n *ngIf=\"!(loading || config.loading) && (message || config.message)\"\n [attr.data-automation-id]=\"cardAutomationId + '-message'\"\n >\n <i *ngIf=\"messageIconClass\" [ngClass]=\"messageIconClass\"></i> <span [innerHtml]=\"message || config.message\"></span>\n </p>\n <!--Card Footer-->\n <ng-content\n *ngIf=\"!(loading || config.loading) && !(message || config.message)\"\n select=\"footer,novo-card-footer,[novo-card-footer],[novoCardFooter]\"\n ></ng-content>\n `,\n})\nexport class CardElement implements OnChanges, OnInit {\n @Input()\n padding: boolean = true;\n @Input()\n config: any = {};\n @Input()\n title: string;\n @Input()\n message: string;\n @Input()\n messageIcon: string;\n @Input()\n icon: string;\n @Input()\n iconTooltip: string;\n @Input()\n refresh: boolean;\n @Input()\n close: boolean;\n @Input()\n move: boolean;\n @Input()\n loading: boolean;\n\n @Input()\n @BooleanInput()\n @HostBinding('class.novo-card-inline')\n inline: boolean;\n\n @Input()\n inset: string = 'none';\n @HostBinding('class')\n get hbInset() {\n return `novo-card-inset-${this.inset}`;\n }\n\n @Output()\n onClose: EventEmitter<void> = new EventEmitter();\n @Output()\n onRefresh: EventEmitter<void> = new EventEmitter();\n\n cardAutomationId: string;\n labels: NovoLabelService;\n iconClass: string | null;\n messageIconClass: string;\n\n constructor(labels: NovoLabelService) {\n this.labels = labels;\n }\n\n ngOnInit() {\n this.config = this.config || {};\n }\n\n ngOnChanges(changes?: SimpleChanges) {\n this.config = this.config || {};\n this.cardAutomationId = `${(this.title || this.config.title || 'no-title').trim().toLowerCase().replace(/\\s/g, '-')}-card`;\n\n const newIcon: string = this.icon || this.config.icon;\n const newMessageIcon: string = this.messageIcon || this.config.messageIcon;\n this.iconClass = newIcon ? `bhi-${newIcon}` : null;\n this.messageIconClass = newMessageIcon ? `bhi-${newMessageIcon}` : null;\n }\n\n toggleClose() {\n if (!this.config.onClose) {\n this.onClose.next();\n } else {\n this.config.onClose();\n }\n }\n\n toggleRefresh() {\n if (!this.config.onRefresh) {\n this.onRefresh.next();\n } else {\n this.config.onRefresh();\n }\n }\n}\n","// NG2\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n// APP\nimport { NovoButtonModule } from 'novo-elements/elements/button';\nimport { NovoIconModule } from 'novo-elements/elements/icon';\nimport { NovoLoadingModule } from 'novo-elements/elements/loading';\nimport { NovoTooltipModule } from 'novo-elements/elements/tooltip';\nimport { CardActionsElement, CardContentElement, CardElement, CardFooterElement, CardHeaderElement } from './Card';\n\n@NgModule({\n imports: [CommonModule, NovoIconModule, NovoButtonModule, NovoLoadingModule, NovoTooltipModule],\n declarations: [CardElement, CardActionsElement, CardContentElement, CardHeaderElement, CardFooterElement],\n exports: [CardElement, CardActionsElement, CardContentElement, CardHeaderElement, CardFooterElement],\n})\nexport class NovoCardModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"novo-elements-elements-card.mjs","sources":["../../../projects/novo-elements/src/elements/card/Card.ts","../../../projects/novo-elements/src/elements/card/Card.module.ts","../../../projects/novo-elements/src/elements/card/novo-elements-elements-card.ts"],"sourcesContent":["// NG2\nimport { Component, EventEmitter, HostBinding, Input, OnChanges, OnInit, Output, SimpleChanges } from '@angular/core';\n// APP\nimport { NovoLabelService } from 'novo-elements/services';\nimport { BooleanInput } from 'novo-elements/utils';\n\n@Component({\n selector: 'novo-card-actions',\n template: '<ng-content></ng-content>',\n})\nexport class CardActionsElement {}\n\n/**\n * Content of a card, needed as it's used as a selector in the API.\n */\n@Component({\n selector: 'novo-card-content, [novo-card-content], [novoCardContent]',\n host: { class: 'novo-card-content', '[class.condensed]': 'condensed' },\n template: '<ng-content></ng-content>',\n styleUrls: ['./CardContent.scss'],\n})\nexport class CardContentElement {\n @Input() @BooleanInput() condensed: boolean = false;\n}\n\n/**\n * Content of a card, needed as it's used as a selector in the API.\n */\n@Component({\n selector: 'novo-card-header, [novo-card-header], [novoCardHeader]',\n host: { class: 'novo-card-header' },\n template: `\n <ng-content select=\"novo-avatar, [novo-avatar], novo-icon\"></ng-content>\n <div class=\"novo-card-header-text\">\n <ng-content select=\"novo-title, [novo-title], novo-text, novo-label, novo-caption\"></ng-content>\n </div>\n <ng-content></ng-content>\n <div class=\"novo-card-header-actions\">\n <ng-content select=\"novo-action\"></ng-content>\n </div>\n `,\n styleUrls: ['./CardHeader.scss'],\n})\nexport class CardHeaderElement {}\n\n@Component({\n selector: 'novo-card-footer, [novo-card-footer], [novoCardFooter]',\n host: { class: 'novo-card-footer' },\n template: '<ng-content></ng-content>',\n styleUrls: ['./CardFooter.scss'],\n})\nexport class CardFooterElement {}\n\n@Component({\n selector: 'novo-card',\n host: {\n class: 'novo-card',\n '[attr.data-automation-id]': 'cardAutomationId',\n '[class.loading]': 'loading || config.loading',\n },\n template: `\n <!--Loading-->\n <div class=\"card-loading-container\" *ngIf=\"loading || config.loading\">\n <novo-loading theme=\"line\" [attr.data-automation-id]=\"cardAutomationId + '-loading'\"></novo-loading>\n </div>\n <!--Card Header-->\n <header *ngIf=\"title || config.title\">\n <div class=\"title\">\n <!--Grabber Icon-->\n <novo-icon\n *ngIf=\"move || config.move\"\n tooltip=\"{{ labels.move }}\"\n tooltipPosition=\"bottom-right\"\n [attr.data-automation-id]=\"cardAutomationId + '-move'\"\n >move</novo-icon\n >\n <!--Card Title-->\n <h3 [attr.data-automation-id]=\"cardAutomationId + '-title'\">\n <span [tooltip]=\"iconTooltip\" tooltipPosition=\"right\"><i *ngIf=\"icon\" [ngClass]=\"iconClass\"></i></span>\n {{ title || config.title }}\n </h3>\n </div>\n <!--Card Actions-->\n <div class=\"actions\" [attr.data-automation-id]=\"cardAutomationId + '-actions'\">\n <ng-content select=\"novo-card-actions\"></ng-content>\n <novo-button\n theme=\"icon\"\n icon=\"refresh\"\n (click)=\"toggleRefresh()\"\n *ngIf=\"refresh || config.refresh\"\n [attr.data-automation-id]=\"cardAutomationId + '-refresh'\"\n tooltip=\"{{ labels.refresh }}\"\n tooltipPosition=\"bottom-left\"\n ></novo-button>\n\n <novo-button\n theme=\"icon\"\n icon=\"close-o\"\n (click)=\"toggleClose()\"\n *ngIf=\"close || config.close\"\n [attr.data-automation-id]=\"cardAutomationId + '-close'\"\n tooltip=\"{{ labels.close }}\"\n tooltipPosition=\"bottom-left\"\n ></novo-button>\n </div>\n </header>\n <!--Content (transcluded)-->\n <ng-content *ngIf=\"!(loading || config.loading) && !(message || config.message)\"></ng-content>\n <!--Error/Empty Message-->\n <p\n class=\"card-message\"\n *ngIf=\"!(loading || config.loading) && (message || config.message)\"\n [attr.data-automation-id]=\"cardAutomationId + '-message'\"\n >\n <i *ngIf=\"messageIconClass\" [ngClass]=\"messageIconClass\"></i> <span [innerHtml]=\"message || config.message\"></span>\n </p>\n <!--Card Footer-->\n <ng-content\n *ngIf=\"!(loading || config.loading) && !(message || config.message)\"\n select=\"footer,novo-card-footer,[novo-card-footer],[novoCardFooter]\"\n ></ng-content>\n `,\n styleUrls: ['./Card.scss'],\n})\nexport class CardElement implements OnChanges, OnInit {\n @Input()\n padding: boolean = true;\n @Input()\n config: any = {};\n @Input()\n title: string;\n @Input()\n message: string;\n @Input()\n messageIcon: string;\n @Input()\n icon: string;\n @Input()\n iconTooltip: string;\n @Input()\n refresh: boolean;\n @Input()\n close: boolean;\n @Input()\n move: boolean;\n @Input()\n loading: boolean;\n\n @Input()\n @BooleanInput()\n @HostBinding('class.novo-card-inline')\n inline: boolean;\n\n @Input()\n inset: string = 'none';\n @HostBinding('class')\n get hbInset() {\n return `novo-card-inset-${this.inset}`;\n }\n\n @Output()\n onClose: EventEmitter<void> = new EventEmitter();\n @Output()\n onRefresh: EventEmitter<void> = new EventEmitter();\n\n cardAutomationId: string;\n labels: NovoLabelService;\n iconClass: string | null;\n messageIconClass: string;\n\n constructor(labels: NovoLabelService) {\n this.labels = labels;\n }\n\n ngOnInit() {\n this.config = this.config || {};\n }\n\n ngOnChanges(changes?: SimpleChanges) {\n this.config = this.config || {};\n this.cardAutomationId = `${(this.title || this.config.title || 'no-title').trim().toLowerCase().replace(/\\s/g, '-')}-card`;\n\n const newIcon: string = this.icon || this.config.icon;\n const newMessageIcon: string = this.messageIcon || this.config.messageIcon;\n this.iconClass = newIcon ? `bhi-${newIcon}` : null;\n this.messageIconClass = newMessageIcon ? `bhi-${newMessageIcon}` : null;\n }\n\n toggleClose() {\n if (!this.config.onClose) {\n this.onClose.next();\n } else {\n this.config.onClose();\n }\n }\n\n toggleRefresh() {\n if (!this.config.onRefresh) {\n this.onRefresh.next();\n } else {\n this.config.onRefresh();\n }\n }\n}\n","// NG2\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n// APP\nimport { NovoButtonModule } from 'novo-elements/elements/button';\nimport { NovoIconModule } from 'novo-elements/elements/icon';\nimport { NovoLoadingModule } from 'novo-elements/elements/loading';\nimport { NovoTooltipModule } from 'novo-elements/elements/tooltip';\nimport { CardActionsElement, CardContentElement, CardElement, CardFooterElement, CardHeaderElement } from './Card';\n\n@NgModule({\n imports: [CommonModule, NovoIconModule, NovoButtonModule, NovoLoadingModule, NovoTooltipModule],\n declarations: [CardElement, CardActionsElement, CardContentElement, CardHeaderElement, CardFooterElement],\n exports: [CardElement, CardActionsElement, CardContentElement, CardHeaderElement, CardFooterElement],\n})\nexport class NovoCardModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -323,7 +323,7 @@ NovoDatePickerElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
323
323
  <novo-button (click)="setToday()" class="today" size="small" data-automation-id="calendar-today">{{ labels.today }}</novo-button>
324
324
  </div>
325
325
  </div>
326
- `, isInline: true, components: [{ type: i3.NovoCalendarElement, selector: "novo-calendar", inputs: ["minYear", "maxYear", "minDate", "maxDate", "activeView", "layout", "selected", "preview", "overlays", "disabledDateMessage", "activeDate", "weekStartsOn", "numberOfMonths", "mode"], outputs: ["selectedChange", "previewChange", "activeDateChange"] }, { type: i4.NovoButtonElement, selector: "novo-button,button[theme]", inputs: ["color", "side", "size", "theme", "loading", "icon", "disabled"] }], directives: [{ type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], animations: [
326
+ `, isInline: true, styles: [":host{display:block}:host .date-picker-container{border-radius:4px;width:-webkit-min-content;width:-moz-min-content;width:min-content;text-align:center;background:var(--background-main);color:#3a3a3a;-webkit-user-select:none;-moz-user-select:none;user-select:none;box-shadow:0 1px 3px #00000026,0 2px 7px #0000001a;z-index:9001;position:relative}:host .date-picker-container .month-view+.month-view{border-collapse:unset;border-left:1px solid #dbdbdb;margin-left:.5rem;padding-left:.5rem}:host .date-picker-container .calendar-top{display:flex;flex-flow:column;background:#4a89dc;color:#fff;font-size:14px;border-top-right-radius:4px;border-top-left-radius:4px}:host .date-picker-container .calendar-top h1{font-weight:600;font-size:4.2em;color:#fff;margin:0;padding:0}:host .date-picker-container .calendar-top h2{font-weight:300;opacity:1;margin:10px auto;padding:0}:host .date-picker-container .calendar-top h3{font-weight:400;opacity:.4;margin:15px auto;padding:0}:host .date-picker-container .calendar-top h4{background:rgba(0,0,0,.15);font-size:1em;font-weight:300;padding:10px}:host .date-picker-container .date-range-tabs{border-bottom:1px solid #f7f7f7;display:flex;align-items:center;justify-content:space-between;position:relative;height:45px}:host .date-picker-container .date-range-tabs.week-select-mode>span{cursor:default;color:#3d464d;pointer-events:none;opacity:1!important}:host .date-picker-container .date-range-tabs.week-select-mode .indicator{display:none}:host .date-picker-container .date-range-tabs>span{color:#4a89dc;text-align:center;flex:1;cursor:pointer;font-weight:500;transition:opacity .2s ease-in-out;opacity:.6}:host .date-picker-container .date-range-tabs>span:hover{opacity:1!important}:host .date-picker-container .date-range-tabs .indicator{position:absolute;width:50%;height:2px;bottom:0;left:0;background:#4a89dc;transition:transform .2s ease-in-out}:host .date-picker-container .calendar-header{width:100%;display:flex;flex-flow:row nowrap;border-collapse:collapse;padding:14px 0;-webkit-user-select:none;justify-content:space-between;cursor:default;border-bottom:1px solid #f7f7f7}:host .date-picker-container .calendar-header .previous{width:30px;height:15px;display:inline-block;cursor:pointer}:host .date-picker-container .calendar-header .previous:after{content:\"\";border-bottom:4px solid transparent;border-top:4px solid transparent;border-right:4px solid #aaa;display:inline-block;height:0;vertical-align:middle;width:0}:host .date-picker-container .calendar-header .previous:hover:after{border-right:4px solid #4a89dc;cursor:pointer}:host .date-picker-container .calendar-header .heading{flex:1;display:inline-block;vertical-align:middle;color:#4a89dc;font-weight:600}:host .date-picker-container .calendar-header .heading .month{border-radius:2px;padding:3px 8px}:host .date-picker-container .calendar-header .heading .month:hover{background:#4a89dc;color:#fff;cursor:pointer}:host .date-picker-container .calendar-header .heading .year{border-radius:2px;padding:3px 8px}:host .date-picker-container .calendar-header .heading .year:hover{background:#4a89dc;color:#fff;cursor:pointer}:host .date-picker-container .calendar-header .next{width:30px;height:15px;display:inline-block;cursor:pointer}:host .date-picker-container .calendar-header .next:before{content:\"\";border-bottom:4px solid transparent;border-top:4px solid transparent;border-left:4px solid #aaa;display:inline-block;height:0;vertical-align:middle;width:0}:host .date-picker-container .calendar-header .next:hover:before{opacity:1;border-left:4px solid #4a89dc;cursor:pointer}:host .date-picker-container section.calendar-content{display:flex;flex-flow:column}:host .date-picker-container section.calendar-content span{display:block}:host .date-picker-container section.calendar-content.days{flex-flow:row nowrap;height:-webkit-min-content;height:-moz-min-content;height:min-content}:host .date-picker-container .calendar-content{width:100%;height:230px;overflow-y:scroll;position:static;top:0;left:0;transform-origin:209px 26px;transform:scale(1)}:host .date-picker-container .calendar-footer{width:100%;padding:1rem .8rem;text-align:left}:host ::ng-deep .hide-overflow-days .notinmonth{visibility:hidden}:host .calendar.popup{display:none;position:absolute;z-index:9001}:host .calendar.popup.open{display:block}\n"], components: [{ type: i3.NovoCalendarElement, selector: "novo-calendar", inputs: ["minYear", "maxYear", "minDate", "maxDate", "activeView", "layout", "selected", "preview", "overlays", "disabledDateMessage", "activeDate", "weekStartsOn", "numberOfMonths", "mode"], outputs: ["selectedChange", "previewChange", "activeDateChange"] }, { type: i4.NovoButtonElement, selector: "novo-button,button[theme]", inputs: ["color", "side", "size", "theme", "loading", "icon", "disabled"] }], directives: [{ type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], animations: [
327
327
  trigger('startDateTextState', [
328
328
  state('startDate', style({
329
329
  opacity: '1.0',
@@ -366,10 +366,7 @@ __decorate([
366
366
  ], NovoDatePickerElement.prototype, "hideFooter", void 0);
367
367
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDatePickerElement, decorators: [{
368
368
  type: Component,
369
- args: [{
370
- selector: 'novo-date-picker',
371
- providers: [DATE_PICKER_VALUE_ACCESSOR],
372
- animations: [
369
+ args: [{ selector: 'novo-date-picker', providers: [DATE_PICKER_VALUE_ACCESSOR], animations: [
373
370
  trigger('startDateTextState', [
374
371
  state('startDate', style({
375
372
  opacity: '1.0',
@@ -397,8 +394,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
397
394
  })),
398
395
  transition('startDate <=> endDate', animate('200ms ease-in')),
399
396
  ]),
400
- ],
401
- template: `
397
+ ], template: `
402
398
  <div class="date-picker-container">
403
399
  <div class="date-range-tabs" *ngIf="range" [class.week-select-mode]="weekRangeSelect">
404
400
  <span
@@ -434,8 +430,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
434
430
  <novo-button (click)="setToday()" class="today" size="small" data-automation-id="calendar-today">{{ labels.today }}</novo-button>
435
431
  </div>
436
432
  </div>
437
- `,
438
- }]
433
+ `, styles: [":host{display:block}:host .date-picker-container{border-radius:4px;width:-webkit-min-content;width:-moz-min-content;width:min-content;text-align:center;background:var(--background-main);color:#3a3a3a;-webkit-user-select:none;-moz-user-select:none;user-select:none;box-shadow:0 1px 3px #00000026,0 2px 7px #0000001a;z-index:9001;position:relative}:host .date-picker-container .month-view+.month-view{border-collapse:unset;border-left:1px solid #dbdbdb;margin-left:.5rem;padding-left:.5rem}:host .date-picker-container .calendar-top{display:flex;flex-flow:column;background:#4a89dc;color:#fff;font-size:14px;border-top-right-radius:4px;border-top-left-radius:4px}:host .date-picker-container .calendar-top h1{font-weight:600;font-size:4.2em;color:#fff;margin:0;padding:0}:host .date-picker-container .calendar-top h2{font-weight:300;opacity:1;margin:10px auto;padding:0}:host .date-picker-container .calendar-top h3{font-weight:400;opacity:.4;margin:15px auto;padding:0}:host .date-picker-container .calendar-top h4{background:rgba(0,0,0,.15);font-size:1em;font-weight:300;padding:10px}:host .date-picker-container .date-range-tabs{border-bottom:1px solid #f7f7f7;display:flex;align-items:center;justify-content:space-between;position:relative;height:45px}:host .date-picker-container .date-range-tabs.week-select-mode>span{cursor:default;color:#3d464d;pointer-events:none;opacity:1!important}:host .date-picker-container .date-range-tabs.week-select-mode .indicator{display:none}:host .date-picker-container .date-range-tabs>span{color:#4a89dc;text-align:center;flex:1;cursor:pointer;font-weight:500;transition:opacity .2s ease-in-out;opacity:.6}:host .date-picker-container .date-range-tabs>span:hover{opacity:1!important}:host .date-picker-container .date-range-tabs .indicator{position:absolute;width:50%;height:2px;bottom:0;left:0;background:#4a89dc;transition:transform .2s ease-in-out}:host .date-picker-container .calendar-header{width:100%;display:flex;flex-flow:row nowrap;border-collapse:collapse;padding:14px 0;-webkit-user-select:none;justify-content:space-between;cursor:default;border-bottom:1px solid #f7f7f7}:host .date-picker-container .calendar-header .previous{width:30px;height:15px;display:inline-block;cursor:pointer}:host .date-picker-container .calendar-header .previous:after{content:\"\";border-bottom:4px solid transparent;border-top:4px solid transparent;border-right:4px solid #aaa;display:inline-block;height:0;vertical-align:middle;width:0}:host .date-picker-container .calendar-header .previous:hover:after{border-right:4px solid #4a89dc;cursor:pointer}:host .date-picker-container .calendar-header .heading{flex:1;display:inline-block;vertical-align:middle;color:#4a89dc;font-weight:600}:host .date-picker-container .calendar-header .heading .month{border-radius:2px;padding:3px 8px}:host .date-picker-container .calendar-header .heading .month:hover{background:#4a89dc;color:#fff;cursor:pointer}:host .date-picker-container .calendar-header .heading .year{border-radius:2px;padding:3px 8px}:host .date-picker-container .calendar-header .heading .year:hover{background:#4a89dc;color:#fff;cursor:pointer}:host .date-picker-container .calendar-header .next{width:30px;height:15px;display:inline-block;cursor:pointer}:host .date-picker-container .calendar-header .next:before{content:\"\";border-bottom:4px solid transparent;border-top:4px solid transparent;border-left:4px solid #aaa;display:inline-block;height:0;vertical-align:middle;width:0}:host .date-picker-container .calendar-header .next:hover:before{opacity:1;border-left:4px solid #4a89dc;cursor:pointer}:host .date-picker-container section.calendar-content{display:flex;flex-flow:column}:host .date-picker-container section.calendar-content span{display:block}:host .date-picker-container section.calendar-content.days{flex-flow:row nowrap;height:-webkit-min-content;height:-moz-min-content;height:min-content}:host .date-picker-container .calendar-content{width:100%;height:230px;overflow-y:scroll;position:static;top:0;left:0;transform-origin:209px 26px;transform:scale(1)}:host .date-picker-container .calendar-footer{width:100%;padding:1rem .8rem;text-align:left}:host ::ng-deep .hide-overflow-days .notinmonth{visibility:hidden}:host .calendar.popup{display:none;position:absolute;z-index:9001}:host .calendar.popup.open{display:block}\n"] }]
439
434
  }], ctorParameters: function () { return [{ type: i1.NovoLabelService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i2.DomSanitizer }]; }, propDecorators: { minYear: [{
440
435
  type: Input
441
436
  }], maxYear: [{
@@ -731,13 +726,10 @@ NovoDatePickerInputElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
731
726
  [weekStart]="weekStart"
732
727
  ></novo-date-picker>
733
728
  </novo-overlay-template>
734
- `, isInline: true, components: [{ type: i2$1.NovoOverlayTemplateComponent, selector: "novo-overlay-template", inputs: ["position", "scrollStrategy", "width", "height", "closeOnSelect", "hasBackdrop", "parent"], outputs: ["select", "opening", "closing"] }, { type: NovoDatePickerElement, selector: "novo-date-picker", inputs: ["minYear", "maxYear", "start", "end", "inline", "weekStart", "preselected", "hideOverflowDays", "hideFooter", "disabledDateMessage", "numberOfMonths", "mode", "range", "weekRangeSelect"], outputs: ["onSelect"] }], directives: [{ type: i4$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i4$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i5.MaskedInputDirective, selector: "[textMask]", inputs: ["textMask"], exportAs: ["textMask"] }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
729
+ `, isInline: true, styles: [":host{flex:1;position:relative;display:block!important}:host.disabled{pointer-events:none;opacity:1}:host input{font-size:1em;border:none;border-bottom:1px solid #dbdbdb;background:transparent!important;border-radius:0;outline:none;height:2rem;width:100%;margin:0;padding:0;box-shadow:none;box-sizing:content-box;transition:all .3s;color:#3d464d}:host input:focus{border-bottom:1px solid #4a89dc}:host span.error-text{color:#da4453;padding-top:10px;flex:1;display:flex}:host>i.bhi-clock,:host>i.bhi-search,:host>i.bhi-times,:host>i.bhi-calendar{position:absolute;right:0;top:0px;font-size:1.2rem}\n"], components: [{ type: i2$1.NovoOverlayTemplateComponent, selector: "novo-overlay-template", inputs: ["position", "scrollStrategy", "width", "height", "closeOnSelect", "hasBackdrop", "parent"], outputs: ["select", "opening", "closing"] }, { type: NovoDatePickerElement, selector: "novo-date-picker", inputs: ["minYear", "maxYear", "start", "end", "inline", "weekStart", "preselected", "hideOverflowDays", "hideFooter", "disabledDateMessage", "numberOfMonths", "mode", "range", "weekRangeSelect"], outputs: ["onSelect"] }], directives: [{ type: i4$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i4$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i5.MaskedInputDirective, selector: "[textMask]", inputs: ["textMask"], exportAs: ["textMask"] }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
735
730
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDatePickerInputElement, decorators: [{
736
731
  type: Component,
737
- args: [{
738
- selector: 'novo-date-picker-input',
739
- providers: [DATE_VALUE_ACCESSOR$1],
740
- template: `
732
+ args: [{ selector: 'novo-date-picker-input', providers: [DATE_VALUE_ACCESSOR$1], template: `
741
733
  <input
742
734
  type="text"
743
735
  [name]="name"
@@ -766,8 +758,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
766
758
  [weekStart]="weekStart"
767
759
  ></novo-date-picker>
768
760
  </novo-overlay-template>
769
- `,
770
- }]
761
+ `, styles: [":host{flex:1;position:relative;display:block!important}:host.disabled{pointer-events:none;opacity:1}:host input{font-size:1em;border:none;border-bottom:1px solid #dbdbdb;background:transparent!important;border-radius:0;outline:none;height:2rem;width:100%;margin:0;padding:0;box-shadow:none;box-sizing:content-box;transition:all .3s;color:#3d464d}:host input:focus{border-bottom:1px solid #4a89dc}:host span.error-text{color:#da4453;padding-top:10px;flex:1;display:flex}:host>i.bhi-clock,:host>i.bhi-search,:host>i.bhi-times,:host>i.bhi-calendar{position:absolute;right:0;top:0px;font-size:1.2rem}\n"] }]
771
762
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.NovoLabelService }, { type: i0.ChangeDetectorRef }, { type: i1.DateFormatService }]; }, propDecorators: { name: [{
772
763
  type: Input
773
764
  }], start: [{
@@ -1068,13 +1059,10 @@ NovoDateRangeInputElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
1068
1059
  [weekStart]="weekStart"
1069
1060
  ></novo-date-picker>
1070
1061
  </novo-overlay-template>
1071
- `, isInline: true, components: [{ type: i2$2.NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }, { type: i2$1.NovoOverlayTemplateComponent, selector: "novo-overlay-template", inputs: ["position", "scrollStrategy", "width", "height", "closeOnSelect", "hasBackdrop", "parent"], outputs: ["select", "opening", "closing"] }, { type: NovoDatePickerElement, selector: "novo-date-picker", inputs: ["minYear", "maxYear", "start", "end", "inline", "weekStart", "preselected", "hideOverflowDays", "hideFooter", "disabledDateMessage", "numberOfMonths", "mode", "range", "weekRangeSelect"], outputs: ["onSelect"] }], directives: [{ type: i4$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i4$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i5.MaskedInputDirective, selector: "[textMask]", inputs: ["textMask"], exportAs: ["textMask"] }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1062
+ `, isInline: true, styles: [":host{flex:1;position:relative;display:flex;flex-flow:row nowrap;height:-webkit-min-content;height:-moz-min-content;height:min-content}:host.disabled{pointer-events:none;opacity:1}:host .date-range-input-container{position:relative;height:-webkit-min-content;height:-moz-min-content;height:min-content}:host .date-range-input-divider{font-weight:800;margin:0 .5em;align-self:center;height:-webkit-min-content;height:-moz-min-content;height:min-content}:host input{font-size:1em;border:none;border-bottom:1px solid var(--border);background:transparent!important;border-radius:0;outline:none;height:2rem;width:9em;margin:0;padding:0;box-shadow:none;box-sizing:content-box;transition:all .3s;color:var(--text-main)}:host input:focus{border-bottom:1px solid #4a89dc}:host novo-icon{position:absolute;right:0;top:0;font-size:1em}:host novo-icon[size=small]{top:calc(50% - .75em);font-size:.5em}\n"], components: [{ type: i2$2.NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }, { type: i2$1.NovoOverlayTemplateComponent, selector: "novo-overlay-template", inputs: ["position", "scrollStrategy", "width", "height", "closeOnSelect", "hasBackdrop", "parent"], outputs: ["select", "opening", "closing"] }, { type: NovoDatePickerElement, selector: "novo-date-picker", inputs: ["minYear", "maxYear", "start", "end", "inline", "weekStart", "preselected", "hideOverflowDays", "hideFooter", "disabledDateMessage", "numberOfMonths", "mode", "range", "weekRangeSelect"], outputs: ["onSelect"] }], directives: [{ type: i4$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i4$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i5.MaskedInputDirective, selector: "[textMask]", inputs: ["textMask"], exportAs: ["textMask"] }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1072
1063
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDateRangeInputElement, decorators: [{
1073
1064
  type: Component,
1074
- args: [{
1075
- selector: 'novo-date-range-input',
1076
- providers: [DATE_VALUE_ACCESSOR],
1077
- template: `
1065
+ args: [{ selector: 'novo-date-range-input', providers: [DATE_VALUE_ACCESSOR], template: `
1078
1066
  <div class="date-range-input-container">
1079
1067
  <input
1080
1068
  type="text"
@@ -1124,8 +1112,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1124
1112
  [weekStart]="weekStart"
1125
1113
  ></novo-date-picker>
1126
1114
  </novo-overlay-template>
1127
- `,
1128
- }]
1115
+ `, styles: [":host{flex:1;position:relative;display:flex;flex-flow:row nowrap;height:-webkit-min-content;height:-moz-min-content;height:min-content}:host.disabled{pointer-events:none;opacity:1}:host .date-range-input-container{position:relative;height:-webkit-min-content;height:-moz-min-content;height:min-content}:host .date-range-input-divider{font-weight:800;margin:0 .5em;align-self:center;height:-webkit-min-content;height:-moz-min-content;height:min-content}:host input{font-size:1em;border:none;border-bottom:1px solid var(--border);background:transparent!important;border-radius:0;outline:none;height:2rem;width:9em;margin:0;padding:0;box-shadow:none;box-sizing:content-box;transition:all .3s;color:var(--text-main)}:host input:focus{border-bottom:1px solid #4a89dc}:host novo-icon{position:absolute;right:0;top:0;font-size:1em}:host novo-icon[size=small]{top:calc(50% - .75em);font-size:.5em}\n"] }]
1129
1116
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.NovoLabelService }, { type: i0.ChangeDetectorRef }, { type: i1.DateFormatService }]; }, propDecorators: { name: [{
1130
1117
  type: Input
1131
1118
  }], start: [{
@@ -1342,13 +1329,10 @@ NovoMultiDateInputElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
1342
1329
  [weekStart]="weekStart"
1343
1330
  ></novo-date-picker>
1344
1331
  </novo-overlay-template>
1345
- `, isInline: true, components: [{ type: i2$3.NovoChipList, selector: "novo-chip-list", inputs: ["errorStateMatcher", "multiple", "stacked", "compareWith", "value", "required", "placeholder", "disabled", "aria-orientation", "selectable", "tabIndex"], outputs: ["change", "valueChange"], exportAs: ["novoChipList"] }, { type: i2$3.NovoChipElement, selector: "novo-chip, [novo-chip]", inputs: ["color", "tabIndex", "size", "type", "selected", "value", "selectable", "disabled", "removable"], outputs: ["selectionChange", "destroyed", "removed"] }, { type: i2$2.NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }, { type: i2$1.NovoOverlayTemplateComponent, selector: "novo-overlay-template", inputs: ["position", "scrollStrategy", "width", "height", "closeOnSelect", "hasBackdrop", "parent"], outputs: ["select", "opening", "closing"] }, { type: NovoDatePickerElement, selector: "novo-date-picker", inputs: ["minYear", "maxYear", "start", "end", "inline", "weekStart", "preselected", "hideOverflowDays", "hideFooter", "disabledDateMessage", "numberOfMonths", "mode", "range", "weekRangeSelect"], outputs: ["onSelect"] }], directives: [{ type: i6.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2$3.NovoChipRemove, selector: "[novoChipRemove]" }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], pipes: { "default": i8.DefaultPipe, "date": i6.DatePipe } });
1332
+ `, isInline: true, styles: [".novo-chip-list-wrapper{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;margin:-4px}.novo-chip-list-wrapper input.novo-input-element,.novo-chip-list-wrapper .novo-chip{margin:4px}.novo-chip-list-stacked{flex:1}.novo-chip-list-stacked .novo-chip-list-wrapper{flex-direction:column;align-items:flex-start}.novo-chip-list-stacked .novo-chip-list-wrapper .novo-chip{width:100%;height:2.8rem}.novo-chip-list-stacked .novo-chip-list-wrapper .novo-chip .novo-chip-remove,.novo-chip-list-stacked .novo-chip-list-wrapper .novo-chip .novo-chip-trailing-icon{margin-left:auto}.novo-chip-list-stacked .novo-chip-list-wrapper input.novo-chip-input{flex:1 0 auto}novo-field.novo-focused input.novo-chip-input{opacity:1;width:100px;margin:4px;flex:1 0 100px}novo-field:not(.novo-focused) .novo-field-input .novo-chip-list-has-value{margin-right:2rem}novo-field:not(.novo-focused) .novo-field-input .novo-chip-list-has-value input.novo-chip-input{opacity:0;width:0px!important;max-width:0px!important}input.novo-chip-input{width:20px;margin:4px;flex:1 0 20px}chips,:host,novo-chips,entity-chips,novo-entity-chips{width:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:flex-start;border-bottom:1px solid #afb9c0;transition:all .2s ease-in-out;position:relative;padding:5px 20px 5px 0}chips.with-value,novo-chips.with-value,entity-chips.with-value,novo-entity-chips.with-value{margin-bottom:20px}chips:hover,novo-chips:hover,entity-chips:hover,novo-entity-chips:hover{border-bottom:1px solid #5f6d78}chips.selected,chips.selected:hover,novo-chips.selected,novo-chips.selected:hover,entity-chips.selected,entity-chips.selected:hover,novo-entity-chips.selected,novo-entity-chips.selected:hover{border-bottom:1px solid #4a89dc}chips.selected+i,chips.selected:hover+i,novo-chips.selected+i,novo-chips.selected:hover+i,entity-chips.selected+i,entity-chips.selected:hover+i,novo-entity-chips.selected+i,novo-entity-chips.selected:hover+i{color:#4a89dc}chips.disabled,novo-chips.disabled,entity-chips.disabled,novo-entity-chips.disabled{border-bottom-style:dashed!important}chips .chip-input-container,:host .chip-input-container,novo-chips .chip-input-container,entity-chips .chip-input-container,novo-entity-chips .chip-input-container{flex-grow:4}chips .chip-input-container input,:host .chip-input-container input,novo-chips .chip-input-container input,entity-chips .chip-input-container input,novo-entity-chips .chip-input-container input{padding-top:0;border:none;background:transparent!important;width:100%}chips .chip-input-container input:focus,:host .chip-input-container input:focus,novo-chips .chip-input-container input:focus,entity-chips .chip-input-container input:focus,novo-entity-chips .chip-input-container input:focus{outline:none}chips .novo-chip-container,:host .novo-chip-container,novo-chips .novo-chip-container,entity-chips .novo-chip-container,novo-entity-chips .novo-chip-container{display:flex;flex-flow:row wrap;gap:.4rem}chips novo-picker,:host novo-picker,novo-chips novo-picker,entity-chips novo-picker,novo-entity-chips novo-picker{position:inherit}chips novo-picker>i,:host novo-picker>i,novo-chips novo-picker>i,entity-chips novo-picker>i,novo-entity-chips novo-picker>i{display:none}chips novo-picker div.picker-results-container,:host novo-picker div.picker-results-container,novo-chips novo-picker div.picker-results-container,entity-chips novo-picker div.picker-results-container,novo-entity-chips novo-picker div.picker-results-container{left:0}chips label.clear-all,:host label.clear-all,novo-chips label.clear-all,entity-chips label.clear-all,novo-entity-chips label.clear-all{flex:1 100%;position:absolute;right:0;bottom:-20px;font-size:.9rem;color:#da4453;cursor:pointer;display:flex;align-items:center}chips label.clear-all i,:host label.clear-all i,novo-chips label.clear-all i,entity-chips label.clear-all i,novo-entity-chips label.clear-all i{font-size:.7rem;padding-bottom:2px;margin-left:5px}chips i.bhi-search,:host i.bhi-search,novo-chips i.bhi-search,entity-chips i.bhi-search,novo-entity-chips i.bhi-search{position:absolute;bottom:8px;right:0;font-size:1.1em;color:#3d464d}chips,:host,novo-chips,entity-chips,novo-entity-chips{padding:2px 0}chips+i,:host+i,novo-chips+i,entity-chips+i,novo-entity-chips+i{position:absolute;right:0;bottom:7px}chips novo-picker,:host novo-picker,novo-chips novo-picker,entity-chips novo-picker,novo-entity-chips novo-picker{padding-bottom:0}chips novo-picker>input,:host novo-picker>input,novo-chips novo-picker>input,entity-chips novo-picker>input,novo-entity-chips novo-picker>input{border:none;border-bottom:none!important}chips novo-picker>input:disabled,:host novo-picker>input:disabled,novo-chips novo-picker>input:disabled,entity-chips novo-picker>input:disabled,novo-entity-chips novo-picker>input:disabled{border-bottom:none!important}chips.with-value,novo-chips.with-value,entity-chips.with-value,novo-entity-chips.with-value{margin-bottom:0}chips picker-results,:host picker-results,novo-chips picker-results,entity-chips picker-results,novo-entity-chips picker-results{position:absolute;color:#000}chips picker-results novo-list,:host picker-results novo-list,novo-chips picker-results novo-list,entity-chips picker-results novo-list,novo-entity-chips picker-results novo-list{max-height:49vh;overflow:auto}chips picker-results novo-list novo-list-item,:host picker-results novo-list novo-list-item,novo-chips picker-results novo-list novo-list-item,entity-chips picker-results novo-list novo-list-item,novo-entity-chips picker-results novo-list novo-list-item{flex:0 0;transition:background-color .25s}chips picker-results novo-list novo-list-item>div,:host picker-results novo-list novo-list-item>div,novo-chips picker-results novo-list novo-list-item>div,entity-chips picker-results novo-list novo-list-item>div,novo-entity-chips picker-results novo-list novo-list-item>div{width:100%}chips picker-results novo-list novo-list-item.active,:host picker-results novo-list novo-list-item.active,novo-chips picker-results novo-list novo-list-item.active,entity-chips picker-results novo-list novo-list-item.active,novo-entity-chips picker-results novo-list novo-list-item.active{background-color:#e0ebf9}chips picker-results novo-list novo-list-item:hover,:host picker-results novo-list novo-list-item:hover,novo-chips picker-results novo-list novo-list-item:hover,entity-chips picker-results novo-list novo-list-item:hover,novo-entity-chips picker-results novo-list novo-list-item:hover{background-color:#e0ebf9}chips picker-results novo-list novo-list-item item-content,:host picker-results novo-list novo-list-item item-content,novo-chips picker-results novo-list novo-list-item item-content,entity-chips picker-results novo-list novo-list-item item-content,novo-entity-chips picker-results novo-list novo-list-item item-content{flex-flow:row wrap}chips picker-results novo-list novo-list-item item-content>*,:host picker-results novo-list novo-list-item item-content>*,novo-chips picker-results novo-list novo-list-item item-content>*,entity-chips picker-results novo-list novo-list-item item-content>*,novo-entity-chips picker-results novo-list novo-list-item item-content>*{flex:0 0 33%;white-space:nowrap}chips picker-results .error-results,:host picker-results .error-results,chips picker-results .no-recents,:host picker-results .no-recents,chips picker-results .null-results,:host picker-results .null-results,novo-chips picker-results .error-results,novo-chips picker-results .no-recents,novo-chips picker-results .null-results,entity-chips picker-results .error-results,entity-chips picker-results .no-recents,entity-chips picker-results .null-results,novo-entity-chips picker-results .error-results,novo-entity-chips picker-results .no-recents,novo-entity-chips picker-results .null-results{text-align:center;padding:1em 0 4em}chips picker-results .error-results>i,:host picker-results .error-results>i,chips picker-results .no-recents>i,:host picker-results .no-recents>i,chips picker-results .null-results>i,:host picker-results .null-results>i,novo-chips picker-results .error-results>i,novo-chips picker-results .no-recents>i,novo-chips picker-results .null-results>i,entity-chips picker-results .error-results>i,entity-chips picker-results .no-recents>i,entity-chips picker-results .null-results>i,novo-entity-chips picker-results .error-results>i,novo-entity-chips picker-results .no-recents>i,novo-entity-chips picker-results .null-results>i{font-size:3em;margin:.5em;color:#0000004d}chips picker-results .error-results>h4,:host picker-results .error-results>h4,chips picker-results .error-results>p,:host picker-results .error-results>p,chips picker-results .no-recents>h4,:host picker-results .no-recents>h4,chips picker-results .no-recents>p,:host picker-results .no-recents>p,chips picker-results .null-results>h4,:host picker-results .null-results>h4,chips picker-results .null-results>p,:host picker-results .null-results>p,novo-chips picker-results .error-results>h4,novo-chips picker-results .error-results>p,novo-chips picker-results .no-recents>h4,novo-chips picker-results .no-recents>p,novo-chips picker-results .null-results>h4,novo-chips picker-results .null-results>p,entity-chips picker-results .error-results>h4,entity-chips picker-results .error-results>p,entity-chips picker-results .no-recents>h4,entity-chips picker-results .no-recents>p,entity-chips picker-results .null-results>h4,entity-chips picker-results .null-results>p,novo-entity-chips picker-results .error-results>h4,novo-entity-chips picker-results .error-results>p,novo-entity-chips picker-results .no-recents>h4,novo-entity-chips picker-results .no-recents>p,novo-entity-chips picker-results .null-results>h4,novo-entity-chips picker-results .null-results>p{margin:0;max-width:none;padding:0}chips picker-results .error-results>h4,:host picker-results .error-results>h4,chips picker-results .no-recents>h4,:host picker-results .no-recents>h4,chips picker-results .null-results>h4,:host picker-results .null-results>h4,novo-chips picker-results .error-results>h4,novo-chips picker-results .no-recents>h4,novo-chips picker-results .null-results>h4,entity-chips picker-results .error-results>h4,entity-chips picker-results .no-recents>h4,entity-chips picker-results .null-results>h4,novo-entity-chips picker-results .error-results>h4,novo-entity-chips picker-results .no-recents>h4,novo-entity-chips picker-results .null-results>h4{font-weight:500}chips picker-results section,:host picker-results section,novo-chips picker-results section,entity-chips picker-results section,novo-entity-chips picker-results section{box-shadow:.1em .1em 1em #00000040;z-index:9;position:absolute;width:100%;background-color:#fff;color:#000}chips .preview-container entity-picker-result,:host .preview-container entity-picker-result,novo-chips .preview-container entity-picker-result,entity-chips .preview-container entity-picker-result,novo-entity-chips .preview-container entity-picker-result{background:#ffffff;position:absolute;top:100%;left:0;width:100%;min-width:180px;max-height:49vh;overflow:auto;z-index:9001;border:1px solid #4a89dc;transition:all .2s ease-in-out}chips .preview-container entity-picker-result .novo-list-item,:host .preview-container entity-picker-result .novo-list-item,novo-chips .preview-container entity-picker-result .novo-list-item,entity-chips .preview-container entity-picker-result .novo-list-item,novo-entity-chips .preview-container entity-picker-result .novo-list-item{flex:0 0}chips .preview-container entity-picker-result .novo-list-item>div,:host .preview-container entity-picker-result .novo-list-item>div,novo-chips .preview-container entity-picker-result .novo-list-item>div,entity-chips .preview-container entity-picker-result .novo-list-item>div,novo-entity-chips .preview-container entity-picker-result .novo-list-item>div{width:100%}chips .preview-container entity-picker-result .novo-list-item .novo-item-content,:host .preview-container entity-picker-result .novo-list-item .novo-item-content,novo-chips .preview-container entity-picker-result .novo-list-item .novo-item-content,entity-chips .preview-container entity-picker-result .novo-list-item .novo-item-content,novo-entity-chips .preview-container entity-picker-result .novo-list-item .novo-item-content{flex-flow:row wrap}chips .preview-container entity-picker-result .novo-list-item .novo-item-content>*,:host .preview-container entity-picker-result .novo-list-item .novo-item-content>*,novo-chips .preview-container entity-picker-result .novo-list-item .novo-item-content>*,entity-chips .preview-container entity-picker-result .novo-list-item .novo-item-content>*,novo-entity-chips .preview-container entity-picker-result .novo-list-item .novo-item-content>*{flex:0 0 33%;white-space:nowrap}chips .preview-container entity-picker-result .novo-list-item .novo-item-content>p,:host .preview-container entity-picker-result .novo-list-item .novo-item-content>p,novo-chips .preview-container entity-picker-result .novo-list-item .novo-item-content>p,entity-chips .preview-container entity-picker-result .novo-list-item .novo-item-content>p,novo-entity-chips .preview-container entity-picker-result .novo-list-item .novo-item-content>p{min-width:15em;font-size:.9em;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-right:1em}entity-chip-results{max-width:none!important}novo-row-chips{display:flex;flex-flow:column;gap:.8rem}novo-row-chips .novo-row-chips-columns{display:flex;align-items:flex-end;margin-bottom:1em}novo-row-chips .novo-row-chips-columns .column-label{font-weight:500;word-break:word-break;overflow-wrap:break-word;line-height:1.375;color:var(--text-muted);font-size:var(--font-size-label);transition:color .2s ease-out,opacity .2s ease-out;vertical-align:middle;display:flex;flex:1;margin-right:1em}novo-row-chips .novo-row-chips-columns .column-label.text-capitalize{text-transform:capitalize}novo-row-chips .novo-row-chips-columns .column-label.text-uppercase{text-transform:uppercase}novo-row-chips .novo-row-chips-columns .column-label.text-nowrap{white-space:nowrap}novo-row-chips .novo-row-chips-columns .column-label.text-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}novo-row-chips .novo-row-chips-columns .column-label.text-size-default{font-size:inherit}novo-row-chips .novo-row-chips-columns .column-label.text-size-body{font-size:1.3rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-xs{font-size:1rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-sm{font-size:1.2rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-md{font-size:1.3rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-lg{font-size:1.6rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-xl{font-size:2rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-2xl{font-size:2.6rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-3xl{font-size:3.2rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-smaller{font-size:.8em}novo-row-chips .novo-row-chips-columns .column-label.text-size-larger{font-size:1.2em}novo-row-chips .novo-row-chips-columns .column-label.text-color-black{color:#000}novo-row-chips .novo-row-chips-columns .column-label.text-color-white{color:#fff}novo-row-chips .novo-row-chips-columns .column-label.text-color-gray{color:#9e9e9e}novo-row-chips .novo-row-chips-columns .column-label.text-color-grey{color:#9e9e9e}novo-row-chips .novo-row-chips-columns .column-label.text-color-offWhite{color:#f7f7f7}novo-row-chips .novo-row-chips-columns .column-label.text-color-bright{color:#f7f7f7}novo-row-chips .novo-row-chips-columns .column-label.text-color-light{color:#dbdbdb}novo-row-chips .novo-row-chips-columns .column-label.text-color-neutral{color:#4f5361}novo-row-chips .novo-row-chips-columns .column-label.text-color-dark{color:#3d464d}novo-row-chips .novo-row-chips-columns .column-label.text-color-orange{color:#ff6900}novo-row-chips .novo-row-chips-columns .column-label.text-color-navigation{color:#202945}novo-row-chips .novo-row-chips-columns .column-label.text-color-skyBlue{color:#009bdf}novo-row-chips .novo-row-chips-columns .column-label.text-color-steel{color:#5b6770}novo-row-chips .novo-row-chips-columns .column-label.text-color-metal{color:#637893}novo-row-chips .novo-row-chips-columns .column-label.text-color-sand{color:#f4f4f4}novo-row-chips .novo-row-chips-columns .column-label.text-color-silver{color:#e2e2e2}novo-row-chips .novo-row-chips-columns .column-label.text-color-stone{color:#bebebe}novo-row-chips .novo-row-chips-columns .column-label.text-color-ash{color:#a0a0a0}novo-row-chips .novo-row-chips-columns .column-label.text-color-slate{color:#707070}novo-row-chips .novo-row-chips-columns .column-label.text-color-onyx{color:#526980}novo-row-chips .novo-row-chips-columns .column-label.text-color-charcoal{color:#282828}novo-row-chips .novo-row-chips-columns .column-label.text-color-moonlight{color:#1a242f}novo-row-chips .novo-row-chips-columns .column-label.text-color-midnight{color:#202945}novo-row-chips .novo-row-chips-columns .column-label.text-color-darkness{color:#161f27}novo-row-chips .novo-row-chips-columns .column-label.text-color-navy{color:#0d2d42}novo-row-chips .novo-row-chips-columns .column-label.text-color-aqua{color:#3bafda}novo-row-chips .novo-row-chips-columns .column-label.text-color-ocean{color:#4a89dc}novo-row-chips .novo-row-chips-columns .column-label.text-color-mint{color:#37bc9b}novo-row-chips .novo-row-chips-columns .column-label.text-color-grass{color:#8cc152}novo-row-chips .novo-row-chips-columns .column-label.text-color-sunflower{color:#f6b042}novo-row-chips .novo-row-chips-columns .column-label.text-color-bittersweet{color:#eb6845}novo-row-chips .novo-row-chips-columns .column-label.text-color-grapefruit{color:#da4453}novo-row-chips .novo-row-chips-columns .column-label.text-color-carnation{color:#d770ad}novo-row-chips .novo-row-chips-columns .column-label.text-color-lavender{color:#967adc}novo-row-chips .novo-row-chips-columns .column-label.text-color-mountain{color:#9678b6}novo-row-chips .novo-row-chips-columns .column-label.text-color-info{color:#4a89dc}novo-row-chips .novo-row-chips-columns .column-label.text-color-positive{color:#4a89dc}novo-row-chips .novo-row-chips-columns .column-label.text-color-success{color:#8cc152}novo-row-chips .novo-row-chips-columns .column-label.text-color-negative{color:#da4453}novo-row-chips .novo-row-chips-columns .column-label.text-color-danger{color:#da4453}novo-row-chips .novo-row-chips-columns .column-label.text-color-error{color:#da4453}novo-row-chips .novo-row-chips-columns .column-label.text-color-warning{color:#f6b042}novo-row-chips .novo-row-chips-columns .column-label.text-color-empty{color:#cccdcc}novo-row-chips .novo-row-chips-columns .column-label.text-color-disabled{color:#bebebe}novo-row-chips .novo-row-chips-columns .column-label.text-color-background{color:#f7f7f7}novo-row-chips .novo-row-chips-columns .column-label.text-color-backgroundDark{color:#e2e2e2}novo-row-chips .novo-row-chips-columns .column-label.text-color-presentation{color:#5b6770}novo-row-chips .novo-row-chips-columns .column-label.text-color-bullhorn{color:#ff6900}novo-row-chips .novo-row-chips-columns .column-label.text-color-pulse{color:#3bafda}novo-row-chips .novo-row-chips-columns .column-label.text-color-company{color:#39d}novo-row-chips .novo-row-chips-columns .column-label.text-color-candidate{color:#4b7}novo-row-chips .novo-row-chips-columns .column-label.text-color-lead{color:#a69}novo-row-chips .novo-row-chips-columns .column-label.text-color-contact{color:#fa4}novo-row-chips .novo-row-chips-columns .column-label.text-color-clientcontact{color:#fa4}novo-row-chips .novo-row-chips-columns .column-label.text-color-opportunity{color:#625}novo-row-chips .novo-row-chips-columns .column-label.text-color-job{color:#b56}novo-row-chips .novo-row-chips-columns .column-label.text-color-joborder{color:#b56}novo-row-chips .novo-row-chips-columns .column-label.text-color-submission{color:#a9adbb}novo-row-chips .novo-row-chips-columns .column-label.text-color-sendout{color:#747884}novo-row-chips .novo-row-chips-columns .column-label.text-color-placement{color:#0b344f}novo-row-chips .novo-row-chips-columns .column-label.text-color-note{color:#747884}novo-row-chips .novo-row-chips-columns .column-label.text-color-contract{color:#454ea0}novo-row-chips .novo-row-chips-columns .column-label.text-color-jobCode{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-earnCode{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-invoiceStatement{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-billableCharge{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-payableCharge{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-user{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-corporateUser{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-distributionList{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-credential{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-person{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.margin-before{margin-top:.4rem}novo-row-chips .novo-row-chips-columns .column-label.margin-after{margin-bottom:.8rem}novo-row-chips .novo-row-chips-columns .column-label.text-length-small{max-width:40ch}novo-row-chips .novo-row-chips-columns .column-label.text-length-medium{max-width:55ch}novo-row-chips .novo-row-chips-columns .column-label.text-length-large{max-width:70ch}novo-row-chips .novo-row-chips-columns .column-label.text-weight-hairline{font-weight:100}novo-row-chips .novo-row-chips-columns .column-label.text-weight-thin{font-weight:200}novo-row-chips .novo-row-chips-columns .column-label.text-weight-light{font-weight:300}novo-row-chips .novo-row-chips-columns .column-label.text-weight-normal{font-weight:400}novo-row-chips .novo-row-chips-columns .column-label.text-weight-medium{font-weight:500}novo-row-chips .novo-row-chips-columns .column-label.text-weight-semibold{font-weight:600}novo-row-chips .novo-row-chips-columns .column-label.text-weight-bold{font-weight:700}novo-row-chips .novo-row-chips-columns .column-label.text-weight-extrabold{font-weight:800}novo-row-chips .novo-row-chips-columns .column-label.text-weight-heavy{font-weight:900}novo-row-chips .novo-row-chips-columns .column-label.text-weight-lighter{font-weight:lighter}novo-row-chips .novo-row-chips-columns .column-label.text-weight-bolder{font-weight:bolder}novo-row-chips .novo-row-chips-columns .column-label:first-of-type{flex:0 0 275px}novo-row-chips .novo-row-chips-columns .column-data{display:flex;align-items:center;background:transparent!important;border:none;border-bottom:1px dashed #85939e;border-radius:0;outline:none;height:2em;width:100%;margin:0 1em 0 0}novo-row-chips .novo-row-chips-columns .column-data.editable{border-bottom:none}novo-row-chips .novo-row-chips-columns .column-data.editable input{background:none;border:none}novo-row-chips .novo-row-chips-columns .column-data:first-of-type{flex:0 0 275px}novo-row-chips .novo-row-chips-columns .column-data span{color:inherit;align-items:flex-start;display:flex;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;line-clamp:2;line-height:1em;max-height:2em;min-height:1em}novo-row-chips .novo-row-chips-columns i.bhi-delete-o{color:#da4453}novo-row-chips .novo-chip.novo-row-chip{padding:0}novo-row-chips .novo-row-chips-empty-message{font-style:italic;color:#9e9e9e}novo-row-chips i{cursor:pointer}:host .chip-input-container{padding-top:10px}:host .chip-input-container .placeholder{color:var(--form-placeholder)}:host .panel-toggle{padding:.2em}:host .panel-toggle i{margin:0}:host .panel-toggle.selected{background:#dbdbdb;border-radius:50%}:host ul.summary{display:inline;list-style:none;color:#868686;padding:0 10px}:host ul.summary li{display:inline;padding:0 3px}:host ul.summary li:after{content:\", \"}:host ul.summary li:last-child:after{content:\" \"}:host chip span{text-transform:capitalize}\n"], components: [{ type: i2$3.NovoChipList, selector: "novo-chip-list", inputs: ["errorStateMatcher", "multiple", "stacked", "compareWith", "value", "required", "placeholder", "disabled", "aria-orientation", "selectable", "tabIndex"], outputs: ["change", "valueChange"], exportAs: ["novoChipList"] }, { type: i2$3.NovoChipElement, selector: "novo-chip, [novo-chip]", inputs: ["color", "tabIndex", "size", "type", "selected", "value", "selectable", "disabled", "removable"], outputs: ["selectionChange", "destroyed", "removed"] }, { type: i2$2.NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }, { type: i2$1.NovoOverlayTemplateComponent, selector: "novo-overlay-template", inputs: ["position", "scrollStrategy", "width", "height", "closeOnSelect", "hasBackdrop", "parent"], outputs: ["select", "opening", "closing"] }, { type: NovoDatePickerElement, selector: "novo-date-picker", inputs: ["minYear", "maxYear", "start", "end", "inline", "weekStart", "preselected", "hideOverflowDays", "hideFooter", "disabledDateMessage", "numberOfMonths", "mode", "range", "weekRangeSelect"], outputs: ["onSelect"] }], directives: [{ type: i6.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2$3.NovoChipRemove, selector: "[novoChipRemove]" }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], pipes: { "default": i8.DefaultPipe, "date": i6.DatePipe } });
1346
1333
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoMultiDateInputElement, decorators: [{
1347
1334
  type: Component,
1348
- args: [{
1349
- selector: 'novo-multi-date-input',
1350
- providers: [MULTI_DATE_VALUE_ACCESSOR],
1351
- template: `
1335
+ args: [{ selector: 'novo-multi-date-input', providers: [MULTI_DATE_VALUE_ACCESSOR], template: `
1352
1336
  <novo-chip-list>
1353
1337
  <novo-chip *ngFor="let date of value | default: []" (removed)="remove($event, date)">
1354
1338
  {{ date | date: format }}
@@ -1376,8 +1360,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1376
1360
  [weekStart]="weekStart"
1377
1361
  ></novo-date-picker>
1378
1362
  </novo-overlay-template>
1379
- `,
1380
- }]
1363
+ `, styles: [".novo-chip-list-wrapper{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;margin:-4px}.novo-chip-list-wrapper input.novo-input-element,.novo-chip-list-wrapper .novo-chip{margin:4px}.novo-chip-list-stacked{flex:1}.novo-chip-list-stacked .novo-chip-list-wrapper{flex-direction:column;align-items:flex-start}.novo-chip-list-stacked .novo-chip-list-wrapper .novo-chip{width:100%;height:2.8rem}.novo-chip-list-stacked .novo-chip-list-wrapper .novo-chip .novo-chip-remove,.novo-chip-list-stacked .novo-chip-list-wrapper .novo-chip .novo-chip-trailing-icon{margin-left:auto}.novo-chip-list-stacked .novo-chip-list-wrapper input.novo-chip-input{flex:1 0 auto}novo-field.novo-focused input.novo-chip-input{opacity:1;width:100px;margin:4px;flex:1 0 100px}novo-field:not(.novo-focused) .novo-field-input .novo-chip-list-has-value{margin-right:2rem}novo-field:not(.novo-focused) .novo-field-input .novo-chip-list-has-value input.novo-chip-input{opacity:0;width:0px!important;max-width:0px!important}input.novo-chip-input{width:20px;margin:4px;flex:1 0 20px}chips,:host,novo-chips,entity-chips,novo-entity-chips{width:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:flex-start;border-bottom:1px solid #afb9c0;transition:all .2s ease-in-out;position:relative;padding:5px 20px 5px 0}chips.with-value,novo-chips.with-value,entity-chips.with-value,novo-entity-chips.with-value{margin-bottom:20px}chips:hover,novo-chips:hover,entity-chips:hover,novo-entity-chips:hover{border-bottom:1px solid #5f6d78}chips.selected,chips.selected:hover,novo-chips.selected,novo-chips.selected:hover,entity-chips.selected,entity-chips.selected:hover,novo-entity-chips.selected,novo-entity-chips.selected:hover{border-bottom:1px solid #4a89dc}chips.selected+i,chips.selected:hover+i,novo-chips.selected+i,novo-chips.selected:hover+i,entity-chips.selected+i,entity-chips.selected:hover+i,novo-entity-chips.selected+i,novo-entity-chips.selected:hover+i{color:#4a89dc}chips.disabled,novo-chips.disabled,entity-chips.disabled,novo-entity-chips.disabled{border-bottom-style:dashed!important}chips .chip-input-container,:host .chip-input-container,novo-chips .chip-input-container,entity-chips .chip-input-container,novo-entity-chips .chip-input-container{flex-grow:4}chips .chip-input-container input,:host .chip-input-container input,novo-chips .chip-input-container input,entity-chips .chip-input-container input,novo-entity-chips .chip-input-container input{padding-top:0;border:none;background:transparent!important;width:100%}chips .chip-input-container input:focus,:host .chip-input-container input:focus,novo-chips .chip-input-container input:focus,entity-chips .chip-input-container input:focus,novo-entity-chips .chip-input-container input:focus{outline:none}chips .novo-chip-container,:host .novo-chip-container,novo-chips .novo-chip-container,entity-chips .novo-chip-container,novo-entity-chips .novo-chip-container{display:flex;flex-flow:row wrap;gap:.4rem}chips novo-picker,:host novo-picker,novo-chips novo-picker,entity-chips novo-picker,novo-entity-chips novo-picker{position:inherit}chips novo-picker>i,:host novo-picker>i,novo-chips novo-picker>i,entity-chips novo-picker>i,novo-entity-chips novo-picker>i{display:none}chips novo-picker div.picker-results-container,:host novo-picker div.picker-results-container,novo-chips novo-picker div.picker-results-container,entity-chips novo-picker div.picker-results-container,novo-entity-chips novo-picker div.picker-results-container{left:0}chips label.clear-all,:host label.clear-all,novo-chips label.clear-all,entity-chips label.clear-all,novo-entity-chips label.clear-all{flex:1 100%;position:absolute;right:0;bottom:-20px;font-size:.9rem;color:#da4453;cursor:pointer;display:flex;align-items:center}chips label.clear-all i,:host label.clear-all i,novo-chips label.clear-all i,entity-chips label.clear-all i,novo-entity-chips label.clear-all i{font-size:.7rem;padding-bottom:2px;margin-left:5px}chips i.bhi-search,:host i.bhi-search,novo-chips i.bhi-search,entity-chips i.bhi-search,novo-entity-chips i.bhi-search{position:absolute;bottom:8px;right:0;font-size:1.1em;color:#3d464d}chips,:host,novo-chips,entity-chips,novo-entity-chips{padding:2px 0}chips+i,:host+i,novo-chips+i,entity-chips+i,novo-entity-chips+i{position:absolute;right:0;bottom:7px}chips novo-picker,:host novo-picker,novo-chips novo-picker,entity-chips novo-picker,novo-entity-chips novo-picker{padding-bottom:0}chips novo-picker>input,:host novo-picker>input,novo-chips novo-picker>input,entity-chips novo-picker>input,novo-entity-chips novo-picker>input{border:none;border-bottom:none!important}chips novo-picker>input:disabled,:host novo-picker>input:disabled,novo-chips novo-picker>input:disabled,entity-chips novo-picker>input:disabled,novo-entity-chips novo-picker>input:disabled{border-bottom:none!important}chips.with-value,novo-chips.with-value,entity-chips.with-value,novo-entity-chips.with-value{margin-bottom:0}chips picker-results,:host picker-results,novo-chips picker-results,entity-chips picker-results,novo-entity-chips picker-results{position:absolute;color:#000}chips picker-results novo-list,:host picker-results novo-list,novo-chips picker-results novo-list,entity-chips picker-results novo-list,novo-entity-chips picker-results novo-list{max-height:49vh;overflow:auto}chips picker-results novo-list novo-list-item,:host picker-results novo-list novo-list-item,novo-chips picker-results novo-list novo-list-item,entity-chips picker-results novo-list novo-list-item,novo-entity-chips picker-results novo-list novo-list-item{flex:0 0;transition:background-color .25s}chips picker-results novo-list novo-list-item>div,:host picker-results novo-list novo-list-item>div,novo-chips picker-results novo-list novo-list-item>div,entity-chips picker-results novo-list novo-list-item>div,novo-entity-chips picker-results novo-list novo-list-item>div{width:100%}chips picker-results novo-list novo-list-item.active,:host picker-results novo-list novo-list-item.active,novo-chips picker-results novo-list novo-list-item.active,entity-chips picker-results novo-list novo-list-item.active,novo-entity-chips picker-results novo-list novo-list-item.active{background-color:#e0ebf9}chips picker-results novo-list novo-list-item:hover,:host picker-results novo-list novo-list-item:hover,novo-chips picker-results novo-list novo-list-item:hover,entity-chips picker-results novo-list novo-list-item:hover,novo-entity-chips picker-results novo-list novo-list-item:hover{background-color:#e0ebf9}chips picker-results novo-list novo-list-item item-content,:host picker-results novo-list novo-list-item item-content,novo-chips picker-results novo-list novo-list-item item-content,entity-chips picker-results novo-list novo-list-item item-content,novo-entity-chips picker-results novo-list novo-list-item item-content{flex-flow:row wrap}chips picker-results novo-list novo-list-item item-content>*,:host picker-results novo-list novo-list-item item-content>*,novo-chips picker-results novo-list novo-list-item item-content>*,entity-chips picker-results novo-list novo-list-item item-content>*,novo-entity-chips picker-results novo-list novo-list-item item-content>*{flex:0 0 33%;white-space:nowrap}chips picker-results .error-results,:host picker-results .error-results,chips picker-results .no-recents,:host picker-results .no-recents,chips picker-results .null-results,:host picker-results .null-results,novo-chips picker-results .error-results,novo-chips picker-results .no-recents,novo-chips picker-results .null-results,entity-chips picker-results .error-results,entity-chips picker-results .no-recents,entity-chips picker-results .null-results,novo-entity-chips picker-results .error-results,novo-entity-chips picker-results .no-recents,novo-entity-chips picker-results .null-results{text-align:center;padding:1em 0 4em}chips picker-results .error-results>i,:host picker-results .error-results>i,chips picker-results .no-recents>i,:host picker-results .no-recents>i,chips picker-results .null-results>i,:host picker-results .null-results>i,novo-chips picker-results .error-results>i,novo-chips picker-results .no-recents>i,novo-chips picker-results .null-results>i,entity-chips picker-results .error-results>i,entity-chips picker-results .no-recents>i,entity-chips picker-results .null-results>i,novo-entity-chips picker-results .error-results>i,novo-entity-chips picker-results .no-recents>i,novo-entity-chips picker-results .null-results>i{font-size:3em;margin:.5em;color:#0000004d}chips picker-results .error-results>h4,:host picker-results .error-results>h4,chips picker-results .error-results>p,:host picker-results .error-results>p,chips picker-results .no-recents>h4,:host picker-results .no-recents>h4,chips picker-results .no-recents>p,:host picker-results .no-recents>p,chips picker-results .null-results>h4,:host picker-results .null-results>h4,chips picker-results .null-results>p,:host picker-results .null-results>p,novo-chips picker-results .error-results>h4,novo-chips picker-results .error-results>p,novo-chips picker-results .no-recents>h4,novo-chips picker-results .no-recents>p,novo-chips picker-results .null-results>h4,novo-chips picker-results .null-results>p,entity-chips picker-results .error-results>h4,entity-chips picker-results .error-results>p,entity-chips picker-results .no-recents>h4,entity-chips picker-results .no-recents>p,entity-chips picker-results .null-results>h4,entity-chips picker-results .null-results>p,novo-entity-chips picker-results .error-results>h4,novo-entity-chips picker-results .error-results>p,novo-entity-chips picker-results .no-recents>h4,novo-entity-chips picker-results .no-recents>p,novo-entity-chips picker-results .null-results>h4,novo-entity-chips picker-results .null-results>p{margin:0;max-width:none;padding:0}chips picker-results .error-results>h4,:host picker-results .error-results>h4,chips picker-results .no-recents>h4,:host picker-results .no-recents>h4,chips picker-results .null-results>h4,:host picker-results .null-results>h4,novo-chips picker-results .error-results>h4,novo-chips picker-results .no-recents>h4,novo-chips picker-results .null-results>h4,entity-chips picker-results .error-results>h4,entity-chips picker-results .no-recents>h4,entity-chips picker-results .null-results>h4,novo-entity-chips picker-results .error-results>h4,novo-entity-chips picker-results .no-recents>h4,novo-entity-chips picker-results .null-results>h4{font-weight:500}chips picker-results section,:host picker-results section,novo-chips picker-results section,entity-chips picker-results section,novo-entity-chips picker-results section{box-shadow:.1em .1em 1em #00000040;z-index:9;position:absolute;width:100%;background-color:#fff;color:#000}chips .preview-container entity-picker-result,:host .preview-container entity-picker-result,novo-chips .preview-container entity-picker-result,entity-chips .preview-container entity-picker-result,novo-entity-chips .preview-container entity-picker-result{background:#ffffff;position:absolute;top:100%;left:0;width:100%;min-width:180px;max-height:49vh;overflow:auto;z-index:9001;border:1px solid #4a89dc;transition:all .2s ease-in-out}chips .preview-container entity-picker-result .novo-list-item,:host .preview-container entity-picker-result .novo-list-item,novo-chips .preview-container entity-picker-result .novo-list-item,entity-chips .preview-container entity-picker-result .novo-list-item,novo-entity-chips .preview-container entity-picker-result .novo-list-item{flex:0 0}chips .preview-container entity-picker-result .novo-list-item>div,:host .preview-container entity-picker-result .novo-list-item>div,novo-chips .preview-container entity-picker-result .novo-list-item>div,entity-chips .preview-container entity-picker-result .novo-list-item>div,novo-entity-chips .preview-container entity-picker-result .novo-list-item>div{width:100%}chips .preview-container entity-picker-result .novo-list-item .novo-item-content,:host .preview-container entity-picker-result .novo-list-item .novo-item-content,novo-chips .preview-container entity-picker-result .novo-list-item .novo-item-content,entity-chips .preview-container entity-picker-result .novo-list-item .novo-item-content,novo-entity-chips .preview-container entity-picker-result .novo-list-item .novo-item-content{flex-flow:row wrap}chips .preview-container entity-picker-result .novo-list-item .novo-item-content>*,:host .preview-container entity-picker-result .novo-list-item .novo-item-content>*,novo-chips .preview-container entity-picker-result .novo-list-item .novo-item-content>*,entity-chips .preview-container entity-picker-result .novo-list-item .novo-item-content>*,novo-entity-chips .preview-container entity-picker-result .novo-list-item .novo-item-content>*{flex:0 0 33%;white-space:nowrap}chips .preview-container entity-picker-result .novo-list-item .novo-item-content>p,:host .preview-container entity-picker-result .novo-list-item .novo-item-content>p,novo-chips .preview-container entity-picker-result .novo-list-item .novo-item-content>p,entity-chips .preview-container entity-picker-result .novo-list-item .novo-item-content>p,novo-entity-chips .preview-container entity-picker-result .novo-list-item .novo-item-content>p{min-width:15em;font-size:.9em;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-right:1em}entity-chip-results{max-width:none!important}novo-row-chips{display:flex;flex-flow:column;gap:.8rem}novo-row-chips .novo-row-chips-columns{display:flex;align-items:flex-end;margin-bottom:1em}novo-row-chips .novo-row-chips-columns .column-label{font-weight:500;word-break:word-break;overflow-wrap:break-word;line-height:1.375;color:var(--text-muted);font-size:var(--font-size-label);transition:color .2s ease-out,opacity .2s ease-out;vertical-align:middle;display:flex;flex:1;margin-right:1em}novo-row-chips .novo-row-chips-columns .column-label.text-capitalize{text-transform:capitalize}novo-row-chips .novo-row-chips-columns .column-label.text-uppercase{text-transform:uppercase}novo-row-chips .novo-row-chips-columns .column-label.text-nowrap{white-space:nowrap}novo-row-chips .novo-row-chips-columns .column-label.text-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}novo-row-chips .novo-row-chips-columns .column-label.text-size-default{font-size:inherit}novo-row-chips .novo-row-chips-columns .column-label.text-size-body{font-size:1.3rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-xs{font-size:1rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-sm{font-size:1.2rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-md{font-size:1.3rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-lg{font-size:1.6rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-xl{font-size:2rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-2xl{font-size:2.6rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-3xl{font-size:3.2rem}novo-row-chips .novo-row-chips-columns .column-label.text-size-smaller{font-size:.8em}novo-row-chips .novo-row-chips-columns .column-label.text-size-larger{font-size:1.2em}novo-row-chips .novo-row-chips-columns .column-label.text-color-black{color:#000}novo-row-chips .novo-row-chips-columns .column-label.text-color-white{color:#fff}novo-row-chips .novo-row-chips-columns .column-label.text-color-gray{color:#9e9e9e}novo-row-chips .novo-row-chips-columns .column-label.text-color-grey{color:#9e9e9e}novo-row-chips .novo-row-chips-columns .column-label.text-color-offWhite{color:#f7f7f7}novo-row-chips .novo-row-chips-columns .column-label.text-color-bright{color:#f7f7f7}novo-row-chips .novo-row-chips-columns .column-label.text-color-light{color:#dbdbdb}novo-row-chips .novo-row-chips-columns .column-label.text-color-neutral{color:#4f5361}novo-row-chips .novo-row-chips-columns .column-label.text-color-dark{color:#3d464d}novo-row-chips .novo-row-chips-columns .column-label.text-color-orange{color:#ff6900}novo-row-chips .novo-row-chips-columns .column-label.text-color-navigation{color:#202945}novo-row-chips .novo-row-chips-columns .column-label.text-color-skyBlue{color:#009bdf}novo-row-chips .novo-row-chips-columns .column-label.text-color-steel{color:#5b6770}novo-row-chips .novo-row-chips-columns .column-label.text-color-metal{color:#637893}novo-row-chips .novo-row-chips-columns .column-label.text-color-sand{color:#f4f4f4}novo-row-chips .novo-row-chips-columns .column-label.text-color-silver{color:#e2e2e2}novo-row-chips .novo-row-chips-columns .column-label.text-color-stone{color:#bebebe}novo-row-chips .novo-row-chips-columns .column-label.text-color-ash{color:#a0a0a0}novo-row-chips .novo-row-chips-columns .column-label.text-color-slate{color:#707070}novo-row-chips .novo-row-chips-columns .column-label.text-color-onyx{color:#526980}novo-row-chips .novo-row-chips-columns .column-label.text-color-charcoal{color:#282828}novo-row-chips .novo-row-chips-columns .column-label.text-color-moonlight{color:#1a242f}novo-row-chips .novo-row-chips-columns .column-label.text-color-midnight{color:#202945}novo-row-chips .novo-row-chips-columns .column-label.text-color-darkness{color:#161f27}novo-row-chips .novo-row-chips-columns .column-label.text-color-navy{color:#0d2d42}novo-row-chips .novo-row-chips-columns .column-label.text-color-aqua{color:#3bafda}novo-row-chips .novo-row-chips-columns .column-label.text-color-ocean{color:#4a89dc}novo-row-chips .novo-row-chips-columns .column-label.text-color-mint{color:#37bc9b}novo-row-chips .novo-row-chips-columns .column-label.text-color-grass{color:#8cc152}novo-row-chips .novo-row-chips-columns .column-label.text-color-sunflower{color:#f6b042}novo-row-chips .novo-row-chips-columns .column-label.text-color-bittersweet{color:#eb6845}novo-row-chips .novo-row-chips-columns .column-label.text-color-grapefruit{color:#da4453}novo-row-chips .novo-row-chips-columns .column-label.text-color-carnation{color:#d770ad}novo-row-chips .novo-row-chips-columns .column-label.text-color-lavender{color:#967adc}novo-row-chips .novo-row-chips-columns .column-label.text-color-mountain{color:#9678b6}novo-row-chips .novo-row-chips-columns .column-label.text-color-info{color:#4a89dc}novo-row-chips .novo-row-chips-columns .column-label.text-color-positive{color:#4a89dc}novo-row-chips .novo-row-chips-columns .column-label.text-color-success{color:#8cc152}novo-row-chips .novo-row-chips-columns .column-label.text-color-negative{color:#da4453}novo-row-chips .novo-row-chips-columns .column-label.text-color-danger{color:#da4453}novo-row-chips .novo-row-chips-columns .column-label.text-color-error{color:#da4453}novo-row-chips .novo-row-chips-columns .column-label.text-color-warning{color:#f6b042}novo-row-chips .novo-row-chips-columns .column-label.text-color-empty{color:#cccdcc}novo-row-chips .novo-row-chips-columns .column-label.text-color-disabled{color:#bebebe}novo-row-chips .novo-row-chips-columns .column-label.text-color-background{color:#f7f7f7}novo-row-chips .novo-row-chips-columns .column-label.text-color-backgroundDark{color:#e2e2e2}novo-row-chips .novo-row-chips-columns .column-label.text-color-presentation{color:#5b6770}novo-row-chips .novo-row-chips-columns .column-label.text-color-bullhorn{color:#ff6900}novo-row-chips .novo-row-chips-columns .column-label.text-color-pulse{color:#3bafda}novo-row-chips .novo-row-chips-columns .column-label.text-color-company{color:#39d}novo-row-chips .novo-row-chips-columns .column-label.text-color-candidate{color:#4b7}novo-row-chips .novo-row-chips-columns .column-label.text-color-lead{color:#a69}novo-row-chips .novo-row-chips-columns .column-label.text-color-contact{color:#fa4}novo-row-chips .novo-row-chips-columns .column-label.text-color-clientcontact{color:#fa4}novo-row-chips .novo-row-chips-columns .column-label.text-color-opportunity{color:#625}novo-row-chips .novo-row-chips-columns .column-label.text-color-job{color:#b56}novo-row-chips .novo-row-chips-columns .column-label.text-color-joborder{color:#b56}novo-row-chips .novo-row-chips-columns .column-label.text-color-submission{color:#a9adbb}novo-row-chips .novo-row-chips-columns .column-label.text-color-sendout{color:#747884}novo-row-chips .novo-row-chips-columns .column-label.text-color-placement{color:#0b344f}novo-row-chips .novo-row-chips-columns .column-label.text-color-note{color:#747884}novo-row-chips .novo-row-chips-columns .column-label.text-color-contract{color:#454ea0}novo-row-chips .novo-row-chips-columns .column-label.text-color-jobCode{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-earnCode{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-invoiceStatement{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-billableCharge{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-payableCharge{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-user{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-corporateUser{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-distributionList{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-credential{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.text-color-person{color:#696d79}novo-row-chips .novo-row-chips-columns .column-label.margin-before{margin-top:.4rem}novo-row-chips .novo-row-chips-columns .column-label.margin-after{margin-bottom:.8rem}novo-row-chips .novo-row-chips-columns .column-label.text-length-small{max-width:40ch}novo-row-chips .novo-row-chips-columns .column-label.text-length-medium{max-width:55ch}novo-row-chips .novo-row-chips-columns .column-label.text-length-large{max-width:70ch}novo-row-chips .novo-row-chips-columns .column-label.text-weight-hairline{font-weight:100}novo-row-chips .novo-row-chips-columns .column-label.text-weight-thin{font-weight:200}novo-row-chips .novo-row-chips-columns .column-label.text-weight-light{font-weight:300}novo-row-chips .novo-row-chips-columns .column-label.text-weight-normal{font-weight:400}novo-row-chips .novo-row-chips-columns .column-label.text-weight-medium{font-weight:500}novo-row-chips .novo-row-chips-columns .column-label.text-weight-semibold{font-weight:600}novo-row-chips .novo-row-chips-columns .column-label.text-weight-bold{font-weight:700}novo-row-chips .novo-row-chips-columns .column-label.text-weight-extrabold{font-weight:800}novo-row-chips .novo-row-chips-columns .column-label.text-weight-heavy{font-weight:900}novo-row-chips .novo-row-chips-columns .column-label.text-weight-lighter{font-weight:lighter}novo-row-chips .novo-row-chips-columns .column-label.text-weight-bolder{font-weight:bolder}novo-row-chips .novo-row-chips-columns .column-label:first-of-type{flex:0 0 275px}novo-row-chips .novo-row-chips-columns .column-data{display:flex;align-items:center;background:transparent!important;border:none;border-bottom:1px dashed #85939e;border-radius:0;outline:none;height:2em;width:100%;margin:0 1em 0 0}novo-row-chips .novo-row-chips-columns .column-data.editable{border-bottom:none}novo-row-chips .novo-row-chips-columns .column-data.editable input{background:none;border:none}novo-row-chips .novo-row-chips-columns .column-data:first-of-type{flex:0 0 275px}novo-row-chips .novo-row-chips-columns .column-data span{color:inherit;align-items:flex-start;display:flex;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;line-clamp:2;line-height:1em;max-height:2em;min-height:1em}novo-row-chips .novo-row-chips-columns i.bhi-delete-o{color:#da4453}novo-row-chips .novo-chip.novo-row-chip{padding:0}novo-row-chips .novo-row-chips-empty-message{font-style:italic;color:#9e9e9e}novo-row-chips i{cursor:pointer}:host .chip-input-container{padding-top:10px}:host .chip-input-container .placeholder{color:var(--form-placeholder)}:host .panel-toggle{padding:.2em}:host .panel-toggle i{margin:0}:host .panel-toggle.selected{background:#dbdbdb;border-radius:50%}:host ul.summary{display:inline;list-style:none;color:#868686;padding:0 10px}:host ul.summary li{display:inline;padding:0 3px}:host ul.summary li:after{content:\", \"}:host ul.summary li:last-child:after{content:\" \"}:host chip span{text-transform:capitalize}\n"] }]
1381
1364
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.NovoLabelService }, { type: i0.ChangeDetectorRef }, { type: i1.DateFormatService }]; }, propDecorators: { name: [{
1382
1365
  type: Input
1383
1366
  }], start: [{