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
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DetailsDialogConfig } from '../../classes/Classes';
|
|
3
|
-
import { MessageService } from '../../services/message.service';
|
|
4
|
-
import { DialogService } from '../../services/dialog.service';
|
|
5
|
-
import { SelectCommonComponent } from '../select-common/select-common.component';
|
|
6
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
7
|
-
import { ButtonService } from '../../services/button.service';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
8
2
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class SelectComponent
|
|
10
|
-
|
|
11
|
-
protected dataService: DataServiceLib;
|
|
12
|
-
private dialogService;
|
|
13
|
-
private buttonService;
|
|
14
|
-
constructor(messageService: MessageService, dataService: DataServiceLib, dialogService: DialogService, buttonService: ButtonService);
|
|
3
|
+
export declare class SelectComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
15
5
|
ngOnInit(): void;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
6
|
+
ngOnChanges(): void;
|
|
7
|
+
displayValue: any;
|
|
8
|
+
width: string;
|
|
9
|
+
readonly: boolean;
|
|
10
|
+
readonlyMode: string;
|
|
11
|
+
hint: string;
|
|
12
|
+
placeholder: string;
|
|
13
|
+
display: string;
|
|
14
|
+
value: string;
|
|
15
|
+
options: any;
|
|
16
|
+
optionValue: string;
|
|
17
|
+
optionDisplay: string;
|
|
18
|
+
optionDisplayExtra: string;
|
|
19
|
+
valueChange: EventEmitter<any>;
|
|
20
|
+
changed(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDef<SelectComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<SelectComponent, "spa-select", never, { "width": "width"; "readonly": "readonly"; "readonlyMode": "readonlyMode"; "hint": "hint"; "placeholder": "placeholder"; "display": "display"; "value": "value"; "options": "options"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "optionDisplayExtra": "optionDisplayExtra"; }, { "valueChange": "valueChange"; }, never, never>;
|
|
23
23
|
}
|
|
@@ -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 { MessageService } from '../../services/message.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class SettingsComponent implements OnInit {
|
|
@@ -14,6 +14,6 @@ export declare class SettingsComponent implements OnInit {
|
|
|
14
14
|
loadSettings(): void;
|
|
15
15
|
updateSetting(setting: any): void;
|
|
16
16
|
addSetting(): void;
|
|
17
|
-
static ɵfac: i0.ɵɵ
|
|
18
|
-
static ɵcmp: i0.ɵɵ
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDef<SettingsComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<SettingsComponent, "spa-settings", never, {}, {}, never, never>;
|
|
19
19
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MessageService } from '../../services/message.service';
|
|
3
|
-
import { DataServiceLib } from '../../services/
|
|
3
|
+
import { DataServiceLib } from '../../services/data.service';
|
|
4
4
|
import { AuthService } from '../../services/auth.service';
|
|
5
|
+
import { User, Profile, Account } from '../../classes/Classes';
|
|
5
6
|
import { HttpService } from '../../services/http.service';
|
|
6
|
-
import { Account, Profile, User } from '../../classes/LibClasses';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class SignupComponent implements OnInit {
|
|
9
9
|
private httpService;
|
|
@@ -18,6 +18,6 @@ export declare class SignupComponent implements OnInit {
|
|
|
18
18
|
account: Account;
|
|
19
19
|
confirmPassword: string;
|
|
20
20
|
create(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵ
|
|
22
|
-
static ɵcmp: i0.ɵɵ
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDef<SignupComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<SignupComponent, "spa-signup", never, {}, {}, never, never>;
|
|
23
23
|
}
|
|
@@ -1,27 +1,18 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, OnInit } from '@angular/core';
|
|
2
2
|
import { MatStepper } from '@angular/material/stepper';
|
|
3
|
-
import { Step
|
|
4
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
5
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
|
+
import { Step } from '../../classes/Classes';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class StepsComponent implements OnInit {
|
|
8
|
-
|
|
9
|
-
private dataService;
|
|
10
|
-
constructor(breakpointObserver: BreakpointObserver, dataService: DataServiceLib);
|
|
5
|
+
export declare class StepsComponent implements OnInit, AfterViewInit {
|
|
6
|
+
constructor();
|
|
11
7
|
ngOnInit(): void;
|
|
8
|
+
ngAfterViewInit(): void;
|
|
12
9
|
ngOnChanges(): void;
|
|
13
|
-
private observeScreenSize;
|
|
14
10
|
stepper: MatStepper;
|
|
15
11
|
value: string;
|
|
16
|
-
config: StepConfig;
|
|
17
|
-
data: any;
|
|
18
|
-
selectedIndex: number;
|
|
19
|
-
smallScreen: boolean;
|
|
20
12
|
steps: Step[];
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
static
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepsComponent, "spa-steps", never, { "value": "value"; "config": "config"; "data": "data"; }, {}, never, never, false>;
|
|
13
|
+
setStepper(): void;
|
|
14
|
+
pushStepper(count: number): void;
|
|
15
|
+
pushSteps(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDef<StepsComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<StepsComponent, "spa-steps", never, { "value": "value"; "steps": "steps"; }, {}, never, never>;
|
|
27
18
|
}
|
|
@@ -1,91 +1,28 @@
|
|
|
1
|
-
import { EventEmitter, OnInit
|
|
2
|
-
import { Action, Button, Color, Column, Icon, TableConfig } from '../../classes/Classes';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
3
2
|
import { MatPaginator } from '@angular/material/paginator';
|
|
4
|
-
import {
|
|
5
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
6
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
7
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
8
|
-
import { Subject } from 'rxjs';
|
|
9
|
-
import { ButtonService } from '../../services/button.service';
|
|
10
|
-
import { DialogService } from '../../services/dialog.service';
|
|
11
|
-
import { TableConfigService } from '../../services/table-config.service';
|
|
12
|
-
import { ConditionService } from '../../services/condition.service';
|
|
13
|
-
import { AuthService } from '../../services/auth.service';
|
|
3
|
+
import { Operator, TableColumnType, TableConfig } from '../../classes/Classes';
|
|
14
4
|
import * as i0 from "@angular/core";
|
|
15
5
|
export declare class TableComponent implements OnInit {
|
|
16
|
-
|
|
17
|
-
private messageService;
|
|
18
|
-
private breakpointObserver;
|
|
19
|
-
dialog: MatDialog;
|
|
20
|
-
private buttonService;
|
|
21
|
-
private dialogService;
|
|
22
|
-
private tableConfigService;
|
|
23
|
-
private conditionService;
|
|
24
|
-
private authService;
|
|
25
|
-
constructor(dataService: DataServiceLib, messageService: MessageService, breakpointObserver: BreakpointObserver, dialog: MatDialog, buttonService: ButtonService, dialogService: DialogService, tableConfigService: TableConfigService, conditionService: ConditionService, authService: AuthService);
|
|
6
|
+
constructor();
|
|
26
7
|
ngOnInit(): void;
|
|
27
|
-
ngOnChanges(
|
|
28
|
-
elevation: string;
|
|
29
|
-
actionsWidth: string;
|
|
30
|
-
showFilterButton: boolean;
|
|
31
|
-
tileReload: Subject<boolean>;
|
|
32
|
-
hasBeenActivated: boolean;
|
|
33
|
-
smallScreen: boolean;
|
|
34
|
-
hasFormAccess: boolean;
|
|
35
|
-
tableDataSource: any;
|
|
36
|
-
dataSource: any[];
|
|
37
|
-
displayedColumns: any[];
|
|
38
|
-
displayedButtons: any[];
|
|
39
|
-
originalTableLoadAction: Action;
|
|
40
|
-
tablePaginator: MatPaginator;
|
|
41
|
-
data: any;
|
|
42
|
-
tileData: any;
|
|
8
|
+
ngOnChanges(): void;
|
|
43
9
|
config: TableConfig;
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
actionSuccess: EventEmitter<any>;
|
|
49
|
-
refreshClick: EventEmitter<any>;
|
|
50
|
-
searchClick: EventEmitter<any>;
|
|
10
|
+
data: any;
|
|
11
|
+
dataChange: EventEmitter<any>;
|
|
12
|
+
buttonClick: EventEmitter<any>;
|
|
13
|
+
loadClick: EventEmitter<any>;
|
|
51
14
|
createClick: EventEmitter<any>;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
getOptions(column: any): Column;
|
|
66
|
-
getColor(value: any, options: any[]): string;
|
|
67
|
-
testIconCondition(row: any, icon: Icon): boolean;
|
|
68
|
-
testColorCondition(row: any, color: Color): boolean;
|
|
69
|
-
showBanner(message: string): void;
|
|
70
|
-
testDisabled(row: any, buttonName: string): boolean;
|
|
71
|
-
lastSearch: any;
|
|
72
|
-
searchClicked(x: any): void;
|
|
73
|
-
tileClicked(tile: any): void;
|
|
74
|
-
tileUnClicked(tile: any): void;
|
|
75
|
-
refreshClicked(): void;
|
|
76
|
-
dataLoaded(x: any): void;
|
|
77
|
-
actionClicked(name: string, row: any): void;
|
|
78
|
-
columnClicked(column: Column, row: any): void;
|
|
79
|
-
customModel(name: any, row: any): void;
|
|
80
|
-
actionClickedEmit(name: any, row: any): void;
|
|
81
|
-
viewModel(row: any): void;
|
|
82
|
-
newModel(): void;
|
|
83
|
-
editModel(row: any): void;
|
|
84
|
-
private open;
|
|
85
|
-
deleteModel(row: any): void;
|
|
86
|
-
doAction(buttonName: string, row: any): void;
|
|
87
|
-
execAction(button: Button, row: any): void;
|
|
88
|
-
private getElevationClass;
|
|
89
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
90
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "spa-table", never, { "data": "data"; "tileData": "tileData"; "config": "config"; "reload": "reload"; "activeTab": "activeTab"; "inTab": "inTab"; }, { "dataLoad": "dataLoad"; "actionSuccess": "actionSuccess"; "refreshClick": "refreshClick"; "searchClick": "searchClick"; "createClick": "createClick"; "actionClick": "actionClick"; "inputChange": "inputChange"; "actionResponse": "actionResponse"; }, never, never, false>;
|
|
15
|
+
tablePaginator: MatPaginator;
|
|
16
|
+
colType: typeof TableColumnType;
|
|
17
|
+
op: typeof Operator;
|
|
18
|
+
displayedColumns: string[];
|
|
19
|
+
styleString: string;
|
|
20
|
+
_filterText: string;
|
|
21
|
+
applyFilter(filterValue: string): void;
|
|
22
|
+
do(name: any, item: any): void;
|
|
23
|
+
create(): void;
|
|
24
|
+
load(): void;
|
|
25
|
+
test(a: any, op: Operator, b: any): boolean;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDef<TableComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<TableComponent, "spa-table", never, { "config": "config"; "data": "data"; }, { "dataChange": "dataChange"; "buttonClick": "buttonClick"; "loadClick": "loadClick"; "createClick": "createClick"; }, never, never>;
|
|
91
28
|
}
|
|
@@ -1,19 +1,12 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormControl } from '@angular/forms';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
-
import { Action } from '../../classes/Classes';
|
|
5
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
5
|
export declare class TextComponent implements OnInit {
|
|
8
|
-
|
|
9
|
-
constructor(dataService: DataServiceLib);
|
|
6
|
+
constructor();
|
|
10
7
|
ngOnInit(): void;
|
|
11
8
|
ngAfterViewInit(): void;
|
|
12
|
-
|
|
13
|
-
multiDimension: boolean;
|
|
14
|
-
hideRequiredControl: FormControl<boolean>;
|
|
15
|
-
hide: boolean;
|
|
16
|
-
appearance: 'legacy' | 'standard' | 'fill' | 'outline';
|
|
9
|
+
hideRequiredControl: FormControl;
|
|
17
10
|
readonly: boolean;
|
|
18
11
|
hint: string;
|
|
19
12
|
display: string;
|
|
@@ -24,40 +17,25 @@ export declare class TextComponent implements OnInit {
|
|
|
24
17
|
type: string;
|
|
25
18
|
leave: EventEmitter<any>;
|
|
26
19
|
enterPress: EventEmitter<any>;
|
|
27
|
-
rows:
|
|
20
|
+
rows: string;
|
|
28
21
|
width: string;
|
|
29
|
-
copyContent: boolean;
|
|
30
|
-
clearContent: boolean;
|
|
31
22
|
options: any;
|
|
32
|
-
optionDisplay: string;
|
|
33
23
|
optionValue: string;
|
|
34
|
-
|
|
24
|
+
optionDisplay: string;
|
|
25
|
+
myControl: FormControl;
|
|
26
|
+
filteredOptions: Observable<string[]>;
|
|
27
|
+
private initFilter;
|
|
28
|
+
private _filter;
|
|
35
29
|
required: boolean;
|
|
36
30
|
min: number;
|
|
37
31
|
max: number;
|
|
38
|
-
regex
|
|
39
|
-
pattern: string;
|
|
40
|
-
message: string;
|
|
41
|
-
};
|
|
42
|
-
suffix: string;
|
|
43
|
-
infoMessage: string;
|
|
44
|
-
isHovered: boolean;
|
|
45
|
-
onMouseEnter(): void;
|
|
46
|
-
onMouseLeave(): void;
|
|
47
|
-
private initFilter;
|
|
48
|
-
private _filter;
|
|
49
|
-
initControl(control: FormControl): void;
|
|
50
|
-
getDisplayValue(value: any): string;
|
|
32
|
+
regex: string;
|
|
51
33
|
changed(): void;
|
|
34
|
+
changed2(): void;
|
|
52
35
|
leaved(): void;
|
|
53
|
-
clear(): void;
|
|
54
36
|
enterPressed(): void;
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
private getValidators;
|
|
60
|
-
validate(control: FormControl): string;
|
|
61
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TextComponent, never>;
|
|
62
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextComponent, "spa-text", never, { "appearance": "appearance"; "readonly": "readonly"; "hint": "hint"; "display": "display"; "placeholder": "placeholder"; "value": "value"; "format": "format"; "type": "type"; "rows": "rows"; "width": "width"; "copyContent": "copyContent"; "clearContent": "clearContent"; "options": "options"; "optionDisplay": "optionDisplay"; "optionValue": "optionValue"; "loadAction": "loadAction"; "required": "required"; "min": "min"; "max": "max"; "regex": "regex"; "suffix": "suffix"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; }, never, never, false>;
|
|
37
|
+
control: FormControl;
|
|
38
|
+
validate(): string;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDef<TextComponent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<TextComponent, "spa-text", never, { "readonly": "readonly"; "hint": "hint"; "display": "display"; "placeholder": "placeholder"; "value": "value"; "format": "format"; "type": "type"; "rows": "rows"; "width": "width"; "options": "options"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "required": "required"; "min": "min"; "max": "max"; "regex": "regex"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; }, never, never>;
|
|
63
41
|
}
|
|
@@ -1,28 +1,14 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { Subject } from 'rxjs';
|
|
2
|
+
import { Tile } from '../../classes/Classes';
|
|
6
3
|
import * as i0 from "@angular/core";
|
|
7
4
|
export declare class TilesComponent implements OnInit {
|
|
8
|
-
|
|
9
|
-
private messageService;
|
|
10
|
-
constructor(dataService: DataServiceLib, messageService: MessageService);
|
|
5
|
+
constructor();
|
|
11
6
|
ngOnInit(): void;
|
|
12
|
-
ngOnChanges(): void;
|
|
13
7
|
tiles: Tile[];
|
|
14
|
-
|
|
15
|
-
tileActionSelected: EventEmitter<Action>;
|
|
16
|
-
lastSearch: any;
|
|
17
|
-
data: any;
|
|
18
|
-
reload: Subject<boolean>;
|
|
8
|
+
clickable: boolean;
|
|
19
9
|
tileClick: EventEmitter<any>;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
pop(x: any): void;
|
|
25
|
-
isHidden(tile: Tile): boolean;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TilesComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TilesComponent, "spa-tiles", never, { "config": "config"; "lastSearch": "lastSearch"; "data": "data"; "reload": "reload"; }, { "tileActionSelected": "tileActionSelected"; "tileClick": "tileClick"; "tileUnClick": "tileUnClick"; }, never, never, false>;
|
|
10
|
+
selected: string;
|
|
11
|
+
clicked(v: Tile): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDef<TilesComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<TilesComponent, "spa-tiles", never, { "tiles": "tiles"; "clickable": "clickable"; }, { "tileClick": "tileClick"; }, never, never>;
|
|
28
14
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { Idle } from '@ng-idle/core';
|
|
4
|
+
import { Keepalive } from '@ng-idle/keepalive';
|
|
5
|
+
import { AuthService } from '../../services/auth.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TimeoutComponent implements OnInit {
|
|
8
|
+
private idle;
|
|
9
|
+
private keepalive;
|
|
10
|
+
authService: AuthService;
|
|
11
|
+
private router;
|
|
12
|
+
constructor(idle: Idle, keepalive: Keepalive, authService: AuthService, router: Router);
|
|
13
|
+
loggedin: boolean;
|
|
14
|
+
idleState: string;
|
|
15
|
+
timedOut: boolean;
|
|
16
|
+
lastPing?: Date;
|
|
17
|
+
isWarning: boolean;
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
startWatch(): void;
|
|
20
|
+
stopWatch(): void;
|
|
21
|
+
using(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDef<TimeoutComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<TimeoutComponent, "spa-timeout", never, {}, {}, never, never>;
|
|
24
|
+
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class TinSpaComponent {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
export declare class TinSpaComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDef<TinSpaComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<TinSpaComponent, "lib-tin-spa", never, {}, {}, never, never>;
|
|
5
8
|
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { OnInit } from "@angular/core";
|
|
2
|
+
import { MatPaginator } from "@angular/material/paginator";
|
|
2
3
|
import { MatDialog } from "@angular/material/dialog";
|
|
3
|
-
import { DataServiceLib } from "../../services/
|
|
4
|
+
import { DataServiceLib } from "../../services/data.service";
|
|
4
5
|
import { Router } from "@angular/router";
|
|
5
6
|
import { MessageService } from "../../services/message.service";
|
|
6
7
|
import { AuthService } from "../../services/auth.service";
|
|
7
|
-
import {
|
|
8
|
+
import { User } from '../../classes/Classes';
|
|
8
9
|
import { HttpService } from "../../services/http.service";
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class UsersComponent implements OnInit {
|
|
@@ -16,13 +17,19 @@ export declare class UsersComponent implements OnInit {
|
|
|
16
17
|
private messageService;
|
|
17
18
|
constructor(httpService: HttpService, router: Router, authService: AuthService, dataService: DataServiceLib, dialog: MatDialog, messageService: MessageService);
|
|
18
19
|
ngOnInit(): void;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
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: any): void;
|
|
30
|
+
unlock(u: any): void;
|
|
31
|
+
recover(u: User): void;
|
|
32
|
+
deleteUser(user: User): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDef<UsersComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<UsersComponent, "spa-users", never, {}, {}, never, never>;
|
|
28
35
|
}
|
|
@@ -1,25 +1,19 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
4
|
-
import { Action } from '../../classes/Classes';
|
|
5
3
|
import * as i0 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: i0.ɵɵ
|
|
24
|
-
static ɵcmp: i0.ɵɵ
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDef<ViewerComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<ViewerComponent, "spa-viewer", never, { "dir": "dir"; "folderName": "folderName"; "fileNames": "fileNames"; "removable": "removable"; "display": "display"; "title": "title"; }, { "remove": "remove"; }, never, never>;
|
|
25
19
|
}
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { HttpService } from '../../services/http.service';
|
|
3
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
4
3
|
import * as i0 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,6 @@ export declare class viewerDialog implements OnInit {
|
|
|
19
17
|
imageDoc: boolean;
|
|
20
18
|
setURL(): void;
|
|
21
19
|
change(fileName: any): void;
|
|
22
|
-
static ɵfac: i0.ɵɵ
|
|
23
|
-
static ɵcmp: i0.ɵɵ
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDef<viewerDialog, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<viewerDialog, "app-editRequest", never, {}, {}, never, never>;
|
|
24
22
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 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: i0.ɵɵFactoryDef<DndDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDefWithMeta<DndDirective, "[appDnd]", never, {}, { "fileDropped": "fileDropped"; }, never>;
|
|
11
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "../
|
|
3
|
-
import * as i2 from "../
|
|
4
|
-
import * as i3 from "../
|
|
5
|
-
import * as i4 from "../
|
|
6
|
-
import * as i5 from "../
|
|
7
|
-
import * as i6 from "../
|
|
2
|
+
import * as i1 from "../components/users/users.component";
|
|
3
|
+
import * as i2 from "../components/roles/roles.component";
|
|
4
|
+
import * as i3 from "../components/roles/addRoleDialog.component";
|
|
5
|
+
import * as i4 from "../components/create-account/create-account.component";
|
|
6
|
+
import * as i5 from "../components/logs/logs.component";
|
|
7
|
+
import * as i6 from "../components/settings/settings.component";
|
|
8
8
|
import * as i7 from "@angular/forms";
|
|
9
9
|
import * as i8 from "@angular/common";
|
|
10
|
-
import * as i9 from "
|
|
10
|
+
import * as i9 from "./spa-mat.module";
|
|
11
|
+
import * as i10 from "../tin-spa.module";
|
|
11
12
|
export declare class SpaAdminModule {
|
|
12
|
-
static
|
|
13
|
-
static
|
|
14
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SpaAdminModule>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<SpaAdminModule, [typeof i1.UsersComponent, typeof i2.RolesComponent, typeof i3.addRoleDialog, typeof i4.CreateAccountComponent, typeof i5.LogsComponent, typeof i6.SettingsComponent], [typeof i7.ReactiveFormsModule, typeof i8.CommonModule, typeof i7.FormsModule, typeof i7.ReactiveFormsModule, typeof i9.SpaMatModule, typeof i10.TinSpaModule], [typeof i8.CommonModule, typeof i7.FormsModule, typeof i9.SpaMatModule, typeof i1.UsersComponent, typeof i2.RolesComponent, typeof i3.addRoleDialog, typeof i4.CreateAccountComponent, typeof i5.LogsComponent, typeof i6.SettingsComponent]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDef<SpaAdminModule>;
|
|
15
15
|
}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "../
|
|
3
|
-
import * as i2 from "../
|
|
4
|
-
import * as i3 from "../
|
|
2
|
+
import * as i1 from "../components/login/login.component";
|
|
3
|
+
import * as i2 from "../components/signup/signup.component";
|
|
4
|
+
import * as i3 from "../components/recover-account/recover-account.component";
|
|
5
5
|
import * as i4 from "@angular/forms";
|
|
6
6
|
import * as i5 from "@angular/common";
|
|
7
|
-
import * as i6 from "
|
|
8
|
-
import * as i7 from "
|
|
7
|
+
import * as i6 from "./spa-mat.module";
|
|
8
|
+
import * as i7 from "../tin-spa.module";
|
|
9
9
|
export declare class SpaIndexModule {
|
|
10
|
-
static
|
|
11
|
-
static
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SpaIndexModule>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<SpaIndexModule, [typeof i1.LoginComponent, typeof i2.SignupComponent, typeof i3.RecoverAccountComponent], [typeof i4.ReactiveFormsModule, typeof i5.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i6.SpaMatModule, typeof i7.TinSpaModule], [typeof i5.CommonModule, typeof i4.FormsModule, typeof i6.SpaMatModule, typeof i1.LoginComponent, typeof i2.SignupComponent, typeof i3.RecoverAccountComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDef<SpaIndexModule>;
|
|
13
12
|
}
|
|
@@ -26,13 +26,7 @@ import * as i24 from "@angular/material/sort";
|
|
|
26
26
|
import * as i25 from "@angular/material/datepicker";
|
|
27
27
|
import * as i26 from "@angular/material/stepper";
|
|
28
28
|
import * as i27 from "@angular/material/radio";
|
|
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";
|
|
34
29
|
export declare class SpaMatModule {
|
|
35
|
-
static
|
|
36
|
-
static
|
|
37
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SpaMatModule>;
|
|
30
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<SpaMatModule, never, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.MatMenuModule, typeof i4.MatSliderModule, typeof i5.MatTableModule, typeof i6.MatPaginatorModule, typeof i7.MatCheckboxModule, typeof i8.MatBadgeModule, typeof i9.MatButtonModule, typeof i10.MatIconModule, typeof i11.MatDialogModule, typeof i12.MatSnackBarModule, typeof i13.MatTabsModule, typeof i14.MatFormFieldModule, typeof i15.MatInputModule, typeof i16.MatCardModule, typeof i17.MatChipsModule, typeof i18.MatSelectModule, typeof i19.MatNativeDateModule, typeof i20.MatProgressSpinnerModule, typeof i21.MatListModule, typeof i22.MatAutocompleteModule, typeof i23.MatTooltipModule, typeof i24.MatSortModule, typeof i25.MatDatepickerModule, typeof i26.MatStepperModule, typeof i27.MatRadioModule]>;
|
|
31
|
+
static ɵinj: i0.ɵɵInjectorDef<SpaMatModule>;
|
|
38
32
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "../
|
|
3
|
-
import * as i2 from "../
|
|
2
|
+
import * as i1 from "../components/change-password/change-password.component";
|
|
3
|
+
import * as i2 from "../components/profile/profile.component";
|
|
4
4
|
import * as i3 from "@angular/forms";
|
|
5
5
|
import * as i4 from "@angular/common";
|
|
6
|
-
import * as i5 from "
|
|
6
|
+
import * as i5 from "./spa-mat.module";
|
|
7
|
+
import * as i6 from "../tin-spa.module";
|
|
7
8
|
export declare class SpaUserModule {
|
|
8
|
-
static
|
|
9
|
-
static
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SpaUserModule>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<SpaUserModule, [typeof i1.ChangePasswordComponent, typeof i2.ProfileComponent], [typeof i3.ReactiveFormsModule, typeof i4.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i5.SpaMatModule, typeof i6.TinSpaModule], [typeof i4.CommonModule, typeof i3.FormsModule, typeof i5.SpaMatModule, typeof i1.ChangePasswordComponent, typeof i2.ProfileComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDef<SpaUserModule>;
|
|
11
11
|
}
|