tin-spa 2.13.15 → 9.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 (443) hide show
  1. package/README.md +2 -2
  2. package/__ivy_ngcc__/fesm2015/tin-spa.js +6813 -0
  3. package/__ivy_ngcc__/fesm2015/tin-spa.js.map +1 -0
  4. package/bundles/tin-spa.umd.js +3867 -0
  5. package/bundles/tin-spa.umd.js.map +1 -0
  6. package/bundles/tin-spa.umd.min.js +16 -0
  7. package/bundles/tin-spa.umd.min.js.map +1 -0
  8. package/esm2015/lib/classes/Classes.js +241 -0
  9. package/esm2015/lib/components/activity/activity.component.js +26 -0
  10. package/esm2015/lib/components/attach/attach.component.js +107 -0
  11. package/esm2015/lib/components/change-password/change-password.component.js +91 -0
  12. package/esm2015/lib/components/check/check.component.js +63 -0
  13. package/esm2015/lib/components/chips/chips.component.js +67 -0
  14. package/esm2015/lib/components/create-account/create-account.component.js +78 -0
  15. package/esm2015/lib/components/date/date.component.js +45 -0
  16. package/esm2015/lib/components/datetime/datetime.component.js +44 -0
  17. package/esm2015/lib/components/html/html.component.js +97 -0
  18. package/esm2015/lib/components/label/label.component.js +29 -0
  19. package/esm2015/lib/components/loader/loader.component.js +30 -0
  20. package/esm2015/lib/components/login/login.component.js +122 -0
  21. package/esm2015/lib/components/logs/logs.component.js +43 -0
  22. package/esm2015/lib/components/message/messageDialog.component.js +31 -0
  23. package/esm2015/lib/components/money/money.component.js +50 -0
  24. package/esm2015/lib/components/nav-menu/nav-menu.component.js +51 -0
  25. package/esm2015/lib/components/option/option.component.js +62 -0
  26. package/esm2015/lib/components/profile/profile.component.js +108 -0
  27. package/esm2015/lib/components/profiles/profiles.component.js +16 -0
  28. package/esm2015/lib/components/recover-account/recover-account.component.js +52 -0
  29. package/esm2015/lib/components/roles/addRoleDialog.component.js +59 -0
  30. package/esm2015/lib/components/roles/editRoleDialog.component.js +57 -0
  31. package/esm2015/lib/components/roles/roles.component.js +131 -0
  32. package/esm2015/lib/components/roles/viewRoleDialog.component.js +38 -0
  33. package/esm2015/lib/components/select/select.component.js +73 -0
  34. package/esm2015/lib/components/settings/settings.component.js +63 -0
  35. package/esm2015/lib/components/signup/signup.component.js +56 -0
  36. package/esm2015/lib/components/steps/steps.component.js +98 -0
  37. package/esm2015/lib/components/table/table.component.js +109 -0
  38. package/esm2015/lib/components/text/text.component.js +165 -0
  39. package/esm2015/lib/components/tiles/tiles.component.js +41 -0
  40. package/esm2015/lib/components/timeout/timeout.component.js +90 -0
  41. package/esm2015/lib/components/tin-spa.component.js +19 -0
  42. package/esm2015/lib/components/users/addUserDialog.component.js +53 -0
  43. package/esm2015/lib/components/users/editUserDialog.component.js +96 -0
  44. package/esm2015/lib/components/users/users.component.js +130 -0
  45. package/esm2015/lib/components/viewer/viewer.component.js +67 -0
  46. package/esm2015/lib/components/viewer/viewerDialog.component.js +76 -0
  47. package/esm2015/lib/dnd.directive.js +51 -0
  48. package/esm2015/lib/modules/spa-admin.module.js +67 -0
  49. package/esm2015/lib/modules/spa-index.module.js +33 -0
  50. package/esm2015/lib/modules/spa-mat.module.js +53 -0
  51. package/esm2015/lib/modules/spa-user.module.js +31 -0
  52. package/esm2015/lib/services/auth.service.js +153 -0
  53. package/esm2015/lib/services/data.service.js +78 -0
  54. package/esm2015/lib/services/export.service.js +29 -0
  55. package/esm2015/lib/services/loader-interceptor.service.js +77 -0
  56. package/esm2015/lib/services/loader.service.js +17 -0
  57. package/esm2015/lib/services/log.service.js +76 -0
  58. package/esm2015/lib/services/message.service.js +58 -0
  59. package/esm2015/lib/services/storage.service.js +42 -0
  60. package/esm2015/lib/services/tin-spa.service.js +14 -0
  61. package/esm2015/lib/tin-spa.module.js +91 -0
  62. package/esm2015/public-api.js +58 -0
  63. package/esm2015/tin-spa.js +9 -0
  64. package/esm5/lib/classes/Classes.js +298 -0
  65. package/esm5/lib/components/activity/activity.component.js +27 -0
  66. package/esm5/lib/components/attach/attach.component.js +119 -0
  67. package/esm5/lib/components/change-password/change-password.component.js +93 -0
  68. package/esm5/lib/components/check/check.component.js +64 -0
  69. package/esm5/lib/components/chips/chips.component.js +69 -0
  70. package/esm5/lib/components/create-account/create-account.component.js +80 -0
  71. package/esm5/lib/components/date/date.component.js +46 -0
  72. package/esm5/lib/components/datetime/datetime.component.js +45 -0
  73. package/esm5/lib/components/html/html.component.js +98 -0
  74. package/esm5/lib/components/label/label.component.js +30 -0
  75. package/esm5/lib/components/loader/loader.component.js +32 -0
  76. package/esm5/lib/components/login/login.component.js +125 -0
  77. package/esm5/lib/components/logs/logs.component.js +45 -0
  78. package/esm5/lib/components/message/messageDialog.component.js +32 -0
  79. package/esm5/lib/components/money/money.component.js +51 -0
  80. package/esm5/lib/components/nav-menu/nav-menu.component.js +53 -0
  81. package/esm5/lib/components/option/option.component.js +63 -0
  82. package/esm5/lib/components/profile/profile.component.js +112 -0
  83. package/esm5/lib/components/profiles/profiles.component.js +18 -0
  84. package/esm5/lib/components/recover-account/recover-account.component.js +54 -0
  85. package/esm5/lib/components/roles/addRoleDialog.component.js +61 -0
  86. package/esm5/lib/components/roles/editRoleDialog.component.js +59 -0
  87. package/esm5/lib/components/roles/roles.component.js +138 -0
  88. package/esm5/lib/components/roles/viewRoleDialog.component.js +39 -0
  89. package/esm5/lib/components/select/select.component.js +75 -0
  90. package/esm5/lib/components/settings/settings.component.js +66 -0
  91. package/esm5/lib/components/signup/signup.component.js +58 -0
  92. package/esm5/lib/components/steps/steps.component.js +110 -0
  93. package/esm5/lib/components/table/table.component.js +111 -0
  94. package/esm5/lib/components/text/text.component.js +168 -0
  95. package/esm5/lib/components/tiles/tiles.component.js +42 -0
  96. package/esm5/lib/components/timeout/timeout.component.js +92 -0
  97. package/esm5/lib/components/tin-spa.component.js +17 -0
  98. package/esm5/lib/components/users/addUserDialog.component.js +55 -0
  99. package/esm5/lib/components/users/editUserDialog.component.js +99 -0
  100. package/esm5/lib/components/users/users.component.js +135 -0
  101. package/esm5/lib/components/viewer/viewer.component.js +68 -0
  102. package/esm5/lib/components/viewer/viewerDialog.component.js +77 -0
  103. package/esm5/lib/dnd.directive.js +52 -0
  104. package/esm5/lib/modules/spa-admin.module.js +70 -0
  105. package/esm5/lib/modules/spa-index.module.js +36 -0
  106. package/esm5/lib/modules/spa-mat.module.js +56 -0
  107. package/esm5/lib/modules/spa-user.module.js +34 -0
  108. package/esm5/lib/services/auth.service.js +155 -0
  109. package/esm5/lib/services/data.service.js +79 -0
  110. package/esm5/lib/services/export.service.js +30 -0
  111. package/esm5/lib/services/loader-interceptor.service.js +79 -0
  112. package/esm5/lib/services/loader.service.js +18 -0
  113. package/esm5/lib/services/log.service.js +112 -0
  114. package/esm5/lib/services/message.service.js +59 -0
  115. package/esm5/lib/services/storage.service.js +74 -0
  116. package/esm5/lib/services/tin-spa.service.js +16 -0
  117. package/esm5/lib/tin-spa.module.js +94 -0
  118. package/esm5/public-api.js +58 -0
  119. package/esm5/tin-spa.js +9 -0
  120. package/fesm2015/tin-spa.js +3398 -0
  121. package/fesm2015/tin-spa.js.map +1 -0
  122. package/fesm5/tin-spa.js +3623 -0
  123. package/fesm5/tin-spa.js.map +1 -0
  124. package/lib/classes/Classes.d.ts +216 -375
  125. package/lib/components/activity/activity.component.d.ts +5 -3
  126. package/lib/components/activity/activity.component.d.ts.__ivy_ngcc_bak +8 -0
  127. package/lib/components/attach/attach.component.d.ts +30 -16
  128. package/lib/components/attach/attach.component.d.ts.__ivy_ngcc_bak +39 -0
  129. package/lib/components/change-password/change-password.component.d.ts +25 -0
  130. package/lib/components/change-password/change-password.component.d.ts.__ivy_ngcc_bak +20 -0
  131. package/lib/components/check/check.component.d.ts +6 -9
  132. package/lib/components/check/check.component.d.ts.__ivy_ngcc_bak +16 -0
  133. package/lib/components/chips/chips.component.d.ts +5 -3
  134. package/lib/components/chips/chips.component.d.ts.__ivy_ngcc_bak +15 -0
  135. package/lib/components/create-account/create-account.component.d.ts +30 -0
  136. package/lib/components/create-account/create-account.component.d.ts.__ivy_ngcc_bak +25 -0
  137. package/lib/components/date/date.component.d.ts +15 -26
  138. package/lib/components/date/date.component.d.ts.__ivy_ngcc_bak +13 -0
  139. package/lib/components/datetime/datetime.component.d.ts +5 -7
  140. package/lib/components/datetime/datetime.component.d.ts.__ivy_ngcc_bak +12 -0
  141. package/lib/components/html/html.component.d.ts +13 -12
  142. package/lib/components/html/html.component.d.ts.__ivy_ngcc_bak +12 -0
  143. package/lib/components/label/label.component.d.ts +5 -5
  144. package/lib/components/label/label.component.d.ts.__ivy_ngcc_bak +8 -0
  145. package/lib/components/loader/loader.component.d.ts +5 -3
  146. package/lib/components/loader/loader.component.d.ts.__ivy_ngcc_bak +9 -0
  147. package/lib/components/login/login.component.d.ts +34 -0
  148. package/lib/components/login/login.component.d.ts.__ivy_ngcc_bak +29 -0
  149. package/lib/components/logs/logs.component.d.ts +22 -0
  150. package/lib/components/logs/logs.component.d.ts.__ivy_ngcc_bak +17 -0
  151. package/lib/components/message/messageDialog.component.d.ts +5 -3
  152. package/lib/components/message/messageDialog.component.d.ts.__ivy_ngcc_bak +12 -0
  153. package/lib/components/money/money.component.d.ts +8 -29
  154. package/lib/components/money/money.component.d.ts.__ivy_ngcc_bak +14 -0
  155. package/lib/components/nav-menu/nav-menu.component.d.ts +7 -23
  156. package/lib/components/nav-menu/nav-menu.component.d.ts.__ivy_ngcc_bak +17 -0
  157. package/lib/components/option/option.component.d.ts +6 -16
  158. package/lib/components/option/option.component.d.ts.__ivy_ngcc_bak +17 -0
  159. package/lib/components/profile/profile.component.d.ts +35 -0
  160. package/lib/components/profile/profile.component.d.ts.__ivy_ngcc_bak +30 -0
  161. package/lib/components/profiles/profiles.component.d.ts +10 -0
  162. package/lib/components/profiles/profiles.component.d.ts.__ivy_ngcc_bak +5 -0
  163. package/lib/components/recover-account/recover-account.component.d.ts +20 -0
  164. package/lib/components/recover-account/recover-account.component.d.ts.__ivy_ngcc_bak +15 -0
  165. package/lib/components/roles/addRoleDialog.component.d.ts +24 -0
  166. package/lib/components/roles/addRoleDialog.component.d.ts.__ivy_ngcc_bak +19 -0
  167. package/lib/components/roles/editRoleDialog.component.d.ts +24 -0
  168. package/lib/components/roles/editRoleDialog.component.d.ts.__ivy_ngcc_bak +19 -0
  169. package/lib/components/roles/roles.component.d.ts +34 -0
  170. package/lib/components/roles/roles.component.d.ts.__ivy_ngcc_bak +29 -0
  171. package/lib/components/roles/viewRoleDialog.component.d.ts +20 -0
  172. package/lib/components/roles/viewRoleDialog.component.d.ts.__ivy_ngcc_bak +15 -0
  173. package/lib/components/select/select.component.d.ts +23 -21
  174. package/lib/components/select/select.component.d.ts.__ivy_ngcc_bak +20 -0
  175. package/lib/components/settings/settings.component.d.ts +21 -0
  176. package/lib/{pages/settings/settings.component.d.ts → components/settings/settings.component.d.ts.__ivy_ngcc_bak} +2 -5
  177. package/lib/components/signup/signup.component.d.ts +25 -0
  178. package/lib/{pages/signup/signup.component.d.ts → components/signup/signup.component.d.ts.__ivy_ngcc_bak} +4 -7
  179. package/lib/components/steps/steps.component.d.ts +13 -20
  180. package/lib/components/steps/steps.component.d.ts.__ivy_ngcc_bak +15 -0
  181. package/lib/components/table/table.component.d.ts +24 -85
  182. package/lib/components/table/table.component.d.ts.__ivy_ngcc_bak +25 -0
  183. package/lib/components/text/text.component.d.ts +17 -38
  184. package/lib/components/text/text.component.d.ts.__ivy_ngcc_bak +37 -0
  185. package/lib/components/tiles/tiles.component.d.ts +10 -22
  186. package/lib/components/tiles/tiles.component.d.ts.__ivy_ngcc_bak +11 -0
  187. package/lib/components/timeout/timeout.component.d.ts +26 -0
  188. package/lib/components/timeout/timeout.component.d.ts.__ivy_ngcc_bak +21 -0
  189. package/lib/components/tin-spa.component.d.ts +9 -4
  190. package/lib/components/tin-spa.component.d.ts.__ivy_ngcc_bak +5 -0
  191. package/lib/components/users/addUserDialog.component.d.ts +21 -0
  192. package/lib/components/users/addUserDialog.component.d.ts.__ivy_ngcc_bak +16 -0
  193. package/lib/components/users/editUserDialog.component.d.ts +32 -0
  194. package/lib/components/users/editUserDialog.component.d.ts.__ivy_ngcc_bak +27 -0
  195. package/lib/components/users/users.component.d.ts +40 -0
  196. package/lib/components/users/users.component.d.ts.__ivy_ngcc_bak +35 -0
  197. package/lib/components/viewer/viewer.component.d.ts +8 -12
  198. package/lib/components/viewer/viewer.component.d.ts.__ivy_ngcc_bak +16 -0
  199. package/lib/components/viewer/viewerDialog.component.d.ts +8 -8
  200. package/lib/components/viewer/viewerDialog.component.d.ts.__ivy_ngcc_bak +19 -0
  201. package/lib/dnd.directive.d.ts +13 -0
  202. package/lib/dnd.directive.d.ts.__ivy_ngcc_bak +8 -0
  203. package/lib/modules/spa-admin.module.d.ts +19 -13
  204. package/lib/modules/spa-admin.module.d.ts.__ivy_ngcc_bak +2 -0
  205. package/lib/modules/spa-index.module.d.ts +11 -11
  206. package/lib/modules/spa-index.module.d.ts.__ivy_ngcc_bak +2 -0
  207. package/lib/modules/spa-mat.module.d.ts +32 -36
  208. package/lib/modules/spa-mat.module.d.ts.__ivy_ngcc_bak +2 -0
  209. package/lib/modules/spa-user.module.d.ts +10 -9
  210. package/lib/modules/spa-user.module.d.ts.__ivy_ngcc_bak +2 -0
  211. package/lib/services/auth.service.d.ts +15 -27
  212. package/lib/services/auth.service.d.ts.__ivy_ngcc_bak +45 -0
  213. package/lib/services/data.service.d.ts +27 -0
  214. package/lib/services/data.service.d.ts.__ivy_ngcc_bak +23 -0
  215. package/lib/services/export.service.d.ts +8 -3
  216. package/lib/services/export.service.d.ts.__ivy_ngcc_bak +7 -0
  217. package/lib/services/loader-interceptor.service.d.ts +6 -5
  218. package/lib/services/loader-interceptor.service.d.ts.__ivy_ngcc_bak +18 -0
  219. package/lib/services/loader.service.d.ts +4 -3
  220. package/lib/services/loader.service.d.ts.__ivy_ngcc_bak +5 -0
  221. package/lib/services/log.service.d.ts +5 -4
  222. package/lib/services/log.service.d.ts.__ivy_ngcc_bak +16 -0
  223. package/lib/services/message.service.d.ts +5 -5
  224. package/lib/services/message.service.d.ts.__ivy_ngcc_bak +12 -0
  225. package/lib/services/storage.service.d.ts +4 -3
  226. package/lib/services/storage.service.d.ts.__ivy_ngcc_bak +7 -0
  227. package/lib/services/tin-spa.service.d.ts +4 -3
  228. package/lib/services/tin-spa.service.d.ts.__ivy_ngcc_bak +3 -0
  229. package/lib/tin-spa.module.d.ts +35 -84
  230. package/lib/tin-spa.module.d.ts.__ivy_ngcc_bak +2 -0
  231. package/package.json +23 -23
  232. package/public-api.d.ts +21 -50
  233. package/tin-spa.d.ts +10 -0
  234. package/tin-spa.d.ts.__ivy_ngcc_bak +8 -0
  235. package/tin-spa.metadata.json +1 -0
  236. package/esm2020/lib/classes/Classes.mjs +0 -112
  237. package/esm2020/lib/classes/LibClasses.mjs +0 -180
  238. package/esm2020/lib/classes/TinCore.mjs +0 -568
  239. package/esm2020/lib/components/activity/activity.component.mjs +0 -24
  240. package/esm2020/lib/components/alert/alert.component.mjs +0 -43
  241. package/esm2020/lib/components/attach/attach.component.mjs +0 -102
  242. package/esm2020/lib/components/capsules/capsules.component.mjs +0 -63
  243. package/esm2020/lib/components/cards/cards.component.mjs +0 -103
  244. package/esm2020/lib/components/check/check.component.mjs +0 -67
  245. package/esm2020/lib/components/chips/chips.component.mjs +0 -58
  246. package/esm2020/lib/components/date/date.component.mjs +0 -103
  247. package/esm2020/lib/components/datetime/datetime.component.mjs +0 -55
  248. package/esm2020/lib/components/email/email.component.mjs +0 -133
  249. package/esm2020/lib/components/filter/filter.component.mjs +0 -58
  250. package/esm2020/lib/components/form/form.component.mjs +0 -296
  251. package/esm2020/lib/components/html/html.component.mjs +0 -34
  252. package/esm2020/lib/components/label/label.component.mjs +0 -31
  253. package/esm2020/lib/components/list-dialog/list-dialog.component.mjs +0 -68
  254. package/esm2020/lib/components/loader/loader.component.mjs +0 -25
  255. package/esm2020/lib/components/message/messageDialog.component.mjs +0 -33
  256. package/esm2020/lib/components/money/currency-input-mask.directive.mjs +0 -185
  257. package/esm2020/lib/components/money/currency-input-mask.module.mjs +0 -28
  258. package/esm2020/lib/components/money/money.component.mjs +0 -137
  259. package/esm2020/lib/components/multi-select/multi-select.component.mjs +0 -165
  260. package/esm2020/lib/components/multi-text/multi-text.component.mjs +0 -208
  261. package/esm2020/lib/components/nav-menu/nav-menu.component.mjs +0 -88
  262. package/esm2020/lib/components/notes/notes.component.mjs +0 -62
  263. package/esm2020/lib/components/number/number.component.mjs +0 -131
  264. package/esm2020/lib/components/option/option.component.mjs +0 -92
  265. package/esm2020/lib/components/page/page.component.mjs +0 -101
  266. package/esm2020/lib/components/search/search.component.mjs +0 -36
  267. package/esm2020/lib/components/select/select.component.mjs +0 -75
  268. package/esm2020/lib/components/select-bitwise/select-bitwise.component.mjs +0 -87
  269. package/esm2020/lib/components/select-common/select-common.component.mjs +0 -206
  270. package/esm2020/lib/components/select-internal/select-internal.component.mjs +0 -75
  271. package/esm2020/lib/components/select-lite/select-lite.component.mjs +0 -18
  272. package/esm2020/lib/components/statuses/statuses.component.mjs +0 -44
  273. package/esm2020/lib/components/steps/steps.component.mjs +0 -112
  274. package/esm2020/lib/components/suffix/suffix.component.mjs +0 -70
  275. package/esm2020/lib/components/table/detailsDialog.component.mjs +0 -406
  276. package/esm2020/lib/components/table/table.component.mjs +0 -440
  277. package/esm2020/lib/components/table-action/table-action.component.mjs +0 -80
  278. package/esm2020/lib/components/table-header/table-header.component.mjs +0 -148
  279. package/esm2020/lib/components/table-internal/detailsDialog-internal.component.mjs +0 -406
  280. package/esm2020/lib/components/table-internal/table-internal.component.mjs +0 -441
  281. package/esm2020/lib/components/table-lite/detailsDialog-lite.component.mjs +0 -404
  282. package/esm2020/lib/components/table-lite/table-lite.component.mjs +0 -441
  283. package/esm2020/lib/components/table-row/table-row.component.mjs +0 -93
  284. package/esm2020/lib/components/tabs/tabs.component.mjs +0 -74
  285. package/esm2020/lib/components/text/text.component.mjs +0 -255
  286. package/esm2020/lib/components/tiles/tiles.component.mjs +0 -99
  287. package/esm2020/lib/components/tin-spa.component.mjs +0 -19
  288. package/esm2020/lib/components/viewer/viewer.component.mjs +0 -83
  289. package/esm2020/lib/components/viewer/viewerDialog.component.mjs +0 -95
  290. package/esm2020/lib/modules/admin/admin-routing.module.mjs +0 -71
  291. package/esm2020/lib/modules/admin/admin.module.mjs +0 -26
  292. package/esm2020/lib/modules/index/index-routing.module.mjs +0 -27
  293. package/esm2020/lib/modules/index/index.module.mjs +0 -26
  294. package/esm2020/lib/modules/spa-admin.module.mjs +0 -71
  295. package/esm2020/lib/modules/spa-index.module.mjs +0 -54
  296. package/esm2020/lib/modules/spa-mat.module.mjs +0 -84
  297. package/esm2020/lib/modules/spa-user.module.mjs +0 -47
  298. package/esm2020/lib/modules/user/user-routing.module.mjs +0 -23
  299. package/esm2020/lib/modules/user/user.module.mjs +0 -26
  300. package/esm2020/lib/pages/accounts/accountDialog.component.mjs +0 -56
  301. package/esm2020/lib/pages/accounts/accounts.component.mjs +0 -70
  302. package/esm2020/lib/pages/app-models/app-models.component.mjs +0 -56
  303. package/esm2020/lib/pages/approvals/approvals.component.mjs +0 -19
  304. package/esm2020/lib/pages/approvals-config/approvals-config.component.mjs +0 -165
  305. package/esm2020/lib/pages/bug/bug.component.mjs +0 -14
  306. package/esm2020/lib/pages/change-password/change-password.component.mjs +0 -92
  307. package/esm2020/lib/pages/create-account/create-account.component.mjs +0 -110
  308. package/esm2020/lib/pages/customers/customers.component.mjs +0 -21
  309. package/esm2020/lib/pages/departments/departments.component.mjs +0 -22
  310. package/esm2020/lib/pages/employees/employees.component.mjs +0 -20
  311. package/esm2020/lib/pages/grades/grades.component.mjs +0 -14
  312. package/esm2020/lib/pages/inventory/inventory.component.mjs +0 -99
  313. package/esm2020/lib/pages/inventory/quantityDialog.component.mjs +0 -53
  314. package/esm2020/lib/pages/invitations-table/invitations-table.component.mjs +0 -71
  315. package/esm2020/lib/pages/login/login.component.mjs +0 -166
  316. package/esm2020/lib/pages/logs/logs.component.mjs +0 -42
  317. package/esm2020/lib/pages/membership/membership.component.mjs +0 -44
  318. package/esm2020/lib/pages/notifications/notifications.component.mjs +0 -90
  319. package/esm2020/lib/pages/notifications-config/notifications-config.component.mjs +0 -113
  320. package/esm2020/lib/pages/plans/plans.component.mjs +0 -44
  321. package/esm2020/lib/pages/positions/positions.component.mjs +0 -21
  322. package/esm2020/lib/pages/profile/profile.component.mjs +0 -94
  323. package/esm2020/lib/pages/recover-account/recover-account.component.mjs +0 -46
  324. package/esm2020/lib/pages/roles/addRoleDialog.component.mjs +0 -60
  325. package/esm2020/lib/pages/roles/roles.component.mjs +0 -151
  326. package/esm2020/lib/pages/settings/settings.component.mjs +0 -54
  327. package/esm2020/lib/pages/signup/signup.component.mjs +0 -50
  328. package/esm2020/lib/pages/suppliers/suppliers.component.mjs +0 -22
  329. package/esm2020/lib/pages/tasks/tasks.component.mjs +0 -86
  330. package/esm2020/lib/pages/tenant-settings/tenant-settings.component.mjs +0 -228
  331. package/esm2020/lib/pages/tenants/tenants.component.mjs +0 -47
  332. package/esm2020/lib/pages/transactions/transactDialog.component.mjs +0 -80
  333. package/esm2020/lib/pages/transactions/transactions.component.mjs +0 -101
  334. package/esm2020/lib/pages/users/users.component.mjs +0 -167
  335. package/esm2020/lib/pages/welcome/welcome.component.mjs +0 -86
  336. package/esm2020/lib/pipes/camelToWords.pipe.mjs +0 -17
  337. package/esm2020/lib/select-context.directive.mjs +0 -23
  338. package/esm2020/lib/services/auth.service.mjs +0 -175
  339. package/esm2020/lib/services/button.service.mjs +0 -162
  340. package/esm2020/lib/services/condition.service.mjs +0 -32
  341. package/esm2020/lib/services/csv.service.mjs +0 -49
  342. package/esm2020/lib/services/datalib.service.mjs +0 -860
  343. package/esm2020/lib/services/dialog.service.mjs +0 -125
  344. package/esm2020/lib/services/export.service.mjs +0 -16
  345. package/esm2020/lib/services/http.service.mjs +0 -79
  346. package/esm2020/lib/services/loader-interceptor.service.mjs +0 -86
  347. package/esm2020/lib/services/loader.service.mjs +0 -17
  348. package/esm2020/lib/services/log.service.mjs +0 -77
  349. package/esm2020/lib/services/message.service.mjs +0 -59
  350. package/esm2020/lib/services/notifications.service.mjs +0 -33
  351. package/esm2020/lib/services/storage.service.mjs +0 -34
  352. package/esm2020/lib/services/table-config.service.mjs +0 -78
  353. package/esm2020/lib/services/tin-spa.service.mjs +0 -14
  354. package/esm2020/lib/tin-spa.module.mjs +0 -225
  355. package/esm2020/public-api.mjs +0 -90
  356. package/esm2020/tin-spa.mjs +0 -5
  357. package/fesm2015/tin-spa.mjs +0 -11736
  358. package/fesm2015/tin-spa.mjs.map +0 -1
  359. package/fesm2020/tin-spa.mjs +0 -11738
  360. package/fesm2020/tin-spa.mjs.map +0 -1
  361. package/index.d.ts +0 -5
  362. package/lib/classes/LibClasses.d.ts +0 -173
  363. package/lib/classes/TinCore.d.ts +0 -59
  364. package/lib/components/alert/alert.component.d.ts +0 -15
  365. package/lib/components/capsules/capsules.component.d.ts +0 -26
  366. package/lib/components/cards/cards.component.d.ts +0 -39
  367. package/lib/components/email/email.component.d.ts +0 -40
  368. package/lib/components/filter/filter.component.d.ts +0 -20
  369. package/lib/components/form/form.component.d.ts +0 -47
  370. package/lib/components/list-dialog/list-dialog.component.d.ts +0 -23
  371. package/lib/components/money/currency-input-mask.directive.d.ts +0 -41
  372. package/lib/components/money/currency-input-mask.module.d.ts +0 -9
  373. package/lib/components/multi-select/multi-select.component.d.ts +0 -47
  374. package/lib/components/multi-text/multi-text.component.d.ts +0 -56
  375. package/lib/components/notes/notes.component.d.ts +0 -19
  376. package/lib/components/number/number.component.d.ts +0 -41
  377. package/lib/components/page/page.component.d.ts +0 -38
  378. package/lib/components/search/search.component.d.ts +0 -15
  379. package/lib/components/select-bitwise/select-bitwise.component.d.ts +0 -31
  380. package/lib/components/select-common/select-common.component.d.ts +0 -53
  381. package/lib/components/select-internal/select-internal.component.d.ts +0 -23
  382. package/lib/components/select-lite/select-lite.component.d.ts +0 -8
  383. package/lib/components/statuses/statuses.component.d.ts +0 -12
  384. package/lib/components/suffix/suffix.component.d.ts +0 -23
  385. package/lib/components/table/detailsDialog.component.d.ts +0 -86
  386. package/lib/components/table-action/table-action.component.d.ts +0 -25
  387. package/lib/components/table-header/table-header.component.d.ts +0 -46
  388. package/lib/components/table-internal/detailsDialog-internal.component.d.ts +0 -86
  389. package/lib/components/table-internal/table-internal.component.d.ts +0 -91
  390. package/lib/components/table-lite/detailsDialog-lite.component.d.ts +0 -86
  391. package/lib/components/table-lite/table-lite.component.d.ts +0 -91
  392. package/lib/components/table-row/table-row.component.d.ts +0 -31
  393. package/lib/components/tabs/tabs.component.d.ts +0 -32
  394. package/lib/modules/admin/admin-routing.module.d.ts +0 -7
  395. package/lib/modules/admin/admin.module.d.ts +0 -9
  396. package/lib/modules/index/index-routing.module.d.ts +0 -7
  397. package/lib/modules/index/index.module.d.ts +0 -9
  398. package/lib/modules/user/user-routing.module.d.ts +0 -7
  399. package/lib/modules/user/user.module.d.ts +0 -9
  400. package/lib/pages/accounts/accountDialog.component.d.ts +0 -27
  401. package/lib/pages/accounts/accounts.component.d.ts +0 -25
  402. package/lib/pages/app-models/app-models.component.d.ts +0 -15
  403. package/lib/pages/approvals/approvals.component.d.ts +0 -10
  404. package/lib/pages/approvals-config/approvals-config.component.d.ts +0 -24
  405. package/lib/pages/bug/bug.component.d.ts +0 -8
  406. package/lib/pages/change-password/change-password.component.d.ts +0 -27
  407. package/lib/pages/create-account/create-account.component.d.ts +0 -34
  408. package/lib/pages/customers/customers.component.d.ts +0 -12
  409. package/lib/pages/departments/departments.component.d.ts +0 -14
  410. package/lib/pages/employees/employees.component.d.ts +0 -12
  411. package/lib/pages/grades/grades.component.d.ts +0 -8
  412. package/lib/pages/inventory/inventory.component.d.ts +0 -25
  413. package/lib/pages/inventory/quantityDialog.component.d.ts +0 -23
  414. package/lib/pages/invitations-table/invitations-table.component.d.ts +0 -19
  415. package/lib/pages/login/login.component.d.ts +0 -46
  416. package/lib/pages/logs/logs.component.d.ts +0 -14
  417. package/lib/pages/membership/membership.component.d.ts +0 -13
  418. package/lib/pages/notifications/notifications.component.d.ts +0 -16
  419. package/lib/pages/notifications-config/notifications-config.component.d.ts +0 -17
  420. package/lib/pages/plans/plans.component.d.ts +0 -13
  421. package/lib/pages/positions/positions.component.d.ts +0 -12
  422. package/lib/pages/profile/profile.component.d.ts +0 -35
  423. package/lib/pages/recover-account/recover-account.component.d.ts +0 -18
  424. package/lib/pages/roles/addRoleDialog.component.d.ts +0 -24
  425. package/lib/pages/roles/roles.component.d.ts +0 -42
  426. package/lib/pages/suppliers/suppliers.component.d.ts +0 -14
  427. package/lib/pages/tasks/tasks.component.d.ts +0 -27
  428. package/lib/pages/tenant-settings/tenant-settings.component.d.ts +0 -47
  429. package/lib/pages/tenants/tenants.component.d.ts +0 -17
  430. package/lib/pages/transactions/transactDialog.component.d.ts +0 -26
  431. package/lib/pages/transactions/transactions.component.d.ts +0 -31
  432. package/lib/pages/users/users.component.d.ts +0 -28
  433. package/lib/pages/welcome/welcome.component.d.ts +0 -25
  434. package/lib/pipes/camelToWords.pipe.d.ts +0 -7
  435. package/lib/select-context.directive.d.ts +0 -10
  436. package/lib/services/button.service.d.ts +0 -30
  437. package/lib/services/condition.service.d.ts +0 -10
  438. package/lib/services/csv.service.d.ts +0 -10
  439. package/lib/services/datalib.service.d.ts +0 -125
  440. package/lib/services/dialog.service.d.ts +0 -20
  441. package/lib/services/http.service.d.ts +0 -22
  442. package/lib/services/notifications.service.d.ts +0 -12
  443. package/lib/services/table-config.service.d.ts +0 -17
@@ -0,0 +1,27 @@
1
+ import { OnInit } from "@angular/core";
2
+ import { MatDialogRef } from "@angular/material/dialog";
3
+ import { DataService } from "../../services/data.service";
4
+ import { User } from "../../classes/Classes";
5
+ import { MessageService } from "../../services/message.service";
6
+ export declare class EditUserDialog implements OnInit {
7
+ private dataserv;
8
+ private messageService;
9
+ private dialogRef;
10
+ data: any;
11
+ constructor(dataserv: DataService, messageService: MessageService, dialogRef: MatDialogRef<EditUserDialog>, data: any);
12
+ ngOnInit(): void;
13
+ user: User;
14
+ myData: any;
15
+ myResponse: any;
16
+ departments: any;
17
+ lineManagers: any;
18
+ roles: any;
19
+ isProcessing: boolean;
20
+ myUser: User;
21
+ unlock(): void;
22
+ lock(): void;
23
+ enable(): void;
24
+ disable(): void;
25
+ Update(): void;
26
+ DeleteUser(): void;
27
+ }
@@ -0,0 +1,40 @@
1
+ import { OnInit } from "@angular/core";
2
+ import { MatPaginator } from "@angular/material/paginator";
3
+ import { MatDialog } from "@angular/material/dialog";
4
+ import { DataService } from "../../services/data.service";
5
+ import { HttpService } from "tin-core";
6
+ import { Router } from "@angular/router";
7
+ import { MessageService } from "../../services/message.service";
8
+ import { AuthService } from "../../services/auth.service";
9
+ import { User } from '../../classes/Classes';
10
+ import * as ɵngcc0 from '@angular/core';
11
+ export declare class UsersComponent implements OnInit {
12
+ private httpService;
13
+ router: Router;
14
+ private authService;
15
+ private dataService;
16
+ dialog: MatDialog;
17
+ private messageService;
18
+ constructor(httpService: HttpService, router: Router, authService: AuthService, dataService: DataService, dialog: MatDialog, messageService: MessageService);
19
+ ngOnInit(): void;
20
+ isProcessing: boolean;
21
+ usersPaginator: MatPaginator;
22
+ _filterText: string;
23
+ users: any;
24
+ displayedColumns: string[];
25
+ UpdateData(): void;
26
+ applyFilter(filterValue: string): void;
27
+ createAccount(): void;
28
+ viewProfile(user: User): void;
29
+ lock(u: User): void;
30
+ unlock(u: User): void;
31
+ enable(u: User): void;
32
+ disable(u: User): void;
33
+ recover(u: User): void;
34
+ updateUser(user: any): void;
35
+ deleteUser(user: User): void;
36
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<UsersComponent, never>;
37
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<UsersComponent, "spa-users", never, {}, {}, never, never>;
38
+ }
39
+
40
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbInVzZXJzLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPbkluaXQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBNYXRQYWdpbmF0b3IgfSBmcm9tIFwiQGFuZ3VsYXIvbWF0ZXJpYWwvcGFnaW5hdG9yXCI7XHJcbmltcG9ydCB7IE1hdERpYWxvZyB9IGZyb20gXCJAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2dcIjtcclxuaW1wb3J0IHsgRGF0YVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vc2VydmljZXMvZGF0YS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IEh0dHBTZXJ2aWNlIH0gZnJvbSBcInRpbi1jb3JlXCI7XHJcbmltcG9ydCB7IFJvdXRlciB9IGZyb20gXCJAYW5ndWxhci9yb3V0ZXJcIjtcclxuaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vc2VydmljZXMvbWVzc2FnZS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IEF1dGhTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZVwiO1xyXG5pbXBvcnQgeyBVc2VyIH0gZnJvbSAnLi4vLi4vY2xhc3Nlcy9DbGFzc2VzJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgVXNlcnNDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgcHJpdmF0ZSBodHRwU2VydmljZTtcclxuICAgIHJvdXRlcjogUm91dGVyO1xyXG4gICAgcHJpdmF0ZSBhdXRoU2VydmljZTtcclxuICAgIHByaXZhdGUgZGF0YVNlcnZpY2U7XHJcbiAgICBkaWFsb2c6IE1hdERpYWxvZztcclxuICAgIHByaXZhdGUgbWVzc2FnZVNlcnZpY2U7XHJcbiAgICBjb25zdHJ1Y3RvcihodHRwU2VydmljZTogSHR0cFNlcnZpY2UsIHJvdXRlcjogUm91dGVyLCBhdXRoU2VydmljZTogQXV0aFNlcnZpY2UsIGRhdGFTZXJ2aWNlOiBEYXRhU2VydmljZSwgZGlhbG9nOiBNYXREaWFsb2csIG1lc3NhZ2VTZXJ2aWNlOiBNZXNzYWdlU2VydmljZSk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgaXNQcm9jZXNzaW5nOiBib29sZWFuO1xyXG4gICAgdXNlcnNQYWdpbmF0b3I6IE1hdFBhZ2luYXRvcjtcclxuICAgIF9maWx0ZXJUZXh0OiBzdHJpbmc7XHJcbiAgICB1c2VyczogYW55O1xyXG4gICAgZGlzcGxheWVkQ29sdW1uczogc3RyaW5nW107XHJcbiAgICBVcGRhdGVEYXRhKCk6IHZvaWQ7XHJcbiAgICBhcHBseUZpbHRlcihmaWx0ZXJWYWx1ZTogc3RyaW5nKTogdm9pZDtcclxuICAgIGNyZWF0ZUFjY291bnQoKTogdm9pZDtcclxuICAgIHZpZXdQcm9maWxlKHVzZXI6IFVzZXIpOiB2b2lkO1xyXG4gICAgbG9jayh1OiBVc2VyKTogdm9pZDtcclxuICAgIHVubG9jayh1OiBVc2VyKTogdm9pZDtcclxuICAgIGVuYWJsZSh1OiBVc2VyKTogdm9pZDtcclxuICAgIGRpc2FibGUodTogVXNlcik6IHZvaWQ7XHJcbiAgICByZWNvdmVyKHU6IFVzZXIpOiB2b2lkO1xyXG4gICAgdXBkYXRlVXNlcih1c2VyOiBhbnkpOiB2b2lkO1xyXG4gICAgZGVsZXRlVXNlcih1c2VyOiBVc2VyKTogdm9pZDtcclxufVxyXG4iXX0=
@@ -0,0 +1,35 @@
1
+ import { OnInit } from "@angular/core";
2
+ import { MatPaginator } from "@angular/material/paginator";
3
+ import { MatDialog } from "@angular/material/dialog";
4
+ import { DataService } from "../../services/data.service";
5
+ import { HttpService } from "tin-core";
6
+ import { Router } from "@angular/router";
7
+ import { MessageService } from "../../services/message.service";
8
+ import { AuthService } from "../../services/auth.service";
9
+ import { User } from '../../classes/Classes';
10
+ export declare class UsersComponent implements OnInit {
11
+ private httpService;
12
+ router: Router;
13
+ private authService;
14
+ private dataService;
15
+ dialog: MatDialog;
16
+ private messageService;
17
+ constructor(httpService: HttpService, router: Router, authService: AuthService, dataService: DataService, dialog: MatDialog, messageService: MessageService);
18
+ ngOnInit(): void;
19
+ isProcessing: boolean;
20
+ usersPaginator: MatPaginator;
21
+ _filterText: string;
22
+ users: any;
23
+ displayedColumns: string[];
24
+ UpdateData(): void;
25
+ applyFilter(filterValue: string): void;
26
+ createAccount(): void;
27
+ viewProfile(user: User): void;
28
+ lock(u: User): void;
29
+ unlock(u: User): void;
30
+ enable(u: User): void;
31
+ disable(u: User): void;
32
+ recover(u: User): void;
33
+ updateUser(user: any): void;
34
+ deleteUser(user: User): void;
35
+ }
@@ -1,25 +1,21 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { MatDialog } from '@angular/material/dialog';
3
- import { DataServiceLib } from '../../services/datalib.service';
4
- import { Action } from '../../classes/Classes';
5
- import * as i0 from "@angular/core";
3
+ import * as ɵngcc0 from '@angular/core';
6
4
  export declare class ViewerComponent implements OnInit {
7
- private dataService;
8
5
  dialog: MatDialog;
9
- constructor(dataService: DataServiceLib, dialog: MatDialog);
6
+ constructor(dialog: MatDialog);
10
7
  ngOnInit(): void;
11
- fileAction: Action;
12
- path: string;
8
+ dir: string;
13
9
  folderName: string;
14
- fileNames: any;
10
+ fileNames: any[];
15
11
  removable: boolean;
16
12
  remove: EventEmitter<any>;
17
13
  display: string;
18
14
  title: string;
19
- loadData(): void;
20
- convert(): void;
21
15
  viewDocs(fileName: string): void;
22
16
  removed(i: any): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<ViewerComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<ViewerComponent, "spa-viewer", never, { "fileAction": "fileAction"; "path": "path"; "folderName": "folderName"; "fileNames": "fileNames"; "removable": "removable"; "display": "display"; "title": "title"; }, { "remove": "remove"; }, never, never, false>;
17
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<ViewerComponent, never>;
18
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<ViewerComponent, "spa-viewer", never, { "dir": "dir"; "folderName": "folderName"; "fileNames": "fileNames"; "removable": "removable"; "display": "display"; "title": "title"; }, { "remove": "remove"; }, never, never>;
25
19
  }
20
+
21
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmlld2VyLmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJ2aWV3ZXIuY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFdmVudEVtaXR0ZXIsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBNYXREaWFsb2cgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBWaWV3ZXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgZGlhbG9nOiBNYXREaWFsb2c7XHJcbiAgICBjb25zdHJ1Y3RvcihkaWFsb2c6IE1hdERpYWxvZyk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgZGlyOiBzdHJpbmc7XHJcbiAgICBmb2xkZXJOYW1lOiBzdHJpbmc7XHJcbiAgICBmaWxlTmFtZXM6IGFueVtdO1xyXG4gICAgcmVtb3ZhYmxlOiBib29sZWFuO1xyXG4gICAgcmVtb3ZlOiBFdmVudEVtaXR0ZXI8YW55PjtcclxuICAgIGRpc3BsYXk6IHN0cmluZztcclxuICAgIHRpdGxlOiBzdHJpbmc7XHJcbiAgICB2aWV3RG9jcyhmaWxlTmFtZTogc3RyaW5nKTogdm9pZDtcclxuICAgIHJlbW92ZWQoaTogYW55KTogdm9pZDtcclxufVxyXG4iXX0=
@@ -0,0 +1,16 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { MatDialog } from '@angular/material/dialog';
3
+ export declare class ViewerComponent implements OnInit {
4
+ dialog: MatDialog;
5
+ constructor(dialog: MatDialog);
6
+ ngOnInit(): void;
7
+ dir: string;
8
+ folderName: string;
9
+ fileNames: any[];
10
+ removable: boolean;
11
+ remove: EventEmitter<any>;
12
+ display: string;
13
+ title: string;
14
+ viewDocs(fileName: string): void;
15
+ removed(i: any): void;
16
+ }
@@ -1,15 +1,13 @@
1
1
  import { OnInit } from '@angular/core';
2
- import { HttpService } from '../../services/http.service';
3
- import { DataServiceLib } from '../../services/datalib.service';
4
- import * as i0 from "@angular/core";
2
+ import { HttpService } from 'tin-core';
3
+ import * as ɵngcc0 from '@angular/core';
5
4
  export declare class viewerDialog implements OnInit {
6
5
  private httpService;
7
- private dataServiceLib;
8
6
  data: any;
9
- constructor(httpService: HttpService, dataServiceLib: DataServiceLib, data: any);
7
+ constructor(httpService: HttpService, data: any);
10
8
  ngOnInit(): void;
11
9
  isProcessing: boolean;
12
- fullPath: string;
10
+ path: string;
13
11
  fileNames: any[];
14
12
  fileName: string;
15
13
  currIndex: number;
@@ -19,6 +17,8 @@ export declare class viewerDialog implements OnInit {
19
17
  imageDoc: boolean;
20
18
  setURL(): void;
21
19
  change(fileName: any): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<viewerDialog, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<viewerDialog, "app-editRequest", never, {}, {}, never, never, false>;
20
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<viewerDialog, never>;
21
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<viewerDialog, "app-editRequest", never, {}, {}, never, never>;
24
22
  }
23
+
24
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmlld2VyRGlhbG9nLmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJ2aWV3ZXJEaWFsb2cuY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgSHR0cFNlcnZpY2UgfSBmcm9tICd0aW4tY29yZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIHZpZXdlckRpYWxvZyBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBwcml2YXRlIGh0dHBTZXJ2aWNlO1xyXG4gICAgZGF0YTogYW55O1xyXG4gICAgY29uc3RydWN0b3IoaHR0cFNlcnZpY2U6IEh0dHBTZXJ2aWNlLCBkYXRhOiBhbnkpO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIGlzUHJvY2Vzc2luZzogYm9vbGVhbjtcclxuICAgIHBhdGg6IHN0cmluZztcclxuICAgIGZpbGVOYW1lczogYW55W107XHJcbiAgICBmaWxlTmFtZTogc3RyaW5nO1xyXG4gICAgY3VyckluZGV4OiBudW1iZXI7XHJcbiAgICBjdXJyZW50RmlsZVVybDogc3RyaW5nO1xyXG4gICAgcHJldmlvdXMoKTogdm9pZDtcclxuICAgIG5leHQoKTogdm9pZDtcclxuICAgIGltYWdlRG9jOiBib29sZWFuO1xyXG4gICAgc2V0VVJMKCk6IHZvaWQ7XHJcbiAgICBjaGFuZ2UoZmlsZU5hbWU6IGFueSk6IHZvaWQ7XHJcbn1cclxuIl19
@@ -0,0 +1,19 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { HttpService } from 'tin-core';
3
+ export declare class viewerDialog implements OnInit {
4
+ private httpService;
5
+ data: any;
6
+ constructor(httpService: HttpService, data: any);
7
+ ngOnInit(): void;
8
+ isProcessing: boolean;
9
+ path: string;
10
+ fileNames: any[];
11
+ fileName: string;
12
+ currIndex: number;
13
+ currentFileUrl: string;
14
+ previous(): void;
15
+ next(): void;
16
+ imageDoc: boolean;
17
+ setURL(): void;
18
+ change(fileName: any): void;
19
+ }
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as ɵngcc0 from '@angular/core';
3
+ export declare class DndDirective {
4
+ fileOver: boolean;
5
+ fileDropped: EventEmitter<any>;
6
+ onDragOver(evt: any): void;
7
+ onDragLeave(evt: any): void;
8
+ ondrop(evt: any): void;
9
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<DndDirective, never>;
10
+ static ɵdir: ɵngcc0.ɵɵDirectiveDefWithMeta<DndDirective, "[appDnd]", never, {}, { "fileDropped": "fileDropped"; }, never>;
11
+ }
12
+
13
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG5kLmRpcmVjdGl2ZS5kLnRzIiwic291cmNlcyI6WyJkbmQuZGlyZWN0aXZlLmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEV2ZW50RW1pdHRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBEbmREaXJlY3RpdmUge1xyXG4gICAgZmlsZU92ZXI6IGJvb2xlYW47XHJcbiAgICBmaWxlRHJvcHBlZDogRXZlbnRFbWl0dGVyPGFueT47XHJcbiAgICBvbkRyYWdPdmVyKGV2dDogYW55KTogdm9pZDtcclxuICAgIG9uRHJhZ0xlYXZlKGV2dDogYW55KTogdm9pZDtcclxuICAgIG9uZHJvcChldnQ6IGFueSk6IHZvaWQ7XHJcbn1cclxuIl19
@@ -0,0 +1,8 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ export declare class DndDirective {
3
+ fileOver: boolean;
4
+ fileDropped: EventEmitter<any>;
5
+ onDragOver(evt: any): void;
6
+ onDragLeave(evt: any): void;
7
+ ondrop(evt: any): void;
8
+ }
@@ -1,15 +1,21 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "../pages/users/users.component";
3
- import * as i2 from "../pages/roles/roles.component";
4
- import * as i3 from "../pages/roles/addRoleDialog.component";
5
- import * as i4 from "../pages/create-account/create-account.component";
6
- import * as i5 from "../pages/logs/logs.component";
7
- import * as i6 from "../pages/settings/settings.component";
8
- import * as i7 from "@angular/forms";
9
- import * as i8 from "@angular/common";
10
- import * as i9 from "../tin-spa.module";
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';
11
16
  export declare class SpaAdminModule {
12
- static ɵfac: i0.ɵɵFactoryDeclaration<SpaAdminModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<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.TinSpaModule], [typeof i8.CommonModule, typeof i7.FormsModule, typeof i9.TinSpaModule, typeof i1.UsersComponent, typeof i2.RolesComponent, typeof i3.addRoleDialog, typeof i4.CreateAccountComponent, typeof i5.LogsComponent, typeof i6.SettingsComponent]>;
14
- static ɵinj: i0.ɵɵInjectorDeclaration<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>;
15
19
  }
20
+
21
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhLWFkbWluLm1vZHVsZS5kLnRzIiwic291cmNlcyI6WyJzcGEtYWRtaW4ubW9kdWxlLmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY2xhc3MgU3BhQWRtaW5Nb2R1bGUge1xyXG59XHJcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export declare class SpaAdminModule {
2
+ }
@@ -1,13 +1,13 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "../pages/login/login.component";
3
- import * as i2 from "../pages/signup/signup.component";
4
- import * as i3 from "../pages/recover-account/recover-account.component";
5
- import * as i4 from "@angular/forms";
6
- import * as i5 from "@angular/common";
7
- import * as i6 from "../tin-spa.module";
8
- import * as i7 from "@abacritt/angularx-social-login";
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';
9
8
  export declare class SpaIndexModule {
10
- static ɵfac: i0.ɵɵFactoryDeclaration<SpaIndexModule, never>;
11
- static ɵmod: i0.ɵɵNgModuleDeclaration<SpaIndexModule, [typeof i1.LoginComponent, typeof i2.SignupComponent, typeof i3.RecoverAccountComponent], [typeof i4.ReactiveFormsModule, typeof i5.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i6.TinSpaModule, typeof i7.SocialLoginModule], [typeof i5.CommonModule, typeof i4.FormsModule, typeof i6.TinSpaModule, typeof i1.LoginComponent, typeof i2.SignupComponent, typeof i3.RecoverAccountComponent]>;
12
- static ɵinj: i0.ɵɵInjectorDeclaration<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>;
13
11
  }
12
+
13
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhLWluZGV4Lm1vZHVsZS5kLnRzIiwic291cmNlcyI6WyJzcGEtaW5kZXgubW9kdWxlLmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7OztBQUFBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBkZWNsYXJlIGNsYXNzIFNwYUluZGV4TW9kdWxlIHtcclxufVxyXG4iXX0=
@@ -0,0 +1,2 @@
1
+ export declare class SpaIndexModule {
2
+ }
@@ -1,38 +1,34 @@
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
- import * as i28 from "@angular/material/progress-bar";
30
- import * as i29 from "@angular/material/sidenav";
31
- import * as i30 from "@angular/material/toolbar";
32
- import * as i31 from "@angular/router";
33
- import * as i32 from "@angular/material/expansion";
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';
34
29
  export declare class SpaMatModule {
35
- static ɵfac: i0.ɵɵFactoryDeclaration<SpaMatModule, never>;
36
- static ɵmod: i0.ɵɵNgModuleDeclaration<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, typeof i28.MatProgressBarModule, typeof i29.MatSidenavModule, typeof i30.MatToolbarModule, typeof i31.RouterModule, typeof i32.MatExpansionModule]>;
37
- static ɵinj: i0.ɵɵInjectorDeclaration<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>;
38
32
  }
33
+
34
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhLW1hdC5tb2R1bGUuZC50cyIsInNvdXJjZXMiOlsic3BhLW1hdC5tb2R1bGUuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY2xhc3MgU3BhTWF0TW9kdWxlIHtcclxufVxyXG4iXX0=
@@ -0,0 +1,2 @@
1
+ export declare class SpaMatModule {
2
+ }
@@ -1,11 +1,12 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "../pages/change-password/change-password.component";
3
- import * as i2 from "../pages/profile/profile.component";
4
- import * as i3 from "@angular/forms";
5
- import * as i4 from "@angular/common";
6
- import * as i5 from "../tin-spa.module";
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';
7
7
  export declare class SpaUserModule {
8
- static ɵfac: i0.ɵɵFactoryDeclaration<SpaUserModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<SpaUserModule, [typeof i1.ChangePasswordComponent, typeof i2.ProfileComponent], [typeof i3.ReactiveFormsModule, typeof i4.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i5.TinSpaModule], [typeof i4.CommonModule, typeof i3.FormsModule, typeof i5.TinSpaModule, typeof i1.ChangePasswordComponent, typeof i2.ProfileComponent]>;
10
- static ɵinj: i0.ɵɵInjectorDeclaration<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>;
11
10
  }
11
+
12
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhLXVzZXIubW9kdWxlLmQudHMiLCJzb3VyY2VzIjpbInNwYS11c2VyLm1vZHVsZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUFBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBkZWNsYXJlIGNsYXNzIFNwYVVzZXJNb2R1bGUge1xyXG59XHJcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export declare class SpaUserModule {
2
+ }
@@ -1,61 +1,49 @@
1
1
  import { MessageService } from './message.service';
2
- import { Router, CanActivate, ActivatedRoute } from '@angular/router';
2
+ import { HttpService } from 'tin-core';
3
+ import { Router, CanActivate } from '@angular/router';
3
4
  import { BehaviorSubject } from 'rxjs';
4
5
  import { StorageService } from './storage.service';
5
6
  import { LogService } from './log.service';
6
- import { HttpService } from './http.service';
7
- import { SocialAuthService } from '@abacritt/angularx-social-login';
8
- import { Role } from '../classes/LibClasses';
9
- import * as i0 from "@angular/core";
7
+ import { Role } from '../classes/Classes';
8
+ import * as ɵngcc0 from '@angular/core';
10
9
  export declare class AuthService implements CanActivate {
11
- private _route;
12
- private socialService;
13
10
  private storage;
14
11
  router: Router;
15
12
  private httpService;
16
13
  private messageService;
17
14
  private logService;
18
- constructor(_route: ActivatedRoute, socialService: SocialAuthService, storage: StorageService, router: Router, httpService: HttpService, messageService: MessageService, logService: LogService);
19
- clearSession(): void;
20
- sessionExpired(): void;
21
- logoff(): void;
15
+ constructor(storage: StorageService, router: Router, httpService: HttpService, messageService: MessageService, logService: LogService);
22
16
  private loggedin;
23
17
  private loggedinSource;
24
18
  loggedinObserv: import("rxjs").Observable<boolean>;
25
- Updateloggedin(loggedin: boolean): void;
26
- private autoLogin;
27
- private autoLoginSource;
28
- autoLoginObserv: import("rxjs").Observable<boolean>;
29
- UpdateAutoLogin(autoLogin: boolean): void;
19
+ updateloggedin(loggedin: boolean): void;
30
20
  private token;
31
21
  tokenSource: BehaviorSubject<string>;
32
22
  tokenObserv: import("rxjs").Observable<string>;
33
- UpdateToken(newToken: string): void;
23
+ updateToken(newToken: string): void;
34
24
  private tokenExpire;
35
25
  tokenExpireSource: BehaviorSubject<string>;
36
26
  tokenExpireObserv: import("rxjs").Observable<string>;
37
- UpdateTokenExpire(newTokenExpire: string): void;
27
+ updateTokenExpire(newTokenExpire: string): void;
38
28
  currentUser: string;
39
29
  private currentUserSource;
40
30
  currentUserObserv: import("rxjs").Observable<string>;
41
- UpdateCurrentUser(newUser: string): void;
31
+ updateCurrentUser(newUser: string): void;
42
32
  private islineManager;
43
33
  private isLineManagerSource;
44
34
  isLineManagerObserv: import("rxjs").Observable<boolean>;
45
- UpdateIsLineManager(manager: boolean): void;
35
+ updateIsLineManager(manager: boolean): void;
46
36
  private currentRole;
47
37
  currentRoleSource: BehaviorSubject<Role>;
48
38
  myRoleObserv: import("rxjs").Observable<Role>;
49
- UpdateRole(role: any): void;
39
+ updateRole(role: any): void;
50
40
  private loggedUserSource;
51
41
  loggedUserFullName: import("rxjs").Observable<string>;
52
- updateLoggedUserFullName(userName: string): void;
53
- private tenantNameSource;
54
- tenantNameObserv: import("rxjs").Observable<string>;
55
- updateTenantName(tenantName: string): void;
42
+ updateLoggedUserFullName(username: string): void;
56
43
  isAuthorised(capName: string): boolean;
57
44
  isValidToken(): boolean;
58
45
  canActivate(): boolean;
59
- static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
60
- static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
46
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<AuthService, never>;
61
47
  }
48
+
49
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aC5zZXJ2aWNlLmQudHMiLCJzb3VyY2VzIjpbImF1dGguc2VydmljZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tICcuL21lc3NhZ2Uuc2VydmljZSc7XHJcbmltcG9ydCB7IEh0dHBTZXJ2aWNlIH0gZnJvbSAndGluLWNvcmUnO1xyXG5pbXBvcnQgeyBSb3V0ZXIsIENhbkFjdGl2YXRlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0IH0gZnJvbSAncnhqcyc7XHJcbmltcG9ydCB7IFN0b3JhZ2VTZXJ2aWNlIH0gZnJvbSAnLi9zdG9yYWdlLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBMb2dTZXJ2aWNlIH0gZnJvbSAnLi9sb2cuc2VydmljZSc7XHJcbmltcG9ydCB7IFJvbGUgfSBmcm9tICcuLi9jbGFzc2VzL0NsYXNzZXMnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBBdXRoU2VydmljZSBpbXBsZW1lbnRzIENhbkFjdGl2YXRlIHtcclxuICAgIHByaXZhdGUgc3RvcmFnZTtcclxuICAgIHJvdXRlcjogUm91dGVyO1xyXG4gICAgcHJpdmF0ZSBodHRwU2VydmljZTtcclxuICAgIHByaXZhdGUgbWVzc2FnZVNlcnZpY2U7XHJcbiAgICBwcml2YXRlIGxvZ1NlcnZpY2U7XHJcbiAgICBjb25zdHJ1Y3RvcihzdG9yYWdlOiBTdG9yYWdlU2VydmljZSwgcm91dGVyOiBSb3V0ZXIsIGh0dHBTZXJ2aWNlOiBIdHRwU2VydmljZSwgbWVzc2FnZVNlcnZpY2U6IE1lc3NhZ2VTZXJ2aWNlLCBsb2dTZXJ2aWNlOiBMb2dTZXJ2aWNlKTtcclxuICAgIHByaXZhdGUgbG9nZ2VkaW47XHJcbiAgICBwcml2YXRlIGxvZ2dlZGluU291cmNlO1xyXG4gICAgbG9nZ2VkaW5PYnNlcnY6IGltcG9ydChcInJ4anNcIikuT2JzZXJ2YWJsZTxib29sZWFuPjtcclxuICAgIHVwZGF0ZWxvZ2dlZGluKGxvZ2dlZGluOiBib29sZWFuKTogdm9pZDtcclxuICAgIHByaXZhdGUgdG9rZW47XHJcbiAgICB0b2tlblNvdXJjZTogQmVoYXZpb3JTdWJqZWN0PHN0cmluZz47XHJcbiAgICB0b2tlbk9ic2VydjogaW1wb3J0KFwicnhqc1wiKS5PYnNlcnZhYmxlPHN0cmluZz47XHJcbiAgICB1cGRhdGVUb2tlbihuZXdUb2tlbjogc3RyaW5nKTogdm9pZDtcclxuICAgIHByaXZhdGUgdG9rZW5FeHBpcmU7XHJcbiAgICB0b2tlbkV4cGlyZVNvdXJjZTogQmVoYXZpb3JTdWJqZWN0PHN0cmluZz47XHJcbiAgICB0b2tlbkV4cGlyZU9ic2VydjogaW1wb3J0KFwicnhqc1wiKS5PYnNlcnZhYmxlPHN0cmluZz47XHJcbiAgICB1cGRhdGVUb2tlbkV4cGlyZShuZXdUb2tlbkV4cGlyZTogc3RyaW5nKTogdm9pZDtcclxuICAgIGN1cnJlbnRVc2VyOiBzdHJpbmc7XHJcbiAgICBwcml2YXRlIGN1cnJlbnRVc2VyU291cmNlO1xyXG4gICAgY3VycmVudFVzZXJPYnNlcnY6IGltcG9ydChcInJ4anNcIikuT2JzZXJ2YWJsZTxzdHJpbmc+O1xyXG4gICAgdXBkYXRlQ3VycmVudFVzZXIobmV3VXNlcjogc3RyaW5nKTogdm9pZDtcclxuICAgIHByaXZhdGUgaXNsaW5lTWFuYWdlcjtcclxuICAgIHByaXZhdGUgaXNMaW5lTWFuYWdlclNvdXJjZTtcclxuICAgIGlzTGluZU1hbmFnZXJPYnNlcnY6IGltcG9ydChcInJ4anNcIikuT2JzZXJ2YWJsZTxib29sZWFuPjtcclxuICAgIHVwZGF0ZUlzTGluZU1hbmFnZXIobWFuYWdlcjogYm9vbGVhbik6IHZvaWQ7XHJcbiAgICBwcml2YXRlIGN1cnJlbnRSb2xlO1xyXG4gICAgY3VycmVudFJvbGVTb3VyY2U6IEJlaGF2aW9yU3ViamVjdDxSb2xlPjtcclxuICAgIG15Um9sZU9ic2VydjogaW1wb3J0KFwicnhqc1wiKS5PYnNlcnZhYmxlPFJvbGU+O1xyXG4gICAgdXBkYXRlUm9sZShyb2xlOiBhbnkpOiB2b2lkO1xyXG4gICAgcHJpdmF0ZSBsb2dnZWRVc2VyU291cmNlO1xyXG4gICAgbG9nZ2VkVXNlckZ1bGxOYW1lOiBpbXBvcnQoXCJyeGpzXCIpLk9ic2VydmFibGU8c3RyaW5nPjtcclxuICAgIHVwZGF0ZUxvZ2dlZFVzZXJGdWxsTmFtZSh1c2VybmFtZTogc3RyaW5nKTogdm9pZDtcclxuICAgIGlzQXV0aG9yaXNlZChjYXBOYW1lOiBzdHJpbmcpOiBib29sZWFuO1xyXG4gICAgaXNWYWxpZFRva2VuKCk6IGJvb2xlYW47XHJcbiAgICBjYW5BY3RpdmF0ZSgpOiBib29sZWFuO1xyXG59XHJcbiJdfQ==
@@ -0,0 +1,45 @@
1
+ import { MessageService } from './message.service';
2
+ import { HttpService } from 'tin-core';
3
+ import { Router, CanActivate } from '@angular/router';
4
+ import { BehaviorSubject } from 'rxjs';
5
+ import { StorageService } from './storage.service';
6
+ import { LogService } from './log.service';
7
+ import { Role } from '../classes/Classes';
8
+ export declare class AuthService implements CanActivate {
9
+ private storage;
10
+ router: Router;
11
+ private httpService;
12
+ private messageService;
13
+ private logService;
14
+ constructor(storage: StorageService, router: Router, httpService: HttpService, messageService: MessageService, logService: LogService);
15
+ private loggedin;
16
+ private loggedinSource;
17
+ loggedinObserv: import("rxjs").Observable<boolean>;
18
+ updateloggedin(loggedin: boolean): void;
19
+ private token;
20
+ tokenSource: BehaviorSubject<string>;
21
+ tokenObserv: import("rxjs").Observable<string>;
22
+ updateToken(newToken: string): void;
23
+ private tokenExpire;
24
+ tokenExpireSource: BehaviorSubject<string>;
25
+ tokenExpireObserv: import("rxjs").Observable<string>;
26
+ updateTokenExpire(newTokenExpire: string): void;
27
+ currentUser: string;
28
+ private currentUserSource;
29
+ currentUserObserv: import("rxjs").Observable<string>;
30
+ updateCurrentUser(newUser: string): void;
31
+ private islineManager;
32
+ private isLineManagerSource;
33
+ isLineManagerObserv: import("rxjs").Observable<boolean>;
34
+ updateIsLineManager(manager: boolean): void;
35
+ private currentRole;
36
+ currentRoleSource: BehaviorSubject<Role>;
37
+ myRoleObserv: import("rxjs").Observable<Role>;
38
+ updateRole(role: any): void;
39
+ private loggedUserSource;
40
+ loggedUserFullName: import("rxjs").Observable<string>;
41
+ updateLoggedUserFullName(username: string): void;
42
+ isAuthorised(capName: string): boolean;
43
+ isValidToken(): boolean;
44
+ canActivate(): boolean;
45
+ }
@@ -0,0 +1,27 @@
1
+ import { HttpService } from 'tin-core';
2
+ import { CapItem, User } from '../classes/Classes';
3
+ import { Observable } from 'rxjs';
4
+ import * as ɵngcc0 from '@angular/core';
5
+ export declare class DataService {
6
+ private httpService;
7
+ constructor(httpService: HttpService);
8
+ 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
+ SelfReset(u: User): Observable<any>;
16
+ UpdateRole(role: any, action: string): Observable<any>;
17
+ 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
+ GetLog(by: string, val: string): Observable<any>;
22
+ GetSetting(by: string, val: string): Observable<any>;
23
+ UpdateSetting(setting: any, action: string): Observable<any>;
24
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<DataService, never>;
25
+ }
26
+
27
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS5zZXJ2aWNlLmQudHMiLCJzb3VyY2VzIjpbImRhdGEuc2VydmljZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBTZXJ2aWNlIH0gZnJvbSAndGluLWNvcmUnO1xyXG5pbXBvcnQgeyBDYXBJdGVtLCBVc2VyIH0gZnJvbSAnLi4vY2xhc3Nlcy9DbGFzc2VzJztcclxuaW1wb3J0IHsgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBEYXRhU2VydmljZSB7XHJcbiAgICBwcml2YXRlIGh0dHBTZXJ2aWNlO1xyXG4gICAgY29uc3RydWN0b3IoaHR0cFNlcnZpY2U6IEh0dHBTZXJ2aWNlKTtcclxuICAgIGNhcFVzZXJzOiBDYXBJdGVtO1xyXG4gICAgdG1wUHJvZmlsZVVzZXJJRDogc3RyaW5nO1xyXG4gICAgR2V0VXNlcihieTogc3RyaW5nLCB2YWw6IHN0cmluZyk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIFVwZGF0ZVVzZXIodXNlcjogYW55LCBhY3Rpb246IHN0cmluZyk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIGxvZ2luKHU6IFVzZXIpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBjaGFuZ2VQYXNzd29yZCh1OiBhbnkpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBjaGFuZ2VQYXNzd29yZEFkbWluKHU6IGFueSk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIFNlbGZSZXNldCh1OiBVc2VyKTogT2JzZXJ2YWJsZTxhbnk+O1xyXG4gICAgVXBkYXRlUm9sZShyb2xlOiBhbnksIGFjdGlvbjogc3RyaW5nKTogT2JzZXJ2YWJsZTxhbnk+O1xyXG4gICAgR2V0Um9sZShieTogc3RyaW5nLCB2YWw6IHN0cmluZyk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIFVwZGF0ZUFjY291bnQoYWNjb3VudDogYW55LCBhY3Rpb246IHN0cmluZyk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIEdldFByb2ZpbGUoYnk6IHN0cmluZywgdmFsOiBzdHJpbmcpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBVcGRhdGVQcm9maWxlKHByb2ZpbGU6IGFueSwgYWN0aW9uOiBzdHJpbmcpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBHZXRMb2coYnk6IHN0cmluZywgdmFsOiBzdHJpbmcpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBHZXRTZXR0aW5nKGJ5OiBzdHJpbmcsIHZhbDogc3RyaW5nKTogT2JzZXJ2YWJsZTxhbnk+O1xyXG4gICAgVXBkYXRlU2V0dGluZyhzZXR0aW5nOiBhbnksIGFjdGlvbjogc3RyaW5nKTogT2JzZXJ2YWJsZTxhbnk+O1xyXG59XHJcbiJdfQ==
@@ -0,0 +1,23 @@
1
+ import { HttpService } from 'tin-core';
2
+ import { CapItem, User } from '../classes/Classes';
3
+ import { Observable } from 'rxjs';
4
+ export declare class DataService {
5
+ private httpService;
6
+ constructor(httpService: HttpService);
7
+ capUsers: CapItem;
8
+ tmpProfileUserID: string;
9
+ GetUser(by: string, val: string): Observable<any>;
10
+ UpdateUser(user: any, action: string): Observable<any>;
11
+ login(u: User): Observable<any>;
12
+ changePassword(u: any): Observable<any>;
13
+ changePasswordAdmin(u: any): Observable<any>;
14
+ SelfReset(u: User): Observable<any>;
15
+ UpdateRole(role: any, action: string): Observable<any>;
16
+ GetRole(by: string, val: string): Observable<any>;
17
+ UpdateAccount(account: any, action: string): Observable<any>;
18
+ GetProfile(by: string, val: string): Observable<any>;
19
+ UpdateProfile(profile: any, action: string): Observable<any>;
20
+ GetLog(by: string, val: string): Observable<any>;
21
+ GetSetting(by: string, val: string): Observable<any>;
22
+ UpdateSetting(setting: any, action: string): Observable<any>;
23
+ }