tin-spa 2.13.15 → 9.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (443) hide show
  1. package/README.md +2 -2
  2. package/__ivy_ngcc__/fesm2015/tin-spa.js +6813 -0
  3. package/__ivy_ngcc__/fesm2015/tin-spa.js.map +1 -0
  4. package/bundles/tin-spa.umd.js +3867 -0
  5. package/bundles/tin-spa.umd.js.map +1 -0
  6. package/bundles/tin-spa.umd.min.js +16 -0
  7. package/bundles/tin-spa.umd.min.js.map +1 -0
  8. package/esm2015/lib/classes/Classes.js +241 -0
  9. package/esm2015/lib/components/activity/activity.component.js +26 -0
  10. package/esm2015/lib/components/attach/attach.component.js +107 -0
  11. package/esm2015/lib/components/change-password/change-password.component.js +91 -0
  12. package/esm2015/lib/components/check/check.component.js +63 -0
  13. package/esm2015/lib/components/chips/chips.component.js +67 -0
  14. package/esm2015/lib/components/create-account/create-account.component.js +78 -0
  15. package/esm2015/lib/components/date/date.component.js +45 -0
  16. package/esm2015/lib/components/datetime/datetime.component.js +44 -0
  17. package/esm2015/lib/components/html/html.component.js +97 -0
  18. package/esm2015/lib/components/label/label.component.js +29 -0
  19. package/esm2015/lib/components/loader/loader.component.js +30 -0
  20. package/esm2015/lib/components/login/login.component.js +122 -0
  21. package/esm2015/lib/components/logs/logs.component.js +43 -0
  22. package/esm2015/lib/components/message/messageDialog.component.js +31 -0
  23. package/esm2015/lib/components/money/money.component.js +50 -0
  24. package/esm2015/lib/components/nav-menu/nav-menu.component.js +51 -0
  25. package/esm2015/lib/components/option/option.component.js +62 -0
  26. package/esm2015/lib/components/profile/profile.component.js +108 -0
  27. package/esm2015/lib/components/profiles/profiles.component.js +16 -0
  28. package/esm2015/lib/components/recover-account/recover-account.component.js +52 -0
  29. package/esm2015/lib/components/roles/addRoleDialog.component.js +59 -0
  30. package/esm2015/lib/components/roles/editRoleDialog.component.js +57 -0
  31. package/esm2015/lib/components/roles/roles.component.js +131 -0
  32. package/esm2015/lib/components/roles/viewRoleDialog.component.js +38 -0
  33. package/esm2015/lib/components/select/select.component.js +73 -0
  34. package/esm2015/lib/components/settings/settings.component.js +63 -0
  35. package/esm2015/lib/components/signup/signup.component.js +56 -0
  36. package/esm2015/lib/components/steps/steps.component.js +98 -0
  37. package/esm2015/lib/components/table/table.component.js +109 -0
  38. package/esm2015/lib/components/text/text.component.js +165 -0
  39. package/esm2015/lib/components/tiles/tiles.component.js +41 -0
  40. package/esm2015/lib/components/timeout/timeout.component.js +90 -0
  41. package/esm2015/lib/components/tin-spa.component.js +19 -0
  42. package/esm2015/lib/components/users/addUserDialog.component.js +53 -0
  43. package/esm2015/lib/components/users/editUserDialog.component.js +96 -0
  44. package/esm2015/lib/components/users/users.component.js +130 -0
  45. package/esm2015/lib/components/viewer/viewer.component.js +67 -0
  46. package/esm2015/lib/components/viewer/viewerDialog.component.js +76 -0
  47. package/esm2015/lib/dnd.directive.js +51 -0
  48. package/esm2015/lib/modules/spa-admin.module.js +67 -0
  49. package/esm2015/lib/modules/spa-index.module.js +33 -0
  50. package/esm2015/lib/modules/spa-mat.module.js +53 -0
  51. package/esm2015/lib/modules/spa-user.module.js +31 -0
  52. package/esm2015/lib/services/auth.service.js +153 -0
  53. package/esm2015/lib/services/data.service.js +78 -0
  54. package/esm2015/lib/services/export.service.js +29 -0
  55. package/esm2015/lib/services/loader-interceptor.service.js +77 -0
  56. package/esm2015/lib/services/loader.service.js +17 -0
  57. package/esm2015/lib/services/log.service.js +76 -0
  58. package/esm2015/lib/services/message.service.js +58 -0
  59. package/esm2015/lib/services/storage.service.js +42 -0
  60. package/esm2015/lib/services/tin-spa.service.js +14 -0
  61. package/esm2015/lib/tin-spa.module.js +91 -0
  62. package/esm2015/public-api.js +58 -0
  63. package/esm2015/tin-spa.js +9 -0
  64. package/esm5/lib/classes/Classes.js +298 -0
  65. package/esm5/lib/components/activity/activity.component.js +27 -0
  66. package/esm5/lib/components/attach/attach.component.js +119 -0
  67. package/esm5/lib/components/change-password/change-password.component.js +93 -0
  68. package/esm5/lib/components/check/check.component.js +64 -0
  69. package/esm5/lib/components/chips/chips.component.js +69 -0
  70. package/esm5/lib/components/create-account/create-account.component.js +80 -0
  71. package/esm5/lib/components/date/date.component.js +46 -0
  72. package/esm5/lib/components/datetime/datetime.component.js +45 -0
  73. package/esm5/lib/components/html/html.component.js +98 -0
  74. package/esm5/lib/components/label/label.component.js +30 -0
  75. package/esm5/lib/components/loader/loader.component.js +32 -0
  76. package/esm5/lib/components/login/login.component.js +125 -0
  77. package/esm5/lib/components/logs/logs.component.js +45 -0
  78. package/esm5/lib/components/message/messageDialog.component.js +32 -0
  79. package/esm5/lib/components/money/money.component.js +51 -0
  80. package/esm5/lib/components/nav-menu/nav-menu.component.js +53 -0
  81. package/esm5/lib/components/option/option.component.js +63 -0
  82. package/esm5/lib/components/profile/profile.component.js +112 -0
  83. package/esm5/lib/components/profiles/profiles.component.js +18 -0
  84. package/esm5/lib/components/recover-account/recover-account.component.js +54 -0
  85. package/esm5/lib/components/roles/addRoleDialog.component.js +61 -0
  86. package/esm5/lib/components/roles/editRoleDialog.component.js +59 -0
  87. package/esm5/lib/components/roles/roles.component.js +138 -0
  88. package/esm5/lib/components/roles/viewRoleDialog.component.js +39 -0
  89. package/esm5/lib/components/select/select.component.js +75 -0
  90. package/esm5/lib/components/settings/settings.component.js +66 -0
  91. package/esm5/lib/components/signup/signup.component.js +58 -0
  92. package/esm5/lib/components/steps/steps.component.js +110 -0
  93. package/esm5/lib/components/table/table.component.js +111 -0
  94. package/esm5/lib/components/text/text.component.js +168 -0
  95. package/esm5/lib/components/tiles/tiles.component.js +42 -0
  96. package/esm5/lib/components/timeout/timeout.component.js +92 -0
  97. package/esm5/lib/components/tin-spa.component.js +17 -0
  98. package/esm5/lib/components/users/addUserDialog.component.js +55 -0
  99. package/esm5/lib/components/users/editUserDialog.component.js +99 -0
  100. package/esm5/lib/components/users/users.component.js +135 -0
  101. package/esm5/lib/components/viewer/viewer.component.js +68 -0
  102. package/esm5/lib/components/viewer/viewerDialog.component.js +77 -0
  103. package/esm5/lib/dnd.directive.js +52 -0
  104. package/esm5/lib/modules/spa-admin.module.js +70 -0
  105. package/esm5/lib/modules/spa-index.module.js +36 -0
  106. package/esm5/lib/modules/spa-mat.module.js +56 -0
  107. package/esm5/lib/modules/spa-user.module.js +34 -0
  108. package/esm5/lib/services/auth.service.js +155 -0
  109. package/esm5/lib/services/data.service.js +79 -0
  110. package/esm5/lib/services/export.service.js +30 -0
  111. package/esm5/lib/services/loader-interceptor.service.js +79 -0
  112. package/esm5/lib/services/loader.service.js +18 -0
  113. package/esm5/lib/services/log.service.js +112 -0
  114. package/esm5/lib/services/message.service.js +59 -0
  115. package/esm5/lib/services/storage.service.js +74 -0
  116. package/esm5/lib/services/tin-spa.service.js +16 -0
  117. package/esm5/lib/tin-spa.module.js +94 -0
  118. package/esm5/public-api.js +58 -0
  119. package/esm5/tin-spa.js +9 -0
  120. package/fesm2015/tin-spa.js +3398 -0
  121. package/fesm2015/tin-spa.js.map +1 -0
  122. package/fesm5/tin-spa.js +3623 -0
  123. package/fesm5/tin-spa.js.map +1 -0
  124. package/lib/classes/Classes.d.ts +216 -375
  125. package/lib/components/activity/activity.component.d.ts +5 -3
  126. package/lib/components/activity/activity.component.d.ts.__ivy_ngcc_bak +8 -0
  127. package/lib/components/attach/attach.component.d.ts +30 -16
  128. package/lib/components/attach/attach.component.d.ts.__ivy_ngcc_bak +39 -0
  129. package/lib/components/change-password/change-password.component.d.ts +25 -0
  130. package/lib/components/change-password/change-password.component.d.ts.__ivy_ngcc_bak +20 -0
  131. package/lib/components/check/check.component.d.ts +6 -9
  132. package/lib/components/check/check.component.d.ts.__ivy_ngcc_bak +16 -0
  133. package/lib/components/chips/chips.component.d.ts +5 -3
  134. package/lib/components/chips/chips.component.d.ts.__ivy_ngcc_bak +15 -0
  135. package/lib/components/create-account/create-account.component.d.ts +30 -0
  136. package/lib/components/create-account/create-account.component.d.ts.__ivy_ngcc_bak +25 -0
  137. package/lib/components/date/date.component.d.ts +15 -26
  138. package/lib/components/date/date.component.d.ts.__ivy_ngcc_bak +13 -0
  139. package/lib/components/datetime/datetime.component.d.ts +5 -7
  140. package/lib/components/datetime/datetime.component.d.ts.__ivy_ngcc_bak +12 -0
  141. package/lib/components/html/html.component.d.ts +13 -12
  142. package/lib/components/html/html.component.d.ts.__ivy_ngcc_bak +12 -0
  143. package/lib/components/label/label.component.d.ts +5 -5
  144. package/lib/components/label/label.component.d.ts.__ivy_ngcc_bak +8 -0
  145. package/lib/components/loader/loader.component.d.ts +5 -3
  146. package/lib/components/loader/loader.component.d.ts.__ivy_ngcc_bak +9 -0
  147. package/lib/components/login/login.component.d.ts +34 -0
  148. package/lib/components/login/login.component.d.ts.__ivy_ngcc_bak +29 -0
  149. package/lib/components/logs/logs.component.d.ts +22 -0
  150. package/lib/components/logs/logs.component.d.ts.__ivy_ngcc_bak +17 -0
  151. package/lib/components/message/messageDialog.component.d.ts +5 -3
  152. package/lib/components/message/messageDialog.component.d.ts.__ivy_ngcc_bak +12 -0
  153. package/lib/components/money/money.component.d.ts +8 -29
  154. package/lib/components/money/money.component.d.ts.__ivy_ngcc_bak +14 -0
  155. package/lib/components/nav-menu/nav-menu.component.d.ts +7 -23
  156. package/lib/components/nav-menu/nav-menu.component.d.ts.__ivy_ngcc_bak +17 -0
  157. package/lib/components/option/option.component.d.ts +6 -16
  158. package/lib/components/option/option.component.d.ts.__ivy_ngcc_bak +17 -0
  159. package/lib/components/profile/profile.component.d.ts +35 -0
  160. package/lib/components/profile/profile.component.d.ts.__ivy_ngcc_bak +30 -0
  161. package/lib/components/profiles/profiles.component.d.ts +10 -0
  162. package/lib/components/profiles/profiles.component.d.ts.__ivy_ngcc_bak +5 -0
  163. package/lib/components/recover-account/recover-account.component.d.ts +20 -0
  164. package/lib/components/recover-account/recover-account.component.d.ts.__ivy_ngcc_bak +15 -0
  165. package/lib/components/roles/addRoleDialog.component.d.ts +24 -0
  166. package/lib/components/roles/addRoleDialog.component.d.ts.__ivy_ngcc_bak +19 -0
  167. package/lib/components/roles/editRoleDialog.component.d.ts +24 -0
  168. package/lib/components/roles/editRoleDialog.component.d.ts.__ivy_ngcc_bak +19 -0
  169. package/lib/components/roles/roles.component.d.ts +34 -0
  170. package/lib/components/roles/roles.component.d.ts.__ivy_ngcc_bak +29 -0
  171. package/lib/components/roles/viewRoleDialog.component.d.ts +20 -0
  172. package/lib/components/roles/viewRoleDialog.component.d.ts.__ivy_ngcc_bak +15 -0
  173. package/lib/components/select/select.component.d.ts +23 -21
  174. package/lib/components/select/select.component.d.ts.__ivy_ngcc_bak +20 -0
  175. package/lib/components/settings/settings.component.d.ts +21 -0
  176. package/lib/{pages/settings/settings.component.d.ts → components/settings/settings.component.d.ts.__ivy_ngcc_bak} +2 -5
  177. package/lib/components/signup/signup.component.d.ts +25 -0
  178. package/lib/{pages/signup/signup.component.d.ts → components/signup/signup.component.d.ts.__ivy_ngcc_bak} +4 -7
  179. package/lib/components/steps/steps.component.d.ts +13 -20
  180. package/lib/components/steps/steps.component.d.ts.__ivy_ngcc_bak +15 -0
  181. package/lib/components/table/table.component.d.ts +24 -85
  182. package/lib/components/table/table.component.d.ts.__ivy_ngcc_bak +25 -0
  183. package/lib/components/text/text.component.d.ts +17 -38
  184. package/lib/components/text/text.component.d.ts.__ivy_ngcc_bak +37 -0
  185. package/lib/components/tiles/tiles.component.d.ts +10 -22
  186. package/lib/components/tiles/tiles.component.d.ts.__ivy_ngcc_bak +11 -0
  187. package/lib/components/timeout/timeout.component.d.ts +26 -0
  188. package/lib/components/timeout/timeout.component.d.ts.__ivy_ngcc_bak +21 -0
  189. package/lib/components/tin-spa.component.d.ts +9 -4
  190. package/lib/components/tin-spa.component.d.ts.__ivy_ngcc_bak +5 -0
  191. package/lib/components/users/addUserDialog.component.d.ts +21 -0
  192. package/lib/components/users/addUserDialog.component.d.ts.__ivy_ngcc_bak +16 -0
  193. package/lib/components/users/editUserDialog.component.d.ts +32 -0
  194. package/lib/components/users/editUserDialog.component.d.ts.__ivy_ngcc_bak +27 -0
  195. package/lib/components/users/users.component.d.ts +40 -0
  196. package/lib/components/users/users.component.d.ts.__ivy_ngcc_bak +35 -0
  197. package/lib/components/viewer/viewer.component.d.ts +8 -12
  198. package/lib/components/viewer/viewer.component.d.ts.__ivy_ngcc_bak +16 -0
  199. package/lib/components/viewer/viewerDialog.component.d.ts +8 -8
  200. package/lib/components/viewer/viewerDialog.component.d.ts.__ivy_ngcc_bak +19 -0
  201. package/lib/dnd.directive.d.ts +13 -0
  202. package/lib/dnd.directive.d.ts.__ivy_ngcc_bak +8 -0
  203. package/lib/modules/spa-admin.module.d.ts +19 -13
  204. package/lib/modules/spa-admin.module.d.ts.__ivy_ngcc_bak +2 -0
  205. package/lib/modules/spa-index.module.d.ts +11 -11
  206. package/lib/modules/spa-index.module.d.ts.__ivy_ngcc_bak +2 -0
  207. package/lib/modules/spa-mat.module.d.ts +32 -36
  208. package/lib/modules/spa-mat.module.d.ts.__ivy_ngcc_bak +2 -0
  209. package/lib/modules/spa-user.module.d.ts +10 -9
  210. package/lib/modules/spa-user.module.d.ts.__ivy_ngcc_bak +2 -0
  211. package/lib/services/auth.service.d.ts +15 -27
  212. package/lib/services/auth.service.d.ts.__ivy_ngcc_bak +45 -0
  213. package/lib/services/data.service.d.ts +27 -0
  214. package/lib/services/data.service.d.ts.__ivy_ngcc_bak +23 -0
  215. package/lib/services/export.service.d.ts +8 -3
  216. package/lib/services/export.service.d.ts.__ivy_ngcc_bak +7 -0
  217. package/lib/services/loader-interceptor.service.d.ts +6 -5
  218. package/lib/services/loader-interceptor.service.d.ts.__ivy_ngcc_bak +18 -0
  219. package/lib/services/loader.service.d.ts +4 -3
  220. package/lib/services/loader.service.d.ts.__ivy_ngcc_bak +5 -0
  221. package/lib/services/log.service.d.ts +5 -4
  222. package/lib/services/log.service.d.ts.__ivy_ngcc_bak +16 -0
  223. package/lib/services/message.service.d.ts +5 -5
  224. package/lib/services/message.service.d.ts.__ivy_ngcc_bak +12 -0
  225. package/lib/services/storage.service.d.ts +4 -3
  226. package/lib/services/storage.service.d.ts.__ivy_ngcc_bak +7 -0
  227. package/lib/services/tin-spa.service.d.ts +4 -3
  228. package/lib/services/tin-spa.service.d.ts.__ivy_ngcc_bak +3 -0
  229. package/lib/tin-spa.module.d.ts +35 -84
  230. package/lib/tin-spa.module.d.ts.__ivy_ngcc_bak +2 -0
  231. package/package.json +23 -23
  232. package/public-api.d.ts +21 -50
  233. package/tin-spa.d.ts +10 -0
  234. package/tin-spa.d.ts.__ivy_ngcc_bak +8 -0
  235. package/tin-spa.metadata.json +1 -0
  236. package/esm2020/lib/classes/Classes.mjs +0 -112
  237. package/esm2020/lib/classes/LibClasses.mjs +0 -180
  238. package/esm2020/lib/classes/TinCore.mjs +0 -568
  239. package/esm2020/lib/components/activity/activity.component.mjs +0 -24
  240. package/esm2020/lib/components/alert/alert.component.mjs +0 -43
  241. package/esm2020/lib/components/attach/attach.component.mjs +0 -102
  242. package/esm2020/lib/components/capsules/capsules.component.mjs +0 -63
  243. package/esm2020/lib/components/cards/cards.component.mjs +0 -103
  244. package/esm2020/lib/components/check/check.component.mjs +0 -67
  245. package/esm2020/lib/components/chips/chips.component.mjs +0 -58
  246. package/esm2020/lib/components/date/date.component.mjs +0 -103
  247. package/esm2020/lib/components/datetime/datetime.component.mjs +0 -55
  248. package/esm2020/lib/components/email/email.component.mjs +0 -133
  249. package/esm2020/lib/components/filter/filter.component.mjs +0 -58
  250. package/esm2020/lib/components/form/form.component.mjs +0 -296
  251. package/esm2020/lib/components/html/html.component.mjs +0 -34
  252. package/esm2020/lib/components/label/label.component.mjs +0 -31
  253. package/esm2020/lib/components/list-dialog/list-dialog.component.mjs +0 -68
  254. package/esm2020/lib/components/loader/loader.component.mjs +0 -25
  255. package/esm2020/lib/components/message/messageDialog.component.mjs +0 -33
  256. package/esm2020/lib/components/money/currency-input-mask.directive.mjs +0 -185
  257. package/esm2020/lib/components/money/currency-input-mask.module.mjs +0 -28
  258. package/esm2020/lib/components/money/money.component.mjs +0 -137
  259. package/esm2020/lib/components/multi-select/multi-select.component.mjs +0 -165
  260. package/esm2020/lib/components/multi-text/multi-text.component.mjs +0 -208
  261. package/esm2020/lib/components/nav-menu/nav-menu.component.mjs +0 -88
  262. package/esm2020/lib/components/notes/notes.component.mjs +0 -62
  263. package/esm2020/lib/components/number/number.component.mjs +0 -131
  264. package/esm2020/lib/components/option/option.component.mjs +0 -92
  265. package/esm2020/lib/components/page/page.component.mjs +0 -101
  266. package/esm2020/lib/components/search/search.component.mjs +0 -36
  267. package/esm2020/lib/components/select/select.component.mjs +0 -75
  268. package/esm2020/lib/components/select-bitwise/select-bitwise.component.mjs +0 -87
  269. package/esm2020/lib/components/select-common/select-common.component.mjs +0 -206
  270. package/esm2020/lib/components/select-internal/select-internal.component.mjs +0 -75
  271. package/esm2020/lib/components/select-lite/select-lite.component.mjs +0 -18
  272. package/esm2020/lib/components/statuses/statuses.component.mjs +0 -44
  273. package/esm2020/lib/components/steps/steps.component.mjs +0 -112
  274. package/esm2020/lib/components/suffix/suffix.component.mjs +0 -70
  275. package/esm2020/lib/components/table/detailsDialog.component.mjs +0 -406
  276. package/esm2020/lib/components/table/table.component.mjs +0 -440
  277. package/esm2020/lib/components/table-action/table-action.component.mjs +0 -80
  278. package/esm2020/lib/components/table-header/table-header.component.mjs +0 -148
  279. package/esm2020/lib/components/table-internal/detailsDialog-internal.component.mjs +0 -406
  280. package/esm2020/lib/components/table-internal/table-internal.component.mjs +0 -441
  281. package/esm2020/lib/components/table-lite/detailsDialog-lite.component.mjs +0 -404
  282. package/esm2020/lib/components/table-lite/table-lite.component.mjs +0 -441
  283. package/esm2020/lib/components/table-row/table-row.component.mjs +0 -93
  284. package/esm2020/lib/components/tabs/tabs.component.mjs +0 -74
  285. package/esm2020/lib/components/text/text.component.mjs +0 -255
  286. package/esm2020/lib/components/tiles/tiles.component.mjs +0 -99
  287. package/esm2020/lib/components/tin-spa.component.mjs +0 -19
  288. package/esm2020/lib/components/viewer/viewer.component.mjs +0 -83
  289. package/esm2020/lib/components/viewer/viewerDialog.component.mjs +0 -95
  290. package/esm2020/lib/modules/admin/admin-routing.module.mjs +0 -71
  291. package/esm2020/lib/modules/admin/admin.module.mjs +0 -26
  292. package/esm2020/lib/modules/index/index-routing.module.mjs +0 -27
  293. package/esm2020/lib/modules/index/index.module.mjs +0 -26
  294. package/esm2020/lib/modules/spa-admin.module.mjs +0 -71
  295. package/esm2020/lib/modules/spa-index.module.mjs +0 -54
  296. package/esm2020/lib/modules/spa-mat.module.mjs +0 -84
  297. package/esm2020/lib/modules/spa-user.module.mjs +0 -47
  298. package/esm2020/lib/modules/user/user-routing.module.mjs +0 -23
  299. package/esm2020/lib/modules/user/user.module.mjs +0 -26
  300. package/esm2020/lib/pages/accounts/accountDialog.component.mjs +0 -56
  301. package/esm2020/lib/pages/accounts/accounts.component.mjs +0 -70
  302. package/esm2020/lib/pages/app-models/app-models.component.mjs +0 -56
  303. package/esm2020/lib/pages/approvals/approvals.component.mjs +0 -19
  304. package/esm2020/lib/pages/approvals-config/approvals-config.component.mjs +0 -165
  305. package/esm2020/lib/pages/bug/bug.component.mjs +0 -14
  306. package/esm2020/lib/pages/change-password/change-password.component.mjs +0 -92
  307. package/esm2020/lib/pages/create-account/create-account.component.mjs +0 -110
  308. package/esm2020/lib/pages/customers/customers.component.mjs +0 -21
  309. package/esm2020/lib/pages/departments/departments.component.mjs +0 -22
  310. package/esm2020/lib/pages/employees/employees.component.mjs +0 -20
  311. package/esm2020/lib/pages/grades/grades.component.mjs +0 -14
  312. package/esm2020/lib/pages/inventory/inventory.component.mjs +0 -99
  313. package/esm2020/lib/pages/inventory/quantityDialog.component.mjs +0 -53
  314. package/esm2020/lib/pages/invitations-table/invitations-table.component.mjs +0 -71
  315. package/esm2020/lib/pages/login/login.component.mjs +0 -166
  316. package/esm2020/lib/pages/logs/logs.component.mjs +0 -42
  317. package/esm2020/lib/pages/membership/membership.component.mjs +0 -44
  318. package/esm2020/lib/pages/notifications/notifications.component.mjs +0 -90
  319. package/esm2020/lib/pages/notifications-config/notifications-config.component.mjs +0 -113
  320. package/esm2020/lib/pages/plans/plans.component.mjs +0 -44
  321. package/esm2020/lib/pages/positions/positions.component.mjs +0 -21
  322. package/esm2020/lib/pages/profile/profile.component.mjs +0 -94
  323. package/esm2020/lib/pages/recover-account/recover-account.component.mjs +0 -46
  324. package/esm2020/lib/pages/roles/addRoleDialog.component.mjs +0 -60
  325. package/esm2020/lib/pages/roles/roles.component.mjs +0 -151
  326. package/esm2020/lib/pages/settings/settings.component.mjs +0 -54
  327. package/esm2020/lib/pages/signup/signup.component.mjs +0 -50
  328. package/esm2020/lib/pages/suppliers/suppliers.component.mjs +0 -22
  329. package/esm2020/lib/pages/tasks/tasks.component.mjs +0 -86
  330. package/esm2020/lib/pages/tenant-settings/tenant-settings.component.mjs +0 -228
  331. package/esm2020/lib/pages/tenants/tenants.component.mjs +0 -47
  332. package/esm2020/lib/pages/transactions/transactDialog.component.mjs +0 -80
  333. package/esm2020/lib/pages/transactions/transactions.component.mjs +0 -101
  334. package/esm2020/lib/pages/users/users.component.mjs +0 -167
  335. package/esm2020/lib/pages/welcome/welcome.component.mjs +0 -86
  336. package/esm2020/lib/pipes/camelToWords.pipe.mjs +0 -17
  337. package/esm2020/lib/select-context.directive.mjs +0 -23
  338. package/esm2020/lib/services/auth.service.mjs +0 -175
  339. package/esm2020/lib/services/button.service.mjs +0 -162
  340. package/esm2020/lib/services/condition.service.mjs +0 -32
  341. package/esm2020/lib/services/csv.service.mjs +0 -49
  342. package/esm2020/lib/services/datalib.service.mjs +0 -860
  343. package/esm2020/lib/services/dialog.service.mjs +0 -125
  344. package/esm2020/lib/services/export.service.mjs +0 -16
  345. package/esm2020/lib/services/http.service.mjs +0 -79
  346. package/esm2020/lib/services/loader-interceptor.service.mjs +0 -86
  347. package/esm2020/lib/services/loader.service.mjs +0 -17
  348. package/esm2020/lib/services/log.service.mjs +0 -77
  349. package/esm2020/lib/services/message.service.mjs +0 -59
  350. package/esm2020/lib/services/notifications.service.mjs +0 -33
  351. package/esm2020/lib/services/storage.service.mjs +0 -34
  352. package/esm2020/lib/services/table-config.service.mjs +0 -78
  353. package/esm2020/lib/services/tin-spa.service.mjs +0 -14
  354. package/esm2020/lib/tin-spa.module.mjs +0 -225
  355. package/esm2020/public-api.mjs +0 -90
  356. package/esm2020/tin-spa.mjs +0 -5
  357. package/fesm2015/tin-spa.mjs +0 -11736
  358. package/fesm2015/tin-spa.mjs.map +0 -1
  359. package/fesm2020/tin-spa.mjs +0 -11738
  360. package/fesm2020/tin-spa.mjs.map +0 -1
  361. package/index.d.ts +0 -5
  362. package/lib/classes/LibClasses.d.ts +0 -173
  363. package/lib/classes/TinCore.d.ts +0 -59
  364. package/lib/components/alert/alert.component.d.ts +0 -15
  365. package/lib/components/capsules/capsules.component.d.ts +0 -26
  366. package/lib/components/cards/cards.component.d.ts +0 -39
  367. package/lib/components/email/email.component.d.ts +0 -40
  368. package/lib/components/filter/filter.component.d.ts +0 -20
  369. package/lib/components/form/form.component.d.ts +0 -47
  370. package/lib/components/list-dialog/list-dialog.component.d.ts +0 -23
  371. package/lib/components/money/currency-input-mask.directive.d.ts +0 -41
  372. package/lib/components/money/currency-input-mask.module.d.ts +0 -9
  373. package/lib/components/multi-select/multi-select.component.d.ts +0 -47
  374. package/lib/components/multi-text/multi-text.component.d.ts +0 -56
  375. package/lib/components/notes/notes.component.d.ts +0 -19
  376. package/lib/components/number/number.component.d.ts +0 -41
  377. package/lib/components/page/page.component.d.ts +0 -38
  378. package/lib/components/search/search.component.d.ts +0 -15
  379. package/lib/components/select-bitwise/select-bitwise.component.d.ts +0 -31
  380. package/lib/components/select-common/select-common.component.d.ts +0 -53
  381. package/lib/components/select-internal/select-internal.component.d.ts +0 -23
  382. package/lib/components/select-lite/select-lite.component.d.ts +0 -8
  383. package/lib/components/statuses/statuses.component.d.ts +0 -12
  384. package/lib/components/suffix/suffix.component.d.ts +0 -23
  385. package/lib/components/table/detailsDialog.component.d.ts +0 -86
  386. package/lib/components/table-action/table-action.component.d.ts +0 -25
  387. package/lib/components/table-header/table-header.component.d.ts +0 -46
  388. package/lib/components/table-internal/detailsDialog-internal.component.d.ts +0 -86
  389. package/lib/components/table-internal/table-internal.component.d.ts +0 -91
  390. package/lib/components/table-lite/detailsDialog-lite.component.d.ts +0 -86
  391. package/lib/components/table-lite/table-lite.component.d.ts +0 -91
  392. package/lib/components/table-row/table-row.component.d.ts +0 -31
  393. package/lib/components/tabs/tabs.component.d.ts +0 -32
  394. package/lib/modules/admin/admin-routing.module.d.ts +0 -7
  395. package/lib/modules/admin/admin.module.d.ts +0 -9
  396. package/lib/modules/index/index-routing.module.d.ts +0 -7
  397. package/lib/modules/index/index.module.d.ts +0 -9
  398. package/lib/modules/user/user-routing.module.d.ts +0 -7
  399. package/lib/modules/user/user.module.d.ts +0 -9
  400. package/lib/pages/accounts/accountDialog.component.d.ts +0 -27
  401. package/lib/pages/accounts/accounts.component.d.ts +0 -25
  402. package/lib/pages/app-models/app-models.component.d.ts +0 -15
  403. package/lib/pages/approvals/approvals.component.d.ts +0 -10
  404. package/lib/pages/approvals-config/approvals-config.component.d.ts +0 -24
  405. package/lib/pages/bug/bug.component.d.ts +0 -8
  406. package/lib/pages/change-password/change-password.component.d.ts +0 -27
  407. package/lib/pages/create-account/create-account.component.d.ts +0 -34
  408. package/lib/pages/customers/customers.component.d.ts +0 -12
  409. package/lib/pages/departments/departments.component.d.ts +0 -14
  410. package/lib/pages/employees/employees.component.d.ts +0 -12
  411. package/lib/pages/grades/grades.component.d.ts +0 -8
  412. package/lib/pages/inventory/inventory.component.d.ts +0 -25
  413. package/lib/pages/inventory/quantityDialog.component.d.ts +0 -23
  414. package/lib/pages/invitations-table/invitations-table.component.d.ts +0 -19
  415. package/lib/pages/login/login.component.d.ts +0 -46
  416. package/lib/pages/logs/logs.component.d.ts +0 -14
  417. package/lib/pages/membership/membership.component.d.ts +0 -13
  418. package/lib/pages/notifications/notifications.component.d.ts +0 -16
  419. package/lib/pages/notifications-config/notifications-config.component.d.ts +0 -17
  420. package/lib/pages/plans/plans.component.d.ts +0 -13
  421. package/lib/pages/positions/positions.component.d.ts +0 -12
  422. package/lib/pages/profile/profile.component.d.ts +0 -35
  423. package/lib/pages/recover-account/recover-account.component.d.ts +0 -18
  424. package/lib/pages/roles/addRoleDialog.component.d.ts +0 -24
  425. package/lib/pages/roles/roles.component.d.ts +0 -42
  426. package/lib/pages/suppliers/suppliers.component.d.ts +0 -14
  427. package/lib/pages/tasks/tasks.component.d.ts +0 -27
  428. package/lib/pages/tenant-settings/tenant-settings.component.d.ts +0 -47
  429. package/lib/pages/tenants/tenants.component.d.ts +0 -17
  430. package/lib/pages/transactions/transactDialog.component.d.ts +0 -26
  431. package/lib/pages/transactions/transactions.component.d.ts +0 -31
  432. package/lib/pages/users/users.component.d.ts +0 -28
  433. package/lib/pages/welcome/welcome.component.d.ts +0 -25
  434. package/lib/pipes/camelToWords.pipe.d.ts +0 -7
  435. package/lib/select-context.directive.d.ts +0 -10
  436. package/lib/services/button.service.d.ts +0 -30
  437. package/lib/services/condition.service.d.ts +0 -10
  438. package/lib/services/csv.service.d.ts +0 -10
  439. package/lib/services/datalib.service.d.ts +0 -125
  440. package/lib/services/dialog.service.d.ts +0 -20
  441. package/lib/services/http.service.d.ts +0 -22
  442. package/lib/services/notifications.service.d.ts +0 -12
  443. package/lib/services/table-config.service.d.ts +0 -17
@@ -1,86 +0,0 @@
1
- import { OnInit, EventEmitter, OnDestroy } from '@angular/core';
2
- import { MatDialogRef } from '@angular/material/dialog';
3
- import { FormConfig, Field, TableConfig, Button, DetailsDialogConfig, Action, StepConfig, StatusConfig } from '../../classes/Classes';
4
- import { MessageService } from '../../services/message.service';
5
- import { DataServiceLib } from '../../services/datalib.service';
6
- import { LoaderService } from '../../services/loader.service';
7
- import { BreakpointObserver } from '@angular/cdk/layout';
8
- import { DialogService } from '../../services/dialog.service';
9
- import { ButtonService } from '../../services/button.service';
10
- import { Subject } from 'rxjs';
11
- import { AuthService } from '../../services/auth.service';
12
- import { TableConfigService } from '../../services/table-config.service';
13
- import { MatTabChangeEvent } from '@angular/material/tabs';
14
- import * as i0 from "@angular/core";
15
- export declare class DetailsDialogLite implements OnInit, OnDestroy {
16
- private breakpointObserver;
17
- private loaderService;
18
- dataService: DataServiceLib;
19
- private messageService;
20
- private dialogRef;
21
- detailsConfig: DetailsDialogConfig;
22
- private buttonService;
23
- private dialogService;
24
- private authService;
25
- tableConfigService: TableConfigService;
26
- constructor(breakpointObserver: BreakpointObserver, loaderService: LoaderService, dataService: DataServiceLib, messageService: MessageService, dialogRef: MatDialogRef<DetailsDialogLite>, detailsConfig: DetailsDialogConfig, buttonService: ButtonService, dialogService: DialogService, authService: AuthService, tableConfigService: TableConfigService);
27
- ngOnInit(): void;
28
- ngOnDestroy(): void;
29
- private refreshSubscription;
30
- autoRefreshEnabled: boolean;
31
- titleAction: string;
32
- loadByAction: boolean;
33
- extraButtons: Button[];
34
- buttons: Button[];
35
- createButton: Button;
36
- editButton: Button;
37
- deleteButton: Button;
38
- fileField: Field;
39
- files: any[];
40
- tableReload: Subject<boolean>;
41
- tableConfig: TableConfig;
42
- tableConfigs: TableConfig[];
43
- details: any;
44
- formConfig: FormConfig;
45
- stepConfig: StepConfig;
46
- statusConfig: StatusConfig;
47
- smallScreen: boolean;
48
- isLoadComplete: boolean;
49
- isProcessing: boolean;
50
- inputChange: EventEmitter<any>;
51
- selectedTabIndex: number;
52
- onTabChange(event: MatTabChangeEvent): void;
53
- private initAutoRefresh;
54
- private startAutoRefresh;
55
- private stopAutoRefresh;
56
- toggleAutoRefresh(): void;
57
- loadData(action: Action, causeTablesReload: any): void;
58
- inputChanged(event: any): void;
59
- setMode(newMode: any): void;
60
- setTitleAction(): void;
61
- getButton(name: string): Button;
62
- testDisabled(row: any, buttonName: string): boolean;
63
- testVisible(row: any, buttonName: string): boolean;
64
- testVisibleTab(tblConfig: TableConfig): boolean;
65
- getButtonColor(button: Button, row: any): string;
66
- getVisibleFields(): Field[];
67
- create(): void;
68
- edit(): void;
69
- delete(): void;
70
- custom(button: Button): void;
71
- private openNestedDetailsDialog;
72
- private refreshData;
73
- handleButtonAction(buttonName: string): void;
74
- processButtonAction(button: Button): void;
75
- private validateForm;
76
- private prepareActionData;
77
- private executeAction;
78
- private performApiCall;
79
- getClosePosition(): 'top' | 'bottom';
80
- getCloseText(): string;
81
- shouldShowTopClose(): boolean;
82
- shouldShowBottomClose(): boolean;
83
- close(): void;
84
- static ɵfac: i0.ɵɵFactoryDeclaration<DetailsDialogLite, never>;
85
- static ɵcmp: i0.ɵɵComponentDeclaration<DetailsDialogLite, "spa-detailsDialog-lite", never, {}, { "inputChange": "inputChange"; }, never, never, false>;
86
- }
@@ -1,91 +0,0 @@
1
- import { EventEmitter, OnInit, SimpleChanges } from '@angular/core';
2
- import { Action, Button, Color, Column, Icon, TableConfig } from '../../classes/Classes';
3
- 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';
14
- import * as i0 from "@angular/core";
15
- export declare class TableLiteComponent 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);
26
- 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;
43
- 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>;
51
- 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<TableLiteComponent, never>;
90
- static ɵcmp: i0.ɵɵComponentDeclaration<TableLiteComponent, "spa-table-lite", 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>;
91
- }
@@ -1,31 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { Column, TableConfig, Icon } from '../../classes/Classes';
3
- import { ButtonService } from '../../services/button.service';
4
- import * as i0 from "@angular/core";
5
- export declare class TableRowComponent {
6
- private buttonService;
7
- column: Column;
8
- row: any;
9
- config: TableConfig;
10
- smallScreen: boolean;
11
- actionClick: EventEmitter<{
12
- name: string;
13
- row: any;
14
- }>;
15
- columnClick: EventEmitter<{
16
- column: Column;
17
- row: any;
18
- }>;
19
- showBannerEvent: EventEmitter<string>;
20
- constructor(buttonService: ButtonService);
21
- testIconCondition(row: any, icon: Icon): boolean;
22
- getColorOnCondition(row: any, column: Column): string;
23
- getColor(value: any, options: any[]): string;
24
- onActionClick(name: string, row: any): void;
25
- onColumnClick(column: Column, row: any): void;
26
- showBanner(message: string): void;
27
- textDisplayed(row: any, column: Column): any;
28
- textTruncated(row: any, column: Column): boolean;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<TableRowComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<TableRowComponent, "app-table-row", never, { "column": "column"; "row": "row"; "config": "config"; "smallScreen": "smallScreen"; }, { "actionClick": "actionClick"; "columnClick": "columnClick"; "showBannerEvent": "showBannerEvent"; }, never, never, false>;
31
- }
@@ -1,32 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { TableConfig } from '../../classes/Classes';
3
- import { DataServiceLib } from '../../services/datalib.service';
4
- import { Subject } from 'rxjs';
5
- import * as i0 from "@angular/core";
6
- export declare class TabsComponent implements OnInit {
7
- private dataService;
8
- constructor(dataService: DataServiceLib);
9
- ngOnInit(): void;
10
- tableConfigs: TableConfig[];
11
- tabCounts: {
12
- [index: number]: number;
13
- };
14
- activeTabsLoaded: {
15
- [index: number]: boolean;
16
- };
17
- selectedTabIndex: number;
18
- tableReloads: {
19
- [index: number]: Subject<boolean>;
20
- };
21
- private loadAllCounts;
22
- private loadTabCount;
23
- onTabChange(event: any): void;
24
- getTabCount(index: number): number | undefined;
25
- shouldShowBadge(index: number): boolean;
26
- getTabTitle(config: TableConfig): string;
27
- shouldLoadTabData(index: number): boolean;
28
- refreshTabCount(index: number): void;
29
- onTableActionResponse(tabIndex: number, event: any): void;
30
- static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
31
- static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "spa-tabs", never, { "tableConfigs": "tableConfigs"; }, {}, never, never, false>;
32
- }
@@ -1,7 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/router";
3
- export declare class AdminRoutingModule {
4
- static ɵfac: i0.ɵɵFactoryDeclaration<AdminRoutingModule, never>;
5
- static ɵmod: i0.ɵɵNgModuleDeclaration<AdminRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
6
- static ɵinj: i0.ɵɵInjectorDeclaration<AdminRoutingModule>;
7
- }
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/common";
3
- import * as i2 from "./admin-routing.module";
4
- import * as i3 from "../spa-admin.module";
5
- export declare class AdminModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<AdminModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<AdminModule, never, [typeof i1.CommonModule, typeof i2.AdminRoutingModule, typeof i3.SpaAdminModule], never>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<AdminModule>;
9
- }
@@ -1,7 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/router";
3
- export declare class IndexRoutingModule {
4
- static ɵfac: i0.ɵɵFactoryDeclaration<IndexRoutingModule, never>;
5
- static ɵmod: i0.ɵɵNgModuleDeclaration<IndexRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
6
- static ɵinj: i0.ɵɵInjectorDeclaration<IndexRoutingModule>;
7
- }
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/common";
3
- import * as i2 from "./index-routing.module";
4
- import * as i3 from "../spa-index.module";
5
- export declare class IndexModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<IndexModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<IndexModule, never, [typeof i1.CommonModule, typeof i2.IndexRoutingModule, typeof i3.SpaIndexModule], never>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<IndexModule>;
9
- }
@@ -1,7 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/router";
3
- export declare class UserRoutingModule {
4
- static ɵfac: i0.ɵɵFactoryDeclaration<UserRoutingModule, never>;
5
- static ɵmod: i0.ɵɵNgModuleDeclaration<UserRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
6
- static ɵinj: i0.ɵɵInjectorDeclaration<UserRoutingModule>;
7
- }
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/common";
3
- import * as i2 from "./user-routing.module";
4
- import * as i3 from "../spa-user.module";
5
- export declare class UserModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<UserModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<UserModule, never, [typeof i1.CommonModule, typeof i2.UserRoutingModule, typeof i3.SpaUserModule], never>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<UserModule>;
9
- }
@@ -1,27 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { MatDialogRef } from '@angular/material/dialog';
3
- import { DataServiceLib } from '../../services/datalib.service';
4
- import { MessageService } from '../../services/message.service';
5
- import { FinAccount } from '../../classes/Classes';
6
- import { LoaderService } from '../../services/loader.service';
7
- import * as i0 from "@angular/core";
8
- export declare class accountDialog implements OnInit {
9
- private loaderService;
10
- private messageService;
11
- private dataService;
12
- private dialogRef;
13
- data: any;
14
- constructor(loaderService: LoaderService, messageService: MessageService, dataService: DataServiceLib, dialogRef: MatDialogRef<accountDialog>, data: any);
15
- ngOnInit(): void;
16
- action: any;
17
- account: FinAccount;
18
- isLoadComplete: boolean;
19
- isProcessing: boolean;
20
- currencies: {
21
- name: string;
22
- value: string;
23
- }[];
24
- submit(): void;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<accountDialog, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<accountDialog, "app-quanityDiag", never, {}, {}, never, never, false>;
27
- }
@@ -1,25 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { DataServiceLib } from '../../services/datalib.service';
3
- import { MessageService } from '../../services/message.service';
4
- import { AuthService } from '../../services/auth.service';
5
- import { MatDialog } from '@angular/material/dialog';
6
- import { Subject } from 'rxjs';
7
- import { Router } from '@angular/router';
8
- import * as i0 from "@angular/core";
9
- export declare class AccountsComponent implements OnInit {
10
- router: Router;
11
- private dataService;
12
- private messageService;
13
- authService: AuthService;
14
- dialog: MatDialog;
15
- constructor(router: Router, dataService: DataServiceLib, messageService: MessageService, authService: AuthService, dialog: MatDialog);
16
- ngOnInit(): void;
17
- reload: Subject<boolean>;
18
- accounts: any;
19
- loadData(): void;
20
- view(x: any): void;
21
- open(x: any): void;
22
- delete(row: any): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<AccountsComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<AccountsComponent, "spa-accounts", never, {}, {}, never, never, false>;
25
- }
@@ -1,15 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { DetailsDialogConfig, FormConfig, PageConfig, TableConfig } from '../../classes/Classes';
3
- import { DataServiceLib } from '../../services/datalib.service';
4
- import * as i0 from "@angular/core";
5
- export declare class AppModelsComponent implements OnInit {
6
- private dataService;
7
- constructor(dataService: DataServiceLib);
8
- ngOnInit(): void;
9
- appModelFormConfig: FormConfig;
10
- appModelDetailsConfig: DetailsDialogConfig;
11
- appModelTableConfig: TableConfig;
12
- pageConfig: PageConfig;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<AppModelsComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<AppModelsComponent, "spa-app-models", never, {}, {}, never, never, false>;
15
- }
@@ -1,10 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { DataServiceLib } from '../../services/datalib.service';
3
- import * as i0 from "@angular/core";
4
- export declare class ApprovalsComponent implements OnInit {
5
- dataService: DataServiceLib;
6
- constructor(dataService: DataServiceLib);
7
- ngOnInit(): void;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<ApprovalsComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<ApprovalsComponent, "spa-approvals", never, {}, {}, never, never, false>;
10
- }
@@ -1,24 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { DetailsDialogConfig, FormConfig, PageConfig, TableConfig } from '../../classes/Classes';
3
- import { DataServiceLib } from '../../services/datalib.service';
4
- import * as i0 from "@angular/core";
5
- export declare class ApprovalsConfigComponent implements OnInit {
6
- private dataService;
7
- constructor(dataService: DataServiceLib);
8
- ngOnInit(): void;
9
- approvalRoleFormConfig: FormConfig;
10
- approvalRolesTableConfig: TableConfig;
11
- approvalLevelOptions: {
12
- name: number;
13
- value: number;
14
- }[];
15
- approvalLevelFormConfig: FormConfig;
16
- approvalLevelDetailsConfig: DetailsDialogConfig;
17
- approvalLevelsTableConfig: TableConfig;
18
- approvalConfigFormConfig: FormConfig;
19
- approvalConfigDetailsConfig: DetailsDialogConfig;
20
- approvalConfigTable: TableConfig;
21
- pageConfig: PageConfig;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<ApprovalsConfigComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<ApprovalsConfigComponent, "spa-approvals-config", never, {}, {}, never, never, false>;
24
- }
@@ -1,8 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class BugComponent implements OnInit {
4
- constructor();
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<BugComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<BugComponent, "spa-bug", never, {}, {}, never, never, false>;
8
- }
@@ -1,27 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { MessageService } from '../../services/message.service';
3
- import { DataServiceLib } from '../../services/datalib.service';
4
- import { AuthService } from '../../services/auth.service';
5
- import { Location } from '@angular/common';
6
- import { HttpService } from '../../services/http.service';
7
- import { ActivatedRoute, Router } from '@angular/router';
8
- import { ChangeUserPassword } from '../../classes/LibClasses';
9
- import * as i0 from "@angular/core";
10
- export declare class ChangePasswordComponent implements OnInit {
11
- router: Router;
12
- private location;
13
- private httpService;
14
- private messageService;
15
- dataService: DataServiceLib;
16
- private authService;
17
- private route;
18
- constructor(router: Router, location: Location, httpService: HttpService, messageService: MessageService, dataService: DataServiceLib, authService: AuthService, route: ActivatedRoute);
19
- ngOnInit(): void;
20
- myRole: any;
21
- redirectPath: any;
22
- isProcessing: boolean;
23
- changePassword: ChangeUserPassword;
24
- change(): void;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<ChangePasswordComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<ChangePasswordComponent, "spa-change-password", never, {}, {}, never, never, false>;
27
- }
@@ -1,34 +0,0 @@
1
- import { DataServiceLib } from '../../services/datalib.service';
2
- import { OnInit } from '@angular/core';
3
- import { MessageService } from '../../services/message.service';
4
- import { AuthService } from '../../services/auth.service';
5
- import { AppConfig } from '../../classes/Classes';
6
- import { Router } from '@angular/router';
7
- import { HttpService } from '../../services/http.service';
8
- import { Register } from '../../classes/LibClasses';
9
- import * as i0 from "@angular/core";
10
- export declare class CreateAccountComponent implements OnInit {
11
- private httpService;
12
- private messageService;
13
- private dataService;
14
- private authService;
15
- router: Router;
16
- constructor(httpService: HttpService, messageService: MessageService, dataService: DataServiceLib, authService: AuthService, router: Router);
17
- ngOnInit(): void;
18
- appConfig: AppConfig;
19
- isProcessing: boolean;
20
- register: Register;
21
- confirmPassword: string;
22
- openProfile: boolean;
23
- authTypes: {
24
- name: string;
25
- value: string;
26
- }[];
27
- roles: any;
28
- check(): void;
29
- loadRoles(): void;
30
- create(): void;
31
- viewProfile(userName: string): void;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<CreateAccountComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<CreateAccountComponent, "spa-create-account", never, { "appConfig": "appConfig"; }, {}, never, never, false>;
34
- }
@@ -1,12 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { DataServiceLib } from '../../services/datalib.service';
3
- import { AuthService } from '../../services/auth.service';
4
- import * as i0 from "@angular/core";
5
- export declare class CustomersComponent implements OnInit {
6
- dataService: DataServiceLib;
7
- authService: AuthService;
8
- constructor(dataService: DataServiceLib, authService: AuthService);
9
- ngOnInit(): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomersComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomersComponent, "spa-customers", never, {}, {}, never, never, false>;
12
- }
@@ -1,14 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { DataServiceLib } from '../../services/datalib.service';
3
- import { MessageService } from '../../services/message.service';
4
- import { AuthService } from '../../services/auth.service';
5
- import * as i0 from "@angular/core";
6
- export declare class DepartmentsComponent implements OnInit {
7
- dataService: DataServiceLib;
8
- private messageService;
9
- authService: AuthService;
10
- constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService);
11
- ngOnInit(): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<DepartmentsComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<DepartmentsComponent, "spa-departments", never, {}, {}, never, never, false>;
14
- }
@@ -1,12 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { DataServiceLib } from '../../services/datalib.service';
3
- import { AuthService } from '../../services/auth.service';
4
- import * as i0 from "@angular/core";
5
- export declare class EmployeesComponent implements OnInit {
6
- dataService: DataServiceLib;
7
- authService: AuthService;
8
- constructor(dataService: DataServiceLib, authService: AuthService);
9
- ngOnInit(): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<EmployeesComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<EmployeesComponent, "spa-employees", never, {}, {}, never, never, false>;
12
- }
@@ -1,8 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class GradesComponent implements OnInit {
4
- constructor();
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<GradesComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<GradesComponent, "spa-grades", never, {}, {}, never, never, false>;
8
- }
@@ -1,25 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { DataServiceLib } from '../../services/datalib.service';
3
- import { FormConfig, TableConfig } from '../../classes/Classes';
4
- import { MessageService } from '../../services/message.service';
5
- import { AuthService } from '../../services/auth.service';
6
- import { MatDialog } from '@angular/material/dialog';
7
- import { Subject } from 'rxjs';
8
- import * as i0 from "@angular/core";
9
- export declare class InventoryComponent implements OnInit {
10
- private dataService;
11
- private messageService;
12
- authService: AuthService;
13
- dialog: MatDialog;
14
- constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService, dialog: MatDialog);
15
- ngOnInit(): void;
16
- loadData(): void;
17
- reload: Subject<boolean>;
18
- clicked(x: any): void;
19
- comment(x: any): void;
20
- cats(): void;
21
- formConfig: FormConfig;
22
- config: TableConfig;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<InventoryComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<InventoryComponent, "spa-inventory", never, {}, {}, never, never, false>;
25
- }
@@ -1,23 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { MatDialogRef } from '@angular/material/dialog';
3
- import { DataServiceLib } from '../../services/datalib.service';
4
- import { MessageService } from '../../services/message.service';
5
- import { LoaderService } from '../../services/loader.service';
6
- import * as i0 from "@angular/core";
7
- export declare class quantityDialog implements OnInit {
8
- private loaderService;
9
- private messageService;
10
- private dataService;
11
- private dialogRef;
12
- data: any;
13
- constructor(loaderService: LoaderService, messageService: MessageService, dataService: DataServiceLib, dialogRef: MatDialogRef<quantityDialog>, data: any);
14
- ngOnInit(): void;
15
- quantity: number;
16
- action: any;
17
- inv: any;
18
- isLoadComplete: boolean;
19
- isProcessing: boolean;
20
- submit(): void;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<quantityDialog, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<quantityDialog, "app-quanityDiag", never, {}, {}, never, never, false>;
23
- }
@@ -1,19 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { TableConfig } from '../../classes/Classes';
3
- import { DataServiceLib } from '../../services/datalib.service';
4
- import { MessageService } from '../../services/message.service';
5
- import { AuthService } from '../../services/auth.service';
6
- import { Subject } from 'rxjs';
7
- import * as i0 from "@angular/core";
8
- export declare class InvitationsTableComponent implements OnInit {
9
- dataService: DataServiceLib;
10
- private messageService;
11
- authService: AuthService;
12
- constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService);
13
- ngOnInit(): void;
14
- invActionClicked(x: any): void;
15
- tableReload: Subject<boolean>;
16
- invitationsTableConfig: TableConfig;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<InvitationsTableComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<InvitationsTableComponent, "spa-invitations-table", never, {}, {}, never, never, false>;
19
- }