tin-spa 2.13.15 → 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/README.md +2 -2
- package/bundles/tin-spa.umd.js +6694 -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 +254 -0
- package/esm2015/lib/classes/TinCore.js +137 -0
- package/esm2015/lib/components/activity/activity.component.js +92 -0
- package/esm2015/lib/components/attach/attach.component.js +181 -0
- package/esm2015/lib/components/change-password/change-password.component.js +179 -0
- package/esm2015/lib/components/check/check.component.js +69 -0
- package/esm2015/lib/components/chips/chips.component.js +107 -0
- package/esm2015/lib/components/create-account/create-account.component.js +160 -0
- package/esm2015/lib/components/date/date.component.js +66 -0
- package/esm2015/lib/components/datetime/datetime.component.js +57 -0
- package/esm2015/lib/components/filter/filter.component.js +64 -0
- package/esm2015/lib/components/html/html.component.js +102 -0
- package/esm2015/lib/components/label/label.component.js +117 -0
- package/esm2015/lib/components/loader/loader.component.js +53 -0
- package/esm2015/lib/components/login/login.component.js +240 -0
- package/esm2015/lib/components/logs/logs.component.js +195 -0
- package/esm2015/lib/components/message/messageDialog.component.js +142 -0
- 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 +152 -0
- package/esm2015/lib/components/nav-menu/nav-menu.component.js +204 -0
- package/esm2015/lib/components/option/option.component.js +129 -0
- package/esm2015/lib/components/profile/profile.component.js +198 -0
- package/esm2015/lib/components/recover-account/recover-account.component.js +74 -0
- package/esm2015/lib/components/roles/addRoleDialog.component.js +132 -0
- package/esm2015/lib/components/roles/roles.component.js +211 -0
- package/esm2015/lib/components/select/select.component.js +133 -0
- package/esm2015/lib/components/settings/settings.component.js +118 -0
- package/esm2015/lib/components/signup/signup.component.js +139 -0
- package/esm2015/lib/components/steps/steps.component.js +114 -0
- package/esm2015/lib/components/table/table.component.js +375 -0
- package/esm2015/lib/components/text/text.component.js +240 -0
- package/esm2015/lib/components/tiles/tiles.component.js +95 -0
- package/esm2015/lib/components/timeout/timeout.component.js +133 -0
- package/esm2015/lib/components/tin-spa.component.js +26 -0
- package/esm2015/lib/components/users/users.component.js +373 -0
- package/esm2015/lib/components/viewer/viewer.component.js +92 -0
- package/esm2015/lib/components/viewer/viewerDialog.component.js +131 -0
- package/esm2015/lib/dnd.directive.js +56 -0
- package/esm2015/lib/modules/spa-admin.module.js +81 -0
- package/esm2015/lib/modules/spa-index.module.js +58 -0
- package/esm2015/lib/modules/spa-mat.module.js +68 -0
- package/esm2015/lib/modules/spa-user.module.js +55 -0
- package/esm2015/lib/services/auth.service.js +142 -0
- package/esm2015/lib/services/data.service.js +111 -0
- package/esm2015/lib/services/export.service.js +29 -0
- package/esm2015/lib/services/http.service.js +79 -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 +52 -0
- package/esm2015/lib/services/storage.service.js +43 -0
- package/esm2015/lib/services/tin-spa.service.js +14 -0
- package/esm2015/lib/tin-spa.module.js +156 -0
- package/esm2015/public-api.js +56 -0
- package/esm2015/tin-spa.js +5 -0
- package/esm5/lib/classes/Classes.js +313 -0
- package/esm5/lib/classes/TinCore.js +164 -0
- package/esm5/lib/components/activity/activity.component.js +94 -0
- package/esm5/lib/components/attach/attach.component.js +195 -0
- package/esm5/lib/components/change-password/change-password.component.js +182 -0
- package/esm5/lib/components/check/check.component.js +71 -0
- package/esm5/lib/components/chips/chips.component.js +110 -0
- package/esm5/lib/components/create-account/create-account.component.js +163 -0
- package/esm5/lib/components/date/date.component.js +68 -0
- package/esm5/lib/components/datetime/datetime.component.js +59 -0
- package/esm5/lib/components/filter/filter.component.js +66 -0
- package/esm5/lib/components/html/html.component.js +104 -0
- package/esm5/lib/components/label/label.component.js +119 -0
- package/esm5/lib/components/loader/loader.component.js +56 -0
- package/esm5/lib/components/login/login.component.js +244 -0
- package/esm5/lib/components/logs/logs.component.js +198 -0
- package/esm5/lib/components/message/messageDialog.component.js +144 -0
- 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 +154 -0
- package/esm5/lib/components/nav-menu/nav-menu.component.js +207 -0
- package/esm5/lib/components/option/option.component.js +131 -0
- package/esm5/lib/components/profile/profile.component.js +203 -0
- package/esm5/lib/components/recover-account/recover-account.component.js +77 -0
- package/esm5/lib/components/roles/addRoleDialog.component.js +135 -0
- package/esm5/lib/components/roles/roles.component.js +218 -0
- package/esm5/lib/components/select/select.component.js +136 -0
- package/esm5/lib/components/settings/settings.component.js +122 -0
- package/esm5/lib/components/signup/signup.component.js +142 -0
- package/esm5/lib/components/steps/steps.component.js +128 -0
- package/esm5/lib/components/table/table.component.js +378 -0
- package/esm5/lib/components/text/text.component.js +244 -0
- package/esm5/lib/components/tiles/tiles.component.js +97 -0
- package/esm5/lib/components/timeout/timeout.component.js +136 -0
- package/esm5/lib/components/tin-spa.component.js +25 -0
- package/esm5/lib/components/users/users.component.js +380 -0
- package/esm5/lib/components/viewer/viewer.component.js +94 -0
- package/esm5/lib/components/viewer/viewerDialog.component.js +133 -0
- package/esm5/lib/dnd.directive.js +58 -0
- package/esm5/lib/modules/spa-admin.module.js +85 -0
- package/esm5/lib/modules/spa-index.module.js +62 -0
- package/esm5/lib/modules/spa-mat.module.js +72 -0
- package/esm5/lib/modules/spa-user.module.js +59 -0
- package/esm5/lib/services/auth.service.js +145 -0
- package/esm5/lib/services/data.service.js +113 -0
- package/esm5/lib/services/export.service.js +31 -0
- package/esm5/lib/services/http.service.js +81 -0
- package/esm5/lib/services/loader-interceptor.service.js +80 -0
- package/esm5/lib/services/loader.service.js +19 -0
- package/esm5/lib/services/log.service.js +114 -0
- package/esm5/lib/services/message.service.js +54 -0
- package/esm5/lib/services/storage.service.js +76 -0
- package/esm5/lib/services/tin-spa.service.js +17 -0
- package/esm5/lib/tin-spa.module.js +160 -0
- package/esm5/public-api.js +56 -0
- package/esm5/tin-spa.js +5 -0
- package/fesm2015/tin-spa.js +6204 -0
- package/fesm2015/tin-spa.js.map +1 -0
- package/fesm5/tin-spa.js +6453 -0
- package/fesm5/tin-spa.js.map +1 -0
- package/lib/classes/Classes.d.ts +228 -375
- package/lib/classes/TinCore.d.ts +11 -43
- package/lib/components/activity/activity.component.d.ts +2 -2
- package/lib/components/attach/attach.component.d.ts +27 -15
- package/lib/{pages → components}/change-password/change-password.component.d.ts +4 -4
- package/lib/components/check/check.component.d.ts +3 -8
- package/lib/components/chips/chips.component.d.ts +2 -2
- package/lib/{pages → components}/create-account/create-account.component.d.ts +4 -8
- package/lib/components/date/date.component.d.ts +12 -24
- package/lib/components/datetime/datetime.component.d.ts +2 -6
- package/lib/components/filter/filter.component.d.ts +2 -7
- package/lib/components/html/html.component.d.ts +10 -11
- package/lib/components/label/label.component.d.ts +2 -4
- package/lib/components/loader/loader.component.d.ts +2 -2
- package/lib/components/login/login.component.d.ts +32 -0
- package/lib/components/logs/logs.component.d.ts +18 -0
- package/lib/components/message/messageDialog.component.d.ts +2 -2
- package/lib/components/money/currency-input-mask.directive.d.ts +2 -2
- package/lib/components/money/currency-input-mask.module.d.ts +2 -3
- package/lib/components/money/money.component.d.ts +3 -13
- package/lib/components/nav-menu/nav-menu.component.d.ts +4 -22
- package/lib/components/option/option.component.d.ts +3 -14
- package/lib/{pages → components}/profile/profile.component.d.ts +4 -6
- package/lib/{pages → components}/recover-account/recover-account.component.d.ts +3 -3
- package/lib/components/roles/addRoleDialog.component.d.ts +22 -0
- package/lib/components/roles/roles.component.d.ts +30 -0
- package/lib/components/select/select.component.d.ts +20 -20
- package/lib/{pages → components}/settings/settings.component.d.ts +3 -3
- package/lib/{pages → components}/signup/signup.component.d.ts +4 -4
- package/lib/components/steps/steps.component.d.ts +10 -19
- package/lib/components/table/table.component.d.ts +21 -84
- package/lib/components/text/text.component.d.ts +14 -36
- package/lib/components/tiles/tiles.component.d.ts +7 -21
- package/lib/components/timeout/timeout.component.d.ts +24 -0
- package/lib/components/tin-spa.component.d.ts +6 -3
- package/lib/{pages → components}/users/users.component.d.ts +18 -11
- package/lib/components/viewer/viewer.component.d.ts +5 -11
- package/lib/components/viewer/viewerDialog.component.d.ts +4 -6
- package/lib/dnd.directive.d.ts +11 -0
- package/lib/modules/spa-admin.module.d.ts +10 -10
- package/lib/modules/spa-index.module.d.ts +7 -8
- package/lib/modules/spa-mat.module.d.ts +2 -8
- package/lib/modules/spa-user.module.d.ts +6 -6
- package/lib/services/auth.service.d.ts +4 -16
- package/lib/services/data.service.d.ts +38 -0
- package/lib/services/export.service.d.ts +6 -2
- package/lib/services/http.service.d.ts +2 -2
- package/lib/services/loader-interceptor.service.d.ts +3 -4
- package/lib/services/loader.service.d.ts +2 -2
- package/lib/services/log.service.d.ts +3 -3
- package/lib/services/message.service.d.ts +3 -4
- package/lib/services/storage.service.d.ts +2 -2
- package/lib/services/tin-spa.service.d.ts +2 -2
- package/lib/tin-spa.module.d.ts +34 -83
- package/package.json +16 -24
- package/public-api.d.ts +16 -47
- 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/lib/classes/LibClasses.d.ts +0 -173
- 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/form/form.component.d.ts +0 -47
- package/lib/components/list-dialog/list-dialog.component.d.ts +0 -23
- 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/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/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/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/notifications.service.d.ts +0 -12
- package/lib/services/table-config.service.d.ts +0 -17
- /package/{index.d.ts → tin-spa.d.ts} +0 -0
|
@@ -6,6 +6,6 @@ export declare class ActivityComponent implements OnInit {
|
|
|
6
6
|
notes: any[];
|
|
7
7
|
notesMessage: string;
|
|
8
8
|
title: string;
|
|
9
|
-
static ɵfac: i0.ɵɵ
|
|
10
|
-
static ɵcmp: i0.ɵɵ
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDef<ActivityComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<ActivityComponent, "spa-activity", never, { "notes": "notes"; "title": "title"; }, {}, never, never>;
|
|
11
11
|
}
|
|
@@ -1,30 +1,42 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { MessageService } from '../../services/message.service';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class AttachComponent implements OnInit {
|
|
5
|
-
|
|
6
|
-
constructor(messageService: MessageService);
|
|
4
|
+
constructor();
|
|
7
5
|
ngOnInit(): void;
|
|
8
|
-
fileOptions: {
|
|
9
|
-
allowedExtensions?: string[];
|
|
10
|
-
maxSizeMB?: number;
|
|
11
|
-
compressImages?: boolean;
|
|
12
|
-
};
|
|
13
|
-
private readonly imageExtensions;
|
|
14
6
|
message: string;
|
|
15
7
|
files: any[];
|
|
16
8
|
filesChange: EventEmitter<any>;
|
|
17
9
|
upload: EventEmitter<any>;
|
|
18
10
|
enableUpload: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* on file drop handler
|
|
13
|
+
*/
|
|
19
14
|
onFileDropped($event: any): void;
|
|
20
|
-
|
|
15
|
+
/**
|
|
16
|
+
* handle file from browsing
|
|
17
|
+
*/
|
|
18
|
+
fileBrowseHandler(files: any): void;
|
|
19
|
+
/**
|
|
20
|
+
* Delete file from files list
|
|
21
|
+
* @param index (File index)
|
|
22
|
+
*/
|
|
21
23
|
deleteFile(index: number): void;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
24
|
+
/**
|
|
25
|
+
* Simulate the upload process
|
|
26
|
+
*/
|
|
27
|
+
/**
|
|
28
|
+
* Convert Files list to normal array list
|
|
29
|
+
* @param files (Files List)
|
|
30
|
+
*/
|
|
31
|
+
prepareFilesList(files: Array<any>): void;
|
|
32
|
+
/**
|
|
33
|
+
* format bytes
|
|
34
|
+
* @param bytes (File size in bytes)
|
|
35
|
+
* @param decimals (Decimals point)
|
|
36
|
+
*/
|
|
25
37
|
formatBytes(bytes: any, decimals: any): string;
|
|
26
38
|
uploaded(): void;
|
|
27
39
|
filesChanged(): void;
|
|
28
|
-
static ɵfac: i0.ɵɵ
|
|
29
|
-
static ɵcmp: i0.ɵɵ
|
|
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>;
|
|
30
42
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { ChangeUserPassword } from './../../classes/Classes';
|
|
1
2
|
import { OnInit } from '@angular/core';
|
|
2
3
|
import { MessageService } from '../../services/message.service';
|
|
3
|
-
import { DataServiceLib } from '../../services/
|
|
4
|
+
import { DataServiceLib } from '../../services/data.service';
|
|
4
5
|
import { AuthService } from '../../services/auth.service';
|
|
5
6
|
import { Location } from '@angular/common';
|
|
6
7
|
import { HttpService } from '../../services/http.service';
|
|
7
8
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
8
|
-
import { ChangeUserPassword } from '../../classes/LibClasses';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class ChangePasswordComponent implements OnInit {
|
|
11
11
|
router: Router;
|
|
@@ -22,6 +22,6 @@ export declare class ChangePasswordComponent implements OnInit {
|
|
|
22
22
|
isProcessing: boolean;
|
|
23
23
|
changePassword: ChangeUserPassword;
|
|
24
24
|
change(): void;
|
|
25
|
-
static ɵfac: i0.ɵɵ
|
|
26
|
-
static ɵcmp: i0.ɵɵ
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDef<ChangePasswordComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<ChangePasswordComponent, "spa-change-password", never, {}, {}, never, never>;
|
|
27
27
|
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { MessageService } from '../../services/message.service';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class CheckComponent implements OnInit {
|
|
5
|
-
|
|
6
|
-
constructor(messageService: MessageService);
|
|
4
|
+
constructor();
|
|
7
5
|
ngOnInit(): void;
|
|
8
6
|
readonly: boolean;
|
|
9
7
|
display: string;
|
|
@@ -12,13 +10,10 @@ export declare class CheckComponent implements OnInit {
|
|
|
12
10
|
click: EventEmitter<any>;
|
|
13
11
|
check: EventEmitter<any>;
|
|
14
12
|
uncheck: EventEmitter<any>;
|
|
15
|
-
infoMessage: string;
|
|
16
|
-
infoClick: EventEmitter<void>;
|
|
17
13
|
changed(): void;
|
|
18
14
|
clicked(): void;
|
|
19
15
|
checked(): void;
|
|
20
16
|
unchecked(): void;
|
|
21
|
-
|
|
22
|
-
static
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckComponent, "spa-check", never, { "readonly": "readonly"; "display": "display"; "value": "value"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "click": "click"; "check": "check"; "uncheck": "uncheck"; "infoClick": "infoClick"; }, never, never, false>;
|
|
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>;
|
|
24
19
|
}
|
|
@@ -13,6 +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: i0.ɵɵ
|
|
17
|
-
static ɵcmp: i0.ɵɵ
|
|
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
|
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import { DataServiceLib } from '
|
|
1
|
+
import { DataServiceLib } from './../../services/data.service';
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
3
|
import { MessageService } from '../../services/message.service';
|
|
4
4
|
import { AuthService } from '../../services/auth.service';
|
|
5
|
-
import { AppConfig } from '../../classes/Classes';
|
|
5
|
+
import { AppConfig, Register } from '../../classes/Classes';
|
|
6
6
|
import { Router } from '@angular/router';
|
|
7
7
|
import { HttpService } from '../../services/http.service';
|
|
8
|
-
import { Register } from '../../classes/LibClasses';
|
|
9
8
|
import * as i0 from "@angular/core";
|
|
10
9
|
export declare class CreateAccountComponent implements OnInit {
|
|
11
10
|
private httpService;
|
|
@@ -24,11 +23,8 @@ export declare class CreateAccountComponent implements OnInit {
|
|
|
24
23
|
name: string;
|
|
25
24
|
value: string;
|
|
26
25
|
}[];
|
|
27
|
-
roles: any;
|
|
28
|
-
check(): void;
|
|
29
|
-
loadRoles(): void;
|
|
30
26
|
create(): void;
|
|
31
27
|
viewProfile(userName: string): void;
|
|
32
|
-
static ɵfac: i0.ɵɵ
|
|
33
|
-
static ɵcmp: i0.ɵɵ
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDef<CreateAccountComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<CreateAccountComponent, "spa-create-account", never, { "appConfig": "appConfig"; }, {}, never, never>;
|
|
34
30
|
}
|
|
@@ -1,29 +1,17 @@
|
|
|
1
|
-
import { EventEmitter, OnInit
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormControl } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class DateComponent implements OnInit
|
|
5
|
-
|
|
6
|
-
min: string;
|
|
7
|
-
max: string;
|
|
8
|
-
readonly: boolean;
|
|
9
|
-
hint: string;
|
|
10
|
-
value: string | null;
|
|
11
|
-
display: string;
|
|
12
|
-
placeholder: string;
|
|
13
|
-
width: string;
|
|
14
|
-
valueChange: EventEmitter<string>;
|
|
15
|
-
infoMessage: string;
|
|
16
|
-
infoClick: EventEmitter<void>;
|
|
17
|
-
onInfoClick(event: MouseEvent): void;
|
|
18
|
-
minDate: FormControl;
|
|
19
|
-
maxDate: FormControl;
|
|
20
|
-
control: FormControl;
|
|
4
|
+
export declare class DateComponent implements OnInit {
|
|
5
|
+
constructor();
|
|
21
6
|
ngOnInit(): void;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
7
|
+
date: FormControl;
|
|
8
|
+
display: string;
|
|
9
|
+
readonly: boolean;
|
|
10
|
+
currentYear: number;
|
|
11
|
+
min: FormControl;
|
|
12
|
+
max: FormControl;
|
|
13
|
+
dateChange: EventEmitter<any>;
|
|
25
14
|
onChangeEvent(): void;
|
|
26
|
-
|
|
27
|
-
static
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateComponent, "spa-date", never, { "required": "required"; "min": "min"; "max": "max"; "readonly": "readonly"; "hint": "hint"; "value": "value"; "display": "display"; "placeholder": "placeholder"; "width": "width"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "infoClick": "infoClick"; }, never, never, false>;
|
|
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>;
|
|
29
17
|
}
|
|
@@ -7,13 +7,9 @@ export declare class DatetimeComponent implements OnInit {
|
|
|
7
7
|
value: string;
|
|
8
8
|
valueChange: EventEmitter<any>;
|
|
9
9
|
readonly: boolean;
|
|
10
|
-
width: string;
|
|
11
10
|
min: string;
|
|
12
11
|
max: string;
|
|
13
12
|
changed(): void;
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
onInfoClick(event: MouseEvent): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DatetimeComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DatetimeComponent, "spa-datetime", never, { "display": "display"; "value": "value"; "readonly": "readonly"; "width": "width"; "min": "min"; "max": "max"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "infoClick": "infoClick"; }, never, never, false>;
|
|
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>;
|
|
19
15
|
}
|
|
@@ -5,16 +5,11 @@ export declare class FilterComponent implements OnInit {
|
|
|
5
5
|
constructor();
|
|
6
6
|
ngOnInit(): void;
|
|
7
7
|
ngOnChanges(): void;
|
|
8
|
-
flatButtons: boolean;
|
|
9
|
-
showText: boolean;
|
|
10
|
-
showButton: boolean;
|
|
11
8
|
data: MatTableDataSource<unknown>;
|
|
12
9
|
refreshClick: EventEmitter<any>;
|
|
13
10
|
_filterText: string;
|
|
14
|
-
keyUp(event: KeyboardEvent): void;
|
|
15
11
|
applyFilter(filterValue: string): void;
|
|
16
12
|
refreshClicked(): void;
|
|
17
|
-
|
|
18
|
-
static
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent, "spa-filter", never, { "flatButtons": "flatButtons"; "showText": "showText"; "showButton": "showButton"; "data": "data"; }, { "refreshClick": "refreshClick"; }, never, never, false>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDef<FilterComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<FilterComponent, "spa-filter", never, { "data": "data"; }, { "refreshClick": "refreshClick"; }, never, never>;
|
|
20
15
|
}
|
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { AngularEditorConfig } from '@kolkov/angular-editor';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class HtmlComponent implements OnInit {
|
|
5
|
-
|
|
6
|
-
constructor(sanitizer: DomSanitizer);
|
|
5
|
+
constructor();
|
|
7
6
|
ngOnInit(): void;
|
|
8
|
-
ngOnChanges(): void;
|
|
9
7
|
value: string;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
static
|
|
8
|
+
valueChange: EventEmitter<any>;
|
|
9
|
+
readonly: boolean;
|
|
10
|
+
changed(): void;
|
|
11
|
+
ngOnChanges(): void;
|
|
12
|
+
config: AngularEditorConfig;
|
|
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>;
|
|
16
15
|
}
|
|
@@ -6,8 +6,6 @@ export declare class LabelComponent implements OnInit {
|
|
|
6
6
|
display: string;
|
|
7
7
|
value: string;
|
|
8
8
|
format: string;
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "spa-label", never, { "display": "display"; "value": "value"; "format": "format"; "suffix": "suffix"; "size": "size"; }, {}, never, never, false>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDef<LabelComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<LabelComponent, "spa-label", never, { "display": "display"; "value": "value"; "format": "format"; }, {}, never, never>;
|
|
13
11
|
}
|
|
@@ -7,6 +7,6 @@ export declare class LoaderComponent implements OnInit {
|
|
|
7
7
|
ngOnInit(): void;
|
|
8
8
|
logo: string;
|
|
9
9
|
loading: boolean;
|
|
10
|
-
static ɵfac: i0.ɵɵ
|
|
11
|
-
static ɵcmp: i0.ɵɵ
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDef<LoaderComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<LoaderComponent, "spa-loader", never, { "logo": "logo"; }, {}, never, never>;
|
|
12
12
|
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { MessageService } from "../../services/message.service";
|
|
2
|
+
import { StorageService } from "../../services/storage.service";
|
|
3
|
+
import { AuthService } from "../../services/auth.service";
|
|
4
|
+
import { OnInit } from "@angular/core";
|
|
5
|
+
import { ActivatedRoute, Router } from "@angular/router";
|
|
6
|
+
import { DataServiceLib } from "../../services/data.service";
|
|
7
|
+
import { LogService } from "./../../services/log.service";
|
|
8
|
+
import { User, AppConfig } from "../../classes/Classes";
|
|
9
|
+
import { HttpService } from "../../services/http.service";
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class LoginComponent implements OnInit {
|
|
12
|
+
private httpService;
|
|
13
|
+
private storageService;
|
|
14
|
+
router: Router;
|
|
15
|
+
private messageService;
|
|
16
|
+
dataService: DataServiceLib;
|
|
17
|
+
authService: AuthService;
|
|
18
|
+
private logService;
|
|
19
|
+
private route;
|
|
20
|
+
constructor(httpService: HttpService, storageService: StorageService, router: Router, messageService: MessageService, dataService: DataServiceLib, authService: AuthService, logService: LogService, route: ActivatedRoute);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
redirectPath: any;
|
|
23
|
+
user: User;
|
|
24
|
+
hide: boolean;
|
|
25
|
+
isProcessing: boolean;
|
|
26
|
+
appConfig: AppConfig;
|
|
27
|
+
signup(): void;
|
|
28
|
+
recoverAccount(): void;
|
|
29
|
+
login(): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDef<LoginComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<LoginComponent, "spa-login", never, {}, {}, never, never>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DataServiceLib } from "../../services/data.service";
|
|
3
|
+
import { MatPaginator } from '@angular/material/paginator';
|
|
4
|
+
import { AuthService } from '../../services/auth.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class LogsComponent implements OnInit {
|
|
7
|
+
private authService;
|
|
8
|
+
private dataService;
|
|
9
|
+
constructor(authService: AuthService, dataService: DataServiceLib);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
isProcessing: boolean;
|
|
12
|
+
logsPaginator: MatPaginator;
|
|
13
|
+
logs: any;
|
|
14
|
+
displayedColumns: string[];
|
|
15
|
+
loadLogs(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDef<LogsComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<LogsComponent, "spa-logs", never, {}, {}, never, never>;
|
|
18
|
+
}
|
|
@@ -10,6 +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: i0.ɵɵ
|
|
14
|
-
static ɵcmp: i0.ɵɵ
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDef<messageDialog, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<messageDialog, "lib-app-message", never, {}, {}, never, never>;
|
|
15
15
|
}
|
|
@@ -36,6 +36,6 @@ export declare class CurrencyInputMaskDirective implements ControlValueAccessor,
|
|
|
36
36
|
private saveCursorPosition;
|
|
37
37
|
private setCursorPosition;
|
|
38
38
|
private isIdxBetweenSelection;
|
|
39
|
-
static ɵfac: i0.ɵɵ
|
|
40
|
-
static ɵdir: i0.ɵɵ
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDef<CurrencyInputMaskDirective, never>;
|
|
40
|
+
static ɵdir: i0.ɵɵDirectiveDefWithMeta<CurrencyInputMaskDirective, "[appCurrencyInputMask]", never, {}, {}, never>;
|
|
41
41
|
}
|
|
@@ -3,7 +3,6 @@ import * as i1 from "./currency-input-mask.directive";
|
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "@angular/forms";
|
|
5
5
|
export declare class CurrencyInputModule {
|
|
6
|
-
static
|
|
7
|
-
static
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<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>;
|
|
9
8
|
}
|
|
@@ -20,21 +20,11 @@ export declare class MoneyComponent implements OnInit {
|
|
|
20
20
|
required: boolean;
|
|
21
21
|
min: number;
|
|
22
22
|
max: number;
|
|
23
|
-
infoMessage: string;
|
|
24
|
-
infoClick: EventEmitter<void>;
|
|
25
|
-
copyContent: boolean;
|
|
26
|
-
clearContent: boolean;
|
|
27
|
-
suffix: string;
|
|
28
|
-
isHovered: boolean;
|
|
29
|
-
onMouseEnter(): void;
|
|
30
|
-
onMouseLeave(): void;
|
|
31
|
-
onInfoClick(event: MouseEvent): void;
|
|
32
|
-
clear(): void;
|
|
33
23
|
changed(x: any): void;
|
|
34
24
|
leaved(): void;
|
|
35
25
|
enterPressed(): void;
|
|
36
|
-
control: FormControl
|
|
26
|
+
control: FormControl;
|
|
37
27
|
validate(control: FormControl): string;
|
|
38
|
-
static ɵfac: i0.ɵɵ
|
|
39
|
-
static ɵcmp: i0.ɵɵ
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDef<MoneyComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<MoneyComponent, "spa-money", never, { "readonly": "readonly"; "hint": "hint"; "display": "display"; "placeholder": "placeholder"; "value": "value"; "width": "width"; "currency": "currency"; "required": "required"; "min": "min"; "max": "max"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; }, never, never>;
|
|
40
30
|
}
|
|
@@ -1,38 +1,20 @@
|
|
|
1
|
-
import { AppConfig
|
|
1
|
+
import { AppConfig } from './../../classes/Classes';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { AuthService } from '../../services/auth.service';
|
|
4
|
-
import { StorageService } from '../../services/storage.service';
|
|
5
|
-
import { SocialAuthService } from '@abacritt/angularx-social-login';
|
|
6
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
7
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
8
|
-
import { NotificationsService } from '../../services/notifications.service';
|
|
9
4
|
import * as i0 from "@angular/core";
|
|
10
5
|
export declare class NavMenuComponent {
|
|
11
6
|
router: Router;
|
|
12
7
|
authService: AuthService;
|
|
13
|
-
|
|
14
|
-
private notificationsService;
|
|
15
|
-
private socialService;
|
|
16
|
-
private breakpointObserver;
|
|
17
|
-
dataService: DataServiceLib;
|
|
18
|
-
constructor(router: Router, authService: AuthService, storageService: StorageService, notificationsService: NotificationsService, socialService: SocialAuthService, breakpointObserver: BreakpointObserver, dataService: DataServiceLib);
|
|
8
|
+
constructor(router: Router, authService: AuthService);
|
|
19
9
|
ngOnInit(): void;
|
|
20
|
-
notificationCount$: import("rxjs").Observable<number>;
|
|
21
|
-
smallScreen: any;
|
|
22
10
|
myRole: any;
|
|
23
11
|
loggedUserFullName: string;
|
|
24
|
-
tenantName: string;
|
|
25
12
|
loggedin: boolean;
|
|
26
13
|
isExpanded: boolean;
|
|
27
|
-
nowDate: Date;
|
|
28
14
|
appConfig: AppConfig;
|
|
29
|
-
footer: string;
|
|
30
15
|
collapse(): void;
|
|
31
16
|
toggle(): void;
|
|
32
|
-
closeSide(): void;
|
|
33
|
-
logoff(): void;
|
|
34
17
|
redirectTo(link: string): void;
|
|
35
|
-
|
|
36
|
-
static
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavMenuComponent, "spa-nav-menu", never, { "appConfig": "appConfig"; "footer": "footer"; }, {}, never, never, false>;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDef<NavMenuComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<NavMenuComponent, "spa-nav-menu", never, { "appConfig": "appConfig"; }, {}, never, never>;
|
|
38
20
|
}
|
|
@@ -1,32 +1,21 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { MessageService } from '../../services/message.service';
|
|
3
|
-
import { Action } from '../../classes/Classes';
|
|
4
2
|
import * as i0 from "@angular/core";
|
|
5
3
|
export declare class OptionComponent implements OnInit {
|
|
6
|
-
|
|
7
|
-
constructor(messageService: MessageService);
|
|
4
|
+
constructor();
|
|
8
5
|
ngOnInit(): void;
|
|
9
6
|
OGValue: any;
|
|
10
7
|
options: any;
|
|
11
8
|
optionValue: string;
|
|
12
9
|
optionDisplay: string;
|
|
13
10
|
readonly: boolean;
|
|
14
|
-
type: string;
|
|
15
11
|
value: string;
|
|
16
12
|
display: string;
|
|
17
13
|
show: boolean;
|
|
18
|
-
required: boolean;
|
|
19
|
-
infoMessage: string;
|
|
20
|
-
copyContent: boolean;
|
|
21
|
-
suffix: string;
|
|
22
|
-
loadAction: Action;
|
|
23
14
|
valueChange: EventEmitter<any>;
|
|
24
15
|
enterPress: EventEmitter<any>;
|
|
25
16
|
changed(): void;
|
|
26
|
-
dateChanged(x: any): void;
|
|
27
17
|
enterPressed(): void;
|
|
28
18
|
resetValue(): void;
|
|
29
|
-
|
|
30
|
-
static
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "spa-option", never, { "options": "options"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "readonly": "readonly"; "type": "type"; "value": "value"; "display": "display"; "show": "show"; "required": "required"; "infoMessage": "infoMessage"; "copyContent": "copyContent"; "suffix": "suffix"; "loadAction": "loadAction"; }, { "valueChange": "valueChange"; "enterPress": "enterPress"; }, never, never, false>;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDef<OptionComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<OptionComponent, "spa-option", never, { "options": "options"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "readonly": "readonly"; "value": "value"; "display": "display"; "show": "show"; }, { "valueChange": "valueChange"; "enterPress": "enterPress"; }, never, never>;
|
|
32
21
|
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { AuthService } from './../../services/auth.service';
|
|
2
2
|
import { MessageService } from './../../services/message.service';
|
|
3
|
-
import { DataServiceLib } from '
|
|
3
|
+
import { DataServiceLib } from './../../services/data.service';
|
|
4
4
|
import { OnInit } from '@angular/core';
|
|
5
|
-
import { AppConfig } from '../../classes/Classes';
|
|
5
|
+
import { AppConfig, Profile } from '../../classes/Classes';
|
|
6
6
|
import { Router } from '@angular/router';
|
|
7
7
|
import { HttpService } from '../../services/http.service';
|
|
8
|
-
import { Profile } from '../../classes/LibClasses';
|
|
9
8
|
import * as i0 from "@angular/core";
|
|
10
9
|
export declare class ProfileComponent implements OnInit {
|
|
11
10
|
dataService: DataServiceLib;
|
|
@@ -17,7 +16,6 @@ export declare class ProfileComponent implements OnInit {
|
|
|
17
16
|
ngOnInit(): void;
|
|
18
17
|
isProcessing: boolean;
|
|
19
18
|
myRole: any;
|
|
20
|
-
initials: string;
|
|
21
19
|
appConfig: AppConfig;
|
|
22
20
|
selfProfile: boolean;
|
|
23
21
|
profile: Profile;
|
|
@@ -30,6 +28,6 @@ export declare class ProfileComponent implements OnInit {
|
|
|
30
28
|
gotoUsers(): void;
|
|
31
29
|
update(): void;
|
|
32
30
|
updateProfile(): void;
|
|
33
|
-
static ɵfac: i0.ɵɵ
|
|
34
|
-
static ɵcmp: i0.ɵɵ
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDef<ProfileComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<ProfileComponent, "spa-profile", never, { "appConfig": "appConfig"; }, {}, never, never>;
|
|
35
33
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DataServiceLib } from '../../services/
|
|
2
|
+
import { DataServiceLib } from '../../services/data.service';
|
|
3
3
|
import { AuthService } from '../../services/auth.service';
|
|
4
4
|
import { MessageService } from '../../services/message.service';
|
|
5
5
|
import { Location } from '@angular/common';
|
|
@@ -13,6 +13,6 @@ export declare class RecoverAccountComponent implements OnInit {
|
|
|
13
13
|
ngOnInit(): void;
|
|
14
14
|
userName: string;
|
|
15
15
|
recover(): void;
|
|
16
|
-
static ɵfac: i0.ɵɵ
|
|
17
|
-
static ɵcmp: i0.ɵɵ
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDef<RecoverAccountComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<RecoverAccountComponent, "spa-recover-account", never, {}, {}, never, never>;
|
|
18
18
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { MessageService } from '../../services/message.service';
|
|
2
|
+
import { AuthService } from '../../services/auth.service';
|
|
3
|
+
import { OnInit } from '@angular/core';
|
|
4
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
5
|
+
import { DataServiceLib } from '../../services/data.service';
|
|
6
|
+
import { Role } from '../../classes/Classes';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class addRoleDialog implements OnInit {
|
|
9
|
+
private messageService;
|
|
10
|
+
private dataService;
|
|
11
|
+
private authService;
|
|
12
|
+
private dialogRef;
|
|
13
|
+
data: any;
|
|
14
|
+
constructor(messageService: MessageService, dataService: DataServiceLib, authService: AuthService, dialogRef: MatDialogRef<addRoleDialog>, data: any);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
capItems: any;
|
|
17
|
+
isProcessing: boolean;
|
|
18
|
+
role: Role;
|
|
19
|
+
submit(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDef<addRoleDialog, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<addRoleDialog, "app-addRole", never, {}, {}, never, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { AppConfig } from './../../classes/Classes';
|
|
2
|
+
import { OnInit } from "@angular/core";
|
|
3
|
+
import { MatDialog } from "@angular/material/dialog";
|
|
4
|
+
import { DataServiceLib } from "../../services/data.service";
|
|
5
|
+
import { Role } from "../../classes/Classes";
|
|
6
|
+
import { Router } from "@angular/router";
|
|
7
|
+
import { MessageService } from '../../services/message.service';
|
|
8
|
+
import { AuthService } from '../../services/auth.service';
|
|
9
|
+
import { HttpService } from '../../services/http.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class RolesComponent implements OnInit {
|
|
12
|
+
private httpService;
|
|
13
|
+
private router;
|
|
14
|
+
private authService;
|
|
15
|
+
private dataService;
|
|
16
|
+
dialog: MatDialog;
|
|
17
|
+
private messageService;
|
|
18
|
+
constructor(httpService: HttpService, router: Router, authService: AuthService, dataService: DataServiceLib, dialog: MatDialog, messageService: MessageService);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
isProcessing: boolean;
|
|
21
|
+
roles: Role[];
|
|
22
|
+
appConfig: AppConfig;
|
|
23
|
+
loadRoles(): void;
|
|
24
|
+
refresh(): void;
|
|
25
|
+
addRole(): void;
|
|
26
|
+
updateRole(role: Role): void;
|
|
27
|
+
deleteRole(role: Role): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDef<RolesComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<RolesComponent, "spa-roles", never, {}, {}, never, never>;
|
|
30
|
+
}
|