tin-spa 9.0.0 → 9.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (249) hide show
  1. package/bundles/tin-spa.umd.js +4416 -1589
  2. package/bundles/tin-spa.umd.js.map +1 -1
  3. package/bundles/tin-spa.umd.min.js +2 -2
  4. package/bundles/tin-spa.umd.min.js.map +1 -1
  5. package/esm2015/lib/classes/Classes.js +58 -45
  6. package/esm2015/lib/classes/TinCore.js +137 -0
  7. package/esm2015/lib/components/activity/activity.component.js +84 -18
  8. package/esm2015/lib/components/attach/attach.component.js +101 -27
  9. package/esm2015/lib/components/change-password/change-password.component.js +122 -34
  10. package/esm2015/lib/components/check/check.component.js +39 -33
  11. package/esm2015/lib/components/chips/chips.component.js +75 -35
  12. package/esm2015/lib/components/create-account/create-account.component.js +124 -42
  13. package/esm2015/lib/components/date/date.component.js +54 -33
  14. package/esm2015/lib/components/datetime/datetime.component.js +43 -30
  15. package/esm2015/lib/components/filter/filter.component.js +64 -0
  16. package/esm2015/lib/components/html/html.component.js +30 -25
  17. package/esm2015/lib/components/label/label.component.js +109 -21
  18. package/esm2015/lib/components/loader/loader.component.js +43 -20
  19. package/esm2015/lib/components/login/login.component.js +194 -76
  20. package/esm2015/lib/components/logs/logs.component.js +180 -28
  21. package/esm2015/lib/components/message/messageDialog.component.js +128 -17
  22. package/esm2015/lib/components/money/currency-input-mask.directive.js +187 -0
  23. package/esm2015/lib/components/money/currency-input-mask.module.js +30 -0
  24. package/esm2015/lib/components/money/money.component.js +141 -39
  25. package/esm2015/lib/components/nav-menu/nav-menu.component.js +174 -21
  26. package/esm2015/lib/components/option/option.component.js +107 -40
  27. package/esm2015/lib/components/profile/profile.component.js +143 -53
  28. package/esm2015/lib/components/recover-account/recover-account.component.js +48 -26
  29. package/esm2015/lib/components/roles/addRoleDialog.component.js +99 -26
  30. package/esm2015/lib/components/roles/roles.component.js +153 -73
  31. package/esm2015/lib/components/select/select.component.js +108 -48
  32. package/esm2015/lib/components/settings/settings.component.js +76 -21
  33. package/esm2015/lib/components/signup/signup.component.js +107 -24
  34. package/esm2015/lib/components/steps/steps.component.js +47 -31
  35. package/esm2015/lib/components/table/table.component.js +301 -35
  36. package/esm2015/lib/components/text/text.component.js +146 -71
  37. package/esm2015/lib/components/tiles/tiles.component.js +75 -21
  38. package/esm2015/lib/components/timeout/timeout.component.js +65 -22
  39. package/esm2015/lib/components/tin-spa.component.js +19 -12
  40. package/esm2015/lib/components/users/users.component.js +308 -65
  41. package/esm2015/lib/components/viewer/viewer.component.js +64 -39
  42. package/esm2015/lib/components/viewer/viewerDialog.component.js +73 -18
  43. package/esm2015/lib/dnd.directive.js +30 -25
  44. package/esm2015/lib/modules/spa-admin.module.js +65 -51
  45. package/esm2015/lib/modules/spa-index.module.js +45 -20
  46. package/esm2015/lib/modules/spa-mat.module.js +40 -25
  47. package/esm2015/lib/modules/spa-user.module.js +43 -19
  48. package/esm2015/lib/services/auth.service.js +39 -50
  49. package/esm2015/lib/services/data.service.js +82 -49
  50. package/esm2015/lib/services/export.service.js +11 -11
  51. package/esm2015/lib/services/http.service.js +79 -0
  52. package/esm2015/lib/services/loader-interceptor.service.js +30 -30
  53. package/esm2015/lib/services/loader.service.js +11 -11
  54. package/esm2015/lib/services/log.service.js +12 -12
  55. package/esm2015/lib/services/message.service.js +11 -17
  56. package/esm2015/lib/services/storage.service.js +12 -11
  57. package/esm2015/lib/services/tin-spa.service.js +11 -11
  58. package/esm2015/lib/tin-spa.module.js +113 -48
  59. package/esm2015/public-api.js +4 -6
  60. package/esm2015/tin-spa.js +1 -5
  61. package/esm5/lib/classes/Classes.js +70 -55
  62. package/esm5/lib/classes/TinCore.js +164 -0
  63. package/esm5/lib/components/activity/activity.component.js +82 -15
  64. package/esm5/lib/components/attach/attach.component.js +100 -24
  65. package/esm5/lib/components/change-password/change-password.component.js +120 -31
  66. package/esm5/lib/components/check/check.component.js +37 -30
  67. package/esm5/lib/components/chips/chips.component.js +73 -32
  68. package/esm5/lib/components/create-account/create-account.component.js +122 -39
  69. package/esm5/lib/components/date/date.component.js +52 -30
  70. package/esm5/lib/components/datetime/datetime.component.js +41 -27
  71. package/esm5/lib/components/filter/filter.component.js +66 -0
  72. package/esm5/lib/components/html/html.component.js +28 -22
  73. package/esm5/lib/components/label/label.component.js +107 -18
  74. package/esm5/lib/components/loader/loader.component.js +41 -17
  75. package/esm5/lib/components/login/login.component.js +193 -74
  76. package/esm5/lib/components/logs/logs.component.js +178 -25
  77. package/esm5/lib/components/message/messageDialog.component.js +126 -14
  78. package/esm5/lib/components/money/currency-input-mask.directive.js +193 -0
  79. package/esm5/lib/components/money/currency-input-mask.module.js +34 -0
  80. package/esm5/lib/components/money/money.component.js +139 -36
  81. package/esm5/lib/components/nav-menu/nav-menu.component.js +172 -18
  82. package/esm5/lib/components/option/option.component.js +105 -37
  83. package/esm5/lib/components/profile/profile.component.js +141 -50
  84. package/esm5/lib/components/recover-account/recover-account.component.js +46 -23
  85. package/esm5/lib/components/roles/addRoleDialog.component.js +97 -23
  86. package/esm5/lib/components/roles/roles.component.js +152 -72
  87. package/esm5/lib/components/select/select.component.js +106 -45
  88. package/esm5/lib/components/settings/settings.component.js +74 -18
  89. package/esm5/lib/components/signup/signup.component.js +105 -21
  90. package/esm5/lib/components/steps/steps.component.js +46 -28
  91. package/esm5/lib/components/table/table.component.js +299 -32
  92. package/esm5/lib/components/text/text.component.js +144 -68
  93. package/esm5/lib/components/tiles/tiles.component.js +73 -18
  94. package/esm5/lib/components/timeout/timeout.component.js +63 -19
  95. package/esm5/lib/components/tin-spa.component.js +16 -8
  96. package/esm5/lib/components/users/users.component.js +307 -62
  97. package/esm5/lib/components/viewer/viewer.component.js +62 -36
  98. package/esm5/lib/components/viewer/viewerDialog.component.js +71 -15
  99. package/esm5/lib/dnd.directive.js +28 -22
  100. package/esm5/lib/modules/spa-admin.module.js +63 -48
  101. package/esm5/lib/modules/spa-index.module.js +43 -17
  102. package/esm5/lib/modules/spa-mat.module.js +38 -22
  103. package/esm5/lib/modules/spa-user.module.js +41 -16
  104. package/esm5/lib/services/auth.service.js +37 -47
  105. package/esm5/lib/services/data.service.js +89 -55
  106. package/esm5/lib/services/export.service.js +9 -8
  107. package/esm5/lib/services/http.service.js +81 -0
  108. package/esm5/lib/services/loader-interceptor.service.js +28 -27
  109. package/esm5/lib/services/loader.service.js +9 -8
  110. package/esm5/lib/services/log.service.js +11 -9
  111. package/esm5/lib/services/message.service.js +9 -14
  112. package/esm5/lib/services/storage.service.js +10 -8
  113. package/esm5/lib/services/tin-spa.service.js +9 -8
  114. package/esm5/lib/tin-spa.module.js +111 -45
  115. package/esm5/public-api.js +4 -6
  116. package/esm5/tin-spa.js +1 -5
  117. package/fesm2015/tin-spa.js +4418 -1612
  118. package/fesm2015/tin-spa.js.map +1 -1
  119. package/fesm5/tin-spa.js +4442 -1612
  120. package/fesm5/tin-spa.js.map +1 -1
  121. package/lib/classes/Classes.d.ts +55 -43
  122. package/lib/classes/TinCore.d.ts +27 -0
  123. package/lib/components/activity/activity.component.d.ts +3 -5
  124. package/lib/components/attach/attach.component.d.ts +3 -5
  125. package/lib/components/change-password/change-password.component.d.ts +11 -9
  126. package/lib/components/check/check.component.d.ts +3 -5
  127. package/lib/components/chips/chips.component.d.ts +3 -5
  128. package/lib/components/create-account/create-account.component.d.ts +13 -13
  129. package/lib/components/date/date.component.d.ts +6 -7
  130. package/lib/components/datetime/datetime.component.d.ts +3 -5
  131. package/lib/components/filter/filter.component.d.ts +15 -0
  132. package/lib/components/html/html.component.d.ts +3 -5
  133. package/lib/components/label/label.component.d.ts +3 -5
  134. package/lib/components/loader/loader.component.d.ts +3 -5
  135. package/lib/components/login/login.component.d.ts +12 -14
  136. package/lib/components/logs/logs.component.d.ts +5 -9
  137. package/lib/components/message/messageDialog.component.d.ts +3 -5
  138. package/lib/components/money/currency-input-mask.directive.d.ts +41 -0
  139. package/lib/components/money/currency-input-mask.module.d.ts +8 -0
  140. package/lib/components/money/money.component.d.ts +19 -8
  141. package/lib/components/nav-menu/nav-menu.component.d.ts +3 -5
  142. package/lib/components/option/option.component.d.ts +4 -5
  143. package/lib/components/profile/profile.component.d.ts +9 -11
  144. package/lib/components/recover-account/recover-account.component.d.ts +6 -8
  145. package/lib/components/roles/addRoleDialog.component.d.ts +5 -7
  146. package/lib/components/roles/roles.component.d.ts +6 -10
  147. package/lib/components/select/select.component.d.ts +4 -6
  148. package/lib/components/settings/settings.component.d.ts +5 -7
  149. package/lib/components/signup/signup.component.d.ts +6 -8
  150. package/lib/components/steps/steps.component.d.ts +3 -5
  151. package/lib/components/table/table.component.d.ts +3 -5
  152. package/lib/components/text/text.component.d.ts +4 -5
  153. package/lib/components/tiles/tiles.component.d.ts +3 -5
  154. package/lib/components/timeout/timeout.component.d.ts +3 -5
  155. package/lib/components/tin-spa.component.d.ts +3 -5
  156. package/lib/components/users/users.component.d.ts +8 -13
  157. package/lib/components/viewer/viewer.component.d.ts +3 -5
  158. package/lib/components/viewer/viewerDialog.component.d.ts +4 -6
  159. package/lib/dnd.directive.d.ts +3 -5
  160. package/lib/modules/spa-admin.module.d.ts +13 -19
  161. package/lib/modules/spa-index.module.d.ts +10 -11
  162. package/lib/modules/spa-mat.module.d.ts +30 -32
  163. package/lib/modules/spa-user.module.d.ts +9 -10
  164. package/lib/services/auth.service.d.ts +14 -14
  165. package/lib/services/data.service.d.ts +28 -17
  166. package/lib/services/export.service.d.ts +3 -4
  167. package/lib/services/http.service.d.ts +22 -0
  168. package/lib/services/loader-interceptor.service.d.ts +3 -5
  169. package/lib/services/loader.service.d.ts +3 -4
  170. package/lib/services/log.service.d.ts +3 -4
  171. package/lib/services/message.service.d.ts +3 -4
  172. package/lib/services/storage.service.d.ts +3 -4
  173. package/lib/services/tin-spa.service.d.ts +3 -4
  174. package/lib/tin-spa.module.d.ts +35 -35
  175. package/package.json +2 -10
  176. package/public-api.d.ts +3 -5
  177. package/tin-spa.d.ts +1 -6
  178. package/__ivy_ngcc__/fesm2015/tin-spa.js +0 -6813
  179. package/__ivy_ngcc__/fesm2015/tin-spa.js.map +0 -1
  180. package/esm2015/lib/components/profiles/profiles.component.js +0 -16
  181. package/esm2015/lib/components/roles/editRoleDialog.component.js +0 -57
  182. package/esm2015/lib/components/roles/viewRoleDialog.component.js +0 -38
  183. package/esm2015/lib/components/users/addUserDialog.component.js +0 -53
  184. package/esm2015/lib/components/users/editUserDialog.component.js +0 -96
  185. package/esm5/lib/components/profiles/profiles.component.js +0 -18
  186. package/esm5/lib/components/roles/editRoleDialog.component.js +0 -59
  187. package/esm5/lib/components/roles/viewRoleDialog.component.js +0 -39
  188. package/esm5/lib/components/users/addUserDialog.component.js +0 -55
  189. package/esm5/lib/components/users/editUserDialog.component.js +0 -99
  190. package/lib/components/activity/activity.component.d.ts.__ivy_ngcc_bak +0 -8
  191. package/lib/components/attach/attach.component.d.ts.__ivy_ngcc_bak +0 -39
  192. package/lib/components/change-password/change-password.component.d.ts.__ivy_ngcc_bak +0 -20
  193. package/lib/components/check/check.component.d.ts.__ivy_ngcc_bak +0 -16
  194. package/lib/components/chips/chips.component.d.ts.__ivy_ngcc_bak +0 -15
  195. package/lib/components/create-account/create-account.component.d.ts.__ivy_ngcc_bak +0 -25
  196. package/lib/components/date/date.component.d.ts.__ivy_ngcc_bak +0 -13
  197. package/lib/components/datetime/datetime.component.d.ts.__ivy_ngcc_bak +0 -12
  198. package/lib/components/html/html.component.d.ts.__ivy_ngcc_bak +0 -12
  199. package/lib/components/label/label.component.d.ts.__ivy_ngcc_bak +0 -8
  200. package/lib/components/loader/loader.component.d.ts.__ivy_ngcc_bak +0 -9
  201. package/lib/components/login/login.component.d.ts.__ivy_ngcc_bak +0 -29
  202. package/lib/components/logs/logs.component.d.ts.__ivy_ngcc_bak +0 -17
  203. package/lib/components/message/messageDialog.component.d.ts.__ivy_ngcc_bak +0 -12
  204. package/lib/components/money/money.component.d.ts.__ivy_ngcc_bak +0 -14
  205. package/lib/components/nav-menu/nav-menu.component.d.ts.__ivy_ngcc_bak +0 -17
  206. package/lib/components/option/option.component.d.ts.__ivy_ngcc_bak +0 -17
  207. package/lib/components/profile/profile.component.d.ts.__ivy_ngcc_bak +0 -30
  208. package/lib/components/profiles/profiles.component.d.ts +0 -10
  209. package/lib/components/profiles/profiles.component.d.ts.__ivy_ngcc_bak +0 -5
  210. package/lib/components/recover-account/recover-account.component.d.ts.__ivy_ngcc_bak +0 -15
  211. package/lib/components/roles/addRoleDialog.component.d.ts.__ivy_ngcc_bak +0 -19
  212. package/lib/components/roles/editRoleDialog.component.d.ts +0 -24
  213. package/lib/components/roles/editRoleDialog.component.d.ts.__ivy_ngcc_bak +0 -19
  214. package/lib/components/roles/roles.component.d.ts.__ivy_ngcc_bak +0 -29
  215. package/lib/components/roles/viewRoleDialog.component.d.ts +0 -20
  216. package/lib/components/roles/viewRoleDialog.component.d.ts.__ivy_ngcc_bak +0 -15
  217. package/lib/components/select/select.component.d.ts.__ivy_ngcc_bak +0 -20
  218. package/lib/components/settings/settings.component.d.ts.__ivy_ngcc_bak +0 -16
  219. package/lib/components/signup/signup.component.d.ts.__ivy_ngcc_bak +0 -20
  220. package/lib/components/steps/steps.component.d.ts.__ivy_ngcc_bak +0 -15
  221. package/lib/components/table/table.component.d.ts.__ivy_ngcc_bak +0 -25
  222. package/lib/components/text/text.component.d.ts.__ivy_ngcc_bak +0 -37
  223. package/lib/components/tiles/tiles.component.d.ts.__ivy_ngcc_bak +0 -11
  224. package/lib/components/timeout/timeout.component.d.ts.__ivy_ngcc_bak +0 -21
  225. package/lib/components/tin-spa.component.d.ts.__ivy_ngcc_bak +0 -5
  226. package/lib/components/users/addUserDialog.component.d.ts +0 -21
  227. package/lib/components/users/addUserDialog.component.d.ts.__ivy_ngcc_bak +0 -16
  228. package/lib/components/users/editUserDialog.component.d.ts +0 -32
  229. package/lib/components/users/editUserDialog.component.d.ts.__ivy_ngcc_bak +0 -27
  230. package/lib/components/users/users.component.d.ts.__ivy_ngcc_bak +0 -35
  231. package/lib/components/viewer/viewer.component.d.ts.__ivy_ngcc_bak +0 -16
  232. package/lib/components/viewer/viewerDialog.component.d.ts.__ivy_ngcc_bak +0 -19
  233. package/lib/dnd.directive.d.ts.__ivy_ngcc_bak +0 -8
  234. package/lib/modules/spa-admin.module.d.ts.__ivy_ngcc_bak +0 -2
  235. package/lib/modules/spa-index.module.d.ts.__ivy_ngcc_bak +0 -2
  236. package/lib/modules/spa-mat.module.d.ts.__ivy_ngcc_bak +0 -2
  237. package/lib/modules/spa-user.module.d.ts.__ivy_ngcc_bak +0 -2
  238. package/lib/services/auth.service.d.ts.__ivy_ngcc_bak +0 -45
  239. package/lib/services/data.service.d.ts.__ivy_ngcc_bak +0 -23
  240. package/lib/services/export.service.d.ts.__ivy_ngcc_bak +0 -7
  241. package/lib/services/loader-interceptor.service.d.ts.__ivy_ngcc_bak +0 -18
  242. package/lib/services/loader.service.d.ts.__ivy_ngcc_bak +0 -5
  243. package/lib/services/log.service.d.ts.__ivy_ngcc_bak +0 -16
  244. package/lib/services/message.service.d.ts.__ivy_ngcc_bak +0 -12
  245. package/lib/services/storage.service.d.ts.__ivy_ngcc_bak +0 -7
  246. package/lib/services/tin-spa.service.d.ts.__ivy_ngcc_bak +0 -3
  247. package/lib/tin-spa.module.d.ts.__ivy_ngcc_bak +0 -2
  248. package/tin-spa.d.ts.__ivy_ngcc_bak +0 -8
  249. package/tin-spa.metadata.json +0 -1
@@ -91,11 +91,11 @@ export declare class AppConfig {
91
91
  constructor();
92
92
  appName: string;
93
93
  logo: string;
94
- capItems: CapItem[];
94
+ logoSize: string;
95
95
  ADAuth: boolean;
96
96
  localAuth: boolean;
97
- employees: boolean;
98
- approvals: boolean;
97
+ selfService: boolean;
98
+ capItems: CapItem[];
99
99
  }
100
100
  export declare class CapItem {
101
101
  constructor();
@@ -110,9 +110,60 @@ export declare class CapItem {
110
110
  icon: string;
111
111
  capSubItems: CapItem[];
112
112
  }
113
+ export declare class Account {
114
+ user: User;
115
+ profile: Profile;
116
+ }
117
+ export declare class User {
118
+ constructor();
119
+ userName: string;
120
+ password: string;
121
+ tries: string;
122
+ locked: string;
123
+ logged: string;
124
+ disabled: string;
125
+ changepassword: string;
126
+ dateCreated: string;
127
+ dateUpdated: string;
128
+ dateExpire: string;
129
+ token: string;
130
+ tokenExpire: string;
131
+ authType: string;
132
+ }
133
+ export declare class ChangeUserPassword {
134
+ constructor();
135
+ userName: string;
136
+ currentPassword: string;
137
+ newPassword: string;
138
+ confirmPassword: string;
139
+ }
140
+ export declare class Register {
141
+ constructor();
142
+ userName: string;
143
+ roleID: number;
144
+ firstName: string;
145
+ lastName: string;
146
+ email: string;
147
+ authType: string;
148
+ password: string;
149
+ }
150
+ export declare class Profile {
151
+ constructor();
152
+ profileID: string;
153
+ userName: string;
154
+ roleID: number;
155
+ firstName: string;
156
+ lastName: string;
157
+ email: string;
158
+ empID: string;
159
+ arID: string;
160
+ authType: string;
161
+ password: string;
162
+ role: Role;
163
+ }
113
164
  export declare class Role {
114
165
  constructor();
115
- roleID: string;
166
+ roleID: number;
116
167
  roleName: string;
117
168
  cap1: boolean;
118
169
  cap2: boolean;
@@ -215,42 +266,3 @@ export declare class Role {
215
266
  cap99: boolean;
216
267
  cap100: boolean;
217
268
  }
218
- export declare class Account {
219
- user: User;
220
- profile: Profile;
221
- }
222
- export declare class User {
223
- constructor();
224
- userID: string;
225
- password: string;
226
- tries: string;
227
- locked: string;
228
- logged: string;
229
- disabled: string;
230
- changepassword: string;
231
- dateCreated: string;
232
- dateUpdated: string;
233
- dateExpire: string;
234
- token: string;
235
- tokenExpire: string;
236
- authType: string;
237
- }
238
- export declare class ChangeUserPassword {
239
- constructor();
240
- userID: string;
241
- currentPassword: string;
242
- newPassword: string;
243
- confirmPassword: string;
244
- }
245
- export declare class Profile {
246
- constructor();
247
- profileID: string;
248
- userID: string;
249
- roleID: string;
250
- firstName: string;
251
- lastName: string;
252
- email: string;
253
- empID: string;
254
- arID: string;
255
- authType: string;
256
- }
@@ -0,0 +1,27 @@
1
+ export declare class Core {
2
+ static getClone(x: any): any;
3
+ static getNumber(value: string): string | 0;
4
+ static getFirstDayOfMonth(): Date;
5
+ static emailIsValid(email: any): boolean;
6
+ static isValidUNCPath(path: string): boolean;
7
+ static isValidDate(date: any): boolean;
8
+ static isValidEmailList(list: string): boolean;
9
+ static nullDate: string;
10
+ static isNumber(value: string | number): boolean;
11
+ static getDiff(startDate: any, endDate?: string): string;
12
+ static nowDate(NoTime?: boolean): string;
13
+ static getFormatedDate(dateString: string, NoTime?: boolean): string;
14
+ static getBusinessDatesCount(startDate: string, endDate: string): number;
15
+ }
16
+ export declare class ApiResponse {
17
+ success: boolean;
18
+ message: string;
19
+ data: any;
20
+ }
21
+ export declare class Constants {
22
+ static readonly AUTH_USER = "a";
23
+ static readonly AUTH_NAME = "b";
24
+ static readonly AUTH_ROLES = "c";
25
+ static readonly AUTH_TOKEN = "d";
26
+ static readonly AUTH_TOKEN_EXPIRE = "e";
27
+ }
@@ -1,13 +1,11 @@
1
1
  import { OnInit } from '@angular/core';
2
- import * as ɵngcc0 from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
3
  export declare class ActivityComponent implements OnInit {
4
4
  constructor();
5
5
  ngOnInit(): void;
6
6
  notes: any[];
7
7
  notesMessage: string;
8
8
  title: string;
9
- static ɵfac: ɵngcc0.ɵɵFactoryDef<ActivityComponent, never>;
10
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<ActivityComponent, "spa-activity", never, { "notes": "notes"; "title": "title"; }, {}, never, never>;
9
+ static ɵfac: i0.ɵɵFactoryDef<ActivityComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<ActivityComponent, "spa-activity", never, { "notes": "notes"; "title": "title"; }, {}, never, never>;
11
11
  }
12
-
13
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aXZpdHkuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImFjdGl2aXR5LmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgQWN0aXZpdHlDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgY29uc3RydWN0b3IoKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICBub3RlczogYW55W107XHJcbiAgICBub3Rlc01lc3NhZ2U6IHN0cmluZztcclxuICAgIHRpdGxlOiBzdHJpbmc7XHJcbn1cclxuIl19
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
- import * as ɵngcc0 from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
3
  export declare class AttachComponent implements OnInit {
4
4
  constructor();
5
5
  ngOnInit(): void;
@@ -37,8 +37,6 @@ export declare class AttachComponent implements OnInit {
37
37
  formatBytes(bytes: any, decimals: any): string;
38
38
  uploaded(): void;
39
39
  filesChanged(): void;
40
- static ɵfac: ɵngcc0.ɵɵFactoryDef<AttachComponent, never>;
41
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<AttachComponent, "spa-attach", never, { "message": "message"; "files": "files"; "enableUpload": "enableUpload"; }, { "filesChange": "filesChange"; "upload": "upload"; }, never, never>;
40
+ static ɵfac: i0.ɵɵFactoryDef<AttachComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<AttachComponent, "spa-attach", never, { "message": "message"; "files": "files"; "enableUpload": "enableUpload"; }, { "filesChange": "filesChange"; "upload": "upload"; }, never, never>;
42
42
  }
43
-
44
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXR0YWNoLmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJhdHRhY2guY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXZlbnRFbWl0dGVyLCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgQXR0YWNoQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICAgIGNvbnN0cnVjdG9yKCk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgbWVzc2FnZTogc3RyaW5nO1xyXG4gICAgZmlsZXM6IGFueVtdO1xyXG4gICAgZmlsZXNDaGFuZ2U6IEV2ZW50RW1pdHRlcjxhbnk+O1xyXG4gICAgdXBsb2FkOiBFdmVudEVtaXR0ZXI8YW55PjtcclxuICAgIGVuYWJsZVVwbG9hZDogYm9vbGVhbjtcclxuICAgIC8qKlxyXG4gICAgICogb24gZmlsZSBkcm9wIGhhbmRsZXJcclxuICAgICAqL1xyXG4gICAgb25GaWxlRHJvcHBlZCgkZXZlbnQ6IGFueSk6IHZvaWQ7XHJcbiAgICAvKipcclxuICAgICAqIGhhbmRsZSBmaWxlIGZyb20gYnJvd3NpbmdcclxuICAgICAqL1xyXG4gICAgZmlsZUJyb3dzZUhhbmRsZXIoZmlsZXM6IGFueSk6IHZvaWQ7XHJcbiAgICAvKipcclxuICAgICAqIERlbGV0ZSBmaWxlIGZyb20gZmlsZXMgbGlzdFxyXG4gICAgICogQHBhcmFtIGluZGV4IChGaWxlIGluZGV4KVxyXG4gICAgICovXHJcbiAgICBkZWxldGVGaWxlKGluZGV4OiBudW1iZXIpOiB2b2lkO1xyXG4gICAgLyoqXHJcbiAgICAgKiBTaW11bGF0ZSB0aGUgdXBsb2FkIHByb2Nlc3NcclxuICAgICAqL1xyXG4gICAgLyoqXHJcbiAgICAgKiBDb252ZXJ0IEZpbGVzIGxpc3QgdG8gbm9ybWFsIGFycmF5IGxpc3RcclxuICAgICAqIEBwYXJhbSBmaWxlcyAoRmlsZXMgTGlzdClcclxuICAgICAqL1xyXG4gICAgcHJlcGFyZUZpbGVzTGlzdChmaWxlczogQXJyYXk8YW55Pik6IHZvaWQ7XHJcbiAgICAvKipcclxuICAgICAqIGZvcm1hdCBieXRlc1xyXG4gICAgICogQHBhcmFtIGJ5dGVzIChGaWxlIHNpemUgaW4gYnl0ZXMpXHJcbiAgICAgKiBAcGFyYW0gZGVjaW1hbHMgKERlY2ltYWxzIHBvaW50KVxyXG4gICAgICovXHJcbiAgICBmb3JtYXRCeXRlcyhieXRlczogYW55LCBkZWNpbWFsczogYW55KTogc3RyaW5nO1xyXG4gICAgdXBsb2FkZWQoKTogdm9pZDtcclxuICAgIGZpbGVzQ2hhbmdlZCgpOiB2b2lkO1xyXG59XHJcbiJdfQ==
@@ -1,25 +1,27 @@
1
1
  import { ChangeUserPassword } from './../../classes/Classes';
2
2
  import { OnInit } from '@angular/core';
3
3
  import { MessageService } from '../../services/message.service';
4
- import { DataService } from '../../services/data.service';
4
+ import { DataServiceLib } from '../../services/data.service';
5
5
  import { AuthService } from '../../services/auth.service';
6
- import { HttpService } from 'tin-core';
7
6
  import { Location } from '@angular/common';
8
- import * as ɵngcc0 from '@angular/core';
7
+ import { HttpService } from '../../services/http.service';
8
+ import { ActivatedRoute, Router } from '@angular/router';
9
+ import * as i0 from "@angular/core";
9
10
  export declare class ChangePasswordComponent implements OnInit {
11
+ router: Router;
10
12
  private location;
11
13
  private httpService;
12
14
  private messageService;
13
- dataService: DataService;
15
+ dataService: DataServiceLib;
14
16
  private authService;
15
- constructor(location: Location, httpService: HttpService, messageService: MessageService, dataService: DataService, authService: AuthService);
17
+ private route;
18
+ constructor(router: Router, location: Location, httpService: HttpService, messageService: MessageService, dataService: DataServiceLib, authService: AuthService, route: ActivatedRoute);
16
19
  ngOnInit(): void;
17
20
  myRole: any;
21
+ redirectPath: any;
18
22
  isProcessing: boolean;
19
23
  changePassword: ChangeUserPassword;
20
24
  change(): void;
21
- static ɵfac: ɵngcc0.ɵɵFactoryDef<ChangePasswordComponent, never>;
22
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<ChangePasswordComponent, "spa-change-password", never, {}, {}, never, never>;
25
+ static ɵfac: i0.ɵɵFactoryDef<ChangePasswordComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<ChangePasswordComponent, "spa-change-password", never, {}, {}, never, never>;
23
27
  }
24
-
25
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhbmdlLXBhc3N3b3JkLmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJjaGFuZ2UtcGFzc3dvcmQuY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZVVzZXJQYXNzd29yZCB9IGZyb20gJy4vLi4vLi4vY2xhc3Nlcy9DbGFzc2VzJztcclxuaW1wb3J0IHsgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IE1lc3NhZ2VTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvbWVzc2FnZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgRGF0YVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9kYXRhLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBBdXRoU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZSc7XHJcbmltcG9ydCB7IEh0dHBTZXJ2aWNlIH0gZnJvbSAndGluLWNvcmUnO1xyXG5pbXBvcnQgeyBMb2NhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIENoYW5nZVBhc3N3b3JkQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICAgIHByaXZhdGUgbG9jYXRpb247XHJcbiAgICBwcml2YXRlIGh0dHBTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBtZXNzYWdlU2VydmljZTtcclxuICAgIGRhdGFTZXJ2aWNlOiBEYXRhU2VydmljZTtcclxuICAgIHByaXZhdGUgYXV0aFNlcnZpY2U7XHJcbiAgICBjb25zdHJ1Y3Rvcihsb2NhdGlvbjogTG9jYXRpb24sIGh0dHBTZXJ2aWNlOiBIdHRwU2VydmljZSwgbWVzc2FnZVNlcnZpY2U6IE1lc3NhZ2VTZXJ2aWNlLCBkYXRhU2VydmljZTogRGF0YVNlcnZpY2UsIGF1dGhTZXJ2aWNlOiBBdXRoU2VydmljZSk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgbXlSb2xlOiBhbnk7XHJcbiAgICBpc1Byb2Nlc3Npbmc6IGJvb2xlYW47XHJcbiAgICBjaGFuZ2VQYXNzd29yZDogQ2hhbmdlVXNlclBhc3N3b3JkO1xyXG4gICAgY2hhbmdlKCk6IHZvaWQ7XHJcbn1cclxuIl19
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
- import * as ɵngcc0 from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
3
  export declare class CheckComponent implements OnInit {
4
4
  constructor();
5
5
  ngOnInit(): void;
@@ -14,8 +14,6 @@ export declare class CheckComponent implements OnInit {
14
14
  clicked(): void;
15
15
  checked(): void;
16
16
  unchecked(): void;
17
- static ɵfac: ɵngcc0.ɵɵFactoryDef<CheckComponent, never>;
18
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<CheckComponent, "spa-check", never, { "readonly": "readonly"; "display": "display"; "value": "value"; }, { "valueChange": "valueChange"; "click": "click"; "check": "check"; "uncheck": "uncheck"; }, never, never>;
17
+ static ɵfac: i0.ɵɵFactoryDef<CheckComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<CheckComponent, "spa-check", never, { "readonly": "readonly"; "display": "display"; "value": "value"; }, { "valueChange": "valueChange"; "click": "click"; "check": "check"; "uncheck": "uncheck"; }, never, never>;
19
19
  }
20
-
21
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2suY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImNoZWNrLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXZlbnRFbWl0dGVyLCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgQ2hlY2tDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgY29uc3RydWN0b3IoKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICByZWFkb25seTogYm9vbGVhbjtcclxuICAgIGRpc3BsYXk6IHN0cmluZztcclxuICAgIHZhbHVlOiBib29sZWFuO1xyXG4gICAgdmFsdWVDaGFuZ2U6IEV2ZW50RW1pdHRlcjxhbnk+O1xyXG4gICAgY2xpY2s6IEV2ZW50RW1pdHRlcjxhbnk+O1xyXG4gICAgY2hlY2s6IEV2ZW50RW1pdHRlcjxhbnk+O1xyXG4gICAgdW5jaGVjazogRXZlbnRFbWl0dGVyPGFueT47XHJcbiAgICBjaGFuZ2VkKCk6IHZvaWQ7XHJcbiAgICBjbGlja2VkKCk6IHZvaWQ7XHJcbiAgICBjaGVja2VkKCk6IHZvaWQ7XHJcbiAgICB1bmNoZWNrZWQoKTogdm9pZDtcclxufVxyXG4iXX0=
@@ -1,6 +1,6 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { MessageService } from '../../services/message.service';
3
- import * as ɵngcc0 from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
4
  export declare class ChipsComponent implements OnInit {
5
5
  private messageService;
6
6
  constructor(messageService: MessageService);
@@ -13,8 +13,6 @@ export declare class ChipsComponent implements OnInit {
13
13
  remove: EventEmitter<any>;
14
14
  clicked(chip: string): void;
15
15
  removed(chip: any): void;
16
- static ɵfac: ɵngcc0.ɵɵFactoryDef<ChipsComponent, never>;
17
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<ChipsComponent, "spa-chips", never, { "icon": "icon"; "removable": "removable"; "addable": "addable"; "chips": "chips"; }, { "click": "click"; "remove": "remove"; }, never, never>;
16
+ static ɵfac: i0.ɵɵFactoryDef<ChipsComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<ChipsComponent, "spa-chips", never, { "icon": "icon"; "removable": "removable"; "addable": "addable"; "chips": "chips"; }, { "click": "click"; "remove": "remove"; }, never, never>;
18
18
  }
19
-
20
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpcHMuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImNoaXBzLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEV2ZW50RW1pdHRlciwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IE1lc3NhZ2VTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvbWVzc2FnZS5zZXJ2aWNlJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgQ2hpcHNDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgcHJpdmF0ZSBtZXNzYWdlU2VydmljZTtcclxuICAgIGNvbnN0cnVjdG9yKG1lc3NhZ2VTZXJ2aWNlOiBNZXNzYWdlU2VydmljZSk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgaWNvbjogc3RyaW5nO1xyXG4gICAgcmVtb3ZhYmxlOiBib29sZWFuO1xyXG4gICAgYWRkYWJsZTogYm9vbGVhbjtcclxuICAgIGNoaXBzOiBzdHJpbmdbXTtcclxuICAgIGNsaWNrOiBFdmVudEVtaXR0ZXI8YW55PjtcclxuICAgIHJlbW92ZTogRXZlbnRFbWl0dGVyPGFueT47XHJcbiAgICBjbGlja2VkKGNoaXA6IHN0cmluZyk6IHZvaWQ7XHJcbiAgICByZW1vdmVkKGNoaXA6IGFueSk6IHZvaWQ7XHJcbn1cclxuIl19
@@ -1,30 +1,30 @@
1
- import { DataService } from './../../services/data.service';
1
+ import { DataServiceLib } from './../../services/data.service';
2
2
  import { OnInit } from '@angular/core';
3
- import { HttpService } from 'tin-core';
4
3
  import { MessageService } from '../../services/message.service';
5
4
  import { AuthService } from '../../services/auth.service';
6
- import { User, Profile, Account, AppConfig } from '../../classes/Classes';
5
+ import { AppConfig, Register } from '../../classes/Classes';
7
6
  import { Router } from '@angular/router';
8
- import * as ɵngcc0 from '@angular/core';
7
+ import { HttpService } from '../../services/http.service';
8
+ import * as i0 from "@angular/core";
9
9
  export declare class CreateAccountComponent implements OnInit {
10
10
  private httpService;
11
11
  private messageService;
12
12
  private dataService;
13
13
  private authService;
14
14
  router: Router;
15
- constructor(httpService: HttpService, messageService: MessageService, dataService: DataService, authService: AuthService, router: Router);
15
+ constructor(httpService: HttpService, messageService: MessageService, dataService: DataServiceLib, authService: AuthService, router: Router);
16
16
  ngOnInit(): void;
17
17
  appConfig: AppConfig;
18
18
  isProcessing: boolean;
19
- user: User;
20
- profile: Profile;
21
- account: Account;
19
+ register: Register;
22
20
  confirmPassword: string;
23
21
  openProfile: boolean;
22
+ authTypes: {
23
+ name: string;
24
+ value: string;
25
+ }[];
24
26
  create(): void;
25
- viewProfile(user: User): void;
26
- static ɵfac: ɵngcc0.ɵɵFactoryDef<CreateAccountComponent, never>;
27
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<CreateAccountComponent, "spa-create-account", never, { "appConfig": "appConfig"; }, {}, never, never>;
27
+ viewProfile(userName: string): void;
28
+ static ɵfac: i0.ɵɵFactoryDef<CreateAccountComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<CreateAccountComponent, "spa-create-account", never, { "appConfig": "appConfig"; }, {}, never, never>;
28
30
  }
29
-
30
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlYXRlLWFjY291bnQuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImNyZWF0ZS1hY2NvdW50LmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGF0YVNlcnZpY2UgfSBmcm9tICcuLy4uLy4uL3NlcnZpY2VzL2RhdGEuc2VydmljZSc7XHJcbmltcG9ydCB7IE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBIdHRwU2VydmljZSB9IGZyb20gJ3Rpbi1jb3JlJztcclxuaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9tZXNzYWdlLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBBdXRoU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZSc7XHJcbmltcG9ydCB7IFVzZXIsIFByb2ZpbGUsIEFjY291bnQsIEFwcENvbmZpZyB9IGZyb20gJy4uLy4uL2NsYXNzZXMvQ2xhc3Nlcyc7XHJcbmltcG9ydCB7IFJvdXRlciB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIENyZWF0ZUFjY291bnRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgcHJpdmF0ZSBodHRwU2VydmljZTtcclxuICAgIHByaXZhdGUgbWVzc2FnZVNlcnZpY2U7XHJcbiAgICBwcml2YXRlIGRhdGFTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBhdXRoU2VydmljZTtcclxuICAgIHJvdXRlcjogUm91dGVyO1xyXG4gICAgY29uc3RydWN0b3IoaHR0cFNlcnZpY2U6IEh0dHBTZXJ2aWNlLCBtZXNzYWdlU2VydmljZTogTWVzc2FnZVNlcnZpY2UsIGRhdGFTZXJ2aWNlOiBEYXRhU2VydmljZSwgYXV0aFNlcnZpY2U6IEF1dGhTZXJ2aWNlLCByb3V0ZXI6IFJvdXRlcik7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgYXBwQ29uZmlnOiBBcHBDb25maWc7XHJcbiAgICBpc1Byb2Nlc3Npbmc6IGJvb2xlYW47XHJcbiAgICB1c2VyOiBVc2VyO1xyXG4gICAgcHJvZmlsZTogUHJvZmlsZTtcclxuICAgIGFjY291bnQ6IEFjY291bnQ7XHJcbiAgICBjb25maXJtUGFzc3dvcmQ6IHN0cmluZztcclxuICAgIG9wZW5Qcm9maWxlOiBib29sZWFuO1xyXG4gICAgY3JlYXRlKCk6IHZvaWQ7XHJcbiAgICB2aWV3UHJvZmlsZSh1c2VyOiBVc2VyKTogdm9pZDtcclxufVxyXG4iXX0=
@@ -1,6 +1,6 @@
1
- import { OnInit } from '@angular/core';
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
- import * as ɵngcc0 from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
4
  export declare class DateComponent implements OnInit {
5
5
  constructor();
6
6
  ngOnInit(): void;
@@ -10,9 +10,8 @@ export declare class DateComponent implements OnInit {
10
10
  currentYear: number;
11
11
  min: FormControl;
12
12
  max: FormControl;
13
- onChangeEvent(d: any): void;
14
- static ɵfac: ɵngcc0.ɵɵFactoryDef<DateComponent, never>;
15
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<DateComponent, "spa-date", never, { "date": "date"; "display": "display"; "readonly": "readonly"; "min": "min"; "max": "max"; }, {}, never, never>;
13
+ dateChange: EventEmitter<any>;
14
+ onChangeEvent(): void;
15
+ static ɵfac: i0.ɵɵFactoryDef<DateComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<DateComponent, "spa-date", never, { "date": "date"; "display": "display"; "readonly": "readonly"; "min": "min"; "max": "max"; }, { "dateChange": "dateChange"; }, never, never>;
16
17
  }
17
-
18
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS5jb21wb25lbnQuZC50cyIsInNvdXJjZXMiOlsiZGF0ZS5jb21wb25lbnQuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGb3JtQ29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgRGF0ZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBjb25zdHJ1Y3RvcigpO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIGRhdGU6IEZvcm1Db250cm9sO1xyXG4gICAgZGlzcGxheTogc3RyaW5nO1xyXG4gICAgcmVhZG9ubHk6IGJvb2xlYW47XHJcbiAgICBjdXJyZW50WWVhcjogbnVtYmVyO1xyXG4gICAgbWluOiBGb3JtQ29udHJvbDtcclxuICAgIG1heDogRm9ybUNvbnRyb2w7XHJcbiAgICBvbkNoYW5nZUV2ZW50KGQ6IGFueSk6IHZvaWQ7XHJcbn1cclxuIl19
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
- import * as ɵngcc0 from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
3
  export declare class DatetimeComponent implements OnInit {
4
4
  constructor();
5
5
  ngOnInit(): void;
@@ -10,8 +10,6 @@ export declare class DatetimeComponent implements OnInit {
10
10
  min: string;
11
11
  max: string;
12
12
  changed(): void;
13
- static ɵfac: ɵngcc0.ɵɵFactoryDef<DatetimeComponent, never>;
14
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<DatetimeComponent, "spa-datetime", never, { "display": "display"; "value": "value"; "readonly": "readonly"; "min": "min"; "max": "max"; }, { "valueChange": "valueChange"; }, never, never>;
13
+ static ɵfac: i0.ɵɵFactoryDef<DatetimeComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<DatetimeComponent, "spa-datetime", never, { "display": "display"; "value": "value"; "readonly": "readonly"; "min": "min"; "max": "max"; }, { "valueChange": "valueChange"; }, never, never>;
15
15
  }
16
-
17
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZXRpbWUuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImRhdGV0aW1lLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEV2ZW50RW1pdHRlciwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIERhdGV0aW1lQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICAgIGNvbnN0cnVjdG9yKCk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgZGlzcGxheTogc3RyaW5nO1xyXG4gICAgdmFsdWU6IHN0cmluZztcclxuICAgIHZhbHVlQ2hhbmdlOiBFdmVudEVtaXR0ZXI8YW55PjtcclxuICAgIHJlYWRvbmx5OiBib29sZWFuO1xyXG4gICAgbWluOiBzdHJpbmc7XHJcbiAgICBtYXg6IHN0cmluZztcclxuICAgIGNoYW5nZWQoKTogdm9pZDtcclxufVxyXG4iXX0=
@@ -0,0 +1,15 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { MatTableDataSource } from '@angular/material/table';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FilterComponent implements OnInit {
5
+ constructor();
6
+ ngOnInit(): void;
7
+ ngOnChanges(): void;
8
+ data: MatTableDataSource<unknown>;
9
+ refreshClick: EventEmitter<any>;
10
+ _filterText: string;
11
+ applyFilter(filterValue: string): void;
12
+ refreshClicked(): void;
13
+ static ɵfac: i0.ɵɵFactoryDef<FilterComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<FilterComponent, "spa-filter", never, { "data": "data"; }, { "refreshClick": "refreshClick"; }, never, never>;
15
+ }
@@ -1,6 +1,6 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { AngularEditorConfig } from '@kolkov/angular-editor';
3
- import * as ɵngcc0 from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
4
  export declare class HtmlComponent implements OnInit {
5
5
  constructor();
6
6
  ngOnInit(): void;
@@ -10,8 +10,6 @@ export declare class HtmlComponent implements OnInit {
10
10
  changed(): void;
11
11
  ngOnChanges(): void;
12
12
  config: AngularEditorConfig;
13
- static ɵfac: ɵngcc0.ɵɵFactoryDef<HtmlComponent, never>;
14
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<HtmlComponent, "spa-html", never, { "value": "value"; "readonly": "readonly"; "config": "config"; }, { "valueChange": "valueChange"; }, never, never>;
13
+ static ɵfac: i0.ɵɵFactoryDef<HtmlComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<HtmlComponent, "spa-html", never, { "value": "value"; "readonly": "readonly"; "config": "config"; }, { "valueChange": "valueChange"; }, never, never>;
15
15
  }
16
-
17
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaHRtbC5jb21wb25lbnQuZC50cyIsInNvdXJjZXMiOlsiaHRtbC5jb21wb25lbnQuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFdmVudEVtaXR0ZXIsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBBbmd1bGFyRWRpdG9yQ29uZmlnIH0gZnJvbSAnQGtvbGtvdi9hbmd1bGFyLWVkaXRvcic7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIEh0bWxDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgY29uc3RydWN0b3IoKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICB2YWx1ZTogc3RyaW5nO1xyXG4gICAgdmFsdWVDaGFuZ2U6IEV2ZW50RW1pdHRlcjxhbnk+O1xyXG4gICAgcmVhZG9ubHk6IGJvb2xlYW47XHJcbiAgICBjaGFuZ2VkKCk6IHZvaWQ7XHJcbiAgICBuZ09uQ2hhbmdlcygpOiB2b2lkO1xyXG4gICAgY29uZmlnOiBBbmd1bGFyRWRpdG9yQ29uZmlnO1xyXG59XHJcbiJdfQ==
@@ -1,13 +1,11 @@
1
1
  import { OnInit } from '@angular/core';
2
- import * as ɵngcc0 from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
3
  export declare class LabelComponent implements OnInit {
4
4
  constructor();
5
5
  ngOnInit(): void;
6
6
  display: string;
7
7
  value: string;
8
8
  format: string;
9
- static ɵfac: ɵngcc0.ɵɵFactoryDef<LabelComponent, never>;
10
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<LabelComponent, "spa-label", never, { "display": "display"; "value": "value"; "format": "format"; }, {}, never, never>;
9
+ static ɵfac: i0.ɵɵFactoryDef<LabelComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<LabelComponent, "spa-label", never, { "display": "display"; "value": "value"; "format": "format"; }, {}, never, never>;
11
11
  }
12
-
13
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImxhYmVsLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgTGFiZWxDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgY29uc3RydWN0b3IoKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICBkaXNwbGF5OiBzdHJpbmc7XHJcbiAgICB2YWx1ZTogc3RyaW5nO1xyXG4gICAgZm9ybWF0OiBzdHJpbmc7XHJcbn1cclxuIl19
@@ -1,14 +1,12 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { LoaderService } from '../../services/loader.service';
3
- import * as ɵngcc0 from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
4
  export declare class LoaderComponent implements OnInit {
5
5
  private loaderService;
6
6
  constructor(loaderService: LoaderService);
7
7
  ngOnInit(): void;
8
8
  logo: string;
9
9
  loading: boolean;
10
- static ɵfac: ɵngcc0.ɵɵFactoryDef<LoaderComponent, never>;
11
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<LoaderComponent, "spa-loader", never, { "logo": "logo"; }, {}, never, never>;
10
+ static ɵfac: i0.ɵɵFactoryDef<LoaderComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<LoaderComponent, "spa-loader", never, { "logo": "logo"; }, {}, never, never>;
12
12
  }
13
-
14
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZGVyLmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJsb2FkZXIuY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IExvYWRlclNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9sb2FkZXIuc2VydmljZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIExvYWRlckNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBwcml2YXRlIGxvYWRlclNlcnZpY2U7XHJcbiAgICBjb25zdHJ1Y3Rvcihsb2FkZXJTZXJ2aWNlOiBMb2FkZXJTZXJ2aWNlKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICBsb2dvOiBzdHJpbmc7XHJcbiAgICBsb2FkaW5nOiBib29sZWFuO1xyXG59XHJcbiJdfQ==
@@ -1,34 +1,32 @@
1
- import { HttpService } from "tin-core";
2
1
  import { MessageService } from "../../services/message.service";
3
2
  import { StorageService } from "../../services/storage.service";
4
3
  import { AuthService } from "../../services/auth.service";
5
4
  import { OnInit } from "@angular/core";
6
- import { Router } from "@angular/router";
7
- import { DataService } from "../../services/data.service";
5
+ import { ActivatedRoute, Router } from "@angular/router";
6
+ import { DataServiceLib } from "../../services/data.service";
8
7
  import { LogService } from "./../../services/log.service";
9
- import { User, loginConfig, AppConfig } from "../../classes/Classes";
10
- import * as ɵngcc0 from '@angular/core';
8
+ import { User, AppConfig } from "../../classes/Classes";
9
+ import { HttpService } from "../../services/http.service";
10
+ import * as i0 from "@angular/core";
11
11
  export declare class LoginComponent implements OnInit {
12
12
  private httpService;
13
13
  private storageService;
14
14
  router: Router;
15
15
  private messageService;
16
- private dataService;
16
+ dataService: DataServiceLib;
17
17
  authService: AuthService;
18
18
  private logService;
19
- constructor(httpService: HttpService, storageService: StorageService, router: Router, messageService: MessageService, dataService: DataService, authService: AuthService, logService: LogService);
19
+ private route;
20
+ constructor(httpService: HttpService, storageService: StorageService, router: Router, messageService: MessageService, dataService: DataServiceLib, authService: AuthService, logService: LogService, route: ActivatedRoute);
21
+ ngOnInit(): void;
22
+ redirectPath: any;
20
23
  user: User;
21
24
  hide: boolean;
22
25
  isProcessing: boolean;
23
- config: loginConfig;
24
- ngOnInit(): void;
25
26
  appConfig: AppConfig;
26
27
  signup(): void;
27
28
  recoverAccount(): void;
28
29
  login(): void;
29
- setRole(roleID: string): void;
30
- static ɵfac: ɵngcc0.ɵɵFactoryDef<LoginComponent, never>;
31
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<LoginComponent, "spa-login", never, { "appConfig": "appConfig"; "config": "config"; }, {}, never, never>;
30
+ static ɵfac: i0.ɵɵFactoryDef<LoginComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<LoginComponent, "spa-login", never, {}, {}, never, never>;
32
32
  }
33
-
34
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9naW4uY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImxvZ2luLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIdHRwU2VydmljZSB9IGZyb20gXCJ0aW4tY29yZVwiO1xyXG5pbXBvcnQgeyBNZXNzYWdlU2VydmljZSB9IGZyb20gXCIuLi8uLi9zZXJ2aWNlcy9tZXNzYWdlLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgU3RvcmFnZVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vc2VydmljZXMvc3RvcmFnZS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IEF1dGhTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZVwiO1xyXG5pbXBvcnQgeyBPbkluaXQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBSb3V0ZXIgfSBmcm9tIFwiQGFuZ3VsYXIvcm91dGVyXCI7XHJcbmltcG9ydCB7IERhdGFTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2VzL2RhdGEuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBMb2dTZXJ2aWNlIH0gZnJvbSBcIi4vLi4vLi4vc2VydmljZXMvbG9nLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVXNlciwgbG9naW5Db25maWcsIEFwcENvbmZpZyB9IGZyb20gXCIuLi8uLi9jbGFzc2VzL0NsYXNzZXNcIjtcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgTG9naW5Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgcHJpdmF0ZSBodHRwU2VydmljZTtcclxuICAgIHByaXZhdGUgc3RvcmFnZVNlcnZpY2U7XHJcbiAgICByb3V0ZXI6IFJvdXRlcjtcclxuICAgIHByaXZhdGUgbWVzc2FnZVNlcnZpY2U7XHJcbiAgICBwcml2YXRlIGRhdGFTZXJ2aWNlO1xyXG4gICAgYXV0aFNlcnZpY2U6IEF1dGhTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBsb2dTZXJ2aWNlO1xyXG4gICAgY29uc3RydWN0b3IoaHR0cFNlcnZpY2U6IEh0dHBTZXJ2aWNlLCBzdG9yYWdlU2VydmljZTogU3RvcmFnZVNlcnZpY2UsIHJvdXRlcjogUm91dGVyLCBtZXNzYWdlU2VydmljZTogTWVzc2FnZVNlcnZpY2UsIGRhdGFTZXJ2aWNlOiBEYXRhU2VydmljZSwgYXV0aFNlcnZpY2U6IEF1dGhTZXJ2aWNlLCBsb2dTZXJ2aWNlOiBMb2dTZXJ2aWNlKTtcclxuICAgIHVzZXI6IFVzZXI7XHJcbiAgICBoaWRlOiBib29sZWFuO1xyXG4gICAgaXNQcm9jZXNzaW5nOiBib29sZWFuO1xyXG4gICAgY29uZmlnOiBsb2dpbkNvbmZpZztcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICBhcHBDb25maWc6IEFwcENvbmZpZztcclxuICAgIHNpZ251cCgpOiB2b2lkO1xyXG4gICAgcmVjb3ZlckFjY291bnQoKTogdm9pZDtcclxuICAgIGxvZ2luKCk6IHZvaWQ7XHJcbiAgICBzZXRSb2xlKHJvbGVJRDogc3RyaW5nKTogdm9pZDtcclxufVxyXG4iXX0=
@@ -1,22 +1,18 @@
1
1
  import { OnInit } from '@angular/core';
2
- import { DataService } from "../../services/data.service";
2
+ import { DataServiceLib } from "../../services/data.service";
3
3
  import { MatPaginator } from '@angular/material/paginator';
4
4
  import { AuthService } from '../../services/auth.service';
5
- import * as ɵngcc0 from '@angular/core';
5
+ import * as i0 from "@angular/core";
6
6
  export declare class LogsComponent implements OnInit {
7
7
  private authService;
8
8
  private dataService;
9
- constructor(authService: AuthService, dataService: DataService);
9
+ constructor(authService: AuthService, dataService: DataServiceLib);
10
10
  ngOnInit(): void;
11
11
  isProcessing: boolean;
12
12
  logsPaginator: MatPaginator;
13
- _filterText: string;
14
13
  logs: any;
15
14
  displayedColumns: string[];
16
15
  loadLogs(): void;
17
- applyFilter(filterValue: string): void;
18
- static ɵfac: ɵngcc0.ɵɵFactoryDef<LogsComponent, never>;
19
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<LogsComponent, "spa-logs", never, {}, {}, never, never>;
16
+ static ɵfac: i0.ɵɵFactoryDef<LogsComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<LogsComponent, "spa-logs", never, {}, {}, never, never>;
20
18
  }
21
-
22
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9ncy5jb21wb25lbnQuZC50cyIsInNvdXJjZXMiOlsibG9ncy5jb21wb25lbnQuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IERhdGFTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2VzL2RhdGEuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBNYXRQYWdpbmF0b3IgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9wYWdpbmF0b3InO1xyXG5pbXBvcnQgeyBBdXRoU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIExvZ3NDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgcHJpdmF0ZSBhdXRoU2VydmljZTtcclxuICAgIHByaXZhdGUgZGF0YVNlcnZpY2U7XHJcbiAgICBjb25zdHJ1Y3RvcihhdXRoU2VydmljZTogQXV0aFNlcnZpY2UsIGRhdGFTZXJ2aWNlOiBEYXRhU2VydmljZSk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgaXNQcm9jZXNzaW5nOiBib29sZWFuO1xyXG4gICAgbG9nc1BhZ2luYXRvcjogTWF0UGFnaW5hdG9yO1xyXG4gICAgX2ZpbHRlclRleHQ6IHN0cmluZztcclxuICAgIGxvZ3M6IGFueTtcclxuICAgIGRpc3BsYXllZENvbHVtbnM6IHN0cmluZ1tdO1xyXG4gICAgbG9hZExvZ3MoKTogdm9pZDtcclxuICAgIGFwcGx5RmlsdGVyKGZpbHRlclZhbHVlOiBzdHJpbmcpOiB2b2lkO1xyXG59XHJcbiJdfQ==
@@ -1,6 +1,6 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { MatDialogRef } from '@angular/material/dialog';
3
- import * as ɵngcc0 from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
4
  export declare class messageDialog implements OnInit {
5
5
  private dialogRef;
6
6
  data: any;
@@ -10,8 +10,6 @@ export declare class messageDialog implements OnInit {
10
10
  _messageSubject: any;
11
11
  _messageDetails: any;
12
12
  response(resp: string): void;
13
- static ɵfac: ɵngcc0.ɵɵFactoryDef<messageDialog, never>;
14
- static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<messageDialog, "lib-app-message", never, {}, {}, never, never>;
13
+ static ɵfac: i0.ɵɵFactoryDef<messageDialog, never>;
14
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<messageDialog, "lib-app-message", never, {}, {}, never, never>;
15
15
  }
16
-
17
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVzc2FnZURpYWxvZy5jb21wb25lbnQuZC50cyIsInNvdXJjZXMiOlsibWVzc2FnZURpYWxvZy5jb21wb25lbnQuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgTWF0RGlhbG9nUmVmIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgbWVzc2FnZURpYWxvZyBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBwcml2YXRlIGRpYWxvZ1JlZjtcclxuICAgIGRhdGE6IGFueTtcclxuICAgIGNvbnN0cnVjdG9yKGRpYWxvZ1JlZjogTWF0RGlhbG9nUmVmPG1lc3NhZ2VEaWFsb2c+LCBkYXRhOiBhbnkpO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIG1lc3NhZ2VUeXBlOiBhbnk7XHJcbiAgICBfbWVzc2FnZVN1YmplY3Q6IGFueTtcclxuICAgIF9tZXNzYWdlRGV0YWlsczogYW55O1xyXG4gICAgcmVzcG9uc2UocmVzcDogc3RyaW5nKTogdm9pZDtcclxufVxyXG4iXX0=
@@ -0,0 +1,41 @@
1
+ import { OnInit, ElementRef } from '@angular/core';
2
+ import { ControlValueAccessor } from '@angular/forms';
3
+ import { DecimalPipe } from '@angular/common';
4
+ import * as i0 from "@angular/core";
5
+ export declare const CURRENCY_INPUT_MASK_DIRECTIVE_VALUE_ACCESSOR: any;
6
+ export declare class CurrencyInputMaskDirective implements ControlValueAccessor, OnInit {
7
+ private elementRef;
8
+ private decimalPipe;
9
+ private el;
10
+ private onModelChange;
11
+ private onModelTouched;
12
+ private lastNumVal;
13
+ private DECIMAL_MARK;
14
+ constructor(elementRef: ElementRef, decimalPipe: DecimalPipe);
15
+ ngOnInit(): void;
16
+ handleFocus(event: any): void;
17
+ handleCut(event: any): void;
18
+ handleKeypress(event: any): void;
19
+ handleInput(event: any): void;
20
+ handlePaste(event: any): void;
21
+ handleBlur(event: any): void;
22
+ registerOnChange(callbackFunction: Function): void;
23
+ registerOnTouched(callbackFunction: Function): void;
24
+ setDisabledState(value: boolean): void;
25
+ writeValue(numValue: number): void;
26
+ private maskInput;
27
+ private inputUpdated;
28
+ private restrictDecimalValue;
29
+ private transformWithPipe;
30
+ private getUnmaskedValue;
31
+ private updateInputValue;
32
+ private getInputValue;
33
+ private convertStrToDecimal;
34
+ private convertDecimalToStr;
35
+ private isNumeric;
36
+ private saveCursorPosition;
37
+ private setCursorPosition;
38
+ private isIdxBetweenSelection;
39
+ static ɵfac: i0.ɵɵFactoryDef<CurrencyInputMaskDirective, never>;
40
+ static ɵdir: i0.ɵɵDirectiveDefWithMeta<CurrencyInputMaskDirective, "[appCurrencyInputMask]", never, {}, {}, never>;
41
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./currency-input-mask.directive";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ export declare class CurrencyInputModule {
6
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<CurrencyInputModule, [typeof i1.CurrencyInputMaskDirective], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.CurrencyInputMaskDirective]>;
7
+ static ɵinj: i0.ɵɵInjectorDef<CurrencyInputModule>;
8
+ }