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,53 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { MessageService } from '../../services/message.service';
|
|
3
|
-
import { Action, Field } from '../../classes/Classes';
|
|
4
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class SelectCommonComponent implements OnInit, OnDestroy {
|
|
7
|
-
protected messageService: MessageService;
|
|
8
|
-
protected dataService: DataServiceLib;
|
|
9
|
-
constructor(messageService: MessageService, dataService: DataServiceLib);
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
ngOnChanges(): void;
|
|
12
|
-
displayValue: any;
|
|
13
|
-
isHovered: boolean;
|
|
14
|
-
selectedOptionHint: string;
|
|
15
|
-
private subscription;
|
|
16
|
-
width: string;
|
|
17
|
-
readonly: boolean;
|
|
18
|
-
required: boolean;
|
|
19
|
-
defaultFirstValue: boolean;
|
|
20
|
-
readonlyMode: string;
|
|
21
|
-
hint: string;
|
|
22
|
-
placeholder: string;
|
|
23
|
-
multiple: boolean;
|
|
24
|
-
display: string;
|
|
25
|
-
value: any;
|
|
26
|
-
options: any;
|
|
27
|
-
masterOptions: any;
|
|
28
|
-
masterField: string;
|
|
29
|
-
optionValue: string;
|
|
30
|
-
optionDisplay: string;
|
|
31
|
-
optionDisplayExtra: string;
|
|
32
|
-
nullable: boolean;
|
|
33
|
-
infoMessage: string;
|
|
34
|
-
copyContent: boolean;
|
|
35
|
-
loadAction: Action;
|
|
36
|
-
loadIDField: string;
|
|
37
|
-
field: Field;
|
|
38
|
-
data: any;
|
|
39
|
-
valueChange: EventEmitter<any>;
|
|
40
|
-
hoverChange: EventEmitter<boolean>;
|
|
41
|
-
setDefaultValue(): void;
|
|
42
|
-
changed(): void;
|
|
43
|
-
private updateSelectedOptionHint;
|
|
44
|
-
get computedHint(): string;
|
|
45
|
-
onMouseEnter(): void;
|
|
46
|
-
onMouseLeave(): void;
|
|
47
|
-
refresh(event: MouseEvent): void;
|
|
48
|
-
private transformLoadUrl;
|
|
49
|
-
getData(loadAction: Action): void;
|
|
50
|
-
ngOnDestroy(): void;
|
|
51
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectCommonComponent, never>;
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectCommonComponent, "spa-select-common", never, { "width": "width"; "readonly": "readonly"; "required": "required"; "defaultFirstValue": "defaultFirstValue"; "readonlyMode": "readonlyMode"; "hint": "hint"; "placeholder": "placeholder"; "multiple": "multiple"; "display": "display"; "value": "value"; "options": "options"; "masterOptions": "masterOptions"; "masterField": "masterField"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "optionDisplayExtra": "optionDisplayExtra"; "nullable": "nullable"; "infoMessage": "infoMessage"; "copyContent": "copyContent"; "loadAction": "loadAction"; "loadIDField": "loadIDField"; "field": "field"; "data": "data"; }, { "valueChange": "valueChange"; "hoverChange": "hoverChange"; }, never, ["[additionalButtons]"], false>;
|
|
53
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
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';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class SelectInternalComponent extends SelectCommonComponent implements OnInit {
|
|
10
|
-
protected messageService: MessageService;
|
|
11
|
-
protected dataService: DataServiceLib;
|
|
12
|
-
private dialogService;
|
|
13
|
-
private buttonService;
|
|
14
|
-
constructor(messageService: MessageService, dataService: DataServiceLib, dialogService: DialogService, buttonService: ButtonService);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
detailsConfig: DetailsDialogConfig;
|
|
17
|
-
onHoverChange(isHovered: boolean): void;
|
|
18
|
-
canCreate(): boolean;
|
|
19
|
-
canView(): boolean;
|
|
20
|
-
onPeekClick(event: MouseEvent, mode: 'create' | 'view'): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectInternalComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectInternalComponent, "spa-select-internal", never, { "detailsConfig": "detailsConfig"; }, {}, never, never, false>;
|
|
23
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { SelectCommonComponent } from '../select-common/select-common.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SelectLiteComponent extends SelectCommonComponent implements OnInit {
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectLiteComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectLiteComponent, "spa-select-lite", never, {}, {}, never, never, false>;
|
|
8
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { StatusConfig, StatusItem } from '../../classes/Classes';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class StatusesComponent {
|
|
4
|
-
config: StatusConfig;
|
|
5
|
-
data: any;
|
|
6
|
-
isComponentVisible(): boolean;
|
|
7
|
-
isItemVisible(item: StatusItem): boolean;
|
|
8
|
-
getIcon(item: StatusItem): string;
|
|
9
|
-
getIconColor(item: StatusItem): string;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StatusesComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StatusesComponent, "spa-statuses", never, { "config": "config"; "data": "data"; }, {}, never, never, false>;
|
|
12
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { MessageService } from '../../services/message.service';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SuffixComponent implements OnInit {
|
|
5
|
-
private messageService;
|
|
6
|
-
constructor(messageService: MessageService);
|
|
7
|
-
ngOnInit(): void;
|
|
8
|
-
label: string;
|
|
9
|
-
infoMessage: string;
|
|
10
|
-
copyContent: boolean;
|
|
11
|
-
isHovered: boolean;
|
|
12
|
-
clearContent: boolean;
|
|
13
|
-
value: any;
|
|
14
|
-
infoClick: EventEmitter<void>;
|
|
15
|
-
copyClick: EventEmitter<string>;
|
|
16
|
-
clearClick: EventEmitter<void>;
|
|
17
|
-
valueChange: EventEmitter<any>;
|
|
18
|
-
onInfoClick(event: MouseEvent): void;
|
|
19
|
-
onCopyClick(event: MouseEvent): void;
|
|
20
|
-
onClearClick(event: MouseEvent): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SuffixComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuffixComponent, "spa-suffix", never, { "label": "label"; "infoMessage": "infoMessage"; "copyContent": "copyContent"; "isHovered": "isHovered"; "clearContent": "clearContent"; "value": "value"; }, { "infoClick": "infoClick"; "copyClick": "copyClick"; "clearClick": "clearClick"; "valueChange": "valueChange"; }, never, never, false>;
|
|
23
|
-
}
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
import { OnInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
-
import { FormConfig, Field, TableConfig, Button, DetailsDialogConfig, Action, StepConfig, StatusConfig } from '../../classes/Classes';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
6
|
-
import { LoaderService } from '../../services/loader.service';
|
|
7
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
8
|
-
import { Subject } from 'rxjs';
|
|
9
|
-
import { ButtonService } from '../../services/button.service';
|
|
10
|
-
import { DialogService } from '../../services/dialog.service';
|
|
11
|
-
import { AuthService } from '../../services/auth.service';
|
|
12
|
-
import { TableConfigService } from '../../services/table-config.service';
|
|
13
|
-
import { MatTabChangeEvent } from '@angular/material/tabs';
|
|
14
|
-
import * as i0 from "@angular/core";
|
|
15
|
-
export declare class DetailsDialog implements OnInit, OnDestroy {
|
|
16
|
-
private breakpointObserver;
|
|
17
|
-
private loaderService;
|
|
18
|
-
dataService: DataServiceLib;
|
|
19
|
-
private messageService;
|
|
20
|
-
private dialogRef;
|
|
21
|
-
detailsConfig: DetailsDialogConfig;
|
|
22
|
-
private buttonService;
|
|
23
|
-
private dialogService;
|
|
24
|
-
private authService;
|
|
25
|
-
tableConfigService: TableConfigService;
|
|
26
|
-
constructor(breakpointObserver: BreakpointObserver, loaderService: LoaderService, dataService: DataServiceLib, messageService: MessageService, dialogRef: MatDialogRef<DetailsDialog>, detailsConfig: DetailsDialogConfig, buttonService: ButtonService, dialogService: DialogService, authService: AuthService, tableConfigService: TableConfigService);
|
|
27
|
-
ngOnInit(): void;
|
|
28
|
-
ngOnDestroy(): void;
|
|
29
|
-
private refreshSubscription;
|
|
30
|
-
autoRefreshEnabled: boolean;
|
|
31
|
-
titleAction: string;
|
|
32
|
-
loadByAction: boolean;
|
|
33
|
-
extraButtons: Button[];
|
|
34
|
-
buttons: Button[];
|
|
35
|
-
createButton: Button;
|
|
36
|
-
editButton: Button;
|
|
37
|
-
deleteButton: Button;
|
|
38
|
-
fileField: Field;
|
|
39
|
-
files: any[];
|
|
40
|
-
tableReload: Subject<boolean>;
|
|
41
|
-
tableConfig: TableConfig;
|
|
42
|
-
tableConfigs: TableConfig[];
|
|
43
|
-
details: any;
|
|
44
|
-
formConfig: FormConfig;
|
|
45
|
-
stepConfig: StepConfig;
|
|
46
|
-
statusConfig: StatusConfig;
|
|
47
|
-
smallScreen: boolean;
|
|
48
|
-
isLoadComplete: boolean;
|
|
49
|
-
isProcessing: boolean;
|
|
50
|
-
inputChange: EventEmitter<any>;
|
|
51
|
-
selectedTabIndex: number;
|
|
52
|
-
onTabChange(event: MatTabChangeEvent): void;
|
|
53
|
-
private initAutoRefresh;
|
|
54
|
-
private startAutoRefresh;
|
|
55
|
-
private stopAutoRefresh;
|
|
56
|
-
toggleAutoRefresh(): void;
|
|
57
|
-
loadData(action: Action, causeTablesReload: any): void;
|
|
58
|
-
inputChanged(event: any): void;
|
|
59
|
-
setMode(newMode: any): void;
|
|
60
|
-
setTitleAction(): void;
|
|
61
|
-
getButton(name: string): Button;
|
|
62
|
-
testDisabled(row: any, buttonName: string): boolean;
|
|
63
|
-
testVisible(row: any, buttonName: string): boolean;
|
|
64
|
-
testVisibleTab(tblConfig: TableConfig): boolean;
|
|
65
|
-
getButtonColor(button: Button, row: any): string;
|
|
66
|
-
getVisibleFields(): Field[];
|
|
67
|
-
create(): void;
|
|
68
|
-
edit(): void;
|
|
69
|
-
delete(): void;
|
|
70
|
-
custom(button: Button): void;
|
|
71
|
-
private openNestedDetailsDialog;
|
|
72
|
-
private refreshData;
|
|
73
|
-
handleButtonAction(buttonName: string): void;
|
|
74
|
-
processButtonAction(button: Button): void;
|
|
75
|
-
private validateForm;
|
|
76
|
-
private prepareActionData;
|
|
77
|
-
private executeAction;
|
|
78
|
-
private performApiCall;
|
|
79
|
-
getClosePosition(): 'top' | 'bottom';
|
|
80
|
-
getCloseText(): string;
|
|
81
|
-
shouldShowTopClose(): boolean;
|
|
82
|
-
shouldShowBottomClose(): boolean;
|
|
83
|
-
close(): void;
|
|
84
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DetailsDialog, never>;
|
|
85
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DetailsDialog, "spa-detailsDialog", never, {}, { "inputChange": "inputChange"; }, never, never, false>;
|
|
86
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { Button, TableConfig } from '../../classes/Classes';
|
|
3
|
-
import { ButtonService } from '../../services/button.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TableActionComponent {
|
|
6
|
-
private buttonService;
|
|
7
|
-
constructor(buttonService: ButtonService);
|
|
8
|
-
displayedButtons: Button[];
|
|
9
|
-
config: TableConfig;
|
|
10
|
-
row: any;
|
|
11
|
-
smallScreen: boolean;
|
|
12
|
-
actionClick: EventEmitter<{
|
|
13
|
-
name: string;
|
|
14
|
-
row: any;
|
|
15
|
-
}>;
|
|
16
|
-
testVisible(row: any, buttonName: string): boolean;
|
|
17
|
-
testDisabled(row: any, buttonName: string): boolean;
|
|
18
|
-
getButtonColor(button: Button, row: any): string;
|
|
19
|
-
getIcon(buttonName: string): string;
|
|
20
|
-
onActionClick(buttonName: string, row: any): void;
|
|
21
|
-
get visibleButtons(): Button[];
|
|
22
|
-
get overflowButtons(): Button[];
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TableActionComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableActionComponent, "app-table-action", never, { "displayedButtons": "displayedButtons"; "config": "config"; "row": "row"; "smallScreen": "smallScreen"; }, { "actionClick": "actionClick"; }, never, never, false>;
|
|
25
|
-
}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { TableConfig, Button, TileConfig, DetailsDialogConfig } from '../../classes/Classes';
|
|
3
|
-
import { Subject } from 'rxjs';
|
|
4
|
-
import { ButtonService } from '../../services/button.service';
|
|
5
|
-
import { DialogService } from '../../services/dialog.service';
|
|
6
|
-
import { MessageService } from '../../services/message.service';
|
|
7
|
-
import { CsvService } from '../../services/csv.service';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class TableHeaderComponent {
|
|
10
|
-
private buttonService;
|
|
11
|
-
private dialogService;
|
|
12
|
-
private messageService;
|
|
13
|
-
private csvService;
|
|
14
|
-
constructor(buttonService: ButtonService, dialogService: DialogService, messageService: MessageService, csvService: CsvService);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
createButton: Button;
|
|
17
|
-
lastSearch: any;
|
|
18
|
-
config: TableConfig;
|
|
19
|
-
hideTitle: boolean;
|
|
20
|
-
tableDataSource: any;
|
|
21
|
-
tileConfig: TileConfig;
|
|
22
|
-
smallScreen: boolean;
|
|
23
|
-
tileReload: Subject<boolean>;
|
|
24
|
-
showFilterButton: boolean;
|
|
25
|
-
data: any;
|
|
26
|
-
tileData: any;
|
|
27
|
-
createClick: EventEmitter<void>;
|
|
28
|
-
customClick: EventEmitter<any>;
|
|
29
|
-
refreshClick: EventEmitter<void>;
|
|
30
|
-
tileClick: EventEmitter<string>;
|
|
31
|
-
tileUnClick: EventEmitter<string>;
|
|
32
|
-
uploadDetailsDialog: DetailsDialogConfig;
|
|
33
|
-
onButtonClick(button: Button): void;
|
|
34
|
-
onDownloadClick(): void;
|
|
35
|
-
onUploadClick(): void;
|
|
36
|
-
onRefreshClick(): void;
|
|
37
|
-
onTileClick(tile: any): void;
|
|
38
|
-
onTileUnClick(tile: any): void;
|
|
39
|
-
getHeaderButtons(): Button[];
|
|
40
|
-
testVisibleHeaderButton(btn: any): boolean;
|
|
41
|
-
testVisible(button: Button): boolean;
|
|
42
|
-
testDisabled(button: Button): boolean;
|
|
43
|
-
getButtonColor(button: Button, row: any): string;
|
|
44
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TableHeaderComponent, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableHeaderComponent, "app-table-header", never, { "lastSearch": "lastSearch"; "config": "config"; "hideTitle": "hideTitle"; "tableDataSource": "tableDataSource"; "tileConfig": "tileConfig"; "smallScreen": "smallScreen"; "tileReload": "tileReload"; "showFilterButton": "showFilterButton"; "data": "data"; "tileData": "tileData"; }, { "createClick": "createClick"; "customClick": "customClick"; "refreshClick": "refreshClick"; "tileClick": "tileClick"; "tileUnClick": "tileUnClick"; }, never, never, false>;
|
|
46
|
-
}
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
import { OnInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
-
import { FormConfig, Field, TableConfig, Button, DetailsDialogConfig, Action, StepConfig, StatusConfig } from '../../classes/Classes';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
6
|
-
import { LoaderService } from '../../services/loader.service';
|
|
7
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
8
|
-
import { DialogService } from '../../services/dialog.service';
|
|
9
|
-
import { ButtonService } from '../../services/button.service';
|
|
10
|
-
import { Subject } from 'rxjs';
|
|
11
|
-
import { AuthService } from '../../services/auth.service';
|
|
12
|
-
import { TableConfigService } from '../../services/table-config.service';
|
|
13
|
-
import { MatTabChangeEvent } from '@angular/material/tabs';
|
|
14
|
-
import * as i0 from "@angular/core";
|
|
15
|
-
export declare class DetailsDialogInternal implements OnInit, OnDestroy {
|
|
16
|
-
private breakpointObserver;
|
|
17
|
-
private loaderService;
|
|
18
|
-
dataService: DataServiceLib;
|
|
19
|
-
private messageService;
|
|
20
|
-
private dialogRef;
|
|
21
|
-
detailsConfig: DetailsDialogConfig;
|
|
22
|
-
private buttonService;
|
|
23
|
-
private dialogService;
|
|
24
|
-
private authService;
|
|
25
|
-
tableConfigService: TableConfigService;
|
|
26
|
-
constructor(breakpointObserver: BreakpointObserver, loaderService: LoaderService, dataService: DataServiceLib, messageService: MessageService, dialogRef: MatDialogRef<DetailsDialogInternal>, detailsConfig: DetailsDialogConfig, buttonService: ButtonService, dialogService: DialogService, authService: AuthService, tableConfigService: TableConfigService);
|
|
27
|
-
ngOnInit(): void;
|
|
28
|
-
ngOnDestroy(): void;
|
|
29
|
-
private refreshSubscription;
|
|
30
|
-
autoRefreshEnabled: boolean;
|
|
31
|
-
titleAction: string;
|
|
32
|
-
loadByAction: boolean;
|
|
33
|
-
extraButtons: Button[];
|
|
34
|
-
buttons: Button[];
|
|
35
|
-
createButton: Button;
|
|
36
|
-
editButton: Button;
|
|
37
|
-
deleteButton: Button;
|
|
38
|
-
fileField: Field;
|
|
39
|
-
files: any[];
|
|
40
|
-
tableReload: Subject<boolean>;
|
|
41
|
-
tableConfig: TableConfig;
|
|
42
|
-
tableConfigs: TableConfig[];
|
|
43
|
-
details: any;
|
|
44
|
-
formConfig: FormConfig;
|
|
45
|
-
stepConfig: StepConfig;
|
|
46
|
-
statusConfig: StatusConfig;
|
|
47
|
-
smallScreen: boolean;
|
|
48
|
-
isLoadComplete: boolean;
|
|
49
|
-
isProcessing: boolean;
|
|
50
|
-
inputChange: EventEmitter<any>;
|
|
51
|
-
selectedTabIndex: number;
|
|
52
|
-
onTabChange(event: MatTabChangeEvent): void;
|
|
53
|
-
private initAutoRefresh;
|
|
54
|
-
private startAutoRefresh;
|
|
55
|
-
private stopAutoRefresh;
|
|
56
|
-
toggleAutoRefresh(): void;
|
|
57
|
-
loadData(action: Action, causeTablesReload: any): void;
|
|
58
|
-
inputChanged(event: any): void;
|
|
59
|
-
setMode(newMode: any): void;
|
|
60
|
-
setTitleAction(): void;
|
|
61
|
-
getButton(name: string): Button;
|
|
62
|
-
testDisabled(row: any, buttonName: string): boolean;
|
|
63
|
-
testVisible(row: any, buttonName: string): boolean;
|
|
64
|
-
testVisibleTab(tblConfig: TableConfig): boolean;
|
|
65
|
-
getButtonColor(button: Button, row: any): string;
|
|
66
|
-
getVisibleFields(): Field[];
|
|
67
|
-
create(): void;
|
|
68
|
-
edit(): void;
|
|
69
|
-
delete(): void;
|
|
70
|
-
custom(button: Button): void;
|
|
71
|
-
private openNestedDetailsDialog;
|
|
72
|
-
private refreshData;
|
|
73
|
-
handleButtonAction(buttonName: string): void;
|
|
74
|
-
processButtonAction(button: Button): void;
|
|
75
|
-
private validateForm;
|
|
76
|
-
private prepareActionData;
|
|
77
|
-
private executeAction;
|
|
78
|
-
private performApiCall;
|
|
79
|
-
getClosePosition(): 'top' | 'bottom';
|
|
80
|
-
getCloseText(): string;
|
|
81
|
-
shouldShowTopClose(): boolean;
|
|
82
|
-
shouldShowBottomClose(): boolean;
|
|
83
|
-
close(): void;
|
|
84
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DetailsDialogInternal, never>;
|
|
85
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DetailsDialogInternal, "spa-detailsDialog-internal", never, {}, { "inputChange": "inputChange"; }, never, never, false>;
|
|
86
|
-
}
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { Action, Button, Color, Column, Icon, TableConfig } from '../../classes/Classes';
|
|
3
|
-
import { MatPaginator } from '@angular/material/paginator';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
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';
|
|
14
|
-
import * as i0 from "@angular/core";
|
|
15
|
-
export declare class TableInternalComponent implements OnInit {
|
|
16
|
-
private dataService;
|
|
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);
|
|
26
|
-
ngOnInit(): void;
|
|
27
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
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;
|
|
43
|
-
config: TableConfig;
|
|
44
|
-
reload: Subject<boolean>;
|
|
45
|
-
activeTab: boolean;
|
|
46
|
-
inTab: boolean;
|
|
47
|
-
dataLoad: EventEmitter<any>;
|
|
48
|
-
actionSuccess: EventEmitter<any>;
|
|
49
|
-
refreshClick: EventEmitter<any>;
|
|
50
|
-
searchClick: EventEmitter<any>;
|
|
51
|
-
createClick: EventEmitter<any>;
|
|
52
|
-
actionClick: EventEmitter<any>;
|
|
53
|
-
inputChange: EventEmitter<any>;
|
|
54
|
-
actionResponse: EventEmitter<any>;
|
|
55
|
-
private initializeComponent;
|
|
56
|
-
private updateTableConfiguration;
|
|
57
|
-
private setupDataLoading;
|
|
58
|
-
loadData(action: Action, data: any): void;
|
|
59
|
-
inputChanged(event: any): void;
|
|
60
|
-
formDefaults(): void;
|
|
61
|
-
setButtons(): void;
|
|
62
|
-
getButton(name: string): Button;
|
|
63
|
-
getIcon(buttonName: string): string;
|
|
64
|
-
getButtonColor(button: Button, row: any): string;
|
|
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<TableInternalComponent, never>;
|
|
90
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableInternalComponent, "spa-table-internal", 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>;
|
|
91
|
-
}
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
import { OnInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
-
import { FormConfig, Field, TableConfig, Button, DetailsDialogConfig, Action, StepConfig, StatusConfig } from '../../classes/Classes';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
6
|
-
import { LoaderService } from '../../services/loader.service';
|
|
7
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
8
|
-
import { DialogService } from '../../services/dialog.service';
|
|
9
|
-
import { ButtonService } from '../../services/button.service';
|
|
10
|
-
import { Subject } from 'rxjs';
|
|
11
|
-
import { AuthService } from '../../services/auth.service';
|
|
12
|
-
import { TableConfigService } from '../../services/table-config.service';
|
|
13
|
-
import { MatTabChangeEvent } from '@angular/material/tabs';
|
|
14
|
-
import * as i0 from "@angular/core";
|
|
15
|
-
export declare class DetailsDialogLite implements OnInit, OnDestroy {
|
|
16
|
-
private breakpointObserver;
|
|
17
|
-
private loaderService;
|
|
18
|
-
dataService: DataServiceLib;
|
|
19
|
-
private messageService;
|
|
20
|
-
private dialogRef;
|
|
21
|
-
detailsConfig: DetailsDialogConfig;
|
|
22
|
-
private buttonService;
|
|
23
|
-
private dialogService;
|
|
24
|
-
private authService;
|
|
25
|
-
tableConfigService: TableConfigService;
|
|
26
|
-
constructor(breakpointObserver: BreakpointObserver, loaderService: LoaderService, dataService: DataServiceLib, messageService: MessageService, dialogRef: MatDialogRef<DetailsDialogLite>, detailsConfig: DetailsDialogConfig, buttonService: ButtonService, dialogService: DialogService, authService: AuthService, tableConfigService: TableConfigService);
|
|
27
|
-
ngOnInit(): void;
|
|
28
|
-
ngOnDestroy(): void;
|
|
29
|
-
private refreshSubscription;
|
|
30
|
-
autoRefreshEnabled: boolean;
|
|
31
|
-
titleAction: string;
|
|
32
|
-
loadByAction: boolean;
|
|
33
|
-
extraButtons: Button[];
|
|
34
|
-
buttons: Button[];
|
|
35
|
-
createButton: Button;
|
|
36
|
-
editButton: Button;
|
|
37
|
-
deleteButton: Button;
|
|
38
|
-
fileField: Field;
|
|
39
|
-
files: any[];
|
|
40
|
-
tableReload: Subject<boolean>;
|
|
41
|
-
tableConfig: TableConfig;
|
|
42
|
-
tableConfigs: TableConfig[];
|
|
43
|
-
details: any;
|
|
44
|
-
formConfig: FormConfig;
|
|
45
|
-
stepConfig: StepConfig;
|
|
46
|
-
statusConfig: StatusConfig;
|
|
47
|
-
smallScreen: boolean;
|
|
48
|
-
isLoadComplete: boolean;
|
|
49
|
-
isProcessing: boolean;
|
|
50
|
-
inputChange: EventEmitter<any>;
|
|
51
|
-
selectedTabIndex: number;
|
|
52
|
-
onTabChange(event: MatTabChangeEvent): void;
|
|
53
|
-
private initAutoRefresh;
|
|
54
|
-
private startAutoRefresh;
|
|
55
|
-
private stopAutoRefresh;
|
|
56
|
-
toggleAutoRefresh(): void;
|
|
57
|
-
loadData(action: Action, causeTablesReload: any): void;
|
|
58
|
-
inputChanged(event: any): void;
|
|
59
|
-
setMode(newMode: any): void;
|
|
60
|
-
setTitleAction(): void;
|
|
61
|
-
getButton(name: string): Button;
|
|
62
|
-
testDisabled(row: any, buttonName: string): boolean;
|
|
63
|
-
testVisible(row: any, buttonName: string): boolean;
|
|
64
|
-
testVisibleTab(tblConfig: TableConfig): boolean;
|
|
65
|
-
getButtonColor(button: Button, row: any): string;
|
|
66
|
-
getVisibleFields(): Field[];
|
|
67
|
-
create(): void;
|
|
68
|
-
edit(): void;
|
|
69
|
-
delete(): void;
|
|
70
|
-
custom(button: Button): void;
|
|
71
|
-
private openNestedDetailsDialog;
|
|
72
|
-
private refreshData;
|
|
73
|
-
handleButtonAction(buttonName: string): void;
|
|
74
|
-
processButtonAction(button: Button): void;
|
|
75
|
-
private validateForm;
|
|
76
|
-
private prepareActionData;
|
|
77
|
-
private executeAction;
|
|
78
|
-
private performApiCall;
|
|
79
|
-
getClosePosition(): 'top' | 'bottom';
|
|
80
|
-
getCloseText(): string;
|
|
81
|
-
shouldShowTopClose(): boolean;
|
|
82
|
-
shouldShowBottomClose(): boolean;
|
|
83
|
-
close(): void;
|
|
84
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DetailsDialogLite, never>;
|
|
85
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DetailsDialogLite, "spa-detailsDialog-lite", never, {}, { "inputChange": "inputChange"; }, never, never, false>;
|
|
86
|
-
}
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { Action, Button, Color, Column, Icon, TableConfig } from '../../classes/Classes';
|
|
3
|
-
import { MatPaginator } from '@angular/material/paginator';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
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';
|
|
14
|
-
import * as i0 from "@angular/core";
|
|
15
|
-
export declare class TableLiteComponent implements OnInit {
|
|
16
|
-
private dataService;
|
|
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);
|
|
26
|
-
ngOnInit(): void;
|
|
27
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
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;
|
|
43
|
-
config: TableConfig;
|
|
44
|
-
reload: Subject<boolean>;
|
|
45
|
-
activeTab: boolean;
|
|
46
|
-
inTab: boolean;
|
|
47
|
-
dataLoad: EventEmitter<any>;
|
|
48
|
-
actionSuccess: EventEmitter<any>;
|
|
49
|
-
refreshClick: EventEmitter<any>;
|
|
50
|
-
searchClick: EventEmitter<any>;
|
|
51
|
-
createClick: EventEmitter<any>;
|
|
52
|
-
actionClick: EventEmitter<any>;
|
|
53
|
-
inputChange: EventEmitter<any>;
|
|
54
|
-
actionResponse: EventEmitter<any>;
|
|
55
|
-
private initializeComponent;
|
|
56
|
-
private updateTableConfiguration;
|
|
57
|
-
private setupDataLoading;
|
|
58
|
-
loadData(action: Action, data: any): void;
|
|
59
|
-
inputChanged(event: any): void;
|
|
60
|
-
formDefaults(): void;
|
|
61
|
-
setButtons(): void;
|
|
62
|
-
getButton(name: string): Button;
|
|
63
|
-
getIcon(buttonName: string): string;
|
|
64
|
-
getButtonColor(button: Button, row: any): string;
|
|
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<TableLiteComponent, never>;
|
|
90
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableLiteComponent, "spa-table-lite", 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>;
|
|
91
|
-
}
|