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 +1 @@
1
- {"version":3,"file":"novo-elements-elements-header.mjs","sources":["../../../projects/novo-elements/src/elements/header/Header.ts","../../../projects/novo-elements/src/elements/header/Header.module.ts","../../../projects/novo-elements/src/elements/header/novo-elements-elements-header.ts"],"sourcesContent":["import { Component, HostBinding, Input } from '@angular/core';\nimport { BooleanInput } from 'novo-elements/utils';\n\n@Component({\n selector: 'header-spacer',\n template: `<ng-content></ng-content>`,\n})\nexport class NovoHeaderSpacer {}\n\n@Component({\n selector: 'utils',\n template: `<ng-content></ng-content>`,\n})\nexport class NovoUtilsComponent {}\n\n@Component({\n selector: 'util-action, novo-action',\n template: `\n <novo-button theme=\"icon\" [icon]=\"icon\" [size]=\"size\" [attr.inverse]=\"inverse\" [disabled]=\"disabled\">\n <ng-content></ng-content>\n </novo-button>\n `,\n host: {\n class: 'novo-action',\n },\n})\nexport class NovoUtilActionComponent {\n @Input()\n public icon: string;\n @Input()\n public size: string;\n @Input()\n public inverse: boolean;\n @Input()\n public disabled: boolean;\n}\n\n@Component({\n selector: 'novo-header,header[theme],header[accent]',\n template: `\n <section>\n <div class=\"header-title\">\n <ng-content select=\"[prefix]\"></ng-content>\n <ng-container *ngIf=\"title\">\n <novo-icon class=\"header-icon\" *ngIf=\"icon\">{{ icon }}</novo-icon>\n <div class=\"header-titles\">\n <novo-title size=\"xl\">{{ title }}</novo-title>\n <novo-title size=\"md\" *ngIf=\"subTitle\">{{ subTitle }}</novo-title>\n </div>\n </ng-container>\n <ng-container *ngIf=\"!title\">\n <ng-content select=\"novo-icon, [novo-icon]\"></ng-content>\n <div class=\"header-titles\">\n <ng-content select=\"h1, h2, h3, h4, h5, h6, small, novo-title, [novo-title], [novo-subtitle]\"></ng-content>\n </div>\n </ng-container>\n </div>\n <ng-content select=\"section\"></ng-content>\n <span class=\"spacer\"></span>\n <div class=\"header-actions\">\n <ng-content select=\"novo-action,[novo-action]\"></ng-content>\n </div>\n <ng-content select=\"utils\"></ng-content>\n <ng-content select=\"[suffix]\"></ng-content>\n </section>\n <ng-content></ng-content>\n `,\n})\nexport class NovoHeaderComponent {\n @HostBinding('attr.role')\n public role = 'heading';\n @HostBinding('class')\n public headerClass: string = 'novo-header';\n @HostBinding('class.condensed')\n @Input()\n @BooleanInput()\n public condensed: boolean = false;\n @Input()\n public title: string;\n @Input()\n public subTitle: string;\n public inverse: string = 'inverse';\n\n @Input()\n public icon: string;\n\n @Input()\n public size: 'small' | 'medium' | 'large';\n\n @HostBinding('class.header-size-small')\n get hb_isSizeSmall(): boolean {\n return this.size === 'small';\n }\n\n @HostBinding('class.header-size-large')\n get hb_isSizeLarge(): boolean {\n return this.size === 'large';\n }\n\n @HostBinding('class.header-size-default')\n get hb_isSizeDefault(): boolean {\n return !['small', 'large'].includes(this.size);\n }\n\n @HostBinding('attr.theme')\n @Input()\n set theme(theme: string) {\n this._theme = theme;\n this.inverse = theme === 'white' || theme === 'off-white' || theme === 'light' ? undefined : 'inverse';\n }\n\n get theme(): string {\n return this._theme;\n }\n\n private _theme: string;\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NovoButtonModule } from 'novo-elements/elements/button';\nimport { NovoCommonModule } from 'novo-elements/elements/common';\nimport { NovoIconModule } from 'novo-elements/elements/icon';\nimport { NovoHeaderComponent, NovoHeaderSpacer, NovoUtilActionComponent, NovoUtilsComponent } from './Header';\n\n@NgModule({\n imports: [CommonModule, NovoCommonModule, NovoIconModule, NovoButtonModule],\n declarations: [NovoHeaderComponent, NovoUtilActionComponent, NovoUtilsComponent, NovoHeaderSpacer],\n exports: [NovoHeaderComponent, NovoUtilActionComponent, NovoUtilsComponent, NovoHeaderSpacer],\n})\nexport class NovoHeaderModule {}\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-header.mjs","sources":["../../../projects/novo-elements/src/elements/header/Header.ts","../../../projects/novo-elements/src/elements/header/Header.module.ts","../../../projects/novo-elements/src/elements/header/novo-elements-elements-header.ts"],"sourcesContent":["import { Component, HostBinding, Input } from '@angular/core';\nimport { BooleanInput } from 'novo-elements/utils';\n\n@Component({\n selector: 'header-spacer',\n template: `<ng-content></ng-content>`,\n styleUrls: ['./HeaderSpacer.scss'],\n})\nexport class NovoHeaderSpacer {}\n\n@Component({\n selector: 'utils',\n template: `<ng-content></ng-content>`,\n})\nexport class NovoUtilsComponent {}\n\n@Component({\n selector: 'util-action, novo-action',\n template: `\n <novo-button theme=\"icon\" [icon]=\"icon\" [size]=\"size\" [attr.inverse]=\"inverse\" [disabled]=\"disabled\">\n <ng-content></ng-content>\n </novo-button>\n `,\n host: {\n class: 'novo-action',\n },\n})\nexport class NovoUtilActionComponent {\n @Input()\n public icon: string;\n @Input()\n public size: string;\n @Input()\n public inverse: boolean;\n @Input()\n public disabled: boolean;\n}\n\n@Component({\n selector: 'novo-header,header[theme],header[accent]',\n template: `\n <section>\n <div class=\"header-title\">\n <ng-content select=\"[prefix]\"></ng-content>\n <ng-container *ngIf=\"title\">\n <novo-icon class=\"header-icon\" *ngIf=\"icon\">{{ icon }}</novo-icon>\n <div class=\"header-titles\">\n <novo-title size=\"xl\">{{ title }}</novo-title>\n <novo-title size=\"md\" *ngIf=\"subTitle\">{{ subTitle }}</novo-title>\n </div>\n </ng-container>\n <ng-container *ngIf=\"!title\">\n <ng-content select=\"novo-icon, [novo-icon]\"></ng-content>\n <div class=\"header-titles\">\n <ng-content select=\"h1, h2, h3, h4, h5, h6, small, novo-title, [novo-title], [novo-subtitle]\"></ng-content>\n </div>\n </ng-container>\n </div>\n <ng-content select=\"section\"></ng-content>\n <span class=\"spacer\"></span>\n <div class=\"header-actions\">\n <ng-content select=\"novo-action,[novo-action]\"></ng-content>\n </div>\n <ng-content select=\"utils\"></ng-content>\n <ng-content select=\"[suffix]\"></ng-content>\n </section>\n <ng-content></ng-content>\n `,\n styleUrls: ['./Header.scss'],\n})\nexport class NovoHeaderComponent {\n @HostBinding('attr.role')\n public role = 'heading';\n @HostBinding('class')\n public headerClass: string = 'novo-header';\n @HostBinding('class.condensed')\n @Input()\n @BooleanInput()\n public condensed: boolean = false;\n @Input()\n public title: string;\n @Input()\n public subTitle: string;\n public inverse: string = 'inverse';\n\n @Input()\n public icon: string;\n\n @Input()\n public size: 'small' | 'medium' | 'large';\n\n @HostBinding('class.header-size-small')\n get hb_isSizeSmall(): boolean {\n return this.size === 'small';\n }\n\n @HostBinding('class.header-size-large')\n get hb_isSizeLarge(): boolean {\n return this.size === 'large';\n }\n\n @HostBinding('class.header-size-default')\n get hb_isSizeDefault(): boolean {\n return !['small', 'large'].includes(this.size);\n }\n\n @HostBinding('attr.theme')\n @Input()\n set theme(theme: string) {\n this._theme = theme;\n this.inverse = theme === 'white' || theme === 'off-white' || theme === 'light' ? undefined : 'inverse';\n }\n\n get theme(): string {\n return this._theme;\n }\n\n private _theme: string;\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NovoButtonModule } from 'novo-elements/elements/button';\nimport { NovoCommonModule } from 'novo-elements/elements/common';\nimport { NovoIconModule } from 'novo-elements/elements/icon';\nimport { NovoHeaderComponent, NovoHeaderSpacer, NovoUtilActionComponent, NovoUtilsComponent } from './Header';\n\n@NgModule({\n imports: [CommonModule, NovoCommonModule, NovoIconModule, NovoButtonModule],\n declarations: [NovoHeaderComponent, NovoUtilActionComponent, NovoUtilsComponent, NovoHeaderSpacer],\n exports: [NovoHeaderComponent, NovoUtilActionComponent, NovoUtilsComponent, NovoHeaderSpacer],\n})\nexport class NovoHeaderModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -53,7 +53,7 @@ NovoIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
53
53
  <i [class]="iconName"
54
54
  ><span (cdkObserveContent)="projectContentChanged($event)"><ng-content></ng-content></span
55
55
  ></i>
56
- `, isInline: true, directives: [{ type: i1.CdkObserveContent, selector: "[cdkObserveContent]", inputs: ["cdkObserveContentDisabled", "debounce"], outputs: ["cdkObserveContent"], exportAs: ["cdkObserveContent"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
56
+ `, isInline: true, styles: [":host{display:inline-flex;align-items:center;justify-content:center;font-size:1.2em;line-height:inherit;transition:color .2s ease-out,opacity .2s ease-out;vertical-align:middle}:host i{display:flex;justify-content:center;align-items:center;font-size:inherit;line-height:inherit;width:1em;height:1em;color:inherit;outline:none}:host i:before{color:inherit}:host i *{display:none!important}:host.text-capitalize{text-transform:capitalize}:host.text-uppercase{text-transform:uppercase}:host.text-nowrap{white-space:nowrap}:host.text-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host.text-size-default{font-size:inherit}:host.text-size-body{font-size:1.3rem}:host.text-size-xs{font-size:1rem}:host.text-size-sm{font-size:1.2rem}:host.text-size-md{font-size:1.3rem}:host.text-size-lg{font-size:1.6rem}:host.text-size-xl{font-size:2rem}:host.text-size-2xl{font-size:2.6rem}:host.text-size-3xl{font-size:3.2rem}:host.text-size-smaller{font-size:.8em}:host.text-size-larger{font-size:1.2em}:host.text-color-black{color:#000}:host.text-color-white{color:#fff}:host.text-color-gray{color:#9e9e9e}:host.text-color-grey{color:#9e9e9e}:host.text-color-offWhite{color:#f7f7f7}:host.text-color-bright{color:#f7f7f7}:host.text-color-light{color:#dbdbdb}:host.text-color-neutral{color:#4f5361}:host.text-color-dark{color:#3d464d}:host.text-color-orange{color:#ff6900}:host.text-color-navigation{color:#202945}:host.text-color-skyBlue{color:#009bdf}:host.text-color-steel{color:#5b6770}:host.text-color-metal{color:#637893}:host.text-color-sand{color:#f4f4f4}:host.text-color-silver{color:#e2e2e2}:host.text-color-stone{color:#bebebe}:host.text-color-ash{color:#a0a0a0}:host.text-color-slate{color:#707070}:host.text-color-onyx{color:#526980}:host.text-color-charcoal{color:#282828}:host.text-color-moonlight{color:#1a242f}:host.text-color-midnight{color:#202945}:host.text-color-darkness{color:#161f27}:host.text-color-navy{color:#0d2d42}:host.text-color-aqua{color:#3bafda}:host.text-color-ocean{color:#4a89dc}:host.text-color-mint{color:#37bc9b}:host.text-color-grass{color:#8cc152}:host.text-color-sunflower{color:#f6b042}:host.text-color-bittersweet{color:#eb6845}:host.text-color-grapefruit{color:#da4453}:host.text-color-carnation{color:#d770ad}:host.text-color-lavender{color:#967adc}:host.text-color-mountain{color:#9678b6}:host.text-color-info{color:#4a89dc}:host.text-color-positive{color:#4a89dc}:host.text-color-success{color:#8cc152}:host.text-color-negative{color:#da4453}:host.text-color-danger{color:#da4453}:host.text-color-error{color:#da4453}:host.text-color-warning{color:#f6b042}:host.text-color-empty{color:#cccdcc}:host.text-color-disabled{color:#bebebe}:host.text-color-background{color:#f7f7f7}:host.text-color-backgroundDark{color:#e2e2e2}:host.text-color-presentation{color:#5b6770}:host.text-color-bullhorn{color:#ff6900}:host.text-color-pulse{color:#3bafda}:host.text-color-company{color:#39d}:host.text-color-candidate{color:#4b7}:host.text-color-lead{color:#a69}:host.text-color-contact{color:#fa4}:host.text-color-clientcontact{color:#fa4}:host.text-color-opportunity{color:#625}:host.text-color-job{color:#b56}:host.text-color-joborder{color:#b56}:host.text-color-submission{color:#a9adbb}:host.text-color-sendout{color:#747884}:host.text-color-placement{color:#0b344f}:host.text-color-note{color:#747884}:host.text-color-contract{color:#454ea0}:host.text-color-jobCode{color:#696d79}:host.text-color-earnCode{color:#696d79}:host.text-color-invoiceStatement{color:#696d79}:host.text-color-billableCharge{color:#696d79}:host.text-color-payableCharge{color:#696d79}:host.text-color-user{color:#696d79}:host.text-color-corporateUser{color:#696d79}:host.text-color-distributionList{color:#696d79}:host.text-color-credential{color:#696d79}:host.text-color-person{color:#696d79}:host.margin-before{margin-top:.4rem}:host.margin-after{margin-bottom:.8rem}:host.text-length-small{max-width:40ch}:host.text-length-medium{max-width:55ch}:host.text-length-large{max-width:70ch}:host.text-weight-hairline{font-weight:100}:host.text-weight-thin{font-weight:200}:host.text-weight-light{font-weight:300}:host.text-weight-normal{font-weight:400}:host.text-weight-medium{font-weight:500}:host.text-weight-semibold{font-weight:600}:host.text-weight-bold{font-weight:700}:host.text-weight-extrabold{font-weight:800}:host.text-weight-heavy{font-weight:900}:host.text-weight-lighter{font-weight:lighter}:host.text-weight-bolder{font-weight:bolder}:host[theme=black] i{color:#fff;background:#000000;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=black][shape=circle] i{border-radius:50%}:host[theme=white] i{color:#fff;background:#ffffff;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=white][shape=circle] i{border-radius:50%}:host[theme=gray] i{color:#fff;background:#9e9e9e;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=gray][shape=circle] i{border-radius:50%}:host[theme=grey] i{color:#fff;background:#9e9e9e;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=grey][shape=circle] i{border-radius:50%}:host[theme=offWhite] i{color:#fff;background:#f7f7f7;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=offWhite][shape=circle] i{border-radius:50%}:host[theme=bright] i{color:#fff;background:#f7f7f7;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=bright][shape=circle] i{border-radius:50%}:host[theme=light] i{color:#fff;background:#dbdbdb;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=light][shape=circle] i{border-radius:50%}:host[theme=neutral] i{color:#fff;background:#4f5361;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=neutral][shape=circle] i{border-radius:50%}:host[theme=dark] i{color:#fff;background:#3d464d;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=dark][shape=circle] i{border-radius:50%}:host[theme=orange] i{color:#fff;background:#ff6900;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=orange][shape=circle] i{border-radius:50%}:host[theme=navigation] i{color:#fff;background:#202945;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=navigation][shape=circle] i{border-radius:50%}:host[theme=skyBlue] i{color:#fff;background:#009bdf;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=skyBlue][shape=circle] i{border-radius:50%}:host[theme=steel] i{color:#fff;background:#5b6770;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=steel][shape=circle] i{border-radius:50%}:host[theme=metal] i{color:#fff;background:#637893;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=metal][shape=circle] i{border-radius:50%}:host[theme=sand] i{color:#fff;background:#f4f4f4;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=sand][shape=circle] i{border-radius:50%}:host[theme=silver] i{color:#fff;background:#e2e2e2;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=silver][shape=circle] i{border-radius:50%}:host[theme=stone] i{color:#fff;background:#bebebe;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=stone][shape=circle] i{border-radius:50%}:host[theme=ash] i{color:#fff;background:#a0a0a0;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=ash][shape=circle] i{border-radius:50%}:host[theme=slate] i{color:#fff;background:#707070;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=slate][shape=circle] i{border-radius:50%}:host[theme=onyx] i{color:#fff;background:#526980;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=onyx][shape=circle] i{border-radius:50%}:host[theme=charcoal] i{color:#fff;background:#282828;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=charcoal][shape=circle] i{border-radius:50%}:host[theme=moonlight] i{color:#fff;background:#1a242f;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=moonlight][shape=circle] i{border-radius:50%}:host[theme=midnight] i{color:#fff;background:#202945;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=midnight][shape=circle] i{border-radius:50%}:host[theme=darkness] i{color:#fff;background:#161f27;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=darkness][shape=circle] i{border-radius:50%}:host[theme=navy] i{color:#fff;background:#0d2d42;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=navy][shape=circle] i{border-radius:50%}:host[theme=aqua] i{color:#fff;background:#3bafda;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=aqua][shape=circle] i{border-radius:50%}:host[theme=ocean] i{color:#fff;background:#4a89dc;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=ocean][shape=circle] i{border-radius:50%}:host[theme=mint] i{color:#fff;background:#37bc9b;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=mint][shape=circle] i{border-radius:50%}:host[theme=grass] i{color:#fff;background:#8cc152;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=grass][shape=circle] i{border-radius:50%}:host[theme=sunflower] i{color:#fff;background:#f6b042;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=sunflower][shape=circle] i{border-radius:50%}:host[theme=bittersweet] i{color:#fff;background:#eb6845;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=bittersweet][shape=circle] i{border-radius:50%}:host[theme=grapefruit] i{color:#fff;background:#da4453;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=grapefruit][shape=circle] i{border-radius:50%}:host[theme=carnation] i{color:#fff;background:#d770ad;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=carnation][shape=circle] i{border-radius:50%}:host[theme=lavender] i{color:#fff;background:#967adc;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=lavender][shape=circle] i{border-radius:50%}:host[theme=mountain] i{color:#fff;background:#9678b6;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=mountain][shape=circle] i{border-radius:50%}:host[theme=info] i{color:#fff;background:#4a89dc;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=info][shape=circle] i{border-radius:50%}:host[theme=positive] i{color:#fff;background:#4a89dc;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=positive][shape=circle] i{border-radius:50%}:host[theme=success] i{color:#fff;background:#8cc152;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=success][shape=circle] i{border-radius:50%}:host[theme=negative] i{color:#fff;background:#da4453;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=negative][shape=circle] i{border-radius:50%}:host[theme=danger] i{color:#fff;background:#da4453;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=danger][shape=circle] i{border-radius:50%}:host[theme=error] i{color:#fff;background:#da4453;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=error][shape=circle] i{border-radius:50%}:host[theme=warning] i{color:#fff;background:#f6b042;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=warning][shape=circle] i{border-radius:50%}:host[theme=empty] i{color:#fff;background:#cccdcc;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=empty][shape=circle] i{border-radius:50%}:host[theme=disabled] i{color:#fff;background:#bebebe;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=disabled][shape=circle] i{border-radius:50%}:host[theme=background] i{color:#fff;background:#f7f7f7;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=background][shape=circle] i{border-radius:50%}:host[theme=backgroundDark] i{color:#fff;background:#e2e2e2;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=backgroundDark][shape=circle] i{border-radius:50%}:host[theme=presentation] i{color:#fff;background:#5b6770;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=presentation][shape=circle] i{border-radius:50%}:host[theme=bullhorn] i{color:#fff;background:#ff6900;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=bullhorn][shape=circle] i{border-radius:50%}:host[theme=pulse] i{color:#fff;background:#3bafda;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=pulse][shape=circle] i{border-radius:50%}:host[theme=company] i{color:#fff;background:#3399dd;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=company][shape=circle] i{border-radius:50%}:host[theme=candidate] i{color:#fff;background:#44bb77;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=candidate][shape=circle] i{border-radius:50%}:host[theme=lead] i{color:#fff;background:#aa6699;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=lead][shape=circle] i{border-radius:50%}:host[theme=contact] i{color:#fff;background:#ffaa44;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=contact][shape=circle] i{border-radius:50%}:host[theme=clientcontact] i{color:#fff;background:#ffaa44;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=clientcontact][shape=circle] i{border-radius:50%}:host[theme=opportunity] i{color:#fff;background:#662255;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=opportunity][shape=circle] i{border-radius:50%}:host[theme=job] i{color:#fff;background:#bb5566;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=job][shape=circle] i{border-radius:50%}:host[theme=joborder] i{color:#fff;background:#bb5566;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=joborder][shape=circle] i{border-radius:50%}:host[theme=submission] i{color:#fff;background:#a9adbb;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=submission][shape=circle] i{border-radius:50%}:host[theme=sendout] i{color:#fff;background:#747884;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=sendout][shape=circle] i{border-radius:50%}:host[theme=placement] i{color:#fff;background:#0b344f;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=placement][shape=circle] i{border-radius:50%}:host[theme=note] i{color:#fff;background:#747884;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=note][shape=circle] i{border-radius:50%}:host[theme=contract] i{color:#fff;background:#454ea0;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=contract][shape=circle] i{border-radius:50%}:host[theme=jobCode] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=jobCode][shape=circle] i{border-radius:50%}:host[theme=earnCode] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=earnCode][shape=circle] i{border-radius:50%}:host[theme=invoiceStatement] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=invoiceStatement][shape=circle] i{border-radius:50%}:host[theme=billableCharge] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=billableCharge][shape=circle] i{border-radius:50%}:host[theme=payableCharge] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=payableCharge][shape=circle] i{border-radius:50%}:host[theme=user] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=user][shape=circle] i{border-radius:50%}:host[theme=corporateUser] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=corporateUser][shape=circle] i{border-radius:50%}:host[theme=distributionList] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=distributionList][shape=circle] i{border-radius:50%}:host[theme=credential] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=credential][shape=circle] i{border-radius:50%}:host[theme=person] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=person][shape=circle] i{border-radius:50%}:host.novo-icon-raised i{box-shadow:2px 2px #0003}:host[shape=circle] i{border-radius:50%}:host.icon-size-smaller{font-size:1em}:host.icon-size-larger{font-size:1.4em}\n"], directives: [{ type: i1.CdkObserveContent, selector: "[cdkObserveContent]", inputs: ["cdkObserveContentDisabled", "debounce"], outputs: ["cdkObserveContent"], exportAs: ["cdkObserveContent"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
57
57
  __decorate([
58
58
  BooleanInput(),
59
59
  __metadata("design:type", Boolean)
@@ -64,18 +64,13 @@ __decorate([
64
64
  ], NovoIconComponent.prototype, "larger", void 0);
65
65
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoIconComponent, decorators: [{
66
66
  type: Component,
67
- args: [{
68
- selector: 'novo-icon',
69
- changeDetection: ChangeDetectionStrategy.OnPush,
70
- template: `
67
+ args: [{ selector: 'novo-icon', changeDetection: ChangeDetectionStrategy.OnPush, template: `
71
68
  <i [class]="iconName"
72
69
  ><span (cdkObserveContent)="projectContentChanged($event)"><ng-content></ng-content></span
73
70
  ></i>
74
- `,
75
- host: {
71
+ `, host: {
76
72
  class: 'novo-icon',
77
- },
78
- }]
73
+ }, styles: [":host{display:inline-flex;align-items:center;justify-content:center;font-size:1.2em;line-height:inherit;transition:color .2s ease-out,opacity .2s ease-out;vertical-align:middle}:host i{display:flex;justify-content:center;align-items:center;font-size:inherit;line-height:inherit;width:1em;height:1em;color:inherit;outline:none}:host i:before{color:inherit}:host i *{display:none!important}:host.text-capitalize{text-transform:capitalize}:host.text-uppercase{text-transform:uppercase}:host.text-nowrap{white-space:nowrap}:host.text-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host.text-size-default{font-size:inherit}:host.text-size-body{font-size:1.3rem}:host.text-size-xs{font-size:1rem}:host.text-size-sm{font-size:1.2rem}:host.text-size-md{font-size:1.3rem}:host.text-size-lg{font-size:1.6rem}:host.text-size-xl{font-size:2rem}:host.text-size-2xl{font-size:2.6rem}:host.text-size-3xl{font-size:3.2rem}:host.text-size-smaller{font-size:.8em}:host.text-size-larger{font-size:1.2em}:host.text-color-black{color:#000}:host.text-color-white{color:#fff}:host.text-color-gray{color:#9e9e9e}:host.text-color-grey{color:#9e9e9e}:host.text-color-offWhite{color:#f7f7f7}:host.text-color-bright{color:#f7f7f7}:host.text-color-light{color:#dbdbdb}:host.text-color-neutral{color:#4f5361}:host.text-color-dark{color:#3d464d}:host.text-color-orange{color:#ff6900}:host.text-color-navigation{color:#202945}:host.text-color-skyBlue{color:#009bdf}:host.text-color-steel{color:#5b6770}:host.text-color-metal{color:#637893}:host.text-color-sand{color:#f4f4f4}:host.text-color-silver{color:#e2e2e2}:host.text-color-stone{color:#bebebe}:host.text-color-ash{color:#a0a0a0}:host.text-color-slate{color:#707070}:host.text-color-onyx{color:#526980}:host.text-color-charcoal{color:#282828}:host.text-color-moonlight{color:#1a242f}:host.text-color-midnight{color:#202945}:host.text-color-darkness{color:#161f27}:host.text-color-navy{color:#0d2d42}:host.text-color-aqua{color:#3bafda}:host.text-color-ocean{color:#4a89dc}:host.text-color-mint{color:#37bc9b}:host.text-color-grass{color:#8cc152}:host.text-color-sunflower{color:#f6b042}:host.text-color-bittersweet{color:#eb6845}:host.text-color-grapefruit{color:#da4453}:host.text-color-carnation{color:#d770ad}:host.text-color-lavender{color:#967adc}:host.text-color-mountain{color:#9678b6}:host.text-color-info{color:#4a89dc}:host.text-color-positive{color:#4a89dc}:host.text-color-success{color:#8cc152}:host.text-color-negative{color:#da4453}:host.text-color-danger{color:#da4453}:host.text-color-error{color:#da4453}:host.text-color-warning{color:#f6b042}:host.text-color-empty{color:#cccdcc}:host.text-color-disabled{color:#bebebe}:host.text-color-background{color:#f7f7f7}:host.text-color-backgroundDark{color:#e2e2e2}:host.text-color-presentation{color:#5b6770}:host.text-color-bullhorn{color:#ff6900}:host.text-color-pulse{color:#3bafda}:host.text-color-company{color:#39d}:host.text-color-candidate{color:#4b7}:host.text-color-lead{color:#a69}:host.text-color-contact{color:#fa4}:host.text-color-clientcontact{color:#fa4}:host.text-color-opportunity{color:#625}:host.text-color-job{color:#b56}:host.text-color-joborder{color:#b56}:host.text-color-submission{color:#a9adbb}:host.text-color-sendout{color:#747884}:host.text-color-placement{color:#0b344f}:host.text-color-note{color:#747884}:host.text-color-contract{color:#454ea0}:host.text-color-jobCode{color:#696d79}:host.text-color-earnCode{color:#696d79}:host.text-color-invoiceStatement{color:#696d79}:host.text-color-billableCharge{color:#696d79}:host.text-color-payableCharge{color:#696d79}:host.text-color-user{color:#696d79}:host.text-color-corporateUser{color:#696d79}:host.text-color-distributionList{color:#696d79}:host.text-color-credential{color:#696d79}:host.text-color-person{color:#696d79}:host.margin-before{margin-top:.4rem}:host.margin-after{margin-bottom:.8rem}:host.text-length-small{max-width:40ch}:host.text-length-medium{max-width:55ch}:host.text-length-large{max-width:70ch}:host.text-weight-hairline{font-weight:100}:host.text-weight-thin{font-weight:200}:host.text-weight-light{font-weight:300}:host.text-weight-normal{font-weight:400}:host.text-weight-medium{font-weight:500}:host.text-weight-semibold{font-weight:600}:host.text-weight-bold{font-weight:700}:host.text-weight-extrabold{font-weight:800}:host.text-weight-heavy{font-weight:900}:host.text-weight-lighter{font-weight:lighter}:host.text-weight-bolder{font-weight:bolder}:host[theme=black] i{color:#fff;background:#000000;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=black][shape=circle] i{border-radius:50%}:host[theme=white] i{color:#fff;background:#ffffff;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=white][shape=circle] i{border-radius:50%}:host[theme=gray] i{color:#fff;background:#9e9e9e;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=gray][shape=circle] i{border-radius:50%}:host[theme=grey] i{color:#fff;background:#9e9e9e;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=grey][shape=circle] i{border-radius:50%}:host[theme=offWhite] i{color:#fff;background:#f7f7f7;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=offWhite][shape=circle] i{border-radius:50%}:host[theme=bright] i{color:#fff;background:#f7f7f7;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=bright][shape=circle] i{border-radius:50%}:host[theme=light] i{color:#fff;background:#dbdbdb;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=light][shape=circle] i{border-radius:50%}:host[theme=neutral] i{color:#fff;background:#4f5361;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=neutral][shape=circle] i{border-radius:50%}:host[theme=dark] i{color:#fff;background:#3d464d;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=dark][shape=circle] i{border-radius:50%}:host[theme=orange] i{color:#fff;background:#ff6900;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=orange][shape=circle] i{border-radius:50%}:host[theme=navigation] i{color:#fff;background:#202945;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=navigation][shape=circle] i{border-radius:50%}:host[theme=skyBlue] i{color:#fff;background:#009bdf;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=skyBlue][shape=circle] i{border-radius:50%}:host[theme=steel] i{color:#fff;background:#5b6770;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=steel][shape=circle] i{border-radius:50%}:host[theme=metal] i{color:#fff;background:#637893;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=metal][shape=circle] i{border-radius:50%}:host[theme=sand] i{color:#fff;background:#f4f4f4;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=sand][shape=circle] i{border-radius:50%}:host[theme=silver] i{color:#fff;background:#e2e2e2;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=silver][shape=circle] i{border-radius:50%}:host[theme=stone] i{color:#fff;background:#bebebe;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=stone][shape=circle] i{border-radius:50%}:host[theme=ash] i{color:#fff;background:#a0a0a0;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=ash][shape=circle] i{border-radius:50%}:host[theme=slate] i{color:#fff;background:#707070;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=slate][shape=circle] i{border-radius:50%}:host[theme=onyx] i{color:#fff;background:#526980;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=onyx][shape=circle] i{border-radius:50%}:host[theme=charcoal] i{color:#fff;background:#282828;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=charcoal][shape=circle] i{border-radius:50%}:host[theme=moonlight] i{color:#fff;background:#1a242f;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=moonlight][shape=circle] i{border-radius:50%}:host[theme=midnight] i{color:#fff;background:#202945;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=midnight][shape=circle] i{border-radius:50%}:host[theme=darkness] i{color:#fff;background:#161f27;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=darkness][shape=circle] i{border-radius:50%}:host[theme=navy] i{color:#fff;background:#0d2d42;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=navy][shape=circle] i{border-radius:50%}:host[theme=aqua] i{color:#fff;background:#3bafda;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=aqua][shape=circle] i{border-radius:50%}:host[theme=ocean] i{color:#fff;background:#4a89dc;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=ocean][shape=circle] i{border-radius:50%}:host[theme=mint] i{color:#fff;background:#37bc9b;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=mint][shape=circle] i{border-radius:50%}:host[theme=grass] i{color:#fff;background:#8cc152;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=grass][shape=circle] i{border-radius:50%}:host[theme=sunflower] i{color:#fff;background:#f6b042;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=sunflower][shape=circle] i{border-radius:50%}:host[theme=bittersweet] i{color:#fff;background:#eb6845;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=bittersweet][shape=circle] i{border-radius:50%}:host[theme=grapefruit] i{color:#fff;background:#da4453;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=grapefruit][shape=circle] i{border-radius:50%}:host[theme=carnation] i{color:#fff;background:#d770ad;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=carnation][shape=circle] i{border-radius:50%}:host[theme=lavender] i{color:#fff;background:#967adc;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=lavender][shape=circle] i{border-radius:50%}:host[theme=mountain] i{color:#fff;background:#9678b6;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=mountain][shape=circle] i{border-radius:50%}:host[theme=info] i{color:#fff;background:#4a89dc;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=info][shape=circle] i{border-radius:50%}:host[theme=positive] i{color:#fff;background:#4a89dc;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=positive][shape=circle] i{border-radius:50%}:host[theme=success] i{color:#fff;background:#8cc152;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=success][shape=circle] i{border-radius:50%}:host[theme=negative] i{color:#fff;background:#da4453;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=negative][shape=circle] i{border-radius:50%}:host[theme=danger] i{color:#fff;background:#da4453;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=danger][shape=circle] i{border-radius:50%}:host[theme=error] i{color:#fff;background:#da4453;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=error][shape=circle] i{border-radius:50%}:host[theme=warning] i{color:#fff;background:#f6b042;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=warning][shape=circle] i{border-radius:50%}:host[theme=empty] i{color:#fff;background:#cccdcc;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=empty][shape=circle] i{border-radius:50%}:host[theme=disabled] i{color:#fff;background:#bebebe;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=disabled][shape=circle] i{border-radius:50%}:host[theme=background] i{color:#fff;background:#f7f7f7;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=background][shape=circle] i{border-radius:50%}:host[theme=backgroundDark] i{color:#fff;background:#e2e2e2;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=backgroundDark][shape=circle] i{border-radius:50%}:host[theme=presentation] i{color:#fff;background:#5b6770;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=presentation][shape=circle] i{border-radius:50%}:host[theme=bullhorn] i{color:#fff;background:#ff6900;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=bullhorn][shape=circle] i{border-radius:50%}:host[theme=pulse] i{color:#fff;background:#3bafda;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=pulse][shape=circle] i{border-radius:50%}:host[theme=company] i{color:#fff;background:#3399dd;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=company][shape=circle] i{border-radius:50%}:host[theme=candidate] i{color:#fff;background:#44bb77;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=candidate][shape=circle] i{border-radius:50%}:host[theme=lead] i{color:#fff;background:#aa6699;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=lead][shape=circle] i{border-radius:50%}:host[theme=contact] i{color:#fff;background:#ffaa44;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=contact][shape=circle] i{border-radius:50%}:host[theme=clientcontact] i{color:#fff;background:#ffaa44;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=clientcontact][shape=circle] i{border-radius:50%}:host[theme=opportunity] i{color:#fff;background:#662255;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=opportunity][shape=circle] i{border-radius:50%}:host[theme=job] i{color:#fff;background:#bb5566;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=job][shape=circle] i{border-radius:50%}:host[theme=joborder] i{color:#fff;background:#bb5566;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=joborder][shape=circle] i{border-radius:50%}:host[theme=submission] i{color:#fff;background:#a9adbb;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=submission][shape=circle] i{border-radius:50%}:host[theme=sendout] i{color:#fff;background:#747884;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=sendout][shape=circle] i{border-radius:50%}:host[theme=placement] i{color:#fff;background:#0b344f;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=placement][shape=circle] i{border-radius:50%}:host[theme=note] i{color:#fff;background:#747884;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=note][shape=circle] i{border-radius:50%}:host[theme=contract] i{color:#fff;background:#454ea0;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=contract][shape=circle] i{border-radius:50%}:host[theme=jobCode] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=jobCode][shape=circle] i{border-radius:50%}:host[theme=earnCode] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=earnCode][shape=circle] i{border-radius:50%}:host[theme=invoiceStatement] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=invoiceStatement][shape=circle] i{border-radius:50%}:host[theme=billableCharge] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=billableCharge][shape=circle] i{border-radius:50%}:host[theme=payableCharge] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=payableCharge][shape=circle] i{border-radius:50%}:host[theme=user] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=user][shape=circle] i{border-radius:50%}:host[theme=corporateUser] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=corporateUser][shape=circle] i{border-radius:50%}:host[theme=distributionList] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=distributionList][shape=circle] i{border-radius:50%}:host[theme=credential] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=credential][shape=circle] i{border-radius:50%}:host[theme=person] i{color:#fff;background:#696d79;border-radius:.3em;width:1.6em;height:1.6em}:host[theme=person][shape=circle] i{border-radius:50%}:host.novo-icon-raised i{box-shadow:2px 2px #0003}:host[shape=circle] i{border-radius:50%}:host.icon-size-smaller{font-size:1em}:host.icon-size-larger{font-size:1.4em}\n"] }]
79
74
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { raised: [{
80
75
  type: HostBinding,
81
76
  args: ['class.novo-icon-raised']
@@ -1 +1 @@
1
- {"version":3,"file":"novo-elements-elements-icon.mjs","sources":["../../../projects/novo-elements/src/elements/icon/Icon.ts","../../../projects/novo-elements/src/elements/icon/Icon.module.ts","../../../projects/novo-elements/src/elements/icon/novo-elements-elements-icon.ts"],"sourcesContent":["import { AfterViewInit, ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, HostBinding, Input } from '@angular/core';\nimport { BooleanInput } from 'novo-elements/utils';\nimport { TypographySize } from 'novo-elements/elements/common';\n\n@Component({\n selector: 'novo-icon',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: `\n <i [class]=\"iconName\"\n ><span (cdkObserveContent)=\"projectContentChanged($event)\"><ng-content></ng-content></span\n ></i>\n `,\n host: {\n class: 'novo-icon',\n },\n})\nexport class NovoIconComponent implements AfterViewInit {\n @HostBinding('class.novo-icon-raised')\n @Input()\n public raised: boolean;\n\n @HostBinding('attr.theme')\n @Input()\n public theme: string;\n\n @HostBinding('attr.shape')\n @Input()\n public shape: string = 'box';\n\n @Input()\n public color: string;\n\n @HostBinding('attr.role')\n public role: string = 'img';\n\n @HostBinding('attr.aria-label')\n public ariaLabel: string;\n\n @Input()\n public size: TypographySize;\n\n @HostBinding('class.icon-size-smaller')\n @Input()\n @BooleanInput()\n public smaller: boolean;\n\n @HostBinding('class.icon-size-larger')\n @Input()\n @BooleanInput()\n public larger: boolean;\n\n @Input()\n set alt(value: string) {\n this.ariaLabel = value;\n }\n\n get alt(): string {\n return this.ariaLabel;\n }\n\n @Input()\n set name(iconName: string) {\n this.iconName = `bhi-${iconName}`;\n }\n\n get name(): string {\n return this.iconName;\n }\n\n @HostBinding('class')\n get hb_classBinding(): string {\n return [this.color ? `text-color-${this.color}` : null, this.size ? `text-size-${this.size}` : null].filter(Boolean).join(' ');\n }\n\n public iconName: string;\n\n constructor(public element: ElementRef, private cdr: ChangeDetectorRef) {}\n\n public ngAfterViewInit(): void {\n if (this.element.nativeElement.textContent.trim()) {\n Promise.resolve().then(() => {\n this.name = this.element.nativeElement.textContent.trim();\n this.cdr.markForCheck();\n });\n }\n }\n\n public projectContentChanged(record: MutationRecord) {\n this.name = this.element.nativeElement.textContent.trim();\n this.cdr.detectChanges();\n }\n}\n","import { ObserversModule } from '@angular/cdk/observers';\nimport { NgModule } from '@angular/core';\nimport { NovoIconComponent } from './Icon';\n\n@NgModule({\n imports: [ObserversModule],\n exports: [NovoIconComponent],\n declarations: [NovoIconComponent],\n})\nexport class NovoIconModule {}\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-icon.mjs","sources":["../../../projects/novo-elements/src/elements/icon/Icon.ts","../../../projects/novo-elements/src/elements/icon/Icon.module.ts","../../../projects/novo-elements/src/elements/icon/novo-elements-elements-icon.ts"],"sourcesContent":["import { AfterViewInit, ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, HostBinding, Input } from '@angular/core';\nimport { BooleanInput } from 'novo-elements/utils';\nimport { TypographySize } from 'novo-elements/elements/common';\n\n@Component({\n selector: 'novo-icon',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: `\n <i [class]=\"iconName\"\n ><span (cdkObserveContent)=\"projectContentChanged($event)\"><ng-content></ng-content></span\n ></i>\n `,\n styleUrls: ['./Icon.scss'],\n host: {\n class: 'novo-icon',\n },\n})\nexport class NovoIconComponent implements AfterViewInit {\n @HostBinding('class.novo-icon-raised')\n @Input()\n public raised: boolean;\n\n @HostBinding('attr.theme')\n @Input()\n public theme: string;\n\n @HostBinding('attr.shape')\n @Input()\n public shape: string = 'box';\n\n @Input()\n public color: string;\n\n @HostBinding('attr.role')\n public role: string = 'img';\n\n @HostBinding('attr.aria-label')\n public ariaLabel: string;\n\n @Input()\n public size: TypographySize;\n\n @HostBinding('class.icon-size-smaller')\n @Input()\n @BooleanInput()\n public smaller: boolean;\n\n @HostBinding('class.icon-size-larger')\n @Input()\n @BooleanInput()\n public larger: boolean;\n\n @Input()\n set alt(value: string) {\n this.ariaLabel = value;\n }\n\n get alt(): string {\n return this.ariaLabel;\n }\n\n @Input()\n set name(iconName: string) {\n this.iconName = `bhi-${iconName}`;\n }\n\n get name(): string {\n return this.iconName;\n }\n\n @HostBinding('class')\n get hb_classBinding(): string {\n return [this.color ? `text-color-${this.color}` : null, this.size ? `text-size-${this.size}` : null].filter(Boolean).join(' ');\n }\n\n public iconName: string;\n\n constructor(public element: ElementRef, private cdr: ChangeDetectorRef) {}\n\n public ngAfterViewInit(): void {\n if (this.element.nativeElement.textContent.trim()) {\n Promise.resolve().then(() => {\n this.name = this.element.nativeElement.textContent.trim();\n this.cdr.markForCheck();\n });\n }\n }\n\n public projectContentChanged(record: MutationRecord) {\n this.name = this.element.nativeElement.textContent.trim();\n this.cdr.detectChanges();\n }\n}\n","import { ObserversModule } from '@angular/cdk/observers';\nimport { NgModule } from '@angular/core';\nimport { NovoIconComponent } from './Icon';\n\n@NgModule({\n imports: [ObserversModule],\n exports: [NovoIconComponent],\n declarations: [NovoIconComponent],\n})\nexport class NovoIconModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}