@anglr/common 8.0.0-beta.20211217130754 → 9.0.0-beta.20220215123148

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 (1709) hide show
  1. package/appveyor.yml +67 -0
  2. package/changelog.md +168 -33
  3. package/common.d.ts +4 -1396
  4. package/common.d.ts.map +1 -0
  5. package/common.metadata.json +1 -0
  6. package/date-fns/dist/es2015/date-fns/index.js +10 -0
  7. package/date-fns/dist/es2015/date-fns/public_api.js +7 -0
  8. package/date-fns/dist/es2015/date-fns/src/date-fns.js +7 -0
  9. package/date-fns/dist/es2015/date-fns/src/misc/utils.js +38 -0
  10. package/date-fns/dist/es2015/forms/src/directives/groupHasError/groupHasError.directive.js +128 -0
  11. package/date-fns/dist/es2015/forms/src/directives/hasError/hasError.directive.js +300 -0
  12. package/date-fns/dist/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +104 -0
  13. package/date-fns/dist/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js +104 -0
  14. package/date-fns/dist/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +125 -0
  15. package/date-fns/dist/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js +41 -0
  16. package/date-fns/dist/es2015/forms/src/directives/requiredClass/requiredClass.directive.js +89 -0
  17. package/date-fns/dist/es2015/forms/src/forms.js +25 -0
  18. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +17 -0
  19. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js +17 -0
  20. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js +16 -0
  21. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/email.decorator.js +17 -0
  22. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +17 -0
  23. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +34 -0
  24. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +17 -0
  25. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +34 -0
  26. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/index.js +25 -0
  27. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +60 -0
  28. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js +18 -0
  29. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js +18 -0
  30. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js +18 -0
  31. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js +18 -0
  32. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +52 -0
  33. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/number.decorator.js +17 -0
  34. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js +18 -0
  35. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/required.decorator.js +17 -0
  36. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js +39 -0
  37. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/validator.decorator.js +17 -0
  38. package/date-fns/dist/es2015/forms/src/misc/formModel/index.js +13 -0
  39. package/date-fns/dist/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +29 -0
  40. package/date-fns/dist/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +49 -0
  41. package/date-fns/dist/es2015/forms/src/misc/formModel/interfaces/validator.interface.js +18 -0
  42. package/date-fns/dist/es2015/forms/src/misc/formModel/misc/currentValue.js +40 -0
  43. package/date-fns/dist/es2015/forms/src/misc/formModel/misc/defaults.js +19 -0
  44. package/date-fns/dist/es2015/forms/src/misc/formModel/misc/utils.js +134 -0
  45. package/date-fns/dist/es2015/forms/src/misc/formModel/misc/validatorFactories.js +64 -0
  46. package/date-fns/dist/es2015/forms/src/misc/types.js +12 -0
  47. package/date-fns/dist/es2015/forms/src/misc/utils.js +135 -0
  48. package/date-fns/dist/es2015/forms/src/misc/validators.js +65 -0
  49. package/date-fns/dist/es2015/forms/src/modules/hasError.module.js +22 -0
  50. package/date-fns/dist/es2015/forms/src/modules/numberInput.module.js +28 -0
  51. package/date-fns/dist/es2015/forms/src/modules/requiredClass.module.js +19 -0
  52. package/date-fns/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +23 -0
  53. package/date-fns/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +107 -0
  54. package/date-fns/dist/es2015/forms/src/services/submitted/submitted.service.js +69 -0
  55. package/date-fns/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +109 -0
  56. package/date-fns/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +371 -0
  57. package/date-fns/dist/es5/date-fns/index.js +10 -0
  58. package/date-fns/dist/es5/date-fns/public_api.js +7 -0
  59. package/date-fns/dist/es5/date-fns/src/date-fns.js +7 -0
  60. package/date-fns/dist/es5/date-fns/src/misc/utils.js +38 -0
  61. package/date-fns/dist/es5/forms/src/directives/groupHasError/groupHasError.directive.js +159 -0
  62. package/date-fns/dist/es5/forms/src/directives/hasError/hasError.directive.js +368 -0
  63. package/date-fns/dist/es5/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +123 -0
  64. package/date-fns/dist/es5/forms/src/directives/numberInput/minValueNumberValidator.directive.js +123 -0
  65. package/date-fns/dist/es5/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +150 -0
  66. package/date-fns/dist/es5/forms/src/directives/numberInput/numberInputValidator.directive.js +58 -0
  67. package/date-fns/dist/es5/forms/src/directives/requiredClass/requiredClass.directive.js +105 -0
  68. package/date-fns/dist/es5/forms/src/forms.js +25 -0
  69. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +17 -0
  70. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/controlOptions.decorator.js +17 -0
  71. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/disabled.decorator.js +16 -0
  72. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/email.decorator.js +17 -0
  73. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +17 -0
  74. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +34 -0
  75. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +17 -0
  76. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +34 -0
  77. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/index.js +25 -0
  78. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +60 -0
  79. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/maxLength.decorator.js +18 -0
  80. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/maxValue.decorator.js +18 -0
  81. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/minLength.decorator.js +18 -0
  82. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/minValue.decorator.js +18 -0
  83. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +62 -0
  84. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/number.decorator.js +17 -0
  85. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/pattern.decorator.js +18 -0
  86. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/required.decorator.js +17 -0
  87. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/requiredIf.decorator.js +39 -0
  88. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/validator.decorator.js +17 -0
  89. package/date-fns/dist/es5/forms/src/misc/formModel/index.js +13 -0
  90. package/date-fns/dist/es5/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +29 -0
  91. package/date-fns/dist/es5/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +49 -0
  92. package/date-fns/dist/es5/forms/src/misc/formModel/interfaces/validator.interface.js +18 -0
  93. package/date-fns/dist/es5/forms/src/misc/formModel/misc/currentValue.js +50 -0
  94. package/date-fns/dist/es5/forms/src/misc/formModel/misc/defaults.js +19 -0
  95. package/date-fns/dist/es5/forms/src/misc/formModel/misc/utils.js +150 -0
  96. package/date-fns/dist/es5/forms/src/misc/formModel/misc/validatorFactories.js +104 -0
  97. package/date-fns/dist/es5/forms/src/misc/types.js +12 -0
  98. package/date-fns/dist/es5/forms/src/misc/utils.js +139 -0
  99. package/date-fns/dist/es5/forms/src/misc/validators.js +102 -0
  100. package/date-fns/dist/es5/forms/src/modules/hasError.module.js +26 -0
  101. package/date-fns/dist/es5/forms/src/modules/numberInput.module.js +32 -0
  102. package/date-fns/dist/es5/forms/src/modules/requiredClass.module.js +23 -0
  103. package/date-fns/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +23 -0
  104. package/date-fns/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +120 -0
  105. package/date-fns/dist/es5/forms/src/services/submitted/submitted.service.js +100 -0
  106. package/date-fns/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +109 -0
  107. package/date-fns/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +492 -0
  108. package/date-fns/index.d.ts +5 -0
  109. package/date-fns/index.d.ts.map +1 -0
  110. package/date-fns/index.metadata.json +1 -0
  111. package/date-fns/package.json +6 -7
  112. package/date-fns/public_api.d.ts +2 -0
  113. package/date-fns/public_api.d.ts.map +1 -0
  114. package/date-fns/src/date-fns.d.ts +2 -0
  115. package/date-fns/src/date-fns.d.ts.map +1 -0
  116. package/date-fns/src/misc/utils.d.ts +6 -6
  117. package/dist/es2015/common.js +11 -0
  118. package/dist/es2015/public_api.js +7 -0
  119. package/dist/es2015/src/common.js +41 -0
  120. package/dist/es2015/src/decorators/hmrData.decorator.js +22 -0
  121. package/dist/es2015/src/decorators/hmrServiceData.decorator.js +22 -0
  122. package/dist/es2015/src/decorators/hmrServiceDataConstructor.decorator.js +21 -0
  123. package/dist/es2015/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js +148 -0
  124. package/dist/es2015/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js +111 -0
  125. package/dist/es2015/src/modules/clickOutside/modules/clickOutside.module.js +24 -0
  126. package/dist/es2015/src/modules/common.module.js +39 -0
  127. package/dist/es2015/src/modules/debugData/components/debugData/debugData.component.js +121 -0
  128. package/dist/es2015/src/modules/debugData/modules/debugData.module.js +27 -0
  129. package/dist/es2015/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +71 -0
  130. package/dist/es2015/src/modules/multiButton/components/multiButton/multiButton.component.js +196 -0
  131. package/dist/es2015/src/modules/multiButton/components/multiButton/multiButton.interface.js +43 -0
  132. package/dist/es2015/src/modules/multiButton/misc/tokens.js +12 -0
  133. package/dist/es2015/src/modules/multiButton/modules/multiButton.module.js +27 -0
  134. package/dist/es2015/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js +121 -0
  135. package/dist/es2015/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js +229 -0
  136. package/dist/es2015/src/modules/progressIndicator/interceptors/progressInterceptor.js +85 -0
  137. package/dist/es2015/src/modules/progressIndicator/misc/types.js +18 -0
  138. package/dist/es2015/src/modules/progressIndicator/modules/progressIndicator.module.js +32 -0
  139. package/dist/es2015/src/modules/progressIndicator/services/progressIndicator.service.js +366 -0
  140. package/dist/es2015/src/modules/progressIndicator/services/progressIndicatorOptions.js +46 -0
  141. package/dist/es2015/src/pipes/isNaN/isNaN.pipe.js +26 -0
  142. package/dist/es2015/src/pipes/isPresent/isPresent.pipe.js +27 -0
  143. package/dist/es2015/src/pipes/localize/localize.pipe.js +85 -0
  144. package/dist/es2015/src/pipes/urlEncode/urlEncode.pipe.js +28 -0
  145. package/dist/es2015/src/services/cookies/cookies.service.js +132 -0
  146. package/dist/es2015/src/services/globalization/globalization.service.js +26 -0
  147. package/dist/es2015/src/services/ignoredInterceptors/ignoredInterceptors.service.js +97 -0
  148. package/dist/es2015/src/services/logger/index.js +8 -0
  149. package/dist/es2015/src/services/logger/logger.interface.js +103 -0
  150. package/dist/es2015/src/services/logger/logger.service.js +53 -0
  151. package/dist/es2015/src/services/notifications/defaultNotifications.service.js +335 -0
  152. package/dist/es2015/src/services/notifications/index.js +9 -0
  153. package/dist/es2015/src/services/notifications/notifications.interface.js +182 -0
  154. package/dist/es2015/src/services/notifications/notificationsOptions.js +33 -0
  155. package/dist/es2015/src/services/permanentStorage/cookiePermanentStorage.service.js +62 -0
  156. package/dist/es2015/src/services/permanentStorage/index.js +8 -0
  157. package/dist/es2015/src/services/permanentStorage/permanentStorage.interface.js +41 -0
  158. package/dist/es2015/src/services/positioning/index.js +7 -0
  159. package/dist/es2015/src/services/positioning/positioning.interface.js +11 -0
  160. package/dist/es2015/src/services/statusCode/statusCode.service.js +42 -0
  161. package/dist/es2015/src/services/stringLocalization/index.js +8 -0
  162. package/dist/es2015/src/services/stringLocalization/noStringLocalization.service.js +60 -0
  163. package/dist/es2015/src/services/stringLocalization/stringLocalization.interface.js +25 -0
  164. package/dist/es2015/src/services/temporaryStorage/index.js +8 -0
  165. package/dist/es2015/src/services/temporaryStorage/memoryTemporaryStorage.service.js +58 -0
  166. package/dist/es2015/src/services/temporaryStorage/temporaryStorage.interface.js +33 -0
  167. package/dist/es2015/src/types/additionalInfo.js +19 -0
  168. package/dist/es2015/src/types/tokens.js +69 -0
  169. package/dist/es2015/src/utils/httpRequest.extension.js +26 -0
  170. package/dist/es2015/src/utils/index.js +80 -0
  171. package/dist/es5/common.js +11 -0
  172. package/dist/es5/public_api.js +7 -0
  173. package/dist/es5/src/common.js +41 -0
  174. package/dist/es5/src/decorators/hmrData.decorator.js +22 -0
  175. package/dist/es5/src/decorators/hmrServiceData.decorator.js +22 -0
  176. package/dist/es5/src/decorators/hmrServiceDataConstructor.decorator.js +21 -0
  177. package/dist/es5/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js +169 -0
  178. package/dist/es5/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js +130 -0
  179. package/dist/es5/src/modules/clickOutside/modules/clickOutside.module.js +28 -0
  180. package/dist/es5/src/modules/common.module.js +43 -0
  181. package/dist/es5/src/modules/debugData/components/debugData/debugData.component.js +150 -0
  182. package/dist/es5/src/modules/debugData/modules/debugData.module.js +31 -0
  183. package/dist/es5/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +102 -0
  184. package/dist/es5/src/modules/multiButton/components/multiButton/multiButton.component.js +229 -0
  185. package/dist/es5/src/modules/multiButton/components/multiButton/multiButton.interface.js +43 -0
  186. package/dist/es5/src/modules/multiButton/misc/tokens.js +12 -0
  187. package/dist/es5/src/modules/multiButton/modules/multiButton.module.js +31 -0
  188. package/dist/es5/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js +148 -0
  189. package/dist/es5/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js +266 -0
  190. package/dist/es5/src/modules/progressIndicator/interceptors/progressInterceptor.js +98 -0
  191. package/dist/es5/src/modules/progressIndicator/misc/types.js +18 -0
  192. package/dist/es5/src/modules/progressIndicator/modules/progressIndicator.module.js +36 -0
  193. package/dist/es5/src/modules/progressIndicator/services/progressIndicator.service.js +489 -0
  194. package/dist/es5/src/modules/progressIndicator/services/progressIndicatorOptions.js +50 -0
  195. package/dist/es5/src/pipes/isNaN/isNaN.pipe.js +42 -0
  196. package/dist/es5/src/pipes/isPresent/isPresent.pipe.js +43 -0
  197. package/dist/es5/src/pipes/localize/localize.pipe.js +118 -0
  198. package/dist/es5/src/pipes/urlEncode/urlEncode.pipe.js +44 -0
  199. package/dist/es5/src/services/cookies/cookies.service.js +183 -0
  200. package/dist/es5/src/services/globalization/globalization.service.js +38 -0
  201. package/dist/es5/src/services/ignoredInterceptors/ignoredInterceptors.service.js +133 -0
  202. package/dist/es5/src/services/logger/index.js +8 -0
  203. package/dist/es5/src/services/logger/logger.interface.js +103 -0
  204. package/dist/es5/src/services/logger/logger.service.js +117 -0
  205. package/dist/es5/src/services/notifications/defaultNotifications.service.js +469 -0
  206. package/dist/es5/src/services/notifications/index.js +9 -0
  207. package/dist/es5/src/services/notifications/notifications.interface.js +204 -0
  208. package/dist/es5/src/services/notifications/notificationsOptions.js +38 -0
  209. package/dist/es5/src/services/permanentStorage/cookiePermanentStorage.service.js +96 -0
  210. package/dist/es5/src/services/permanentStorage/index.js +8 -0
  211. package/dist/es5/src/services/permanentStorage/permanentStorage.interface.js +41 -0
  212. package/dist/es5/src/services/positioning/index.js +7 -0
  213. package/dist/es5/src/services/positioning/positioning.interface.js +11 -0
  214. package/dist/es5/src/services/statusCode/statusCode.service.js +67 -0
  215. package/dist/es5/src/services/stringLocalization/index.js +8 -0
  216. package/dist/es5/src/services/stringLocalization/noStringLocalization.service.js +85 -0
  217. package/dist/es5/src/services/stringLocalization/stringLocalization.interface.js +25 -0
  218. package/dist/es5/src/services/temporaryStorage/index.js +8 -0
  219. package/dist/es5/src/services/temporaryStorage/memoryTemporaryStorage.service.js +93 -0
  220. package/dist/es5/src/services/temporaryStorage/temporaryStorage.interface.js +33 -0
  221. package/dist/es5/src/types/additionalInfo.js +19 -0
  222. package/dist/es5/src/types/tokens.js +69 -0
  223. package/dist/es5/src/utils/httpRequest.extension.js +26 -0
  224. package/dist/es5/src/utils/index.js +80 -0
  225. package/forms/dist/es2015/forms/index.js +10 -0
  226. package/forms/dist/es2015/forms/public_api.js +7 -0
  227. package/forms/dist/es2015/forms/src/directives/groupHasError/groupHasError.directive.js +128 -0
  228. package/forms/dist/es2015/forms/src/directives/hasError/hasError.directive.js +300 -0
  229. package/forms/dist/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +104 -0
  230. package/forms/dist/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js +104 -0
  231. package/forms/dist/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +125 -0
  232. package/forms/dist/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js +41 -0
  233. package/forms/dist/es2015/forms/src/directives/requiredClass/requiredClass.directive.js +89 -0
  234. package/forms/dist/es2015/forms/src/forms.js +25 -0
  235. package/forms/dist/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +17 -0
  236. package/forms/dist/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js +17 -0
  237. package/forms/dist/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js +16 -0
  238. package/forms/dist/es2015/forms/src/misc/formModel/decorators/email.decorator.js +17 -0
  239. package/forms/dist/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +17 -0
  240. package/forms/dist/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +34 -0
  241. package/forms/dist/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +17 -0
  242. package/forms/dist/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +34 -0
  243. package/forms/dist/es2015/forms/src/misc/formModel/decorators/index.js +25 -0
  244. package/forms/dist/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +60 -0
  245. package/forms/dist/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js +18 -0
  246. package/forms/dist/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js +18 -0
  247. package/forms/dist/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js +18 -0
  248. package/forms/dist/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js +18 -0
  249. package/forms/dist/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +52 -0
  250. package/forms/dist/es2015/forms/src/misc/formModel/decorators/number.decorator.js +17 -0
  251. package/forms/dist/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js +18 -0
  252. package/forms/dist/es2015/forms/src/misc/formModel/decorators/required.decorator.js +17 -0
  253. package/forms/dist/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js +39 -0
  254. package/forms/dist/es2015/forms/src/misc/formModel/decorators/validator.decorator.js +17 -0
  255. package/forms/dist/es2015/forms/src/misc/formModel/index.js +13 -0
  256. package/forms/dist/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +29 -0
  257. package/forms/dist/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +49 -0
  258. package/forms/dist/es2015/forms/src/misc/formModel/interfaces/validator.interface.js +18 -0
  259. package/forms/dist/es2015/forms/src/misc/formModel/misc/currentValue.js +40 -0
  260. package/forms/dist/es2015/forms/src/misc/formModel/misc/defaults.js +19 -0
  261. package/forms/dist/es2015/forms/src/misc/formModel/misc/utils.js +134 -0
  262. package/forms/dist/es2015/forms/src/misc/formModel/misc/validatorFactories.js +64 -0
  263. package/forms/dist/es2015/forms/src/misc/types.js +12 -0
  264. package/forms/dist/es2015/forms/src/misc/utils.js +135 -0
  265. package/forms/dist/es2015/forms/src/misc/validators.js +65 -0
  266. package/forms/dist/es2015/forms/src/modules/hasError.module.js +22 -0
  267. package/forms/dist/es2015/forms/src/modules/numberInput.module.js +28 -0
  268. package/forms/dist/es2015/forms/src/modules/requiredClass.module.js +19 -0
  269. package/forms/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +23 -0
  270. package/forms/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +107 -0
  271. package/forms/dist/es2015/forms/src/services/submitted/submitted.service.js +69 -0
  272. package/forms/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +109 -0
  273. package/forms/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +371 -0
  274. package/forms/dist/es5/forms/index.js +10 -0
  275. package/forms/dist/es5/forms/public_api.js +7 -0
  276. package/forms/dist/es5/forms/src/directives/groupHasError/groupHasError.directive.js +159 -0
  277. package/forms/dist/es5/forms/src/directives/hasError/hasError.directive.js +368 -0
  278. package/forms/dist/es5/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +123 -0
  279. package/forms/dist/es5/forms/src/directives/numberInput/minValueNumberValidator.directive.js +123 -0
  280. package/forms/dist/es5/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +150 -0
  281. package/forms/dist/es5/forms/src/directives/numberInput/numberInputValidator.directive.js +58 -0
  282. package/forms/dist/es5/forms/src/directives/requiredClass/requiredClass.directive.js +105 -0
  283. package/forms/dist/es5/forms/src/forms.js +25 -0
  284. package/forms/dist/es5/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +17 -0
  285. package/forms/dist/es5/forms/src/misc/formModel/decorators/controlOptions.decorator.js +17 -0
  286. package/forms/dist/es5/forms/src/misc/formModel/decorators/disabled.decorator.js +16 -0
  287. package/forms/dist/es5/forms/src/misc/formModel/decorators/email.decorator.js +17 -0
  288. package/forms/dist/es5/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +17 -0
  289. package/forms/dist/es5/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +34 -0
  290. package/forms/dist/es5/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +17 -0
  291. package/forms/dist/es5/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +34 -0
  292. package/forms/dist/es5/forms/src/misc/formModel/decorators/index.js +25 -0
  293. package/forms/dist/es5/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +60 -0
  294. package/forms/dist/es5/forms/src/misc/formModel/decorators/maxLength.decorator.js +18 -0
  295. package/forms/dist/es5/forms/src/misc/formModel/decorators/maxValue.decorator.js +18 -0
  296. package/forms/dist/es5/forms/src/misc/formModel/decorators/minLength.decorator.js +18 -0
  297. package/forms/dist/es5/forms/src/misc/formModel/decorators/minValue.decorator.js +18 -0
  298. package/forms/dist/es5/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +62 -0
  299. package/forms/dist/es5/forms/src/misc/formModel/decorators/number.decorator.js +17 -0
  300. package/forms/dist/es5/forms/src/misc/formModel/decorators/pattern.decorator.js +18 -0
  301. package/forms/dist/es5/forms/src/misc/formModel/decorators/required.decorator.js +17 -0
  302. package/forms/dist/es5/forms/src/misc/formModel/decorators/requiredIf.decorator.js +39 -0
  303. package/forms/dist/es5/forms/src/misc/formModel/decorators/validator.decorator.js +17 -0
  304. package/forms/dist/es5/forms/src/misc/formModel/index.js +13 -0
  305. package/forms/dist/es5/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +29 -0
  306. package/forms/dist/es5/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +49 -0
  307. package/forms/dist/es5/forms/src/misc/formModel/interfaces/validator.interface.js +18 -0
  308. package/forms/dist/es5/forms/src/misc/formModel/misc/currentValue.js +50 -0
  309. package/forms/dist/es5/forms/src/misc/formModel/misc/defaults.js +19 -0
  310. package/forms/dist/es5/forms/src/misc/formModel/misc/utils.js +150 -0
  311. package/forms/dist/es5/forms/src/misc/formModel/misc/validatorFactories.js +104 -0
  312. package/forms/dist/es5/forms/src/misc/types.js +12 -0
  313. package/forms/dist/es5/forms/src/misc/utils.js +139 -0
  314. package/forms/dist/es5/forms/src/misc/validators.js +102 -0
  315. package/forms/dist/es5/forms/src/modules/hasError.module.js +26 -0
  316. package/forms/dist/es5/forms/src/modules/numberInput.module.js +32 -0
  317. package/forms/dist/es5/forms/src/modules/requiredClass.module.js +23 -0
  318. package/forms/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +23 -0
  319. package/forms/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +120 -0
  320. package/forms/dist/es5/forms/src/services/submitted/submitted.service.js +100 -0
  321. package/forms/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +109 -0
  322. package/forms/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +492 -0
  323. package/forms/index.d.ts +5 -0
  324. package/forms/index.d.ts.map +1 -0
  325. package/forms/index.metadata.json +1 -0
  326. package/forms/package.json +6 -7
  327. package/forms/public_api.d.ts +2 -0
  328. package/forms/public_api.d.ts.map +1 -0
  329. package/forms/src/directives/groupHasError/groupHasError.directive.d.ts +39 -42
  330. package/forms/src/directives/groupHasError/groupHasError.directive.d.ts.map +1 -1
  331. package/forms/src/directives/groupHasError/groupHasError.directive.ngfactory.d.ts.map +1 -0
  332. package/forms/src/directives/hasError/hasError.directive.d.ts +83 -86
  333. package/forms/src/directives/hasError/hasError.directive.d.ts.map +1 -1
  334. package/forms/src/directives/hasError/hasError.directive.ngfactory.d.ts.map +1 -0
  335. package/forms/src/directives/numberInput/maxValueNumberValidator.directive.d.ts +31 -34
  336. package/forms/src/directives/numberInput/maxValueNumberValidator.directive.d.ts.map +1 -1
  337. package/forms/src/directives/numberInput/maxValueNumberValidator.directive.ngfactory.d.ts.map +1 -0
  338. package/forms/src/directives/numberInput/minValueNumberValidator.directive.d.ts +31 -34
  339. package/forms/src/directives/numberInput/minValueNumberValidator.directive.d.ts.map +1 -1
  340. package/forms/src/directives/numberInput/minValueNumberValidator.directive.ngfactory.d.ts.map +1 -0
  341. package/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.d.ts +27 -30
  342. package/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.d.ts.map +1 -1
  343. package/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.ngfactory.d.ts.map +1 -0
  344. package/forms/src/directives/numberInput/numberInputValidator.directive.d.ts +12 -15
  345. package/forms/src/directives/numberInput/numberInputValidator.directive.d.ts.map +1 -1
  346. package/forms/src/directives/numberInput/numberInputValidator.directive.ngfactory.d.ts.map +1 -0
  347. package/forms/src/directives/requiredClass/requiredClass.directive.d.ts +23 -26
  348. package/forms/src/directives/requiredClass/requiredClass.directive.d.ts.map +1 -1
  349. package/forms/src/directives/requiredClass/requiredClass.directive.ngfactory.d.ts.map +1 -0
  350. package/forms/src/forms.d.ts +20 -0
  351. package/forms/src/forms.d.ts.map +1 -0
  352. package/forms/src/misc/formModel/decorators/asyncValidator.decorator.d.ts +7 -7
  353. package/forms/src/misc/formModel/decorators/controlOptions.decorator.d.ts +6 -6
  354. package/forms/src/misc/formModel/decorators/disabled.decorator.d.ts +4 -4
  355. package/forms/src/misc/formModel/decorators/email.decorator.d.ts +4 -4
  356. package/forms/src/misc/formModel/decorators/formArrayProperty.decorator.d.ts +4 -4
  357. package/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.d.ts +7 -7
  358. package/forms/src/misc/formModel/decorators/formGroupProperty.decorator.d.ts +4 -4
  359. package/forms/src/misc/formModel/decorators/formGroupValidator.decorator.d.ts +7 -7
  360. package/forms/src/misc/formModel/decorators/index.d.ts +19 -19
  361. package/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.d.ts +20 -20
  362. package/forms/src/misc/formModel/decorators/maxLength.decorator.d.ts +5 -5
  363. package/forms/src/misc/formModel/decorators/maxValue.decorator.d.ts +5 -5
  364. package/forms/src/misc/formModel/decorators/minLength.decorator.d.ts +5 -5
  365. package/forms/src/misc/formModel/decorators/minValue.decorator.d.ts +5 -5
  366. package/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.d.ts +7 -7
  367. package/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.d.ts.map +1 -1
  368. package/forms/src/misc/formModel/decorators/number.decorator.d.ts +4 -4
  369. package/forms/src/misc/formModel/decorators/pattern.decorator.d.ts +4 -4
  370. package/forms/src/misc/formModel/decorators/required.decorator.d.ts +4 -4
  371. package/forms/src/misc/formModel/decorators/requiredIf.decorator.d.ts +5 -5
  372. package/forms/src/misc/formModel/decorators/validator.decorator.d.ts +7 -7
  373. package/forms/src/misc/formModel/index.d.ts +7 -7
  374. package/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.d.ts +20 -20
  375. package/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.d.ts +40 -40
  376. package/forms/src/misc/formModel/interfaces/validator.interface.d.ts +22 -22
  377. package/forms/src/misc/formModel/misc/currentValue.d.ts +17 -17
  378. package/forms/src/misc/formModel/misc/defaults.d.ts +5 -5
  379. package/forms/src/misc/formModel/misc/utils.d.ts +8 -8
  380. package/forms/src/misc/formModel/misc/utils.d.ts.map +1 -1
  381. package/forms/src/misc/formModel/misc/validatorFactories.d.ts +32 -32
  382. package/forms/src/misc/types.d.ts +6 -6
  383. package/forms/src/misc/utils.d.ts +41 -42
  384. package/forms/src/misc/utils.d.ts.map +1 -1
  385. package/forms/src/misc/validators.d.ts +21 -21
  386. package/forms/src/modules/hasError.module.d.ts +5 -11
  387. package/forms/src/modules/hasError.module.d.ts.map +1 -1
  388. package/forms/src/modules/hasError.module.ngfactory.d.ts.map +1 -0
  389. package/forms/src/modules/numberInput.module.d.ts +5 -13
  390. package/forms/src/modules/numberInput.module.d.ts.map +1 -1
  391. package/forms/src/modules/numberInput.module.ngfactory.d.ts.map +1 -0
  392. package/forms/src/modules/requiredClass.module.d.ts +5 -10
  393. package/forms/src/modules/requiredClass.module.d.ts.map +1 -1
  394. package/forms/src/modules/requiredClass.module.ngfactory.d.ts.map +1 -0
  395. package/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.d.ts +13 -13
  396. package/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.d.ts +25 -28
  397. package/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.d.ts.map +1 -1
  398. package/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.ngfactory.d.ts.map +1 -0
  399. package/forms/src/services/submitted/submitted.service.d.ts +27 -30
  400. package/forms/src/services/submitted/submitted.service.d.ts.map +1 -1
  401. package/forms/src/services/submitted/submitted.service.ngfactory.d.ts.map +1 -0
  402. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.d.ts +105 -105
  403. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.d.ts.map +1 -1
  404. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.d.ts +106 -109
  405. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.d.ts.map +1 -1
  406. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.ngfactory.d.ts.map +1 -0
  407. package/hmr/dist/es2015/hmr/index.js +10 -0
  408. package/hmr/dist/es2015/hmr/public_api.js +7 -0
  409. package/hmr/dist/es2015/hmr/src/hmr.js +84 -0
  410. package/hmr/dist/es5/hmr/index.js +10 -0
  411. package/hmr/dist/es5/hmr/public_api.js +7 -0
  412. package/hmr/dist/es5/hmr/src/hmr.js +85 -0
  413. package/hmr/index.d.ts +5 -0
  414. package/hmr/index.d.ts.map +1 -0
  415. package/hmr/index.metadata.json +1 -0
  416. package/hmr/package.json +6 -7
  417. package/hmr/public_api.d.ts +2 -0
  418. package/hmr/public_api.d.ts.map +1 -0
  419. package/hmr/src/hmr.d.ts +13 -0
  420. package/hmr/src/hmr.d.ts.map +1 -0
  421. package/hotkeys/dist/es2015/hotkeys/index.js +10 -0
  422. package/hotkeys/dist/es2015/hotkeys/public_api.js +7 -0
  423. package/hotkeys/dist/es2015/hotkeys/src/hotkeys.js +7 -0
  424. package/hotkeys/dist/es2015/hotkeys/src/services/appHotkeys.service.js +205 -0
  425. package/hotkeys/dist/es5/hotkeys/index.js +10 -0
  426. package/hotkeys/dist/es5/hotkeys/public_api.js +7 -0
  427. package/hotkeys/dist/es5/hotkeys/src/hotkeys.js +7 -0
  428. package/hotkeys/dist/es5/hotkeys/src/services/appHotkeys.service.js +241 -0
  429. package/hotkeys/index.d.ts +5 -0
  430. package/hotkeys/index.d.ts.map +1 -0
  431. package/hotkeys/index.metadata.json +1 -0
  432. package/hotkeys/package.json +6 -7
  433. package/hotkeys/public_api.d.ts +2 -0
  434. package/hotkeys/public_api.d.ts.map +1 -0
  435. package/hotkeys/src/hotkeys.d.ts +2 -0
  436. package/hotkeys/src/hotkeys.d.ts.map +1 -0
  437. package/hotkeys/src/services/appHotkeys.service.d.ts +43 -50
  438. package/hotkeys/src/services/appHotkeys.service.d.ts.map +1 -1
  439. package/material/dist/es2015/material/index.js +11 -0
  440. package/material/dist/es2015/material/public_api.js +7 -0
  441. package/material/dist/es2015/material/src/components/confirmationDialog/confirmationDialog.component.js +66 -0
  442. package/material/dist/es2015/material/src/components/titledDialog/titledDialog.component.js +65 -0
  443. package/material/dist/es2015/material/src/directives/confirmationDialog/confirmationDialog.directive.js +163 -0
  444. package/material/dist/es2015/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +70 -0
  445. package/material/dist/es2015/material/src/material.js +15 -0
  446. package/material/dist/es2015/material/src/misc/interfaces/confirmationDialog.interface.js +65 -0
  447. package/material/dist/es2015/material/src/misc/interfaces/titledDialog.interface.js +47 -0
  448. package/material/dist/es2015/material/src/misc/tokens.js +12 -0
  449. package/material/dist/es2015/material/src/modules/confirmationDialog.module.js +33 -0
  450. package/material/dist/es2015/material/src/modules/debugDataCopyClick.module.js +26 -0
  451. package/material/dist/es2015/material/src/modules/titledDialog.module.js +30 -0
  452. package/material/dist/es2015/material/src/services/titledDialog/titledDialog.service.js +55 -0
  453. package/material/dist/es5/material/index.js +11 -0
  454. package/material/dist/es5/material/public_api.js +7 -0
  455. package/material/dist/es5/material/src/components/confirmationDialog/confirmationDialog.component.js +63 -0
  456. package/material/dist/es5/material/src/components/titledDialog/titledDialog.component.js +66 -0
  457. package/material/dist/es5/material/src/directives/confirmationDialog/confirmationDialog.directive.js +208 -0
  458. package/material/dist/es5/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +83 -0
  459. package/material/dist/es5/material/src/material.js +15 -0
  460. package/material/dist/es5/material/src/misc/interfaces/confirmationDialog.interface.js +65 -0
  461. package/material/dist/es5/material/src/misc/interfaces/titledDialog.interface.js +47 -0
  462. package/material/dist/es5/material/src/misc/tokens.js +12 -0
  463. package/material/dist/es5/material/src/modules/confirmationDialog.module.js +37 -0
  464. package/material/dist/es5/material/src/modules/debugDataCopyClick.module.js +30 -0
  465. package/material/dist/es5/material/src/modules/titledDialog.module.js +34 -0
  466. package/material/dist/es5/material/src/services/titledDialog/titledDialog.service.js +70 -0
  467. package/material/index.d.ts +7 -0
  468. package/material/index.d.ts.map +1 -0
  469. package/material/index.metadata.json +1 -0
  470. package/material/package.json +6 -7
  471. package/material/public_api.d.ts +2 -0
  472. package/material/public_api.d.ts.map +1 -0
  473. package/material/src/components/confirmationDialog/confirmationDialog.component.d.ts +14 -17
  474. package/material/src/components/confirmationDialog/confirmationDialog.component.d.ts.map +1 -1
  475. package/material/src/components/confirmationDialog/confirmationDialog.component.ngfactory.d.ts.map +1 -0
  476. package/material/src/components/titledDialog/titledDialog.component.css.shim.ngstyle.d.ts.map +1 -0
  477. package/material/src/components/titledDialog/titledDialog.component.d.ts +17 -20
  478. package/material/src/components/titledDialog/titledDialog.component.d.ts.map +1 -1
  479. package/material/src/components/titledDialog/titledDialog.component.ngfactory.d.ts.map +1 -0
  480. package/material/src/directives/confirmationDialog/confirmationDialog.directive.d.ts +46 -49
  481. package/material/src/directives/confirmationDialog/confirmationDialog.directive.d.ts.map +1 -1
  482. package/material/src/directives/confirmationDialog/confirmationDialog.directive.ngfactory.d.ts.map +1 -0
  483. package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.d.ts +24 -27
  484. package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.d.ts.map +1 -1
  485. package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.ngfactory.d.ts.map +1 -0
  486. package/material/src/material.d.ts +11 -0
  487. package/material/src/material.d.ts.map +1 -0
  488. package/material/src/misc/interfaces/confirmationDialog.interface.d.ts +46 -46
  489. package/material/src/misc/interfaces/titledDialog.interface.d.ts +33 -33
  490. package/material/src/misc/tokens.d.ts +6 -6
  491. package/material/src/modules/confirmationDialog.module.d.ts +5 -14
  492. package/material/src/modules/confirmationDialog.module.d.ts.map +1 -1
  493. package/material/src/modules/confirmationDialog.module.ngfactory.d.ts.map +1 -0
  494. package/material/src/modules/debugDataCopyClick.module.d.ts +5 -11
  495. package/material/src/modules/debugDataCopyClick.module.d.ts.map +1 -1
  496. package/material/src/modules/debugDataCopyClick.module.ngfactory.d.ts.map +1 -0
  497. package/material/src/modules/titledDialog.module.d.ts +5 -12
  498. package/material/src/modules/titledDialog.module.d.ts.map +1 -1
  499. package/material/src/modules/titledDialog.module.ngfactory.d.ts.map +1 -0
  500. package/material/src/services/titledDialog/titledDialog.service.d.ts +18 -21
  501. package/material/src/services/titledDialog/titledDialog.service.d.ts.map +1 -1
  502. package/material/src/services/titledDialog/titledDialog.service.ngfactory.d.ts.map +1 -0
  503. package/moment/dist/es2015/forms/src/directives/groupHasError/groupHasError.directive.js +128 -0
  504. package/moment/dist/es2015/forms/src/directives/hasError/hasError.directive.js +300 -0
  505. package/moment/dist/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +104 -0
  506. package/moment/dist/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js +104 -0
  507. package/moment/dist/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +125 -0
  508. package/moment/dist/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js +41 -0
  509. package/moment/dist/es2015/forms/src/directives/requiredClass/requiredClass.directive.js +89 -0
  510. package/moment/dist/es2015/forms/src/forms.js +25 -0
  511. package/moment/dist/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +17 -0
  512. package/moment/dist/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js +17 -0
  513. package/moment/dist/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js +16 -0
  514. package/moment/dist/es2015/forms/src/misc/formModel/decorators/email.decorator.js +17 -0
  515. package/moment/dist/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +17 -0
  516. package/moment/dist/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +34 -0
  517. package/moment/dist/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +17 -0
  518. package/moment/dist/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +34 -0
  519. package/moment/dist/es2015/forms/src/misc/formModel/decorators/index.js +25 -0
  520. package/moment/dist/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +60 -0
  521. package/moment/dist/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js +18 -0
  522. package/moment/dist/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js +18 -0
  523. package/moment/dist/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js +18 -0
  524. package/moment/dist/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js +18 -0
  525. package/moment/dist/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +52 -0
  526. package/moment/dist/es2015/forms/src/misc/formModel/decorators/number.decorator.js +17 -0
  527. package/moment/dist/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js +18 -0
  528. package/moment/dist/es2015/forms/src/misc/formModel/decorators/required.decorator.js +17 -0
  529. package/moment/dist/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js +39 -0
  530. package/moment/dist/es2015/forms/src/misc/formModel/decorators/validator.decorator.js +17 -0
  531. package/moment/dist/es2015/forms/src/misc/formModel/index.js +13 -0
  532. package/moment/dist/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +29 -0
  533. package/moment/dist/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +49 -0
  534. package/moment/dist/es2015/forms/src/misc/formModel/interfaces/validator.interface.js +18 -0
  535. package/moment/dist/es2015/forms/src/misc/formModel/misc/currentValue.js +40 -0
  536. package/moment/dist/es2015/forms/src/misc/formModel/misc/defaults.js +19 -0
  537. package/moment/dist/es2015/forms/src/misc/formModel/misc/utils.js +134 -0
  538. package/moment/dist/es2015/forms/src/misc/formModel/misc/validatorFactories.js +64 -0
  539. package/moment/dist/es2015/forms/src/misc/types.js +12 -0
  540. package/moment/dist/es2015/forms/src/misc/utils.js +135 -0
  541. package/moment/dist/es2015/forms/src/misc/validators.js +65 -0
  542. package/moment/dist/es2015/forms/src/modules/hasError.module.js +22 -0
  543. package/moment/dist/es2015/forms/src/modules/numberInput.module.js +28 -0
  544. package/moment/dist/es2015/forms/src/modules/requiredClass.module.js +19 -0
  545. package/moment/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +23 -0
  546. package/moment/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +107 -0
  547. package/moment/dist/es2015/forms/src/services/submitted/submitted.service.js +69 -0
  548. package/moment/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +109 -0
  549. package/moment/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +371 -0
  550. package/moment/dist/es2015/moment/index.js +12 -0
  551. package/moment/dist/es2015/moment/public_api.js +7 -0
  552. package/moment/dist/es2015/moment/src/misc/utils.js +41 -0
  553. package/moment/dist/es2015/moment/src/modules/moment.module.js +26 -0
  554. package/moment/dist/es2015/moment/src/moment.js +8 -0
  555. package/moment/dist/es2015/moment/src/pipes/momentConvert/momentConvert.pipe.js +34 -0
  556. package/moment/dist/es2015/moment/src/pipes/momentFormat/momentFormat.pipe.js +38 -0
  557. package/moment/dist/es5/forms/src/directives/groupHasError/groupHasError.directive.js +159 -0
  558. package/moment/dist/es5/forms/src/directives/hasError/hasError.directive.js +368 -0
  559. package/moment/dist/es5/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +123 -0
  560. package/moment/dist/es5/forms/src/directives/numberInput/minValueNumberValidator.directive.js +123 -0
  561. package/moment/dist/es5/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +150 -0
  562. package/moment/dist/es5/forms/src/directives/numberInput/numberInputValidator.directive.js +58 -0
  563. package/moment/dist/es5/forms/src/directives/requiredClass/requiredClass.directive.js +105 -0
  564. package/moment/dist/es5/forms/src/forms.js +25 -0
  565. package/moment/dist/es5/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +17 -0
  566. package/moment/dist/es5/forms/src/misc/formModel/decorators/controlOptions.decorator.js +17 -0
  567. package/moment/dist/es5/forms/src/misc/formModel/decorators/disabled.decorator.js +16 -0
  568. package/moment/dist/es5/forms/src/misc/formModel/decorators/email.decorator.js +17 -0
  569. package/moment/dist/es5/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +17 -0
  570. package/moment/dist/es5/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +34 -0
  571. package/moment/dist/es5/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +17 -0
  572. package/moment/dist/es5/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +34 -0
  573. package/moment/dist/es5/forms/src/misc/formModel/decorators/index.js +25 -0
  574. package/moment/dist/es5/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +60 -0
  575. package/moment/dist/es5/forms/src/misc/formModel/decorators/maxLength.decorator.js +18 -0
  576. package/moment/dist/es5/forms/src/misc/formModel/decorators/maxValue.decorator.js +18 -0
  577. package/moment/dist/es5/forms/src/misc/formModel/decorators/minLength.decorator.js +18 -0
  578. package/moment/dist/es5/forms/src/misc/formModel/decorators/minValue.decorator.js +18 -0
  579. package/moment/dist/es5/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +62 -0
  580. package/moment/dist/es5/forms/src/misc/formModel/decorators/number.decorator.js +17 -0
  581. package/moment/dist/es5/forms/src/misc/formModel/decorators/pattern.decorator.js +18 -0
  582. package/moment/dist/es5/forms/src/misc/formModel/decorators/required.decorator.js +17 -0
  583. package/moment/dist/es5/forms/src/misc/formModel/decorators/requiredIf.decorator.js +39 -0
  584. package/moment/dist/es5/forms/src/misc/formModel/decorators/validator.decorator.js +17 -0
  585. package/moment/dist/es5/forms/src/misc/formModel/index.js +13 -0
  586. package/moment/dist/es5/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +29 -0
  587. package/moment/dist/es5/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +49 -0
  588. package/moment/dist/es5/forms/src/misc/formModel/interfaces/validator.interface.js +18 -0
  589. package/moment/dist/es5/forms/src/misc/formModel/misc/currentValue.js +50 -0
  590. package/moment/dist/es5/forms/src/misc/formModel/misc/defaults.js +19 -0
  591. package/moment/dist/es5/forms/src/misc/formModel/misc/utils.js +150 -0
  592. package/moment/dist/es5/forms/src/misc/formModel/misc/validatorFactories.js +104 -0
  593. package/moment/dist/es5/forms/src/misc/types.js +12 -0
  594. package/moment/dist/es5/forms/src/misc/utils.js +139 -0
  595. package/moment/dist/es5/forms/src/misc/validators.js +102 -0
  596. package/moment/dist/es5/forms/src/modules/hasError.module.js +26 -0
  597. package/moment/dist/es5/forms/src/modules/numberInput.module.js +32 -0
  598. package/moment/dist/es5/forms/src/modules/requiredClass.module.js +23 -0
  599. package/moment/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +23 -0
  600. package/moment/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +120 -0
  601. package/moment/dist/es5/forms/src/services/submitted/submitted.service.js +100 -0
  602. package/moment/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +109 -0
  603. package/moment/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +492 -0
  604. package/moment/dist/es5/moment/index.js +12 -0
  605. package/moment/dist/es5/moment/public_api.js +7 -0
  606. package/moment/dist/es5/moment/src/misc/utils.js +42 -0
  607. package/moment/dist/es5/moment/src/modules/moment.module.js +30 -0
  608. package/moment/dist/es5/moment/src/moment.js +8 -0
  609. package/moment/dist/es5/moment/src/pipes/momentConvert/momentConvert.pipe.js +50 -0
  610. package/moment/dist/es5/moment/src/pipes/momentFormat/momentFormat.pipe.js +57 -0
  611. package/moment/index.d.ts +7 -0
  612. package/moment/index.d.ts.map +1 -0
  613. package/moment/index.metadata.json +1 -0
  614. package/moment/package.json +6 -7
  615. package/moment/public_api.d.ts +2 -0
  616. package/moment/public_api.d.ts.map +1 -0
  617. package/moment/src/misc/utils.d.ts +7 -7
  618. package/moment/src/modules/moment.module.d.ts +5 -11
  619. package/moment/src/modules/moment.module.d.ts.map +1 -1
  620. package/moment/src/modules/moment.module.ngfactory.d.ts.map +1 -0
  621. package/moment/src/moment.d.ts +3 -0
  622. package/moment/src/moment.d.ts.map +1 -0
  623. package/moment/src/pipes/momentConvert/momentConvert.pipe.d.ts +12 -15
  624. package/moment/src/pipes/momentConvert/momentConvert.pipe.d.ts.map +1 -1
  625. package/moment/src/pipes/momentConvert/momentConvert.pipe.ngfactory.d.ts.map +1 -0
  626. package/moment/src/pipes/momentFormat/momentFormat.pipe.d.ts +13 -16
  627. package/moment/src/pipes/momentFormat/momentFormat.pipe.d.ts.map +1 -1
  628. package/moment/src/pipes/momentFormat/momentFormat.pipe.ngfactory.d.ts.map +1 -0
  629. package/numeral/dist/es2015/numeral/index.js +10 -0
  630. package/numeral/dist/es2015/numeral/public_api.js +7 -0
  631. package/numeral/dist/es2015/numeral/src/modules/numeral.module.js +19 -0
  632. package/numeral/dist/es2015/numeral/src/numeral.js +8 -0
  633. package/numeral/dist/es2015/numeral/src/pipes/numeral.pipe.js +70 -0
  634. package/numeral/dist/es5/numeral/index.js +10 -0
  635. package/numeral/dist/es5/numeral/public_api.js +7 -0
  636. package/numeral/dist/es5/numeral/src/modules/numeral.module.js +23 -0
  637. package/numeral/dist/es5/numeral/src/numeral.js +8 -0
  638. package/numeral/dist/es5/numeral/src/pipes/numeral.pipe.js +93 -0
  639. package/numeral/index.d.ts +5 -0
  640. package/numeral/index.d.ts.map +1 -0
  641. package/numeral/index.metadata.json +1 -0
  642. package/numeral/package.json +6 -7
  643. package/numeral/public_api.d.ts +2 -0
  644. package/numeral/public_api.d.ts.map +1 -0
  645. package/numeral/src/modules/numeral.module.d.ts +5 -10
  646. package/numeral/src/modules/numeral.module.d.ts.map +1 -1
  647. package/numeral/src/modules/numeral.module.ngfactory.d.ts.map +1 -0
  648. package/numeral/src/numeral.d.ts +3 -0
  649. package/numeral/src/numeral.d.ts.map +1 -0
  650. package/numeral/src/pipes/numeral.pipe.d.ts +22 -25
  651. package/numeral/src/pipes/numeral.pipe.d.ts.map +1 -1
  652. package/numeral/src/pipes/numeral.pipe.ngfactory.d.ts.map +1 -0
  653. package/package.json +89 -200
  654. package/positions/dist/es2015/positions/index.js +10 -0
  655. package/positions/dist/es2015/positions/public_api.js +7 -0
  656. package/positions/dist/es2015/positions/src/misc/utils.js +148 -0
  657. package/positions/dist/es2015/positions/src/modules/positions/directives/positionTo/positionTo.directive.js +99 -0
  658. package/positions/dist/es2015/positions/src/modules/positions/modules/positions.module.js +24 -0
  659. package/positions/dist/es2015/positions/src/modules/tooltip/components/tooltip/tooltip.component.js +161 -0
  660. package/positions/dist/es2015/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js +352 -0
  661. package/positions/dist/es2015/positions/src/modules/tooltip/misc/tokens.js +12 -0
  662. package/positions/dist/es2015/positions/src/modules/tooltip/misc/tooltip.interface.js +94 -0
  663. package/positions/dist/es2015/positions/src/modules/tooltip/modules/tooltip.module.js +29 -0
  664. package/positions/dist/es2015/positions/src/positions.js +14 -0
  665. package/positions/dist/es5/positions/index.js +10 -0
  666. package/positions/dist/es5/positions/public_api.js +7 -0
  667. package/positions/dist/es5/positions/src/misc/utils.js +151 -0
  668. package/positions/dist/es5/positions/src/modules/positions/directives/positionTo/positionTo.directive.js +109 -0
  669. package/positions/dist/es5/positions/src/modules/positions/modules/positions.module.js +28 -0
  670. package/positions/dist/es5/positions/src/modules/tooltip/components/tooltip/tooltip.component.js +201 -0
  671. package/positions/dist/es5/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js +448 -0
  672. package/positions/dist/es5/positions/src/modules/tooltip/misc/tokens.js +12 -0
  673. package/positions/dist/es5/positions/src/modules/tooltip/misc/tooltip.interface.js +94 -0
  674. package/positions/dist/es5/positions/src/modules/tooltip/modules/tooltip.module.js +33 -0
  675. package/positions/dist/es5/positions/src/positions.js +14 -0
  676. package/positions/index.d.ts +5 -0
  677. package/positions/index.d.ts.map +1 -0
  678. package/positions/index.metadata.json +1 -0
  679. package/positions/package.json +6 -7
  680. package/positions/public_api.d.ts +2 -0
  681. package/positions/public_api.d.ts.map +1 -0
  682. package/positions/src/misc/utils.d.ts +21 -21
  683. package/positions/src/misc/utils.d.ts.map +1 -1
  684. package/positions/src/modules/positions/directives/positionTo/positionTo.directive.d.ts +30 -33
  685. package/positions/src/modules/positions/directives/positionTo/positionTo.directive.d.ts.map +1 -1
  686. package/positions/src/modules/positions/modules/positions.module.d.ts +5 -10
  687. package/positions/src/modules/positions/modules/positions.module.d.ts.map +1 -1
  688. package/positions/src/modules/tooltip/components/tooltip/tooltip.component.d.ts +59 -62
  689. package/positions/src/modules/tooltip/components/tooltip/tooltip.component.d.ts.map +1 -1
  690. package/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.d.ts +102 -105
  691. package/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.d.ts.map +1 -1
  692. package/positions/src/modules/tooltip/misc/tokens.d.ts +6 -6
  693. package/positions/src/modules/tooltip/misc/tooltip.interface.d.ts +70 -70
  694. package/positions/src/modules/tooltip/misc/tooltip.interface.d.ts.map +1 -1
  695. package/positions/src/modules/tooltip/modules/tooltip.module.d.ts +5 -12
  696. package/positions/src/modules/tooltip/modules/tooltip.module.d.ts.map +1 -1
  697. package/positions/src/positions.d.ts +9 -0
  698. package/positions/src/positions.d.ts.map +1 -0
  699. package/public_api.d.ts +2 -0
  700. package/public_api.d.ts.map +1 -0
  701. package/router/dist/es2015/router/index.js +10 -0
  702. package/router/dist/es2015/router/public_api.js +7 -0
  703. package/router/dist/es2015/router/src/decorators/componentRedirectRoute.decorator.js +67 -0
  704. package/router/dist/es2015/router/src/decorators/componentRoute.decorator.js +46 -0
  705. package/router/dist/es2015/router/src/decorators/moduleRoutes.decorator.js +96 -0
  706. package/router/dist/es2015/router/src/misc/utils.js +49 -0
  707. package/router/dist/es2015/router/src/router.js +12 -0
  708. package/router/dist/es2015/router/src/services/routing/dataRouter.js +130 -0
  709. package/router/dist/es2015/router/src/services/routing/dataRouterData.js +35 -0
  710. package/router/dist/es5/router/index.js +10 -0
  711. package/router/dist/es5/router/public_api.js +7 -0
  712. package/router/dist/es5/router/src/decorators/componentRedirectRoute.decorator.js +67 -0
  713. package/router/dist/es5/router/src/decorators/componentRoute.decorator.js +46 -0
  714. package/router/dist/es5/router/src/decorators/moduleRoutes.decorator.js +96 -0
  715. package/router/dist/es5/router/src/misc/utils.js +49 -0
  716. package/router/dist/es5/router/src/router.js +12 -0
  717. package/router/dist/es5/router/src/services/routing/dataRouter.js +154 -0
  718. package/router/dist/es5/router/src/services/routing/dataRouterData.js +34 -0
  719. package/router/index.d.ts +5 -0
  720. package/router/index.d.ts.map +1 -0
  721. package/router/index.metadata.json +1 -0
  722. package/router/package.json +6 -7
  723. package/router/public_api.d.ts +2 -0
  724. package/router/public_api.d.ts.map +1 -0
  725. package/router/src/decorators/componentRedirectRoute.decorator.d.ts +18 -18
  726. package/router/src/decorators/componentRoute.decorator.d.ts +15 -19
  727. package/router/src/decorators/componentRoute.decorator.d.ts.map +1 -1
  728. package/router/src/decorators/moduleRoutes.decorator.d.ts +38 -38
  729. package/router/src/misc/utils.d.ts +7 -7
  730. package/router/src/router.d.ts +7 -0
  731. package/router/src/router.d.ts.map +1 -0
  732. package/router/src/services/routing/dataRouter.d.ts +31 -34
  733. package/router/src/services/routing/dataRouter.d.ts.map +1 -1
  734. package/router/src/services/routing/dataRouterData.d.ts +12 -15
  735. package/router/src/services/routing/dataRouterData.d.ts.map +1 -1
  736. package/src/common.d.ts +39 -0
  737. package/src/common.d.ts.map +1 -0
  738. package/src/decorators/hmrData.decorator.d.ts +7 -0
  739. package/src/decorators/hmrData.decorator.d.ts.map +1 -0
  740. package/src/decorators/hmrServiceData.decorator.d.ts +7 -0
  741. package/src/decorators/hmrServiceData.decorator.d.ts.map +1 -0
  742. package/src/decorators/hmrServiceDataConstructor.decorator.d.ts +7 -0
  743. package/src/decorators/hmrServiceDataConstructor.decorator.d.ts.map +1 -0
  744. package/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.d.ts +42 -36
  745. package/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.d.ts.map +1 -1
  746. package/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.ngfactory.d.ts.map +1 -0
  747. package/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.d.ts +34 -37
  748. package/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.d.ts.map +1 -1
  749. package/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.ngfactory.d.ts.map +1 -0
  750. package/src/modules/clickOutside/modules/clickOutside.module.d.ts +5 -10
  751. package/src/modules/clickOutside/modules/clickOutside.module.d.ts.map +1 -1
  752. package/src/modules/clickOutside/modules/clickOutside.module.ngfactory.d.ts.map +1 -0
  753. package/src/modules/common.module.d.ts +6 -0
  754. package/src/modules/common.module.d.ts.map +1 -0
  755. package/src/modules/common.module.ngfactory.d.ts.map +1 -0
  756. package/src/modules/debugData/components/debugData/debugData.component.css.shim.ngstyle.d.ts.map +1 -0
  757. package/src/modules/debugData/components/debugData/debugData.component.d.ts +34 -37
  758. package/src/modules/debugData/components/debugData/debugData.component.d.ts.map +1 -1
  759. package/src/modules/debugData/components/debugData/debugData.component.ngfactory.d.ts.map +1 -0
  760. package/src/modules/debugData/modules/debugData.module.d.ts +5 -11
  761. package/src/modules/debugData/modules/debugData.module.d.ts.map +1 -1
  762. package/src/modules/debugData/modules/debugData.module.ngfactory.d.ts.map +1 -0
  763. package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.d.ts +27 -30
  764. package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.d.ts.map +1 -1
  765. package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.ngfactory.d.ts.map +1 -0
  766. package/src/modules/multiButton/components/multiButton/multiButton.component.css.shim.ngstyle.d.ts.map +1 -0
  767. package/src/modules/multiButton/components/multiButton/multiButton.component.d.ts +58 -61
  768. package/src/modules/multiButton/components/multiButton/multiButton.component.d.ts.map +1 -1
  769. package/src/modules/multiButton/components/multiButton/multiButton.component.ngfactory.d.ts.map +1 -0
  770. package/src/modules/multiButton/components/multiButton/multiButton.interface.d.ts +29 -29
  771. package/src/modules/multiButton/components/multiButton/multiButton.interface.d.ts.map +1 -1
  772. package/src/modules/multiButton/misc/tokens.d.ts +6 -6
  773. package/src/modules/multiButton/modules/multiButton.module.d.ts +5 -11
  774. package/src/modules/multiButton/modules/multiButton.module.d.ts.map +1 -1
  775. package/src/modules/multiButton/modules/multiButton.module.ngfactory.d.ts.map +1 -0
  776. package/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.css.shim.ngstyle.d.ts.map +1 -0
  777. package/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.d.ts +38 -41
  778. package/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.d.ts.map +1 -1
  779. package/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.ngfactory.d.ts.map +1 -0
  780. package/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.d.ts +65 -68
  781. package/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.d.ts.map +1 -1
  782. package/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.ngfactory.d.ts.map +1 -0
  783. package/src/modules/progressIndicator/interceptors/progressInterceptor.d.ts +25 -24
  784. package/src/modules/progressIndicator/interceptors/progressInterceptor.d.ts.map +1 -1
  785. package/src/modules/progressIndicator/interceptors/progressInterceptor.ngfactory.d.ts.map +1 -0
  786. package/src/modules/progressIndicator/misc/types.d.ts +10 -0
  787. package/src/modules/progressIndicator/misc/types.d.ts.map +1 -0
  788. package/src/modules/progressIndicator/modules/progressIndicator.module.d.ts +5 -13
  789. package/src/modules/progressIndicator/modules/progressIndicator.module.d.ts.map +1 -1
  790. package/src/modules/progressIndicator/modules/progressIndicator.module.ngfactory.d.ts.map +1 -0
  791. package/src/modules/progressIndicator/services/progressIndicator.service.d.ts +135 -138
  792. package/src/modules/progressIndicator/services/progressIndicator.service.d.ts.map +1 -1
  793. package/src/modules/progressIndicator/services/progressIndicator.service.ngfactory.d.ts.map +1 -0
  794. package/src/modules/progressIndicator/services/progressIndicatorOptions.d.ts +14 -14
  795. package/src/pipes/isNaN/isNaN.pipe.d.ts +11 -14
  796. package/src/pipes/isNaN/isNaN.pipe.d.ts.map +1 -1
  797. package/src/pipes/isNaN/isNaN.pipe.ngfactory.d.ts.map +1 -0
  798. package/src/pipes/isPresent/isPresent.pipe.d.ts +11 -14
  799. package/src/pipes/isPresent/isPresent.pipe.d.ts.map +1 -1
  800. package/src/pipes/isPresent/isPresent.pipe.ngfactory.d.ts.map +1 -0
  801. package/src/pipes/localize/localize.pipe.d.ts +28 -31
  802. package/src/pipes/localize/localize.pipe.d.ts.map +1 -1
  803. package/src/pipes/localize/localize.pipe.ngfactory.d.ts.map +1 -0
  804. package/src/pipes/urlEncode/urlEncode.pipe.d.ts +11 -14
  805. package/src/pipes/urlEncode/urlEncode.pipe.d.ts.map +1 -1
  806. package/src/pipes/urlEncode/urlEncode.pipe.ngfactory.d.ts.map +1 -0
  807. package/src/services/cookies/cookies.service.d.ts +38 -41
  808. package/src/services/cookies/cookies.service.d.ts.map +1 -1
  809. package/src/services/cookies/cookies.service.ngfactory.d.ts.map +1 -0
  810. package/src/services/globalization/globalization.service.d.ts +14 -14
  811. package/src/services/ignoredInterceptors/ignoredInterceptors.service.d.ts +36 -0
  812. package/src/services/ignoredInterceptors/ignoredInterceptors.service.d.ts.map +1 -0
  813. package/src/services/ignoredInterceptors/ignoredInterceptors.service.ngfactory.d.ts.map +1 -0
  814. package/src/services/logger/index.d.ts +2 -2
  815. package/src/services/logger/logger.interface.d.ts +83 -83
  816. package/src/services/logger/logger.interface.d.ts.map +1 -1
  817. package/src/services/logger/logger.service.d.ts +84 -84
  818. package/src/services/logger/logger.service.d.ts.map +1 -1
  819. package/src/services/notifications/defaultNotifications.service.d.ts +96 -99
  820. package/src/services/notifications/defaultNotifications.service.d.ts.map +1 -1
  821. package/src/services/notifications/defaultNotifications.service.ngfactory.d.ts.map +1 -0
  822. package/src/services/notifications/index.d.ts +3 -3
  823. package/src/services/notifications/notifications.interface.d.ts +142 -142
  824. package/src/services/notifications/notificationsOptions.d.ts +10 -10
  825. package/src/services/permanentStorage/cookiePermanentStorage.service.d.ts +32 -35
  826. package/src/services/permanentStorage/cookiePermanentStorage.service.d.ts.map +1 -1
  827. package/src/services/permanentStorage/cookiePermanentStorage.service.ngfactory.d.ts.map +1 -0
  828. package/src/services/permanentStorage/index.d.ts +2 -2
  829. package/src/services/permanentStorage/permanentStorage.interface.d.ts +28 -28
  830. package/src/services/permanentStorage/permanentStorage.interface.d.ts.map +1 -1
  831. package/src/services/positioning/index.d.ts +2 -0
  832. package/src/services/positioning/index.d.ts.map +1 -0
  833. package/src/services/positioning/positioning.interface.d.ts +6 -0
  834. package/src/services/positioning/positioning.interface.d.ts.map +1 -0
  835. package/src/services/statusCode/statusCode.service.d.ts +18 -21
  836. package/src/services/statusCode/statusCode.service.d.ts.map +1 -1
  837. package/src/services/statusCode/statusCode.service.ngfactory.d.ts.map +1 -0
  838. package/src/services/stringLocalization/index.d.ts +2 -2
  839. package/src/services/stringLocalization/noStringLocalization.service.d.ts +21 -25
  840. package/src/services/stringLocalization/noStringLocalization.service.d.ts.map +1 -1
  841. package/src/services/stringLocalization/noStringLocalization.service.ngfactory.d.ts.map +1 -0
  842. package/src/services/stringLocalization/stringLocalization.interface.d.ts +16 -16
  843. package/src/services/temporaryStorage/index.d.ts +2 -2
  844. package/src/services/temporaryStorage/memoryTemporaryStorage.service.d.ts +26 -29
  845. package/src/services/temporaryStorage/memoryTemporaryStorage.service.d.ts.map +1 -1
  846. package/src/services/temporaryStorage/memoryTemporaryStorage.service.ngfactory.d.ts.map +1 -0
  847. package/src/services/temporaryStorage/temporaryStorage.interface.d.ts +21 -21
  848. package/src/types/additionalInfo.d.ts +11 -0
  849. package/src/types/additionalInfo.d.ts.map +1 -0
  850. package/src/types/tokens.d.ts +47 -52
  851. package/src/types/tokens.d.ts.map +1 -1
  852. package/src/utils/httpRequest.extension.d.ts +5 -0
  853. package/src/utils/httpRequest.extension.d.ts.map +1 -0
  854. package/src/utils/index.d.ts +23 -23
  855. package/src/utils/index.d.ts.map +1 -1
  856. package/store/dist/es2015/store/index.js +10 -0
  857. package/store/dist/es2015/store/public_api.js +7 -0
  858. package/store/dist/es2015/store/src/services/index.js +8 -0
  859. package/store/dist/es2015/store/src/services/permanentStorage/localPermanentStorage.service.js +56 -0
  860. package/store/dist/es2015/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +43 -0
  861. package/store/dist/es2015/store/src/store.js +7 -0
  862. package/store/dist/es5/store/index.js +10 -0
  863. package/store/dist/es5/store/public_api.js +7 -0
  864. package/store/dist/es5/store/src/services/index.js +8 -0
  865. package/store/dist/es5/store/src/services/permanentStorage/localPermanentStorage.service.js +93 -0
  866. package/store/dist/es5/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +80 -0
  867. package/store/dist/es5/store/src/store.js +7 -0
  868. package/store/index.d.ts +5 -0
  869. package/store/index.d.ts.map +1 -0
  870. package/store/index.metadata.json +1 -0
  871. package/store/package.json +6 -7
  872. package/store/public_api.d.ts +2 -0
  873. package/store/public_api.d.ts.map +1 -0
  874. package/store/src/services/index.d.ts +2 -2
  875. package/store/src/services/permanentStorage/localPermanentStorage.service.d.ts +30 -33
  876. package/store/src/services/permanentStorage/localPermanentStorage.service.d.ts.map +1 -1
  877. package/store/src/services/permanentStorage/localPermanentStorage.service.ngfactory.d.ts.map +1 -0
  878. package/store/src/services/temporaryStorage/sessionTemporaryStorage.service.d.ts +22 -25
  879. package/store/src/services/temporaryStorage/sessionTemporaryStorage.service.d.ts.map +1 -1
  880. package/store/src/services/temporaryStorage/sessionTemporaryStorage.service.ngfactory.d.ts.map +1 -0
  881. package/store/src/store.d.ts +2 -0
  882. package/store/src/store.d.ts.map +1 -0
  883. package/structured-log/dist/es2015/structured-log/index.js +10 -0
  884. package/structured-log/dist/es2015/structured-log/public_api.js +7 -0
  885. package/structured-log/dist/es2015/structured-log/src/components/console/console.component.animations.js +37 -0
  886. package/structured-log/dist/es2015/structured-log/src/components/console/console.component.js +156 -0
  887. package/structured-log/dist/es2015/structured-log/src/misc/utils.js +47 -0
  888. package/structured-log/dist/es2015/structured-log/src/modules/consoleLog.module.js +43 -0
  889. package/structured-log/dist/es2015/structured-log/src/services/console/consoleComponentSink.service.js +150 -0
  890. package/structured-log/dist/es2015/structured-log/src/services/console/consoleSinkConfig.service.js +56 -0
  891. package/structured-log/dist/es2015/structured-log/src/services/logger.service.js +93 -0
  892. package/structured-log/dist/es2015/structured-log/src/services/rest/restSink.service.js +176 -0
  893. package/structured-log/dist/es2015/structured-log/src/services/rest/restSinkConfig.service.js +67 -0
  894. package/structured-log/dist/es2015/structured-log/src/structured-log.js +17 -0
  895. package/structured-log/dist/es2015/structured-log/src/types/logger.interface.js +85 -0
  896. package/structured-log/dist/es2015/structured-log/src/types/tokens.js +70 -0
  897. package/structured-log/dist/es5/structured-log/index.js +10 -0
  898. package/structured-log/dist/es5/structured-log/public_api.js +7 -0
  899. package/structured-log/dist/es5/structured-log/src/components/console/console.component.animations.js +37 -0
  900. package/structured-log/dist/es5/structured-log/src/components/console/console.component.js +209 -0
  901. package/structured-log/dist/es5/structured-log/src/misc/utils.js +47 -0
  902. package/structured-log/dist/es5/structured-log/src/modules/consoleLog.module.js +57 -0
  903. package/structured-log/dist/es5/structured-log/src/services/console/consoleComponentSink.service.js +198 -0
  904. package/structured-log/dist/es5/structured-log/src/services/console/consoleSinkConfig.service.js +58 -0
  905. package/structured-log/dist/es5/structured-log/src/services/logger.service.js +146 -0
  906. package/structured-log/dist/es5/structured-log/src/services/rest/restSink.service.js +216 -0
  907. package/structured-log/dist/es5/structured-log/src/services/rest/restSinkConfig.service.js +69 -0
  908. package/structured-log/dist/es5/structured-log/src/structured-log.js +17 -0
  909. package/structured-log/dist/es5/structured-log/src/types/logger.interface.js +85 -0
  910. package/structured-log/dist/es5/structured-log/src/types/tokens.js +70 -0
  911. package/structured-log/index.d.ts +5 -0
  912. package/structured-log/index.d.ts.map +1 -0
  913. package/structured-log/index.metadata.json +1 -0
  914. package/structured-log/package.json +6 -7
  915. package/structured-log/public_api.d.ts +2 -0
  916. package/structured-log/public_api.d.ts.map +1 -0
  917. package/structured-log/src/components/console/console.component.animations.d.ts +4 -4
  918. package/structured-log/src/components/console/console.component.css.shim.ngstyle.d.ts.map +1 -0
  919. package/structured-log/src/components/console/console.component.d.ts +51 -54
  920. package/structured-log/src/components/console/console.component.d.ts.map +1 -1
  921. package/structured-log/src/components/console/console.component.ngfactory.d.ts.map +1 -0
  922. package/structured-log/src/misc/utils.d.ts +13 -13
  923. package/structured-log/src/modules/consoleLog.module.d.ts +10 -16
  924. package/structured-log/src/modules/consoleLog.module.d.ts.map +1 -1
  925. package/structured-log/src/modules/consoleLog.module.ngfactory.d.ts.map +1 -0
  926. package/structured-log/src/services/console/consoleComponentSink.service.d.ts +41 -44
  927. package/structured-log/src/services/console/consoleComponentSink.service.d.ts.map +1 -1
  928. package/structured-log/src/services/console/consoleComponentSink.service.ngfactory.d.ts.map +1 -0
  929. package/structured-log/src/services/console/consoleSinkConfig.service.d.ts +14 -17
  930. package/structured-log/src/services/console/consoleSinkConfig.service.d.ts.map +1 -1
  931. package/structured-log/src/services/console/consoleSinkConfig.service.ngfactory.d.ts.map +1 -0
  932. package/structured-log/src/services/logger.service.d.ts +90 -93
  933. package/structured-log/src/services/logger.service.d.ts.map +1 -1
  934. package/structured-log/src/services/logger.service.ngfactory.d.ts.map +1 -0
  935. package/structured-log/src/services/rest/restSink.service.d.ts +40 -43
  936. package/structured-log/src/services/rest/restSink.service.d.ts.map +1 -1
  937. package/structured-log/src/services/rest/restSink.service.ngfactory.d.ts.map +1 -0
  938. package/structured-log/src/services/rest/restSinkConfig.service.d.ts +18 -21
  939. package/structured-log/src/services/rest/restSinkConfig.service.d.ts.map +1 -1
  940. package/structured-log/src/services/rest/restSinkConfig.service.ngfactory.d.ts.map +1 -0
  941. package/structured-log/src/structured-log.d.ts +12 -0
  942. package/structured-log/src/structured-log.d.ts.map +1 -0
  943. package/structured-log/src/types/logger.interface.d.ts +62 -62
  944. package/structured-log/src/types/logger.interface.d.ts.map +1 -1
  945. package/structured-log/src/types/tokens.d.ts +37 -37
  946. package/structured-log/src/types/tokens.d.ts.map +1 -1
  947. package/version.bak +1 -1
  948. package/common.internal.d.ts +0 -1438
  949. package/date-fns/common-date-fns.d.ts +0 -8
  950. package/date-fns/common-date-fns.internal.d.ts +0 -8
  951. package/date-fns/src/index.d.ts +0 -2
  952. package/date-fns/src/index.d.ts.map +0 -1
  953. package/date-fns/temp/common-date-fns.api.md +0 -12
  954. package/es2015/date-fns/src/index.js +0 -2
  955. package/es2015/date-fns/src/index.js.map +0 -1
  956. package/es2015/date-fns/src/misc/utils.js +0 -24
  957. package/es2015/date-fns/src/misc/utils.js.map +0 -1
  958. package/es2015/forms/src/directives/groupHasError/groupHasError.directive.js +0 -72
  959. package/es2015/forms/src/directives/groupHasError/groupHasError.directive.js.map +0 -1
  960. package/es2015/forms/src/directives/hasError/hasError.directive.js +0 -164
  961. package/es2015/forms/src/directives/hasError/hasError.directive.js.map +0 -1
  962. package/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -64
  963. package/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js.map +0 -1
  964. package/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -64
  965. package/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js.map +0 -1
  966. package/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -74
  967. package/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js.map +0 -1
  968. package/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -36
  969. package/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js.map +0 -1
  970. package/es2015/forms/src/directives/requiredClass/requiredClass.directive.js +0 -56
  971. package/es2015/forms/src/directives/requiredClass/requiredClass.directive.js.map +0 -1
  972. package/es2015/forms/src/index.js +0 -20
  973. package/es2015/forms/src/index.js.map +0 -1
  974. package/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -11
  975. package/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js.map +0 -1
  976. package/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -11
  977. package/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js.map +0 -1
  978. package/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -10
  979. package/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js.map +0 -1
  980. package/es2015/forms/src/misc/formModel/decorators/email.decorator.js +0 -11
  981. package/es2015/forms/src/misc/formModel/decorators/email.decorator.js.map +0 -1
  982. package/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -11
  983. package/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js.map +0 -1
  984. package/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -22
  985. package/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js.map +0 -1
  986. package/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -11
  987. package/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js.map +0 -1
  988. package/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -22
  989. package/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js.map +0 -1
  990. package/es2015/forms/src/misc/formModel/decorators/index.js +0 -20
  991. package/es2015/forms/src/misc/formModel/decorators/index.js.map +0 -1
  992. package/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -42
  993. package/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js.map +0 -1
  994. package/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -12
  995. package/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js.map +0 -1
  996. package/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -12
  997. package/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js.map +0 -1
  998. package/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -12
  999. package/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js.map +0 -1
  1000. package/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -12
  1001. package/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js.map +0 -1
  1002. package/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -38
  1003. package/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js.map +0 -1
  1004. package/es2015/forms/src/misc/formModel/decorators/number.decorator.js +0 -11
  1005. package/es2015/forms/src/misc/formModel/decorators/number.decorator.js.map +0 -1
  1006. package/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -11
  1007. package/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js.map +0 -1
  1008. package/es2015/forms/src/misc/formModel/decorators/required.decorator.js +0 -11
  1009. package/es2015/forms/src/misc/formModel/decorators/required.decorator.js.map +0 -1
  1010. package/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -24
  1011. package/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js.map +0 -1
  1012. package/es2015/forms/src/misc/formModel/decorators/validator.decorator.js +0 -11
  1013. package/es2015/forms/src/misc/formModel/decorators/validator.decorator.js.map +0 -1
  1014. package/es2015/forms/src/misc/formModel/index.js +0 -8
  1015. package/es2015/forms/src/misc/formModel/index.js.map +0 -1
  1016. package/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -2
  1017. package/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js.map +0 -1
  1018. package/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -2
  1019. package/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js.map +0 -1
  1020. package/es2015/forms/src/misc/formModel/interfaces/validator.interface.js +0 -2
  1021. package/es2015/forms/src/misc/formModel/interfaces/validator.interface.js.map +0 -1
  1022. package/es2015/forms/src/misc/formModel/misc/currentValue.js +0 -29
  1023. package/es2015/forms/src/misc/formModel/misc/currentValue.js.map +0 -1
  1024. package/es2015/forms/src/misc/formModel/misc/defaults.js +0 -13
  1025. package/es2015/forms/src/misc/formModel/misc/defaults.js.map +0 -1
  1026. package/es2015/forms/src/misc/formModel/misc/utils.js +0 -89
  1027. package/es2015/forms/src/misc/formModel/misc/utils.js.map +0 -1
  1028. package/es2015/forms/src/misc/formModel/misc/validatorFactories.js +0 -41
  1029. package/es2015/forms/src/misc/formModel/misc/validatorFactories.js.map +0 -1
  1030. package/es2015/forms/src/misc/types.js +0 -6
  1031. package/es2015/forms/src/misc/types.js.map +0 -1
  1032. package/es2015/forms/src/misc/utils.js +0 -103
  1033. package/es2015/forms/src/misc/utils.js.map +0 -1
  1034. package/es2015/forms/src/misc/validators.js +0 -49
  1035. package/es2015/forms/src/misc/validators.js.map +0 -1
  1036. package/es2015/forms/src/modules/hasError.module.js +0 -28
  1037. package/es2015/forms/src/modules/hasError.module.js.map +0 -1
  1038. package/es2015/forms/src/modules/numberInput.module.js +0 -38
  1039. package/es2015/forms/src/modules/numberInput.module.js.map +0 -1
  1040. package/es2015/forms/src/modules/requiredClass.module.js +0 -19
  1041. package/es2015/forms/src/modules/requiredClass.module.js.map +0 -1
  1042. package/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -2
  1043. package/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js.map +0 -1
  1044. package/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -72
  1045. package/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js.map +0 -1
  1046. package/es2015/forms/src/services/submitted/submitted.service.js +0 -49
  1047. package/es2015/forms/src/services/submitted/submitted.service.js.map +0 -1
  1048. package/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -2
  1049. package/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js.map +0 -1
  1050. package/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -229
  1051. package/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js.map +0 -1
  1052. package/es2015/hmr/src/index.js +0 -35
  1053. package/es2015/hmr/src/index.js.map +0 -1
  1054. package/es2015/hotkeys/src/index.js +0 -2
  1055. package/es2015/hotkeys/src/index.js.map +0 -1
  1056. package/es2015/hotkeys/src/services/appHotkeys.service.js +0 -132
  1057. package/es2015/hotkeys/src/services/appHotkeys.service.js.map +0 -1
  1058. package/es2015/material/src/components/confirmationDialog/confirmationDialog.component.js +0 -50
  1059. package/es2015/material/src/components/confirmationDialog/confirmationDialog.component.js.map +0 -1
  1060. package/es2015/material/src/components/titledDialog/titledDialog.component.js +0 -39
  1061. package/es2015/material/src/components/titledDialog/titledDialog.component.js.map +0 -1
  1062. package/es2015/material/src/directives/confirmationDialog/confirmationDialog.directive.js +0 -107
  1063. package/es2015/material/src/directives/confirmationDialog/confirmationDialog.directive.js.map +0 -1
  1064. package/es2015/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +0 -47
  1065. package/es2015/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js.map +0 -1
  1066. package/es2015/material/src/index.js +0 -10
  1067. package/es2015/material/src/index.js.map +0 -1
  1068. package/es2015/material/src/misc/interfaces/confirmationDialog.interface.js +0 -2
  1069. package/es2015/material/src/misc/interfaces/confirmationDialog.interface.js.map +0 -1
  1070. package/es2015/material/src/misc/interfaces/titledDialog.interface.js +0 -6
  1071. package/es2015/material/src/misc/interfaces/titledDialog.interface.js.map +0 -1
  1072. package/es2015/material/src/misc/tokens.js +0 -6
  1073. package/es2015/material/src/misc/tokens.js.map +0 -1
  1074. package/es2015/material/src/modules/confirmationDialog.module.js +0 -40
  1075. package/es2015/material/src/modules/confirmationDialog.module.js.map +0 -1
  1076. package/es2015/material/src/modules/debugDataCopyClick.module.js +0 -27
  1077. package/es2015/material/src/modules/debugDataCopyClick.module.js.map +0 -1
  1078. package/es2015/material/src/modules/titledDialog.module.js +0 -36
  1079. package/es2015/material/src/modules/titledDialog.module.js.map +0 -1
  1080. package/es2015/material/src/services/titledDialog/titledDialog.service.js +0 -39
  1081. package/es2015/material/src/services/titledDialog/titledDialog.service.js.map +0 -1
  1082. package/es2015/moment/src/index.js +0 -3
  1083. package/es2015/moment/src/index.js.map +0 -1
  1084. package/es2015/moment/src/misc/utils.js +0 -27
  1085. package/es2015/moment/src/misc/utils.js.map +0 -1
  1086. package/es2015/moment/src/modules/moment.module.js +0 -28
  1087. package/es2015/moment/src/modules/moment.module.js.map +0 -1
  1088. package/es2015/moment/src/pipes/momentConvert/momentConvert.pipe.js +0 -32
  1089. package/es2015/moment/src/pipes/momentConvert/momentConvert.pipe.js.map +0 -1
  1090. package/es2015/moment/src/pipes/momentFormat/momentFormat.pipe.js +0 -36
  1091. package/es2015/moment/src/pipes/momentFormat/momentFormat.pipe.js.map +0 -1
  1092. package/es2015/numeral/src/index.js +0 -3
  1093. package/es2015/numeral/src/index.js.map +0 -1
  1094. package/es2015/numeral/src/modules/numeral.module.js +0 -19
  1095. package/es2015/numeral/src/modules/numeral.module.js.map +0 -1
  1096. package/es2015/numeral/src/pipes/numeral.pipe.js +0 -50
  1097. package/es2015/numeral/src/pipes/numeral.pipe.js.map +0 -1
  1098. package/es2015/positions/src/index.js +0 -9
  1099. package/es2015/positions/src/index.js.map +0 -1
  1100. package/es2015/positions/src/misc/utils.js +0 -109
  1101. package/es2015/positions/src/misc/utils.js.map +0 -1
  1102. package/es2015/positions/src/modules/positions/directives/positionTo/positionTo.directive.js +0 -58
  1103. package/es2015/positions/src/modules/positions/directives/positionTo/positionTo.directive.js.map +0 -1
  1104. package/es2015/positions/src/modules/positions/modules/positions.module.js +0 -24
  1105. package/es2015/positions/src/modules/positions/modules/positions.module.js.map +0 -1
  1106. package/es2015/positions/src/modules/tooltip/components/tooltip/tooltip.component.js +0 -98
  1107. package/es2015/positions/src/modules/tooltip/components/tooltip/tooltip.component.js.map +0 -1
  1108. package/es2015/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js +0 -230
  1109. package/es2015/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js.map +0 -1
  1110. package/es2015/positions/src/modules/tooltip/misc/tokens.js +0 -6
  1111. package/es2015/positions/src/modules/tooltip/misc/tokens.js.map +0 -1
  1112. package/es2015/positions/src/modules/tooltip/misc/tooltip.interface.js +0 -2
  1113. package/es2015/positions/src/modules/tooltip/misc/tooltip.interface.js.map +0 -1
  1114. package/es2015/positions/src/modules/tooltip/modules/tooltip.module.js +0 -32
  1115. package/es2015/positions/src/modules/tooltip/modules/tooltip.module.js.map +0 -1
  1116. package/es2015/positions/src/types/positions.typings.js +0 -2
  1117. package/es2015/positions/src/types/positions.typings.js.map +0 -1
  1118. package/es2015/router/src/decorators/componentRedirectRoute.decorator.js +0 -43
  1119. package/es2015/router/src/decorators/componentRedirectRoute.decorator.js.map +0 -1
  1120. package/es2015/router/src/decorators/componentRoute.decorator.js +0 -23
  1121. package/es2015/router/src/decorators/componentRoute.decorator.js.map +0 -1
  1122. package/es2015/router/src/decorators/moduleRoutes.decorator.js +0 -42
  1123. package/es2015/router/src/decorators/moduleRoutes.decorator.js.map +0 -1
  1124. package/es2015/router/src/index.js +0 -7
  1125. package/es2015/router/src/index.js.map +0 -1
  1126. package/es2015/router/src/misc/utils.js +0 -26
  1127. package/es2015/router/src/misc/utils.js.map +0 -1
  1128. package/es2015/router/src/services/routing/dataRouter.js +0 -89
  1129. package/es2015/router/src/services/routing/dataRouter.js.map +0 -1
  1130. package/es2015/router/src/services/routing/dataRouterData.js +0 -20
  1131. package/es2015/router/src/services/routing/dataRouterData.js.map +0 -1
  1132. package/es2015/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js +0 -62
  1133. package/es2015/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js.map +0 -1
  1134. package/es2015/src/index.js +0 -34
  1135. package/es2015/src/index.js.map +0 -1
  1136. package/es2015/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js +0 -67
  1137. package/es2015/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js.map +0 -1
  1138. package/es2015/src/modules/clickOutside/modules/clickOutside.module.js +0 -24
  1139. package/es2015/src/modules/clickOutside/modules/clickOutside.module.js.map +0 -1
  1140. package/es2015/src/modules/commonDynamic.module.js +0 -23
  1141. package/es2015/src/modules/commonDynamic.module.js.map +0 -1
  1142. package/es2015/src/modules/commonLocalize.js +0 -23
  1143. package/es2015/src/modules/commonLocalize.js.map +0 -1
  1144. package/es2015/src/modules/commonUtils.module.js +0 -35
  1145. package/es2015/src/modules/commonUtils.module.js.map +0 -1
  1146. package/es2015/src/modules/debugData/components/debugData/debugData.component.js +0 -68
  1147. package/es2015/src/modules/debugData/components/debugData/debugData.component.js.map +0 -1
  1148. package/es2015/src/modules/debugData/modules/debugData.module.js +0 -29
  1149. package/es2015/src/modules/debugData/modules/debugData.module.js.map +0 -1
  1150. package/es2015/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +0 -51
  1151. package/es2015/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js.map +0 -1
  1152. package/es2015/src/modules/goBack/directives/goBack/goBack.directive.js +0 -35
  1153. package/es2015/src/modules/goBack/directives/goBack/goBack.directive.js.map +0 -1
  1154. package/es2015/src/modules/goBack/directives/index.js +0 -2
  1155. package/es2015/src/modules/goBack/directives/index.js.map +0 -1
  1156. package/es2015/src/modules/goBack/index.js +0 -3
  1157. package/es2015/src/modules/goBack/index.js.map +0 -1
  1158. package/es2015/src/modules/goBack/modules/goBack.module.js +0 -23
  1159. package/es2015/src/modules/goBack/modules/goBack.module.js.map +0 -1
  1160. package/es2015/src/modules/goBack/modules/index.js +0 -2
  1161. package/es2015/src/modules/goBack/modules/index.js.map +0 -1
  1162. package/es2015/src/modules/multiButton/components/multiButton/multiButton.component.js +0 -119
  1163. package/es2015/src/modules/multiButton/components/multiButton/multiButton.component.js.map +0 -1
  1164. package/es2015/src/modules/multiButton/components/multiButton/multiButton.interface.js +0 -2
  1165. package/es2015/src/modules/multiButton/components/multiButton/multiButton.interface.js.map +0 -1
  1166. package/es2015/src/modules/multiButton/misc/tokens.js +0 -6
  1167. package/es2015/src/modules/multiButton/misc/tokens.js.map +0 -1
  1168. package/es2015/src/modules/multiButton/modules/multiButton.module.js +0 -29
  1169. package/es2015/src/modules/multiButton/modules/multiButton.module.js.map +0 -1
  1170. package/es2015/src/modules/progressIndicator/components/index.js +0 -2
  1171. package/es2015/src/modules/progressIndicator/components/index.js.map +0 -1
  1172. package/es2015/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js +0 -66
  1173. package/es2015/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js.map +0 -1
  1174. package/es2015/src/modules/progressIndicator/directives/index.js +0 -2
  1175. package/es2015/src/modules/progressIndicator/directives/index.js.map +0 -1
  1176. package/es2015/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js +0 -124
  1177. package/es2015/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js.map +0 -1
  1178. package/es2015/src/modules/progressIndicator/index.js +0 -6
  1179. package/es2015/src/modules/progressIndicator/index.js.map +0 -1
  1180. package/es2015/src/modules/progressIndicator/interceptors/progressInterceptor.js +0 -54
  1181. package/es2015/src/modules/progressIndicator/interceptors/progressInterceptor.js.map +0 -1
  1182. package/es2015/src/modules/progressIndicator/misc/tokens.js +0 -6
  1183. package/es2015/src/modules/progressIndicator/misc/tokens.js.map +0 -1
  1184. package/es2015/src/modules/progressIndicator/modules/index.js +0 -2
  1185. package/es2015/src/modules/progressIndicator/modules/index.js.map +0 -1
  1186. package/es2015/src/modules/progressIndicator/modules/progressIndicator.module.js +0 -38
  1187. package/es2015/src/modules/progressIndicator/modules/progressIndicator.module.js.map +0 -1
  1188. package/es2015/src/modules/progressIndicator/services/progressIndicator.service.js +0 -255
  1189. package/es2015/src/modules/progressIndicator/services/progressIndicator.service.js.map +0 -1
  1190. package/es2015/src/modules/progressIndicator/services/progressIndicatorOptions.js +0 -25
  1191. package/es2015/src/modules/progressIndicator/services/progressIndicatorOptions.js.map +0 -1
  1192. package/es2015/src/pipes/index.js +0 -6
  1193. package/es2015/src/pipes/index.js.map +0 -1
  1194. package/es2015/src/pipes/isNaN/isNaN.pipe.js +0 -24
  1195. package/es2015/src/pipes/isNaN/isNaN.pipe.js.map +0 -1
  1196. package/es2015/src/pipes/isPresent/isPresent.pipe.js +0 -25
  1197. package/es2015/src/pipes/isPresent/isPresent.pipe.js.map +0 -1
  1198. package/es2015/src/pipes/localize/localize.pipe.js +0 -54
  1199. package/es2015/src/pipes/localize/localize.pipe.js.map +0 -1
  1200. package/es2015/src/pipes/mergeCssClasses/mergeCssClasses.pipe.js +0 -43
  1201. package/es2015/src/pipes/mergeCssClasses/mergeCssClasses.pipe.js.map +0 -1
  1202. package/es2015/src/pipes/urlEncode/urlEncode.pipe.js +0 -26
  1203. package/es2015/src/pipes/urlEncode/urlEncode.pipe.js.map +0 -1
  1204. package/es2015/src/services/alignment/alignment.interface.js +0 -2
  1205. package/es2015/src/services/alignment/alignment.interface.js.map +0 -1
  1206. package/es2015/src/services/alignment/index.js +0 -2
  1207. package/es2015/src/services/alignment/index.js.map +0 -1
  1208. package/es2015/src/services/cookies/cookies.service.js +0 -106
  1209. package/es2015/src/services/cookies/cookies.service.js.map +0 -1
  1210. package/es2015/src/services/globalization/globalization.service.js +0 -6
  1211. package/es2015/src/services/globalization/globalization.service.js.map +0 -1
  1212. package/es2015/src/services/logger/index.js +0 -3
  1213. package/es2015/src/services/logger/index.js.map +0 -1
  1214. package/es2015/src/services/logger/logger.interface.js +0 -2
  1215. package/es2015/src/services/logger/logger.interface.js.map +0 -1
  1216. package/es2015/src/services/logger/logger.service.js +0 -18
  1217. package/es2015/src/services/logger/logger.service.js.map +0 -1
  1218. package/es2015/src/services/notifications/defaultNotifications.service.js +0 -228
  1219. package/es2015/src/services/notifications/defaultNotifications.service.js.map +0 -1
  1220. package/es2015/src/services/notifications/index.js +0 -4
  1221. package/es2015/src/services/notifications/index.js.map +0 -1
  1222. package/es2015/src/services/notifications/notifications.interface.js +0 -55
  1223. package/es2015/src/services/notifications/notifications.interface.js.map +0 -1
  1224. package/es2015/src/services/notifications/notificationsOptions.js +0 -18
  1225. package/es2015/src/services/notifications/notificationsOptions.js.map +0 -1
  1226. package/es2015/src/services/permanentStorage/cookiePermanentStorage.service.js +0 -43
  1227. package/es2015/src/services/permanentStorage/cookiePermanentStorage.service.js.map +0 -1
  1228. package/es2015/src/services/permanentStorage/index.js +0 -3
  1229. package/es2015/src/services/permanentStorage/index.js.map +0 -1
  1230. package/es2015/src/services/permanentStorage/permanentStorage.interface.js +0 -2
  1231. package/es2015/src/services/permanentStorage/permanentStorage.interface.js.map +0 -1
  1232. package/es2015/src/services/statusCode/statusCode.service.js +0 -29
  1233. package/es2015/src/services/statusCode/statusCode.service.js.map +0 -1
  1234. package/es2015/src/services/stringLocalization/index.js +0 -3
  1235. package/es2015/src/services/stringLocalization/index.js.map +0 -1
  1236. package/es2015/src/services/stringLocalization/noStringLocalization.service.js +0 -43
  1237. package/es2015/src/services/stringLocalization/noStringLocalization.service.js.map +0 -1
  1238. package/es2015/src/services/stringLocalization/stringLocalization.interface.js +0 -2
  1239. package/es2015/src/services/stringLocalization/stringLocalization.interface.js.map +0 -1
  1240. package/es2015/src/services/temporaryStorage/index.js +0 -3
  1241. package/es2015/src/services/temporaryStorage/index.js.map +0 -1
  1242. package/es2015/src/services/temporaryStorage/memoryTemporaryStorage.service.js +0 -43
  1243. package/es2015/src/services/temporaryStorage/memoryTemporaryStorage.service.js.map +0 -1
  1244. package/es2015/src/services/temporaryStorage/temporaryStorage.interface.js +0 -2
  1245. package/es2015/src/services/temporaryStorage/temporaryStorage.interface.js.map +0 -1
  1246. package/es2015/src/types/tokens.js +0 -50
  1247. package/es2015/src/types/tokens.js.map +0 -1
  1248. package/es2015/src/utils/index.js +0 -51
  1249. package/es2015/src/utils/index.js.map +0 -1
  1250. package/es2015/store/src/index.js +0 -2
  1251. package/es2015/store/src/index.js.map +0 -1
  1252. package/es2015/store/src/services/index.js +0 -3
  1253. package/es2015/store/src/services/index.js.map +0 -1
  1254. package/es2015/store/src/services/permanentStorage/localPermanentStorage.service.js +0 -49
  1255. package/es2015/store/src/services/permanentStorage/localPermanentStorage.service.js.map +0 -1
  1256. package/es2015/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +0 -37
  1257. package/es2015/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js.map +0 -1
  1258. package/es2015/store/src/types/store.typings.js +0 -2
  1259. package/es2015/store/src/types/store.typings.js.map +0 -1
  1260. package/es2015/structured-log/src/components/console/console.component.animations.js +0 -31
  1261. package/es2015/structured-log/src/components/console/console.component.animations.js.map +0 -1
  1262. package/es2015/structured-log/src/components/console/console.component.js +0 -95
  1263. package/es2015/structured-log/src/components/console/console.component.js.map +0 -1
  1264. package/es2015/structured-log/src/index.js +0 -12
  1265. package/es2015/structured-log/src/index.js.map +0 -1
  1266. package/es2015/structured-log/src/misc/utils.js +0 -39
  1267. package/es2015/structured-log/src/misc/utils.js.map +0 -1
  1268. package/es2015/structured-log/src/modules/consoleLog.module.js +0 -44
  1269. package/es2015/structured-log/src/modules/consoleLog.module.js.map +0 -1
  1270. package/es2015/structured-log/src/services/console/consoleComponentSink.service.js +0 -96
  1271. package/es2015/structured-log/src/services/console/consoleComponentSink.service.js.map +0 -1
  1272. package/es2015/structured-log/src/services/console/consoleSinkConfig.service.js +0 -44
  1273. package/es2015/structured-log/src/services/console/consoleSinkConfig.service.js.map +0 -1
  1274. package/es2015/structured-log/src/services/logger.service.js +0 -44
  1275. package/es2015/structured-log/src/services/logger.service.js.map +0 -1
  1276. package/es2015/structured-log/src/services/rest/restSink.service.js +0 -118
  1277. package/es2015/structured-log/src/services/rest/restSink.service.js.map +0 -1
  1278. package/es2015/structured-log/src/services/rest/restSinkConfig.service.js +0 -55
  1279. package/es2015/structured-log/src/services/rest/restSinkConfig.service.js.map +0 -1
  1280. package/es2015/structured-log/src/types/logger.interface.js +0 -2
  1281. package/es2015/structured-log/src/types/logger.interface.js.map +0 -1
  1282. package/es2015/structured-log/src/types/structured-log.typings.js +0 -2
  1283. package/es2015/structured-log/src/types/structured-log.typings.js.map +0 -1
  1284. package/es2015/structured-log/src/types/tokens.js +0 -56
  1285. package/es2015/structured-log/src/types/tokens.js.map +0 -1
  1286. package/es2020/date-fns/src/index.js +0 -2
  1287. package/es2020/date-fns/src/index.js.map +0 -1
  1288. package/es2020/date-fns/src/misc/utils.js +0 -24
  1289. package/es2020/date-fns/src/misc/utils.js.map +0 -1
  1290. package/es2020/forms/src/directives/groupHasError/groupHasError.directive.js +0 -72
  1291. package/es2020/forms/src/directives/groupHasError/groupHasError.directive.js.map +0 -1
  1292. package/es2020/forms/src/directives/hasError/hasError.directive.js +0 -161
  1293. package/es2020/forms/src/directives/hasError/hasError.directive.js.map +0 -1
  1294. package/es2020/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -64
  1295. package/es2020/forms/src/directives/numberInput/maxValueNumberValidator.directive.js.map +0 -1
  1296. package/es2020/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -64
  1297. package/es2020/forms/src/directives/numberInput/minValueNumberValidator.directive.js.map +0 -1
  1298. package/es2020/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -74
  1299. package/es2020/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js.map +0 -1
  1300. package/es2020/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -36
  1301. package/es2020/forms/src/directives/numberInput/numberInputValidator.directive.js.map +0 -1
  1302. package/es2020/forms/src/directives/requiredClass/requiredClass.directive.js +0 -56
  1303. package/es2020/forms/src/directives/requiredClass/requiredClass.directive.js.map +0 -1
  1304. package/es2020/forms/src/index.js +0 -20
  1305. package/es2020/forms/src/index.js.map +0 -1
  1306. package/es2020/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -11
  1307. package/es2020/forms/src/misc/formModel/decorators/asyncValidator.decorator.js.map +0 -1
  1308. package/es2020/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -11
  1309. package/es2020/forms/src/misc/formModel/decorators/controlOptions.decorator.js.map +0 -1
  1310. package/es2020/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -10
  1311. package/es2020/forms/src/misc/formModel/decorators/disabled.decorator.js.map +0 -1
  1312. package/es2020/forms/src/misc/formModel/decorators/email.decorator.js +0 -11
  1313. package/es2020/forms/src/misc/formModel/decorators/email.decorator.js.map +0 -1
  1314. package/es2020/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -11
  1315. package/es2020/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js.map +0 -1
  1316. package/es2020/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -22
  1317. package/es2020/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js.map +0 -1
  1318. package/es2020/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -11
  1319. package/es2020/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js.map +0 -1
  1320. package/es2020/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -22
  1321. package/es2020/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js.map +0 -1
  1322. package/es2020/forms/src/misc/formModel/decorators/index.js +0 -20
  1323. package/es2020/forms/src/misc/formModel/decorators/index.js.map +0 -1
  1324. package/es2020/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -40
  1325. package/es2020/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js.map +0 -1
  1326. package/es2020/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -12
  1327. package/es2020/forms/src/misc/formModel/decorators/maxLength.decorator.js.map +0 -1
  1328. package/es2020/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -12
  1329. package/es2020/forms/src/misc/formModel/decorators/maxValue.decorator.js.map +0 -1
  1330. package/es2020/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -12
  1331. package/es2020/forms/src/misc/formModel/decorators/minLength.decorator.js.map +0 -1
  1332. package/es2020/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -12
  1333. package/es2020/forms/src/misc/formModel/decorators/minValue.decorator.js.map +0 -1
  1334. package/es2020/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -42
  1335. package/es2020/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js.map +0 -1
  1336. package/es2020/forms/src/misc/formModel/decorators/number.decorator.js +0 -11
  1337. package/es2020/forms/src/misc/formModel/decorators/number.decorator.js.map +0 -1
  1338. package/es2020/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -11
  1339. package/es2020/forms/src/misc/formModel/decorators/pattern.decorator.js.map +0 -1
  1340. package/es2020/forms/src/misc/formModel/decorators/required.decorator.js +0 -11
  1341. package/es2020/forms/src/misc/formModel/decorators/required.decorator.js.map +0 -1
  1342. package/es2020/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -24
  1343. package/es2020/forms/src/misc/formModel/decorators/requiredIf.decorator.js.map +0 -1
  1344. package/es2020/forms/src/misc/formModel/decorators/validator.decorator.js +0 -11
  1345. package/es2020/forms/src/misc/formModel/decorators/validator.decorator.js.map +0 -1
  1346. package/es2020/forms/src/misc/formModel/index.js +0 -8
  1347. package/es2020/forms/src/misc/formModel/index.js.map +0 -1
  1348. package/es2020/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -2
  1349. package/es2020/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js.map +0 -1
  1350. package/es2020/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -2
  1351. package/es2020/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js.map +0 -1
  1352. package/es2020/forms/src/misc/formModel/interfaces/validator.interface.js +0 -2
  1353. package/es2020/forms/src/misc/formModel/interfaces/validator.interface.js.map +0 -1
  1354. package/es2020/forms/src/misc/formModel/misc/currentValue.js +0 -29
  1355. package/es2020/forms/src/misc/formModel/misc/currentValue.js.map +0 -1
  1356. package/es2020/forms/src/misc/formModel/misc/defaults.js +0 -13
  1357. package/es2020/forms/src/misc/formModel/misc/defaults.js.map +0 -1
  1358. package/es2020/forms/src/misc/formModel/misc/utils.js +0 -100
  1359. package/es2020/forms/src/misc/formModel/misc/utils.js.map +0 -1
  1360. package/es2020/forms/src/misc/formModel/misc/validatorFactories.js +0 -41
  1361. package/es2020/forms/src/misc/formModel/misc/validatorFactories.js.map +0 -1
  1362. package/es2020/forms/src/misc/types.js +0 -6
  1363. package/es2020/forms/src/misc/types.js.map +0 -1
  1364. package/es2020/forms/src/misc/utils.js +0 -103
  1365. package/es2020/forms/src/misc/utils.js.map +0 -1
  1366. package/es2020/forms/src/misc/validators.js +0 -49
  1367. package/es2020/forms/src/misc/validators.js.map +0 -1
  1368. package/es2020/forms/src/modules/hasError.module.js +0 -28
  1369. package/es2020/forms/src/modules/hasError.module.js.map +0 -1
  1370. package/es2020/forms/src/modules/numberInput.module.js +0 -38
  1371. package/es2020/forms/src/modules/numberInput.module.js.map +0 -1
  1372. package/es2020/forms/src/modules/requiredClass.module.js +0 -19
  1373. package/es2020/forms/src/modules/requiredClass.module.js.map +0 -1
  1374. package/es2020/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -2
  1375. package/es2020/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js.map +0 -1
  1376. package/es2020/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -72
  1377. package/es2020/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js.map +0 -1
  1378. package/es2020/forms/src/services/submitted/submitted.service.js +0 -49
  1379. package/es2020/forms/src/services/submitted/submitted.service.js.map +0 -1
  1380. package/es2020/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -2
  1381. package/es2020/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js.map +0 -1
  1382. package/es2020/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -227
  1383. package/es2020/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js.map +0 -1
  1384. package/es2020/hmr/src/index.js +0 -35
  1385. package/es2020/hmr/src/index.js.map +0 -1
  1386. package/es2020/hotkeys/src/index.js +0 -2
  1387. package/es2020/hotkeys/src/index.js.map +0 -1
  1388. package/es2020/hotkeys/src/services/appHotkeys.service.js +0 -132
  1389. package/es2020/hotkeys/src/services/appHotkeys.service.js.map +0 -1
  1390. package/es2020/material/src/components/confirmationDialog/confirmationDialog.component.js +0 -50
  1391. package/es2020/material/src/components/confirmationDialog/confirmationDialog.component.js.map +0 -1
  1392. package/es2020/material/src/components/titledDialog/titledDialog.component.js +0 -38
  1393. package/es2020/material/src/components/titledDialog/titledDialog.component.js.map +0 -1
  1394. package/es2020/material/src/directives/confirmationDialog/confirmationDialog.directive.js +0 -104
  1395. package/es2020/material/src/directives/confirmationDialog/confirmationDialog.directive.js.map +0 -1
  1396. package/es2020/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +0 -47
  1397. package/es2020/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js.map +0 -1
  1398. package/es2020/material/src/index.js +0 -10
  1399. package/es2020/material/src/index.js.map +0 -1
  1400. package/es2020/material/src/misc/interfaces/confirmationDialog.interface.js +0 -2
  1401. package/es2020/material/src/misc/interfaces/confirmationDialog.interface.js.map +0 -1
  1402. package/es2020/material/src/misc/interfaces/titledDialog.interface.js +0 -6
  1403. package/es2020/material/src/misc/interfaces/titledDialog.interface.js.map +0 -1
  1404. package/es2020/material/src/misc/tokens.js +0 -6
  1405. package/es2020/material/src/misc/tokens.js.map +0 -1
  1406. package/es2020/material/src/modules/confirmationDialog.module.js +0 -40
  1407. package/es2020/material/src/modules/confirmationDialog.module.js.map +0 -1
  1408. package/es2020/material/src/modules/debugDataCopyClick.module.js +0 -27
  1409. package/es2020/material/src/modules/debugDataCopyClick.module.js.map +0 -1
  1410. package/es2020/material/src/modules/titledDialog.module.js +0 -36
  1411. package/es2020/material/src/modules/titledDialog.module.js.map +0 -1
  1412. package/es2020/material/src/services/titledDialog/titledDialog.service.js +0 -39
  1413. package/es2020/material/src/services/titledDialog/titledDialog.service.js.map +0 -1
  1414. package/es2020/moment/src/index.js +0 -3
  1415. package/es2020/moment/src/index.js.map +0 -1
  1416. package/es2020/moment/src/misc/utils.js +0 -27
  1417. package/es2020/moment/src/misc/utils.js.map +0 -1
  1418. package/es2020/moment/src/modules/moment.module.js +0 -28
  1419. package/es2020/moment/src/modules/moment.module.js.map +0 -1
  1420. package/es2020/moment/src/pipes/momentConvert/momentConvert.pipe.js +0 -32
  1421. package/es2020/moment/src/pipes/momentConvert/momentConvert.pipe.js.map +0 -1
  1422. package/es2020/moment/src/pipes/momentFormat/momentFormat.pipe.js +0 -36
  1423. package/es2020/moment/src/pipes/momentFormat/momentFormat.pipe.js.map +0 -1
  1424. package/es2020/numeral/src/index.js +0 -3
  1425. package/es2020/numeral/src/index.js.map +0 -1
  1426. package/es2020/numeral/src/modules/numeral.module.js +0 -19
  1427. package/es2020/numeral/src/modules/numeral.module.js.map +0 -1
  1428. package/es2020/numeral/src/pipes/numeral.pipe.js +0 -50
  1429. package/es2020/numeral/src/pipes/numeral.pipe.js.map +0 -1
  1430. package/es2020/positions/src/index.js +0 -9
  1431. package/es2020/positions/src/index.js.map +0 -1
  1432. package/es2020/positions/src/misc/utils.js +0 -109
  1433. package/es2020/positions/src/misc/utils.js.map +0 -1
  1434. package/es2020/positions/src/modules/positions/directives/positionTo/positionTo.directive.js +0 -58
  1435. package/es2020/positions/src/modules/positions/directives/positionTo/positionTo.directive.js.map +0 -1
  1436. package/es2020/positions/src/modules/positions/modules/positions.module.js +0 -24
  1437. package/es2020/positions/src/modules/positions/modules/positions.module.js.map +0 -1
  1438. package/es2020/positions/src/modules/tooltip/components/tooltip/tooltip.component.js +0 -98
  1439. package/es2020/positions/src/modules/tooltip/components/tooltip/tooltip.component.js.map +0 -1
  1440. package/es2020/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js +0 -229
  1441. package/es2020/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js.map +0 -1
  1442. package/es2020/positions/src/modules/tooltip/misc/tokens.js +0 -6
  1443. package/es2020/positions/src/modules/tooltip/misc/tokens.js.map +0 -1
  1444. package/es2020/positions/src/modules/tooltip/misc/tooltip.interface.js +0 -2
  1445. package/es2020/positions/src/modules/tooltip/misc/tooltip.interface.js.map +0 -1
  1446. package/es2020/positions/src/modules/tooltip/modules/tooltip.module.js +0 -32
  1447. package/es2020/positions/src/modules/tooltip/modules/tooltip.module.js.map +0 -1
  1448. package/es2020/positions/src/types/positions.typings.js +0 -2
  1449. package/es2020/positions/src/types/positions.typings.js.map +0 -1
  1450. package/es2020/router/src/decorators/componentRedirectRoute.decorator.js +0 -43
  1451. package/es2020/router/src/decorators/componentRedirectRoute.decorator.js.map +0 -1
  1452. package/es2020/router/src/decorators/componentRoute.decorator.js +0 -23
  1453. package/es2020/router/src/decorators/componentRoute.decorator.js.map +0 -1
  1454. package/es2020/router/src/decorators/moduleRoutes.decorator.js +0 -42
  1455. package/es2020/router/src/decorators/moduleRoutes.decorator.js.map +0 -1
  1456. package/es2020/router/src/index.js +0 -7
  1457. package/es2020/router/src/index.js.map +0 -1
  1458. package/es2020/router/src/misc/utils.js +0 -26
  1459. package/es2020/router/src/misc/utils.js.map +0 -1
  1460. package/es2020/router/src/services/routing/dataRouter.js +0 -89
  1461. package/es2020/router/src/services/routing/dataRouter.js.map +0 -1
  1462. package/es2020/router/src/services/routing/dataRouterData.js +0 -20
  1463. package/es2020/router/src/services/routing/dataRouterData.js.map +0 -1
  1464. package/es2020/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js +0 -62
  1465. package/es2020/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js.map +0 -1
  1466. package/es2020/src/index.js +0 -34
  1467. package/es2020/src/index.js.map +0 -1
  1468. package/es2020/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js +0 -67
  1469. package/es2020/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js.map +0 -1
  1470. package/es2020/src/modules/clickOutside/modules/clickOutside.module.js +0 -24
  1471. package/es2020/src/modules/clickOutside/modules/clickOutside.module.js.map +0 -1
  1472. package/es2020/src/modules/commonDynamic.module.js +0 -23
  1473. package/es2020/src/modules/commonDynamic.module.js.map +0 -1
  1474. package/es2020/src/modules/commonLocalize.js +0 -23
  1475. package/es2020/src/modules/commonLocalize.js.map +0 -1
  1476. package/es2020/src/modules/commonUtils.module.js +0 -35
  1477. package/es2020/src/modules/commonUtils.module.js.map +0 -1
  1478. package/es2020/src/modules/debugData/components/debugData/debugData.component.js +0 -67
  1479. package/es2020/src/modules/debugData/components/debugData/debugData.component.js.map +0 -1
  1480. package/es2020/src/modules/debugData/modules/debugData.module.js +0 -29
  1481. package/es2020/src/modules/debugData/modules/debugData.module.js.map +0 -1
  1482. package/es2020/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +0 -51
  1483. package/es2020/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js.map +0 -1
  1484. package/es2020/src/modules/goBack/directives/goBack/goBack.directive.js +0 -35
  1485. package/es2020/src/modules/goBack/directives/goBack/goBack.directive.js.map +0 -1
  1486. package/es2020/src/modules/goBack/directives/index.js +0 -2
  1487. package/es2020/src/modules/goBack/directives/index.js.map +0 -1
  1488. package/es2020/src/modules/goBack/index.js +0 -3
  1489. package/es2020/src/modules/goBack/index.js.map +0 -1
  1490. package/es2020/src/modules/goBack/modules/goBack.module.js +0 -23
  1491. package/es2020/src/modules/goBack/modules/goBack.module.js.map +0 -1
  1492. package/es2020/src/modules/goBack/modules/index.js +0 -2
  1493. package/es2020/src/modules/goBack/modules/index.js.map +0 -1
  1494. package/es2020/src/modules/multiButton/components/multiButton/multiButton.component.js +0 -119
  1495. package/es2020/src/modules/multiButton/components/multiButton/multiButton.component.js.map +0 -1
  1496. package/es2020/src/modules/multiButton/components/multiButton/multiButton.interface.js +0 -2
  1497. package/es2020/src/modules/multiButton/components/multiButton/multiButton.interface.js.map +0 -1
  1498. package/es2020/src/modules/multiButton/misc/tokens.js +0 -6
  1499. package/es2020/src/modules/multiButton/misc/tokens.js.map +0 -1
  1500. package/es2020/src/modules/multiButton/modules/multiButton.module.js +0 -29
  1501. package/es2020/src/modules/multiButton/modules/multiButton.module.js.map +0 -1
  1502. package/es2020/src/modules/progressIndicator/components/index.js +0 -2
  1503. package/es2020/src/modules/progressIndicator/components/index.js.map +0 -1
  1504. package/es2020/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js +0 -66
  1505. package/es2020/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js.map +0 -1
  1506. package/es2020/src/modules/progressIndicator/directives/index.js +0 -2
  1507. package/es2020/src/modules/progressIndicator/directives/index.js.map +0 -1
  1508. package/es2020/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js +0 -124
  1509. package/es2020/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js.map +0 -1
  1510. package/es2020/src/modules/progressIndicator/index.js +0 -6
  1511. package/es2020/src/modules/progressIndicator/index.js.map +0 -1
  1512. package/es2020/src/modules/progressIndicator/interceptors/progressInterceptor.js +0 -54
  1513. package/es2020/src/modules/progressIndicator/interceptors/progressInterceptor.js.map +0 -1
  1514. package/es2020/src/modules/progressIndicator/misc/tokens.js +0 -6
  1515. package/es2020/src/modules/progressIndicator/misc/tokens.js.map +0 -1
  1516. package/es2020/src/modules/progressIndicator/modules/index.js +0 -2
  1517. package/es2020/src/modules/progressIndicator/modules/index.js.map +0 -1
  1518. package/es2020/src/modules/progressIndicator/modules/progressIndicator.module.js +0 -38
  1519. package/es2020/src/modules/progressIndicator/modules/progressIndicator.module.js.map +0 -1
  1520. package/es2020/src/modules/progressIndicator/services/progressIndicator.service.js +0 -255
  1521. package/es2020/src/modules/progressIndicator/services/progressIndicator.service.js.map +0 -1
  1522. package/es2020/src/modules/progressIndicator/services/progressIndicatorOptions.js +0 -25
  1523. package/es2020/src/modules/progressIndicator/services/progressIndicatorOptions.js.map +0 -1
  1524. package/es2020/src/pipes/index.js +0 -6
  1525. package/es2020/src/pipes/index.js.map +0 -1
  1526. package/es2020/src/pipes/isNaN/isNaN.pipe.js +0 -24
  1527. package/es2020/src/pipes/isNaN/isNaN.pipe.js.map +0 -1
  1528. package/es2020/src/pipes/isPresent/isPresent.pipe.js +0 -25
  1529. package/es2020/src/pipes/isPresent/isPresent.pipe.js.map +0 -1
  1530. package/es2020/src/pipes/localize/localize.pipe.js +0 -54
  1531. package/es2020/src/pipes/localize/localize.pipe.js.map +0 -1
  1532. package/es2020/src/pipes/mergeCssClasses/mergeCssClasses.pipe.js +0 -43
  1533. package/es2020/src/pipes/mergeCssClasses/mergeCssClasses.pipe.js.map +0 -1
  1534. package/es2020/src/pipes/urlEncode/urlEncode.pipe.js +0 -26
  1535. package/es2020/src/pipes/urlEncode/urlEncode.pipe.js.map +0 -1
  1536. package/es2020/src/services/alignment/alignment.interface.js +0 -2
  1537. package/es2020/src/services/alignment/alignment.interface.js.map +0 -1
  1538. package/es2020/src/services/alignment/index.js +0 -2
  1539. package/es2020/src/services/alignment/index.js.map +0 -1
  1540. package/es2020/src/services/cookies/cookies.service.js +0 -106
  1541. package/es2020/src/services/cookies/cookies.service.js.map +0 -1
  1542. package/es2020/src/services/globalization/globalization.service.js +0 -6
  1543. package/es2020/src/services/globalization/globalization.service.js.map +0 -1
  1544. package/es2020/src/services/logger/index.js +0 -3
  1545. package/es2020/src/services/logger/index.js.map +0 -1
  1546. package/es2020/src/services/logger/logger.interface.js +0 -2
  1547. package/es2020/src/services/logger/logger.interface.js.map +0 -1
  1548. package/es2020/src/services/logger/logger.service.js +0 -18
  1549. package/es2020/src/services/logger/logger.service.js.map +0 -1
  1550. package/es2020/src/services/notifications/defaultNotifications.service.js +0 -228
  1551. package/es2020/src/services/notifications/defaultNotifications.service.js.map +0 -1
  1552. package/es2020/src/services/notifications/index.js +0 -4
  1553. package/es2020/src/services/notifications/index.js.map +0 -1
  1554. package/es2020/src/services/notifications/notifications.interface.js +0 -55
  1555. package/es2020/src/services/notifications/notifications.interface.js.map +0 -1
  1556. package/es2020/src/services/notifications/notificationsOptions.js +0 -18
  1557. package/es2020/src/services/notifications/notificationsOptions.js.map +0 -1
  1558. package/es2020/src/services/permanentStorage/cookiePermanentStorage.service.js +0 -43
  1559. package/es2020/src/services/permanentStorage/cookiePermanentStorage.service.js.map +0 -1
  1560. package/es2020/src/services/permanentStorage/index.js +0 -3
  1561. package/es2020/src/services/permanentStorage/index.js.map +0 -1
  1562. package/es2020/src/services/permanentStorage/permanentStorage.interface.js +0 -2
  1563. package/es2020/src/services/permanentStorage/permanentStorage.interface.js.map +0 -1
  1564. package/es2020/src/services/statusCode/statusCode.service.js +0 -29
  1565. package/es2020/src/services/statusCode/statusCode.service.js.map +0 -1
  1566. package/es2020/src/services/stringLocalization/index.js +0 -3
  1567. package/es2020/src/services/stringLocalization/index.js.map +0 -1
  1568. package/es2020/src/services/stringLocalization/noStringLocalization.service.js +0 -43
  1569. package/es2020/src/services/stringLocalization/noStringLocalization.service.js.map +0 -1
  1570. package/es2020/src/services/stringLocalization/stringLocalization.interface.js +0 -2
  1571. package/es2020/src/services/stringLocalization/stringLocalization.interface.js.map +0 -1
  1572. package/es2020/src/services/temporaryStorage/index.js +0 -3
  1573. package/es2020/src/services/temporaryStorage/index.js.map +0 -1
  1574. package/es2020/src/services/temporaryStorage/memoryTemporaryStorage.service.js +0 -43
  1575. package/es2020/src/services/temporaryStorage/memoryTemporaryStorage.service.js.map +0 -1
  1576. package/es2020/src/services/temporaryStorage/temporaryStorage.interface.js +0 -2
  1577. package/es2020/src/services/temporaryStorage/temporaryStorage.interface.js.map +0 -1
  1578. package/es2020/src/types/tokens.js +0 -50
  1579. package/es2020/src/types/tokens.js.map +0 -1
  1580. package/es2020/src/utils/index.js +0 -51
  1581. package/es2020/src/utils/index.js.map +0 -1
  1582. package/es2020/store/src/index.js +0 -2
  1583. package/es2020/store/src/index.js.map +0 -1
  1584. package/es2020/store/src/services/index.js +0 -3
  1585. package/es2020/store/src/services/index.js.map +0 -1
  1586. package/es2020/store/src/services/permanentStorage/localPermanentStorage.service.js +0 -49
  1587. package/es2020/store/src/services/permanentStorage/localPermanentStorage.service.js.map +0 -1
  1588. package/es2020/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +0 -37
  1589. package/es2020/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js.map +0 -1
  1590. package/es2020/store/src/types/store.typings.js +0 -2
  1591. package/es2020/store/src/types/store.typings.js.map +0 -1
  1592. package/es2020/structured-log/src/components/console/console.component.animations.js +0 -31
  1593. package/es2020/structured-log/src/components/console/console.component.animations.js.map +0 -1
  1594. package/es2020/structured-log/src/components/console/console.component.js +0 -95
  1595. package/es2020/structured-log/src/components/console/console.component.js.map +0 -1
  1596. package/es2020/structured-log/src/index.js +0 -12
  1597. package/es2020/structured-log/src/index.js.map +0 -1
  1598. package/es2020/structured-log/src/misc/utils.js +0 -39
  1599. package/es2020/structured-log/src/misc/utils.js.map +0 -1
  1600. package/es2020/structured-log/src/modules/consoleLog.module.js +0 -44
  1601. package/es2020/structured-log/src/modules/consoleLog.module.js.map +0 -1
  1602. package/es2020/structured-log/src/services/console/consoleComponentSink.service.js +0 -96
  1603. package/es2020/structured-log/src/services/console/consoleComponentSink.service.js.map +0 -1
  1604. package/es2020/structured-log/src/services/console/consoleSinkConfig.service.js +0 -44
  1605. package/es2020/structured-log/src/services/console/consoleSinkConfig.service.js.map +0 -1
  1606. package/es2020/structured-log/src/services/logger.service.js +0 -44
  1607. package/es2020/structured-log/src/services/logger.service.js.map +0 -1
  1608. package/es2020/structured-log/src/services/rest/restSink.service.js +0 -118
  1609. package/es2020/structured-log/src/services/rest/restSink.service.js.map +0 -1
  1610. package/es2020/structured-log/src/services/rest/restSinkConfig.service.js +0 -55
  1611. package/es2020/structured-log/src/services/rest/restSinkConfig.service.js.map +0 -1
  1612. package/es2020/structured-log/src/types/logger.interface.js +0 -2
  1613. package/es2020/structured-log/src/types/logger.interface.js.map +0 -1
  1614. package/es2020/structured-log/src/types/structured-log.typings.js +0 -2
  1615. package/es2020/structured-log/src/types/structured-log.typings.js.map +0 -1
  1616. package/es2020/structured-log/src/types/tokens.js +0 -56
  1617. package/es2020/structured-log/src/types/tokens.js.map +0 -1
  1618. package/forms/common-forms.d.ts +0 -966
  1619. package/forms/common-forms.internal.d.ts +0 -966
  1620. package/forms/src/index.d.ts +0 -20
  1621. package/forms/src/index.d.ts.map +0 -1
  1622. package/forms/temp/common-forms.api.md +0 -445
  1623. package/hmr/common-hmr.d.ts +0 -6
  1624. package/hmr/common-hmr.internal.d.ts +0 -6
  1625. package/hmr/src/index.d.ts +0 -6
  1626. package/hmr/src/index.d.ts.map +0 -1
  1627. package/hmr/temp/common-hmr.api.md +0 -12
  1628. package/hotkeys/common-hotkeys.d.ts +0 -53
  1629. package/hotkeys/common-hotkeys.internal.d.ts +0 -53
  1630. package/hotkeys/src/index.d.ts +0 -2
  1631. package/hotkeys/src/index.d.ts.map +0 -1
  1632. package/hotkeys/temp/common-hotkeys.api.md +0 -25
  1633. package/material/common-material.d.ts +0 -264
  1634. package/material/common-material.internal.d.ts +0 -278
  1635. package/material/src/index.d.ts +0 -11
  1636. package/material/src/index.d.ts.map +0 -1
  1637. package/material/temp/common-material.api.md +0 -164
  1638. package/moment/common-moment.d.ts +0 -61
  1639. package/moment/common-moment.internal.d.ts +0 -61
  1640. package/moment/src/index.d.ts +0 -3
  1641. package/moment/src/index.d.ts.map +0 -1
  1642. package/moment/temp/common-moment.api.md +0 -47
  1643. package/numeral/common-numeral.d.ts +0 -44
  1644. package/numeral/common-numeral.internal.d.ts +0 -44
  1645. package/numeral/src/index.d.ts +0 -3
  1646. package/numeral/src/index.d.ts.map +0 -1
  1647. package/numeral/temp/common-numeral.api.md +0 -37
  1648. package/positions/common-positions.d.ts +0 -324
  1649. package/positions/common-positions.internal.d.ts +0 -346
  1650. package/positions/src/index.d.ts +0 -9
  1651. package/positions/src/index.d.ts.map +0 -1
  1652. package/positions/src/types/positions.typings.d.ts +0 -33
  1653. package/positions/src/types/positions.typings.d.ts.map +0 -1
  1654. package/positions/temp/common-positions.api.md +0 -170
  1655. package/router/common-router.d.ts +0 -140
  1656. package/router/common-router.internal.d.ts +0 -140
  1657. package/router/src/index.d.ts +0 -7
  1658. package/router/src/index.d.ts.map +0 -1
  1659. package/router/temp/common-router.api.md +0 -74
  1660. package/src/index.d.ts +0 -34
  1661. package/src/index.d.ts.map +0 -1
  1662. package/src/modules/commonDynamic.module.d.ts +0 -11
  1663. package/src/modules/commonDynamic.module.d.ts.map +0 -1
  1664. package/src/modules/commonLocalize.d.ts +0 -11
  1665. package/src/modules/commonLocalize.d.ts.map +0 -1
  1666. package/src/modules/commonUtils.module.d.ts +0 -14
  1667. package/src/modules/commonUtils.module.d.ts.map +0 -1
  1668. package/src/modules/goBack/directives/goBack/goBack.directive.d.ts +0 -17
  1669. package/src/modules/goBack/directives/goBack/goBack.directive.d.ts.map +0 -1
  1670. package/src/modules/goBack/directives/index.d.ts +0 -2
  1671. package/src/modules/goBack/directives/index.d.ts.map +0 -1
  1672. package/src/modules/goBack/index.d.ts +0 -3
  1673. package/src/modules/goBack/index.d.ts.map +0 -1
  1674. package/src/modules/goBack/modules/goBack.module.d.ts +0 -11
  1675. package/src/modules/goBack/modules/goBack.module.d.ts.map +0 -1
  1676. package/src/modules/goBack/modules/index.d.ts +0 -2
  1677. package/src/modules/goBack/modules/index.d.ts.map +0 -1
  1678. package/src/modules/progressIndicator/components/index.d.ts +0 -2
  1679. package/src/modules/progressIndicator/components/index.d.ts.map +0 -1
  1680. package/src/modules/progressIndicator/directives/index.d.ts +0 -2
  1681. package/src/modules/progressIndicator/directives/index.d.ts.map +0 -1
  1682. package/src/modules/progressIndicator/index.d.ts +0 -6
  1683. package/src/modules/progressIndicator/index.d.ts.map +0 -1
  1684. package/src/modules/progressIndicator/misc/tokens.d.ts +0 -6
  1685. package/src/modules/progressIndicator/misc/tokens.d.ts.map +0 -1
  1686. package/src/modules/progressIndicator/modules/index.d.ts +0 -2
  1687. package/src/modules/progressIndicator/modules/index.d.ts.map +0 -1
  1688. package/src/pipes/index.d.ts +0 -6
  1689. package/src/pipes/index.d.ts.map +0 -1
  1690. package/src/pipes/mergeCssClasses/mergeCssClasses.pipe.d.ts +0 -21
  1691. package/src/pipes/mergeCssClasses/mergeCssClasses.pipe.d.ts.map +0 -1
  1692. package/src/services/alignment/alignment.interface.d.ts +0 -6
  1693. package/src/services/alignment/alignment.interface.d.ts.map +0 -1
  1694. package/src/services/alignment/index.d.ts +0 -2
  1695. package/src/services/alignment/index.d.ts.map +0 -1
  1696. package/store/common-store.d.ts +0 -61
  1697. package/store/common-store.internal.d.ts +0 -61
  1698. package/store/src/index.d.ts +0 -2
  1699. package/store/src/index.d.ts.map +0 -1
  1700. package/store/src/types/store.typings.d.ts +0 -4
  1701. package/store/src/types/store.typings.d.ts.map +0 -1
  1702. package/store/temp/common-store.api.md +0 -37
  1703. package/structured-log/common-structured-log.d.ts +0 -418
  1704. package/structured-log/common-structured-log.internal.d.ts +0 -418
  1705. package/structured-log/src/index.d.ts +0 -12
  1706. package/structured-log/src/index.d.ts.map +0 -1
  1707. package/structured-log/src/types/structured-log.typings.d.ts +0 -355
  1708. package/structured-log/src/types/structured-log.typings.d.ts.map +0 -1
  1709. package/structured-log/temp/common-structured-log.api.md +0 -193
@@ -1,106 +0,0 @@
1
- import { PLATFORM_ID, Inject, Optional, Injectable } from '@angular/core';
2
- import { isPlatformBrowser } from '@angular/common';
3
- import { isBlank } from '@jscrpt/common';
4
- import { HTTP_REQUEST_COOKIE_HEADER } from '../../types/tokens';
5
- import * as i0 from "@angular/core";
6
- /**
7
- * Class that is used as wrapper for working with cookies
8
- */
9
- export class CookieService {
10
- //######################### constructor #########################
11
- constructor(platformId, _serverCookies) {
12
- this._serverCookies = _serverCookies;
13
- //######################### private fields #########################
14
- /**
15
- * Indication that current code is running in browser
16
- */
17
- this._isBrowser = false;
18
- this._isBrowser = isPlatformBrowser(platformId);
19
- }
20
- //######################### public methods #########################
21
- /**
22
- * Retrieves a single cookie by it's name
23
- *
24
- * @param name - Identification of the Cookie
25
- * @param skipSerialization - Indication whether skip deserialization from json string
26
- * @returns The Cookie's value
27
- */
28
- getCookie(name, skipSerialization) {
29
- if (!this._isBrowser && isBlank(this._serverCookies)) {
30
- return null;
31
- }
32
- name = encodeURIComponent(name);
33
- const regexp = new RegExp('(?:^' + name + '|;\\s*' + name + ')=(.*?)(?:;|$)', 'g');
34
- let result;
35
- if (isBlank(this._serverCookies)) {
36
- result = regexp.exec(document.cookie);
37
- }
38
- else {
39
- result = regexp.exec(this._serverCookies);
40
- }
41
- if (result === null) {
42
- return null;
43
- }
44
- const val = decodeURIComponent(result[1]);
45
- return skipSerialization ? val : JSON.parse(val);
46
- }
47
- /**
48
- * Save the Cookie
49
- *
50
- * @param name - Cookie's identification
51
- * @param value - Cookie's value
52
- * @param expires - Cookie's expiration date in days from now. If it's undefined the cookie is a session Cookie
53
- * @param path - Path relative to the domain where the cookie should be avaiable. Default /
54
- * @param domain - Domain where the cookie should be avaiable. Default current domain
55
- * @param skipSerialization - Indication whether skip serialization to json string
56
- */
57
- setCookie(name, value, expires, path, domain, skipSerialization) {
58
- if (!this._isBrowser) {
59
- return;
60
- }
61
- const val = skipSerialization ? value : JSON.stringify(value);
62
- let cookieStr = encodeURIComponent(name) + '=' + encodeURIComponent(val) + ';';
63
- if (expires) {
64
- const dtExpires = new Date(new Date().getTime() + expires * 1000 * 60 * 60 * 24);
65
- cookieStr += 'expires=' + dtExpires.toUTCString() + ';';
66
- }
67
- if (path) {
68
- cookieStr += 'path=' + path + ';';
69
- }
70
- if (domain) {
71
- cookieStr += 'domain=' + domain + ';';
72
- }
73
- document.cookie = cookieStr;
74
- }
75
- /**
76
- * Removes specified Cookie
77
- *
78
- * @param name - Cookie's identification
79
- * @param path - Path relative to the domain where the cookie should be avaiable. Default /
80
- * @param domain - Domain where the cookie should be avaiable. Default current domain
81
- */
82
- deleteCookie(name, path, domain) {
83
- if (!this._isBrowser) {
84
- return;
85
- }
86
- // If the cookie exists
87
- if (this.getCookie(name)) {
88
- this.setCookie(name, '', -1, path, domain);
89
- }
90
- }
91
- }
92
- CookieService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: CookieService, deps: [{ token: PLATFORM_ID }, { token: HTTP_REQUEST_COOKIE_HEADER, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
93
- CookieService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: CookieService, providedIn: 'root' });
94
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: CookieService, decorators: [{
95
- type: Injectable,
96
- args: [{ providedIn: 'root' }]
97
- }], ctorParameters: function () { return [{ type: Object, decorators: [{
98
- type: Inject,
99
- args: [PLATFORM_ID]
100
- }] }, { type: undefined, decorators: [{
101
- type: Optional
102
- }, {
103
- type: Inject,
104
- args: [HTTP_REQUEST_COOKIE_HEADER]
105
- }] }]; } });
106
- //# sourceMappingURL=cookies.service.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"cookies.service.js","sourceRoot":"","sources":["../../../../src/services/cookies/cookies.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,UAAU,EAAC,MAAM,eAAe,CAAC;AACxE,OAAO,EAAC,iBAAiB,EAAC,MAAM,iBAAiB,CAAC;AAClD,OAAO,EAAC,OAAO,EAAC,MAAM,gBAAgB,CAAC;AAEvC,OAAO,EAAC,0BAA0B,EAAC,MAAM,oBAAoB,CAAC;;AAE9D;;GAEG;AAEH,MAAM,OAAO,aAAa;IAStB,iEAAiE;IACjE,YAAiC,UAAkB,EACiB,cAAsB;QAAtB,mBAAc,GAAd,cAAc,CAAQ;QAT1F,oEAAoE;QAEpE;;WAEG;QACK,eAAU,GAAY,KAAK,CAAC;QAMhC,IAAI,CAAC,UAAU,GAAG,iBAAiB,CAAC,UAAU,CAAC,CAAC;IACpD,CAAC;IAED,oEAAoE;IAEpE;;;;;;OAMG;IACI,SAAS,CAAC,IAAY,EAAE,iBAA2B;QAEtD,IAAG,CAAC,IAAI,CAAC,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC,cAAc,CAAC,EACnD;YACI,OAAO,IAAI,CAAC;SACf;QAED,IAAI,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC;QAEhC,MAAM,MAAM,GAAG,IAAI,MAAM,CAAC,MAAM,GAAG,IAAI,GAAG,QAAQ,GAAG,IAAI,GAAG,gBAAgB,EAAE,GAAG,CAAC,CAAC;QACnF,IAAI,MAAM,CAAC;QAEX,IAAG,OAAO,CAAC,IAAI,CAAC,cAAc,CAAC,EAC/B;YACI,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;SACzC;aAED;YACI,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;SAC7C;QAED,IAAG,MAAM,KAAK,IAAI,EAClB;YACI,OAAO,IAAI,CAAC;SACf;QAED,MAAM,GAAG,GAAG,kBAAkB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;QAE1C,OAAO,iBAAiB,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACrD,CAAC;IAED;;;;;;;;;OASG;IACI,SAAS,CAAC,IAAY,EAAE,KAAU,EAAE,OAAgB,EAAE,IAAa,EAAE,MAAe,EAAE,iBAA2B;QAEpH,IAAG,CAAC,IAAI,CAAC,UAAU,EACnB;YACI,OAAO;SACV;QAED,MAAM,GAAG,GAAG,iBAAiB,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;QAC9D,IAAI,SAAS,GAAG,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,GAAG,kBAAkB,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC;QAE/E,IAAI,OAAO,EACX;YACI,MAAM,SAAS,GAAG,IAAI,IAAI,CAAC,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,GAAG,OAAO,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC;YACjF,SAAS,IAAI,UAAU,GAAG,SAAS,CAAC,WAAW,EAAE,GAAG,GAAG,CAAC;SAC3D;QAED,IAAI,IAAI,EACR;YACI,SAAS,IAAI,OAAO,GAAG,IAAI,GAAG,GAAG,CAAC;SACrC;QAED,IAAI,MAAM,EACV;YACI,SAAS,IAAI,SAAS,GAAG,MAAM,GAAG,GAAG,CAAC;SACzC;QAED,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;IAChC,CAAC;IAED;;;;;;OAMG;IACI,YAAY,CAAC,IAAY,EAAE,IAAa,EAAE,MAAe;QAE5D,IAAG,CAAC,IAAI,CAAC,UAAU,EACnB;YACI,OAAO;SACV;QAED,uBAAuB;QACvB,IAAI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EACxB;YACI,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;SAC9C;IACL,CAAC;;0GAlHQ,aAAa,kBAUF,WAAW,aACC,0BAA0B;8GAXjD,aAAa,cADD,MAAM;2FAClB,aAAa;kBADzB,UAAU;mBAAC,EAAC,UAAU,EAAE,MAAM,EAAC;0DAWiB,MAAM;0BAAtC,MAAM;2BAAC,WAAW;;0BAClB,QAAQ;;0BAAI,MAAM;2BAAC,0BAA0B","sourcesContent":["import {PLATFORM_ID, Inject, Optional, Injectable} from '@angular/core';\nimport {isPlatformBrowser} from '@angular/common';\nimport {isBlank} from '@jscrpt/common';\n\nimport {HTTP_REQUEST_COOKIE_HEADER} from '../../types/tokens';\n\n/**\n * Class that is used as wrapper for working with cookies\n */\n@Injectable({providedIn: 'root'})\nexport class CookieService\n{\n //######################### private fields #########################\n\n /**\n * Indication that current code is running in browser\n */\n private _isBrowser: boolean = false;\n\n //######################### constructor #########################\n constructor(@Inject(PLATFORM_ID) platformId: Object,\n @Optional() @Inject(HTTP_REQUEST_COOKIE_HEADER) private _serverCookies: string)\n {\n this._isBrowser = isPlatformBrowser(platformId);\n }\n\n //######################### public methods #########################\n\n /**\n * Retrieves a single cookie by it's name\n *\n * @param name - Identification of the Cookie\n * @param skipSerialization - Indication whether skip deserialization from json string\n * @returns The Cookie's value\n */\n public getCookie(name: string, skipSerialization?: boolean): any\n {\n if(!this._isBrowser && isBlank(this._serverCookies))\n {\n return null;\n }\n\n name = encodeURIComponent(name);\n \n const regexp = new RegExp('(?:^' + name + '|;\\\\s*' + name + ')=(.*?)(?:;|$)', 'g');\n let result;\n\n if(isBlank(this._serverCookies))\n {\n result = regexp.exec(document.cookie);\n }\n else\n {\n result = regexp.exec(this._serverCookies);\n }\n\n if(result === null)\n {\n return null;\n }\n\n const val = decodeURIComponent(result[1]);\n\n return skipSerialization ? val : JSON.parse(val);\n }\n\n /**\n * Save the Cookie\n *\n * @param name - Cookie's identification\n * @param value - Cookie's value\n * @param expires - Cookie's expiration date in days from now. If it's undefined the cookie is a session Cookie\n * @param path - Path relative to the domain where the cookie should be avaiable. Default /\n * @param domain - Domain where the cookie should be avaiable. Default current domain\n * @param skipSerialization - Indication whether skip serialization to json string\n */\n public setCookie(name: string, value: any, expires?: number, path?: string, domain?: string, skipSerialization?: boolean): void\n {\n if(!this._isBrowser)\n {\n return;\n }\n\n const val = skipSerialization ? value : JSON.stringify(value);\n let cookieStr = encodeURIComponent(name) + '=' + encodeURIComponent(val) + ';';\n\n if (expires)\n {\n const dtExpires = new Date(new Date().getTime() + expires * 1000 * 60 * 60 * 24);\n cookieStr += 'expires=' + dtExpires.toUTCString() + ';';\n }\n \n if (path)\n {\n cookieStr += 'path=' + path + ';';\n }\n \n if (domain)\n {\n cookieStr += 'domain=' + domain + ';';\n }\n\n document.cookie = cookieStr;\n }\n\n /**\n * Removes specified Cookie\n *\n * @param name - Cookie's identification\n * @param path - Path relative to the domain where the cookie should be avaiable. Default /\n * @param domain - Domain where the cookie should be avaiable. Default current domain\n */\n public deleteCookie(name: string, path?: string, domain?: string): void\n {\n if(!this._isBrowser)\n {\n return;\n }\n\n // If the cookie exists\n if (this.getCookie(name))\n {\n this.setCookie(name, '', -1, path, domain);\n }\n }\n}"]}
@@ -1,6 +0,0 @@
1
- /**
2
- * Globalization service for handling globalization changes
3
- */
4
- export class GlobalizationService {
5
- }
6
- //# sourceMappingURL=globalization.service.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"globalization.service.js","sourceRoot":"","sources":["../../../../src/services/globalization/globalization.service.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,MAAM,OAAgB,oBAAoB;CAWzC","sourcesContent":["import {Observable} from 'rxjs';\n\n/**\n * Globalization service for handling globalization changes\n */\nexport abstract class GlobalizationService\n{\n /**\n * Gets current name of locale, that is used within application\n */\n public abstract get locale(): string;\n \n /**\n * Gets observable that emits when locale changes and change should be applied to application\n */\n public abstract get localeChange(): Observable<void>;\n}"]}
@@ -1,3 +0,0 @@
1
- export * from './logger.interface';
2
- export * from './logger.service';
3
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/services/logger/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC","sourcesContent":["export * from './logger.interface';\nexport * from './logger.service';"]}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=logger.interface.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"logger.interface.js","sourceRoot":"","sources":["../../../../src/services/logger/logger.interface.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * Interface for general logger\n */\nexport interface Logger\n{\n //######################### public methods #########################\n\n /**\n * Logs an event with the LogEventLevel.fatal severity.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n fatal(messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.fatal severity.\n * @param error - Error for the log event.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n fatal(error: Error, messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.error severity.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n error(messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.error severity.\n * @param error - Error for the log event.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n error(error: Error, messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.warning severity.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n warn(messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.warning severity.\n * @param error - Error for the log event.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n warn(error: Error, messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.information severity.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n info(messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.information severity.\n * @param error - Error for the log event.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n info(error: Error, messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.debug severity.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n debug(messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.debug severity.\n * @param error - Error for the log event.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n debug(error: Error, messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.verbose severity.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n verbose(messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.verbose severity.\n * @param error - Error for the log event.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n verbose(error: Error, messageTemplate: string, ...properties: any[]): void;\n}"]}
@@ -1,18 +0,0 @@
1
- /**
2
- * Dummy service used as default logger interface doing nothing
3
- */
4
- export class DummyLoggerService {
5
- fatal(_errorOrMessageTemplate, ..._properties) {
6
- }
7
- error(_errorOrMessageTemplate, ..._properties) {
8
- }
9
- warn(_errorOrMessageTemplate, ..._properties) {
10
- }
11
- info(_errorOrMessageTemplate, ..._properties) {
12
- }
13
- debug(_errorOrMessageTemplate, ..._properties) {
14
- }
15
- verbose(_errorOrMessageTemplate, ..._properties) {
16
- }
17
- }
18
- //# sourceMappingURL=logger.service.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"logger.service.js","sourceRoot":"","sources":["../../../../src/services/logger/logger.service.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,MAAM,OAAO,kBAAkB;IAmB3B,KAAK,CAAC,uBAA4B,EAAE,GAAG,WAAkB;IAEzD,CAAC;IAiBD,KAAK,CAAC,uBAA4B,EAAE,GAAG,WAAkB;IAEzD,CAAC;IAiBD,IAAI,CAAC,uBAA4B,EAAE,GAAG,WAAkB;IAExD,CAAC;IAiBD,IAAI,CAAC,uBAA4B,EAAE,GAAG,WAAkB;IAExD,CAAC;IAiBD,KAAK,CAAC,uBAA4B,EAAE,GAAG,WAAkB;IAEzD,CAAC;IAiBD,OAAO,CAAC,uBAA4B,EAAE,GAAG,WAAkB;IAE3D,CAAC;CACJ","sourcesContent":["import {Logger} from './logger.interface';\n\n/**\n * Dummy service used as default logger interface doing nothing\n */\nexport class DummyLoggerService implements Logger\n{\n //######################### public methods #########################\n\n /**\n * Logs an event with the LogEventLevel.fatal severity.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n fatal(messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.fatal severity.\n * @param error - Error for the log event.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n fatal(error: Error, messageTemplate: string, ...properties: any[]): void;\n\n fatal(_errorOrMessageTemplate: any, ..._properties: any[]): void\n {\n }\n\n /**\n * Logs an event with the LogEventLevel.error severity.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n error(messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.error severity.\n * @param error - Error for the log event.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n error(error: Error, messageTemplate: string, ...properties: any[]): void;\n\n error(_errorOrMessageTemplate: any, ..._properties: any[]): void\n {\n }\n\n /**\n * Logs an event with the LogEventLevel.warning severity.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n warn(messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.warning severity.\n * @param error - Error for the log event.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n warn(error: Error, messageTemplate: string, ...properties: any[]): void;\n\n warn(_errorOrMessageTemplate: any, ..._properties: any[]): void\n {\n }\n\n /**\n * Logs an event with the LogEventLevel.information severity.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n info(messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.information severity.\n * @param error - Error for the log event.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n info(error: Error, messageTemplate: string, ...properties: any[]): void;\n\n info(_errorOrMessageTemplate: any, ..._properties: any[]): void\n {\n }\n\n /**\n * Logs an event with the LogEventLevel.debug severity.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n debug(messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.debug severity.\n * @param error - Error for the log event.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n debug(error: Error, messageTemplate: string, ...properties: any[]): void;\n\n debug(_errorOrMessageTemplate: any, ..._properties: any[]): void\n {\n }\n\n /**\n * Logs an event with the LogEventLevel.verbose severity.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n verbose(messageTemplate: string, ...properties: any[]): void;\n\n /**\n * Logs an event with the LogEventLevel.verbose severity.\n * @param error - Error for the log event.\n * @param messageTemplate - Message template for the log event.\n * @param properties - Properties that can be used to render the message template.\n */\n verbose(error: Error, messageTemplate: string, ...properties: any[]): void;\n\n verbose(_errorOrMessageTemplate: any, ..._properties: any[]): void\n {\n }\n}"]}
@@ -1,228 +0,0 @@
1
- import { Injectable, Optional, SkipSelf } from '@angular/core';
2
- import { generateId } from '@jscrpt/common';
3
- import { Subject, Subscription } from 'rxjs';
4
- import { NOTIFICATIONS, NOTIFICATIONS_SCOPE } from '../../types/tokens';
5
- import { Notification, NotificationSeverity } from './notifications.interface';
6
- import { NotificationsOptions } from './notificationsOptions';
7
- import * as i0 from "@angular/core";
8
- import * as i1 from "./notificationsOptions";
9
- /**
10
- * Default notifications service implementation
11
- */
12
- export class DefaultNotificationsService {
13
- //######################### constructor #########################
14
- constructor(_options) {
15
- this._options = _options;
16
- //######################### protected fields #########################
17
- /**
18
- * Array of notifications
19
- */
20
- this._notifications = [];
21
- /**
22
- * Array of notifications timeouts
23
- */
24
- this._notificationsTimeouts = [];
25
- /**
26
- * Subject used for emitting changes of current notifications
27
- */
28
- this._notificationsChange = new Subject();
29
- /**
30
- * Subject used for emitting event when instance is being destroyed
31
- */
32
- this._destroy = new Subject();
33
- /**
34
- * Array of scoped notifications
35
- */
36
- this._scopes = {};
37
- if (!this._options || !(this._options instanceof NotificationsOptions)) {
38
- this._options = new NotificationsOptions();
39
- }
40
- }
41
- //######################### public properties #########################
42
- /**
43
- * @inheritdoc
44
- */
45
- get notifications() {
46
- return [...this._notifications];
47
- }
48
- /**
49
- * @inheritdoc
50
- */
51
- get notificationsChange() {
52
- return this._notificationsChange.asObservable();
53
- }
54
- /**
55
- * @inheritdoc
56
- */
57
- get destroy() {
58
- return this._destroy.asObservable();
59
- }
60
- //######################### public methods - implementation of Notifications #########################
61
- /**
62
- * @inheritdoc
63
- */
64
- message(message, severity) {
65
- const notification = new Notification(message, severity);
66
- this._notifications.push(notification);
67
- this._notificationsChange.next();
68
- // set timeout
69
- if (this._options.timeout > 0) {
70
- this._notificationsTimeouts.push(setTimeout(() => {
71
- this.remove(notification);
72
- }, this._options.timeout));
73
- }
74
- return this;
75
- }
76
- /**
77
- * @inheritdoc
78
- */
79
- default(message) {
80
- return this.message(message, NotificationSeverity.Default);
81
- }
82
- /**
83
- * @inheritdoc
84
- */
85
- success(message) {
86
- return this.message(message, NotificationSeverity.Success);
87
- }
88
- /**
89
- * @inheritdoc
90
- */
91
- error(message) {
92
- return this.message(message, NotificationSeverity.Error);
93
- }
94
- /**
95
- * @inheritdoc
96
- */
97
- info(message) {
98
- return this.message(message, NotificationSeverity.Info);
99
- }
100
- /**
101
- * @inheritdoc
102
- */
103
- warning(message) {
104
- return this.message(message, NotificationSeverity.Warning);
105
- }
106
- /**
107
- * @inheritdoc
108
- */
109
- clearNotifications() {
110
- while (this._notifications[0]) {
111
- this._remove(this._notifications[0], false);
112
- }
113
- this._notificationsChange.next();
114
- return this;
115
- }
116
- /**
117
- * @inheritdoc
118
- */
119
- remove(notification) {
120
- return this._remove(notification);
121
- }
122
- /**
123
- * @inheritdoc
124
- */
125
- getScope(scopeName) {
126
- const scopeObj = this._scopes[scopeName];
127
- let scope;
128
- // no scope yet
129
- if (!scopeObj) {
130
- scope = new DefaultNotificationsService(this._options);
131
- const subscription = new Subscription();
132
- this._scopes[scopeName] = [scope, subscription];
133
- //destroys and removes scope
134
- subscription.add(scope.destroy.subscribe(() => {
135
- delete this._scopes[scopeName];
136
- subscription.unsubscribe();
137
- }));
138
- }
139
- else {
140
- scope = scopeObj[0];
141
- }
142
- return scope;
143
- }
144
- /**
145
- * @inheritdoc
146
- *
147
- * Call this manualy for scoped instances until this is fixed https://github.com/angular/angular/issues/28738
148
- */
149
- ngOnDestroy() {
150
- this._destroy.next();
151
- this._destroy.complete();
152
- this._notificationsChange.complete();
153
- Object.keys(this._scopes).forEach(scopeName => {
154
- const [scope] = this._scopes[scopeName];
155
- scope.ngOnDestroy();
156
- });
157
- }
158
- //######################### protected methods #########################
159
- /**
160
- * Removes notification from array of notifications
161
- * @param notification - Notification to be removed
162
- * @param emitEvent - Indication whether emit event on removal
163
- */
164
- _remove(notification, emitEvent = true) {
165
- const index = this._notifications.indexOf(notification);
166
- if (index < 0) {
167
- return this;
168
- }
169
- this._notifications.splice(index, 1);
170
- if (emitEvent) {
171
- this._notificationsChange.next();
172
- }
173
- // clear timeout
174
- if (this._options.timeout > 0) {
175
- clearTimeout(this._notificationsTimeouts[index]);
176
- this._notificationsTimeouts.splice(index, 1);
177
- }
178
- return this;
179
- }
180
- }
181
- DefaultNotificationsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: DefaultNotificationsService, deps: [{ token: i1.NotificationsOptions, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
182
- DefaultNotificationsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: DefaultNotificationsService });
183
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: DefaultNotificationsService, decorators: [{
184
- type: Injectable
185
- }], ctorParameters: function () { return [{ type: i1.NotificationsOptions, decorators: [{
186
- type: Optional
187
- }] }]; } });
188
- /**
189
- * Default notifications provider
190
- */
191
- const DEFAULT_NOTIFICATIONS = {
192
- provide: NOTIFICATIONS,
193
- useClass: DefaultNotificationsService
194
- };
195
- //TODO: add options to notifications factory
196
- /**
197
- * Factory that creates notifications provider for scope
198
- */
199
- const notificationsFactory = (scopeName, token) => {
200
- return [
201
- {
202
- provide: NOTIFICATIONS_SCOPE,
203
- useValue: scopeName
204
- },
205
- {
206
- provide: token ?? NOTIFICATIONS,
207
- useFactory: (notifications) => {
208
- return notifications.getScope(scopeName);
209
- },
210
- deps: [[new SkipSelf(), NOTIFICATIONS]]
211
- }
212
- ];
213
- };
214
- Object.defineProperty(DEFAULT_NOTIFICATIONS, 'scope', {
215
- get() {
216
- const func = (scopeName, token) => {
217
- return notificationsFactory(scopeName, token);
218
- };
219
- Object.defineProperty(func, 'random', {
220
- get() {
221
- return notificationsFactory(generateId(6));
222
- }
223
- });
224
- return func;
225
- }
226
- });
227
- export { DEFAULT_NOTIFICATIONS };
228
- //# sourceMappingURL=defaultNotifications.service.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"defaultNotifications.service.js","sourceRoot":"","sources":["../../../../src/services/notifications/defaultNotifications.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAkB,QAAQ,EAAE,QAAQ,EAAO,MAAM,eAAe,CAAC;AACnF,OAAO,EAAa,UAAU,EAAC,MAAM,gBAAgB,CAAC;AACtD,OAAO,EAAa,OAAO,EAAE,YAAY,EAAC,MAAM,MAAM,CAAC;AAEvD,OAAO,EAAC,aAAa,EAAE,mBAAmB,EAAC,MAAM,oBAAoB,CAAC;AACtE,OAAO,EAAgB,YAAY,EAAE,oBAAoB,EAAuF,MAAM,2BAA2B,CAAC;AAClL,OAAO,EAAC,oBAAoB,EAAC,MAAM,wBAAwB,CAAC;;;AAE5D;;GAEG;AAEH,MAAM,OAAO,2BAA2B;IAuDpC,iEAAiE;IACjE,YAAkC,QAA8B;QAA9B,aAAQ,GAAR,QAAQ,CAAsB;QAtDhE,sEAAsE;QAEtE;;WAEG;QACO,mBAAc,GAAmB,EAAE,CAAC;QAE9C;;WAEG;QACO,2BAAsB,GAAa,EAAE,CAAC;QAEhD;;WAEG;QACO,yBAAoB,GAAkB,IAAI,OAAO,EAAQ,CAAC;QAEpE;;WAEG;QACO,aAAQ,GAAkB,IAAI,OAAO,EAAQ,CAAC;QAExD;;WAEG;QACO,YAAO,GAA8C,EAAE,CAAC;QA+B9D,IAAG,CAAC,IAAI,CAAC,QAAQ,IAAI,CAAC,CAAC,IAAI,CAAC,QAAQ,YAAY,oBAAoB,CAAC,EACrE;YACI,IAAI,CAAC,QAAQ,GAAG,IAAI,oBAAoB,EAAE,CAAC;SAC9C;IACL,CAAC;IAjCD,uEAAuE;IAEvE;;OAEG;IACH,IAAW,aAAa;QAEpB,OAAO,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC;IACpC,CAAC;IAED;;OAEG;IACH,IAAW,mBAAmB;QAE1B,OAAO,IAAI,CAAC,oBAAoB,CAAC,YAAY,EAAE,CAAC;IACpD,CAAC;IAED;;OAEG;IACH,IAAW,OAAO;QAEd,OAAO,IAAI,CAAC,QAAQ,CAAC,YAAY,EAAE,CAAC;IACxC,CAAC;IAWD,sGAAsG;IAEtG;;OAEG;IACI,OAAO,CAAC,OAAe,EAAE,QAA8B;QAE1D,MAAM,YAAY,GAAG,IAAI,YAAY,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;QAEzD,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QACvC,IAAI,CAAC,oBAAoB,CAAC,IAAI,EAAE,CAAC;QAEjC,cAAc;QACd,IAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,GAAG,CAAC,EAC5B;YACI,IAAI,CAAC,sBAAsB,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,EAAE;gBAE7C,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;YAC9B,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAQ,CAAC,CAAC;SACrC;QAED,OAAO,IAAI,CAAC;IAChB,CAAC;IAED;;OAEG;IACI,OAAO,CAAC,OAAe;QAE1B,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;IAC/D,CAAC;IAED;;OAEG;IACI,OAAO,CAAC,OAAe;QAE1B,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;IAC/D,CAAC;IAED;;OAEG;IACI,KAAK,CAAC,OAAe;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,oBAAoB,CAAC,KAAK,CAAC,CAAC;IAC7D,CAAC;IAED;;OAEG;IACI,IAAI,CAAC,OAAe;QAEvB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,oBAAoB,CAAC,IAAI,CAAC,CAAC;IAC5D,CAAC;IAED;;OAEG;IACI,OAAO,CAAC,OAAe;QAE1B,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;IAC/D,CAAC;IAED;;OAEG;IACI,kBAAkB;QAErB,OAAM,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,EAC5B;YACI,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;SAC/C;QAED,IAAI,CAAC,oBAAoB,CAAC,IAAI,EAAE,CAAC;QAEjC,OAAO,IAAI,CAAC;IAChB,CAAC;IAED;;OAEG;IACI,MAAM,CAAC,YAA0B;QAEpC,OAAO,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;IACtC,CAAC;IAED;;OAEG;IACI,QAAQ,CAAC,SAAiB;QAE7B,MAAM,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;QACzC,IAAI,KAAoB,CAAC;QAEzB,eAAe;QACf,IAAG,CAAC,QAAQ,EACZ;YACI,KAAK,GAAG,IAAI,2BAA2B,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;YACvD,MAAM,YAAY,GAAG,IAAI,YAAY,EAAE,CAAC;YAExC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,CAAC,KAAK,EAAE,YAAY,CAAC,CAAC;YAEhD,4BAA4B;YAC5B,YAAY,CAAC,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,EAAE;gBAE1C,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;gBAC/B,YAAY,CAAC,WAAW,EAAE,CAAC;YAC/B,CAAC,CAAC,CAAC,CAAC;SACP;aAED;YACI,KAAK,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;SACvB;QAED,OAAO,KAAK,CAAC;IACjB,CAAC;IAED;;;;OAIG;IACI,WAAW;QAEd,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC;QACrB,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC;QACzB,IAAI,CAAC,oBAAoB,CAAC,QAAQ,EAAE,CAAC;QAErC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,EAAE;YAE1C,MAAM,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;YAExC,KAAK,CAAC,WAAW,EAAE,CAAC;QACxB,CAAC,CAAC,CAAC;IACP,CAAC;IAED,uEAAuE;IAEvE;;;;OAIG;IACO,OAAO,CAAC,YAA0B,EAAE,YAAqB,IAAI;QAEnE,MAAM,KAAK,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;QAExD,IAAG,KAAK,GAAG,CAAC,EACZ;YACI,OAAO,IAAI,CAAC;SACf;QAED,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;QAErC,IAAG,SAAS,EACZ;YACI,IAAI,CAAC,oBAAoB,CAAC,IAAI,EAAE,CAAC;SACpC;QAED,gBAAgB;QAChB,IAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,GAAG,CAAC,EAC5B;YACI,YAAY,CAAC,IAAI,CAAC,sBAAsB,CAAC,KAAK,CAAC,CAAC,CAAC;YACjD,IAAI,CAAC,sBAAsB,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;SAChD;QAED,OAAO,IAAI,CAAC;IAChB,CAAC;;wHAxOQ,2BAA2B;4HAA3B,2BAA2B;2FAA3B,2BAA2B;kBADvC,UAAU;;0BAyDM,QAAQ;;AAmLzB;;GAEG;AACH,MAAM,qBAAqB,GAC3B;IACI,OAAO,EAAE,aAAa;IACtB,QAAQ,EAAE,2BAA2B;CACxC,CAAC;AAEF,4CAA4C;AAE5C;;GAEG;AACH,MAAM,oBAAoB,GAAG,CAAC,SAAiB,EAAE,KAAsD,EAAE,EAAE;IAEvG,OAAoC;QAChC;YACI,OAAO,EAAE,mBAAmB;YAC5B,QAAQ,EAAE,SAAS;SACtB;QACD;YACI,OAAO,EAAE,KAAK,IAAI,aAAa;YAC/B,UAAU,EAAE,CAAC,aAA4B,EAAE,EAAE;gBAEzC,OAAO,aAAa,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YAC7C,CAAC;YACD,IAAI,EAAE,CAAC,CAAC,IAAI,QAAQ,EAAE,EAAE,aAAa,CAAC,CAAC;SAC1C;KACJ,CAAC;AACN,CAAC,CAAC;AAEF,MAAM,CAAC,cAAc,CAAC,qBAAqB,EAAE,OAAO,EACpD;IACI,GAAG;QAEC,MAAM,IAAI,GAAsC,CAAC,SAAiB,EAAE,KAAsD,EAAE,EAAE;YAE1H,OAAO,oBAAoB,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;QAClD,CAAC,CAAC;QAEF,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,QAAQ,EACpC;YACI,GAAG;gBAEC,OAAO,oBAAoB,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;YAC/C,CAAC;SACJ,CAAC,CAAC;QAEH,OAAO,IAAI,CAAC;IAChB,CAAC;CACJ,CAAC,CAAC;AAEH,OAAO,EAAC,qBAAqB,EAAC,CAAC","sourcesContent":["import {Injectable, InjectionToken, Optional, SkipSelf, Type} from '@angular/core';\nimport {Dictionary, generateId} from '@jscrpt/common';\nimport {Observable, Subject, Subscription} from 'rxjs';\n\nimport {NOTIFICATIONS, NOTIFICATIONS_SCOPE} from '../../types/tokens';\nimport {Notifications, Notification, NotificationSeverity, NotificationsProvider, NotificationsScopeProviderFactory, NotificationsScopeProvider} from './notifications.interface';\nimport {NotificationsOptions} from './notificationsOptions';\n\n/**\n * Default notifications service implementation\n */\n@Injectable()\nexport class DefaultNotificationsService implements Notifications\n{\n //######################### protected fields #########################\n\n /**\n * Array of notifications\n */\n protected _notifications: Notification[] = [];\n\n /**\n * Array of notifications timeouts\n */\n protected _notificationsTimeouts: number[] = [];\n\n /**\n * Subject used for emitting changes of current notifications\n */\n protected _notificationsChange: Subject<void> = new Subject<void>();\n\n /**\n * Subject used for emitting event when instance is being destroyed\n */\n protected _destroy: Subject<void> = new Subject<void>();\n\n /**\n * Array of scoped notifications\n */\n protected _scopes: Dictionary<[Notifications, Subscription]> = {};\n\n //######################### public properties #########################\n\n /**\n * @inheritdoc\n */\n public get notifications(): readonly Notification[]\n {\n return [...this._notifications];\n }\n\n /**\n * @inheritdoc\n */\n public get notificationsChange(): Observable<void>\n {\n return this._notificationsChange.asObservable();\n }\n\n /**\n * @inheritdoc\n */\n public get destroy(): Observable<void>\n {\n return this._destroy.asObservable();\n }\n\n //######################### constructor #########################\n constructor(@Optional() protected _options: NotificationsOptions)\n {\n if(!this._options || !(this._options instanceof NotificationsOptions))\n {\n this._options = new NotificationsOptions();\n }\n }\n\n //######################### public methods - implementation of Notifications #########################\n \n /**\n * @inheritdoc\n */\n public message(message: string, severity: NotificationSeverity): Notifications\n {\n const notification = new Notification(message, severity);\n \n this._notifications.push(notification);\n this._notificationsChange.next();\n\n // set timeout\n if(this._options.timeout > 0)\n {\n this._notificationsTimeouts.push(setTimeout(() =>\n {\n this.remove(notification);\n }, this._options.timeout) as any);\n }\n\n return this;\n }\n\n /**\n * @inheritdoc\n */\n public default(message: string): Notifications\n {\n return this.message(message, NotificationSeverity.Default);\n }\n\n /**\n * @inheritdoc\n */\n public success(message: string): Notifications\n {\n return this.message(message, NotificationSeverity.Success);\n }\n \n /**\n * @inheritdoc\n */\n public error(message: string): Notifications\n {\n return this.message(message, NotificationSeverity.Error);\n }\n \n /**\n * @inheritdoc\n */\n public info(message: string): Notifications\n {\n return this.message(message, NotificationSeverity.Info);\n }\n \n /**\n * @inheritdoc\n */\n public warning(message: string): Notifications\n {\n return this.message(message, NotificationSeverity.Warning);\n }\n\n /**\n * @inheritdoc\n */\n public clearNotifications(): Notifications\n {\n while(this._notifications[0])\n {\n this._remove(this._notifications[0], false);\n }\n\n this._notificationsChange.next();\n\n return this;\n }\n\n /**\n * @inheritdoc\n */\n public remove(notification: Notification): Notifications\n {\n return this._remove(notification);\n }\n\n /**\n * @inheritdoc\n */\n public getScope(scopeName: string): Notifications\n {\n const scopeObj = this._scopes[scopeName];\n let scope: Notifications;\n\n // no scope yet\n if(!scopeObj)\n {\n scope = new DefaultNotificationsService(this._options);\n const subscription = new Subscription();\n\n this._scopes[scopeName] = [scope, subscription];\n\n //destroys and removes scope\n subscription.add(scope.destroy.subscribe(() =>\n {\n delete this._scopes[scopeName];\n subscription.unsubscribe();\n }));\n }\n else\n {\n scope = scopeObj[0];\n }\n\n return scope;\n }\n\n /**\n * @inheritdoc\n * \n * Call this manualy for scoped instances until this is fixed https://github.com/angular/angular/issues/28738\n */\n public ngOnDestroy(): void\n {\n this._destroy.next();\n this._destroy.complete();\n this._notificationsChange.complete();\n\n Object.keys(this._scopes).forEach(scopeName =>\n {\n const [scope] = this._scopes[scopeName];\n\n scope.ngOnDestroy();\n });\n }\n\n //######################### protected methods #########################\n\n /**\n * Removes notification from array of notifications\n * @param notification - Notification to be removed\n * @param emitEvent - Indication whether emit event on removal\n */\n protected _remove(notification: Notification, emitEvent: boolean = true): Notifications\n {\n const index = this._notifications.indexOf(notification);\n\n if(index < 0)\n {\n return this;\n }\n\n this._notifications.splice(index, 1);\n\n if(emitEvent)\n {\n this._notificationsChange.next();\n }\n\n // clear timeout\n if(this._options.timeout > 0)\n {\n clearTimeout(this._notificationsTimeouts[index]);\n this._notificationsTimeouts.splice(index, 1);\n }\n\n return this;\n }\n}\n\n/**\n * Default notifications provider\n */\nconst DEFAULT_NOTIFICATIONS: NotificationsProvider =\n{\n provide: NOTIFICATIONS,\n useClass: DefaultNotificationsService\n};\n\n//TODO: add options to notifications factory\n\n/**\n * Factory that creates notifications provider for scope\n */\nconst notificationsFactory = (scopeName: string, token?: Function | Type<any> | InjectionToken<unknown>) =>\n{\n return <NotificationsScopeProvider> [\n {\n provide: NOTIFICATIONS_SCOPE,\n useValue: scopeName\n },\n {\n provide: token ?? NOTIFICATIONS,\n useFactory: (notifications: Notifications) =>\n {\n return notifications.getScope(scopeName);\n },\n deps: [[new SkipSelf(), NOTIFICATIONS]]\n }\n ];\n};\n\nObject.defineProperty(DEFAULT_NOTIFICATIONS, 'scope', \n{\n get()\n {\n const func: NotificationsScopeProviderFactory = (scopeName: string, token?: Function | Type<any> | InjectionToken<unknown>) =>\n {\n return notificationsFactory(scopeName, token);\n };\n\n Object.defineProperty(func, 'random', \n {\n get()\n {\n return notificationsFactory(generateId(6));\n }\n });\n\n return func;\n }\n});\n\nexport {DEFAULT_NOTIFICATIONS};"]}
@@ -1,4 +0,0 @@
1
- export * from './notifications.interface';
2
- export * from './notificationsOptions';
3
- export * from './defaultNotifications.service';
4
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/services/notifications/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,gCAAgC,CAAC","sourcesContent":["export * from './notifications.interface';\nexport * from './notificationsOptions';\nexport * from './defaultNotifications.service';"]}
@@ -1,55 +0,0 @@
1
- //TODO: allow changing and merging options
2
- /**
3
- * Severity of notification message
4
- */
5
- export var NotificationSeverity;
6
- (function (NotificationSeverity) {
7
- /**
8
- * Default severity of message, no special meaning
9
- */
10
- NotificationSeverity[NotificationSeverity["Default"] = 0] = "Default";
11
- /**
12
- * Information severity of message
13
- */
14
- NotificationSeverity[NotificationSeverity["Info"] = 1] = "Info";
15
- /**
16
- * Success severity of message
17
- */
18
- NotificationSeverity[NotificationSeverity["Success"] = 2] = "Success";
19
- /**
20
- * Warning severity of message
21
- */
22
- NotificationSeverity[NotificationSeverity["Warning"] = 3] = "Warning";
23
- /**
24
- * Error severity of message
25
- */
26
- NotificationSeverity[NotificationSeverity["Error"] = 4] = "Error";
27
- })(NotificationSeverity || (NotificationSeverity = {}));
28
- /**
29
- * Instance of notification that is being displayed
30
- */
31
- export class Notification {
32
- //######################### constructor #########################
33
- /**
34
- * Creates instance of `Notification`
35
- * @param _message - Message that this notification represents
36
- * @param _severity - Severity of notification message
37
- */
38
- constructor(_message, _severity) {
39
- this._message = _message;
40
- this._severity = _severity;
41
- }
42
- /**
43
- * Gets message that this notification represents
44
- */
45
- get message() {
46
- return this._message;
47
- }
48
- /**
49
- * Gets severity of notification message
50
- */
51
- get severity() {
52
- return this._severity;
53
- }
54
- }
55
- //# sourceMappingURL=notifications.interface.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"notifications.interface.js","sourceRoot":"","sources":["../../../../src/services/notifications/notifications.interface.ts"],"names":[],"mappings":"AAGA,0CAA0C;AAE1C;;GAEG;AACH,MAAM,CAAN,IAAY,oBA0BX;AA1BD,WAAY,oBAAoB;IAE5B;;OAEG;IACH,qEAAO,CAAA;IAEP;;OAEG;IACH,+DAAI,CAAA;IAEJ;;OAEG;IACH,qEAAO,CAAA;IAEP;;OAEG;IACH,qEAAO,CAAA;IAEP;;OAEG;IACH,iEAAK,CAAA;AACT,CAAC,EA1BW,oBAAoB,KAApB,oBAAoB,QA0B/B;AAED;;GAEG;AACH,MAAM,OAAO,YAAY;IAkBrB,iEAAiE;IAEjE;;;;OAIG;IACH,YAAoB,QAAgB,EAChB,SAA+B;QAD/B,aAAQ,GAAR,QAAQ,CAAQ;QAChB,cAAS,GAAT,SAAS,CAAsB;IAEnD,CAAC;IA1BD;;OAEG;IACH,IAAW,OAAO;QAEd,OAAO,IAAI,CAAC,QAAQ,CAAC;IACzB,CAAC;IAED;;OAEG;IACH,IAAW,QAAQ;QAEf,OAAO,IAAI,CAAC,SAAS,CAAC;IAC1B,CAAC;CAaJ","sourcesContent":["import {ClassProvider, FactoryProvider, InjectionToken, Type, ValueProvider} from '@angular/core';\nimport {Observable} from 'rxjs';\n\n//TODO: allow changing and merging options\n\n/**\n * Severity of notification message\n */\nexport enum NotificationSeverity\n{\n /**\n * Default severity of message, no special meaning\n */\n Default,\n\n /**\n * Information severity of message\n */\n Info,\n\n /**\n * Success severity of message\n */\n Success,\n\n /**\n * Warning severity of message\n */\n Warning,\n\n /**\n * Error severity of message\n */\n Error\n}\n\n/**\n * Instance of notification that is being displayed\n */\nexport class Notification\n{\n /**\n * Gets message that this notification represents\n */\n public get message(): string\n {\n return this._message;\n }\n\n /**\n * Gets severity of notification message\n */\n public get severity(): NotificationSeverity\n {\n return this._severity;\n }\n\n //######################### constructor #########################\n \n /**\n * Creates instance of `Notification`\n * @param _message - Message that this notification represents\n * @param _severity - Severity of notification message\n */\n constructor(private _message: string,\n private _severity: NotificationSeverity)\n {\n }\n}\n\n/**\n * Manages currently displayed notifications\n */\nexport interface Notifications\n{\n //######################### properties #########################\n\n /**\n * Gets array of notifications\n */\n readonly notifications: readonly Notification[];\n\n /**\n * Gets observable that emits changes of current notifications\n */\n readonly notificationsChange: Observable<void>;\n\n /**\n * Gets observable that emits event when instance is being destroyed\n */\n readonly destroy: Observable<void>;\n\n //######################### methods #########################\n \n /**\n * Displays message with specified severity\n * @param message - Message to be displayed\n * @param severity - Severity of displayed notification\n */\n message(message: string, severity: NotificationSeverity): Notifications;\n\n /**\n * Displays default notification\n * @param message - Message to be displayed\n */\n default(message: string): Notifications;\n\n /**\n * Displays success notification\n * @param message - Message to be displayed\n */\n success(message: string): Notifications;\n \n /**\n * Displays error notification\n * @param message - Message to be displayed\n */\n error(message: string): Notifications;\n \n /**\n * Displays info notification\n * @param message - Message to be displayed\n */\n info(message: string): Notifications;\n \n /**\n * Displays warning notification\n * @param message - Message to be displayed\n */\n warning(message: string): Notifications;\n\n /**\n * Clears all displayed notifications\n */\n clearNotifications(): Notifications;\n\n /**\n * Removes notification\n * @param notification - Notification to be removed\n */\n remove(notification: Notification): Notifications;\n\n /**\n * Gets scoped instance of `Notifications`\n * @param scopeName - Name of scope to be returned\n */\n getScope(scopeName: string): Notifications;\n\n /**\n * Destroys service and clears all used resources\n */\n ngOnDestroy(): void;\n}\n\n/**\n * Tuple that will hold notification provider and notifications scope provider\n */\nexport type NotificationsScopeProvider = [ValueProvider, FactoryProvider];\n\n/**\n * Factory for creating `NotificationsScopeProvider`\n */\nexport interface NotificationsScopeProviderFactory\n{\n /**\n * Creates `NotificationsScopeProvider` with specified `scopeName`\n * @param scopeName - Name of scope to be created\n * @param token - Custom token that can be used for injecting Notifications under custom provider\n */\n (scopeName: string, token?: Function | Type<any> | InjectionToken<unknown>): NotificationsScopeProvider;\n\n /**\n * Creates `NotificationsScopeProvider` with random scope name\n */\n random?: NotificationsScopeProvider;\n}\n\n/**\n * Notifications provider that allows to create scoped notifications provider\n */\nexport interface NotificationsProvider extends ClassProvider\n{\n /**\n * Gets scoped providers\n */\n scope?: NotificationsScopeProviderFactory;\n}"]}
@@ -1,18 +0,0 @@
1
- import { isPresent } from '@jscrpt/common';
2
- /**
3
- * Configuration object that is used by `Notifications` default implementation
4
- */
5
- export class NotificationsOptions {
6
- //######################### constructor #########################
7
- constructor(timeout) {
8
- //######################### public properties #########################
9
- /**
10
- * Timeout in ms, after which will be notification closed, if set to 0, message will stay permanently until closed by user
11
- */
12
- this.timeout = 10000;
13
- if (isPresent(timeout)) {
14
- this.timeout = timeout;
15
- }
16
- }
17
- }
18
- //# sourceMappingURL=notificationsOptions.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"notificationsOptions.js","sourceRoot":"","sources":["../../../../src/services/notifications/notificationsOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,gBAAgB,CAAC;AAEzC;;GAEG;AACH,MAAM,OAAO,oBAAoB;IAS7B,iEAAiE;IACjE,YAAY,OAAgB;QAR5B,uEAAuE;QAEvE;;WAEG;QACI,YAAO,GAAW,KAAK,CAAC;QAK3B,IAAG,SAAS,CAAC,OAAO,CAAC,EACrB;YACI,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;SAC1B;IACL,CAAC;CACJ","sourcesContent":["import {isPresent} from '@jscrpt/common';\n\n/**\n * Configuration object that is used by `Notifications` default implementation\n */\nexport class NotificationsOptions\n{\n //######################### public properties #########################\n \n /**\n * Timeout in ms, after which will be notification closed, if set to 0, message will stay permanently until closed by user\n */\n public timeout: number = 10000;\n \n //######################### constructor #########################\n constructor(timeout?: number)\n {\n if(isPresent(timeout))\n {\n this.timeout = timeout;\n }\n }\n}"]}
@@ -1,43 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import { CookieService } from '../cookies/cookies.service';
3
- import * as i0 from "@angular/core";
4
- import * as i1 from "../cookies/cookies.service";
5
- /**
6
- * Implementation of permanent storage using cookies
7
- */
8
- export class CookiePermanentStorageService {
9
- //######################### constructor #########################
10
- constructor(_cookies) {
11
- this._cookies = _cookies;
12
- }
13
- //######################### public methods - implementation of StringLocalization #########################
14
- /**
15
- * Gets value that was stored with 'name' from permanent storage
16
- * @param name - Name with which was value stored
17
- */
18
- get(name) {
19
- return this._cookies.getCookie(name);
20
- }
21
- /**
22
- * Sets value that will be stored with 'name' in permanent storage until expiration date
23
- * @param name - Name with which will be value stored
24
- * @param value - Value to be stored
25
- * @param expires - Time when value should expire
26
- */
27
- set(name, value, expires) {
28
- this._cookies.setCookie(name, value, expires ? expires.valueOf() : null, '/');
29
- }
30
- /**
31
- * Removes value stored with 'name' from permanent storage
32
- * @param name - Name of stored value that will be removed
33
- */
34
- remove(name) {
35
- this._cookies.deleteCookie(name, '/');
36
- }
37
- }
38
- CookiePermanentStorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: CookiePermanentStorageService, deps: [{ token: i1.CookieService }], target: i0.ɵɵFactoryTarget.Injectable });
39
- CookiePermanentStorageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: CookiePermanentStorageService });
40
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: CookiePermanentStorageService, decorators: [{
41
- type: Injectable
42
- }], ctorParameters: function () { return [{ type: i1.CookieService }]; } });
43
- //# sourceMappingURL=cookiePermanentStorage.service.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"cookiePermanentStorage.service.js","sourceRoot":"","sources":["../../../../src/services/permanentStorage/cookiePermanentStorage.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAC,MAAM,eAAe,CAAC;AAGzC,OAAO,EAAC,aAAa,EAAC,MAAM,4BAA4B,CAAC;;;AAEzD;;GAEG;AAEH,MAAM,OAAO,6BAA6B;IAEtC,iEAAiE;IACjE,YAAoB,QAAuB;QAAvB,aAAQ,GAAR,QAAQ,CAAe;IAE3C,CAAC;IAED,2GAA2G;IAE3G;;;OAGG;IACI,GAAG,CAAU,IAAY;QAE5B,OAAO,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;IAiBD;;;;;OAKG;IACI,GAAG,CAAC,IAAY,EAAE,KAAU,EAAE,OAAc;QAE/C,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAClF,CAAC;IAED;;;OAGG;IACI,MAAM,CAAC,IAAY;QAEtB,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAC1C,CAAC;;0HAnDQ,6BAA6B;8HAA7B,6BAA6B;2FAA7B,6BAA6B;kBADzC,UAAU","sourcesContent":["import {Injectable} from '@angular/core';\n\nimport {PermanentStorage} from './permanentStorage.interface';\nimport {CookieService} from '../cookies/cookies.service';\n\n/**\n * Implementation of permanent storage using cookies\n */\n@Injectable()\nexport class CookiePermanentStorageService implements PermanentStorage\n{\n //######################### constructor #########################\n constructor(private _cookies: CookieService)\n {\n }\n\n //######################### public methods - implementation of StringLocalization #########################\n\n /**\n * Gets value that was stored with 'name' from permanent storage\n * @param name - Name with which was value stored\n */\n public get<TResult>(name: string): TResult\n {\n return this._cookies.getCookie(name);\n }\n\n /**\n * Sets value that will be stored with 'name'e in permanent storage\n * @param name - Name with which will be value stored\n * @param value - Value to be stored\n */\n public set(name: string, value: any): void;\n\n /**\n * Sets value that will be stored with 'name' in permanent storage until expiration date\n * @param name - Name with which will be value stored\n * @param value - Value to be stored\n * @param expires - Time when value should expire\n */\n public set(name: string, value: any, expires: Date): void;\n\n /**\n * Sets value that will be stored with 'name' in permanent storage until expiration date\n * @param name - Name with which will be value stored\n * @param value - Value to be stored\n * @param expires - Time when value should expire\n */\n public set(name: string, value: any, expires?: Date): void\n {\n this._cookies.setCookie(name, value, expires ? expires.valueOf() : null, '/');\n }\n\n /**\n * Removes value stored with 'name' from permanent storage\n * @param name - Name of stored value that will be removed\n */\n public remove(name: string): void\n {\n this._cookies.deleteCookie(name, '/');\n }\n}"]}
@@ -1,3 +0,0 @@
1
- export * from './cookiePermanentStorage.service';
2
- export * from './permanentStorage.interface';
3
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/services/permanentStorage/index.ts"],"names":[],"mappings":"AAAA,cAAc,kCAAkC,CAAC;AACjD,cAAc,8BAA8B,CAAC","sourcesContent":["export * from './cookiePermanentStorage.service';\nexport * from './permanentStorage.interface';"]}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=permanentStorage.interface.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"permanentStorage.interface.js","sourceRoot":"","sources":["../../../../src/services/permanentStorage/permanentStorage.interface.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * Provides api for implementing permanent storage\n */\nexport interface PermanentStorage\n{\n /**\n * Gets value that was stored with 'name' from permanent storage\n * @param name - Name with which was value stored\n */\n get<TResult>(name: string): TResult;\n\n /**\n * Sets value that will be stored with 'name'e in permanent storage\n * @param name - Name with which will be value stored\n * @param value - Value to be stored\n */\n set(name: string, value: any): void;\n\n /**\n * Sets value that will be stored with 'name' in permanent storage until expiration date\n * @param name - Name with which will be value stored\n * @param value - Value to be stored\n * @param expires - Time when value should expire\n */\n set(name: string, value: any, expires: Date): void;\n\n /**\n * Removes value stored with 'name' from permanent storage\n * @param name - Name of stored value that will be removed\n */\n remove(name: string): void;\n}"]}