new-front-common-library 0.0.13 → 0.0.17

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 (491) hide show
  1. package/assets/css/_dark-theme.scss +566 -0
  2. package/assets/css/_global.scss +461 -0
  3. package/assets/css/_light-theme.scss +566 -0
  4. package/assets/css/_mat-palettes.scss +95 -0
  5. package/assets/css/_themes.scss +54 -0
  6. package/assets/img/unity_logo_48x48.png +0 -0
  7. package/bundles/new-front-common-library.umd.js +4629 -0
  8. package/bundles/new-front-common-library.umd.js.map +1 -0
  9. package/esm2015/lib/util/array.service.js +19 -0
  10. package/esm2015/lib/util/component/header/header.component.js +158 -0
  11. package/esm2015/lib/util/component/overlay/overlay.component.js +45 -0
  12. package/esm2015/lib/util/component/overlay/overlay.service.js +24 -0
  13. package/esm2015/lib/util/component/popup/popup-login/popup-login.component.js +91 -0
  14. package/esm2015/lib/util/component/sub-header/sub-header.component.js +48 -0
  15. package/esm2015/lib/util/config.js +7 -0
  16. package/esm2015/lib/util/date/PeriodModel.js +8 -0
  17. package/esm2015/lib/util/date/date-adapter.js +41 -0
  18. package/esm2015/lib/util/date/date-format-constants.js +12 -0
  19. package/esm2015/lib/util/date/date.util.js +218 -0
  20. package/esm2015/lib/util/decorators/theme.decorator.js +22 -0
  21. package/esm2015/lib/util/decorators/user.decorator.js +25 -0
  22. package/esm2015/lib/util/directives/my-number-formatter-directive.js +34 -0
  23. package/esm2015/lib/util/event/header/header-events.service.js +21 -0
  24. package/esm2015/lib/util/event/storage/local-storage-events.service.js +17 -0
  25. package/esm2015/lib/util/event/storage/session-storage-events.service.js +18 -0
  26. package/esm2015/lib/util/interfaces/permissions.interface.js +2 -0
  27. package/esm2015/lib/util/models/any-line.model.js +37 -0
  28. package/esm2015/lib/util/models/audio-content.model.js +27 -0
  29. package/esm2015/lib/util/models/authPermission.model.js +16 -0
  30. package/esm2015/lib/util/models/authUser.model.js +20 -0
  31. package/esm2015/lib/util/models/basic.model.js +14 -0
  32. package/esm2015/lib/util/models/box-set-item.model.js +19 -0
  33. package/esm2015/lib/util/models/disc-program.model.js +26 -0
  34. package/esm2015/lib/util/models/disc.model.js +22 -0
  35. package/esm2015/lib/util/models/eventType.model.js +7 -0
  36. package/esm2015/lib/util/models/expenditure-commitment/purchase-order-file.model.js +21 -0
  37. package/esm2015/lib/util/models/index.js +97 -0
  38. package/esm2015/lib/util/models/lang-line.model.js +27 -0
  39. package/esm2015/lib/util/models/legal/contract-work.model.js +23 -0
  40. package/esm2015/lib/util/models/legal/contract-work2.model.js +21 -0
  41. package/esm2015/lib/util/models/media-line.model.js +18 -0
  42. package/esm2015/lib/util/models/menu-language.model.js +15 -0
  43. package/esm2015/lib/util/models/milo/territory.model.js +18 -0
  44. package/esm2015/lib/util/models/permission.model.js +20 -0
  45. package/esm2015/lib/util/models/product-box-set.model.js +16 -0
  46. package/esm2015/lib/util/models/product-disc-detail.model.js +22 -0
  47. package/esm2015/lib/util/models/product-disc.model.js +27 -0
  48. package/esm2015/lib/util/models/product-division.model.js +29 -0
  49. package/esm2015/lib/util/models/product-type.model.js +22 -0
  50. package/esm2015/lib/util/models/product.model.js +62 -0
  51. package/esm2015/lib/util/models/program.model.js +28 -0
  52. package/esm2015/lib/util/models/purchase-order/purchase-order.model.js +53 -0
  53. package/esm2015/lib/util/models/referential/WorkVersionArticleDto.js +17 -0
  54. package/esm2015/lib/util/models/referential/adress-type.model.js +14 -0
  55. package/esm2015/lib/util/models/referential/adress.model.js +28 -0
  56. package/esm2015/lib/util/models/referential/attached-file.model.js +17 -0
  57. package/esm2015/lib/util/models/referential/bank-account.model.js +24 -0
  58. package/esm2015/lib/util/models/referential/bank-accounts.model.js +31 -0
  59. package/esm2015/lib/util/models/referential/basic-hierarchy.model.js +8 -0
  60. package/esm2015/lib/util/models/referential/broadcast-list-item.model.js +12 -0
  61. package/esm2015/lib/util/models/referential/color.model.js +16 -0
  62. package/esm2015/lib/util/models/referential/company.model.js +16 -0
  63. package/esm2015/lib/util/models/referential/content-type.model.js +17 -0
  64. package/esm2015/lib/util/models/referential/content.model.js +21 -0
  65. package/esm2015/lib/util/models/referential/cost-center-criteria-values.model.js +14 -0
  66. package/esm2015/lib/util/models/referential/cost-center-criteria.model.js +12 -0
  67. package/esm2015/lib/util/models/referential/cost-center.model.js +28 -0
  68. package/esm2015/lib/util/models/referential/coutry.model.js +16 -0
  69. package/esm2015/lib/util/models/referential/currency.model.js +20 -0
  70. package/esm2015/lib/util/models/referential/editorial-content.model.js +18 -0
  71. package/esm2015/lib/util/models/referential/fixing.model.js +16 -0
  72. package/esm2015/lib/util/models/referential/flat-media.model.js +18 -0
  73. package/esm2015/lib/util/models/referential/format-image.model.js +16 -0
  74. package/esm2015/lib/util/models/referential/format-type.model.js +16 -0
  75. package/esm2015/lib/util/models/referential/format.model.js +17 -0
  76. package/esm2015/lib/util/models/referential/fsk-index.model.js +20 -0
  77. package/esm2015/lib/util/models/referential/fsk.model.js +22 -0
  78. package/esm2015/lib/util/models/referential/function.model.js +23 -0
  79. package/esm2015/lib/util/models/referential/genre.model.js +17 -0
  80. package/esm2015/lib/util/models/referential/invoice-product-type.model.js +22 -0
  81. package/esm2015/lib/util/models/referential/keywords.model.js +2 -0
  82. package/esm2015/lib/util/models/referential/language.model.js +18 -0
  83. package/esm2015/lib/util/models/referential/media-filter.model.js +3 -0
  84. package/esm2015/lib/util/models/referential/media.model.js +20 -0
  85. package/esm2015/lib/util/models/referential/module.model.js +20 -0
  86. package/esm2015/lib/util/models/referential/parameter.model.js +2 -0
  87. package/esm2015/lib/util/models/referential/participant.model.js +19 -0
  88. package/esm2015/lib/util/models/referential/person.model.js +23 -0
  89. package/esm2015/lib/util/models/referential/project-status.model.js +16 -0
  90. package/esm2015/lib/util/models/referential/quota.model.js +17 -0
  91. package/esm2015/lib/util/models/referential/referential-entity-state.model.js +15 -0
  92. package/esm2015/lib/util/models/referential/referential-value.model.js +15 -0
  93. package/esm2015/lib/util/models/referential/referentiel.model.js +26 -0
  94. package/esm2015/lib/util/models/referential/restriction.model.js +19 -0
  95. package/esm2015/lib/util/models/referential/sap-order.model.js +19 -0
  96. package/esm2015/lib/util/models/referential/service-error.model.js +15 -0
  97. package/esm2015/lib/util/models/referential/sound.model.js +16 -0
  98. package/esm2015/lib/util/models/referential/territories-languages.model.js +16 -0
  99. package/esm2015/lib/util/models/referential/territory-filter.model.js +3 -0
  100. package/esm2015/lib/util/models/referential/territory.model.js +17 -0
  101. package/esm2015/lib/util/models/referential/theme.model.js +17 -0
  102. package/esm2015/lib/util/models/referential/third-party-creation-request.model.js +44 -0
  103. package/esm2015/lib/util/models/referential/third-party-module.model.js +20 -0
  104. package/esm2015/lib/util/models/referential/third-party.model.js +39 -0
  105. package/esm2015/lib/util/models/referential/translated-value-model.js +15 -0
  106. package/esm2015/lib/util/models/referential/tva.model.js +16 -0
  107. package/esm2015/lib/util/models/referential/type-export.model.js +16 -0
  108. package/esm2015/lib/util/models/referential/type-tva-company-territory.model.js +32 -0
  109. package/esm2015/lib/util/models/referential/type-tva.model.js +25 -0
  110. package/esm2015/lib/util/models/referential/work-addons-model.js +15 -0
  111. package/esm2015/lib/util/models/referential/work-appartenance.model.js +17 -0
  112. package/esm2015/lib/util/models/referential/work-genre.model.js +15 -0
  113. package/esm2015/lib/util/models/referential/work-language.model.js +15 -0
  114. package/esm2015/lib/util/models/referential/work-milo.model.js +61 -0
  115. package/esm2015/lib/util/models/referential/work-participant.model.js +20 -0
  116. package/esm2015/lib/util/models/referential/work-restrictions-model.js +12 -0
  117. package/esm2015/lib/util/models/referential/work-theme.model.js +15 -0
  118. package/esm2015/lib/util/models/referential/work-title.model.js +19 -0
  119. package/esm2015/lib/util/models/referential/work-version-origin.model.js +15 -0
  120. package/esm2015/lib/util/models/referential/work-versions-used.model.js +18 -0
  121. package/esm2015/lib/util/models/referential/work-versions.model.js +27 -0
  122. package/esm2015/lib/util/models/referential/work-year-production.model.js +12 -0
  123. package/esm2015/lib/util/models/referential/work.model.js +22 -0
  124. package/esm2015/lib/util/models/referential/zone.model.js +14 -0
  125. package/esm2015/lib/util/models/referentiel.model.js +26 -0
  126. package/esm2015/lib/util/models/search-response.model.js +10 -0
  127. package/esm2015/lib/util/models/section.model.js +8 -0
  128. package/esm2015/lib/util/models/select/options.model.js +8 -0
  129. package/esm2015/lib/util/models/select/select.model.js +7 -0
  130. package/esm2015/lib/util/models/subtitle-content.model.js +28 -0
  131. package/esm2015/lib/util/models/user-video.model.js +21 -0
  132. package/esm2015/lib/util/models/user.model.js +34 -0
  133. package/esm2015/lib/util/models/video-content.model.js +18 -0
  134. package/esm2015/lib/util/number.validator.js +128 -0
  135. package/esm2015/lib/util/permissions/permissions.service.js +41 -0
  136. package/esm2015/lib/util/pipes/capitalizefirst.pipe.js +41 -0
  137. package/esm2015/lib/util/pipes/comma-separated-number.pipe.js +15 -0
  138. package/esm2015/lib/util/pipes/display-html.pipe.js +20 -0
  139. package/esm2015/lib/util/pipes/display-null.pipe.js +24 -0
  140. package/esm2015/lib/util/pipes/format-number-input.pipe.js +22 -0
  141. package/esm2015/lib/util/pipes/local-date.pipe.js +27 -0
  142. package/esm2015/lib/util/pipes/my-number.pipe.js +44 -0
  143. package/esm2015/lib/util/pipes/trim-string.pipe.js +25 -0
  144. package/esm2015/lib/util/regex/regex.service.js +94 -0
  145. package/esm2015/lib/util/services/api/common-api.service.js +98 -0
  146. package/esm2015/lib/util/services/form-action/form-actions-events.service.js +25 -0
  147. package/esm2015/lib/util/services/guard/auth.guard.js +43 -0
  148. package/esm2015/lib/util/services/guard/login.guard.js +34 -0
  149. package/esm2015/lib/util/services/interceptor/auth.interceptor.js +53 -0
  150. package/esm2015/lib/util/services/jwt-security/aes.service.js +34 -0
  151. package/esm2015/lib/util/services/jwt-security/interceptorhttp.service.js +18 -0
  152. package/esm2015/lib/util/services/jwt-security/jwt.helpher.js +34 -0
  153. package/esm2015/lib/util/services/storage/local-storage.service.js +36 -0
  154. package/esm2015/lib/util/services/storage/session-storage.service.js +38 -0
  155. package/esm2015/lib/util/sort.js +22 -0
  156. package/esm2015/lib/util/theme/theme-event.service.js +17 -0
  157. package/esm2015/lib/util/toaster/toaster-events.service.js +32 -0
  158. package/esm2015/lib/util/util.module.js +256 -0
  159. package/esm2015/new-front-common-library.js +5 -0
  160. package/esm2015/public-api.js +46 -0
  161. package/fesm2015/new-front-common-library.js +3826 -0
  162. package/fesm2015/new-front-common-library.js.map +1 -0
  163. package/lib/util/array.service.d.ts +7 -0
  164. package/lib/util/component/header/header.component.d.ts +51 -0
  165. package/lib/util/component/overlay/overlay.component.d.ts +17 -0
  166. package/lib/util/component/overlay/overlay.service.d.ts +13 -0
  167. package/lib/util/component/popup/popup-login/popup-login.component.d.ts +32 -0
  168. package/lib/util/component/sub-header/sub-header.component.d.ts +13 -0
  169. package/lib/util/config.d.ts +7 -0
  170. package/lib/util/date/PeriodModel.d.ts +6 -0
  171. package/lib/util/date/date-adapter.d.ts +8 -0
  172. package/lib/util/date/date-format-constants.d.ts +25 -0
  173. package/lib/util/date/date.util.d.ts +16 -0
  174. package/lib/util/decorators/theme.decorator.d.ts +1 -0
  175. package/lib/util/decorators/user.decorator.d.ts +1 -0
  176. package/lib/util/directives/my-number-formatter-directive.d.ts +15 -0
  177. package/lib/util/event/header/header-events.service.d.ts +11 -0
  178. package/lib/util/event/storage/local-storage-events.service.d.ts +9 -0
  179. package/lib/util/event/storage/session-storage-events.service.d.ts +10 -0
  180. package/{src/lib/util/interfaces/permissions.interface.ts → lib/util/interfaces/permissions.interface.d.ts} +1 -1
  181. package/lib/util/models/any-line.model.d.ts +24 -0
  182. package/lib/util/models/audio-content.model.d.ts +27 -0
  183. package/lib/util/models/authPermission.model.d.ts +7 -0
  184. package/lib/util/models/authUser.model.d.ts +14 -0
  185. package/lib/util/models/basic.model.d.ts +11 -0
  186. package/lib/util/models/box-set-item.model.d.ts +12 -0
  187. package/lib/util/models/disc-program.model.d.ts +9 -0
  188. package/lib/util/models/disc.model.d.ts +15 -0
  189. package/lib/util/models/eventType.model.d.ts +5 -0
  190. package/lib/util/models/expenditure-commitment/purchase-order-file.model.d.ts +8 -0
  191. package/{src/lib/util/models/index.ts → lib/util/models/index.d.ts} +0 -1
  192. package/lib/util/models/lang-line.model.d.ts +18 -0
  193. package/lib/util/models/legal/contract-work.model.d.ts +27 -0
  194. package/lib/util/models/legal/contract-work2.model.d.ts +23 -0
  195. package/lib/util/models/media-line.model.d.ts +9 -0
  196. package/lib/util/models/menu-language.model.d.ts +6 -0
  197. package/lib/util/models/milo/territory.model.d.ts +9 -0
  198. package/lib/util/models/permission.model.d.ts +12 -0
  199. package/lib/util/models/product-box-set.model.d.ts +8 -0
  200. package/lib/util/models/product-disc-detail.model.d.ts +14 -0
  201. package/lib/util/models/product-disc.model.d.ts +11 -0
  202. package/lib/util/models/product-division.model.d.ts +15 -0
  203. package/lib/util/models/product-type.model.d.ts +7 -0
  204. package/lib/util/models/product.model.d.ts +52 -0
  205. package/lib/util/models/program.model.d.ts +21 -0
  206. package/lib/util/models/purchase-order/purchase-order.model.d.ts +40 -0
  207. package/lib/util/models/referential/WorkVersionArticleDto.d.ts +10 -0
  208. package/lib/util/models/referential/adress-type.model.d.ts +5 -0
  209. package/lib/util/models/referential/adress.model.d.ts +20 -0
  210. package/lib/util/models/referential/attached-file.model.d.ts +11 -0
  211. package/lib/util/models/referential/bank-account.model.d.ts +15 -0
  212. package/lib/util/models/referential/bank-accounts.model.d.ts +17 -0
  213. package/lib/util/models/referential/basic-hierarchy.model.d.ts +6 -0
  214. package/lib/util/models/referential/broadcast-list-item.model.d.ts +8 -0
  215. package/lib/util/models/referential/color.model.d.ts +6 -0
  216. package/lib/util/models/referential/company.model.d.ts +7 -0
  217. package/lib/util/models/referential/content-type.model.d.ts +12 -0
  218. package/lib/util/models/referential/content.model.d.ts +7 -0
  219. package/lib/util/models/referential/cost-center-criteria-values.model.d.ts +7 -0
  220. package/lib/util/models/referential/cost-center-criteria.model.d.ts +12 -0
  221. package/lib/util/models/referential/cost-center.model.d.ts +18 -0
  222. package/lib/util/models/referential/coutry.model.d.ts +7 -0
  223. package/lib/util/models/referential/currency.model.d.ts +11 -0
  224. package/lib/util/models/referential/editorial-content.model.d.ts +25 -0
  225. package/lib/util/models/referential/fixing.model.d.ts +10 -0
  226. package/lib/util/models/referential/flat-media.model.d.ts +9 -0
  227. package/lib/util/models/referential/format-image.model.d.ts +7 -0
  228. package/lib/util/models/referential/format-type.model.d.ts +6 -0
  229. package/lib/util/models/referential/format.model.d.ts +7 -0
  230. package/lib/util/models/referential/fsk-index.model.d.ts +22 -0
  231. package/lib/util/models/referential/fsk.model.d.ts +37 -0
  232. package/lib/util/models/referential/function.model.d.ts +8 -0
  233. package/lib/util/models/referential/genre.model.d.ts +7 -0
  234. package/lib/util/models/referential/invoice-product-type.model.d.ts +7 -0
  235. package/lib/util/models/referential/keywords.model.d.ts +6 -0
  236. package/lib/util/models/referential/language.model.d.ts +11 -0
  237. package/lib/util/models/referential/media-filter.model.d.ts +10 -0
  238. package/lib/util/models/referential/media.model.d.ts +11 -0
  239. package/lib/util/models/referential/module.model.d.ts +11 -0
  240. package/lib/util/models/referential/parameter.model.d.ts +6 -0
  241. package/lib/util/models/referential/participant.model.d.ts +11 -0
  242. package/lib/util/models/referential/person.model.d.ts +13 -0
  243. package/lib/util/models/referential/project-status.model.d.ts +6 -0
  244. package/lib/util/models/referential/quota.model.d.ts +7 -0
  245. package/lib/util/models/referential/referential-entity-state.model.d.ts +11 -0
  246. package/lib/util/models/referential/referential-value.model.d.ts +11 -0
  247. package/lib/util/models/referential/referentiel.model.d.ts +12 -0
  248. package/lib/util/models/referential/restriction.model.d.ts +9 -0
  249. package/lib/util/models/referential/sap-order.model.d.ts +27 -0
  250. package/lib/util/models/referential/service-error.model.d.ts +13 -0
  251. package/lib/util/models/referential/sound.model.d.ts +6 -0
  252. package/lib/util/models/referential/territories-languages.model.d.ts +8 -0
  253. package/lib/util/models/referential/territory-filter.model.d.ts +6 -0
  254. package/lib/util/models/referential/territory.model.d.ts +11 -0
  255. package/lib/util/models/referential/theme.model.d.ts +7 -0
  256. package/lib/util/models/referential/third-party-creation-request.model.d.ts +48 -0
  257. package/lib/util/models/referential/third-party-module.model.d.ts +11 -0
  258. package/lib/util/models/referential/third-party.model.d.ts +43 -0
  259. package/lib/util/models/referential/translated-value-model.d.ts +10 -0
  260. package/lib/util/models/referential/tva.model.d.ts +7 -0
  261. package/lib/util/models/referential/type-export.model.d.ts +7 -0
  262. package/lib/util/models/referential/type-tva-company-territory.model.d.ts +18 -0
  263. package/lib/util/models/referential/type-tva.model.d.ts +10 -0
  264. package/lib/util/models/referential/work-addons-model.d.ts +25 -0
  265. package/lib/util/models/referential/work-appartenance.model.d.ts +7 -0
  266. package/lib/util/models/referential/work-genre.model.d.ts +11 -0
  267. package/lib/util/models/referential/work-language.model.d.ts +11 -0
  268. package/lib/util/models/referential/work-milo.model.d.ts +46 -0
  269. package/lib/util/models/referential/work-participant.model.d.ts +10 -0
  270. package/lib/util/models/referential/work-restrictions-model.d.ts +18 -0
  271. package/lib/util/models/referential/work-theme.model.d.ts +11 -0
  272. package/lib/util/models/referential/work-title.model.d.ts +10 -0
  273. package/lib/util/models/referential/work-version-origin.model.d.ts +10 -0
  274. package/lib/util/models/referential/work-versions-used.model.d.ts +12 -0
  275. package/lib/util/models/referential/work-versions.model.d.ts +29 -0
  276. package/lib/util/models/referential/work-year-production.model.d.ts +6 -0
  277. package/lib/util/models/referential/work.model.d.ts +74 -0
  278. package/lib/util/models/referential/zone.model.d.ts +6 -0
  279. package/lib/util/models/referentiel.model.d.ts +12 -0
  280. package/lib/util/models/search-response.model.d.ts +7 -0
  281. package/lib/util/models/section.model.d.ts +7 -0
  282. package/lib/util/models/select/options.model.d.ts +6 -0
  283. package/lib/util/models/select/select.model.d.ts +5 -0
  284. package/lib/util/models/subtitle-content.model.d.ts +26 -0
  285. package/lib/util/models/user-video.model.d.ts +10 -0
  286. package/lib/util/models/user.model.d.ts +25 -0
  287. package/lib/util/models/video-content.model.d.ts +24 -0
  288. package/lib/util/number.validator.d.ts +14 -0
  289. package/lib/util/permissions/permissions.service.d.ts +12 -0
  290. package/lib/util/pipes/capitalizefirst.pipe.d.ts +8 -0
  291. package/lib/util/pipes/comma-separated-number.pipe.d.ts +7 -0
  292. package/lib/util/pipes/display-html.pipe.d.ts +10 -0
  293. package/lib/util/pipes/display-null.pipe.d.ts +8 -0
  294. package/lib/util/pipes/format-number-input.pipe.d.ts +7 -0
  295. package/lib/util/pipes/local-date.pipe.d.ts +9 -0
  296. package/lib/util/pipes/my-number.pipe.d.ts +11 -0
  297. package/lib/util/pipes/trim-string.pipe.d.ts +7 -0
  298. package/lib/util/regex/regex.service.d.ts +12 -0
  299. package/lib/util/services/api/common-api.service.d.ts +28 -0
  300. package/lib/util/services/form-action/form-actions-events.service.d.ts +14 -0
  301. package/lib/util/services/guard/auth.guard.d.ts +18 -0
  302. package/lib/util/services/guard/login.guard.d.ts +18 -0
  303. package/lib/util/services/interceptor/auth.interceptor.d.ts +16 -0
  304. package/lib/util/services/jwt-security/aes.service.d.ts +12 -0
  305. package/lib/util/services/jwt-security/interceptorhttp.service.d.ts +8 -0
  306. package/lib/util/services/jwt-security/jwt.helpher.d.ts +4 -0
  307. package/lib/util/services/storage/local-storage.service.d.ts +13 -0
  308. package/lib/util/services/storage/session-storage.service.d.ts +13 -0
  309. package/lib/util/sort.d.ts +4 -0
  310. package/lib/util/theme/theme-event.service.d.ts +9 -0
  311. package/lib/util/toaster/toaster-events.service.d.ts +15 -0
  312. package/lib/util/util.module.d.ts +47 -0
  313. package/new-front-common-library.d.ts +5 -0
  314. package/package.json +29 -19
  315. package/{src/public-api.ts → public-api.d.ts} +2 -18
  316. package/karma.conf.js +0 -44
  317. package/ng-package.json +0 -7
  318. package/src/lib/new-front-common-library.component.spec.ts +0 -25
  319. package/src/lib/new-front-common-library.component.ts +0 -20
  320. package/src/lib/new-front-common-library.module.ts +0 -16
  321. package/src/lib/new-front-common-library.service.spec.ts +0 -16
  322. package/src/lib/new-front-common-library.service.ts +0 -9
  323. package/src/lib/util/animations/actions.animation.ts +0 -16
  324. package/src/lib/util/animations/fade.animation.ts +0 -16
  325. package/src/lib/util/array.service.ts +0 -14
  326. package/src/lib/util/component/header/header.component.html +0 -130
  327. package/src/lib/util/component/header/header.component.scss +0 -87
  328. package/src/lib/util/component/header/header.component.ts +0 -162
  329. package/src/lib/util/component/overlay/overlay.component.css +0 -20
  330. package/src/lib/util/component/overlay/overlay.component.html +0 -10
  331. package/src/lib/util/component/overlay/overlay.component.ts +0 -41
  332. package/src/lib/util/component/overlay/overlay.service.ts +0 -22
  333. package/src/lib/util/component/popup/popup-login/popup-login.component.css +0 -3
  334. package/src/lib/util/component/popup/popup-login/popup-login.component.html +0 -22
  335. package/src/lib/util/component/popup/popup-login/popup-login.component.ts +0 -89
  336. package/src/lib/util/component/sub-header/sub-header.component.css +0 -136
  337. package/src/lib/util/component/sub-header/sub-header.component.html +0 -20
  338. package/src/lib/util/component/sub-header/sub-header.component.spec.ts +0 -25
  339. package/src/lib/util/component/sub-header/sub-header.component.ts +0 -35
  340. package/src/lib/util/config.ts +0 -14
  341. package/src/lib/util/date/PeriodModel.ts +0 -7
  342. package/src/lib/util/date/date-adapter.ts +0 -41
  343. package/src/lib/util/date/date-format-constants.ts +0 -12
  344. package/src/lib/util/date/date-format.spec.ts +0 -67
  345. package/src/lib/util/date/date.util.ts +0 -221
  346. package/src/lib/util/decorators/theme.decorator.ts +0 -24
  347. package/src/lib/util/decorators/user.decorator.ts +0 -30
  348. package/src/lib/util/directives/my-number-formatter-directive.ts +0 -38
  349. package/src/lib/util/event/header/header-events.service.ts +0 -20
  350. package/src/lib/util/event/storage/local-storage-events.service.ts +0 -15
  351. package/src/lib/util/event/storage/session-storage-events.service.ts +0 -14
  352. package/src/lib/util/models/any-line.model.ts +0 -43
  353. package/src/lib/util/models/audio-content.model.ts +0 -39
  354. package/src/lib/util/models/authPermission.model.ts +0 -16
  355. package/src/lib/util/models/authUser.model.ts +0 -25
  356. package/src/lib/util/models/basic-hierarchy.model.ts +0 -7
  357. package/src/lib/util/models/basic.model.ts +0 -31
  358. package/src/lib/util/models/box-set-item.model.ts +0 -22
  359. package/src/lib/util/models/custom-typings.d.ts +0 -154
  360. package/src/lib/util/models/disc-program.model.ts +0 -28
  361. package/src/lib/util/models/disc.model.ts +0 -25
  362. package/src/lib/util/models/eventType.model.ts +0 -7
  363. package/src/lib/util/models/expenditure-commitment/purchase-order-file.model.ts +0 -26
  364. package/src/lib/util/models/lang-line.model.ts +0 -30
  365. package/src/lib/util/models/legal/contract-work.model.ts +0 -42
  366. package/src/lib/util/models/legal/contract-work2.model.ts +0 -39
  367. package/src/lib/util/models/media-line.model.ts +0 -19
  368. package/src/lib/util/models/menu-language.model.ts +0 -15
  369. package/src/lib/util/models/milo/territory.model.ts +0 -18
  370. package/src/lib/util/models/module.model.ts +0 -8
  371. package/src/lib/util/models/permission.model.ts +0 -22
  372. package/src/lib/util/models/product-box-set.model.ts +0 -18
  373. package/src/lib/util/models/product-disc-detail.model.ts +0 -24
  374. package/src/lib/util/models/product-disc.model.ts +0 -30
  375. package/src/lib/util/models/product-division.model.ts +0 -34
  376. package/src/lib/util/models/product-type.model.ts +0 -26
  377. package/src/lib/util/models/product.model.ts +0 -71
  378. package/src/lib/util/models/program.model.ts +0 -34
  379. package/src/lib/util/models/purchase-order/purchase-order.model.ts +0 -61
  380. package/src/lib/util/models/referential/WorkVersionArticleDto.ts +0 -19
  381. package/src/lib/util/models/referential/adress-type.model.ts +0 -12
  382. package/src/lib/util/models/referential/adress.model.ts +0 -30
  383. package/src/lib/util/models/referential/attached-file.model.ts +0 -20
  384. package/src/lib/util/models/referential/bank-account.model.ts +0 -24
  385. package/src/lib/util/models/referential/bank-accounts.model.ts +0 -33
  386. package/src/lib/util/models/referential/basic-hierarchy.model.ts +0 -7
  387. package/src/lib/util/models/referential/broadcast-list-item.model.ts +0 -18
  388. package/src/lib/util/models/referential/color.model.ts +0 -15
  389. package/src/lib/util/models/referential/company.model.ts +0 -15
  390. package/src/lib/util/models/referential/content-type.model.ts +0 -21
  391. package/src/lib/util/models/referential/content.model.ts +0 -25
  392. package/src/lib/util/models/referential/cost-center-criteria-values.model.ts +0 -16
  393. package/src/lib/util/models/referential/cost-center-criteria.model.ts +0 -22
  394. package/src/lib/util/models/referential/cost-center.model.ts +0 -36
  395. package/src/lib/util/models/referential/coutry.model.ts +0 -16
  396. package/src/lib/util/models/referential/currency.model.ts +0 -21
  397. package/src/lib/util/models/referential/editorial-content.model.ts +0 -36
  398. package/src/lib/util/models/referential/fixing.model.ts +0 -20
  399. package/src/lib/util/models/referential/flat-media.model.ts +0 -18
  400. package/src/lib/util/models/referential/format-image.model.ts +0 -16
  401. package/src/lib/util/models/referential/format-type.model.ts +0 -15
  402. package/src/lib/util/models/referential/format.model.ts +0 -16
  403. package/src/lib/util/models/referential/fsk-index.model.ts +0 -36
  404. package/src/lib/util/models/referential/fsk.model.ts +0 -53
  405. package/src/lib/util/models/referential/function.model.ts +0 -24
  406. package/src/lib/util/models/referential/genre.model.ts +0 -16
  407. package/src/lib/util/models/referential/invoice-product-type.model.ts +0 -23
  408. package/src/lib/util/models/referential/keywords.model.ts +0 -6
  409. package/src/lib/util/models/referential/language.model.ts +0 -21
  410. package/src/lib/util/models/referential/media-filter.model.ts +0 -10
  411. package/src/lib/util/models/referential/media.model.ts +0 -20
  412. package/src/lib/util/models/referential/module.model.ts +0 -20
  413. package/src/lib/util/models/referential/parameter.model.ts +0 -6
  414. package/src/lib/util/models/referential/participant.model.ts +0 -30
  415. package/src/lib/util/models/referential/person.model.ts +0 -29
  416. package/src/lib/util/models/referential/po/WorkRestrictionPO.ts +0 -10
  417. package/src/lib/util/models/referential/project-status.model.ts +0 -15
  418. package/src/lib/util/models/referential/quota.model.ts +0 -16
  419. package/src/lib/util/models/referential/referential-entity-state.model.ts +0 -21
  420. package/src/lib/util/models/referential/referential-value.model.ts +0 -20
  421. package/src/lib/util/models/referential/referentiel.model.ts +0 -28
  422. package/src/lib/util/models/referential/restriction.model.ts +0 -28
  423. package/src/lib/util/models/referential/sap-order.model.ts +0 -47
  424. package/src/lib/util/models/referential/service-error.model.ts +0 -15
  425. package/src/lib/util/models/referential/sound.model.ts +0 -15
  426. package/src/lib/util/models/referential/territories-languages.model.ts +0 -18
  427. package/src/lib/util/models/referential/territory-filter.model.ts +0 -6
  428. package/src/lib/util/models/referential/territory.model.ts +0 -26
  429. package/src/lib/util/models/referential/theme.model.ts +0 -16
  430. package/src/lib/util/models/referential/third-party-creation-request.model.ts +0 -58
  431. package/src/lib/util/models/referential/third-party-module.model.ts +0 -20
  432. package/src/lib/util/models/referential/third-party.model.ts +0 -54
  433. package/src/lib/util/models/referential/translated-value-model.ts +0 -19
  434. package/src/lib/util/models/referential/tva.model.ts +0 -16
  435. package/src/lib/util/models/referential/type-export.model.ts +0 -16
  436. package/src/lib/util/models/referential/type-tva-company-territory.model.ts +0 -35
  437. package/src/lib/util/models/referential/type-tva.model.ts +0 -27
  438. package/src/lib/util/models/referential/work-addons-model.ts +0 -35
  439. package/src/lib/util/models/referential/work-appartenance.model.ts +0 -16
  440. package/src/lib/util/models/referential/work-genre.model.ts +0 -19
  441. package/src/lib/util/models/referential/work-language.model.ts +0 -19
  442. package/src/lib/util/models/referential/work-milo.model.ts +0 -64
  443. package/src/lib/util/models/referential/work-participant.model.ts +0 -29
  444. package/src/lib/util/models/referential/work-restrictions-model.ts +0 -33
  445. package/src/lib/util/models/referential/work-theme.model.ts +0 -19
  446. package/src/lib/util/models/referential/work-title.model.ts +0 -26
  447. package/src/lib/util/models/referential/work-version-origin.model.ts +0 -19
  448. package/src/lib/util/models/referential/work-versions-used.model.ts +0 -21
  449. package/src/lib/util/models/referential/work-versions.model.ts +0 -48
  450. package/src/lib/util/models/referential/work-year-production.model.ts +0 -15
  451. package/src/lib/util/models/referential/work.model.ts +0 -88
  452. package/src/lib/util/models/referential/zone.model.ts +0 -15
  453. package/src/lib/util/models/referentiel.model.ts +0 -28
  454. package/src/lib/util/models/search-response.model.ts +0 -7
  455. package/src/lib/util/models/section.model.ts +0 -10
  456. package/src/lib/util/models/select/options.model.ts +0 -7
  457. package/src/lib/util/models/select/select.model.ts +0 -3
  458. package/src/lib/util/models/subtitle-content.model.ts +0 -38
  459. package/src/lib/util/models/user-video.model.ts +0 -28
  460. package/src/lib/util/models/user.model.ts +0 -38
  461. package/src/lib/util/models/video-content.model.ts +0 -36
  462. package/src/lib/util/number.validator.ts +0 -121
  463. package/src/lib/util/permissions/permissions.service.ts +0 -36
  464. package/src/lib/util/pipes/capitalizefirst.pipe.ts +0 -39
  465. package/src/lib/util/pipes/comma-separated-number.pipe.ts +0 -9
  466. package/src/lib/util/pipes/display-html.pipe.ts +0 -15
  467. package/src/lib/util/pipes/display-null.pipe.ts +0 -19
  468. package/src/lib/util/pipes/format-number-input.pipe.ts +0 -19
  469. package/src/lib/util/pipes/local-date.pipe.ts +0 -29
  470. package/src/lib/util/pipes/my-number.pipe.ts +0 -51
  471. package/src/lib/util/pipes/trim-string.pipe.ts +0 -24
  472. package/src/lib/util/regex/regex.service.ts +0 -94
  473. package/src/lib/util/regex/regex.spec.ts +0 -45
  474. package/src/lib/util/services/api/common-api.service.ts +0 -121
  475. package/src/lib/util/services/form-action/form-actions-events.service.ts +0 -25
  476. package/src/lib/util/services/guard/auth.guard.ts +0 -43
  477. package/src/lib/util/services/guard/login.guard.ts +0 -31
  478. package/src/lib/util/services/interceptor/auth.interceptor.ts +0 -65
  479. package/src/lib/util/services/jwt-security/aes.service.ts +0 -48
  480. package/src/lib/util/services/jwt-security/interceptorhttp.service.ts +0 -98
  481. package/src/lib/util/services/jwt-security/jwt.helpher.ts +0 -30
  482. package/src/lib/util/services/storage/local-storage.service.ts +0 -36
  483. package/src/lib/util/services/storage/session-storage.service.ts +0 -38
  484. package/src/lib/util/sort.ts +0 -26
  485. package/src/lib/util/theme/theme-event.service.ts +0 -15
  486. package/src/lib/util/toaster/toaster-events.service.ts +0 -31
  487. package/src/lib/util/util.module.ts +0 -171
  488. package/src/test.ts +0 -28
  489. package/tsconfig.lib.json +0 -20
  490. package/tsconfig.lib.prod.json +0 -10
  491. package/tsconfig.spec.json +0 -17
@@ -0,0 +1,566 @@
1
+ @import "mat-palettes";
2
+
3
+ .dark-theme {
4
+ //1
5
+ .u-sidenav-container {
6
+ background-color: $background-lvl3;
7
+ }
8
+
9
+ //2
10
+ .mat-card {
11
+ padding: 5px !important;
12
+ background: $background-lvl3;
13
+ color: $gray-background-dark;
14
+ }
15
+
16
+ //3
17
+ .navigation-menu {
18
+ background-color: $background-lvl2;
19
+ }
20
+
21
+ //4
22
+ .mat-table {
23
+ background-color: $background-lvl2;
24
+ border-color: $background-lvl3;
25
+ }
26
+
27
+ //5
28
+ .mat-cell {
29
+ color: $gray-light;;
30
+ }
31
+
32
+ //6
33
+ mat-row:hover {
34
+ background-color: whitesmoke;
35
+ }
36
+
37
+ //7
38
+ /* Table header coloring*/
39
+ .mat-form-field-appearance-legacy .mat-form-field-label {
40
+ color: $gray-strong !important;
41
+ font-weight: bold;
42
+ }
43
+
44
+ //9
45
+ /*change color of underline when focused*/
46
+ .mat-form-field-ripple {
47
+ background-color: $background-lvl3 !important;;
48
+ }
49
+
50
+ //10
51
+ mat-toolbar-row {
52
+ background-color: $background-lvl2;
53
+ }
54
+
55
+ //12
56
+ .mat-expansion-panel-header {
57
+ background-color: $background-lvl2;
58
+ }
59
+
60
+ //13
61
+ .mat-expansion-panel-body {
62
+ background-color: $background-lvl2;
63
+
64
+ }
65
+
66
+ //14
67
+ .mat-sort-header-arrow {
68
+ color: $black-bluish !important;
69
+ }
70
+
71
+ //15
72
+ .disable_ripple {
73
+ background-color: #EAEEF4 !important;
74
+ }
75
+
76
+ //16
77
+ .cke_editable {
78
+ font-size: 12px !important;
79
+ font-family: Poppins;
80
+ background-color: $background-lvl2;
81
+ color: $gray-primary;
82
+ }
83
+
84
+ //17
85
+ .hide-ckeditor-toolbar {
86
+ .cke_inner .cke_top {
87
+ display: none;
88
+ }
89
+ }
90
+
91
+ //18--------------------identity
92
+ mat-label {
93
+ color: $gray-primary !important;
94
+ font-weight: bold;
95
+ }
96
+
97
+ //19
98
+ input {
99
+ color: $gray-light;
100
+ }
101
+
102
+ textarea {
103
+ color: $gray-light;
104
+ }
105
+
106
+ .mat-row, row-drop {
107
+ border-radius: 3%;
108
+ border-left-width: 1px;
109
+ border-right-width: 1px;
110
+ border-left-color: $background-lvl3;
111
+ border-right-color: $background-lvl3;
112
+ }
113
+
114
+ .mat-row .mat-input-element {
115
+ background: $background-lvl3;
116
+ }
117
+
118
+ .mat-row .mat-select {
119
+ background: $background-lvl3;
120
+ }
121
+
122
+ .mat-select-value-text {
123
+ color: $gray-light;
124
+ }
125
+
126
+ .mat-select-placeholder {
127
+ color: $black-bluish !important;
128
+ }
129
+
130
+ .mat-form-field-disabled .mat-select-value-text {
131
+ color: gray;
132
+ }
133
+
134
+ .mat-select-arrow {
135
+ color: $blue-primary;
136
+ }
137
+
138
+ .mat-radio-outer-circle {
139
+ border-color: $blue-primary !important;
140
+ }
141
+
142
+ .mat-radio-inner-circle {
143
+ background-color: $blue-primary !important;
144
+ }
145
+
146
+ .mat-datepicker-toggle {
147
+ color: $blue-primary;
148
+ }
149
+
150
+ .mat-form-field .mat-icon {
151
+ color: $blue-primary;
152
+ }
153
+
154
+ .mat-footer-cell {
155
+ font-style: italic;
156
+ font-weight: normal;
157
+ font-size: 14px;
158
+ //color: $gray-light;
159
+ background-color: $background-lvl2;
160
+ border-color: $background-lvl2;
161
+ }
162
+
163
+ mat-footer-row {
164
+ background-color: $background-lvl2;
165
+ }
166
+
167
+ .contracts-details-page__container {
168
+ margin-top: 30px !important;
169
+ margin-left: 1% !important;
170
+ margin-right: 1% !important;
171
+ }
172
+
173
+ .table-header-text {
174
+ color: $gray-strong;
175
+ font-size: 14px;
176
+ padding-bottom:10px;
177
+ font-weight: bold;
178
+ }
179
+ .action-button{
180
+ background-color: $blue-primary !important;
181
+ border-color: $blue-primary !important;
182
+ color: white !important;
183
+ }
184
+
185
+ .mat-menu-item {
186
+ color: $gray-light !important;
187
+ }
188
+
189
+ .cancel-button{
190
+ background-color: $red-primary !important;
191
+ color: white !important;
192
+ border-color: $red-primary !important;
193
+ }
194
+
195
+ .save-button {
196
+ background-color: $green-primary !important;
197
+ border-color: $green-primary !important;
198
+ color: white !important;
199
+
200
+ }
201
+
202
+ .expand-button {
203
+ background-color: $gray-blue-primary !important;
204
+ color: white !important;
205
+ font-family: Sofia Pro;
206
+ font-style: normal;
207
+ font-weight: bold;
208
+ font-size: 12px;
209
+ line-height: 12px;
210
+ }
211
+
212
+ .mat-badge-content {
213
+ color: white;
214
+ background: $red-primary !important;
215
+ }
216
+
217
+ .mat-form-field-outline {
218
+ background: transparent;
219
+ }
220
+
221
+ .mat-form-field-appearance-outline .mat-form-field-outline-thick {
222
+ color: $blue-primary;
223
+ }
224
+
225
+ .btn-table-action .mat-icon {
226
+ color: $blue-primary;
227
+ }
228
+
229
+ // SCROLL BAR
230
+ ::-webkit-scrollbar {
231
+ width: 5px;
232
+ }
233
+
234
+ ::-webkit-scrollbar-track {
235
+ background: whitesmoke;
236
+ }
237
+
238
+ ::-webkit-scrollbar-thumb {
239
+ background: $gray-blue-primary;
240
+ }
241
+
242
+ ::-webkit-scrollbar-thumb:hover {
243
+ background: $blue-primary;
244
+ }
245
+ //END SCROLL BAR
246
+
247
+ .mat-select-panel {
248
+ max-height: 300px !important;
249
+ max-width: 450px !important;
250
+ min-width: auto !important;
251
+ width: auto !important;
252
+ }
253
+
254
+ .block-title {
255
+ color: $gray-background-lightest;
256
+ }
257
+
258
+ .block-title-icon {
259
+ color: $gray-background-lightest;
260
+ }
261
+
262
+ .mat-header-cell {
263
+ color: $gray-background-lightest;
264
+ }
265
+
266
+ .mat-header-row {
267
+ background: $background-lvl3;
268
+ }
269
+
270
+ .consult-info-label {
271
+ color: $gray-primary;
272
+ }
273
+
274
+ .consult-info-data {
275
+ color: $gray-background-lightest;
276
+ }
277
+
278
+ .label-consult label {
279
+ color: $gray-primary;
280
+ }
281
+
282
+ .span-consult span {
283
+ color: $gray-background-lightest;
284
+ }
285
+
286
+ .sub-toolbar {
287
+ background: $background-lvl2;
288
+ }
289
+
290
+ .sub-toolbar .title {
291
+ color: $gray-background-lightest;
292
+ }
293
+
294
+ .sub-toolbar i {
295
+ color: $gray-background-lightest;
296
+ }
297
+
298
+ .home-button button {
299
+ color: $gray-background-lightest;
300
+ }
301
+
302
+ .primary {
303
+ background: $blue-primary !important;
304
+ color: #FFFFFF !important;
305
+ }
306
+
307
+ .secondary {
308
+ background: $gray-blue-primary !important;
309
+ color: #FFFFFF !important;
310
+ }
311
+
312
+ .accent {
313
+ background: $purple-primary !important;
314
+ color: #FFFFFF !important;
315
+ }
316
+
317
+ .positive {
318
+ background: $green-primary !important;
319
+ color: #FFFFFF !important;
320
+ }
321
+
322
+ .negative {
323
+ background: $red-primary;
324
+ color: #FFFFFF;
325
+ }
326
+
327
+ .btn-delete {
328
+ color: $red-primary !important;
329
+ background: transparent !important;
330
+ }
331
+
332
+ .mat-chip-remove {
333
+ color: #FFFFFF !important;
334
+ }
335
+
336
+ .row-drop {
337
+ background-color: $background-lvl2;
338
+ border-color: $gray-background-lightest;
339
+ color: $gray-background-lightest;
340
+ font-size: 12px;
341
+ }
342
+
343
+ row-drop:hover {
344
+ background-color: whitesmoke;
345
+ }
346
+
347
+ .mat-checkbox-checked.mat-accent .mat-checkbox-background {
348
+ background-color: $blue-primary;
349
+ }
350
+
351
+ .mat-checkbox-frame {
352
+ border-color: $gray-primary;
353
+ }
354
+
355
+ .mat-drag-panel {
356
+ color: $gray-background-lightest;
357
+ }
358
+
359
+ .mat-expansion-panel-header-title {
360
+ color: $gray-background-lightest;
361
+ }
362
+
363
+ // POPUP
364
+
365
+ .mat-dialog-container {
366
+ background: $background-lvl3;
367
+ }
368
+
369
+ .mat-dialog-container mat-label {
370
+ //color: #FFFFFF !important;
371
+ }
372
+
373
+ .mat-dialog-container h1 {
374
+ color: $gray-background-lightest !important;
375
+ }
376
+
377
+ .mat-dialog-container h2 {
378
+ color: $gray-background-lightest !important;
379
+ }
380
+
381
+ .mat-dialog-container h3 {
382
+ color: $gray-background-lightest !important;
383
+ }
384
+
385
+ .mat-dialog-container .text {
386
+ color: $gray-background-lightest !important;
387
+ }
388
+
389
+ .mat-dialog-container .btn-ok {
390
+ color: white !important;
391
+ background: $blue-primary !important;
392
+ border: none;
393
+ padding: 5px 10px 5px 10px;
394
+ border-radius: 4px;height: 32px;
395
+ min-width: 64px;
396
+ margin-right: 10px;
397
+ cursor: pointer;
398
+ }
399
+
400
+ .mat-dialog-container .btn-ko {
401
+ color: white !important;
402
+ background: $red-primary !important;
403
+ border: none;
404
+ padding: 5px 10px 5px 10px;
405
+ border-radius: 4px;height: 32px;
406
+ min-width: 64px;
407
+ margin-right: 10px;
408
+ cursor: pointer;
409
+ }
410
+
411
+ // END POPUP
412
+
413
+ // PAGINATOR
414
+
415
+ .table-paginator {
416
+ background-color: $background-lvl3 !important;
417
+ }
418
+
419
+ .mat-paginator-container {
420
+ background-color: $background-lvl3;
421
+ color: $gray-background-lightest;
422
+ }
423
+
424
+ .mat-paginator-page-size .mat-select-trigger {
425
+ background: $gray-strong;
426
+ padding: 2px;
427
+ }
428
+
429
+ .mat-paginator .mat-select-value-text {
430
+ color: $black-bluish !important;
431
+ }
432
+
433
+ //END PAGINATOR
434
+
435
+ .confidential {
436
+ color: $gray-primary;
437
+ }
438
+
439
+ .separator-line {
440
+ border-color: $gray-background-lightest;
441
+ }
442
+
443
+ // DRAG & DROP
444
+
445
+ .drag-drop-box {
446
+ color: $gray-background-lightest;
447
+ }
448
+
449
+ .drop-list {
450
+ color: $gray-background-lightest;
451
+ }
452
+
453
+ // END DRAG & DROP
454
+
455
+ .text {
456
+ color: $gray-background-lightest;
457
+ }
458
+
459
+ .no-results {
460
+ background: $gray-primary;
461
+ color: white;
462
+ }
463
+
464
+ .expandable-row .mat-cell {
465
+ background: transparent;
466
+ }
467
+
468
+ .expandable-row .inner-table-cell {
469
+ background: $background-lvl2;
470
+ }
471
+
472
+ // BUDGET
473
+
474
+ .budget-row {
475
+ border-bottom-color: $gray-background-lightest;
476
+ }
477
+
478
+ .budget-headers {
479
+ color: $gray-background-lightest;
480
+ }
481
+
482
+ .budget-body {
483
+ color: $gray-background-lightest;
484
+ }
485
+
486
+ // END BUDGET
487
+
488
+ .primary-color {
489
+ color: $blue-primary !important;
490
+ }
491
+
492
+ // CALENDAR
493
+
494
+ .mat-calendar-body-cell-content, .mat-date-range-input-separator {
495
+ color: $gray-background-lightest !important;
496
+ border-color: transparent;
497
+ }
498
+
499
+ .mat-calendar-body-selected {
500
+ background: $gray-background-lightest !important;
501
+ color: white !important;
502
+ }
503
+
504
+ .mat-calendar-body-today {
505
+ background: $blue-primary !important;
506
+ border-color: $blue-primary !important;
507
+ color: white !important;
508
+ }
509
+
510
+ .mat-datepicker-toggle, .mat-datepicker-content .mat-calendar-next-button, .mat-datepicker-content .mat-calendar-previous-button {
511
+ color: $blue-primary !important;
512
+ }
513
+
514
+ .mat-datepicker-content {
515
+ color: $blue-primary !important;
516
+ }
517
+
518
+ .mat-datepicker-content .mat-calendar {
519
+ width: 220px;
520
+ height: auto;
521
+ }
522
+
523
+ .mat-calendar-controls {
524
+ display: flex;
525
+ margin: 0% calc(33% / 7 - 16px);
526
+ }
527
+ // END CALENDAR
528
+
529
+ .mat-raised-button.mat-accent {
530
+ background: $gray-blue-primary !important;;
531
+ }
532
+
533
+ // HEADER
534
+
535
+ .sc-header {
536
+ background: $background-lvl2;
537
+ }
538
+
539
+ .global-search {
540
+ background: $background-lvl1;
541
+ }
542
+
543
+ .global-search-input {
544
+ background: $background-lvl1;
545
+ }
546
+
547
+ .global-search-separator {
548
+ border-right: 2px solid $dark-background-color;
549
+ }
550
+
551
+ .advanced-button {
552
+ background: $purple-primary;
553
+ color: white;
554
+ }
555
+
556
+ .sc-header .header-icon {
557
+ color: $dark-work-details-color;
558
+ }
559
+
560
+ .header-separator {
561
+ border-right: 2px solid $background-lvl5;
562
+ }
563
+
564
+ // END HEADER
565
+
566
+ }