tin-spa 2.13.14 → 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 -374
  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 -569
  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 -106
  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 -293
  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 -259
  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 -141
  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 -861
  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 -11711
  358. package/fesm2015/tin-spa.mjs.map +0 -1
  359. package/fesm2020/tin-spa.mjs +0 -11718
  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
@@ -1,30 +1,44 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
- import { MessageService } from '../../services/message.service';
3
- import * as i0 from "@angular/core";
2
+ import * as ɵngcc0 from '@angular/core';
4
3
  export declare class AttachComponent implements OnInit {
5
- private messageService;
6
- constructor(messageService: MessageService);
4
+ constructor();
7
5
  ngOnInit(): void;
8
- fileOptions: {
9
- allowedExtensions?: string[];
10
- maxSizeMB?: number;
11
- compressImages?: boolean;
12
- };
13
- private readonly imageExtensions;
14
6
  message: string;
15
7
  files: any[];
16
8
  filesChange: EventEmitter<any>;
17
9
  upload: EventEmitter<any>;
18
10
  enableUpload: boolean;
11
+ /**
12
+ * on file drop handler
13
+ */
19
14
  onFileDropped($event: any): void;
20
- fileBrowseHandler(event: any): void;
15
+ /**
16
+ * handle file from browsing
17
+ */
18
+ fileBrowseHandler(files: any): void;
19
+ /**
20
+ * Delete file from files list
21
+ * @param index (File index)
22
+ */
21
23
  deleteFile(index: number): void;
22
- prepareFilesList(files: Array<any>): Promise<void>;
23
- private getFileExtension;
24
- private isImage;
24
+ /**
25
+ * Simulate the upload process
26
+ */
27
+ /**
28
+ * Convert Files list to normal array list
29
+ * @param files (Files List)
30
+ */
31
+ prepareFilesList(files: Array<any>): void;
32
+ /**
33
+ * format bytes
34
+ * @param bytes (File size in bytes)
35
+ * @param decimals (Decimals point)
36
+ */
25
37
  formatBytes(bytes: any, decimals: any): string;
26
38
  uploaded(): void;
27
39
  filesChanged(): void;
28
- static ɵfac: i0.ɵɵFactoryDeclaration<AttachComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<AttachComponent, "spa-attach", never, { "fileOptions": "fileOptions"; "message": "message"; "files": "files"; "enableUpload": "enableUpload"; }, { "filesChange": "filesChange"; "upload": "upload"; }, never, never, false>;
40
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<AttachComponent, never>;
41
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<AttachComponent, "spa-attach", never, { "message": "message"; "files": "files"; "enableUpload": "enableUpload"; }, { "filesChange": "filesChange"; "upload": "upload"; }, never, never>;
30
42
  }
43
+
44
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXR0YWNoLmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJhdHRhY2guY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXZlbnRFbWl0dGVyLCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgQXR0YWNoQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICAgIGNvbnN0cnVjdG9yKCk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgbWVzc2FnZTogc3RyaW5nO1xyXG4gICAgZmlsZXM6IGFueVtdO1xyXG4gICAgZmlsZXNDaGFuZ2U6IEV2ZW50RW1pdHRlcjxhbnk+O1xyXG4gICAgdXBsb2FkOiBFdmVudEVtaXR0ZXI8YW55PjtcclxuICAgIGVuYWJsZVVwbG9hZDogYm9vbGVhbjtcclxuICAgIC8qKlxyXG4gICAgICogb24gZmlsZSBkcm9wIGhhbmRsZXJcclxuICAgICAqL1xyXG4gICAgb25GaWxlRHJvcHBlZCgkZXZlbnQ6IGFueSk6IHZvaWQ7XHJcbiAgICAvKipcclxuICAgICAqIGhhbmRsZSBmaWxlIGZyb20gYnJvd3NpbmdcclxuICAgICAqL1xyXG4gICAgZmlsZUJyb3dzZUhhbmRsZXIoZmlsZXM6IGFueSk6IHZvaWQ7XHJcbiAgICAvKipcclxuICAgICAqIERlbGV0ZSBmaWxlIGZyb20gZmlsZXMgbGlzdFxyXG4gICAgICogQHBhcmFtIGluZGV4IChGaWxlIGluZGV4KVxyXG4gICAgICovXHJcbiAgICBkZWxldGVGaWxlKGluZGV4OiBudW1iZXIpOiB2b2lkO1xyXG4gICAgLyoqXHJcbiAgICAgKiBTaW11bGF0ZSB0aGUgdXBsb2FkIHByb2Nlc3NcclxuICAgICAqL1xyXG4gICAgLyoqXHJcbiAgICAgKiBDb252ZXJ0IEZpbGVzIGxpc3QgdG8gbm9ybWFsIGFycmF5IGxpc3RcclxuICAgICAqIEBwYXJhbSBmaWxlcyAoRmlsZXMgTGlzdClcclxuICAgICAqL1xyXG4gICAgcHJlcGFyZUZpbGVzTGlzdChmaWxlczogQXJyYXk8YW55Pik6IHZvaWQ7XHJcbiAgICAvKipcclxuICAgICAqIGZvcm1hdCBieXRlc1xyXG4gICAgICogQHBhcmFtIGJ5dGVzIChGaWxlIHNpemUgaW4gYnl0ZXMpXHJcbiAgICAgKiBAcGFyYW0gZGVjaW1hbHMgKERlY2ltYWxzIHBvaW50KVxyXG4gICAgICovXHJcbiAgICBmb3JtYXRCeXRlcyhieXRlczogYW55LCBkZWNpbWFsczogYW55KTogc3RyaW5nO1xyXG4gICAgdXBsb2FkZWQoKTogdm9pZDtcclxuICAgIGZpbGVzQ2hhbmdlZCgpOiB2b2lkO1xyXG59XHJcbiJdfQ==
@@ -0,0 +1,39 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ export declare class AttachComponent implements OnInit {
3
+ constructor();
4
+ ngOnInit(): void;
5
+ message: string;
6
+ files: any[];
7
+ filesChange: EventEmitter<any>;
8
+ upload: EventEmitter<any>;
9
+ enableUpload: boolean;
10
+ /**
11
+ * on file drop handler
12
+ */
13
+ onFileDropped($event: any): void;
14
+ /**
15
+ * handle file from browsing
16
+ */
17
+ fileBrowseHandler(files: any): void;
18
+ /**
19
+ * Delete file from files list
20
+ * @param index (File index)
21
+ */
22
+ deleteFile(index: number): void;
23
+ /**
24
+ * Simulate the upload process
25
+ */
26
+ /**
27
+ * Convert Files list to normal array list
28
+ * @param files (Files List)
29
+ */
30
+ prepareFilesList(files: Array<any>): void;
31
+ /**
32
+ * format bytes
33
+ * @param bytes (File size in bytes)
34
+ * @param decimals (Decimals point)
35
+ */
36
+ formatBytes(bytes: any, decimals: any): string;
37
+ uploaded(): void;
38
+ filesChanged(): void;
39
+ }
@@ -0,0 +1,25 @@
1
+ import { ChangeUserPassword } from './../../classes/Classes';
2
+ import { OnInit } from '@angular/core';
3
+ import { MessageService } from '../../services/message.service';
4
+ import { DataService } from '../../services/data.service';
5
+ import { AuthService } from '../../services/auth.service';
6
+ import { HttpService } from 'tin-core';
7
+ import { Location } from '@angular/common';
8
+ import * as ɵngcc0 from '@angular/core';
9
+ export declare class ChangePasswordComponent implements OnInit {
10
+ private location;
11
+ private httpService;
12
+ private messageService;
13
+ dataService: DataService;
14
+ private authService;
15
+ constructor(location: Location, httpService: HttpService, messageService: MessageService, dataService: DataService, authService: AuthService);
16
+ ngOnInit(): void;
17
+ myRole: any;
18
+ isProcessing: boolean;
19
+ changePassword: ChangeUserPassword;
20
+ change(): void;
21
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<ChangePasswordComponent, never>;
22
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<ChangePasswordComponent, "spa-change-password", never, {}, {}, never, never>;
23
+ }
24
+
25
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhbmdlLXBhc3N3b3JkLmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJjaGFuZ2UtcGFzc3dvcmQuY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZVVzZXJQYXNzd29yZCB9IGZyb20gJy4vLi4vLi4vY2xhc3Nlcy9DbGFzc2VzJztcclxuaW1wb3J0IHsgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IE1lc3NhZ2VTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvbWVzc2FnZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgRGF0YVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9kYXRhLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBBdXRoU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZSc7XHJcbmltcG9ydCB7IEh0dHBTZXJ2aWNlIH0gZnJvbSAndGluLWNvcmUnO1xyXG5pbXBvcnQgeyBMb2NhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIENoYW5nZVBhc3N3b3JkQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICAgIHByaXZhdGUgbG9jYXRpb247XHJcbiAgICBwcml2YXRlIGh0dHBTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBtZXNzYWdlU2VydmljZTtcclxuICAgIGRhdGFTZXJ2aWNlOiBEYXRhU2VydmljZTtcclxuICAgIHByaXZhdGUgYXV0aFNlcnZpY2U7XHJcbiAgICBjb25zdHJ1Y3Rvcihsb2NhdGlvbjogTG9jYXRpb24sIGh0dHBTZXJ2aWNlOiBIdHRwU2VydmljZSwgbWVzc2FnZVNlcnZpY2U6IE1lc3NhZ2VTZXJ2aWNlLCBkYXRhU2VydmljZTogRGF0YVNlcnZpY2UsIGF1dGhTZXJ2aWNlOiBBdXRoU2VydmljZSk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgbXlSb2xlOiBhbnk7XHJcbiAgICBpc1Byb2Nlc3Npbmc6IGJvb2xlYW47XHJcbiAgICBjaGFuZ2VQYXNzd29yZDogQ2hhbmdlVXNlclBhc3N3b3JkO1xyXG4gICAgY2hhbmdlKCk6IHZvaWQ7XHJcbn1cclxuIl19
@@ -0,0 +1,20 @@
1
+ import { ChangeUserPassword } from './../../classes/Classes';
2
+ import { OnInit } from '@angular/core';
3
+ import { MessageService } from '../../services/message.service';
4
+ import { DataService } from '../../services/data.service';
5
+ import { AuthService } from '../../services/auth.service';
6
+ import { HttpService } from 'tin-core';
7
+ import { Location } from '@angular/common';
8
+ export declare class ChangePasswordComponent implements OnInit {
9
+ private location;
10
+ private httpService;
11
+ private messageService;
12
+ dataService: DataService;
13
+ private authService;
14
+ constructor(location: Location, httpService: HttpService, messageService: MessageService, dataService: DataService, authService: AuthService);
15
+ ngOnInit(): void;
16
+ myRole: any;
17
+ isProcessing: boolean;
18
+ changePassword: ChangeUserPassword;
19
+ change(): void;
20
+ }
@@ -1,9 +1,7 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
- import { MessageService } from '../../services/message.service';
3
- import * as i0 from "@angular/core";
2
+ import * as ɵngcc0 from '@angular/core';
4
3
  export declare class CheckComponent implements OnInit {
5
- private messageService;
6
- constructor(messageService: MessageService);
4
+ constructor();
7
5
  ngOnInit(): void;
8
6
  readonly: boolean;
9
7
  display: string;
@@ -12,13 +10,12 @@ export declare class CheckComponent implements OnInit {
12
10
  click: EventEmitter<any>;
13
11
  check: EventEmitter<any>;
14
12
  uncheck: EventEmitter<any>;
15
- infoMessage: string;
16
- infoClick: EventEmitter<void>;
17
13
  changed(): void;
18
14
  clicked(): void;
19
15
  checked(): void;
20
16
  unchecked(): void;
21
- onInfoClick(event: MouseEvent): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<CheckComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<CheckComponent, "spa-check", never, { "readonly": "readonly"; "display": "display"; "value": "value"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "click": "click"; "check": "check"; "uncheck": "uncheck"; "infoClick": "infoClick"; }, never, never, false>;
17
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<CheckComponent, never>;
18
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<CheckComponent, "spa-check", never, { "readonly": "readonly"; "display": "display"; "value": "value"; }, { "valueChange": "valueChange"; "click": "click"; "check": "check"; "uncheck": "uncheck"; }, never, never>;
24
19
  }
20
+
21
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2suY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImNoZWNrLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXZlbnRFbWl0dGVyLCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgQ2hlY2tDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgY29uc3RydWN0b3IoKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICByZWFkb25seTogYm9vbGVhbjtcclxuICAgIGRpc3BsYXk6IHN0cmluZztcclxuICAgIHZhbHVlOiBib29sZWFuO1xyXG4gICAgdmFsdWVDaGFuZ2U6IEV2ZW50RW1pdHRlcjxhbnk+O1xyXG4gICAgY2xpY2s6IEV2ZW50RW1pdHRlcjxhbnk+O1xyXG4gICAgY2hlY2s6IEV2ZW50RW1pdHRlcjxhbnk+O1xyXG4gICAgdW5jaGVjazogRXZlbnRFbWl0dGVyPGFueT47XHJcbiAgICBjaGFuZ2VkKCk6IHZvaWQ7XHJcbiAgICBjbGlja2VkKCk6IHZvaWQ7XHJcbiAgICBjaGVja2VkKCk6IHZvaWQ7XHJcbiAgICB1bmNoZWNrZWQoKTogdm9pZDtcclxufVxyXG4iXX0=
@@ -0,0 +1,16 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ export declare class CheckComponent implements OnInit {
3
+ constructor();
4
+ ngOnInit(): void;
5
+ readonly: boolean;
6
+ display: string;
7
+ value: boolean;
8
+ valueChange: EventEmitter<any>;
9
+ click: EventEmitter<any>;
10
+ check: EventEmitter<any>;
11
+ uncheck: EventEmitter<any>;
12
+ changed(): void;
13
+ clicked(): void;
14
+ checked(): void;
15
+ unchecked(): void;
16
+ }
@@ -1,6 +1,6 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { MessageService } from '../../services/message.service';
3
- import * as i0 from "@angular/core";
3
+ import * as ɵngcc0 from '@angular/core';
4
4
  export declare class ChipsComponent implements OnInit {
5
5
  private messageService;
6
6
  constructor(messageService: MessageService);
@@ -13,6 +13,8 @@ export declare class ChipsComponent implements OnInit {
13
13
  remove: EventEmitter<any>;
14
14
  clicked(chip: string): void;
15
15
  removed(chip: any): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<ChipsComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<ChipsComponent, "spa-chips", never, { "icon": "icon"; "removable": "removable"; "addable": "addable"; "chips": "chips"; }, { "click": "click"; "remove": "remove"; }, never, never, false>;
16
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<ChipsComponent, never>;
17
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<ChipsComponent, "spa-chips", never, { "icon": "icon"; "removable": "removable"; "addable": "addable"; "chips": "chips"; }, { "click": "click"; "remove": "remove"; }, never, never>;
18
18
  }
19
+
20
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpcHMuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImNoaXBzLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEV2ZW50RW1pdHRlciwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IE1lc3NhZ2VTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvbWVzc2FnZS5zZXJ2aWNlJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgQ2hpcHNDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgcHJpdmF0ZSBtZXNzYWdlU2VydmljZTtcclxuICAgIGNvbnN0cnVjdG9yKG1lc3NhZ2VTZXJ2aWNlOiBNZXNzYWdlU2VydmljZSk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgaWNvbjogc3RyaW5nO1xyXG4gICAgcmVtb3ZhYmxlOiBib29sZWFuO1xyXG4gICAgYWRkYWJsZTogYm9vbGVhbjtcclxuICAgIGNoaXBzOiBzdHJpbmdbXTtcclxuICAgIGNsaWNrOiBFdmVudEVtaXR0ZXI8YW55PjtcclxuICAgIHJlbW92ZTogRXZlbnRFbWl0dGVyPGFueT47XHJcbiAgICBjbGlja2VkKGNoaXA6IHN0cmluZyk6IHZvaWQ7XHJcbiAgICByZW1vdmVkKGNoaXA6IGFueSk6IHZvaWQ7XHJcbn1cclxuIl19
@@ -0,0 +1,15 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { MessageService } from '../../services/message.service';
3
+ export declare class ChipsComponent implements OnInit {
4
+ private messageService;
5
+ constructor(messageService: MessageService);
6
+ ngOnInit(): void;
7
+ icon: string;
8
+ removable: boolean;
9
+ addable: boolean;
10
+ chips: string[];
11
+ click: EventEmitter<any>;
12
+ remove: EventEmitter<any>;
13
+ clicked(chip: string): void;
14
+ removed(chip: any): void;
15
+ }
@@ -0,0 +1,30 @@
1
+ import { DataService } from './../../services/data.service';
2
+ import { OnInit } from '@angular/core';
3
+ import { HttpService } from 'tin-core';
4
+ import { MessageService } from '../../services/message.service';
5
+ import { AuthService } from '../../services/auth.service';
6
+ import { User, Profile, Account, AppConfig } from '../../classes/Classes';
7
+ import { Router } from '@angular/router';
8
+ import * as ɵngcc0 from '@angular/core';
9
+ export declare class CreateAccountComponent implements OnInit {
10
+ private httpService;
11
+ private messageService;
12
+ private dataService;
13
+ private authService;
14
+ router: Router;
15
+ constructor(httpService: HttpService, messageService: MessageService, dataService: DataService, authService: AuthService, router: Router);
16
+ ngOnInit(): void;
17
+ appConfig: AppConfig;
18
+ isProcessing: boolean;
19
+ user: User;
20
+ profile: Profile;
21
+ account: Account;
22
+ confirmPassword: string;
23
+ openProfile: boolean;
24
+ create(): void;
25
+ viewProfile(user: User): void;
26
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<CreateAccountComponent, never>;
27
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<CreateAccountComponent, "spa-create-account", never, { "appConfig": "appConfig"; }, {}, never, never>;
28
+ }
29
+
30
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlYXRlLWFjY291bnQuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImNyZWF0ZS1hY2NvdW50LmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGF0YVNlcnZpY2UgfSBmcm9tICcuLy4uLy4uL3NlcnZpY2VzL2RhdGEuc2VydmljZSc7XHJcbmltcG9ydCB7IE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBIdHRwU2VydmljZSB9IGZyb20gJ3Rpbi1jb3JlJztcclxuaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9tZXNzYWdlLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBBdXRoU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZSc7XHJcbmltcG9ydCB7IFVzZXIsIFByb2ZpbGUsIEFjY291bnQsIEFwcENvbmZpZyB9IGZyb20gJy4uLy4uL2NsYXNzZXMvQ2xhc3Nlcyc7XHJcbmltcG9ydCB7IFJvdXRlciB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIENyZWF0ZUFjY291bnRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgcHJpdmF0ZSBodHRwU2VydmljZTtcclxuICAgIHByaXZhdGUgbWVzc2FnZVNlcnZpY2U7XHJcbiAgICBwcml2YXRlIGRhdGFTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBhdXRoU2VydmljZTtcclxuICAgIHJvdXRlcjogUm91dGVyO1xyXG4gICAgY29uc3RydWN0b3IoaHR0cFNlcnZpY2U6IEh0dHBTZXJ2aWNlLCBtZXNzYWdlU2VydmljZTogTWVzc2FnZVNlcnZpY2UsIGRhdGFTZXJ2aWNlOiBEYXRhU2VydmljZSwgYXV0aFNlcnZpY2U6IEF1dGhTZXJ2aWNlLCByb3V0ZXI6IFJvdXRlcik7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgYXBwQ29uZmlnOiBBcHBDb25maWc7XHJcbiAgICBpc1Byb2Nlc3Npbmc6IGJvb2xlYW47XHJcbiAgICB1c2VyOiBVc2VyO1xyXG4gICAgcHJvZmlsZTogUHJvZmlsZTtcclxuICAgIGFjY291bnQ6IEFjY291bnQ7XHJcbiAgICBjb25maXJtUGFzc3dvcmQ6IHN0cmluZztcclxuICAgIG9wZW5Qcm9maWxlOiBib29sZWFuO1xyXG4gICAgY3JlYXRlKCk6IHZvaWQ7XHJcbiAgICB2aWV3UHJvZmlsZSh1c2VyOiBVc2VyKTogdm9pZDtcclxufVxyXG4iXX0=
@@ -0,0 +1,25 @@
1
+ import { DataService } from './../../services/data.service';
2
+ import { OnInit } from '@angular/core';
3
+ import { HttpService } from 'tin-core';
4
+ import { MessageService } from '../../services/message.service';
5
+ import { AuthService } from '../../services/auth.service';
6
+ import { User, Profile, Account, AppConfig } from '../../classes/Classes';
7
+ import { Router } from '@angular/router';
8
+ export declare class CreateAccountComponent implements OnInit {
9
+ private httpService;
10
+ private messageService;
11
+ private dataService;
12
+ private authService;
13
+ router: Router;
14
+ constructor(httpService: HttpService, messageService: MessageService, dataService: DataService, authService: AuthService, router: Router);
15
+ ngOnInit(): void;
16
+ appConfig: AppConfig;
17
+ isProcessing: boolean;
18
+ user: User;
19
+ profile: Profile;
20
+ account: Account;
21
+ confirmPassword: string;
22
+ openProfile: boolean;
23
+ create(): void;
24
+ viewProfile(user: User): void;
25
+ }
@@ -1,29 +1,18 @@
1
- import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
1
+ import { OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
- import * as i0 from "@angular/core";
4
- export declare class DateComponent implements OnInit, OnChanges {
5
- required: boolean;
6
- min: string;
7
- max: string;
8
- readonly: boolean;
9
- hint: string;
10
- value: string | null;
11
- display: string;
12
- placeholder: string;
13
- width: string;
14
- valueChange: EventEmitter<string>;
15
- infoMessage: string;
16
- infoClick: EventEmitter<void>;
17
- onInfoClick(event: MouseEvent): void;
18
- minDate: FormControl;
19
- maxDate: FormControl;
20
- control: FormControl;
3
+ import * as ɵngcc0 from '@angular/core';
4
+ export declare class DateComponent implements OnInit {
5
+ constructor();
21
6
  ngOnInit(): void;
22
- ngOnChanges(changes: SimpleChanges): void;
23
- private initializeDateControls;
24
- private updateControlState;
25
- onChangeEvent(): void;
26
- validate(control: FormControl): string;
27
- static ɵfac: i0.ɵɵFactoryDeclaration<DateComponent, never>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<DateComponent, "spa-date", never, { "required": "required"; "min": "min"; "max": "max"; "readonly": "readonly"; "hint": "hint"; "value": "value"; "display": "display"; "placeholder": "placeholder"; "width": "width"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "infoClick": "infoClick"; }, never, never, false>;
7
+ date: FormControl;
8
+ display: string;
9
+ readonly: boolean;
10
+ currentYear: number;
11
+ min: FormControl;
12
+ max: FormControl;
13
+ onChangeEvent(d: any): void;
14
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<DateComponent, never>;
15
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<DateComponent, "spa-date", never, { "date": "date"; "display": "display"; "readonly": "readonly"; "min": "min"; "max": "max"; }, {}, never, never>;
29
16
  }
17
+
18
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS5jb21wb25lbnQuZC50cyIsInNvdXJjZXMiOlsiZGF0ZS5jb21wb25lbnQuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGb3JtQ29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgRGF0ZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBjb25zdHJ1Y3RvcigpO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIGRhdGU6IEZvcm1Db250cm9sO1xyXG4gICAgZGlzcGxheTogc3RyaW5nO1xyXG4gICAgcmVhZG9ubHk6IGJvb2xlYW47XHJcbiAgICBjdXJyZW50WWVhcjogbnVtYmVyO1xyXG4gICAgbWluOiBGb3JtQ29udHJvbDtcclxuICAgIG1heDogRm9ybUNvbnRyb2w7XHJcbiAgICBvbkNoYW5nZUV2ZW50KGQ6IGFueSk6IHZvaWQ7XHJcbn1cclxuIl19
@@ -0,0 +1,13 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ export declare class DateComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ date: FormControl;
7
+ display: string;
8
+ readonly: boolean;
9
+ currentYear: number;
10
+ min: FormControl;
11
+ max: FormControl;
12
+ onChangeEvent(d: any): void;
13
+ }
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
2
+ import * as ɵngcc0 from '@angular/core';
3
3
  export declare class DatetimeComponent implements OnInit {
4
4
  constructor();
5
5
  ngOnInit(): void;
@@ -7,13 +7,11 @@ export declare class DatetimeComponent implements OnInit {
7
7
  value: string;
8
8
  valueChange: EventEmitter<any>;
9
9
  readonly: boolean;
10
- width: string;
11
10
  min: string;
12
11
  max: string;
13
12
  changed(): void;
14
- infoMessage: string;
15
- infoClick: EventEmitter<void>;
16
- onInfoClick(event: MouseEvent): void;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<DatetimeComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<DatetimeComponent, "spa-datetime", never, { "display": "display"; "value": "value"; "readonly": "readonly"; "width": "width"; "min": "min"; "max": "max"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "infoClick": "infoClick"; }, never, never, false>;
13
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<DatetimeComponent, never>;
14
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<DatetimeComponent, "spa-datetime", never, { "display": "display"; "value": "value"; "readonly": "readonly"; "min": "min"; "max": "max"; }, { "valueChange": "valueChange"; }, never, never>;
19
15
  }
16
+
17
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZXRpbWUuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImRhdGV0aW1lLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEV2ZW50RW1pdHRlciwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIERhdGV0aW1lQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICAgIGNvbnN0cnVjdG9yKCk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgZGlzcGxheTogc3RyaW5nO1xyXG4gICAgdmFsdWU6IHN0cmluZztcclxuICAgIHZhbHVlQ2hhbmdlOiBFdmVudEVtaXR0ZXI8YW55PjtcclxuICAgIHJlYWRvbmx5OiBib29sZWFuO1xyXG4gICAgbWluOiBzdHJpbmc7XHJcbiAgICBtYXg6IHN0cmluZztcclxuICAgIGNoYW5nZWQoKTogdm9pZDtcclxufVxyXG4iXX0=
@@ -0,0 +1,12 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ export declare class DatetimeComponent implements OnInit {
3
+ constructor();
4
+ ngOnInit(): void;
5
+ display: string;
6
+ value: string;
7
+ valueChange: EventEmitter<any>;
8
+ readonly: boolean;
9
+ min: string;
10
+ max: string;
11
+ changed(): void;
12
+ }
@@ -1,16 +1,17 @@
1
- import { OnInit } from '@angular/core';
2
- import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
3
- import * as i0 from "@angular/core";
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { AngularEditorConfig } from '@kolkov/angular-editor';
3
+ import * as ɵngcc0 from '@angular/core';
4
4
  export declare class HtmlComponent implements OnInit {
5
- private sanitizer;
6
- constructor(sanitizer: DomSanitizer);
5
+ constructor();
7
6
  ngOnInit(): void;
8
- ngOnChanges(): void;
9
7
  value: string;
10
- maxHeight: string;
11
- display: string;
12
- sanitizedHtml: SafeHtml;
13
- private sanitizeHtml;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<HtmlComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<HtmlComponent, "spa-html", never, { "value": "value"; "maxHeight": "maxHeight"; "display": "display"; }, {}, never, never, false>;
8
+ valueChange: EventEmitter<any>;
9
+ readonly: boolean;
10
+ changed(): void;
11
+ ngOnChanges(): void;
12
+ config: AngularEditorConfig;
13
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<HtmlComponent, never>;
14
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<HtmlComponent, "spa-html", never, { "value": "value"; "readonly": "readonly"; "config": "config"; }, { "valueChange": "valueChange"; }, never, never>;
16
15
  }
16
+
17
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaHRtbC5jb21wb25lbnQuZC50cyIsInNvdXJjZXMiOlsiaHRtbC5jb21wb25lbnQuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFdmVudEVtaXR0ZXIsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBBbmd1bGFyRWRpdG9yQ29uZmlnIH0gZnJvbSAnQGtvbGtvdi9hbmd1bGFyLWVkaXRvcic7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIEh0bWxDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgY29uc3RydWN0b3IoKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICB2YWx1ZTogc3RyaW5nO1xyXG4gICAgdmFsdWVDaGFuZ2U6IEV2ZW50RW1pdHRlcjxhbnk+O1xyXG4gICAgcmVhZG9ubHk6IGJvb2xlYW47XHJcbiAgICBjaGFuZ2VkKCk6IHZvaWQ7XHJcbiAgICBuZ09uQ2hhbmdlcygpOiB2b2lkO1xyXG4gICAgY29uZmlnOiBBbmd1bGFyRWRpdG9yQ29uZmlnO1xyXG59XHJcbiJdfQ==
@@ -0,0 +1,12 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { AngularEditorConfig } from '@kolkov/angular-editor';
3
+ export declare class HtmlComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ value: string;
7
+ valueChange: EventEmitter<any>;
8
+ readonly: boolean;
9
+ changed(): void;
10
+ ngOnChanges(): void;
11
+ config: AngularEditorConfig;
12
+ }
@@ -1,13 +1,13 @@
1
1
  import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
2
+ import * as ɵngcc0 from '@angular/core';
3
3
  export declare class LabelComponent implements OnInit {
4
4
  constructor();
5
5
  ngOnInit(): void;
6
6
  display: string;
7
7
  value: string;
8
8
  format: string;
9
- suffix: string;
10
- size: string;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "spa-label", never, { "display": "display"; "value": "value"; "format": "format"; "suffix": "suffix"; "size": "size"; }, {}, never, never, false>;
9
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<LabelComponent, never>;
10
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<LabelComponent, "spa-label", never, { "display": "display"; "value": "value"; "format": "format"; }, {}, never, never>;
13
11
  }
12
+
13
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImxhYmVsLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgTGFiZWxDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgY29uc3RydWN0b3IoKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICBkaXNwbGF5OiBzdHJpbmc7XHJcbiAgICB2YWx1ZTogc3RyaW5nO1xyXG4gICAgZm9ybWF0OiBzdHJpbmc7XHJcbn1cclxuIl19
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ export declare class LabelComponent implements OnInit {
3
+ constructor();
4
+ ngOnInit(): void;
5
+ display: string;
6
+ value: string;
7
+ format: string;
8
+ }
@@ -1,12 +1,14 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { LoaderService } from '../../services/loader.service';
3
- import * as i0 from "@angular/core";
3
+ import * as ɵngcc0 from '@angular/core';
4
4
  export declare class LoaderComponent implements OnInit {
5
5
  private loaderService;
6
6
  constructor(loaderService: LoaderService);
7
7
  ngOnInit(): void;
8
8
  logo: string;
9
9
  loading: boolean;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "spa-loader", never, { "logo": "logo"; }, {}, never, never, false>;
10
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<LoaderComponent, never>;
11
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<LoaderComponent, "spa-loader", never, { "logo": "logo"; }, {}, never, never>;
12
12
  }
13
+
14
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZGVyLmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJsb2FkZXIuY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IExvYWRlclNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9sb2FkZXIuc2VydmljZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIExvYWRlckNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBwcml2YXRlIGxvYWRlclNlcnZpY2U7XHJcbiAgICBjb25zdHJ1Y3Rvcihsb2FkZXJTZXJ2aWNlOiBMb2FkZXJTZXJ2aWNlKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICBsb2dvOiBzdHJpbmc7XHJcbiAgICBsb2FkaW5nOiBib29sZWFuO1xyXG59XHJcbiJdfQ==
@@ -0,0 +1,9 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { LoaderService } from '../../services/loader.service';
3
+ export declare class LoaderComponent implements OnInit {
4
+ private loaderService;
5
+ constructor(loaderService: LoaderService);
6
+ ngOnInit(): void;
7
+ logo: string;
8
+ loading: boolean;
9
+ }
@@ -0,0 +1,34 @@
1
+ import { HttpService } from "tin-core";
2
+ import { MessageService } from "../../services/message.service";
3
+ import { StorageService } from "../../services/storage.service";
4
+ import { AuthService } from "../../services/auth.service";
5
+ import { OnInit } from "@angular/core";
6
+ import { Router } from "@angular/router";
7
+ import { DataService } from "../../services/data.service";
8
+ import { LogService } from "./../../services/log.service";
9
+ import { User, loginConfig, AppConfig } from "../../classes/Classes";
10
+ import * as ɵngcc0 from '@angular/core';
11
+ export declare class LoginComponent implements OnInit {
12
+ private httpService;
13
+ private storageService;
14
+ router: Router;
15
+ private messageService;
16
+ private dataService;
17
+ authService: AuthService;
18
+ private logService;
19
+ constructor(httpService: HttpService, storageService: StorageService, router: Router, messageService: MessageService, dataService: DataService, authService: AuthService, logService: LogService);
20
+ user: User;
21
+ hide: boolean;
22
+ isProcessing: boolean;
23
+ config: loginConfig;
24
+ ngOnInit(): void;
25
+ appConfig: AppConfig;
26
+ signup(): void;
27
+ recoverAccount(): void;
28
+ login(): void;
29
+ setRole(roleID: string): void;
30
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<LoginComponent, never>;
31
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<LoginComponent, "spa-login", never, { "appConfig": "appConfig"; "config": "config"; }, {}, never, never>;
32
+ }
33
+
34
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9naW4uY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImxvZ2luLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIdHRwU2VydmljZSB9IGZyb20gXCJ0aW4tY29yZVwiO1xyXG5pbXBvcnQgeyBNZXNzYWdlU2VydmljZSB9IGZyb20gXCIuLi8uLi9zZXJ2aWNlcy9tZXNzYWdlLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgU3RvcmFnZVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vc2VydmljZXMvc3RvcmFnZS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IEF1dGhTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZVwiO1xyXG5pbXBvcnQgeyBPbkluaXQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBSb3V0ZXIgfSBmcm9tIFwiQGFuZ3VsYXIvcm91dGVyXCI7XHJcbmltcG9ydCB7IERhdGFTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2VzL2RhdGEuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBMb2dTZXJ2aWNlIH0gZnJvbSBcIi4vLi4vLi4vc2VydmljZXMvbG9nLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVXNlciwgbG9naW5Db25maWcsIEFwcENvbmZpZyB9IGZyb20gXCIuLi8uLi9jbGFzc2VzL0NsYXNzZXNcIjtcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgTG9naW5Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgcHJpdmF0ZSBodHRwU2VydmljZTtcclxuICAgIHByaXZhdGUgc3RvcmFnZVNlcnZpY2U7XHJcbiAgICByb3V0ZXI6IFJvdXRlcjtcclxuICAgIHByaXZhdGUgbWVzc2FnZVNlcnZpY2U7XHJcbiAgICBwcml2YXRlIGRhdGFTZXJ2aWNlO1xyXG4gICAgYXV0aFNlcnZpY2U6IEF1dGhTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBsb2dTZXJ2aWNlO1xyXG4gICAgY29uc3RydWN0b3IoaHR0cFNlcnZpY2U6IEh0dHBTZXJ2aWNlLCBzdG9yYWdlU2VydmljZTogU3RvcmFnZVNlcnZpY2UsIHJvdXRlcjogUm91dGVyLCBtZXNzYWdlU2VydmljZTogTWVzc2FnZVNlcnZpY2UsIGRhdGFTZXJ2aWNlOiBEYXRhU2VydmljZSwgYXV0aFNlcnZpY2U6IEF1dGhTZXJ2aWNlLCBsb2dTZXJ2aWNlOiBMb2dTZXJ2aWNlKTtcclxuICAgIHVzZXI6IFVzZXI7XHJcbiAgICBoaWRlOiBib29sZWFuO1xyXG4gICAgaXNQcm9jZXNzaW5nOiBib29sZWFuO1xyXG4gICAgY29uZmlnOiBsb2dpbkNvbmZpZztcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICBhcHBDb25maWc6IEFwcENvbmZpZztcclxuICAgIHNpZ251cCgpOiB2b2lkO1xyXG4gICAgcmVjb3ZlckFjY291bnQoKTogdm9pZDtcclxuICAgIGxvZ2luKCk6IHZvaWQ7XHJcbiAgICBzZXRSb2xlKHJvbGVJRDogc3RyaW5nKTogdm9pZDtcclxufVxyXG4iXX0=
@@ -0,0 +1,29 @@
1
+ import { HttpService } from "tin-core";
2
+ import { MessageService } from "../../services/message.service";
3
+ import { StorageService } from "../../services/storage.service";
4
+ import { AuthService } from "../../services/auth.service";
5
+ import { OnInit } from "@angular/core";
6
+ import { Router } from "@angular/router";
7
+ import { DataService } from "../../services/data.service";
8
+ import { LogService } from "./../../services/log.service";
9
+ import { User, loginConfig, AppConfig } from "../../classes/Classes";
10
+ export declare class LoginComponent implements OnInit {
11
+ private httpService;
12
+ private storageService;
13
+ router: Router;
14
+ private messageService;
15
+ private dataService;
16
+ authService: AuthService;
17
+ private logService;
18
+ constructor(httpService: HttpService, storageService: StorageService, router: Router, messageService: MessageService, dataService: DataService, authService: AuthService, logService: LogService);
19
+ user: User;
20
+ hide: boolean;
21
+ isProcessing: boolean;
22
+ config: loginConfig;
23
+ ngOnInit(): void;
24
+ appConfig: AppConfig;
25
+ signup(): void;
26
+ recoverAccount(): void;
27
+ login(): void;
28
+ setRole(roleID: string): void;
29
+ }
@@ -0,0 +1,22 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { DataService } from "../../services/data.service";
3
+ import { MatPaginator } from '@angular/material/paginator';
4
+ import { AuthService } from '../../services/auth.service';
5
+ import * as ɵngcc0 from '@angular/core';
6
+ export declare class LogsComponent implements OnInit {
7
+ private authService;
8
+ private dataService;
9
+ constructor(authService: AuthService, dataService: DataService);
10
+ ngOnInit(): void;
11
+ isProcessing: boolean;
12
+ logsPaginator: MatPaginator;
13
+ _filterText: string;
14
+ logs: any;
15
+ displayedColumns: string[];
16
+ loadLogs(): void;
17
+ applyFilter(filterValue: string): void;
18
+ static ɵfac: ɵngcc0.ɵɵFactoryDef<LogsComponent, never>;
19
+ static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<LogsComponent, "spa-logs", never, {}, {}, never, never>;
20
+ }
21
+
22
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9ncy5jb21wb25lbnQuZC50cyIsInNvdXJjZXMiOlsibG9ncy5jb21wb25lbnQuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IERhdGFTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2VzL2RhdGEuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBNYXRQYWdpbmF0b3IgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9wYWdpbmF0b3InO1xyXG5pbXBvcnQgeyBBdXRoU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIExvZ3NDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgcHJpdmF0ZSBhdXRoU2VydmljZTtcclxuICAgIHByaXZhdGUgZGF0YVNlcnZpY2U7XHJcbiAgICBjb25zdHJ1Y3RvcihhdXRoU2VydmljZTogQXV0aFNlcnZpY2UsIGRhdGFTZXJ2aWNlOiBEYXRhU2VydmljZSk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgaXNQcm9jZXNzaW5nOiBib29sZWFuO1xyXG4gICAgbG9nc1BhZ2luYXRvcjogTWF0UGFnaW5hdG9yO1xyXG4gICAgX2ZpbHRlclRleHQ6IHN0cmluZztcclxuICAgIGxvZ3M6IGFueTtcclxuICAgIGRpc3BsYXllZENvbHVtbnM6IHN0cmluZ1tdO1xyXG4gICAgbG9hZExvZ3MoKTogdm9pZDtcclxuICAgIGFwcGx5RmlsdGVyKGZpbHRlclZhbHVlOiBzdHJpbmcpOiB2b2lkO1xyXG59XHJcbiJdfQ==
@@ -0,0 +1,17 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { DataService } from "../../services/data.service";
3
+ import { MatPaginator } from '@angular/material/paginator';
4
+ import { AuthService } from '../../services/auth.service';
5
+ export declare class LogsComponent implements OnInit {
6
+ private authService;
7
+ private dataService;
8
+ constructor(authService: AuthService, dataService: DataService);
9
+ ngOnInit(): void;
10
+ isProcessing: boolean;
11
+ logsPaginator: MatPaginator;
12
+ _filterText: string;
13
+ logs: any;
14
+ displayedColumns: string[];
15
+ loadLogs(): void;
16
+ applyFilter(filterValue: string): void;
17
+ }