@anglr/common 8.0.0-beta.20211109062458 → 8.0.0-beta.20211217111139

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 (1658) hide show
  1. package/changelog.md +39 -8
  2. package/common.d.ts +1369 -4
  3. package/common.internal.d.ts +1411 -0
  4. package/date-fns/common-date-fns.d.ts +8 -0
  5. package/date-fns/common-date-fns.internal.d.ts +8 -0
  6. package/date-fns/package.json +7 -6
  7. package/date-fns/src/index.d.ts +2 -0
  8. package/date-fns/src/index.d.ts.map +1 -0
  9. package/date-fns/src/misc/utils.d.ts +6 -6
  10. package/date-fns/temp/common-date-fns.api.md +12 -0
  11. package/es2015/date-fns/src/index.js +2 -0
  12. package/es2015/date-fns/src/index.js.map +1 -0
  13. package/es2015/date-fns/src/misc/utils.js +24 -0
  14. package/es2015/date-fns/src/misc/utils.js.map +1 -0
  15. package/es2015/forms/src/directives/groupHasError/groupHasError.directive.js +72 -0
  16. package/es2015/forms/src/directives/groupHasError/groupHasError.directive.js.map +1 -0
  17. package/es2015/forms/src/directives/hasError/hasError.directive.js +164 -0
  18. package/es2015/forms/src/directives/hasError/hasError.directive.js.map +1 -0
  19. package/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +64 -0
  20. package/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js.map +1 -0
  21. package/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js +64 -0
  22. package/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js.map +1 -0
  23. package/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +74 -0
  24. package/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js.map +1 -0
  25. package/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js +36 -0
  26. package/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js.map +1 -0
  27. package/es2015/forms/src/directives/requiredClass/requiredClass.directive.js +56 -0
  28. package/es2015/forms/src/directives/requiredClass/requiredClass.directive.js.map +1 -0
  29. package/es2015/forms/src/index.js +20 -0
  30. package/es2015/forms/src/index.js.map +1 -0
  31. package/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +11 -0
  32. package/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js.map +1 -0
  33. package/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js +11 -0
  34. package/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js.map +1 -0
  35. package/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js +10 -0
  36. package/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js.map +1 -0
  37. package/es2015/forms/src/misc/formModel/decorators/email.decorator.js +11 -0
  38. package/es2015/forms/src/misc/formModel/decorators/email.decorator.js.map +1 -0
  39. package/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +11 -0
  40. package/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js.map +1 -0
  41. package/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +22 -0
  42. package/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js.map +1 -0
  43. package/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +11 -0
  44. package/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js.map +1 -0
  45. package/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +22 -0
  46. package/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js.map +1 -0
  47. package/es2015/forms/src/misc/formModel/decorators/index.js +20 -0
  48. package/es2015/forms/src/misc/formModel/decorators/index.js.map +1 -0
  49. package/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +42 -0
  50. package/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js.map +1 -0
  51. package/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js +12 -0
  52. package/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js.map +1 -0
  53. package/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js +12 -0
  54. package/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js.map +1 -0
  55. package/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js +12 -0
  56. package/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js.map +1 -0
  57. package/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js +12 -0
  58. package/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js.map +1 -0
  59. package/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +38 -0
  60. package/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js.map +1 -0
  61. package/es2015/forms/src/misc/formModel/decorators/number.decorator.js +11 -0
  62. package/es2015/forms/src/misc/formModel/decorators/number.decorator.js.map +1 -0
  63. package/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js +11 -0
  64. package/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js.map +1 -0
  65. package/es2015/forms/src/misc/formModel/decorators/required.decorator.js +11 -0
  66. package/es2015/forms/src/misc/formModel/decorators/required.decorator.js.map +1 -0
  67. package/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js +24 -0
  68. package/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js.map +1 -0
  69. package/es2015/forms/src/misc/formModel/decorators/validator.decorator.js +11 -0
  70. package/es2015/forms/src/misc/formModel/decorators/validator.decorator.js.map +1 -0
  71. package/es2015/forms/src/misc/formModel/index.js +8 -0
  72. package/es2015/forms/src/misc/formModel/index.js.map +1 -0
  73. package/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +2 -0
  74. package/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js.map +1 -0
  75. package/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +2 -0
  76. package/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js.map +1 -0
  77. package/es2015/forms/src/misc/formModel/interfaces/validator.interface.js +2 -0
  78. package/es2015/forms/src/misc/formModel/interfaces/validator.interface.js.map +1 -0
  79. package/es2015/forms/src/misc/formModel/misc/currentValue.js +29 -0
  80. package/es2015/forms/src/misc/formModel/misc/currentValue.js.map +1 -0
  81. package/es2015/forms/src/misc/formModel/misc/defaults.js +13 -0
  82. package/es2015/forms/src/misc/formModel/misc/defaults.js.map +1 -0
  83. package/es2015/forms/src/misc/formModel/misc/utils.js +89 -0
  84. package/es2015/forms/src/misc/formModel/misc/utils.js.map +1 -0
  85. package/es2015/forms/src/misc/formModel/misc/validatorFactories.js +41 -0
  86. package/es2015/forms/src/misc/formModel/misc/validatorFactories.js.map +1 -0
  87. package/es2015/forms/src/misc/types.js +6 -0
  88. package/es2015/forms/src/misc/types.js.map +1 -0
  89. package/es2015/forms/src/misc/utils.js +103 -0
  90. package/es2015/forms/src/misc/utils.js.map +1 -0
  91. package/es2015/forms/src/misc/validators.js +49 -0
  92. package/es2015/forms/src/misc/validators.js.map +1 -0
  93. package/es2015/forms/src/modules/hasError.module.js +28 -0
  94. package/es2015/forms/src/modules/hasError.module.js.map +1 -0
  95. package/es2015/forms/src/modules/numberInput.module.js +38 -0
  96. package/es2015/forms/src/modules/numberInput.module.js.map +1 -0
  97. package/es2015/forms/src/modules/requiredClass.module.js +19 -0
  98. package/es2015/forms/src/modules/requiredClass.module.js.map +1 -0
  99. package/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +2 -0
  100. package/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js.map +1 -0
  101. package/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +72 -0
  102. package/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js.map +1 -0
  103. package/es2015/forms/src/services/submitted/submitted.service.js +49 -0
  104. package/es2015/forms/src/services/submitted/submitted.service.js.map +1 -0
  105. package/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +2 -0
  106. package/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js.map +1 -0
  107. package/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +229 -0
  108. package/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js.map +1 -0
  109. package/es2015/hmr/src/index.js +35 -0
  110. package/es2015/hmr/src/index.js.map +1 -0
  111. package/es2015/hotkeys/src/index.js +2 -0
  112. package/es2015/hotkeys/src/index.js.map +1 -0
  113. package/es2015/hotkeys/src/services/appHotkeys.service.js +132 -0
  114. package/es2015/hotkeys/src/services/appHotkeys.service.js.map +1 -0
  115. package/es2015/material/src/components/confirmationDialog/confirmationDialog.component.js +50 -0
  116. package/es2015/material/src/components/confirmationDialog/confirmationDialog.component.js.map +1 -0
  117. package/es2015/material/src/components/titledDialog/titledDialog.component.js +40 -0
  118. package/es2015/material/src/components/titledDialog/titledDialog.component.js.map +1 -0
  119. package/es2015/material/src/directives/confirmationDialog/confirmationDialog.directive.js +107 -0
  120. package/es2015/material/src/directives/confirmationDialog/confirmationDialog.directive.js.map +1 -0
  121. package/es2015/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +47 -0
  122. package/es2015/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js.map +1 -0
  123. package/es2015/material/src/index.js +10 -0
  124. package/es2015/material/src/index.js.map +1 -0
  125. package/es2015/material/src/misc/interfaces/confirmationDialog.interface.js +2 -0
  126. package/es2015/material/src/misc/interfaces/confirmationDialog.interface.js.map +1 -0
  127. package/es2015/material/src/misc/interfaces/titledDialog.interface.js +6 -0
  128. package/es2015/material/src/misc/interfaces/titledDialog.interface.js.map +1 -0
  129. package/es2015/material/src/misc/tokens.js +6 -0
  130. package/es2015/material/src/misc/tokens.js.map +1 -0
  131. package/es2015/material/src/modules/confirmationDialog.module.js +40 -0
  132. package/es2015/material/src/modules/confirmationDialog.module.js.map +1 -0
  133. package/es2015/material/src/modules/debugDataCopyClick.module.js +27 -0
  134. package/es2015/material/src/modules/debugDataCopyClick.module.js.map +1 -0
  135. package/es2015/material/src/modules/titledDialog.module.js +36 -0
  136. package/es2015/material/src/modules/titledDialog.module.js.map +1 -0
  137. package/es2015/material/src/services/titledDialog/titledDialog.service.js +39 -0
  138. package/es2015/material/src/services/titledDialog/titledDialog.service.js.map +1 -0
  139. package/es2015/moment/src/index.js +3 -0
  140. package/es2015/moment/src/index.js.map +1 -0
  141. package/es2015/moment/src/misc/utils.js +27 -0
  142. package/es2015/moment/src/misc/utils.js.map +1 -0
  143. package/es2015/moment/src/modules/moment.module.js +28 -0
  144. package/es2015/moment/src/modules/moment.module.js.map +1 -0
  145. package/es2015/moment/src/pipes/momentConvert/momentConvert.pipe.js +32 -0
  146. package/es2015/moment/src/pipes/momentConvert/momentConvert.pipe.js.map +1 -0
  147. package/es2015/moment/src/pipes/momentFormat/momentFormat.pipe.js +36 -0
  148. package/es2015/moment/src/pipes/momentFormat/momentFormat.pipe.js.map +1 -0
  149. package/es2015/numeral/src/index.js +3 -0
  150. package/es2015/numeral/src/index.js.map +1 -0
  151. package/es2015/numeral/src/modules/numeral.module.js +19 -0
  152. package/es2015/numeral/src/modules/numeral.module.js.map +1 -0
  153. package/es2015/numeral/src/pipes/numeral.pipe.js +50 -0
  154. package/es2015/numeral/src/pipes/numeral.pipe.js.map +1 -0
  155. package/es2015/positions/src/index.js +9 -0
  156. package/es2015/positions/src/index.js.map +1 -0
  157. package/es2015/positions/src/misc/utils.js +109 -0
  158. package/es2015/positions/src/misc/utils.js.map +1 -0
  159. package/es2015/positions/src/modules/positions/directives/positionTo/positionTo.directive.js +58 -0
  160. package/es2015/positions/src/modules/positions/directives/positionTo/positionTo.directive.js.map +1 -0
  161. package/es2015/positions/src/modules/positions/modules/positions.module.js +24 -0
  162. package/es2015/positions/src/modules/positions/modules/positions.module.js.map +1 -0
  163. package/es2015/positions/src/modules/tooltip/components/tooltip/tooltip.component.js +98 -0
  164. package/es2015/positions/src/modules/tooltip/components/tooltip/tooltip.component.js.map +1 -0
  165. package/es2015/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js +230 -0
  166. package/es2015/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js.map +1 -0
  167. package/es2015/positions/src/modules/tooltip/misc/tokens.js +6 -0
  168. package/es2015/positions/src/modules/tooltip/misc/tokens.js.map +1 -0
  169. package/es2015/positions/src/modules/tooltip/misc/tooltip.interface.js +2 -0
  170. package/es2015/positions/src/modules/tooltip/misc/tooltip.interface.js.map +1 -0
  171. package/es2015/positions/src/modules/tooltip/modules/tooltip.module.js +32 -0
  172. package/es2015/positions/src/modules/tooltip/modules/tooltip.module.js.map +1 -0
  173. package/es2015/positions/src/types/positions.typings.js +2 -0
  174. package/es2015/positions/src/types/positions.typings.js.map +1 -0
  175. package/es2015/router/src/decorators/componentRedirectRoute.decorator.js +43 -0
  176. package/es2015/router/src/decorators/componentRedirectRoute.decorator.js.map +1 -0
  177. package/es2015/router/src/decorators/componentRoute.decorator.js +23 -0
  178. package/es2015/router/src/decorators/componentRoute.decorator.js.map +1 -0
  179. package/es2015/router/src/decorators/moduleRoutes.decorator.js +42 -0
  180. package/es2015/router/src/decorators/moduleRoutes.decorator.js.map +1 -0
  181. package/es2015/router/src/index.js +7 -0
  182. package/es2015/router/src/index.js.map +1 -0
  183. package/es2015/router/src/misc/utils.js +26 -0
  184. package/es2015/router/src/misc/utils.js.map +1 -0
  185. package/es2015/router/src/services/routing/dataRouter.js +89 -0
  186. package/es2015/router/src/services/routing/dataRouter.js.map +1 -0
  187. package/es2015/router/src/services/routing/dataRouterData.js +20 -0
  188. package/es2015/router/src/services/routing/dataRouterData.js.map +1 -0
  189. package/es2015/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js +62 -0
  190. package/es2015/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js.map +1 -0
  191. package/es2015/src/index.js +34 -0
  192. package/es2015/src/index.js.map +1 -0
  193. package/es2015/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js +67 -0
  194. package/es2015/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js.map +1 -0
  195. package/es2015/src/modules/clickOutside/modules/clickOutside.module.js +24 -0
  196. package/es2015/src/modules/clickOutside/modules/clickOutside.module.js.map +1 -0
  197. package/es2015/src/modules/common.module.js +49 -0
  198. package/es2015/src/modules/common.module.js.map +1 -0
  199. package/es2015/src/modules/debugData/components/debugData/debugData.component.js +68 -0
  200. package/es2015/src/modules/debugData/components/debugData/debugData.component.js.map +1 -0
  201. package/es2015/src/modules/debugData/modules/debugData.module.js +29 -0
  202. package/es2015/src/modules/debugData/modules/debugData.module.js.map +1 -0
  203. package/es2015/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +51 -0
  204. package/es2015/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js.map +1 -0
  205. package/es2015/src/modules/multiButton/components/multiButton/multiButton.component.js +119 -0
  206. package/es2015/src/modules/multiButton/components/multiButton/multiButton.component.js.map +1 -0
  207. package/es2015/src/modules/multiButton/components/multiButton/multiButton.interface.js +2 -0
  208. package/es2015/src/modules/multiButton/components/multiButton/multiButton.interface.js.map +1 -0
  209. package/es2015/src/modules/multiButton/misc/tokens.js +6 -0
  210. package/es2015/src/modules/multiButton/misc/tokens.js.map +1 -0
  211. package/es2015/src/modules/multiButton/modules/multiButton.module.js +29 -0
  212. package/es2015/src/modules/multiButton/modules/multiButton.module.js.map +1 -0
  213. package/es2015/src/modules/progressIndicator/components/index.js +2 -0
  214. package/es2015/src/modules/progressIndicator/components/index.js.map +1 -0
  215. package/es2015/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js +66 -0
  216. package/es2015/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js.map +1 -0
  217. package/es2015/src/modules/progressIndicator/directives/index.js +2 -0
  218. package/es2015/src/modules/progressIndicator/directives/index.js.map +1 -0
  219. package/es2015/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js +124 -0
  220. package/es2015/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js.map +1 -0
  221. package/es2015/src/modules/progressIndicator/index.js +6 -0
  222. package/es2015/src/modules/progressIndicator/index.js.map +1 -0
  223. package/es2015/src/modules/progressIndicator/interceptors/progressInterceptor.js +57 -0
  224. package/es2015/src/modules/progressIndicator/interceptors/progressInterceptor.js.map +1 -0
  225. package/es2015/src/modules/progressIndicator/misc/types.js +2 -0
  226. package/es2015/src/modules/progressIndicator/misc/types.js.map +1 -0
  227. package/es2015/src/modules/progressIndicator/modules/index.js +2 -0
  228. package/es2015/src/modules/progressIndicator/modules/index.js.map +1 -0
  229. package/es2015/src/modules/progressIndicator/modules/progressIndicator.module.js +38 -0
  230. package/es2015/src/modules/progressIndicator/modules/progressIndicator.module.js.map +1 -0
  231. package/es2015/src/modules/progressIndicator/services/progressIndicator.service.js +255 -0
  232. package/es2015/src/modules/progressIndicator/services/progressIndicator.service.js.map +1 -0
  233. package/es2015/src/modules/progressIndicator/services/progressIndicatorOptions.js +25 -0
  234. package/es2015/src/modules/progressIndicator/services/progressIndicatorOptions.js.map +1 -0
  235. package/es2015/src/pipes/index.js +5 -0
  236. package/es2015/src/pipes/index.js.map +1 -0
  237. package/es2015/src/pipes/isNaN/isNaN.pipe.js +24 -0
  238. package/es2015/src/pipes/isNaN/isNaN.pipe.js.map +1 -0
  239. package/es2015/src/pipes/isPresent/isPresent.pipe.js +25 -0
  240. package/es2015/src/pipes/isPresent/isPresent.pipe.js.map +1 -0
  241. package/es2015/src/pipes/localize/localize.pipe.js +54 -0
  242. package/es2015/src/pipes/localize/localize.pipe.js.map +1 -0
  243. package/es2015/src/pipes/urlEncode/urlEncode.pipe.js +26 -0
  244. package/es2015/src/pipes/urlEncode/urlEncode.pipe.js.map +1 -0
  245. package/es2015/src/services/cookies/cookies.service.js +106 -0
  246. package/es2015/src/services/cookies/cookies.service.js.map +1 -0
  247. package/es2015/src/services/globalization/globalization.service.js +6 -0
  248. package/es2015/src/services/globalization/globalization.service.js.map +1 -0
  249. package/es2015/src/services/ignoredInterceptors/ignoredInterceptors.service.js +60 -0
  250. package/es2015/src/services/ignoredInterceptors/ignoredInterceptors.service.js.map +1 -0
  251. package/es2015/src/services/logger/index.js +3 -0
  252. package/es2015/src/services/logger/index.js.map +1 -0
  253. package/es2015/src/services/logger/logger.interface.js +2 -0
  254. package/es2015/src/services/logger/logger.interface.js.map +1 -0
  255. package/es2015/src/services/logger/logger.service.js +18 -0
  256. package/es2015/src/services/logger/logger.service.js.map +1 -0
  257. package/es2015/src/services/notifications/defaultNotifications.service.js +228 -0
  258. package/es2015/src/services/notifications/defaultNotifications.service.js.map +1 -0
  259. package/es2015/src/services/notifications/index.js +4 -0
  260. package/es2015/src/services/notifications/index.js.map +1 -0
  261. package/es2015/src/services/notifications/notifications.interface.js +55 -0
  262. package/es2015/src/services/notifications/notifications.interface.js.map +1 -0
  263. package/es2015/src/services/notifications/notificationsOptions.js +18 -0
  264. package/es2015/src/services/notifications/notificationsOptions.js.map +1 -0
  265. package/es2015/src/services/permanentStorage/cookiePermanentStorage.service.js +43 -0
  266. package/es2015/src/services/permanentStorage/cookiePermanentStorage.service.js.map +1 -0
  267. package/es2015/src/services/permanentStorage/index.js +3 -0
  268. package/es2015/src/services/permanentStorage/index.js.map +1 -0
  269. package/es2015/src/services/permanentStorage/permanentStorage.interface.js +2 -0
  270. package/es2015/src/services/permanentStorage/permanentStorage.interface.js.map +1 -0
  271. package/es2015/src/services/positioning/index.js +2 -0
  272. package/es2015/src/services/positioning/index.js.map +1 -0
  273. package/es2015/src/services/positioning/positioning.interface.js +2 -0
  274. package/es2015/src/services/positioning/positioning.interface.js.map +1 -0
  275. package/es2015/src/services/statusCode/statusCode.service.js +29 -0
  276. package/es2015/src/services/statusCode/statusCode.service.js.map +1 -0
  277. package/es2015/src/services/stringLocalization/index.js +3 -0
  278. package/es2015/src/services/stringLocalization/index.js.map +1 -0
  279. package/es2015/src/services/stringLocalization/noStringLocalization.service.js +43 -0
  280. package/es2015/src/services/stringLocalization/noStringLocalization.service.js.map +1 -0
  281. package/es2015/src/services/stringLocalization/stringLocalization.interface.js +2 -0
  282. package/es2015/src/services/stringLocalization/stringLocalization.interface.js.map +1 -0
  283. package/es2015/src/services/temporaryStorage/index.js +3 -0
  284. package/es2015/src/services/temporaryStorage/index.js.map +1 -0
  285. package/es2015/src/services/temporaryStorage/memoryTemporaryStorage.service.js +43 -0
  286. package/es2015/src/services/temporaryStorage/memoryTemporaryStorage.service.js.map +1 -0
  287. package/es2015/src/services/temporaryStorage/temporaryStorage.interface.js +2 -0
  288. package/es2015/src/services/temporaryStorage/temporaryStorage.interface.js.map +1 -0
  289. package/es2015/src/types/additionalInfo.js +2 -0
  290. package/es2015/src/types/additionalInfo.js.map +1 -0
  291. package/es2015/src/types/tokens.js +45 -0
  292. package/es2015/src/types/tokens.js.map +1 -0
  293. package/es2015/src/utils/index.js +51 -0
  294. package/es2015/src/utils/index.js.map +1 -0
  295. package/es2015/store/src/index.js +2 -0
  296. package/es2015/store/src/index.js.map +1 -0
  297. package/es2015/store/src/services/index.js +3 -0
  298. package/es2015/store/src/services/index.js.map +1 -0
  299. package/es2015/store/src/services/permanentStorage/localPermanentStorage.service.js +49 -0
  300. package/es2015/store/src/services/permanentStorage/localPermanentStorage.service.js.map +1 -0
  301. package/es2015/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +37 -0
  302. package/es2015/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js.map +1 -0
  303. package/es2015/store/src/types/store.typings.js +2 -0
  304. package/es2015/store/src/types/store.typings.js.map +1 -0
  305. package/es2015/structured-log/src/components/console/console.component.animations.js +31 -0
  306. package/es2015/structured-log/src/components/console/console.component.animations.js.map +1 -0
  307. package/es2015/structured-log/src/components/console/console.component.js +95 -0
  308. package/es2015/structured-log/src/components/console/console.component.js.map +1 -0
  309. package/es2015/structured-log/src/index.js +12 -0
  310. package/es2015/structured-log/src/index.js.map +1 -0
  311. package/es2015/structured-log/src/misc/utils.js +39 -0
  312. package/es2015/structured-log/src/misc/utils.js.map +1 -0
  313. package/es2015/structured-log/src/modules/consoleLog.module.js +44 -0
  314. package/es2015/structured-log/src/modules/consoleLog.module.js.map +1 -0
  315. package/es2015/structured-log/src/services/console/consoleComponentSink.service.js +96 -0
  316. package/es2015/structured-log/src/services/console/consoleComponentSink.service.js.map +1 -0
  317. package/es2015/structured-log/src/services/console/consoleSinkConfig.service.js +44 -0
  318. package/es2015/structured-log/src/services/console/consoleSinkConfig.service.js.map +1 -0
  319. package/es2015/structured-log/src/services/logger.service.js +44 -0
  320. package/es2015/structured-log/src/services/logger.service.js.map +1 -0
  321. package/es2015/structured-log/src/services/rest/restSink.service.js +118 -0
  322. package/es2015/structured-log/src/services/rest/restSink.service.js.map +1 -0
  323. package/es2015/structured-log/src/services/rest/restSinkConfig.service.js +55 -0
  324. package/es2015/structured-log/src/services/rest/restSinkConfig.service.js.map +1 -0
  325. package/es2015/structured-log/src/types/logger.interface.js +2 -0
  326. package/es2015/structured-log/src/types/logger.interface.js.map +1 -0
  327. package/es2015/structured-log/src/types/structured-log.typings.js +2 -0
  328. package/es2015/structured-log/src/types/structured-log.typings.js.map +1 -0
  329. package/es2015/structured-log/src/types/tokens.js +56 -0
  330. package/es2015/structured-log/src/types/tokens.js.map +1 -0
  331. package/es2020/date-fns/src/index.js +2 -0
  332. package/es2020/date-fns/src/index.js.map +1 -0
  333. package/es2020/date-fns/src/misc/utils.js +24 -0
  334. package/es2020/date-fns/src/misc/utils.js.map +1 -0
  335. package/es2020/forms/src/directives/groupHasError/groupHasError.directive.js +72 -0
  336. package/es2020/forms/src/directives/groupHasError/groupHasError.directive.js.map +1 -0
  337. package/es2020/forms/src/directives/hasError/hasError.directive.js +161 -0
  338. package/es2020/forms/src/directives/hasError/hasError.directive.js.map +1 -0
  339. package/es2020/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +64 -0
  340. package/es2020/forms/src/directives/numberInput/maxValueNumberValidator.directive.js.map +1 -0
  341. package/es2020/forms/src/directives/numberInput/minValueNumberValidator.directive.js +64 -0
  342. package/es2020/forms/src/directives/numberInput/minValueNumberValidator.directive.js.map +1 -0
  343. package/es2020/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +74 -0
  344. package/es2020/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js.map +1 -0
  345. package/es2020/forms/src/directives/numberInput/numberInputValidator.directive.js +36 -0
  346. package/es2020/forms/src/directives/numberInput/numberInputValidator.directive.js.map +1 -0
  347. package/es2020/forms/src/directives/requiredClass/requiredClass.directive.js +56 -0
  348. package/es2020/forms/src/directives/requiredClass/requiredClass.directive.js.map +1 -0
  349. package/es2020/forms/src/index.js +20 -0
  350. package/es2020/forms/src/index.js.map +1 -0
  351. package/es2020/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +11 -0
  352. package/es2020/forms/src/misc/formModel/decorators/asyncValidator.decorator.js.map +1 -0
  353. package/es2020/forms/src/misc/formModel/decorators/controlOptions.decorator.js +11 -0
  354. package/es2020/forms/src/misc/formModel/decorators/controlOptions.decorator.js.map +1 -0
  355. package/es2020/forms/src/misc/formModel/decorators/disabled.decorator.js +10 -0
  356. package/es2020/forms/src/misc/formModel/decorators/disabled.decorator.js.map +1 -0
  357. package/es2020/forms/src/misc/formModel/decorators/email.decorator.js +11 -0
  358. package/es2020/forms/src/misc/formModel/decorators/email.decorator.js.map +1 -0
  359. package/es2020/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +11 -0
  360. package/es2020/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js.map +1 -0
  361. package/es2020/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +22 -0
  362. package/es2020/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js.map +1 -0
  363. package/es2020/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +11 -0
  364. package/es2020/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js.map +1 -0
  365. package/es2020/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +22 -0
  366. package/es2020/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js.map +1 -0
  367. package/es2020/forms/src/misc/formModel/decorators/index.js +20 -0
  368. package/es2020/forms/src/misc/formModel/decorators/index.js.map +1 -0
  369. package/es2020/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +40 -0
  370. package/es2020/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js.map +1 -0
  371. package/es2020/forms/src/misc/formModel/decorators/maxLength.decorator.js +12 -0
  372. package/es2020/forms/src/misc/formModel/decorators/maxLength.decorator.js.map +1 -0
  373. package/es2020/forms/src/misc/formModel/decorators/maxValue.decorator.js +12 -0
  374. package/es2020/forms/src/misc/formModel/decorators/maxValue.decorator.js.map +1 -0
  375. package/es2020/forms/src/misc/formModel/decorators/minLength.decorator.js +12 -0
  376. package/es2020/forms/src/misc/formModel/decorators/minLength.decorator.js.map +1 -0
  377. package/es2020/forms/src/misc/formModel/decorators/minValue.decorator.js +12 -0
  378. package/es2020/forms/src/misc/formModel/decorators/minValue.decorator.js.map +1 -0
  379. package/es2020/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +42 -0
  380. package/es2020/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js.map +1 -0
  381. package/es2020/forms/src/misc/formModel/decorators/number.decorator.js +11 -0
  382. package/es2020/forms/src/misc/formModel/decorators/number.decorator.js.map +1 -0
  383. package/es2020/forms/src/misc/formModel/decorators/pattern.decorator.js +11 -0
  384. package/es2020/forms/src/misc/formModel/decorators/pattern.decorator.js.map +1 -0
  385. package/es2020/forms/src/misc/formModel/decorators/required.decorator.js +11 -0
  386. package/es2020/forms/src/misc/formModel/decorators/required.decorator.js.map +1 -0
  387. package/es2020/forms/src/misc/formModel/decorators/requiredIf.decorator.js +24 -0
  388. package/es2020/forms/src/misc/formModel/decorators/requiredIf.decorator.js.map +1 -0
  389. package/es2020/forms/src/misc/formModel/decorators/validator.decorator.js +11 -0
  390. package/es2020/forms/src/misc/formModel/decorators/validator.decorator.js.map +1 -0
  391. package/es2020/forms/src/misc/formModel/index.js +8 -0
  392. package/es2020/forms/src/misc/formModel/index.js.map +1 -0
  393. package/es2020/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +2 -0
  394. package/es2020/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js.map +1 -0
  395. package/es2020/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +2 -0
  396. package/es2020/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js.map +1 -0
  397. package/es2020/forms/src/misc/formModel/interfaces/validator.interface.js +2 -0
  398. package/es2020/forms/src/misc/formModel/interfaces/validator.interface.js.map +1 -0
  399. package/es2020/forms/src/misc/formModel/misc/currentValue.js +29 -0
  400. package/es2020/forms/src/misc/formModel/misc/currentValue.js.map +1 -0
  401. package/es2020/forms/src/misc/formModel/misc/defaults.js +13 -0
  402. package/es2020/forms/src/misc/formModel/misc/defaults.js.map +1 -0
  403. package/es2020/forms/src/misc/formModel/misc/utils.js +100 -0
  404. package/es2020/forms/src/misc/formModel/misc/utils.js.map +1 -0
  405. package/es2020/forms/src/misc/formModel/misc/validatorFactories.js +41 -0
  406. package/es2020/forms/src/misc/formModel/misc/validatorFactories.js.map +1 -0
  407. package/es2020/forms/src/misc/types.js +6 -0
  408. package/es2020/forms/src/misc/types.js.map +1 -0
  409. package/es2020/forms/src/misc/utils.js +103 -0
  410. package/es2020/forms/src/misc/utils.js.map +1 -0
  411. package/es2020/forms/src/misc/validators.js +49 -0
  412. package/es2020/forms/src/misc/validators.js.map +1 -0
  413. package/es2020/forms/src/modules/hasError.module.js +28 -0
  414. package/es2020/forms/src/modules/hasError.module.js.map +1 -0
  415. package/es2020/forms/src/modules/numberInput.module.js +38 -0
  416. package/es2020/forms/src/modules/numberInput.module.js.map +1 -0
  417. package/es2020/forms/src/modules/requiredClass.module.js +19 -0
  418. package/es2020/forms/src/modules/requiredClass.module.js.map +1 -0
  419. package/es2020/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +2 -0
  420. package/es2020/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js.map +1 -0
  421. package/es2020/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +72 -0
  422. package/es2020/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js.map +1 -0
  423. package/es2020/forms/src/services/submitted/submitted.service.js +49 -0
  424. package/es2020/forms/src/services/submitted/submitted.service.js.map +1 -0
  425. package/es2020/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +2 -0
  426. package/es2020/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js.map +1 -0
  427. package/es2020/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +227 -0
  428. package/es2020/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js.map +1 -0
  429. package/es2020/hmr/src/index.js +35 -0
  430. package/es2020/hmr/src/index.js.map +1 -0
  431. package/es2020/hotkeys/src/index.js +2 -0
  432. package/es2020/hotkeys/src/index.js.map +1 -0
  433. package/es2020/hotkeys/src/services/appHotkeys.service.js +132 -0
  434. package/es2020/hotkeys/src/services/appHotkeys.service.js.map +1 -0
  435. package/es2020/material/src/components/confirmationDialog/confirmationDialog.component.js +50 -0
  436. package/es2020/material/src/components/confirmationDialog/confirmationDialog.component.js.map +1 -0
  437. package/es2020/material/src/components/titledDialog/titledDialog.component.js +39 -0
  438. package/es2020/material/src/components/titledDialog/titledDialog.component.js.map +1 -0
  439. package/es2020/material/src/directives/confirmationDialog/confirmationDialog.directive.js +104 -0
  440. package/es2020/material/src/directives/confirmationDialog/confirmationDialog.directive.js.map +1 -0
  441. package/es2020/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +47 -0
  442. package/es2020/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js.map +1 -0
  443. package/es2020/material/src/index.js +10 -0
  444. package/es2020/material/src/index.js.map +1 -0
  445. package/es2020/material/src/misc/interfaces/confirmationDialog.interface.js +2 -0
  446. package/es2020/material/src/misc/interfaces/confirmationDialog.interface.js.map +1 -0
  447. package/es2020/material/src/misc/interfaces/titledDialog.interface.js +6 -0
  448. package/es2020/material/src/misc/interfaces/titledDialog.interface.js.map +1 -0
  449. package/es2020/material/src/misc/tokens.js +6 -0
  450. package/es2020/material/src/misc/tokens.js.map +1 -0
  451. package/es2020/material/src/modules/confirmationDialog.module.js +40 -0
  452. package/es2020/material/src/modules/confirmationDialog.module.js.map +1 -0
  453. package/es2020/material/src/modules/debugDataCopyClick.module.js +27 -0
  454. package/es2020/material/src/modules/debugDataCopyClick.module.js.map +1 -0
  455. package/es2020/material/src/modules/titledDialog.module.js +36 -0
  456. package/es2020/material/src/modules/titledDialog.module.js.map +1 -0
  457. package/es2020/material/src/services/titledDialog/titledDialog.service.js +39 -0
  458. package/es2020/material/src/services/titledDialog/titledDialog.service.js.map +1 -0
  459. package/es2020/moment/src/index.js +3 -0
  460. package/es2020/moment/src/index.js.map +1 -0
  461. package/es2020/moment/src/misc/utils.js +27 -0
  462. package/es2020/moment/src/misc/utils.js.map +1 -0
  463. package/es2020/moment/src/modules/moment.module.js +28 -0
  464. package/es2020/moment/src/modules/moment.module.js.map +1 -0
  465. package/es2020/moment/src/pipes/momentConvert/momentConvert.pipe.js +32 -0
  466. package/es2020/moment/src/pipes/momentConvert/momentConvert.pipe.js.map +1 -0
  467. package/es2020/moment/src/pipes/momentFormat/momentFormat.pipe.js +36 -0
  468. package/es2020/moment/src/pipes/momentFormat/momentFormat.pipe.js.map +1 -0
  469. package/es2020/numeral/src/index.js +3 -0
  470. package/es2020/numeral/src/index.js.map +1 -0
  471. package/es2020/numeral/src/modules/numeral.module.js +19 -0
  472. package/es2020/numeral/src/modules/numeral.module.js.map +1 -0
  473. package/es2020/numeral/src/pipes/numeral.pipe.js +50 -0
  474. package/es2020/numeral/src/pipes/numeral.pipe.js.map +1 -0
  475. package/es2020/positions/src/index.js +9 -0
  476. package/es2020/positions/src/index.js.map +1 -0
  477. package/es2020/positions/src/misc/utils.js +109 -0
  478. package/es2020/positions/src/misc/utils.js.map +1 -0
  479. package/es2020/positions/src/modules/positions/directives/positionTo/positionTo.directive.js +58 -0
  480. package/es2020/positions/src/modules/positions/directives/positionTo/positionTo.directive.js.map +1 -0
  481. package/es2020/positions/src/modules/positions/modules/positions.module.js +24 -0
  482. package/es2020/positions/src/modules/positions/modules/positions.module.js.map +1 -0
  483. package/es2020/positions/src/modules/tooltip/components/tooltip/tooltip.component.js +98 -0
  484. package/es2020/positions/src/modules/tooltip/components/tooltip/tooltip.component.js.map +1 -0
  485. package/es2020/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js +229 -0
  486. package/es2020/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js.map +1 -0
  487. package/es2020/positions/src/modules/tooltip/misc/tokens.js +6 -0
  488. package/es2020/positions/src/modules/tooltip/misc/tokens.js.map +1 -0
  489. package/es2020/positions/src/modules/tooltip/misc/tooltip.interface.js +2 -0
  490. package/es2020/positions/src/modules/tooltip/misc/tooltip.interface.js.map +1 -0
  491. package/es2020/positions/src/modules/tooltip/modules/tooltip.module.js +32 -0
  492. package/es2020/positions/src/modules/tooltip/modules/tooltip.module.js.map +1 -0
  493. package/es2020/positions/src/types/positions.typings.js +2 -0
  494. package/es2020/positions/src/types/positions.typings.js.map +1 -0
  495. package/es2020/router/src/decorators/componentRedirectRoute.decorator.js +43 -0
  496. package/es2020/router/src/decorators/componentRedirectRoute.decorator.js.map +1 -0
  497. package/es2020/router/src/decorators/componentRoute.decorator.js +23 -0
  498. package/es2020/router/src/decorators/componentRoute.decorator.js.map +1 -0
  499. package/es2020/router/src/decorators/moduleRoutes.decorator.js +42 -0
  500. package/es2020/router/src/decorators/moduleRoutes.decorator.js.map +1 -0
  501. package/es2020/router/src/index.js +7 -0
  502. package/es2020/router/src/index.js.map +1 -0
  503. package/es2020/router/src/misc/utils.js +26 -0
  504. package/es2020/router/src/misc/utils.js.map +1 -0
  505. package/es2020/router/src/services/routing/dataRouter.js +89 -0
  506. package/es2020/router/src/services/routing/dataRouter.js.map +1 -0
  507. package/es2020/router/src/services/routing/dataRouterData.js +20 -0
  508. package/es2020/router/src/services/routing/dataRouterData.js.map +1 -0
  509. package/es2020/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js +62 -0
  510. package/es2020/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js.map +1 -0
  511. package/es2020/src/index.js +34 -0
  512. package/es2020/src/index.js.map +1 -0
  513. package/es2020/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js +67 -0
  514. package/es2020/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js.map +1 -0
  515. package/es2020/src/modules/clickOutside/modules/clickOutside.module.js +24 -0
  516. package/es2020/src/modules/clickOutside/modules/clickOutside.module.js.map +1 -0
  517. package/es2020/src/modules/common.module.js +49 -0
  518. package/es2020/src/modules/common.module.js.map +1 -0
  519. package/es2020/src/modules/debugData/components/debugData/debugData.component.js +67 -0
  520. package/es2020/src/modules/debugData/components/debugData/debugData.component.js.map +1 -0
  521. package/es2020/src/modules/debugData/modules/debugData.module.js +29 -0
  522. package/es2020/src/modules/debugData/modules/debugData.module.js.map +1 -0
  523. package/es2020/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +51 -0
  524. package/es2020/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js.map +1 -0
  525. package/es2020/src/modules/multiButton/components/multiButton/multiButton.component.js +119 -0
  526. package/es2020/src/modules/multiButton/components/multiButton/multiButton.component.js.map +1 -0
  527. package/es2020/src/modules/multiButton/components/multiButton/multiButton.interface.js +2 -0
  528. package/es2020/src/modules/multiButton/components/multiButton/multiButton.interface.js.map +1 -0
  529. package/es2020/src/modules/multiButton/misc/tokens.js +6 -0
  530. package/es2020/src/modules/multiButton/misc/tokens.js.map +1 -0
  531. package/es2020/src/modules/multiButton/modules/multiButton.module.js +29 -0
  532. package/es2020/src/modules/multiButton/modules/multiButton.module.js.map +1 -0
  533. package/es2020/src/modules/progressIndicator/components/index.js +2 -0
  534. package/es2020/src/modules/progressIndicator/components/index.js.map +1 -0
  535. package/es2020/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js +66 -0
  536. package/es2020/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js.map +1 -0
  537. package/es2020/src/modules/progressIndicator/directives/index.js +2 -0
  538. package/es2020/src/modules/progressIndicator/directives/index.js.map +1 -0
  539. package/es2020/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js +124 -0
  540. package/es2020/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js.map +1 -0
  541. package/es2020/src/modules/progressIndicator/index.js +6 -0
  542. package/es2020/src/modules/progressIndicator/index.js.map +1 -0
  543. package/es2020/src/modules/progressIndicator/interceptors/progressInterceptor.js +56 -0
  544. package/es2020/src/modules/progressIndicator/interceptors/progressInterceptor.js.map +1 -0
  545. package/es2020/src/modules/progressIndicator/misc/types.js +2 -0
  546. package/es2020/src/modules/progressIndicator/misc/types.js.map +1 -0
  547. package/es2020/src/modules/progressIndicator/modules/index.js +2 -0
  548. package/es2020/src/modules/progressIndicator/modules/index.js.map +1 -0
  549. package/es2020/src/modules/progressIndicator/modules/progressIndicator.module.js +38 -0
  550. package/es2020/src/modules/progressIndicator/modules/progressIndicator.module.js.map +1 -0
  551. package/es2020/src/modules/progressIndicator/services/progressIndicator.service.js +255 -0
  552. package/es2020/src/modules/progressIndicator/services/progressIndicator.service.js.map +1 -0
  553. package/es2020/src/modules/progressIndicator/services/progressIndicatorOptions.js +25 -0
  554. package/es2020/src/modules/progressIndicator/services/progressIndicatorOptions.js.map +1 -0
  555. package/es2020/src/pipes/index.js +5 -0
  556. package/es2020/src/pipes/index.js.map +1 -0
  557. package/es2020/src/pipes/isNaN/isNaN.pipe.js +24 -0
  558. package/es2020/src/pipes/isNaN/isNaN.pipe.js.map +1 -0
  559. package/es2020/src/pipes/isPresent/isPresent.pipe.js +25 -0
  560. package/es2020/src/pipes/isPresent/isPresent.pipe.js.map +1 -0
  561. package/es2020/src/pipes/localize/localize.pipe.js +54 -0
  562. package/es2020/src/pipes/localize/localize.pipe.js.map +1 -0
  563. package/es2020/src/pipes/urlEncode/urlEncode.pipe.js +26 -0
  564. package/es2020/src/pipes/urlEncode/urlEncode.pipe.js.map +1 -0
  565. package/es2020/src/services/cookies/cookies.service.js +106 -0
  566. package/es2020/src/services/cookies/cookies.service.js.map +1 -0
  567. package/es2020/src/services/globalization/globalization.service.js +6 -0
  568. package/es2020/src/services/globalization/globalization.service.js.map +1 -0
  569. package/es2020/src/services/ignoredInterceptors/ignoredInterceptors.service.js +60 -0
  570. package/es2020/src/services/ignoredInterceptors/ignoredInterceptors.service.js.map +1 -0
  571. package/es2020/src/services/logger/index.js +3 -0
  572. package/es2020/src/services/logger/index.js.map +1 -0
  573. package/es2020/src/services/logger/logger.interface.js +2 -0
  574. package/es2020/src/services/logger/logger.interface.js.map +1 -0
  575. package/es2020/src/services/logger/logger.service.js +18 -0
  576. package/es2020/src/services/logger/logger.service.js.map +1 -0
  577. package/es2020/src/services/notifications/defaultNotifications.service.js +228 -0
  578. package/es2020/src/services/notifications/defaultNotifications.service.js.map +1 -0
  579. package/es2020/src/services/notifications/index.js +4 -0
  580. package/es2020/src/services/notifications/index.js.map +1 -0
  581. package/es2020/src/services/notifications/notifications.interface.js +55 -0
  582. package/es2020/src/services/notifications/notifications.interface.js.map +1 -0
  583. package/es2020/src/services/notifications/notificationsOptions.js +18 -0
  584. package/es2020/src/services/notifications/notificationsOptions.js.map +1 -0
  585. package/es2020/src/services/permanentStorage/cookiePermanentStorage.service.js +43 -0
  586. package/es2020/src/services/permanentStorage/cookiePermanentStorage.service.js.map +1 -0
  587. package/es2020/src/services/permanentStorage/index.js +3 -0
  588. package/es2020/src/services/permanentStorage/index.js.map +1 -0
  589. package/es2020/src/services/permanentStorage/permanentStorage.interface.js +2 -0
  590. package/es2020/src/services/permanentStorage/permanentStorage.interface.js.map +1 -0
  591. package/es2020/src/services/positioning/index.js +2 -0
  592. package/es2020/src/services/positioning/index.js.map +1 -0
  593. package/es2020/src/services/positioning/positioning.interface.js +2 -0
  594. package/es2020/src/services/positioning/positioning.interface.js.map +1 -0
  595. package/es2020/src/services/statusCode/statusCode.service.js +29 -0
  596. package/es2020/src/services/statusCode/statusCode.service.js.map +1 -0
  597. package/es2020/src/services/stringLocalization/index.js +3 -0
  598. package/es2020/src/services/stringLocalization/index.js.map +1 -0
  599. package/es2020/src/services/stringLocalization/noStringLocalization.service.js +43 -0
  600. package/es2020/src/services/stringLocalization/noStringLocalization.service.js.map +1 -0
  601. package/es2020/src/services/stringLocalization/stringLocalization.interface.js +2 -0
  602. package/es2020/src/services/stringLocalization/stringLocalization.interface.js.map +1 -0
  603. package/es2020/src/services/temporaryStorage/index.js +3 -0
  604. package/es2020/src/services/temporaryStorage/index.js.map +1 -0
  605. package/es2020/src/services/temporaryStorage/memoryTemporaryStorage.service.js +43 -0
  606. package/es2020/src/services/temporaryStorage/memoryTemporaryStorage.service.js.map +1 -0
  607. package/es2020/src/services/temporaryStorage/temporaryStorage.interface.js +2 -0
  608. package/es2020/src/services/temporaryStorage/temporaryStorage.interface.js.map +1 -0
  609. package/es2020/src/types/additionalInfo.js +2 -0
  610. package/es2020/src/types/additionalInfo.js.map +1 -0
  611. package/es2020/src/types/tokens.js +45 -0
  612. package/es2020/src/types/tokens.js.map +1 -0
  613. package/es2020/src/utils/index.js +51 -0
  614. package/es2020/src/utils/index.js.map +1 -0
  615. package/es2020/store/src/index.js +2 -0
  616. package/es2020/store/src/index.js.map +1 -0
  617. package/es2020/store/src/services/index.js +3 -0
  618. package/es2020/store/src/services/index.js.map +1 -0
  619. package/es2020/store/src/services/permanentStorage/localPermanentStorage.service.js +49 -0
  620. package/es2020/store/src/services/permanentStorage/localPermanentStorage.service.js.map +1 -0
  621. package/es2020/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +37 -0
  622. package/es2020/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js.map +1 -0
  623. package/es2020/store/src/types/store.typings.js +2 -0
  624. package/es2020/store/src/types/store.typings.js.map +1 -0
  625. package/es2020/structured-log/src/components/console/console.component.animations.js +31 -0
  626. package/es2020/structured-log/src/components/console/console.component.animations.js.map +1 -0
  627. package/es2020/structured-log/src/components/console/console.component.js +95 -0
  628. package/es2020/structured-log/src/components/console/console.component.js.map +1 -0
  629. package/es2020/structured-log/src/index.js +12 -0
  630. package/es2020/structured-log/src/index.js.map +1 -0
  631. package/es2020/structured-log/src/misc/utils.js +39 -0
  632. package/es2020/structured-log/src/misc/utils.js.map +1 -0
  633. package/es2020/structured-log/src/modules/consoleLog.module.js +44 -0
  634. package/es2020/structured-log/src/modules/consoleLog.module.js.map +1 -0
  635. package/es2020/structured-log/src/services/console/consoleComponentSink.service.js +96 -0
  636. package/es2020/structured-log/src/services/console/consoleComponentSink.service.js.map +1 -0
  637. package/es2020/structured-log/src/services/console/consoleSinkConfig.service.js +44 -0
  638. package/es2020/structured-log/src/services/console/consoleSinkConfig.service.js.map +1 -0
  639. package/es2020/structured-log/src/services/logger.service.js +44 -0
  640. package/es2020/structured-log/src/services/logger.service.js.map +1 -0
  641. package/es2020/structured-log/src/services/rest/restSink.service.js +118 -0
  642. package/es2020/structured-log/src/services/rest/restSink.service.js.map +1 -0
  643. package/es2020/structured-log/src/services/rest/restSinkConfig.service.js +55 -0
  644. package/es2020/structured-log/src/services/rest/restSinkConfig.service.js.map +1 -0
  645. package/es2020/structured-log/src/types/logger.interface.js +2 -0
  646. package/es2020/structured-log/src/types/logger.interface.js.map +1 -0
  647. package/es2020/structured-log/src/types/structured-log.typings.js +2 -0
  648. package/es2020/structured-log/src/types/structured-log.typings.js.map +1 -0
  649. package/es2020/structured-log/src/types/tokens.js +56 -0
  650. package/es2020/structured-log/src/types/tokens.js.map +1 -0
  651. package/forms/common-forms.d.ts +966 -0
  652. package/forms/common-forms.internal.d.ts +966 -0
  653. package/forms/package.json +7 -6
  654. package/forms/src/directives/groupHasError/groupHasError.directive.d.ts +42 -39
  655. package/forms/src/directives/groupHasError/groupHasError.directive.d.ts.map +1 -1
  656. package/forms/src/directives/hasError/hasError.directive.d.ts +86 -83
  657. package/forms/src/directives/hasError/hasError.directive.d.ts.map +1 -1
  658. package/forms/src/directives/numberInput/maxValueNumberValidator.directive.d.ts +34 -31
  659. package/forms/src/directives/numberInput/maxValueNumberValidator.directive.d.ts.map +1 -1
  660. package/forms/src/directives/numberInput/minValueNumberValidator.directive.d.ts +34 -31
  661. package/forms/src/directives/numberInput/minValueNumberValidator.directive.d.ts.map +1 -1
  662. package/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.d.ts +30 -27
  663. package/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.d.ts.map +1 -1
  664. package/forms/src/directives/numberInput/numberInputValidator.directive.d.ts +15 -12
  665. package/forms/src/directives/numberInput/numberInputValidator.directive.d.ts.map +1 -1
  666. package/forms/src/directives/requiredClass/requiredClass.directive.d.ts +26 -23
  667. package/forms/src/directives/requiredClass/requiredClass.directive.d.ts.map +1 -1
  668. package/forms/src/index.d.ts +20 -0
  669. package/forms/src/index.d.ts.map +1 -0
  670. package/forms/src/misc/formModel/decorators/asyncValidator.decorator.d.ts +7 -7
  671. package/forms/src/misc/formModel/decorators/controlOptions.decorator.d.ts +6 -6
  672. package/forms/src/misc/formModel/decorators/disabled.decorator.d.ts +4 -4
  673. package/forms/src/misc/formModel/decorators/email.decorator.d.ts +4 -4
  674. package/forms/src/misc/formModel/decorators/formArrayProperty.decorator.d.ts +4 -4
  675. package/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.d.ts +7 -7
  676. package/forms/src/misc/formModel/decorators/formGroupProperty.decorator.d.ts +4 -4
  677. package/forms/src/misc/formModel/decorators/formGroupValidator.decorator.d.ts +7 -7
  678. package/forms/src/misc/formModel/decorators/index.d.ts +19 -19
  679. package/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.d.ts +20 -20
  680. package/forms/src/misc/formModel/decorators/maxLength.decorator.d.ts +5 -5
  681. package/forms/src/misc/formModel/decorators/maxValue.decorator.d.ts +5 -5
  682. package/forms/src/misc/formModel/decorators/minLength.decorator.d.ts +5 -5
  683. package/forms/src/misc/formModel/decorators/minValue.decorator.d.ts +5 -5
  684. package/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.d.ts +7 -7
  685. package/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.d.ts.map +1 -1
  686. package/forms/src/misc/formModel/decorators/number.decorator.d.ts +4 -4
  687. package/forms/src/misc/formModel/decorators/pattern.decorator.d.ts +4 -4
  688. package/forms/src/misc/formModel/decorators/required.decorator.d.ts +4 -4
  689. package/forms/src/misc/formModel/decorators/requiredIf.decorator.d.ts +5 -5
  690. package/forms/src/misc/formModel/decorators/validator.decorator.d.ts +7 -7
  691. package/forms/src/misc/formModel/index.d.ts +7 -7
  692. package/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.d.ts +20 -20
  693. package/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.d.ts +40 -40
  694. package/forms/src/misc/formModel/interfaces/validator.interface.d.ts +22 -22
  695. package/forms/src/misc/formModel/misc/currentValue.d.ts +17 -17
  696. package/forms/src/misc/formModel/misc/defaults.d.ts +5 -5
  697. package/forms/src/misc/formModel/misc/utils.d.ts +8 -8
  698. package/forms/src/misc/formModel/misc/utils.d.ts.map +1 -1
  699. package/forms/src/misc/formModel/misc/validatorFactories.d.ts +32 -32
  700. package/forms/src/misc/types.d.ts +6 -6
  701. package/forms/src/misc/utils.d.ts +42 -41
  702. package/forms/src/misc/utils.d.ts.map +1 -1
  703. package/forms/src/misc/validators.d.ts +21 -21
  704. package/forms/src/modules/hasError.module.d.ts +11 -5
  705. package/forms/src/modules/hasError.module.d.ts.map +1 -1
  706. package/forms/src/modules/numberInput.module.d.ts +13 -5
  707. package/forms/src/modules/numberInput.module.d.ts.map +1 -1
  708. package/forms/src/modules/requiredClass.module.d.ts +10 -5
  709. package/forms/src/modules/requiredClass.module.d.ts.map +1 -1
  710. package/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.d.ts +13 -13
  711. package/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.d.ts +28 -25
  712. package/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.d.ts.map +1 -1
  713. package/forms/src/services/submitted/submitted.service.d.ts +30 -27
  714. package/forms/src/services/submitted/submitted.service.d.ts.map +1 -1
  715. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.d.ts +105 -105
  716. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.d.ts.map +1 -1
  717. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.d.ts +109 -106
  718. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.d.ts.map +1 -1
  719. package/forms/temp/common-forms.api.md +445 -0
  720. package/hmr/common-hmr.d.ts +6 -0
  721. package/hmr/common-hmr.internal.d.ts +6 -0
  722. package/hmr/package.json +7 -6
  723. package/hmr/src/index.d.ts +6 -0
  724. package/hmr/src/index.d.ts.map +1 -0
  725. package/hmr/temp/common-hmr.api.md +12 -0
  726. package/hotkeys/common-hotkeys.d.ts +53 -0
  727. package/hotkeys/common-hotkeys.internal.d.ts +53 -0
  728. package/hotkeys/package.json +7 -6
  729. package/hotkeys/src/index.d.ts +2 -0
  730. package/hotkeys/src/index.d.ts.map +1 -0
  731. package/hotkeys/src/services/appHotkeys.service.d.ts +50 -43
  732. package/hotkeys/src/services/appHotkeys.service.d.ts.map +1 -1
  733. package/hotkeys/temp/common-hotkeys.api.md +25 -0
  734. package/material/common-material.d.ts +264 -0
  735. package/material/common-material.internal.d.ts +278 -0
  736. package/material/package.json +7 -6
  737. package/material/src/components/confirmationDialog/confirmationDialog.component.d.ts +17 -10
  738. package/material/src/components/confirmationDialog/confirmationDialog.component.d.ts.map +1 -1
  739. package/material/src/components/confirmationDialog/confirmationDialog.component.html +8 -8
  740. package/material/src/components/titledDialog/titledDialog.component.d.ts +20 -17
  741. package/material/src/components/titledDialog/titledDialog.component.d.ts.map +1 -1
  742. package/material/src/directives/confirmationDialog/confirmationDialog.directive.d.ts +49 -37
  743. package/material/src/directives/confirmationDialog/confirmationDialog.directive.d.ts.map +1 -1
  744. package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.d.ts +27 -24
  745. package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.d.ts.map +1 -1
  746. package/material/src/index.d.ts +11 -0
  747. package/material/src/index.d.ts.map +1 -0
  748. package/material/src/misc/interfaces/confirmationDialog.interface.d.ts +46 -17
  749. package/material/src/misc/interfaces/confirmationDialog.interface.d.ts.map +1 -1
  750. package/material/src/misc/interfaces/titledDialog.interface.d.ts +33 -33
  751. package/material/src/misc/tokens.d.ts +6 -6
  752. package/material/src/misc/tokens.d.ts.map +1 -1
  753. package/material/src/modules/confirmationDialog.module.d.ts +14 -5
  754. package/material/src/modules/confirmationDialog.module.d.ts.map +1 -1
  755. package/material/src/modules/debugDataCopyClick.module.d.ts +11 -5
  756. package/material/src/modules/debugDataCopyClick.module.d.ts.map +1 -1
  757. package/material/src/modules/titledDialog.module.d.ts +12 -5
  758. package/material/src/modules/titledDialog.module.d.ts.map +1 -1
  759. package/material/src/services/titledDialog/titledDialog.service.d.ts +21 -18
  760. package/material/src/services/titledDialog/titledDialog.service.d.ts.map +1 -1
  761. package/material/temp/common-material.api.md +164 -0
  762. package/moment/common-moment.d.ts +61 -0
  763. package/moment/common-moment.internal.d.ts +61 -0
  764. package/moment/package.json +7 -6
  765. package/moment/src/index.d.ts +3 -0
  766. package/moment/src/index.d.ts.map +1 -0
  767. package/moment/src/misc/utils.d.ts +7 -7
  768. package/moment/src/modules/moment.module.d.ts +11 -5
  769. package/moment/src/modules/moment.module.d.ts.map +1 -1
  770. package/moment/src/pipes/momentConvert/momentConvert.pipe.d.ts +15 -12
  771. package/moment/src/pipes/momentConvert/momentConvert.pipe.d.ts.map +1 -1
  772. package/moment/src/pipes/momentFormat/momentFormat.pipe.d.ts +16 -13
  773. package/moment/src/pipes/momentFormat/momentFormat.pipe.d.ts.map +1 -1
  774. package/moment/temp/common-moment.api.md +47 -0
  775. package/numeral/common-numeral.d.ts +44 -0
  776. package/numeral/common-numeral.internal.d.ts +44 -0
  777. package/numeral/package.json +7 -6
  778. package/numeral/src/index.d.ts +3 -0
  779. package/numeral/src/index.d.ts.map +1 -0
  780. package/numeral/src/modules/numeral.module.d.ts +10 -5
  781. package/numeral/src/modules/numeral.module.d.ts.map +1 -1
  782. package/numeral/src/pipes/numeral.pipe.d.ts +25 -22
  783. package/numeral/src/pipes/numeral.pipe.d.ts.map +1 -1
  784. package/numeral/temp/common-numeral.api.md +37 -0
  785. package/package.json +200 -89
  786. package/positions/common-positions.d.ts +324 -0
  787. package/positions/common-positions.internal.d.ts +346 -0
  788. package/positions/package.json +7 -6
  789. package/positions/src/index.d.ts +9 -0
  790. package/positions/src/index.d.ts.map +1 -0
  791. package/positions/src/misc/utils.d.ts +21 -21
  792. package/positions/src/misc/utils.d.ts.map +1 -1
  793. package/positions/src/modules/positions/directives/positionTo/positionTo.directive.d.ts +33 -30
  794. package/positions/src/modules/positions/directives/positionTo/positionTo.directive.d.ts.map +1 -1
  795. package/positions/src/modules/positions/modules/positions.module.d.ts +10 -5
  796. package/positions/src/modules/positions/modules/positions.module.d.ts.map +1 -1
  797. package/positions/src/modules/tooltip/components/tooltip/tooltip.component.d.ts +62 -59
  798. package/positions/src/modules/tooltip/components/tooltip/tooltip.component.d.ts.map +1 -1
  799. package/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.d.ts +105 -102
  800. package/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.d.ts.map +1 -1
  801. package/positions/src/modules/tooltip/misc/tokens.d.ts +6 -6
  802. package/positions/src/modules/tooltip/misc/tooltip.interface.d.ts +70 -70
  803. package/positions/src/modules/tooltip/misc/tooltip.interface.d.ts.map +1 -1
  804. package/positions/src/modules/tooltip/modules/tooltip.module.d.ts +12 -5
  805. package/positions/src/modules/tooltip/modules/tooltip.module.d.ts.map +1 -1
  806. package/positions/src/types/positions.typings.d.ts +33 -0
  807. package/positions/src/types/positions.typings.d.ts.map +1 -0
  808. package/positions/temp/common-positions.api.md +170 -0
  809. package/router/common-router.d.ts +140 -0
  810. package/router/common-router.internal.d.ts +140 -0
  811. package/router/package.json +7 -6
  812. package/router/src/decorators/componentRedirectRoute.decorator.d.ts +18 -18
  813. package/router/src/decorators/componentRoute.decorator.d.ts +19 -15
  814. package/router/src/decorators/componentRoute.decorator.d.ts.map +1 -1
  815. package/router/src/decorators/moduleRoutes.decorator.d.ts +38 -38
  816. package/router/src/index.d.ts +7 -0
  817. package/router/src/index.d.ts.map +1 -0
  818. package/router/src/misc/utils.d.ts +7 -7
  819. package/router/src/services/routing/dataRouter.d.ts +34 -31
  820. package/router/src/services/routing/dataRouter.d.ts.map +1 -1
  821. package/router/src/services/routing/dataRouterData.d.ts +15 -12
  822. package/router/src/services/routing/dataRouterData.d.ts.map +1 -1
  823. package/router/temp/common-router.api.md +74 -0
  824. package/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.d.ts +36 -42
  825. package/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.d.ts.map +1 -1
  826. package/src/index.d.ts +35 -0
  827. package/src/index.d.ts.map +1 -0
  828. package/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.d.ts +37 -34
  829. package/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.d.ts.map +1 -1
  830. package/src/modules/clickOutside/modules/clickOutside.module.d.ts +10 -5
  831. package/src/modules/clickOutside/modules/clickOutside.module.d.ts.map +1 -1
  832. package/src/modules/common.module.d.ts +15 -5
  833. package/src/modules/common.module.d.ts.map +1 -1
  834. package/src/modules/debugData/components/debugData/debugData.component.d.ts +37 -34
  835. package/src/modules/debugData/components/debugData/debugData.component.d.ts.map +1 -1
  836. package/src/modules/debugData/modules/debugData.module.d.ts +11 -5
  837. package/src/modules/debugData/modules/debugData.module.d.ts.map +1 -1
  838. package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.d.ts +30 -27
  839. package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.d.ts.map +1 -1
  840. package/src/modules/multiButton/components/multiButton/multiButton.component.d.ts +61 -58
  841. package/src/modules/multiButton/components/multiButton/multiButton.component.d.ts.map +1 -1
  842. package/src/modules/multiButton/components/multiButton/multiButton.interface.d.ts +29 -29
  843. package/src/modules/multiButton/components/multiButton/multiButton.interface.d.ts.map +1 -1
  844. package/src/modules/multiButton/misc/tokens.d.ts +6 -6
  845. package/src/modules/multiButton/modules/multiButton.module.d.ts +11 -5
  846. package/src/modules/multiButton/modules/multiButton.module.d.ts.map +1 -1
  847. package/src/modules/progressIndicator/components/index.d.ts +2 -0
  848. package/src/modules/progressIndicator/components/index.d.ts.map +1 -0
  849. package/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.d.ts +41 -38
  850. package/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.d.ts.map +1 -1
  851. package/src/modules/progressIndicator/directives/index.d.ts +2 -0
  852. package/src/modules/progressIndicator/directives/index.d.ts.map +1 -0
  853. package/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.d.ts +68 -65
  854. package/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.d.ts.map +1 -1
  855. package/src/modules/progressIndicator/index.d.ts +6 -0
  856. package/src/modules/progressIndicator/index.d.ts.map +1 -0
  857. package/src/modules/progressIndicator/interceptors/progressInterceptor.d.ts +28 -25
  858. package/src/modules/progressIndicator/interceptors/progressInterceptor.d.ts.map +1 -1
  859. package/src/modules/progressIndicator/misc/types.d.ts +9 -9
  860. package/src/modules/progressIndicator/modules/index.d.ts +2 -0
  861. package/src/modules/progressIndicator/modules/index.d.ts.map +1 -0
  862. package/src/modules/progressIndicator/modules/progressIndicator.module.d.ts +13 -5
  863. package/src/modules/progressIndicator/modules/progressIndicator.module.d.ts.map +1 -1
  864. package/src/modules/progressIndicator/services/progressIndicator.service.d.ts +138 -135
  865. package/src/modules/progressIndicator/services/progressIndicator.service.d.ts.map +1 -1
  866. package/src/modules/progressIndicator/services/progressIndicatorOptions.d.ts +14 -14
  867. package/src/pipes/index.d.ts +5 -0
  868. package/src/pipes/index.d.ts.map +1 -0
  869. package/src/pipes/isNaN/isNaN.pipe.d.ts +14 -11
  870. package/src/pipes/isNaN/isNaN.pipe.d.ts.map +1 -1
  871. package/src/pipes/isPresent/isPresent.pipe.d.ts +14 -11
  872. package/src/pipes/isPresent/isPresent.pipe.d.ts.map +1 -1
  873. package/src/pipes/localize/localize.pipe.d.ts +31 -28
  874. package/src/pipes/localize/localize.pipe.d.ts.map +1 -1
  875. package/src/pipes/urlEncode/urlEncode.pipe.d.ts +14 -11
  876. package/src/pipes/urlEncode/urlEncode.pipe.d.ts.map +1 -1
  877. package/src/services/cookies/cookies.service.d.ts +41 -38
  878. package/src/services/cookies/cookies.service.d.ts.map +1 -1
  879. package/src/services/globalization/globalization.service.d.ts +14 -14
  880. package/src/services/ignoredInterceptors/ignoredInterceptors.service.d.ts +38 -35
  881. package/src/services/ignoredInterceptors/ignoredInterceptors.service.d.ts.map +1 -1
  882. package/src/services/logger/index.d.ts +2 -2
  883. package/src/services/logger/logger.interface.d.ts +83 -83
  884. package/src/services/logger/logger.interface.d.ts.map +1 -1
  885. package/src/services/logger/logger.service.d.ts +84 -84
  886. package/src/services/logger/logger.service.d.ts.map +1 -1
  887. package/src/services/notifications/defaultNotifications.service.d.ts +99 -96
  888. package/src/services/notifications/defaultNotifications.service.d.ts.map +1 -1
  889. package/src/services/notifications/index.d.ts +3 -3
  890. package/src/services/notifications/notifications.interface.d.ts +142 -142
  891. package/src/services/notifications/notificationsOptions.d.ts +10 -10
  892. package/src/services/permanentStorage/cookiePermanentStorage.service.d.ts +35 -32
  893. package/src/services/permanentStorage/cookiePermanentStorage.service.d.ts.map +1 -1
  894. package/src/services/permanentStorage/index.d.ts +2 -2
  895. package/src/services/permanentStorage/permanentStorage.interface.d.ts +28 -28
  896. package/src/services/permanentStorage/permanentStorage.interface.d.ts.map +1 -1
  897. package/src/services/positioning/index.d.ts +1 -1
  898. package/src/services/positioning/positioning.interface.d.ts +5 -5
  899. package/src/services/statusCode/statusCode.service.d.ts +21 -18
  900. package/src/services/statusCode/statusCode.service.d.ts.map +1 -1
  901. package/src/services/stringLocalization/index.d.ts +2 -2
  902. package/src/services/stringLocalization/noStringLocalization.service.d.ts +25 -21
  903. package/src/services/stringLocalization/noStringLocalization.service.d.ts.map +1 -1
  904. package/src/services/stringLocalization/stringLocalization.interface.d.ts +16 -16
  905. package/src/services/temporaryStorage/index.d.ts +2 -2
  906. package/src/services/temporaryStorage/memoryTemporaryStorage.service.d.ts +29 -26
  907. package/src/services/temporaryStorage/memoryTemporaryStorage.service.d.ts.map +1 -1
  908. package/src/services/temporaryStorage/temporaryStorage.interface.d.ts +21 -21
  909. package/src/types/additionalInfo.d.ts +10 -10
  910. package/src/types/tokens.d.ts +47 -47
  911. package/src/utils/index.d.ts +23 -23
  912. package/store/common-store.d.ts +61 -0
  913. package/store/common-store.internal.d.ts +61 -0
  914. package/store/package.json +7 -6
  915. package/store/src/index.d.ts +2 -0
  916. package/store/src/index.d.ts.map +1 -0
  917. package/store/src/services/index.d.ts +2 -2
  918. package/store/src/services/permanentStorage/localPermanentStorage.service.d.ts +33 -30
  919. package/store/src/services/permanentStorage/localPermanentStorage.service.d.ts.map +1 -1
  920. package/store/src/services/temporaryStorage/sessionTemporaryStorage.service.d.ts +25 -22
  921. package/store/src/services/temporaryStorage/sessionTemporaryStorage.service.d.ts.map +1 -1
  922. package/store/src/types/store.typings.d.ts +4 -0
  923. package/store/src/types/store.typings.d.ts.map +1 -0
  924. package/store/temp/common-store.api.md +37 -0
  925. package/structured-log/common-structured-log.d.ts +418 -0
  926. package/structured-log/common-structured-log.internal.d.ts +418 -0
  927. package/structured-log/package.json +7 -6
  928. package/structured-log/src/components/console/console.component.animations.d.ts +4 -4
  929. package/structured-log/src/components/console/console.component.d.ts +54 -51
  930. package/structured-log/src/components/console/console.component.d.ts.map +1 -1
  931. package/structured-log/src/index.d.ts +12 -0
  932. package/structured-log/src/index.d.ts.map +1 -0
  933. package/structured-log/src/misc/utils.d.ts +13 -13
  934. package/structured-log/src/modules/consoleLog.module.d.ts +16 -10
  935. package/structured-log/src/modules/consoleLog.module.d.ts.map +1 -1
  936. package/structured-log/src/services/console/consoleComponentSink.service.d.ts +44 -41
  937. package/structured-log/src/services/console/consoleComponentSink.service.d.ts.map +1 -1
  938. package/structured-log/src/services/console/consoleSinkConfig.service.d.ts +17 -14
  939. package/structured-log/src/services/console/consoleSinkConfig.service.d.ts.map +1 -1
  940. package/structured-log/src/services/logger.service.d.ts +93 -90
  941. package/structured-log/src/services/logger.service.d.ts.map +1 -1
  942. package/structured-log/src/services/rest/restSink.service.d.ts +43 -40
  943. package/structured-log/src/services/rest/restSink.service.d.ts.map +1 -1
  944. package/structured-log/src/services/rest/restSinkConfig.service.d.ts +21 -18
  945. package/structured-log/src/services/rest/restSinkConfig.service.d.ts.map +1 -1
  946. package/structured-log/src/types/logger.interface.d.ts +62 -62
  947. package/structured-log/src/types/logger.interface.d.ts.map +1 -1
  948. package/structured-log/src/types/structured-log.typings.d.ts +355 -0
  949. package/structured-log/src/types/structured-log.typings.d.ts.map +1 -0
  950. package/structured-log/src/types/tokens.d.ts +37 -37
  951. package/structured-log/src/types/tokens.d.ts.map +1 -1
  952. package/structured-log/temp/common-structured-log.api.md +193 -0
  953. package/version.bak +1 -1
  954. package/appveyor.yml +0 -67
  955. package/common.d.ts.map +0 -1
  956. package/common.metadata.json +0 -1
  957. package/date-fns/dist/es2015/date-fns/index.js +0 -10
  958. package/date-fns/dist/es2015/date-fns/public_api.js +0 -7
  959. package/date-fns/dist/es2015/date-fns/src/date-fns.js +0 -7
  960. package/date-fns/dist/es2015/date-fns/src/misc/utils.js +0 -38
  961. package/date-fns/dist/es2015/forms/src/directives/groupHasError/groupHasError.directive.js +0 -128
  962. package/date-fns/dist/es2015/forms/src/directives/hasError/hasError.directive.js +0 -300
  963. package/date-fns/dist/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -104
  964. package/date-fns/dist/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -104
  965. package/date-fns/dist/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -125
  966. package/date-fns/dist/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -41
  967. package/date-fns/dist/es2015/forms/src/directives/requiredClass/requiredClass.directive.js +0 -89
  968. package/date-fns/dist/es2015/forms/src/forms.js +0 -25
  969. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -17
  970. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -17
  971. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -16
  972. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/email.decorator.js +0 -17
  973. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -17
  974. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -34
  975. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -17
  976. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -34
  977. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/index.js +0 -25
  978. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -60
  979. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -18
  980. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -18
  981. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -18
  982. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -18
  983. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -52
  984. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/number.decorator.js +0 -17
  985. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -18
  986. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/required.decorator.js +0 -17
  987. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -39
  988. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/validator.decorator.js +0 -17
  989. package/date-fns/dist/es2015/forms/src/misc/formModel/index.js +0 -13
  990. package/date-fns/dist/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -29
  991. package/date-fns/dist/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -49
  992. package/date-fns/dist/es2015/forms/src/misc/formModel/interfaces/validator.interface.js +0 -18
  993. package/date-fns/dist/es2015/forms/src/misc/formModel/misc/currentValue.js +0 -40
  994. package/date-fns/dist/es2015/forms/src/misc/formModel/misc/defaults.js +0 -19
  995. package/date-fns/dist/es2015/forms/src/misc/formModel/misc/utils.js +0 -134
  996. package/date-fns/dist/es2015/forms/src/misc/formModel/misc/validatorFactories.js +0 -64
  997. package/date-fns/dist/es2015/forms/src/misc/types.js +0 -12
  998. package/date-fns/dist/es2015/forms/src/misc/utils.js +0 -135
  999. package/date-fns/dist/es2015/forms/src/misc/validators.js +0 -65
  1000. package/date-fns/dist/es2015/forms/src/modules/hasError.module.js +0 -22
  1001. package/date-fns/dist/es2015/forms/src/modules/numberInput.module.js +0 -28
  1002. package/date-fns/dist/es2015/forms/src/modules/requiredClass.module.js +0 -19
  1003. package/date-fns/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -23
  1004. package/date-fns/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -107
  1005. package/date-fns/dist/es2015/forms/src/services/submitted/submitted.service.js +0 -69
  1006. package/date-fns/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -109
  1007. package/date-fns/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -371
  1008. package/date-fns/dist/es5/date-fns/index.js +0 -10
  1009. package/date-fns/dist/es5/date-fns/public_api.js +0 -7
  1010. package/date-fns/dist/es5/date-fns/src/date-fns.js +0 -7
  1011. package/date-fns/dist/es5/date-fns/src/misc/utils.js +0 -38
  1012. package/date-fns/dist/es5/forms/src/directives/groupHasError/groupHasError.directive.js +0 -159
  1013. package/date-fns/dist/es5/forms/src/directives/hasError/hasError.directive.js +0 -368
  1014. package/date-fns/dist/es5/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -123
  1015. package/date-fns/dist/es5/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -123
  1016. package/date-fns/dist/es5/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -150
  1017. package/date-fns/dist/es5/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -58
  1018. package/date-fns/dist/es5/forms/src/directives/requiredClass/requiredClass.directive.js +0 -105
  1019. package/date-fns/dist/es5/forms/src/forms.js +0 -25
  1020. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -17
  1021. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -17
  1022. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -16
  1023. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/email.decorator.js +0 -17
  1024. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -17
  1025. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -34
  1026. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -17
  1027. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -34
  1028. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/index.js +0 -25
  1029. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -60
  1030. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -18
  1031. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -18
  1032. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -18
  1033. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -18
  1034. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -62
  1035. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/number.decorator.js +0 -17
  1036. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -18
  1037. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/required.decorator.js +0 -17
  1038. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -39
  1039. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/validator.decorator.js +0 -17
  1040. package/date-fns/dist/es5/forms/src/misc/formModel/index.js +0 -13
  1041. package/date-fns/dist/es5/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -29
  1042. package/date-fns/dist/es5/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -49
  1043. package/date-fns/dist/es5/forms/src/misc/formModel/interfaces/validator.interface.js +0 -18
  1044. package/date-fns/dist/es5/forms/src/misc/formModel/misc/currentValue.js +0 -50
  1045. package/date-fns/dist/es5/forms/src/misc/formModel/misc/defaults.js +0 -19
  1046. package/date-fns/dist/es5/forms/src/misc/formModel/misc/utils.js +0 -150
  1047. package/date-fns/dist/es5/forms/src/misc/formModel/misc/validatorFactories.js +0 -104
  1048. package/date-fns/dist/es5/forms/src/misc/types.js +0 -12
  1049. package/date-fns/dist/es5/forms/src/misc/utils.js +0 -139
  1050. package/date-fns/dist/es5/forms/src/misc/validators.js +0 -102
  1051. package/date-fns/dist/es5/forms/src/modules/hasError.module.js +0 -26
  1052. package/date-fns/dist/es5/forms/src/modules/numberInput.module.js +0 -32
  1053. package/date-fns/dist/es5/forms/src/modules/requiredClass.module.js +0 -23
  1054. package/date-fns/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -23
  1055. package/date-fns/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -120
  1056. package/date-fns/dist/es5/forms/src/services/submitted/submitted.service.js +0 -100
  1057. package/date-fns/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -109
  1058. package/date-fns/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -492
  1059. package/date-fns/index.d.ts +0 -5
  1060. package/date-fns/index.d.ts.map +0 -1
  1061. package/date-fns/index.metadata.json +0 -1
  1062. package/date-fns/public_api.d.ts +0 -2
  1063. package/date-fns/public_api.d.ts.map +0 -1
  1064. package/date-fns/src/date-fns.d.ts +0 -2
  1065. package/date-fns/src/date-fns.d.ts.map +0 -1
  1066. package/dist/es2015/common.js +0 -11
  1067. package/dist/es2015/public_api.js +0 -7
  1068. package/dist/es2015/src/common.js +0 -41
  1069. package/dist/es2015/src/decorators/hmrData.decorator.js +0 -22
  1070. package/dist/es2015/src/decorators/hmrServiceData.decorator.js +0 -22
  1071. package/dist/es2015/src/decorators/hmrServiceDataConstructor.decorator.js +0 -21
  1072. package/dist/es2015/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js +0 -148
  1073. package/dist/es2015/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js +0 -111
  1074. package/dist/es2015/src/modules/clickOutside/modules/clickOutside.module.js +0 -24
  1075. package/dist/es2015/src/modules/common.module.js +0 -39
  1076. package/dist/es2015/src/modules/debugData/components/debugData/debugData.component.js +0 -121
  1077. package/dist/es2015/src/modules/debugData/modules/debugData.module.js +0 -27
  1078. package/dist/es2015/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +0 -71
  1079. package/dist/es2015/src/modules/multiButton/components/multiButton/multiButton.component.js +0 -196
  1080. package/dist/es2015/src/modules/multiButton/components/multiButton/multiButton.interface.js +0 -43
  1081. package/dist/es2015/src/modules/multiButton/misc/tokens.js +0 -12
  1082. package/dist/es2015/src/modules/multiButton/modules/multiButton.module.js +0 -27
  1083. package/dist/es2015/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js +0 -121
  1084. package/dist/es2015/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js +0 -229
  1085. package/dist/es2015/src/modules/progressIndicator/interceptors/progressInterceptor.js +0 -85
  1086. package/dist/es2015/src/modules/progressIndicator/misc/types.js +0 -18
  1087. package/dist/es2015/src/modules/progressIndicator/modules/progressIndicator.module.js +0 -32
  1088. package/dist/es2015/src/modules/progressIndicator/services/progressIndicator.service.js +0 -366
  1089. package/dist/es2015/src/modules/progressIndicator/services/progressIndicatorOptions.js +0 -46
  1090. package/dist/es2015/src/pipes/isNaN/isNaN.pipe.js +0 -26
  1091. package/dist/es2015/src/pipes/isPresent/isPresent.pipe.js +0 -27
  1092. package/dist/es2015/src/pipes/localize/localize.pipe.js +0 -85
  1093. package/dist/es2015/src/pipes/urlEncode/urlEncode.pipe.js +0 -28
  1094. package/dist/es2015/src/services/cookies/cookies.service.js +0 -132
  1095. package/dist/es2015/src/services/globalization/globalization.service.js +0 -26
  1096. package/dist/es2015/src/services/ignoredInterceptors/ignoredInterceptors.service.js +0 -97
  1097. package/dist/es2015/src/services/logger/index.js +0 -8
  1098. package/dist/es2015/src/services/logger/logger.interface.js +0 -103
  1099. package/dist/es2015/src/services/logger/logger.service.js +0 -53
  1100. package/dist/es2015/src/services/notifications/defaultNotifications.service.js +0 -335
  1101. package/dist/es2015/src/services/notifications/index.js +0 -9
  1102. package/dist/es2015/src/services/notifications/notifications.interface.js +0 -182
  1103. package/dist/es2015/src/services/notifications/notificationsOptions.js +0 -33
  1104. package/dist/es2015/src/services/permanentStorage/cookiePermanentStorage.service.js +0 -62
  1105. package/dist/es2015/src/services/permanentStorage/index.js +0 -8
  1106. package/dist/es2015/src/services/permanentStorage/permanentStorage.interface.js +0 -41
  1107. package/dist/es2015/src/services/positioning/index.js +0 -7
  1108. package/dist/es2015/src/services/positioning/positioning.interface.js +0 -11
  1109. package/dist/es2015/src/services/statusCode/statusCode.service.js +0 -42
  1110. package/dist/es2015/src/services/stringLocalization/index.js +0 -8
  1111. package/dist/es2015/src/services/stringLocalization/noStringLocalization.service.js +0 -60
  1112. package/dist/es2015/src/services/stringLocalization/stringLocalization.interface.js +0 -25
  1113. package/dist/es2015/src/services/temporaryStorage/index.js +0 -8
  1114. package/dist/es2015/src/services/temporaryStorage/memoryTemporaryStorage.service.js +0 -58
  1115. package/dist/es2015/src/services/temporaryStorage/temporaryStorage.interface.js +0 -33
  1116. package/dist/es2015/src/types/additionalInfo.js +0 -19
  1117. package/dist/es2015/src/types/tokens.js +0 -69
  1118. package/dist/es2015/src/utils/httpRequest.extension.js +0 -26
  1119. package/dist/es2015/src/utils/index.js +0 -80
  1120. package/dist/es5/common.js +0 -11
  1121. package/dist/es5/public_api.js +0 -7
  1122. package/dist/es5/src/common.js +0 -41
  1123. package/dist/es5/src/decorators/hmrData.decorator.js +0 -22
  1124. package/dist/es5/src/decorators/hmrServiceData.decorator.js +0 -22
  1125. package/dist/es5/src/decorators/hmrServiceDataConstructor.decorator.js +0 -21
  1126. package/dist/es5/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js +0 -169
  1127. package/dist/es5/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js +0 -130
  1128. package/dist/es5/src/modules/clickOutside/modules/clickOutside.module.js +0 -28
  1129. package/dist/es5/src/modules/common.module.js +0 -43
  1130. package/dist/es5/src/modules/debugData/components/debugData/debugData.component.js +0 -150
  1131. package/dist/es5/src/modules/debugData/modules/debugData.module.js +0 -31
  1132. package/dist/es5/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +0 -102
  1133. package/dist/es5/src/modules/multiButton/components/multiButton/multiButton.component.js +0 -229
  1134. package/dist/es5/src/modules/multiButton/components/multiButton/multiButton.interface.js +0 -43
  1135. package/dist/es5/src/modules/multiButton/misc/tokens.js +0 -12
  1136. package/dist/es5/src/modules/multiButton/modules/multiButton.module.js +0 -31
  1137. package/dist/es5/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js +0 -148
  1138. package/dist/es5/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js +0 -266
  1139. package/dist/es5/src/modules/progressIndicator/interceptors/progressInterceptor.js +0 -98
  1140. package/dist/es5/src/modules/progressIndicator/misc/types.js +0 -18
  1141. package/dist/es5/src/modules/progressIndicator/modules/progressIndicator.module.js +0 -36
  1142. package/dist/es5/src/modules/progressIndicator/services/progressIndicator.service.js +0 -489
  1143. package/dist/es5/src/modules/progressIndicator/services/progressIndicatorOptions.js +0 -50
  1144. package/dist/es5/src/pipes/isNaN/isNaN.pipe.js +0 -42
  1145. package/dist/es5/src/pipes/isPresent/isPresent.pipe.js +0 -43
  1146. package/dist/es5/src/pipes/localize/localize.pipe.js +0 -118
  1147. package/dist/es5/src/pipes/urlEncode/urlEncode.pipe.js +0 -44
  1148. package/dist/es5/src/services/cookies/cookies.service.js +0 -183
  1149. package/dist/es5/src/services/globalization/globalization.service.js +0 -38
  1150. package/dist/es5/src/services/ignoredInterceptors/ignoredInterceptors.service.js +0 -133
  1151. package/dist/es5/src/services/logger/index.js +0 -8
  1152. package/dist/es5/src/services/logger/logger.interface.js +0 -103
  1153. package/dist/es5/src/services/logger/logger.service.js +0 -117
  1154. package/dist/es5/src/services/notifications/defaultNotifications.service.js +0 -469
  1155. package/dist/es5/src/services/notifications/index.js +0 -9
  1156. package/dist/es5/src/services/notifications/notifications.interface.js +0 -204
  1157. package/dist/es5/src/services/notifications/notificationsOptions.js +0 -38
  1158. package/dist/es5/src/services/permanentStorage/cookiePermanentStorage.service.js +0 -96
  1159. package/dist/es5/src/services/permanentStorage/index.js +0 -8
  1160. package/dist/es5/src/services/permanentStorage/permanentStorage.interface.js +0 -41
  1161. package/dist/es5/src/services/positioning/index.js +0 -7
  1162. package/dist/es5/src/services/positioning/positioning.interface.js +0 -11
  1163. package/dist/es5/src/services/statusCode/statusCode.service.js +0 -67
  1164. package/dist/es5/src/services/stringLocalization/index.js +0 -8
  1165. package/dist/es5/src/services/stringLocalization/noStringLocalization.service.js +0 -85
  1166. package/dist/es5/src/services/stringLocalization/stringLocalization.interface.js +0 -25
  1167. package/dist/es5/src/services/temporaryStorage/index.js +0 -8
  1168. package/dist/es5/src/services/temporaryStorage/memoryTemporaryStorage.service.js +0 -93
  1169. package/dist/es5/src/services/temporaryStorage/temporaryStorage.interface.js +0 -33
  1170. package/dist/es5/src/types/additionalInfo.js +0 -19
  1171. package/dist/es5/src/types/tokens.js +0 -69
  1172. package/dist/es5/src/utils/httpRequest.extension.js +0 -26
  1173. package/dist/es5/src/utils/index.js +0 -80
  1174. package/forms/dist/es2015/forms/index.js +0 -10
  1175. package/forms/dist/es2015/forms/public_api.js +0 -7
  1176. package/forms/dist/es2015/forms/src/directives/groupHasError/groupHasError.directive.js +0 -128
  1177. package/forms/dist/es2015/forms/src/directives/hasError/hasError.directive.js +0 -300
  1178. package/forms/dist/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -104
  1179. package/forms/dist/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -104
  1180. package/forms/dist/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -125
  1181. package/forms/dist/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -41
  1182. package/forms/dist/es2015/forms/src/directives/requiredClass/requiredClass.directive.js +0 -89
  1183. package/forms/dist/es2015/forms/src/forms.js +0 -25
  1184. package/forms/dist/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -17
  1185. package/forms/dist/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -17
  1186. package/forms/dist/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -16
  1187. package/forms/dist/es2015/forms/src/misc/formModel/decorators/email.decorator.js +0 -17
  1188. package/forms/dist/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -17
  1189. package/forms/dist/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -34
  1190. package/forms/dist/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -17
  1191. package/forms/dist/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -34
  1192. package/forms/dist/es2015/forms/src/misc/formModel/decorators/index.js +0 -25
  1193. package/forms/dist/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -60
  1194. package/forms/dist/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -18
  1195. package/forms/dist/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -18
  1196. package/forms/dist/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -18
  1197. package/forms/dist/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -18
  1198. package/forms/dist/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -52
  1199. package/forms/dist/es2015/forms/src/misc/formModel/decorators/number.decorator.js +0 -17
  1200. package/forms/dist/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -18
  1201. package/forms/dist/es2015/forms/src/misc/formModel/decorators/required.decorator.js +0 -17
  1202. package/forms/dist/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -39
  1203. package/forms/dist/es2015/forms/src/misc/formModel/decorators/validator.decorator.js +0 -17
  1204. package/forms/dist/es2015/forms/src/misc/formModel/index.js +0 -13
  1205. package/forms/dist/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -29
  1206. package/forms/dist/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -49
  1207. package/forms/dist/es2015/forms/src/misc/formModel/interfaces/validator.interface.js +0 -18
  1208. package/forms/dist/es2015/forms/src/misc/formModel/misc/currentValue.js +0 -40
  1209. package/forms/dist/es2015/forms/src/misc/formModel/misc/defaults.js +0 -19
  1210. package/forms/dist/es2015/forms/src/misc/formModel/misc/utils.js +0 -134
  1211. package/forms/dist/es2015/forms/src/misc/formModel/misc/validatorFactories.js +0 -64
  1212. package/forms/dist/es2015/forms/src/misc/types.js +0 -12
  1213. package/forms/dist/es2015/forms/src/misc/utils.js +0 -135
  1214. package/forms/dist/es2015/forms/src/misc/validators.js +0 -65
  1215. package/forms/dist/es2015/forms/src/modules/hasError.module.js +0 -22
  1216. package/forms/dist/es2015/forms/src/modules/numberInput.module.js +0 -28
  1217. package/forms/dist/es2015/forms/src/modules/requiredClass.module.js +0 -19
  1218. package/forms/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -23
  1219. package/forms/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -107
  1220. package/forms/dist/es2015/forms/src/services/submitted/submitted.service.js +0 -69
  1221. package/forms/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -109
  1222. package/forms/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -371
  1223. package/forms/dist/es5/forms/index.js +0 -10
  1224. package/forms/dist/es5/forms/public_api.js +0 -7
  1225. package/forms/dist/es5/forms/src/directives/groupHasError/groupHasError.directive.js +0 -159
  1226. package/forms/dist/es5/forms/src/directives/hasError/hasError.directive.js +0 -368
  1227. package/forms/dist/es5/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -123
  1228. package/forms/dist/es5/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -123
  1229. package/forms/dist/es5/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -150
  1230. package/forms/dist/es5/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -58
  1231. package/forms/dist/es5/forms/src/directives/requiredClass/requiredClass.directive.js +0 -105
  1232. package/forms/dist/es5/forms/src/forms.js +0 -25
  1233. package/forms/dist/es5/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -17
  1234. package/forms/dist/es5/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -17
  1235. package/forms/dist/es5/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -16
  1236. package/forms/dist/es5/forms/src/misc/formModel/decorators/email.decorator.js +0 -17
  1237. package/forms/dist/es5/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -17
  1238. package/forms/dist/es5/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -34
  1239. package/forms/dist/es5/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -17
  1240. package/forms/dist/es5/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -34
  1241. package/forms/dist/es5/forms/src/misc/formModel/decorators/index.js +0 -25
  1242. package/forms/dist/es5/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -60
  1243. package/forms/dist/es5/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -18
  1244. package/forms/dist/es5/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -18
  1245. package/forms/dist/es5/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -18
  1246. package/forms/dist/es5/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -18
  1247. package/forms/dist/es5/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -62
  1248. package/forms/dist/es5/forms/src/misc/formModel/decorators/number.decorator.js +0 -17
  1249. package/forms/dist/es5/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -18
  1250. package/forms/dist/es5/forms/src/misc/formModel/decorators/required.decorator.js +0 -17
  1251. package/forms/dist/es5/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -39
  1252. package/forms/dist/es5/forms/src/misc/formModel/decorators/validator.decorator.js +0 -17
  1253. package/forms/dist/es5/forms/src/misc/formModel/index.js +0 -13
  1254. package/forms/dist/es5/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -29
  1255. package/forms/dist/es5/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -49
  1256. package/forms/dist/es5/forms/src/misc/formModel/interfaces/validator.interface.js +0 -18
  1257. package/forms/dist/es5/forms/src/misc/formModel/misc/currentValue.js +0 -50
  1258. package/forms/dist/es5/forms/src/misc/formModel/misc/defaults.js +0 -19
  1259. package/forms/dist/es5/forms/src/misc/formModel/misc/utils.js +0 -150
  1260. package/forms/dist/es5/forms/src/misc/formModel/misc/validatorFactories.js +0 -104
  1261. package/forms/dist/es5/forms/src/misc/types.js +0 -12
  1262. package/forms/dist/es5/forms/src/misc/utils.js +0 -139
  1263. package/forms/dist/es5/forms/src/misc/validators.js +0 -102
  1264. package/forms/dist/es5/forms/src/modules/hasError.module.js +0 -26
  1265. package/forms/dist/es5/forms/src/modules/numberInput.module.js +0 -32
  1266. package/forms/dist/es5/forms/src/modules/requiredClass.module.js +0 -23
  1267. package/forms/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -23
  1268. package/forms/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -120
  1269. package/forms/dist/es5/forms/src/services/submitted/submitted.service.js +0 -100
  1270. package/forms/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -109
  1271. package/forms/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -492
  1272. package/forms/index.d.ts +0 -5
  1273. package/forms/index.d.ts.map +0 -1
  1274. package/forms/index.metadata.json +0 -1
  1275. package/forms/public_api.d.ts +0 -2
  1276. package/forms/public_api.d.ts.map +0 -1
  1277. package/forms/src/directives/groupHasError/groupHasError.directive.ngfactory.d.ts.map +0 -1
  1278. package/forms/src/directives/hasError/hasError.directive.ngfactory.d.ts.map +0 -1
  1279. package/forms/src/directives/numberInput/maxValueNumberValidator.directive.ngfactory.d.ts.map +0 -1
  1280. package/forms/src/directives/numberInput/minValueNumberValidator.directive.ngfactory.d.ts.map +0 -1
  1281. package/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.ngfactory.d.ts.map +0 -1
  1282. package/forms/src/directives/numberInput/numberInputValidator.directive.ngfactory.d.ts.map +0 -1
  1283. package/forms/src/directives/requiredClass/requiredClass.directive.ngfactory.d.ts.map +0 -1
  1284. package/forms/src/forms.d.ts +0 -20
  1285. package/forms/src/forms.d.ts.map +0 -1
  1286. package/forms/src/modules/hasError.module.ngfactory.d.ts.map +0 -1
  1287. package/forms/src/modules/numberInput.module.ngfactory.d.ts.map +0 -1
  1288. package/forms/src/modules/requiredClass.module.ngfactory.d.ts.map +0 -1
  1289. package/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.ngfactory.d.ts.map +0 -1
  1290. package/forms/src/services/submitted/submitted.service.ngfactory.d.ts.map +0 -1
  1291. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.ngfactory.d.ts.map +0 -1
  1292. package/hmr/dist/es2015/hmr/index.js +0 -10
  1293. package/hmr/dist/es2015/hmr/public_api.js +0 -7
  1294. package/hmr/dist/es2015/hmr/src/hmr.js +0 -84
  1295. package/hmr/dist/es5/hmr/index.js +0 -10
  1296. package/hmr/dist/es5/hmr/public_api.js +0 -7
  1297. package/hmr/dist/es5/hmr/src/hmr.js +0 -85
  1298. package/hmr/index.d.ts +0 -5
  1299. package/hmr/index.d.ts.map +0 -1
  1300. package/hmr/index.metadata.json +0 -1
  1301. package/hmr/public_api.d.ts +0 -2
  1302. package/hmr/public_api.d.ts.map +0 -1
  1303. package/hmr/src/hmr.d.ts +0 -13
  1304. package/hmr/src/hmr.d.ts.map +0 -1
  1305. package/hotkeys/dist/es2015/hotkeys/index.js +0 -10
  1306. package/hotkeys/dist/es2015/hotkeys/public_api.js +0 -7
  1307. package/hotkeys/dist/es2015/hotkeys/src/hotkeys.js +0 -7
  1308. package/hotkeys/dist/es2015/hotkeys/src/services/appHotkeys.service.js +0 -205
  1309. package/hotkeys/dist/es5/hotkeys/index.js +0 -10
  1310. package/hotkeys/dist/es5/hotkeys/public_api.js +0 -7
  1311. package/hotkeys/dist/es5/hotkeys/src/hotkeys.js +0 -7
  1312. package/hotkeys/dist/es5/hotkeys/src/services/appHotkeys.service.js +0 -241
  1313. package/hotkeys/index.d.ts +0 -5
  1314. package/hotkeys/index.d.ts.map +0 -1
  1315. package/hotkeys/index.metadata.json +0 -1
  1316. package/hotkeys/public_api.d.ts +0 -2
  1317. package/hotkeys/public_api.d.ts.map +0 -1
  1318. package/hotkeys/src/hotkeys.d.ts +0 -2
  1319. package/hotkeys/src/hotkeys.d.ts.map +0 -1
  1320. package/material/dist/es2015/material/index.js +0 -11
  1321. package/material/dist/es2015/material/public_api.js +0 -7
  1322. package/material/dist/es2015/material/src/components/confirmationDialog/confirmationDialog.component.js +0 -65
  1323. package/material/dist/es2015/material/src/components/titledDialog/titledDialog.component.js +0 -65
  1324. package/material/dist/es2015/material/src/directives/confirmationDialog/confirmationDialog.directive.js +0 -129
  1325. package/material/dist/es2015/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +0 -70
  1326. package/material/dist/es2015/material/src/material.js +0 -15
  1327. package/material/dist/es2015/material/src/misc/interfaces/confirmationDialog.interface.js +0 -28
  1328. package/material/dist/es2015/material/src/misc/interfaces/titledDialog.interface.js +0 -47
  1329. package/material/dist/es2015/material/src/misc/tokens.js +0 -12
  1330. package/material/dist/es2015/material/src/modules/confirmationDialog.module.js +0 -33
  1331. package/material/dist/es2015/material/src/modules/debugDataCopyClick.module.js +0 -26
  1332. package/material/dist/es2015/material/src/modules/titledDialog.module.js +0 -30
  1333. package/material/dist/es2015/material/src/services/titledDialog/titledDialog.service.js +0 -55
  1334. package/material/dist/es5/material/index.js +0 -11
  1335. package/material/dist/es5/material/public_api.js +0 -7
  1336. package/material/dist/es5/material/src/components/confirmationDialog/confirmationDialog.component.js +0 -62
  1337. package/material/dist/es5/material/src/components/titledDialog/titledDialog.component.js +0 -66
  1338. package/material/dist/es5/material/src/directives/confirmationDialog/confirmationDialog.directive.js +0 -173
  1339. package/material/dist/es5/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +0 -83
  1340. package/material/dist/es5/material/src/material.js +0 -15
  1341. package/material/dist/es5/material/src/misc/interfaces/confirmationDialog.interface.js +0 -28
  1342. package/material/dist/es5/material/src/misc/interfaces/titledDialog.interface.js +0 -47
  1343. package/material/dist/es5/material/src/misc/tokens.js +0 -12
  1344. package/material/dist/es5/material/src/modules/confirmationDialog.module.js +0 -37
  1345. package/material/dist/es5/material/src/modules/debugDataCopyClick.module.js +0 -30
  1346. package/material/dist/es5/material/src/modules/titledDialog.module.js +0 -34
  1347. package/material/dist/es5/material/src/services/titledDialog/titledDialog.service.js +0 -70
  1348. package/material/index.d.ts +0 -7
  1349. package/material/index.d.ts.map +0 -1
  1350. package/material/index.metadata.json +0 -1
  1351. package/material/public_api.d.ts +0 -2
  1352. package/material/public_api.d.ts.map +0 -1
  1353. package/material/src/components/confirmationDialog/confirmationDialog.component.ngfactory.d.ts.map +0 -1
  1354. package/material/src/components/titledDialog/titledDialog.component.css.shim.ngstyle.d.ts.map +0 -1
  1355. package/material/src/components/titledDialog/titledDialog.component.ngfactory.d.ts.map +0 -1
  1356. package/material/src/directives/confirmationDialog/confirmationDialog.directive.ngfactory.d.ts.map +0 -1
  1357. package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.ngfactory.d.ts.map +0 -1
  1358. package/material/src/material.d.ts +0 -11
  1359. package/material/src/material.d.ts.map +0 -1
  1360. package/material/src/modules/confirmationDialog.module.ngfactory.d.ts.map +0 -1
  1361. package/material/src/modules/debugDataCopyClick.module.ngfactory.d.ts.map +0 -1
  1362. package/material/src/modules/titledDialog.module.ngfactory.d.ts.map +0 -1
  1363. package/material/src/services/titledDialog/titledDialog.service.ngfactory.d.ts.map +0 -1
  1364. package/moment/dist/es2015/forms/src/directives/groupHasError/groupHasError.directive.js +0 -128
  1365. package/moment/dist/es2015/forms/src/directives/hasError/hasError.directive.js +0 -300
  1366. package/moment/dist/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -104
  1367. package/moment/dist/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -104
  1368. package/moment/dist/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -125
  1369. package/moment/dist/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -41
  1370. package/moment/dist/es2015/forms/src/directives/requiredClass/requiredClass.directive.js +0 -89
  1371. package/moment/dist/es2015/forms/src/forms.js +0 -25
  1372. package/moment/dist/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -17
  1373. package/moment/dist/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -17
  1374. package/moment/dist/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -16
  1375. package/moment/dist/es2015/forms/src/misc/formModel/decorators/email.decorator.js +0 -17
  1376. package/moment/dist/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -17
  1377. package/moment/dist/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -34
  1378. package/moment/dist/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -17
  1379. package/moment/dist/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -34
  1380. package/moment/dist/es2015/forms/src/misc/formModel/decorators/index.js +0 -25
  1381. package/moment/dist/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -60
  1382. package/moment/dist/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -18
  1383. package/moment/dist/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -18
  1384. package/moment/dist/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -18
  1385. package/moment/dist/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -18
  1386. package/moment/dist/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -52
  1387. package/moment/dist/es2015/forms/src/misc/formModel/decorators/number.decorator.js +0 -17
  1388. package/moment/dist/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -18
  1389. package/moment/dist/es2015/forms/src/misc/formModel/decorators/required.decorator.js +0 -17
  1390. package/moment/dist/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -39
  1391. package/moment/dist/es2015/forms/src/misc/formModel/decorators/validator.decorator.js +0 -17
  1392. package/moment/dist/es2015/forms/src/misc/formModel/index.js +0 -13
  1393. package/moment/dist/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -29
  1394. package/moment/dist/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -49
  1395. package/moment/dist/es2015/forms/src/misc/formModel/interfaces/validator.interface.js +0 -18
  1396. package/moment/dist/es2015/forms/src/misc/formModel/misc/currentValue.js +0 -40
  1397. package/moment/dist/es2015/forms/src/misc/formModel/misc/defaults.js +0 -19
  1398. package/moment/dist/es2015/forms/src/misc/formModel/misc/utils.js +0 -134
  1399. package/moment/dist/es2015/forms/src/misc/formModel/misc/validatorFactories.js +0 -64
  1400. package/moment/dist/es2015/forms/src/misc/types.js +0 -12
  1401. package/moment/dist/es2015/forms/src/misc/utils.js +0 -135
  1402. package/moment/dist/es2015/forms/src/misc/validators.js +0 -65
  1403. package/moment/dist/es2015/forms/src/modules/hasError.module.js +0 -22
  1404. package/moment/dist/es2015/forms/src/modules/numberInput.module.js +0 -28
  1405. package/moment/dist/es2015/forms/src/modules/requiredClass.module.js +0 -19
  1406. package/moment/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -23
  1407. package/moment/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -107
  1408. package/moment/dist/es2015/forms/src/services/submitted/submitted.service.js +0 -69
  1409. package/moment/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -109
  1410. package/moment/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -371
  1411. package/moment/dist/es2015/moment/index.js +0 -12
  1412. package/moment/dist/es2015/moment/public_api.js +0 -7
  1413. package/moment/dist/es2015/moment/src/misc/utils.js +0 -41
  1414. package/moment/dist/es2015/moment/src/modules/moment.module.js +0 -26
  1415. package/moment/dist/es2015/moment/src/moment.js +0 -8
  1416. package/moment/dist/es2015/moment/src/pipes/momentConvert/momentConvert.pipe.js +0 -34
  1417. package/moment/dist/es2015/moment/src/pipes/momentFormat/momentFormat.pipe.js +0 -38
  1418. package/moment/dist/es5/forms/src/directives/groupHasError/groupHasError.directive.js +0 -159
  1419. package/moment/dist/es5/forms/src/directives/hasError/hasError.directive.js +0 -368
  1420. package/moment/dist/es5/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -123
  1421. package/moment/dist/es5/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -123
  1422. package/moment/dist/es5/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -150
  1423. package/moment/dist/es5/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -58
  1424. package/moment/dist/es5/forms/src/directives/requiredClass/requiredClass.directive.js +0 -105
  1425. package/moment/dist/es5/forms/src/forms.js +0 -25
  1426. package/moment/dist/es5/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -17
  1427. package/moment/dist/es5/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -17
  1428. package/moment/dist/es5/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -16
  1429. package/moment/dist/es5/forms/src/misc/formModel/decorators/email.decorator.js +0 -17
  1430. package/moment/dist/es5/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -17
  1431. package/moment/dist/es5/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -34
  1432. package/moment/dist/es5/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -17
  1433. package/moment/dist/es5/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -34
  1434. package/moment/dist/es5/forms/src/misc/formModel/decorators/index.js +0 -25
  1435. package/moment/dist/es5/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -60
  1436. package/moment/dist/es5/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -18
  1437. package/moment/dist/es5/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -18
  1438. package/moment/dist/es5/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -18
  1439. package/moment/dist/es5/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -18
  1440. package/moment/dist/es5/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -62
  1441. package/moment/dist/es5/forms/src/misc/formModel/decorators/number.decorator.js +0 -17
  1442. package/moment/dist/es5/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -18
  1443. package/moment/dist/es5/forms/src/misc/formModel/decorators/required.decorator.js +0 -17
  1444. package/moment/dist/es5/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -39
  1445. package/moment/dist/es5/forms/src/misc/formModel/decorators/validator.decorator.js +0 -17
  1446. package/moment/dist/es5/forms/src/misc/formModel/index.js +0 -13
  1447. package/moment/dist/es5/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -29
  1448. package/moment/dist/es5/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -49
  1449. package/moment/dist/es5/forms/src/misc/formModel/interfaces/validator.interface.js +0 -18
  1450. package/moment/dist/es5/forms/src/misc/formModel/misc/currentValue.js +0 -50
  1451. package/moment/dist/es5/forms/src/misc/formModel/misc/defaults.js +0 -19
  1452. package/moment/dist/es5/forms/src/misc/formModel/misc/utils.js +0 -150
  1453. package/moment/dist/es5/forms/src/misc/formModel/misc/validatorFactories.js +0 -104
  1454. package/moment/dist/es5/forms/src/misc/types.js +0 -12
  1455. package/moment/dist/es5/forms/src/misc/utils.js +0 -139
  1456. package/moment/dist/es5/forms/src/misc/validators.js +0 -102
  1457. package/moment/dist/es5/forms/src/modules/hasError.module.js +0 -26
  1458. package/moment/dist/es5/forms/src/modules/numberInput.module.js +0 -32
  1459. package/moment/dist/es5/forms/src/modules/requiredClass.module.js +0 -23
  1460. package/moment/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -23
  1461. package/moment/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -120
  1462. package/moment/dist/es5/forms/src/services/submitted/submitted.service.js +0 -100
  1463. package/moment/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -109
  1464. package/moment/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -492
  1465. package/moment/dist/es5/moment/index.js +0 -12
  1466. package/moment/dist/es5/moment/public_api.js +0 -7
  1467. package/moment/dist/es5/moment/src/misc/utils.js +0 -42
  1468. package/moment/dist/es5/moment/src/modules/moment.module.js +0 -30
  1469. package/moment/dist/es5/moment/src/moment.js +0 -8
  1470. package/moment/dist/es5/moment/src/pipes/momentConvert/momentConvert.pipe.js +0 -50
  1471. package/moment/dist/es5/moment/src/pipes/momentFormat/momentFormat.pipe.js +0 -57
  1472. package/moment/index.d.ts +0 -7
  1473. package/moment/index.d.ts.map +0 -1
  1474. package/moment/index.metadata.json +0 -1
  1475. package/moment/public_api.d.ts +0 -2
  1476. package/moment/public_api.d.ts.map +0 -1
  1477. package/moment/src/modules/moment.module.ngfactory.d.ts.map +0 -1
  1478. package/moment/src/moment.d.ts +0 -3
  1479. package/moment/src/moment.d.ts.map +0 -1
  1480. package/moment/src/pipes/momentConvert/momentConvert.pipe.ngfactory.d.ts.map +0 -1
  1481. package/moment/src/pipes/momentFormat/momentFormat.pipe.ngfactory.d.ts.map +0 -1
  1482. package/numeral/dist/es2015/numeral/index.js +0 -10
  1483. package/numeral/dist/es2015/numeral/public_api.js +0 -7
  1484. package/numeral/dist/es2015/numeral/src/modules/numeral.module.js +0 -19
  1485. package/numeral/dist/es2015/numeral/src/numeral.js +0 -8
  1486. package/numeral/dist/es2015/numeral/src/pipes/numeral.pipe.js +0 -70
  1487. package/numeral/dist/es5/numeral/index.js +0 -10
  1488. package/numeral/dist/es5/numeral/public_api.js +0 -7
  1489. package/numeral/dist/es5/numeral/src/modules/numeral.module.js +0 -23
  1490. package/numeral/dist/es5/numeral/src/numeral.js +0 -8
  1491. package/numeral/dist/es5/numeral/src/pipes/numeral.pipe.js +0 -93
  1492. package/numeral/index.d.ts +0 -5
  1493. package/numeral/index.d.ts.map +0 -1
  1494. package/numeral/index.metadata.json +0 -1
  1495. package/numeral/public_api.d.ts +0 -2
  1496. package/numeral/public_api.d.ts.map +0 -1
  1497. package/numeral/src/modules/numeral.module.ngfactory.d.ts.map +0 -1
  1498. package/numeral/src/numeral.d.ts +0 -3
  1499. package/numeral/src/numeral.d.ts.map +0 -1
  1500. package/numeral/src/pipes/numeral.pipe.ngfactory.d.ts.map +0 -1
  1501. package/positions/dist/es2015/positions/index.js +0 -10
  1502. package/positions/dist/es2015/positions/public_api.js +0 -7
  1503. package/positions/dist/es2015/positions/src/misc/utils.js +0 -148
  1504. package/positions/dist/es2015/positions/src/modules/positions/directives/positionTo/positionTo.directive.js +0 -99
  1505. package/positions/dist/es2015/positions/src/modules/positions/modules/positions.module.js +0 -24
  1506. package/positions/dist/es2015/positions/src/modules/tooltip/components/tooltip/tooltip.component.js +0 -161
  1507. package/positions/dist/es2015/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js +0 -352
  1508. package/positions/dist/es2015/positions/src/modules/tooltip/misc/tokens.js +0 -12
  1509. package/positions/dist/es2015/positions/src/modules/tooltip/misc/tooltip.interface.js +0 -94
  1510. package/positions/dist/es2015/positions/src/modules/tooltip/modules/tooltip.module.js +0 -29
  1511. package/positions/dist/es2015/positions/src/positions.js +0 -14
  1512. package/positions/dist/es5/positions/index.js +0 -10
  1513. package/positions/dist/es5/positions/public_api.js +0 -7
  1514. package/positions/dist/es5/positions/src/misc/utils.js +0 -151
  1515. package/positions/dist/es5/positions/src/modules/positions/directives/positionTo/positionTo.directive.js +0 -109
  1516. package/positions/dist/es5/positions/src/modules/positions/modules/positions.module.js +0 -28
  1517. package/positions/dist/es5/positions/src/modules/tooltip/components/tooltip/tooltip.component.js +0 -201
  1518. package/positions/dist/es5/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js +0 -448
  1519. package/positions/dist/es5/positions/src/modules/tooltip/misc/tokens.js +0 -12
  1520. package/positions/dist/es5/positions/src/modules/tooltip/misc/tooltip.interface.js +0 -94
  1521. package/positions/dist/es5/positions/src/modules/tooltip/modules/tooltip.module.js +0 -33
  1522. package/positions/dist/es5/positions/src/positions.js +0 -14
  1523. package/positions/index.d.ts +0 -5
  1524. package/positions/index.d.ts.map +0 -1
  1525. package/positions/index.metadata.json +0 -1
  1526. package/positions/public_api.d.ts +0 -2
  1527. package/positions/public_api.d.ts.map +0 -1
  1528. package/positions/src/positions.d.ts +0 -9
  1529. package/positions/src/positions.d.ts.map +0 -1
  1530. package/public_api.d.ts +0 -2
  1531. package/public_api.d.ts.map +0 -1
  1532. package/router/dist/es2015/router/index.js +0 -10
  1533. package/router/dist/es2015/router/public_api.js +0 -7
  1534. package/router/dist/es2015/router/src/decorators/componentRedirectRoute.decorator.js +0 -67
  1535. package/router/dist/es2015/router/src/decorators/componentRoute.decorator.js +0 -46
  1536. package/router/dist/es2015/router/src/decorators/moduleRoutes.decorator.js +0 -96
  1537. package/router/dist/es2015/router/src/misc/utils.js +0 -49
  1538. package/router/dist/es2015/router/src/router.js +0 -12
  1539. package/router/dist/es2015/router/src/services/routing/dataRouter.js +0 -130
  1540. package/router/dist/es2015/router/src/services/routing/dataRouterData.js +0 -35
  1541. package/router/dist/es5/router/index.js +0 -10
  1542. package/router/dist/es5/router/public_api.js +0 -7
  1543. package/router/dist/es5/router/src/decorators/componentRedirectRoute.decorator.js +0 -67
  1544. package/router/dist/es5/router/src/decorators/componentRoute.decorator.js +0 -46
  1545. package/router/dist/es5/router/src/decorators/moduleRoutes.decorator.js +0 -96
  1546. package/router/dist/es5/router/src/misc/utils.js +0 -49
  1547. package/router/dist/es5/router/src/router.js +0 -12
  1548. package/router/dist/es5/router/src/services/routing/dataRouter.js +0 -154
  1549. package/router/dist/es5/router/src/services/routing/dataRouterData.js +0 -34
  1550. package/router/index.d.ts +0 -5
  1551. package/router/index.d.ts.map +0 -1
  1552. package/router/index.metadata.json +0 -1
  1553. package/router/public_api.d.ts +0 -2
  1554. package/router/public_api.d.ts.map +0 -1
  1555. package/router/src/router.d.ts +0 -7
  1556. package/router/src/router.d.ts.map +0 -1
  1557. package/src/common.d.ts +0 -39
  1558. package/src/common.d.ts.map +0 -1
  1559. package/src/decorators/hmrData.decorator.d.ts +0 -7
  1560. package/src/decorators/hmrData.decorator.d.ts.map +0 -1
  1561. package/src/decorators/hmrServiceData.decorator.d.ts +0 -7
  1562. package/src/decorators/hmrServiceData.decorator.d.ts.map +0 -1
  1563. package/src/decorators/hmrServiceDataConstructor.decorator.d.ts +0 -7
  1564. package/src/decorators/hmrServiceDataConstructor.decorator.d.ts.map +0 -1
  1565. package/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.ngfactory.d.ts.map +0 -1
  1566. package/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.ngfactory.d.ts.map +0 -1
  1567. package/src/modules/clickOutside/modules/clickOutside.module.ngfactory.d.ts.map +0 -1
  1568. package/src/modules/common.module.ngfactory.d.ts.map +0 -1
  1569. package/src/modules/debugData/components/debugData/debugData.component.css.shim.ngstyle.d.ts.map +0 -1
  1570. package/src/modules/debugData/components/debugData/debugData.component.ngfactory.d.ts.map +0 -1
  1571. package/src/modules/debugData/modules/debugData.module.ngfactory.d.ts.map +0 -1
  1572. package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.ngfactory.d.ts.map +0 -1
  1573. package/src/modules/multiButton/components/multiButton/multiButton.component.css.shim.ngstyle.d.ts.map +0 -1
  1574. package/src/modules/multiButton/components/multiButton/multiButton.component.ngfactory.d.ts.map +0 -1
  1575. package/src/modules/multiButton/modules/multiButton.module.ngfactory.d.ts.map +0 -1
  1576. package/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.css.shim.ngstyle.d.ts.map +0 -1
  1577. package/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.ngfactory.d.ts.map +0 -1
  1578. package/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.ngfactory.d.ts.map +0 -1
  1579. package/src/modules/progressIndicator/interceptors/progressInterceptor.ngfactory.d.ts.map +0 -1
  1580. package/src/modules/progressIndicator/modules/progressIndicator.module.ngfactory.d.ts.map +0 -1
  1581. package/src/modules/progressIndicator/services/progressIndicator.service.ngfactory.d.ts.map +0 -1
  1582. package/src/pipes/isNaN/isNaN.pipe.ngfactory.d.ts.map +0 -1
  1583. package/src/pipes/isPresent/isPresent.pipe.ngfactory.d.ts.map +0 -1
  1584. package/src/pipes/localize/localize.pipe.ngfactory.d.ts.map +0 -1
  1585. package/src/pipes/urlEncode/urlEncode.pipe.ngfactory.d.ts.map +0 -1
  1586. package/src/services/cookies/cookies.service.ngfactory.d.ts.map +0 -1
  1587. package/src/services/ignoredInterceptors/ignoredInterceptors.service.ngfactory.d.ts.map +0 -1
  1588. package/src/services/notifications/defaultNotifications.service.ngfactory.d.ts.map +0 -1
  1589. package/src/services/permanentStorage/cookiePermanentStorage.service.ngfactory.d.ts.map +0 -1
  1590. package/src/services/statusCode/statusCode.service.ngfactory.d.ts.map +0 -1
  1591. package/src/services/stringLocalization/noStringLocalization.service.ngfactory.d.ts.map +0 -1
  1592. package/src/services/temporaryStorage/memoryTemporaryStorage.service.ngfactory.d.ts.map +0 -1
  1593. package/src/utils/httpRequest.extension.d.ts +0 -5
  1594. package/src/utils/httpRequest.extension.d.ts.map +0 -1
  1595. package/store/dist/es2015/store/index.js +0 -10
  1596. package/store/dist/es2015/store/public_api.js +0 -7
  1597. package/store/dist/es2015/store/src/services/index.js +0 -8
  1598. package/store/dist/es2015/store/src/services/permanentStorage/localPermanentStorage.service.js +0 -56
  1599. package/store/dist/es2015/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +0 -43
  1600. package/store/dist/es2015/store/src/store.js +0 -7
  1601. package/store/dist/es5/store/index.js +0 -10
  1602. package/store/dist/es5/store/public_api.js +0 -7
  1603. package/store/dist/es5/store/src/services/index.js +0 -8
  1604. package/store/dist/es5/store/src/services/permanentStorage/localPermanentStorage.service.js +0 -93
  1605. package/store/dist/es5/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +0 -80
  1606. package/store/dist/es5/store/src/store.js +0 -7
  1607. package/store/index.d.ts +0 -5
  1608. package/store/index.d.ts.map +0 -1
  1609. package/store/index.metadata.json +0 -1
  1610. package/store/public_api.d.ts +0 -2
  1611. package/store/public_api.d.ts.map +0 -1
  1612. package/store/src/services/permanentStorage/localPermanentStorage.service.ngfactory.d.ts.map +0 -1
  1613. package/store/src/services/temporaryStorage/sessionTemporaryStorage.service.ngfactory.d.ts.map +0 -1
  1614. package/store/src/store.d.ts +0 -2
  1615. package/store/src/store.d.ts.map +0 -1
  1616. package/structured-log/dist/es2015/structured-log/index.js +0 -10
  1617. package/structured-log/dist/es2015/structured-log/public_api.js +0 -7
  1618. package/structured-log/dist/es2015/structured-log/src/components/console/console.component.animations.js +0 -37
  1619. package/structured-log/dist/es2015/structured-log/src/components/console/console.component.js +0 -156
  1620. package/structured-log/dist/es2015/structured-log/src/misc/utils.js +0 -47
  1621. package/structured-log/dist/es2015/structured-log/src/modules/consoleLog.module.js +0 -43
  1622. package/structured-log/dist/es2015/structured-log/src/services/console/consoleComponentSink.service.js +0 -150
  1623. package/structured-log/dist/es2015/structured-log/src/services/console/consoleSinkConfig.service.js +0 -56
  1624. package/structured-log/dist/es2015/structured-log/src/services/logger.service.js +0 -93
  1625. package/structured-log/dist/es2015/structured-log/src/services/rest/restSink.service.js +0 -176
  1626. package/structured-log/dist/es2015/structured-log/src/services/rest/restSinkConfig.service.js +0 -67
  1627. package/structured-log/dist/es2015/structured-log/src/structured-log.js +0 -17
  1628. package/structured-log/dist/es2015/structured-log/src/types/logger.interface.js +0 -85
  1629. package/structured-log/dist/es2015/structured-log/src/types/tokens.js +0 -70
  1630. package/structured-log/dist/es5/structured-log/index.js +0 -10
  1631. package/structured-log/dist/es5/structured-log/public_api.js +0 -7
  1632. package/structured-log/dist/es5/structured-log/src/components/console/console.component.animations.js +0 -37
  1633. package/structured-log/dist/es5/structured-log/src/components/console/console.component.js +0 -209
  1634. package/structured-log/dist/es5/structured-log/src/misc/utils.js +0 -47
  1635. package/structured-log/dist/es5/structured-log/src/modules/consoleLog.module.js +0 -57
  1636. package/structured-log/dist/es5/structured-log/src/services/console/consoleComponentSink.service.js +0 -198
  1637. package/structured-log/dist/es5/structured-log/src/services/console/consoleSinkConfig.service.js +0 -58
  1638. package/structured-log/dist/es5/structured-log/src/services/logger.service.js +0 -146
  1639. package/structured-log/dist/es5/structured-log/src/services/rest/restSink.service.js +0 -216
  1640. package/structured-log/dist/es5/structured-log/src/services/rest/restSinkConfig.service.js +0 -69
  1641. package/structured-log/dist/es5/structured-log/src/structured-log.js +0 -17
  1642. package/structured-log/dist/es5/structured-log/src/types/logger.interface.js +0 -85
  1643. package/structured-log/dist/es5/structured-log/src/types/tokens.js +0 -70
  1644. package/structured-log/index.d.ts +0 -5
  1645. package/structured-log/index.d.ts.map +0 -1
  1646. package/structured-log/index.metadata.json +0 -1
  1647. package/structured-log/public_api.d.ts +0 -2
  1648. package/structured-log/public_api.d.ts.map +0 -1
  1649. package/structured-log/src/components/console/console.component.css.shim.ngstyle.d.ts.map +0 -1
  1650. package/structured-log/src/components/console/console.component.ngfactory.d.ts.map +0 -1
  1651. package/structured-log/src/modules/consoleLog.module.ngfactory.d.ts.map +0 -1
  1652. package/structured-log/src/services/console/consoleComponentSink.service.ngfactory.d.ts.map +0 -1
  1653. package/structured-log/src/services/console/consoleSinkConfig.service.ngfactory.d.ts.map +0 -1
  1654. package/structured-log/src/services/logger.service.ngfactory.d.ts.map +0 -1
  1655. package/structured-log/src/services/rest/restSink.service.ngfactory.d.ts.map +0 -1
  1656. package/structured-log/src/services/rest/restSinkConfig.service.ngfactory.d.ts.map +0 -1
  1657. package/structured-log/src/structured-log.d.ts +0 -12
  1658. package/structured-log/src/structured-log.d.ts.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../../date-fns/src/misc/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAC,QAAQ,EAAC,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAC,QAAQ,EAAC,MAAM,UAAU,CAAC;AAElC;;;;GAIG;AACH,MAAM,UAAU,0BAA0B,CAAU,YAAqB,EAAE,WAAmB;IAE1F,MAAM,SAAS,GAAG,wCAAwC,CAAC;IAE3D,OAAO,iBAAiB,CAAC,YAAY,EAAE,WAAW,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE;QAEhE,kBAAkB;QAClB,IAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,EAC3C;YACI,MAAM,GAAG,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;YAE5B,cAAc;YACd,IAAG,KAAK,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC,EACvB;gBACI,OAAO,IAAI,CAAC;aACf;YAED,OAAO,GAAG,CAAC;SACd;QAED,OAAO,KAAK,CAAC;IACjB,CAAC,CAAC,CAAC;AACP,CAAC","sourcesContent":["import {readEncodedFilter} from '@anglr/common/forms';\nimport {isString} from '@jscrpt/common';\nimport {parseISO} from 'date-fns';\n\n/**\n * Reads filter value from encoded string, deserialize date properties into date\n * @param defaultValue - Default value of filter, which is overriden by values from filterValue\n * @param filterValue - Encoded string containing filter value\n */\nexport function readEncodedFilterWithDates<TFilter>(defaultValue: TFilter, filterValue: string): TFilter\n{\n const dateRegex = /^(\\d+-){2}\\d+(T(\\d+:){2}\\d+(\\.\\d+)?)?/g;\n\n return readEncodedFilter(defaultValue, filterValue, (_key, value) =>\n {\n //it is date value\n if(isString(value) && dateRegex.test(value))\n {\n const val = parseISO(value);\n \n //invalid date\n if(isNaN(val.valueOf()))\n {\n return null;\n }\n \n return val;\n }\n\n return value;\n });\n}"]}
@@ -0,0 +1,72 @@
1
+ import { Directive, ElementRef } from '@angular/core';
2
+ import { extend } from '@jscrpt/common';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Default options for GroupHasErrorDirective
6
+ */
7
+ const defaultOptions = {
8
+ cssClass: 'has-error'
9
+ };
10
+ /**
11
+ * Directive that is attached to parent element of inputs group and handles css class that is added to this element
12
+ */
13
+ export class GroupHasErrorDirective {
14
+ //######################### constructor #########################
15
+ constructor(_element) {
16
+ this._element = _element;
17
+ //######################### private fields #########################
18
+ /**
19
+ * Options for this directive
20
+ */
21
+ this._options = null;
22
+ /**
23
+ * Array of invalid controls
24
+ */
25
+ this._invalidControls = [];
26
+ this._options = extend(true, {}, defaultOptions);
27
+ }
28
+ //######################### public methods #########################
29
+ /**
30
+ * Registers control as invalid control
31
+ * @param id - Name of control to be registered
32
+ */
33
+ registerControl(id) {
34
+ //control is not registered yet
35
+ if (!this._invalidControls.find(itm => itm == id)) {
36
+ this._invalidControls.push(id);
37
+ }
38
+ this._updateStatus();
39
+ }
40
+ /**
41
+ * Unregisters control from invalid controls
42
+ * @param id - Id of control to be unregistered
43
+ */
44
+ unregisterControl(id) {
45
+ //control was registered already
46
+ if (this._invalidControls.find(itm => itm == id)) {
47
+ this._invalidControls.splice(this._invalidControls.indexOf(id), 1);
48
+ }
49
+ this._updateStatus();
50
+ }
51
+ //######################### private methods #########################
52
+ /**
53
+ * Updates status of element (css classes)
54
+ */
55
+ _updateStatus() {
56
+ if (this._invalidControls.length) {
57
+ this._element.nativeElement.classList.add(this._options.cssClass);
58
+ }
59
+ else {
60
+ this._element.nativeElement.classList.remove(this._options.cssClass);
61
+ }
62
+ }
63
+ }
64
+ GroupHasErrorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: GroupHasErrorDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
65
+ GroupHasErrorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: GroupHasErrorDirective, selector: "[groupHasError]", ngImport: i0 });
66
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: GroupHasErrorDirective, decorators: [{
67
+ type: Directive,
68
+ args: [{
69
+ selector: '[groupHasError]'
70
+ }]
71
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
72
+ //# sourceMappingURL=groupHasError.directive.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"groupHasError.directive.js","sourceRoot":"","sources":["../../../../../forms/src/directives/groupHasError/groupHasError.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAE,UAAU,EAAC,MAAM,eAAe,CAAC;AACpD,OAAO,EAAC,MAAM,EAAC,MAAM,gBAAgB,CAAC;;AAEtC;;GAEG;AACH,MAAM,cAAc,GACpB;IACI,QAAQ,EAAE,WAAW;CACxB,CAAC;AAaF;;GAEG;AAKH,MAAM,OAAO,sBAAsB;IAc/B,iEAAiE;IACjE,YAAoB,QAAiC;QAAjC,aAAQ,GAAR,QAAQ,CAAyB;QAbrD,oEAAoE;QAEpE;;WAEG;QACK,aAAQ,GAAyB,IAAI,CAAC;QAE9C;;WAEG;QACK,qBAAgB,GAAa,EAAE,CAAC;QAKpC,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,IAAI,EAAE,EAAE,EAAE,cAAc,CAAC,CAAC;IACrD,CAAC;IAED,oEAAoE;IAEpE;;;OAGG;IACI,eAAe,CAAC,EAAU;QAE7B,+BAA+B;QAC/B,IAAG,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAChD;YACI,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;SAClC;QAED,IAAI,CAAC,aAAa,EAAE,CAAC;IACzB,CAAC;IAED;;;OAGG;IACI,iBAAiB,CAAC,EAAU;QAE/B,gCAAgC;QAChC,IAAG,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAC/C;YACI,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;SACtE;QAED,IAAI,CAAC,aAAa,EAAE,CAAC;IACzB,CAAC;IAED,qEAAqE;IAErE;;OAEG;IACK,aAAa;QAEjB,IAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAC/B;YACI,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;SACrE;aAED;YACI,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;SACxE;IACL,CAAC;;mHAnEQ,sBAAsB;uGAAtB,sBAAsB;2FAAtB,sBAAsB;kBAJlC,SAAS;mBACV;oBACI,QAAQ,EAAE,iBAAiB;iBAC9B","sourcesContent":["import {Directive, ElementRef} from '@angular/core';\nimport {extend} from '@jscrpt/common';\n\n/**\n * Default options for GroupHasErrorDirective\n */\nconst defaultOptions: GroupHasErrorOptions =\n{\n cssClass: 'has-error'\n};\n\n/**\n * Options for GroupHasErrorDirective\n */\nexport interface GroupHasErrorOptions\n{\n /**\n * Css class applied to element when there is an error\n */\n cssClass?: string;\n}\n\n/**\n * Directive that is attached to parent element of inputs group and handles css class that is added to this element\n */\n@Directive(\n{\n selector: '[groupHasError]'\n})\nexport class GroupHasErrorDirective\n{\n //######################### private fields #########################\n\n /**\n * Options for this directive\n */\n private _options: GroupHasErrorOptions = null;\n\n /**\n * Array of invalid controls\n */\n private _invalidControls: string[] = [];\n\n //######################### constructor #########################\n constructor(private _element: ElementRef<HTMLElement>)\n {\n this._options = extend(true, {}, defaultOptions);\n }\n\n //######################### public methods #########################\n\n /**\n * Registers control as invalid control\n * @param id - Name of control to be registered\n */\n public registerControl(id: string): void\n {\n //control is not registered yet\n if(!this._invalidControls.find(itm => itm == id))\n {\n this._invalidControls.push(id);\n }\n\n this._updateStatus();\n }\n\n /**\n * Unregisters control from invalid controls\n * @param id - Id of control to be unregistered\n */\n public unregisterControl(id: string): void\n {\n //control was registered already\n if(this._invalidControls.find(itm => itm == id))\n {\n this._invalidControls.splice(this._invalidControls.indexOf(id), 1);\n }\n\n this._updateStatus();\n }\n\n //######################### private methods #########################\n\n /**\n * Updates status of element (css classes)\n */\n private _updateStatus(): void\n {\n if(this._invalidControls.length)\n {\n this._element.nativeElement.classList.add(this._options.cssClass);\n }\n else\n {\n this._element.nativeElement.classList.remove(this._options.cssClass);\n }\n }\n}"]}
@@ -0,0 +1,161 @@
1
+ import { __decorate, __metadata } from "tslib";
2
+ import { Directive, ElementRef, Optional, SkipSelf, Inject, Input, Injector } from '@angular/core';
3
+ import { FormControlDirective, FormControlName, NgModel } from '@angular/forms';
4
+ import { STRING_LOCALIZATION } from '@anglr/common';
5
+ import { generateId, BindThis } from '@jscrpt/common';
6
+ import { Subscription } from 'rxjs';
7
+ import { ValidationErrorRendererFactory } from '../../services/validationErrorRenderer/validationErrorRenderer.service';
8
+ import { SubmittedService } from '../../services/submitted/submitted.service';
9
+ import { GroupHasErrorDirective } from '../groupHasError/groupHasError.directive';
10
+ import * as i0 from "@angular/core";
11
+ import * as i1 from "../../services/validationErrorRenderer/validationErrorRenderer.service";
12
+ import * as i2 from "../groupHasError/groupHasError.directive";
13
+ import * as i3 from "@angular/forms";
14
+ import * as i4 from "../../services/submitted/submitted.service";
15
+ //TODO - add support for setting renderer factory options using input
16
+ /**
17
+ * Directive that is attached to control element and handles css classes that are added to this element
18
+ */
19
+ export class HasErrorDirective {
20
+ //######################### constructor #########################
21
+ constructor(_element, _rendererFactory, _groupHasError, _formControl, _formControlName, _ngModel, _submittedSvc, _stringLocalization, _injector) {
22
+ this._element = _element;
23
+ this._rendererFactory = _rendererFactory;
24
+ this._groupHasError = _groupHasError;
25
+ this._formControl = _formControl;
26
+ this._formControlName = _formControlName;
27
+ this._ngModel = _ngModel;
28
+ this._submittedSvc = _submittedSvc;
29
+ this._stringLocalization = _stringLocalization;
30
+ this._injector = _injector;
31
+ //######################### private fields #########################
32
+ /**
33
+ * Subscriptions that are destroyed with destruction of this directive
34
+ */
35
+ this._subscriptions = new Subscription();
36
+ /**
37
+ * Unique generated id of control
38
+ */
39
+ this._id = generateId(10);
40
+ /**
41
+ * Last value of control pristine attribute
42
+ */
43
+ this._previousDirty = false;
44
+ /**
45
+ * Indication whether currently are any errors rendered
46
+ */
47
+ this._hasErrors = false;
48
+ }
49
+ //######################### private properties #########################
50
+ /**
51
+ * Gets control which was assigned to this element
52
+ */
53
+ get control() {
54
+ return this._formControl?.control || this._formControlName?.control || this._ngModel?.control;
55
+ }
56
+ //######################### public methods - implementation of OnInit #########################
57
+ /**
58
+ * Initialize component
59
+ */
60
+ ngOnInit() {
61
+ this._registerMutationObserver();
62
+ this.renderer = this._rendererFactory.create(this.control, this._element.nativeElement, this._injector, this._isSubmittedOrDirty, {});
63
+ this._subscriptions.add(this._stringLocalization.textsChange.subscribe(() => this._updateStatus()));
64
+ this._subscriptions.add(this.control.statusChanges.subscribe(() => this._updateStatus()));
65
+ this._updateStatus();
66
+ if (this._submittedSvc) {
67
+ this._subscriptions.add(this._submittedSvc.submittedChange.subscribe(() => this._isSubmittedOrDirty(() => this._updateStatus(true))));
68
+ }
69
+ }
70
+ //######################### public methods - implementation of OnDestroy #########################
71
+ /**
72
+ * Called when component is destroyed
73
+ */
74
+ ngOnDestroy() {
75
+ this._subscriptions.unsubscribe();
76
+ this._groupHasError?.unregisterControl(this._id);
77
+ this._observer?.disconnect();
78
+ this.renderer?.destroy();
79
+ }
80
+ //######################### private methods #########################
81
+ /**
82
+ * Updates status of control and css classes
83
+ * @param onlyShow - Indication that update performs only displaying of existing errors
84
+ */
85
+ _updateStatus(onlyShow) {
86
+ this._previousDirty = this.control.dirty;
87
+ this._hasErrors = this.renderer.update(this.errorMessages, onlyShow);
88
+ this._toggleGroupHasError();
89
+ }
90
+ /**
91
+ * Toggles registration of control in parent group
92
+ */
93
+ _toggleGroupHasError() {
94
+ if (this._groupHasError) {
95
+ this._isSubmittedOrDirty(() => this._groupHasError.registerControl(this._id), () => this._groupHasError.unregisterControl(this._id), this._hasErrors);
96
+ }
97
+ }
98
+ /**
99
+ * Calls action when form is submitted or control is dirty
100
+ * @param action - Action to be called when form is submitted or control dirty
101
+ * @param falseAction - Action to be called when form is not submitted and control is not dirty
102
+ * @param additionalCondition - Additional condition to be evaluated
103
+ */
104
+ _isSubmittedOrDirty(action, falseAction = () => { }, additionalCondition = true) {
105
+ //submitted form or dirty control
106
+ if ((this._submittedSvc?.submitted ||
107
+ this.control?.dirty) &&
108
+ additionalCondition) {
109
+ action();
110
+ }
111
+ else {
112
+ falseAction();
113
+ }
114
+ }
115
+ /**
116
+ * Registers mutation observer which watch for changes of class list
117
+ */
118
+ _registerMutationObserver() {
119
+ this._observer = new MutationObserver(() => {
120
+ if (this.control.dirty != this._previousDirty) {
121
+ this._updateStatus();
122
+ }
123
+ });
124
+ this._observer.observe(this._element.nativeElement, {
125
+ attributeFilter: ['class'],
126
+ attributes: true
127
+ });
128
+ }
129
+ }
130
+ HasErrorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: HasErrorDirective, deps: [{ token: i0.ElementRef }, { token: i1.ValidationErrorRendererFactory }, { token: i2.GroupHasErrorDirective, optional: true, skipSelf: true }, { token: i3.FormControlDirective, optional: true }, { token: i3.FormControlName, optional: true }, { token: i3.NgModel, optional: true }, { token: i4.SubmittedService, optional: true }, { token: STRING_LOCALIZATION }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Directive });
131
+ HasErrorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: HasErrorDirective, selector: "[hasError]", inputs: { errorMessages: "errorMessages" }, ngImport: i0 });
132
+ __decorate([
133
+ BindThis,
134
+ __metadata("design:type", Function),
135
+ __metadata("design:paramtypes", [Function, Function, Boolean]),
136
+ __metadata("design:returntype", void 0)
137
+ ], HasErrorDirective.prototype, "_isSubmittedOrDirty", null);
138
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: HasErrorDirective, decorators: [{
139
+ type: Directive,
140
+ args: [{
141
+ selector: '[hasError]'
142
+ }]
143
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.ValidationErrorRendererFactory }, { type: i2.GroupHasErrorDirective, decorators: [{
144
+ type: Optional
145
+ }, {
146
+ type: SkipSelf
147
+ }] }, { type: i3.FormControlDirective, decorators: [{
148
+ type: Optional
149
+ }] }, { type: i3.FormControlName, decorators: [{
150
+ type: Optional
151
+ }] }, { type: i3.NgModel, decorators: [{
152
+ type: Optional
153
+ }] }, { type: i4.SubmittedService, decorators: [{
154
+ type: Optional
155
+ }] }, { type: undefined, decorators: [{
156
+ type: Inject,
157
+ args: [STRING_LOCALIZATION]
158
+ }] }, { type: i0.Injector }]; }, propDecorators: { errorMessages: [{
159
+ type: Input
160
+ }], _isSubmittedOrDirty: [] } });
161
+ //# sourceMappingURL=hasError.directive.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hasError.directive.js","sourceRoot":"","sources":["../../../../../forms/src/directives/hasError/hasError.directive.ts"],"names":[],"mappings":";AAAA,OAAO,EAAC,SAAS,EAAE,UAAU,EAAE,QAAQ,EAAE,QAAQ,EAAqB,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAC,MAAM,eAAe,CAAC;AACpH,OAAO,EAAC,oBAAoB,EAAE,eAAe,EAAe,OAAO,EAAC,MAAM,gBAAgB,CAAC;AAC3F,OAAO,EAAqB,mBAAmB,EAAC,MAAM,eAAe,CAAC;AACtE,OAAO,EAAC,UAAU,EAAE,QAAQ,EAAmB,MAAM,gBAAgB,CAAC;AACtE,OAAO,EAAC,YAAY,EAAC,MAAM,MAAM,CAAC;AAElC,OAAO,EAAC,8BAA8B,EAAC,MAAM,wEAAwE,CAAC;AAEtH,OAAO,EAAC,gBAAgB,EAAC,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EAAC,sBAAsB,EAAC,MAAM,0CAA0C,CAAC;;;;;;AAEhF,qEAAqE;AAErE;;GAEG;AAKH,MAAM,OAAO,iBAAiB;IAsD1B,iEAAiE;IACjE,YAAoB,QAAiC,EACjC,gBAAgD,EACxB,cAAsC,EAClD,YAAkC,EAClC,gBAAiC,EACjC,QAAiB,EACjB,aAA+B,EACZ,mBAAuC,EACpE,SAAmB;QARrB,aAAQ,GAAR,QAAQ,CAAyB;QACjC,qBAAgB,GAAhB,gBAAgB,CAAgC;QACxB,mBAAc,GAAd,cAAc,CAAwB;QAClD,iBAAY,GAAZ,YAAY,CAAsB;QAClC,qBAAgB,GAAhB,gBAAgB,CAAiB;QACjC,aAAQ,GAAR,QAAQ,CAAS;QACjB,kBAAa,GAAb,aAAa,CAAkB;QACZ,wBAAmB,GAAnB,mBAAmB,CAAoB;QACpE,cAAS,GAAT,SAAS,CAAU;QA7DzC,oEAAoE;QAEpE;;WAEG;QACK,mBAAc,GAAiB,IAAI,YAAY,EAAE,CAAC;QAE1D;;WAEG;QACK,QAAG,GAAW,UAAU,CAAC,EAAE,CAAC,CAAC;QAErC;;WAEG;QACK,mBAAc,GAAY,KAAK,CAAC;QAExC;;WAEG;QACK,eAAU,GAAY,KAAK,CAAC;IA2CpC,CAAC;IApCD,wEAAwE;IAExE;;OAEG;IACH,IAAY,OAAO;QAEf,OAAO,IAAI,CAAC,YAAY,EAAE,OAAO,IAAI,IAAI,CAAC,gBAAgB,EAAE,OAAO,IAAI,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC;IAClG,CAAC;IA8BD,+FAA+F;IAE/F;;OAEG;IACI,QAAQ;QAEX,IAAI,CAAC,yBAAyB,EAAE,CAAC;QAEjC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EACZ,IAAI,CAAC,QAAQ,CAAC,aAAa,EAC3B,IAAI,CAAC,SAAS,EACd,IAAI,CAAC,mBAAmB,EACxB,EACC,CAAC,CAAC;QAEhD,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,mBAAmB,CAAC,WAAW,CAAC,SAAS,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC;QACpG,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,SAAS,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC;QAE1F,IAAI,CAAC,aAAa,EAAE,CAAC;QAErB,IAAG,IAAI,CAAC,aAAa,EACrB;YACI,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,aAAa,CAAC,eAAe,CAAC,SAAS,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,mBAAmB,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SACzI;IACL,CAAC;IAED,kGAAkG;IAElG;;OAEG;IACI,WAAW;QAEd,IAAI,CAAC,cAAc,CAAC,WAAW,EAAE,CAAC;QAElC,IAAI,CAAC,cAAc,EAAE,iBAAiB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACjD,IAAI,CAAC,SAAS,EAAE,UAAU,EAAE,CAAC;QAC7B,IAAI,CAAC,QAAQ,EAAE,OAAO,EAAE,CAAC;IAC7B,CAAC;IAED,qEAAqE;IAErE;;;OAGG;IACK,aAAa,CAAC,QAAkB;QAEpC,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC;QACzC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;QACrE,IAAI,CAAC,oBAAoB,EAAE,CAAC;IAChC,CAAC;IAED;;OAEG;IACK,oBAAoB;QAExB,IAAG,IAAI,CAAC,cAAc,EACtB;YACI,IAAI,CAAC,mBAAmB,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,EACnD,GAAG,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,iBAAiB,CAAC,IAAI,CAAC,GAAG,CAAC,EACrD,IAAI,CAAC,UAAU,CAAC,CAAC;SAC7C;IACL,CAAC;IAED;;;;;OAKG;IAEK,mBAAmB,CAAC,MAAkB,EAAE,cAA0B,GAAG,EAAE,GAAE,CAAC,EAAE,sBAA+B,IAAI;QAEnH,iCAAiC;QACjC,IAAG,CAAC,IAAI,CAAC,aAAa,EAAE,SAAS;YAC7B,IAAI,CAAC,OAAO,EAAE,KAAK,CAAC;YACrB,mBAAmB,EACtB;YACI,MAAM,EAAE,CAAC;SACZ;aAED;YACI,WAAW,EAAE,CAAC;SACjB;IACL,CAAC;IAED;;OAEG;IACK,yBAAyB;QAE7B,IAAI,CAAC,SAAS,GAAG,IAAI,gBAAgB,CAAC,GAAG,EAAE;YAEvC,IAAG,IAAI,CAAC,OAAO,CAAC,KAAK,IAAI,IAAI,CAAC,cAAc,EAC5C;gBACI,IAAI,CAAC,aAAa,EAAE,CAAC;aACxB;QACL,CAAC,CAAC,CAAC;QAEH,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,aAAa,EAClD;YACI,eAAe,EAAE,CAAC,OAAO,CAAC;YAC1B,UAAU,EAAE,IAAI;SACnB,CAAC,CAAC;IACP,CAAC;;8GA9KQ,iBAAiB,0VA8DN,mBAAmB;kGA9D9B,iBAAiB;AA6I1B;IADC,QAAQ;;;;4DAcR;2FA1JQ,iBAAiB;kBAJ7B,SAAS;mBACV;oBACI,QAAQ,EAAE,YAAY;iBACzB;;0BA0DgB,QAAQ;;0BAAI,QAAQ;;0BACpB,QAAQ;;0BACR,QAAQ;;0BACR,QAAQ;;0BACR,QAAQ;;0BACR,MAAM;2BAAC,mBAAmB;mEAVhC,aAAa;sBADnB,KAAK;gBA0FE,mBAAmB","sourcesContent":["import {Directive, ElementRef, Optional, SkipSelf, OnInit, OnDestroy, Inject, Input, Injector} from '@angular/core';\nimport {FormControlDirective, FormControlName, FormControl, NgModel} from '@angular/forms';\nimport {StringLocalization, STRING_LOCALIZATION} from '@anglr/common';\nimport {generateId, BindThis, StringDictionary} from '@jscrpt/common';\nimport {Subscription} from 'rxjs';\n\nimport {ValidationErrorRendererFactory} from '../../services/validationErrorRenderer/validationErrorRenderer.service';\nimport {ValidationErrorRenderer} from '../../services/validationErrorRenderer/validationErrorRenderer.interface';\nimport {SubmittedService} from '../../services/submitted/submitted.service';\nimport {GroupHasErrorDirective} from '../groupHasError/groupHasError.directive';\n\n//TODO - add support for setting renderer factory options using input\n\n/**\n * Directive that is attached to control element and handles css classes that are added to this element\n */\n@Directive(\n{\n selector: '[hasError]'\n})\nexport class HasErrorDirective implements OnInit, OnDestroy\n{\n //######################### private fields #########################\n\n /**\n * Subscriptions that are destroyed with destruction of this directive\n */\n private _subscriptions: Subscription = new Subscription();\n\n /**\n * Unique generated id of control\n */\n private _id: string = generateId(10);\n\n /**\n * Last value of control pristine attribute\n */\n private _previousDirty: boolean = false;\n\n /**\n * Indication whether currently are any errors rendered\n */\n private _hasErrors: boolean = false;\n\n /**\n * Mutation observer used for observing changes on class of element\n */\n private _observer: MutationObserver;\n\n //######################### private properties #########################\n\n /**\n * Gets control which was assigned to this element\n */\n private get control(): FormControl\n {\n return this._formControl?.control || this._formControlName?.control || this._ngModel?.control;\n }\n\n //######################### public properties #########################\n\n /**\n * Instance of validation error renderer\n */\n public renderer: ValidationErrorRenderer;\n\n //######################### public propeties - inputs #########################\n\n /**\n * Customized error messages\n */\n @Input()\n public errorMessages: StringDictionary;\n\n //######################### constructor #########################\n constructor(private _element: ElementRef<HTMLElement>,\n private _rendererFactory: ValidationErrorRendererFactory,\n @Optional() @SkipSelf() private _groupHasError: GroupHasErrorDirective,\n @Optional() private _formControl: FormControlDirective,\n @Optional() private _formControlName: FormControlName,\n @Optional() private _ngModel: NgModel,\n @Optional() private _submittedSvc: SubmittedService,\n @Inject(STRING_LOCALIZATION) protected _stringLocalization: StringLocalization,\n protected _injector: Injector)\n {\n }\n\n //######################### public methods - implementation of OnInit #########################\n \n /**\n * Initialize component\n */\n public ngOnInit(): void\n {\n this._registerMutationObserver();\n\n this.renderer = this._rendererFactory.create(this.control,\n this._element.nativeElement,\n this._injector,\n this._isSubmittedOrDirty,\n {\n });\n\n this._subscriptions.add(this._stringLocalization.textsChange.subscribe(() => this._updateStatus()));\n this._subscriptions.add(this.control.statusChanges.subscribe(() => this._updateStatus()));\n\n this._updateStatus();\n\n if(this._submittedSvc)\n {\n this._subscriptions.add(this._submittedSvc.submittedChange.subscribe(() => this._isSubmittedOrDirty(() => this._updateStatus(true))));\n }\n }\n\n //######################### public methods - implementation of OnDestroy #########################\n \n /**\n * Called when component is destroyed\n */\n public ngOnDestroy(): void\n {\n this._subscriptions.unsubscribe();\n\n this._groupHasError?.unregisterControl(this._id);\n this._observer?.disconnect();\n this.renderer?.destroy();\n }\n\n //######################### private methods #########################\n\n /**\n * Updates status of control and css classes\n * @param onlyShow - Indication that update performs only displaying of existing errors\n */\n private _updateStatus(onlyShow?: boolean): void\n {\n this._previousDirty = this.control.dirty;\n this._hasErrors = this.renderer.update(this.errorMessages, onlyShow);\n this._toggleGroupHasError();\n }\n\n /**\n * Toggles registration of control in parent group\n */\n private _toggleGroupHasError(): void\n {\n if(this._groupHasError)\n {\n this._isSubmittedOrDirty(() => this._groupHasError.registerControl(this._id),\n () => this._groupHasError.unregisterControl(this._id),\n this._hasErrors);\n }\n }\n\n /**\n * Calls action when form is submitted or control is dirty\n * @param action - Action to be called when form is submitted or control dirty\n * @param falseAction - Action to be called when form is not submitted and control is not dirty\n * @param additionalCondition - Additional condition to be evaluated\n */\n @BindThis\n private _isSubmittedOrDirty(action: () => void, falseAction: () => void = () => {}, additionalCondition: boolean = true): void\n {\n //submitted form or dirty control\n if((this._submittedSvc?.submitted ||\n this.control?.dirty) &&\n additionalCondition)\n {\n action();\n }\n else\n {\n falseAction();\n }\n }\n\n /**\n * Registers mutation observer which watch for changes of class list\n */\n private _registerMutationObserver(): void\n {\n this._observer = new MutationObserver(() =>\n {\n if(this.control.dirty != this._previousDirty)\n {\n this._updateStatus();\n }\n });\n\n this._observer.observe(this._element.nativeElement, \n {\n attributeFilter: ['class'],\n attributes: true\n });\n }\n}"]}
@@ -0,0 +1,64 @@
1
+ import { Input, forwardRef, Directive, Attribute } from '@angular/core';
2
+ import { NG_VALIDATORS } from '@angular/forms';
3
+ import { isBlank, isPresent } from '@jscrpt/common';
4
+ import { Validators } from '../../misc/validators';
5
+ import * as i0 from "@angular/core";
6
+ /**
7
+ * Validator that is injected with directive MaxValueNumberValidatorDirective
8
+ */
9
+ const MAX_NUMBER_VALIDATOR = {
10
+ provide: NG_VALIDATORS,
11
+ useExisting: forwardRef(() => MaxValueNumberValidatorDirective),
12
+ multi: true
13
+ };
14
+ /**
15
+ * Directive injecting checking for number max value validator
16
+ */
17
+ export class MaxValueNumberValidatorDirective {
18
+ //######################### constructor #########################
19
+ constructor(maxValue) {
20
+ /**
21
+ * Indication whether validator was initialized
22
+ */
23
+ this._initialized = false;
24
+ let value;
25
+ if (isBlank(maxValue) || maxValue.length < 1 || isNaN(value = parseFloat(maxValue.replace(',', '.')))) {
26
+ value = null;
27
+ }
28
+ this._maxValue = value;
29
+ }
30
+ //######################### public methods - implementation of OnChanges #########################
31
+ ngOnChanges(changes) {
32
+ if (!this._initialized) {
33
+ this._initialized = true;
34
+ this._validator = Validators.max(this._maxValue);
35
+ }
36
+ if ('maxValue' in changes) {
37
+ this._validator = Validators.max(isPresent(this.maxValue) ? this.maxValue : this._maxValue);
38
+ }
39
+ }
40
+ //######################### public methods - implementation of Validator #########################
41
+ /**
42
+ * Validates input and returns validation result
43
+ * @param control - Control that is being validated
44
+ * @returns validation results
45
+ */
46
+ validate(control) {
47
+ return this._validator(control);
48
+ }
49
+ }
50
+ MaxValueNumberValidatorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MaxValueNumberValidatorDirective, deps: [{ token: 'maxValue', attribute: true }], target: i0.ɵɵFactoryTarget.Directive });
51
+ MaxValueNumberValidatorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: MaxValueNumberValidatorDirective, selector: "input[number][maxValue][formControlName],input[number][maxValue][formControl],input[number][maxValue][ngModel]", inputs: { maxValue: "maxValue" }, providers: [MAX_NUMBER_VALIDATOR], usesOnChanges: true, ngImport: i0 });
52
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MaxValueNumberValidatorDirective, decorators: [{
53
+ type: Directive,
54
+ args: [{
55
+ selector: 'input[number][maxValue][formControlName],input[number][maxValue][formControl],input[number][maxValue][ngModel]',
56
+ providers: [MAX_NUMBER_VALIDATOR]
57
+ }]
58
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
59
+ type: Attribute,
60
+ args: ['maxValue']
61
+ }] }]; }, propDecorators: { maxValue: [{
62
+ type: Input
63
+ }] } });
64
+ //# sourceMappingURL=maxValueNumberValidator.directive.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"maxValueNumberValidator.directive.js","sourceRoot":"","sources":["../../../../../forms/src/directives/numberInput/maxValueNumberValidator.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,SAAS,EAA2B,MAAM,eAAe,CAAC;AAClH,OAAO,EAAC,aAAa,EAA4D,MAAM,gBAAgB,CAAC;AACxG,OAAO,EAAC,OAAO,EAAE,SAAS,EAAC,MAAM,gBAAgB,CAAC;AAElD,OAAO,EAAC,UAAU,EAAC,MAAM,uBAAuB,CAAC;;AAEjD;;GAEG;AACH,MAAM,oBAAoB,GAC1B;IACI,OAAO,EAAE,aAAa;IACtB,WAAW,EAAE,UAAU,CAAC,GAAG,EAAE,CAAC,gCAAgC,CAAC;IAC/D,KAAK,EAAE,IAAI;CACd,CAAC;AAEF;;GAEG;AAMH,MAAM,OAAO,gCAAgC;IA2BzC,iEAAiE;IACjE,YAAmC,QAAgB;QAdnD;;WAEG;QACK,iBAAY,GAAY,KAAK,CAAC;QAalC,IAAI,KAAK,CAAC;QAEV,IAAG,OAAO,CAAC,QAAQ,CAAC,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,IAAI,KAAK,CAAC,KAAK,GAAG,UAAU,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC,EACpG;YACI,KAAK,GAAG,IAAI,CAAC;SAChB;QAED,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;IAC3B,CAAC;IAED,kGAAkG;IAE3F,WAAW,CAAC,OAAsB;QAErC,IAAG,CAAC,IAAI,CAAC,YAAY,EACrB;YACI,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;YAEzB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SACpD;QAED,IAAI,UAAU,IAAI,OAAO,EACzB;YACI,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAS,IAAI,CAAC,QAAS,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SACxG;IACL,CAAC;IAED,kGAAkG;IAElG;;;;OAIG;IACI,QAAQ,CAAC,OAAwB;QAEpC,OAAO,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;IACpC,CAAC;;6HAnEQ,gCAAgC,kBA4BlB,UAAU;iHA5BxB,gCAAgC,2KAF9B,CAAC,oBAAoB,CAAC;2FAExB,gCAAgC;kBAL5C,SAAS;mBACV;oBACI,QAAQ,EAAE,gHAAgH;oBAC1H,SAAS,EAAE,CAAC,oBAAoB,CAAC;iBACpC;;0BA6BgB,SAAS;2BAAC,UAAU;4CAH1B,QAAQ;sBADd,KAAK","sourcesContent":["import {ExistingProvider, Input, forwardRef, Directive, Attribute, OnChanges, SimpleChanges} from '@angular/core';\nimport {NG_VALIDATORS, AbstractControl, Validator, ValidatorFn, ValidationErrors} from '@angular/forms';\nimport {isBlank, isPresent} from '@jscrpt/common';\n\nimport {Validators} from '../../misc/validators';\n\n/**\n * Validator that is injected with directive MaxValueNumberValidatorDirective\n */\nconst MAX_NUMBER_VALIDATOR = <ExistingProvider>\n{\n provide: NG_VALIDATORS,\n useExisting: forwardRef(() => MaxValueNumberValidatorDirective),\n multi: true\n};\n\n/**\n * Directive injecting checking for number max value validator\n */\n@Directive(\n{\n selector: 'input[number][maxValue][formControlName],input[number][maxValue][formControl],input[number][maxValue][ngModel]',\n providers: [MAX_NUMBER_VALIDATOR]\n})\nexport class MaxValueNumberValidatorDirective implements Validator, OnChanges\n{\n //######################### private fields #########################\n\n /**\n * Current max value that is allowed\n */\n private _maxValue: number|null;\n\n /**\n * Function used for validations\n */\n private _validator: ValidatorFn;\n\n /**\n * Indication whether validator was initialized\n */\n private _initialized: boolean = false;\n\n //######################### public properties - inputs #########################\n\n /**\n * Bound max value that is allowed, which overrides value set to attribute maxValue\n */\n @Input()\n public maxValue?: number;\n\n //######################### constructor #########################\n constructor(@Attribute('maxValue') maxValue: string)\n {\n let value;\n\n if(isBlank(maxValue) || maxValue.length < 1 || isNaN(value = parseFloat(maxValue.replace(',', '.'))))\n {\n value = null;\n }\n\n this._maxValue = value;\n }\n\n //######################### public methods - implementation of OnChanges #########################\n\n public ngOnChanges(changes: SimpleChanges): void\n {\n if(!this._initialized)\n {\n this._initialized = true;\n\n this._validator = Validators.max(this._maxValue);\n }\n\n if ('maxValue' in changes)\n {\n this._validator = Validators.max(isPresent(this.maxValue) ? <number>this.maxValue! : this._maxValue);\n }\n }\n\n //######################### public methods - implementation of Validator #########################\n\n /**\n * Validates input and returns validation result\n * @param control - Control that is being validated\n * @returns validation results\n */\n public validate(control: AbstractControl): ValidationErrors|null\n {\n return this._validator(control);\n }\n}"]}
@@ -0,0 +1,64 @@
1
+ import { forwardRef, Directive, Attribute, Input } from '@angular/core';
2
+ import { NG_VALIDATORS } from '@angular/forms';
3
+ import { isBlank, isPresent } from '@jscrpt/common';
4
+ import { Validators } from '../../misc/validators';
5
+ import * as i0 from "@angular/core";
6
+ /**
7
+ * Validator that is injected with directive MinValueNumberValidatorDirective
8
+ */
9
+ const MIN_NUMBER_VALIDATOR = {
10
+ provide: NG_VALIDATORS,
11
+ useExisting: forwardRef(() => MinValueNumberValidatorDirective),
12
+ multi: true
13
+ };
14
+ /**
15
+ * Directive injecting checking for number min value validator
16
+ */
17
+ export class MinValueNumberValidatorDirective {
18
+ //######################### constructor #########################
19
+ constructor(minValue) {
20
+ /**
21
+ * Indication whether validator was initialized
22
+ */
23
+ this._initialized = false;
24
+ let value;
25
+ if (isBlank(minValue) || minValue.length < 1 || isNaN(value = parseFloat(minValue.replace(',', '.')))) {
26
+ value = null;
27
+ }
28
+ this._minValue = value;
29
+ }
30
+ //######################### public methods - implementation of OnChanges #########################
31
+ ngOnChanges(changes) {
32
+ if (!this._initialized) {
33
+ this._initialized = true;
34
+ this._validator = Validators.min(this._minValue);
35
+ }
36
+ if ('minValue' in changes) {
37
+ this._validator = Validators.min(isPresent(this.minValue) ? this.minValue : this._minValue);
38
+ }
39
+ }
40
+ //######################### public methods - implementation of Validator #########################
41
+ /**
42
+ * Validates input and returns validation result
43
+ * @param control - Control that is being validated
44
+ * @returns validation results
45
+ */
46
+ validate(control) {
47
+ return this._validator(control);
48
+ }
49
+ }
50
+ MinValueNumberValidatorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MinValueNumberValidatorDirective, deps: [{ token: 'minValue', attribute: true }], target: i0.ɵɵFactoryTarget.Directive });
51
+ MinValueNumberValidatorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: MinValueNumberValidatorDirective, selector: "input[number][minValue][formControlName],input[number][minValue][formControl],input[number][minValue][ngModel]", inputs: { minValue: "minValue" }, providers: [MIN_NUMBER_VALIDATOR], usesOnChanges: true, ngImport: i0 });
52
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MinValueNumberValidatorDirective, decorators: [{
53
+ type: Directive,
54
+ args: [{
55
+ selector: 'input[number][minValue][formControlName],input[number][minValue][formControl],input[number][minValue][ngModel]',
56
+ providers: [MIN_NUMBER_VALIDATOR]
57
+ }]
58
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
59
+ type: Attribute,
60
+ args: ['minValue']
61
+ }] }]; }, propDecorators: { minValue: [{
62
+ type: Input
63
+ }] } });
64
+ //# sourceMappingURL=minValueNumberValidator.directive.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"minValueNumberValidator.directive.js","sourceRoot":"","sources":["../../../../../forms/src/directives/numberInput/minValueNumberValidator.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAE,SAAS,EAAE,SAAS,EAAE,KAAK,EAA6C,MAAM,eAAe,CAAC;AAClH,OAAO,EAAC,aAAa,EAA4D,MAAM,gBAAgB,CAAC;AACxG,OAAO,EAAC,OAAO,EAAE,SAAS,EAAC,MAAM,gBAAgB,CAAC;AAElD,OAAO,EAAC,UAAU,EAAC,MAAM,uBAAuB,CAAC;;AAEjD;;GAEG;AACH,MAAM,oBAAoB,GAC1B;IACI,OAAO,EAAE,aAAa;IACtB,WAAW,EAAE,UAAU,CAAC,GAAG,EAAE,CAAC,gCAAgC,CAAC;IAC/D,KAAK,EAAE,IAAI;CACd,CAAC;AAEF;;GAEG;AAMH,MAAM,OAAO,gCAAgC;IA0BzC,iEAAiE;IACjE,YAAmC,QAAgB;QAbnD;;WAEG;QACK,iBAAY,GAAY,KAAK,CAAC;QAYlC,IAAI,KAAK,CAAC;QAEV,IAAG,OAAO,CAAC,QAAQ,CAAC,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,IAAI,KAAK,CAAC,KAAK,GAAG,UAAU,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC,EACpG;YACI,KAAK,GAAG,IAAI,CAAC;SAChB;QAED,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;IAC3B,CAAC;IAED,kGAAkG;IAE3F,WAAW,CAAC,OAAsB;QAErC,IAAG,CAAC,IAAI,CAAC,YAAY,EACrB;YACI,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;YAEzB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SACpD;QAED,IAAI,UAAU,IAAI,OAAO,EACzB;YACI,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAS,IAAI,CAAC,QAAS,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SACxG;IACL,CAAC;IAED,kGAAkG;IAElG;;;;OAIG;IACI,QAAQ,CAAC,OAAwB;QAEpC,OAAO,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;IACpC,CAAC;;6HAlEQ,gCAAgC,kBA2BlB,UAAU;iHA3BxB,gCAAgC,2KAF9B,CAAC,oBAAoB,CAAC;2FAExB,gCAAgC;kBAL5C,SAAS;mBACV;oBACI,QAAQ,EAAE,gHAAgH;oBAC1H,SAAS,EAAE,CAAC,oBAAoB,CAAC;iBACpC;;0BA4BgB,SAAS;2BAAC,UAAU;4CAH1B,QAAQ;sBADd,KAAK","sourcesContent":["import {forwardRef, Directive, Attribute, Input, ExistingProvider, OnChanges, SimpleChanges} from '@angular/core';\nimport {NG_VALIDATORS, AbstractControl, Validator, ValidatorFn, ValidationErrors} from '@angular/forms';\nimport {isBlank, isPresent} from '@jscrpt/common';\n\nimport {Validators} from '../../misc/validators';\n\n/**\n * Validator that is injected with directive MinValueNumberValidatorDirective\n */\nconst MIN_NUMBER_VALIDATOR = <ExistingProvider>\n{\n provide: NG_VALIDATORS,\n useExisting: forwardRef(() => MinValueNumberValidatorDirective),\n multi: true\n};\n\n/**\n * Directive injecting checking for number min value validator\n */\n@Directive(\n{\n selector: 'input[number][minValue][formControlName],input[number][minValue][formControl],input[number][minValue][ngModel]',\n providers: [MIN_NUMBER_VALIDATOR]\n})\nexport class MinValueNumberValidatorDirective implements Validator, OnChanges\n{\n //######################### private fields #########################\n\n /**\n * Current min value that is allowed\n */\n private _minValue: number|null;\n\n /**\n * Function used for validations\n */\n private _validator: ValidatorFn;\n\n /**\n * Indication whether validator was initialized\n */\n private _initialized: boolean = false;\n\n //######################### public properties - inputs #########################\n /**\n * Bound min value that is allowed, which overrides value set to attribute minValue\n */\n @Input()\n public minValue?: number;\n\n //######################### constructor #########################\n constructor(@Attribute('minValue') minValue: string)\n {\n let value;\n\n if(isBlank(minValue) || minValue.length < 1 || isNaN(value = parseFloat(minValue.replace(',', '.'))))\n {\n value = null;\n }\n\n this._minValue = value;\n }\n\n //######################### public methods - implementation of OnChanges #########################\n\n public ngOnChanges(changes: SimpleChanges): void\n {\n if(!this._initialized)\n {\n this._initialized = true;\n\n this._validator = Validators.min(this._minValue);\n }\n\n if ('minValue' in changes)\n {\n this._validator = Validators.min(isPresent(this.minValue) ? <number>this.minValue! : this._minValue);\n }\n }\n\n //######################### public methods - implementation of Validator #########################\n\n /**\n * Validates input and returns validation result\n * @param control - Control that is being validated\n * @returns validation results\n */\n public validate(control: AbstractControl): ValidationErrors|null\n {\n return this._validator(control);\n }\n}"]}
@@ -0,0 +1,74 @@
1
+ import { Directive, forwardRef, Renderer2, ElementRef } from '@angular/core';
2
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
3
+ import { isBlank } from '@jscrpt/common';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * Value accessor provider for number inputs
7
+ */
8
+ const NUMBER_INPUT_VALUE_ACCESSOR = {
9
+ provide: NG_VALUE_ACCESSOR,
10
+ useExisting: forwardRef(() => NumberInputControlValueAccessor),
11
+ multi: true
12
+ };
13
+ /**
14
+ * Value accessor for getting and setting values for number inputs
15
+ */
16
+ export class NumberInputControlValueAccessor {
17
+ //######################### constructor #########################
18
+ constructor(_renderer, _elementRef) {
19
+ this._renderer = _renderer;
20
+ this._elementRef = _elementRef;
21
+ //######################### public properties #########################
22
+ this.onChange = (_) => { };
23
+ /**
24
+ * Method that is called when picker was touched
25
+ */
26
+ this.onTouched = () => { };
27
+ }
28
+ //######################### public methods - implementation of ControlValueAccessor #########################
29
+ /**
30
+ * Sets value to select
31
+ */
32
+ writeValue(value) {
33
+ this._renderer.setProperty(this._elementRef.nativeElement, 'value', value);
34
+ }
35
+ /**
36
+ * Registers callback that is called when value of select changes
37
+ */
38
+ registerOnChange(fn) {
39
+ this.onChange = (value) => {
40
+ if (isBlank(value) || value == '') {
41
+ fn(null);
42
+ return;
43
+ }
44
+ //removing all spaces
45
+ value = value.replace(/\s+/g, '');
46
+ if (!/^[+-]?\d+(?:[,.]\d+)?$/g.test(value)) {
47
+ fn(NaN);
48
+ return;
49
+ }
50
+ fn(parseFloat(value.replace(',', '.')));
51
+ };
52
+ }
53
+ /**
54
+ * Registers callback that is called when select is closed
55
+ */
56
+ registerOnTouched(fn) {
57
+ this.onTouched = fn;
58
+ }
59
+ }
60
+ NumberInputControlValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NumberInputControlValueAccessor, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
61
+ NumberInputControlValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: NumberInputControlValueAccessor, selector: "input[number][formControlName],input[number][formControl],input[number][ngModel]", host: { listeners: { "change": "onChange($event.target.value)", "input": "onChange($event.target.value)", "blur": "onTouched()" } }, providers: [NUMBER_INPUT_VALUE_ACCESSOR], ngImport: i0 });
62
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NumberInputControlValueAccessor, decorators: [{
63
+ type: Directive,
64
+ args: [{
65
+ selector: 'input[number][formControlName],input[number][formControl],input[number][ngModel]',
66
+ providers: [NUMBER_INPUT_VALUE_ACCESSOR],
67
+ host: {
68
+ '(change)': 'onChange($event.target.value)',
69
+ '(input)': 'onChange($event.target.value)',
70
+ '(blur)': 'onTouched()'
71
+ }
72
+ }]
73
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; } });
74
+ //# sourceMappingURL=numberInputControlValueAccessor.directive.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"numberInputControlValueAccessor.directive.js","sourceRoot":"","sources":["../../../../../forms/src/directives/numberInput/numberInputControlValueAccessor.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAoB,UAAU,EAAE,SAAS,EAAE,UAAU,EAAC,MAAM,eAAe,CAAC;AAC7F,OAAO,EAAC,iBAAiB,EAAuB,MAAM,gBAAgB,CAAC;AACvE,OAAO,EAAC,OAAO,EAAC,MAAM,gBAAgB,CAAC;;AAEvC;;GAEG;AACH,MAAM,2BAA2B,GACjC;IACI,OAAO,EAAE,iBAAiB;IAC1B,WAAW,EAAE,UAAU,CAAC,GAAG,EAAE,CAAC,+BAA+B,CAAC;IAC9D,KAAK,EAAE,IAAI;CACd,CAAC;AAEF;;GAEG;AAYH,MAAM,OAAO,+BAA+B;IAWxC,iEAAiE;IACjE,YAAoB,SAAoB,EAAU,WAAuB;QAArD,cAAS,GAAT,SAAS,CAAW;QAAU,gBAAW,GAAX,WAAW,CAAY;QAVzE,uEAAuE;QAEhE,aAAQ,GAAG,CAAC,CAAM,EAAE,EAAE,GAAE,CAAC,CAAC;QAEjC;;WAEG;QACI,cAAS,GAAG,GAAG,EAAE,GAAE,CAAC,CAAC;IAK5B,CAAC;IAED,6GAA6G;IAE7G;;OAEG;IACI,UAAU,CAAC,KAAU;QAExB,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,aAAa,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC;IAC/E,CAAC;IAED;;OAEG;IACI,gBAAgB,CAAC,EAAsB;QAE1C,IAAI,CAAC,QAAQ,GAAG,CAAC,KAAa,EAAE,EAAE;YAE9B,IAAG,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,IAAI,EAAE,EAChC;gBACI,EAAE,CAAC,IAAI,CAAC,CAAC;gBAET,OAAO;aACV;YAED,qBAAqB;YACrB,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;YAElC,IAAG,CAAC,yBAAyB,CAAC,IAAI,CAAC,KAAK,CAAC,EACzC;gBACI,EAAE,CAAC,GAAG,CAAC,CAAC;gBAER,OAAO;aACV;YAED,EAAE,CAAC,UAAU,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC;QAC5C,CAAC,CAAC;IACN,CAAC;IAED;;OAEG;IACI,iBAAiB,CAAC,EAAa;QAElC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;IACxB,CAAC;;4HA5DQ,+BAA+B;gHAA/B,+BAA+B,gPAR7B,CAAC,2BAA2B,CAAC;2FAQ/B,+BAA+B;kBAX3C,SAAS;mBACV;oBACI,QAAQ,EAAE,kFAAkF;oBAC5F,SAAS,EAAE,CAAC,2BAA2B,CAAC;oBACxC,IAAI,EACJ;wBACI,UAAU,EAAE,+BAA+B;wBAC3C,SAAS,EAAE,+BAA+B;wBAC1C,QAAQ,EAAE,aAAa;qBAC1B;iBACJ","sourcesContent":["import {Directive, ExistingProvider, forwardRef, Renderer2, ElementRef} from '@angular/core';\nimport {NG_VALUE_ACCESSOR, ControlValueAccessor} from '@angular/forms';\nimport {isBlank} from '@jscrpt/common';\n\n/**\n * Value accessor provider for number inputs\n */\nconst NUMBER_INPUT_VALUE_ACCESSOR = <ExistingProvider>\n{\n provide: NG_VALUE_ACCESSOR, \n useExisting: forwardRef(() => NumberInputControlValueAccessor), \n multi: true\n};\n\n/**\n * Value accessor for getting and setting values for number inputs\n */\n@Directive(\n{\n selector: 'input[number][formControlName],input[number][formControl],input[number][ngModel]',\n providers: [NUMBER_INPUT_VALUE_ACCESSOR],\n host: \n {\n '(change)': 'onChange($event.target.value)',\n '(input)': 'onChange($event.target.value)',\n '(blur)': 'onTouched()'\n }\n})\nexport class NumberInputControlValueAccessor implements ControlValueAccessor\n{\n //######################### public properties #########################\n \n public onChange = (_: any) => {};\n \n /**\n * Method that is called when picker was touched\n */\n public onTouched = () => {};\n \n //######################### constructor #########################\n constructor(private _renderer: Renderer2, private _elementRef: ElementRef)\n {\n }\n\n //######################### public methods - implementation of ControlValueAccessor #########################\n\n /**\n * Sets value to select\n */\n public writeValue(value: any): void\n {\n this._renderer.setProperty(this._elementRef.nativeElement, 'value', value);\n }\n\n /**\n * Registers callback that is called when value of select changes\n */\n public registerOnChange(fn: (data: any) => any): void\n {\n this.onChange = (value: string) => \n { \n if(isBlank(value) || value == '')\n {\n fn(null);\n \n return;\n }\n \n //removing all spaces\n value = value.replace(/\\s+/g, '');\n \n if(!/^[+-]?\\d+(?:[,.]\\d+)?$/g.test(value))\n {\n fn(NaN);\n \n return;\n }\n \n fn(parseFloat(value.replace(',', '.'))); \n };\n }\n\n /**\n * Registers callback that is called when select is closed\n */\n public registerOnTouched(fn: () => any): void\n {\n this.onTouched = fn;\n }\n}\n"]}
@@ -0,0 +1,36 @@
1
+ import { forwardRef, Directive } from '@angular/core';
2
+ import { NG_VALIDATORS } from '@angular/forms';
3
+ import { Validators } from '../../misc/validators';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * Validator that is injected with directive NumberInputValidatorDirective
7
+ */
8
+ const NUMBER_VALIDATOR = {
9
+ provide: NG_VALIDATORS,
10
+ useExisting: forwardRef(() => NumberInputValidatorDirective),
11
+ multi: true
12
+ };
13
+ /**
14
+ * Is number directive injecting checking for number validator
15
+ */
16
+ export class NumberInputValidatorDirective {
17
+ //######################### public methods - implementation of Validator #########################
18
+ /**
19
+ * Validates input and returns validation result
20
+ * @param control - Control that is being validated
21
+ * @returns validation results
22
+ */
23
+ validate(control) {
24
+ return Validators.number(control);
25
+ }
26
+ }
27
+ NumberInputValidatorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NumberInputValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
28
+ NumberInputValidatorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: NumberInputValidatorDirective, selector: "input[number][formControlName],input[number][formControl],input[number][ngModel]", providers: [NUMBER_VALIDATOR], ngImport: i0 });
29
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NumberInputValidatorDirective, decorators: [{
30
+ type: Directive,
31
+ args: [{
32
+ selector: 'input[number][formControlName],input[number][formControl],input[number][ngModel]',
33
+ providers: [NUMBER_VALIDATOR]
34
+ }]
35
+ }] });
36
+ //# sourceMappingURL=numberInputValidator.directive.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"numberInputValidator.directive.js","sourceRoot":"","sources":["../../../../../forms/src/directives/numberInput/numberInputValidator.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,UAAU,EAAE,SAAS,EAAC,MAAM,eAAe,CAAC;AACtE,OAAO,EAAC,aAAa,EAA+C,MAAM,gBAAgB,CAAC;AAE3F,OAAO,EAAC,UAAU,EAAC,MAAM,uBAAuB,CAAC;;AAEjD;;GAEG;AACH,MAAM,gBAAgB,GACtB;IACI,OAAO,EAAE,aAAa;IACtB,WAAW,EAAE,UAAU,CAAC,GAAG,EAAE,CAAC,6BAA6B,CAAC;IAC5D,KAAK,EAAE,IAAI;CACd,CAAC;AAEF;;GAEG;AAMH,MAAM,OAAO,6BAA6B;IAEtC,kGAAkG;IAElG;;;;OAIG;IACI,QAAQ,CAAC,OAAwB;QAEpC,OAAO,UAAU,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IACtC,CAAC;;0HAZQ,6BAA6B;8GAA7B,6BAA6B,2GAF3B,CAAC,gBAAgB,CAAC;2FAEpB,6BAA6B;kBALzC,SAAS;mBACV;oBACI,QAAQ,EAAE,kFAAkF;oBAC5F,SAAS,EAAE,CAAC,gBAAgB,CAAC;iBAChC","sourcesContent":["import {ExistingProvider, forwardRef, Directive} from '@angular/core';\nimport {NG_VALIDATORS, AbstractControl, Validator, ValidationErrors} from '@angular/forms';\n\nimport {Validators} from '../../misc/validators';\n\n/**\n * Validator that is injected with directive NumberInputValidatorDirective\n */\nconst NUMBER_VALIDATOR = <ExistingProvider>\n{\n provide: NG_VALIDATORS,\n useExisting: forwardRef(() => NumberInputValidatorDirective),\n multi: true\n};\n\n/**\n * Is number directive injecting checking for number validator\n */\n@Directive(\n{\n selector: 'input[number][formControlName],input[number][formControl],input[number][ngModel]',\n providers: [NUMBER_VALIDATOR]\n})\nexport class NumberInputValidatorDirective implements Validator\n{\n //######################### public methods - implementation of Validator #########################\n\n /**\n * Validates input and returns validation result\n * @param control - Control that is being validated\n * @returns validation results\n */\n public validate(control: AbstractControl): ValidationErrors|null\n {\n return Validators.number(control);\n }\n}"]}
@@ -0,0 +1,56 @@
1
+ import { Directive, Optional, HostBinding, ChangeDetectorRef } from '@angular/core';
2
+ import { FormControlDirective, FormControlName, FormControl } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/forms";
5
+ //TODO: reworking using hasValidator
6
+ /**
7
+ * Required class directive adds required class to element
8
+ */
9
+ export class RequiredClassDirective {
10
+ //######################### constructor #########################
11
+ constructor(_formControl, _formControlName, _changeDetector) {
12
+ this._formControl = _formControl;
13
+ this._formControlName = _formControlName;
14
+ this._changeDetector = _changeDetector;
15
+ //######################### public properties - host #########################
16
+ /**
17
+ * Handles css class for required input
18
+ */
19
+ this.required = false;
20
+ }
21
+ //######################### private properties #########################
22
+ /**
23
+ * Gets control which was assigned to this element
24
+ */
25
+ get control() {
26
+ return (this._formControl && this._formControl.control) || (this._formControlName && this._formControlName.control);
27
+ }
28
+ //######################### public methods - implementation of AfterViewInit #########################
29
+ /**
30
+ * Called when view was initialized
31
+ */
32
+ ngAfterViewInit() {
33
+ const control = this.control;
34
+ if (control && control.validator) {
35
+ const validationResult = control.validator(new FormControl(null));
36
+ this.required = validationResult && validationResult.required;
37
+ this._changeDetector.detectChanges();
38
+ }
39
+ }
40
+ }
41
+ RequiredClassDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: RequiredClassDirective, deps: [{ token: i1.FormControlDirective, optional: true }, { token: i1.FormControlName, optional: true }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
42
+ RequiredClassDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: RequiredClassDirective, selector: "[requiredClass]", host: { properties: { "class.required": "this.required" } }, ngImport: i0 });
43
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: RequiredClassDirective, decorators: [{
44
+ type: Directive,
45
+ args: [{
46
+ selector: '[requiredClass]'
47
+ }]
48
+ }], ctorParameters: function () { return [{ type: i1.FormControlDirective, decorators: [{
49
+ type: Optional
50
+ }] }, { type: i1.FormControlName, decorators: [{
51
+ type: Optional
52
+ }] }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { required: [{
53
+ type: HostBinding,
54
+ args: ['class.required']
55
+ }] } });
56
+ //# sourceMappingURL=requiredClass.directive.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"requiredClass.directive.js","sourceRoot":"","sources":["../../../../../forms/src/directives/requiredClass/requiredClass.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAE,QAAQ,EAAiB,WAAW,EAAE,iBAAiB,EAAC,MAAM,eAAe,CAAC;AACjG,OAAO,EAAC,oBAAoB,EAAE,eAAe,EAAE,WAAW,EAAC,MAAM,gBAAgB,CAAC;;;AAElF,oCAAoC;AAEpC;;GAEG;AAKH,MAAM,OAAO,sBAAsB;IAoB/B,iEAAiE;IACjE,YAAgC,YAAkC,EAClC,gBAAiC,EAC7C,eAAkC;QAFtB,iBAAY,GAAZ,YAAY,CAAsB;QAClC,qBAAgB,GAAhB,gBAAgB,CAAiB;QAC7C,oBAAe,GAAf,eAAe,CAAmB;QAXtD,8EAA8E;QAE9E;;WAEG;QAEI,aAAQ,GAAY,KAAK,CAAC;IAOjC,CAAC;IAvBD,wEAAwE;IAExE;;OAEG;IACH,IAAY,OAAO;QAEf,OAAO,CAAC,IAAI,CAAC,YAAY,IAAI,IAAI,CAAC,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,gBAAgB,IAAI,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;IACxH,CAAC;IAiBD,sGAAsG;IAEtG;;OAEG;IACI,eAAe;QAElB,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAE7B,IAAG,OAAO,IAAI,OAAO,CAAC,SAAS,EAC/B;YACI,MAAM,gBAAgB,GAAG,OAAO,CAAC,SAAS,CAAC,IAAI,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;YAClE,IAAI,CAAC,QAAQ,GAAG,gBAAgB,IAAI,gBAAgB,CAAC,QAAQ,CAAC;YAE9D,IAAI,CAAC,eAAe,CAAC,aAAa,EAAE,CAAC;SACxC;IACL,CAAC;;mHA3CQ,sBAAsB;uGAAtB,sBAAsB;2FAAtB,sBAAsB;kBAJlC,SAAS;mBACV;oBACI,QAAQ,EAAE,iBAAiB;iBAC9B;;0BAsBgB,QAAQ;;0BACR,QAAQ;4EAJd,QAAQ;sBADd,WAAW;uBAAC,gBAAgB","sourcesContent":["import {Directive, Optional, AfterViewInit, HostBinding, ChangeDetectorRef} from '@angular/core';\nimport {FormControlDirective, FormControlName, FormControl} from '@angular/forms';\n\n//TODO: reworking using hasValidator\n\n/**\n * Required class directive adds required class to element\n */\n@Directive(\n{\n selector: '[requiredClass]'\n})\nexport class RequiredClassDirective implements AfterViewInit\n{\n //######################### private properties #########################\n\n /**\n * Gets control which was assigned to this element\n */\n private get control(): FormControl\n {\n return (this._formControl && this._formControl.control) || (this._formControlName && this._formControlName.control);\n }\n\n //######################### public properties - host #########################\n\n /**\n * Handles css class for required input\n */\n @HostBinding('class.required')\n public required: boolean = false;\n\n //######################### constructor #########################\n constructor(@Optional() private _formControl: FormControlDirective,\n @Optional() private _formControlName: FormControlName,\n private _changeDetector: ChangeDetectorRef)\n {\n }\n\n //######################### public methods - implementation of AfterViewInit #########################\n \n /**\n * Called when view was initialized\n */\n public ngAfterViewInit(): void\n {\n const control = this.control;\n\n if(control && control.validator)\n {\n const validationResult = control.validator(new FormControl(null));\n this.required = validationResult && validationResult.required;\n\n this._changeDetector.detectChanges();\n }\n }\n}"]}