tin-spa 2.0.0 → 2.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 (241) hide show
  1. package/README.md +2 -2
  2. package/{esm2015/lib/classes/Classes.js → esm2020/lib/classes/Classes.mjs} +15 -55
  3. package/esm2020/lib/classes/TinCore.mjs +148 -0
  4. package/esm2020/lib/components/activity/activity.component.mjs +24 -0
  5. package/esm2020/lib/components/attach/attach.component.mjs +105 -0
  6. package/esm2020/lib/components/change-password/change-password.component.mjs +92 -0
  7. package/esm2020/lib/components/check/check.component.mjs +56 -0
  8. package/esm2020/lib/components/chips/chips.component.mjs +58 -0
  9. package/esm2020/lib/components/create-account/create-account.component.mjs +72 -0
  10. package/esm2020/lib/components/date/date.component.mjs +64 -0
  11. package/esm2020/lib/components/datetime/datetime.component.mjs +39 -0
  12. package/esm2020/lib/components/filter/filter.component.mjs +46 -0
  13. package/esm2020/lib/components/form/form.component.mjs +63 -0
  14. package/esm2020/lib/components/label/label.component.mjs +25 -0
  15. package/esm2020/lib/components/loader/loader.component.mjs +24 -0
  16. package/esm2020/lib/components/login/login.component.mjs +113 -0
  17. package/esm2020/lib/components/logs/logs.component.mjs +37 -0
  18. package/esm2020/lib/components/message/messageDialog.component.mjs +32 -0
  19. package/esm2020/lib/components/money/currency-input-mask.directive.mjs +185 -0
  20. package/esm2020/lib/components/money/currency-input-mask.module.mjs +28 -0
  21. package/esm2020/lib/components/money/money.component.mjs +64 -0
  22. package/esm2020/lib/components/nav-menu/nav-menu.component.mjs +49 -0
  23. package/esm2020/lib/components/number/number.component.mjs +86 -0
  24. package/esm2020/lib/components/option/option.component.mjs +59 -0
  25. package/esm2020/lib/components/profile/profile.component.mjs +93 -0
  26. package/esm2020/lib/components/recover-account/recover-account.component.mjs +46 -0
  27. package/esm2020/lib/components/roles/addRoleDialog.component.mjs +61 -0
  28. package/esm2020/lib/components/roles/roles.component.mjs +91 -0
  29. package/esm2020/lib/components/select/select.component.mjs +71 -0
  30. package/esm2020/lib/components/settings/settings.component.mjs +63 -0
  31. package/esm2020/lib/components/signup/signup.component.mjs +50 -0
  32. package/esm2020/lib/components/steps/steps.component.mjs +90 -0
  33. package/esm2020/lib/components/table/detailsDialog.component.mjs +149 -0
  34. package/esm2020/lib/components/table/table.component.mjs +341 -0
  35. package/esm2020/lib/components/text/text.component.mjs +166 -0
  36. package/esm2020/lib/components/tiles/tiles.component.mjs +41 -0
  37. package/esm2020/lib/components/tin-spa.component.mjs +19 -0
  38. package/esm2020/lib/components/users/users.component.mjs +119 -0
  39. package/esm2020/lib/modules/admin/admin-routing.module.mjs +29 -0
  40. package/esm2020/lib/modules/admin/admin.module.mjs +26 -0
  41. package/esm2020/lib/modules/index/index-routing.module.mjs +27 -0
  42. package/esm2020/lib/modules/index/index.module.mjs +26 -0
  43. package/esm2020/lib/modules/spa-admin.module.mjs +73 -0
  44. package/esm2020/lib/modules/spa-index.module.mjs +52 -0
  45. package/esm2020/lib/modules/spa-mat.module.mjs +67 -0
  46. package/esm2020/lib/modules/spa-user.module.mjs +49 -0
  47. package/esm2020/lib/modules/user/user-routing.module.mjs +23 -0
  48. package/esm2020/lib/modules/user/user.module.mjs +26 -0
  49. package/esm2020/lib/pipes/camelToWords.pipe.mjs +23 -0
  50. package/esm2020/lib/services/auth.service.mjs +142 -0
  51. package/esm2020/lib/services/data.service.mjs +125 -0
  52. package/esm2020/lib/services/export.service.mjs +16 -0
  53. package/esm2020/lib/services/http.service.mjs +79 -0
  54. package/esm2020/lib/services/loader-interceptor.service.mjs +77 -0
  55. package/esm2020/lib/services/loader.service.mjs +17 -0
  56. package/esm2020/lib/services/log.service.mjs +77 -0
  57. package/esm2020/lib/services/message.service.mjs +52 -0
  58. package/esm2020/lib/services/storage.service.mjs +34 -0
  59. package/esm2020/lib/services/tin-spa.service.mjs +14 -0
  60. package/esm2020/lib/tin-spa.module.mjs +114 -0
  61. package/esm2020/public-api.mjs +62 -0
  62. package/esm2020/tin-spa.mjs +5 -0
  63. package/fesm2015/tin-spa.mjs +3846 -0
  64. package/fesm2015/tin-spa.mjs.map +1 -0
  65. package/fesm2020/tin-spa.mjs +3829 -0
  66. package/fesm2020/tin-spa.mjs.map +1 -0
  67. package/index.d.ts +5 -0
  68. package/lib/classes/Classes.d.ts +58 -63
  69. package/lib/classes/TinCore.d.ts +1 -0
  70. package/lib/components/activity/activity.component.d.ts +3 -0
  71. package/lib/components/attach/attach.component.d.ts +4 -1
  72. package/lib/components/change-password/change-password.component.d.ts +3 -0
  73. package/lib/components/check/check.component.d.ts +3 -0
  74. package/lib/components/chips/chips.component.d.ts +3 -0
  75. package/lib/components/create-account/create-account.component.d.ts +3 -0
  76. package/lib/components/date/date.component.d.ts +14 -6
  77. package/lib/components/datetime/datetime.component.d.ts +3 -0
  78. package/lib/components/filter/filter.component.d.ts +4 -0
  79. package/lib/components/form/form.component.d.ts +16 -0
  80. package/lib/components/label/label.component.d.ts +3 -0
  81. package/lib/components/loader/loader.component.d.ts +3 -0
  82. package/lib/components/login/login.component.d.ts +6 -0
  83. package/lib/components/logs/logs.component.d.ts +3 -0
  84. package/lib/components/message/messageDialog.component.d.ts +3 -0
  85. package/lib/components/money/currency-input-mask.directive.d.ts +41 -0
  86. package/lib/components/money/currency-input-mask.module.d.ts +9 -0
  87. package/lib/components/money/money.component.d.ts +9 -1
  88. package/lib/components/nav-menu/nav-menu.component.d.ts +3 -0
  89. package/lib/components/number/number.component.d.ts +29 -0
  90. package/lib/components/option/option.component.d.ts +3 -0
  91. package/lib/components/profile/profile.component.d.ts +6 -2
  92. package/lib/components/recover-account/recover-account.component.d.ts +3 -0
  93. package/lib/components/roles/addRoleDialog.component.d.ts +3 -0
  94. package/lib/components/roles/roles.component.d.ts +3 -0
  95. package/lib/components/select/select.component.d.ts +5 -1
  96. package/lib/components/settings/settings.component.d.ts +3 -0
  97. package/lib/components/signup/signup.component.d.ts +3 -0
  98. package/lib/components/steps/steps.component.d.ts +3 -0
  99. package/lib/components/table/detailsDialog.component.d.ts +28 -0
  100. package/lib/components/table/table.component.d.ts +57 -17
  101. package/lib/components/text/text.component.d.ts +13 -9
  102. package/lib/components/tiles/tiles.component.d.ts +3 -0
  103. package/lib/components/tin-spa.component.d.ts +4 -4
  104. package/lib/components/users/users.component.d.ts +4 -0
  105. package/lib/modules/admin/admin-routing.module.d.ts +7 -0
  106. package/lib/modules/admin/admin.module.d.ts +9 -0
  107. package/lib/modules/index/index-routing.module.d.ts +7 -0
  108. package/lib/modules/index/index.module.d.ts +9 -0
  109. package/lib/modules/spa-admin.module.d.ts +13 -0
  110. package/lib/modules/spa-index.module.d.ts +10 -0
  111. package/lib/modules/spa-mat.module.d.ts +31 -0
  112. package/lib/modules/spa-user.module.d.ts +9 -0
  113. package/lib/modules/user/user-routing.module.d.ts +7 -0
  114. package/lib/modules/user/user.module.d.ts +9 -0
  115. package/lib/pipes/camelToWords.pipe.d.ts +7 -0
  116. package/lib/services/auth.service.d.ts +3 -0
  117. package/lib/services/data.service.d.ts +5 -1
  118. package/lib/services/export.service.d.ts +3 -4
  119. package/lib/services/http.service.d.ts +3 -0
  120. package/lib/services/loader-interceptor.service.d.ts +3 -0
  121. package/lib/services/loader.service.d.ts +3 -0
  122. package/lib/services/log.service.d.ts +3 -0
  123. package/lib/services/message.service.d.ts +3 -0
  124. package/lib/services/storage.service.d.ts +3 -0
  125. package/lib/services/tin-spa.service.d.ts +3 -0
  126. package/lib/tin-spa.module.d.ts +30 -0
  127. package/package.json +24 -23
  128. package/public-api.d.ts +7 -2
  129. package/bundles/tin-spa.umd.js +0 -3672
  130. package/bundles/tin-spa.umd.js.map +0 -1
  131. package/bundles/tin-spa.umd.min.js +0 -16
  132. package/bundles/tin-spa.umd.min.js.map +0 -1
  133. package/esm2015/lib/classes/TinCore.js +0 -139
  134. package/esm2015/lib/components/activity/activity.component.js +0 -26
  135. package/esm2015/lib/components/attach/attach.component.js +0 -107
  136. package/esm2015/lib/components/change-password/change-password.component.js +0 -102
  137. package/esm2015/lib/components/check/check.component.js +0 -63
  138. package/esm2015/lib/components/chips/chips.component.js +0 -66
  139. package/esm2015/lib/components/create-account/create-account.component.js +0 -78
  140. package/esm2015/lib/components/date/date.component.js +0 -45
  141. package/esm2015/lib/components/datetime/datetime.component.js +0 -44
  142. package/esm2015/lib/components/filter/filter.component.js +0 -40
  143. package/esm2015/lib/components/label/label.component.js +0 -29
  144. package/esm2015/lib/components/loader/loader.component.js +0 -29
  145. package/esm2015/lib/components/login/login.component.js +0 -114
  146. package/esm2015/lib/components/logs/logs.component.js +0 -39
  147. package/esm2015/lib/components/message/messageDialog.component.js +0 -31
  148. package/esm2015/lib/components/money/money.component.js +0 -52
  149. package/esm2015/lib/components/nav-menu/nav-menu.component.js +0 -51
  150. package/esm2015/lib/components/option/option.component.js +0 -63
  151. package/esm2015/lib/components/profile/profile.component.js +0 -98
  152. package/esm2015/lib/components/recover-account/recover-account.component.js +0 -53
  153. package/esm2015/lib/components/roles/addRoleDialog.component.js +0 -61
  154. package/esm2015/lib/components/roles/roles.component.js +0 -94
  155. package/esm2015/lib/components/select/select.component.js +0 -77
  156. package/esm2015/lib/components/settings/settings.component.js +0 -63
  157. package/esm2015/lib/components/signup/signup.component.js +0 -57
  158. package/esm2015/lib/components/steps/steps.component.js +0 -93
  159. package/esm2015/lib/components/table/table.component.js +0 -107
  160. package/esm2015/lib/components/text/text.component.js +0 -165
  161. package/esm2015/lib/components/tiles/tiles.component.js +0 -41
  162. package/esm2015/lib/components/timeout/timeout.component.js +0 -90
  163. package/esm2015/lib/components/tin-spa.component.js +0 -19
  164. package/esm2015/lib/components/users/users.component.js +0 -120
  165. package/esm2015/lib/dnd.directive.js +0 -51
  166. package/esm2015/lib/modules/spa-admin.module.js +0 -50
  167. package/esm2015/lib/modules/spa-index.module.js +0 -35
  168. package/esm2015/lib/modules/spa-mat.module.js +0 -53
  169. package/esm2015/lib/modules/spa-user.module.js +0 -33
  170. package/esm2015/lib/services/auth.service.js +0 -155
  171. package/esm2015/lib/services/data.service.js +0 -115
  172. package/esm2015/lib/services/export.service.js +0 -29
  173. package/esm2015/lib/services/http.service.js +0 -84
  174. package/esm2015/lib/services/loader-interceptor.service.js +0 -83
  175. package/esm2015/lib/services/loader.service.js +0 -17
  176. package/esm2015/lib/services/log.service.js +0 -76
  177. package/esm2015/lib/services/message.service.js +0 -58
  178. package/esm2015/lib/services/storage.service.js +0 -42
  179. package/esm2015/lib/services/tin-spa.service.js +0 -14
  180. package/esm2015/lib/tin-spa.module.js +0 -91
  181. package/esm2015/public-api.js +0 -56
  182. package/esm2015/tin-spa.js +0 -8
  183. package/esm5/lib/classes/Classes.js +0 -313
  184. package/esm5/lib/classes/TinCore.js +0 -166
  185. package/esm5/lib/components/activity/activity.component.js +0 -27
  186. package/esm5/lib/components/attach/attach.component.js +0 -119
  187. package/esm5/lib/components/change-password/change-password.component.js +0 -104
  188. package/esm5/lib/components/check/check.component.js +0 -64
  189. package/esm5/lib/components/chips/chips.component.js +0 -68
  190. package/esm5/lib/components/create-account/create-account.component.js +0 -80
  191. package/esm5/lib/components/date/date.component.js +0 -46
  192. package/esm5/lib/components/datetime/datetime.component.js +0 -45
  193. package/esm5/lib/components/filter/filter.component.js +0 -41
  194. package/esm5/lib/components/label/label.component.js +0 -30
  195. package/esm5/lib/components/loader/loader.component.js +0 -31
  196. package/esm5/lib/components/login/login.component.js +0 -117
  197. package/esm5/lib/components/logs/logs.component.js +0 -41
  198. package/esm5/lib/components/message/messageDialog.component.js +0 -32
  199. package/esm5/lib/components/money/money.component.js +0 -53
  200. package/esm5/lib/components/nav-menu/nav-menu.component.js +0 -53
  201. package/esm5/lib/components/option/option.component.js +0 -64
  202. package/esm5/lib/components/profile/profile.component.js +0 -102
  203. package/esm5/lib/components/recover-account/recover-account.component.js +0 -55
  204. package/esm5/lib/components/roles/addRoleDialog.component.js +0 -63
  205. package/esm5/lib/components/roles/roles.component.js +0 -100
  206. package/esm5/lib/components/select/select.component.js +0 -79
  207. package/esm5/lib/components/settings/settings.component.js +0 -66
  208. package/esm5/lib/components/signup/signup.component.js +0 -59
  209. package/esm5/lib/components/steps/steps.component.js +0 -105
  210. package/esm5/lib/components/table/table.component.js +0 -109
  211. package/esm5/lib/components/text/text.component.js +0 -168
  212. package/esm5/lib/components/tiles/tiles.component.js +0 -42
  213. package/esm5/lib/components/timeout/timeout.component.js +0 -92
  214. package/esm5/lib/components/tin-spa.component.js +0 -17
  215. package/esm5/lib/components/users/users.component.js +0 -126
  216. package/esm5/lib/dnd.directive.js +0 -52
  217. package/esm5/lib/modules/spa-admin.module.js +0 -53
  218. package/esm5/lib/modules/spa-index.module.js +0 -38
  219. package/esm5/lib/modules/spa-mat.module.js +0 -56
  220. package/esm5/lib/modules/spa-user.module.js +0 -36
  221. package/esm5/lib/services/auth.service.js +0 -157
  222. package/esm5/lib/services/data.service.js +0 -116
  223. package/esm5/lib/services/export.service.js +0 -30
  224. package/esm5/lib/services/http.service.js +0 -85
  225. package/esm5/lib/services/loader-interceptor.service.js +0 -85
  226. package/esm5/lib/services/loader.service.js +0 -18
  227. package/esm5/lib/services/log.service.js +0 -112
  228. package/esm5/lib/services/message.service.js +0 -59
  229. package/esm5/lib/services/storage.service.js +0 -74
  230. package/esm5/lib/services/tin-spa.service.js +0 -16
  231. package/esm5/lib/tin-spa.module.js +0 -94
  232. package/esm5/public-api.js +0 -56
  233. package/esm5/tin-spa.js +0 -8
  234. package/fesm2015/tin-spa.js +0 -3184
  235. package/fesm2015/tin-spa.js.map +0 -1
  236. package/fesm5/tin-spa.js +0 -3422
  237. package/fesm5/tin-spa.js.map +0 -1
  238. package/lib/components/timeout/timeout.component.d.ts +0 -21
  239. package/lib/dnd.directive.d.ts +0 -8
  240. package/tin-spa.d.ts +0 -7
  241. package/tin-spa.metadata.json +0 -1
@@ -1,6 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { DataServiceLib } from '../../services/data.service';
3
3
  import { MessageService } from '../../services/message.service';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class SettingsComponent implements OnInit {
5
6
  private dataService;
6
7
  private messageService;
@@ -13,4 +14,6 @@ export declare class SettingsComponent implements OnInit {
13
14
  loadSettings(): void;
14
15
  updateSetting(setting: any): void;
15
16
  addSetting(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<SettingsComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<SettingsComponent, "spa-settings", never, {}, {}, never, never, false>;
16
19
  }
@@ -4,6 +4,7 @@ import { DataServiceLib } from '../../services/data.service';
4
4
  import { AuthService } from '../../services/auth.service';
5
5
  import { User, Profile, Account } from '../../classes/Classes';
6
6
  import { HttpService } from '../../services/http.service';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class SignupComponent implements OnInit {
8
9
  private httpService;
9
10
  private messageService;
@@ -17,4 +18,6 @@ export declare class SignupComponent implements OnInit {
17
18
  account: Account;
18
19
  confirmPassword: string;
19
20
  create(): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignupComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<SignupComponent, "spa-signup", never, {}, {}, never, never, false>;
20
23
  }
@@ -1,6 +1,7 @@
1
1
  import { AfterViewInit, OnInit } from '@angular/core';
2
2
  import { MatStepper } from '@angular/material/stepper';
3
3
  import { Step } from '../../classes/Classes';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class StepsComponent implements OnInit, AfterViewInit {
5
6
  constructor();
6
7
  ngOnInit(): void;
@@ -12,4 +13,6 @@ export declare class StepsComponent implements OnInit, AfterViewInit {
12
13
  setStepper(): void;
13
14
  pushStepper(count: number): void;
14
15
  pushSteps(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepsComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepsComponent, "spa-steps", never, { "value": "value"; "steps": "steps"; }, {}, never, never, false>;
15
18
  }
@@ -0,0 +1,28 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { MatDialogRef } from '@angular/material/dialog';
3
+ import { FormConfig, TableConfig } from '../../classes/Classes';
4
+ import { MessageService } from '../../services/message.service';
5
+ import { DataServiceLib } from '../../services/data.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class detailsDialog implements OnInit {
8
+ private dataService;
9
+ private messageService;
10
+ private dialogRef;
11
+ data: any;
12
+ constructor(dataService: DataServiceLib, messageService: MessageService, dialogRef: MatDialogRef<detailsDialog>, data: any);
13
+ ngOnInit(): void;
14
+ tableConfig: TableConfig;
15
+ details: any;
16
+ formConfig: FormConfig;
17
+ smallScreen: boolean;
18
+ isLoadComplete: boolean;
19
+ isProcessing: boolean;
20
+ generateObject(): {};
21
+ setMode(newMode: string): void;
22
+ private getInitialValue;
23
+ create(): void;
24
+ edit(): void;
25
+ delete(): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<detailsDialog, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<detailsDialog, "app-viewModel", never, {}, {}, never, never, false>;
28
+ }
@@ -1,25 +1,65 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
+ import { Button, Column, TableConfig } from '../../classes/Classes';
2
3
  import { MatPaginator } from '@angular/material/paginator';
3
- import { Operator, TableColumnType, TableConfig } from '../../classes/Classes';
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/data.service';
8
+ import * as i0 from "@angular/core";
4
9
  export declare class TableComponent implements OnInit {
5
- constructor();
10
+ private dataService;
11
+ private messageService;
12
+ private breakpointObserver;
13
+ dialog: MatDialog;
14
+ constructor(dataService: DataServiceLib, messageService: MessageService, breakpointObserver: BreakpointObserver, dialog: MatDialog);
6
15
  ngOnInit(): void;
16
+ actionsWidth: string;
7
17
  ngOnChanges(): void;
8
- config: TableConfig;
18
+ tablePaginator: MatPaginator;
9
19
  data: any;
10
- dataChange: EventEmitter<any>;
11
- buttonClick: EventEmitter<any>;
12
- loadClick: EventEmitter<any>;
20
+ config: TableConfig;
21
+ refreshClick: EventEmitter<any>;
13
22
  createClick: EventEmitter<any>;
14
- tablePaginator: MatPaginator;
15
- colType: typeof TableColumnType;
16
- op: typeof Operator;
17
- displayedColumns: string[];
18
- styleString: string;
19
- _filterText: string;
20
- applyFilter(filterValue: string): void;
21
- do(name: any, item: any): void;
22
- create(): void;
23
- load(): void;
24
- test(a: any, op: Operator, b: any): boolean;
23
+ viewClick: EventEmitter<any>;
24
+ editClick: EventEmitter<any>;
25
+ deleteClick: EventEmitter<any>;
26
+ custom1Click: EventEmitter<any>;
27
+ custom2Click: EventEmitter<any>;
28
+ custom3Click: EventEmitter<any>;
29
+ smallScreen: boolean;
30
+ createButton: Button;
31
+ viewButton: any;
32
+ editButton: any;
33
+ deleteButton: any;
34
+ custom1Button: any;
35
+ custom2Button: any;
36
+ custom3Button: any;
37
+ tableDataSource: any;
38
+ dataSource: any[];
39
+ options: Column[];
40
+ displayedColumns: any[];
41
+ getButton(name: string): Button;
42
+ getIcon(buttonName: string): string;
43
+ setColumns(): void;
44
+ getOptions(column: any): Column;
45
+ testIconCondition(column: string, row: any): boolean;
46
+ testDisabled(row: any, buttonName: string): boolean;
47
+ testVisible(row: any, buttonName: string): boolean;
48
+ refreshClicked(): void;
49
+ view(x: any): void;
50
+ create(x: any): void;
51
+ edit(x: any): void;
52
+ delete(x: any): void;
53
+ custom1(x: any): void;
54
+ custom2(x: any): void;
55
+ custom3(x: any): void;
56
+ viewModel(row: any): void;
57
+ newModel(): void;
58
+ editModel(row: any): void;
59
+ deleteModel(row: any): void;
60
+ doAction(buttonName: any, row: any): void;
61
+ loadData(): void;
62
+ formDefaults(): void;
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "spa-table", never, { "data": "data"; "config": "config"; }, { "refreshClick": "refreshClick"; "createClick": "createClick"; "viewClick": "viewClick"; "editClick": "editClick"; "deleteClick": "deleteClick"; "custom1Click": "custom1Click"; "custom2Click": "custom2Click"; "custom3Click": "custom3Click"; }, never, never, false>;
25
65
  }
@@ -1,11 +1,15 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
3
  import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class TextComponent implements OnInit {
5
6
  constructor();
6
7
  ngOnInit(): void;
7
8
  ngAfterViewInit(): void;
8
- hideRequiredControl: FormControl;
9
+ filteredOptions: Observable<string[]>;
10
+ multiDimension: boolean;
11
+ hideRequiredControl: FormControl<boolean>;
12
+ hide: boolean;
9
13
  readonly: boolean;
10
14
  hint: string;
11
15
  display: string;
@@ -20,19 +24,19 @@ export declare class TextComponent implements OnInit {
20
24
  width: string;
21
25
  options: any;
22
26
  optionValue: string;
23
- optionDisplay: string;
24
- myControl: FormControl;
25
- filteredOptions: Observable<string[]>;
26
- private initFilter;
27
- private _filter;
28
27
  required: boolean;
29
28
  min: number;
30
29
  max: number;
31
30
  regex: string;
31
+ private initFilter;
32
+ private _filter;
33
+ initControl(control: FormControl): void;
32
34
  changed(): void;
33
- changed2(): void;
34
35
  leaved(): void;
35
36
  enterPressed(): void;
36
- control: FormControl;
37
- validate(): string;
37
+ myControl: FormControl<string>;
38
+ control: FormControl<string>;
39
+ validate(control: FormControl): string;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextComponent, "spa-text", never, { "readonly": "readonly"; "hint": "hint"; "display": "display"; "placeholder": "placeholder"; "value": "value"; "format": "format"; "type": "type"; "rows": "rows"; "width": "width"; "options": "options"; "optionValue": "optionValue"; "required": "required"; "min": "min"; "max": "max"; "regex": "regex"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; }, never, never, false>;
38
42
  }
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { Tile } from '../../classes/Classes';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class TilesComponent implements OnInit {
4
5
  constructor();
5
6
  ngOnInit(): void;
@@ -8,4 +9,6 @@ export declare class TilesComponent implements OnInit {
8
9
  tileClick: EventEmitter<any>;
9
10
  selected: string;
10
11
  clicked(v: Tile): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<TilesComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<TilesComponent, "spa-tiles", never, { "tiles": "tiles"; "clickable": "clickable"; }, { "tileClick": "tileClick"; }, never, never, false>;
11
14
  }
@@ -1,5 +1,5 @@
1
- import { OnInit } from '@angular/core';
2
- export declare class TinSpaComponent implements OnInit {
3
- constructor();
4
- ngOnInit(): void;
1
+ import * as i0 from "@angular/core";
2
+ export declare class TinSpaComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<TinSpaComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<TinSpaComponent, "spa-tin-spa", never, {}, {}, never, never, false>;
5
5
  }
@@ -7,6 +7,7 @@ import { MessageService } from "../../services/message.service";
7
7
  import { AuthService } from "../../services/auth.service";
8
8
  import { User } from '../../classes/Classes';
9
9
  import { HttpService } from "../../services/http.service";
10
+ import * as i0 from "@angular/core";
10
11
  export declare class UsersComponent implements OnInit {
11
12
  private httpService;
12
13
  router: Router;
@@ -20,6 +21,7 @@ export declare class UsersComponent implements OnInit {
20
21
  usersPaginator: MatPaginator;
21
22
  _filterText: string;
22
23
  users: any;
24
+ usersRaw: any;
23
25
  displayedColumns: string[];
24
26
  UpdateData(): void;
25
27
  applyFilter(filterValue: string): void;
@@ -29,4 +31,6 @@ export declare class UsersComponent implements OnInit {
29
31
  unlock(u: any): void;
30
32
  recover(u: User): void;
31
33
  deleteUser(user: User): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<UsersComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<UsersComponent, "spa-users", never, {}, {}, never, never, false>;
32
36
  }
@@ -0,0 +1,7 @@
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
+ }
@@ -0,0 +1,9 @@
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
+ }
@@ -0,0 +1,7 @@
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
+ }
@@ -0,0 +1,9 @@
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,2 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "../components/users/users.component";
3
+ import * as i2 from "../components/roles/roles.component";
4
+ import * as i3 from "../components/roles/addRoleDialog.component";
5
+ import * as i4 from "../components/create-account/create-account.component";
6
+ import * as i5 from "../components/logs/logs.component";
7
+ import * as i6 from "../components/settings/settings.component";
8
+ import * as i7 from "@angular/forms";
9
+ import * as i8 from "@angular/common";
10
+ import * as i9 from "../tin-spa.module";
1
11
  export declare class SpaAdminModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<SpaAdminModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SpaAdminModule, [typeof i1.UsersComponent, typeof i2.RolesComponent, typeof i3.addRoleDialog, typeof i4.CreateAccountComponent, typeof i5.LogsComponent, typeof i6.SettingsComponent], [typeof i7.ReactiveFormsModule, typeof i8.CommonModule, typeof i7.FormsModule, typeof i7.ReactiveFormsModule, typeof i9.TinSpaModule], [typeof i8.CommonModule, typeof i7.FormsModule, typeof i1.UsersComponent, typeof i2.RolesComponent, typeof i3.addRoleDialog, typeof i4.CreateAccountComponent, typeof i5.LogsComponent, typeof i6.SettingsComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<SpaAdminModule>;
2
15
  }
@@ -1,2 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "../components/login/login.component";
3
+ import * as i2 from "../components/signup/signup.component";
4
+ import * as i3 from "../components/recover-account/recover-account.component";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "../tin-spa.module";
1
8
  export declare class SpaIndexModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SpaIndexModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SpaIndexModule, [typeof i1.LoginComponent, typeof i2.SignupComponent, typeof i3.RecoverAccountComponent], [typeof i4.ReactiveFormsModule, typeof i5.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i6.TinSpaModule], [typeof i5.CommonModule, typeof i4.FormsModule, typeof i1.LoginComponent, typeof i2.SignupComponent, typeof i3.RecoverAccountComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<SpaIndexModule>;
2
12
  }
@@ -1,2 +1,33 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "@angular/forms";
4
+ import * as i3 from "@angular/material/menu";
5
+ import * as i4 from "@angular/material/slider";
6
+ import * as i5 from "@angular/material/table";
7
+ import * as i6 from "@angular/material/paginator";
8
+ import * as i7 from "@angular/material/checkbox";
9
+ import * as i8 from "@angular/material/badge";
10
+ import * as i9 from "@angular/material/button";
11
+ import * as i10 from "@angular/material/icon";
12
+ import * as i11 from "@angular/material/dialog";
13
+ import * as i12 from "@angular/material/snack-bar";
14
+ import * as i13 from "@angular/material/tabs";
15
+ import * as i14 from "@angular/material/form-field";
16
+ import * as i15 from "@angular/material/input";
17
+ import * as i16 from "@angular/material/card";
18
+ import * as i17 from "@angular/material/chips";
19
+ import * as i18 from "@angular/material/select";
20
+ import * as i19 from "@angular/material/core";
21
+ import * as i20 from "@angular/material/progress-spinner";
22
+ import * as i21 from "@angular/material/list";
23
+ import * as i22 from "@angular/material/autocomplete";
24
+ import * as i23 from "@angular/material/tooltip";
25
+ import * as i24 from "@angular/material/sort";
26
+ import * as i25 from "@angular/material/datepicker";
27
+ import * as i26 from "@angular/material/stepper";
28
+ import * as i27 from "@angular/material/radio";
1
29
  export declare class SpaMatModule {
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<SpaMatModule, never>;
31
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SpaMatModule, never, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.MatMenuModule, typeof i4.MatSliderModule, typeof i5.MatTableModule, typeof i6.MatPaginatorModule, typeof i7.MatCheckboxModule, typeof i8.MatBadgeModule, typeof i9.MatButtonModule, typeof i10.MatIconModule, typeof i11.MatDialogModule, typeof i12.MatSnackBarModule, typeof i13.MatTabsModule, typeof i14.MatFormFieldModule, typeof i15.MatInputModule, typeof i16.MatCardModule, typeof i17.MatChipsModule, typeof i18.MatSelectModule, typeof i19.MatNativeDateModule, typeof i20.MatProgressSpinnerModule, typeof i21.MatListModule, typeof i22.MatAutocompleteModule, typeof i23.MatTooltipModule, typeof i24.MatSortModule, typeof i25.MatDatepickerModule, typeof i26.MatStepperModule, typeof i27.MatRadioModule]>;
32
+ static ɵinj: i0.ɵɵInjectorDeclaration<SpaMatModule>;
2
33
  }
@@ -1,2 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "../components/change-password/change-password.component";
3
+ import * as i2 from "../components/profile/profile.component";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "../tin-spa.module";
1
7
  export declare class SpaUserModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SpaUserModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SpaUserModule, [typeof i1.ChangePasswordComponent, typeof i2.ProfileComponent], [typeof i3.ReactiveFormsModule, typeof i4.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i5.TinSpaModule], [typeof i4.CommonModule, typeof i3.FormsModule, typeof i1.ChangePasswordComponent, typeof i2.ProfileComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<SpaUserModule>;
2
11
  }
@@ -0,0 +1,7 @@
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
+ }
@@ -0,0 +1,9 @@
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
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CamelToWordsPipe implements PipeTransform {
4
+ transform(value: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CamelToWordsPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<CamelToWordsPipe, "camelToWords", false>;
7
+ }
@@ -5,6 +5,7 @@ import { StorageService } from './storage.service';
5
5
  import { LogService } from './log.service';
6
6
  import { Role } from '../classes/Classes';
7
7
  import { HttpService } from './http.service';
8
+ import * as i0 from "@angular/core";
8
9
  export declare class AuthService implements CanActivate {
9
10
  private _route;
10
11
  private storage;
@@ -43,4 +44,6 @@ export declare class AuthService implements CanActivate {
43
44
  isAuthorised(capName: string): boolean;
44
45
  isValidToken(): boolean;
45
46
  canActivate(): boolean;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
48
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
46
49
  }
@@ -1,6 +1,7 @@
1
- import { AppConfig, CapItem, User } from '../classes/Classes';
1
+ import { Action, AppConfig, CapItem, User } from '../classes/Classes';
2
2
  import { Observable } from 'rxjs';
3
3
  import { HttpService } from './http.service';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class DataServiceLib {
5
6
  private httpService;
6
7
  constructor(httpService: HttpService);
@@ -15,6 +16,7 @@ export declare class DataServiceLib {
15
16
  capLogs: CapItem;
16
17
  capSettings: CapItem;
17
18
  tmpProfileuserName: string;
19
+ CallApi(action: Action, data: any): Observable<any>;
18
20
  GetUser(): Observable<any>;
19
21
  RegisterAccount(u: any): Observable<any>;
20
22
  GetUserByID(val: string): Observable<any>;
@@ -32,4 +34,6 @@ export declare class DataServiceLib {
32
34
  GetLog(by: string, val: string): Observable<any>;
33
35
  GetSetting(by: string, val: string): Observable<any>;
34
36
  UpdateSetting(setting: any, action: string): Observable<any>;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<DataServiceLib, never>;
38
+ static ɵprov: i0.ɵɵInjectableDeclaration<DataServiceLib>;
35
39
  }
@@ -1,7 +1,6 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class ExportService {
2
3
  constructor();
3
- fileType: string;
4
- fileExtension: string;
5
- exportExcel(jsonData: any[], fileName: string): void;
6
- private saveExcelFile;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExportService, never>;
5
+ static ɵprov: i0.ɵɵInjectableDeclaration<ExportService>;
7
6
  }
@@ -1,6 +1,7 @@
1
1
  import { Observable } from "rxjs";
2
2
  import { HttpClient, HttpErrorResponse } from "@angular/common/http";
3
3
  import { Router } from "@angular/router";
4
+ import * as i0 from "@angular/core";
4
5
  export declare class HttpService {
5
6
  private httpClient;
6
7
  private router;
@@ -16,4 +17,6 @@ export declare class HttpService {
16
17
  Error(error: HttpErrorResponse): "Unauthorized" | "Connection failed";
17
18
  private httpOptions_Legacy;
18
19
  private httpOptions_Files;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<HttpService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<HttpService>;
19
22
  }
@@ -5,6 +5,7 @@ import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/c
5
5
  import { Observable } from 'rxjs';
6
6
  import { LoaderService } from './loader.service';
7
7
  import { LogService } from './log.service';
8
+ import * as i0 from "@angular/core";
8
9
  export declare class LoaderInterceptor implements HttpInterceptor {
9
10
  private loaderService;
10
11
  private messageService;
@@ -15,4 +16,6 @@ export declare class LoaderInterceptor implements HttpInterceptor {
15
16
  constructor(loaderService: LoaderService, messageService: MessageService, authService: AuthService, router: Router, logService: LogService);
16
17
  removeRequest(req: HttpRequest<any>): void;
17
18
  intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoaderInterceptor, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoaderInterceptor>;
18
21
  }
@@ -1,5 +1,8 @@
1
1
  import { BehaviorSubject } from 'rxjs';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class LoaderService {
3
4
  isLoading: BehaviorSubject<boolean>;
4
5
  constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoaderService, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoaderService>;
5
8
  }
@@ -1,4 +1,5 @@
1
1
  import { LogLevel } from '../classes/Classes';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class LogService {
3
4
  constructor();
4
5
  level: LogLevel;
@@ -13,4 +14,6 @@ export declare class LogService {
13
14
  private writeToLog;
14
15
  private formatParams;
15
16
  private shouldLog;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<LogService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<LogService>;
16
19
  }
@@ -1,6 +1,7 @@
1
1
  import { MatSnackBar } from "@angular/material/snack-bar";
2
2
  import { MatDialog } from "@angular/material/dialog";
3
3
  import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class MessageService {
5
6
  private snackBar;
6
7
  dialog: MatDialog;
@@ -9,4 +10,6 @@ export declare class MessageService {
9
10
  info(subject: string, details: string): void;
10
11
  error(details: string): void;
11
12
  confirm(msg: string): Observable<any>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<MessageService, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<MessageService>;
12
15
  }
@@ -1,7 +1,10 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class StorageService {
2
3
  constructor();
3
4
  store(storageKey: string, value: any): Promise<void>;
4
5
  get(storageKey: string): Promise<any>;
5
6
  removeStorageItem(storageKey: string): Promise<void>;
6
7
  clear(): Promise<void>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<StorageService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
7
10
  }
@@ -1,3 +1,6 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class TinSpaService {
2
3
  constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<TinSpaService, never>;
5
+ static ɵprov: i0.ɵɵInjectableDeclaration<TinSpaService>;
3
6
  }
@@ -1,2 +1,32 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/tin-spa.component";
3
+ import * as i2 from "./components/text/text.component";
4
+ import * as i3 from "./components/check/check.component";
5
+ import * as i4 from "./components/date/date.component";
6
+ import * as i5 from "./components/datetime/datetime.component";
7
+ import * as i6 from "./components/label/label.component";
8
+ import * as i7 from "./components/select/select.component";
9
+ import * as i8 from "./components/activity/activity.component";
10
+ import * as i9 from "./components/filter/filter.component";
11
+ import * as i10 from "./components/message/messageDialog.component";
12
+ import * as i11 from "./components/money/money.component";
13
+ import * as i12 from "./components/option/option.component";
14
+ import * as i13 from "./components/tiles/tiles.component";
15
+ import * as i14 from "./components/steps/steps.component";
16
+ import * as i15 from "./components/attach/attach.component";
17
+ import * as i16 from "./components/chips/chips.component";
18
+ import * as i17 from "./components/loader/loader.component";
19
+ import * as i18 from "./components/nav-menu/nav-menu.component";
20
+ import * as i19 from "./components/table/table.component";
21
+ import * as i20 from "./components/table/detailsDialog.component";
22
+ import * as i21 from "./components/form/form.component";
23
+ import * as i22 from "./pipes/camelToWords.pipe";
24
+ import * as i23 from "./components/number/number.component";
25
+ import * as i24 from "./modules/spa-mat.module";
26
+ import * as i25 from "@angular/common/http";
27
+ import * as i26 from "./components/money/currency-input-mask.module";
1
28
  export declare class TinSpaModule {
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<TinSpaModule, never>;
30
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TinSpaModule, [typeof i1.TinSpaComponent, typeof i2.TextComponent, typeof i3.CheckComponent, typeof i4.DateComponent, typeof i5.DatetimeComponent, typeof i6.LabelComponent, typeof i7.SelectComponent, typeof i8.ActivityComponent, typeof i9.FilterComponent, typeof i10.messageDialog, typeof i11.MoneyComponent, typeof i12.OptionComponent, typeof i13.TilesComponent, typeof i14.StepsComponent, typeof i15.AttachComponent, typeof i16.ChipsComponent, typeof i17.LoaderComponent, typeof i18.NavMenuComponent, typeof i19.TableComponent, typeof i20.detailsDialog, typeof i21.FormComponent, typeof i22.CamelToWordsPipe, typeof i23.NumberComponent], [typeof i24.SpaMatModule, typeof i25.HttpClientModule, typeof i26.CurrencyInputModule], [typeof i1.TinSpaComponent, typeof i24.SpaMatModule, typeof i2.TextComponent, typeof i10.messageDialog, typeof i18.NavMenuComponent, typeof i17.LoaderComponent, typeof i13.TilesComponent, typeof i4.DateComponent, typeof i7.SelectComponent, typeof i5.DatetimeComponent, typeof i3.CheckComponent, typeof i15.AttachComponent, typeof i11.MoneyComponent, typeof i16.ChipsComponent, typeof i8.ActivityComponent, typeof i12.OptionComponent, typeof i6.LabelComponent, typeof i14.StepsComponent, typeof i9.FilterComponent, typeof i19.TableComponent, typeof i20.detailsDialog, typeof i21.FormComponent, typeof i23.NumberComponent]>;
31
+ static ɵinj: i0.ɵɵInjectorDeclaration<TinSpaModule>;
2
32
  }