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.
- package/bundles/tin-spa.umd.js +4416 -1589
- package/bundles/tin-spa.umd.js.map +1 -1
- package/bundles/tin-spa.umd.min.js +2 -2
- package/bundles/tin-spa.umd.min.js.map +1 -1
- package/esm2015/lib/classes/Classes.js +58 -45
- package/esm2015/lib/classes/TinCore.js +137 -0
- package/esm2015/lib/components/activity/activity.component.js +84 -18
- package/esm2015/lib/components/attach/attach.component.js +101 -27
- package/esm2015/lib/components/change-password/change-password.component.js +122 -34
- package/esm2015/lib/components/check/check.component.js +39 -33
- package/esm2015/lib/components/chips/chips.component.js +75 -35
- package/esm2015/lib/components/create-account/create-account.component.js +124 -42
- package/esm2015/lib/components/date/date.component.js +54 -33
- package/esm2015/lib/components/datetime/datetime.component.js +43 -30
- package/esm2015/lib/components/filter/filter.component.js +64 -0
- package/esm2015/lib/components/html/html.component.js +30 -25
- package/esm2015/lib/components/label/label.component.js +109 -21
- package/esm2015/lib/components/loader/loader.component.js +43 -20
- package/esm2015/lib/components/login/login.component.js +194 -76
- package/esm2015/lib/components/logs/logs.component.js +180 -28
- package/esm2015/lib/components/message/messageDialog.component.js +128 -17
- package/esm2015/lib/components/money/currency-input-mask.directive.js +187 -0
- package/esm2015/lib/components/money/currency-input-mask.module.js +30 -0
- package/esm2015/lib/components/money/money.component.js +141 -39
- package/esm2015/lib/components/nav-menu/nav-menu.component.js +174 -21
- package/esm2015/lib/components/option/option.component.js +107 -40
- package/esm2015/lib/components/profile/profile.component.js +143 -53
- package/esm2015/lib/components/recover-account/recover-account.component.js +48 -26
- package/esm2015/lib/components/roles/addRoleDialog.component.js +99 -26
- package/esm2015/lib/components/roles/roles.component.js +153 -73
- package/esm2015/lib/components/select/select.component.js +108 -48
- package/esm2015/lib/components/settings/settings.component.js +76 -21
- package/esm2015/lib/components/signup/signup.component.js +107 -24
- package/esm2015/lib/components/steps/steps.component.js +47 -31
- package/esm2015/lib/components/table/table.component.js +301 -35
- package/esm2015/lib/components/text/text.component.js +146 -71
- package/esm2015/lib/components/tiles/tiles.component.js +75 -21
- package/esm2015/lib/components/timeout/timeout.component.js +65 -22
- package/esm2015/lib/components/tin-spa.component.js +19 -12
- package/esm2015/lib/components/users/users.component.js +308 -65
- package/esm2015/lib/components/viewer/viewer.component.js +64 -39
- package/esm2015/lib/components/viewer/viewerDialog.component.js +73 -18
- package/esm2015/lib/dnd.directive.js +30 -25
- package/esm2015/lib/modules/spa-admin.module.js +65 -51
- package/esm2015/lib/modules/spa-index.module.js +45 -20
- package/esm2015/lib/modules/spa-mat.module.js +40 -25
- package/esm2015/lib/modules/spa-user.module.js +43 -19
- package/esm2015/lib/services/auth.service.js +39 -50
- package/esm2015/lib/services/data.service.js +82 -49
- package/esm2015/lib/services/export.service.js +11 -11
- package/esm2015/lib/services/http.service.js +79 -0
- package/esm2015/lib/services/loader-interceptor.service.js +30 -30
- package/esm2015/lib/services/loader.service.js +11 -11
- package/esm2015/lib/services/log.service.js +12 -12
- package/esm2015/lib/services/message.service.js +11 -17
- package/esm2015/lib/services/storage.service.js +12 -11
- package/esm2015/lib/services/tin-spa.service.js +11 -11
- package/esm2015/lib/tin-spa.module.js +113 -48
- package/esm2015/public-api.js +4 -6
- package/esm2015/tin-spa.js +1 -5
- package/esm5/lib/classes/Classes.js +70 -55
- package/esm5/lib/classes/TinCore.js +164 -0
- package/esm5/lib/components/activity/activity.component.js +82 -15
- package/esm5/lib/components/attach/attach.component.js +100 -24
- package/esm5/lib/components/change-password/change-password.component.js +120 -31
- package/esm5/lib/components/check/check.component.js +37 -30
- package/esm5/lib/components/chips/chips.component.js +73 -32
- package/esm5/lib/components/create-account/create-account.component.js +122 -39
- package/esm5/lib/components/date/date.component.js +52 -30
- package/esm5/lib/components/datetime/datetime.component.js +41 -27
- package/esm5/lib/components/filter/filter.component.js +66 -0
- package/esm5/lib/components/html/html.component.js +28 -22
- package/esm5/lib/components/label/label.component.js +107 -18
- package/esm5/lib/components/loader/loader.component.js +41 -17
- package/esm5/lib/components/login/login.component.js +193 -74
- package/esm5/lib/components/logs/logs.component.js +178 -25
- package/esm5/lib/components/message/messageDialog.component.js +126 -14
- package/esm5/lib/components/money/currency-input-mask.directive.js +193 -0
- package/esm5/lib/components/money/currency-input-mask.module.js +34 -0
- package/esm5/lib/components/money/money.component.js +139 -36
- package/esm5/lib/components/nav-menu/nav-menu.component.js +172 -18
- package/esm5/lib/components/option/option.component.js +105 -37
- package/esm5/lib/components/profile/profile.component.js +141 -50
- package/esm5/lib/components/recover-account/recover-account.component.js +46 -23
- package/esm5/lib/components/roles/addRoleDialog.component.js +97 -23
- package/esm5/lib/components/roles/roles.component.js +152 -72
- package/esm5/lib/components/select/select.component.js +106 -45
- package/esm5/lib/components/settings/settings.component.js +74 -18
- package/esm5/lib/components/signup/signup.component.js +105 -21
- package/esm5/lib/components/steps/steps.component.js +46 -28
- package/esm5/lib/components/table/table.component.js +299 -32
- package/esm5/lib/components/text/text.component.js +144 -68
- package/esm5/lib/components/tiles/tiles.component.js +73 -18
- package/esm5/lib/components/timeout/timeout.component.js +63 -19
- package/esm5/lib/components/tin-spa.component.js +16 -8
- package/esm5/lib/components/users/users.component.js +307 -62
- package/esm5/lib/components/viewer/viewer.component.js +62 -36
- package/esm5/lib/components/viewer/viewerDialog.component.js +71 -15
- package/esm5/lib/dnd.directive.js +28 -22
- package/esm5/lib/modules/spa-admin.module.js +63 -48
- package/esm5/lib/modules/spa-index.module.js +43 -17
- package/esm5/lib/modules/spa-mat.module.js +38 -22
- package/esm5/lib/modules/spa-user.module.js +41 -16
- package/esm5/lib/services/auth.service.js +37 -47
- package/esm5/lib/services/data.service.js +89 -55
- package/esm5/lib/services/export.service.js +9 -8
- package/esm5/lib/services/http.service.js +81 -0
- package/esm5/lib/services/loader-interceptor.service.js +28 -27
- package/esm5/lib/services/loader.service.js +9 -8
- package/esm5/lib/services/log.service.js +11 -9
- package/esm5/lib/services/message.service.js +9 -14
- package/esm5/lib/services/storage.service.js +10 -8
- package/esm5/lib/services/tin-spa.service.js +9 -8
- package/esm5/lib/tin-spa.module.js +111 -45
- package/esm5/public-api.js +4 -6
- package/esm5/tin-spa.js +1 -5
- package/fesm2015/tin-spa.js +4418 -1612
- package/fesm2015/tin-spa.js.map +1 -1
- package/fesm5/tin-spa.js +4442 -1612
- package/fesm5/tin-spa.js.map +1 -1
- package/lib/classes/Classes.d.ts +55 -43
- package/lib/classes/TinCore.d.ts +27 -0
- package/lib/components/activity/activity.component.d.ts +3 -5
- package/lib/components/attach/attach.component.d.ts +3 -5
- package/lib/components/change-password/change-password.component.d.ts +11 -9
- package/lib/components/check/check.component.d.ts +3 -5
- package/lib/components/chips/chips.component.d.ts +3 -5
- package/lib/components/create-account/create-account.component.d.ts +13 -13
- package/lib/components/date/date.component.d.ts +6 -7
- package/lib/components/datetime/datetime.component.d.ts +3 -5
- package/lib/components/filter/filter.component.d.ts +15 -0
- package/lib/components/html/html.component.d.ts +3 -5
- package/lib/components/label/label.component.d.ts +3 -5
- package/lib/components/loader/loader.component.d.ts +3 -5
- package/lib/components/login/login.component.d.ts +12 -14
- package/lib/components/logs/logs.component.d.ts +5 -9
- package/lib/components/message/messageDialog.component.d.ts +3 -5
- package/lib/components/money/currency-input-mask.directive.d.ts +41 -0
- package/lib/components/money/currency-input-mask.module.d.ts +8 -0
- package/lib/components/money/money.component.d.ts +19 -8
- package/lib/components/nav-menu/nav-menu.component.d.ts +3 -5
- package/lib/components/option/option.component.d.ts +4 -5
- package/lib/components/profile/profile.component.d.ts +9 -11
- package/lib/components/recover-account/recover-account.component.d.ts +6 -8
- package/lib/components/roles/addRoleDialog.component.d.ts +5 -7
- package/lib/components/roles/roles.component.d.ts +6 -10
- package/lib/components/select/select.component.d.ts +4 -6
- package/lib/components/settings/settings.component.d.ts +5 -7
- package/lib/components/signup/signup.component.d.ts +6 -8
- package/lib/components/steps/steps.component.d.ts +3 -5
- package/lib/components/table/table.component.d.ts +3 -5
- package/lib/components/text/text.component.d.ts +4 -5
- package/lib/components/tiles/tiles.component.d.ts +3 -5
- package/lib/components/timeout/timeout.component.d.ts +3 -5
- package/lib/components/tin-spa.component.d.ts +3 -5
- package/lib/components/users/users.component.d.ts +8 -13
- package/lib/components/viewer/viewer.component.d.ts +3 -5
- package/lib/components/viewer/viewerDialog.component.d.ts +4 -6
- package/lib/dnd.directive.d.ts +3 -5
- package/lib/modules/spa-admin.module.d.ts +13 -19
- package/lib/modules/spa-index.module.d.ts +10 -11
- package/lib/modules/spa-mat.module.d.ts +30 -32
- package/lib/modules/spa-user.module.d.ts +9 -10
- package/lib/services/auth.service.d.ts +14 -14
- package/lib/services/data.service.d.ts +28 -17
- package/lib/services/export.service.d.ts +3 -4
- package/lib/services/http.service.d.ts +22 -0
- package/lib/services/loader-interceptor.service.d.ts +3 -5
- package/lib/services/loader.service.d.ts +3 -4
- package/lib/services/log.service.d.ts +3 -4
- package/lib/services/message.service.d.ts +3 -4
- package/lib/services/storage.service.d.ts +3 -4
- package/lib/services/tin-spa.service.d.ts +3 -4
- package/lib/tin-spa.module.d.ts +35 -35
- package/package.json +2 -10
- package/public-api.d.ts +3 -5
- package/tin-spa.d.ts +1 -6
- package/__ivy_ngcc__/fesm2015/tin-spa.js +0 -6813
- package/__ivy_ngcc__/fesm2015/tin-spa.js.map +0 -1
- package/esm2015/lib/components/profiles/profiles.component.js +0 -16
- package/esm2015/lib/components/roles/editRoleDialog.component.js +0 -57
- package/esm2015/lib/components/roles/viewRoleDialog.component.js +0 -38
- package/esm2015/lib/components/users/addUserDialog.component.js +0 -53
- package/esm2015/lib/components/users/editUserDialog.component.js +0 -96
- package/esm5/lib/components/profiles/profiles.component.js +0 -18
- package/esm5/lib/components/roles/editRoleDialog.component.js +0 -59
- package/esm5/lib/components/roles/viewRoleDialog.component.js +0 -39
- package/esm5/lib/components/users/addUserDialog.component.js +0 -55
- package/esm5/lib/components/users/editUserDialog.component.js +0 -99
- package/lib/components/activity/activity.component.d.ts.__ivy_ngcc_bak +0 -8
- package/lib/components/attach/attach.component.d.ts.__ivy_ngcc_bak +0 -39
- package/lib/components/change-password/change-password.component.d.ts.__ivy_ngcc_bak +0 -20
- package/lib/components/check/check.component.d.ts.__ivy_ngcc_bak +0 -16
- package/lib/components/chips/chips.component.d.ts.__ivy_ngcc_bak +0 -15
- package/lib/components/create-account/create-account.component.d.ts.__ivy_ngcc_bak +0 -25
- package/lib/components/date/date.component.d.ts.__ivy_ngcc_bak +0 -13
- package/lib/components/datetime/datetime.component.d.ts.__ivy_ngcc_bak +0 -12
- package/lib/components/html/html.component.d.ts.__ivy_ngcc_bak +0 -12
- package/lib/components/label/label.component.d.ts.__ivy_ngcc_bak +0 -8
- package/lib/components/loader/loader.component.d.ts.__ivy_ngcc_bak +0 -9
- package/lib/components/login/login.component.d.ts.__ivy_ngcc_bak +0 -29
- package/lib/components/logs/logs.component.d.ts.__ivy_ngcc_bak +0 -17
- package/lib/components/message/messageDialog.component.d.ts.__ivy_ngcc_bak +0 -12
- package/lib/components/money/money.component.d.ts.__ivy_ngcc_bak +0 -14
- package/lib/components/nav-menu/nav-menu.component.d.ts.__ivy_ngcc_bak +0 -17
- package/lib/components/option/option.component.d.ts.__ivy_ngcc_bak +0 -17
- package/lib/components/profile/profile.component.d.ts.__ivy_ngcc_bak +0 -30
- package/lib/components/profiles/profiles.component.d.ts +0 -10
- package/lib/components/profiles/profiles.component.d.ts.__ivy_ngcc_bak +0 -5
- package/lib/components/recover-account/recover-account.component.d.ts.__ivy_ngcc_bak +0 -15
- package/lib/components/roles/addRoleDialog.component.d.ts.__ivy_ngcc_bak +0 -19
- package/lib/components/roles/editRoleDialog.component.d.ts +0 -24
- package/lib/components/roles/editRoleDialog.component.d.ts.__ivy_ngcc_bak +0 -19
- package/lib/components/roles/roles.component.d.ts.__ivy_ngcc_bak +0 -29
- package/lib/components/roles/viewRoleDialog.component.d.ts +0 -20
- package/lib/components/roles/viewRoleDialog.component.d.ts.__ivy_ngcc_bak +0 -15
- package/lib/components/select/select.component.d.ts.__ivy_ngcc_bak +0 -20
- package/lib/components/settings/settings.component.d.ts.__ivy_ngcc_bak +0 -16
- package/lib/components/signup/signup.component.d.ts.__ivy_ngcc_bak +0 -20
- package/lib/components/steps/steps.component.d.ts.__ivy_ngcc_bak +0 -15
- package/lib/components/table/table.component.d.ts.__ivy_ngcc_bak +0 -25
- package/lib/components/text/text.component.d.ts.__ivy_ngcc_bak +0 -37
- package/lib/components/tiles/tiles.component.d.ts.__ivy_ngcc_bak +0 -11
- package/lib/components/timeout/timeout.component.d.ts.__ivy_ngcc_bak +0 -21
- package/lib/components/tin-spa.component.d.ts.__ivy_ngcc_bak +0 -5
- package/lib/components/users/addUserDialog.component.d.ts +0 -21
- package/lib/components/users/addUserDialog.component.d.ts.__ivy_ngcc_bak +0 -16
- package/lib/components/users/editUserDialog.component.d.ts +0 -32
- package/lib/components/users/editUserDialog.component.d.ts.__ivy_ngcc_bak +0 -27
- package/lib/components/users/users.component.d.ts.__ivy_ngcc_bak +0 -35
- package/lib/components/viewer/viewer.component.d.ts.__ivy_ngcc_bak +0 -16
- package/lib/components/viewer/viewerDialog.component.d.ts.__ivy_ngcc_bak +0 -19
- package/lib/dnd.directive.d.ts.__ivy_ngcc_bak +0 -8
- package/lib/modules/spa-admin.module.d.ts.__ivy_ngcc_bak +0 -2
- package/lib/modules/spa-index.module.d.ts.__ivy_ngcc_bak +0 -2
- package/lib/modules/spa-mat.module.d.ts.__ivy_ngcc_bak +0 -2
- package/lib/modules/spa-user.module.d.ts.__ivy_ngcc_bak +0 -2
- package/lib/services/auth.service.d.ts.__ivy_ngcc_bak +0 -45
- package/lib/services/data.service.d.ts.__ivy_ngcc_bak +0 -23
- package/lib/services/export.service.d.ts.__ivy_ngcc_bak +0 -7
- package/lib/services/loader-interceptor.service.d.ts.__ivy_ngcc_bak +0 -18
- package/lib/services/loader.service.d.ts.__ivy_ngcc_bak +0 -5
- package/lib/services/log.service.d.ts.__ivy_ngcc_bak +0 -16
- package/lib/services/message.service.d.ts.__ivy_ngcc_bak +0 -12
- package/lib/services/storage.service.d.ts.__ivy_ngcc_bak +0 -7
- package/lib/services/tin-spa.service.d.ts.__ivy_ngcc_bak +0 -3
- package/lib/tin-spa.module.d.ts.__ivy_ngcc_bak +0 -2
- package/tin-spa.d.ts.__ivy_ngcc_bak +0 -8
- package/tin-spa.metadata.json +0 -1
package/lib/classes/Classes.d.ts
CHANGED
|
@@ -91,11 +91,11 @@ export declare class AppConfig {
|
|
|
91
91
|
constructor();
|
|
92
92
|
appName: string;
|
|
93
93
|
logo: string;
|
|
94
|
-
|
|
94
|
+
logoSize: string;
|
|
95
95
|
ADAuth: boolean;
|
|
96
96
|
localAuth: boolean;
|
|
97
|
-
|
|
98
|
-
|
|
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:
|
|
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
|
|
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:
|
|
10
|
-
static ɵcmp:
|
|
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
|
|
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:
|
|
41
|
-
static ɵcmp:
|
|
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 {
|
|
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
|
|
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:
|
|
15
|
+
dataService: DataServiceLib;
|
|
14
16
|
private authService;
|
|
15
|
-
|
|
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:
|
|
22
|
-
static ɵcmp:
|
|
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
|
|
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:
|
|
18
|
-
static ɵcmp:
|
|
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
|
|
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:
|
|
17
|
-
static ɵcmp:
|
|
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 {
|
|
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 {
|
|
5
|
+
import { AppConfig, Register } from '../../classes/Classes';
|
|
7
6
|
import { Router } from '@angular/router';
|
|
8
|
-
import
|
|
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:
|
|
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
|
-
|
|
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(
|
|
26
|
-
static ɵfac:
|
|
27
|
-
static ɵcmp:
|
|
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
|
|
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
|
-
|
|
14
|
-
|
|
15
|
-
static
|
|
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
|
|
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:
|
|
14
|
-
static ɵcmp:
|
|
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
|
|
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:
|
|
14
|
-
static ɵcmp:
|
|
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
|
|
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:
|
|
10
|
-
static ɵcmp:
|
|
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
|
|
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:
|
|
11
|
-
static ɵcmp:
|
|
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 {
|
|
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,
|
|
10
|
-
import
|
|
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
|
-
|
|
16
|
+
dataService: DataServiceLib;
|
|
17
17
|
authService: AuthService;
|
|
18
18
|
private logService;
|
|
19
|
-
|
|
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
|
-
|
|
30
|
-
static
|
|
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 {
|
|
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
|
|
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:
|
|
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
|
-
|
|
18
|
-
static
|
|
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
|
|
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:
|
|
14
|
-
static ɵcmp:
|
|
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
|
+
}
|