monkey-front-core 0.0.237 → 0.0.238

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 (452) hide show
  1. package/karma.conf.js +44 -0
  2. package/monkey-front-core-0.0.238.tgz +0 -0
  3. package/ng-package.json +8 -0
  4. package/package.json +4 -24
  5. package/src/lib/components/alerts/alerts.component.html +18 -0
  6. package/src/lib/components/alerts/alerts.component.scss +71 -0
  7. package/src/lib/components/alerts/alerts.component.ts +36 -0
  8. package/src/lib/components/alerts/alerts.module.ts +12 -0
  9. package/{lib/components/alerts/index.d.ts → src/lib/components/alerts/index.ts} +2 -2
  10. package/src/lib/components/closed-to-maintenance/closed-to-maintenance.component.html +25 -0
  11. package/src/lib/components/closed-to-maintenance/closed-to-maintenance.component.scss +51 -0
  12. package/src/lib/components/closed-to-maintenance/closed-to-maintenance.component.ts +25 -0
  13. package/src/lib/components/closed-to-maintenance/closed-to-maintenance.module.ts +26 -0
  14. package/{lib/components/closed-to-maintenance/index.d.ts → src/lib/components/closed-to-maintenance/index.ts} +2 -2
  15. package/{lib/components/index.d.ts → src/lib/components/index.ts} +4 -4
  16. package/{lib/components/progress-bar/index.d.ts → src/lib/components/progress-bar/index.ts} +3 -3
  17. package/src/lib/components/progress-bar/progress-bar.component.html +3 -0
  18. package/src/lib/components/progress-bar/progress-bar.component.scss +6 -0
  19. package/src/lib/components/progress-bar/progress-bar.component.ts +22 -0
  20. package/src/lib/components/progress-bar/progress-bar.module.ts +10 -0
  21. package/src/lib/components/progress-bar/progress-bar.service.ts +61 -0
  22. package/{lib/components/version-changed/index.d.ts → src/lib/components/version-changed/index.ts} +2 -2
  23. package/src/lib/components/version-changed/version-changed.component.html +18 -0
  24. package/src/lib/components/version-changed/version-changed.component.scss +52 -0
  25. package/src/lib/components/version-changed/version-changed.component.ts +18 -0
  26. package/src/lib/components/version-changed/version-changed.module.ts +24 -0
  27. package/{lib/core/decorators/index.d.ts → src/lib/core/decorators/index.ts} +4 -4
  28. package/src/lib/core/decorators/monkeyecx-charts-decorators.ts +46 -0
  29. package/src/lib/core/decorators/monkeyecx-decorators.ts +159 -0
  30. package/src/lib/core/decorators/monkeyecx-download-decorators.ts +39 -0
  31. package/src/lib/core/decorators/monkeyecx-upload-decorators.ts +39 -0
  32. package/{lib/core/directives/index.d.ts → src/lib/core/directives/index.ts} +12 -12
  33. package/src/lib/core/directives/monkeyecx-directives-module.ts +45 -0
  34. package/src/lib/core/directives/monkeyecx-drag-drop.ts +40 -0
  35. package/src/lib/core/directives/monkeyecx-feature-by-program-directive.ts +53 -0
  36. package/src/lib/core/directives/monkeyecx-feature-directive.ts +72 -0
  37. package/src/lib/core/directives/monkeyecx-format-currency.ts +44 -0
  38. package/src/lib/core/directives/monkeyecx-format-upper.ts +54 -0
  39. package/src/lib/core/directives/monkeyecx-only-alpha-numeric-directive.ts +21 -0
  40. package/src/lib/core/directives/monkeyecx-only-number-directive.ts +21 -0
  41. package/src/lib/core/directives/monkeyecx-popover-options.directive.ts +52 -0
  42. package/src/lib/core/directives/monkeyecx-popover.directive.ts +235 -0
  43. package/src/lib/core/directives/monkeyecx-security-directive.ts +68 -0
  44. package/src/lib/core/directives/monkeyecx-tooltip-directive.ts +131 -0
  45. package/{lib/core/index.d.ts → src/lib/core/index.ts} +9 -9
  46. package/{lib/core/interceptors/index.d.ts → src/lib/core/interceptors/index.ts} +5 -5
  47. package/src/lib/core/interceptors/monkeyecx-http-config-error.interceptor.ts +58 -0
  48. package/src/lib/core/interceptors/monkeyecx-http-config-header.interceptor.ts +78 -0
  49. package/src/lib/core/interceptors/monkeyecx-http-config-interceptor.module.ts +40 -0
  50. package/src/lib/core/interceptors/monkeyecx-http-config-loading-in-progress.interceptor.ts +47 -0
  51. package/src/lib/core/interceptors/monkeyecx-http-config-queue.interceptor.ts +44 -0
  52. package/{lib/core/interfaces/index.d.ts → src/lib/core/interfaces/index.ts} +29 -29
  53. package/src/lib/core/interfaces/monkeyecx-auth-credentials.ts +16 -0
  54. package/{lib/core/interfaces/monkeyecx-company-pendencies.d.ts → src/lib/core/interfaces/monkeyecx-company-pendencies.ts} +16 -14
  55. package/src/lib/core/interfaces/monkeyecx-company.ts +10 -0
  56. package/src/lib/core/interfaces/monkeyecx-config-boostrap.ts +14 -0
  57. package/src/lib/core/interfaces/monkeyecx-config.ts +139 -0
  58. package/src/lib/core/interfaces/monkeyecx-country-security.ts +4 -0
  59. package/src/lib/core/interfaces/monkeyecx-error-response.ts +5 -0
  60. package/src/lib/core/interfaces/monkeyecx-filter.ts +26 -0
  61. package/src/lib/core/interfaces/monkeyecx-handled-error-response.ts +11 -0
  62. package/src/lib/core/interfaces/monkeyecx-header-credentials.ts +4 -0
  63. package/{lib/core/interfaces/monkeyecx-intercom-options.d.ts → src/lib/core/interfaces/monkeyecx-intercom-options.ts} +4 -4
  64. package/src/lib/core/interfaces/monkeyecx-me-credentials.ts +23 -0
  65. package/src/lib/core/interfaces/monkeyecx-navigation.ts +28 -0
  66. package/src/lib/core/interfaces/monkeyecx-program.ts +10 -0
  67. package/src/lib/core/interfaces/monkeyecx-releases.ts +9 -0
  68. package/{lib/core/interfaces/monkeyecx-request-in-progress.d.ts → src/lib/core/interfaces/monkeyecx-request-in-progress.ts} +3 -3
  69. package/src/lib/core/interfaces/monkeyecx-request-paged.ts +27 -0
  70. package/src/lib/core/interfaces/monkeyecx-response-links.ts +11 -0
  71. package/src/lib/core/interfaces/monkeyecx-response-paged.ts +6 -0
  72. package/src/lib/core/interfaces/monkeyecx-saved-state.ts +5 -0
  73. package/{lib/core/interfaces/monkeyecx-scroll-options.d.ts → src/lib/core/interfaces/monkeyecx-scroll-options.ts} +6 -5
  74. package/{lib/core/interfaces/monkeyecx-service-credentials.d.ts → src/lib/core/interfaces/monkeyecx-service-credentials.ts} +13 -12
  75. package/{lib/core/interfaces/monkeyecx-support-options.d.ts → src/lib/core/interfaces/monkeyecx-support-options.ts} +4 -4
  76. package/src/lib/core/interfaces/monkeyecx-token-credentials.ts +20 -0
  77. package/src/lib/core/interfaces/monkeyecx-translate-options.ts +4 -0
  78. package/{lib/core/interfaces/request-download/index.d.ts → src/lib/core/interfaces/request-download/index.ts} +3 -3
  79. package/src/lib/core/interfaces/request-download/monkeyecx-request-download.ts +11 -0
  80. package/src/lib/core/interfaces/request-download/monkeyecx-request-downloaded.ts +8 -0
  81. package/src/lib/core/interfaces/request-download/monkeyecx-request-item-download.ts +7 -0
  82. package/{lib/core/interfaces/request-queue/index.d.ts → src/lib/core/interfaces/request-queue/index.ts} +3 -3
  83. package/src/lib/core/interfaces/request-queue/monkeyecx-request-item-queue.ts +7 -0
  84. package/src/lib/core/interfaces/request-queue/monkeyecx-request-progress-queue.ts +6 -0
  85. package/{lib/core/interfaces/request-queue/monkeyecx-request-queue.d.ts → src/lib/core/interfaces/request-queue/monkeyecx-request-queue.ts} +9 -8
  86. package/{lib/core/interfaces/request-upload/index.d.ts → src/lib/core/interfaces/request-upload/index.ts} +2 -2
  87. package/src/lib/core/interfaces/request-upload/monkeyecx-request-item-upload.ts +5 -0
  88. package/src/lib/core/interfaces/request-upload/monkeyecx-request-upload.ts +11 -0
  89. package/{lib/core/interfaces/schedules/index.d.ts → src/lib/core/interfaces/schedules/index.ts} +1 -1
  90. package/src/lib/core/interfaces/schedules/monkeyecx-request-schedule.ts +14 -0
  91. package/{lib/core/model/index.d.ts → src/lib/core/model/index.ts} +1 -1
  92. package/src/lib/core/model/monkeyecx-model.ts +38 -0
  93. package/{lib/core/pipes/index.d.ts → src/lib/core/pipes/index.ts} +19 -19
  94. package/src/lib/core/pipes/monkeyecx-display-first-name.ts +12 -0
  95. package/src/lib/core/pipes/monkeyecx-display-initials.ts +14 -0
  96. package/src/lib/core/pipes/monkeyecx-display-support-phone.ts +31 -0
  97. package/src/lib/core/pipes/monkeyecx-format-address.ts +27 -0
  98. package/src/lib/core/pipes/monkeyecx-format-beautify-json.ts +35 -0
  99. package/src/lib/core/pipes/monkeyecx-format-currency.ts +20 -0
  100. package/src/lib/core/pipes/monkeyecx-format-date-group.ts +40 -0
  101. package/src/lib/core/pipes/monkeyecx-format-date-timelapse.ts +25 -0
  102. package/src/lib/core/pipes/monkeyecx-format-date-unix-timelapse.ts +31 -0
  103. package/src/lib/core/pipes/monkeyecx-format-document.ts +12 -0
  104. package/src/lib/core/pipes/monkeyecx-format-number.ts +14 -0
  105. package/src/lib/core/pipes/monkeyecx-format-phone.ts +32 -0
  106. package/src/lib/core/pipes/monkeyecx-format-size.ts +13 -0
  107. package/src/lib/core/pipes/monkeyecx-format-tax.ts +16 -0
  108. package/src/lib/core/pipes/monkeyecx-format-type-document.ts +12 -0
  109. package/src/lib/core/pipes/monkeyecx-format-value.ts +12 -0
  110. package/src/lib/core/pipes/monkeyecx-format-zipcode.ts +12 -0
  111. package/src/lib/core/pipes/monkeyecx-pipes.module.ts +65 -0
  112. package/src/lib/core/pipes/monkeyecx-text-truncate.ts +17 -0
  113. package/src/lib/core/pipes/monkeyecx-truncate-qtd.ts +10 -0
  114. package/{lib/core/services/auth/index.d.ts → src/lib/core/services/auth/index.ts} +4 -4
  115. package/src/lib/core/services/auth/monkeyecx-auth-guard-company.service.ts +27 -0
  116. package/src/lib/core/services/auth/monkeyecx-auth-guard-login.service.ts +23 -0
  117. package/src/lib/core/services/auth/monkeyecx-auth-guard.service.ts +25 -0
  118. package/src/lib/core/services/auth/monkeyecx-authentication.service.ts +87 -0
  119. package/{lib/core/services/commons/index.d.ts → src/lib/core/services/commons/index.ts} +1 -1
  120. package/src/lib/core/services/commons/monkeyecx-commons.service.ts +557 -0
  121. package/src/lib/core/services/config/index.ts +9 -0
  122. package/src/lib/core/services/config/monkeyecx-alerts-config.service.ts +37 -0
  123. package/src/lib/core/services/config/monkeyecx-config.module.ts +23 -0
  124. package/src/lib/core/services/config/monkeyecx-config.service.ts +151 -0
  125. package/src/lib/core/services/config/monkeyecx-error-config.service.ts +92 -0
  126. package/src/lib/core/services/config/monkeyecx-feature-toggle.service.ts +71 -0
  127. package/src/lib/core/services/config/monkeyecx-ga-config.service.ts +56 -0
  128. package/src/lib/core/services/config/monkeyecx-i18n-config.service.ts +95 -0
  129. package/src/lib/core/services/config/monkeyecx-logs-config.service.ts +34 -0
  130. package/src/lib/core/services/config/monkeyecx-maintenance-config.service.ts +33 -0
  131. package/src/lib/core/services/config/monkeyecx-security-console-config.service.ts +40 -0
  132. package/src/lib/core/services/config/monkeyecx-service-worker-config.service.ts +50 -0
  133. package/{lib/core/services/error/index.d.ts → src/lib/core/services/error/index.ts} +4 -4
  134. package/src/lib/core/services/error/monkeyecx-error-handling.module.ts +20 -0
  135. package/src/lib/core/services/error/monkeyecx-error-handling.service.ts +33 -0
  136. package/src/lib/core/services/error/monkeyecx-http-error-handling.service.ts +160 -0
  137. package/src/lib/core/services/error/monkeyecx-others-errors-handling.service.ts +24 -0
  138. package/{lib/core/services/index.d.ts → src/lib/core/services/index.ts} +22 -22
  139. package/{lib/core/services/logged/index.d.ts → src/lib/core/services/logged/index.ts} +1 -1
  140. package/src/lib/core/services/logged/monkeyecx-logged-handling.service.ts +42 -0
  141. package/src/lib/core/services/monkeyecx-handling.service.ts +58 -0
  142. package/src/lib/core/services/monkeyecx-service.service.ts +116 -0
  143. package/{lib/core/services/pagination/index.d.ts → src/lib/core/services/pagination/index.ts} +1 -1
  144. package/src/lib/core/services/pagination/monkeyecx-pagination.service.ts +27 -0
  145. package/{lib/core/services/request-download/index.d.ts → src/lib/core/services/request-download/index.ts} +2 -2
  146. package/src/lib/core/services/request-download/monkeyecx-request-download-handling.service.ts +100 -0
  147. package/src/lib/core/services/request-download/monkeyecx-request-downloaded-handling.service.ts +65 -0
  148. package/{lib/core/services/request-paged/index.d.ts → src/lib/core/services/request-paged/index.ts} +1 -1
  149. package/src/lib/core/services/request-paged/monkeyecx-request-request-paged-handling.ts +58 -0
  150. package/{lib/core/services/request-queue/index.d.ts → src/lib/core/services/request-queue/index.ts} +2 -2
  151. package/src/lib/core/services/request-queue/monkeyecx-request-queue-handling.service.ts +125 -0
  152. package/src/lib/core/services/request-queue/monkeyecx-request-queue-modal-handling.service.ts +136 -0
  153. package/{lib/core/services/routes/index.d.ts → src/lib/core/services/routes/index.ts} +1 -1
  154. package/src/lib/core/services/routes/monkeyecx-dicovery-params.service.ts +54 -0
  155. package/{lib/core/services/schedules/index.d.ts → src/lib/core/services/schedules/index.ts} +1 -1
  156. package/src/lib/core/services/schedules/monkeyecx-request-schedule.service.ts +224 -0
  157. package/{lib/core/services/storage/index.d.ts → src/lib/core/services/storage/index.ts} +2 -2
  158. package/src/lib/core/services/storage/monkeyecx-cookie-storage.service.ts +28 -0
  159. package/src/lib/core/services/storage/monkeyecx-token-storage.service.ts +151 -0
  160. package/{lib/core/specification-search/index.d.ts → src/lib/core/specification-search/index.ts} +1 -1
  161. package/src/lib/core/specification-search/monkeyecx-specification-search.ts +111 -0
  162. package/src/lib/core/utils/decorators-utils.ts +56 -0
  163. package/{lib/core/utils/index.d.ts → src/lib/core/utils/index.ts} +8 -6
  164. package/src/lib/core/utils/statics.ts +36 -0
  165. package/src/lib/core/utils/utils.ts +237 -0
  166. package/src/lib/core/utils/validate-utils.ts +221 -0
  167. package/src/lib/core/utils/validators.ts +251 -0
  168. package/src/lib/monkey-front-core.module.ts +37 -0
  169. package/{public-api.d.ts → src/public-api.ts} +6 -3
  170. package/src/test.ts +26 -0
  171. package/tsconfig.lib.json +15 -0
  172. package/tsconfig.lib.prod.json +10 -0
  173. package/tsconfig.spec.json +17 -0
  174. package/esm2020/lib/components/alerts/alerts.component.mjs +0 -35
  175. package/esm2020/lib/components/alerts/alerts.module.mjs +0 -21
  176. package/esm2020/lib/components/alerts/index.mjs +0 -3
  177. package/esm2020/lib/components/closed-to-maintenance/closed-to-maintenance.component.mjs +0 -29
  178. package/esm2020/lib/components/closed-to-maintenance/closed-to-maintenance.module.mjs +0 -43
  179. package/esm2020/lib/components/closed-to-maintenance/index.mjs +0 -3
  180. package/esm2020/lib/components/index.mjs +0 -5
  181. package/esm2020/lib/components/progress-bar/index.mjs +0 -4
  182. package/esm2020/lib/components/progress-bar/progress-bar.component.mjs +0 -23
  183. package/esm2020/lib/components/progress-bar/progress-bar.module.mjs +0 -18
  184. package/esm2020/lib/components/progress-bar/progress-bar.service.mjs +0 -50
  185. package/esm2020/lib/components/version-changed/index.mjs +0 -3
  186. package/esm2020/lib/components/version-changed/version-changed.component.mjs +0 -24
  187. package/esm2020/lib/components/version-changed/version-changed.module.mjs +0 -39
  188. package/esm2020/lib/core/decorators/index.mjs +0 -5
  189. package/esm2020/lib/core/decorators/monkeyecx-charts-decorators.mjs +0 -40
  190. package/esm2020/lib/core/decorators/monkeyecx-decorators.mjs +0 -111
  191. package/esm2020/lib/core/decorators/monkeyecx-download-decorators.mjs +0 -26
  192. package/esm2020/lib/core/decorators/monkeyecx-upload-decorators.mjs +0 -26
  193. package/esm2020/lib/core/directives/index.mjs +0 -13
  194. package/esm2020/lib/core/directives/monkeyecx-directives-module.mjs +0 -73
  195. package/esm2020/lib/core/directives/monkeyecx-drag-drop.mjs +0 -57
  196. package/esm2020/lib/core/directives/monkeyecx-feature-by-program-directive.mjs +0 -50
  197. package/esm2020/lib/core/directives/monkeyecx-feature-directive.mjs +0 -68
  198. package/esm2020/lib/core/directives/monkeyecx-format-currency.mjs +0 -44
  199. package/esm2020/lib/core/directives/monkeyecx-format-upper.mjs +0 -67
  200. package/esm2020/lib/core/directives/monkeyecx-only-alpha-numeric-directive.mjs +0 -28
  201. package/esm2020/lib/core/directives/monkeyecx-only-number-directive.mjs +0 -28
  202. package/esm2020/lib/core/directives/monkeyecx-popover-options.directive.mjs +0 -39
  203. package/esm2020/lib/core/directives/monkeyecx-popover.directive.mjs +0 -212
  204. package/esm2020/lib/core/directives/monkeyecx-security-directive.mjs +0 -69
  205. package/esm2020/lib/core/directives/monkeyecx-tooltip-directive.mjs +0 -123
  206. package/esm2020/lib/core/index.mjs +0 -10
  207. package/esm2020/lib/core/interceptors/index.mjs +0 -6
  208. package/esm2020/lib/core/interceptors/monkeyecx-http-config-error.interceptor.mjs +0 -39
  209. package/esm2020/lib/core/interceptors/monkeyecx-http-config-header.interceptor.mjs +0 -60
  210. package/esm2020/lib/core/interceptors/monkeyecx-http-config-interceptor.module.mjs +0 -47
  211. package/esm2020/lib/core/interceptors/monkeyecx-http-config-loading-in-progress.interceptor.mjs +0 -43
  212. package/esm2020/lib/core/interceptors/monkeyecx-http-config-queue.interceptor.mjs +0 -37
  213. package/esm2020/lib/core/interfaces/index.mjs +0 -30
  214. package/esm2020/lib/core/interfaces/monkeyecx-auth-credentials.mjs +0 -2
  215. package/esm2020/lib/core/interfaces/monkeyecx-company-pendencies.mjs +0 -2
  216. package/esm2020/lib/core/interfaces/monkeyecx-company.mjs +0 -2
  217. package/esm2020/lib/core/interfaces/monkeyecx-config-boostrap.mjs +0 -2
  218. package/esm2020/lib/core/interfaces/monkeyecx-config.mjs +0 -2
  219. package/esm2020/lib/core/interfaces/monkeyecx-country-security.mjs +0 -2
  220. package/esm2020/lib/core/interfaces/monkeyecx-error-response.mjs +0 -2
  221. package/esm2020/lib/core/interfaces/monkeyecx-filter.mjs +0 -2
  222. package/esm2020/lib/core/interfaces/monkeyecx-handled-error-response.mjs +0 -2
  223. package/esm2020/lib/core/interfaces/monkeyecx-header-credentials.mjs +0 -2
  224. package/esm2020/lib/core/interfaces/monkeyecx-intercom-options.mjs +0 -2
  225. package/esm2020/lib/core/interfaces/monkeyecx-me-credentials.mjs +0 -2
  226. package/esm2020/lib/core/interfaces/monkeyecx-navigation.mjs +0 -2
  227. package/esm2020/lib/core/interfaces/monkeyecx-program.mjs +0 -2
  228. package/esm2020/lib/core/interfaces/monkeyecx-releases.mjs +0 -2
  229. package/esm2020/lib/core/interfaces/monkeyecx-request-in-progress.mjs +0 -2
  230. package/esm2020/lib/core/interfaces/monkeyecx-request-paged.mjs +0 -2
  231. package/esm2020/lib/core/interfaces/monkeyecx-response-links.mjs +0 -2
  232. package/esm2020/lib/core/interfaces/monkeyecx-response-paged.mjs +0 -2
  233. package/esm2020/lib/core/interfaces/monkeyecx-saved-state.mjs +0 -2
  234. package/esm2020/lib/core/interfaces/monkeyecx-scroll-options.mjs +0 -2
  235. package/esm2020/lib/core/interfaces/monkeyecx-service-credentials.mjs +0 -2
  236. package/esm2020/lib/core/interfaces/monkeyecx-support-options.mjs +0 -2
  237. package/esm2020/lib/core/interfaces/monkeyecx-token-credentials.mjs +0 -2
  238. package/esm2020/lib/core/interfaces/monkeyecx-translate-options.mjs +0 -2
  239. package/esm2020/lib/core/interfaces/request-download/index.mjs +0 -4
  240. package/esm2020/lib/core/interfaces/request-download/monkeyecx-request-download.mjs +0 -2
  241. package/esm2020/lib/core/interfaces/request-download/monkeyecx-request-downloaded.mjs +0 -2
  242. package/esm2020/lib/core/interfaces/request-download/monkeyecx-request-item-download.mjs +0 -2
  243. package/esm2020/lib/core/interfaces/request-queue/index.mjs +0 -4
  244. package/esm2020/lib/core/interfaces/request-queue/monkeyecx-request-item-queue.mjs +0 -2
  245. package/esm2020/lib/core/interfaces/request-queue/monkeyecx-request-progress-queue.mjs +0 -2
  246. package/esm2020/lib/core/interfaces/request-queue/monkeyecx-request-queue.mjs +0 -2
  247. package/esm2020/lib/core/interfaces/request-upload/index.mjs +0 -3
  248. package/esm2020/lib/core/interfaces/request-upload/monkeyecx-request-item-upload.mjs +0 -2
  249. package/esm2020/lib/core/interfaces/request-upload/monkeyecx-request-upload.mjs +0 -2
  250. package/esm2020/lib/core/interfaces/schedules/index.mjs +0 -2
  251. package/esm2020/lib/core/interfaces/schedules/monkeyecx-request-schedule.mjs +0 -2
  252. package/esm2020/lib/core/model/index.mjs +0 -2
  253. package/esm2020/lib/core/model/monkeyecx-model.mjs +0 -25
  254. package/esm2020/lib/core/pipes/index.mjs +0 -20
  255. package/esm2020/lib/core/pipes/monkeyecx-display-first-name.mjs +0 -19
  256. package/esm2020/lib/core/pipes/monkeyecx-display-initials.mjs +0 -21
  257. package/esm2020/lib/core/pipes/monkeyecx-format-address.mjs +0 -20
  258. package/esm2020/lib/core/pipes/monkeyecx-format-beautify-json.mjs +0 -38
  259. package/esm2020/lib/core/pipes/monkeyecx-format-currency.mjs +0 -27
  260. package/esm2020/lib/core/pipes/monkeyecx-format-date-group.mjs +0 -45
  261. package/esm2020/lib/core/pipes/monkeyecx-format-date-timelapse.mjs +0 -32
  262. package/esm2020/lib/core/pipes/monkeyecx-format-date-unix-timelapse.mjs +0 -36
  263. package/esm2020/lib/core/pipes/monkeyecx-format-document.mjs +0 -19
  264. package/esm2020/lib/core/pipes/monkeyecx-format-number.mjs +0 -20
  265. package/esm2020/lib/core/pipes/monkeyecx-format-phone.mjs +0 -42
  266. package/esm2020/lib/core/pipes/monkeyecx-format-size.mjs +0 -20
  267. package/esm2020/lib/core/pipes/monkeyecx-format-tax.mjs +0 -23
  268. package/esm2020/lib/core/pipes/monkeyecx-format-type-document.mjs +0 -19
  269. package/esm2020/lib/core/pipes/monkeyecx-format-value.mjs +0 -19
  270. package/esm2020/lib/core/pipes/monkeyecx-format-zipcode.mjs +0 -19
  271. package/esm2020/lib/core/pipes/monkeyecx-pipes.module.mjs +0 -107
  272. package/esm2020/lib/core/pipes/monkeyecx-text-truncate.mjs +0 -23
  273. package/esm2020/lib/core/pipes/monkeyecx-truncate-qtd.mjs +0 -16
  274. package/esm2020/lib/core/services/auth/index.mjs +0 -5
  275. package/esm2020/lib/core/services/auth/monkeyecx-auth-guard-company.service.mjs +0 -28
  276. package/esm2020/lib/core/services/auth/monkeyecx-auth-guard-login.service.mjs +0 -27
  277. package/esm2020/lib/core/services/auth/monkeyecx-auth-guard.service.mjs +0 -26
  278. package/esm2020/lib/core/services/auth/monkeyecx-authentication.service.mjs +0 -69
  279. package/esm2020/lib/core/services/commons/index.mjs +0 -2
  280. package/esm2020/lib/core/services/commons/monkeyecx-commons.service.mjs +0 -405
  281. package/esm2020/lib/core/services/config/monkeyecx-alerts-config.service.mjs +0 -40
  282. package/esm2020/lib/core/services/config/monkeyecx-config.module.mjs +0 -28
  283. package/esm2020/lib/core/services/config/monkeyecx-config.service.mjs +0 -111
  284. package/esm2020/lib/core/services/config/monkeyecx-error-config.service.mjs +0 -85
  285. package/esm2020/lib/core/services/config/monkeyecx-feature-toggle.service.mjs +0 -67
  286. package/esm2020/lib/core/services/config/monkeyecx-ga-config.service.mjs +0 -57
  287. package/esm2020/lib/core/services/config/monkeyecx-i18n-config.service.mjs +0 -92
  288. package/esm2020/lib/core/services/config/monkeyecx-logs-config.service.mjs +0 -34
  289. package/esm2020/lib/core/services/config/monkeyecx-maintenance-config.service.mjs +0 -37
  290. package/esm2020/lib/core/services/config/monkeyecx-security-console-config.service.mjs +0 -42
  291. package/esm2020/lib/core/services/config/monkeyecx-service-worker-config.service.mjs +0 -53
  292. package/esm2020/lib/core/services/error/index.mjs +0 -5
  293. package/esm2020/lib/core/services/error/monkeyecx-error-handling.module.mjs +0 -27
  294. package/esm2020/lib/core/services/error/monkeyecx-error-handling.service.mjs +0 -37
  295. package/esm2020/lib/core/services/error/monkeyecx-http-error-handling.service.mjs +0 -135
  296. package/esm2020/lib/core/services/error/monkeyecx-others-errors-handling.service.mjs +0 -29
  297. package/esm2020/lib/core/services/index.mjs +0 -23
  298. package/esm2020/lib/core/services/logged/index.mjs +0 -2
  299. package/esm2020/lib/core/services/logged/monkeyecx-logged-handling.service.mjs +0 -40
  300. package/esm2020/lib/core/services/monkeyecx-handling.service.mjs +0 -50
  301. package/esm2020/lib/core/services/monkeyecx-service.service.mjs +0 -104
  302. package/esm2020/lib/core/services/pagination/index.mjs +0 -2
  303. package/esm2020/lib/core/services/pagination/monkeyecx-pagination.service.mjs +0 -29
  304. package/esm2020/lib/core/services/request-download/index.mjs +0 -3
  305. package/esm2020/lib/core/services/request-download/monkeyecx-request-download-handling.service.mjs +0 -93
  306. package/esm2020/lib/core/services/request-download/monkeyecx-request-downloaded-handling.service.mjs +0 -61
  307. package/esm2020/lib/core/services/request-paged/index.mjs +0 -2
  308. package/esm2020/lib/core/services/request-paged/monkeyecx-request-request-paged-handling.mjs +0 -42
  309. package/esm2020/lib/core/services/request-queue/index.mjs +0 -3
  310. package/esm2020/lib/core/services/request-queue/monkeyecx-request-queue-handling.service.mjs +0 -114
  311. package/esm2020/lib/core/services/request-queue/monkeyecx-request-queue-modal-handling.service.mjs +0 -119
  312. package/esm2020/lib/core/services/routes/index.mjs +0 -2
  313. package/esm2020/lib/core/services/routes/monkeyecx-dicovery-params.service.mjs +0 -54
  314. package/esm2020/lib/core/services/schedules/index.mjs +0 -2
  315. package/esm2020/lib/core/services/schedules/monkeyecx-request-schedule.service.mjs +0 -188
  316. package/esm2020/lib/core/services/storage/index.mjs +0 -3
  317. package/esm2020/lib/core/services/storage/monkeyecx-cookie-storage.service.mjs +0 -32
  318. package/esm2020/lib/core/services/storage/monkeyecx-token-storage.service.mjs +0 -127
  319. package/esm2020/lib/core/specification-search/index.mjs +0 -2
  320. package/esm2020/lib/core/specification-search/monkeyecx-specification-search.mjs +0 -108
  321. package/esm2020/lib/core/utils/decorators-utils.mjs +0 -40
  322. package/esm2020/lib/core/utils/index.mjs +0 -8
  323. package/esm2020/lib/core/utils/statics.mjs +0 -38
  324. package/esm2020/lib/core/utils/utils.mjs +0 -221
  325. package/esm2020/lib/core/utils/validate-utils.mjs +0 -206
  326. package/esm2020/lib/core/utils/validators.mjs +0 -208
  327. package/esm2020/lib/monkey-front-core.module.mjs +0 -64
  328. package/esm2020/monkey-front-core.mjs +0 -5
  329. package/esm2020/public-api.mjs +0 -7
  330. package/fesm2015/monkey-front-core.mjs +0 -5123
  331. package/fesm2015/monkey-front-core.mjs.map +0 -1
  332. package/fesm2020/monkey-front-core.mjs +0 -5182
  333. package/fesm2020/monkey-front-core.mjs.map +0 -1
  334. package/lib/components/alerts/alerts.component.d.ts +0 -16
  335. package/lib/components/alerts/alerts.module.d.ts +0 -10
  336. package/lib/components/closed-to-maintenance/closed-to-maintenance.component.d.ts +0 -13
  337. package/lib/components/closed-to-maintenance/closed-to-maintenance.module.d.ts +0 -11
  338. package/lib/components/progress-bar/progress-bar.component.d.ts +0 -11
  339. package/lib/components/progress-bar/progress-bar.module.d.ts +0 -8
  340. package/lib/components/progress-bar/progress-bar.service.d.ts +0 -14
  341. package/lib/components/version-changed/version-changed.component.d.ts +0 -9
  342. package/lib/components/version-changed/version-changed.module.d.ts +0 -10
  343. package/lib/core/decorators/monkeyecx-charts-decorators.d.ts +0 -1
  344. package/lib/core/decorators/monkeyecx-decorators.d.ts +0 -7
  345. package/lib/core/decorators/monkeyecx-download-decorators.d.ts +0 -2
  346. package/lib/core/decorators/monkeyecx-upload-decorators.d.ts +0 -2
  347. package/lib/core/directives/monkeyecx-directives-module.d.ts +0 -19
  348. package/lib/core/directives/monkeyecx-drag-drop.d.ts +0 -12
  349. package/lib/core/directives/monkeyecx-feature-by-program-directive.d.ts +0 -15
  350. package/lib/core/directives/monkeyecx-feature-directive.d.ts +0 -17
  351. package/lib/core/directives/monkeyecx-format-currency.d.ts +0 -16
  352. package/lib/core/directives/monkeyecx-format-upper.d.ts +0 -18
  353. package/lib/core/directives/monkeyecx-only-alpha-numeric-directive.d.ts +0 -9
  354. package/lib/core/directives/monkeyecx-only-number-directive.d.ts +0 -9
  355. package/lib/core/directives/monkeyecx-popover-options.directive.d.ts +0 -19
  356. package/lib/core/directives/monkeyecx-popover.directive.d.ts +0 -43
  357. package/lib/core/directives/monkeyecx-security-directive.d.ts +0 -17
  358. package/lib/core/directives/monkeyecx-tooltip-directive.d.ts +0 -23
  359. package/lib/core/interceptors/monkeyecx-http-config-error.interceptor.d.ts +0 -17
  360. package/lib/core/interceptors/monkeyecx-http-config-header.interceptor.d.ts +0 -16
  361. package/lib/core/interceptors/monkeyecx-http-config-interceptor.module.d.ts +0 -9
  362. package/lib/core/interceptors/monkeyecx-http-config-loading-in-progress.interceptor.d.ts +0 -12
  363. package/lib/core/interceptors/monkeyecx-http-config-queue.interceptor.d.ts +0 -14
  364. package/lib/core/interfaces/monkeyecx-auth-credentials.d.ts +0 -15
  365. package/lib/core/interfaces/monkeyecx-company.d.ts +0 -10
  366. package/lib/core/interfaces/monkeyecx-config-boostrap.d.ts +0 -14
  367. package/lib/core/interfaces/monkeyecx-config.d.ts +0 -125
  368. package/lib/core/interfaces/monkeyecx-country-security.d.ts +0 -4
  369. package/lib/core/interfaces/monkeyecx-error-response.d.ts +0 -5
  370. package/lib/core/interfaces/monkeyecx-filter.d.ts +0 -24
  371. package/lib/core/interfaces/monkeyecx-handled-error-response.d.ts +0 -10
  372. package/lib/core/interfaces/monkeyecx-header-credentials.d.ts +0 -4
  373. package/lib/core/interfaces/monkeyecx-me-credentials.d.ts +0 -22
  374. package/lib/core/interfaces/monkeyecx-navigation.d.ts +0 -27
  375. package/lib/core/interfaces/monkeyecx-program.d.ts +0 -10
  376. package/lib/core/interfaces/monkeyecx-releases.d.ts +0 -9
  377. package/lib/core/interfaces/monkeyecx-request-paged.d.ts +0 -23
  378. package/lib/core/interfaces/monkeyecx-response-links.d.ts +0 -11
  379. package/lib/core/interfaces/monkeyecx-response-paged.d.ts +0 -6
  380. package/lib/core/interfaces/monkeyecx-saved-state.d.ts +0 -5
  381. package/lib/core/interfaces/monkeyecx-token-credentials.d.ts +0 -20
  382. package/lib/core/interfaces/monkeyecx-translate-options.d.ts +0 -4
  383. package/lib/core/interfaces/request-download/monkeyecx-request-download.d.ts +0 -10
  384. package/lib/core/interfaces/request-download/monkeyecx-request-downloaded.d.ts +0 -7
  385. package/lib/core/interfaces/request-download/monkeyecx-request-item-download.d.ts +0 -7
  386. package/lib/core/interfaces/request-queue/monkeyecx-request-item-queue.d.ts +0 -7
  387. package/lib/core/interfaces/request-queue/monkeyecx-request-progress-queue.d.ts +0 -6
  388. package/lib/core/interfaces/request-upload/monkeyecx-request-item-upload.d.ts +0 -5
  389. package/lib/core/interfaces/request-upload/monkeyecx-request-upload.d.ts +0 -10
  390. package/lib/core/interfaces/schedules/monkeyecx-request-schedule.d.ts +0 -13
  391. package/lib/core/model/monkeyecx-model.d.ts +0 -13
  392. package/lib/core/pipes/monkeyecx-display-first-name.d.ts +0 -7
  393. package/lib/core/pipes/monkeyecx-display-initials.d.ts +0 -7
  394. package/lib/core/pipes/monkeyecx-format-address.d.ts +0 -14
  395. package/lib/core/pipes/monkeyecx-format-beautify-json.d.ts +0 -8
  396. package/lib/core/pipes/monkeyecx-format-currency.d.ts +0 -11
  397. package/lib/core/pipes/monkeyecx-format-date-group.d.ts +0 -11
  398. package/lib/core/pipes/monkeyecx-format-date-timelapse.d.ts +0 -7
  399. package/lib/core/pipes/monkeyecx-format-date-unix-timelapse.d.ts +0 -7
  400. package/lib/core/pipes/monkeyecx-format-document.d.ts +0 -7
  401. package/lib/core/pipes/monkeyecx-format-number.d.ts +0 -7
  402. package/lib/core/pipes/monkeyecx-format-phone.d.ts +0 -7
  403. package/lib/core/pipes/monkeyecx-format-size.d.ts +0 -7
  404. package/lib/core/pipes/monkeyecx-format-tax.d.ts +0 -7
  405. package/lib/core/pipes/monkeyecx-format-type-document.d.ts +0 -7
  406. package/lib/core/pipes/monkeyecx-format-value.d.ts +0 -7
  407. package/lib/core/pipes/monkeyecx-format-zipcode.d.ts +0 -7
  408. package/lib/core/pipes/monkeyecx-pipes.module.d.ts +0 -24
  409. package/lib/core/pipes/monkeyecx-text-truncate.d.ts +0 -7
  410. package/lib/core/pipes/monkeyecx-truncate-qtd.d.ts +0 -7
  411. package/lib/core/services/auth/monkeyecx-auth-guard-company.service.d.ts +0 -11
  412. package/lib/core/services/auth/monkeyecx-auth-guard-login.service.d.ts +0 -11
  413. package/lib/core/services/auth/monkeyecx-auth-guard.service.d.ts +0 -11
  414. package/lib/core/services/auth/monkeyecx-authentication.service.d.ts +0 -30
  415. package/lib/core/services/commons/monkeyecx-commons.service.d.ts +0 -124
  416. package/lib/core/services/config/monkeyecx-alerts-config.service.d.ts +0 -11
  417. package/lib/core/services/config/monkeyecx-config.module.d.ts +0 -9
  418. package/lib/core/services/config/monkeyecx-config.service.d.ts +0 -36
  419. package/lib/core/services/config/monkeyecx-error-config.service.d.ts +0 -8
  420. package/lib/core/services/config/monkeyecx-feature-toggle.service.d.ts +0 -16
  421. package/lib/core/services/config/monkeyecx-ga-config.service.d.ts +0 -10
  422. package/lib/core/services/config/monkeyecx-i18n-config.service.d.ts +0 -16
  423. package/lib/core/services/config/monkeyecx-logs-config.service.d.ts +0 -7
  424. package/lib/core/services/config/monkeyecx-maintenance-config.service.d.ts +0 -13
  425. package/lib/core/services/config/monkeyecx-security-console-config.service.d.ts +0 -11
  426. package/lib/core/services/config/monkeyecx-service-worker-config.service.d.ts +0 -16
  427. package/lib/core/services/error/monkeyecx-error-handling.module.d.ts +0 -9
  428. package/lib/core/services/error/monkeyecx-error-handling.service.d.ts +0 -9
  429. package/lib/core/services/error/monkeyecx-http-error-handling.service.d.ts +0 -26
  430. package/lib/core/services/error/monkeyecx-others-errors-handling.service.d.ts +0 -9
  431. package/lib/core/services/logged/monkeyecx-logged-handling.service.d.ts +0 -14
  432. package/lib/core/services/monkeyecx-handling.service.d.ts +0 -22
  433. package/lib/core/services/monkeyecx-service.service.d.ts +0 -18
  434. package/lib/core/services/pagination/monkeyecx-pagination.service.d.ts +0 -9
  435. package/lib/core/services/request-download/monkeyecx-request-download-handling.service.d.ts +0 -18
  436. package/lib/core/services/request-download/monkeyecx-request-downloaded-handling.service.d.ts +0 -16
  437. package/lib/core/services/request-paged/monkeyecx-request-request-paged-handling.d.ts +0 -11
  438. package/lib/core/services/request-queue/monkeyecx-request-queue-handling.service.d.ts +0 -21
  439. package/lib/core/services/request-queue/monkeyecx-request-queue-modal-handling.service.d.ts +0 -23
  440. package/lib/core/services/routes/monkeyecx-dicovery-params.service.d.ts +0 -13
  441. package/lib/core/services/schedules/monkeyecx-request-schedule.service.d.ts +0 -47
  442. package/lib/core/services/storage/monkeyecx-cookie-storage.service.d.ts +0 -11
  443. package/lib/core/services/storage/monkeyecx-token-storage.service.d.ts +0 -29
  444. package/lib/core/specification-search/monkeyecx-specification-search.d.ts +0 -20
  445. package/lib/core/utils/decorators-utils.d.ts +0 -5
  446. package/lib/core/utils/statics.d.ts +0 -28
  447. package/lib/core/utils/utils.d.ts +0 -22
  448. package/lib/core/utils/validate-utils.d.ts +0 -66
  449. package/lib/core/utils/validators.d.ts +0 -29
  450. package/lib/monkey-front-core.module.d.ts +0 -17
  451. package/monkey-front-core-0.0.237.tgz +0 -0
  452. package/monkey-front-core.d.ts +0 -5
@@ -1,16 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { MonkeyModalConfig, MonkeyStyleGuideModalService } from 'monkey-style-guide';
3
- import * as i0 from "@angular/core";
4
- export declare class AlertsComponent implements OnInit {
5
- private modalService;
6
- config: MonkeyModalConfig | null;
7
- modalRef: any;
8
- _img: string;
9
- _title: string;
10
- _message: string;
11
- constructor(modalService: MonkeyStyleGuideModalService);
12
- ngOnInit(): void;
13
- onClose(): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<AlertsComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<AlertsComponent, "monkeyecx-alerts", never, { "config": "config"; "modalRef": "modalRef"; }, {}, never, never>;
16
- }
@@ -1,10 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./alerts.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "monkey-style-guide";
5
- import * as i4 from "@ngx-translate/core";
6
- export declare class AlertsModule {
7
- static ɵfac: i0.ɵɵFactoryDeclaration<AlertsModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<AlertsModule, [typeof i1.AlertsComponent], [typeof i2.CommonModule, typeof i3.MonkeyButtonModule, typeof i3.MonkeyModalModule, typeof i4.TranslateModule], [typeof i1.AlertsComponent]>;
9
- static ɵinj: i0.ɵɵInjectorDeclaration<AlertsModule>;
10
- }
@@ -1,13 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { MonkeyModalConfig } from 'monkey-style-guide';
3
- import { MonkeyEcxConfigBoostrap } from '../../core/interfaces';
4
- import * as i0 from "@angular/core";
5
- export declare class ClosedToMaintenanceComponent implements OnInit {
6
- config: MonkeyModalConfig | null;
7
- modalRef: any;
8
- _configBoostrap: MonkeyEcxConfigBoostrap | null;
9
- ngOnInit(): void;
10
- onClose(): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<ClosedToMaintenanceComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<ClosedToMaintenanceComponent, "monkeyecx-closed-to-maintenance", never, { "config": "config"; "modalRef": "modalRef"; }, {}, never, never>;
13
- }
@@ -1,11 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./closed-to-maintenance.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "monkey-style-guide";
5
- import * as i4 from "../../core/pipes/monkeyecx-pipes.module";
6
- import * as i5 from "@ngx-translate/core";
7
- export declare class ClosedToMaintenanceModule {
8
- static ɵfac: i0.ɵɵFactoryDeclaration<ClosedToMaintenanceModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<ClosedToMaintenanceModule, [typeof i1.ClosedToMaintenanceComponent], [typeof i2.CommonModule, typeof i3.MonkeyButtonModule, typeof i3.MonkeyIconModule, typeof i3.MonkeyInputModule, typeof i3.MonkeyModalModule, typeof i4.MonkeyEcxPipesModule, typeof i5.TranslateModule], [typeof i1.ClosedToMaintenanceComponent]>;
10
- static ɵinj: i0.ɵɵInjectorDeclaration<ClosedToMaintenanceModule>;
11
- }
@@ -1,11 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { MonkeyEcxProgressBarService } from './progress-bar.service';
3
- import * as i0 from "@angular/core";
4
- export declare class MonkeyEcxProgressBarComponent implements OnInit {
5
- private progressBarService;
6
- visible: boolean;
7
- constructor(progressBarService: MonkeyEcxProgressBarService);
8
- ngOnInit(): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxProgressBarComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyEcxProgressBarComponent, "monkeyecx-progress-bar", never, {}, {}, never, never>;
11
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./progress-bar.component";
3
- import * as i2 from "@angular/common";
4
- export declare class MonkeyEcxProgressBarModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxProgressBarModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyEcxProgressBarModule, [typeof i1.MonkeyEcxProgressBarComponent], [typeof i2.CommonModule], [typeof i1.MonkeyEcxProgressBarComponent]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyEcxProgressBarModule>;
8
- }
@@ -1,14 +0,0 @@
1
- import { Router } from '@angular/router';
2
- import { Observable } from 'rxjs';
3
- import * as i0 from "@angular/core";
4
- export declare class MonkeyEcxProgressBarService {
5
- private router;
6
- private visible;
7
- constructor(router: Router);
8
- private init;
9
- show(): void;
10
- hide(): void;
11
- visibleConfig(): Observable<any> | null;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxProgressBarService, never>;
13
- static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxProgressBarService>;
14
- }
@@ -1,9 +0,0 @@
1
- import { MonkeyModalConfig } from 'monkey-style-guide';
2
- import * as i0 from "@angular/core";
3
- export declare class VersionChangedComponent {
4
- config: MonkeyModalConfig | null;
5
- modalRef: any;
6
- onClose(): void;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<VersionChangedComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<VersionChangedComponent, "monkeyecx-version-changed", never, { "config": "config"; "modalRef": "modalRef"; }, {}, never, never>;
9
- }
@@ -1,10 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./version-changed.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "monkey-style-guide";
5
- import * as i4 from "@ngx-translate/core";
6
- export declare class VersionChangedModule {
7
- static ɵfac: i0.ɵɵFactoryDeclaration<VersionChangedModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<VersionChangedModule, [typeof i1.VersionChangedComponent], [typeof i2.CommonModule, typeof i3.MonkeyButtonModule, typeof i3.MonkeyIconModule, typeof i3.MonkeyInputModule, typeof i3.MonkeyModalModule, typeof i4.TranslateModule], [typeof i1.VersionChangedComponent]>;
9
- static ɵinj: i0.ɵɵInjectorDeclaration<VersionChangedModule>;
10
- }
@@ -1 +0,0 @@
1
- export declare function MonkeyEcxCoreCharts(render?: boolean): (target: Object, propertyName: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor;
@@ -1,7 +0,0 @@
1
- import { MonkeyEcxServiceCredentials } from '../interfaces';
2
- export declare function MonkeyEcxCoreServiceConstructor(): (target: any) => any;
3
- export declare function MonkeyEcxCoreLog(tp: string): (target: Object, propertyName: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor;
4
- export declare function MonkeyEcxCoreClearDecorators(): (target: Object, propertyName: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor;
5
- export declare function MonkeyEcxCoreService(params: MonkeyEcxServiceCredentials): (target: Object, propertyName: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor;
6
- export declare function MonkeyEcxCoreServicePaged(params: MonkeyEcxServiceCredentials): (target: Object, propertyName: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor;
7
- export declare function MonkeyEcxCoreServiceQueue(name: string, description?: string, params?: MonkeyEcxServiceCredentials): (target: Object, propertyName: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor;
@@ -1,2 +0,0 @@
1
- import { MonkeyEcxServiceCredentials } from '../interfaces';
2
- export declare function MonkeyEcxServiceDownload(name: string, description?: string, params?: MonkeyEcxServiceCredentials): (target: Object, propertyName: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor;
@@ -1,2 +0,0 @@
1
- import { MonkeyEcxServiceCredentials } from '../interfaces';
2
- export declare function MonkeyEcxServiceUpload(name: string, description?: string, params?: MonkeyEcxServiceCredentials): (target: Object, propertyName: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor;
@@ -1,19 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./monkeyecx-drag-drop";
3
- import * as i2 from "./monkeyecx-format-currency";
4
- import * as i3 from "./monkeyecx-feature-directive";
5
- import * as i4 from "./monkeyecx-feature-by-program-directive";
6
- import * as i5 from "./monkeyecx-format-upper";
7
- import * as i6 from "./monkeyecx-only-alpha-numeric-directive";
8
- import * as i7 from "./monkeyecx-only-number-directive";
9
- import * as i8 from "./monkeyecx-security-directive";
10
- import * as i9 from "./monkeyecx-tooltip-directive";
11
- import * as i10 from "./monkeyecx-popover.directive";
12
- import * as i11 from "./monkeyecx-popover-options.directive";
13
- import * as i12 from "@angular/common";
14
- import * as i13 from "@angular/cdk/overlay";
15
- export declare class MonkeyEcxDirectivesModule {
16
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxDirectivesModule, never>;
17
- static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyEcxDirectivesModule, [typeof i1.MonkeyEcxDragDropDirective, typeof i2.MonkeyEcxFormatCurrency, typeof i3.MonkeyEcxFeatureDirective, typeof i4.MonkeyEcxFeatureByProgramDirective, typeof i5.MonkeyEcxFormatUpper, typeof i6.MonkeyEcxOnlyAlphaNumericDirective, typeof i7.MonkeyEcxOnlyNumbersDirective, typeof i8.MonkeyEcxSecurityDirective, typeof i9.MonkeyEcxTooltipDirective, typeof i10.MonkeyEcxPopoverDirective, typeof i11.MonkeyEcxPopoverOptionsDirective], [typeof i12.CommonModule, typeof i13.OverlayModule], [typeof i1.MonkeyEcxDragDropDirective, typeof i2.MonkeyEcxFormatCurrency, typeof i3.MonkeyEcxFeatureDirective, typeof i4.MonkeyEcxFeatureByProgramDirective, typeof i5.MonkeyEcxFormatUpper, typeof i6.MonkeyEcxOnlyAlphaNumericDirective, typeof i7.MonkeyEcxOnlyNumbersDirective, typeof i8.MonkeyEcxSecurityDirective, typeof i9.MonkeyEcxTooltipDirective, typeof i10.MonkeyEcxPopoverDirective, typeof i11.MonkeyEcxPopoverOptionsDirective]>;
18
- static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyEcxDirectivesModule>;
19
- }
@@ -1,12 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class MonkeyEcxDragDropDirective {
4
- onFileDropped: EventEmitter<any>;
5
- private background;
6
- private opacity;
7
- onDragOver(evt: any): void;
8
- onDragLeave(evt: any): void;
9
- ondrop(evt: any): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxDragDropDirective, never>;
11
- static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyEcxDragDropDirective, "[monkeyecxDragDrop]", never, {}, { "onFileDropped": "onFileDropped"; }, never>;
12
- }
@@ -1,15 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
2
- import { MonkeyEcxConfigService } from '../services';
3
- import * as i0 from "@angular/core";
4
- export declare class MonkeyEcxFeatureByProgramDirective implements OnInit {
5
- private cdr;
6
- private elementRef;
7
- private monkeyConfigService;
8
- feature: string;
9
- private config?;
10
- constructor(cdr: ChangeDetectorRef, elementRef: ElementRef, monkeyConfigService: MonkeyEcxConfigService);
11
- private handleDisplay;
12
- ngOnInit(): void;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFeatureByProgramDirective, never>;
14
- static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyEcxFeatureByProgramDirective, "[monkeyecxFeatureByProgram]", never, { "feature": "feature"; }, {}, never>;
15
- }
@@ -1,17 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core';
2
- import { MonkeyEcxFeatureToggleService } from '../services/config/monkeyecx-feature-toggle.service';
3
- import * as i0 from "@angular/core";
4
- export declare class MonkeyEcxFeatureDirective implements OnDestroy, OnInit {
5
- private cdr;
6
- private elementRef;
7
- private monkeyecxFeatureToggleService;
8
- feature?: string;
9
- private unsubscribeAll;
10
- constructor(cdr: ChangeDetectorRef, elementRef: ElementRef, monkeyecxFeatureToggleService: MonkeyEcxFeatureToggleService);
11
- private getFeature;
12
- private handleDisplay;
13
- ngOnDestroy(): void;
14
- ngOnInit(): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFeatureDirective, never>;
16
- static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyEcxFeatureDirective, "[monkeyecxFeature]", never, { "feature": "featureName"; }, {}, never>;
17
- }
@@ -1,16 +0,0 @@
1
- import { ElementRef, OnInit, Injector } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class MonkeyEcxFormatCurrency implements OnInit {
4
- private elementRef;
5
- private injector;
6
- private el;
7
- private currency;
8
- private currencyCode;
9
- private currentLocale;
10
- constructor(elementRef: ElementRef, injector: Injector);
11
- private handle;
12
- ngOnInit(): void;
13
- onInput(value: any): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatCurrency, never>;
15
- static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyEcxFormatCurrency, "[monkeyecxFormatCurrency]", never, {}, {}, never>;
16
- }
@@ -1,18 +0,0 @@
1
- import { ElementRef, Renderer2 } from '@angular/core';
2
- import { ControlValueAccessor } from '@angular/forms';
3
- import * as i0 from "@angular/core";
4
- export declare class MonkeyEcxFormatUpper implements ControlValueAccessor {
5
- private _el;
6
- private _renderer;
7
- _onChange?: (_: any) => void;
8
- _touched?: () => void;
9
- constructor(_el: ElementRef, _renderer: Renderer2);
10
- onKeyDown(evt: KeyboardEvent): void;
11
- onBlur(): void;
12
- writeValue(value: any): void;
13
- registerOnChange(fn: (_: any) => void): void;
14
- registerOnTouched(fn: () => void): void;
15
- setDisabledState(isDisabled: boolean): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatUpper, [{ self: true; }, null]>;
17
- static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyEcxFormatUpper, "[monkeyecxFormatUpper]", never, {}, {}, never>;
18
- }
@@ -1,9 +0,0 @@
1
- import { ElementRef } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class MonkeyEcxOnlyAlphaNumericDirective {
4
- private elementRef;
5
- constructor(elementRef: ElementRef);
6
- onInputChange(event: Event): void;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxOnlyAlphaNumericDirective, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyEcxOnlyAlphaNumericDirective, "[monkeyecxOnlyAlphaNumeric]", never, {}, {}, never>;
9
- }
@@ -1,9 +0,0 @@
1
- import { ElementRef } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class MonkeyEcxOnlyNumbersDirective {
4
- private elementRef;
5
- constructor(elementRef: ElementRef);
6
- onInputChange(event: Event): void;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxOnlyNumbersDirective, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyEcxOnlyNumbersDirective, "[monkeyecxOnlyNumbers]", never, {}, {}, never>;
9
- }
@@ -1,19 +0,0 @@
1
- import { InjectionToken } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare const POPOVER_OPTIONS: InjectionToken<unknown>;
4
- export declare type PopoverDir = 'rtl' | 'ltr' | 'trtl' | 'tltr' | 'ct' | 'cc' | 'cr' | 'rt' | 'rb' | 'lt' | 'lb';
5
- export interface MonkeyEcxPopoverOptions {
6
- dir?: PopoverDir;
7
- minwidth?: boolean;
8
- backdrop?: boolean;
9
- contextmenu?: boolean;
10
- }
11
- export declare class MonkeyEcxPopoverOptionsDirective implements MonkeyEcxPopoverOptions {
12
- set options(options: MonkeyEcxPopoverOptions);
13
- minwidth?: boolean;
14
- dir?: PopoverDir;
15
- backdrop?: boolean;
16
- contextmenu?: boolean;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxPopoverOptionsDirective, never>;
18
- static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyEcxPopoverOptionsDirective, "[monkeyecxPopoverOptions]", never, { "options": "monkeyecxPopoverOptions"; }, {}, never>;
19
- }
@@ -1,43 +0,0 @@
1
- import { ConnectedPosition, FlexibleConnectedPositionStrategyOrigin, Overlay, OverlayPositionBuilder } from '@angular/cdk/overlay';
2
- import { ChangeDetectorRef, ElementRef, NgZone, OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
3
- import { Router } from '@angular/router';
4
- import type { PopoverDir, MonkeyEcxPopoverOptions } from './monkeyecx-popover-options.directive';
5
- import * as i0 from "@angular/core";
6
- export declare class MonkeyEcxPopoverDirective implements OnDestroy {
7
- private tpl;
8
- private vcr;
9
- private el;
10
- private zone;
11
- private _viewContainerRef;
12
- private _cd;
13
- private overlay;
14
- private overlayPositionBuilder;
15
- private router;
16
- private options;
17
- private _popover;
18
- get popover(): boolean;
19
- set popover(show: boolean);
20
- closed: (e?: MouseEvent) => void;
21
- private _target;
22
- get target(): HTMLElement;
23
- set target(target: HTMLElement);
24
- minwidth: boolean;
25
- backdrop: boolean;
26
- watch: boolean;
27
- dir: PopoverDir;
28
- contextmenu: boolean;
29
- height: number | string;
30
- private overlayRef;
31
- private positionStrategy;
32
- private templatePortal;
33
- private subs;
34
- private eventsSubs;
35
- private resizeObserver;
36
- constructor(tpl: TemplateRef<any>, vcr: ViewContainerRef, el: ElementRef, zone: NgZone, _viewContainerRef: ViewContainerRef, _cd: ChangeDetectorRef, overlay: Overlay, overlayPositionBuilder: OverlayPositionBuilder, router: Router, options: MonkeyEcxPopoverOptions);
37
- private onHandleClose;
38
- getDirPositions(dir?: PopoverDir): ConnectedPosition[];
39
- createPopover(origin?: FlexibleConnectedPositionStrategyOrigin, options?: MonkeyEcxPopoverOptions): void;
40
- ngOnDestroy(): void;
41
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxPopoverDirective, [null, null, null, null, null, null, null, null, null, { optional: true; }]>;
42
- static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyEcxPopoverDirective, "[monkeyecxPopover]", never, { "popover": "monkeyecxPopover"; "closed": "monkeyecxPopoverClosed"; "target": "monkeyecxPopoverTarget"; "minwidth": "monkeyecxPopoverMinwidth"; "backdrop": "monkeyecxPopoverBackdrop"; "watch": "monkeyecxPopoverWatch"; "dir": "monkeyecxPopoverDir"; "contextmenu": "monkeyecxPopoverContextmenu"; "height": "monkeyecxPopoverHeight"; }, {}, never>;
43
- }
@@ -1,17 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
2
- import { MonkeyEcxTokenStorageService } from '../services/storage';
3
- import * as i0 from "@angular/core";
4
- export declare class MonkeyEcxSecurityDirective implements OnInit {
5
- private elementRef;
6
- private tokenStorageService;
7
- private cdr;
8
- roles: string[];
9
- byExclusion: boolean;
10
- private tokenCredentials;
11
- constructor(elementRef: ElementRef, tokenStorageService: MonkeyEcxTokenStorageService, cdr: ChangeDetectorRef);
12
- private getRole;
13
- private handleAccess;
14
- ngOnInit(): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxSecurityDirective, never>;
16
- static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyEcxSecurityDirective, "[monkeyecxSecurity]", never, { "roles": "securityRoles"; "byExclusion": "securityByExclusion"; }, {}, never>;
17
- }
@@ -1,23 +0,0 @@
1
- import { ElementRef, Renderer2 } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class MonkeyEcxTooltipDirective {
4
- private el;
5
- private renderer;
6
- tooltipDelay?: number;
7
- tooltipPosition?: string;
8
- tooltipText?: string;
9
- tooltipTitle?: string;
10
- enableToShow: boolean;
11
- offset: number;
12
- tooltip: HTMLElement | null;
13
- constructor(el: ElementRef, renderer: Renderer2);
14
- onMouseEnter(): void;
15
- onMouseLeave(): void;
16
- clickout(): void;
17
- show(): void;
18
- hide(): void;
19
- create(): void;
20
- setPosition(): void;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxTooltipDirective, never>;
22
- static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyEcxTooltipDirective, "[monkeyecxTooltip]", never, { "tooltipDelay": "tooltipDelay"; "tooltipPosition": "tooltipPosition"; "tooltipText": "tooltipText"; "tooltipTitle": "tooltipTitle"; "enableToShow": "enableToShow"; }, {}, never>;
23
- }
@@ -1,17 +0,0 @@
1
- import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { MonkeyEcxAuthenticationService } from '../services/auth';
4
- import { MonkeyEcxErrorHandlingService } from '../services/error';
5
- import * as i0 from "@angular/core";
6
- export interface Headers {
7
- name: string;
8
- value: string;
9
- }
10
- export declare class MonkeyEcxHttpConfigErrorInterceptor implements HttpInterceptor {
11
- private monkeyecxAuthenticationService;
12
- private monkeyecxErrorHandlingService;
13
- constructor(monkeyecxAuthenticationService: MonkeyEcxAuthenticationService, monkeyecxErrorHandlingService: MonkeyEcxErrorHandlingService);
14
- intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxHttpConfigErrorInterceptor, never>;
16
- static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxHttpConfigErrorInterceptor>;
17
- }
@@ -1,16 +0,0 @@
1
- import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { MonkeyEcxErrorHandlingService } from '../services/error';
4
- import { MonkeyEcxAuthenticationService } from '../services/auth';
5
- import { MonkeyEcxConfigService } from '../services';
6
- import * as i0 from "@angular/core";
7
- export declare class MonkeyEcxHttpConfigHeaderInterceptor implements HttpInterceptor {
8
- private authService;
9
- private errorHandlingService;
10
- private config;
11
- constructor(authService: MonkeyEcxAuthenticationService, errorHandlingService: MonkeyEcxErrorHandlingService, config: MonkeyEcxConfigService);
12
- private handle;
13
- intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxHttpConfigHeaderInterceptor, never>;
15
- static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxHttpConfigHeaderInterceptor>;
16
- }
@@ -1,9 +0,0 @@
1
- import { ModuleWithProviders } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- export declare class MonkeyEcxHttpConfigInterceptorModule {
5
- static forRoot(): ModuleWithProviders<MonkeyEcxHttpConfigInterceptorModule>;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxHttpConfigInterceptorModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyEcxHttpConfigInterceptorModule, never, [typeof i1.CommonModule], never>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyEcxHttpConfigInterceptorModule>;
9
- }
@@ -1,12 +0,0 @@
1
- import { Injector } from '@angular/core';
2
- import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
3
- import { Observable } from 'rxjs';
4
- import * as i0 from "@angular/core";
5
- export declare class MonkeyEcxHttpConfigLoadingInProgressInterceptor implements HttpInterceptor {
6
- private injector;
7
- constructor(injector: Injector);
8
- intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
9
- private isLoadingInProgressProperty;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxHttpConfigLoadingInProgressInterceptor, never>;
11
- static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxHttpConfigLoadingInProgressInterceptor>;
12
- }
@@ -1,14 +0,0 @@
1
- import { Injector } from '@angular/core';
2
- import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
3
- import { Observable } from 'rxjs';
4
- import { MonkeyEcxRequestQueueHandlingService } from '../services/request-queue';
5
- import * as i0 from "@angular/core";
6
- export declare class MonkeyEcxHttpConfigQueueInterceptor implements HttpInterceptor {
7
- private injector;
8
- private monkeyecxRequestQueueHandlingService;
9
- constructor(injector: Injector, monkeyecxRequestQueueHandlingService: MonkeyEcxRequestQueueHandlingService);
10
- intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
11
- private isQueueProperty;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxHttpConfigQueueInterceptor, never>;
13
- static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxHttpConfigQueueInterceptor>;
14
- }
@@ -1,15 +0,0 @@
1
- export interface MonkeyEcxAuthCredentials {
2
- client_id?: string;
3
- client_secret?: string;
4
- grant_type?: string;
5
- scope?: string;
6
- username?: string;
7
- password?: string;
8
- access_token?: string;
9
- token_type?: string;
10
- refresh_token?: string;
11
- expires_in?: number;
12
- program?: string;
13
- userType?: string;
14
- totp_code?: string;
15
- }
@@ -1,10 +0,0 @@
1
- export interface MonkeyEcxCompany {
2
- id: string;
3
- companyId: string;
4
- governmentId: string;
5
- program: string;
6
- programAdmin: boolean;
7
- role: string;
8
- type: string;
9
- selected?: boolean;
10
- }
@@ -1,14 +0,0 @@
1
- export interface MonkeyEcxConfigBoostrap {
2
- version: string;
3
- showNewVersion: boolean;
4
- maintenance: {
5
- closed: boolean;
6
- startDate: string;
7
- endDate: string;
8
- };
9
- languagesAvailable: {
10
- lang?: string;
11
- currency?: string;
12
- 'google-chart-language'?: string;
13
- };
14
- }
@@ -1,125 +0,0 @@
1
- export interface MonkeyEcxConfigProgram {
2
- token: string;
3
- name: string;
4
- type: string;
5
- register: {
6
- seller: {
7
- types: string[];
8
- documentTypes: string[];
9
- legalNatures: string[];
10
- };
11
- sponsor: {
12
- types: string[];
13
- };
14
- buyer: {
15
- calculationTypes: string[];
16
- legalNatures: string[];
17
- types: string[];
18
- };
19
- };
20
- settings: {
21
- editSponsorTax: boolean;
22
- disableBuyerInformation: boolean;
23
- [key: string]: boolean;
24
- };
25
- screens: {
26
- login: {
27
- passwordStrength: {
28
- WHITE_SPACE?: string;
29
- DIGIT_CHARACTER?: string;
30
- UPPERCASE_CHARACTER?: string;
31
- LOWERCASE_CHARACTER?: string;
32
- ALPHA_SEQUENCE?: string;
33
- NUMBER_SEQUENCE?: string;
34
- QWERTY_SEQUENCE?: string;
35
- REPEAT_CHARS?: string;
36
- };
37
- };
38
- };
39
- }
40
- export interface MonkeyEcxConfigMarket {
41
- daysToSearch: number;
42
- operation: {
43
- currentDaysToSearch: number;
44
- maximumDaysToSearch: number;
45
- };
46
- hourToClose?: number;
47
- }
48
- export interface MonkeyEcxConfigTheme {
49
- logos: {
50
- favicon: string;
51
- toolbar: string;
52
- login: string;
53
- footer: string;
54
- };
55
- }
56
- export interface MonkeyEcxConfigSupportPhone {
57
- attendant?: string;
58
- endHour: number;
59
- icon: string;
60
- numbers?: string[];
61
- startHour: number;
62
- }
63
- export interface MonkeyEcxConfigSupportEmail {
64
- attendant?: string;
65
- icon: string;
66
- recipients?: string[];
67
- }
68
- export interface MonkeyEcxConfigSupportInformation {
69
- icon: string;
70
- message?: string;
71
- action?: string;
72
- }
73
- export interface MonkeyEcxConfigSupport {
74
- phones?: MonkeyEcxConfigSupportPhone[];
75
- emails?: MonkeyEcxConfigSupportEmail[];
76
- information?: MonkeyEcxConfigSupportInformation;
77
- }
78
- export interface MonkeyEcxConfigi18n {
79
- lang?: string;
80
- currency?: string;
81
- 'google-chart-language'?: string;
82
- paths: string[];
83
- }
84
- export interface MonkeyEcxConfigLogs {
85
- enabled: boolean;
86
- }
87
- export interface MonkeyEcxConfigMessages {
88
- checkoutSuccess: string[];
89
- }
90
- interface MonkeyEcxConfigExternalSettingsEnv {
91
- url: string;
92
- urlName: string;
93
- }
94
- export interface MonkeyEcxConfigExternalSettings {
95
- dev: MonkeyEcxConfigExternalSettingsEnv;
96
- hmg: MonkeyEcxConfigExternalSettingsEnv;
97
- prod: MonkeyEcxConfigExternalSettingsEnv;
98
- }
99
- export interface MonkeyEcxConfigExternali18n {
100
- [s: string]: any;
101
- }
102
- export interface MonkeyEcxConfigGA {
103
- enabled: boolean;
104
- key: string;
105
- }
106
- export interface MonkeyEcxConfigAlert {
107
- img: string;
108
- title: string;
109
- message: string;
110
- endDate: string;
111
- }
112
- export interface MonkeyEcxConfig {
113
- program?: MonkeyEcxConfigProgram;
114
- market?: MonkeyEcxConfigMarket;
115
- theme?: MonkeyEcxConfigTheme;
116
- support?: MonkeyEcxConfigSupport;
117
- i18n?: MonkeyEcxConfigi18n;
118
- logs?: MonkeyEcxConfigLogs;
119
- externali18n?: MonkeyEcxConfigExternali18n;
120
- messages?: MonkeyEcxConfigMessages;
121
- externalSettings?: MonkeyEcxConfigExternalSettings;
122
- ga?: MonkeyEcxConfigGA;
123
- alert?: MonkeyEcxConfigAlert;
124
- }
125
- export {};
@@ -1,4 +0,0 @@
1
- export interface MonkeyEcxCountrySecurity {
2
- country: string;
3
- envCountry: string;
4
- }
@@ -1,5 +0,0 @@
1
- export interface MonkeyEcxErrorResponse {
2
- type: string;
3
- description: string;
4
- notifications: string[];
5
- }