@stemy/ngx-utils 13.6.17 → 17.0.0

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 (268) hide show
  1. package/esm2022/ngx-utils/common-types.mjs +123 -0
  2. package/esm2022/ngx-utils/components/dynamic-table/dynamic-table.component.mjs +210 -0
  3. package/esm2022/ngx-utils/components/pagination-menu/pagination-menu.component.mjs +101 -0
  4. package/esm2022/ngx-utils/components/unordered-list/unordered-list.component.mjs +65 -0
  5. package/esm2022/ngx-utils/directives/async-method.base.mjs +82 -0
  6. package/{esm2020 → esm2022}/ngx-utils/directives/async-method.directive.mjs +21 -21
  7. package/esm2022/ngx-utils/directives/background.directive.mjs +51 -0
  8. package/{esm2020 → esm2022}/ngx-utils/directives/dynamic-table-template.directive.mjs +20 -20
  9. package/{esm2020 → esm2022}/ngx-utils/directives/global-template.directive.mjs +30 -30
  10. package/esm2022/ngx-utils/directives/icon.directive.mjs +67 -0
  11. package/esm2022/ngx-utils/directives/ngx-template-outlet.directive.mjs +90 -0
  12. package/{esm2020 → esm2022}/ngx-utils/directives/pagination-item.directive.mjs +34 -34
  13. package/esm2022/ngx-utils/directives/pagination.directive.mjs +84 -0
  14. package/esm2022/ngx-utils/directives/resource-if.directive.mjs +50 -0
  15. package/esm2022/ngx-utils/directives/sticky-class.directive.mjs +34 -0
  16. package/{esm2020 → esm2022}/ngx-utils/directives/sticky.directive.mjs +55 -55
  17. package/{esm2020 → esm2022}/ngx-utils/directives/unordered-list-item.directive.mjs +79 -79
  18. package/{esm2020 → esm2022}/ngx-utils/directives/unordered-list-template.directive.mjs +20 -20
  19. package/{esm2020 → esm2022}/ngx-utils/ngx-utils.imports.mjs +174 -174
  20. package/esm2022/ngx-utils/ngx-utils.module.mjs +202 -0
  21. package/esm2022/ngx-utils/pipes/chunk.pipe.mjs +25 -0
  22. package/{esm2020 → esm2022}/ngx-utils/pipes/entries.pipe.mjs +28 -28
  23. package/{esm2020 → esm2022}/ngx-utils/pipes/extra-item-properties.pipe.mjs +31 -31
  24. package/esm2022/ngx-utils/pipes/filter.pipe.mjs +37 -0
  25. package/esm2022/ngx-utils/pipes/find.pipe.mjs +29 -0
  26. package/{esm2020 → esm2022}/ngx-utils/pipes/format-number.pipe.mjs +21 -21
  27. package/{esm2020 → esm2022}/ngx-utils/pipes/get-offset.pipe.mjs +17 -17
  28. package/{esm2020 → esm2022}/ngx-utils/pipes/get-type.pipe.mjs +16 -16
  29. package/esm2022/ngx-utils/pipes/global-template.pipe.mjs +41 -0
  30. package/{esm2020 → esm2022}/ngx-utils/pipes/group-by.pipe.mjs +27 -27
  31. package/{esm2020 → esm2022}/ngx-utils/pipes/is-type.pipe.mjs +16 -16
  32. package/{esm2020 → esm2022}/ngx-utils/pipes/join.pipe.mjs +19 -19
  33. package/{esm2020 → esm2022}/ngx-utils/pipes/keys.pipe.mjs +22 -22
  34. package/{esm2020 → esm2022}/ngx-utils/pipes/map.pipe.mjs +29 -29
  35. package/{esm2020 → esm2022}/ngx-utils/pipes/max.pipe.mjs +26 -26
  36. package/{esm2020 → esm2022}/ngx-utils/pipes/min.pipe.mjs +26 -26
  37. package/{esm2020 → esm2022}/ngx-utils/pipes/pop.pipe.mjs +16 -16
  38. package/{esm2020 → esm2022}/ngx-utils/pipes/reduce.pipe.mjs +30 -30
  39. package/esm2022/ngx-utils/pipes/remap.pipe.mjs +32 -0
  40. package/{esm2020 → esm2022}/ngx-utils/pipes/replace.pipe.mjs +17 -17
  41. package/esm2022/ngx-utils/pipes/reverse.pipe.mjs +24 -0
  42. package/{esm2020 → esm2022}/ngx-utils/pipes/round.pipe.mjs +21 -21
  43. package/esm2022/ngx-utils/pipes/safe-html.pipe.mjs +34 -0
  44. package/{esm2020 → esm2022}/ngx-utils/pipes/shift.pipe.mjs +16 -16
  45. package/{esm2020 → esm2022}/ngx-utils/pipes/split.pipe.mjs +16 -16
  46. package/esm2022/ngx-utils/pipes/translate.pipe.mjs +86 -0
  47. package/{esm2020 → esm2022}/ngx-utils/pipes/values.pipe.mjs +22 -22
  48. package/esm2022/ngx-utils/plugins/resize-event.plugin.mjs +78 -0
  49. package/esm2022/ngx-utils/plugins/scroll-event.plugin.mjs +39 -0
  50. package/{esm2020 → esm2022}/ngx-utils/services/acl.service.mjs +84 -83
  51. package/esm2022/ngx-utils/services/api.service.mjs +42 -0
  52. package/{esm2020 → esm2022}/ngx-utils/services/auth.service.mjs +13 -13
  53. package/esm2022/ngx-utils/services/base-http.client.mjs +47 -0
  54. package/esm2022/ngx-utils/services/base-http.service.mjs +305 -0
  55. package/esm2022/ngx-utils/services/config.service.mjs +130 -0
  56. package/esm2022/ngx-utils/services/error-handler.service.mjs +49 -0
  57. package/{esm2020 → esm2022}/ngx-utils/services/events.service.mjs +26 -26
  58. package/{esm2020 → esm2022}/ngx-utils/services/formatter.service.mjs +49 -49
  59. package/esm2022/ngx-utils/services/global-template.service.mjs +37 -0
  60. package/esm2022/ngx-utils/services/icon.service.mjs +26 -0
  61. package/esm2022/ngx-utils/services/language.service.mjs +124 -0
  62. package/{esm2020 → esm2022}/ngx-utils/services/local-http.service.mjs +47 -47
  63. package/{esm2020 → esm2022}/ngx-utils/services/open-api.service.mjs +40 -40
  64. package/{esm2020 → esm2022}/ngx-utils/services/promise.service.mjs +55 -55
  65. package/esm2022/ngx-utils/services/state.service.mjs +177 -0
  66. package/{esm2020 → esm2022}/ngx-utils/services/static-language.service.mjs +166 -166
  67. package/esm2022/ngx-utils/services/storage.service.mjs +49 -0
  68. package/{esm2020 → esm2022}/ngx-utils/services/toaster.service.mjs +32 -32
  69. package/esm2022/ngx-utils/services/translated-url.serializer.mjs +73 -0
  70. package/esm2022/ngx-utils/services/universal.service.mjs +81 -0
  71. package/{esm2020 → esm2022}/ngx-utils/services/wasm.service.mjs +46 -46
  72. package/esm2022/ngx-utils/utils/ajax-request-handler.mjs +40 -0
  73. package/esm2022/ngx-utils/utils/array.utils.mjs +107 -0
  74. package/esm2022/ngx-utils/utils/auth.guard.mjs +181 -0
  75. package/esm2022/ngx-utils/utils/cached-factory.mjs +30 -0
  76. package/esm2022/ngx-utils/utils/canvas.utils.mjs +388 -0
  77. package/esm2022/ngx-utils/utils/date.utils.mjs +29 -0
  78. package/{esm2020 → esm2022}/ngx-utils/utils/file-system.mjs +24 -24
  79. package/esm2022/ngx-utils/utils/file.utils.mjs +90 -0
  80. package/{esm2020 → esm2022}/ngx-utils/utils/generic-value.mjs +20 -20
  81. package/esm2022/ngx-utils/utils/geometry.mjs +132 -0
  82. package/{esm2020 → esm2022}/ngx-utils/utils/initializer.mjs +20 -20
  83. package/esm2022/ngx-utils/utils/jsonfn.mjs +45 -0
  84. package/esm2022/ngx-utils/utils/loader.utils.mjs +55 -0
  85. package/esm2022/ngx-utils/utils/math.utils.mjs +44 -0
  86. package/esm2022/ngx-utils/utils/object.utils.mjs +320 -0
  87. package/{esm2020 → esm2022}/ngx-utils/utils/observable.utils.mjs +63 -63
  88. package/esm2022/ngx-utils/utils/reflect.utils.mjs +33 -0
  89. package/esm2022/ngx-utils/utils/set.utils.mjs +20 -0
  90. package/esm2022/ngx-utils/utils/string.utils.mjs +41 -0
  91. package/{esm2020 → esm2022}/ngx-utils/utils/timer.utils.mjs +51 -51
  92. package/esm2022/ngx-utils/utils/unique.utils.mjs +24 -0
  93. package/esm2022/ngx-utils/utils/vector.mjs +77 -0
  94. package/esm2022/ngx-utils/utils/wasi.mjs +159 -0
  95. package/esm2022/ngx-utils/utils/wasm-worker-proxy.mjs +99 -0
  96. package/{esm2020 → esm2022}/ngx-utils/utils/with-options-provider.mjs +23 -23
  97. package/{esm2020 → esm2022}/public_api.mjs +93 -93
  98. package/{esm2020 → esm2022}/stemy-ngx-utils.mjs +4 -4
  99. package/esm2022/tools/config.mjs +71 -0
  100. package/{esm2020 → esm2022}/tools/public_api.mjs +1 -1
  101. package/{esm2020 → esm2022}/tools/stemy-ngx-utils-tools.mjs +4 -4
  102. package/{fesm2020 → fesm2022}/stemy-ngx-utils-tools.mjs +71 -71
  103. package/{fesm2015 → fesm2022}/stemy-ngx-utils-tools.mjs.map +1 -1
  104. package/{fesm2020 → fesm2022}/stemy-ngx-utils.mjs +5639 -5636
  105. package/fesm2022/stemy-ngx-utils.mjs.map +1 -0
  106. package/{stemy-ngx-utils.d.ts → index.d.ts} +5 -5
  107. package/ng.mjs +5 -0
  108. package/ngx-utils/common-types.d.ts +378 -378
  109. package/ngx-utils/components/dynamic-table/dynamic-table.component.d.ts +56 -56
  110. package/ngx-utils/components/pagination-menu/pagination-menu.component.d.ts +31 -31
  111. package/ngx-utils/components/unordered-list/unordered-list.component.d.ts +25 -25
  112. package/ngx-utils/directives/async-method.base.d.ts +19 -19
  113. package/ngx-utils/directives/async-method.directive.d.ts +9 -9
  114. package/ngx-utils/directives/background.directive.d.ts +17 -17
  115. package/ngx-utils/directives/dynamic-table-template.directive.d.ts +11 -11
  116. package/ngx-utils/directives/global-template.directive.d.ts +13 -13
  117. package/ngx-utils/directives/icon.directive.d.ts +23 -23
  118. package/ngx-utils/directives/ngx-template-outlet.directive.d.ts +17 -17
  119. package/ngx-utils/directives/pagination-item.directive.d.ts +15 -15
  120. package/ngx-utils/directives/pagination.directive.d.ts +25 -25
  121. package/ngx-utils/directives/resource-if.directive.d.ts +19 -19
  122. package/ngx-utils/directives/sticky-class.directive.d.ts +15 -15
  123. package/ngx-utils/directives/sticky.directive.d.ts +19 -19
  124. package/ngx-utils/directives/unordered-list-item.directive.d.ts +28 -28
  125. package/ngx-utils/directives/unordered-list-template.directive.d.ts +11 -11
  126. package/ngx-utils/ngx-utils.imports.d.ts +74 -0
  127. package/ngx-utils/ngx-utils.module.d.ts +58 -58
  128. package/ngx-utils/pipes/chunk.pipe.d.ts +7 -7
  129. package/ngx-utils/pipes/entries.pipe.d.ts +12 -12
  130. package/ngx-utils/pipes/extra-item-properties.pipe.d.ts +8 -8
  131. package/ngx-utils/pipes/filter.pipe.d.ts +8 -8
  132. package/ngx-utils/pipes/find.pipe.d.ts +8 -8
  133. package/ngx-utils/pipes/format-number.pipe.d.ts +10 -10
  134. package/ngx-utils/pipes/get-offset.pipe.d.ts +7 -7
  135. package/ngx-utils/pipes/get-type.pipe.d.ts +7 -7
  136. package/ngx-utils/pipes/global-template.pipe.d.ts +16 -16
  137. package/ngx-utils/pipes/group-by.pipe.d.ts +8 -8
  138. package/ngx-utils/pipes/is-type.pipe.d.ts +7 -7
  139. package/ngx-utils/pipes/join.pipe.d.ts +7 -7
  140. package/ngx-utils/pipes/keys.pipe.d.ts +7 -7
  141. package/ngx-utils/pipes/map.pipe.d.ts +8 -8
  142. package/ngx-utils/pipes/max.pipe.d.ts +7 -7
  143. package/ngx-utils/pipes/min.pipe.d.ts +7 -7
  144. package/ngx-utils/pipes/pop.pipe.d.ts +7 -7
  145. package/ngx-utils/pipes/reduce.pipe.d.ts +8 -8
  146. package/ngx-utils/pipes/remap.pipe.d.ts +7 -7
  147. package/ngx-utils/pipes/replace.pipe.d.ts +7 -7
  148. package/ngx-utils/pipes/reverse.pipe.d.ts +7 -7
  149. package/ngx-utils/pipes/round.pipe.d.ts +10 -10
  150. package/ngx-utils/pipes/safe-html.pipe.d.ts +10 -10
  151. package/ngx-utils/pipes/shift.pipe.d.ts +7 -7
  152. package/ngx-utils/pipes/split.pipe.d.ts +7 -7
  153. package/ngx-utils/pipes/translate.pipe.d.ts +19 -19
  154. package/ngx-utils/pipes/values.pipe.d.ts +7 -7
  155. package/ngx-utils/plugins/resize-event.plugin.d.ts +17 -17
  156. package/ngx-utils/plugins/scroll-event.plugin.d.ts +13 -13
  157. package/ngx-utils/services/acl.service.d.ts +14 -14
  158. package/ngx-utils/services/api.service.d.ts +17 -17
  159. package/ngx-utils/services/auth.service.d.ts +8 -8
  160. package/ngx-utils/services/base-http.client.d.ts +15 -15
  161. package/ngx-utils/services/base-http.service.d.ts +53 -53
  162. package/ngx-utils/services/config.service.d.ts +30 -30
  163. package/ngx-utils/services/error-handler.service.d.ts +13 -13
  164. package/ngx-utils/services/events.service.d.ts +14 -14
  165. package/ngx-utils/services/formatter.service.d.ts +15 -15
  166. package/ngx-utils/services/global-template.service.d.ts +19 -19
  167. package/ngx-utils/services/icon.service.d.ts +13 -13
  168. package/ngx-utils/services/language.service.d.ts +21 -21
  169. package/ngx-utils/services/local-http.service.d.ts +14 -14
  170. package/ngx-utils/services/open-api.service.d.ts +11 -11
  171. package/ngx-utils/services/promise.service.d.ts +19 -19
  172. package/ngx-utils/services/state.service.d.ts +49 -49
  173. package/ngx-utils/services/static-language.service.d.ts +46 -46
  174. package/ngx-utils/services/storage.service.d.ts +15 -15
  175. package/ngx-utils/services/toaster.service.d.ts +13 -13
  176. package/ngx-utils/services/translated-url.serializer.d.ts +19 -19
  177. package/ngx-utils/services/universal.service.d.ts +28 -28
  178. package/ngx-utils/services/wasm.service.d.ts +25 -25
  179. package/ngx-utils/utils/ajax-request-handler.d.ts +11 -11
  180. package/ngx-utils/utils/array.utils.d.ts +11 -11
  181. package/ngx-utils/utils/auth.guard.d.ts +29 -29
  182. package/ngx-utils/utils/cached-factory.d.ts +2 -2
  183. package/ngx-utils/utils/canvas.utils.d.ts +13 -13
  184. package/ngx-utils/utils/date.utils.d.ts +8 -8
  185. package/ngx-utils/utils/file-system.d.ts +16 -16
  186. package/ngx-utils/utils/file.utils.d.ts +14 -14
  187. package/ngx-utils/utils/generic-value.d.ts +8 -8
  188. package/ngx-utils/utils/geometry.d.ts +50 -50
  189. package/ngx-utils/utils/initializer.d.ts +12 -12
  190. package/ngx-utils/utils/jsonfn.d.ts +6 -6
  191. package/ngx-utils/utils/loader.utils.d.ts +7 -7
  192. package/ngx-utils/utils/math.utils.d.ts +8 -8
  193. package/ngx-utils/utils/object.utils.d.ts +35 -35
  194. package/ngx-utils/utils/observable.utils.d.ts +13 -13
  195. package/ngx-utils/utils/reflect.utils.d.ts +9 -9
  196. package/ngx-utils/utils/set.utils.d.ts +4 -4
  197. package/ngx-utils/utils/string.utils.d.ts +9 -9
  198. package/ngx-utils/utils/timer.utils.d.ts +6 -6
  199. package/ngx-utils/utils/unique.utils.d.ts +5 -5
  200. package/ngx-utils/utils/vector.d.ts +23 -23
  201. package/ngx-utils/utils/wasi.d.ts +26 -26
  202. package/ngx-utils/utils/wasm-worker-proxy.d.ts +17 -17
  203. package/ngx-utils/utils/with-options-provider.d.ts +3 -3
  204. package/package.json +21 -29
  205. package/public_api.d.ts +93 -93
  206. package/tools/config.d.ts +7 -7
  207. package/tools/{stemy-ngx-utils-tools.d.ts → index.d.ts} +5 -5
  208. package/tools/public_api.d.ts +1 -1
  209. package/esm2020/ngx-utils/common-types.mjs +0 -123
  210. package/esm2020/ngx-utils/components/dynamic-table/dynamic-table.component.mjs +0 -210
  211. package/esm2020/ngx-utils/components/pagination-menu/pagination-menu.component.mjs +0 -101
  212. package/esm2020/ngx-utils/components/unordered-list/unordered-list.component.mjs +0 -65
  213. package/esm2020/ngx-utils/directives/async-method.base.mjs +0 -82
  214. package/esm2020/ngx-utils/directives/background.directive.mjs +0 -51
  215. package/esm2020/ngx-utils/directives/icon.directive.mjs +0 -67
  216. package/esm2020/ngx-utils/directives/ngx-template-outlet.directive.mjs +0 -90
  217. package/esm2020/ngx-utils/directives/pagination.directive.mjs +0 -84
  218. package/esm2020/ngx-utils/directives/resource-if.directive.mjs +0 -50
  219. package/esm2020/ngx-utils/directives/sticky-class.directive.mjs +0 -34
  220. package/esm2020/ngx-utils/ngx-utils.module.mjs +0 -204
  221. package/esm2020/ngx-utils/pipes/chunk.pipe.mjs +0 -25
  222. package/esm2020/ngx-utils/pipes/filter.pipe.mjs +0 -37
  223. package/esm2020/ngx-utils/pipes/find.pipe.mjs +0 -29
  224. package/esm2020/ngx-utils/pipes/global-template.pipe.mjs +0 -41
  225. package/esm2020/ngx-utils/pipes/remap.pipe.mjs +0 -32
  226. package/esm2020/ngx-utils/pipes/reverse.pipe.mjs +0 -24
  227. package/esm2020/ngx-utils/pipes/safe-html.pipe.mjs +0 -34
  228. package/esm2020/ngx-utils/pipes/translate.pipe.mjs +0 -86
  229. package/esm2020/ngx-utils/plugins/resize-event.plugin.mjs +0 -78
  230. package/esm2020/ngx-utils/plugins/scroll-event.plugin.mjs +0 -39
  231. package/esm2020/ngx-utils/services/api.service.mjs +0 -42
  232. package/esm2020/ngx-utils/services/base-http.client.mjs +0 -47
  233. package/esm2020/ngx-utils/services/base-http.service.mjs +0 -305
  234. package/esm2020/ngx-utils/services/config.service.mjs +0 -130
  235. package/esm2020/ngx-utils/services/error-handler.service.mjs +0 -49
  236. package/esm2020/ngx-utils/services/global-template.service.mjs +0 -37
  237. package/esm2020/ngx-utils/services/icon.service.mjs +0 -26
  238. package/esm2020/ngx-utils/services/language.service.mjs +0 -124
  239. package/esm2020/ngx-utils/services/state.service.mjs +0 -173
  240. package/esm2020/ngx-utils/services/storage.service.mjs +0 -49
  241. package/esm2020/ngx-utils/services/translated-url.serializer.mjs +0 -73
  242. package/esm2020/ngx-utils/services/universal.service.mjs +0 -81
  243. package/esm2020/ngx-utils/utils/ajax-request-handler.mjs +0 -40
  244. package/esm2020/ngx-utils/utils/array.utils.mjs +0 -107
  245. package/esm2020/ngx-utils/utils/auth.guard.mjs +0 -181
  246. package/esm2020/ngx-utils/utils/cached-factory.mjs +0 -30
  247. package/esm2020/ngx-utils/utils/canvas.utils.mjs +0 -388
  248. package/esm2020/ngx-utils/utils/date.utils.mjs +0 -29
  249. package/esm2020/ngx-utils/utils/file.utils.mjs +0 -90
  250. package/esm2020/ngx-utils/utils/geometry.mjs +0 -132
  251. package/esm2020/ngx-utils/utils/jsonfn.mjs +0 -45
  252. package/esm2020/ngx-utils/utils/loader.utils.mjs +0 -55
  253. package/esm2020/ngx-utils/utils/math.utils.mjs +0 -44
  254. package/esm2020/ngx-utils/utils/object.utils.mjs +0 -320
  255. package/esm2020/ngx-utils/utils/reflect.utils.mjs +0 -33
  256. package/esm2020/ngx-utils/utils/set.utils.mjs +0 -20
  257. package/esm2020/ngx-utils/utils/string.utils.mjs +0 -41
  258. package/esm2020/ngx-utils/utils/unique.utils.mjs +0 -24
  259. package/esm2020/ngx-utils/utils/vector.mjs +0 -77
  260. package/esm2020/ngx-utils/utils/wasi.mjs +0 -159
  261. package/esm2020/ngx-utils/utils/wasm-worker-proxy.mjs +0 -99
  262. package/esm2020/tools/config.mjs +0 -71
  263. package/fesm2015/stemy-ngx-utils-tools.mjs +0 -77
  264. package/fesm2015/stemy-ngx-utils.mjs +0 -5894
  265. package/fesm2015/stemy-ngx-utils.mjs.map +0 -1
  266. package/fesm2020/stemy-ngx-utils-tools.mjs.map +0 -1
  267. package/fesm2020/stemy-ngx-utils.mjs.map +0 -1
  268. package/tools/package.json +0 -10
@@ -1,5 +1,5 @@
1
- export declare class UniqueUtils {
2
- static uuid(): string;
3
- private static pad4;
4
- private static random4;
5
- }
1
+ export declare class UniqueUtils {
2
+ static uuid(): string;
3
+ private static pad4;
4
+ private static random4;
5
+ }
@@ -1,23 +1,23 @@
1
- export declare class Vector {
2
- x: number;
3
- y: number;
4
- z: number;
5
- get negative(): Vector;
6
- get length(): number;
7
- get unit(): Vector;
8
- get min(): number;
9
- get max(): number;
10
- get angles(): any;
11
- constructor(x: number, y: number, z: number);
12
- add(v: Vector | number): Vector;
13
- subtract(v: Vector | number): Vector;
14
- multiply(v: Vector | number): Vector;
15
- divide(v: Vector | number): Vector;
16
- equals(v: Vector): boolean;
17
- dot(v: Vector): number;
18
- cross(v: Vector): Vector;
19
- angleTo(v: Vector): number;
20
- toArray(n?: number): number[];
21
- clone(): Vector;
22
- init(x: number, y: number, z: number): Vector;
23
- }
1
+ export declare class Vector {
2
+ x: number;
3
+ y: number;
4
+ z: number;
5
+ get negative(): Vector;
6
+ get length(): number;
7
+ get unit(): Vector;
8
+ get min(): number;
9
+ get max(): number;
10
+ get angles(): any;
11
+ constructor(x: number, y: number, z: number);
12
+ add(v: Vector | number): Vector;
13
+ subtract(v: Vector | number): Vector;
14
+ multiply(v: Vector | number): Vector;
15
+ divide(v: Vector | number): Vector;
16
+ equals(v: Vector): boolean;
17
+ dot(v: Vector): number;
18
+ cross(v: Vector): Vector;
19
+ angleTo(v: Vector): number;
20
+ toArray(n?: number): number[];
21
+ clone(): Vector;
22
+ init(x: number, y: number, z: number): Vector;
23
+ }
@@ -1,26 +1,26 @@
1
- import { IWasi, IWasmExports } from "../common-types";
2
- import * as i0 from "@angular/core";
3
- export declare class Wasi implements IWasi {
4
- protected env: {
5
- [key: string]: string;
6
- };
7
- protected instantiated: boolean;
8
- protected wasi: any;
9
- protected wasm: IWasmExports;
10
- protected envStrings: string[];
11
- constructor();
12
- instantiate(bytes: ArrayBuffer): Promise<IWasmExports>;
13
- protected updateMemoryViews(): void;
14
- protected getEnvStrings(): string[];
15
- protected stringToAscii(str: any, buffer: any): void;
16
- emscripten_notify_memory_growth(memoryIndex: number): void;
17
- proc_exit(rval: number): void;
18
- environ_get(environ: number, environ_buf: number): number;
19
- environ_sizes_get(penviron_count: number, penviron_buf_size: number): number;
20
- fd_close(fd: number): number;
21
- fd_write(fd: number, iovs: number, iovs_len: number, nwritten: number): number;
22
- fd_read(fd: number, iovs: number, iovs_len: number, nread: number): number;
23
- fd_seek(fd: number, offset: number, whence: number, newOffset: number): number;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<Wasi, never>;
25
- static ɵprov: i0.ɵɵInjectableDeclaration<Wasi>;
26
- }
1
+ import { IWasi, IWasmExports } from "../common-types";
2
+ import * as i0 from "@angular/core";
3
+ export declare class Wasi implements IWasi {
4
+ protected env: {
5
+ [key: string]: string;
6
+ };
7
+ protected instantiated: boolean;
8
+ protected wasi: any;
9
+ protected wasm: IWasmExports;
10
+ protected envStrings: string[];
11
+ constructor();
12
+ instantiate(bytes: ArrayBuffer): Promise<IWasmExports>;
13
+ protected updateMemoryViews(): void;
14
+ protected getEnvStrings(): string[];
15
+ protected stringToAscii(str: any, buffer: any): void;
16
+ emscripten_notify_memory_growth(memoryIndex: number): void;
17
+ proc_exit(rval: number): void;
18
+ environ_get(environ: number, environ_buf: number): number;
19
+ environ_sizes_get(penviron_count: number, penviron_buf_size: number): number;
20
+ fd_close(fd: number): number;
21
+ fd_write(fd: number, iovs: number, iovs_len: number, nwritten: number): number;
22
+ fd_read(fd: number, iovs: number, iovs_len: number, nread: number): number;
23
+ fd_seek(fd: number, offset: number, whence: number, newOffset: number): number;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<Wasi, never>;
25
+ static ɵprov: i0.ɵɵInjectableDeclaration<Wasi>;
26
+ }
@@ -1,17 +1,17 @@
1
- import { IWasi } from "../common-types";
2
- import { Type } from "@angular/core";
3
- interface IPromiseExecutor {
4
- resolve: (value?: any) => void;
5
- reject: (reason?: any) => void;
6
- }
7
- export declare function workerFunction(JSONfn: any, logTimes: boolean): void;
8
- export declare class WasmWorkerProxy {
9
- protected methods: Promise<string[]>;
10
- protected onMethods: (methods: string[]) => void;
11
- protected worker: Worker;
12
- protected promises: Map<string, IPromiseExecutor>;
13
- constructor(wasmPath: string, wasi: Type<IWasi>, logTimes?: boolean);
14
- onMessage(e: MessageEvent): void;
15
- call(method: string, args: any[]): Promise<any>;
16
- }
17
- export {};
1
+ import { IWasi } from "../common-types";
2
+ import { Type } from "@angular/core";
3
+ interface IPromiseExecutor {
4
+ resolve: (value?: any) => void;
5
+ reject: (reason?: any) => void;
6
+ }
7
+ export declare function workerFunction(JSONfn: any, logTimes: boolean): void;
8
+ export declare class WasmWorkerProxy {
9
+ protected methods: Promise<string[]>;
10
+ protected onMethods: (methods: string[]) => void;
11
+ protected worker: Worker;
12
+ protected promises: Map<string, IPromiseExecutor>;
13
+ constructor(wasmPath: string, wasi: Type<IWasi>, logTimes?: boolean);
14
+ onMessage(e: MessageEvent): void;
15
+ call(method: string, args: any[]): Promise<any>;
16
+ }
17
+ export {};
@@ -1,3 +1,3 @@
1
- import { Type } from "@angular/core";
2
- import { TypedFactoryProvider } from "../common-types";
3
- export declare function provideWithOptions<O extends Object, T = any>(type: Type<T>, options: O): TypedFactoryProvider<T>;
1
+ import { Type } from "@angular/core";
2
+ import { TypedFactoryProvider } from "../common-types";
3
+ export declare function provideWithOptions<O extends Object, T = any>(type: Type<T>, options: O): TypedFactoryProvider<T>;
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@stemy/ngx-utils",
3
- "version": "13.6.17",
3
+ "version": "17.0.0",
4
4
  "license": "MIT",
5
5
  "public": true,
6
6
  "repository": "https://github.com/stemyke/ngx-utils.git",
7
7
  "author": "stemy <balazs.stemler@metrix.co.hu>",
8
8
  "peerDependencies": {
9
- "@angular/animations": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
10
- "@angular/common": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
11
- "@angular/compiler": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
12
- "@angular/core": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
13
- "@angular/forms": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
14
- "@angular/router": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
15
- "@angular/platform-browser": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
16
- "@angular/platform-server": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
9
+ "@angular/animations": "^17.0.0 || ^18.0.0",
10
+ "@angular/common": "^17.0.0 || ^18.0.0",
11
+ "@angular/compiler": "^17.0.0 || ^18.0.0",
12
+ "@angular/core": "^17.0.0 || ^18.0.0",
13
+ "@angular/forms": "^17.0.0 || ^18.0.0",
14
+ "@angular/router": "^17.0.0 || ^18.0.0",
15
+ "@angular/platform-browser": "^17.0.0 || ^18.0.0",
16
+ "@angular/platform-server": "^17.0.0 || ^18.0.0",
17
17
  "express": "^4.0.0",
18
18
  "element-resize-detector": "^1.2.4",
19
19
  "core-js": "^3.6.5 || ^3.22.5",
@@ -21,37 +21,29 @@
21
21
  "zone.js": "^0.10.3 || ^0.11.4 || ^0.11.5",
22
22
  "moment": "^2.27.0",
23
23
  "invokable": "^1.0.3",
24
- "ngx-device-detector": "~2.1.1 || ~3.0.0 || ~4.0.1 || ~5.0.0",
25
- "json5": "^2.2.1"
24
+ "ngx-device-detector": "^5.0.1",
25
+ "json5": "^2.2.3"
26
26
  },
27
27
  "main": "dist/bundles/stemy-ngx-utils.umd.js",
28
- "module": "fesm2015/stemy-ngx-utils.mjs",
28
+ "module": "fesm2022/stemy-ngx-utils.mjs",
29
29
  "es2015": "dist/esm2015/stemy-ngx-utils.js",
30
- "typings": "stemy-ngx-utils.d.ts",
30
+ "typings": "index.d.ts",
31
31
  "metadata": "dist/stemy-ngx-utils.metadata.json",
32
- "es2020": "fesm2020/stemy-ngx-utils.mjs",
33
- "esm2020": "esm2020/stemy-ngx-utils.mjs",
34
- "fesm2020": "fesm2020/stemy-ngx-utils.mjs",
35
- "fesm2015": "fesm2015/stemy-ngx-utils.mjs",
36
32
  "exports": {
37
33
  "./package.json": {
38
34
  "default": "./package.json"
39
35
  },
40
36
  ".": {
41
- "types": "./stemy-ngx-utils.d.ts",
42
- "esm2020": "./esm2020/stemy-ngx-utils.mjs",
43
- "es2020": "./fesm2020/stemy-ngx-utils.mjs",
44
- "es2015": "./fesm2015/stemy-ngx-utils.mjs",
45
- "node": "./fesm2015/stemy-ngx-utils.mjs",
46
- "default": "./fesm2020/stemy-ngx-utils.mjs"
37
+ "types": "./index.d.ts",
38
+ "esm2022": "./esm2022/stemy-ngx-utils.mjs",
39
+ "esm": "./esm2022/stemy-ngx-utils.mjs",
40
+ "default": "./fesm2022/stemy-ngx-utils.mjs"
47
41
  },
48
42
  "./tools": {
49
- "types": "./tools/stemy-ngx-utils-tools.d.ts",
50
- "esm2020": "./esm2020/tools/stemy-ngx-utils-tools.mjs",
51
- "es2020": "./fesm2020/stemy-ngx-utils-tools.mjs",
52
- "es2015": "./fesm2015/stemy-ngx-utils-tools.mjs",
53
- "node": "./fesm2015/stemy-ngx-utils-tools.mjs",
54
- "default": "./fesm2020/stemy-ngx-utils-tools.mjs"
43
+ "types": "./tools/index.d.ts",
44
+ "esm2022": "./esm2022/tools/stemy-ngx-utils-tools.mjs",
45
+ "esm": "./esm2022/tools/stemy-ngx-utils-tools.mjs",
46
+ "default": "./fesm2022/stemy-ngx-utils-tools.mjs"
55
47
  }
56
48
  },
57
49
  "sideEffects": false,
package/public_api.d.ts CHANGED
@@ -1,93 +1,93 @@
1
- export { TypedFactoryProvider, TypedValueProvider, CachedProvider, CachedFactory, OPTIONS_TOKEN, IResolveFactory, CanvasColor, IIconService, ICON_SERVICE, ITranslation, ITranslations, ILanguageSetting, ILanguageSettings, ILanguageService, LANGUAGE_SERVICE, IAuthService, RouteValidator, IRouteData, IRoute, AUTH_SERVICE, IAclComponent, IPromiseService, PROMISE_SERVICE, IWasi, IWasmExports, IWasm, IWasmAsync, WASI_IMPLEMENTATION, IRouteStateInfo, NavigationUrlParam, StorageMode, IToasterService, TOASTER_SERVICE, IAsyncMessage, AsyncMethod, UnorderedListTemplate, UnorderedListTemplates, UnorderedListStyle, IAjaxRequestDetails, AjaxRequestCallback, ScriptType, IScriptPromises, IStylePromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IHttpHeaders, IHttpParams, IRequestOptions, IIssueContext, IProgress, ProgressListener, PromiseExecutor, HttpPromise, IHttpService, EXPRESS_REQUEST, IApiService, API_SERVICE, IOpenApiSchemaProperty, IOpenApiSchema, IOpenApiSchemas, ITableOrders, ITableColumn, ITableColumns, TableColumns, ITableTemplate, ITableTemplates, ITableDataQuery, TableDataLoader, ResourceIfContext, APP_BASE_URL, IConfiguration, IConfigService, CONFIG_SERVICE, BASE_CONFIG, SCRIPT_PARAMS, ROOT_ELEMENT, RESIZE_DELAY, ResizeEventStrategy, RESIZE_STRATEGY, ErrorHandlerCallback, ERROR_HANDLER, GlobalComponentModifier, IGlobalTemplates, GLOBAL_TEMPLATES, AppInitializerFunc, IModuleConfig, ValuedPromise } from "./ngx-utils/common-types";
2
- export { AjaxRequestHandler } from "./ngx-utils/utils/ajax-request-handler";
3
- export { ArrayUtils } from "./ngx-utils/utils/array.utils";
4
- export { AuthGuard } from "./ngx-utils/utils/auth.guard";
5
- export { cachedFactory } from "./ngx-utils/utils/cached-factory";
6
- export { CanvasUtils } from "./ngx-utils/utils/canvas.utils";
7
- export { DateUtils } from "./ngx-utils/utils/date.utils";
8
- export { FileUtils } from "./ngx-utils/utils/file.utils";
9
- export { GenericValue } from "./ngx-utils/utils/generic-value";
10
- export { FileSystemEntryOpenResult, FileSystemEntryOpenCb, FileSystemEntry } from "./ngx-utils/utils/file-system";
11
- export { IShape, Rect, Circle, Point } from "./ngx-utils/utils/geometry";
12
- export { Initializer } from "./ngx-utils/utils/initializer";
13
- export { JSONfn } from "./ngx-utils/utils/jsonfn";
14
- export { ReflectUtils } from "./ngx-utils/utils/reflect.utils";
15
- export { LoaderUtils } from "./ngx-utils/utils/loader.utils";
16
- export { MathUtils } from "./ngx-utils/utils/math.utils";
17
- export { ObjectUtils } from "./ngx-utils/utils/object.utils";
18
- export { ObservableUtils, ISubscriberInfo } from "./ngx-utils/utils/observable.utils";
19
- export { StringUtils } from "./ngx-utils/utils/string.utils";
20
- export { SetUtils } from "./ngx-utils/utils/set.utils";
21
- export { TimerUtils } from "./ngx-utils/utils/timer.utils";
22
- export { UniqueUtils } from "./ngx-utils/utils/unique.utils";
23
- export { Vector } from "./ngx-utils/utils/vector";
24
- export { provideWithOptions } from "./ngx-utils/utils/with-options-provider";
25
- export { UniversalService } from "./ngx-utils/services/universal.service";
26
- export { WasmService } from "./ngx-utils/services/wasm.service";
27
- export { AclService } from "./ngx-utils/services/acl.service";
28
- export { ApiService } from "./ngx-utils/services/api.service";
29
- export { StaticAuthService } from "./ngx-utils/services/auth.service";
30
- export { BaseHttpClient } from "./ngx-utils/services/base-http.client";
31
- export { BaseHttpService } from "./ngx-utils/services/base-http.service";
32
- export { ConfigService } from "./ngx-utils/services/config.service";
33
- export { ErrorHandlerService } from "./ngx-utils/services/error-handler.service";
34
- export { EventsService } from "./ngx-utils/services/events.service";
35
- export { FormatterService } from "./ngx-utils/services/formatter.service";
36
- export { GlobalTemplateService } from "./ngx-utils/services/global-template.service";
37
- export { IconService } from "./ngx-utils/services/icon.service";
38
- export { LanguageService } from "./ngx-utils/services/language.service";
39
- export { LocalHttpService } from "./ngx-utils/services/local-http.service";
40
- export { OpenApiService } from "./ngx-utils/services/open-api.service";
41
- export { IStateInfo, StateService } from "./ngx-utils/services/state.service";
42
- export { StaticLanguageService } from "./ngx-utils/services/static-language.service";
43
- export { StorageService } from "./ngx-utils/services/storage.service";
44
- export { ConsoleToasterService } from "./ngx-utils/services/toaster.service";
45
- export { IUrlDictionary, TranslatedUrlSerializer } from "./ngx-utils/services/translated-url.serializer";
46
- export { PromiseService } from "./ngx-utils/services/promise.service";
47
- export { ResizeEventPlugin } from "./ngx-utils/plugins/resize-event.plugin";
48
- export { ScrollEventPlugin } from "./ngx-utils/plugins/scroll-event.plugin";
49
- export { ChunkPipe } from "./ngx-utils/pipes/chunk.pipe";
50
- export { EntriesPipe } from "./ngx-utils/pipes/entries.pipe";
51
- export { ExtraItemPropertiesPipe } from "./ngx-utils/pipes/extra-item-properties.pipe";
52
- export { FilterPipe } from "./ngx-utils/pipes/filter.pipe";
53
- export { FindPipe } from "./ngx-utils/pipes/find.pipe";
54
- export { FormatNumberPipe } from "./ngx-utils/pipes/format-number.pipe";
55
- export { GetOffsetPipe } from "./ngx-utils/pipes/get-offset.pipe";
56
- export { GetTypePipe } from "./ngx-utils/pipes/get-type.pipe";
57
- export { GlobalTemplatePipe } from "./ngx-utils/pipes/global-template.pipe";
58
- export { GroupByPipe } from "./ngx-utils/pipes/group-by.pipe";
59
- export { IsTypePipe } from "./ngx-utils/pipes/is-type.pipe";
60
- export { JoinPipe } from "./ngx-utils/pipes/join.pipe";
61
- export { KeysPipe } from "./ngx-utils/pipes/keys.pipe";
62
- export { MapPipe } from "./ngx-utils/pipes/map.pipe";
63
- export { MaxPipe } from "./ngx-utils/pipes/max.pipe";
64
- export { MinPipe } from "./ngx-utils/pipes/min.pipe";
65
- export { PopPipe } from "./ngx-utils/pipes/pop.pipe";
66
- export { ReducePipe } from "./ngx-utils/pipes/reduce.pipe";
67
- export { RemapPipe } from "./ngx-utils/pipes/remap.pipe";
68
- export { ReplacePipe } from "./ngx-utils/pipes/replace.pipe";
69
- export { ReversePipe } from "./ngx-utils/pipes/reverse.pipe";
70
- export { RoundPipe } from "./ngx-utils/pipes/round.pipe";
71
- export { SafeHtmlPipe } from "./ngx-utils/pipes/safe-html.pipe";
72
- export { ShiftPipe } from "./ngx-utils/pipes/shift.pipe";
73
- export { SplitPipe } from "./ngx-utils/pipes/split.pipe";
74
- export { TranslatePipe } from "./ngx-utils/pipes/translate.pipe";
75
- export { ValuesPipe } from "./ngx-utils/pipes/values.pipe";
76
- export { AsyncMethodBase } from "./ngx-utils/directives/async-method.base";
77
- export { AsyncMethodDirective } from "./ngx-utils/directives/async-method.directive";
78
- export { BackgroundDirective } from "./ngx-utils/directives/background.directive";
79
- export { DynamicTableTemplateDirective } from "./ngx-utils/directives/dynamic-table-template.directive";
80
- export { GlobalTemplateDirective } from "./ngx-utils/directives/global-template.directive";
81
- export { IconDirective } from "./ngx-utils/directives/icon.directive";
82
- export { NgxTemplateOutletDirective } from "./ngx-utils/directives/ngx-template-outlet.directive";
83
- export { PaginationDirective } from "./ngx-utils/directives/pagination.directive";
84
- export { PaginationItemDirective } from "./ngx-utils/directives/pagination-item.directive";
85
- export { ResourceIfDirective } from "./ngx-utils/directives/resource-if.directive";
86
- export { StickyDirective } from "./ngx-utils/directives/sticky.directive";
87
- export { StickyClassDirective } from "./ngx-utils/directives/sticky-class.directive";
88
- export { UnorderedListItemDirective } from "./ngx-utils/directives/unordered-list-item.directive";
89
- export { UnorderedListTemplateDirective } from "./ngx-utils/directives/unordered-list-template.directive";
90
- export { UnorderedListComponent } from "./ngx-utils/components/unordered-list/unordered-list.component";
91
- export { DynamicTableComponent } from "./ngx-utils/components/dynamic-table/dynamic-table.component";
92
- export { PaginationMenuComponent } from "./ngx-utils/components/pagination-menu/pagination-menu.component";
93
- export { NgxUtilsModule } from "./ngx-utils/ngx-utils.module";
1
+ export { TypedFactoryProvider, TypedValueProvider, CachedProvider, CachedFactory, OPTIONS_TOKEN, IResolveFactory, CanvasColor, IIconService, ICON_SERVICE, ITranslation, ITranslations, ILanguageSetting, ILanguageSettings, ILanguageService, LANGUAGE_SERVICE, IAuthService, RouteValidator, IRouteData, IRoute, AUTH_SERVICE, IAclComponent, IPromiseService, PROMISE_SERVICE, IWasi, IWasmExports, IWasm, IWasmAsync, WASI_IMPLEMENTATION, IRouteStateInfo, NavigationUrlParam, StorageMode, IToasterService, TOASTER_SERVICE, IAsyncMessage, AsyncMethod, UnorderedListTemplate, UnorderedListTemplates, UnorderedListStyle, IAjaxRequestDetails, AjaxRequestCallback, ScriptType, IScriptPromises, IStylePromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IHttpHeaders, IHttpParams, IRequestOptions, IIssueContext, IProgress, ProgressListener, PromiseExecutor, HttpPromise, IHttpService, EXPRESS_REQUEST, IApiService, API_SERVICE, IOpenApiSchemaProperty, IOpenApiSchema, IOpenApiSchemas, ITableOrders, ITableColumn, ITableColumns, TableColumns, ITableTemplate, ITableTemplates, ITableDataQuery, TableDataLoader, ResourceIfContext, APP_BASE_URL, IConfiguration, IConfigService, CONFIG_SERVICE, BASE_CONFIG, SCRIPT_PARAMS, ROOT_ELEMENT, RESIZE_DELAY, ResizeEventStrategy, RESIZE_STRATEGY, ErrorHandlerCallback, ERROR_HANDLER, GlobalComponentModifier, IGlobalTemplates, GLOBAL_TEMPLATES, AppInitializerFunc, IModuleConfig, ValuedPromise } from "./ngx-utils/common-types";
2
+ export { AjaxRequestHandler } from "./ngx-utils/utils/ajax-request-handler";
3
+ export { ArrayUtils } from "./ngx-utils/utils/array.utils";
4
+ export { AuthGuard } from "./ngx-utils/utils/auth.guard";
5
+ export { cachedFactory } from "./ngx-utils/utils/cached-factory";
6
+ export { CanvasUtils } from "./ngx-utils/utils/canvas.utils";
7
+ export { DateUtils } from "./ngx-utils/utils/date.utils";
8
+ export { FileUtils } from "./ngx-utils/utils/file.utils";
9
+ export { GenericValue } from "./ngx-utils/utils/generic-value";
10
+ export { FileSystemEntryOpenResult, FileSystemEntryOpenCb, FileSystemEntry } from "./ngx-utils/utils/file-system";
11
+ export { IShape, Rect, Circle, Point } from "./ngx-utils/utils/geometry";
12
+ export { Initializer } from "./ngx-utils/utils/initializer";
13
+ export { JSONfn } from "./ngx-utils/utils/jsonfn";
14
+ export { ReflectUtils } from "./ngx-utils/utils/reflect.utils";
15
+ export { LoaderUtils } from "./ngx-utils/utils/loader.utils";
16
+ export { MathUtils } from "./ngx-utils/utils/math.utils";
17
+ export { ObjectUtils } from "./ngx-utils/utils/object.utils";
18
+ export { ObservableUtils, ISubscriberInfo } from "./ngx-utils/utils/observable.utils";
19
+ export { StringUtils } from "./ngx-utils/utils/string.utils";
20
+ export { SetUtils } from "./ngx-utils/utils/set.utils";
21
+ export { TimerUtils } from "./ngx-utils/utils/timer.utils";
22
+ export { UniqueUtils } from "./ngx-utils/utils/unique.utils";
23
+ export { Vector } from "./ngx-utils/utils/vector";
24
+ export { provideWithOptions } from "./ngx-utils/utils/with-options-provider";
25
+ export { UniversalService } from "./ngx-utils/services/universal.service";
26
+ export { WasmService } from "./ngx-utils/services/wasm.service";
27
+ export { AclService } from "./ngx-utils/services/acl.service";
28
+ export { ApiService } from "./ngx-utils/services/api.service";
29
+ export { StaticAuthService } from "./ngx-utils/services/auth.service";
30
+ export { BaseHttpClient } from "./ngx-utils/services/base-http.client";
31
+ export { BaseHttpService } from "./ngx-utils/services/base-http.service";
32
+ export { ConfigService } from "./ngx-utils/services/config.service";
33
+ export { ErrorHandlerService } from "./ngx-utils/services/error-handler.service";
34
+ export { EventsService } from "./ngx-utils/services/events.service";
35
+ export { FormatterService } from "./ngx-utils/services/formatter.service";
36
+ export { GlobalTemplateService } from "./ngx-utils/services/global-template.service";
37
+ export { IconService } from "./ngx-utils/services/icon.service";
38
+ export { LanguageService } from "./ngx-utils/services/language.service";
39
+ export { LocalHttpService } from "./ngx-utils/services/local-http.service";
40
+ export { OpenApiService } from "./ngx-utils/services/open-api.service";
41
+ export { IStateInfo, StateService } from "./ngx-utils/services/state.service";
42
+ export { StaticLanguageService } from "./ngx-utils/services/static-language.service";
43
+ export { StorageService } from "./ngx-utils/services/storage.service";
44
+ export { ConsoleToasterService } from "./ngx-utils/services/toaster.service";
45
+ export { IUrlDictionary, TranslatedUrlSerializer } from "./ngx-utils/services/translated-url.serializer";
46
+ export { PromiseService } from "./ngx-utils/services/promise.service";
47
+ export { ResizeEventPlugin } from "./ngx-utils/plugins/resize-event.plugin";
48
+ export { ScrollEventPlugin } from "./ngx-utils/plugins/scroll-event.plugin";
49
+ export { ChunkPipe } from "./ngx-utils/pipes/chunk.pipe";
50
+ export { EntriesPipe } from "./ngx-utils/pipes/entries.pipe";
51
+ export { ExtraItemPropertiesPipe } from "./ngx-utils/pipes/extra-item-properties.pipe";
52
+ export { FilterPipe } from "./ngx-utils/pipes/filter.pipe";
53
+ export { FindPipe } from "./ngx-utils/pipes/find.pipe";
54
+ export { FormatNumberPipe } from "./ngx-utils/pipes/format-number.pipe";
55
+ export { GetOffsetPipe } from "./ngx-utils/pipes/get-offset.pipe";
56
+ export { GetTypePipe } from "./ngx-utils/pipes/get-type.pipe";
57
+ export { GlobalTemplatePipe } from "./ngx-utils/pipes/global-template.pipe";
58
+ export { GroupByPipe } from "./ngx-utils/pipes/group-by.pipe";
59
+ export { IsTypePipe } from "./ngx-utils/pipes/is-type.pipe";
60
+ export { JoinPipe } from "./ngx-utils/pipes/join.pipe";
61
+ export { KeysPipe } from "./ngx-utils/pipes/keys.pipe";
62
+ export { MapPipe } from "./ngx-utils/pipes/map.pipe";
63
+ export { MaxPipe } from "./ngx-utils/pipes/max.pipe";
64
+ export { MinPipe } from "./ngx-utils/pipes/min.pipe";
65
+ export { PopPipe } from "./ngx-utils/pipes/pop.pipe";
66
+ export { ReducePipe } from "./ngx-utils/pipes/reduce.pipe";
67
+ export { RemapPipe } from "./ngx-utils/pipes/remap.pipe";
68
+ export { ReplacePipe } from "./ngx-utils/pipes/replace.pipe";
69
+ export { ReversePipe } from "./ngx-utils/pipes/reverse.pipe";
70
+ export { RoundPipe } from "./ngx-utils/pipes/round.pipe";
71
+ export { SafeHtmlPipe } from "./ngx-utils/pipes/safe-html.pipe";
72
+ export { ShiftPipe } from "./ngx-utils/pipes/shift.pipe";
73
+ export { SplitPipe } from "./ngx-utils/pipes/split.pipe";
74
+ export { TranslatePipe } from "./ngx-utils/pipes/translate.pipe";
75
+ export { ValuesPipe } from "./ngx-utils/pipes/values.pipe";
76
+ export { AsyncMethodBase } from "./ngx-utils/directives/async-method.base";
77
+ export { AsyncMethodDirective } from "./ngx-utils/directives/async-method.directive";
78
+ export { BackgroundDirective } from "./ngx-utils/directives/background.directive";
79
+ export { DynamicTableTemplateDirective } from "./ngx-utils/directives/dynamic-table-template.directive";
80
+ export { GlobalTemplateDirective } from "./ngx-utils/directives/global-template.directive";
81
+ export { IconDirective } from "./ngx-utils/directives/icon.directive";
82
+ export { NgxTemplateOutletDirective } from "./ngx-utils/directives/ngx-template-outlet.directive";
83
+ export { PaginationDirective } from "./ngx-utils/directives/pagination.directive";
84
+ export { PaginationItemDirective } from "./ngx-utils/directives/pagination-item.directive";
85
+ export { ResourceIfDirective } from "./ngx-utils/directives/resource-if.directive";
86
+ export { StickyDirective } from "./ngx-utils/directives/sticky.directive";
87
+ export { StickyClassDirective } from "./ngx-utils/directives/sticky-class.directive";
88
+ export { UnorderedListItemDirective } from "./ngx-utils/directives/unordered-list-item.directive";
89
+ export { UnorderedListTemplateDirective } from "./ngx-utils/directives/unordered-list-template.directive";
90
+ export { UnorderedListComponent } from "./ngx-utils/components/unordered-list/unordered-list.component";
91
+ export { DynamicTableComponent } from "./ngx-utils/components/dynamic-table/dynamic-table.component";
92
+ export { PaginationMenuComponent } from "./ngx-utils/components/pagination-menu/pagination-menu.component";
93
+ export { NgxUtilsModule } from "./ngx-utils/ngx-utils.module";
package/tools/config.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- export declare function isPrimitive(value: any): boolean;
2
- export declare function isDate(value: any): value is Date;
3
- export interface IEnvironmentAlternatives {
4
- [name: string]: string[];
5
- }
6
- export declare function parseConfig(config: any): any;
7
- export declare function createConfig(config: any, alternatives?: IEnvironmentAlternatives): any;
1
+ export declare function isPrimitive(value: any): boolean;
2
+ export declare function isDate(value: any): value is Date;
3
+ export interface IEnvironmentAlternatives {
4
+ [name: string]: string[];
5
+ }
6
+ export declare function parseConfig(config: any): any;
7
+ export declare function createConfig(config: any, alternatives?: IEnvironmentAlternatives): any;
@@ -1,5 +1,5 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@stemy/ngx-utils/tools" />
5
- export * from './public_api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@stemy/ngx-utils/tools" />
5
+ export * from './public_api';
@@ -1 +1 @@
1
- export { createConfig, IEnvironmentAlternatives } from "./config";
1
+ export { createConfig, IEnvironmentAlternatives } from "./config";