@anglr/common 10.0.0-beta.20220215124944 → 10.0.0-beta.20220215130133

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/changelog.md +78 -11
  2. package/common.d.ts +1396 -4
  3. package/common.internal.d.ts +1438 -0
  4. package/date-fns/common-date-fns.d.ts +8 -0
  5. package/date-fns/common-date-fns.internal.d.ts +8 -0
  6. package/date-fns/package.json +7 -6
  7. package/date-fns/src/index.d.ts +2 -0
  8. package/date-fns/src/index.d.ts.map +1 -0
  9. package/date-fns/src/misc/utils.d.ts +6 -6
  10. package/date-fns/temp/common-date-fns.api.md +12 -0
  11. package/es2015/date-fns/src/index.js +2 -0
  12. package/es2015/date-fns/src/index.js.map +1 -0
  13. package/es2015/date-fns/src/misc/utils.js +24 -0
  14. package/es2015/date-fns/src/misc/utils.js.map +1 -0
  15. package/es2015/forms/src/directives/groupHasError/groupHasError.directive.js +72 -0
  16. package/es2015/forms/src/directives/groupHasError/groupHasError.directive.js.map +1 -0
  17. package/es2015/forms/src/directives/hasError/hasError.directive.js +164 -0
  18. package/es2015/forms/src/directives/hasError/hasError.directive.js.map +1 -0
  19. package/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +64 -0
  20. package/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js.map +1 -0
  21. package/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js +64 -0
  22. package/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js.map +1 -0
  23. package/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +74 -0
  24. package/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js.map +1 -0
  25. package/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js +36 -0
  26. package/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js.map +1 -0
  27. package/es2015/forms/src/directives/requiredClass/requiredClass.directive.js +56 -0
  28. package/es2015/forms/src/directives/requiredClass/requiredClass.directive.js.map +1 -0
  29. package/es2015/forms/src/index.js +20 -0
  30. package/es2015/forms/src/index.js.map +1 -0
  31. package/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +11 -0
  32. package/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js.map +1 -0
  33. package/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js +11 -0
  34. package/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js.map +1 -0
  35. package/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js +10 -0
  36. package/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js.map +1 -0
  37. package/es2015/forms/src/misc/formModel/decorators/email.decorator.js +11 -0
  38. package/es2015/forms/src/misc/formModel/decorators/email.decorator.js.map +1 -0
  39. package/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +11 -0
  40. package/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js.map +1 -0
  41. package/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +22 -0
  42. package/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js.map +1 -0
  43. package/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +11 -0
  44. package/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js.map +1 -0
  45. package/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +22 -0
  46. package/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js.map +1 -0
  47. package/es2015/forms/src/misc/formModel/decorators/index.js +20 -0
  48. package/es2015/forms/src/misc/formModel/decorators/index.js.map +1 -0
  49. package/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +42 -0
  50. package/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js.map +1 -0
  51. package/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js +12 -0
  52. package/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js.map +1 -0
  53. package/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js +12 -0
  54. package/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js.map +1 -0
  55. package/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js +12 -0
  56. package/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js.map +1 -0
  57. package/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js +12 -0
  58. package/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js.map +1 -0
  59. package/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +38 -0
  60. package/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js.map +1 -0
  61. package/es2015/forms/src/misc/formModel/decorators/number.decorator.js +11 -0
  62. package/es2015/forms/src/misc/formModel/decorators/number.decorator.js.map +1 -0
  63. package/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js +11 -0
  64. package/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js.map +1 -0
  65. package/es2015/forms/src/misc/formModel/decorators/required.decorator.js +11 -0
  66. package/es2015/forms/src/misc/formModel/decorators/required.decorator.js.map +1 -0
  67. package/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js +24 -0
  68. package/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js.map +1 -0
  69. package/es2015/forms/src/misc/formModel/decorators/validator.decorator.js +11 -0
  70. package/es2015/forms/src/misc/formModel/decorators/validator.decorator.js.map +1 -0
  71. package/es2015/forms/src/misc/formModel/index.js +8 -0
  72. package/es2015/forms/src/misc/formModel/index.js.map +1 -0
  73. package/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +2 -0
  74. package/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js.map +1 -0
  75. package/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +2 -0
  76. package/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js.map +1 -0
  77. package/es2015/forms/src/misc/formModel/interfaces/validator.interface.js +2 -0
  78. package/es2015/forms/src/misc/formModel/interfaces/validator.interface.js.map +1 -0
  79. package/es2015/forms/src/misc/formModel/misc/currentValue.js +29 -0
  80. package/es2015/forms/src/misc/formModel/misc/currentValue.js.map +1 -0
  81. package/es2015/forms/src/misc/formModel/misc/defaults.js +13 -0
  82. package/es2015/forms/src/misc/formModel/misc/defaults.js.map +1 -0
  83. package/es2015/forms/src/misc/formModel/misc/utils.js +89 -0
  84. package/es2015/forms/src/misc/formModel/misc/utils.js.map +1 -0
  85. package/es2015/forms/src/misc/formModel/misc/validatorFactories.js +41 -0
  86. package/es2015/forms/src/misc/formModel/misc/validatorFactories.js.map +1 -0
  87. package/es2015/forms/src/misc/types.js +6 -0
  88. package/es2015/forms/src/misc/types.js.map +1 -0
  89. package/es2015/forms/src/misc/utils.js +103 -0
  90. package/es2015/forms/src/misc/utils.js.map +1 -0
  91. package/es2015/forms/src/misc/validators.js +49 -0
  92. package/es2015/forms/src/misc/validators.js.map +1 -0
  93. package/es2015/forms/src/modules/hasError.module.js +28 -0
  94. package/es2015/forms/src/modules/hasError.module.js.map +1 -0
  95. package/es2015/forms/src/modules/numberInput.module.js +38 -0
  96. package/es2015/forms/src/modules/numberInput.module.js.map +1 -0
  97. package/es2015/forms/src/modules/requiredClass.module.js +19 -0
  98. package/es2015/forms/src/modules/requiredClass.module.js.map +1 -0
  99. package/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +2 -0
  100. package/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js.map +1 -0
  101. package/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +72 -0
  102. package/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js.map +1 -0
  103. package/es2015/forms/src/services/submitted/submitted.service.js +49 -0
  104. package/es2015/forms/src/services/submitted/submitted.service.js.map +1 -0
  105. package/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +2 -0
  106. package/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js.map +1 -0
  107. package/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +229 -0
  108. package/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js.map +1 -0
  109. package/es2015/hmr/src/index.js +35 -0
  110. package/es2015/hmr/src/index.js.map +1 -0
  111. package/es2015/hotkeys/src/index.js +2 -0
  112. package/es2015/hotkeys/src/index.js.map +1 -0
  113. package/es2015/hotkeys/src/services/appHotkeys.service.js +132 -0
  114. package/es2015/hotkeys/src/services/appHotkeys.service.js.map +1 -0
  115. package/es2015/material/src/components/confirmationDialog/confirmationDialog.component.js +50 -0
  116. package/es2015/material/src/components/confirmationDialog/confirmationDialog.component.js.map +1 -0
  117. package/es2015/material/src/components/titledDialog/titledDialog.component.js +39 -0
  118. package/es2015/material/src/components/titledDialog/titledDialog.component.js.map +1 -0
  119. package/es2015/material/src/directives/confirmationDialog/confirmationDialog.directive.js +107 -0
  120. package/es2015/material/src/directives/confirmationDialog/confirmationDialog.directive.js.map +1 -0
  121. package/es2015/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +47 -0
  122. package/es2015/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js.map +1 -0
  123. package/es2015/material/src/index.js +10 -0
  124. package/es2015/material/src/index.js.map +1 -0
  125. package/es2015/material/src/misc/interfaces/confirmationDialog.interface.js +2 -0
  126. package/es2015/material/src/misc/interfaces/confirmationDialog.interface.js.map +1 -0
  127. package/es2015/material/src/misc/interfaces/titledDialog.interface.js +6 -0
  128. package/es2015/material/src/misc/interfaces/titledDialog.interface.js.map +1 -0
  129. package/es2015/material/src/misc/tokens.js +6 -0
  130. package/es2015/material/src/misc/tokens.js.map +1 -0
  131. package/es2015/material/src/modules/confirmationDialog.module.js +40 -0
  132. package/es2015/material/src/modules/confirmationDialog.module.js.map +1 -0
  133. package/es2015/material/src/modules/debugDataCopyClick.module.js +27 -0
  134. package/es2015/material/src/modules/debugDataCopyClick.module.js.map +1 -0
  135. package/es2015/material/src/modules/titledDialog.module.js +36 -0
  136. package/es2015/material/src/modules/titledDialog.module.js.map +1 -0
  137. package/es2015/material/src/services/titledDialog/titledDialog.service.js +39 -0
  138. package/es2015/material/src/services/titledDialog/titledDialog.service.js.map +1 -0
  139. package/es2015/moment/src/index.js +3 -0
  140. package/es2015/moment/src/index.js.map +1 -0
  141. package/es2015/moment/src/misc/utils.js +27 -0
  142. package/es2015/moment/src/misc/utils.js.map +1 -0
  143. package/es2015/moment/src/modules/moment.module.js +28 -0
  144. package/es2015/moment/src/modules/moment.module.js.map +1 -0
  145. package/es2015/moment/src/pipes/momentConvert/momentConvert.pipe.js +32 -0
  146. package/es2015/moment/src/pipes/momentConvert/momentConvert.pipe.js.map +1 -0
  147. package/es2015/moment/src/pipes/momentFormat/momentFormat.pipe.js +36 -0
  148. package/es2015/moment/src/pipes/momentFormat/momentFormat.pipe.js.map +1 -0
  149. package/es2015/numeral/src/index.js +3 -0
  150. package/es2015/numeral/src/index.js.map +1 -0
  151. package/es2015/numeral/src/modules/numeral.module.js +19 -0
  152. package/es2015/numeral/src/modules/numeral.module.js.map +1 -0
  153. package/es2015/numeral/src/pipes/numeral.pipe.js +50 -0
  154. package/es2015/numeral/src/pipes/numeral.pipe.js.map +1 -0
  155. package/es2015/positions/src/index.js +9 -0
  156. package/es2015/positions/src/index.js.map +1 -0
  157. package/es2015/positions/src/misc/utils.js +109 -0
  158. package/es2015/positions/src/misc/utils.js.map +1 -0
  159. package/es2015/positions/src/modules/positions/directives/positionTo/positionTo.directive.js +58 -0
  160. package/es2015/positions/src/modules/positions/directives/positionTo/positionTo.directive.js.map +1 -0
  161. package/es2015/positions/src/modules/positions/modules/positions.module.js +24 -0
  162. package/es2015/positions/src/modules/positions/modules/positions.module.js.map +1 -0
  163. package/es2015/positions/src/modules/tooltip/components/tooltip/tooltip.component.js +98 -0
  164. package/es2015/positions/src/modules/tooltip/components/tooltip/tooltip.component.js.map +1 -0
  165. package/es2015/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js +230 -0
  166. package/es2015/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js.map +1 -0
  167. package/es2015/positions/src/modules/tooltip/misc/tokens.js +6 -0
  168. package/es2015/positions/src/modules/tooltip/misc/tokens.js.map +1 -0
  169. package/es2015/positions/src/modules/tooltip/misc/tooltip.interface.js +2 -0
  170. package/es2015/positions/src/modules/tooltip/misc/tooltip.interface.js.map +1 -0
  171. package/es2015/positions/src/modules/tooltip/modules/tooltip.module.js +32 -0
  172. package/es2015/positions/src/modules/tooltip/modules/tooltip.module.js.map +1 -0
  173. package/es2015/positions/src/types/positions.typings.js +2 -0
  174. package/es2015/positions/src/types/positions.typings.js.map +1 -0
  175. package/es2015/router/src/decorators/componentRedirectRoute.decorator.js +43 -0
  176. package/es2015/router/src/decorators/componentRedirectRoute.decorator.js.map +1 -0
  177. package/es2015/router/src/decorators/componentRoute.decorator.js +23 -0
  178. package/es2015/router/src/decorators/componentRoute.decorator.js.map +1 -0
  179. package/es2015/router/src/decorators/moduleRoutes.decorator.js +42 -0
  180. package/es2015/router/src/decorators/moduleRoutes.decorator.js.map +1 -0
  181. package/es2015/router/src/index.js +7 -0
  182. package/es2015/router/src/index.js.map +1 -0
  183. package/es2015/router/src/misc/utils.js +26 -0
  184. package/es2015/router/src/misc/utils.js.map +1 -0
  185. package/es2015/router/src/services/routing/dataRouter.js +89 -0
  186. package/es2015/router/src/services/routing/dataRouter.js.map +1 -0
  187. package/es2015/router/src/services/routing/dataRouterData.js +20 -0
  188. package/es2015/router/src/services/routing/dataRouterData.js.map +1 -0
  189. package/es2015/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js +62 -0
  190. package/es2015/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js.map +1 -0
  191. package/es2015/src/index.js +34 -0
  192. package/es2015/src/index.js.map +1 -0
  193. package/es2015/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js +67 -0
  194. package/es2015/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js.map +1 -0
  195. package/es2015/src/modules/clickOutside/modules/clickOutside.module.js +24 -0
  196. package/es2015/src/modules/clickOutside/modules/clickOutside.module.js.map +1 -0
  197. package/es2015/src/modules/commonDynamic.module.js +23 -0
  198. package/es2015/src/modules/commonDynamic.module.js.map +1 -0
  199. package/es2015/src/modules/commonLocalize.js +23 -0
  200. package/es2015/src/modules/commonLocalize.js.map +1 -0
  201. package/es2015/src/modules/commonUtils.module.js +35 -0
  202. package/es2015/src/modules/commonUtils.module.js.map +1 -0
  203. package/es2015/src/modules/debugData/components/debugData/debugData.component.js +68 -0
  204. package/es2015/src/modules/debugData/components/debugData/debugData.component.js.map +1 -0
  205. package/es2015/src/modules/debugData/modules/debugData.module.js +29 -0
  206. package/es2015/src/modules/debugData/modules/debugData.module.js.map +1 -0
  207. package/es2015/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +51 -0
  208. package/es2015/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js.map +1 -0
  209. package/es2015/src/modules/goBack/directives/goBack/goBack.directive.js +35 -0
  210. package/es2015/src/modules/goBack/directives/goBack/goBack.directive.js.map +1 -0
  211. package/es2015/src/modules/goBack/directives/index.js +2 -0
  212. package/es2015/src/modules/goBack/directives/index.js.map +1 -0
  213. package/es2015/src/modules/goBack/index.js +3 -0
  214. package/es2015/src/modules/goBack/index.js.map +1 -0
  215. package/es2015/src/modules/goBack/modules/goBack.module.js +23 -0
  216. package/es2015/src/modules/goBack/modules/goBack.module.js.map +1 -0
  217. package/es2015/src/modules/goBack/modules/index.js +2 -0
  218. package/es2015/src/modules/goBack/modules/index.js.map +1 -0
  219. package/es2015/src/modules/multiButton/components/multiButton/multiButton.component.js +119 -0
  220. package/es2015/src/modules/multiButton/components/multiButton/multiButton.component.js.map +1 -0
  221. package/es2015/src/modules/multiButton/components/multiButton/multiButton.interface.js +2 -0
  222. package/es2015/src/modules/multiButton/components/multiButton/multiButton.interface.js.map +1 -0
  223. package/es2015/src/modules/multiButton/misc/tokens.js +6 -0
  224. package/es2015/src/modules/multiButton/misc/tokens.js.map +1 -0
  225. package/es2015/src/modules/multiButton/modules/multiButton.module.js +29 -0
  226. package/es2015/src/modules/multiButton/modules/multiButton.module.js.map +1 -0
  227. package/es2015/src/modules/progressIndicator/components/index.js +2 -0
  228. package/es2015/src/modules/progressIndicator/components/index.js.map +1 -0
  229. package/es2015/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js +66 -0
  230. package/es2015/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js.map +1 -0
  231. package/es2015/src/modules/progressIndicator/directives/index.js +2 -0
  232. package/es2015/src/modules/progressIndicator/directives/index.js.map +1 -0
  233. package/es2015/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js +124 -0
  234. package/es2015/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js.map +1 -0
  235. package/es2015/src/modules/progressIndicator/index.js +6 -0
  236. package/es2015/src/modules/progressIndicator/index.js.map +1 -0
  237. package/es2015/src/modules/progressIndicator/interceptors/progressInterceptor.js +54 -0
  238. package/es2015/src/modules/progressIndicator/interceptors/progressInterceptor.js.map +1 -0
  239. package/es2015/src/modules/progressIndicator/misc/tokens.js +6 -0
  240. package/es2015/src/modules/progressIndicator/misc/tokens.js.map +1 -0
  241. package/es2015/src/modules/progressIndicator/modules/index.js +2 -0
  242. package/es2015/src/modules/progressIndicator/modules/index.js.map +1 -0
  243. package/es2015/src/modules/progressIndicator/modules/progressIndicator.module.js +38 -0
  244. package/es2015/src/modules/progressIndicator/modules/progressIndicator.module.js.map +1 -0
  245. package/es2015/src/modules/progressIndicator/services/progressIndicator.service.js +255 -0
  246. package/es2015/src/modules/progressIndicator/services/progressIndicator.service.js.map +1 -0
  247. package/es2015/src/modules/progressIndicator/services/progressIndicatorOptions.js +25 -0
  248. package/es2015/src/modules/progressIndicator/services/progressIndicatorOptions.js.map +1 -0
  249. package/es2015/src/pipes/index.js +6 -0
  250. package/es2015/src/pipes/index.js.map +1 -0
  251. package/es2015/src/pipes/isNaN/isNaN.pipe.js +24 -0
  252. package/es2015/src/pipes/isNaN/isNaN.pipe.js.map +1 -0
  253. package/es2015/src/pipes/isPresent/isPresent.pipe.js +25 -0
  254. package/es2015/src/pipes/isPresent/isPresent.pipe.js.map +1 -0
  255. package/es2015/src/pipes/localize/localize.pipe.js +54 -0
  256. package/es2015/src/pipes/localize/localize.pipe.js.map +1 -0
  257. package/es2015/src/pipes/mergeCssClasses/mergeCssClasses.pipe.js +43 -0
  258. package/es2015/src/pipes/mergeCssClasses/mergeCssClasses.pipe.js.map +1 -0
  259. package/es2015/src/pipes/urlEncode/urlEncode.pipe.js +26 -0
  260. package/es2015/src/pipes/urlEncode/urlEncode.pipe.js.map +1 -0
  261. package/es2015/src/services/alignment/alignment.interface.js +2 -0
  262. package/es2015/src/services/alignment/alignment.interface.js.map +1 -0
  263. package/es2015/src/services/alignment/index.js +2 -0
  264. package/es2015/src/services/alignment/index.js.map +1 -0
  265. package/es2015/src/services/cookies/cookies.service.js +106 -0
  266. package/es2015/src/services/cookies/cookies.service.js.map +1 -0
  267. package/es2015/src/services/globalization/globalization.service.js +6 -0
  268. package/es2015/src/services/globalization/globalization.service.js.map +1 -0
  269. package/es2015/src/services/logger/index.js +3 -0
  270. package/es2015/src/services/logger/index.js.map +1 -0
  271. package/es2015/src/services/logger/logger.interface.js +2 -0
  272. package/es2015/src/services/logger/logger.interface.js.map +1 -0
  273. package/es2015/src/services/logger/logger.service.js +18 -0
  274. package/es2015/src/services/logger/logger.service.js.map +1 -0
  275. package/es2015/src/services/notifications/defaultNotifications.service.js +228 -0
  276. package/es2015/src/services/notifications/defaultNotifications.service.js.map +1 -0
  277. package/es2015/src/services/notifications/index.js +4 -0
  278. package/es2015/src/services/notifications/index.js.map +1 -0
  279. package/es2015/src/services/notifications/notifications.interface.js +55 -0
  280. package/es2015/src/services/notifications/notifications.interface.js.map +1 -0
  281. package/es2015/src/services/notifications/notificationsOptions.js +18 -0
  282. package/es2015/src/services/notifications/notificationsOptions.js.map +1 -0
  283. package/es2015/src/services/permanentStorage/cookiePermanentStorage.service.js +43 -0
  284. package/es2015/src/services/permanentStorage/cookiePermanentStorage.service.js.map +1 -0
  285. package/es2015/src/services/permanentStorage/index.js +3 -0
  286. package/es2015/src/services/permanentStorage/index.js.map +1 -0
  287. package/es2015/src/services/permanentStorage/permanentStorage.interface.js +2 -0
  288. package/es2015/src/services/permanentStorage/permanentStorage.interface.js.map +1 -0
  289. package/es2015/src/services/statusCode/statusCode.service.js +29 -0
  290. package/es2015/src/services/statusCode/statusCode.service.js.map +1 -0
  291. package/es2015/src/services/stringLocalization/index.js +3 -0
  292. package/es2015/src/services/stringLocalization/index.js.map +1 -0
  293. package/es2015/src/services/stringLocalization/noStringLocalization.service.js +43 -0
  294. package/es2015/src/services/stringLocalization/noStringLocalization.service.js.map +1 -0
  295. package/es2015/src/services/stringLocalization/stringLocalization.interface.js +2 -0
  296. package/es2015/src/services/stringLocalization/stringLocalization.interface.js.map +1 -0
  297. package/es2015/src/services/temporaryStorage/index.js +3 -0
  298. package/es2015/src/services/temporaryStorage/index.js.map +1 -0
  299. package/es2015/src/services/temporaryStorage/memoryTemporaryStorage.service.js +43 -0
  300. package/es2015/src/services/temporaryStorage/memoryTemporaryStorage.service.js.map +1 -0
  301. package/es2015/src/services/temporaryStorage/temporaryStorage.interface.js +2 -0
  302. package/es2015/src/services/temporaryStorage/temporaryStorage.interface.js.map +1 -0
  303. package/es2015/src/types/tokens.js +50 -0
  304. package/es2015/src/types/tokens.js.map +1 -0
  305. package/es2015/src/utils/index.js +51 -0
  306. package/es2015/src/utils/index.js.map +1 -0
  307. package/es2015/store/src/index.js +2 -0
  308. package/es2015/store/src/index.js.map +1 -0
  309. package/es2015/store/src/services/index.js +3 -0
  310. package/es2015/store/src/services/index.js.map +1 -0
  311. package/es2015/store/src/services/permanentStorage/localPermanentStorage.service.js +49 -0
  312. package/es2015/store/src/services/permanentStorage/localPermanentStorage.service.js.map +1 -0
  313. package/es2015/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +37 -0
  314. package/es2015/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js.map +1 -0
  315. package/es2015/store/src/types/store.typings.js +2 -0
  316. package/es2015/store/src/types/store.typings.js.map +1 -0
  317. package/es2015/structured-log/src/components/console/console.component.animations.js +31 -0
  318. package/es2015/structured-log/src/components/console/console.component.animations.js.map +1 -0
  319. package/es2015/structured-log/src/components/console/console.component.js +95 -0
  320. package/es2015/structured-log/src/components/console/console.component.js.map +1 -0
  321. package/es2015/structured-log/src/index.js +12 -0
  322. package/es2015/structured-log/src/index.js.map +1 -0
  323. package/es2015/structured-log/src/misc/utils.js +39 -0
  324. package/es2015/structured-log/src/misc/utils.js.map +1 -0
  325. package/es2015/structured-log/src/modules/consoleLog.module.js +44 -0
  326. package/es2015/structured-log/src/modules/consoleLog.module.js.map +1 -0
  327. package/es2015/structured-log/src/services/console/consoleComponentSink.service.js +96 -0
  328. package/es2015/structured-log/src/services/console/consoleComponentSink.service.js.map +1 -0
  329. package/es2015/structured-log/src/services/console/consoleSinkConfig.service.js +44 -0
  330. package/es2015/structured-log/src/services/console/consoleSinkConfig.service.js.map +1 -0
  331. package/es2015/structured-log/src/services/logger.service.js +44 -0
  332. package/es2015/structured-log/src/services/logger.service.js.map +1 -0
  333. package/es2015/structured-log/src/services/rest/restSink.service.js +118 -0
  334. package/es2015/structured-log/src/services/rest/restSink.service.js.map +1 -0
  335. package/es2015/structured-log/src/services/rest/restSinkConfig.service.js +55 -0
  336. package/es2015/structured-log/src/services/rest/restSinkConfig.service.js.map +1 -0
  337. package/es2015/structured-log/src/types/logger.interface.js +2 -0
  338. package/es2015/structured-log/src/types/logger.interface.js.map +1 -0
  339. package/es2015/structured-log/src/types/structured-log.typings.js +2 -0
  340. package/es2015/structured-log/src/types/structured-log.typings.js.map +1 -0
  341. package/es2015/structured-log/src/types/tokens.js +56 -0
  342. package/es2015/structured-log/src/types/tokens.js.map +1 -0
  343. package/es2020/date-fns/src/index.js +2 -0
  344. package/es2020/date-fns/src/index.js.map +1 -0
  345. package/es2020/date-fns/src/misc/utils.js +24 -0
  346. package/es2020/date-fns/src/misc/utils.js.map +1 -0
  347. package/es2020/forms/src/directives/groupHasError/groupHasError.directive.js +72 -0
  348. package/es2020/forms/src/directives/groupHasError/groupHasError.directive.js.map +1 -0
  349. package/es2020/forms/src/directives/hasError/hasError.directive.js +161 -0
  350. package/es2020/forms/src/directives/hasError/hasError.directive.js.map +1 -0
  351. package/es2020/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +64 -0
  352. package/es2020/forms/src/directives/numberInput/maxValueNumberValidator.directive.js.map +1 -0
  353. package/es2020/forms/src/directives/numberInput/minValueNumberValidator.directive.js +64 -0
  354. package/es2020/forms/src/directives/numberInput/minValueNumberValidator.directive.js.map +1 -0
  355. package/es2020/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +74 -0
  356. package/es2020/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js.map +1 -0
  357. package/es2020/forms/src/directives/numberInput/numberInputValidator.directive.js +36 -0
  358. package/es2020/forms/src/directives/numberInput/numberInputValidator.directive.js.map +1 -0
  359. package/es2020/forms/src/directives/requiredClass/requiredClass.directive.js +56 -0
  360. package/es2020/forms/src/directives/requiredClass/requiredClass.directive.js.map +1 -0
  361. package/es2020/forms/src/index.js +20 -0
  362. package/es2020/forms/src/index.js.map +1 -0
  363. package/es2020/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +11 -0
  364. package/es2020/forms/src/misc/formModel/decorators/asyncValidator.decorator.js.map +1 -0
  365. package/es2020/forms/src/misc/formModel/decorators/controlOptions.decorator.js +11 -0
  366. package/es2020/forms/src/misc/formModel/decorators/controlOptions.decorator.js.map +1 -0
  367. package/es2020/forms/src/misc/formModel/decorators/disabled.decorator.js +10 -0
  368. package/es2020/forms/src/misc/formModel/decorators/disabled.decorator.js.map +1 -0
  369. package/es2020/forms/src/misc/formModel/decorators/email.decorator.js +11 -0
  370. package/es2020/forms/src/misc/formModel/decorators/email.decorator.js.map +1 -0
  371. package/es2020/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +11 -0
  372. package/es2020/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js.map +1 -0
  373. package/es2020/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +22 -0
  374. package/es2020/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js.map +1 -0
  375. package/es2020/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +11 -0
  376. package/es2020/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js.map +1 -0
  377. package/es2020/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +22 -0
  378. package/es2020/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js.map +1 -0
  379. package/es2020/forms/src/misc/formModel/decorators/index.js +20 -0
  380. package/es2020/forms/src/misc/formModel/decorators/index.js.map +1 -0
  381. package/es2020/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +40 -0
  382. package/es2020/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js.map +1 -0
  383. package/es2020/forms/src/misc/formModel/decorators/maxLength.decorator.js +12 -0
  384. package/es2020/forms/src/misc/formModel/decorators/maxLength.decorator.js.map +1 -0
  385. package/es2020/forms/src/misc/formModel/decorators/maxValue.decorator.js +12 -0
  386. package/es2020/forms/src/misc/formModel/decorators/maxValue.decorator.js.map +1 -0
  387. package/es2020/forms/src/misc/formModel/decorators/minLength.decorator.js +12 -0
  388. package/es2020/forms/src/misc/formModel/decorators/minLength.decorator.js.map +1 -0
  389. package/es2020/forms/src/misc/formModel/decorators/minValue.decorator.js +12 -0
  390. package/es2020/forms/src/misc/formModel/decorators/minValue.decorator.js.map +1 -0
  391. package/es2020/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +42 -0
  392. package/es2020/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js.map +1 -0
  393. package/es2020/forms/src/misc/formModel/decorators/number.decorator.js +11 -0
  394. package/es2020/forms/src/misc/formModel/decorators/number.decorator.js.map +1 -0
  395. package/es2020/forms/src/misc/formModel/decorators/pattern.decorator.js +11 -0
  396. package/es2020/forms/src/misc/formModel/decorators/pattern.decorator.js.map +1 -0
  397. package/es2020/forms/src/misc/formModel/decorators/required.decorator.js +11 -0
  398. package/es2020/forms/src/misc/formModel/decorators/required.decorator.js.map +1 -0
  399. package/es2020/forms/src/misc/formModel/decorators/requiredIf.decorator.js +24 -0
  400. package/es2020/forms/src/misc/formModel/decorators/requiredIf.decorator.js.map +1 -0
  401. package/es2020/forms/src/misc/formModel/decorators/validator.decorator.js +11 -0
  402. package/es2020/forms/src/misc/formModel/decorators/validator.decorator.js.map +1 -0
  403. package/es2020/forms/src/misc/formModel/index.js +8 -0
  404. package/es2020/forms/src/misc/formModel/index.js.map +1 -0
  405. package/es2020/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +2 -0
  406. package/es2020/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js.map +1 -0
  407. package/es2020/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +2 -0
  408. package/es2020/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js.map +1 -0
  409. package/es2020/forms/src/misc/formModel/interfaces/validator.interface.js +2 -0
  410. package/es2020/forms/src/misc/formModel/interfaces/validator.interface.js.map +1 -0
  411. package/es2020/forms/src/misc/formModel/misc/currentValue.js +29 -0
  412. package/es2020/forms/src/misc/formModel/misc/currentValue.js.map +1 -0
  413. package/es2020/forms/src/misc/formModel/misc/defaults.js +13 -0
  414. package/es2020/forms/src/misc/formModel/misc/defaults.js.map +1 -0
  415. package/es2020/forms/src/misc/formModel/misc/utils.js +100 -0
  416. package/es2020/forms/src/misc/formModel/misc/utils.js.map +1 -0
  417. package/es2020/forms/src/misc/formModel/misc/validatorFactories.js +41 -0
  418. package/es2020/forms/src/misc/formModel/misc/validatorFactories.js.map +1 -0
  419. package/es2020/forms/src/misc/types.js +6 -0
  420. package/es2020/forms/src/misc/types.js.map +1 -0
  421. package/es2020/forms/src/misc/utils.js +103 -0
  422. package/es2020/forms/src/misc/utils.js.map +1 -0
  423. package/es2020/forms/src/misc/validators.js +49 -0
  424. package/es2020/forms/src/misc/validators.js.map +1 -0
  425. package/es2020/forms/src/modules/hasError.module.js +28 -0
  426. package/es2020/forms/src/modules/hasError.module.js.map +1 -0
  427. package/es2020/forms/src/modules/numberInput.module.js +38 -0
  428. package/es2020/forms/src/modules/numberInput.module.js.map +1 -0
  429. package/es2020/forms/src/modules/requiredClass.module.js +19 -0
  430. package/es2020/forms/src/modules/requiredClass.module.js.map +1 -0
  431. package/es2020/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +2 -0
  432. package/es2020/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js.map +1 -0
  433. package/es2020/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +72 -0
  434. package/es2020/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js.map +1 -0
  435. package/es2020/forms/src/services/submitted/submitted.service.js +49 -0
  436. package/es2020/forms/src/services/submitted/submitted.service.js.map +1 -0
  437. package/es2020/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +2 -0
  438. package/es2020/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js.map +1 -0
  439. package/es2020/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +227 -0
  440. package/es2020/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js.map +1 -0
  441. package/es2020/hmr/src/index.js +35 -0
  442. package/es2020/hmr/src/index.js.map +1 -0
  443. package/es2020/hotkeys/src/index.js +2 -0
  444. package/es2020/hotkeys/src/index.js.map +1 -0
  445. package/es2020/hotkeys/src/services/appHotkeys.service.js +132 -0
  446. package/es2020/hotkeys/src/services/appHotkeys.service.js.map +1 -0
  447. package/es2020/material/src/components/confirmationDialog/confirmationDialog.component.js +50 -0
  448. package/es2020/material/src/components/confirmationDialog/confirmationDialog.component.js.map +1 -0
  449. package/es2020/material/src/components/titledDialog/titledDialog.component.js +38 -0
  450. package/es2020/material/src/components/titledDialog/titledDialog.component.js.map +1 -0
  451. package/es2020/material/src/directives/confirmationDialog/confirmationDialog.directive.js +104 -0
  452. package/es2020/material/src/directives/confirmationDialog/confirmationDialog.directive.js.map +1 -0
  453. package/es2020/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +47 -0
  454. package/es2020/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js.map +1 -0
  455. package/es2020/material/src/index.js +10 -0
  456. package/es2020/material/src/index.js.map +1 -0
  457. package/es2020/material/src/misc/interfaces/confirmationDialog.interface.js +2 -0
  458. package/es2020/material/src/misc/interfaces/confirmationDialog.interface.js.map +1 -0
  459. package/es2020/material/src/misc/interfaces/titledDialog.interface.js +6 -0
  460. package/es2020/material/src/misc/interfaces/titledDialog.interface.js.map +1 -0
  461. package/es2020/material/src/misc/tokens.js +6 -0
  462. package/es2020/material/src/misc/tokens.js.map +1 -0
  463. package/es2020/material/src/modules/confirmationDialog.module.js +40 -0
  464. package/es2020/material/src/modules/confirmationDialog.module.js.map +1 -0
  465. package/es2020/material/src/modules/debugDataCopyClick.module.js +27 -0
  466. package/es2020/material/src/modules/debugDataCopyClick.module.js.map +1 -0
  467. package/es2020/material/src/modules/titledDialog.module.js +36 -0
  468. package/es2020/material/src/modules/titledDialog.module.js.map +1 -0
  469. package/es2020/material/src/services/titledDialog/titledDialog.service.js +39 -0
  470. package/es2020/material/src/services/titledDialog/titledDialog.service.js.map +1 -0
  471. package/es2020/moment/src/index.js +3 -0
  472. package/es2020/moment/src/index.js.map +1 -0
  473. package/es2020/moment/src/misc/utils.js +27 -0
  474. package/es2020/moment/src/misc/utils.js.map +1 -0
  475. package/es2020/moment/src/modules/moment.module.js +28 -0
  476. package/es2020/moment/src/modules/moment.module.js.map +1 -0
  477. package/es2020/moment/src/pipes/momentConvert/momentConvert.pipe.js +32 -0
  478. package/es2020/moment/src/pipes/momentConvert/momentConvert.pipe.js.map +1 -0
  479. package/es2020/moment/src/pipes/momentFormat/momentFormat.pipe.js +36 -0
  480. package/es2020/moment/src/pipes/momentFormat/momentFormat.pipe.js.map +1 -0
  481. package/es2020/numeral/src/index.js +3 -0
  482. package/es2020/numeral/src/index.js.map +1 -0
  483. package/es2020/numeral/src/modules/numeral.module.js +19 -0
  484. package/es2020/numeral/src/modules/numeral.module.js.map +1 -0
  485. package/es2020/numeral/src/pipes/numeral.pipe.js +50 -0
  486. package/es2020/numeral/src/pipes/numeral.pipe.js.map +1 -0
  487. package/es2020/positions/src/index.js +9 -0
  488. package/es2020/positions/src/index.js.map +1 -0
  489. package/es2020/positions/src/misc/utils.js +109 -0
  490. package/es2020/positions/src/misc/utils.js.map +1 -0
  491. package/es2020/positions/src/modules/positions/directives/positionTo/positionTo.directive.js +58 -0
  492. package/es2020/positions/src/modules/positions/directives/positionTo/positionTo.directive.js.map +1 -0
  493. package/es2020/positions/src/modules/positions/modules/positions.module.js +24 -0
  494. package/es2020/positions/src/modules/positions/modules/positions.module.js.map +1 -0
  495. package/es2020/positions/src/modules/tooltip/components/tooltip/tooltip.component.js +98 -0
  496. package/es2020/positions/src/modules/tooltip/components/tooltip/tooltip.component.js.map +1 -0
  497. package/es2020/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js +229 -0
  498. package/es2020/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js.map +1 -0
  499. package/es2020/positions/src/modules/tooltip/misc/tokens.js +6 -0
  500. package/es2020/positions/src/modules/tooltip/misc/tokens.js.map +1 -0
  501. package/es2020/positions/src/modules/tooltip/misc/tooltip.interface.js +2 -0
  502. package/es2020/positions/src/modules/tooltip/misc/tooltip.interface.js.map +1 -0
  503. package/es2020/positions/src/modules/tooltip/modules/tooltip.module.js +32 -0
  504. package/es2020/positions/src/modules/tooltip/modules/tooltip.module.js.map +1 -0
  505. package/es2020/positions/src/types/positions.typings.js +2 -0
  506. package/es2020/positions/src/types/positions.typings.js.map +1 -0
  507. package/es2020/router/src/decorators/componentRedirectRoute.decorator.js +43 -0
  508. package/es2020/router/src/decorators/componentRedirectRoute.decorator.js.map +1 -0
  509. package/es2020/router/src/decorators/componentRoute.decorator.js +23 -0
  510. package/es2020/router/src/decorators/componentRoute.decorator.js.map +1 -0
  511. package/es2020/router/src/decorators/moduleRoutes.decorator.js +42 -0
  512. package/es2020/router/src/decorators/moduleRoutes.decorator.js.map +1 -0
  513. package/es2020/router/src/index.js +7 -0
  514. package/es2020/router/src/index.js.map +1 -0
  515. package/es2020/router/src/misc/utils.js +26 -0
  516. package/es2020/router/src/misc/utils.js.map +1 -0
  517. package/es2020/router/src/services/routing/dataRouter.js +89 -0
  518. package/es2020/router/src/services/routing/dataRouter.js.map +1 -0
  519. package/es2020/router/src/services/routing/dataRouterData.js +20 -0
  520. package/es2020/router/src/services/routing/dataRouterData.js.map +1 -0
  521. package/es2020/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js +62 -0
  522. package/es2020/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js.map +1 -0
  523. package/es2020/src/index.js +34 -0
  524. package/es2020/src/index.js.map +1 -0
  525. package/es2020/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js +67 -0
  526. package/es2020/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js.map +1 -0
  527. package/es2020/src/modules/clickOutside/modules/clickOutside.module.js +24 -0
  528. package/es2020/src/modules/clickOutside/modules/clickOutside.module.js.map +1 -0
  529. package/es2020/src/modules/commonDynamic.module.js +23 -0
  530. package/es2020/src/modules/commonDynamic.module.js.map +1 -0
  531. package/es2020/src/modules/commonLocalize.js +23 -0
  532. package/es2020/src/modules/commonLocalize.js.map +1 -0
  533. package/es2020/src/modules/commonUtils.module.js +35 -0
  534. package/es2020/src/modules/commonUtils.module.js.map +1 -0
  535. package/es2020/src/modules/debugData/components/debugData/debugData.component.js +67 -0
  536. package/es2020/src/modules/debugData/components/debugData/debugData.component.js.map +1 -0
  537. package/es2020/src/modules/debugData/modules/debugData.module.js +29 -0
  538. package/es2020/src/modules/debugData/modules/debugData.module.js.map +1 -0
  539. package/es2020/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +51 -0
  540. package/es2020/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js.map +1 -0
  541. package/es2020/src/modules/goBack/directives/goBack/goBack.directive.js +35 -0
  542. package/es2020/src/modules/goBack/directives/goBack/goBack.directive.js.map +1 -0
  543. package/es2020/src/modules/goBack/directives/index.js +2 -0
  544. package/es2020/src/modules/goBack/directives/index.js.map +1 -0
  545. package/es2020/src/modules/goBack/index.js +3 -0
  546. package/es2020/src/modules/goBack/index.js.map +1 -0
  547. package/es2020/src/modules/goBack/modules/goBack.module.js +23 -0
  548. package/es2020/src/modules/goBack/modules/goBack.module.js.map +1 -0
  549. package/es2020/src/modules/goBack/modules/index.js +2 -0
  550. package/es2020/src/modules/goBack/modules/index.js.map +1 -0
  551. package/es2020/src/modules/multiButton/components/multiButton/multiButton.component.js +119 -0
  552. package/es2020/src/modules/multiButton/components/multiButton/multiButton.component.js.map +1 -0
  553. package/es2020/src/modules/multiButton/components/multiButton/multiButton.interface.js +2 -0
  554. package/es2020/src/modules/multiButton/components/multiButton/multiButton.interface.js.map +1 -0
  555. package/es2020/src/modules/multiButton/misc/tokens.js +6 -0
  556. package/es2020/src/modules/multiButton/misc/tokens.js.map +1 -0
  557. package/es2020/src/modules/multiButton/modules/multiButton.module.js +29 -0
  558. package/es2020/src/modules/multiButton/modules/multiButton.module.js.map +1 -0
  559. package/es2020/src/modules/progressIndicator/components/index.js +2 -0
  560. package/es2020/src/modules/progressIndicator/components/index.js.map +1 -0
  561. package/es2020/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js +66 -0
  562. package/es2020/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js.map +1 -0
  563. package/es2020/src/modules/progressIndicator/directives/index.js +2 -0
  564. package/es2020/src/modules/progressIndicator/directives/index.js.map +1 -0
  565. package/es2020/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js +124 -0
  566. package/es2020/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js.map +1 -0
  567. package/es2020/src/modules/progressIndicator/index.js +6 -0
  568. package/es2020/src/modules/progressIndicator/index.js.map +1 -0
  569. package/es2020/src/modules/progressIndicator/interceptors/progressInterceptor.js +54 -0
  570. package/es2020/src/modules/progressIndicator/interceptors/progressInterceptor.js.map +1 -0
  571. package/es2020/src/modules/progressIndicator/misc/tokens.js +6 -0
  572. package/es2020/src/modules/progressIndicator/misc/tokens.js.map +1 -0
  573. package/es2020/src/modules/progressIndicator/modules/index.js +2 -0
  574. package/es2020/src/modules/progressIndicator/modules/index.js.map +1 -0
  575. package/es2020/src/modules/progressIndicator/modules/progressIndicator.module.js +38 -0
  576. package/es2020/src/modules/progressIndicator/modules/progressIndicator.module.js.map +1 -0
  577. package/es2020/src/modules/progressIndicator/services/progressIndicator.service.js +255 -0
  578. package/es2020/src/modules/progressIndicator/services/progressIndicator.service.js.map +1 -0
  579. package/es2020/src/modules/progressIndicator/services/progressIndicatorOptions.js +25 -0
  580. package/es2020/src/modules/progressIndicator/services/progressIndicatorOptions.js.map +1 -0
  581. package/es2020/src/pipes/index.js +6 -0
  582. package/es2020/src/pipes/index.js.map +1 -0
  583. package/es2020/src/pipes/isNaN/isNaN.pipe.js +24 -0
  584. package/es2020/src/pipes/isNaN/isNaN.pipe.js.map +1 -0
  585. package/es2020/src/pipes/isPresent/isPresent.pipe.js +25 -0
  586. package/es2020/src/pipes/isPresent/isPresent.pipe.js.map +1 -0
  587. package/es2020/src/pipes/localize/localize.pipe.js +54 -0
  588. package/es2020/src/pipes/localize/localize.pipe.js.map +1 -0
  589. package/es2020/src/pipes/mergeCssClasses/mergeCssClasses.pipe.js +43 -0
  590. package/es2020/src/pipes/mergeCssClasses/mergeCssClasses.pipe.js.map +1 -0
  591. package/es2020/src/pipes/urlEncode/urlEncode.pipe.js +26 -0
  592. package/es2020/src/pipes/urlEncode/urlEncode.pipe.js.map +1 -0
  593. package/es2020/src/services/alignment/alignment.interface.js +2 -0
  594. package/es2020/src/services/alignment/alignment.interface.js.map +1 -0
  595. package/es2020/src/services/alignment/index.js +2 -0
  596. package/es2020/src/services/alignment/index.js.map +1 -0
  597. package/es2020/src/services/cookies/cookies.service.js +106 -0
  598. package/es2020/src/services/cookies/cookies.service.js.map +1 -0
  599. package/es2020/src/services/globalization/globalization.service.js +6 -0
  600. package/es2020/src/services/globalization/globalization.service.js.map +1 -0
  601. package/es2020/src/services/logger/index.js +3 -0
  602. package/es2020/src/services/logger/index.js.map +1 -0
  603. package/es2020/src/services/logger/logger.interface.js +2 -0
  604. package/es2020/src/services/logger/logger.interface.js.map +1 -0
  605. package/es2020/src/services/logger/logger.service.js +18 -0
  606. package/es2020/src/services/logger/logger.service.js.map +1 -0
  607. package/es2020/src/services/notifications/defaultNotifications.service.js +228 -0
  608. package/es2020/src/services/notifications/defaultNotifications.service.js.map +1 -0
  609. package/es2020/src/services/notifications/index.js +4 -0
  610. package/es2020/src/services/notifications/index.js.map +1 -0
  611. package/es2020/src/services/notifications/notifications.interface.js +55 -0
  612. package/es2020/src/services/notifications/notifications.interface.js.map +1 -0
  613. package/es2020/src/services/notifications/notificationsOptions.js +18 -0
  614. package/es2020/src/services/notifications/notificationsOptions.js.map +1 -0
  615. package/es2020/src/services/permanentStorage/cookiePermanentStorage.service.js +43 -0
  616. package/es2020/src/services/permanentStorage/cookiePermanentStorage.service.js.map +1 -0
  617. package/es2020/src/services/permanentStorage/index.js +3 -0
  618. package/es2020/src/services/permanentStorage/index.js.map +1 -0
  619. package/es2020/src/services/permanentStorage/permanentStorage.interface.js +2 -0
  620. package/es2020/src/services/permanentStorage/permanentStorage.interface.js.map +1 -0
  621. package/es2020/src/services/statusCode/statusCode.service.js +29 -0
  622. package/es2020/src/services/statusCode/statusCode.service.js.map +1 -0
  623. package/es2020/src/services/stringLocalization/index.js +3 -0
  624. package/es2020/src/services/stringLocalization/index.js.map +1 -0
  625. package/es2020/src/services/stringLocalization/noStringLocalization.service.js +43 -0
  626. package/es2020/src/services/stringLocalization/noStringLocalization.service.js.map +1 -0
  627. package/es2020/src/services/stringLocalization/stringLocalization.interface.js +2 -0
  628. package/es2020/src/services/stringLocalization/stringLocalization.interface.js.map +1 -0
  629. package/es2020/src/services/temporaryStorage/index.js +3 -0
  630. package/es2020/src/services/temporaryStorage/index.js.map +1 -0
  631. package/es2020/src/services/temporaryStorage/memoryTemporaryStorage.service.js +43 -0
  632. package/es2020/src/services/temporaryStorage/memoryTemporaryStorage.service.js.map +1 -0
  633. package/es2020/src/services/temporaryStorage/temporaryStorage.interface.js +2 -0
  634. package/es2020/src/services/temporaryStorage/temporaryStorage.interface.js.map +1 -0
  635. package/es2020/src/types/tokens.js +50 -0
  636. package/es2020/src/types/tokens.js.map +1 -0
  637. package/es2020/src/utils/index.js +51 -0
  638. package/es2020/src/utils/index.js.map +1 -0
  639. package/es2020/store/src/index.js +2 -0
  640. package/es2020/store/src/index.js.map +1 -0
  641. package/es2020/store/src/services/index.js +3 -0
  642. package/es2020/store/src/services/index.js.map +1 -0
  643. package/es2020/store/src/services/permanentStorage/localPermanentStorage.service.js +49 -0
  644. package/es2020/store/src/services/permanentStorage/localPermanentStorage.service.js.map +1 -0
  645. package/es2020/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +37 -0
  646. package/es2020/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js.map +1 -0
  647. package/es2020/store/src/types/store.typings.js +2 -0
  648. package/es2020/store/src/types/store.typings.js.map +1 -0
  649. package/es2020/structured-log/src/components/console/console.component.animations.js +31 -0
  650. package/es2020/structured-log/src/components/console/console.component.animations.js.map +1 -0
  651. package/es2020/structured-log/src/components/console/console.component.js +95 -0
  652. package/es2020/structured-log/src/components/console/console.component.js.map +1 -0
  653. package/es2020/structured-log/src/index.js +12 -0
  654. package/es2020/structured-log/src/index.js.map +1 -0
  655. package/es2020/structured-log/src/misc/utils.js +39 -0
  656. package/es2020/structured-log/src/misc/utils.js.map +1 -0
  657. package/es2020/structured-log/src/modules/consoleLog.module.js +44 -0
  658. package/es2020/structured-log/src/modules/consoleLog.module.js.map +1 -0
  659. package/es2020/structured-log/src/services/console/consoleComponentSink.service.js +96 -0
  660. package/es2020/structured-log/src/services/console/consoleComponentSink.service.js.map +1 -0
  661. package/es2020/structured-log/src/services/console/consoleSinkConfig.service.js +44 -0
  662. package/es2020/structured-log/src/services/console/consoleSinkConfig.service.js.map +1 -0
  663. package/es2020/structured-log/src/services/logger.service.js +44 -0
  664. package/es2020/structured-log/src/services/logger.service.js.map +1 -0
  665. package/es2020/structured-log/src/services/rest/restSink.service.js +118 -0
  666. package/es2020/structured-log/src/services/rest/restSink.service.js.map +1 -0
  667. package/es2020/structured-log/src/services/rest/restSinkConfig.service.js +55 -0
  668. package/es2020/structured-log/src/services/rest/restSinkConfig.service.js.map +1 -0
  669. package/es2020/structured-log/src/types/logger.interface.js +2 -0
  670. package/es2020/structured-log/src/types/logger.interface.js.map +1 -0
  671. package/es2020/structured-log/src/types/structured-log.typings.js +2 -0
  672. package/es2020/structured-log/src/types/structured-log.typings.js.map +1 -0
  673. package/es2020/structured-log/src/types/tokens.js +56 -0
  674. package/es2020/structured-log/src/types/tokens.js.map +1 -0
  675. package/forms/common-forms.d.ts +966 -0
  676. package/forms/common-forms.internal.d.ts +966 -0
  677. package/forms/package.json +7 -6
  678. package/forms/src/directives/groupHasError/groupHasError.directive.d.ts +42 -39
  679. package/forms/src/directives/groupHasError/groupHasError.directive.d.ts.map +1 -1
  680. package/forms/src/directives/hasError/hasError.directive.d.ts +86 -83
  681. package/forms/src/directives/hasError/hasError.directive.d.ts.map +1 -1
  682. package/forms/src/directives/numberInput/maxValueNumberValidator.directive.d.ts +34 -31
  683. package/forms/src/directives/numberInput/maxValueNumberValidator.directive.d.ts.map +1 -1
  684. package/forms/src/directives/numberInput/minValueNumberValidator.directive.d.ts +34 -31
  685. package/forms/src/directives/numberInput/minValueNumberValidator.directive.d.ts.map +1 -1
  686. package/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.d.ts +30 -27
  687. package/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.d.ts.map +1 -1
  688. package/forms/src/directives/numberInput/numberInputValidator.directive.d.ts +15 -12
  689. package/forms/src/directives/numberInput/numberInputValidator.directive.d.ts.map +1 -1
  690. package/forms/src/directives/requiredClass/requiredClass.directive.d.ts +26 -23
  691. package/forms/src/directives/requiredClass/requiredClass.directive.d.ts.map +1 -1
  692. package/forms/src/index.d.ts +20 -0
  693. package/forms/src/index.d.ts.map +1 -0
  694. package/forms/src/misc/formModel/decorators/asyncValidator.decorator.d.ts +7 -7
  695. package/forms/src/misc/formModel/decorators/controlOptions.decorator.d.ts +6 -6
  696. package/forms/src/misc/formModel/decorators/disabled.decorator.d.ts +4 -4
  697. package/forms/src/misc/formModel/decorators/email.decorator.d.ts +4 -4
  698. package/forms/src/misc/formModel/decorators/formArrayProperty.decorator.d.ts +4 -4
  699. package/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.d.ts +7 -7
  700. package/forms/src/misc/formModel/decorators/formGroupProperty.decorator.d.ts +4 -4
  701. package/forms/src/misc/formModel/decorators/formGroupValidator.decorator.d.ts +7 -7
  702. package/forms/src/misc/formModel/decorators/index.d.ts +19 -19
  703. package/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.d.ts +20 -20
  704. package/forms/src/misc/formModel/decorators/maxLength.decorator.d.ts +5 -5
  705. package/forms/src/misc/formModel/decorators/maxValue.decorator.d.ts +5 -5
  706. package/forms/src/misc/formModel/decorators/minLength.decorator.d.ts +5 -5
  707. package/forms/src/misc/formModel/decorators/minValue.decorator.d.ts +5 -5
  708. package/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.d.ts +7 -7
  709. package/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.d.ts.map +1 -1
  710. package/forms/src/misc/formModel/decorators/number.decorator.d.ts +4 -4
  711. package/forms/src/misc/formModel/decorators/pattern.decorator.d.ts +4 -4
  712. package/forms/src/misc/formModel/decorators/required.decorator.d.ts +4 -4
  713. package/forms/src/misc/formModel/decorators/requiredIf.decorator.d.ts +5 -5
  714. package/forms/src/misc/formModel/decorators/validator.decorator.d.ts +7 -7
  715. package/forms/src/misc/formModel/index.d.ts +7 -7
  716. package/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.d.ts +20 -20
  717. package/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.d.ts +40 -40
  718. package/forms/src/misc/formModel/interfaces/validator.interface.d.ts +22 -22
  719. package/forms/src/misc/formModel/misc/currentValue.d.ts +17 -17
  720. package/forms/src/misc/formModel/misc/defaults.d.ts +5 -5
  721. package/forms/src/misc/formModel/misc/utils.d.ts +8 -8
  722. package/forms/src/misc/formModel/misc/utils.d.ts.map +1 -1
  723. package/forms/src/misc/formModel/misc/validatorFactories.d.ts +32 -32
  724. package/forms/src/misc/types.d.ts +6 -6
  725. package/forms/src/misc/utils.d.ts +42 -41
  726. package/forms/src/misc/utils.d.ts.map +1 -1
  727. package/forms/src/misc/validators.d.ts +21 -21
  728. package/forms/src/modules/hasError.module.d.ts +11 -5
  729. package/forms/src/modules/hasError.module.d.ts.map +1 -1
  730. package/forms/src/modules/numberInput.module.d.ts +13 -5
  731. package/forms/src/modules/numberInput.module.d.ts.map +1 -1
  732. package/forms/src/modules/requiredClass.module.d.ts +10 -5
  733. package/forms/src/modules/requiredClass.module.d.ts.map +1 -1
  734. package/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.d.ts +13 -13
  735. package/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.d.ts +28 -25
  736. package/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.d.ts.map +1 -1
  737. package/forms/src/services/submitted/submitted.service.d.ts +30 -27
  738. package/forms/src/services/submitted/submitted.service.d.ts.map +1 -1
  739. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.d.ts +105 -105
  740. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.d.ts.map +1 -1
  741. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.d.ts +109 -106
  742. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.d.ts.map +1 -1
  743. package/forms/temp/common-forms.api.md +445 -0
  744. package/hmr/common-hmr.d.ts +6 -0
  745. package/hmr/common-hmr.internal.d.ts +6 -0
  746. package/hmr/package.json +7 -6
  747. package/hmr/src/index.d.ts +6 -0
  748. package/hmr/src/index.d.ts.map +1 -0
  749. package/hmr/temp/common-hmr.api.md +12 -0
  750. package/hotkeys/common-hotkeys.d.ts +53 -0
  751. package/hotkeys/common-hotkeys.internal.d.ts +53 -0
  752. package/hotkeys/package.json +7 -6
  753. package/hotkeys/src/index.d.ts +2 -0
  754. package/hotkeys/src/index.d.ts.map +1 -0
  755. package/hotkeys/src/services/appHotkeys.service.d.ts +50 -43
  756. package/hotkeys/src/services/appHotkeys.service.d.ts.map +1 -1
  757. package/hotkeys/temp/common-hotkeys.api.md +25 -0
  758. package/material/common-material.d.ts +264 -0
  759. package/material/common-material.internal.d.ts +278 -0
  760. package/material/package.json +7 -6
  761. package/material/src/components/confirmationDialog/confirmationDialog.component.d.ts +17 -14
  762. package/material/src/components/confirmationDialog/confirmationDialog.component.d.ts.map +1 -1
  763. package/material/src/components/titledDialog/titledDialog.component.d.ts +20 -17
  764. package/material/src/components/titledDialog/titledDialog.component.d.ts.map +1 -1
  765. package/material/src/directives/confirmationDialog/confirmationDialog.directive.d.ts +49 -46
  766. package/material/src/directives/confirmationDialog/confirmationDialog.directive.d.ts.map +1 -1
  767. package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.d.ts +27 -24
  768. package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.d.ts.map +1 -1
  769. package/material/src/index.d.ts +11 -0
  770. package/material/src/index.d.ts.map +1 -0
  771. package/material/src/misc/interfaces/confirmationDialog.interface.d.ts +46 -46
  772. package/material/src/misc/interfaces/titledDialog.interface.d.ts +33 -33
  773. package/material/src/misc/tokens.d.ts +6 -6
  774. package/material/src/modules/confirmationDialog.module.d.ts +14 -5
  775. package/material/src/modules/confirmationDialog.module.d.ts.map +1 -1
  776. package/material/src/modules/debugDataCopyClick.module.d.ts +11 -5
  777. package/material/src/modules/debugDataCopyClick.module.d.ts.map +1 -1
  778. package/material/src/modules/titledDialog.module.d.ts +12 -5
  779. package/material/src/modules/titledDialog.module.d.ts.map +1 -1
  780. package/material/src/services/titledDialog/titledDialog.service.d.ts +21 -18
  781. package/material/src/services/titledDialog/titledDialog.service.d.ts.map +1 -1
  782. package/material/temp/common-material.api.md +164 -0
  783. package/moment/common-moment.d.ts +61 -0
  784. package/moment/common-moment.internal.d.ts +61 -0
  785. package/moment/package.json +7 -6
  786. package/moment/src/index.d.ts +3 -0
  787. package/moment/src/index.d.ts.map +1 -0
  788. package/moment/src/misc/utils.d.ts +7 -7
  789. package/moment/src/modules/moment.module.d.ts +11 -5
  790. package/moment/src/modules/moment.module.d.ts.map +1 -1
  791. package/moment/src/pipes/momentConvert/momentConvert.pipe.d.ts +15 -12
  792. package/moment/src/pipes/momentConvert/momentConvert.pipe.d.ts.map +1 -1
  793. package/moment/src/pipes/momentFormat/momentFormat.pipe.d.ts +16 -13
  794. package/moment/src/pipes/momentFormat/momentFormat.pipe.d.ts.map +1 -1
  795. package/moment/temp/common-moment.api.md +47 -0
  796. package/numeral/common-numeral.d.ts +44 -0
  797. package/numeral/common-numeral.internal.d.ts +44 -0
  798. package/numeral/package.json +7 -6
  799. package/numeral/src/index.d.ts +3 -0
  800. package/numeral/src/index.d.ts.map +1 -0
  801. package/numeral/src/modules/numeral.module.d.ts +10 -5
  802. package/numeral/src/modules/numeral.module.d.ts.map +1 -1
  803. package/numeral/src/pipes/numeral.pipe.d.ts +25 -22
  804. package/numeral/src/pipes/numeral.pipe.d.ts.map +1 -1
  805. package/numeral/temp/common-numeral.api.md +37 -0
  806. package/package.json +205 -91
  807. package/positions/common-positions.d.ts +324 -0
  808. package/positions/common-positions.internal.d.ts +346 -0
  809. package/positions/package.json +7 -6
  810. package/positions/src/index.d.ts +9 -0
  811. package/positions/src/index.d.ts.map +1 -0
  812. package/positions/src/misc/utils.d.ts +21 -21
  813. package/positions/src/misc/utils.d.ts.map +1 -1
  814. package/positions/src/modules/positions/directives/positionTo/positionTo.directive.d.ts +33 -30
  815. package/positions/src/modules/positions/directives/positionTo/positionTo.directive.d.ts.map +1 -1
  816. package/positions/src/modules/positions/modules/positions.module.d.ts +10 -5
  817. package/positions/src/modules/positions/modules/positions.module.d.ts.map +1 -1
  818. package/positions/src/modules/tooltip/components/tooltip/tooltip.component.d.ts +62 -59
  819. package/positions/src/modules/tooltip/components/tooltip/tooltip.component.d.ts.map +1 -1
  820. package/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.d.ts +105 -102
  821. package/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.d.ts.map +1 -1
  822. package/positions/src/modules/tooltip/misc/tokens.d.ts +6 -6
  823. package/positions/src/modules/tooltip/misc/tooltip.interface.d.ts +70 -70
  824. package/positions/src/modules/tooltip/misc/tooltip.interface.d.ts.map +1 -1
  825. package/positions/src/modules/tooltip/modules/tooltip.module.d.ts +12 -5
  826. package/positions/src/modules/tooltip/modules/tooltip.module.d.ts.map +1 -1
  827. package/positions/src/types/positions.typings.d.ts +33 -0
  828. package/positions/src/types/positions.typings.d.ts.map +1 -0
  829. package/positions/temp/common-positions.api.md +170 -0
  830. package/router/common-router.d.ts +140 -0
  831. package/router/common-router.internal.d.ts +140 -0
  832. package/router/package.json +7 -6
  833. package/router/src/decorators/componentRedirectRoute.decorator.d.ts +18 -18
  834. package/router/src/decorators/componentRoute.decorator.d.ts +19 -15
  835. package/router/src/decorators/componentRoute.decorator.d.ts.map +1 -1
  836. package/router/src/decorators/moduleRoutes.decorator.d.ts +38 -38
  837. package/router/src/index.d.ts +7 -0
  838. package/router/src/index.d.ts.map +1 -0
  839. package/router/src/misc/utils.d.ts +7 -7
  840. package/router/src/services/routing/dataRouter.d.ts +34 -31
  841. package/router/src/services/routing/dataRouter.d.ts.map +1 -1
  842. package/router/src/services/routing/dataRouterData.d.ts +15 -12
  843. package/router/src/services/routing/dataRouterData.d.ts.map +1 -1
  844. package/router/temp/common-router.api.md +74 -0
  845. package/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.d.ts +36 -42
  846. package/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.d.ts.map +1 -1
  847. package/src/index.d.ts +34 -0
  848. package/src/index.d.ts.map +1 -0
  849. package/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.d.ts +37 -34
  850. package/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.d.ts.map +1 -1
  851. package/src/modules/clickOutside/modules/clickOutside.module.d.ts +10 -5
  852. package/src/modules/clickOutside/modules/clickOutside.module.d.ts.map +1 -1
  853. package/src/modules/commonDynamic.module.d.ts +11 -0
  854. package/src/modules/commonDynamic.module.d.ts.map +1 -0
  855. package/src/modules/commonLocalize.d.ts +11 -0
  856. package/src/modules/commonLocalize.d.ts.map +1 -0
  857. package/src/modules/commonUtils.module.d.ts +14 -0
  858. package/src/modules/commonUtils.module.d.ts.map +1 -0
  859. package/src/modules/debugData/components/debugData/debugData.component.d.ts +37 -34
  860. package/src/modules/debugData/components/debugData/debugData.component.d.ts.map +1 -1
  861. package/src/modules/debugData/modules/debugData.module.d.ts +11 -5
  862. package/src/modules/debugData/modules/debugData.module.d.ts.map +1 -1
  863. package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.d.ts +30 -27
  864. package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.d.ts.map +1 -1
  865. package/src/modules/goBack/directives/goBack/goBack.directive.d.ts +17 -0
  866. package/src/modules/goBack/directives/goBack/goBack.directive.d.ts.map +1 -0
  867. package/src/modules/goBack/directives/index.d.ts +2 -0
  868. package/src/modules/goBack/directives/index.d.ts.map +1 -0
  869. package/src/modules/goBack/index.d.ts +3 -0
  870. package/src/modules/goBack/index.d.ts.map +1 -0
  871. package/src/modules/goBack/modules/goBack.module.d.ts +11 -0
  872. package/src/modules/goBack/modules/goBack.module.d.ts.map +1 -0
  873. package/src/modules/goBack/modules/index.d.ts +2 -0
  874. package/src/modules/goBack/modules/index.d.ts.map +1 -0
  875. package/src/modules/multiButton/components/multiButton/multiButton.component.d.ts +61 -58
  876. package/src/modules/multiButton/components/multiButton/multiButton.component.d.ts.map +1 -1
  877. package/src/modules/multiButton/components/multiButton/multiButton.interface.d.ts +29 -29
  878. package/src/modules/multiButton/components/multiButton/multiButton.interface.d.ts.map +1 -1
  879. package/src/modules/multiButton/misc/tokens.d.ts +6 -6
  880. package/src/modules/multiButton/modules/multiButton.module.d.ts +11 -5
  881. package/src/modules/multiButton/modules/multiButton.module.d.ts.map +1 -1
  882. package/src/modules/progressIndicator/components/index.d.ts +2 -0
  883. package/src/modules/progressIndicator/components/index.d.ts.map +1 -0
  884. package/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.d.ts +41 -38
  885. package/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.d.ts.map +1 -1
  886. package/src/modules/progressIndicator/directives/index.d.ts +2 -0
  887. package/src/modules/progressIndicator/directives/index.d.ts.map +1 -0
  888. package/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.d.ts +68 -65
  889. package/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.d.ts.map +1 -1
  890. package/src/modules/progressIndicator/index.d.ts +6 -0
  891. package/src/modules/progressIndicator/index.d.ts.map +1 -0
  892. package/src/modules/progressIndicator/interceptors/progressInterceptor.d.ts +24 -25
  893. package/src/modules/progressIndicator/interceptors/progressInterceptor.d.ts.map +1 -1
  894. package/src/modules/progressIndicator/misc/tokens.d.ts +6 -0
  895. package/src/modules/progressIndicator/misc/tokens.d.ts.map +1 -0
  896. package/src/modules/progressIndicator/modules/index.d.ts +2 -0
  897. package/src/modules/progressIndicator/modules/index.d.ts.map +1 -0
  898. package/src/modules/progressIndicator/modules/progressIndicator.module.d.ts +13 -5
  899. package/src/modules/progressIndicator/modules/progressIndicator.module.d.ts.map +1 -1
  900. package/src/modules/progressIndicator/services/progressIndicator.service.d.ts +138 -135
  901. package/src/modules/progressIndicator/services/progressIndicator.service.d.ts.map +1 -1
  902. package/src/modules/progressIndicator/services/progressIndicatorOptions.d.ts +14 -14
  903. package/src/pipes/index.d.ts +6 -0
  904. package/src/pipes/index.d.ts.map +1 -0
  905. package/src/pipes/isNaN/isNaN.pipe.d.ts +14 -11
  906. package/src/pipes/isNaN/isNaN.pipe.d.ts.map +1 -1
  907. package/src/pipes/isPresent/isPresent.pipe.d.ts +14 -11
  908. package/src/pipes/isPresent/isPresent.pipe.d.ts.map +1 -1
  909. package/src/pipes/localize/localize.pipe.d.ts +31 -28
  910. package/src/pipes/localize/localize.pipe.d.ts.map +1 -1
  911. package/src/pipes/mergeCssClasses/mergeCssClasses.pipe.d.ts +21 -0
  912. package/src/pipes/mergeCssClasses/mergeCssClasses.pipe.d.ts.map +1 -0
  913. package/src/pipes/urlEncode/urlEncode.pipe.d.ts +14 -11
  914. package/src/pipes/urlEncode/urlEncode.pipe.d.ts.map +1 -1
  915. package/src/services/alignment/alignment.interface.d.ts +6 -0
  916. package/src/services/alignment/alignment.interface.d.ts.map +1 -0
  917. package/src/services/alignment/index.d.ts +2 -0
  918. package/src/services/alignment/index.d.ts.map +1 -0
  919. package/src/services/cookies/cookies.service.d.ts +41 -38
  920. package/src/services/cookies/cookies.service.d.ts.map +1 -1
  921. package/src/services/globalization/globalization.service.d.ts +14 -14
  922. package/src/services/logger/index.d.ts +2 -2
  923. package/src/services/logger/logger.interface.d.ts +83 -83
  924. package/src/services/logger/logger.interface.d.ts.map +1 -1
  925. package/src/services/logger/logger.service.d.ts +84 -84
  926. package/src/services/logger/logger.service.d.ts.map +1 -1
  927. package/src/services/notifications/defaultNotifications.service.d.ts +99 -96
  928. package/src/services/notifications/defaultNotifications.service.d.ts.map +1 -1
  929. package/src/services/notifications/index.d.ts +3 -3
  930. package/src/services/notifications/notifications.interface.d.ts +142 -142
  931. package/src/services/notifications/notificationsOptions.d.ts +10 -10
  932. package/src/services/permanentStorage/cookiePermanentStorage.service.d.ts +35 -32
  933. package/src/services/permanentStorage/cookiePermanentStorage.service.d.ts.map +1 -1
  934. package/src/services/permanentStorage/index.d.ts +2 -2
  935. package/src/services/permanentStorage/permanentStorage.interface.d.ts +28 -28
  936. package/src/services/permanentStorage/permanentStorage.interface.d.ts.map +1 -1
  937. package/src/services/statusCode/statusCode.service.d.ts +21 -18
  938. package/src/services/statusCode/statusCode.service.d.ts.map +1 -1
  939. package/src/services/stringLocalization/index.d.ts +2 -2
  940. package/src/services/stringLocalization/noStringLocalization.service.d.ts +25 -21
  941. package/src/services/stringLocalization/noStringLocalization.service.d.ts.map +1 -1
  942. package/src/services/stringLocalization/stringLocalization.interface.d.ts +16 -16
  943. package/src/services/temporaryStorage/index.d.ts +2 -2
  944. package/src/services/temporaryStorage/memoryTemporaryStorage.service.d.ts +29 -26
  945. package/src/services/temporaryStorage/memoryTemporaryStorage.service.d.ts.map +1 -1
  946. package/src/services/temporaryStorage/temporaryStorage.interface.d.ts +21 -21
  947. package/src/types/tokens.d.ts +52 -47
  948. package/src/types/tokens.d.ts.map +1 -1
  949. package/src/utils/index.d.ts +23 -23
  950. package/src/utils/index.d.ts.map +1 -1
  951. package/store/common-store.d.ts +61 -0
  952. package/store/common-store.internal.d.ts +61 -0
  953. package/store/package.json +7 -6
  954. package/store/src/index.d.ts +2 -0
  955. package/store/src/index.d.ts.map +1 -0
  956. package/store/src/services/index.d.ts +2 -2
  957. package/store/src/services/permanentStorage/localPermanentStorage.service.d.ts +33 -30
  958. package/store/src/services/permanentStorage/localPermanentStorage.service.d.ts.map +1 -1
  959. package/store/src/services/temporaryStorage/sessionTemporaryStorage.service.d.ts +25 -22
  960. package/store/src/services/temporaryStorage/sessionTemporaryStorage.service.d.ts.map +1 -1
  961. package/store/src/types/store.typings.d.ts +4 -0
  962. package/store/src/types/store.typings.d.ts.map +1 -0
  963. package/store/temp/common-store.api.md +37 -0
  964. package/structured-log/common-structured-log.d.ts +418 -0
  965. package/structured-log/common-structured-log.internal.d.ts +418 -0
  966. package/structured-log/package.json +7 -6
  967. package/structured-log/src/components/console/console.component.animations.d.ts +4 -4
  968. package/structured-log/src/components/console/console.component.d.ts +54 -51
  969. package/structured-log/src/components/console/console.component.d.ts.map +1 -1
  970. package/structured-log/src/index.d.ts +12 -0
  971. package/structured-log/src/index.d.ts.map +1 -0
  972. package/structured-log/src/misc/utils.d.ts +13 -13
  973. package/structured-log/src/modules/consoleLog.module.d.ts +16 -10
  974. package/structured-log/src/modules/consoleLog.module.d.ts.map +1 -1
  975. package/structured-log/src/services/console/consoleComponentSink.service.d.ts +44 -41
  976. package/structured-log/src/services/console/consoleComponentSink.service.d.ts.map +1 -1
  977. package/structured-log/src/services/console/consoleSinkConfig.service.d.ts +17 -14
  978. package/structured-log/src/services/console/consoleSinkConfig.service.d.ts.map +1 -1
  979. package/structured-log/src/services/logger.service.d.ts +93 -90
  980. package/structured-log/src/services/logger.service.d.ts.map +1 -1
  981. package/structured-log/src/services/rest/restSink.service.d.ts +43 -40
  982. package/structured-log/src/services/rest/restSink.service.d.ts.map +1 -1
  983. package/structured-log/src/services/rest/restSinkConfig.service.d.ts +21 -18
  984. package/structured-log/src/services/rest/restSinkConfig.service.d.ts.map +1 -1
  985. package/structured-log/src/types/logger.interface.d.ts +62 -62
  986. package/structured-log/src/types/logger.interface.d.ts.map +1 -1
  987. package/structured-log/src/types/structured-log.typings.d.ts +355 -0
  988. package/structured-log/src/types/structured-log.typings.d.ts.map +1 -0
  989. package/structured-log/src/types/tokens.d.ts +37 -37
  990. package/structured-log/src/types/tokens.d.ts.map +1 -1
  991. package/structured-log/temp/common-structured-log.api.md +193 -0
  992. package/version.bak +1 -1
  993. package/appveyor.yml +0 -67
  994. package/common.d.ts.map +0 -1
  995. package/common.metadata.json +0 -1
  996. package/date-fns/dist/es2015/date-fns/index.js +0 -10
  997. package/date-fns/dist/es2015/date-fns/public_api.js +0 -7
  998. package/date-fns/dist/es2015/date-fns/src/date-fns.js +0 -7
  999. package/date-fns/dist/es2015/date-fns/src/misc/utils.js +0 -38
  1000. package/date-fns/dist/es2015/forms/src/directives/groupHasError/groupHasError.directive.js +0 -128
  1001. package/date-fns/dist/es2015/forms/src/directives/hasError/hasError.directive.js +0 -300
  1002. package/date-fns/dist/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -104
  1003. package/date-fns/dist/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -104
  1004. package/date-fns/dist/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -125
  1005. package/date-fns/dist/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -41
  1006. package/date-fns/dist/es2015/forms/src/directives/requiredClass/requiredClass.directive.js +0 -89
  1007. package/date-fns/dist/es2015/forms/src/forms.js +0 -25
  1008. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -17
  1009. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -17
  1010. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -16
  1011. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/email.decorator.js +0 -17
  1012. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -17
  1013. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -34
  1014. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -17
  1015. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -34
  1016. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/index.js +0 -25
  1017. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -60
  1018. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -18
  1019. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -18
  1020. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -18
  1021. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -18
  1022. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -52
  1023. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/number.decorator.js +0 -17
  1024. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -18
  1025. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/required.decorator.js +0 -17
  1026. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -39
  1027. package/date-fns/dist/es2015/forms/src/misc/formModel/decorators/validator.decorator.js +0 -17
  1028. package/date-fns/dist/es2015/forms/src/misc/formModel/index.js +0 -13
  1029. package/date-fns/dist/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -29
  1030. package/date-fns/dist/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -49
  1031. package/date-fns/dist/es2015/forms/src/misc/formModel/interfaces/validator.interface.js +0 -18
  1032. package/date-fns/dist/es2015/forms/src/misc/formModel/misc/currentValue.js +0 -40
  1033. package/date-fns/dist/es2015/forms/src/misc/formModel/misc/defaults.js +0 -19
  1034. package/date-fns/dist/es2015/forms/src/misc/formModel/misc/utils.js +0 -134
  1035. package/date-fns/dist/es2015/forms/src/misc/formModel/misc/validatorFactories.js +0 -64
  1036. package/date-fns/dist/es2015/forms/src/misc/types.js +0 -12
  1037. package/date-fns/dist/es2015/forms/src/misc/utils.js +0 -135
  1038. package/date-fns/dist/es2015/forms/src/misc/validators.js +0 -65
  1039. package/date-fns/dist/es2015/forms/src/modules/hasError.module.js +0 -22
  1040. package/date-fns/dist/es2015/forms/src/modules/numberInput.module.js +0 -28
  1041. package/date-fns/dist/es2015/forms/src/modules/requiredClass.module.js +0 -19
  1042. package/date-fns/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -23
  1043. package/date-fns/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -107
  1044. package/date-fns/dist/es2015/forms/src/services/submitted/submitted.service.js +0 -69
  1045. package/date-fns/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -109
  1046. package/date-fns/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -371
  1047. package/date-fns/dist/es5/date-fns/index.js +0 -10
  1048. package/date-fns/dist/es5/date-fns/public_api.js +0 -7
  1049. package/date-fns/dist/es5/date-fns/src/date-fns.js +0 -7
  1050. package/date-fns/dist/es5/date-fns/src/misc/utils.js +0 -38
  1051. package/date-fns/dist/es5/forms/src/directives/groupHasError/groupHasError.directive.js +0 -159
  1052. package/date-fns/dist/es5/forms/src/directives/hasError/hasError.directive.js +0 -368
  1053. package/date-fns/dist/es5/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -123
  1054. package/date-fns/dist/es5/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -123
  1055. package/date-fns/dist/es5/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -150
  1056. package/date-fns/dist/es5/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -58
  1057. package/date-fns/dist/es5/forms/src/directives/requiredClass/requiredClass.directive.js +0 -105
  1058. package/date-fns/dist/es5/forms/src/forms.js +0 -25
  1059. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -17
  1060. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -17
  1061. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -16
  1062. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/email.decorator.js +0 -17
  1063. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -17
  1064. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -34
  1065. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -17
  1066. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -34
  1067. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/index.js +0 -25
  1068. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -60
  1069. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -18
  1070. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -18
  1071. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -18
  1072. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -18
  1073. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -62
  1074. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/number.decorator.js +0 -17
  1075. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -18
  1076. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/required.decorator.js +0 -17
  1077. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -39
  1078. package/date-fns/dist/es5/forms/src/misc/formModel/decorators/validator.decorator.js +0 -17
  1079. package/date-fns/dist/es5/forms/src/misc/formModel/index.js +0 -13
  1080. package/date-fns/dist/es5/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -29
  1081. package/date-fns/dist/es5/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -49
  1082. package/date-fns/dist/es5/forms/src/misc/formModel/interfaces/validator.interface.js +0 -18
  1083. package/date-fns/dist/es5/forms/src/misc/formModel/misc/currentValue.js +0 -50
  1084. package/date-fns/dist/es5/forms/src/misc/formModel/misc/defaults.js +0 -19
  1085. package/date-fns/dist/es5/forms/src/misc/formModel/misc/utils.js +0 -150
  1086. package/date-fns/dist/es5/forms/src/misc/formModel/misc/validatorFactories.js +0 -104
  1087. package/date-fns/dist/es5/forms/src/misc/types.js +0 -12
  1088. package/date-fns/dist/es5/forms/src/misc/utils.js +0 -139
  1089. package/date-fns/dist/es5/forms/src/misc/validators.js +0 -102
  1090. package/date-fns/dist/es5/forms/src/modules/hasError.module.js +0 -26
  1091. package/date-fns/dist/es5/forms/src/modules/numberInput.module.js +0 -32
  1092. package/date-fns/dist/es5/forms/src/modules/requiredClass.module.js +0 -23
  1093. package/date-fns/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -23
  1094. package/date-fns/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -120
  1095. package/date-fns/dist/es5/forms/src/services/submitted/submitted.service.js +0 -100
  1096. package/date-fns/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -109
  1097. package/date-fns/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -492
  1098. package/date-fns/index.d.ts +0 -5
  1099. package/date-fns/index.d.ts.map +0 -1
  1100. package/date-fns/index.metadata.json +0 -1
  1101. package/date-fns/public_api.d.ts +0 -2
  1102. package/date-fns/public_api.d.ts.map +0 -1
  1103. package/date-fns/src/date-fns.d.ts +0 -2
  1104. package/date-fns/src/date-fns.d.ts.map +0 -1
  1105. package/dist/es2015/common.js +0 -11
  1106. package/dist/es2015/public_api.js +0 -7
  1107. package/dist/es2015/src/common.js +0 -41
  1108. package/dist/es2015/src/decorators/hmrData.decorator.js +0 -22
  1109. package/dist/es2015/src/decorators/hmrServiceData.decorator.js +0 -22
  1110. package/dist/es2015/src/decorators/hmrServiceDataConstructor.decorator.js +0 -21
  1111. package/dist/es2015/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js +0 -148
  1112. package/dist/es2015/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js +0 -111
  1113. package/dist/es2015/src/modules/clickOutside/modules/clickOutside.module.js +0 -24
  1114. package/dist/es2015/src/modules/common.module.js +0 -39
  1115. package/dist/es2015/src/modules/debugData/components/debugData/debugData.component.js +0 -121
  1116. package/dist/es2015/src/modules/debugData/modules/debugData.module.js +0 -27
  1117. package/dist/es2015/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +0 -71
  1118. package/dist/es2015/src/modules/multiButton/components/multiButton/multiButton.component.js +0 -196
  1119. package/dist/es2015/src/modules/multiButton/components/multiButton/multiButton.interface.js +0 -43
  1120. package/dist/es2015/src/modules/multiButton/misc/tokens.js +0 -12
  1121. package/dist/es2015/src/modules/multiButton/modules/multiButton.module.js +0 -27
  1122. package/dist/es2015/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js +0 -121
  1123. package/dist/es2015/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js +0 -229
  1124. package/dist/es2015/src/modules/progressIndicator/interceptors/progressInterceptor.js +0 -85
  1125. package/dist/es2015/src/modules/progressIndicator/misc/types.js +0 -18
  1126. package/dist/es2015/src/modules/progressIndicator/modules/progressIndicator.module.js +0 -32
  1127. package/dist/es2015/src/modules/progressIndicator/services/progressIndicator.service.js +0 -366
  1128. package/dist/es2015/src/modules/progressIndicator/services/progressIndicatorOptions.js +0 -46
  1129. package/dist/es2015/src/pipes/isNaN/isNaN.pipe.js +0 -26
  1130. package/dist/es2015/src/pipes/isPresent/isPresent.pipe.js +0 -27
  1131. package/dist/es2015/src/pipes/localize/localize.pipe.js +0 -85
  1132. package/dist/es2015/src/pipes/urlEncode/urlEncode.pipe.js +0 -28
  1133. package/dist/es2015/src/services/cookies/cookies.service.js +0 -132
  1134. package/dist/es2015/src/services/globalization/globalization.service.js +0 -26
  1135. package/dist/es2015/src/services/ignoredInterceptors/ignoredInterceptors.service.js +0 -97
  1136. package/dist/es2015/src/services/logger/index.js +0 -8
  1137. package/dist/es2015/src/services/logger/logger.interface.js +0 -103
  1138. package/dist/es2015/src/services/logger/logger.service.js +0 -53
  1139. package/dist/es2015/src/services/notifications/defaultNotifications.service.js +0 -335
  1140. package/dist/es2015/src/services/notifications/index.js +0 -9
  1141. package/dist/es2015/src/services/notifications/notifications.interface.js +0 -182
  1142. package/dist/es2015/src/services/notifications/notificationsOptions.js +0 -33
  1143. package/dist/es2015/src/services/permanentStorage/cookiePermanentStorage.service.js +0 -62
  1144. package/dist/es2015/src/services/permanentStorage/index.js +0 -8
  1145. package/dist/es2015/src/services/permanentStorage/permanentStorage.interface.js +0 -41
  1146. package/dist/es2015/src/services/positioning/index.js +0 -7
  1147. package/dist/es2015/src/services/positioning/positioning.interface.js +0 -11
  1148. package/dist/es2015/src/services/statusCode/statusCode.service.js +0 -42
  1149. package/dist/es2015/src/services/stringLocalization/index.js +0 -8
  1150. package/dist/es2015/src/services/stringLocalization/noStringLocalization.service.js +0 -60
  1151. package/dist/es2015/src/services/stringLocalization/stringLocalization.interface.js +0 -25
  1152. package/dist/es2015/src/services/temporaryStorage/index.js +0 -8
  1153. package/dist/es2015/src/services/temporaryStorage/memoryTemporaryStorage.service.js +0 -58
  1154. package/dist/es2015/src/services/temporaryStorage/temporaryStorage.interface.js +0 -33
  1155. package/dist/es2015/src/types/additionalInfo.js +0 -19
  1156. package/dist/es2015/src/types/tokens.js +0 -69
  1157. package/dist/es2015/src/utils/httpRequest.extension.js +0 -26
  1158. package/dist/es2015/src/utils/index.js +0 -80
  1159. package/dist/es5/common.js +0 -11
  1160. package/dist/es5/public_api.js +0 -7
  1161. package/dist/es5/src/common.js +0 -41
  1162. package/dist/es5/src/decorators/hmrData.decorator.js +0 -22
  1163. package/dist/es5/src/decorators/hmrServiceData.decorator.js +0 -22
  1164. package/dist/es5/src/decorators/hmrServiceDataConstructor.decorator.js +0 -21
  1165. package/dist/es5/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.js +0 -169
  1166. package/dist/es5/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.js +0 -130
  1167. package/dist/es5/src/modules/clickOutside/modules/clickOutside.module.js +0 -28
  1168. package/dist/es5/src/modules/common.module.js +0 -43
  1169. package/dist/es5/src/modules/debugData/components/debugData/debugData.component.js +0 -150
  1170. package/dist/es5/src/modules/debugData/modules/debugData.module.js +0 -31
  1171. package/dist/es5/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +0 -102
  1172. package/dist/es5/src/modules/multiButton/components/multiButton/multiButton.component.js +0 -229
  1173. package/dist/es5/src/modules/multiButton/components/multiButton/multiButton.interface.js +0 -43
  1174. package/dist/es5/src/modules/multiButton/misc/tokens.js +0 -12
  1175. package/dist/es5/src/modules/multiButton/modules/multiButton.module.js +0 -31
  1176. package/dist/es5/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.js +0 -148
  1177. package/dist/es5/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.js +0 -266
  1178. package/dist/es5/src/modules/progressIndicator/interceptors/progressInterceptor.js +0 -98
  1179. package/dist/es5/src/modules/progressIndicator/misc/types.js +0 -18
  1180. package/dist/es5/src/modules/progressIndicator/modules/progressIndicator.module.js +0 -36
  1181. package/dist/es5/src/modules/progressIndicator/services/progressIndicator.service.js +0 -489
  1182. package/dist/es5/src/modules/progressIndicator/services/progressIndicatorOptions.js +0 -50
  1183. package/dist/es5/src/pipes/isNaN/isNaN.pipe.js +0 -42
  1184. package/dist/es5/src/pipes/isPresent/isPresent.pipe.js +0 -43
  1185. package/dist/es5/src/pipes/localize/localize.pipe.js +0 -118
  1186. package/dist/es5/src/pipes/urlEncode/urlEncode.pipe.js +0 -44
  1187. package/dist/es5/src/services/cookies/cookies.service.js +0 -183
  1188. package/dist/es5/src/services/globalization/globalization.service.js +0 -38
  1189. package/dist/es5/src/services/ignoredInterceptors/ignoredInterceptors.service.js +0 -133
  1190. package/dist/es5/src/services/logger/index.js +0 -8
  1191. package/dist/es5/src/services/logger/logger.interface.js +0 -103
  1192. package/dist/es5/src/services/logger/logger.service.js +0 -117
  1193. package/dist/es5/src/services/notifications/defaultNotifications.service.js +0 -469
  1194. package/dist/es5/src/services/notifications/index.js +0 -9
  1195. package/dist/es5/src/services/notifications/notifications.interface.js +0 -204
  1196. package/dist/es5/src/services/notifications/notificationsOptions.js +0 -38
  1197. package/dist/es5/src/services/permanentStorage/cookiePermanentStorage.service.js +0 -96
  1198. package/dist/es5/src/services/permanentStorage/index.js +0 -8
  1199. package/dist/es5/src/services/permanentStorage/permanentStorage.interface.js +0 -41
  1200. package/dist/es5/src/services/positioning/index.js +0 -7
  1201. package/dist/es5/src/services/positioning/positioning.interface.js +0 -11
  1202. package/dist/es5/src/services/statusCode/statusCode.service.js +0 -67
  1203. package/dist/es5/src/services/stringLocalization/index.js +0 -8
  1204. package/dist/es5/src/services/stringLocalization/noStringLocalization.service.js +0 -85
  1205. package/dist/es5/src/services/stringLocalization/stringLocalization.interface.js +0 -25
  1206. package/dist/es5/src/services/temporaryStorage/index.js +0 -8
  1207. package/dist/es5/src/services/temporaryStorage/memoryTemporaryStorage.service.js +0 -93
  1208. package/dist/es5/src/services/temporaryStorage/temporaryStorage.interface.js +0 -33
  1209. package/dist/es5/src/types/additionalInfo.js +0 -19
  1210. package/dist/es5/src/types/tokens.js +0 -69
  1211. package/dist/es5/src/utils/httpRequest.extension.js +0 -26
  1212. package/dist/es5/src/utils/index.js +0 -80
  1213. package/forms/dist/es2015/forms/index.js +0 -10
  1214. package/forms/dist/es2015/forms/public_api.js +0 -7
  1215. package/forms/dist/es2015/forms/src/directives/groupHasError/groupHasError.directive.js +0 -128
  1216. package/forms/dist/es2015/forms/src/directives/hasError/hasError.directive.js +0 -300
  1217. package/forms/dist/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -104
  1218. package/forms/dist/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -104
  1219. package/forms/dist/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -125
  1220. package/forms/dist/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -41
  1221. package/forms/dist/es2015/forms/src/directives/requiredClass/requiredClass.directive.js +0 -89
  1222. package/forms/dist/es2015/forms/src/forms.js +0 -25
  1223. package/forms/dist/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -17
  1224. package/forms/dist/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -17
  1225. package/forms/dist/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -16
  1226. package/forms/dist/es2015/forms/src/misc/formModel/decorators/email.decorator.js +0 -17
  1227. package/forms/dist/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -17
  1228. package/forms/dist/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -34
  1229. package/forms/dist/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -17
  1230. package/forms/dist/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -34
  1231. package/forms/dist/es2015/forms/src/misc/formModel/decorators/index.js +0 -25
  1232. package/forms/dist/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -60
  1233. package/forms/dist/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -18
  1234. package/forms/dist/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -18
  1235. package/forms/dist/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -18
  1236. package/forms/dist/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -18
  1237. package/forms/dist/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -52
  1238. package/forms/dist/es2015/forms/src/misc/formModel/decorators/number.decorator.js +0 -17
  1239. package/forms/dist/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -18
  1240. package/forms/dist/es2015/forms/src/misc/formModel/decorators/required.decorator.js +0 -17
  1241. package/forms/dist/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -39
  1242. package/forms/dist/es2015/forms/src/misc/formModel/decorators/validator.decorator.js +0 -17
  1243. package/forms/dist/es2015/forms/src/misc/formModel/index.js +0 -13
  1244. package/forms/dist/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -29
  1245. package/forms/dist/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -49
  1246. package/forms/dist/es2015/forms/src/misc/formModel/interfaces/validator.interface.js +0 -18
  1247. package/forms/dist/es2015/forms/src/misc/formModel/misc/currentValue.js +0 -40
  1248. package/forms/dist/es2015/forms/src/misc/formModel/misc/defaults.js +0 -19
  1249. package/forms/dist/es2015/forms/src/misc/formModel/misc/utils.js +0 -134
  1250. package/forms/dist/es2015/forms/src/misc/formModel/misc/validatorFactories.js +0 -64
  1251. package/forms/dist/es2015/forms/src/misc/types.js +0 -12
  1252. package/forms/dist/es2015/forms/src/misc/utils.js +0 -135
  1253. package/forms/dist/es2015/forms/src/misc/validators.js +0 -65
  1254. package/forms/dist/es2015/forms/src/modules/hasError.module.js +0 -22
  1255. package/forms/dist/es2015/forms/src/modules/numberInput.module.js +0 -28
  1256. package/forms/dist/es2015/forms/src/modules/requiredClass.module.js +0 -19
  1257. package/forms/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -23
  1258. package/forms/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -107
  1259. package/forms/dist/es2015/forms/src/services/submitted/submitted.service.js +0 -69
  1260. package/forms/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -109
  1261. package/forms/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -371
  1262. package/forms/dist/es5/forms/index.js +0 -10
  1263. package/forms/dist/es5/forms/public_api.js +0 -7
  1264. package/forms/dist/es5/forms/src/directives/groupHasError/groupHasError.directive.js +0 -159
  1265. package/forms/dist/es5/forms/src/directives/hasError/hasError.directive.js +0 -368
  1266. package/forms/dist/es5/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -123
  1267. package/forms/dist/es5/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -123
  1268. package/forms/dist/es5/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -150
  1269. package/forms/dist/es5/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -58
  1270. package/forms/dist/es5/forms/src/directives/requiredClass/requiredClass.directive.js +0 -105
  1271. package/forms/dist/es5/forms/src/forms.js +0 -25
  1272. package/forms/dist/es5/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -17
  1273. package/forms/dist/es5/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -17
  1274. package/forms/dist/es5/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -16
  1275. package/forms/dist/es5/forms/src/misc/formModel/decorators/email.decorator.js +0 -17
  1276. package/forms/dist/es5/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -17
  1277. package/forms/dist/es5/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -34
  1278. package/forms/dist/es5/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -17
  1279. package/forms/dist/es5/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -34
  1280. package/forms/dist/es5/forms/src/misc/formModel/decorators/index.js +0 -25
  1281. package/forms/dist/es5/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -60
  1282. package/forms/dist/es5/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -18
  1283. package/forms/dist/es5/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -18
  1284. package/forms/dist/es5/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -18
  1285. package/forms/dist/es5/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -18
  1286. package/forms/dist/es5/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -62
  1287. package/forms/dist/es5/forms/src/misc/formModel/decorators/number.decorator.js +0 -17
  1288. package/forms/dist/es5/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -18
  1289. package/forms/dist/es5/forms/src/misc/formModel/decorators/required.decorator.js +0 -17
  1290. package/forms/dist/es5/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -39
  1291. package/forms/dist/es5/forms/src/misc/formModel/decorators/validator.decorator.js +0 -17
  1292. package/forms/dist/es5/forms/src/misc/formModel/index.js +0 -13
  1293. package/forms/dist/es5/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -29
  1294. package/forms/dist/es5/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -49
  1295. package/forms/dist/es5/forms/src/misc/formModel/interfaces/validator.interface.js +0 -18
  1296. package/forms/dist/es5/forms/src/misc/formModel/misc/currentValue.js +0 -50
  1297. package/forms/dist/es5/forms/src/misc/formModel/misc/defaults.js +0 -19
  1298. package/forms/dist/es5/forms/src/misc/formModel/misc/utils.js +0 -150
  1299. package/forms/dist/es5/forms/src/misc/formModel/misc/validatorFactories.js +0 -104
  1300. package/forms/dist/es5/forms/src/misc/types.js +0 -12
  1301. package/forms/dist/es5/forms/src/misc/utils.js +0 -139
  1302. package/forms/dist/es5/forms/src/misc/validators.js +0 -102
  1303. package/forms/dist/es5/forms/src/modules/hasError.module.js +0 -26
  1304. package/forms/dist/es5/forms/src/modules/numberInput.module.js +0 -32
  1305. package/forms/dist/es5/forms/src/modules/requiredClass.module.js +0 -23
  1306. package/forms/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -23
  1307. package/forms/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -120
  1308. package/forms/dist/es5/forms/src/services/submitted/submitted.service.js +0 -100
  1309. package/forms/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -109
  1310. package/forms/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -492
  1311. package/forms/index.d.ts +0 -5
  1312. package/forms/index.d.ts.map +0 -1
  1313. package/forms/index.metadata.json +0 -1
  1314. package/forms/public_api.d.ts +0 -2
  1315. package/forms/public_api.d.ts.map +0 -1
  1316. package/forms/src/directives/groupHasError/groupHasError.directive.ngfactory.d.ts.map +0 -1
  1317. package/forms/src/directives/hasError/hasError.directive.ngfactory.d.ts.map +0 -1
  1318. package/forms/src/directives/numberInput/maxValueNumberValidator.directive.ngfactory.d.ts.map +0 -1
  1319. package/forms/src/directives/numberInput/minValueNumberValidator.directive.ngfactory.d.ts.map +0 -1
  1320. package/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.ngfactory.d.ts.map +0 -1
  1321. package/forms/src/directives/numberInput/numberInputValidator.directive.ngfactory.d.ts.map +0 -1
  1322. package/forms/src/directives/requiredClass/requiredClass.directive.ngfactory.d.ts.map +0 -1
  1323. package/forms/src/forms.d.ts +0 -20
  1324. package/forms/src/forms.d.ts.map +0 -1
  1325. package/forms/src/modules/hasError.module.ngfactory.d.ts.map +0 -1
  1326. package/forms/src/modules/numberInput.module.ngfactory.d.ts.map +0 -1
  1327. package/forms/src/modules/requiredClass.module.ngfactory.d.ts.map +0 -1
  1328. package/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.ngfactory.d.ts.map +0 -1
  1329. package/forms/src/services/submitted/submitted.service.ngfactory.d.ts.map +0 -1
  1330. package/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.ngfactory.d.ts.map +0 -1
  1331. package/hmr/dist/es2015/hmr/index.js +0 -10
  1332. package/hmr/dist/es2015/hmr/public_api.js +0 -7
  1333. package/hmr/dist/es2015/hmr/src/hmr.js +0 -84
  1334. package/hmr/dist/es5/hmr/index.js +0 -10
  1335. package/hmr/dist/es5/hmr/public_api.js +0 -7
  1336. package/hmr/dist/es5/hmr/src/hmr.js +0 -85
  1337. package/hmr/index.d.ts +0 -5
  1338. package/hmr/index.d.ts.map +0 -1
  1339. package/hmr/index.metadata.json +0 -1
  1340. package/hmr/public_api.d.ts +0 -2
  1341. package/hmr/public_api.d.ts.map +0 -1
  1342. package/hmr/src/hmr.d.ts +0 -13
  1343. package/hmr/src/hmr.d.ts.map +0 -1
  1344. package/hotkeys/dist/es2015/hotkeys/index.js +0 -10
  1345. package/hotkeys/dist/es2015/hotkeys/public_api.js +0 -7
  1346. package/hotkeys/dist/es2015/hotkeys/src/hotkeys.js +0 -7
  1347. package/hotkeys/dist/es2015/hotkeys/src/services/appHotkeys.service.js +0 -205
  1348. package/hotkeys/dist/es5/hotkeys/index.js +0 -10
  1349. package/hotkeys/dist/es5/hotkeys/public_api.js +0 -7
  1350. package/hotkeys/dist/es5/hotkeys/src/hotkeys.js +0 -7
  1351. package/hotkeys/dist/es5/hotkeys/src/services/appHotkeys.service.js +0 -241
  1352. package/hotkeys/index.d.ts +0 -5
  1353. package/hotkeys/index.d.ts.map +0 -1
  1354. package/hotkeys/index.metadata.json +0 -1
  1355. package/hotkeys/public_api.d.ts +0 -2
  1356. package/hotkeys/public_api.d.ts.map +0 -1
  1357. package/hotkeys/src/hotkeys.d.ts +0 -2
  1358. package/hotkeys/src/hotkeys.d.ts.map +0 -1
  1359. package/material/dist/es2015/material/index.js +0 -11
  1360. package/material/dist/es2015/material/public_api.js +0 -7
  1361. package/material/dist/es2015/material/src/components/confirmationDialog/confirmationDialog.component.js +0 -66
  1362. package/material/dist/es2015/material/src/components/titledDialog/titledDialog.component.js +0 -65
  1363. package/material/dist/es2015/material/src/directives/confirmationDialog/confirmationDialog.directive.js +0 -163
  1364. package/material/dist/es2015/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +0 -70
  1365. package/material/dist/es2015/material/src/material.js +0 -15
  1366. package/material/dist/es2015/material/src/misc/interfaces/confirmationDialog.interface.js +0 -65
  1367. package/material/dist/es2015/material/src/misc/interfaces/titledDialog.interface.js +0 -47
  1368. package/material/dist/es2015/material/src/misc/tokens.js +0 -12
  1369. package/material/dist/es2015/material/src/modules/confirmationDialog.module.js +0 -33
  1370. package/material/dist/es2015/material/src/modules/debugDataCopyClick.module.js +0 -26
  1371. package/material/dist/es2015/material/src/modules/titledDialog.module.js +0 -30
  1372. package/material/dist/es2015/material/src/services/titledDialog/titledDialog.service.js +0 -55
  1373. package/material/dist/es5/material/index.js +0 -11
  1374. package/material/dist/es5/material/public_api.js +0 -7
  1375. package/material/dist/es5/material/src/components/confirmationDialog/confirmationDialog.component.js +0 -63
  1376. package/material/dist/es5/material/src/components/titledDialog/titledDialog.component.js +0 -66
  1377. package/material/dist/es5/material/src/directives/confirmationDialog/confirmationDialog.directive.js +0 -208
  1378. package/material/dist/es5/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +0 -83
  1379. package/material/dist/es5/material/src/material.js +0 -15
  1380. package/material/dist/es5/material/src/misc/interfaces/confirmationDialog.interface.js +0 -65
  1381. package/material/dist/es5/material/src/misc/interfaces/titledDialog.interface.js +0 -47
  1382. package/material/dist/es5/material/src/misc/tokens.js +0 -12
  1383. package/material/dist/es5/material/src/modules/confirmationDialog.module.js +0 -37
  1384. package/material/dist/es5/material/src/modules/debugDataCopyClick.module.js +0 -30
  1385. package/material/dist/es5/material/src/modules/titledDialog.module.js +0 -34
  1386. package/material/dist/es5/material/src/services/titledDialog/titledDialog.service.js +0 -70
  1387. package/material/index.d.ts +0 -7
  1388. package/material/index.d.ts.map +0 -1
  1389. package/material/index.metadata.json +0 -1
  1390. package/material/public_api.d.ts +0 -2
  1391. package/material/public_api.d.ts.map +0 -1
  1392. package/material/src/components/confirmationDialog/confirmationDialog.component.ngfactory.d.ts.map +0 -1
  1393. package/material/src/components/titledDialog/titledDialog.component.css.shim.ngstyle.d.ts.map +0 -1
  1394. package/material/src/components/titledDialog/titledDialog.component.ngfactory.d.ts.map +0 -1
  1395. package/material/src/directives/confirmationDialog/confirmationDialog.directive.ngfactory.d.ts.map +0 -1
  1396. package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.ngfactory.d.ts.map +0 -1
  1397. package/material/src/material.d.ts +0 -11
  1398. package/material/src/material.d.ts.map +0 -1
  1399. package/material/src/modules/confirmationDialog.module.ngfactory.d.ts.map +0 -1
  1400. package/material/src/modules/debugDataCopyClick.module.ngfactory.d.ts.map +0 -1
  1401. package/material/src/modules/titledDialog.module.ngfactory.d.ts.map +0 -1
  1402. package/material/src/services/titledDialog/titledDialog.service.ngfactory.d.ts.map +0 -1
  1403. package/moment/dist/es2015/forms/src/directives/groupHasError/groupHasError.directive.js +0 -128
  1404. package/moment/dist/es2015/forms/src/directives/hasError/hasError.directive.js +0 -300
  1405. package/moment/dist/es2015/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -104
  1406. package/moment/dist/es2015/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -104
  1407. package/moment/dist/es2015/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -125
  1408. package/moment/dist/es2015/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -41
  1409. package/moment/dist/es2015/forms/src/directives/requiredClass/requiredClass.directive.js +0 -89
  1410. package/moment/dist/es2015/forms/src/forms.js +0 -25
  1411. package/moment/dist/es2015/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -17
  1412. package/moment/dist/es2015/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -17
  1413. package/moment/dist/es2015/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -16
  1414. package/moment/dist/es2015/forms/src/misc/formModel/decorators/email.decorator.js +0 -17
  1415. package/moment/dist/es2015/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -17
  1416. package/moment/dist/es2015/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -34
  1417. package/moment/dist/es2015/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -17
  1418. package/moment/dist/es2015/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -34
  1419. package/moment/dist/es2015/forms/src/misc/formModel/decorators/index.js +0 -25
  1420. package/moment/dist/es2015/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -60
  1421. package/moment/dist/es2015/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -18
  1422. package/moment/dist/es2015/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -18
  1423. package/moment/dist/es2015/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -18
  1424. package/moment/dist/es2015/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -18
  1425. package/moment/dist/es2015/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -52
  1426. package/moment/dist/es2015/forms/src/misc/formModel/decorators/number.decorator.js +0 -17
  1427. package/moment/dist/es2015/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -18
  1428. package/moment/dist/es2015/forms/src/misc/formModel/decorators/required.decorator.js +0 -17
  1429. package/moment/dist/es2015/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -39
  1430. package/moment/dist/es2015/forms/src/misc/formModel/decorators/validator.decorator.js +0 -17
  1431. package/moment/dist/es2015/forms/src/misc/formModel/index.js +0 -13
  1432. package/moment/dist/es2015/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -29
  1433. package/moment/dist/es2015/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -49
  1434. package/moment/dist/es2015/forms/src/misc/formModel/interfaces/validator.interface.js +0 -18
  1435. package/moment/dist/es2015/forms/src/misc/formModel/misc/currentValue.js +0 -40
  1436. package/moment/dist/es2015/forms/src/misc/formModel/misc/defaults.js +0 -19
  1437. package/moment/dist/es2015/forms/src/misc/formModel/misc/utils.js +0 -134
  1438. package/moment/dist/es2015/forms/src/misc/formModel/misc/validatorFactories.js +0 -64
  1439. package/moment/dist/es2015/forms/src/misc/types.js +0 -12
  1440. package/moment/dist/es2015/forms/src/misc/utils.js +0 -135
  1441. package/moment/dist/es2015/forms/src/misc/validators.js +0 -65
  1442. package/moment/dist/es2015/forms/src/modules/hasError.module.js +0 -22
  1443. package/moment/dist/es2015/forms/src/modules/numberInput.module.js +0 -28
  1444. package/moment/dist/es2015/forms/src/modules/requiredClass.module.js +0 -19
  1445. package/moment/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -23
  1446. package/moment/dist/es2015/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -107
  1447. package/moment/dist/es2015/forms/src/services/submitted/submitted.service.js +0 -69
  1448. package/moment/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -109
  1449. package/moment/dist/es2015/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -371
  1450. package/moment/dist/es2015/moment/index.js +0 -12
  1451. package/moment/dist/es2015/moment/public_api.js +0 -7
  1452. package/moment/dist/es2015/moment/src/misc/utils.js +0 -41
  1453. package/moment/dist/es2015/moment/src/modules/moment.module.js +0 -26
  1454. package/moment/dist/es2015/moment/src/moment.js +0 -8
  1455. package/moment/dist/es2015/moment/src/pipes/momentConvert/momentConvert.pipe.js +0 -34
  1456. package/moment/dist/es2015/moment/src/pipes/momentFormat/momentFormat.pipe.js +0 -38
  1457. package/moment/dist/es5/forms/src/directives/groupHasError/groupHasError.directive.js +0 -159
  1458. package/moment/dist/es5/forms/src/directives/hasError/hasError.directive.js +0 -368
  1459. package/moment/dist/es5/forms/src/directives/numberInput/maxValueNumberValidator.directive.js +0 -123
  1460. package/moment/dist/es5/forms/src/directives/numberInput/minValueNumberValidator.directive.js +0 -123
  1461. package/moment/dist/es5/forms/src/directives/numberInput/numberInputControlValueAccessor.directive.js +0 -150
  1462. package/moment/dist/es5/forms/src/directives/numberInput/numberInputValidator.directive.js +0 -58
  1463. package/moment/dist/es5/forms/src/directives/requiredClass/requiredClass.directive.js +0 -105
  1464. package/moment/dist/es5/forms/src/forms.js +0 -25
  1465. package/moment/dist/es5/forms/src/misc/formModel/decorators/asyncValidator.decorator.js +0 -17
  1466. package/moment/dist/es5/forms/src/misc/formModel/decorators/controlOptions.decorator.js +0 -17
  1467. package/moment/dist/es5/forms/src/misc/formModel/decorators/disabled.decorator.js +0 -16
  1468. package/moment/dist/es5/forms/src/misc/formModel/decorators/email.decorator.js +0 -17
  1469. package/moment/dist/es5/forms/src/misc/formModel/decorators/formArrayProperty.decorator.js +0 -17
  1470. package/moment/dist/es5/forms/src/misc/formModel/decorators/formGroupAsyncValidator.decorator.js +0 -34
  1471. package/moment/dist/es5/forms/src/misc/formModel/decorators/formGroupProperty.decorator.js +0 -17
  1472. package/moment/dist/es5/forms/src/misc/formModel/decorators/formGroupValidator.decorator.js +0 -34
  1473. package/moment/dist/es5/forms/src/misc/formModel/decorators/index.js +0 -25
  1474. package/moment/dist/es5/forms/src/misc/formModel/decorators/invalidateOnChange.decorator.js +0 -60
  1475. package/moment/dist/es5/forms/src/misc/formModel/decorators/maxLength.decorator.js +0 -18
  1476. package/moment/dist/es5/forms/src/misc/formModel/decorators/maxValue.decorator.js +0 -18
  1477. package/moment/dist/es5/forms/src/misc/formModel/decorators/minLength.decorator.js +0 -18
  1478. package/moment/dist/es5/forms/src/misc/formModel/decorators/minValue.decorator.js +0 -18
  1479. package/moment/dist/es5/forms/src/misc/formModel/decorators/modelPropertyMetadata.decorator.js +0 -62
  1480. package/moment/dist/es5/forms/src/misc/formModel/decorators/number.decorator.js +0 -17
  1481. package/moment/dist/es5/forms/src/misc/formModel/decorators/pattern.decorator.js +0 -18
  1482. package/moment/dist/es5/forms/src/misc/formModel/decorators/required.decorator.js +0 -17
  1483. package/moment/dist/es5/forms/src/misc/formModel/decorators/requiredIf.decorator.js +0 -39
  1484. package/moment/dist/es5/forms/src/misc/formModel/decorators/validator.decorator.js +0 -17
  1485. package/moment/dist/es5/forms/src/misc/formModel/index.js +0 -13
  1486. package/moment/dist/es5/forms/src/misc/formModel/interfaces/modelDecoratorMetadata.js +0 -29
  1487. package/moment/dist/es5/forms/src/misc/formModel/interfaces/modelPropertyDecoratorMetadata.js +0 -49
  1488. package/moment/dist/es5/forms/src/misc/formModel/interfaces/validator.interface.js +0 -18
  1489. package/moment/dist/es5/forms/src/misc/formModel/misc/currentValue.js +0 -50
  1490. package/moment/dist/es5/forms/src/misc/formModel/misc/defaults.js +0 -19
  1491. package/moment/dist/es5/forms/src/misc/formModel/misc/utils.js +0 -150
  1492. package/moment/dist/es5/forms/src/misc/formModel/misc/validatorFactories.js +0 -104
  1493. package/moment/dist/es5/forms/src/misc/types.js +0 -12
  1494. package/moment/dist/es5/forms/src/misc/utils.js +0 -139
  1495. package/moment/dist/es5/forms/src/misc/validators.js +0 -102
  1496. package/moment/dist/es5/forms/src/modules/hasError.module.js +0 -26
  1497. package/moment/dist/es5/forms/src/modules/numberInput.module.js +0 -32
  1498. package/moment/dist/es5/forms/src/modules/requiredClass.module.js +0 -23
  1499. package/moment/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.interface.js +0 -23
  1500. package/moment/dist/es5/forms/src/services/errorMessagesExtractor/errorMessagesExtractor.service.js +0 -120
  1501. package/moment/dist/es5/forms/src/services/submitted/submitted.service.js +0 -100
  1502. package/moment/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.interface.js +0 -109
  1503. package/moment/dist/es5/forms/src/services/validationErrorRenderer/validationErrorRenderer.service.js +0 -492
  1504. package/moment/dist/es5/moment/index.js +0 -12
  1505. package/moment/dist/es5/moment/public_api.js +0 -7
  1506. package/moment/dist/es5/moment/src/misc/utils.js +0 -42
  1507. package/moment/dist/es5/moment/src/modules/moment.module.js +0 -30
  1508. package/moment/dist/es5/moment/src/moment.js +0 -8
  1509. package/moment/dist/es5/moment/src/pipes/momentConvert/momentConvert.pipe.js +0 -50
  1510. package/moment/dist/es5/moment/src/pipes/momentFormat/momentFormat.pipe.js +0 -57
  1511. package/moment/index.d.ts +0 -7
  1512. package/moment/index.d.ts.map +0 -1
  1513. package/moment/index.metadata.json +0 -1
  1514. package/moment/public_api.d.ts +0 -2
  1515. package/moment/public_api.d.ts.map +0 -1
  1516. package/moment/src/modules/moment.module.ngfactory.d.ts.map +0 -1
  1517. package/moment/src/moment.d.ts +0 -3
  1518. package/moment/src/moment.d.ts.map +0 -1
  1519. package/moment/src/pipes/momentConvert/momentConvert.pipe.ngfactory.d.ts.map +0 -1
  1520. package/moment/src/pipes/momentFormat/momentFormat.pipe.ngfactory.d.ts.map +0 -1
  1521. package/numeral/dist/es2015/numeral/index.js +0 -10
  1522. package/numeral/dist/es2015/numeral/public_api.js +0 -7
  1523. package/numeral/dist/es2015/numeral/src/modules/numeral.module.js +0 -19
  1524. package/numeral/dist/es2015/numeral/src/numeral.js +0 -8
  1525. package/numeral/dist/es2015/numeral/src/pipes/numeral.pipe.js +0 -70
  1526. package/numeral/dist/es5/numeral/index.js +0 -10
  1527. package/numeral/dist/es5/numeral/public_api.js +0 -7
  1528. package/numeral/dist/es5/numeral/src/modules/numeral.module.js +0 -23
  1529. package/numeral/dist/es5/numeral/src/numeral.js +0 -8
  1530. package/numeral/dist/es5/numeral/src/pipes/numeral.pipe.js +0 -93
  1531. package/numeral/index.d.ts +0 -5
  1532. package/numeral/index.d.ts.map +0 -1
  1533. package/numeral/index.metadata.json +0 -1
  1534. package/numeral/public_api.d.ts +0 -2
  1535. package/numeral/public_api.d.ts.map +0 -1
  1536. package/numeral/src/modules/numeral.module.ngfactory.d.ts.map +0 -1
  1537. package/numeral/src/numeral.d.ts +0 -3
  1538. package/numeral/src/numeral.d.ts.map +0 -1
  1539. package/numeral/src/pipes/numeral.pipe.ngfactory.d.ts.map +0 -1
  1540. package/positions/dist/es2015/positions/index.js +0 -10
  1541. package/positions/dist/es2015/positions/public_api.js +0 -7
  1542. package/positions/dist/es2015/positions/src/misc/utils.js +0 -148
  1543. package/positions/dist/es2015/positions/src/modules/positions/directives/positionTo/positionTo.directive.js +0 -99
  1544. package/positions/dist/es2015/positions/src/modules/positions/modules/positions.module.js +0 -24
  1545. package/positions/dist/es2015/positions/src/modules/tooltip/components/tooltip/tooltip.component.js +0 -161
  1546. package/positions/dist/es2015/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js +0 -352
  1547. package/positions/dist/es2015/positions/src/modules/tooltip/misc/tokens.js +0 -12
  1548. package/positions/dist/es2015/positions/src/modules/tooltip/misc/tooltip.interface.js +0 -94
  1549. package/positions/dist/es2015/positions/src/modules/tooltip/modules/tooltip.module.js +0 -29
  1550. package/positions/dist/es2015/positions/src/positions.js +0 -14
  1551. package/positions/dist/es5/positions/index.js +0 -10
  1552. package/positions/dist/es5/positions/public_api.js +0 -7
  1553. package/positions/dist/es5/positions/src/misc/utils.js +0 -151
  1554. package/positions/dist/es5/positions/src/modules/positions/directives/positionTo/positionTo.directive.js +0 -109
  1555. package/positions/dist/es5/positions/src/modules/positions/modules/positions.module.js +0 -28
  1556. package/positions/dist/es5/positions/src/modules/tooltip/components/tooltip/tooltip.component.js +0 -201
  1557. package/positions/dist/es5/positions/src/modules/tooltip/directives/tooltip/tooltip.directive.js +0 -448
  1558. package/positions/dist/es5/positions/src/modules/tooltip/misc/tokens.js +0 -12
  1559. package/positions/dist/es5/positions/src/modules/tooltip/misc/tooltip.interface.js +0 -94
  1560. package/positions/dist/es5/positions/src/modules/tooltip/modules/tooltip.module.js +0 -33
  1561. package/positions/dist/es5/positions/src/positions.js +0 -14
  1562. package/positions/index.d.ts +0 -5
  1563. package/positions/index.d.ts.map +0 -1
  1564. package/positions/index.metadata.json +0 -1
  1565. package/positions/public_api.d.ts +0 -2
  1566. package/positions/public_api.d.ts.map +0 -1
  1567. package/positions/src/positions.d.ts +0 -9
  1568. package/positions/src/positions.d.ts.map +0 -1
  1569. package/public_api.d.ts +0 -2
  1570. package/public_api.d.ts.map +0 -1
  1571. package/router/dist/es2015/router/index.js +0 -10
  1572. package/router/dist/es2015/router/public_api.js +0 -7
  1573. package/router/dist/es2015/router/src/decorators/componentRedirectRoute.decorator.js +0 -67
  1574. package/router/dist/es2015/router/src/decorators/componentRoute.decorator.js +0 -46
  1575. package/router/dist/es2015/router/src/decorators/moduleRoutes.decorator.js +0 -96
  1576. package/router/dist/es2015/router/src/misc/utils.js +0 -49
  1577. package/router/dist/es2015/router/src/router.js +0 -12
  1578. package/router/dist/es2015/router/src/services/routing/dataRouter.js +0 -130
  1579. package/router/dist/es2015/router/src/services/routing/dataRouterData.js +0 -35
  1580. package/router/dist/es5/router/index.js +0 -10
  1581. package/router/dist/es5/router/public_api.js +0 -7
  1582. package/router/dist/es5/router/src/decorators/componentRedirectRoute.decorator.js +0 -67
  1583. package/router/dist/es5/router/src/decorators/componentRoute.decorator.js +0 -46
  1584. package/router/dist/es5/router/src/decorators/moduleRoutes.decorator.js +0 -96
  1585. package/router/dist/es5/router/src/misc/utils.js +0 -49
  1586. package/router/dist/es5/router/src/router.js +0 -12
  1587. package/router/dist/es5/router/src/services/routing/dataRouter.js +0 -154
  1588. package/router/dist/es5/router/src/services/routing/dataRouterData.js +0 -34
  1589. package/router/index.d.ts +0 -5
  1590. package/router/index.d.ts.map +0 -1
  1591. package/router/index.metadata.json +0 -1
  1592. package/router/public_api.d.ts +0 -2
  1593. package/router/public_api.d.ts.map +0 -1
  1594. package/router/src/router.d.ts +0 -7
  1595. package/router/src/router.d.ts.map +0 -1
  1596. package/src/common.d.ts +0 -39
  1597. package/src/common.d.ts.map +0 -1
  1598. package/src/decorators/hmrData.decorator.d.ts +0 -7
  1599. package/src/decorators/hmrData.decorator.d.ts.map +0 -1
  1600. package/src/decorators/hmrServiceData.decorator.d.ts +0 -7
  1601. package/src/decorators/hmrServiceData.decorator.d.ts.map +0 -1
  1602. package/src/decorators/hmrServiceDataConstructor.decorator.d.ts +0 -7
  1603. package/src/decorators/hmrServiceDataConstructor.decorator.d.ts.map +0 -1
  1604. package/src/directives/ngComponentOutletEx/ngComponentOutletEx.directive.ngfactory.d.ts.map +0 -1
  1605. package/src/modules/clickOutside/directives/clickOutside/clickOutside.directive.ngfactory.d.ts.map +0 -1
  1606. package/src/modules/clickOutside/modules/clickOutside.module.ngfactory.d.ts.map +0 -1
  1607. package/src/modules/common.module.d.ts +0 -6
  1608. package/src/modules/common.module.d.ts.map +0 -1
  1609. package/src/modules/common.module.ngfactory.d.ts.map +0 -1
  1610. package/src/modules/debugData/components/debugData/debugData.component.css.shim.ngstyle.d.ts.map +0 -1
  1611. package/src/modules/debugData/components/debugData/debugData.component.ngfactory.d.ts.map +0 -1
  1612. package/src/modules/debugData/modules/debugData.module.ngfactory.d.ts.map +0 -1
  1613. package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.ngfactory.d.ts.map +0 -1
  1614. package/src/modules/multiButton/components/multiButton/multiButton.component.css.shim.ngstyle.d.ts.map +0 -1
  1615. package/src/modules/multiButton/components/multiButton/multiButton.component.ngfactory.d.ts.map +0 -1
  1616. package/src/modules/multiButton/modules/multiButton.module.ngfactory.d.ts.map +0 -1
  1617. package/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.css.shim.ngstyle.d.ts.map +0 -1
  1618. package/src/modules/progressIndicator/components/progressIndicator/progressIndicator.component.ngfactory.d.ts.map +0 -1
  1619. package/src/modules/progressIndicator/directives/progressOverlay/progressOverlay.directive.ngfactory.d.ts.map +0 -1
  1620. package/src/modules/progressIndicator/interceptors/progressInterceptor.ngfactory.d.ts.map +0 -1
  1621. package/src/modules/progressIndicator/misc/types.d.ts +0 -10
  1622. package/src/modules/progressIndicator/misc/types.d.ts.map +0 -1
  1623. package/src/modules/progressIndicator/modules/progressIndicator.module.ngfactory.d.ts.map +0 -1
  1624. package/src/modules/progressIndicator/services/progressIndicator.service.ngfactory.d.ts.map +0 -1
  1625. package/src/pipes/isNaN/isNaN.pipe.ngfactory.d.ts.map +0 -1
  1626. package/src/pipes/isPresent/isPresent.pipe.ngfactory.d.ts.map +0 -1
  1627. package/src/pipes/localize/localize.pipe.ngfactory.d.ts.map +0 -1
  1628. package/src/pipes/urlEncode/urlEncode.pipe.ngfactory.d.ts.map +0 -1
  1629. package/src/services/cookies/cookies.service.ngfactory.d.ts.map +0 -1
  1630. package/src/services/ignoredInterceptors/ignoredInterceptors.service.d.ts +0 -36
  1631. package/src/services/ignoredInterceptors/ignoredInterceptors.service.d.ts.map +0 -1
  1632. package/src/services/ignoredInterceptors/ignoredInterceptors.service.ngfactory.d.ts.map +0 -1
  1633. package/src/services/notifications/defaultNotifications.service.ngfactory.d.ts.map +0 -1
  1634. package/src/services/permanentStorage/cookiePermanentStorage.service.ngfactory.d.ts.map +0 -1
  1635. package/src/services/positioning/index.d.ts +0 -2
  1636. package/src/services/positioning/index.d.ts.map +0 -1
  1637. package/src/services/positioning/positioning.interface.d.ts +0 -6
  1638. package/src/services/positioning/positioning.interface.d.ts.map +0 -1
  1639. package/src/services/statusCode/statusCode.service.ngfactory.d.ts.map +0 -1
  1640. package/src/services/stringLocalization/noStringLocalization.service.ngfactory.d.ts.map +0 -1
  1641. package/src/services/temporaryStorage/memoryTemporaryStorage.service.ngfactory.d.ts.map +0 -1
  1642. package/src/types/additionalInfo.d.ts +0 -11
  1643. package/src/types/additionalInfo.d.ts.map +0 -1
  1644. package/src/utils/httpRequest.extension.d.ts +0 -5
  1645. package/src/utils/httpRequest.extension.d.ts.map +0 -1
  1646. package/store/dist/es2015/store/index.js +0 -10
  1647. package/store/dist/es2015/store/public_api.js +0 -7
  1648. package/store/dist/es2015/store/src/services/index.js +0 -8
  1649. package/store/dist/es2015/store/src/services/permanentStorage/localPermanentStorage.service.js +0 -56
  1650. package/store/dist/es2015/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +0 -43
  1651. package/store/dist/es2015/store/src/store.js +0 -7
  1652. package/store/dist/es5/store/index.js +0 -10
  1653. package/store/dist/es5/store/public_api.js +0 -7
  1654. package/store/dist/es5/store/src/services/index.js +0 -8
  1655. package/store/dist/es5/store/src/services/permanentStorage/localPermanentStorage.service.js +0 -93
  1656. package/store/dist/es5/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +0 -80
  1657. package/store/dist/es5/store/src/store.js +0 -7
  1658. package/store/index.d.ts +0 -5
  1659. package/store/index.d.ts.map +0 -1
  1660. package/store/index.metadata.json +0 -1
  1661. package/store/public_api.d.ts +0 -2
  1662. package/store/public_api.d.ts.map +0 -1
  1663. package/store/src/services/permanentStorage/localPermanentStorage.service.ngfactory.d.ts.map +0 -1
  1664. package/store/src/services/temporaryStorage/sessionTemporaryStorage.service.ngfactory.d.ts.map +0 -1
  1665. package/store/src/store.d.ts +0 -2
  1666. package/store/src/store.d.ts.map +0 -1
  1667. package/structured-log/dist/es2015/structured-log/index.js +0 -10
  1668. package/structured-log/dist/es2015/structured-log/public_api.js +0 -7
  1669. package/structured-log/dist/es2015/structured-log/src/components/console/console.component.animations.js +0 -37
  1670. package/structured-log/dist/es2015/structured-log/src/components/console/console.component.js +0 -156
  1671. package/structured-log/dist/es2015/structured-log/src/misc/utils.js +0 -47
  1672. package/structured-log/dist/es2015/structured-log/src/modules/consoleLog.module.js +0 -43
  1673. package/structured-log/dist/es2015/structured-log/src/services/console/consoleComponentSink.service.js +0 -150
  1674. package/structured-log/dist/es2015/structured-log/src/services/console/consoleSinkConfig.service.js +0 -56
  1675. package/structured-log/dist/es2015/structured-log/src/services/logger.service.js +0 -93
  1676. package/structured-log/dist/es2015/structured-log/src/services/rest/restSink.service.js +0 -176
  1677. package/structured-log/dist/es2015/structured-log/src/services/rest/restSinkConfig.service.js +0 -67
  1678. package/structured-log/dist/es2015/structured-log/src/structured-log.js +0 -17
  1679. package/structured-log/dist/es2015/structured-log/src/types/logger.interface.js +0 -85
  1680. package/structured-log/dist/es2015/structured-log/src/types/tokens.js +0 -70
  1681. package/structured-log/dist/es5/structured-log/index.js +0 -10
  1682. package/structured-log/dist/es5/structured-log/public_api.js +0 -7
  1683. package/structured-log/dist/es5/structured-log/src/components/console/console.component.animations.js +0 -37
  1684. package/structured-log/dist/es5/structured-log/src/components/console/console.component.js +0 -209
  1685. package/structured-log/dist/es5/structured-log/src/misc/utils.js +0 -47
  1686. package/structured-log/dist/es5/structured-log/src/modules/consoleLog.module.js +0 -57
  1687. package/structured-log/dist/es5/structured-log/src/services/console/consoleComponentSink.service.js +0 -198
  1688. package/structured-log/dist/es5/structured-log/src/services/console/consoleSinkConfig.service.js +0 -58
  1689. package/structured-log/dist/es5/structured-log/src/services/logger.service.js +0 -146
  1690. package/structured-log/dist/es5/structured-log/src/services/rest/restSink.service.js +0 -216
  1691. package/structured-log/dist/es5/structured-log/src/services/rest/restSinkConfig.service.js +0 -69
  1692. package/structured-log/dist/es5/structured-log/src/structured-log.js +0 -17
  1693. package/structured-log/dist/es5/structured-log/src/types/logger.interface.js +0 -85
  1694. package/structured-log/dist/es5/structured-log/src/types/tokens.js +0 -70
  1695. package/structured-log/index.d.ts +0 -5
  1696. package/structured-log/index.d.ts.map +0 -1
  1697. package/structured-log/index.metadata.json +0 -1
  1698. package/structured-log/public_api.d.ts +0 -2
  1699. package/structured-log/public_api.d.ts.map +0 -1
  1700. package/structured-log/src/components/console/console.component.css.shim.ngstyle.d.ts.map +0 -1
  1701. package/structured-log/src/components/console/console.component.ngfactory.d.ts.map +0 -1
  1702. package/structured-log/src/modules/consoleLog.module.ngfactory.d.ts.map +0 -1
  1703. package/structured-log/src/services/console/consoleComponentSink.service.ngfactory.d.ts.map +0 -1
  1704. package/structured-log/src/services/console/consoleSinkConfig.service.ngfactory.d.ts.map +0 -1
  1705. package/structured-log/src/services/logger.service.ngfactory.d.ts.map +0 -1
  1706. package/structured-log/src/services/rest/restSink.service.ngfactory.d.ts.map +0 -1
  1707. package/structured-log/src/services/rest/restSinkConfig.service.ngfactory.d.ts.map +0 -1
  1708. package/structured-log/src/structured-log.d.ts +0 -12
  1709. package/structured-log/src/structured-log.d.ts.map +0 -1
@@ -0,0 +1,106 @@
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.2.2", 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.2.2", ngImport: i0, type: CookieService, providedIn: 'root' });
94
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", 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
@@ -0,0 +1 @@
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}"]}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Globalization service for handling globalization changes
3
+ */
4
+ export class GlobalizationService {
5
+ }
6
+ //# sourceMappingURL=globalization.service.js.map
@@ -0,0 +1 @@
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}"]}
@@ -0,0 +1,3 @@
1
+ export * from './logger.interface';
2
+ export * from './logger.service';
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
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';"]}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=logger.interface.js.map
@@ -0,0 +1 @@
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}"]}
@@ -0,0 +1,18 @@
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
@@ -0,0 +1 @@
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}"]}
@@ -0,0 +1,228 @@
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.2.2", 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.2.2", ngImport: i0, type: DefaultNotificationsService });
183
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", 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 !== null && token !== void 0 ? 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
@@ -0,0 +1 @@
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,aAAL,KAAK,cAAL,KAAK,GAAI,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};"]}
@@ -0,0 +1,4 @@
1
+ export * from './notifications.interface';
2
+ export * from './notificationsOptions';
3
+ export * from './defaultNotifications.service';
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
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';"]}
@@ -0,0 +1,55 @@
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
@@ -0,0 +1 @@
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}"]}
@@ -0,0 +1,18 @@
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
@@ -0,0 +1 @@
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}"]}
@@ -0,0 +1,43 @@
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.2.2", ngImport: i0, type: CookiePermanentStorageService, deps: [{ token: i1.CookieService }], target: i0.ɵɵFactoryTarget.Injectable });
39
+ CookiePermanentStorageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CookiePermanentStorageService });
40
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CookiePermanentStorageService, decorators: [{
41
+ type: Injectable
42
+ }], ctorParameters: function () { return [{ type: i1.CookieService }]; } });
43
+ //# sourceMappingURL=cookiePermanentStorage.service.js.map
@@ -0,0 +1 @@
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}"]}
@@ -0,0 +1,3 @@
1
+ export * from './cookiePermanentStorage.service';
2
+ export * from './permanentStorage.interface';
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
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';"]}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=permanentStorage.interface.js.map
@@ -0,0 +1 @@
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}"]}