@anglr/common 18.0.0-beta.20230822095843 → 18.0.0-beta.20230823100805

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 (274) hide show
  1. package/changelog.md +125 -0
  2. package/es2022/floating-ui/src/services/floatingUiDomPosition.service.js +7 -22
  3. package/es2022/floating-ui/src/services/floatingUiDomPosition.service.js.map +1 -1
  4. package/es2022/src/index.js +4 -3
  5. package/es2022/src/index.js.map +1 -1
  6. package/es2022/src/modules/castPipes/pipes/castType/castType.pipe.js.map +1 -1
  7. package/es2022/src/modules/logger/components/console/console.component.animations.js.map +1 -0
  8. package/es2022/src/modules/logger/components/console/console.component.js +106 -0
  9. package/es2022/src/modules/logger/components/console/console.component.js.map +1 -0
  10. package/es2022/src/modules/logger/components/index.js +3 -0
  11. package/es2022/src/modules/logger/components/index.js.map +1 -0
  12. package/es2022/src/modules/logger/decorators/index.js +2 -0
  13. package/es2022/src/modules/logger/decorators/index.js.map +1 -0
  14. package/es2022/src/modules/logger/decorators/loggerSink.decorator.js +28 -0
  15. package/es2022/src/modules/logger/decorators/loggerSink.decorator.js.map +1 -0
  16. package/es2022/src/modules/logger/index.js +7 -0
  17. package/es2022/src/modules/logger/index.js.map +1 -0
  18. package/es2022/src/modules/logger/interfaces/index.js +7 -0
  19. package/es2022/src/modules/logger/interfaces/index.js.map +1 -0
  20. package/es2022/src/modules/logger/interfaces/loggerConfiguration.interface.js +2 -0
  21. package/es2022/src/modules/logger/interfaces/loggerConfiguration.interface.js.map +1 -0
  22. package/es2022/src/modules/logger/interfaces/loggerConsoleComponent.interface.js +2 -0
  23. package/es2022/src/modules/logger/interfaces/loggerConsoleComponent.interface.js.map +1 -0
  24. package/es2022/src/modules/logger/interfaces/loggerEnricher.interface.js +2 -0
  25. package/es2022/src/modules/logger/interfaces/loggerEnricher.interface.js.map +1 -0
  26. package/es2022/src/modules/logger/interfaces/loggerFilter.interface.js +2 -0
  27. package/es2022/src/modules/logger/interfaces/loggerFilter.interface.js.map +1 -0
  28. package/es2022/src/modules/logger/interfaces/loggerRest.interface.js +2 -0
  29. package/es2022/src/modules/logger/interfaces/loggerRest.interface.js.map +1 -0
  30. package/es2022/src/modules/logger/interfaces/loggerSink.interface.js +2 -0
  31. package/es2022/src/modules/logger/interfaces/loggerSink.interface.js.map +1 -0
  32. package/es2022/src/modules/logger/misc/index.js +5 -0
  33. package/es2022/src/modules/logger/misc/index.js.map +1 -0
  34. package/es2022/src/modules/logger/misc/providers.js +56 -0
  35. package/es2022/src/modules/logger/misc/providers.js.map +1 -0
  36. package/es2022/src/modules/logger/misc/tokens.js +11 -0
  37. package/es2022/src/modules/logger/misc/tokens.js.map +1 -0
  38. package/es2022/src/modules/logger/misc/types.js +2 -0
  39. package/es2022/src/modules/logger/misc/types.js.map +1 -0
  40. package/es2022/src/modules/logger/misc/utils.js +24 -0
  41. package/es2022/src/modules/logger/misc/utils.js.map +1 -0
  42. package/es2022/src/modules/logger/services/console/consoleComponent.sink.js +67 -0
  43. package/es2022/src/modules/logger/services/console/consoleComponent.sink.js.map +1 -0
  44. package/es2022/src/modules/logger/services/console/consoleComponentSink.options.js +31 -0
  45. package/es2022/src/modules/logger/services/console/consoleComponentSink.options.js.map +1 -0
  46. package/es2022/src/modules/logger/services/developmentConsoleSink/developmentConsole.sink.js +68 -0
  47. package/es2022/src/modules/logger/services/developmentConsoleSink/developmentConsole.sink.js.map +1 -0
  48. package/es2022/src/modules/logger/services/index.js +11 -0
  49. package/es2022/src/modules/logger/services/index.js.map +1 -0
  50. package/es2022/src/modules/logger/services/logLevelEnricher/logLevelEnricher.enricher.js +52 -0
  51. package/es2022/src/modules/logger/services/logLevelEnricher/logLevelEnricher.enricher.js.map +1 -0
  52. package/es2022/src/modules/logger/services/logger/logger.interface.js.map +1 -0
  53. package/es2022/src/modules/logger/services/logger/logger.service.js +107 -0
  54. package/es2022/src/modules/logger/services/logger/logger.service.js.map +1 -0
  55. package/es2022/src/modules/logger/services/rest/rest.sink.js +100 -0
  56. package/es2022/src/modules/logger/services/rest/rest.sink.js.map +1 -0
  57. package/es2022/src/modules/logger/services/rest/restSink.options.js +43 -0
  58. package/es2022/src/modules/logger/services/rest/restSink.options.js.map +1 -0
  59. package/es2022/src/modules/logger/services/subLoggerSink/subLogger.sink.js +46 -0
  60. package/es2022/src/modules/logger/services/subLoggerSink/subLogger.sink.js.map +1 -0
  61. package/es2022/src/modules/logger/services/timestampEnricher/timestamp.enricher.js +14 -0
  62. package/es2022/src/modules/logger/services/timestampEnricher/timestamp.enricher.js.map +1 -0
  63. package/es2022/src/modules/logger/types/index.js +4 -0
  64. package/es2022/src/modules/logger/types/index.js.map +1 -0
  65. package/es2022/src/modules/logger/types/logLevel.enum.js +35 -0
  66. package/es2022/src/modules/logger/types/logLevel.enum.js.map +1 -0
  67. package/es2022/src/modules/logger/types/loggerConfiguration.js +114 -0
  68. package/es2022/src/modules/logger/types/loggerConfiguration.js.map +1 -0
  69. package/es2022/src/modules/logger/types/loggerOptions.js +41 -0
  70. package/es2022/src/modules/logger/types/loggerOptions.js.map +1 -0
  71. package/es2022/src/modules/logger/types/messageLog.js +55 -0
  72. package/es2022/src/modules/logger/types/messageLog.js.map +1 -0
  73. package/es2022/src/services/permanentStorage/cookiePermanentStorage.service.js +13 -27
  74. package/es2022/src/services/permanentStorage/cookiePermanentStorage.service.js.map +1 -1
  75. package/es2022/src/services/permanentStorage/permanentStorage.interface.js.map +1 -1
  76. package/es2022/src/services/position/position.interface.js.map +1 -1
  77. package/es2022/src/services/stringLocalization/noStringLocalization.service.js +5 -5
  78. package/es2022/src/services/stringLocalization/noStringLocalization.service.js.map +1 -1
  79. package/es2022/src/services/stringLocalization/stringLocalization.interface.js.map +1 -1
  80. package/es2022/src/services/temporaryStorage/memoryTemporaryStorage.service.js +5 -5
  81. package/es2022/src/services/temporaryStorage/memoryTemporaryStorage.service.js.map +1 -1
  82. package/es2022/src/services/temporaryStorage/temporaryStorage.interface.js.map +1 -1
  83. package/es2022/src/types/providers.js.map +1 -1
  84. package/es2022/src/types/tokens.js +7 -7
  85. package/es2022/src/types/tokens.js.map +1 -1
  86. package/es2022/store/src/index.js +1 -1
  87. package/es2022/store/src/index.js.map +1 -1
  88. package/es2022/store/src/services/permanentStorage/localPermanentStorage.service.js +13 -27
  89. package/es2022/store/src/services/permanentStorage/localPermanentStorage.service.js.map +1 -1
  90. package/es2022/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js +11 -26
  91. package/es2022/store/src/services/temporaryStorage/sessionTemporaryStorage.service.js.map +1 -1
  92. package/floating-ui/src/services/floatingUiDomPosition.service.d.ts +1 -5
  93. package/floating-ui/src/services/floatingUiDomPosition.service.d.ts.map +1 -1
  94. package/package.json +4 -30
  95. package/readme.md +0 -2
  96. package/src/index.d.ts +4 -4
  97. package/src/index.d.ts.map +1 -1
  98. package/src/modules/castPipes/pipes/castType/castType.pipe.d.ts +1 -1
  99. package/src/modules/castPipes/pipes/castType/castType.pipe.d.ts.map +1 -1
  100. package/src/modules/logger/components/console/console.component.d.ts +56 -0
  101. package/src/modules/logger/components/console/console.component.d.ts.map +1 -0
  102. package/src/modules/logger/components/index.d.ts +3 -0
  103. package/src/modules/logger/components/index.d.ts.map +1 -0
  104. package/src/modules/logger/decorators/index.d.ts +2 -0
  105. package/{positions/src → src/modules/logger/decorators}/index.d.ts.map +1 -1
  106. package/src/modules/logger/decorators/loggerSink.decorator.d.ts +11 -0
  107. package/src/modules/logger/decorators/loggerSink.decorator.d.ts.map +1 -0
  108. package/src/modules/logger/index.d.ts +7 -0
  109. package/src/modules/logger/index.d.ts.map +1 -0
  110. package/src/modules/logger/interfaces/index.d.ts +7 -0
  111. package/src/modules/logger/interfaces/index.d.ts.map +1 -0
  112. package/src/modules/logger/interfaces/loggerConfiguration.interface.d.ts +39 -0
  113. package/src/modules/logger/interfaces/loggerConfiguration.interface.d.ts.map +1 -0
  114. package/src/modules/logger/interfaces/loggerConsoleComponent.interface.d.ts +36 -0
  115. package/src/modules/logger/interfaces/loggerConsoleComponent.interface.d.ts.map +1 -0
  116. package/src/modules/logger/interfaces/loggerEnricher.interface.d.ts +19 -0
  117. package/src/modules/logger/interfaces/loggerEnricher.interface.d.ts.map +1 -0
  118. package/src/modules/logger/interfaces/loggerFilter.interface.d.ts +13 -0
  119. package/src/modules/logger/interfaces/loggerFilter.interface.d.ts.map +1 -0
  120. package/src/modules/logger/interfaces/loggerRest.interface.d.ts +29 -0
  121. package/src/modules/logger/interfaces/loggerRest.interface.d.ts.map +1 -0
  122. package/src/modules/logger/interfaces/loggerSink.interface.d.ts +35 -0
  123. package/src/modules/logger/interfaces/loggerSink.interface.d.ts.map +1 -0
  124. package/src/modules/logger/misc/index.d.ts +5 -0
  125. package/src/modules/logger/misc/index.d.ts.map +1 -0
  126. package/src/modules/logger/misc/providers.d.ts +25 -0
  127. package/src/modules/logger/misc/providers.d.ts.map +1 -0
  128. package/src/modules/logger/misc/tokens.d.ts +11 -0
  129. package/src/modules/logger/misc/tokens.d.ts.map +1 -0
  130. package/src/modules/logger/misc/types.d.ts +20 -0
  131. package/src/modules/logger/misc/types.d.ts.map +1 -0
  132. package/src/modules/logger/misc/utils.d.ts +15 -0
  133. package/src/modules/logger/misc/utils.d.ts.map +1 -0
  134. package/src/modules/logger/services/console/consoleComponent.sink.d.ts +38 -0
  135. package/src/modules/logger/services/console/consoleComponent.sink.d.ts.map +1 -0
  136. package/src/modules/logger/services/console/consoleComponentSink.options.d.ts +14 -0
  137. package/src/modules/logger/services/console/consoleComponentSink.options.d.ts.map +1 -0
  138. package/src/modules/logger/services/developmentConsoleSink/developmentConsole.sink.d.ts +18 -0
  139. package/src/modules/logger/services/developmentConsoleSink/developmentConsole.sink.d.ts.map +1 -0
  140. package/src/modules/logger/services/index.d.ts +11 -0
  141. package/src/modules/logger/services/index.d.ts.map +1 -0
  142. package/src/modules/logger/services/logLevelEnricher/logLevelEnricher.enricher.d.ts +12 -0
  143. package/src/modules/logger/services/logLevelEnricher/logLevelEnricher.enricher.d.ts.map +1 -0
  144. package/src/modules/logger/services/logger/logger.interface.d.ts +42 -0
  145. package/src/modules/logger/services/logger/logger.interface.d.ts.map +1 -0
  146. package/src/modules/logger/services/logger/logger.service.d.ts +44 -0
  147. package/src/modules/logger/services/logger/logger.service.d.ts.map +1 -0
  148. package/src/modules/logger/services/rest/rest.sink.d.ts +42 -0
  149. package/src/modules/logger/services/rest/rest.sink.d.ts.map +1 -0
  150. package/{structured-log/src → src/modules/logger}/services/rest/restSink.options.d.ts +6 -7
  151. package/src/modules/logger/services/rest/restSink.options.d.ts.map +1 -0
  152. package/src/modules/logger/services/subLoggerSink/subLogger.sink.d.ts +27 -0
  153. package/src/modules/logger/services/subLoggerSink/subLogger.sink.d.ts.map +1 -0
  154. package/src/modules/logger/services/timestampEnricher/timestamp.enricher.d.ts +12 -0
  155. package/src/modules/logger/services/timestampEnricher/timestamp.enricher.d.ts.map +1 -0
  156. package/src/modules/logger/types/index.d.ts +4 -0
  157. package/src/modules/logger/types/index.d.ts.map +1 -0
  158. package/src/modules/logger/types/logLevel.enum.d.ts +34 -0
  159. package/src/modules/logger/types/logLevel.enum.d.ts.map +1 -0
  160. package/src/modules/logger/types/loggerConfiguration.d.ts +54 -0
  161. package/src/modules/logger/types/loggerConfiguration.d.ts.map +1 -0
  162. package/src/modules/logger/types/loggerOptions.d.ts +35 -0
  163. package/src/modules/logger/types/loggerOptions.d.ts.map +1 -0
  164. package/src/modules/logger/types/messageLog.d.ts +34 -0
  165. package/src/modules/logger/types/messageLog.d.ts.map +1 -0
  166. package/src/services/permanentStorage/cookiePermanentStorage.service.d.ts +4 -8
  167. package/src/services/permanentStorage/cookiePermanentStorage.service.d.ts.map +1 -1
  168. package/src/services/permanentStorage/permanentStorage.interface.d.ts +0 -6
  169. package/src/services/permanentStorage/permanentStorage.interface.d.ts.map +1 -1
  170. package/src/services/position/position.interface.d.ts +0 -6
  171. package/src/services/position/position.interface.d.ts.map +1 -1
  172. package/src/services/stringLocalization/noStringLocalization.service.d.ts +3 -3
  173. package/src/services/stringLocalization/noStringLocalization.service.d.ts.map +1 -1
  174. package/src/services/stringLocalization/stringLocalization.interface.d.ts +0 -6
  175. package/src/services/stringLocalization/stringLocalization.interface.d.ts.map +1 -1
  176. package/src/services/temporaryStorage/memoryTemporaryStorage.service.d.ts +3 -3
  177. package/src/services/temporaryStorage/memoryTemporaryStorage.service.d.ts.map +1 -1
  178. package/src/services/temporaryStorage/temporaryStorage.interface.d.ts +0 -6
  179. package/src/services/temporaryStorage/temporaryStorage.interface.d.ts.map +1 -1
  180. package/src/types/providers.d.ts +11 -11
  181. package/src/types/providers.d.ts.map +1 -1
  182. package/src/types/tokens.d.ts +1 -1
  183. package/src/types/tokens.d.ts.map +1 -1
  184. package/store/src/index.d.ts +1 -1
  185. package/store/src/index.d.ts.map +1 -1
  186. package/store/src/services/permanentStorage/localPermanentStorage.service.d.ts +4 -8
  187. package/store/src/services/permanentStorage/localPermanentStorage.service.d.ts.map +1 -1
  188. package/store/src/services/temporaryStorage/sessionTemporaryStorage.service.d.ts +4 -8
  189. package/store/src/services/temporaryStorage/sessionTemporaryStorage.service.d.ts.map +1 -1
  190. package/version.bak +1 -1
  191. package/es2022/positions/src/index.js +0 -2
  192. package/es2022/positions/src/index.js.map +0 -1
  193. package/es2022/positions/src/misc/utils.js +0 -109
  194. package/es2022/positions/src/misc/utils.js.map +0 -1
  195. package/es2022/src/services/logger/index.js +0 -3
  196. package/es2022/src/services/logger/index.js.map +0 -1
  197. package/es2022/src/services/logger/logger.interface.js.map +0 -1
  198. package/es2022/src/services/logger/logger.service.js +0 -18
  199. package/es2022/src/services/logger/logger.service.js.map +0 -1
  200. package/es2022/structured-log/src/components/console/console.component.animations.js.map +0 -1
  201. package/es2022/structured-log/src/components/console/console.component.js +0 -103
  202. package/es2022/structured-log/src/components/console/console.component.js.map +0 -1
  203. package/es2022/structured-log/src/index.js +0 -15
  204. package/es2022/structured-log/src/index.js.map +0 -1
  205. package/es2022/structured-log/src/misc/providers.js +0 -12
  206. package/es2022/structured-log/src/misc/providers.js.map +0 -1
  207. package/es2022/structured-log/src/misc/utils.js +0 -39
  208. package/es2022/structured-log/src/misc/utils.js.map +0 -1
  209. package/es2022/structured-log/src/modules/consoleLog.module.js +0 -28
  210. package/es2022/structured-log/src/modules/consoleLog.module.js.map +0 -1
  211. package/es2022/structured-log/src/services/console/consoleComponentSink.service.js +0 -98
  212. package/es2022/structured-log/src/services/console/consoleComponentSink.service.js.map +0 -1
  213. package/es2022/structured-log/src/services/console/consoleSinkConfig.service.js +0 -47
  214. package/es2022/structured-log/src/services/console/consoleSinkConfig.service.js.map +0 -1
  215. package/es2022/structured-log/src/services/developerConsole/developerConsoleSink.options.js +0 -18
  216. package/es2022/structured-log/src/services/developerConsole/developerConsoleSink.options.js.map +0 -1
  217. package/es2022/structured-log/src/services/developerConsole/developerConsoleSink.service.js +0 -124
  218. package/es2022/structured-log/src/services/developerConsole/developerConsoleSink.service.js.map +0 -1
  219. package/es2022/structured-log/src/services/logger.service.js +0 -71
  220. package/es2022/structured-log/src/services/logger.service.js.map +0 -1
  221. package/es2022/structured-log/src/services/rest/restSink.options.js +0 -40
  222. package/es2022/structured-log/src/services/rest/restSink.options.js.map +0 -1
  223. package/es2022/structured-log/src/services/rest/restSink.service.js +0 -136
  224. package/es2022/structured-log/src/services/rest/restSink.service.js.map +0 -1
  225. package/es2022/structured-log/src/types/logger.interface.js +0 -2
  226. package/es2022/structured-log/src/types/logger.interface.js.map +0 -1
  227. package/es2022/structured-log/src/types/tokens.js +0 -56
  228. package/es2022/structured-log/src/types/tokens.js.map +0 -1
  229. package/positions/package.json +0 -8
  230. package/positions/src/index.d.ts +0 -2
  231. package/positions/src/misc/utils.d.ts +0 -22
  232. package/positions/src/misc/utils.d.ts.map +0 -1
  233. package/src/services/logger/index.d.ts +0 -3
  234. package/src/services/logger/index.d.ts.map +0 -1
  235. package/src/services/logger/logger.interface.d.ts +0 -90
  236. package/src/services/logger/logger.interface.d.ts.map +0 -1
  237. package/src/services/logger/logger.service.d.ts +0 -85
  238. package/src/services/logger/logger.service.d.ts.map +0 -1
  239. package/structured-log/package.json +0 -8
  240. package/structured-log/src/components/console/console.component.d.ts +0 -55
  241. package/structured-log/src/components/console/console.component.d.ts.map +0 -1
  242. package/structured-log/src/index.d.ts +0 -15
  243. package/structured-log/src/index.d.ts.map +0 -1
  244. package/structured-log/src/misc/providers.d.ts +0 -6
  245. package/structured-log/src/misc/providers.d.ts.map +0 -1
  246. package/structured-log/src/misc/utils.d.ts +0 -14
  247. package/structured-log/src/misc/utils.d.ts.map +0 -1
  248. package/structured-log/src/modules/consoleLog.module.d.ts +0 -12
  249. package/structured-log/src/modules/consoleLog.module.d.ts.map +0 -1
  250. package/structured-log/src/services/console/consoleComponentSink.service.d.ts +0 -45
  251. package/structured-log/src/services/console/consoleComponentSink.service.d.ts.map +0 -1
  252. package/structured-log/src/services/console/consoleSinkConfig.service.d.ts +0 -18
  253. package/structured-log/src/services/console/consoleSinkConfig.service.d.ts.map +0 -1
  254. package/structured-log/src/services/developerConsole/developerConsoleSink.options.d.ts +0 -12
  255. package/structured-log/src/services/developerConsole/developerConsoleSink.options.d.ts.map +0 -1
  256. package/structured-log/src/services/developerConsole/developerConsoleSink.service.d.ts +0 -39
  257. package/structured-log/src/services/developerConsole/developerConsoleSink.service.d.ts.map +0 -1
  258. package/structured-log/src/services/logger.service.d.ts +0 -98
  259. package/structured-log/src/services/logger.service.d.ts.map +0 -1
  260. package/structured-log/src/services/rest/restSink.options.d.ts.map +0 -1
  261. package/structured-log/src/services/rest/restSink.service.d.ts +0 -47
  262. package/structured-log/src/services/rest/restSink.service.d.ts.map +0 -1
  263. package/structured-log/src/types/logger.interface.d.ts +0 -63
  264. package/structured-log/src/types/logger.interface.d.ts.map +0 -1
  265. package/structured-log/src/types/tokens.d.ts +0 -38
  266. package/structured-log/src/types/tokens.d.ts.map +0 -1
  267. package/typings/positions/index.d.ts +0 -41
  268. package/typings/structured-log/index.d.ts +0 -391
  269. /package/es2022/{structured-log/src → src/modules/logger}/components/console/console.component.animations.js +0 -0
  270. /package/es2022/src/{services → modules/logger/services}/logger/logger.interface.js +0 -0
  271. /package/{structured-log/src → src/modules/logger}/components/console/console.component.animations.d.ts +0 -0
  272. /package/{structured-log/src → src/modules/logger}/components/console/console.component.animations.d.ts.map +0 -0
  273. /package/{structured-log/src → src/modules/logger}/components/console/console.component.css +0 -0
  274. /package/{structured-log/src → src/modules/logger}/components/console/console.component.html +0 -0
@@ -0,0 +1,12 @@
1
+ import { LoggerEnricher } from '../../interfaces';
2
+ import { MessageLog } from '../../types';
3
+ /**
4
+ * Enricher used for adding timestamp as iso datetime with current date time
5
+ */
6
+ export declare class TimestampEnricher implements LoggerEnricher {
7
+ /**
8
+ * @inheritdoc
9
+ */
10
+ enrich(properties: Record<string, unknown>, messageLog: MessageLog<Record<string, unknown>>): void;
11
+ }
12
+ //# sourceMappingURL=timestamp.enricher.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"timestamp.enricher.d.ts","sourceRoot":"","sources":["timestamp.enricher.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAC,UAAU,EAAC,MAAM,aAAa,CAAC;AAIvC;;GAEG;AACH,qBAAa,iBAAkB,YAAW,cAAc;IAIpD;;OAEG;IACI,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,UAAU,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,GAAG,IAAI;CAI5G"}
@@ -0,0 +1,4 @@
1
+ export * from './loggerOptions';
2
+ export * from './logLevel.enum';
3
+ export * from './messageLog';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC"}
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Log level for built in logger
3
+ */
4
+ export declare enum LogLevel {
5
+ /**
6
+ * Verbose logs used for tracking
7
+ */
8
+ Verbose = 0,
9
+ /**
10
+ * Debugging logs used for debugging
11
+ */
12
+ Debug = 1,
13
+ /**
14
+ * Informative log
15
+ */
16
+ Information = 2,
17
+ /**
18
+ * Warning log
19
+ */
20
+ Warning = 3,
21
+ /**
22
+ * Error log
23
+ */
24
+ Error = 4,
25
+ /**
26
+ * Fatal error log
27
+ */
28
+ Fatal = 5,
29
+ /**
30
+ * Logging is disabled
31
+ */
32
+ Off = 6
33
+ }
34
+ //# sourceMappingURL=logLevel.enum.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logLevel.enum.d.ts","sourceRoot":"","sources":["logLevel.enum.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,QAAQ;IAEhB;;OAEG;IACH,OAAO,IAAI;IAEX;;OAEG;IACH,KAAK,IAAI;IAET;;OAEG;IACH,WAAW,IAAI;IAEf;;OAEG;IACH,OAAO,IAAI;IAEX;;OAEG;IACH,KAAK,IAAI;IAET;;OAEG;IACH,KAAK,IAAI;IAET;;OAEG;IACH,GAAG,IAAI;CACV"}
@@ -0,0 +1,54 @@
1
+ import { LoggerConfiguration, LoggerEnricherType, LoggerFilter } from '../interfaces';
2
+ import { MinimumLevelConfig, WriteToConfig } from '../misc';
3
+ import { LoggerOptions } from './loggerOptions';
4
+ /**
5
+ * Implementation of logger configuration
6
+ */
7
+ export declare class LoggerConfigurationImpl implements LoggerConfiguration {
8
+ /**
9
+ * Configuration for minimum log level
10
+ */
11
+ protected config: MinimumLevelConfig | undefined | null;
12
+ /**
13
+ * Logger enricher types
14
+ */
15
+ protected loggerEnricherTypes: LoggerEnricherType[];
16
+ /**
17
+ * Array of logger sinks configs
18
+ */
19
+ protected sinks: WriteToConfig[];
20
+ /**
21
+ * Options that are currently configured
22
+ */
23
+ protected options: LoggerOptions;
24
+ constructor(options?: LoggerOptions);
25
+ /**
26
+ * @inheritdoc
27
+ */
28
+ minimumLevel(config: MinimumLevelConfig): LoggerConfiguration;
29
+ /**
30
+ * @inheritdoc
31
+ */
32
+ messageTemplate(template: string): LoggerConfiguration;
33
+ /**
34
+ * @inheritdoc
35
+ */
36
+ messageLengthLimit(limit: number | null | undefined): LoggerConfiguration;
37
+ /**
38
+ * @inheritdoc
39
+ */
40
+ enrichWith(loggerEnricherType: LoggerEnricherType): LoggerConfiguration;
41
+ /**
42
+ * @inheritdoc
43
+ */
44
+ filter(filter: LoggerFilter | null | undefined): LoggerConfiguration;
45
+ /**
46
+ * @inheritdoc
47
+ */
48
+ writeTo(config: WriteToConfig): LoggerConfiguration;
49
+ /**
50
+ * Builds logger options from configuration
51
+ */
52
+ buildOptions(): LoggerOptions;
53
+ }
54
+ //# sourceMappingURL=loggerConfiguration.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"loggerConfiguration.d.ts","sourceRoot":"","sources":["loggerConfiguration.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,mBAAmB,EAAE,kBAAkB,EAAE,YAAY,EAAC,MAAM,eAAe,CAAC;AACpF,OAAO,EAAC,kBAAkB,EAAE,aAAa,EAAC,MAAM,SAAS,CAAC;AAC1D,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAI9C;;GAEG;AACH,qBAAa,uBAAwB,YAAW,mBAAmB;IAI/D;;OAEG;IACH,SAAS,CAAC,MAAM,EAAE,kBAAkB,GAAC,SAAS,GAAC,IAAI,CAAC;IAEpD;;OAEG;IACH,SAAS,CAAC,mBAAmB,EAAE,kBAAkB,EAAE,CAAM;IAEzD;;OAEG;IACH,SAAS,CAAC,KAAK,EAAE,aAAa,EAAE,CAAM;IAEtC;;OAEG;IACH,SAAS,CAAC,OAAO,EAAE,aAAa,CAAC;gBAGrB,OAAO,GAAE,aAAmC;IAOxD;;OAEG;IACI,YAAY,CAAC,MAAM,EAAE,kBAAkB,GAAG,mBAAmB;IAOpE;;OAEG;IACI,eAAe,CAAC,QAAQ,EAAE,MAAM,GAAG,mBAAmB;IAO7D;;OAEG;IACI,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAC,IAAI,GAAC,SAAS,GAAG,mBAAmB;IAO5E;;OAEG;IACI,UAAU,CAAC,kBAAkB,EAAE,kBAAkB,GAAG,mBAAmB;IAO9E;;OAEG;IACI,MAAM,CAAC,MAAM,EAAE,YAAY,GAAC,IAAI,GAAC,SAAS,GAAG,mBAAmB;IAOvE;;OAEG;IACI,OAAO,CAAC,MAAM,EAAE,aAAa,GAAG,mBAAmB;IAS1D;;OAEG;IACI,YAAY,IAAI,aAAa;CAqDvC"}
@@ -0,0 +1,35 @@
1
+ import { LoggerEnricher, LoggerFilter, LoggerSink } from '../interfaces';
2
+ import { MinLogLevelGetter } from '../misc';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Options for logger that are used during logging
6
+ */
7
+ export declare class LoggerOptions {
8
+ /**
9
+ * Minimal log level, that is used for logging, logs with lower log level are ignored
10
+ */
11
+ minimumLogLevel: MinLogLevelGetter | undefined | null;
12
+ /**
13
+ * Maximal allowed length of message, if it is exceeded it is trimmed
14
+ */
15
+ messageLengthLimit: number | undefined | null;
16
+ /**
17
+ * Logger message template that is used for creating message log, message log itself is inside `messageLog` property
18
+ */
19
+ messageTemplate: string | undefined | null;
20
+ /**
21
+ * Array of enrichers that allows extending logger properties
22
+ */
23
+ enrichers: LoggerEnricher[];
24
+ /**
25
+ * Filter that filters out message logs
26
+ */
27
+ filter: LoggerFilter | undefined | null;
28
+ /**
29
+ * Array of logger sinks that do actual logging
30
+ */
31
+ loggerSinks: LoggerSink[];
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoggerOptions, never>;
33
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoggerOptions>;
34
+ }
35
+ //# sourceMappingURL=loggerOptions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"loggerOptions.d.ts","sourceRoot":"","sources":["loggerOptions.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,cAAc,EAAE,YAAY,EAAE,UAAU,EAAC,MAAM,eAAe,CAAC;AACvE,OAAO,EAAC,iBAAiB,EAAC,MAAM,SAAS,CAAC;;AAG1C;;GAEG;AACH,qBACa,aAAa;IAItB;;OAEG;IACI,eAAe,EAAE,iBAAiB,GAAC,SAAS,GAAC,IAAI,CAA8B;IAEtF;;OAEG;IACI,kBAAkB,EAAE,MAAM,GAAC,SAAS,GAAC,IAAI,CAAO;IAEvD;;OAEG;IACI,eAAe,EAAE,MAAM,GAAC,SAAS,GAAC,IAAI,CAAoB;IAEjE;;OAEG;IACI,SAAS,EAAE,cAAc,EAAE,CAAM;IAExC;;OAEG;IACI,MAAM,EAAE,YAAY,GAAC,SAAS,GAAC,IAAI,CAAa;IAEvD;;OAEG;IACI,WAAW,EAAE,UAAU,EAAE,CAAM;yCAhC7B,aAAa;6CAAb,aAAa;CAiCzB"}
@@ -0,0 +1,34 @@
1
+ import { LogLevel } from './logLevel.enum';
2
+ /**
3
+ * Message log that contains all information that are used for displaying log
4
+ */
5
+ export declare class MessageLog<TProperties extends Record<string, unknown> = Record<string, unknown>> {
6
+ /**
7
+ * Datetime when was message created
8
+ */
9
+ protected now: Date;
10
+ /**
11
+ * Message that is used as message template for log itself
12
+ */
13
+ readonly message: string;
14
+ /**
15
+ * Log level of current message log
16
+ */
17
+ readonly logLevel: LogLevel;
18
+ /**
19
+ * Properties that are "replaced" inside message
20
+ */
21
+ readonly properties: TProperties;
22
+ /**
23
+ * Gets timestamp as ISO string
24
+ */
25
+ get timestamp(): string;
26
+ constructor(message: string, logLevel: LogLevel, properties: TProperties);
27
+ /**
28
+ * Builds message that will be logged in logger sink
29
+ * @param messageTemplate - Global message template for log
30
+ * @param loggerProperties - Properties that are coming from logger itself
31
+ */
32
+ buildMessage(messageTemplate: string, loggerProperties: Record<string, unknown>): string;
33
+ }
34
+ //# sourceMappingURL=messageLog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"messageLog.d.ts","sourceRoot":"","sources":["messageLog.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,QAAQ,EAAC,MAAM,iBAAiB,CAAC;AAEzC;;GAEG;AACH,qBAAa,UAAU,CAAC,WAAW,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IAIzF;;OAEG;IACH,SAAS,CAAC,GAAG,EAAE,IAAI,CAAc;IAIjC;;OAEG;IACH,SAAgB,OAAO,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACH,SAAgB,QAAQ,EAAE,QAAQ,CAAC;IAEnC;;OAEG;IACH,SAAgB,UAAU,EAAE,WAAW,CAAC;IAExC;;OAEG;IACH,IAAW,SAAS,IAAI,MAAM,CAG7B;gBAGW,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,UAAU,EAAE,WAAW;IASxE;;;;OAIG;IACI,YAAY,CAAC,eAAe,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;CAkBlG"}
@@ -1,10 +1,10 @@
1
- import { PermanentStorage, PermanentStorageType } from './permanentStorage.interface';
1
+ import { PermanentStorage } from './permanentStorage.interface';
2
2
  import { CookieService } from '../cookies/cookies.service';
3
3
  import * as i0 from "@angular/core";
4
4
  /**
5
5
  * Implementation of permanent storage using cookies
6
6
  */
7
- export declare class CookiePermanentStorageService implements PermanentStorage {
7
+ export declare class CookiePermanentStorage implements PermanentStorage {
8
8
  private _cookies;
9
9
  constructor(_cookies: CookieService);
10
10
  /**
@@ -30,11 +30,7 @@ export declare class CookiePermanentStorageService implements PermanentStorage {
30
30
  * @param name - Name of stored value that will be removed
31
31
  */
32
32
  remove(name: string): void;
33
- static ɵfac: i0.ɵɵFactoryDeclaration<CookiePermanentStorageService, never>;
34
- static ɵprov: i0.ɵɵInjectableDeclaration<CookiePermanentStorageService>;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<CookiePermanentStorage, never>;
34
+ static ɵprov: i0.ɵɵInjectableDeclaration<CookiePermanentStorage>;
35
35
  }
36
- /**
37
- * Sets permanent storage to use cookie permanent storage when used with `providePermanentStorage`
38
- */
39
- export declare const CookiePermanentStorage: PermanentStorageType;
40
36
  //# sourceMappingURL=cookiePermanentStorage.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"cookiePermanentStorage.service.d.ts","sourceRoot":"","sources":["cookiePermanentStorage.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,gBAAgB,EAAE,oBAAoB,EAAC,MAAM,8BAA8B,CAAC;AACpF,OAAO,EAAC,aAAa,EAAC,MAAM,4BAA4B,CAAC;;AAIzD;;GAEG;AACH,qBACa,6BAA8B,YAAW,gBAAgB;IAGtD,OAAO,CAAC,QAAQ;gBAAR,QAAQ,EAAE,aAAa;IAM3C;;;OAGG;IACI,GAAG,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO;IAK1C;;;;OAIG;IACI,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI;IAE1C;;;;;OAKG;IACI,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,IAAI,GAAG,IAAI;IAazD;;;OAGG;IACI,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;yCAhDxB,6BAA6B;6CAA7B,6BAA6B;CAoDzC;AAqBD;;GAEG;AACH,eAAO,MAAM,sBAAsB,EAAE,oBAAiD,CAAC"}
1
+ {"version":3,"file":"cookiePermanentStorage.service.d.ts","sourceRoot":"","sources":["cookiePermanentStorage.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,gBAAgB,EAAC,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAC,aAAa,EAAC,MAAM,4BAA4B,CAAC;;AAIzD;;GAEG;AACH,qBAEa,sBAAuB,YAAW,gBAAgB;IAG/C,OAAO,CAAC,QAAQ;gBAAR,QAAQ,EAAE,aAAa;IAM3C;;;OAGG;IACI,GAAG,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO;IAK1C;;;;OAIG;IACI,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI;IAE1C;;;;;OAKG;IACI,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,IAAI,GAAG,IAAI;IAazD;;;OAGG;IACI,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;yCAhDxB,sBAAsB;6CAAtB,sBAAsB;CAoDlC"}
@@ -1,4 +1,3 @@
1
- import { Type } from '@angular/core';
2
1
  /**
3
2
  * Provides api for implementing permanent storage
4
3
  */
@@ -27,9 +26,4 @@ export interface PermanentStorage {
27
26
  */
28
27
  remove(name: string): void;
29
28
  }
30
- /**
31
- * Used for restriction of permanent storage provider type only for type decorated with permanent storage provider
32
- */
33
- export interface PermanentStorageType extends Type<unknown> {
34
- }
35
29
  //# sourceMappingURL=permanentStorage.interface.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"permanentStorage.interface.d.ts","sourceRoot":"","sources":["permanentStorage.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,eAAe,CAAC;AAEnC;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAE7B;;;OAGG;IACH,GAAG,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC;IAEpC;;;;OAIG;IACH,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI,CAAC;IAEpC;;;;;OAKG;IACH,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,IAAI,GAAG,IAAI,CAAC;IAEnD;;;OAGG;IACH,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,IAAI,CAAC,OAAO,CAAC;CAE1D"}
1
+ {"version":3,"file":"permanentStorage.interface.d.ts","sourceRoot":"","sources":["permanentStorage.interface.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAE7B;;;OAGG;IACH,GAAG,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC;IAEpC;;;;OAIG;IACH,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI,CAAC;IAEpC;;;;;OAKG;IACH,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,IAAI,GAAG,IAAI,CAAC;IAEnD;;;OAGG;IACH,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B"}
@@ -1,4 +1,3 @@
1
- import { Type } from '@angular/core';
2
1
  import { Func1 } from '@jscrpt/common';
3
2
  import { Observable } from 'rxjs';
4
3
  import { PositionOffsetString, PositionPlacement } from './position.types';
@@ -128,9 +127,4 @@ export interface Position {
128
127
  */
129
128
  placeElement(target: Element, source: Element, options?: Partial<PositionOptions>): Observable<PositionResult>;
130
129
  }
131
- /**
132
- * Used for restriction of position provider type only for type decorated with position provider
133
- */
134
- export interface PositionType extends Type<unknown> {
135
- }
136
130
  //# sourceMappingURL=position.interface.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"position.interface.d.ts","sourceRoot":"","sources":["position.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,eAAe,CAAC;AACnC,OAAO,EAAC,KAAK,EAAC,MAAM,gBAAgB,CAAC;AACrC,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAEhC,OAAO,EAAC,oBAAoB,EAAE,iBAAiB,EAAC,MAAM,kBAAkB,CAAC;AAEzE;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAE9B;;OAEG;IACH,cAAc,EAAE,OAAO,CAAC;IAExB;;OAEG;IACH,cAAc,EAAE,OAAO,CAAC;IAExB;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;CAC1B;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAE5B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,GAAC,IAAI,CAAC;CAC/B;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB,CAAC,QAAQ,SAAS,OAAO,GAAG,OAAO;IAEhE;;OAEG;IACH,SAAS,EAAE,QAAQ,CAAC;IAEpB;;OAEG;IACH,QAAQ,EAAE,QAAQ,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB,CAAC,QAAQ,SAAS,OAAO,GAAG,OAAO;IAEjE;;OAEG;IACH,CAAC,EAAE,MAAM,CAAC;IAEV;;OAEG;IACH,CAAC,EAAE,MAAM,CAAC;IAEV;;OAEG;IACH,QAAQ,EAAE,gBAAgB,CAAC,QAAQ,CAAC,CAAC;CACxC;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAI5B;;OAEG;IACH,SAAS,EAAE,iBAAiB,CAAC;IAE7B;;OAEG;IACH,MAAM,EAAE,oBAAoB,GAAC,MAAM,GAAC,eAAe,GAAC,KAAK,CAAC,MAAM,GAAC,eAAe,EAAE,iBAAiB,CAAC,CAAC;IAErG;;OAEG;IACH,IAAI,EAAE,OAAO,CAAC;IAEd;;OAEG;IACH,UAAU,EAAE,OAAO,GAAC,iBAAiB,CAAC;IAEtC;;OAEG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,cAAc,CAAC,QAAQ,SAAS,OAAO,GAAG,GAAG;IAE1D;;OAEG;IACH,MAAM,EAAE,QAAQ,CAAC;IAEjB;;OAEG;IACH,CAAC,EAAE,MAAM,CAAC;IAEV;;OAEG;IACH,CAAC,EAAE,MAAM,CAAC;IAEV;;OAEG;IACH,IAAI,EAAE,OAAO,CAAC;IAEd;;OAEG;IACH,OAAO,IAAI,IAAI,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,QAAQ;IAIrB;;;;;OAKG;IACH,YAAY,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,UAAU,CAAC,cAAc,CAAC,CAAC;CAClH;AAED;;GAEG;AACH,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,OAAO,CAAC;CAElD"}
1
+ {"version":3,"file":"position.interface.d.ts","sourceRoot":"","sources":["position.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,EAAC,MAAM,gBAAgB,CAAC;AACrC,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAEhC,OAAO,EAAC,oBAAoB,EAAE,iBAAiB,EAAC,MAAM,kBAAkB,CAAC;AAEzE;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAE9B;;OAEG;IACH,cAAc,EAAE,OAAO,CAAC;IAExB;;OAEG;IACH,cAAc,EAAE,OAAO,CAAC;IAExB;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;CAC1B;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAE5B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,GAAC,IAAI,CAAC;CAC/B;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB,CAAC,QAAQ,SAAS,OAAO,GAAG,OAAO;IAEhE;;OAEG;IACH,SAAS,EAAE,QAAQ,CAAC;IAEpB;;OAEG;IACH,QAAQ,EAAE,QAAQ,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB,CAAC,QAAQ,SAAS,OAAO,GAAG,OAAO;IAEjE;;OAEG;IACH,CAAC,EAAE,MAAM,CAAC;IAEV;;OAEG;IACH,CAAC,EAAE,MAAM,CAAC;IAEV;;OAEG;IACH,QAAQ,EAAE,gBAAgB,CAAC,QAAQ,CAAC,CAAC;CACxC;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAI5B;;OAEG;IACH,SAAS,EAAE,iBAAiB,CAAC;IAE7B;;OAEG;IACH,MAAM,EAAE,oBAAoB,GAAC,MAAM,GAAC,eAAe,GAAC,KAAK,CAAC,MAAM,GAAC,eAAe,EAAE,iBAAiB,CAAC,CAAC;IAErG;;OAEG;IACH,IAAI,EAAE,OAAO,CAAC;IAEd;;OAEG;IACH,UAAU,EAAE,OAAO,GAAC,iBAAiB,CAAC;IAEtC;;OAEG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,cAAc,CAAC,QAAQ,SAAS,OAAO,GAAG,GAAG;IAE1D;;OAEG;IACH,MAAM,EAAE,QAAQ,CAAC;IAEjB;;OAEG;IACH,CAAC,EAAE,MAAM,CAAC;IAEV;;OAEG;IACH,CAAC,EAAE,MAAM,CAAC;IAEV;;OAEG;IACH,IAAI,EAAE,OAAO,CAAC;IAEd;;OAEG;IACH,OAAO,IAAI,IAAI,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,QAAQ;IAIrB;;;;;OAKG;IACH,YAAY,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,UAAU,CAAC,cAAc,CAAC,CAAC;CAClH"}
@@ -4,7 +4,7 @@ import * as i0 from "@angular/core";
4
4
  /**
5
5
  * Default implementation of StringLocalization, which uses 'key' as localization text
6
6
  */
7
- export declare class NoStringLocalizationService implements StringLocalization {
7
+ export declare class NoStringLocalization implements StringLocalization {
8
8
  /**
9
9
  * Subject used for emitting when indication that locale has changes and strings should be obtained again, because they have changed
10
10
  */
@@ -19,7 +19,7 @@ export declare class NoStringLocalizationService implements StringLocalization {
19
19
  * @param interpolateParams - Optional object storing interpolation parameters
20
20
  */
21
21
  get(key: string, interpolateParams?: Record<string, unknown>): string;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<NoStringLocalizationService, never>;
23
- static ɵprov: i0.ɵɵInjectableDeclaration<NoStringLocalizationService>;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<NoStringLocalization, never>;
23
+ static ɵprov: i0.ɵɵInjectableDeclaration<NoStringLocalization>;
24
24
  }
25
25
  //# sourceMappingURL=noStringLocalization.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"noStringLocalization.service.d.ts","sourceRoot":"","sources":["noStringLocalization.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAU,UAAU,EAAC,MAAM,MAAM,CAAC;AAEzC,OAAO,EAAC,kBAAkB,EAAC,MAAM,gCAAgC,CAAC;;AAElE;;GAEG;AACH,qBACa,2BAA4B,YAAW,kBAAkB;IAIlE;;OAEG;IACH,OAAO,CAAC,mBAAmB,CAAsC;IAIjE;;OAEG;IACH,IAAW,WAAW,IAAI,UAAU,CAAC,IAAI,CAAC,CAGzC;IAID;;;;OAIG;IACI,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,iBAAiB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;yCA1BnE,2BAA2B;6CAA3B,2BAA2B;CAoCvC"}
1
+ {"version":3,"file":"noStringLocalization.service.d.ts","sourceRoot":"","sources":["noStringLocalization.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAU,UAAU,EAAC,MAAM,MAAM,CAAC;AAEzC,OAAO,EAAC,kBAAkB,EAAC,MAAM,gCAAgC,CAAC;;AAElE;;GAEG;AACH,qBACa,oBAAqB,YAAW,kBAAkB;IAI3D;;OAEG;IACH,OAAO,CAAC,mBAAmB,CAAsC;IAIjE;;OAEG;IACH,IAAW,WAAW,IAAI,UAAU,CAAC,IAAI,CAAC,CAGzC;IAID;;;;OAIG;IACI,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,iBAAiB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;yCA1BnE,oBAAoB;6CAApB,oBAAoB;CAmChC"}
@@ -1,4 +1,3 @@
1
- import { Type } from '@angular/core';
2
1
  import { Observable } from 'rxjs';
3
2
  /**
4
3
  * Provides api to localize strings
@@ -15,9 +14,4 @@ export interface StringLocalization {
15
14
  */
16
15
  get(key: string, interpolateParams?: Object): string;
17
16
  }
18
- /**
19
- * Used for restriction of string localization provider type only for type decorated with string localization provider
20
- */
21
- export interface StringLocalizationType extends Type<unknown> {
22
- }
23
17
  //# sourceMappingURL=stringLocalization.interface.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"stringLocalization.interface.d.ts","sourceRoot":"","sources":["stringLocalization.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,eAAe,CAAC;AACnC,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAEhC;;GAEG;AACH,MAAM,WAAW,kBAAkB;IAE/B;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IAEvC;;;;OAIG;IACH,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,iBAAiB,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxD;AAED;;GAEG;AACH,MAAM,WAAW,sBAAuB,SAAQ,IAAI,CAAC,OAAO,CAAC;CAE5D"}
1
+ {"version":3,"file":"stringLocalization.interface.d.ts","sourceRoot":"","sources":["stringLocalization.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAEhC;;GAEG;AACH,MAAM,WAAW,kBAAkB;IAE/B;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IAEvC;;;;OAIG;IACH,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,iBAAiB,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxD"}
@@ -3,7 +3,7 @@ import * as i0 from "@angular/core";
3
3
  /**
4
4
  * Implementation of temporary storage using process memory
5
5
  */
6
- export declare class MemoryTemporaryStorageService implements TemporaryStorage {
6
+ export declare class MemoryTemporaryStorage implements TemporaryStorage {
7
7
  /**
8
8
  * Storage used for storing values
9
9
  */
@@ -24,7 +24,7 @@ export declare class MemoryTemporaryStorageService implements TemporaryStorage {
24
24
  * @param name - Name of stored value that will be removed
25
25
  */
26
26
  remove(name: string): void;
27
- static ɵfac: i0.ɵɵFactoryDeclaration<MemoryTemporaryStorageService, never>;
28
- static ɵprov: i0.ɵɵInjectableDeclaration<MemoryTemporaryStorageService>;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<MemoryTemporaryStorage, never>;
28
+ static ɵprov: i0.ɵɵInjectableDeclaration<MemoryTemporaryStorage>;
29
29
  }
30
30
  //# sourceMappingURL=memoryTemporaryStorage.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"memoryTemporaryStorage.service.d.ts","sourceRoot":"","sources":["memoryTemporaryStorage.service.ts"],"names":[],"mappings":"AAGA,OAAO,EAAC,gBAAgB,EAAC,MAAM,8BAA8B,CAAC;;AAE9D;;GAEG;AACH,qBACa,6BAA8B,YAAW,gBAAgB;IAIlE;;OAEG;IACH,OAAO,CAAC,OAAO,CAAuB;IAItC;;;OAGG;IACI,GAAG,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO;IAK1C;;;;OAIG;IACI,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI;IAK1C;;;OAGG;IACI,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;yCAlCxB,6BAA6B;6CAA7B,6BAA6B;CAsCzC"}
1
+ {"version":3,"file":"memoryTemporaryStorage.service.d.ts","sourceRoot":"","sources":["memoryTemporaryStorage.service.ts"],"names":[],"mappings":"AAGA,OAAO,EAAC,gBAAgB,EAAC,MAAM,8BAA8B,CAAC;;AAE9D;;GAEG;AACH,qBACa,sBAAuB,YAAW,gBAAgB;IAI3D;;OAEG;IACH,OAAO,CAAC,OAAO,CAAuB;IAItC;;;OAGG;IACI,GAAG,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO;IAK1C;;;;OAIG;IACI,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI;IAK1C;;;OAGG;IACI,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;yCAlCxB,sBAAsB;6CAAtB,sBAAsB;CAsClC"}
@@ -1,4 +1,3 @@
1
- import { Type } from '@angular/core';
2
1
  /**
3
2
  * Provides api for implementing temporary storage
4
3
  */
@@ -20,9 +19,4 @@ export interface TemporaryStorage {
20
19
  */
21
20
  remove(name: string): void;
22
21
  }
23
- /**
24
- * Used for restriction of temporary storage provider type only for type decorated with temporary storage provider
25
- */
26
- export interface TemporaryStorageType extends Type<unknown> {
27
- }
28
22
  //# sourceMappingURL=temporaryStorage.interface.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"temporaryStorage.interface.d.ts","sourceRoot":"","sources":["temporaryStorage.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,eAAe,CAAC;AAEnC;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAE7B;;;OAGG;IACH,GAAG,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC;IAEpC;;;;OAIG;IACH,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI,CAAC;IAEpC;;;OAGG;IACH,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,IAAI,CAAC,OAAO,CAAC;CAE1D"}
1
+ {"version":3,"file":"temporaryStorage.interface.d.ts","sourceRoot":"","sources":["temporaryStorage.interface.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAE7B;;;OAGG;IACH,GAAG,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC;IAEpC;;;;OAIG;IACH,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI,CAAC;IAEpC;;;OAGG;IACH,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B"}
@@ -1,32 +1,32 @@
1
- import { EnvironmentProviders } from '@angular/core';
2
- import { LoggerType } from '../services/logger/logger.interface';
3
- import { PermanentStorageType } from '../services/permanentStorage/permanentStorage.interface';
4
- import { PositionType } from '../services/position/position.interface';
5
- import { StringLocalizationType } from '../services/stringLocalization/stringLocalization.interface';
6
- import { TemporaryStorageType } from '../services/temporaryStorage/temporaryStorage.interface';
1
+ import { EnvironmentProviders, Type } from '@angular/core';
2
+ import { PermanentStorage } from '../services/permanentStorage/permanentStorage.interface';
3
+ import { Position } from '../services/position/position.interface';
4
+ import { StringLocalization } from '../services/stringLocalization/stringLocalization.interface';
5
+ import { TemporaryStorage } from '../services/temporaryStorage/temporaryStorage.interface';
6
+ import { Logger } from '../modules/logger';
7
7
  /**
8
8
  * Provides logger service type
9
9
  * @param type - Type of logger that should be used
10
10
  */
11
- export declare function provideLogger(type: LoggerType): EnvironmentProviders;
11
+ export declare function provideLogger(type: Type<Logger>): EnvironmentProviders;
12
12
  /**
13
13
  * Provides permanent storage service type
14
14
  * @param type - Type of permanent storage that should be used
15
15
  */
16
- export declare function providePermanentStorage(type: PermanentStorageType): EnvironmentProviders;
16
+ export declare function providePermanentStorage(type: Type<PermanentStorage>): EnvironmentProviders;
17
17
  /**
18
18
  * Provides position service type
19
19
  * @param type - Type of position that should be used
20
20
  */
21
- export declare function providePosition(type: PositionType): EnvironmentProviders;
21
+ export declare function providePosition(type: Type<Position>): EnvironmentProviders;
22
22
  /**
23
23
  * Provides string localization service type
24
24
  * @param type - Type of string localization that should be used
25
25
  */
26
- export declare function provideStringLocalization(type: StringLocalizationType): EnvironmentProviders;
26
+ export declare function provideStringLocalization(type: Type<StringLocalization>): EnvironmentProviders;
27
27
  /**
28
28
  * Provides temporary storage service type
29
29
  * @param type - Type of temporary storage that should be used
30
30
  */
31
- export declare function provideTemporaryStorage(type: TemporaryStorageType): EnvironmentProviders;
31
+ export declare function provideTemporaryStorage(type: Type<TemporaryStorage>): EnvironmentProviders;
32
32
  //# sourceMappingURL=providers.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"providers.d.ts","sourceRoot":"","sources":["providers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,oBAAoB,EAA2B,MAAM,eAAe,CAAC;AAE7E,OAAO,EAAC,UAAU,EAAC,MAAM,qCAAqC,CAAC;AAC/D,OAAO,EAAC,oBAAoB,EAAC,MAAM,yDAAyD,CAAC;AAC7F,OAAO,EAAC,YAAY,EAAC,MAAM,yCAAyC,CAAC;AACrE,OAAO,EAAC,sBAAsB,EAAC,MAAM,6DAA6D,CAAC;AACnG,OAAO,EAAC,oBAAoB,EAAC,MAAM,yDAAyD,CAAC;AAG7F;;;GAGG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,UAAU,GAAG,oBAAoB,CAMpE;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,oBAAoB,GAAG,oBAAoB,CAMxF;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,YAAY,GAAG,oBAAoB,CAMxE;AAED;;;GAGG;AACH,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,sBAAsB,GAAG,oBAAoB,CAM5F;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,oBAAoB,GAAG,oBAAoB,CAMxF"}
1
+ {"version":3,"file":"providers.d.ts","sourceRoot":"","sources":["providers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,oBAAoB,EAAE,IAAI,EAA2B,MAAM,eAAe,CAAC;AAEnF,OAAO,EAAC,gBAAgB,EAAC,MAAM,yDAAyD,CAAC;AACzF,OAAO,EAAC,QAAQ,EAAC,MAAM,yCAAyC,CAAC;AACjE,OAAO,EAAC,kBAAkB,EAAC,MAAM,6DAA6D,CAAC;AAC/F,OAAO,EAAC,gBAAgB,EAAC,MAAM,yDAAyD,CAAC;AAEzF,OAAO,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAEzC;;;GAGG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,oBAAoB,CAMtE;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,IAAI,CAAC,gBAAgB,CAAC,GAAG,oBAAoB,CAM1F;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,GAAG,oBAAoB,CAM1E;AAED;;;GAGG;AACH,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,IAAI,CAAC,kBAAkB,CAAC,GAAG,oBAAoB,CAM9F;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,IAAI,CAAC,gBAAgB,CAAC,GAAG,oBAAoB,CAM1F"}
@@ -2,10 +2,10 @@ import { InjectionToken, Type } from '@angular/core';
2
2
  import { HttpContextToken } from '@angular/common/http';
3
3
  import { StringLocalization } from '../services/stringLocalization';
4
4
  import { PermanentStorage } from '../services/permanentStorage';
5
- import { Logger } from '../services/logger';
6
5
  import { TemporaryStorage } from '../services/temporaryStorage';
7
6
  import { Notifications } from '../services/notifications';
8
7
  import { Position } from '../services/position';
8
+ import { Logger } from '../modules/logger';
9
9
  /**
10
10
  * Base url when using HTTP (example: http://localhost:8888/)
11
11
  */
@@ -1 +1 @@
1
- {"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["tokens.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAAE,IAAI,EAAC,MAAM,eAAe,CAAC;AACnD,OAAO,EAAC,gBAAgB,EAAC,MAAM,sBAAsB,CAAC;AAEtD,OAAO,EAAC,kBAAkB,EAA8B,MAAM,gCAAgC,CAAC;AAC/F,OAAO,EAAC,gBAAgB,EAAC,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAC,MAAM,EAAqB,MAAM,oBAAoB,CAAC;AAC9D,OAAO,EAAC,gBAAgB,EAAgC,MAAM,8BAA8B,CAAC;AAC7F,OAAO,EAAC,aAAa,EAAC,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAC,QAAQ,EAAC,MAAM,sBAAsB,CAAC;AAE9C;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,cAAc,CAAC,MAAM,CAAuD,CAAC;AAEjH;;GAEG;AACH,eAAO,MAAM,0BAA0B,EAAE,cAAc,CAAC,MAAM,CAA4D,CAAC;AAE3H;;GAEG;AACH,eAAO,MAAM,wBAAwB,EAAE,cAAc,CAAC,MAAM,CAA0D,CAAC;AAEvH;;GAEG;AACH,eAAO,MAAM,MAAM,EAAE,cAAc,CAAC,MAAM,CAAuG,CAAC;AAElJ;;GAEG;AACH,eAAO,MAAM,mBAAmB,EAAE,cAAc,CAAC,kBAAkB,CAAyI,CAAC;AAE7M;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,cAAc,CAAC,gBAAgB,CAA6D,CAAC;AAE7H;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,cAAc,CAAC,gBAAgB,CAAuI,CAAC;AAEvM;;GAEG;AACH,eAAO,MAAM,QAAQ,EAAE,cAAc,CAAC,QAAQ,CAA4C,CAAC;AAE3F;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,cAAc,CAAC,aAAa,CAAsD,CAAC;AAE/G;;GAEG;AACH,eAAO,MAAM,mBAAmB,EAAE,cAAc,CAAC,MAAM,CAAqD,CAAC;AAE7G;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAmD,CAAC"}
1
+ {"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["tokens.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAAE,IAAI,EAAS,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAC,gBAAgB,EAAC,MAAM,sBAAsB,CAAC;AAEtD,OAAO,EAAC,kBAAkB,EAAuB,MAAM,gCAAgC,CAAC;AACxF,OAAO,EAAC,gBAAgB,EAAC,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAC,gBAAgB,EAAyB,MAAM,8BAA8B,CAAC;AACtF,OAAO,EAAC,aAAa,EAAC,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAC,QAAQ,EAAC,MAAM,sBAAsB,CAAC;AAC9C,OAAO,EAAgB,MAAM,EAAgB,MAAM,mBAAmB,CAAC;AAEvE;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,cAAc,CAAC,MAAM,CAAuD,CAAC;AAEjH;;GAEG;AACH,eAAO,MAAM,0BAA0B,EAAE,cAAc,CAAC,MAAM,CAA4D,CAAC;AAE3H;;GAEG;AACH,eAAO,MAAM,wBAAwB,EAAE,cAAc,CAAC,MAAM,CAA0D,CAAC;AAEvH;;GAEG;AACH,eAAO,MAAM,MAAM,EAAE,cAAc,CAAC,MAAM,CAAuH,CAAC;AAElK;;GAEG;AACH,eAAO,MAAM,mBAAmB,EAAE,cAAc,CAAC,kBAAkB,CAAkI,CAAC;AAEtM;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,cAAc,CAAC,gBAAgB,CAA6D,CAAC;AAE7H;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,cAAc,CAAC,gBAAgB,CAAgI,CAAC;AAEhM;;GAEG;AACH,eAAO,MAAM,QAAQ,EAAE,cAAc,CAAC,QAAQ,CAA4C,CAAC;AAE3F;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,cAAc,CAAC,aAAa,CAAsD,CAAC;AAE/G;;GAEG;AACH,eAAO,MAAM,mBAAmB,EAAE,cAAc,CAAC,MAAM,CAAqD,CAAC;AAE7G;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAmD,CAAC"}
@@ -1,2 +1,2 @@
1
- export { LocalPermanentStorageService, SessionTemporaryStorageService, SessionTemporaryStorage, LocalPermanentStorage } from './services';
1
+ export { SessionTemporaryStorage, LocalPermanentStorage } from './services';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,4BAA4B,EAAE,8BAA8B,EAAE,uBAAuB,EAAE,qBAAqB,EAAC,MAAM,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,uBAAuB,EAAE,qBAAqB,EAAC,MAAM,YAAY,CAAC"}
@@ -1,9 +1,9 @@
1
- import { PermanentStorage, PermanentStorageType } from '@anglr/common';
1
+ import { PermanentStorage } from '@anglr/common';
2
2
  import * as i0 from "@angular/core";
3
3
  /**
4
4
  * Implementation of permanent storage using LocalStorage
5
5
  */
6
- export declare class LocalPermanentStorageService implements PermanentStorage {
6
+ export declare class LocalPermanentStorage implements PermanentStorage {
7
7
  constructor();
8
8
  /**
9
9
  * Gets value that was stored with 'name' from permanent storage
@@ -28,11 +28,7 @@ export declare class LocalPermanentStorageService implements PermanentStorage {
28
28
  * @param name - Name of stored value that will be removed
29
29
  */
30
30
  remove(name: string): void;
31
- static ɵfac: i0.ɵɵFactoryDeclaration<LocalPermanentStorageService, never>;
32
- static ɵprov: i0.ɵɵInjectableDeclaration<LocalPermanentStorageService>;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<LocalPermanentStorage, never>;
32
+ static ɵprov: i0.ɵɵInjectableDeclaration<LocalPermanentStorage>;
33
33
  }
34
- /**
35
- * Sets permanent storage to use local permanent storage when used with `providePermanentStorage`
36
- */
37
- export declare const LocalPermanentStorage: PermanentStorageType;
38
34
  //# sourceMappingURL=localPermanentStorage.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"localPermanentStorage.service.d.ts","sourceRoot":"","sources":["localPermanentStorage.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,gBAAgB,EAAE,oBAAoB,EAAe,MAAM,eAAe,CAAC;;AAItG;;GAEG;AACH,qBACa,4BAA6B,YAAW,gBAAgB;;IAWjE;;;OAGG;IACI,GAAG,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO;IAK1C;;;;OAIG;IACI,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI;IAE1C;;;;;OAKG;IACI,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,IAAI,GAAG,IAAI;IAoBzD;;;OAGG;IACI,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;yCAzDxB,4BAA4B;6CAA5B,4BAA4B;CA6DxC;AAoBD;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,oBAAgD,CAAC"}
1
+ {"version":3,"file":"localPermanentStorage.service.d.ts","sourceRoot":"","sources":["localPermanentStorage.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,gBAAgB,EAAe,MAAM,eAAe,CAAC;;AAIhF;;GAEG;AACH,qBAEa,qBAAsB,YAAW,gBAAgB;;IAW1D;;;OAGG;IACI,GAAG,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO;IAK1C;;;;OAIG;IACI,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI;IAE1C;;;;;OAKG;IACI,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,IAAI,GAAG,IAAI;IAoBzD;;;OAGG;IACI,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;yCAzDxB,qBAAqB;6CAArB,qBAAqB;CA6DjC"}
@@ -1,9 +1,9 @@
1
- import { TemporaryStorage, TemporaryStorageType } from '@anglr/common';
1
+ import { TemporaryStorage } from '@anglr/common';
2
2
  import * as i0 from "@angular/core";
3
3
  /**
4
4
  * Implementation of temporary storage using SessionStorage
5
5
  */
6
- export declare class SessionTemporaryStorageService implements TemporaryStorage {
6
+ export declare class SessionTemporaryStorage implements TemporaryStorage {
7
7
  /**
8
8
  * Gets value that was stored with 'name' from temporary storage
9
9
  * @param name - Name with which was value stored
@@ -20,11 +20,7 @@ export declare class SessionTemporaryStorageService implements TemporaryStorage
20
20
  * @param name - Name of stored value that will be removed
21
21
  */
22
22
  remove(name: string): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<SessionTemporaryStorageService, never>;
24
- static ɵprov: i0.ɵɵInjectableDeclaration<SessionTemporaryStorageService>;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<SessionTemporaryStorage, never>;
24
+ static ɵprov: i0.ɵɵInjectableDeclaration<SessionTemporaryStorage>;
25
25
  }
26
- /**
27
- * Sets temporary storage to use session temporary storage when used with `provideTemporaryStorage`
28
- */
29
- export declare const SessionTemporaryStorage: TemporaryStorageType;
30
26
  //# sourceMappingURL=sessionTemporaryStorage.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sessionTemporaryStorage.service.d.ts","sourceRoot":"","sources":["sessionTemporaryStorage.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,gBAAgB,EAAE,oBAAoB,EAAe,MAAM,eAAe,CAAC;;AAGtG;;GAEG;AACH,qBACa,8BAA+B,YAAW,gBAAgB;IAInE;;;OAGG;IACI,GAAG,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO;IAK1C;;;;OAIG;IACI,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI;IAK1C;;;OAGG;IACI,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;yCA3BxB,8BAA8B;6CAA9B,8BAA8B;CA+B1C;AAoBD;;GAEG;AACH,eAAO,MAAM,uBAAuB,EAAE,oBAAkD,CAAC"}
1
+ {"version":3,"file":"sessionTemporaryStorage.service.d.ts","sourceRoot":"","sources":["sessionTemporaryStorage.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,gBAAgB,EAAe,MAAM,eAAe,CAAC;;AAGhF;;GAEG;AACH,qBAEa,uBAAwB,YAAW,gBAAgB;IAI5D;;;OAGG;IACI,GAAG,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO;IAK1C;;;;OAIG;IACI,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI;IAK1C;;;OAGG;IACI,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;yCA3BxB,uBAAuB;6CAAvB,uBAAuB;CA+BnC"}
package/version.bak CHANGED
@@ -1 +1 @@
1
- 18.0.0-beta.20230822095843
1
+ 18.0.0-beta.20230823100805
@@ -1,2 +0,0 @@
1
- export * from './misc/utils';
2
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../positions/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC","sourcesContent":["export * from './misc/utils';\n"]}