tin-spa 2.13.15 → 9.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (375) hide show
  1. package/README.md +2 -2
  2. package/bundles/tin-spa.umd.js +6694 -0
  3. package/bundles/tin-spa.umd.js.map +1 -0
  4. package/bundles/tin-spa.umd.min.js +16 -0
  5. package/bundles/tin-spa.umd.min.js.map +1 -0
  6. package/esm2015/lib/classes/Classes.js +254 -0
  7. package/esm2015/lib/classes/TinCore.js +137 -0
  8. package/esm2015/lib/components/activity/activity.component.js +92 -0
  9. package/esm2015/lib/components/attach/attach.component.js +181 -0
  10. package/esm2015/lib/components/change-password/change-password.component.js +179 -0
  11. package/esm2015/lib/components/check/check.component.js +69 -0
  12. package/esm2015/lib/components/chips/chips.component.js +107 -0
  13. package/esm2015/lib/components/create-account/create-account.component.js +160 -0
  14. package/esm2015/lib/components/date/date.component.js +66 -0
  15. package/esm2015/lib/components/datetime/datetime.component.js +57 -0
  16. package/esm2015/lib/components/filter/filter.component.js +64 -0
  17. package/esm2015/lib/components/html/html.component.js +102 -0
  18. package/esm2015/lib/components/label/label.component.js +117 -0
  19. package/esm2015/lib/components/loader/loader.component.js +53 -0
  20. package/esm2015/lib/components/login/login.component.js +240 -0
  21. package/esm2015/lib/components/logs/logs.component.js +195 -0
  22. package/esm2015/lib/components/message/messageDialog.component.js +142 -0
  23. package/esm2015/lib/components/money/currency-input-mask.directive.js +187 -0
  24. package/esm2015/lib/components/money/currency-input-mask.module.js +30 -0
  25. package/esm2015/lib/components/money/money.component.js +152 -0
  26. package/esm2015/lib/components/nav-menu/nav-menu.component.js +204 -0
  27. package/esm2015/lib/components/option/option.component.js +129 -0
  28. package/esm2015/lib/components/profile/profile.component.js +198 -0
  29. package/esm2015/lib/components/recover-account/recover-account.component.js +74 -0
  30. package/esm2015/lib/components/roles/addRoleDialog.component.js +132 -0
  31. package/esm2015/lib/components/roles/roles.component.js +211 -0
  32. package/esm2015/lib/components/select/select.component.js +133 -0
  33. package/esm2015/lib/components/settings/settings.component.js +118 -0
  34. package/esm2015/lib/components/signup/signup.component.js +139 -0
  35. package/esm2015/lib/components/steps/steps.component.js +114 -0
  36. package/esm2015/lib/components/table/table.component.js +375 -0
  37. package/esm2015/lib/components/text/text.component.js +240 -0
  38. package/esm2015/lib/components/tiles/tiles.component.js +95 -0
  39. package/esm2015/lib/components/timeout/timeout.component.js +133 -0
  40. package/esm2015/lib/components/tin-spa.component.js +26 -0
  41. package/esm2015/lib/components/users/users.component.js +373 -0
  42. package/esm2015/lib/components/viewer/viewer.component.js +92 -0
  43. package/esm2015/lib/components/viewer/viewerDialog.component.js +131 -0
  44. package/esm2015/lib/dnd.directive.js +56 -0
  45. package/esm2015/lib/modules/spa-admin.module.js +81 -0
  46. package/esm2015/lib/modules/spa-index.module.js +58 -0
  47. package/esm2015/lib/modules/spa-mat.module.js +68 -0
  48. package/esm2015/lib/modules/spa-user.module.js +55 -0
  49. package/esm2015/lib/services/auth.service.js +142 -0
  50. package/esm2015/lib/services/data.service.js +111 -0
  51. package/esm2015/lib/services/export.service.js +29 -0
  52. package/esm2015/lib/services/http.service.js +79 -0
  53. package/esm2015/lib/services/loader-interceptor.service.js +77 -0
  54. package/esm2015/lib/services/loader.service.js +17 -0
  55. package/esm2015/lib/services/log.service.js +76 -0
  56. package/esm2015/lib/services/message.service.js +52 -0
  57. package/esm2015/lib/services/storage.service.js +43 -0
  58. package/esm2015/lib/services/tin-spa.service.js +14 -0
  59. package/esm2015/lib/tin-spa.module.js +156 -0
  60. package/esm2015/public-api.js +56 -0
  61. package/esm2015/tin-spa.js +5 -0
  62. package/esm5/lib/classes/Classes.js +313 -0
  63. package/esm5/lib/classes/TinCore.js +164 -0
  64. package/esm5/lib/components/activity/activity.component.js +94 -0
  65. package/esm5/lib/components/attach/attach.component.js +195 -0
  66. package/esm5/lib/components/change-password/change-password.component.js +182 -0
  67. package/esm5/lib/components/check/check.component.js +71 -0
  68. package/esm5/lib/components/chips/chips.component.js +110 -0
  69. package/esm5/lib/components/create-account/create-account.component.js +163 -0
  70. package/esm5/lib/components/date/date.component.js +68 -0
  71. package/esm5/lib/components/datetime/datetime.component.js +59 -0
  72. package/esm5/lib/components/filter/filter.component.js +66 -0
  73. package/esm5/lib/components/html/html.component.js +104 -0
  74. package/esm5/lib/components/label/label.component.js +119 -0
  75. package/esm5/lib/components/loader/loader.component.js +56 -0
  76. package/esm5/lib/components/login/login.component.js +244 -0
  77. package/esm5/lib/components/logs/logs.component.js +198 -0
  78. package/esm5/lib/components/message/messageDialog.component.js +144 -0
  79. package/esm5/lib/components/money/currency-input-mask.directive.js +193 -0
  80. package/esm5/lib/components/money/currency-input-mask.module.js +34 -0
  81. package/esm5/lib/components/money/money.component.js +154 -0
  82. package/esm5/lib/components/nav-menu/nav-menu.component.js +207 -0
  83. package/esm5/lib/components/option/option.component.js +131 -0
  84. package/esm5/lib/components/profile/profile.component.js +203 -0
  85. package/esm5/lib/components/recover-account/recover-account.component.js +77 -0
  86. package/esm5/lib/components/roles/addRoleDialog.component.js +135 -0
  87. package/esm5/lib/components/roles/roles.component.js +218 -0
  88. package/esm5/lib/components/select/select.component.js +136 -0
  89. package/esm5/lib/components/settings/settings.component.js +122 -0
  90. package/esm5/lib/components/signup/signup.component.js +142 -0
  91. package/esm5/lib/components/steps/steps.component.js +128 -0
  92. package/esm5/lib/components/table/table.component.js +378 -0
  93. package/esm5/lib/components/text/text.component.js +244 -0
  94. package/esm5/lib/components/tiles/tiles.component.js +97 -0
  95. package/esm5/lib/components/timeout/timeout.component.js +136 -0
  96. package/esm5/lib/components/tin-spa.component.js +25 -0
  97. package/esm5/lib/components/users/users.component.js +380 -0
  98. package/esm5/lib/components/viewer/viewer.component.js +94 -0
  99. package/esm5/lib/components/viewer/viewerDialog.component.js +133 -0
  100. package/esm5/lib/dnd.directive.js +58 -0
  101. package/esm5/lib/modules/spa-admin.module.js +85 -0
  102. package/esm5/lib/modules/spa-index.module.js +62 -0
  103. package/esm5/lib/modules/spa-mat.module.js +72 -0
  104. package/esm5/lib/modules/spa-user.module.js +59 -0
  105. package/esm5/lib/services/auth.service.js +145 -0
  106. package/esm5/lib/services/data.service.js +113 -0
  107. package/esm5/lib/services/export.service.js +31 -0
  108. package/esm5/lib/services/http.service.js +81 -0
  109. package/esm5/lib/services/loader-interceptor.service.js +80 -0
  110. package/esm5/lib/services/loader.service.js +19 -0
  111. package/esm5/lib/services/log.service.js +114 -0
  112. package/esm5/lib/services/message.service.js +54 -0
  113. package/esm5/lib/services/storage.service.js +76 -0
  114. package/esm5/lib/services/tin-spa.service.js +17 -0
  115. package/esm5/lib/tin-spa.module.js +160 -0
  116. package/esm5/public-api.js +56 -0
  117. package/esm5/tin-spa.js +5 -0
  118. package/fesm2015/tin-spa.js +6204 -0
  119. package/fesm2015/tin-spa.js.map +1 -0
  120. package/fesm5/tin-spa.js +6453 -0
  121. package/fesm5/tin-spa.js.map +1 -0
  122. package/lib/classes/Classes.d.ts +228 -375
  123. package/lib/classes/TinCore.d.ts +11 -43
  124. package/lib/components/activity/activity.component.d.ts +2 -2
  125. package/lib/components/attach/attach.component.d.ts +27 -15
  126. package/lib/{pages → components}/change-password/change-password.component.d.ts +4 -4
  127. package/lib/components/check/check.component.d.ts +3 -8
  128. package/lib/components/chips/chips.component.d.ts +2 -2
  129. package/lib/{pages → components}/create-account/create-account.component.d.ts +4 -8
  130. package/lib/components/date/date.component.d.ts +12 -24
  131. package/lib/components/datetime/datetime.component.d.ts +2 -6
  132. package/lib/components/filter/filter.component.d.ts +2 -7
  133. package/lib/components/html/html.component.d.ts +10 -11
  134. package/lib/components/label/label.component.d.ts +2 -4
  135. package/lib/components/loader/loader.component.d.ts +2 -2
  136. package/lib/components/login/login.component.d.ts +32 -0
  137. package/lib/components/logs/logs.component.d.ts +18 -0
  138. package/lib/components/message/messageDialog.component.d.ts +2 -2
  139. package/lib/components/money/currency-input-mask.directive.d.ts +2 -2
  140. package/lib/components/money/currency-input-mask.module.d.ts +2 -3
  141. package/lib/components/money/money.component.d.ts +3 -13
  142. package/lib/components/nav-menu/nav-menu.component.d.ts +4 -22
  143. package/lib/components/option/option.component.d.ts +3 -14
  144. package/lib/{pages → components}/profile/profile.component.d.ts +4 -6
  145. package/lib/{pages → components}/recover-account/recover-account.component.d.ts +3 -3
  146. package/lib/components/roles/addRoleDialog.component.d.ts +22 -0
  147. package/lib/components/roles/roles.component.d.ts +30 -0
  148. package/lib/components/select/select.component.d.ts +20 -20
  149. package/lib/{pages → components}/settings/settings.component.d.ts +3 -3
  150. package/lib/{pages → components}/signup/signup.component.d.ts +4 -4
  151. package/lib/components/steps/steps.component.d.ts +10 -19
  152. package/lib/components/table/table.component.d.ts +21 -84
  153. package/lib/components/text/text.component.d.ts +14 -36
  154. package/lib/components/tiles/tiles.component.d.ts +7 -21
  155. package/lib/components/timeout/timeout.component.d.ts +24 -0
  156. package/lib/components/tin-spa.component.d.ts +6 -3
  157. package/lib/{pages → components}/users/users.component.d.ts +18 -11
  158. package/lib/components/viewer/viewer.component.d.ts +5 -11
  159. package/lib/components/viewer/viewerDialog.component.d.ts +4 -6
  160. package/lib/dnd.directive.d.ts +11 -0
  161. package/lib/modules/spa-admin.module.d.ts +10 -10
  162. package/lib/modules/spa-index.module.d.ts +7 -8
  163. package/lib/modules/spa-mat.module.d.ts +2 -8
  164. package/lib/modules/spa-user.module.d.ts +6 -6
  165. package/lib/services/auth.service.d.ts +4 -16
  166. package/lib/services/data.service.d.ts +38 -0
  167. package/lib/services/export.service.d.ts +6 -2
  168. package/lib/services/http.service.d.ts +2 -2
  169. package/lib/services/loader-interceptor.service.d.ts +3 -4
  170. package/lib/services/loader.service.d.ts +2 -2
  171. package/lib/services/log.service.d.ts +3 -3
  172. package/lib/services/message.service.d.ts +3 -4
  173. package/lib/services/storage.service.d.ts +2 -2
  174. package/lib/services/tin-spa.service.d.ts +2 -2
  175. package/lib/tin-spa.module.d.ts +34 -83
  176. package/package.json +16 -24
  177. package/public-api.d.ts +16 -47
  178. package/esm2020/lib/classes/Classes.mjs +0 -112
  179. package/esm2020/lib/classes/LibClasses.mjs +0 -180
  180. package/esm2020/lib/classes/TinCore.mjs +0 -568
  181. package/esm2020/lib/components/activity/activity.component.mjs +0 -24
  182. package/esm2020/lib/components/alert/alert.component.mjs +0 -43
  183. package/esm2020/lib/components/attach/attach.component.mjs +0 -102
  184. package/esm2020/lib/components/capsules/capsules.component.mjs +0 -63
  185. package/esm2020/lib/components/cards/cards.component.mjs +0 -103
  186. package/esm2020/lib/components/check/check.component.mjs +0 -67
  187. package/esm2020/lib/components/chips/chips.component.mjs +0 -58
  188. package/esm2020/lib/components/date/date.component.mjs +0 -103
  189. package/esm2020/lib/components/datetime/datetime.component.mjs +0 -55
  190. package/esm2020/lib/components/email/email.component.mjs +0 -133
  191. package/esm2020/lib/components/filter/filter.component.mjs +0 -58
  192. package/esm2020/lib/components/form/form.component.mjs +0 -296
  193. package/esm2020/lib/components/html/html.component.mjs +0 -34
  194. package/esm2020/lib/components/label/label.component.mjs +0 -31
  195. package/esm2020/lib/components/list-dialog/list-dialog.component.mjs +0 -68
  196. package/esm2020/lib/components/loader/loader.component.mjs +0 -25
  197. package/esm2020/lib/components/message/messageDialog.component.mjs +0 -33
  198. package/esm2020/lib/components/money/currency-input-mask.directive.mjs +0 -185
  199. package/esm2020/lib/components/money/currency-input-mask.module.mjs +0 -28
  200. package/esm2020/lib/components/money/money.component.mjs +0 -137
  201. package/esm2020/lib/components/multi-select/multi-select.component.mjs +0 -165
  202. package/esm2020/lib/components/multi-text/multi-text.component.mjs +0 -208
  203. package/esm2020/lib/components/nav-menu/nav-menu.component.mjs +0 -88
  204. package/esm2020/lib/components/notes/notes.component.mjs +0 -62
  205. package/esm2020/lib/components/number/number.component.mjs +0 -131
  206. package/esm2020/lib/components/option/option.component.mjs +0 -92
  207. package/esm2020/lib/components/page/page.component.mjs +0 -101
  208. package/esm2020/lib/components/search/search.component.mjs +0 -36
  209. package/esm2020/lib/components/select/select.component.mjs +0 -75
  210. package/esm2020/lib/components/select-bitwise/select-bitwise.component.mjs +0 -87
  211. package/esm2020/lib/components/select-common/select-common.component.mjs +0 -206
  212. package/esm2020/lib/components/select-internal/select-internal.component.mjs +0 -75
  213. package/esm2020/lib/components/select-lite/select-lite.component.mjs +0 -18
  214. package/esm2020/lib/components/statuses/statuses.component.mjs +0 -44
  215. package/esm2020/lib/components/steps/steps.component.mjs +0 -112
  216. package/esm2020/lib/components/suffix/suffix.component.mjs +0 -70
  217. package/esm2020/lib/components/table/detailsDialog.component.mjs +0 -406
  218. package/esm2020/lib/components/table/table.component.mjs +0 -440
  219. package/esm2020/lib/components/table-action/table-action.component.mjs +0 -80
  220. package/esm2020/lib/components/table-header/table-header.component.mjs +0 -148
  221. package/esm2020/lib/components/table-internal/detailsDialog-internal.component.mjs +0 -406
  222. package/esm2020/lib/components/table-internal/table-internal.component.mjs +0 -441
  223. package/esm2020/lib/components/table-lite/detailsDialog-lite.component.mjs +0 -404
  224. package/esm2020/lib/components/table-lite/table-lite.component.mjs +0 -441
  225. package/esm2020/lib/components/table-row/table-row.component.mjs +0 -93
  226. package/esm2020/lib/components/tabs/tabs.component.mjs +0 -74
  227. package/esm2020/lib/components/text/text.component.mjs +0 -255
  228. package/esm2020/lib/components/tiles/tiles.component.mjs +0 -99
  229. package/esm2020/lib/components/tin-spa.component.mjs +0 -19
  230. package/esm2020/lib/components/viewer/viewer.component.mjs +0 -83
  231. package/esm2020/lib/components/viewer/viewerDialog.component.mjs +0 -95
  232. package/esm2020/lib/modules/admin/admin-routing.module.mjs +0 -71
  233. package/esm2020/lib/modules/admin/admin.module.mjs +0 -26
  234. package/esm2020/lib/modules/index/index-routing.module.mjs +0 -27
  235. package/esm2020/lib/modules/index/index.module.mjs +0 -26
  236. package/esm2020/lib/modules/spa-admin.module.mjs +0 -71
  237. package/esm2020/lib/modules/spa-index.module.mjs +0 -54
  238. package/esm2020/lib/modules/spa-mat.module.mjs +0 -84
  239. package/esm2020/lib/modules/spa-user.module.mjs +0 -47
  240. package/esm2020/lib/modules/user/user-routing.module.mjs +0 -23
  241. package/esm2020/lib/modules/user/user.module.mjs +0 -26
  242. package/esm2020/lib/pages/accounts/accountDialog.component.mjs +0 -56
  243. package/esm2020/lib/pages/accounts/accounts.component.mjs +0 -70
  244. package/esm2020/lib/pages/app-models/app-models.component.mjs +0 -56
  245. package/esm2020/lib/pages/approvals/approvals.component.mjs +0 -19
  246. package/esm2020/lib/pages/approvals-config/approvals-config.component.mjs +0 -165
  247. package/esm2020/lib/pages/bug/bug.component.mjs +0 -14
  248. package/esm2020/lib/pages/change-password/change-password.component.mjs +0 -92
  249. package/esm2020/lib/pages/create-account/create-account.component.mjs +0 -110
  250. package/esm2020/lib/pages/customers/customers.component.mjs +0 -21
  251. package/esm2020/lib/pages/departments/departments.component.mjs +0 -22
  252. package/esm2020/lib/pages/employees/employees.component.mjs +0 -20
  253. package/esm2020/lib/pages/grades/grades.component.mjs +0 -14
  254. package/esm2020/lib/pages/inventory/inventory.component.mjs +0 -99
  255. package/esm2020/lib/pages/inventory/quantityDialog.component.mjs +0 -53
  256. package/esm2020/lib/pages/invitations-table/invitations-table.component.mjs +0 -71
  257. package/esm2020/lib/pages/login/login.component.mjs +0 -166
  258. package/esm2020/lib/pages/logs/logs.component.mjs +0 -42
  259. package/esm2020/lib/pages/membership/membership.component.mjs +0 -44
  260. package/esm2020/lib/pages/notifications/notifications.component.mjs +0 -90
  261. package/esm2020/lib/pages/notifications-config/notifications-config.component.mjs +0 -113
  262. package/esm2020/lib/pages/plans/plans.component.mjs +0 -44
  263. package/esm2020/lib/pages/positions/positions.component.mjs +0 -21
  264. package/esm2020/lib/pages/profile/profile.component.mjs +0 -94
  265. package/esm2020/lib/pages/recover-account/recover-account.component.mjs +0 -46
  266. package/esm2020/lib/pages/roles/addRoleDialog.component.mjs +0 -60
  267. package/esm2020/lib/pages/roles/roles.component.mjs +0 -151
  268. package/esm2020/lib/pages/settings/settings.component.mjs +0 -54
  269. package/esm2020/lib/pages/signup/signup.component.mjs +0 -50
  270. package/esm2020/lib/pages/suppliers/suppliers.component.mjs +0 -22
  271. package/esm2020/lib/pages/tasks/tasks.component.mjs +0 -86
  272. package/esm2020/lib/pages/tenant-settings/tenant-settings.component.mjs +0 -228
  273. package/esm2020/lib/pages/tenants/tenants.component.mjs +0 -47
  274. package/esm2020/lib/pages/transactions/transactDialog.component.mjs +0 -80
  275. package/esm2020/lib/pages/transactions/transactions.component.mjs +0 -101
  276. package/esm2020/lib/pages/users/users.component.mjs +0 -167
  277. package/esm2020/lib/pages/welcome/welcome.component.mjs +0 -86
  278. package/esm2020/lib/pipes/camelToWords.pipe.mjs +0 -17
  279. package/esm2020/lib/select-context.directive.mjs +0 -23
  280. package/esm2020/lib/services/auth.service.mjs +0 -175
  281. package/esm2020/lib/services/button.service.mjs +0 -162
  282. package/esm2020/lib/services/condition.service.mjs +0 -32
  283. package/esm2020/lib/services/csv.service.mjs +0 -49
  284. package/esm2020/lib/services/datalib.service.mjs +0 -860
  285. package/esm2020/lib/services/dialog.service.mjs +0 -125
  286. package/esm2020/lib/services/export.service.mjs +0 -16
  287. package/esm2020/lib/services/http.service.mjs +0 -79
  288. package/esm2020/lib/services/loader-interceptor.service.mjs +0 -86
  289. package/esm2020/lib/services/loader.service.mjs +0 -17
  290. package/esm2020/lib/services/log.service.mjs +0 -77
  291. package/esm2020/lib/services/message.service.mjs +0 -59
  292. package/esm2020/lib/services/notifications.service.mjs +0 -33
  293. package/esm2020/lib/services/storage.service.mjs +0 -34
  294. package/esm2020/lib/services/table-config.service.mjs +0 -78
  295. package/esm2020/lib/services/tin-spa.service.mjs +0 -14
  296. package/esm2020/lib/tin-spa.module.mjs +0 -225
  297. package/esm2020/public-api.mjs +0 -90
  298. package/esm2020/tin-spa.mjs +0 -5
  299. package/fesm2015/tin-spa.mjs +0 -11736
  300. package/fesm2015/tin-spa.mjs.map +0 -1
  301. package/fesm2020/tin-spa.mjs +0 -11738
  302. package/fesm2020/tin-spa.mjs.map +0 -1
  303. package/lib/classes/LibClasses.d.ts +0 -173
  304. package/lib/components/alert/alert.component.d.ts +0 -15
  305. package/lib/components/capsules/capsules.component.d.ts +0 -26
  306. package/lib/components/cards/cards.component.d.ts +0 -39
  307. package/lib/components/email/email.component.d.ts +0 -40
  308. package/lib/components/form/form.component.d.ts +0 -47
  309. package/lib/components/list-dialog/list-dialog.component.d.ts +0 -23
  310. package/lib/components/multi-select/multi-select.component.d.ts +0 -47
  311. package/lib/components/multi-text/multi-text.component.d.ts +0 -56
  312. package/lib/components/notes/notes.component.d.ts +0 -19
  313. package/lib/components/number/number.component.d.ts +0 -41
  314. package/lib/components/page/page.component.d.ts +0 -38
  315. package/lib/components/search/search.component.d.ts +0 -15
  316. package/lib/components/select-bitwise/select-bitwise.component.d.ts +0 -31
  317. package/lib/components/select-common/select-common.component.d.ts +0 -53
  318. package/lib/components/select-internal/select-internal.component.d.ts +0 -23
  319. package/lib/components/select-lite/select-lite.component.d.ts +0 -8
  320. package/lib/components/statuses/statuses.component.d.ts +0 -12
  321. package/lib/components/suffix/suffix.component.d.ts +0 -23
  322. package/lib/components/table/detailsDialog.component.d.ts +0 -86
  323. package/lib/components/table-action/table-action.component.d.ts +0 -25
  324. package/lib/components/table-header/table-header.component.d.ts +0 -46
  325. package/lib/components/table-internal/detailsDialog-internal.component.d.ts +0 -86
  326. package/lib/components/table-internal/table-internal.component.d.ts +0 -91
  327. package/lib/components/table-lite/detailsDialog-lite.component.d.ts +0 -86
  328. package/lib/components/table-lite/table-lite.component.d.ts +0 -91
  329. package/lib/components/table-row/table-row.component.d.ts +0 -31
  330. package/lib/components/tabs/tabs.component.d.ts +0 -32
  331. package/lib/modules/admin/admin-routing.module.d.ts +0 -7
  332. package/lib/modules/admin/admin.module.d.ts +0 -9
  333. package/lib/modules/index/index-routing.module.d.ts +0 -7
  334. package/lib/modules/index/index.module.d.ts +0 -9
  335. package/lib/modules/user/user-routing.module.d.ts +0 -7
  336. package/lib/modules/user/user.module.d.ts +0 -9
  337. package/lib/pages/accounts/accountDialog.component.d.ts +0 -27
  338. package/lib/pages/accounts/accounts.component.d.ts +0 -25
  339. package/lib/pages/app-models/app-models.component.d.ts +0 -15
  340. package/lib/pages/approvals/approvals.component.d.ts +0 -10
  341. package/lib/pages/approvals-config/approvals-config.component.d.ts +0 -24
  342. package/lib/pages/bug/bug.component.d.ts +0 -8
  343. package/lib/pages/customers/customers.component.d.ts +0 -12
  344. package/lib/pages/departments/departments.component.d.ts +0 -14
  345. package/lib/pages/employees/employees.component.d.ts +0 -12
  346. package/lib/pages/grades/grades.component.d.ts +0 -8
  347. package/lib/pages/inventory/inventory.component.d.ts +0 -25
  348. package/lib/pages/inventory/quantityDialog.component.d.ts +0 -23
  349. package/lib/pages/invitations-table/invitations-table.component.d.ts +0 -19
  350. package/lib/pages/login/login.component.d.ts +0 -46
  351. package/lib/pages/logs/logs.component.d.ts +0 -14
  352. package/lib/pages/membership/membership.component.d.ts +0 -13
  353. package/lib/pages/notifications/notifications.component.d.ts +0 -16
  354. package/lib/pages/notifications-config/notifications-config.component.d.ts +0 -17
  355. package/lib/pages/plans/plans.component.d.ts +0 -13
  356. package/lib/pages/positions/positions.component.d.ts +0 -12
  357. package/lib/pages/roles/addRoleDialog.component.d.ts +0 -24
  358. package/lib/pages/roles/roles.component.d.ts +0 -42
  359. package/lib/pages/suppliers/suppliers.component.d.ts +0 -14
  360. package/lib/pages/tasks/tasks.component.d.ts +0 -27
  361. package/lib/pages/tenant-settings/tenant-settings.component.d.ts +0 -47
  362. package/lib/pages/tenants/tenants.component.d.ts +0 -17
  363. package/lib/pages/transactions/transactDialog.component.d.ts +0 -26
  364. package/lib/pages/transactions/transactions.component.d.ts +0 -31
  365. package/lib/pages/welcome/welcome.component.d.ts +0 -25
  366. package/lib/pipes/camelToWords.pipe.d.ts +0 -7
  367. package/lib/select-context.directive.d.ts +0 -10
  368. package/lib/services/button.service.d.ts +0 -30
  369. package/lib/services/condition.service.d.ts +0 -10
  370. package/lib/services/csv.service.d.ts +0 -10
  371. package/lib/services/datalib.service.d.ts +0 -125
  372. package/lib/services/dialog.service.d.ts +0 -20
  373. package/lib/services/notifications.service.d.ts +0 -12
  374. package/lib/services/table-config.service.d.ts +0 -17
  375. /package/{index.d.ts → tin-spa.d.ts} +0 -0
@@ -1,23 +1,23 @@
1
- import { OnInit } from '@angular/core';
2
- import { DetailsDialogConfig } from '../../classes/Classes';
3
- import { MessageService } from '../../services/message.service';
4
- import { DialogService } from '../../services/dialog.service';
5
- import { SelectCommonComponent } from '../select-common/select-common.component';
6
- import { DataServiceLib } from '../../services/datalib.service';
7
- import { ButtonService } from '../../services/button.service';
1
+ import { EventEmitter, OnInit } from '@angular/core';
8
2
  import * as i0 from "@angular/core";
9
- export declare class SelectComponent extends SelectCommonComponent implements OnInit {
10
- protected messageService: MessageService;
11
- protected dataService: DataServiceLib;
12
- private dialogService;
13
- private buttonService;
14
- constructor(messageService: MessageService, dataService: DataServiceLib, dialogService: DialogService, buttonService: ButtonService);
3
+ export declare class SelectComponent implements OnInit {
4
+ constructor();
15
5
  ngOnInit(): void;
16
- detailsConfig: DetailsDialogConfig;
17
- onHoverChange(isHovered: boolean): void;
18
- canCreate(): boolean;
19
- canView(): boolean;
20
- onPeekClick(event: MouseEvent, mode: 'create' | 'view'): void;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "spa-select", never, { "detailsConfig": "detailsConfig"; }, {}, never, never, false>;
6
+ ngOnChanges(): void;
7
+ displayValue: any;
8
+ width: string;
9
+ readonly: boolean;
10
+ readonlyMode: string;
11
+ hint: string;
12
+ placeholder: string;
13
+ display: string;
14
+ value: string;
15
+ options: any;
16
+ optionValue: string;
17
+ optionDisplay: string;
18
+ optionDisplayExtra: string;
19
+ valueChange: EventEmitter<any>;
20
+ changed(): void;
21
+ static ɵfac: i0.ɵɵFactoryDef<SelectComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<SelectComponent, "spa-select", never, { "width": "width"; "readonly": "readonly"; "readonlyMode": "readonlyMode"; "hint": "hint"; "placeholder": "placeholder"; "display": "display"; "value": "value"; "options": "options"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "optionDisplayExtra": "optionDisplayExtra"; }, { "valueChange": "valueChange"; }, never, never>;
23
23
  }
@@ -1,5 +1,5 @@
1
1
  import { OnInit } from '@angular/core';
2
- import { DataServiceLib } from '../../services/datalib.service';
2
+ import { DataServiceLib } from '../../services/data.service';
3
3
  import { MessageService } from '../../services/message.service';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SettingsComponent implements OnInit {
@@ -14,6 +14,6 @@ export declare class SettingsComponent implements OnInit {
14
14
  loadSettings(): void;
15
15
  updateSetting(setting: any): void;
16
16
  addSetting(): void;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<SettingsComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<SettingsComponent, "spa-settings", never, {}, {}, never, never, false>;
17
+ static ɵfac: i0.ɵɵFactoryDef<SettingsComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<SettingsComponent, "spa-settings", never, {}, {}, never, never>;
19
19
  }
@@ -1,9 +1,9 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { MessageService } from '../../services/message.service';
3
- import { DataServiceLib } from '../../services/datalib.service';
3
+ import { DataServiceLib } from '../../services/data.service';
4
4
  import { AuthService } from '../../services/auth.service';
5
+ import { User, Profile, Account } from '../../classes/Classes';
5
6
  import { HttpService } from '../../services/http.service';
6
- import { Account, Profile, User } from '../../classes/LibClasses';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class SignupComponent implements OnInit {
9
9
  private httpService;
@@ -18,6 +18,6 @@ export declare class SignupComponent implements OnInit {
18
18
  account: Account;
19
19
  confirmPassword: string;
20
20
  create(): void;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<SignupComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<SignupComponent, "spa-signup", never, {}, {}, never, never, false>;
21
+ static ɵfac: i0.ɵɵFactoryDef<SignupComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<SignupComponent, "spa-signup", never, {}, {}, never, never>;
23
23
  }
@@ -1,27 +1,18 @@
1
- import { OnInit } from '@angular/core';
1
+ import { AfterViewInit, OnInit } from '@angular/core';
2
2
  import { MatStepper } from '@angular/material/stepper';
3
- import { Step, StepConfig } from '../../classes/Classes';
4
- import { BreakpointObserver } from '@angular/cdk/layout';
5
- import { DataServiceLib } from '../../services/datalib.service';
3
+ import { Step } from '../../classes/Classes';
6
4
  import * as i0 from "@angular/core";
7
- export declare class StepsComponent implements OnInit {
8
- private breakpointObserver;
9
- private dataService;
10
- constructor(breakpointObserver: BreakpointObserver, dataService: DataServiceLib);
5
+ export declare class StepsComponent implements OnInit, AfterViewInit {
6
+ constructor();
11
7
  ngOnInit(): void;
8
+ ngAfterViewInit(): void;
12
9
  ngOnChanges(): void;
13
- private observeScreenSize;
14
10
  stepper: MatStepper;
15
11
  value: string;
16
- config: StepConfig;
17
- data: any;
18
- selectedIndex: number;
19
- smallScreen: boolean;
20
12
  steps: Step[];
21
- private loadSteps;
22
- private updateSelectedStep;
23
- get shouldShowLabels(): boolean;
24
- getVisibleSteps(): Step[];
25
- static ɵfac: i0.ɵɵFactoryDeclaration<StepsComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<StepsComponent, "spa-steps", never, { "value": "value"; "config": "config"; "data": "data"; }, {}, never, never, false>;
13
+ setStepper(): void;
14
+ pushStepper(count: number): void;
15
+ pushSteps(): void;
16
+ static ɵfac: i0.ɵɵFactoryDef<StepsComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<StepsComponent, "spa-steps", never, { "value": "value"; "steps": "steps"; }, {}, never, never>;
27
18
  }
@@ -1,91 +1,28 @@
1
- import { EventEmitter, OnInit, SimpleChanges } from '@angular/core';
2
- import { Action, Button, Color, Column, Icon, TableConfig } from '../../classes/Classes';
1
+ import { EventEmitter, OnInit } from '@angular/core';
3
2
  import { MatPaginator } from '@angular/material/paginator';
4
- import { MessageService } from '../../services/message.service';
5
- import { MatDialog } from '@angular/material/dialog';
6
- import { BreakpointObserver } from '@angular/cdk/layout';
7
- import { DataServiceLib } from '../../services/datalib.service';
8
- import { Subject } from 'rxjs';
9
- import { ButtonService } from '../../services/button.service';
10
- import { DialogService } from '../../services/dialog.service';
11
- import { TableConfigService } from '../../services/table-config.service';
12
- import { ConditionService } from '../../services/condition.service';
13
- import { AuthService } from '../../services/auth.service';
3
+ import { Operator, TableColumnType, TableConfig } from '../../classes/Classes';
14
4
  import * as i0 from "@angular/core";
15
5
  export declare class TableComponent implements OnInit {
16
- private dataService;
17
- private messageService;
18
- private breakpointObserver;
19
- dialog: MatDialog;
20
- private buttonService;
21
- private dialogService;
22
- private tableConfigService;
23
- private conditionService;
24
- private authService;
25
- constructor(dataService: DataServiceLib, messageService: MessageService, breakpointObserver: BreakpointObserver, dialog: MatDialog, buttonService: ButtonService, dialogService: DialogService, tableConfigService: TableConfigService, conditionService: ConditionService, authService: AuthService);
6
+ constructor();
26
7
  ngOnInit(): void;
27
- ngOnChanges(changes: SimpleChanges): void;
28
- elevation: string;
29
- actionsWidth: string;
30
- showFilterButton: boolean;
31
- tileReload: Subject<boolean>;
32
- hasBeenActivated: boolean;
33
- smallScreen: boolean;
34
- hasFormAccess: boolean;
35
- tableDataSource: any;
36
- dataSource: any[];
37
- displayedColumns: any[];
38
- displayedButtons: any[];
39
- originalTableLoadAction: Action;
40
- tablePaginator: MatPaginator;
41
- data: any;
42
- tileData: any;
8
+ ngOnChanges(): void;
43
9
  config: TableConfig;
44
- reload: Subject<boolean>;
45
- activeTab: boolean;
46
- inTab: boolean;
47
- dataLoad: EventEmitter<any>;
48
- actionSuccess: EventEmitter<any>;
49
- refreshClick: EventEmitter<any>;
50
- searchClick: EventEmitter<any>;
10
+ data: any;
11
+ dataChange: EventEmitter<any>;
12
+ buttonClick: EventEmitter<any>;
13
+ loadClick: EventEmitter<any>;
51
14
  createClick: EventEmitter<any>;
52
- actionClick: EventEmitter<any>;
53
- inputChange: EventEmitter<any>;
54
- actionResponse: EventEmitter<any>;
55
- private initializeComponent;
56
- private updateTableConfiguration;
57
- private setupDataLoading;
58
- loadData(action: Action, data: any): void;
59
- inputChanged(event: any): void;
60
- formDefaults(): void;
61
- setButtons(): void;
62
- getButton(name: string): Button;
63
- getIcon(buttonName: string): string;
64
- getButtonColor(button: Button, row: any): string;
65
- getOptions(column: any): Column;
66
- getColor(value: any, options: any[]): string;
67
- testIconCondition(row: any, icon: Icon): boolean;
68
- testColorCondition(row: any, color: Color): boolean;
69
- showBanner(message: string): void;
70
- testDisabled(row: any, buttonName: string): boolean;
71
- lastSearch: any;
72
- searchClicked(x: any): void;
73
- tileClicked(tile: any): void;
74
- tileUnClicked(tile: any): void;
75
- refreshClicked(): void;
76
- dataLoaded(x: any): void;
77
- actionClicked(name: string, row: any): void;
78
- columnClicked(column: Column, row: any): void;
79
- customModel(name: any, row: any): void;
80
- actionClickedEmit(name: any, row: any): void;
81
- viewModel(row: any): void;
82
- newModel(): void;
83
- editModel(row: any): void;
84
- private open;
85
- deleteModel(row: any): void;
86
- doAction(buttonName: string, row: any): void;
87
- execAction(button: Button, row: any): void;
88
- private getElevationClass;
89
- static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
90
- static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "spa-table", never, { "data": "data"; "tileData": "tileData"; "config": "config"; "reload": "reload"; "activeTab": "activeTab"; "inTab": "inTab"; }, { "dataLoad": "dataLoad"; "actionSuccess": "actionSuccess"; "refreshClick": "refreshClick"; "searchClick": "searchClick"; "createClick": "createClick"; "actionClick": "actionClick"; "inputChange": "inputChange"; "actionResponse": "actionResponse"; }, never, never, false>;
15
+ tablePaginator: MatPaginator;
16
+ colType: typeof TableColumnType;
17
+ op: typeof Operator;
18
+ displayedColumns: string[];
19
+ styleString: string;
20
+ _filterText: string;
21
+ applyFilter(filterValue: string): void;
22
+ do(name: any, item: any): void;
23
+ create(): void;
24
+ load(): void;
25
+ test(a: any, op: Operator, b: any): boolean;
26
+ static ɵfac: i0.ɵɵFactoryDef<TableComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<TableComponent, "spa-table", never, { "config": "config"; "data": "data"; }, { "dataChange": "dataChange"; "buttonClick": "buttonClick"; "loadClick": "loadClick"; "createClick": "createClick"; }, never, never>;
91
28
  }
@@ -1,19 +1,12 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
3
  import { Observable } from 'rxjs';
4
- import { Action } from '../../classes/Classes';
5
- import { DataServiceLib } from '../../services/datalib.service';
6
4
  import * as i0 from "@angular/core";
7
5
  export declare class TextComponent implements OnInit {
8
- private dataService;
9
- constructor(dataService: DataServiceLib);
6
+ constructor();
10
7
  ngOnInit(): void;
11
8
  ngAfterViewInit(): void;
12
- filteredOptions: Observable<string[]>;
13
- multiDimension: boolean;
14
- hideRequiredControl: FormControl<boolean>;
15
- hide: boolean;
16
- appearance: 'legacy' | 'standard' | 'fill' | 'outline';
9
+ hideRequiredControl: FormControl;
17
10
  readonly: boolean;
18
11
  hint: string;
19
12
  display: string;
@@ -24,40 +17,25 @@ export declare class TextComponent implements OnInit {
24
17
  type: string;
25
18
  leave: EventEmitter<any>;
26
19
  enterPress: EventEmitter<any>;
27
- rows: number;
20
+ rows: string;
28
21
  width: string;
29
- copyContent: boolean;
30
- clearContent: boolean;
31
22
  options: any;
32
- optionDisplay: string;
33
23
  optionValue: string;
34
- loadAction: Action;
24
+ optionDisplay: string;
25
+ myControl: FormControl;
26
+ filteredOptions: Observable<string[]>;
27
+ private initFilter;
28
+ private _filter;
35
29
  required: boolean;
36
30
  min: number;
37
31
  max: number;
38
- regex?: {
39
- pattern: string;
40
- message: string;
41
- };
42
- suffix: string;
43
- infoMessage: string;
44
- isHovered: boolean;
45
- onMouseEnter(): void;
46
- onMouseLeave(): void;
47
- private initFilter;
48
- private _filter;
49
- initControl(control: FormControl): void;
50
- getDisplayValue(value: any): string;
32
+ regex: string;
51
33
  changed(): void;
34
+ changed2(): void;
52
35
  leaved(): void;
53
- clear(): void;
54
36
  enterPressed(): void;
55
- refresh(event: MouseEvent): void;
56
- getData(action: Action): void;
57
- myControl: FormControl<string>;
58
- control: FormControl<string>;
59
- private getValidators;
60
- validate(control: FormControl): string;
61
- static ɵfac: i0.ɵɵFactoryDeclaration<TextComponent, never>;
62
- static ɵcmp: i0.ɵɵComponentDeclaration<TextComponent, "spa-text", never, { "appearance": "appearance"; "readonly": "readonly"; "hint": "hint"; "display": "display"; "placeholder": "placeholder"; "value": "value"; "format": "format"; "type": "type"; "rows": "rows"; "width": "width"; "copyContent": "copyContent"; "clearContent": "clearContent"; "options": "options"; "optionDisplay": "optionDisplay"; "optionValue": "optionValue"; "loadAction": "loadAction"; "required": "required"; "min": "min"; "max": "max"; "regex": "regex"; "suffix": "suffix"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; }, never, never, false>;
37
+ control: FormControl;
38
+ validate(): string;
39
+ static ɵfac: i0.ɵɵFactoryDef<TextComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<TextComponent, "spa-text", never, { "readonly": "readonly"; "hint": "hint"; "display": "display"; "placeholder": "placeholder"; "value": "value"; "format": "format"; "type": "type"; "rows": "rows"; "width": "width"; "options": "options"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "required": "required"; "min": "min"; "max": "max"; "regex": "regex"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; }, never, never>;
63
41
  }
@@ -1,28 +1,14 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
- import { Action, Tile, TileConfig } from '../../classes/Classes';
3
- import { DataServiceLib } from '../../services/datalib.service';
4
- import { MessageService } from '../../services/message.service';
5
- import { Subject } from 'rxjs';
2
+ import { Tile } from '../../classes/Classes';
6
3
  import * as i0 from "@angular/core";
7
4
  export declare class TilesComponent implements OnInit {
8
- private dataService;
9
- private messageService;
10
- constructor(dataService: DataServiceLib, messageService: MessageService);
5
+ constructor();
11
6
  ngOnInit(): void;
12
- ngOnChanges(): void;
13
7
  tiles: Tile[];
14
- config: TileConfig;
15
- tileActionSelected: EventEmitter<Action>;
16
- lastSearch: any;
17
- data: any;
18
- reload: Subject<boolean>;
8
+ clickable: boolean;
19
9
  tileClick: EventEmitter<any>;
20
- tileUnClick: EventEmitter<any>;
21
- selectedTile: string;
22
- loadData(action: Action, data: any): void;
23
- clicked(clickedTile: Tile): void;
24
- pop(x: any): void;
25
- isHidden(tile: Tile): boolean;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<TilesComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<TilesComponent, "spa-tiles", never, { "config": "config"; "lastSearch": "lastSearch"; "data": "data"; "reload": "reload"; }, { "tileActionSelected": "tileActionSelected"; "tileClick": "tileClick"; "tileUnClick": "tileUnClick"; }, never, never, false>;
10
+ selected: string;
11
+ clicked(v: Tile): void;
12
+ static ɵfac: i0.ɵɵFactoryDef<TilesComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<TilesComponent, "spa-tiles", never, { "tiles": "tiles"; "clickable": "clickable"; }, { "tileClick": "tileClick"; }, never, never>;
28
14
  }
@@ -0,0 +1,24 @@
1
+ import { Router } from '@angular/router';
2
+ import { OnInit } from '@angular/core';
3
+ import { Idle } from '@ng-idle/core';
4
+ import { Keepalive } from '@ng-idle/keepalive';
5
+ import { AuthService } from '../../services/auth.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class TimeoutComponent implements OnInit {
8
+ private idle;
9
+ private keepalive;
10
+ authService: AuthService;
11
+ private router;
12
+ constructor(idle: Idle, keepalive: Keepalive, authService: AuthService, router: Router);
13
+ loggedin: boolean;
14
+ idleState: string;
15
+ timedOut: boolean;
16
+ lastPing?: Date;
17
+ isWarning: boolean;
18
+ ngOnInit(): void;
19
+ startWatch(): void;
20
+ stopWatch(): void;
21
+ using(): void;
22
+ static ɵfac: i0.ɵɵFactoryDef<TimeoutComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<TimeoutComponent, "spa-timeout", never, {}, {}, never, never>;
24
+ }
@@ -1,5 +1,8 @@
1
+ import { OnInit } from '@angular/core';
1
2
  import * as i0 from "@angular/core";
2
- export declare class TinSpaComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<TinSpaComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<TinSpaComponent, "spa-tin-spa", never, {}, {}, never, never, false>;
3
+ export declare class TinSpaComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDef<TinSpaComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<TinSpaComponent, "lib-tin-spa", never, {}, {}, never, never>;
5
8
  }
@@ -1,10 +1,11 @@
1
1
  import { OnInit } from "@angular/core";
2
+ import { MatPaginator } from "@angular/material/paginator";
2
3
  import { MatDialog } from "@angular/material/dialog";
3
- import { DataServiceLib } from "../../services/datalib.service";
4
+ import { DataServiceLib } from "../../services/data.service";
4
5
  import { Router } from "@angular/router";
5
6
  import { MessageService } from "../../services/message.service";
6
7
  import { AuthService } from "../../services/auth.service";
7
- import { TableConfig, FormConfig, DetailsDialogConfig } from '../../classes/Classes';
8
+ import { User } from '../../classes/Classes';
8
9
  import { HttpService } from "../../services/http.service";
9
10
  import * as i0 from "@angular/core";
10
11
  export declare class UsersComponent implements OnInit {
@@ -16,13 +17,19 @@ export declare class UsersComponent implements OnInit {
16
17
  private messageService;
17
18
  constructor(httpService: HttpService, router: Router, authService: AuthService, dataService: DataServiceLib, dialog: MatDialog, messageService: MessageService);
18
19
  ngOnInit(): void;
19
- inputChanged(x: any): void;
20
- loadMeta(): void;
21
- userBaseFormConfig: FormConfig;
22
- createDialog: DetailsDialogConfig;
23
- editDialog: DetailsDialogConfig;
24
- passwordDialog: DetailsDialogConfig;
25
- usersTableConfig: TableConfig;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<UsersComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<UsersComponent, "spa-users", never, {}, {}, never, never, false>;
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: any): void;
30
+ unlock(u: any): void;
31
+ recover(u: User): void;
32
+ deleteUser(user: User): void;
33
+ static ɵfac: i0.ɵɵFactoryDef<UsersComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<UsersComponent, "spa-users", never, {}, {}, never, never>;
28
35
  }
@@ -1,25 +1,19 @@
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
3
  import * as i0 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: i0.ɵɵFactoryDef<ViewerComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<ViewerComponent, "spa-viewer", never, { "dir": "dir"; "folderName": "folderName"; "fileNames": "fileNames"; "removable": "removable"; "display": "display"; "title": "title"; }, { "remove": "remove"; }, never, never>;
25
19
  }
@@ -1,15 +1,13 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { HttpService } from '../../services/http.service';
3
- import { DataServiceLib } from '../../services/datalib.service';
4
3
  import * as i0 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,6 @@ 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: i0.ɵɵFactoryDef<viewerDialog, never>;
21
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<viewerDialog, "app-editRequest", never, {}, {}, never, never>;
24
22
  }
@@ -0,0 +1,11 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 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: i0.ɵɵFactoryDef<DndDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDefWithMeta<DndDirective, "[appDnd]", never, {}, { "fileDropped": "fileDropped"; }, never>;
11
+ }
@@ -1,15 +1,15 @@
1
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";
2
+ import * as i1 from "../components/users/users.component";
3
+ import * as i2 from "../components/roles/roles.component";
4
+ import * as i3 from "../components/roles/addRoleDialog.component";
5
+ import * as i4 from "../components/create-account/create-account.component";
6
+ import * as i5 from "../components/logs/logs.component";
7
+ import * as i6 from "../components/settings/settings.component";
8
8
  import * as i7 from "@angular/forms";
9
9
  import * as i8 from "@angular/common";
10
- import * as i9 from "../tin-spa.module";
10
+ import * as i9 from "./spa-mat.module";
11
+ import * as i10 from "../tin-spa.module";
11
12
  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>;
13
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<SpaAdminModule, [typeof i1.UsersComponent, typeof i2.RolesComponent, typeof i3.addRoleDialog, typeof i4.CreateAccountComponent, typeof i5.LogsComponent, typeof i6.SettingsComponent], [typeof i7.ReactiveFormsModule, typeof i8.CommonModule, typeof i7.FormsModule, typeof i7.ReactiveFormsModule, typeof i9.SpaMatModule, typeof i10.TinSpaModule], [typeof i8.CommonModule, typeof i7.FormsModule, typeof i9.SpaMatModule, typeof i1.UsersComponent, typeof i2.RolesComponent, typeof i3.addRoleDialog, typeof i4.CreateAccountComponent, typeof i5.LogsComponent, typeof i6.SettingsComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDef<SpaAdminModule>;
15
15
  }
@@ -1,13 +1,12 @@
1
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";
2
+ import * as i1 from "../components/login/login.component";
3
+ import * as i2 from "../components/signup/signup.component";
4
+ import * as i3 from "../components/recover-account/recover-account.component";
5
5
  import * as i4 from "@angular/forms";
6
6
  import * as i5 from "@angular/common";
7
- import * as i6 from "../tin-spa.module";
8
- import * as i7 from "@abacritt/angularx-social-login";
7
+ import * as i6 from "./spa-mat.module";
8
+ import * as i7 from "../tin-spa.module";
9
9
  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>;
10
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<SpaIndexModule, [typeof i1.LoginComponent, typeof i2.SignupComponent, typeof i3.RecoverAccountComponent], [typeof i4.ReactiveFormsModule, typeof i5.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i6.SpaMatModule, typeof i7.TinSpaModule], [typeof i5.CommonModule, typeof i4.FormsModule, typeof i6.SpaMatModule, typeof i1.LoginComponent, typeof i2.SignupComponent, typeof i3.RecoverAccountComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDef<SpaIndexModule>;
13
12
  }
@@ -26,13 +26,7 @@ import * as i24 from "@angular/material/sort";
26
26
  import * as i25 from "@angular/material/datepicker";
27
27
  import * as i26 from "@angular/material/stepper";
28
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";
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: i0.ɵɵNgModuleDefWithMeta<SpaMatModule, never, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.MatMenuModule, typeof i4.MatSliderModule, typeof i5.MatTableModule, typeof i6.MatPaginatorModule, typeof i7.MatCheckboxModule, typeof i8.MatBadgeModule, typeof i9.MatButtonModule, typeof i10.MatIconModule, typeof i11.MatDialogModule, typeof i12.MatSnackBarModule, typeof i13.MatTabsModule, typeof i14.MatFormFieldModule, typeof i15.MatInputModule, typeof i16.MatCardModule, typeof i17.MatChipsModule, typeof i18.MatSelectModule, typeof i19.MatNativeDateModule, typeof i20.MatProgressSpinnerModule, typeof i21.MatListModule, typeof i22.MatAutocompleteModule, typeof i23.MatTooltipModule, typeof i24.MatSortModule, typeof i25.MatDatepickerModule, typeof i26.MatStepperModule, typeof i27.MatRadioModule]>;
31
+ static ɵinj: i0.ɵɵInjectorDef<SpaMatModule>;
38
32
  }
@@ -1,11 +1,11 @@
1
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";
2
+ import * as i1 from "../components/change-password/change-password.component";
3
+ import * as i2 from "../components/profile/profile.component";
4
4
  import * as i3 from "@angular/forms";
5
5
  import * as i4 from "@angular/common";
6
- import * as i5 from "../tin-spa.module";
6
+ import * as i5 from "./spa-mat.module";
7
+ import * as i6 from "../tin-spa.module";
7
8
  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>;
9
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<SpaUserModule, [typeof i1.ChangePasswordComponent, typeof i2.ProfileComponent], [typeof i3.ReactiveFormsModule, typeof i4.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i5.SpaMatModule, typeof i6.TinSpaModule], [typeof i4.CommonModule, typeof i3.FormsModule, typeof i5.SpaMatModule, typeof i1.ChangePasswordComponent, typeof i2.ProfileComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDef<SpaUserModule>;
11
11
  }