tin-spa 2.13.15 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/__ivy_ngcc__/fesm2015/tin-spa.js +6813 -0
- package/__ivy_ngcc__/fesm2015/tin-spa.js.map +1 -0
- package/bundles/tin-spa.umd.js +3867 -0
- package/bundles/tin-spa.umd.js.map +1 -0
- package/bundles/tin-spa.umd.min.js +16 -0
- package/bundles/tin-spa.umd.min.js.map +1 -0
- package/esm2015/lib/classes/Classes.js +241 -0
- package/esm2015/lib/components/activity/activity.component.js +26 -0
- package/esm2015/lib/components/attach/attach.component.js +107 -0
- package/esm2015/lib/components/change-password/change-password.component.js +91 -0
- package/esm2015/lib/components/check/check.component.js +63 -0
- package/esm2015/lib/components/chips/chips.component.js +67 -0
- package/esm2015/lib/components/create-account/create-account.component.js +78 -0
- package/esm2015/lib/components/date/date.component.js +45 -0
- package/esm2015/lib/components/datetime/datetime.component.js +44 -0
- package/esm2015/lib/components/html/html.component.js +97 -0
- package/esm2015/lib/components/label/label.component.js +29 -0
- package/esm2015/lib/components/loader/loader.component.js +30 -0
- package/esm2015/lib/components/login/login.component.js +122 -0
- package/esm2015/lib/components/logs/logs.component.js +43 -0
- package/esm2015/lib/components/message/messageDialog.component.js +31 -0
- package/esm2015/lib/components/money/money.component.js +50 -0
- package/esm2015/lib/components/nav-menu/nav-menu.component.js +51 -0
- package/esm2015/lib/components/option/option.component.js +62 -0
- package/esm2015/lib/components/profile/profile.component.js +108 -0
- package/esm2015/lib/components/profiles/profiles.component.js +16 -0
- package/esm2015/lib/components/recover-account/recover-account.component.js +52 -0
- package/esm2015/lib/components/roles/addRoleDialog.component.js +59 -0
- package/esm2015/lib/components/roles/editRoleDialog.component.js +57 -0
- package/esm2015/lib/components/roles/roles.component.js +131 -0
- package/esm2015/lib/components/roles/viewRoleDialog.component.js +38 -0
- package/esm2015/lib/components/select/select.component.js +73 -0
- package/esm2015/lib/components/settings/settings.component.js +63 -0
- package/esm2015/lib/components/signup/signup.component.js +56 -0
- package/esm2015/lib/components/steps/steps.component.js +98 -0
- package/esm2015/lib/components/table/table.component.js +109 -0
- package/esm2015/lib/components/text/text.component.js +165 -0
- package/esm2015/lib/components/tiles/tiles.component.js +41 -0
- package/esm2015/lib/components/timeout/timeout.component.js +90 -0
- package/esm2015/lib/components/tin-spa.component.js +19 -0
- package/esm2015/lib/components/users/addUserDialog.component.js +53 -0
- package/esm2015/lib/components/users/editUserDialog.component.js +96 -0
- package/esm2015/lib/components/users/users.component.js +130 -0
- package/esm2015/lib/components/viewer/viewer.component.js +67 -0
- package/esm2015/lib/components/viewer/viewerDialog.component.js +76 -0
- package/esm2015/lib/dnd.directive.js +51 -0
- package/esm2015/lib/modules/spa-admin.module.js +67 -0
- package/esm2015/lib/modules/spa-index.module.js +33 -0
- package/esm2015/lib/modules/spa-mat.module.js +53 -0
- package/esm2015/lib/modules/spa-user.module.js +31 -0
- package/esm2015/lib/services/auth.service.js +153 -0
- package/esm2015/lib/services/data.service.js +78 -0
- package/esm2015/lib/services/export.service.js +29 -0
- package/esm2015/lib/services/loader-interceptor.service.js +77 -0
- package/esm2015/lib/services/loader.service.js +17 -0
- package/esm2015/lib/services/log.service.js +76 -0
- package/esm2015/lib/services/message.service.js +58 -0
- package/esm2015/lib/services/storage.service.js +42 -0
- package/esm2015/lib/services/tin-spa.service.js +14 -0
- package/esm2015/lib/tin-spa.module.js +91 -0
- package/esm2015/public-api.js +58 -0
- package/esm2015/tin-spa.js +9 -0
- package/esm5/lib/classes/Classes.js +298 -0
- package/esm5/lib/components/activity/activity.component.js +27 -0
- package/esm5/lib/components/attach/attach.component.js +119 -0
- package/esm5/lib/components/change-password/change-password.component.js +93 -0
- package/esm5/lib/components/check/check.component.js +64 -0
- package/esm5/lib/components/chips/chips.component.js +69 -0
- package/esm5/lib/components/create-account/create-account.component.js +80 -0
- package/esm5/lib/components/date/date.component.js +46 -0
- package/esm5/lib/components/datetime/datetime.component.js +45 -0
- package/esm5/lib/components/html/html.component.js +98 -0
- package/esm5/lib/components/label/label.component.js +30 -0
- package/esm5/lib/components/loader/loader.component.js +32 -0
- package/esm5/lib/components/login/login.component.js +125 -0
- package/esm5/lib/components/logs/logs.component.js +45 -0
- package/esm5/lib/components/message/messageDialog.component.js +32 -0
- package/esm5/lib/components/money/money.component.js +51 -0
- package/esm5/lib/components/nav-menu/nav-menu.component.js +53 -0
- package/esm5/lib/components/option/option.component.js +63 -0
- package/esm5/lib/components/profile/profile.component.js +112 -0
- package/esm5/lib/components/profiles/profiles.component.js +18 -0
- package/esm5/lib/components/recover-account/recover-account.component.js +54 -0
- package/esm5/lib/components/roles/addRoleDialog.component.js +61 -0
- package/esm5/lib/components/roles/editRoleDialog.component.js +59 -0
- package/esm5/lib/components/roles/roles.component.js +138 -0
- package/esm5/lib/components/roles/viewRoleDialog.component.js +39 -0
- package/esm5/lib/components/select/select.component.js +75 -0
- package/esm5/lib/components/settings/settings.component.js +66 -0
- package/esm5/lib/components/signup/signup.component.js +58 -0
- package/esm5/lib/components/steps/steps.component.js +110 -0
- package/esm5/lib/components/table/table.component.js +111 -0
- package/esm5/lib/components/text/text.component.js +168 -0
- package/esm5/lib/components/tiles/tiles.component.js +42 -0
- package/esm5/lib/components/timeout/timeout.component.js +92 -0
- package/esm5/lib/components/tin-spa.component.js +17 -0
- package/esm5/lib/components/users/addUserDialog.component.js +55 -0
- package/esm5/lib/components/users/editUserDialog.component.js +99 -0
- package/esm5/lib/components/users/users.component.js +135 -0
- package/esm5/lib/components/viewer/viewer.component.js +68 -0
- package/esm5/lib/components/viewer/viewerDialog.component.js +77 -0
- package/esm5/lib/dnd.directive.js +52 -0
- package/esm5/lib/modules/spa-admin.module.js +70 -0
- package/esm5/lib/modules/spa-index.module.js +36 -0
- package/esm5/lib/modules/spa-mat.module.js +56 -0
- package/esm5/lib/modules/spa-user.module.js +34 -0
- package/esm5/lib/services/auth.service.js +155 -0
- package/esm5/lib/services/data.service.js +79 -0
- package/esm5/lib/services/export.service.js +30 -0
- package/esm5/lib/services/loader-interceptor.service.js +79 -0
- package/esm5/lib/services/loader.service.js +18 -0
- package/esm5/lib/services/log.service.js +112 -0
- package/esm5/lib/services/message.service.js +59 -0
- package/esm5/lib/services/storage.service.js +74 -0
- package/esm5/lib/services/tin-spa.service.js +16 -0
- package/esm5/lib/tin-spa.module.js +94 -0
- package/esm5/public-api.js +58 -0
- package/esm5/tin-spa.js +9 -0
- package/fesm2015/tin-spa.js +3398 -0
- package/fesm2015/tin-spa.js.map +1 -0
- package/fesm5/tin-spa.js +3623 -0
- package/fesm5/tin-spa.js.map +1 -0
- package/lib/classes/Classes.d.ts +216 -375
- package/lib/components/activity/activity.component.d.ts +5 -3
- package/lib/components/activity/activity.component.d.ts.__ivy_ngcc_bak +8 -0
- package/lib/components/attach/attach.component.d.ts +30 -16
- package/lib/components/attach/attach.component.d.ts.__ivy_ngcc_bak +39 -0
- package/lib/components/change-password/change-password.component.d.ts +25 -0
- package/lib/components/change-password/change-password.component.d.ts.__ivy_ngcc_bak +20 -0
- package/lib/components/check/check.component.d.ts +6 -9
- package/lib/components/check/check.component.d.ts.__ivy_ngcc_bak +16 -0
- package/lib/components/chips/chips.component.d.ts +5 -3
- package/lib/components/chips/chips.component.d.ts.__ivy_ngcc_bak +15 -0
- package/lib/components/create-account/create-account.component.d.ts +30 -0
- package/lib/components/create-account/create-account.component.d.ts.__ivy_ngcc_bak +25 -0
- package/lib/components/date/date.component.d.ts +15 -26
- package/lib/components/date/date.component.d.ts.__ivy_ngcc_bak +13 -0
- package/lib/components/datetime/datetime.component.d.ts +5 -7
- package/lib/components/datetime/datetime.component.d.ts.__ivy_ngcc_bak +12 -0
- package/lib/components/html/html.component.d.ts +13 -12
- package/lib/components/html/html.component.d.ts.__ivy_ngcc_bak +12 -0
- package/lib/components/label/label.component.d.ts +5 -5
- package/lib/components/label/label.component.d.ts.__ivy_ngcc_bak +8 -0
- package/lib/components/loader/loader.component.d.ts +5 -3
- package/lib/components/loader/loader.component.d.ts.__ivy_ngcc_bak +9 -0
- package/lib/components/login/login.component.d.ts +34 -0
- package/lib/components/login/login.component.d.ts.__ivy_ngcc_bak +29 -0
- package/lib/components/logs/logs.component.d.ts +22 -0
- package/lib/components/logs/logs.component.d.ts.__ivy_ngcc_bak +17 -0
- package/lib/components/message/messageDialog.component.d.ts +5 -3
- package/lib/components/message/messageDialog.component.d.ts.__ivy_ngcc_bak +12 -0
- package/lib/components/money/money.component.d.ts +8 -29
- package/lib/components/money/money.component.d.ts.__ivy_ngcc_bak +14 -0
- package/lib/components/nav-menu/nav-menu.component.d.ts +7 -23
- package/lib/components/nav-menu/nav-menu.component.d.ts.__ivy_ngcc_bak +17 -0
- package/lib/components/option/option.component.d.ts +6 -16
- package/lib/components/option/option.component.d.ts.__ivy_ngcc_bak +17 -0
- package/lib/components/profile/profile.component.d.ts +35 -0
- package/lib/components/profile/profile.component.d.ts.__ivy_ngcc_bak +30 -0
- package/lib/components/profiles/profiles.component.d.ts +10 -0
- package/lib/components/profiles/profiles.component.d.ts.__ivy_ngcc_bak +5 -0
- package/lib/components/recover-account/recover-account.component.d.ts +20 -0
- package/lib/components/recover-account/recover-account.component.d.ts.__ivy_ngcc_bak +15 -0
- package/lib/components/roles/addRoleDialog.component.d.ts +24 -0
- package/lib/components/roles/addRoleDialog.component.d.ts.__ivy_ngcc_bak +19 -0
- package/lib/components/roles/editRoleDialog.component.d.ts +24 -0
- package/lib/components/roles/editRoleDialog.component.d.ts.__ivy_ngcc_bak +19 -0
- package/lib/components/roles/roles.component.d.ts +34 -0
- package/lib/components/roles/roles.component.d.ts.__ivy_ngcc_bak +29 -0
- package/lib/components/roles/viewRoleDialog.component.d.ts +20 -0
- package/lib/components/roles/viewRoleDialog.component.d.ts.__ivy_ngcc_bak +15 -0
- package/lib/components/select/select.component.d.ts +23 -21
- package/lib/components/select/select.component.d.ts.__ivy_ngcc_bak +20 -0
- package/lib/components/settings/settings.component.d.ts +21 -0
- package/lib/{pages/settings/settings.component.d.ts → components/settings/settings.component.d.ts.__ivy_ngcc_bak} +2 -5
- package/lib/components/signup/signup.component.d.ts +25 -0
- package/lib/{pages/signup/signup.component.d.ts → components/signup/signup.component.d.ts.__ivy_ngcc_bak} +4 -7
- package/lib/components/steps/steps.component.d.ts +13 -20
- package/lib/components/steps/steps.component.d.ts.__ivy_ngcc_bak +15 -0
- package/lib/components/table/table.component.d.ts +24 -85
- package/lib/components/table/table.component.d.ts.__ivy_ngcc_bak +25 -0
- package/lib/components/text/text.component.d.ts +17 -38
- package/lib/components/text/text.component.d.ts.__ivy_ngcc_bak +37 -0
- package/lib/components/tiles/tiles.component.d.ts +10 -22
- package/lib/components/tiles/tiles.component.d.ts.__ivy_ngcc_bak +11 -0
- package/lib/components/timeout/timeout.component.d.ts +26 -0
- package/lib/components/timeout/timeout.component.d.ts.__ivy_ngcc_bak +21 -0
- package/lib/components/tin-spa.component.d.ts +9 -4
- package/lib/components/tin-spa.component.d.ts.__ivy_ngcc_bak +5 -0
- package/lib/components/users/addUserDialog.component.d.ts +21 -0
- package/lib/components/users/addUserDialog.component.d.ts.__ivy_ngcc_bak +16 -0
- package/lib/components/users/editUserDialog.component.d.ts +32 -0
- package/lib/components/users/editUserDialog.component.d.ts.__ivy_ngcc_bak +27 -0
- package/lib/components/users/users.component.d.ts +40 -0
- package/lib/components/users/users.component.d.ts.__ivy_ngcc_bak +35 -0
- package/lib/components/viewer/viewer.component.d.ts +8 -12
- package/lib/components/viewer/viewer.component.d.ts.__ivy_ngcc_bak +16 -0
- package/lib/components/viewer/viewerDialog.component.d.ts +8 -8
- package/lib/components/viewer/viewerDialog.component.d.ts.__ivy_ngcc_bak +19 -0
- package/lib/dnd.directive.d.ts +13 -0
- package/lib/dnd.directive.d.ts.__ivy_ngcc_bak +8 -0
- package/lib/modules/spa-admin.module.d.ts +19 -13
- package/lib/modules/spa-admin.module.d.ts.__ivy_ngcc_bak +2 -0
- package/lib/modules/spa-index.module.d.ts +11 -11
- package/lib/modules/spa-index.module.d.ts.__ivy_ngcc_bak +2 -0
- package/lib/modules/spa-mat.module.d.ts +32 -36
- package/lib/modules/spa-mat.module.d.ts.__ivy_ngcc_bak +2 -0
- package/lib/modules/spa-user.module.d.ts +10 -9
- package/lib/modules/spa-user.module.d.ts.__ivy_ngcc_bak +2 -0
- package/lib/services/auth.service.d.ts +15 -27
- package/lib/services/auth.service.d.ts.__ivy_ngcc_bak +45 -0
- package/lib/services/data.service.d.ts +27 -0
- package/lib/services/data.service.d.ts.__ivy_ngcc_bak +23 -0
- package/lib/services/export.service.d.ts +8 -3
- package/lib/services/export.service.d.ts.__ivy_ngcc_bak +7 -0
- package/lib/services/loader-interceptor.service.d.ts +6 -5
- package/lib/services/loader-interceptor.service.d.ts.__ivy_ngcc_bak +18 -0
- package/lib/services/loader.service.d.ts +4 -3
- package/lib/services/loader.service.d.ts.__ivy_ngcc_bak +5 -0
- package/lib/services/log.service.d.ts +5 -4
- package/lib/services/log.service.d.ts.__ivy_ngcc_bak +16 -0
- package/lib/services/message.service.d.ts +5 -5
- package/lib/services/message.service.d.ts.__ivy_ngcc_bak +12 -0
- package/lib/services/storage.service.d.ts +4 -3
- package/lib/services/storage.service.d.ts.__ivy_ngcc_bak +7 -0
- package/lib/services/tin-spa.service.d.ts +4 -3
- package/lib/services/tin-spa.service.d.ts.__ivy_ngcc_bak +3 -0
- package/lib/tin-spa.module.d.ts +35 -84
- package/lib/tin-spa.module.d.ts.__ivy_ngcc_bak +2 -0
- package/package.json +23 -23
- package/public-api.d.ts +21 -50
- package/tin-spa.d.ts +10 -0
- package/tin-spa.d.ts.__ivy_ngcc_bak +8 -0
- package/tin-spa.metadata.json +1 -0
- package/esm2020/lib/classes/Classes.mjs +0 -112
- package/esm2020/lib/classes/LibClasses.mjs +0 -180
- package/esm2020/lib/classes/TinCore.mjs +0 -568
- package/esm2020/lib/components/activity/activity.component.mjs +0 -24
- package/esm2020/lib/components/alert/alert.component.mjs +0 -43
- package/esm2020/lib/components/attach/attach.component.mjs +0 -102
- package/esm2020/lib/components/capsules/capsules.component.mjs +0 -63
- package/esm2020/lib/components/cards/cards.component.mjs +0 -103
- package/esm2020/lib/components/check/check.component.mjs +0 -67
- package/esm2020/lib/components/chips/chips.component.mjs +0 -58
- package/esm2020/lib/components/date/date.component.mjs +0 -103
- package/esm2020/lib/components/datetime/datetime.component.mjs +0 -55
- package/esm2020/lib/components/email/email.component.mjs +0 -133
- package/esm2020/lib/components/filter/filter.component.mjs +0 -58
- package/esm2020/lib/components/form/form.component.mjs +0 -296
- package/esm2020/lib/components/html/html.component.mjs +0 -34
- package/esm2020/lib/components/label/label.component.mjs +0 -31
- package/esm2020/lib/components/list-dialog/list-dialog.component.mjs +0 -68
- package/esm2020/lib/components/loader/loader.component.mjs +0 -25
- package/esm2020/lib/components/message/messageDialog.component.mjs +0 -33
- package/esm2020/lib/components/money/currency-input-mask.directive.mjs +0 -185
- package/esm2020/lib/components/money/currency-input-mask.module.mjs +0 -28
- package/esm2020/lib/components/money/money.component.mjs +0 -137
- package/esm2020/lib/components/multi-select/multi-select.component.mjs +0 -165
- package/esm2020/lib/components/multi-text/multi-text.component.mjs +0 -208
- package/esm2020/lib/components/nav-menu/nav-menu.component.mjs +0 -88
- package/esm2020/lib/components/notes/notes.component.mjs +0 -62
- package/esm2020/lib/components/number/number.component.mjs +0 -131
- package/esm2020/lib/components/option/option.component.mjs +0 -92
- package/esm2020/lib/components/page/page.component.mjs +0 -101
- package/esm2020/lib/components/search/search.component.mjs +0 -36
- package/esm2020/lib/components/select/select.component.mjs +0 -75
- package/esm2020/lib/components/select-bitwise/select-bitwise.component.mjs +0 -87
- package/esm2020/lib/components/select-common/select-common.component.mjs +0 -206
- package/esm2020/lib/components/select-internal/select-internal.component.mjs +0 -75
- package/esm2020/lib/components/select-lite/select-lite.component.mjs +0 -18
- package/esm2020/lib/components/statuses/statuses.component.mjs +0 -44
- package/esm2020/lib/components/steps/steps.component.mjs +0 -112
- package/esm2020/lib/components/suffix/suffix.component.mjs +0 -70
- package/esm2020/lib/components/table/detailsDialog.component.mjs +0 -406
- package/esm2020/lib/components/table/table.component.mjs +0 -440
- package/esm2020/lib/components/table-action/table-action.component.mjs +0 -80
- package/esm2020/lib/components/table-header/table-header.component.mjs +0 -148
- package/esm2020/lib/components/table-internal/detailsDialog-internal.component.mjs +0 -406
- package/esm2020/lib/components/table-internal/table-internal.component.mjs +0 -441
- package/esm2020/lib/components/table-lite/detailsDialog-lite.component.mjs +0 -404
- package/esm2020/lib/components/table-lite/table-lite.component.mjs +0 -441
- package/esm2020/lib/components/table-row/table-row.component.mjs +0 -93
- package/esm2020/lib/components/tabs/tabs.component.mjs +0 -74
- package/esm2020/lib/components/text/text.component.mjs +0 -255
- package/esm2020/lib/components/tiles/tiles.component.mjs +0 -99
- package/esm2020/lib/components/tin-spa.component.mjs +0 -19
- package/esm2020/lib/components/viewer/viewer.component.mjs +0 -83
- package/esm2020/lib/components/viewer/viewerDialog.component.mjs +0 -95
- package/esm2020/lib/modules/admin/admin-routing.module.mjs +0 -71
- package/esm2020/lib/modules/admin/admin.module.mjs +0 -26
- package/esm2020/lib/modules/index/index-routing.module.mjs +0 -27
- package/esm2020/lib/modules/index/index.module.mjs +0 -26
- package/esm2020/lib/modules/spa-admin.module.mjs +0 -71
- package/esm2020/lib/modules/spa-index.module.mjs +0 -54
- package/esm2020/lib/modules/spa-mat.module.mjs +0 -84
- package/esm2020/lib/modules/spa-user.module.mjs +0 -47
- package/esm2020/lib/modules/user/user-routing.module.mjs +0 -23
- package/esm2020/lib/modules/user/user.module.mjs +0 -26
- package/esm2020/lib/pages/accounts/accountDialog.component.mjs +0 -56
- package/esm2020/lib/pages/accounts/accounts.component.mjs +0 -70
- package/esm2020/lib/pages/app-models/app-models.component.mjs +0 -56
- package/esm2020/lib/pages/approvals/approvals.component.mjs +0 -19
- package/esm2020/lib/pages/approvals-config/approvals-config.component.mjs +0 -165
- package/esm2020/lib/pages/bug/bug.component.mjs +0 -14
- package/esm2020/lib/pages/change-password/change-password.component.mjs +0 -92
- package/esm2020/lib/pages/create-account/create-account.component.mjs +0 -110
- package/esm2020/lib/pages/customers/customers.component.mjs +0 -21
- package/esm2020/lib/pages/departments/departments.component.mjs +0 -22
- package/esm2020/lib/pages/employees/employees.component.mjs +0 -20
- package/esm2020/lib/pages/grades/grades.component.mjs +0 -14
- package/esm2020/lib/pages/inventory/inventory.component.mjs +0 -99
- package/esm2020/lib/pages/inventory/quantityDialog.component.mjs +0 -53
- package/esm2020/lib/pages/invitations-table/invitations-table.component.mjs +0 -71
- package/esm2020/lib/pages/login/login.component.mjs +0 -166
- package/esm2020/lib/pages/logs/logs.component.mjs +0 -42
- package/esm2020/lib/pages/membership/membership.component.mjs +0 -44
- package/esm2020/lib/pages/notifications/notifications.component.mjs +0 -90
- package/esm2020/lib/pages/notifications-config/notifications-config.component.mjs +0 -113
- package/esm2020/lib/pages/plans/plans.component.mjs +0 -44
- package/esm2020/lib/pages/positions/positions.component.mjs +0 -21
- package/esm2020/lib/pages/profile/profile.component.mjs +0 -94
- package/esm2020/lib/pages/recover-account/recover-account.component.mjs +0 -46
- package/esm2020/lib/pages/roles/addRoleDialog.component.mjs +0 -60
- package/esm2020/lib/pages/roles/roles.component.mjs +0 -151
- package/esm2020/lib/pages/settings/settings.component.mjs +0 -54
- package/esm2020/lib/pages/signup/signup.component.mjs +0 -50
- package/esm2020/lib/pages/suppliers/suppliers.component.mjs +0 -22
- package/esm2020/lib/pages/tasks/tasks.component.mjs +0 -86
- package/esm2020/lib/pages/tenant-settings/tenant-settings.component.mjs +0 -228
- package/esm2020/lib/pages/tenants/tenants.component.mjs +0 -47
- package/esm2020/lib/pages/transactions/transactDialog.component.mjs +0 -80
- package/esm2020/lib/pages/transactions/transactions.component.mjs +0 -101
- package/esm2020/lib/pages/users/users.component.mjs +0 -167
- package/esm2020/lib/pages/welcome/welcome.component.mjs +0 -86
- package/esm2020/lib/pipes/camelToWords.pipe.mjs +0 -17
- package/esm2020/lib/select-context.directive.mjs +0 -23
- package/esm2020/lib/services/auth.service.mjs +0 -175
- package/esm2020/lib/services/button.service.mjs +0 -162
- package/esm2020/lib/services/condition.service.mjs +0 -32
- package/esm2020/lib/services/csv.service.mjs +0 -49
- package/esm2020/lib/services/datalib.service.mjs +0 -860
- package/esm2020/lib/services/dialog.service.mjs +0 -125
- package/esm2020/lib/services/export.service.mjs +0 -16
- package/esm2020/lib/services/http.service.mjs +0 -79
- package/esm2020/lib/services/loader-interceptor.service.mjs +0 -86
- package/esm2020/lib/services/loader.service.mjs +0 -17
- package/esm2020/lib/services/log.service.mjs +0 -77
- package/esm2020/lib/services/message.service.mjs +0 -59
- package/esm2020/lib/services/notifications.service.mjs +0 -33
- package/esm2020/lib/services/storage.service.mjs +0 -34
- package/esm2020/lib/services/table-config.service.mjs +0 -78
- package/esm2020/lib/services/tin-spa.service.mjs +0 -14
- package/esm2020/lib/tin-spa.module.mjs +0 -225
- package/esm2020/public-api.mjs +0 -90
- package/esm2020/tin-spa.mjs +0 -5
- package/fesm2015/tin-spa.mjs +0 -11736
- package/fesm2015/tin-spa.mjs.map +0 -1
- package/fesm2020/tin-spa.mjs +0 -11738
- package/fesm2020/tin-spa.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/classes/LibClasses.d.ts +0 -173
- package/lib/classes/TinCore.d.ts +0 -59
- package/lib/components/alert/alert.component.d.ts +0 -15
- package/lib/components/capsules/capsules.component.d.ts +0 -26
- package/lib/components/cards/cards.component.d.ts +0 -39
- package/lib/components/email/email.component.d.ts +0 -40
- package/lib/components/filter/filter.component.d.ts +0 -20
- package/lib/components/form/form.component.d.ts +0 -47
- package/lib/components/list-dialog/list-dialog.component.d.ts +0 -23
- package/lib/components/money/currency-input-mask.directive.d.ts +0 -41
- package/lib/components/money/currency-input-mask.module.d.ts +0 -9
- package/lib/components/multi-select/multi-select.component.d.ts +0 -47
- package/lib/components/multi-text/multi-text.component.d.ts +0 -56
- package/lib/components/notes/notes.component.d.ts +0 -19
- package/lib/components/number/number.component.d.ts +0 -41
- package/lib/components/page/page.component.d.ts +0 -38
- package/lib/components/search/search.component.d.ts +0 -15
- package/lib/components/select-bitwise/select-bitwise.component.d.ts +0 -31
- package/lib/components/select-common/select-common.component.d.ts +0 -53
- package/lib/components/select-internal/select-internal.component.d.ts +0 -23
- package/lib/components/select-lite/select-lite.component.d.ts +0 -8
- package/lib/components/statuses/statuses.component.d.ts +0 -12
- package/lib/components/suffix/suffix.component.d.ts +0 -23
- package/lib/components/table/detailsDialog.component.d.ts +0 -86
- package/lib/components/table-action/table-action.component.d.ts +0 -25
- package/lib/components/table-header/table-header.component.d.ts +0 -46
- package/lib/components/table-internal/detailsDialog-internal.component.d.ts +0 -86
- package/lib/components/table-internal/table-internal.component.d.ts +0 -91
- package/lib/components/table-lite/detailsDialog-lite.component.d.ts +0 -86
- package/lib/components/table-lite/table-lite.component.d.ts +0 -91
- package/lib/components/table-row/table-row.component.d.ts +0 -31
- package/lib/components/tabs/tabs.component.d.ts +0 -32
- package/lib/modules/admin/admin-routing.module.d.ts +0 -7
- package/lib/modules/admin/admin.module.d.ts +0 -9
- package/lib/modules/index/index-routing.module.d.ts +0 -7
- package/lib/modules/index/index.module.d.ts +0 -9
- package/lib/modules/user/user-routing.module.d.ts +0 -7
- package/lib/modules/user/user.module.d.ts +0 -9
- package/lib/pages/accounts/accountDialog.component.d.ts +0 -27
- package/lib/pages/accounts/accounts.component.d.ts +0 -25
- package/lib/pages/app-models/app-models.component.d.ts +0 -15
- package/lib/pages/approvals/approvals.component.d.ts +0 -10
- package/lib/pages/approvals-config/approvals-config.component.d.ts +0 -24
- package/lib/pages/bug/bug.component.d.ts +0 -8
- package/lib/pages/change-password/change-password.component.d.ts +0 -27
- package/lib/pages/create-account/create-account.component.d.ts +0 -34
- package/lib/pages/customers/customers.component.d.ts +0 -12
- package/lib/pages/departments/departments.component.d.ts +0 -14
- package/lib/pages/employees/employees.component.d.ts +0 -12
- package/lib/pages/grades/grades.component.d.ts +0 -8
- package/lib/pages/inventory/inventory.component.d.ts +0 -25
- package/lib/pages/inventory/quantityDialog.component.d.ts +0 -23
- package/lib/pages/invitations-table/invitations-table.component.d.ts +0 -19
- package/lib/pages/login/login.component.d.ts +0 -46
- package/lib/pages/logs/logs.component.d.ts +0 -14
- package/lib/pages/membership/membership.component.d.ts +0 -13
- package/lib/pages/notifications/notifications.component.d.ts +0 -16
- package/lib/pages/notifications-config/notifications-config.component.d.ts +0 -17
- package/lib/pages/plans/plans.component.d.ts +0 -13
- package/lib/pages/positions/positions.component.d.ts +0 -12
- package/lib/pages/profile/profile.component.d.ts +0 -35
- package/lib/pages/recover-account/recover-account.component.d.ts +0 -18
- package/lib/pages/roles/addRoleDialog.component.d.ts +0 -24
- package/lib/pages/roles/roles.component.d.ts +0 -42
- package/lib/pages/suppliers/suppliers.component.d.ts +0 -14
- package/lib/pages/tasks/tasks.component.d.ts +0 -27
- package/lib/pages/tenant-settings/tenant-settings.component.d.ts +0 -47
- package/lib/pages/tenants/tenants.component.d.ts +0 -17
- package/lib/pages/transactions/transactDialog.component.d.ts +0 -26
- package/lib/pages/transactions/transactions.component.d.ts +0 -31
- package/lib/pages/users/users.component.d.ts +0 -28
- package/lib/pages/welcome/welcome.component.d.ts +0 -25
- package/lib/pipes/camelToWords.pipe.d.ts +0 -7
- package/lib/select-context.directive.d.ts +0 -10
- package/lib/services/button.service.d.ts +0 -30
- package/lib/services/condition.service.d.ts +0 -10
- package/lib/services/csv.service.d.ts +0 -10
- package/lib/services/datalib.service.d.ts +0 -125
- package/lib/services/dialog.service.d.ts +0 -20
- package/lib/services/http.service.d.ts +0 -22
- package/lib/services/notifications.service.d.ts +0 -12
- package/lib/services/table-config.service.d.ts +0 -17
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { MatDialogRef } from "@angular/material/dialog";
|
|
3
|
+
import { DataService } from "../../services/data.service";
|
|
4
|
+
import { User } from "../../classes/Classes";
|
|
5
|
+
import { MessageService } from "../../services/message.service";
|
|
6
|
+
export declare class EditUserDialog implements OnInit {
|
|
7
|
+
private dataserv;
|
|
8
|
+
private messageService;
|
|
9
|
+
private dialogRef;
|
|
10
|
+
data: any;
|
|
11
|
+
constructor(dataserv: DataService, messageService: MessageService, dialogRef: MatDialogRef<EditUserDialog>, data: any);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
user: User;
|
|
14
|
+
myData: any;
|
|
15
|
+
myResponse: any;
|
|
16
|
+
departments: any;
|
|
17
|
+
lineManagers: any;
|
|
18
|
+
roles: any;
|
|
19
|
+
isProcessing: boolean;
|
|
20
|
+
myUser: User;
|
|
21
|
+
unlock(): void;
|
|
22
|
+
lock(): void;
|
|
23
|
+
enable(): void;
|
|
24
|
+
disable(): void;
|
|
25
|
+
Update(): void;
|
|
26
|
+
DeleteUser(): void;
|
|
27
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { MatPaginator } from "@angular/material/paginator";
|
|
3
|
+
import { MatDialog } from "@angular/material/dialog";
|
|
4
|
+
import { DataService } from "../../services/data.service";
|
|
5
|
+
import { HttpService } from "tin-core";
|
|
6
|
+
import { Router } from "@angular/router";
|
|
7
|
+
import { MessageService } from "../../services/message.service";
|
|
8
|
+
import { AuthService } from "../../services/auth.service";
|
|
9
|
+
import { User } from '../../classes/Classes';
|
|
10
|
+
import * as ɵngcc0 from '@angular/core';
|
|
11
|
+
export declare class UsersComponent implements OnInit {
|
|
12
|
+
private httpService;
|
|
13
|
+
router: Router;
|
|
14
|
+
private authService;
|
|
15
|
+
private dataService;
|
|
16
|
+
dialog: MatDialog;
|
|
17
|
+
private messageService;
|
|
18
|
+
constructor(httpService: HttpService, router: Router, authService: AuthService, dataService: DataService, dialog: MatDialog, messageService: MessageService);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
isProcessing: boolean;
|
|
21
|
+
usersPaginator: MatPaginator;
|
|
22
|
+
_filterText: string;
|
|
23
|
+
users: any;
|
|
24
|
+
displayedColumns: string[];
|
|
25
|
+
UpdateData(): void;
|
|
26
|
+
applyFilter(filterValue: string): void;
|
|
27
|
+
createAccount(): void;
|
|
28
|
+
viewProfile(user: User): void;
|
|
29
|
+
lock(u: User): void;
|
|
30
|
+
unlock(u: User): void;
|
|
31
|
+
enable(u: User): void;
|
|
32
|
+
disable(u: User): void;
|
|
33
|
+
recover(u: User): void;
|
|
34
|
+
updateUser(user: any): void;
|
|
35
|
+
deleteUser(user: User): void;
|
|
36
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<UsersComponent, never>;
|
|
37
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<UsersComponent, "spa-users", never, {}, {}, never, never>;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlcnMuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbInVzZXJzLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPbkluaXQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBNYXRQYWdpbmF0b3IgfSBmcm9tIFwiQGFuZ3VsYXIvbWF0ZXJpYWwvcGFnaW5hdG9yXCI7XHJcbmltcG9ydCB7IE1hdERpYWxvZyB9IGZyb20gXCJAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2dcIjtcclxuaW1wb3J0IHsgRGF0YVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vc2VydmljZXMvZGF0YS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IEh0dHBTZXJ2aWNlIH0gZnJvbSBcInRpbi1jb3JlXCI7XHJcbmltcG9ydCB7IFJvdXRlciB9IGZyb20gXCJAYW5ndWxhci9yb3V0ZXJcIjtcclxuaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vc2VydmljZXMvbWVzc2FnZS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IEF1dGhTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZVwiO1xyXG5pbXBvcnQgeyBVc2VyIH0gZnJvbSAnLi4vLi4vY2xhc3Nlcy9DbGFzc2VzJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgVXNlcnNDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgcHJpdmF0ZSBodHRwU2VydmljZTtcclxuICAgIHJvdXRlcjogUm91dGVyO1xyXG4gICAgcHJpdmF0ZSBhdXRoU2VydmljZTtcclxuICAgIHByaXZhdGUgZGF0YVNlcnZpY2U7XHJcbiAgICBkaWFsb2c6IE1hdERpYWxvZztcclxuICAgIHByaXZhdGUgbWVzc2FnZVNlcnZpY2U7XHJcbiAgICBjb25zdHJ1Y3RvcihodHRwU2VydmljZTogSHR0cFNlcnZpY2UsIHJvdXRlcjogUm91dGVyLCBhdXRoU2VydmljZTogQXV0aFNlcnZpY2UsIGRhdGFTZXJ2aWNlOiBEYXRhU2VydmljZSwgZGlhbG9nOiBNYXREaWFsb2csIG1lc3NhZ2VTZXJ2aWNlOiBNZXNzYWdlU2VydmljZSk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgaXNQcm9jZXNzaW5nOiBib29sZWFuO1xyXG4gICAgdXNlcnNQYWdpbmF0b3I6IE1hdFBhZ2luYXRvcjtcclxuICAgIF9maWx0ZXJUZXh0OiBzdHJpbmc7XHJcbiAgICB1c2VyczogYW55O1xyXG4gICAgZGlzcGxheWVkQ29sdW1uczogc3RyaW5nW107XHJcbiAgICBVcGRhdGVEYXRhKCk6IHZvaWQ7XHJcbiAgICBhcHBseUZpbHRlcihmaWx0ZXJWYWx1ZTogc3RyaW5nKTogdm9pZDtcclxuICAgIGNyZWF0ZUFjY291bnQoKTogdm9pZDtcclxuICAgIHZpZXdQcm9maWxlKHVzZXI6IFVzZXIpOiB2b2lkO1xyXG4gICAgbG9jayh1OiBVc2VyKTogdm9pZDtcclxuICAgIHVubG9jayh1OiBVc2VyKTogdm9pZDtcclxuICAgIGVuYWJsZSh1OiBVc2VyKTogdm9pZDtcclxuICAgIGRpc2FibGUodTogVXNlcik6IHZvaWQ7XHJcbiAgICByZWNvdmVyKHU6IFVzZXIpOiB2b2lkO1xyXG4gICAgdXBkYXRlVXNlcih1c2VyOiBhbnkpOiB2b2lkO1xyXG4gICAgZGVsZXRlVXNlcih1c2VyOiBVc2VyKTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { MatPaginator } from "@angular/material/paginator";
|
|
3
|
+
import { MatDialog } from "@angular/material/dialog";
|
|
4
|
+
import { DataService } from "../../services/data.service";
|
|
5
|
+
import { HttpService } from "tin-core";
|
|
6
|
+
import { Router } from "@angular/router";
|
|
7
|
+
import { MessageService } from "../../services/message.service";
|
|
8
|
+
import { AuthService } from "../../services/auth.service";
|
|
9
|
+
import { User } from '../../classes/Classes';
|
|
10
|
+
export declare class UsersComponent implements OnInit {
|
|
11
|
+
private httpService;
|
|
12
|
+
router: Router;
|
|
13
|
+
private authService;
|
|
14
|
+
private dataService;
|
|
15
|
+
dialog: MatDialog;
|
|
16
|
+
private messageService;
|
|
17
|
+
constructor(httpService: HttpService, router: Router, authService: AuthService, dataService: DataService, dialog: MatDialog, messageService: MessageService);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
isProcessing: boolean;
|
|
20
|
+
usersPaginator: MatPaginator;
|
|
21
|
+
_filterText: string;
|
|
22
|
+
users: any;
|
|
23
|
+
displayedColumns: string[];
|
|
24
|
+
UpdateData(): void;
|
|
25
|
+
applyFilter(filterValue: string): void;
|
|
26
|
+
createAccount(): void;
|
|
27
|
+
viewProfile(user: User): void;
|
|
28
|
+
lock(u: User): void;
|
|
29
|
+
unlock(u: User): void;
|
|
30
|
+
enable(u: User): void;
|
|
31
|
+
disable(u: User): void;
|
|
32
|
+
recover(u: User): void;
|
|
33
|
+
updateUser(user: any): void;
|
|
34
|
+
deleteUser(user: User): void;
|
|
35
|
+
}
|
|
@@ -1,25 +1,21 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
-
import
|
|
4
|
-
import { Action } from '../../classes/Classes';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
3
|
+
import * as ɵngcc0 from '@angular/core';
|
|
6
4
|
export declare class ViewerComponent implements OnInit {
|
|
7
|
-
private dataService;
|
|
8
5
|
dialog: MatDialog;
|
|
9
|
-
constructor(
|
|
6
|
+
constructor(dialog: MatDialog);
|
|
10
7
|
ngOnInit(): void;
|
|
11
|
-
|
|
12
|
-
path: string;
|
|
8
|
+
dir: string;
|
|
13
9
|
folderName: string;
|
|
14
|
-
fileNames: any;
|
|
10
|
+
fileNames: any[];
|
|
15
11
|
removable: boolean;
|
|
16
12
|
remove: EventEmitter<any>;
|
|
17
13
|
display: string;
|
|
18
14
|
title: string;
|
|
19
|
-
loadData(): void;
|
|
20
|
-
convert(): void;
|
|
21
15
|
viewDocs(fileName: string): void;
|
|
22
16
|
removed(i: any): void;
|
|
23
|
-
static ɵfac:
|
|
24
|
-
static ɵcmp:
|
|
17
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<ViewerComponent, never>;
|
|
18
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<ViewerComponent, "spa-viewer", never, { "dir": "dir"; "folderName": "folderName"; "fileNames": "fileNames"; "removable": "removable"; "display": "display"; "title": "title"; }, { "remove": "remove"; }, never, never>;
|
|
25
19
|
}
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmlld2VyLmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJ2aWV3ZXIuY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFdmVudEVtaXR0ZXIsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBNYXREaWFsb2cgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBWaWV3ZXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgZGlhbG9nOiBNYXREaWFsb2c7XHJcbiAgICBjb25zdHJ1Y3RvcihkaWFsb2c6IE1hdERpYWxvZyk7XHJcbiAgICBuZ09uSW5pdCgpOiB2b2lkO1xyXG4gICAgZGlyOiBzdHJpbmc7XHJcbiAgICBmb2xkZXJOYW1lOiBzdHJpbmc7XHJcbiAgICBmaWxlTmFtZXM6IGFueVtdO1xyXG4gICAgcmVtb3ZhYmxlOiBib29sZWFuO1xyXG4gICAgcmVtb3ZlOiBFdmVudEVtaXR0ZXI8YW55PjtcclxuICAgIGRpc3BsYXk6IHN0cmluZztcclxuICAgIHRpdGxlOiBzdHJpbmc7XHJcbiAgICB2aWV3RG9jcyhmaWxlTmFtZTogc3RyaW5nKTogdm9pZDtcclxuICAgIHJlbW92ZWQoaTogYW55KTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
+
export declare class ViewerComponent implements OnInit {
|
|
4
|
+
dialog: MatDialog;
|
|
5
|
+
constructor(dialog: MatDialog);
|
|
6
|
+
ngOnInit(): void;
|
|
7
|
+
dir: string;
|
|
8
|
+
folderName: string;
|
|
9
|
+
fileNames: any[];
|
|
10
|
+
removable: boolean;
|
|
11
|
+
remove: EventEmitter<any>;
|
|
12
|
+
display: string;
|
|
13
|
+
title: string;
|
|
14
|
+
viewDocs(fileName: string): void;
|
|
15
|
+
removed(i: any): void;
|
|
16
|
+
}
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { HttpService } from '
|
|
3
|
-
import
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
2
|
+
import { HttpService } from 'tin-core';
|
|
3
|
+
import * as ɵngcc0 from '@angular/core';
|
|
5
4
|
export declare class viewerDialog implements OnInit {
|
|
6
5
|
private httpService;
|
|
7
|
-
private dataServiceLib;
|
|
8
6
|
data: any;
|
|
9
|
-
constructor(httpService: HttpService,
|
|
7
|
+
constructor(httpService: HttpService, data: any);
|
|
10
8
|
ngOnInit(): void;
|
|
11
9
|
isProcessing: boolean;
|
|
12
|
-
|
|
10
|
+
path: string;
|
|
13
11
|
fileNames: any[];
|
|
14
12
|
fileName: string;
|
|
15
13
|
currIndex: number;
|
|
@@ -19,6 +17,8 @@ export declare class viewerDialog implements OnInit {
|
|
|
19
17
|
imageDoc: boolean;
|
|
20
18
|
setURL(): void;
|
|
21
19
|
change(fileName: any): void;
|
|
22
|
-
static ɵfac:
|
|
23
|
-
static ɵcmp:
|
|
20
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<viewerDialog, never>;
|
|
21
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<viewerDialog, "app-editRequest", never, {}, {}, never, never>;
|
|
24
22
|
}
|
|
23
|
+
|
|
24
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmlld2VyRGlhbG9nLmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJ2aWV3ZXJEaWFsb2cuY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgSHR0cFNlcnZpY2UgfSBmcm9tICd0aW4tY29yZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIHZpZXdlckRpYWxvZyBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBwcml2YXRlIGh0dHBTZXJ2aWNlO1xyXG4gICAgZGF0YTogYW55O1xyXG4gICAgY29uc3RydWN0b3IoaHR0cFNlcnZpY2U6IEh0dHBTZXJ2aWNlLCBkYXRhOiBhbnkpO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIGlzUHJvY2Vzc2luZzogYm9vbGVhbjtcclxuICAgIHBhdGg6IHN0cmluZztcclxuICAgIGZpbGVOYW1lczogYW55W107XHJcbiAgICBmaWxlTmFtZTogc3RyaW5nO1xyXG4gICAgY3VyckluZGV4OiBudW1iZXI7XHJcbiAgICBjdXJyZW50RmlsZVVybDogc3RyaW5nO1xyXG4gICAgcHJldmlvdXMoKTogdm9pZDtcclxuICAgIG5leHQoKTogdm9pZDtcclxuICAgIGltYWdlRG9jOiBib29sZWFuO1xyXG4gICAgc2V0VVJMKCk6IHZvaWQ7XHJcbiAgICBjaGFuZ2UoZmlsZU5hbWU6IGFueSk6IHZvaWQ7XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { HttpService } from 'tin-core';
|
|
3
|
+
export declare class viewerDialog implements OnInit {
|
|
4
|
+
private httpService;
|
|
5
|
+
data: any;
|
|
6
|
+
constructor(httpService: HttpService, data: any);
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
isProcessing: boolean;
|
|
9
|
+
path: string;
|
|
10
|
+
fileNames: any[];
|
|
11
|
+
fileName: string;
|
|
12
|
+
currIndex: number;
|
|
13
|
+
currentFileUrl: string;
|
|
14
|
+
previous(): void;
|
|
15
|
+
next(): void;
|
|
16
|
+
imageDoc: boolean;
|
|
17
|
+
setURL(): void;
|
|
18
|
+
change(fileName: any): void;
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as ɵngcc0 from '@angular/core';
|
|
3
|
+
export declare class DndDirective {
|
|
4
|
+
fileOver: boolean;
|
|
5
|
+
fileDropped: EventEmitter<any>;
|
|
6
|
+
onDragOver(evt: any): void;
|
|
7
|
+
onDragLeave(evt: any): void;
|
|
8
|
+
ondrop(evt: any): void;
|
|
9
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<DndDirective, never>;
|
|
10
|
+
static ɵdir: ɵngcc0.ɵɵDirectiveDefWithMeta<DndDirective, "[appDnd]", never, {}, { "fileDropped": "fileDropped"; }, never>;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG5kLmRpcmVjdGl2ZS5kLnRzIiwic291cmNlcyI6WyJkbmQuZGlyZWN0aXZlLmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEV2ZW50RW1pdHRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBEbmREaXJlY3RpdmUge1xyXG4gICAgZmlsZU92ZXI6IGJvb2xlYW47XHJcbiAgICBmaWxlRHJvcHBlZDogRXZlbnRFbWl0dGVyPGFueT47XHJcbiAgICBvbkRyYWdPdmVyKGV2dDogYW55KTogdm9pZDtcclxuICAgIG9uRHJhZ0xlYXZlKGV2dDogYW55KTogdm9pZDtcclxuICAgIG9uZHJvcChldnQ6IGFueSk6IHZvaWQ7XHJcbn1cclxuIl19
|
|
@@ -1,15 +1,21 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
7
|
-
import * as
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
1
|
+
import * as ɵngcc0 from '@angular/core';
|
|
2
|
+
import * as ɵngcc1 from '../components/users/users.component';
|
|
3
|
+
import * as ɵngcc2 from '../components/users/addUserDialog.component';
|
|
4
|
+
import * as ɵngcc3 from '../components/users/editUserDialog.component';
|
|
5
|
+
import * as ɵngcc4 from '../components/roles/roles.component';
|
|
6
|
+
import * as ɵngcc5 from '../components/roles/addRoleDialog.component';
|
|
7
|
+
import * as ɵngcc6 from '../components/roles/editRoleDialog.component';
|
|
8
|
+
import * as ɵngcc7 from '../components/roles/viewRoleDialog.component';
|
|
9
|
+
import * as ɵngcc8 from '../components/profiles/profiles.component';
|
|
10
|
+
import * as ɵngcc9 from '../components/create-account/create-account.component';
|
|
11
|
+
import * as ɵngcc10 from '../components/logs/logs.component';
|
|
12
|
+
import * as ɵngcc11 from '../components/settings/settings.component';
|
|
13
|
+
import * as ɵngcc12 from '@angular/forms';
|
|
14
|
+
import * as ɵngcc13 from '@angular/common';
|
|
15
|
+
import * as ɵngcc14 from './spa-mat.module';
|
|
11
16
|
export declare class SpaAdminModule {
|
|
12
|
-
static
|
|
13
|
-
static
|
|
14
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SpaAdminModule>;
|
|
17
|
+
static ɵmod: ɵngcc0.ɵɵNgModuleDefWithMeta<SpaAdminModule, [typeof ɵngcc1.UsersComponent, typeof ɵngcc2.AddUserDialog, typeof ɵngcc3.EditUserDialog, typeof ɵngcc4.RolesComponent, typeof ɵngcc5.addRoleDialog, typeof ɵngcc6.editRoleDialog, typeof ɵngcc7.viewRoleDialog, typeof ɵngcc8.ProfilesComponent, typeof ɵngcc9.CreateAccountComponent, typeof ɵngcc10.LogsComponent, typeof ɵngcc11.SettingsComponent], [typeof ɵngcc12.ReactiveFormsModule, typeof ɵngcc13.CommonModule, typeof ɵngcc12.FormsModule, typeof ɵngcc12.ReactiveFormsModule, typeof ɵngcc14.SpaMatModule], [typeof ɵngcc13.CommonModule, typeof ɵngcc12.FormsModule, typeof ɵngcc14.SpaMatModule, typeof ɵngcc1.UsersComponent, typeof ɵngcc2.AddUserDialog, typeof ɵngcc3.EditUserDialog, typeof ɵngcc4.RolesComponent, typeof ɵngcc5.addRoleDialog, typeof ɵngcc6.editRoleDialog, typeof ɵngcc7.viewRoleDialog, typeof ɵngcc8.ProfilesComponent, typeof ɵngcc9.CreateAccountComponent, typeof ɵngcc10.LogsComponent, typeof ɵngcc11.SettingsComponent]>;
|
|
18
|
+
static ɵinj: ɵngcc0.ɵɵInjectorDef<SpaAdminModule>;
|
|
15
19
|
}
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhLWFkbWluLm1vZHVsZS5kLnRzIiwic291cmNlcyI6WyJzcGEtYWRtaW4ubW9kdWxlLmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY2xhc3MgU3BhQWRtaW5Nb2R1bGUge1xyXG59XHJcbiJdfQ==
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
7
|
-
import * as
|
|
8
|
-
import * as i7 from "@abacritt/angularx-social-login";
|
|
1
|
+
import * as ɵngcc0 from '@angular/core';
|
|
2
|
+
import * as ɵngcc1 from '../components/login/login.component';
|
|
3
|
+
import * as ɵngcc2 from '../components/signup/signup.component';
|
|
4
|
+
import * as ɵngcc3 from '../components/recover-account/recover-account.component';
|
|
5
|
+
import * as ɵngcc4 from '@angular/forms';
|
|
6
|
+
import * as ɵngcc5 from '@angular/common';
|
|
7
|
+
import * as ɵngcc6 from './spa-mat.module';
|
|
9
8
|
export declare class SpaIndexModule {
|
|
10
|
-
static
|
|
11
|
-
static
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SpaIndexModule>;
|
|
9
|
+
static ɵmod: ɵngcc0.ɵɵNgModuleDefWithMeta<SpaIndexModule, [typeof ɵngcc1.LoginComponent, typeof ɵngcc2.SignupComponent, typeof ɵngcc3.RecoverAccountComponent], [typeof ɵngcc4.ReactiveFormsModule, typeof ɵngcc5.CommonModule, typeof ɵngcc4.FormsModule, typeof ɵngcc4.ReactiveFormsModule, typeof ɵngcc6.SpaMatModule], [typeof ɵngcc5.CommonModule, typeof ɵngcc4.FormsModule, typeof ɵngcc6.SpaMatModule, typeof ɵngcc1.LoginComponent, typeof ɵngcc2.SignupComponent, typeof ɵngcc3.RecoverAccountComponent]>;
|
|
10
|
+
static ɵinj: ɵngcc0.ɵɵInjectorDef<SpaIndexModule>;
|
|
13
11
|
}
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhLWluZGV4Lm1vZHVsZS5kLnRzIiwic291cmNlcyI6WyJzcGEtaW5kZXgubW9kdWxlLmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7OztBQUFBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBkZWNsYXJlIGNsYXNzIFNwYUluZGV4TW9kdWxlIHtcclxufVxyXG4iXX0=
|
|
@@ -1,38 +1,34 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
7
|
-
import * as
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
12
|
-
import * as
|
|
13
|
-
import * as
|
|
14
|
-
import * as
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
17
|
-
import * as
|
|
18
|
-
import * as
|
|
19
|
-
import * as
|
|
20
|
-
import * as
|
|
21
|
-
import * as
|
|
22
|
-
import * as
|
|
23
|
-
import * as
|
|
24
|
-
import * as
|
|
25
|
-
import * as
|
|
26
|
-
import * as
|
|
27
|
-
import * as
|
|
28
|
-
import * as
|
|
29
|
-
import * as i28 from "@angular/material/progress-bar";
|
|
30
|
-
import * as i29 from "@angular/material/sidenav";
|
|
31
|
-
import * as i30 from "@angular/material/toolbar";
|
|
32
|
-
import * as i31 from "@angular/router";
|
|
33
|
-
import * as i32 from "@angular/material/expansion";
|
|
1
|
+
import * as ɵngcc0 from '@angular/core';
|
|
2
|
+
import * as ɵngcc1 from '@angular/common';
|
|
3
|
+
import * as ɵngcc2 from '@angular/forms';
|
|
4
|
+
import * as ɵngcc3 from '@angular/material/menu';
|
|
5
|
+
import * as ɵngcc4 from '@angular/material/slider';
|
|
6
|
+
import * as ɵngcc5 from '@angular/material/table';
|
|
7
|
+
import * as ɵngcc6 from '@angular/material/paginator';
|
|
8
|
+
import * as ɵngcc7 from '@angular/material/checkbox';
|
|
9
|
+
import * as ɵngcc8 from '@angular/material/badge';
|
|
10
|
+
import * as ɵngcc9 from '@angular/material/button';
|
|
11
|
+
import * as ɵngcc10 from '@angular/material/icon';
|
|
12
|
+
import * as ɵngcc11 from '@angular/material/dialog';
|
|
13
|
+
import * as ɵngcc12 from '@angular/material/snack-bar';
|
|
14
|
+
import * as ɵngcc13 from '@angular/material/tabs';
|
|
15
|
+
import * as ɵngcc14 from '@angular/material/form-field';
|
|
16
|
+
import * as ɵngcc15 from '@angular/material/input';
|
|
17
|
+
import * as ɵngcc16 from '@angular/material/card';
|
|
18
|
+
import * as ɵngcc17 from '@angular/material/chips';
|
|
19
|
+
import * as ɵngcc18 from '@angular/material/select';
|
|
20
|
+
import * as ɵngcc19 from '@angular/material/core';
|
|
21
|
+
import * as ɵngcc20 from '@angular/material/progress-spinner';
|
|
22
|
+
import * as ɵngcc21 from '@angular/material/list';
|
|
23
|
+
import * as ɵngcc22 from '@angular/material/autocomplete';
|
|
24
|
+
import * as ɵngcc23 from '@angular/material/tooltip';
|
|
25
|
+
import * as ɵngcc24 from '@angular/material/sort';
|
|
26
|
+
import * as ɵngcc25 from '@angular/material/datepicker';
|
|
27
|
+
import * as ɵngcc26 from '@angular/material/stepper';
|
|
28
|
+
import * as ɵngcc27 from '@angular/material/radio';
|
|
34
29
|
export declare class SpaMatModule {
|
|
35
|
-
static
|
|
36
|
-
static
|
|
37
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SpaMatModule>;
|
|
30
|
+
static ɵmod: ɵngcc0.ɵɵNgModuleDefWithMeta<SpaMatModule, never, never, [typeof ɵngcc1.CommonModule, typeof ɵngcc2.FormsModule, typeof ɵngcc2.ReactiveFormsModule, typeof ɵngcc3.MatMenuModule, typeof ɵngcc4.MatSliderModule, typeof ɵngcc5.MatTableModule, typeof ɵngcc6.MatPaginatorModule, typeof ɵngcc7.MatCheckboxModule, typeof ɵngcc8.MatBadgeModule, typeof ɵngcc9.MatButtonModule, typeof ɵngcc10.MatIconModule, typeof ɵngcc11.MatDialogModule, typeof ɵngcc12.MatSnackBarModule, typeof ɵngcc13.MatTabsModule, typeof ɵngcc14.MatFormFieldModule, typeof ɵngcc15.MatInputModule, typeof ɵngcc16.MatCardModule, typeof ɵngcc17.MatChipsModule, typeof ɵngcc18.MatSelectModule, typeof ɵngcc19.MatNativeDateModule, typeof ɵngcc20.MatProgressSpinnerModule, typeof ɵngcc21.MatListModule, typeof ɵngcc22.MatAutocompleteModule, typeof ɵngcc23.MatTooltipModule, typeof ɵngcc24.MatSortModule, typeof ɵngcc25.MatDatepickerModule, typeof ɵngcc26.MatStepperModule, typeof ɵngcc27.MatRadioModule]>;
|
|
31
|
+
static ɵinj: ɵngcc0.ɵɵInjectorDef<SpaMatModule>;
|
|
38
32
|
}
|
|
33
|
+
|
|
34
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhLW1hdC5tb2R1bGUuZC50cyIsInNvdXJjZXMiOlsic3BhLW1hdC5tb2R1bGUuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY2xhc3MgU3BhTWF0TW9kdWxlIHtcclxufVxyXG4iXX0=
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
1
|
+
import * as ɵngcc0 from '@angular/core';
|
|
2
|
+
import * as ɵngcc1 from '../components/change-password/change-password.component';
|
|
3
|
+
import * as ɵngcc2 from '../components/profile/profile.component';
|
|
4
|
+
import * as ɵngcc3 from '@angular/forms';
|
|
5
|
+
import * as ɵngcc4 from '@angular/common';
|
|
6
|
+
import * as ɵngcc5 from './spa-mat.module';
|
|
7
7
|
export declare class SpaUserModule {
|
|
8
|
-
static
|
|
9
|
-
static
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SpaUserModule>;
|
|
8
|
+
static ɵmod: ɵngcc0.ɵɵNgModuleDefWithMeta<SpaUserModule, [typeof ɵngcc1.ChangePasswordComponent, typeof ɵngcc2.ProfileComponent], [typeof ɵngcc3.ReactiveFormsModule, typeof ɵngcc4.CommonModule, typeof ɵngcc3.FormsModule, typeof ɵngcc3.ReactiveFormsModule, typeof ɵngcc5.SpaMatModule], [typeof ɵngcc4.CommonModule, typeof ɵngcc3.FormsModule, typeof ɵngcc5.SpaMatModule, typeof ɵngcc1.ChangePasswordComponent, typeof ɵngcc2.ProfileComponent]>;
|
|
9
|
+
static ɵinj: ɵngcc0.ɵɵInjectorDef<SpaUserModule>;
|
|
11
10
|
}
|
|
11
|
+
|
|
12
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhLXVzZXIubW9kdWxlLmQudHMiLCJzb3VyY2VzIjpbInNwYS11c2VyLm1vZHVsZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUFBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBkZWNsYXJlIGNsYXNzIFNwYVVzZXJNb2R1bGUge1xyXG59XHJcbiJdfQ==
|
|
@@ -1,61 +1,49 @@
|
|
|
1
1
|
import { MessageService } from './message.service';
|
|
2
|
-
import {
|
|
2
|
+
import { HttpService } from 'tin-core';
|
|
3
|
+
import { Router, CanActivate } from '@angular/router';
|
|
3
4
|
import { BehaviorSubject } from 'rxjs';
|
|
4
5
|
import { StorageService } from './storage.service';
|
|
5
6
|
import { LogService } from './log.service';
|
|
6
|
-
import {
|
|
7
|
-
import
|
|
8
|
-
import { Role } from '../classes/LibClasses';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
7
|
+
import { Role } from '../classes/Classes';
|
|
8
|
+
import * as ɵngcc0 from '@angular/core';
|
|
10
9
|
export declare class AuthService implements CanActivate {
|
|
11
|
-
private _route;
|
|
12
|
-
private socialService;
|
|
13
10
|
private storage;
|
|
14
11
|
router: Router;
|
|
15
12
|
private httpService;
|
|
16
13
|
private messageService;
|
|
17
14
|
private logService;
|
|
18
|
-
constructor(
|
|
19
|
-
clearSession(): void;
|
|
20
|
-
sessionExpired(): void;
|
|
21
|
-
logoff(): void;
|
|
15
|
+
constructor(storage: StorageService, router: Router, httpService: HttpService, messageService: MessageService, logService: LogService);
|
|
22
16
|
private loggedin;
|
|
23
17
|
private loggedinSource;
|
|
24
18
|
loggedinObserv: import("rxjs").Observable<boolean>;
|
|
25
|
-
|
|
26
|
-
private autoLogin;
|
|
27
|
-
private autoLoginSource;
|
|
28
|
-
autoLoginObserv: import("rxjs").Observable<boolean>;
|
|
29
|
-
UpdateAutoLogin(autoLogin: boolean): void;
|
|
19
|
+
updateloggedin(loggedin: boolean): void;
|
|
30
20
|
private token;
|
|
31
21
|
tokenSource: BehaviorSubject<string>;
|
|
32
22
|
tokenObserv: import("rxjs").Observable<string>;
|
|
33
|
-
|
|
23
|
+
updateToken(newToken: string): void;
|
|
34
24
|
private tokenExpire;
|
|
35
25
|
tokenExpireSource: BehaviorSubject<string>;
|
|
36
26
|
tokenExpireObserv: import("rxjs").Observable<string>;
|
|
37
|
-
|
|
27
|
+
updateTokenExpire(newTokenExpire: string): void;
|
|
38
28
|
currentUser: string;
|
|
39
29
|
private currentUserSource;
|
|
40
30
|
currentUserObserv: import("rxjs").Observable<string>;
|
|
41
|
-
|
|
31
|
+
updateCurrentUser(newUser: string): void;
|
|
42
32
|
private islineManager;
|
|
43
33
|
private isLineManagerSource;
|
|
44
34
|
isLineManagerObserv: import("rxjs").Observable<boolean>;
|
|
45
|
-
|
|
35
|
+
updateIsLineManager(manager: boolean): void;
|
|
46
36
|
private currentRole;
|
|
47
37
|
currentRoleSource: BehaviorSubject<Role>;
|
|
48
38
|
myRoleObserv: import("rxjs").Observable<Role>;
|
|
49
|
-
|
|
39
|
+
updateRole(role: any): void;
|
|
50
40
|
private loggedUserSource;
|
|
51
41
|
loggedUserFullName: import("rxjs").Observable<string>;
|
|
52
|
-
updateLoggedUserFullName(
|
|
53
|
-
private tenantNameSource;
|
|
54
|
-
tenantNameObserv: import("rxjs").Observable<string>;
|
|
55
|
-
updateTenantName(tenantName: string): void;
|
|
42
|
+
updateLoggedUserFullName(username: string): void;
|
|
56
43
|
isAuthorised(capName: string): boolean;
|
|
57
44
|
isValidToken(): boolean;
|
|
58
45
|
canActivate(): boolean;
|
|
59
|
-
static ɵfac:
|
|
60
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
46
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<AuthService, never>;
|
|
61
47
|
}
|
|
48
|
+
|
|
49
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aC5zZXJ2aWNlLmQudHMiLCJzb3VyY2VzIjpbImF1dGguc2VydmljZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tICcuL21lc3NhZ2Uuc2VydmljZSc7XHJcbmltcG9ydCB7IEh0dHBTZXJ2aWNlIH0gZnJvbSAndGluLWNvcmUnO1xyXG5pbXBvcnQgeyBSb3V0ZXIsIENhbkFjdGl2YXRlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0IH0gZnJvbSAncnhqcyc7XHJcbmltcG9ydCB7IFN0b3JhZ2VTZXJ2aWNlIH0gZnJvbSAnLi9zdG9yYWdlLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBMb2dTZXJ2aWNlIH0gZnJvbSAnLi9sb2cuc2VydmljZSc7XHJcbmltcG9ydCB7IFJvbGUgfSBmcm9tICcuLi9jbGFzc2VzL0NsYXNzZXMnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBBdXRoU2VydmljZSBpbXBsZW1lbnRzIENhbkFjdGl2YXRlIHtcclxuICAgIHByaXZhdGUgc3RvcmFnZTtcclxuICAgIHJvdXRlcjogUm91dGVyO1xyXG4gICAgcHJpdmF0ZSBodHRwU2VydmljZTtcclxuICAgIHByaXZhdGUgbWVzc2FnZVNlcnZpY2U7XHJcbiAgICBwcml2YXRlIGxvZ1NlcnZpY2U7XHJcbiAgICBjb25zdHJ1Y3RvcihzdG9yYWdlOiBTdG9yYWdlU2VydmljZSwgcm91dGVyOiBSb3V0ZXIsIGh0dHBTZXJ2aWNlOiBIdHRwU2VydmljZSwgbWVzc2FnZVNlcnZpY2U6IE1lc3NhZ2VTZXJ2aWNlLCBsb2dTZXJ2aWNlOiBMb2dTZXJ2aWNlKTtcclxuICAgIHByaXZhdGUgbG9nZ2VkaW47XHJcbiAgICBwcml2YXRlIGxvZ2dlZGluU291cmNlO1xyXG4gICAgbG9nZ2VkaW5PYnNlcnY6IGltcG9ydChcInJ4anNcIikuT2JzZXJ2YWJsZTxib29sZWFuPjtcclxuICAgIHVwZGF0ZWxvZ2dlZGluKGxvZ2dlZGluOiBib29sZWFuKTogdm9pZDtcclxuICAgIHByaXZhdGUgdG9rZW47XHJcbiAgICB0b2tlblNvdXJjZTogQmVoYXZpb3JTdWJqZWN0PHN0cmluZz47XHJcbiAgICB0b2tlbk9ic2VydjogaW1wb3J0KFwicnhqc1wiKS5PYnNlcnZhYmxlPHN0cmluZz47XHJcbiAgICB1cGRhdGVUb2tlbihuZXdUb2tlbjogc3RyaW5nKTogdm9pZDtcclxuICAgIHByaXZhdGUgdG9rZW5FeHBpcmU7XHJcbiAgICB0b2tlbkV4cGlyZVNvdXJjZTogQmVoYXZpb3JTdWJqZWN0PHN0cmluZz47XHJcbiAgICB0b2tlbkV4cGlyZU9ic2VydjogaW1wb3J0KFwicnhqc1wiKS5PYnNlcnZhYmxlPHN0cmluZz47XHJcbiAgICB1cGRhdGVUb2tlbkV4cGlyZShuZXdUb2tlbkV4cGlyZTogc3RyaW5nKTogdm9pZDtcclxuICAgIGN1cnJlbnRVc2VyOiBzdHJpbmc7XHJcbiAgICBwcml2YXRlIGN1cnJlbnRVc2VyU291cmNlO1xyXG4gICAgY3VycmVudFVzZXJPYnNlcnY6IGltcG9ydChcInJ4anNcIikuT2JzZXJ2YWJsZTxzdHJpbmc+O1xyXG4gICAgdXBkYXRlQ3VycmVudFVzZXIobmV3VXNlcjogc3RyaW5nKTogdm9pZDtcclxuICAgIHByaXZhdGUgaXNsaW5lTWFuYWdlcjtcclxuICAgIHByaXZhdGUgaXNMaW5lTWFuYWdlclNvdXJjZTtcclxuICAgIGlzTGluZU1hbmFnZXJPYnNlcnY6IGltcG9ydChcInJ4anNcIikuT2JzZXJ2YWJsZTxib29sZWFuPjtcclxuICAgIHVwZGF0ZUlzTGluZU1hbmFnZXIobWFuYWdlcjogYm9vbGVhbik6IHZvaWQ7XHJcbiAgICBwcml2YXRlIGN1cnJlbnRSb2xlO1xyXG4gICAgY3VycmVudFJvbGVTb3VyY2U6IEJlaGF2aW9yU3ViamVjdDxSb2xlPjtcclxuICAgIG15Um9sZU9ic2VydjogaW1wb3J0KFwicnhqc1wiKS5PYnNlcnZhYmxlPFJvbGU+O1xyXG4gICAgdXBkYXRlUm9sZShyb2xlOiBhbnkpOiB2b2lkO1xyXG4gICAgcHJpdmF0ZSBsb2dnZWRVc2VyU291cmNlO1xyXG4gICAgbG9nZ2VkVXNlckZ1bGxOYW1lOiBpbXBvcnQoXCJyeGpzXCIpLk9ic2VydmFibGU8c3RyaW5nPjtcclxuICAgIHVwZGF0ZUxvZ2dlZFVzZXJGdWxsTmFtZSh1c2VybmFtZTogc3RyaW5nKTogdm9pZDtcclxuICAgIGlzQXV0aG9yaXNlZChjYXBOYW1lOiBzdHJpbmcpOiBib29sZWFuO1xyXG4gICAgaXNWYWxpZFRva2VuKCk6IGJvb2xlYW47XHJcbiAgICBjYW5BY3RpdmF0ZSgpOiBib29sZWFuO1xyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { MessageService } from './message.service';
|
|
2
|
+
import { HttpService } from 'tin-core';
|
|
3
|
+
import { Router, CanActivate } from '@angular/router';
|
|
4
|
+
import { BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { StorageService } from './storage.service';
|
|
6
|
+
import { LogService } from './log.service';
|
|
7
|
+
import { Role } from '../classes/Classes';
|
|
8
|
+
export declare class AuthService implements CanActivate {
|
|
9
|
+
private storage;
|
|
10
|
+
router: Router;
|
|
11
|
+
private httpService;
|
|
12
|
+
private messageService;
|
|
13
|
+
private logService;
|
|
14
|
+
constructor(storage: StorageService, router: Router, httpService: HttpService, messageService: MessageService, logService: LogService);
|
|
15
|
+
private loggedin;
|
|
16
|
+
private loggedinSource;
|
|
17
|
+
loggedinObserv: import("rxjs").Observable<boolean>;
|
|
18
|
+
updateloggedin(loggedin: boolean): void;
|
|
19
|
+
private token;
|
|
20
|
+
tokenSource: BehaviorSubject<string>;
|
|
21
|
+
tokenObserv: import("rxjs").Observable<string>;
|
|
22
|
+
updateToken(newToken: string): void;
|
|
23
|
+
private tokenExpire;
|
|
24
|
+
tokenExpireSource: BehaviorSubject<string>;
|
|
25
|
+
tokenExpireObserv: import("rxjs").Observable<string>;
|
|
26
|
+
updateTokenExpire(newTokenExpire: string): void;
|
|
27
|
+
currentUser: string;
|
|
28
|
+
private currentUserSource;
|
|
29
|
+
currentUserObserv: import("rxjs").Observable<string>;
|
|
30
|
+
updateCurrentUser(newUser: string): void;
|
|
31
|
+
private islineManager;
|
|
32
|
+
private isLineManagerSource;
|
|
33
|
+
isLineManagerObserv: import("rxjs").Observable<boolean>;
|
|
34
|
+
updateIsLineManager(manager: boolean): void;
|
|
35
|
+
private currentRole;
|
|
36
|
+
currentRoleSource: BehaviorSubject<Role>;
|
|
37
|
+
myRoleObserv: import("rxjs").Observable<Role>;
|
|
38
|
+
updateRole(role: any): void;
|
|
39
|
+
private loggedUserSource;
|
|
40
|
+
loggedUserFullName: import("rxjs").Observable<string>;
|
|
41
|
+
updateLoggedUserFullName(username: string): void;
|
|
42
|
+
isAuthorised(capName: string): boolean;
|
|
43
|
+
isValidToken(): boolean;
|
|
44
|
+
canActivate(): boolean;
|
|
45
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { HttpService } from 'tin-core';
|
|
2
|
+
import { CapItem, User } from '../classes/Classes';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as ɵngcc0 from '@angular/core';
|
|
5
|
+
export declare class DataService {
|
|
6
|
+
private httpService;
|
|
7
|
+
constructor(httpService: HttpService);
|
|
8
|
+
capUsers: CapItem;
|
|
9
|
+
tmpProfileUserID: string;
|
|
10
|
+
GetUser(by: string, val: string): Observable<any>;
|
|
11
|
+
UpdateUser(user: any, action: string): Observable<any>;
|
|
12
|
+
login(u: User): Observable<any>;
|
|
13
|
+
changePassword(u: any): Observable<any>;
|
|
14
|
+
changePasswordAdmin(u: any): Observable<any>;
|
|
15
|
+
SelfReset(u: User): Observable<any>;
|
|
16
|
+
UpdateRole(role: any, action: string): Observable<any>;
|
|
17
|
+
GetRole(by: string, val: string): Observable<any>;
|
|
18
|
+
UpdateAccount(account: any, action: string): Observable<any>;
|
|
19
|
+
GetProfile(by: string, val: string): Observable<any>;
|
|
20
|
+
UpdateProfile(profile: any, action: string): Observable<any>;
|
|
21
|
+
GetLog(by: string, val: string): Observable<any>;
|
|
22
|
+
GetSetting(by: string, val: string): Observable<any>;
|
|
23
|
+
UpdateSetting(setting: any, action: string): Observable<any>;
|
|
24
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<DataService, never>;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS5zZXJ2aWNlLmQudHMiLCJzb3VyY2VzIjpbImRhdGEuc2VydmljZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBTZXJ2aWNlIH0gZnJvbSAndGluLWNvcmUnO1xyXG5pbXBvcnQgeyBDYXBJdGVtLCBVc2VyIH0gZnJvbSAnLi4vY2xhc3Nlcy9DbGFzc2VzJztcclxuaW1wb3J0IHsgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBEYXRhU2VydmljZSB7XHJcbiAgICBwcml2YXRlIGh0dHBTZXJ2aWNlO1xyXG4gICAgY29uc3RydWN0b3IoaHR0cFNlcnZpY2U6IEh0dHBTZXJ2aWNlKTtcclxuICAgIGNhcFVzZXJzOiBDYXBJdGVtO1xyXG4gICAgdG1wUHJvZmlsZVVzZXJJRDogc3RyaW5nO1xyXG4gICAgR2V0VXNlcihieTogc3RyaW5nLCB2YWw6IHN0cmluZyk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIFVwZGF0ZVVzZXIodXNlcjogYW55LCBhY3Rpb246IHN0cmluZyk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIGxvZ2luKHU6IFVzZXIpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBjaGFuZ2VQYXNzd29yZCh1OiBhbnkpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBjaGFuZ2VQYXNzd29yZEFkbWluKHU6IGFueSk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIFNlbGZSZXNldCh1OiBVc2VyKTogT2JzZXJ2YWJsZTxhbnk+O1xyXG4gICAgVXBkYXRlUm9sZShyb2xlOiBhbnksIGFjdGlvbjogc3RyaW5nKTogT2JzZXJ2YWJsZTxhbnk+O1xyXG4gICAgR2V0Um9sZShieTogc3RyaW5nLCB2YWw6IHN0cmluZyk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIFVwZGF0ZUFjY291bnQoYWNjb3VudDogYW55LCBhY3Rpb246IHN0cmluZyk6IE9ic2VydmFibGU8YW55PjtcclxuICAgIEdldFByb2ZpbGUoYnk6IHN0cmluZywgdmFsOiBzdHJpbmcpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBVcGRhdGVQcm9maWxlKHByb2ZpbGU6IGFueSwgYWN0aW9uOiBzdHJpbmcpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBHZXRMb2coYnk6IHN0cmluZywgdmFsOiBzdHJpbmcpOiBPYnNlcnZhYmxlPGFueT47XHJcbiAgICBHZXRTZXR0aW5nKGJ5OiBzdHJpbmcsIHZhbDogc3RyaW5nKTogT2JzZXJ2YWJsZTxhbnk+O1xyXG4gICAgVXBkYXRlU2V0dGluZyhzZXR0aW5nOiBhbnksIGFjdGlvbjogc3RyaW5nKTogT2JzZXJ2YWJsZTxhbnk+O1xyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { HttpService } from 'tin-core';
|
|
2
|
+
import { CapItem, User } from '../classes/Classes';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
export declare class DataService {
|
|
5
|
+
private httpService;
|
|
6
|
+
constructor(httpService: HttpService);
|
|
7
|
+
capUsers: CapItem;
|
|
8
|
+
tmpProfileUserID: string;
|
|
9
|
+
GetUser(by: string, val: string): Observable<any>;
|
|
10
|
+
UpdateUser(user: any, action: string): Observable<any>;
|
|
11
|
+
login(u: User): Observable<any>;
|
|
12
|
+
changePassword(u: any): Observable<any>;
|
|
13
|
+
changePasswordAdmin(u: any): Observable<any>;
|
|
14
|
+
SelfReset(u: User): Observable<any>;
|
|
15
|
+
UpdateRole(role: any, action: string): Observable<any>;
|
|
16
|
+
GetRole(by: string, val: string): Observable<any>;
|
|
17
|
+
UpdateAccount(account: any, action: string): Observable<any>;
|
|
18
|
+
GetProfile(by: string, val: string): Observable<any>;
|
|
19
|
+
UpdateProfile(profile: any, action: string): Observable<any>;
|
|
20
|
+
GetLog(by: string, val: string): Observable<any>;
|
|
21
|
+
GetSetting(by: string, val: string): Observable<any>;
|
|
22
|
+
UpdateSetting(setting: any, action: string): Observable<any>;
|
|
23
|
+
}
|