tin-spa 9.0.0 → 9.1.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 (249) hide show
  1. package/bundles/tin-spa.umd.js +4416 -1589
  2. package/bundles/tin-spa.umd.js.map +1 -1
  3. package/bundles/tin-spa.umd.min.js +2 -2
  4. package/bundles/tin-spa.umd.min.js.map +1 -1
  5. package/esm2015/lib/classes/Classes.js +58 -45
  6. package/esm2015/lib/classes/TinCore.js +137 -0
  7. package/esm2015/lib/components/activity/activity.component.js +84 -18
  8. package/esm2015/lib/components/attach/attach.component.js +101 -27
  9. package/esm2015/lib/components/change-password/change-password.component.js +122 -34
  10. package/esm2015/lib/components/check/check.component.js +39 -33
  11. package/esm2015/lib/components/chips/chips.component.js +75 -35
  12. package/esm2015/lib/components/create-account/create-account.component.js +124 -42
  13. package/esm2015/lib/components/date/date.component.js +54 -33
  14. package/esm2015/lib/components/datetime/datetime.component.js +43 -30
  15. package/esm2015/lib/components/filter/filter.component.js +64 -0
  16. package/esm2015/lib/components/html/html.component.js +30 -25
  17. package/esm2015/lib/components/label/label.component.js +109 -21
  18. package/esm2015/lib/components/loader/loader.component.js +43 -20
  19. package/esm2015/lib/components/login/login.component.js +194 -76
  20. package/esm2015/lib/components/logs/logs.component.js +180 -28
  21. package/esm2015/lib/components/message/messageDialog.component.js +128 -17
  22. package/esm2015/lib/components/money/currency-input-mask.directive.js +187 -0
  23. package/esm2015/lib/components/money/currency-input-mask.module.js +30 -0
  24. package/esm2015/lib/components/money/money.component.js +141 -39
  25. package/esm2015/lib/components/nav-menu/nav-menu.component.js +174 -21
  26. package/esm2015/lib/components/option/option.component.js +107 -40
  27. package/esm2015/lib/components/profile/profile.component.js +143 -53
  28. package/esm2015/lib/components/recover-account/recover-account.component.js +48 -26
  29. package/esm2015/lib/components/roles/addRoleDialog.component.js +99 -26
  30. package/esm2015/lib/components/roles/roles.component.js +153 -73
  31. package/esm2015/lib/components/select/select.component.js +108 -48
  32. package/esm2015/lib/components/settings/settings.component.js +76 -21
  33. package/esm2015/lib/components/signup/signup.component.js +107 -24
  34. package/esm2015/lib/components/steps/steps.component.js +47 -31
  35. package/esm2015/lib/components/table/table.component.js +301 -35
  36. package/esm2015/lib/components/text/text.component.js +146 -71
  37. package/esm2015/lib/components/tiles/tiles.component.js +75 -21
  38. package/esm2015/lib/components/timeout/timeout.component.js +65 -22
  39. package/esm2015/lib/components/tin-spa.component.js +19 -12
  40. package/esm2015/lib/components/users/users.component.js +308 -65
  41. package/esm2015/lib/components/viewer/viewer.component.js +64 -39
  42. package/esm2015/lib/components/viewer/viewerDialog.component.js +73 -18
  43. package/esm2015/lib/dnd.directive.js +30 -25
  44. package/esm2015/lib/modules/spa-admin.module.js +65 -51
  45. package/esm2015/lib/modules/spa-index.module.js +45 -20
  46. package/esm2015/lib/modules/spa-mat.module.js +40 -25
  47. package/esm2015/lib/modules/spa-user.module.js +43 -19
  48. package/esm2015/lib/services/auth.service.js +39 -50
  49. package/esm2015/lib/services/data.service.js +82 -49
  50. package/esm2015/lib/services/export.service.js +11 -11
  51. package/esm2015/lib/services/http.service.js +79 -0
  52. package/esm2015/lib/services/loader-interceptor.service.js +30 -30
  53. package/esm2015/lib/services/loader.service.js +11 -11
  54. package/esm2015/lib/services/log.service.js +12 -12
  55. package/esm2015/lib/services/message.service.js +11 -17
  56. package/esm2015/lib/services/storage.service.js +12 -11
  57. package/esm2015/lib/services/tin-spa.service.js +11 -11
  58. package/esm2015/lib/tin-spa.module.js +113 -48
  59. package/esm2015/public-api.js +4 -6
  60. package/esm2015/tin-spa.js +1 -5
  61. package/esm5/lib/classes/Classes.js +70 -55
  62. package/esm5/lib/classes/TinCore.js +164 -0
  63. package/esm5/lib/components/activity/activity.component.js +82 -15
  64. package/esm5/lib/components/attach/attach.component.js +100 -24
  65. package/esm5/lib/components/change-password/change-password.component.js +120 -31
  66. package/esm5/lib/components/check/check.component.js +37 -30
  67. package/esm5/lib/components/chips/chips.component.js +73 -32
  68. package/esm5/lib/components/create-account/create-account.component.js +122 -39
  69. package/esm5/lib/components/date/date.component.js +52 -30
  70. package/esm5/lib/components/datetime/datetime.component.js +41 -27
  71. package/esm5/lib/components/filter/filter.component.js +66 -0
  72. package/esm5/lib/components/html/html.component.js +28 -22
  73. package/esm5/lib/components/label/label.component.js +107 -18
  74. package/esm5/lib/components/loader/loader.component.js +41 -17
  75. package/esm5/lib/components/login/login.component.js +193 -74
  76. package/esm5/lib/components/logs/logs.component.js +178 -25
  77. package/esm5/lib/components/message/messageDialog.component.js +126 -14
  78. package/esm5/lib/components/money/currency-input-mask.directive.js +193 -0
  79. package/esm5/lib/components/money/currency-input-mask.module.js +34 -0
  80. package/esm5/lib/components/money/money.component.js +139 -36
  81. package/esm5/lib/components/nav-menu/nav-menu.component.js +172 -18
  82. package/esm5/lib/components/option/option.component.js +105 -37
  83. package/esm5/lib/components/profile/profile.component.js +141 -50
  84. package/esm5/lib/components/recover-account/recover-account.component.js +46 -23
  85. package/esm5/lib/components/roles/addRoleDialog.component.js +97 -23
  86. package/esm5/lib/components/roles/roles.component.js +152 -72
  87. package/esm5/lib/components/select/select.component.js +106 -45
  88. package/esm5/lib/components/settings/settings.component.js +74 -18
  89. package/esm5/lib/components/signup/signup.component.js +105 -21
  90. package/esm5/lib/components/steps/steps.component.js +46 -28
  91. package/esm5/lib/components/table/table.component.js +299 -32
  92. package/esm5/lib/components/text/text.component.js +144 -68
  93. package/esm5/lib/components/tiles/tiles.component.js +73 -18
  94. package/esm5/lib/components/timeout/timeout.component.js +63 -19
  95. package/esm5/lib/components/tin-spa.component.js +16 -8
  96. package/esm5/lib/components/users/users.component.js +307 -62
  97. package/esm5/lib/components/viewer/viewer.component.js +62 -36
  98. package/esm5/lib/components/viewer/viewerDialog.component.js +71 -15
  99. package/esm5/lib/dnd.directive.js +28 -22
  100. package/esm5/lib/modules/spa-admin.module.js +63 -48
  101. package/esm5/lib/modules/spa-index.module.js +43 -17
  102. package/esm5/lib/modules/spa-mat.module.js +38 -22
  103. package/esm5/lib/modules/spa-user.module.js +41 -16
  104. package/esm5/lib/services/auth.service.js +37 -47
  105. package/esm5/lib/services/data.service.js +89 -55
  106. package/esm5/lib/services/export.service.js +9 -8
  107. package/esm5/lib/services/http.service.js +81 -0
  108. package/esm5/lib/services/loader-interceptor.service.js +28 -27
  109. package/esm5/lib/services/loader.service.js +9 -8
  110. package/esm5/lib/services/log.service.js +11 -9
  111. package/esm5/lib/services/message.service.js +9 -14
  112. package/esm5/lib/services/storage.service.js +10 -8
  113. package/esm5/lib/services/tin-spa.service.js +9 -8
  114. package/esm5/lib/tin-spa.module.js +111 -45
  115. package/esm5/public-api.js +4 -6
  116. package/esm5/tin-spa.js +1 -5
  117. package/fesm2015/tin-spa.js +4418 -1612
  118. package/fesm2015/tin-spa.js.map +1 -1
  119. package/fesm5/tin-spa.js +4442 -1612
  120. package/fesm5/tin-spa.js.map +1 -1
  121. package/lib/classes/Classes.d.ts +55 -43
  122. package/lib/classes/TinCore.d.ts +27 -0
  123. package/lib/components/activity/activity.component.d.ts +3 -5
  124. package/lib/components/attach/attach.component.d.ts +3 -5
  125. package/lib/components/change-password/change-password.component.d.ts +11 -9
  126. package/lib/components/check/check.component.d.ts +3 -5
  127. package/lib/components/chips/chips.component.d.ts +3 -5
  128. package/lib/components/create-account/create-account.component.d.ts +13 -13
  129. package/lib/components/date/date.component.d.ts +6 -7
  130. package/lib/components/datetime/datetime.component.d.ts +3 -5
  131. package/lib/components/filter/filter.component.d.ts +15 -0
  132. package/lib/components/html/html.component.d.ts +3 -5
  133. package/lib/components/label/label.component.d.ts +3 -5
  134. package/lib/components/loader/loader.component.d.ts +3 -5
  135. package/lib/components/login/login.component.d.ts +12 -14
  136. package/lib/components/logs/logs.component.d.ts +5 -9
  137. package/lib/components/message/messageDialog.component.d.ts +3 -5
  138. package/lib/components/money/currency-input-mask.directive.d.ts +41 -0
  139. package/lib/components/money/currency-input-mask.module.d.ts +8 -0
  140. package/lib/components/money/money.component.d.ts +19 -8
  141. package/lib/components/nav-menu/nav-menu.component.d.ts +3 -5
  142. package/lib/components/option/option.component.d.ts +4 -5
  143. package/lib/components/profile/profile.component.d.ts +9 -11
  144. package/lib/components/recover-account/recover-account.component.d.ts +6 -8
  145. package/lib/components/roles/addRoleDialog.component.d.ts +5 -7
  146. package/lib/components/roles/roles.component.d.ts +6 -10
  147. package/lib/components/select/select.component.d.ts +4 -6
  148. package/lib/components/settings/settings.component.d.ts +5 -7
  149. package/lib/components/signup/signup.component.d.ts +6 -8
  150. package/lib/components/steps/steps.component.d.ts +3 -5
  151. package/lib/components/table/table.component.d.ts +3 -5
  152. package/lib/components/text/text.component.d.ts +4 -5
  153. package/lib/components/tiles/tiles.component.d.ts +3 -5
  154. package/lib/components/timeout/timeout.component.d.ts +3 -5
  155. package/lib/components/tin-spa.component.d.ts +3 -5
  156. package/lib/components/users/users.component.d.ts +8 -13
  157. package/lib/components/viewer/viewer.component.d.ts +3 -5
  158. package/lib/components/viewer/viewerDialog.component.d.ts +4 -6
  159. package/lib/dnd.directive.d.ts +3 -5
  160. package/lib/modules/spa-admin.module.d.ts +13 -19
  161. package/lib/modules/spa-index.module.d.ts +10 -11
  162. package/lib/modules/spa-mat.module.d.ts +30 -32
  163. package/lib/modules/spa-user.module.d.ts +9 -10
  164. package/lib/services/auth.service.d.ts +14 -14
  165. package/lib/services/data.service.d.ts +28 -17
  166. package/lib/services/export.service.d.ts +3 -4
  167. package/lib/services/http.service.d.ts +22 -0
  168. package/lib/services/loader-interceptor.service.d.ts +3 -5
  169. package/lib/services/loader.service.d.ts +3 -4
  170. package/lib/services/log.service.d.ts +3 -4
  171. package/lib/services/message.service.d.ts +3 -4
  172. package/lib/services/storage.service.d.ts +3 -4
  173. package/lib/services/tin-spa.service.d.ts +3 -4
  174. package/lib/tin-spa.module.d.ts +35 -35
  175. package/package.json +2 -10
  176. package/public-api.d.ts +3 -5
  177. package/tin-spa.d.ts +1 -6
  178. package/__ivy_ngcc__/fesm2015/tin-spa.js +0 -6813
  179. package/__ivy_ngcc__/fesm2015/tin-spa.js.map +0 -1
  180. package/esm2015/lib/components/profiles/profiles.component.js +0 -16
  181. package/esm2015/lib/components/roles/editRoleDialog.component.js +0 -57
  182. package/esm2015/lib/components/roles/viewRoleDialog.component.js +0 -38
  183. package/esm2015/lib/components/users/addUserDialog.component.js +0 -53
  184. package/esm2015/lib/components/users/editUserDialog.component.js +0 -96
  185. package/esm5/lib/components/profiles/profiles.component.js +0 -18
  186. package/esm5/lib/components/roles/editRoleDialog.component.js +0 -59
  187. package/esm5/lib/components/roles/viewRoleDialog.component.js +0 -39
  188. package/esm5/lib/components/users/addUserDialog.component.js +0 -55
  189. package/esm5/lib/components/users/editUserDialog.component.js +0 -99
  190. package/lib/components/activity/activity.component.d.ts.__ivy_ngcc_bak +0 -8
  191. package/lib/components/attach/attach.component.d.ts.__ivy_ngcc_bak +0 -39
  192. package/lib/components/change-password/change-password.component.d.ts.__ivy_ngcc_bak +0 -20
  193. package/lib/components/check/check.component.d.ts.__ivy_ngcc_bak +0 -16
  194. package/lib/components/chips/chips.component.d.ts.__ivy_ngcc_bak +0 -15
  195. package/lib/components/create-account/create-account.component.d.ts.__ivy_ngcc_bak +0 -25
  196. package/lib/components/date/date.component.d.ts.__ivy_ngcc_bak +0 -13
  197. package/lib/components/datetime/datetime.component.d.ts.__ivy_ngcc_bak +0 -12
  198. package/lib/components/html/html.component.d.ts.__ivy_ngcc_bak +0 -12
  199. package/lib/components/label/label.component.d.ts.__ivy_ngcc_bak +0 -8
  200. package/lib/components/loader/loader.component.d.ts.__ivy_ngcc_bak +0 -9
  201. package/lib/components/login/login.component.d.ts.__ivy_ngcc_bak +0 -29
  202. package/lib/components/logs/logs.component.d.ts.__ivy_ngcc_bak +0 -17
  203. package/lib/components/message/messageDialog.component.d.ts.__ivy_ngcc_bak +0 -12
  204. package/lib/components/money/money.component.d.ts.__ivy_ngcc_bak +0 -14
  205. package/lib/components/nav-menu/nav-menu.component.d.ts.__ivy_ngcc_bak +0 -17
  206. package/lib/components/option/option.component.d.ts.__ivy_ngcc_bak +0 -17
  207. package/lib/components/profile/profile.component.d.ts.__ivy_ngcc_bak +0 -30
  208. package/lib/components/profiles/profiles.component.d.ts +0 -10
  209. package/lib/components/profiles/profiles.component.d.ts.__ivy_ngcc_bak +0 -5
  210. package/lib/components/recover-account/recover-account.component.d.ts.__ivy_ngcc_bak +0 -15
  211. package/lib/components/roles/addRoleDialog.component.d.ts.__ivy_ngcc_bak +0 -19
  212. package/lib/components/roles/editRoleDialog.component.d.ts +0 -24
  213. package/lib/components/roles/editRoleDialog.component.d.ts.__ivy_ngcc_bak +0 -19
  214. package/lib/components/roles/roles.component.d.ts.__ivy_ngcc_bak +0 -29
  215. package/lib/components/roles/viewRoleDialog.component.d.ts +0 -20
  216. package/lib/components/roles/viewRoleDialog.component.d.ts.__ivy_ngcc_bak +0 -15
  217. package/lib/components/select/select.component.d.ts.__ivy_ngcc_bak +0 -20
  218. package/lib/components/settings/settings.component.d.ts.__ivy_ngcc_bak +0 -16
  219. package/lib/components/signup/signup.component.d.ts.__ivy_ngcc_bak +0 -20
  220. package/lib/components/steps/steps.component.d.ts.__ivy_ngcc_bak +0 -15
  221. package/lib/components/table/table.component.d.ts.__ivy_ngcc_bak +0 -25
  222. package/lib/components/text/text.component.d.ts.__ivy_ngcc_bak +0 -37
  223. package/lib/components/tiles/tiles.component.d.ts.__ivy_ngcc_bak +0 -11
  224. package/lib/components/timeout/timeout.component.d.ts.__ivy_ngcc_bak +0 -21
  225. package/lib/components/tin-spa.component.d.ts.__ivy_ngcc_bak +0 -5
  226. package/lib/components/users/addUserDialog.component.d.ts +0 -21
  227. package/lib/components/users/addUserDialog.component.d.ts.__ivy_ngcc_bak +0 -16
  228. package/lib/components/users/editUserDialog.component.d.ts +0 -32
  229. package/lib/components/users/editUserDialog.component.d.ts.__ivy_ngcc_bak +0 -27
  230. package/lib/components/users/users.component.d.ts.__ivy_ngcc_bak +0 -35
  231. package/lib/components/viewer/viewer.component.d.ts.__ivy_ngcc_bak +0 -16
  232. package/lib/components/viewer/viewerDialog.component.d.ts.__ivy_ngcc_bak +0 -19
  233. package/lib/dnd.directive.d.ts.__ivy_ngcc_bak +0 -8
  234. package/lib/modules/spa-admin.module.d.ts.__ivy_ngcc_bak +0 -2
  235. package/lib/modules/spa-index.module.d.ts.__ivy_ngcc_bak +0 -2
  236. package/lib/modules/spa-mat.module.d.ts.__ivy_ngcc_bak +0 -2
  237. package/lib/modules/spa-user.module.d.ts.__ivy_ngcc_bak +0 -2
  238. package/lib/services/auth.service.d.ts.__ivy_ngcc_bak +0 -45
  239. package/lib/services/data.service.d.ts.__ivy_ngcc_bak +0 -23
  240. package/lib/services/export.service.d.ts.__ivy_ngcc_bak +0 -7
  241. package/lib/services/loader-interceptor.service.d.ts.__ivy_ngcc_bak +0 -18
  242. package/lib/services/loader.service.d.ts.__ivy_ngcc_bak +0 -5
  243. package/lib/services/log.service.d.ts.__ivy_ngcc_bak +0 -16
  244. package/lib/services/message.service.d.ts.__ivy_ngcc_bak +0 -12
  245. package/lib/services/storage.service.d.ts.__ivy_ngcc_bak +0 -7
  246. package/lib/services/tin-spa.service.d.ts.__ivy_ngcc_bak +0 -3
  247. package/lib/tin-spa.module.d.ts.__ivy_ngcc_bak +0 -2
  248. package/tin-spa.d.ts.__ivy_ngcc_bak +0 -8
  249. package/tin-spa.metadata.json +0 -1
@@ -1,21 +1,15 @@
1
- import * as ɵngcc0 from '@angular/core';
2
- import * as ɵngcc1 from '../components/users/users.component';
3
- import * as ɵngcc2 from '../components/users/addUserDialog.component';
4
- import * as ɵngcc3 from '../components/users/editUserDialog.component';
5
- import * as ɵngcc4 from '../components/roles/roles.component';
6
- import * as ɵngcc5 from '../components/roles/addRoleDialog.component';
7
- import * as ɵngcc6 from '../components/roles/editRoleDialog.component';
8
- import * as ɵngcc7 from '../components/roles/viewRoleDialog.component';
9
- import * as ɵngcc8 from '../components/profiles/profiles.component';
10
- import * as ɵngcc9 from '../components/create-account/create-account.component';
11
- import * as ɵngcc10 from '../components/logs/logs.component';
12
- import * as ɵngcc11 from '../components/settings/settings.component';
13
- import * as ɵngcc12 from '@angular/forms';
14
- import * as ɵngcc13 from '@angular/common';
15
- import * as ɵngcc14 from './spa-mat.module';
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "../components/users/users.component";
3
+ import * as i2 from "../components/roles/roles.component";
4
+ import * as i3 from "../components/roles/addRoleDialog.component";
5
+ import * as i4 from "../components/create-account/create-account.component";
6
+ import * as i5 from "../components/logs/logs.component";
7
+ import * as i6 from "../components/settings/settings.component";
8
+ import * as i7 from "@angular/forms";
9
+ import * as i8 from "@angular/common";
10
+ import * as i9 from "./spa-mat.module";
11
+ import * as i10 from "../tin-spa.module";
16
12
  export declare class SpaAdminModule {
17
- static ɵmod: ɵngcc0.ɵɵNgModuleDefWithMeta<SpaAdminModule, [typeof ɵngcc1.UsersComponent, typeof ɵngcc2.AddUserDialog, typeof ɵngcc3.EditUserDialog, typeof ɵngcc4.RolesComponent, typeof ɵngcc5.addRoleDialog, typeof ɵngcc6.editRoleDialog, typeof ɵngcc7.viewRoleDialog, typeof ɵngcc8.ProfilesComponent, typeof ɵngcc9.CreateAccountComponent, typeof ɵngcc10.LogsComponent, typeof ɵngcc11.SettingsComponent], [typeof ɵngcc12.ReactiveFormsModule, typeof ɵngcc13.CommonModule, typeof ɵngcc12.FormsModule, typeof ɵngcc12.ReactiveFormsModule, typeof ɵngcc14.SpaMatModule], [typeof ɵngcc13.CommonModule, typeof ɵngcc12.FormsModule, typeof ɵngcc14.SpaMatModule, typeof ɵngcc1.UsersComponent, typeof ɵngcc2.AddUserDialog, typeof ɵngcc3.EditUserDialog, typeof ɵngcc4.RolesComponent, typeof ɵngcc5.addRoleDialog, typeof ɵngcc6.editRoleDialog, typeof ɵngcc7.viewRoleDialog, typeof ɵngcc8.ProfilesComponent, typeof ɵngcc9.CreateAccountComponent, typeof ɵngcc10.LogsComponent, typeof ɵngcc11.SettingsComponent]>;
18
- static ɵinj: ɵngcc0.ɵɵInjectorDef<SpaAdminModule>;
13
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<SpaAdminModule, [typeof i1.UsersComponent, typeof i2.RolesComponent, typeof i3.addRoleDialog, typeof i4.CreateAccountComponent, typeof i5.LogsComponent, typeof i6.SettingsComponent], [typeof i7.ReactiveFormsModule, typeof i8.CommonModule, typeof i7.FormsModule, typeof i7.ReactiveFormsModule, typeof i9.SpaMatModule, typeof i10.TinSpaModule], [typeof i8.CommonModule, typeof i7.FormsModule, typeof i9.SpaMatModule, typeof i1.UsersComponent, typeof i2.RolesComponent, typeof i3.addRoleDialog, typeof i4.CreateAccountComponent, typeof i5.LogsComponent, typeof i6.SettingsComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDef<SpaAdminModule>;
19
15
  }
20
-
21
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhLWFkbWluLm1vZHVsZS5kLnRzIiwic291cmNlcyI6WyJzcGEtYWRtaW4ubW9kdWxlLmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY2xhc3MgU3BhQWRtaW5Nb2R1bGUge1xyXG59XHJcbiJdfQ==
@@ -1,13 +1,12 @@
1
- import * as ɵngcc0 from '@angular/core';
2
- import * as ɵngcc1 from '../components/login/login.component';
3
- import * as ɵngcc2 from '../components/signup/signup.component';
4
- import * as ɵngcc3 from '../components/recover-account/recover-account.component';
5
- import * as ɵngcc4 from '@angular/forms';
6
- import * as ɵngcc5 from '@angular/common';
7
- import * as ɵngcc6 from './spa-mat.module';
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "../components/login/login.component";
3
+ import * as i2 from "../components/signup/signup.component";
4
+ import * as i3 from "../components/recover-account/recover-account.component";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "./spa-mat.module";
8
+ import * as i7 from "../tin-spa.module";
8
9
  export declare class SpaIndexModule {
9
- static ɵmod: ɵngcc0.ɵɵNgModuleDefWithMeta<SpaIndexModule, [typeof ɵngcc1.LoginComponent, typeof ɵngcc2.SignupComponent, typeof ɵngcc3.RecoverAccountComponent], [typeof ɵngcc4.ReactiveFormsModule, typeof ɵngcc5.CommonModule, typeof ɵngcc4.FormsModule, typeof ɵngcc4.ReactiveFormsModule, typeof ɵngcc6.SpaMatModule], [typeof ɵngcc5.CommonModule, typeof ɵngcc4.FormsModule, typeof ɵngcc6.SpaMatModule, typeof ɵngcc1.LoginComponent, typeof ɵngcc2.SignupComponent, typeof ɵngcc3.RecoverAccountComponent]>;
10
- static ɵinj: ɵngcc0.ɵɵInjectorDef<SpaIndexModule>;
10
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<SpaIndexModule, [typeof i1.LoginComponent, typeof i2.SignupComponent, typeof i3.RecoverAccountComponent], [typeof i4.ReactiveFormsModule, typeof i5.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i6.SpaMatModule, typeof i7.TinSpaModule], [typeof i5.CommonModule, typeof i4.FormsModule, typeof i6.SpaMatModule, typeof i1.LoginComponent, typeof i2.SignupComponent, typeof i3.RecoverAccountComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDef<SpaIndexModule>;
11
12
  }
12
-
13
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhLWluZGV4Lm1vZHVsZS5kLnRzIiwic291cmNlcyI6WyJzcGEtaW5kZXgubW9kdWxlLmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7OztBQUFBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBkZWNsYXJlIGNsYXNzIFNwYUluZGV4TW9kdWxlIHtcclxufVxyXG4iXX0=
@@ -1,34 +1,32 @@
1
- import * as ɵngcc0 from '@angular/core';
2
- import * as ɵngcc1 from '@angular/common';
3
- import * as ɵngcc2 from '@angular/forms';
4
- import * as ɵngcc3 from '@angular/material/menu';
5
- import * as ɵngcc4 from '@angular/material/slider';
6
- import * as ɵngcc5 from '@angular/material/table';
7
- import * as ɵngcc6 from '@angular/material/paginator';
8
- import * as ɵngcc7 from '@angular/material/checkbox';
9
- import * as ɵngcc8 from '@angular/material/badge';
10
- import * as ɵngcc9 from '@angular/material/button';
11
- import * as ɵngcc10 from '@angular/material/icon';
12
- import * as ɵngcc11 from '@angular/material/dialog';
13
- import * as ɵngcc12 from '@angular/material/snack-bar';
14
- import * as ɵngcc13 from '@angular/material/tabs';
15
- import * as ɵngcc14 from '@angular/material/form-field';
16
- import * as ɵngcc15 from '@angular/material/input';
17
- import * as ɵngcc16 from '@angular/material/card';
18
- import * as ɵngcc17 from '@angular/material/chips';
19
- import * as ɵngcc18 from '@angular/material/select';
20
- import * as ɵngcc19 from '@angular/material/core';
21
- import * as ɵngcc20 from '@angular/material/progress-spinner';
22
- import * as ɵngcc21 from '@angular/material/list';
23
- import * as ɵngcc22 from '@angular/material/autocomplete';
24
- import * as ɵngcc23 from '@angular/material/tooltip';
25
- import * as ɵngcc24 from '@angular/material/sort';
26
- import * as ɵngcc25 from '@angular/material/datepicker';
27
- import * as ɵngcc26 from '@angular/material/stepper';
28
- import * as ɵngcc27 from '@angular/material/radio';
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "@angular/forms";
4
+ import * as i3 from "@angular/material/menu";
5
+ import * as i4 from "@angular/material/slider";
6
+ import * as i5 from "@angular/material/table";
7
+ import * as i6 from "@angular/material/paginator";
8
+ import * as i7 from "@angular/material/checkbox";
9
+ import * as i8 from "@angular/material/badge";
10
+ import * as i9 from "@angular/material/button";
11
+ import * as i10 from "@angular/material/icon";
12
+ import * as i11 from "@angular/material/dialog";
13
+ import * as i12 from "@angular/material/snack-bar";
14
+ import * as i13 from "@angular/material/tabs";
15
+ import * as i14 from "@angular/material/form-field";
16
+ import * as i15 from "@angular/material/input";
17
+ import * as i16 from "@angular/material/card";
18
+ import * as i17 from "@angular/material/chips";
19
+ import * as i18 from "@angular/material/select";
20
+ import * as i19 from "@angular/material/core";
21
+ import * as i20 from "@angular/material/progress-spinner";
22
+ import * as i21 from "@angular/material/list";
23
+ import * as i22 from "@angular/material/autocomplete";
24
+ import * as i23 from "@angular/material/tooltip";
25
+ import * as i24 from "@angular/material/sort";
26
+ import * as i25 from "@angular/material/datepicker";
27
+ import * as i26 from "@angular/material/stepper";
28
+ import * as i27 from "@angular/material/radio";
29
29
  export declare class SpaMatModule {
30
- static ɵmod: ɵngcc0.ɵɵNgModuleDefWithMeta<SpaMatModule, never, never, [typeof ɵngcc1.CommonModule, typeof ɵngcc2.FormsModule, typeof ɵngcc2.ReactiveFormsModule, typeof ɵngcc3.MatMenuModule, typeof ɵngcc4.MatSliderModule, typeof ɵngcc5.MatTableModule, typeof ɵngcc6.MatPaginatorModule, typeof ɵngcc7.MatCheckboxModule, typeof ɵngcc8.MatBadgeModule, typeof ɵngcc9.MatButtonModule, typeof ɵngcc10.MatIconModule, typeof ɵngcc11.MatDialogModule, typeof ɵngcc12.MatSnackBarModule, typeof ɵngcc13.MatTabsModule, typeof ɵngcc14.MatFormFieldModule, typeof ɵngcc15.MatInputModule, typeof ɵngcc16.MatCardModule, typeof ɵngcc17.MatChipsModule, typeof ɵngcc18.MatSelectModule, typeof ɵngcc19.MatNativeDateModule, typeof ɵngcc20.MatProgressSpinnerModule, typeof ɵngcc21.MatListModule, typeof ɵngcc22.MatAutocompleteModule, typeof ɵngcc23.MatTooltipModule, typeof ɵngcc24.MatSortModule, typeof ɵngcc25.MatDatepickerModule, typeof ɵngcc26.MatStepperModule, typeof ɵngcc27.MatRadioModule]>;
31
- static ɵinj: ɵngcc0.ɵɵInjectorDef<SpaMatModule>;
30
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<SpaMatModule, never, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.MatMenuModule, typeof i4.MatSliderModule, typeof i5.MatTableModule, typeof i6.MatPaginatorModule, typeof i7.MatCheckboxModule, typeof i8.MatBadgeModule, typeof i9.MatButtonModule, typeof i10.MatIconModule, typeof i11.MatDialogModule, typeof i12.MatSnackBarModule, typeof i13.MatTabsModule, typeof i14.MatFormFieldModule, typeof i15.MatInputModule, typeof i16.MatCardModule, typeof i17.MatChipsModule, typeof i18.MatSelectModule, typeof i19.MatNativeDateModule, typeof i20.MatProgressSpinnerModule, typeof i21.MatListModule, typeof i22.MatAutocompleteModule, typeof i23.MatTooltipModule, typeof i24.MatSortModule, typeof i25.MatDatepickerModule, typeof i26.MatStepperModule, typeof i27.MatRadioModule]>;
31
+ static ɵinj: i0.ɵɵInjectorDef<SpaMatModule>;
32
32
  }
33
-
34
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhLW1hdC5tb2R1bGUuZC50cyIsInNvdXJjZXMiOlsic3BhLW1hdC5tb2R1bGUuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY2xhc3MgU3BhTWF0TW9kdWxlIHtcclxufVxyXG4iXX0=
@@ -1,12 +1,11 @@
1
- import * as ɵngcc0 from '@angular/core';
2
- import * as ɵngcc1 from '../components/change-password/change-password.component';
3
- import * as ɵngcc2 from '../components/profile/profile.component';
4
- import * as ɵngcc3 from '@angular/forms';
5
- import * as ɵngcc4 from '@angular/common';
6
- import * as ɵngcc5 from './spa-mat.module';
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "../components/change-password/change-password.component";
3
+ import * as i2 from "../components/profile/profile.component";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "./spa-mat.module";
7
+ import * as i6 from "../tin-spa.module";
7
8
  export declare class SpaUserModule {
8
- static ɵmod: ɵngcc0.ɵɵNgModuleDefWithMeta<SpaUserModule, [typeof ɵngcc1.ChangePasswordComponent, typeof ɵngcc2.ProfileComponent], [typeof ɵngcc3.ReactiveFormsModule, typeof ɵngcc4.CommonModule, typeof ɵngcc3.FormsModule, typeof ɵngcc3.ReactiveFormsModule, typeof ɵngcc5.SpaMatModule], [typeof ɵngcc4.CommonModule, typeof ɵngcc3.FormsModule, typeof ɵngcc5.SpaMatModule, typeof ɵngcc1.ChangePasswordComponent, typeof ɵngcc2.ProfileComponent]>;
9
- static ɵinj: ɵngcc0.ɵɵInjectorDef<SpaUserModule>;
9
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<SpaUserModule, [typeof i1.ChangePasswordComponent, typeof i2.ProfileComponent], [typeof i3.ReactiveFormsModule, typeof i4.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i5.SpaMatModule, typeof i6.TinSpaModule], [typeof i4.CommonModule, typeof i3.FormsModule, typeof i5.SpaMatModule, typeof i1.ChangePasswordComponent, typeof i2.ProfileComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDef<SpaUserModule>;
10
11
  }
11
-
12
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhLXVzZXIubW9kdWxlLmQudHMiLCJzb3VyY2VzIjpbInNwYS11c2VyLm1vZHVsZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUFBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBkZWNsYXJlIGNsYXNzIFNwYVVzZXJNb2R1bGUge1xyXG59XHJcbiJdfQ==
@@ -1,49 +1,49 @@
1
1
  import { MessageService } from './message.service';
2
- import { HttpService } from 'tin-core';
3
- import { Router, CanActivate } from '@angular/router';
2
+ import { Router, CanActivate, ActivatedRoute } from '@angular/router';
4
3
  import { BehaviorSubject } from 'rxjs';
5
4
  import { StorageService } from './storage.service';
6
5
  import { LogService } from './log.service';
7
6
  import { Role } from '../classes/Classes';
8
- import * as ɵngcc0 from '@angular/core';
7
+ import { HttpService } from './http.service';
8
+ import * as i0 from "@angular/core";
9
9
  export declare class AuthService implements CanActivate {
10
+ private _route;
10
11
  private storage;
11
12
  router: Router;
12
13
  private httpService;
13
14
  private messageService;
14
15
  private logService;
15
- constructor(storage: StorageService, router: Router, httpService: HttpService, messageService: MessageService, logService: LogService);
16
+ constructor(_route: ActivatedRoute, storage: StorageService, router: Router, httpService: HttpService, messageService: MessageService, logService: LogService);
16
17
  private loggedin;
17
18
  private loggedinSource;
18
19
  loggedinObserv: import("rxjs").Observable<boolean>;
19
- updateloggedin(loggedin: boolean): void;
20
+ Updateloggedin(loggedin: boolean): void;
20
21
  private token;
21
22
  tokenSource: BehaviorSubject<string>;
22
23
  tokenObserv: import("rxjs").Observable<string>;
23
- updateToken(newToken: string): void;
24
+ UpdateToken(newToken: string): void;
24
25
  private tokenExpire;
25
26
  tokenExpireSource: BehaviorSubject<string>;
26
27
  tokenExpireObserv: import("rxjs").Observable<string>;
27
- updateTokenExpire(newTokenExpire: string): void;
28
+ UpdateTokenExpire(newTokenExpire: string): void;
28
29
  currentUser: string;
29
30
  private currentUserSource;
30
31
  currentUserObserv: import("rxjs").Observable<string>;
31
- updateCurrentUser(newUser: string): void;
32
+ UpdateCurrentUser(newUser: string): void;
32
33
  private islineManager;
33
34
  private isLineManagerSource;
34
35
  isLineManagerObserv: import("rxjs").Observable<boolean>;
35
- updateIsLineManager(manager: boolean): void;
36
+ UpdateIsLineManager(manager: boolean): void;
36
37
  private currentRole;
37
38
  currentRoleSource: BehaviorSubject<Role>;
38
39
  myRoleObserv: import("rxjs").Observable<Role>;
39
- updateRole(role: any): void;
40
+ UpdateRole(role: any): void;
40
41
  private loggedUserSource;
41
42
  loggedUserFullName: import("rxjs").Observable<string>;
42
- updateLoggedUserFullName(username: string): void;
43
+ updateLoggedUserFullName(userName: string): void;
43
44
  isAuthorised(capName: string): boolean;
44
45
  isValidToken(): boolean;
45
46
  canActivate(): boolean;
46
- static ɵfac: ɵngcc0.ɵɵFactoryDef<AuthService, never>;
47
+ static ɵfac: i0.ɵɵFactoryDef<AuthService, never>;
48
+ static ɵprov: i0.ɵɵInjectableDef<AuthService>;
47
49
  }
48
-
49
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aC5zZXJ2aWNlLmQudHMiLCJzb3VyY2VzIjpbImF1dGguc2VydmljZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tICcuL21lc3NhZ2Uuc2VydmljZSc7XHJcbmltcG9ydCB7IEh0dHBTZXJ2aWNlIH0gZnJvbSAndGluLWNvcmUnO1xyXG5pbXBvcnQgeyBSb3V0ZXIsIENhbkFjdGl2YXRlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0IH0gZnJvbSAncnhqcyc7XHJcbmltcG9ydCB7IFN0b3JhZ2VTZXJ2aWNlIH0gZnJvbSAnLi9zdG9yYWdlLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBMb2dTZXJ2aWNlIH0gZnJvbSAnLi9sb2cuc2VydmljZSc7XHJcbmltcG9ydCB7IFJvbGUgfSBmcm9tICcuLi9jbGFzc2VzL0NsYXNzZXMnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBBdXRoU2VydmljZSBpbXBsZW1lbnRzIENhbkFjdGl2YXRlIHtcclxuICAgIHByaXZhdGUgc3RvcmFnZTtcclxuICAgIHJvdXRlcjogUm91dGVyO1xyXG4gICAgcHJpdmF0ZSBodHRwU2VydmljZTtcclxuICAgIHByaXZhdGUgbWVzc2FnZVNlcnZpY2U7XHJcbiAgICBwcml2YXRlIGxvZ1NlcnZpY2U7XHJcbiAgICBjb25zdHJ1Y3RvcihzdG9yYWdlOiBTdG9yYWdlU2VydmljZSwgcm91dGVyOiBSb3V0ZXIsIGh0dHBTZXJ2aWNlOiBIdHRwU2VydmljZSwgbWVzc2FnZVNlcnZpY2U6IE1lc3NhZ2VTZXJ2aWNlLCBsb2dTZXJ2aWNlOiBMb2dTZXJ2aWNlKTtcclxuICAgIHByaXZhdGUgbG9nZ2VkaW47XHJcbiAgICBwcml2YXRlIGxvZ2dlZGluU291cmNlO1xyXG4gICAgbG9nZ2VkaW5PYnNlcnY6IGltcG9ydChcInJ4anNcIikuT2JzZXJ2YWJsZTxib29sZWFuPjtcclxuICAgIHVwZGF0ZWxvZ2dlZGluKGxvZ2dlZGluOiBib29sZWFuKTogdm9pZDtcclxuICAgIHByaXZhdGUgdG9rZW47XHJcbiAgICB0b2tlblNvdXJjZTogQmVoYXZpb3JTdWJqZWN0PHN0cmluZz47XHJcbiAgICB0b2tlbk9ic2VydjogaW1wb3J0KFwicnhqc1wiKS5PYnNlcnZhYmxlPHN0cmluZz47XHJcbiAgICB1cGRhdGVUb2tlbihuZXdUb2tlbjogc3RyaW5nKTogdm9pZDtcclxuICAgIHByaXZhdGUgdG9rZW5FeHBpcmU7XHJcbiAgICB0b2tlbkV4cGlyZVNvdXJjZTogQmVoYXZpb3JTdWJqZWN0PHN0cmluZz47XHJcbiAgICB0b2tlbkV4cGlyZU9ic2VydjogaW1wb3J0KFwicnhqc1wiKS5PYnNlcnZhYmxlPHN0cmluZz47XHJcbiAgICB1cGRhdGVUb2tlbkV4cGlyZShuZXdUb2tlbkV4cGlyZTogc3RyaW5nKTogdm9pZDtcclxuICAgIGN1cnJlbnRVc2VyOiBzdHJpbmc7XHJcbiAgICBwcml2YXRlIGN1cnJlbnRVc2VyU291cmNlO1xyXG4gICAgY3VycmVudFVzZXJPYnNlcnY6IGltcG9ydChcInJ4anNcIikuT2JzZXJ2YWJsZTxzdHJpbmc+O1xyXG4gICAgdXBkYXRlQ3VycmVudFVzZXIobmV3VXNlcjogc3RyaW5nKTogdm9pZDtcclxuICAgIHByaXZhdGUgaXNsaW5lTWFuYWdlcjtcclxuICAgIHByaXZhdGUgaXNMaW5lTWFuYWdlclNvdXJjZTtcclxuICAgIGlzTGluZU1hbmFnZXJPYnNlcnY6IGltcG9ydChcInJ4anNcIikuT2JzZXJ2YWJsZTxib29sZWFuPjtcclxuICAgIHVwZGF0ZUlzTGluZU1hbmFnZXIobWFuYWdlcjogYm9vbGVhbik6IHZvaWQ7XHJcbiAgICBwcml2YXRlIGN1cnJlbnRSb2xlO1xyXG4gICAgY3VycmVudFJvbGVTb3VyY2U6IEJlaGF2aW9yU3ViamVjdDxSb2xlPjtcclxuICAgIG15Um9sZU9ic2VydjogaW1wb3J0KFwicnhqc1wiKS5PYnNlcnZhYmxlPFJvbGU+O1xyXG4gICAgdXBkYXRlUm9sZShyb2xlOiBhbnkpOiB2b2lkO1xyXG4gICAgcHJpdmF0ZSBsb2dnZWRVc2VyU291cmNlO1xyXG4gICAgbG9nZ2VkVXNlckZ1bGxOYW1lOiBpbXBvcnQoXCJyeGpzXCIpLk9ic2VydmFibGU8c3RyaW5nPjtcclxuICAgIHVwZGF0ZUxvZ2dlZFVzZXJGdWxsTmFtZSh1c2VybmFtZTogc3RyaW5nKTogdm9pZDtcclxuICAgIGlzQXV0aG9yaXNlZChjYXBOYW1lOiBzdHJpbmcpOiBib29sZWFuO1xyXG4gICAgaXNWYWxpZFRva2VuKCk6IGJvb2xlYW47XHJcbiAgICBjYW5BY3RpdmF0ZSgpOiBib29sZWFuO1xyXG59XHJcbiJdfQ==
@@ -1,27 +1,38 @@
1
- import { HttpService } from 'tin-core';
2
- import { CapItem, User } from '../classes/Classes';
1
+ import { AppConfig, CapItem, User } from '../classes/Classes';
3
2
  import { Observable } from 'rxjs';
4
- import * as ɵngcc0 from '@angular/core';
5
- export declare class DataService {
3
+ import { HttpService } from './http.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DataServiceLib {
6
6
  private httpService;
7
7
  constructor(httpService: HttpService);
8
+ appConfig: AppConfig;
9
+ private appConfigSource;
10
+ appConfigObserv: Observable<AppConfig>;
11
+ UpdateAppConfig(config: AppConfig): void;
12
+ capHome: CapItem;
13
+ capAdmin: CapItem;
8
14
  capUsers: CapItem;
9
- tmpProfileUserID: string;
10
- GetUser(by: string, val: string): Observable<any>;
11
- UpdateUser(user: any, action: string): Observable<any>;
12
- login(u: User): Observable<any>;
13
- changePassword(u: any): Observable<any>;
14
- changePasswordAdmin(u: any): Observable<any>;
15
+ capRoles: CapItem;
16
+ capLogs: CapItem;
17
+ capSettings: CapItem;
18
+ tmpProfileuserName: string;
19
+ GetUser(): Observable<any>;
20
+ RegisterAccount(u: any): Observable<any>;
21
+ GetUserByID(val: string): Observable<any>;
22
+ UpdateUser(profile: any): Observable<any>;
23
+ UnlockUser(user: any): Observable<any>;
24
+ LockUser(user: any): Observable<any>;
25
+ DeleteUser(user: any): Observable<any>;
26
+ Login(u: User): Observable<any>;
27
+ ChangePassword(u: any): Observable<any>;
28
+ ChangePasswordAdmin(u: any): Observable<any>;
15
29
  SelfReset(u: User): Observable<any>;
16
- UpdateRole(role: any, action: string): Observable<any>;
30
+ PostRole(role: any, action: string): Observable<any>;
31
+ PutRole(role: any): Observable<any>;
17
32
  GetRole(by: string, val: string): Observable<any>;
18
- UpdateAccount(account: any, action: string): Observable<any>;
19
- GetProfile(by: string, val: string): Observable<any>;
20
- UpdateProfile(profile: any, action: string): Observable<any>;
21
33
  GetLog(by: string, val: string): Observable<any>;
22
34
  GetSetting(by: string, val: string): Observable<any>;
23
35
  UpdateSetting(setting: any, action: string): Observable<any>;
24
- static ɵfac: ɵngcc0.ɵɵFactoryDef<DataService, never>;
36
+ static ɵfac: i0.ɵɵFactoryDef<DataServiceLib, never>;
37
+ static ɵprov: i0.ɵɵInjectableDef<DataServiceLib>;
25
38
  }
26
-
27
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS5zZXJ2aWNlLmQudHMiLCJzb3VyY2VzIjpbImRhdGEuc2VydmljZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBTZXJ2aWNlIH0gZnJvbSAndGluLWNvcmUnO1xyXG5pbXBvcnQgeyBDYXBJdGVtLCBVc2VyIH0gZnJvbSAnLi4vY2xhc3Nlcy9DbGFzc2VzJztcclxuaW1wb3J0IHsgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBEYXRhU2VydmljZSB7XHJcbiAgICBwcml2YXRlIGh0dHBTZXJ2aWNlO1xyXG4gICAgY29uc3RydWN0b3IoaHR0cFNlcnZpY2U6IEh0dHBTZXJ2aWNlKTtcclxuICAgIGNhcFVzZXJzOiBDYXBJdGVtO1xyXG4gICAgdG1wUHJvZmlsZVVzZXJJRDogc3RyaW5nO1xyXG4gICAgR2V0VXNlcihieTogc3RyaW5nLCB2YWw6IHN0cmluZyk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIFVwZGF0ZVVzZXIodXNlcjogYW55LCBhY3Rpb246IHN0cmluZyk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIGxvZ2luKHU6IFVzZXIpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBjaGFuZ2VQYXNzd29yZCh1OiBhbnkpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBjaGFuZ2VQYXNzd29yZEFkbWluKHU6IGFueSk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIFNlbGZSZXNldCh1OiBVc2VyKTogT2JzZXJ2YWJsZTxhbnk+O1xyXG4gICAgVXBkYXRlUm9sZShyb2xlOiBhbnksIGFjdGlvbjogc3RyaW5nKTogT2JzZXJ2YWJsZTxhbnk+O1xyXG4gICAgR2V0Um9sZShieTogc3RyaW5nLCB2YWw6IHN0cmluZyk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIFVwZGF0ZUFjY291bnQoYWNjb3VudDogYW55LCBhY3Rpb246IHN0cmluZyk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIEdldFByb2ZpbGUoYnk6IHN0cmluZywgdmFsOiBzdHJpbmcpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBVcGRhdGVQcm9maWxlKHByb2ZpbGU6IGFueSwgYWN0aW9uOiBzdHJpbmcpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBHZXRMb2coYnk6IHN0cmluZywgdmFsOiBzdHJpbmcpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBHZXRTZXR0aW5nKGJ5OiBzdHJpbmcsIHZhbDogc3RyaW5nKTogT2JzZXJ2YWJsZTxhbnk+O1xyXG4gICAgVXBkYXRlU2V0dGluZyhzZXR0aW5nOiBhbnksIGFjdGlvbjogc3RyaW5nKTogT2JzZXJ2YWJsZTxhbnk+O1xyXG59XHJcbiJdfQ==
@@ -1,11 +1,10 @@
1
- import * as ɵngcc0 from '@angular/core';
1
+ import * as i0 from "@angular/core";
2
2
  export declare class ExportService {
3
3
  constructor();
4
4
  fileType: string;
5
5
  fileExtension: string;
6
6
  exportExcel(jsonData: any[], fileName: string): void;
7
7
  private saveExcelFile;
8
- static ɵfac: ɵngcc0.ɵɵFactoryDef<ExportService, never>;
8
+ static ɵfac: i0.ɵɵFactoryDef<ExportService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDef<ExportService>;
9
10
  }
10
-
11
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhwb3J0LnNlcnZpY2UuZC50cyIsInNvdXJjZXMiOlsiZXhwb3J0LnNlcnZpY2UuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY2xhc3MgRXhwb3J0U2VydmljZSB7XHJcbiAgICBjb25zdHJ1Y3RvcigpO1xyXG4gICAgZmlsZVR5cGU6IHN0cmluZztcclxuICAgIGZpbGVFeHRlbnNpb246IHN0cmluZztcclxuICAgIGV4cG9ydEV4Y2VsKGpzb25EYXRhOiBhbnlbXSwgZmlsZU5hbWU6IHN0cmluZyk6IHZvaWQ7XHJcbiAgICBwcml2YXRlIHNhdmVFeGNlbEZpbGU7XHJcbn1cclxuIl19
@@ -0,0 +1,22 @@
1
+ import { Observable } from "rxjs";
2
+ import { HttpClient, HttpErrorResponse } from "@angular/common/http";
3
+ import { Router } from "@angular/router";
4
+ import * as i0 from "@angular/core";
5
+ export declare class HttpService {
6
+ private httpClient;
7
+ private router;
8
+ constructor(httpClient: HttpClient, router: Router);
9
+ apiUrl: string;
10
+ Post(service: string, data: any): Observable<any>;
11
+ Put(service: string, data: any): Observable<any>;
12
+ Post_Raw(url: string, data: any): Observable<any>;
13
+ Post_WithFile(service: string, data: any, file: File): Observable<Object>;
14
+ Post_FormData(service: string, formData: FormData): Observable<Object>;
15
+ Get(service: string): Observable<any>;
16
+ Get_Raw(url: string): Observable<any>;
17
+ Error(error: HttpErrorResponse): "Unauthorized" | "Connection failed";
18
+ private httpOptions_Legacy;
19
+ private httpOptions_Files;
20
+ static ɵfac: i0.ɵɵFactoryDef<HttpService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDef<HttpService>;
22
+ }
@@ -5,7 +5,7 @@ import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/c
5
5
  import { Observable } from 'rxjs';
6
6
  import { LoaderService } from './loader.service';
7
7
  import { LogService } from './log.service';
8
- import * as ɵngcc0 from '@angular/core';
8
+ import * as i0 from "@angular/core";
9
9
  export declare class LoaderInterceptor implements HttpInterceptor {
10
10
  private loaderService;
11
11
  private messageService;
@@ -16,8 +16,6 @@ export declare class LoaderInterceptor implements HttpInterceptor {
16
16
  constructor(loaderService: LoaderService, messageService: MessageService, authService: AuthService, router: Router, logService: LogService);
17
17
  removeRequest(req: HttpRequest<any>): void;
18
18
  intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
19
- static ɵfac: ɵngcc0.ɵɵFactoryDef<LoaderInterceptor, never>;
20
- static ɵprov: ɵngcc0.ɵɵInjectableDef<LoaderInterceptor>;
19
+ static ɵfac: i0.ɵɵFactoryDef<LoaderInterceptor, never>;
20
+ static ɵprov: i0.ɵɵInjectableDef<LoaderInterceptor>;
21
21
  }
22
-
23
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZGVyLWludGVyY2VwdG9yLnNlcnZpY2UuZC50cyIsInNvdXJjZXMiOlsibG9hZGVyLWludGVyY2VwdG9yLnNlcnZpY2UuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBSb3V0ZXIgfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xyXG5pbXBvcnQgeyBBdXRoU2VydmljZSB9IGZyb20gJy4vYXV0aC5zZXJ2aWNlJztcclxuaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tICcuL21lc3NhZ2Uuc2VydmljZSc7XHJcbmltcG9ydCB7IEh0dHBSZXF1ZXN0LCBIdHRwSGFuZGxlciwgSHR0cEV2ZW50LCBIdHRwSW50ZXJjZXB0b3IgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XHJcbmltcG9ydCB7IE9ic2VydmFibGUgfSBmcm9tICdyeGpzJztcclxuaW1wb3J0IHsgTG9hZGVyU2VydmljZSB9IGZyb20gJy4vbG9hZGVyLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBMb2dTZXJ2aWNlIH0gZnJvbSAnLi9sb2cuc2VydmljZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIExvYWRlckludGVyY2VwdG9yIGltcGxlbWVudHMgSHR0cEludGVyY2VwdG9yIHtcclxuICAgIHByaXZhdGUgbG9hZGVyU2VydmljZTtcclxuICAgIHByaXZhdGUgbWVzc2FnZVNlcnZpY2U7XHJcbiAgICBwcml2YXRlIGF1dGhTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSByb3V0ZXI7XHJcbiAgICBwcml2YXRlIGxvZ1NlcnZpY2U7XHJcbiAgICBwcml2YXRlIHJlcXVlc3RzO1xyXG4gICAgY29uc3RydWN0b3IobG9hZGVyU2VydmljZTogTG9hZGVyU2VydmljZSwgbWVzc2FnZVNlcnZpY2U6IE1lc3NhZ2VTZXJ2aWNlLCBhdXRoU2VydmljZTogQXV0aFNlcnZpY2UsIHJvdXRlcjogUm91dGVyLCBsb2dTZXJ2aWNlOiBMb2dTZXJ2aWNlKTtcclxuICAgIHJlbW92ZVJlcXVlc3QocmVxOiBIdHRwUmVxdWVzdDxhbnk+KTogdm9pZDtcclxuICAgIGludGVyY2VwdChyZXF1ZXN0OiBIdHRwUmVxdWVzdDxhbnk+LCBuZXh0OiBIdHRwSGFuZGxlcik6IE9ic2VydmFibGU8SHR0cEV2ZW50PGFueT4+O1xyXG59XHJcbiJdfQ==
@@ -1,9 +1,8 @@
1
1
  import { BehaviorSubject } from 'rxjs';
2
- import * as ɵngcc0 from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
3
  export declare class LoaderService {
4
4
  isLoading: BehaviorSubject<boolean>;
5
5
  constructor();
6
- static ɵfac: ɵngcc0.ɵɵFactoryDef<LoaderService, never>;
6
+ static ɵfac: i0.ɵɵFactoryDef<LoaderService, never>;
7
+ static ɵprov: i0.ɵɵInjectableDef<LoaderService>;
7
8
  }
8
-
9
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZGVyLnNlcnZpY2UuZC50cyIsInNvdXJjZXMiOlsibG9hZGVyLnNlcnZpY2UuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7QUFDQTtBQUNBO0FBQ0E7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCZWhhdmlvclN1YmplY3QgfSBmcm9tICdyeGpzJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgTG9hZGVyU2VydmljZSB7XHJcbiAgICBpc0xvYWRpbmc6IEJlaGF2aW9yU3ViamVjdDxib29sZWFuPjtcclxuICAgIGNvbnN0cnVjdG9yKCk7XHJcbn1cclxuIl19
@@ -1,5 +1,5 @@
1
1
  import { LogLevel } from '../classes/Classes';
2
- import * as ɵngcc0 from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
3
  export declare class LogService {
4
4
  constructor();
5
5
  level: LogLevel;
@@ -14,7 +14,6 @@ export declare class LogService {
14
14
  private writeToLog;
15
15
  private formatParams;
16
16
  private shouldLog;
17
- static ɵfac: ɵngcc0.ɵɵFactoryDef<LogService, never>;
17
+ static ɵfac: i0.ɵɵFactoryDef<LogService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDef<LogService>;
18
19
  }
19
-
20
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nLnNlcnZpY2UuZC50cyIsInNvdXJjZXMiOlsibG9nLnNlcnZpY2UuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTG9nTGV2ZWwgfSBmcm9tICcuLi9jbGFzc2VzL0NsYXNzZXMnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBMb2dTZXJ2aWNlIHtcclxuICAgIGNvbnN0cnVjdG9yKCk7XHJcbiAgICBsZXZlbDogTG9nTGV2ZWw7XHJcbiAgICBsb2dUb0NvbnNvbGU6IGJvb2xlYW47XHJcbiAgICBsb2dUb0FwaTogYm9vbGVhbjtcclxuICAgIGRlYnVnKG1zZzogc3RyaW5nLCAuLi5vcHRpb25hbFBhcmFtczogYW55W10pOiB2b2lkO1xyXG4gICAgaW5mbyhtc2c6IHN0cmluZywgLi4ub3B0aW9uYWxQYXJhbXM6IGFueVtdKTogdm9pZDtcclxuICAgIHdhcm4obXNnOiBzdHJpbmcsIC4uLm9wdGlvbmFsUGFyYW1zOiBhbnlbXSk6IHZvaWQ7XHJcbiAgICBlcnJvcihtc2c6IHN0cmluZywgLi4ub3B0aW9uYWxQYXJhbXM6IGFueVtdKTogdm9pZDtcclxuICAgIGZhdGFsKG1zZzogc3RyaW5nLCAuLi5vcHRpb25hbFBhcmFtczogYW55W10pOiB2b2lkO1xyXG4gICAgbG9nKG1zZzogc3RyaW5nLCAuLi5vcHRpb25hbFBhcmFtczogYW55W10pOiB2b2lkO1xyXG4gICAgcHJpdmF0ZSB3cml0ZVRvTG9nO1xyXG4gICAgcHJpdmF0ZSBmb3JtYXRQYXJhbXM7XHJcbiAgICBwcml2YXRlIHNob3VsZExvZztcclxufVxyXG4iXX0=
@@ -1,7 +1,7 @@
1
1
  import { MatSnackBar } from "@angular/material/snack-bar";
2
2
  import { MatDialog } from "@angular/material/dialog";
3
3
  import { Observable } from 'rxjs';
4
- import * as ɵngcc0 from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
5
  export declare class MessageService {
6
6
  private snackBar;
7
7
  dialog: MatDialog;
@@ -10,7 +10,6 @@ export declare class MessageService {
10
10
  info(subject: string, details: string): void;
11
11
  error(details: string): void;
12
12
  confirm(msg: string): Observable<any>;
13
- static ɵfac: ɵngcc0.ɵɵFactoryDef<MessageService, never>;
13
+ static ɵfac: i0.ɵɵFactoryDef<MessageService, never>;
14
+ static ɵprov: i0.ɵɵInjectableDef<MessageService>;
14
15
  }
15
-
16
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVzc2FnZS5zZXJ2aWNlLmQudHMiLCJzb3VyY2VzIjpbIm1lc3NhZ2Uuc2VydmljZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWF0U25hY2tCYXIgfSBmcm9tIFwiQGFuZ3VsYXIvbWF0ZXJpYWwvc25hY2stYmFyXCI7XHJcbmltcG9ydCB7IE1hdERpYWxvZyB9IGZyb20gXCJAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2dcIjtcclxuaW1wb3J0IHsgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBNZXNzYWdlU2VydmljZSB7XHJcbiAgICBwcml2YXRlIHNuYWNrQmFyO1xyXG4gICAgZGlhbG9nOiBNYXREaWFsb2c7XHJcbiAgICBjb25zdHJ1Y3RvcihzbmFja0JhcjogTWF0U25hY2tCYXIsIGRpYWxvZzogTWF0RGlhbG9nKTtcclxuICAgIHRvYXN0KG1zZzogc3RyaW5nKTogdm9pZDtcclxuICAgIGluZm8oc3ViamVjdDogc3RyaW5nLCBkZXRhaWxzOiBzdHJpbmcpOiB2b2lkO1xyXG4gICAgZXJyb3IoZGV0YWlsczogc3RyaW5nKTogdm9pZDtcclxuICAgIGNvbmZpcm0obXNnOiBzdHJpbmcpOiBPYnNlcnZhYmxlPGFueT47XHJcbn1cclxuIl19
@@ -1,11 +1,10 @@
1
- import * as ɵngcc0 from '@angular/core';
1
+ import * as i0 from "@angular/core";
2
2
  export declare class StorageService {
3
3
  constructor();
4
4
  store(storageKey: string, value: any): Promise<void>;
5
5
  get(storageKey: string): Promise<any>;
6
6
  removeStorageItem(storageKey: string): Promise<void>;
7
7
  clear(): Promise<void>;
8
- static ɵfac: ɵngcc0.ɵɵFactoryDef<StorageService, never>;
8
+ static ɵfac: i0.ɵɵFactoryDef<StorageService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDef<StorageService>;
9
10
  }
10
-
11
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RvcmFnZS5zZXJ2aWNlLmQudHMiLCJzb3VyY2VzIjpbInN0b3JhZ2Uuc2VydmljZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZGVjbGFyZSBjbGFzcyBTdG9yYWdlU2VydmljZSB7XHJcbiAgICBjb25zdHJ1Y3RvcigpO1xyXG4gICAgc3RvcmUoc3RvcmFnZUtleTogc3RyaW5nLCB2YWx1ZTogYW55KTogUHJvbWlzZTx2b2lkPjtcclxuICAgIGdldChzdG9yYWdlS2V5OiBzdHJpbmcpOiBQcm9taXNlPGFueT47XHJcbiAgICByZW1vdmVTdG9yYWdlSXRlbShzdG9yYWdlS2V5OiBzdHJpbmcpOiBQcm9taXNlPHZvaWQ+O1xyXG4gICAgY2xlYXIoKTogUHJvbWlzZTx2b2lkPjtcclxufVxyXG4iXX0=
@@ -1,7 +1,6 @@
1
- import * as ɵngcc0 from '@angular/core';
1
+ import * as i0 from "@angular/core";
2
2
  export declare class TinSpaService {
3
3
  constructor();
4
- static ɵfac: ɵngcc0.ɵɵFactoryDef<TinSpaService, never>;
4
+ static ɵfac: i0.ɵɵFactoryDef<TinSpaService, never>;
5
+ static ɵprov: i0.ɵɵInjectableDef<TinSpaService>;
5
6
  }
6
-
7
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGluLXNwYS5zZXJ2aWNlLmQudHMiLCJzb3VyY2VzIjpbInRpbi1zcGEuc2VydmljZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQTtBQUNBOztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY2xhc3MgVGluU3BhU2VydmljZSB7XHJcbiAgICBjb25zdHJ1Y3RvcigpO1xyXG59XHJcbiJdfQ==
@@ -1,37 +1,37 @@
1
- import * as ɵngcc0 from '@angular/core';
2
- import * as ɵngcc1 from './dnd.directive';
3
- import * as ɵngcc2 from './components/tin-spa.component';
4
- import * as ɵngcc3 from './components/message/messageDialog.component';
5
- import * as ɵngcc4 from './components/nav-menu/nav-menu.component';
6
- import * as ɵngcc5 from './components/loader/loader.component';
7
- import * as ɵngcc6 from './components/timeout/timeout.component';
8
- import * as ɵngcc7 from './components/table/table.component';
9
- import * as ɵngcc8 from './components/tiles/tiles.component';
10
- import * as ɵngcc9 from './components/date/date.component';
11
- import * as ɵngcc10 from './components/text/text.component';
12
- import * as ɵngcc11 from './components/viewer/viewer.component';
13
- import * as ɵngcc12 from './components/select/select.component';
14
- import * as ɵngcc13 from './components/check/check.component';
15
- import * as ɵngcc14 from './components/attach/attach.component';
16
- import * as ɵngcc15 from './components/datetime/datetime.component';
17
- import * as ɵngcc16 from './components/money/money.component';
18
- import * as ɵngcc17 from './components/chips/chips.component';
19
- import * as ɵngcc18 from './components/activity/activity.component';
20
- import * as ɵngcc19 from './components/viewer/viewerDialog.component';
21
- import * as ɵngcc20 from './components/html/html.component';
22
- import * as ɵngcc21 from './components/option/option.component';
23
- import * as ɵngcc22 from './components/label/label.component';
24
- import * as ɵngcc23 from './components/steps/steps.component';
25
- import * as ɵngcc24 from '@angular/forms';
26
- import * as ɵngcc25 from '@angular/common';
27
- import * as ɵngcc26 from './modules/spa-mat.module';
28
- import * as ɵngcc27 from 'angular2-moment';
29
- import * as ɵngcc28 from 'ngx-doc-viewer';
30
- import * as ɵngcc29 from '@kolkov/angular-editor';
31
- import * as ɵngcc30 from '@ng-idle/keepalive';
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dnd.directive";
3
+ import * as i2 from "./components/tin-spa.component";
4
+ import * as i3 from "./components/message/messageDialog.component";
5
+ import * as i4 from "./components/nav-menu/nav-menu.component";
6
+ import * as i5 from "./components/loader/loader.component";
7
+ import * as i6 from "./components/timeout/timeout.component";
8
+ import * as i7 from "./components/table/table.component";
9
+ import * as i8 from "./components/tiles/tiles.component";
10
+ import * as i9 from "./components/date/date.component";
11
+ import * as i10 from "./components/text/text.component";
12
+ import * as i11 from "./components/viewer/viewer.component";
13
+ import * as i12 from "./components/select/select.component";
14
+ import * as i13 from "./components/check/check.component";
15
+ import * as i14 from "./components/attach/attach.component";
16
+ import * as i15 from "./components/datetime/datetime.component";
17
+ import * as i16 from "./components/money/money.component";
18
+ import * as i17 from "./components/chips/chips.component";
19
+ import * as i18 from "./components/activity/activity.component";
20
+ import * as i19 from "./components/viewer/viewerDialog.component";
21
+ import * as i20 from "./components/html/html.component";
22
+ import * as i21 from "./components/option/option.component";
23
+ import * as i22 from "./components/label/label.component";
24
+ import * as i23 from "./components/steps/steps.component";
25
+ import * as i24 from "./components/filter/filter.component";
26
+ import * as i25 from "@angular/forms";
27
+ import * as i26 from "@angular/common";
28
+ import * as i27 from "./modules/spa-mat.module";
29
+ import * as i28 from "angular2-moment";
30
+ import * as i29 from "ngx-doc-viewer";
31
+ import * as i30 from "@kolkov/angular-editor";
32
+ import * as i31 from "./components/money/currency-input-mask.module";
33
+ import * as i32 from "@ng-idle/keepalive";
32
34
  export declare class TinSpaModule {
33
- static ɵmod: ɵngcc0.ɵɵNgModuleDefWithMeta<TinSpaModule, [typeof ɵngcc1.DndDirective, typeof ɵngcc2.TinSpaComponent, typeof ɵngcc3.messageDialog, typeof ɵngcc4.NavMenuComponent, typeof ɵngcc5.LoaderComponent, typeof ɵngcc6.TimeoutComponent, typeof ɵngcc7.TableComponent, typeof ɵngcc8.TilesComponent, typeof ɵngcc9.DateComponent, typeof ɵngcc10.TextComponent, typeof ɵngcc11.ViewerComponent, typeof ɵngcc12.SelectComponent, typeof ɵngcc13.CheckComponent, typeof ɵngcc14.AttachComponent, typeof ɵngcc15.DatetimeComponent, typeof ɵngcc16.MoneyComponent, typeof ɵngcc17.ChipsComponent, typeof ɵngcc18.ActivityComponent, typeof ɵngcc19.viewerDialog, typeof ɵngcc20.HtmlComponent, typeof ɵngcc21.OptionComponent, typeof ɵngcc22.LabelComponent, typeof ɵngcc23.StepsComponent], [typeof ɵngcc24.ReactiveFormsModule, typeof ɵngcc25.CommonModule, typeof ɵngcc24.FormsModule, typeof ɵngcc24.ReactiveFormsModule, typeof ɵngcc26.SpaMatModule, typeof ɵngcc27.MomentModule, typeof ɵngcc28.NgxDocViewerModule, typeof ɵngcc29.AngularEditorModule, typeof ɵngcc30.NgIdleKeepaliveModule], [typeof ɵngcc25.CommonModule, typeof ɵngcc24.FormsModule, typeof ɵngcc26.SpaMatModule, typeof ɵngcc2.TinSpaComponent, typeof ɵngcc3.messageDialog, typeof ɵngcc4.NavMenuComponent, typeof ɵngcc5.LoaderComponent, typeof ɵngcc6.TimeoutComponent, typeof ɵngcc7.TableComponent, typeof ɵngcc8.TilesComponent, typeof ɵngcc9.DateComponent, typeof ɵngcc11.ViewerComponent, typeof ɵngcc12.SelectComponent, typeof ɵngcc10.TextComponent, typeof ɵngcc15.DatetimeComponent, typeof ɵngcc13.CheckComponent, typeof ɵngcc14.AttachComponent, typeof ɵngcc16.MoneyComponent, typeof ɵngcc17.ChipsComponent, typeof ɵngcc18.ActivityComponent, typeof ɵngcc20.HtmlComponent, typeof ɵngcc21.OptionComponent, typeof ɵngcc22.LabelComponent, typeof ɵngcc23.StepsComponent]>;
34
- static ɵinj: ɵngcc0.ɵɵInjectorDef<TinSpaModule>;
35
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<TinSpaModule, [typeof i1.DndDirective, typeof i2.TinSpaComponent, typeof i3.messageDialog, typeof i4.NavMenuComponent, typeof i5.LoaderComponent, typeof i6.TimeoutComponent, typeof i7.TableComponent, typeof i8.TilesComponent, typeof i9.DateComponent, typeof i10.TextComponent, typeof i11.ViewerComponent, typeof i12.SelectComponent, typeof i13.CheckComponent, typeof i14.AttachComponent, typeof i15.DatetimeComponent, typeof i16.MoneyComponent, typeof i17.ChipsComponent, typeof i18.ActivityComponent, typeof i19.viewerDialog, typeof i20.HtmlComponent, typeof i21.OptionComponent, typeof i22.LabelComponent, typeof i23.StepsComponent, typeof i24.FilterComponent], [typeof i25.ReactiveFormsModule, typeof i26.CommonModule, typeof i25.FormsModule, typeof i25.ReactiveFormsModule, typeof i27.SpaMatModule, typeof i28.MomentModule, typeof i29.NgxDocViewerModule, typeof i30.AngularEditorModule, typeof i31.CurrencyInputModule, typeof i32.NgIdleKeepaliveModule], [typeof i26.CommonModule, typeof i25.FormsModule, typeof i27.SpaMatModule, typeof i2.TinSpaComponent, typeof i3.messageDialog, typeof i4.NavMenuComponent, typeof i5.LoaderComponent, typeof i6.TimeoutComponent, typeof i7.TableComponent, typeof i8.TilesComponent, typeof i9.DateComponent, typeof i11.ViewerComponent, typeof i12.SelectComponent, typeof i10.TextComponent, typeof i15.DatetimeComponent, typeof i13.CheckComponent, typeof i14.AttachComponent, typeof i16.MoneyComponent, typeof i17.ChipsComponent, typeof i18.ActivityComponent, typeof i20.HtmlComponent, typeof i21.OptionComponent, typeof i22.LabelComponent, typeof i23.StepsComponent, typeof i24.FilterComponent]>;
36
+ static ɵinj: i0.ɵɵInjectorDef<TinSpaModule>;
35
37
  }
36
-
37
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGluLXNwYS5tb2R1bGUuZC50cyIsInNvdXJjZXMiOlsidGluLXNwYS5tb2R1bGUuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY2xhc3MgVGluU3BhTW9kdWxlIHtcclxufVxyXG4iXX0=
package/package.json CHANGED
@@ -1,31 +1,23 @@
1
1
  {
2
2
  "name": "tin-spa",
3
- "version": "9.0.0",
3
+ "version": "9.1.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^9.1.12",
6
6
  "@angular/core": "^9.1.12"
7
7
  },
8
8
  "main": "bundles/tin-spa.umd.js",
9
9
  "module": "fesm5/tin-spa.js",
10
- "es2015_ivy_ngcc": "__ivy_ngcc__/fesm2015/tin-spa.js",
11
10
  "es2015": "fesm2015/tin-spa.js",
12
11
  "esm5": "esm5/tin-spa.js",
13
12
  "esm2015": "esm2015/tin-spa.js",
14
13
  "fesm5": "fesm5/tin-spa.js",
15
- "fesm2015_ivy_ngcc": "__ivy_ngcc__/fesm2015/tin-spa.js",
16
14
  "fesm2015": "fesm2015/tin-spa.js",
17
15
  "typings": "tin-spa.d.ts",
18
- "metadata": "tin-spa.metadata.json",
19
16
  "sideEffects": false,
20
17
  "dependencies": {
21
18
  "tslib": "^1.10.0"
22
19
  },
23
- "__processed_by_ivy_ngcc__": {
24
- "es2015": "9.1.12",
25
- "fesm2015": "9.1.12",
26
- "typings": "9.1.12"
27
- },
28
20
  "scripts": {
29
- "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by NGCC. This is not allowed.\\nPlease delete and rebuild the package, without compiling with NGCC, before attempting to publish.\\nNote that NGCC may have been run by importing this package into another project that is being built with Ivy enabled.\\n')\" && exit 1"
21
+ "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy. This is not allowed.\\nPlease delete and rebuild the package, without compiling with Ivy, before attempting to publish.\\n')\" && exit 1"
30
22
  }
31
23
  }
package/public-api.d.ts CHANGED
@@ -5,7 +5,9 @@ export * from './lib/services/export.service';
5
5
  export * from './lib/services/auth.service';
6
6
  export * from './lib/services/data.service';
7
7
  export * from './lib/services/log.service';
8
+ export * from './lib/services/http.service';
8
9
  export * from './lib/classes/Classes';
10
+ export * from './lib/classes/TinCore';
9
11
  export * from './lib/tin-spa.module';
10
12
  export * from './lib/modules/spa-mat.module';
11
13
  export * from './lib/modules/spa-index.module';
@@ -28,21 +30,17 @@ export * from './lib/components/activity/activity.component';
28
30
  export * from './lib/components/html/html.component';
29
31
  export * from './lib/components/option/option.component';
30
32
  export * from './lib/components/steps/steps.component';
33
+ export * from './lib/components/filter/filter.component';
31
34
  export * from './lib/components/message/messageDialog.component';
32
35
  export * from './lib/components/loader/loader.component';
33
36
  export * from './lib/components/users/users.component';
34
- export * from './lib/components/users/addUserDialog.component';
35
- export * from './lib/components/users/editUserDialog.component';
36
37
  export * from './lib/components/login/login.component';
37
38
  export * from './lib/components/nav-menu/nav-menu.component';
38
39
  export * from './lib/components/roles/roles.component';
39
40
  export * from './lib/components/roles/addRoleDialog.component';
40
- export * from './lib/components/roles/editRoleDialog.component';
41
- export * from './lib/components/roles/viewRoleDialog.component';
42
41
  export * from './lib/components/signup/signup.component';
43
42
  export * from './lib/components/change-password/change-password.component';
44
43
  export * from './lib/components/profile/profile.component';
45
- export * from './lib/components/profiles/profiles.component';
46
44
  export * from './lib/components/recover-account/recover-account.component';
47
45
  export * from './lib/components/create-account/create-account.component';
48
46
  export * from './lib/components/timeout/timeout.component';