tin-spa 2.13.15 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/__ivy_ngcc__/fesm2015/tin-spa.js +6813 -0
- package/__ivy_ngcc__/fesm2015/tin-spa.js.map +1 -0
- package/bundles/tin-spa.umd.js +3867 -0
- package/bundles/tin-spa.umd.js.map +1 -0
- package/bundles/tin-spa.umd.min.js +16 -0
- package/bundles/tin-spa.umd.min.js.map +1 -0
- package/esm2015/lib/classes/Classes.js +241 -0
- package/esm2015/lib/components/activity/activity.component.js +26 -0
- package/esm2015/lib/components/attach/attach.component.js +107 -0
- package/esm2015/lib/components/change-password/change-password.component.js +91 -0
- package/esm2015/lib/components/check/check.component.js +63 -0
- package/esm2015/lib/components/chips/chips.component.js +67 -0
- package/esm2015/lib/components/create-account/create-account.component.js +78 -0
- package/esm2015/lib/components/date/date.component.js +45 -0
- package/esm2015/lib/components/datetime/datetime.component.js +44 -0
- package/esm2015/lib/components/html/html.component.js +97 -0
- package/esm2015/lib/components/label/label.component.js +29 -0
- package/esm2015/lib/components/loader/loader.component.js +30 -0
- package/esm2015/lib/components/login/login.component.js +122 -0
- package/esm2015/lib/components/logs/logs.component.js +43 -0
- package/esm2015/lib/components/message/messageDialog.component.js +31 -0
- package/esm2015/lib/components/money/money.component.js +50 -0
- package/esm2015/lib/components/nav-menu/nav-menu.component.js +51 -0
- package/esm2015/lib/components/option/option.component.js +62 -0
- package/esm2015/lib/components/profile/profile.component.js +108 -0
- package/esm2015/lib/components/profiles/profiles.component.js +16 -0
- package/esm2015/lib/components/recover-account/recover-account.component.js +52 -0
- package/esm2015/lib/components/roles/addRoleDialog.component.js +59 -0
- package/esm2015/lib/components/roles/editRoleDialog.component.js +57 -0
- package/esm2015/lib/components/roles/roles.component.js +131 -0
- package/esm2015/lib/components/roles/viewRoleDialog.component.js +38 -0
- package/esm2015/lib/components/select/select.component.js +73 -0
- package/esm2015/lib/components/settings/settings.component.js +63 -0
- package/esm2015/lib/components/signup/signup.component.js +56 -0
- package/esm2015/lib/components/steps/steps.component.js +98 -0
- package/esm2015/lib/components/table/table.component.js +109 -0
- package/esm2015/lib/components/text/text.component.js +165 -0
- package/esm2015/lib/components/tiles/tiles.component.js +41 -0
- package/esm2015/lib/components/timeout/timeout.component.js +90 -0
- package/esm2015/lib/components/tin-spa.component.js +19 -0
- package/esm2015/lib/components/users/addUserDialog.component.js +53 -0
- package/esm2015/lib/components/users/editUserDialog.component.js +96 -0
- package/esm2015/lib/components/users/users.component.js +130 -0
- package/esm2015/lib/components/viewer/viewer.component.js +67 -0
- package/esm2015/lib/components/viewer/viewerDialog.component.js +76 -0
- package/esm2015/lib/dnd.directive.js +51 -0
- package/esm2015/lib/modules/spa-admin.module.js +67 -0
- package/esm2015/lib/modules/spa-index.module.js +33 -0
- package/esm2015/lib/modules/spa-mat.module.js +53 -0
- package/esm2015/lib/modules/spa-user.module.js +31 -0
- package/esm2015/lib/services/auth.service.js +153 -0
- package/esm2015/lib/services/data.service.js +78 -0
- package/esm2015/lib/services/export.service.js +29 -0
- package/esm2015/lib/services/loader-interceptor.service.js +77 -0
- package/esm2015/lib/services/loader.service.js +17 -0
- package/esm2015/lib/services/log.service.js +76 -0
- package/esm2015/lib/services/message.service.js +58 -0
- package/esm2015/lib/services/storage.service.js +42 -0
- package/esm2015/lib/services/tin-spa.service.js +14 -0
- package/esm2015/lib/tin-spa.module.js +91 -0
- package/esm2015/public-api.js +58 -0
- package/esm2015/tin-spa.js +9 -0
- package/esm5/lib/classes/Classes.js +298 -0
- package/esm5/lib/components/activity/activity.component.js +27 -0
- package/esm5/lib/components/attach/attach.component.js +119 -0
- package/esm5/lib/components/change-password/change-password.component.js +93 -0
- package/esm5/lib/components/check/check.component.js +64 -0
- package/esm5/lib/components/chips/chips.component.js +69 -0
- package/esm5/lib/components/create-account/create-account.component.js +80 -0
- package/esm5/lib/components/date/date.component.js +46 -0
- package/esm5/lib/components/datetime/datetime.component.js +45 -0
- package/esm5/lib/components/html/html.component.js +98 -0
- package/esm5/lib/components/label/label.component.js +30 -0
- package/esm5/lib/components/loader/loader.component.js +32 -0
- package/esm5/lib/components/login/login.component.js +125 -0
- package/esm5/lib/components/logs/logs.component.js +45 -0
- package/esm5/lib/components/message/messageDialog.component.js +32 -0
- package/esm5/lib/components/money/money.component.js +51 -0
- package/esm5/lib/components/nav-menu/nav-menu.component.js +53 -0
- package/esm5/lib/components/option/option.component.js +63 -0
- package/esm5/lib/components/profile/profile.component.js +112 -0
- package/esm5/lib/components/profiles/profiles.component.js +18 -0
- package/esm5/lib/components/recover-account/recover-account.component.js +54 -0
- package/esm5/lib/components/roles/addRoleDialog.component.js +61 -0
- package/esm5/lib/components/roles/editRoleDialog.component.js +59 -0
- package/esm5/lib/components/roles/roles.component.js +138 -0
- package/esm5/lib/components/roles/viewRoleDialog.component.js +39 -0
- package/esm5/lib/components/select/select.component.js +75 -0
- package/esm5/lib/components/settings/settings.component.js +66 -0
- package/esm5/lib/components/signup/signup.component.js +58 -0
- package/esm5/lib/components/steps/steps.component.js +110 -0
- package/esm5/lib/components/table/table.component.js +111 -0
- package/esm5/lib/components/text/text.component.js +168 -0
- package/esm5/lib/components/tiles/tiles.component.js +42 -0
- package/esm5/lib/components/timeout/timeout.component.js +92 -0
- package/esm5/lib/components/tin-spa.component.js +17 -0
- package/esm5/lib/components/users/addUserDialog.component.js +55 -0
- package/esm5/lib/components/users/editUserDialog.component.js +99 -0
- package/esm5/lib/components/users/users.component.js +135 -0
- package/esm5/lib/components/viewer/viewer.component.js +68 -0
- package/esm5/lib/components/viewer/viewerDialog.component.js +77 -0
- package/esm5/lib/dnd.directive.js +52 -0
- package/esm5/lib/modules/spa-admin.module.js +70 -0
- package/esm5/lib/modules/spa-index.module.js +36 -0
- package/esm5/lib/modules/spa-mat.module.js +56 -0
- package/esm5/lib/modules/spa-user.module.js +34 -0
- package/esm5/lib/services/auth.service.js +155 -0
- package/esm5/lib/services/data.service.js +79 -0
- package/esm5/lib/services/export.service.js +30 -0
- package/esm5/lib/services/loader-interceptor.service.js +79 -0
- package/esm5/lib/services/loader.service.js +18 -0
- package/esm5/lib/services/log.service.js +112 -0
- package/esm5/lib/services/message.service.js +59 -0
- package/esm5/lib/services/storage.service.js +74 -0
- package/esm5/lib/services/tin-spa.service.js +16 -0
- package/esm5/lib/tin-spa.module.js +94 -0
- package/esm5/public-api.js +58 -0
- package/esm5/tin-spa.js +9 -0
- package/fesm2015/tin-spa.js +3398 -0
- package/fesm2015/tin-spa.js.map +1 -0
- package/fesm5/tin-spa.js +3623 -0
- package/fesm5/tin-spa.js.map +1 -0
- package/lib/classes/Classes.d.ts +216 -375
- package/lib/components/activity/activity.component.d.ts +5 -3
- package/lib/components/activity/activity.component.d.ts.__ivy_ngcc_bak +8 -0
- package/lib/components/attach/attach.component.d.ts +30 -16
- package/lib/components/attach/attach.component.d.ts.__ivy_ngcc_bak +39 -0
- package/lib/components/change-password/change-password.component.d.ts +25 -0
- package/lib/components/change-password/change-password.component.d.ts.__ivy_ngcc_bak +20 -0
- package/lib/components/check/check.component.d.ts +6 -9
- package/lib/components/check/check.component.d.ts.__ivy_ngcc_bak +16 -0
- package/lib/components/chips/chips.component.d.ts +5 -3
- package/lib/components/chips/chips.component.d.ts.__ivy_ngcc_bak +15 -0
- package/lib/components/create-account/create-account.component.d.ts +30 -0
- package/lib/components/create-account/create-account.component.d.ts.__ivy_ngcc_bak +25 -0
- package/lib/components/date/date.component.d.ts +15 -26
- package/lib/components/date/date.component.d.ts.__ivy_ngcc_bak +13 -0
- package/lib/components/datetime/datetime.component.d.ts +5 -7
- package/lib/components/datetime/datetime.component.d.ts.__ivy_ngcc_bak +12 -0
- package/lib/components/html/html.component.d.ts +13 -12
- package/lib/components/html/html.component.d.ts.__ivy_ngcc_bak +12 -0
- package/lib/components/label/label.component.d.ts +5 -5
- package/lib/components/label/label.component.d.ts.__ivy_ngcc_bak +8 -0
- package/lib/components/loader/loader.component.d.ts +5 -3
- package/lib/components/loader/loader.component.d.ts.__ivy_ngcc_bak +9 -0
- package/lib/components/login/login.component.d.ts +34 -0
- package/lib/components/login/login.component.d.ts.__ivy_ngcc_bak +29 -0
- package/lib/components/logs/logs.component.d.ts +22 -0
- package/lib/components/logs/logs.component.d.ts.__ivy_ngcc_bak +17 -0
- package/lib/components/message/messageDialog.component.d.ts +5 -3
- package/lib/components/message/messageDialog.component.d.ts.__ivy_ngcc_bak +12 -0
- package/lib/components/money/money.component.d.ts +8 -29
- package/lib/components/money/money.component.d.ts.__ivy_ngcc_bak +14 -0
- package/lib/components/nav-menu/nav-menu.component.d.ts +7 -23
- package/lib/components/nav-menu/nav-menu.component.d.ts.__ivy_ngcc_bak +17 -0
- package/lib/components/option/option.component.d.ts +6 -16
- package/lib/components/option/option.component.d.ts.__ivy_ngcc_bak +17 -0
- package/lib/components/profile/profile.component.d.ts +35 -0
- package/lib/components/profile/profile.component.d.ts.__ivy_ngcc_bak +30 -0
- package/lib/components/profiles/profiles.component.d.ts +10 -0
- package/lib/components/profiles/profiles.component.d.ts.__ivy_ngcc_bak +5 -0
- package/lib/components/recover-account/recover-account.component.d.ts +20 -0
- package/lib/components/recover-account/recover-account.component.d.ts.__ivy_ngcc_bak +15 -0
- package/lib/components/roles/addRoleDialog.component.d.ts +24 -0
- package/lib/components/roles/addRoleDialog.component.d.ts.__ivy_ngcc_bak +19 -0
- package/lib/components/roles/editRoleDialog.component.d.ts +24 -0
- package/lib/components/roles/editRoleDialog.component.d.ts.__ivy_ngcc_bak +19 -0
- package/lib/components/roles/roles.component.d.ts +34 -0
- package/lib/components/roles/roles.component.d.ts.__ivy_ngcc_bak +29 -0
- package/lib/components/roles/viewRoleDialog.component.d.ts +20 -0
- package/lib/components/roles/viewRoleDialog.component.d.ts.__ivy_ngcc_bak +15 -0
- package/lib/components/select/select.component.d.ts +23 -21
- package/lib/components/select/select.component.d.ts.__ivy_ngcc_bak +20 -0
- package/lib/components/settings/settings.component.d.ts +21 -0
- package/lib/{pages/settings/settings.component.d.ts → components/settings/settings.component.d.ts.__ivy_ngcc_bak} +2 -5
- package/lib/components/signup/signup.component.d.ts +25 -0
- package/lib/{pages/signup/signup.component.d.ts → components/signup/signup.component.d.ts.__ivy_ngcc_bak} +4 -7
- package/lib/components/steps/steps.component.d.ts +13 -20
- package/lib/components/steps/steps.component.d.ts.__ivy_ngcc_bak +15 -0
- package/lib/components/table/table.component.d.ts +24 -85
- package/lib/components/table/table.component.d.ts.__ivy_ngcc_bak +25 -0
- package/lib/components/text/text.component.d.ts +17 -38
- package/lib/components/text/text.component.d.ts.__ivy_ngcc_bak +37 -0
- package/lib/components/tiles/tiles.component.d.ts +10 -22
- package/lib/components/tiles/tiles.component.d.ts.__ivy_ngcc_bak +11 -0
- package/lib/components/timeout/timeout.component.d.ts +26 -0
- package/lib/components/timeout/timeout.component.d.ts.__ivy_ngcc_bak +21 -0
- package/lib/components/tin-spa.component.d.ts +9 -4
- package/lib/components/tin-spa.component.d.ts.__ivy_ngcc_bak +5 -0
- package/lib/components/users/addUserDialog.component.d.ts +21 -0
- package/lib/components/users/addUserDialog.component.d.ts.__ivy_ngcc_bak +16 -0
- package/lib/components/users/editUserDialog.component.d.ts +32 -0
- package/lib/components/users/editUserDialog.component.d.ts.__ivy_ngcc_bak +27 -0
- package/lib/components/users/users.component.d.ts +40 -0
- package/lib/components/users/users.component.d.ts.__ivy_ngcc_bak +35 -0
- package/lib/components/viewer/viewer.component.d.ts +8 -12
- package/lib/components/viewer/viewer.component.d.ts.__ivy_ngcc_bak +16 -0
- package/lib/components/viewer/viewerDialog.component.d.ts +8 -8
- package/lib/components/viewer/viewerDialog.component.d.ts.__ivy_ngcc_bak +19 -0
- package/lib/dnd.directive.d.ts +13 -0
- package/lib/dnd.directive.d.ts.__ivy_ngcc_bak +8 -0
- package/lib/modules/spa-admin.module.d.ts +19 -13
- package/lib/modules/spa-admin.module.d.ts.__ivy_ngcc_bak +2 -0
- package/lib/modules/spa-index.module.d.ts +11 -11
- package/lib/modules/spa-index.module.d.ts.__ivy_ngcc_bak +2 -0
- package/lib/modules/spa-mat.module.d.ts +32 -36
- package/lib/modules/spa-mat.module.d.ts.__ivy_ngcc_bak +2 -0
- package/lib/modules/spa-user.module.d.ts +10 -9
- package/lib/modules/spa-user.module.d.ts.__ivy_ngcc_bak +2 -0
- package/lib/services/auth.service.d.ts +15 -27
- package/lib/services/auth.service.d.ts.__ivy_ngcc_bak +45 -0
- package/lib/services/data.service.d.ts +27 -0
- package/lib/services/data.service.d.ts.__ivy_ngcc_bak +23 -0
- package/lib/services/export.service.d.ts +8 -3
- package/lib/services/export.service.d.ts.__ivy_ngcc_bak +7 -0
- package/lib/services/loader-interceptor.service.d.ts +6 -5
- package/lib/services/loader-interceptor.service.d.ts.__ivy_ngcc_bak +18 -0
- package/lib/services/loader.service.d.ts +4 -3
- package/lib/services/loader.service.d.ts.__ivy_ngcc_bak +5 -0
- package/lib/services/log.service.d.ts +5 -4
- package/lib/services/log.service.d.ts.__ivy_ngcc_bak +16 -0
- package/lib/services/message.service.d.ts +5 -5
- package/lib/services/message.service.d.ts.__ivy_ngcc_bak +12 -0
- package/lib/services/storage.service.d.ts +4 -3
- package/lib/services/storage.service.d.ts.__ivy_ngcc_bak +7 -0
- package/lib/services/tin-spa.service.d.ts +4 -3
- package/lib/services/tin-spa.service.d.ts.__ivy_ngcc_bak +3 -0
- package/lib/tin-spa.module.d.ts +35 -84
- package/lib/tin-spa.module.d.ts.__ivy_ngcc_bak +2 -0
- package/package.json +23 -23
- package/public-api.d.ts +21 -50
- package/tin-spa.d.ts +10 -0
- package/tin-spa.d.ts.__ivy_ngcc_bak +8 -0
- package/tin-spa.metadata.json +1 -0
- package/esm2020/lib/classes/Classes.mjs +0 -112
- package/esm2020/lib/classes/LibClasses.mjs +0 -180
- package/esm2020/lib/classes/TinCore.mjs +0 -568
- package/esm2020/lib/components/activity/activity.component.mjs +0 -24
- package/esm2020/lib/components/alert/alert.component.mjs +0 -43
- package/esm2020/lib/components/attach/attach.component.mjs +0 -102
- package/esm2020/lib/components/capsules/capsules.component.mjs +0 -63
- package/esm2020/lib/components/cards/cards.component.mjs +0 -103
- package/esm2020/lib/components/check/check.component.mjs +0 -67
- package/esm2020/lib/components/chips/chips.component.mjs +0 -58
- package/esm2020/lib/components/date/date.component.mjs +0 -103
- package/esm2020/lib/components/datetime/datetime.component.mjs +0 -55
- package/esm2020/lib/components/email/email.component.mjs +0 -133
- package/esm2020/lib/components/filter/filter.component.mjs +0 -58
- package/esm2020/lib/components/form/form.component.mjs +0 -296
- package/esm2020/lib/components/html/html.component.mjs +0 -34
- package/esm2020/lib/components/label/label.component.mjs +0 -31
- package/esm2020/lib/components/list-dialog/list-dialog.component.mjs +0 -68
- package/esm2020/lib/components/loader/loader.component.mjs +0 -25
- package/esm2020/lib/components/message/messageDialog.component.mjs +0 -33
- package/esm2020/lib/components/money/currency-input-mask.directive.mjs +0 -185
- package/esm2020/lib/components/money/currency-input-mask.module.mjs +0 -28
- package/esm2020/lib/components/money/money.component.mjs +0 -137
- package/esm2020/lib/components/multi-select/multi-select.component.mjs +0 -165
- package/esm2020/lib/components/multi-text/multi-text.component.mjs +0 -208
- package/esm2020/lib/components/nav-menu/nav-menu.component.mjs +0 -88
- package/esm2020/lib/components/notes/notes.component.mjs +0 -62
- package/esm2020/lib/components/number/number.component.mjs +0 -131
- package/esm2020/lib/components/option/option.component.mjs +0 -92
- package/esm2020/lib/components/page/page.component.mjs +0 -101
- package/esm2020/lib/components/search/search.component.mjs +0 -36
- package/esm2020/lib/components/select/select.component.mjs +0 -75
- package/esm2020/lib/components/select-bitwise/select-bitwise.component.mjs +0 -87
- package/esm2020/lib/components/select-common/select-common.component.mjs +0 -206
- package/esm2020/lib/components/select-internal/select-internal.component.mjs +0 -75
- package/esm2020/lib/components/select-lite/select-lite.component.mjs +0 -18
- package/esm2020/lib/components/statuses/statuses.component.mjs +0 -44
- package/esm2020/lib/components/steps/steps.component.mjs +0 -112
- package/esm2020/lib/components/suffix/suffix.component.mjs +0 -70
- package/esm2020/lib/components/table/detailsDialog.component.mjs +0 -406
- package/esm2020/lib/components/table/table.component.mjs +0 -440
- package/esm2020/lib/components/table-action/table-action.component.mjs +0 -80
- package/esm2020/lib/components/table-header/table-header.component.mjs +0 -148
- package/esm2020/lib/components/table-internal/detailsDialog-internal.component.mjs +0 -406
- package/esm2020/lib/components/table-internal/table-internal.component.mjs +0 -441
- package/esm2020/lib/components/table-lite/detailsDialog-lite.component.mjs +0 -404
- package/esm2020/lib/components/table-lite/table-lite.component.mjs +0 -441
- package/esm2020/lib/components/table-row/table-row.component.mjs +0 -93
- package/esm2020/lib/components/tabs/tabs.component.mjs +0 -74
- package/esm2020/lib/components/text/text.component.mjs +0 -255
- package/esm2020/lib/components/tiles/tiles.component.mjs +0 -99
- package/esm2020/lib/components/tin-spa.component.mjs +0 -19
- package/esm2020/lib/components/viewer/viewer.component.mjs +0 -83
- package/esm2020/lib/components/viewer/viewerDialog.component.mjs +0 -95
- package/esm2020/lib/modules/admin/admin-routing.module.mjs +0 -71
- package/esm2020/lib/modules/admin/admin.module.mjs +0 -26
- package/esm2020/lib/modules/index/index-routing.module.mjs +0 -27
- package/esm2020/lib/modules/index/index.module.mjs +0 -26
- package/esm2020/lib/modules/spa-admin.module.mjs +0 -71
- package/esm2020/lib/modules/spa-index.module.mjs +0 -54
- package/esm2020/lib/modules/spa-mat.module.mjs +0 -84
- package/esm2020/lib/modules/spa-user.module.mjs +0 -47
- package/esm2020/lib/modules/user/user-routing.module.mjs +0 -23
- package/esm2020/lib/modules/user/user.module.mjs +0 -26
- package/esm2020/lib/pages/accounts/accountDialog.component.mjs +0 -56
- package/esm2020/lib/pages/accounts/accounts.component.mjs +0 -70
- package/esm2020/lib/pages/app-models/app-models.component.mjs +0 -56
- package/esm2020/lib/pages/approvals/approvals.component.mjs +0 -19
- package/esm2020/lib/pages/approvals-config/approvals-config.component.mjs +0 -165
- package/esm2020/lib/pages/bug/bug.component.mjs +0 -14
- package/esm2020/lib/pages/change-password/change-password.component.mjs +0 -92
- package/esm2020/lib/pages/create-account/create-account.component.mjs +0 -110
- package/esm2020/lib/pages/customers/customers.component.mjs +0 -21
- package/esm2020/lib/pages/departments/departments.component.mjs +0 -22
- package/esm2020/lib/pages/employees/employees.component.mjs +0 -20
- package/esm2020/lib/pages/grades/grades.component.mjs +0 -14
- package/esm2020/lib/pages/inventory/inventory.component.mjs +0 -99
- package/esm2020/lib/pages/inventory/quantityDialog.component.mjs +0 -53
- package/esm2020/lib/pages/invitations-table/invitations-table.component.mjs +0 -71
- package/esm2020/lib/pages/login/login.component.mjs +0 -166
- package/esm2020/lib/pages/logs/logs.component.mjs +0 -42
- package/esm2020/lib/pages/membership/membership.component.mjs +0 -44
- package/esm2020/lib/pages/notifications/notifications.component.mjs +0 -90
- package/esm2020/lib/pages/notifications-config/notifications-config.component.mjs +0 -113
- package/esm2020/lib/pages/plans/plans.component.mjs +0 -44
- package/esm2020/lib/pages/positions/positions.component.mjs +0 -21
- package/esm2020/lib/pages/profile/profile.component.mjs +0 -94
- package/esm2020/lib/pages/recover-account/recover-account.component.mjs +0 -46
- package/esm2020/lib/pages/roles/addRoleDialog.component.mjs +0 -60
- package/esm2020/lib/pages/roles/roles.component.mjs +0 -151
- package/esm2020/lib/pages/settings/settings.component.mjs +0 -54
- package/esm2020/lib/pages/signup/signup.component.mjs +0 -50
- package/esm2020/lib/pages/suppliers/suppliers.component.mjs +0 -22
- package/esm2020/lib/pages/tasks/tasks.component.mjs +0 -86
- package/esm2020/lib/pages/tenant-settings/tenant-settings.component.mjs +0 -228
- package/esm2020/lib/pages/tenants/tenants.component.mjs +0 -47
- package/esm2020/lib/pages/transactions/transactDialog.component.mjs +0 -80
- package/esm2020/lib/pages/transactions/transactions.component.mjs +0 -101
- package/esm2020/lib/pages/users/users.component.mjs +0 -167
- package/esm2020/lib/pages/welcome/welcome.component.mjs +0 -86
- package/esm2020/lib/pipes/camelToWords.pipe.mjs +0 -17
- package/esm2020/lib/select-context.directive.mjs +0 -23
- package/esm2020/lib/services/auth.service.mjs +0 -175
- package/esm2020/lib/services/button.service.mjs +0 -162
- package/esm2020/lib/services/condition.service.mjs +0 -32
- package/esm2020/lib/services/csv.service.mjs +0 -49
- package/esm2020/lib/services/datalib.service.mjs +0 -860
- package/esm2020/lib/services/dialog.service.mjs +0 -125
- package/esm2020/lib/services/export.service.mjs +0 -16
- package/esm2020/lib/services/http.service.mjs +0 -79
- package/esm2020/lib/services/loader-interceptor.service.mjs +0 -86
- package/esm2020/lib/services/loader.service.mjs +0 -17
- package/esm2020/lib/services/log.service.mjs +0 -77
- package/esm2020/lib/services/message.service.mjs +0 -59
- package/esm2020/lib/services/notifications.service.mjs +0 -33
- package/esm2020/lib/services/storage.service.mjs +0 -34
- package/esm2020/lib/services/table-config.service.mjs +0 -78
- package/esm2020/lib/services/tin-spa.service.mjs +0 -14
- package/esm2020/lib/tin-spa.module.mjs +0 -225
- package/esm2020/public-api.mjs +0 -90
- package/esm2020/tin-spa.mjs +0 -5
- package/fesm2015/tin-spa.mjs +0 -11736
- package/fesm2015/tin-spa.mjs.map +0 -1
- package/fesm2020/tin-spa.mjs +0 -11738
- package/fesm2020/tin-spa.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/classes/LibClasses.d.ts +0 -173
- package/lib/classes/TinCore.d.ts +0 -59
- package/lib/components/alert/alert.component.d.ts +0 -15
- package/lib/components/capsules/capsules.component.d.ts +0 -26
- package/lib/components/cards/cards.component.d.ts +0 -39
- package/lib/components/email/email.component.d.ts +0 -40
- package/lib/components/filter/filter.component.d.ts +0 -20
- package/lib/components/form/form.component.d.ts +0 -47
- package/lib/components/list-dialog/list-dialog.component.d.ts +0 -23
- package/lib/components/money/currency-input-mask.directive.d.ts +0 -41
- package/lib/components/money/currency-input-mask.module.d.ts +0 -9
- package/lib/components/multi-select/multi-select.component.d.ts +0 -47
- package/lib/components/multi-text/multi-text.component.d.ts +0 -56
- package/lib/components/notes/notes.component.d.ts +0 -19
- package/lib/components/number/number.component.d.ts +0 -41
- package/lib/components/page/page.component.d.ts +0 -38
- package/lib/components/search/search.component.d.ts +0 -15
- package/lib/components/select-bitwise/select-bitwise.component.d.ts +0 -31
- package/lib/components/select-common/select-common.component.d.ts +0 -53
- package/lib/components/select-internal/select-internal.component.d.ts +0 -23
- package/lib/components/select-lite/select-lite.component.d.ts +0 -8
- package/lib/components/statuses/statuses.component.d.ts +0 -12
- package/lib/components/suffix/suffix.component.d.ts +0 -23
- package/lib/components/table/detailsDialog.component.d.ts +0 -86
- package/lib/components/table-action/table-action.component.d.ts +0 -25
- package/lib/components/table-header/table-header.component.d.ts +0 -46
- package/lib/components/table-internal/detailsDialog-internal.component.d.ts +0 -86
- package/lib/components/table-internal/table-internal.component.d.ts +0 -91
- package/lib/components/table-lite/detailsDialog-lite.component.d.ts +0 -86
- package/lib/components/table-lite/table-lite.component.d.ts +0 -91
- package/lib/components/table-row/table-row.component.d.ts +0 -31
- package/lib/components/tabs/tabs.component.d.ts +0 -32
- package/lib/modules/admin/admin-routing.module.d.ts +0 -7
- package/lib/modules/admin/admin.module.d.ts +0 -9
- package/lib/modules/index/index-routing.module.d.ts +0 -7
- package/lib/modules/index/index.module.d.ts +0 -9
- package/lib/modules/user/user-routing.module.d.ts +0 -7
- package/lib/modules/user/user.module.d.ts +0 -9
- package/lib/pages/accounts/accountDialog.component.d.ts +0 -27
- package/lib/pages/accounts/accounts.component.d.ts +0 -25
- package/lib/pages/app-models/app-models.component.d.ts +0 -15
- package/lib/pages/approvals/approvals.component.d.ts +0 -10
- package/lib/pages/approvals-config/approvals-config.component.d.ts +0 -24
- package/lib/pages/bug/bug.component.d.ts +0 -8
- package/lib/pages/change-password/change-password.component.d.ts +0 -27
- package/lib/pages/create-account/create-account.component.d.ts +0 -34
- package/lib/pages/customers/customers.component.d.ts +0 -12
- package/lib/pages/departments/departments.component.d.ts +0 -14
- package/lib/pages/employees/employees.component.d.ts +0 -12
- package/lib/pages/grades/grades.component.d.ts +0 -8
- package/lib/pages/inventory/inventory.component.d.ts +0 -25
- package/lib/pages/inventory/quantityDialog.component.d.ts +0 -23
- package/lib/pages/invitations-table/invitations-table.component.d.ts +0 -19
- package/lib/pages/login/login.component.d.ts +0 -46
- package/lib/pages/logs/logs.component.d.ts +0 -14
- package/lib/pages/membership/membership.component.d.ts +0 -13
- package/lib/pages/notifications/notifications.component.d.ts +0 -16
- package/lib/pages/notifications-config/notifications-config.component.d.ts +0 -17
- package/lib/pages/plans/plans.component.d.ts +0 -13
- package/lib/pages/positions/positions.component.d.ts +0 -12
- package/lib/pages/profile/profile.component.d.ts +0 -35
- package/lib/pages/recover-account/recover-account.component.d.ts +0 -18
- package/lib/pages/roles/addRoleDialog.component.d.ts +0 -24
- package/lib/pages/roles/roles.component.d.ts +0 -42
- package/lib/pages/suppliers/suppliers.component.d.ts +0 -14
- package/lib/pages/tasks/tasks.component.d.ts +0 -27
- package/lib/pages/tenant-settings/tenant-settings.component.d.ts +0 -47
- package/lib/pages/tenants/tenants.component.d.ts +0 -17
- package/lib/pages/transactions/transactDialog.component.d.ts +0 -26
- package/lib/pages/transactions/transactions.component.d.ts +0 -31
- package/lib/pages/users/users.component.d.ts +0 -28
- package/lib/pages/welcome/welcome.component.d.ts +0 -25
- package/lib/pipes/camelToWords.pipe.d.ts +0 -7
- package/lib/select-context.directive.d.ts +0 -10
- package/lib/services/button.service.d.ts +0 -30
- package/lib/services/condition.service.d.ts +0 -10
- package/lib/services/csv.service.d.ts +0 -10
- package/lib/services/datalib.service.d.ts +0 -125
- package/lib/services/dialog.service.d.ts +0 -20
- package/lib/services/http.service.d.ts +0 -22
- package/lib/services/notifications.service.d.ts +0 -12
- package/lib/services/table-config.service.d.ts +0 -17
|
@@ -1,46 +0,0 @@
|
|
|
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/datalib.service";
|
|
7
|
-
import { LogService } from "../../services/log.service";
|
|
8
|
-
import { AppConfig } from "../../classes/Classes";
|
|
9
|
-
import { HttpService } from "../../services/http.service";
|
|
10
|
-
import { SocialAuthService, SocialUser } from '@abacritt/angularx-social-login';
|
|
11
|
-
import { User } from "../../classes/LibClasses";
|
|
12
|
-
import { NotificationsService } from "../../services/notifications.service";
|
|
13
|
-
import { MsalService } from '@azure/msal-angular';
|
|
14
|
-
import * as i0 from "@angular/core";
|
|
15
|
-
export declare class LoginComponent implements OnInit {
|
|
16
|
-
private httpService;
|
|
17
|
-
private storageService;
|
|
18
|
-
router: Router;
|
|
19
|
-
private messageService;
|
|
20
|
-
dataService: DataServiceLib;
|
|
21
|
-
authService: AuthService;
|
|
22
|
-
private logService;
|
|
23
|
-
private route;
|
|
24
|
-
private socialService;
|
|
25
|
-
private notificationsService;
|
|
26
|
-
private msalService;
|
|
27
|
-
constructor(httpService: HttpService, storageService: StorageService, router: Router, messageService: MessageService, dataService: DataServiceLib, authService: AuthService, logService: LogService, route: ActivatedRoute, socialService: SocialAuthService, notificationsService: NotificationsService, msalService: MsalService);
|
|
28
|
-
ngOnInit(): void;
|
|
29
|
-
loginWithMS(): void;
|
|
30
|
-
autoLogin: boolean;
|
|
31
|
-
socialUser: SocialUser | null;
|
|
32
|
-
style: string;
|
|
33
|
-
email: string;
|
|
34
|
-
password: string;
|
|
35
|
-
redirectPath: any;
|
|
36
|
-
user: User;
|
|
37
|
-
hide: boolean;
|
|
38
|
-
isProcessing: boolean;
|
|
39
|
-
appConfig: AppConfig;
|
|
40
|
-
signup(): void;
|
|
41
|
-
recoverAccount(): void;
|
|
42
|
-
login(): void;
|
|
43
|
-
notifications(): void;
|
|
44
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "spa-login", never, {}, {}, never, never, false>;
|
|
46
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DataServiceLib } from "../../services/datalib.service";
|
|
3
|
-
import { AuthService } from '../../services/auth.service';
|
|
4
|
-
import { PageConfig } from '../../classes/Classes';
|
|
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
|
-
logsPageConfig: PageConfig;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LogsComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LogsComponent, "spa-logs", never, {}, {}, never, never, false>;
|
|
14
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormConfig, TableConfig } from '../../classes/Classes';
|
|
3
|
-
import { AuthService } from '../../services/auth.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MembershipComponent implements OnInit {
|
|
6
|
-
authService: AuthService;
|
|
7
|
-
constructor(authService: AuthService);
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
formConfig: FormConfig;
|
|
10
|
-
membersTableConfig: TableConfig;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MembershipComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MembershipComponent, "spa-membership", never, {}, {}, never, never, false>;
|
|
13
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DetailsDialogConfig, TableConfig } from '../../classes/Classes';
|
|
3
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
4
|
-
import { NotificationsService } from '../../services/notifications.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class NotificationsComponent implements OnInit {
|
|
7
|
-
private dataService;
|
|
8
|
-
private notificationsService;
|
|
9
|
-
constructor(dataService: DataServiceLib, notificationsService: NotificationsService);
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
createDialog: DetailsDialogConfig;
|
|
12
|
-
notificationsTableConfig: TableConfig;
|
|
13
|
-
actionClicked(x: any): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsComponent, "spa-notifications", never, {}, {}, never, never, false>;
|
|
16
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DetailsDialogConfig, FormConfig, PageConfig, TableConfig } from '../../classes/Classes';
|
|
3
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class NotificationsConfigComponent implements OnInit {
|
|
6
|
-
private dataService;
|
|
7
|
-
constructor(dataService: DataServiceLib);
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
notificationOperationFormConfig: FormConfig;
|
|
10
|
-
notificationOperationsTableConfig: TableConfig;
|
|
11
|
-
notificationConfigFormConfig: FormConfig;
|
|
12
|
-
notificationConfigDetailsConfig: DetailsDialogConfig;
|
|
13
|
-
notificationConfigTable: TableConfig;
|
|
14
|
-
pageConfig: PageConfig;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsConfigComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsConfigComponent, "spa-notifications-config", never, {}, {}, never, never, false>;
|
|
17
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormConfig, TableConfig } from '../../classes/Classes';
|
|
3
|
-
import { AuthService } from '../../services/auth.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class PlansComponent implements OnInit {
|
|
6
|
-
authService: AuthService;
|
|
7
|
-
constructor(authService: AuthService);
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
formConfig: FormConfig;
|
|
10
|
-
plansTableConfig: TableConfig;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PlansComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PlansComponent, "spa-plans", never, {}, {}, never, never, false>;
|
|
13
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { AuthService } from '../../services/auth.service';
|
|
3
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class PositionsComponent implements OnInit {
|
|
6
|
-
dataService: DataServiceLib;
|
|
7
|
-
authService: AuthService;
|
|
8
|
-
constructor(dataService: DataServiceLib, authService: AuthService);
|
|
9
|
-
ngOnInit(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PositionsComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PositionsComponent, "spa-positions", never, {}, {}, never, never, false>;
|
|
12
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { AuthService } from './../../services/auth.service';
|
|
2
|
-
import { MessageService } from './../../services/message.service';
|
|
3
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
4
|
-
import { OnInit } from '@angular/core';
|
|
5
|
-
import { AppConfig } from '../../classes/Classes';
|
|
6
|
-
import { Router } from '@angular/router';
|
|
7
|
-
import { HttpService } from '../../services/http.service';
|
|
8
|
-
import { Profile } from '../../classes/LibClasses';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class ProfileComponent implements OnInit {
|
|
11
|
-
dataService: DataServiceLib;
|
|
12
|
-
private messageService;
|
|
13
|
-
private httpService;
|
|
14
|
-
private router;
|
|
15
|
-
private authService;
|
|
16
|
-
constructor(dataService: DataServiceLib, messageService: MessageService, httpService: HttpService, router: Router, authService: AuthService);
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
isProcessing: boolean;
|
|
19
|
-
myRole: any;
|
|
20
|
-
initials: string;
|
|
21
|
-
appConfig: AppConfig;
|
|
22
|
-
selfProfile: boolean;
|
|
23
|
-
profile: Profile;
|
|
24
|
-
roles: any;
|
|
25
|
-
approvalRoles: any;
|
|
26
|
-
employees: any;
|
|
27
|
-
loadProfile(userName: string): void;
|
|
28
|
-
loadRoles(): void;
|
|
29
|
-
changePassword(): void;
|
|
30
|
-
gotoUsers(): void;
|
|
31
|
-
update(): void;
|
|
32
|
-
updateProfile(): void;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileComponent, "spa-profile", never, { "appConfig": "appConfig"; }, {}, never, never, false>;
|
|
35
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
|
-
import { AuthService } from '../../services/auth.service';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { Location } from '@angular/common';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class RecoverAccountComponent implements OnInit {
|
|
8
|
-
private location;
|
|
9
|
-
private dataService;
|
|
10
|
-
authService: AuthService;
|
|
11
|
-
private messageService;
|
|
12
|
-
constructor(location: Location, dataService: DataServiceLib, authService: AuthService, messageService: MessageService);
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
userName: string;
|
|
15
|
-
recover(): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RecoverAccountComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RecoverAccountComponent, "spa-recover-account", never, {}, {}, never, never, false>;
|
|
18
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
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/datalib.service';
|
|
6
|
-
import { LoaderService } from '../../services/loader.service';
|
|
7
|
-
import { Role } from '../../classes/LibClasses';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class addRoleDialog implements OnInit {
|
|
10
|
-
private loaderService;
|
|
11
|
-
private messageService;
|
|
12
|
-
private dataService;
|
|
13
|
-
private authService;
|
|
14
|
-
private dialogRef;
|
|
15
|
-
data: any;
|
|
16
|
-
constructor(loaderService: LoaderService, messageService: MessageService, dataService: DataServiceLib, authService: AuthService, dialogRef: MatDialogRef<addRoleDialog>, data: any);
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
capItems: any;
|
|
19
|
-
isProcessing: boolean;
|
|
20
|
-
role: Role;
|
|
21
|
-
submit(): void;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<addRoleDialog, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<addRoleDialog, "app-addRole", never, {}, {}, never, never, false>;
|
|
24
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { AppConfig, Button, CapItem, DetailsDialogConfig, RoleAccess } from './../../classes/Classes';
|
|
2
|
-
import { OnInit } from "@angular/core";
|
|
3
|
-
import { MatDialog } from "@angular/material/dialog";
|
|
4
|
-
import { DataServiceLib } from "../../services/datalib.service";
|
|
5
|
-
import { Router } from "@angular/router";
|
|
6
|
-
import { MessageService } from '../../services/message.service';
|
|
7
|
-
import { AuthService } from '../../services/auth.service';
|
|
8
|
-
import { HttpService } from '../../services/http.service';
|
|
9
|
-
import { DialogService } from '../../services/dialog.service';
|
|
10
|
-
import { Role } from '../../classes/LibClasses';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
|
-
export declare class RolesComponent implements OnInit {
|
|
13
|
-
private httpService;
|
|
14
|
-
private router;
|
|
15
|
-
private authService;
|
|
16
|
-
private dataService;
|
|
17
|
-
private dialogService;
|
|
18
|
-
dialog: MatDialog;
|
|
19
|
-
private messageService;
|
|
20
|
-
constructor(httpService: HttpService, router: Router, authService: AuthService, dataService: DataServiceLib, dialogService: DialogService, dialog: MatDialog, messageService: MessageService);
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
isProcessing: boolean;
|
|
23
|
-
roles: Role[];
|
|
24
|
-
RoleAccess: typeof RoleAccess;
|
|
25
|
-
appConfig: AppConfig;
|
|
26
|
-
roleAccessOptions: {
|
|
27
|
-
value: RoleAccess;
|
|
28
|
-
name: string;
|
|
29
|
-
}[];
|
|
30
|
-
loadRoles(): void;
|
|
31
|
-
refresh(): void;
|
|
32
|
-
onCapItemChange(capItem: CapItem, checked: boolean, role: any): void;
|
|
33
|
-
hasSubItemsAccess(capItem: CapItem, role: any): boolean;
|
|
34
|
-
addRole(): void;
|
|
35
|
-
updateRole(role: Role): void;
|
|
36
|
-
deleteRole(role: Role): void;
|
|
37
|
-
renameDialogConfig: DetailsDialogConfig;
|
|
38
|
-
renameButton: Button;
|
|
39
|
-
renameRole(role: Role): void;
|
|
40
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RolesComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RolesComponent, "spa-roles", never, {}, {}, never, never, false>;
|
|
42
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
|
-
import { MessageService } from '../../services/message.service';
|
|
4
|
-
import { AuthService } from '../../services/auth.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class SuppliersComponent implements OnInit {
|
|
7
|
-
dataService: DataServiceLib;
|
|
8
|
-
private messageService;
|
|
9
|
-
authService: AuthService;
|
|
10
|
-
constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService);
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SuppliersComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuppliersComponent, "spa-suppliers", never, {}, {}, never, never, false>;
|
|
14
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
|
-
import { FormConfig, TableConfig } from '../../classes/Classes';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { AuthService } from '../../services/auth.service';
|
|
6
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
7
|
-
import { Subject } from 'rxjs';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class TasksComponent implements OnInit {
|
|
10
|
-
private dataService;
|
|
11
|
-
private messageService;
|
|
12
|
-
authService: AuthService;
|
|
13
|
-
dialog: MatDialog;
|
|
14
|
-
constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService, dialog: MatDialog);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
loadData(): void;
|
|
17
|
-
cats(): void;
|
|
18
|
-
reload: Subject<boolean>;
|
|
19
|
-
statuses: {
|
|
20
|
-
name: string;
|
|
21
|
-
value: number;
|
|
22
|
-
}[];
|
|
23
|
-
formConfig: FormConfig;
|
|
24
|
-
tasksTableConfig: TableConfig;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TasksComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TasksComponent, "spa-tasks", never, {}, {}, never, never, false>;
|
|
27
|
-
}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormConfig, TableConfig, DetailsDialogConfig, Field } from '../../classes/Classes';
|
|
3
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { AuthService } from '../../services/auth.service';
|
|
6
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
7
|
-
import { Subject } from 'rxjs';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class TenantSettingsComponent implements OnInit {
|
|
10
|
-
dataService: DataServiceLib;
|
|
11
|
-
private messageService;
|
|
12
|
-
authService: AuthService;
|
|
13
|
-
dialog: MatDialog;
|
|
14
|
-
constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService, dialog: MatDialog);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
newName: any;
|
|
17
|
-
myRole: any;
|
|
18
|
-
tenants: any;
|
|
19
|
-
currTenant: any;
|
|
20
|
-
currentTenantID: any;
|
|
21
|
-
plan: any;
|
|
22
|
-
ownTenant: any;
|
|
23
|
-
roles: {
|
|
24
|
-
roleName: string;
|
|
25
|
-
roleID: number;
|
|
26
|
-
}[];
|
|
27
|
-
loadData(): void;
|
|
28
|
-
loadTenants(): void;
|
|
29
|
-
updateTenant(x: any): void;
|
|
30
|
-
refreshOrgsLists(): void;
|
|
31
|
-
switchTenant(): void;
|
|
32
|
-
forceLogin(): void;
|
|
33
|
-
roleField: Field;
|
|
34
|
-
inviteDialogConfig: DetailsDialogConfig;
|
|
35
|
-
membersFormConfig: FormConfig;
|
|
36
|
-
tableReload: Subject<boolean>;
|
|
37
|
-
membersTableConfig: TableConfig;
|
|
38
|
-
orgFormConfig: FormConfig;
|
|
39
|
-
createOrgDialogConfig: DetailsDialogConfig;
|
|
40
|
-
renameOrgDialogConfig: DetailsDialogConfig;
|
|
41
|
-
orgsReload: Subject<boolean>;
|
|
42
|
-
orgsTableConfig: TableConfig;
|
|
43
|
-
mailerFormConfig: FormConfig;
|
|
44
|
-
mailerTableConfig: TableConfig;
|
|
45
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TenantSettingsComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TenantSettingsComponent, "spa-tenant-settings", never, {}, {}, never, never, false>;
|
|
47
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
|
-
import { FormConfig, TableConfig } from '../../classes/Classes';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { AuthService } from '../../services/auth.service';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class TenantsComponent implements OnInit {
|
|
8
|
-
private dataService;
|
|
9
|
-
private messageService;
|
|
10
|
-
authService: AuthService;
|
|
11
|
-
constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService);
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
tenantFormConfig: FormConfig;
|
|
14
|
-
tenantsTableConfig: TableConfig;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TenantsComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TenantsComponent, "spa-tenants", never, {}, {}, never, never, false>;
|
|
17
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { Transaction } from '../../classes/Classes';
|
|
6
|
-
import { LoaderService } from '../../services/loader.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class transactDialog implements OnInit {
|
|
9
|
-
private loaderService;
|
|
10
|
-
private messageService;
|
|
11
|
-
private dataService;
|
|
12
|
-
private dialogRef;
|
|
13
|
-
data: any;
|
|
14
|
-
constructor(loaderService: LoaderService, messageService: MessageService, dataService: DataServiceLib, dialogRef: MatDialogRef<transactDialog>, data: any);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
txn: Transaction;
|
|
17
|
-
action: any;
|
|
18
|
-
account: any;
|
|
19
|
-
accounts: any;
|
|
20
|
-
categories: any;
|
|
21
|
-
isLoadComplete: boolean;
|
|
22
|
-
isProcessing: boolean;
|
|
23
|
-
submit(): void;
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<transactDialog, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<transactDialog, "app-quanityDiag", never, {}, {}, never, never, false>;
|
|
26
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
|
-
import { TableConfig } from '../../classes/Classes';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { Subject } from 'rxjs';
|
|
6
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
7
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class TransactionsComponent implements OnInit {
|
|
10
|
-
private dataService;
|
|
11
|
-
private messageService;
|
|
12
|
-
private breakpointObserver;
|
|
13
|
-
dialog: MatDialog;
|
|
14
|
-
constructor(dataService: DataServiceLib, messageService: MessageService, breakpointObserver: BreakpointObserver, dialog: MatDialog);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
cats(): void;
|
|
17
|
-
actionClicked(x: any): void;
|
|
18
|
-
loadData(): void;
|
|
19
|
-
transact(x: any, data: any): void;
|
|
20
|
-
transfer(): void;
|
|
21
|
-
smallScreen: any;
|
|
22
|
-
account: any;
|
|
23
|
-
accounts: any[];
|
|
24
|
-
transactions: any[];
|
|
25
|
-
accountID: any;
|
|
26
|
-
categories: any[];
|
|
27
|
-
reload: Subject<boolean>;
|
|
28
|
-
config: TableConfig;
|
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionsComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionsComponent, "spa-transactions", never, {}, {}, never, never, false>;
|
|
31
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
|
-
import { MatDialog } from "@angular/material/dialog";
|
|
3
|
-
import { DataServiceLib } from "../../services/datalib.service";
|
|
4
|
-
import { Router } from "@angular/router";
|
|
5
|
-
import { MessageService } from "../../services/message.service";
|
|
6
|
-
import { AuthService } from "../../services/auth.service";
|
|
7
|
-
import { TableConfig, FormConfig, DetailsDialogConfig } from '../../classes/Classes';
|
|
8
|
-
import { HttpService } from "../../services/http.service";
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class UsersComponent implements OnInit {
|
|
11
|
-
private httpService;
|
|
12
|
-
router: Router;
|
|
13
|
-
private authService;
|
|
14
|
-
private dataService;
|
|
15
|
-
dialog: MatDialog;
|
|
16
|
-
private messageService;
|
|
17
|
-
constructor(httpService: HttpService, router: Router, authService: AuthService, dataService: DataServiceLib, dialog: MatDialog, messageService: MessageService);
|
|
18
|
-
ngOnInit(): void;
|
|
19
|
-
inputChanged(x: any): void;
|
|
20
|
-
loadMeta(): void;
|
|
21
|
-
userBaseFormConfig: FormConfig;
|
|
22
|
-
createDialog: DetailsDialogConfig;
|
|
23
|
-
editDialog: DetailsDialogConfig;
|
|
24
|
-
passwordDialog: DetailsDialogConfig;
|
|
25
|
-
usersTableConfig: TableConfig;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UsersComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UsersComponent, "spa-users", never, {}, {}, never, never, false>;
|
|
28
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { TableConfig } from '../../classes/Classes';
|
|
3
|
-
import { AuthService } from '../../services/auth.service';
|
|
4
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class WelcomeComponent implements OnInit {
|
|
7
|
-
dataService: DataServiceLib;
|
|
8
|
-
authService: AuthService;
|
|
9
|
-
constructor(dataService: DataServiceLib, authService: AuthService);
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
username: any;
|
|
12
|
-
step: string;
|
|
13
|
-
agree: boolean;
|
|
14
|
-
own: boolean;
|
|
15
|
-
invitations: boolean;
|
|
16
|
-
myTenant: any;
|
|
17
|
-
loadMeta(): void;
|
|
18
|
-
renameTenant(): void;
|
|
19
|
-
next(): void;
|
|
20
|
-
setWelcome(): void;
|
|
21
|
-
home(): void;
|
|
22
|
-
invTableConfig: TableConfig;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WelcomeComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WelcomeComponent, "spa-welcome", never, {}, {}, never, never, false>;
|
|
25
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CamelToWordsPipe implements PipeTransform {
|
|
4
|
-
transform(value: string): string;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CamelToWordsPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<CamelToWordsPipe, "camelToWords", false>;
|
|
7
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SelectContextDirective {
|
|
4
|
-
private templateRef;
|
|
5
|
-
private viewContainer;
|
|
6
|
-
constructor(templateRef: TemplateRef<any>, viewContainer: ViewContainerRef);
|
|
7
|
-
set selectContext(context: any);
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectContextDirective, never>;
|
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectContextDirective, "[selectContext]", never, { "selectContext": "selectContext"; }, {}, never, never, false>;
|
|
10
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { Button, TableConfig } from '../classes/Classes';
|
|
2
|
-
import { AuthService } from './auth.service';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ButtonService {
|
|
5
|
-
private authService;
|
|
6
|
-
constructor(authService: AuthService);
|
|
7
|
-
getButton(buttons: Button[], name: string): Button | null;
|
|
8
|
-
getConfirmMessage(button: Button, row: any): string;
|
|
9
|
-
getButtonProperties(button: Button, row: any, config: TableConfig): {
|
|
10
|
-
color: string;
|
|
11
|
-
icon: string;
|
|
12
|
-
disabled: boolean;
|
|
13
|
-
visible: boolean;
|
|
14
|
-
tip: string;
|
|
15
|
-
};
|
|
16
|
-
getButtonColor(button: Button, row: any): string;
|
|
17
|
-
getTitleAction(mode: string, buttons: Button[]): string;
|
|
18
|
-
isTabVisible(tableConfig: TableConfig, details: any): boolean;
|
|
19
|
-
getIcon(button: Button, config: TableConfig | null): string;
|
|
20
|
-
testDisabled(button: Button, row: any, config?: TableConfig): boolean;
|
|
21
|
-
getVisibleButtons(buttons: Button[], row: any, tableConfig?: TableConfig): Button[];
|
|
22
|
-
testVisible(button: Button, row: any, tableConfig?: TableConfig): boolean;
|
|
23
|
-
private hasRequiredAccess;
|
|
24
|
-
private getDefaultColor;
|
|
25
|
-
private getDefaultIcon;
|
|
26
|
-
getCreateButton(buttons: Button[]): Button | undefined;
|
|
27
|
-
isFormButton(button: Button): boolean;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonService, never>;
|
|
29
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ButtonService>;
|
|
30
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Icon, Color } from '../classes/Classes';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ConditionService {
|
|
4
|
-
testIconCondition(icon: Icon, row: any): boolean;
|
|
5
|
-
testColorCondition(color: Color, row: any): boolean;
|
|
6
|
-
getColor(value: any, options: any[]): string;
|
|
7
|
-
testCondition(condition: (value: any) => boolean, value: any): boolean;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ConditionService, never>;
|
|
9
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ConditionService>;
|
|
10
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { TableConfig } from '../classes/Classes';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CsvService {
|
|
4
|
-
generateCsv(data: any[], columns: string[], filename: string, config: TableConfig): void;
|
|
5
|
-
private convertToCsv;
|
|
6
|
-
private createColumnMap;
|
|
7
|
-
private escapeCommas;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CsvService, never>;
|
|
9
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<CsvService>;
|
|
10
|
-
}
|