tin-spa 2.13.14 → 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 -374
- 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 -569
- 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 -106
- 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 -293
- 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 -259
- 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 -141
- 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 -861
- 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 -11711
- package/fesm2015/tin-spa.mjs.map +0 -1
- package/fesm2020/tin-spa.mjs +0 -11718
- 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,6 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
-
import * as
|
|
3
|
+
import * as ɵngcc0 from '@angular/core';
|
|
4
4
|
export declare class messageDialog implements OnInit {
|
|
5
5
|
private dialogRef;
|
|
6
6
|
data: any;
|
|
@@ -10,6 +10,8 @@ export declare class messageDialog implements OnInit {
|
|
|
10
10
|
_messageSubject: any;
|
|
11
11
|
_messageDetails: any;
|
|
12
12
|
response(resp: string): void;
|
|
13
|
-
static ɵfac:
|
|
14
|
-
static ɵcmp:
|
|
13
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<messageDialog, never>;
|
|
14
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<messageDialog, "lib-app-message", never, {}, {}, never, never>;
|
|
15
15
|
}
|
|
16
|
+
|
|
17
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVzc2FnZURpYWxvZy5jb21wb25lbnQuZC50cyIsInNvdXJjZXMiOlsibWVzc2FnZURpYWxvZy5jb21wb25lbnQuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgTWF0RGlhbG9nUmVmIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgbWVzc2FnZURpYWxvZyBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBwcml2YXRlIGRpYWxvZ1JlZjtcclxuICAgIGRhdGE6IGFueTtcclxuICAgIGNvbnN0cnVjdG9yKGRpYWxvZ1JlZjogTWF0RGlhbG9nUmVmPG1lc3NhZ2VEaWFsb2c+LCBkYXRhOiBhbnkpO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIG1lc3NhZ2VUeXBlOiBhbnk7XHJcbiAgICBfbWVzc2FnZVN1YmplY3Q6IGFueTtcclxuICAgIF9tZXNzYWdlRGV0YWlsczogYW55O1xyXG4gICAgcmVzcG9uc2UocmVzcDogc3RyaW5nKTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
export declare class messageDialog implements OnInit {
|
|
4
|
+
private dialogRef;
|
|
5
|
+
data: any;
|
|
6
|
+
constructor(dialogRef: MatDialogRef<messageDialog>, data: any);
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
messageType: any;
|
|
9
|
+
_messageSubject: any;
|
|
10
|
+
_messageDetails: any;
|
|
11
|
+
response(resp: string): void;
|
|
12
|
+
}
|
|
@@ -1,40 +1,19 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
2
|
+
import * as ɵngcc0 from '@angular/core';
|
|
4
3
|
export declare class MoneyComponent implements OnInit {
|
|
5
4
|
constructor();
|
|
6
5
|
ngOnInit(): void;
|
|
7
6
|
ngOnChanges(): void;
|
|
8
|
-
ngAfterViewInit(): void;
|
|
9
|
-
initControl(control: FormControl): void;
|
|
10
7
|
readonly: boolean;
|
|
11
|
-
hint: string;
|
|
12
8
|
display: string;
|
|
13
|
-
placeholder: string;
|
|
14
9
|
value: string;
|
|
10
|
+
valueChange: EventEmitter<any>;
|
|
15
11
|
width: string;
|
|
12
|
+
hint: string;
|
|
16
13
|
currency: string;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
required: boolean;
|
|
21
|
-
min: number;
|
|
22
|
-
max: number;
|
|
23
|
-
infoMessage: string;
|
|
24
|
-
infoClick: EventEmitter<void>;
|
|
25
|
-
copyContent: boolean;
|
|
26
|
-
clearContent: boolean;
|
|
27
|
-
suffix: string;
|
|
28
|
-
isHovered: boolean;
|
|
29
|
-
onMouseEnter(): void;
|
|
30
|
-
onMouseLeave(): void;
|
|
31
|
-
onInfoClick(event: MouseEvent): void;
|
|
32
|
-
clear(): void;
|
|
33
|
-
changed(x: any): void;
|
|
34
|
-
leaved(): void;
|
|
35
|
-
enterPressed(): void;
|
|
36
|
-
control: FormControl<string>;
|
|
37
|
-
validate(control: FormControl): string;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MoneyComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MoneyComponent, "spa-money", never, { "readonly": "readonly"; "hint": "hint"; "display": "display"; "placeholder": "placeholder"; "value": "value"; "width": "width"; "currency": "currency"; "required": "required"; "min": "min"; "max": "max"; "infoMessage": "infoMessage"; "copyContent": "copyContent"; "clearContent": "clearContent"; "suffix": "suffix"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; "infoClick": "infoClick"; }, never, never, false>;
|
|
14
|
+
changed(): void;
|
|
15
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<MoneyComponent, never>;
|
|
16
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<MoneyComponent, "spa-money", never, { "readonly": "readonly"; "display": "display"; "value": "value"; "width": "width"; "hint": "hint"; "currency": "currency"; }, { "valueChange": "valueChange"; }, never, never>;
|
|
40
17
|
}
|
|
18
|
+
|
|
19
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9uZXkuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbIm1vbmV5LmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFdmVudEVtaXR0ZXIsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBNb25leUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBjb25zdHJ1Y3RvcigpO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIG5nT25DaGFuZ2VzKCk6IHZvaWQ7XHJcbiAgICByZWFkb25seTogYm9vbGVhbjtcclxuICAgIGRpc3BsYXk6IHN0cmluZztcclxuICAgIHZhbHVlOiBzdHJpbmc7XHJcbiAgICB2YWx1ZUNoYW5nZTogRXZlbnRFbWl0dGVyPGFueT47XHJcbiAgICB3aWR0aDogc3RyaW5nO1xyXG4gICAgaGludDogc3RyaW5nO1xyXG4gICAgY3VycmVuY3k6IHN0cmluZztcclxuICAgIGNoYW5nZWQoKTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
export declare class MoneyComponent implements OnInit {
|
|
3
|
+
constructor();
|
|
4
|
+
ngOnInit(): void;
|
|
5
|
+
ngOnChanges(): void;
|
|
6
|
+
readonly: boolean;
|
|
7
|
+
display: string;
|
|
8
|
+
value: string;
|
|
9
|
+
valueChange: EventEmitter<any>;
|
|
10
|
+
width: string;
|
|
11
|
+
hint: string;
|
|
12
|
+
currency: string;
|
|
13
|
+
changed(): void;
|
|
14
|
+
}
|
|
@@ -1,38 +1,22 @@
|
|
|
1
|
-
import { AppConfig
|
|
1
|
+
import { AppConfig } from './../../classes/Classes';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { AuthService } from '../../services/auth.service';
|
|
4
|
-
import
|
|
5
|
-
import { SocialAuthService } from '@abacritt/angularx-social-login';
|
|
6
|
-
import { DataServiceLib } from '../../services/datalib.service';
|
|
7
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
8
|
-
import { NotificationsService } from '../../services/notifications.service';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
4
|
+
import * as ɵngcc0 from '@angular/core';
|
|
10
5
|
export declare class NavMenuComponent {
|
|
11
6
|
router: Router;
|
|
12
7
|
authService: AuthService;
|
|
13
|
-
|
|
14
|
-
private notificationsService;
|
|
15
|
-
private socialService;
|
|
16
|
-
private breakpointObserver;
|
|
17
|
-
dataService: DataServiceLib;
|
|
18
|
-
constructor(router: Router, authService: AuthService, storageService: StorageService, notificationsService: NotificationsService, socialService: SocialAuthService, breakpointObserver: BreakpointObserver, dataService: DataServiceLib);
|
|
8
|
+
constructor(router: Router, authService: AuthService);
|
|
19
9
|
ngOnInit(): void;
|
|
20
|
-
notificationCount$: import("rxjs").Observable<number>;
|
|
21
|
-
smallScreen: any;
|
|
22
10
|
myRole: any;
|
|
23
11
|
loggedUserFullName: string;
|
|
24
|
-
tenantName: string;
|
|
25
12
|
loggedin: boolean;
|
|
26
13
|
isExpanded: boolean;
|
|
27
|
-
nowDate: Date;
|
|
28
14
|
appConfig: AppConfig;
|
|
29
|
-
footer: string;
|
|
30
15
|
collapse(): void;
|
|
31
16
|
toggle(): void;
|
|
32
|
-
closeSide(): void;
|
|
33
|
-
logoff(): void;
|
|
34
17
|
redirectTo(link: string): void;
|
|
35
|
-
|
|
36
|
-
static
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavMenuComponent, "spa-nav-menu", never, { "appConfig": "appConfig"; "footer": "footer"; }, {}, never, never, false>;
|
|
18
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<NavMenuComponent, never>;
|
|
19
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<NavMenuComponent, "spa-nav-menu", never, { "appConfig": "appConfig"; }, {}, never, never>;
|
|
38
20
|
}
|
|
21
|
+
|
|
22
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF2LW1lbnUuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbIm5hdi1tZW51LmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBcHBDb25maWcgfSBmcm9tICcuLy4uLy4uL2NsYXNzZXMvQ2xhc3Nlcyc7XHJcbmltcG9ydCB7IFJvdXRlciB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XHJcbmltcG9ydCB7IEF1dGhTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvYXV0aC5zZXJ2aWNlJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgTmF2TWVudUNvbXBvbmVudCB7XHJcbiAgICByb3V0ZXI6IFJvdXRlcjtcclxuICAgIGF1dGhTZXJ2aWNlOiBBdXRoU2VydmljZTtcclxuICAgIGNvbnN0cnVjdG9yKHJvdXRlcjogUm91dGVyLCBhdXRoU2VydmljZTogQXV0aFNlcnZpY2UpO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIG15Um9sZTogYW55O1xyXG4gICAgbG9nZ2VkVXNlckZ1bGxOYW1lOiBzdHJpbmc7XHJcbiAgICBsb2dnZWRpbjogYm9vbGVhbjtcclxuICAgIGlzRXhwYW5kZWQ6IGJvb2xlYW47XHJcbiAgICBhcHBDb25maWc6IEFwcENvbmZpZztcclxuICAgIGNvbGxhcHNlKCk6IHZvaWQ7XHJcbiAgICB0b2dnbGUoKTogdm9pZDtcclxuICAgIHJlZGlyZWN0VG8obGluazogc3RyaW5nKTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { AppConfig } from './../../classes/Classes';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { AuthService } from '../../services/auth.service';
|
|
4
|
+
export declare class NavMenuComponent {
|
|
5
|
+
router: Router;
|
|
6
|
+
authService: AuthService;
|
|
7
|
+
constructor(router: Router, authService: AuthService);
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
myRole: any;
|
|
10
|
+
loggedUserFullName: string;
|
|
11
|
+
loggedin: boolean;
|
|
12
|
+
isExpanded: boolean;
|
|
13
|
+
appConfig: AppConfig;
|
|
14
|
+
collapse(): void;
|
|
15
|
+
toggle(): void;
|
|
16
|
+
redirectTo(link: string): void;
|
|
17
|
+
}
|
|
@@ -1,32 +1,22 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import
|
|
3
|
-
import { Action } from '../../classes/Classes';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
2
|
+
import * as ɵngcc0 from '@angular/core';
|
|
5
3
|
export declare class OptionComponent implements OnInit {
|
|
6
|
-
|
|
7
|
-
constructor(messageService: MessageService);
|
|
4
|
+
constructor();
|
|
8
5
|
ngOnInit(): void;
|
|
9
|
-
OGValue: any;
|
|
10
6
|
options: any;
|
|
11
7
|
optionValue: string;
|
|
12
8
|
optionDisplay: string;
|
|
13
9
|
readonly: boolean;
|
|
14
|
-
type: string;
|
|
15
10
|
value: string;
|
|
16
11
|
display: string;
|
|
17
12
|
show: boolean;
|
|
18
|
-
required: boolean;
|
|
19
|
-
infoMessage: string;
|
|
20
|
-
copyContent: boolean;
|
|
21
|
-
suffix: string;
|
|
22
|
-
loadAction: Action;
|
|
23
13
|
valueChange: EventEmitter<any>;
|
|
24
14
|
enterPress: EventEmitter<any>;
|
|
25
15
|
changed(): void;
|
|
26
|
-
dateChanged(x: any): void;
|
|
27
16
|
enterPressed(): void;
|
|
28
17
|
resetValue(): void;
|
|
29
|
-
|
|
30
|
-
static
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "spa-option", never, { "options": "options"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "readonly": "readonly"; "type": "type"; "value": "value"; "display": "display"; "show": "show"; "required": "required"; "infoMessage": "infoMessage"; "copyContent": "copyContent"; "suffix": "suffix"; "loadAction": "loadAction"; }, { "valueChange": "valueChange"; "enterPress": "enterPress"; }, never, never, false>;
|
|
18
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<OptionComponent, never>;
|
|
19
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<OptionComponent, "spa-option", never, { "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "readonly": "readonly"; "value": "value"; "display": "display"; "show": "show"; "options": "options"; }, { "valueChange": "valueChange"; "enterPress": "enterPress"; }, never, never>;
|
|
32
20
|
}
|
|
21
|
+
|
|
22
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3B0aW9uLmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJvcHRpb24uY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEV2ZW50RW1pdHRlciwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIE9wdGlvbkNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBjb25zdHJ1Y3RvcigpO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIG9wdGlvbnM6IGFueTtcclxuICAgIG9wdGlvblZhbHVlOiBzdHJpbmc7XHJcbiAgICBvcHRpb25EaXNwbGF5OiBzdHJpbmc7XHJcbiAgICByZWFkb25seTogYm9vbGVhbjtcclxuICAgIHZhbHVlOiBzdHJpbmc7XHJcbiAgICBkaXNwbGF5OiBzdHJpbmc7XHJcbiAgICBzaG93OiBib29sZWFuO1xyXG4gICAgdmFsdWVDaGFuZ2U6IEV2ZW50RW1pdHRlcjxhbnk+O1xyXG4gICAgZW50ZXJQcmVzczogRXZlbnRFbWl0dGVyPGFueT47XHJcbiAgICBjaGFuZ2VkKCk6IHZvaWQ7XHJcbiAgICBlbnRlclByZXNzZWQoKTogdm9pZDtcclxuICAgIHJlc2V0VmFsdWUoKTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
export declare class OptionComponent implements OnInit {
|
|
3
|
+
constructor();
|
|
4
|
+
ngOnInit(): void;
|
|
5
|
+
options: any;
|
|
6
|
+
optionValue: string;
|
|
7
|
+
optionDisplay: string;
|
|
8
|
+
readonly: boolean;
|
|
9
|
+
value: string;
|
|
10
|
+
display: string;
|
|
11
|
+
show: boolean;
|
|
12
|
+
valueChange: EventEmitter<any>;
|
|
13
|
+
enterPress: EventEmitter<any>;
|
|
14
|
+
changed(): void;
|
|
15
|
+
enterPressed(): void;
|
|
16
|
+
resetValue(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { AuthService } from './../../services/auth.service';
|
|
2
|
+
import { HttpService } from 'tin-core';
|
|
3
|
+
import { MessageService } from './../../services/message.service';
|
|
4
|
+
import { DataService } from './../../services/data.service';
|
|
5
|
+
import { OnInit } from '@angular/core';
|
|
6
|
+
import { AppConfig, Profile } from '../../classes/Classes';
|
|
7
|
+
import { Router } from '@angular/router';
|
|
8
|
+
import * as ɵngcc0 from '@angular/core';
|
|
9
|
+
export declare class ProfileComponent implements OnInit {
|
|
10
|
+
dataService: DataService;
|
|
11
|
+
private messageService;
|
|
12
|
+
private httpService;
|
|
13
|
+
private router;
|
|
14
|
+
private authService;
|
|
15
|
+
isProcessing: boolean;
|
|
16
|
+
constructor(dataService: DataService, messageService: MessageService, httpService: HttpService, router: Router, authService: AuthService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
myRole: any;
|
|
19
|
+
appConfig: AppConfig;
|
|
20
|
+
selfProfile: boolean;
|
|
21
|
+
profile: Profile;
|
|
22
|
+
roles: any;
|
|
23
|
+
approvalRoles: any;
|
|
24
|
+
employees: any;
|
|
25
|
+
loadProfile(userID: string): void;
|
|
26
|
+
loadRoles(): void;
|
|
27
|
+
changePassword(): void;
|
|
28
|
+
gotoUsers(): void;
|
|
29
|
+
update(): void;
|
|
30
|
+
updateProfile(): void;
|
|
31
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<ProfileComponent, never>;
|
|
32
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<ProfileComponent, "spa-profile", never, { "appConfig": "appConfig"; }, {}, never, never>;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZmlsZS5jb21wb25lbnQuZC50cyIsInNvdXJjZXMiOlsicHJvZmlsZS5jb21wb25lbnQuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBdXRoU2VydmljZSB9IGZyb20gJy4vLi4vLi4vc2VydmljZXMvYXV0aC5zZXJ2aWNlJztcclxuaW1wb3J0IHsgSHR0cFNlcnZpY2UgfSBmcm9tICd0aW4tY29yZSc7XHJcbmltcG9ydCB7IE1lc3NhZ2VTZXJ2aWNlIH0gZnJvbSAnLi8uLi8uLi9zZXJ2aWNlcy9tZXNzYWdlLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBEYXRhU2VydmljZSB9IGZyb20gJy4vLi4vLi4vc2VydmljZXMvZGF0YS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEFwcENvbmZpZywgUHJvZmlsZSB9IGZyb20gJy4uLy4uL2NsYXNzZXMvQ2xhc3Nlcyc7XHJcbmltcG9ydCB7IFJvdXRlciB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIFByb2ZpbGVDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgZGF0YVNlcnZpY2U6IERhdGFTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBtZXNzYWdlU2VydmljZTtcclxuICAgIHByaXZhdGUgaHR0cFNlcnZpY2U7XHJcbiAgICBwcml2YXRlIHJvdXRlcjtcclxuICAgIHByaXZhdGUgYXV0aFNlcnZpY2U7XHJcbiAgICBpc1Byb2Nlc3Npbmc6IGJvb2xlYW47XHJcbiAgICBjb25zdHJ1Y3RvcihkYXRhU2VydmljZTogRGF0YVNlcnZpY2UsIG1lc3NhZ2VTZXJ2aWNlOiBNZXNzYWdlU2VydmljZSwgaHR0cFNlcnZpY2U6IEh0dHBTZXJ2aWNlLCByb3V0ZXI6IFJvdXRlciwgYXV0aFNlcnZpY2U6IEF1dGhTZXJ2aWNlKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICBteVJvbGU6IGFueTtcclxuICAgIGFwcENvbmZpZzogQXBwQ29uZmlnO1xyXG4gICAgc2VsZlByb2ZpbGU6IGJvb2xlYW47XHJcbiAgICBwcm9maWxlOiBQcm9maWxlO1xyXG4gICAgcm9sZXM6IGFueTtcclxuICAgIGFwcHJvdmFsUm9sZXM6IGFueTtcclxuICAgIGVtcGxveWVlczogYW55O1xyXG4gICAgbG9hZFByb2ZpbGUodXNlcklEOiBzdHJpbmcpOiB2b2lkO1xyXG4gICAgbG9hZFJvbGVzKCk6IHZvaWQ7XHJcbiAgICBjaGFuZ2VQYXNzd29yZCgpOiB2b2lkO1xyXG4gICAgZ290b1VzZXJzKCk6IHZvaWQ7XHJcbiAgICB1cGRhdGUoKTogdm9pZDtcclxuICAgIHVwZGF0ZVByb2ZpbGUoKTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { AuthService } from './../../services/auth.service';
|
|
2
|
+
import { HttpService } from 'tin-core';
|
|
3
|
+
import { MessageService } from './../../services/message.service';
|
|
4
|
+
import { DataService } from './../../services/data.service';
|
|
5
|
+
import { OnInit } from '@angular/core';
|
|
6
|
+
import { AppConfig, Profile } from '../../classes/Classes';
|
|
7
|
+
import { Router } from '@angular/router';
|
|
8
|
+
export declare class ProfileComponent implements OnInit {
|
|
9
|
+
dataService: DataService;
|
|
10
|
+
private messageService;
|
|
11
|
+
private httpService;
|
|
12
|
+
private router;
|
|
13
|
+
private authService;
|
|
14
|
+
isProcessing: boolean;
|
|
15
|
+
constructor(dataService: DataService, messageService: MessageService, httpService: HttpService, router: Router, authService: AuthService);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
myRole: any;
|
|
18
|
+
appConfig: AppConfig;
|
|
19
|
+
selfProfile: boolean;
|
|
20
|
+
profile: Profile;
|
|
21
|
+
roles: any;
|
|
22
|
+
approvalRoles: any;
|
|
23
|
+
employees: any;
|
|
24
|
+
loadProfile(userID: string): void;
|
|
25
|
+
loadRoles(): void;
|
|
26
|
+
changePassword(): void;
|
|
27
|
+
gotoUsers(): void;
|
|
28
|
+
update(): void;
|
|
29
|
+
updateProfile(): void;
|
|
30
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as ɵngcc0 from '@angular/core';
|
|
3
|
+
export declare class ProfilesComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<ProfilesComponent, never>;
|
|
7
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<ProfilesComponent, "spa-profiles", never, {}, {}, never, never>;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZmlsZXMuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbInByb2ZpbGVzLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgUHJvZmlsZXNDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgY29uc3RydWN0b3IoKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DataService } from '../../services/data.service';
|
|
3
|
+
import { AuthService } from '../../services/auth.service';
|
|
4
|
+
import { MessageService } from '../../services/message.service';
|
|
5
|
+
import { Location } from '@angular/common';
|
|
6
|
+
import * as ɵngcc0 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: DataService, authService: AuthService, messageService: MessageService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
userID: string;
|
|
15
|
+
recover(): void;
|
|
16
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<RecoverAccountComponent, never>;
|
|
17
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<RecoverAccountComponent, "spa-recover-account", never, {}, {}, never, never>;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVjb3Zlci1hY2NvdW50LmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJyZWNvdmVyLWFjY291bnQuY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IERhdGFTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvZGF0YS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgQXV0aFNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9hdXRoLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBNZXNzYWdlU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL21lc3NhZ2Uuc2VydmljZSc7XHJcbmltcG9ydCB7IExvY2F0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgUmVjb3ZlckFjY291bnRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgcHJpdmF0ZSBsb2NhdGlvbjtcclxuICAgIHByaXZhdGUgZGF0YVNlcnZpY2U7XHJcbiAgICBhdXRoU2VydmljZTogQXV0aFNlcnZpY2U7XHJcbiAgICBwcml2YXRlIG1lc3NhZ2VTZXJ2aWNlO1xyXG4gICAgY29uc3RydWN0b3IobG9jYXRpb246IExvY2F0aW9uLCBkYXRhU2VydmljZTogRGF0YVNlcnZpY2UsIGF1dGhTZXJ2aWNlOiBBdXRoU2VydmljZSwgbWVzc2FnZVNlcnZpY2U6IE1lc3NhZ2VTZXJ2aWNlKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICB1c2VySUQ6IHN0cmluZztcclxuICAgIHJlY292ZXIoKTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DataService } from '../../services/data.service';
|
|
3
|
+
import { AuthService } from '../../services/auth.service';
|
|
4
|
+
import { MessageService } from '../../services/message.service';
|
|
5
|
+
import { Location } from '@angular/common';
|
|
6
|
+
export declare class RecoverAccountComponent implements OnInit {
|
|
7
|
+
private location;
|
|
8
|
+
private dataService;
|
|
9
|
+
authService: AuthService;
|
|
10
|
+
private messageService;
|
|
11
|
+
constructor(location: Location, dataService: DataService, authService: AuthService, messageService: MessageService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
userID: string;
|
|
14
|
+
recover(): void;
|
|
15
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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 { DataService } from '../../services/data.service';
|
|
6
|
+
import { Role } from '../../classes/Classes';
|
|
7
|
+
import * as ɵngcc0 from '@angular/core';
|
|
8
|
+
export declare class addRoleDialog implements OnInit {
|
|
9
|
+
private messageService;
|
|
10
|
+
private dataService;
|
|
11
|
+
private authService;
|
|
12
|
+
private dialogRef;
|
|
13
|
+
data: any;
|
|
14
|
+
constructor(messageService: MessageService, dataService: DataService, authService: AuthService, dialogRef: MatDialogRef<addRoleDialog>, data: any);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
capItems: any;
|
|
17
|
+
isProcessing: boolean;
|
|
18
|
+
role: Role;
|
|
19
|
+
submit(): void;
|
|
20
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<addRoleDialog, never>;
|
|
21
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<addRoleDialog, "app-addRole", never, {}, {}, never, never>;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRkUm9sZURpYWxvZy5jb21wb25lbnQuZC50cyIsInNvdXJjZXMiOlsiYWRkUm9sZURpYWxvZy5jb21wb25lbnQuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE1lc3NhZ2VTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvbWVzc2FnZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgQXV0aFNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9hdXRoLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgTWF0RGlhbG9nUmVmIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nJztcclxuaW1wb3J0IHsgRGF0YVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9kYXRhLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBSb2xlIH0gZnJvbSAnLi4vLi4vY2xhc3Nlcy9DbGFzc2VzJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgYWRkUm9sZURpYWxvZyBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBwcml2YXRlIG1lc3NhZ2VTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBkYXRhU2VydmljZTtcclxuICAgIHByaXZhdGUgYXV0aFNlcnZpY2U7XHJcbiAgICBwcml2YXRlIGRpYWxvZ1JlZjtcclxuICAgIGRhdGE6IGFueTtcclxuICAgIGNvbnN0cnVjdG9yKG1lc3NhZ2VTZXJ2aWNlOiBNZXNzYWdlU2VydmljZSwgZGF0YVNlcnZpY2U6IERhdGFTZXJ2aWNlLCBhdXRoU2VydmljZTogQXV0aFNlcnZpY2UsIGRpYWxvZ1JlZjogTWF0RGlhbG9nUmVmPGFkZFJvbGVEaWFsb2c+LCBkYXRhOiBhbnkpO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIGNhcEl0ZW1zOiBhbnk7XHJcbiAgICBpc1Byb2Nlc3Npbmc6IGJvb2xlYW47XHJcbiAgICByb2xlOiBSb2xlO1xyXG4gICAgc3VibWl0KCk6IHZvaWQ7XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,19 @@
|
|
|
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 { DataService } from '../../services/data.service';
|
|
6
|
+
import { Role } from '../../classes/Classes';
|
|
7
|
+
export declare class addRoleDialog implements OnInit {
|
|
8
|
+
private messageService;
|
|
9
|
+
private dataService;
|
|
10
|
+
private authService;
|
|
11
|
+
private dialogRef;
|
|
12
|
+
data: any;
|
|
13
|
+
constructor(messageService: MessageService, dataService: DataService, authService: AuthService, dialogRef: MatDialogRef<addRoleDialog>, data: any);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
capItems: any;
|
|
16
|
+
isProcessing: boolean;
|
|
17
|
+
role: Role;
|
|
18
|
+
submit(): void;
|
|
19
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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 { DataService } from '../../services/data.service';
|
|
6
|
+
import { Role } from '../../classes/Classes';
|
|
7
|
+
import * as ɵngcc0 from '@angular/core';
|
|
8
|
+
export declare class editRoleDialog implements OnInit {
|
|
9
|
+
private messageService;
|
|
10
|
+
private dataserv;
|
|
11
|
+
private authserv;
|
|
12
|
+
private dialogRef;
|
|
13
|
+
data: any;
|
|
14
|
+
constructor(messageService: MessageService, dataserv: DataService, authserv: AuthService, dialogRef: MatDialogRef<editRoleDialog>, data: any);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
role: Role;
|
|
17
|
+
isLoadComplete: boolean;
|
|
18
|
+
isProcessing: boolean;
|
|
19
|
+
submit(): void;
|
|
20
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<editRoleDialog, never>;
|
|
21
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<editRoleDialog, "app-editRole", never, {}, {}, never, never>;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdFJvbGVEaWFsb2cuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImVkaXRSb2xlRGlhbG9nLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9tZXNzYWdlLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBBdXRoU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZSc7XHJcbmltcG9ydCB7IE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBNYXREaWFsb2dSZWYgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xyXG5pbXBvcnQgeyBEYXRhU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2RhdGEuc2VydmljZSc7XHJcbmltcG9ydCB7IFJvbGUgfSBmcm9tICcuLi8uLi9jbGFzc2VzL0NsYXNzZXMnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBlZGl0Um9sZURpYWxvZyBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBwcml2YXRlIG1lc3NhZ2VTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBkYXRhc2VydjtcclxuICAgIHByaXZhdGUgYXV0aHNlcnY7XHJcbiAgICBwcml2YXRlIGRpYWxvZ1JlZjtcclxuICAgIGRhdGE6IGFueTtcclxuICAgIGNvbnN0cnVjdG9yKG1lc3NhZ2VTZXJ2aWNlOiBNZXNzYWdlU2VydmljZSwgZGF0YXNlcnY6IERhdGFTZXJ2aWNlLCBhdXRoc2VydjogQXV0aFNlcnZpY2UsIGRpYWxvZ1JlZjogTWF0RGlhbG9nUmVmPGVkaXRSb2xlRGlhbG9nPiwgZGF0YTogYW55KTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICByb2xlOiBSb2xlO1xyXG4gICAgaXNMb2FkQ29tcGxldGU6IGJvb2xlYW47XHJcbiAgICBpc1Byb2Nlc3Npbmc6IGJvb2xlYW47XHJcbiAgICBzdWJtaXQoKTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
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 { DataService } from '../../services/data.service';
|
|
6
|
+
import { Role } from '../../classes/Classes';
|
|
7
|
+
export declare class editRoleDialog implements OnInit {
|
|
8
|
+
private messageService;
|
|
9
|
+
private dataserv;
|
|
10
|
+
private authserv;
|
|
11
|
+
private dialogRef;
|
|
12
|
+
data: any;
|
|
13
|
+
constructor(messageService: MessageService, dataserv: DataService, authserv: AuthService, dialogRef: MatDialogRef<editRoleDialog>, data: any);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
role: Role;
|
|
16
|
+
isLoadComplete: boolean;
|
|
17
|
+
isProcessing: boolean;
|
|
18
|
+
submit(): void;
|
|
19
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { AppConfig } from './../../classes/Classes';
|
|
2
|
+
import { OnInit } from "@angular/core";
|
|
3
|
+
import { MatDialog } from "@angular/material/dialog";
|
|
4
|
+
import { DataService } from "../../services/data.service";
|
|
5
|
+
import { HttpService } from "tin-core";
|
|
6
|
+
import { Role } from "../../classes/Classes";
|
|
7
|
+
import { Router } from "@angular/router";
|
|
8
|
+
import { MessageService } from '../../services/message.service';
|
|
9
|
+
import { AuthService } from '../../services/auth.service';
|
|
10
|
+
import * as ɵngcc0 from '@angular/core';
|
|
11
|
+
export declare class RolesComponent implements OnInit {
|
|
12
|
+
private httpService;
|
|
13
|
+
private router;
|
|
14
|
+
private authService;
|
|
15
|
+
private dataService;
|
|
16
|
+
dialog: MatDialog;
|
|
17
|
+
private messageService;
|
|
18
|
+
constructor(httpService: HttpService, router: Router, authService: AuthService, dataService: DataService, dialog: MatDialog, messageService: MessageService);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
isProcessing: boolean;
|
|
21
|
+
roles: Role[];
|
|
22
|
+
appConfig: AppConfig;
|
|
23
|
+
loadRoles(): void;
|
|
24
|
+
refresh(): void;
|
|
25
|
+
addRole(): void;
|
|
26
|
+
viewRole(role: Role): void;
|
|
27
|
+
editRole(role: Role): void;
|
|
28
|
+
updateRole(role: Role): void;
|
|
29
|
+
deleteRole(role: Role): void;
|
|
30
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<RolesComponent, never>;
|
|
31
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<RolesComponent, "spa-roles", never, { "appConfig": "appConfig"; }, {}, never, never>;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm9sZXMuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbInJvbGVzLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBcHBDb25maWcgfSBmcm9tICcuLy4uLy4uL2NsYXNzZXMvQ2xhc3Nlcyc7XHJcbmltcG9ydCB7IE9uSW5pdCB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IE1hdERpYWxvZyB9IGZyb20gXCJAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2dcIjtcclxuaW1wb3J0IHsgRGF0YVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vc2VydmljZXMvZGF0YS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IEh0dHBTZXJ2aWNlIH0gZnJvbSBcInRpbi1jb3JlXCI7XHJcbmltcG9ydCB7IFJvbGUgfSBmcm9tIFwiLi4vLi4vY2xhc3Nlcy9DbGFzc2VzXCI7XHJcbmltcG9ydCB7IFJvdXRlciB9IGZyb20gXCJAYW5ndWxhci9yb3V0ZXJcIjtcclxuaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9tZXNzYWdlLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBBdXRoU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIFJvbGVzQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICAgIHByaXZhdGUgaHR0cFNlcnZpY2U7XHJcbiAgICBwcml2YXRlIHJvdXRlcjtcclxuICAgIHByaXZhdGUgYXV0aFNlcnZpY2U7XHJcbiAgICBwcml2YXRlIGRhdGFTZXJ2aWNlO1xyXG4gICAgZGlhbG9nOiBNYXREaWFsb2c7XHJcbiAgICBwcml2YXRlIG1lc3NhZ2VTZXJ2aWNlO1xyXG4gICAgY29uc3RydWN0b3IoaHR0cFNlcnZpY2U6IEh0dHBTZXJ2aWNlLCByb3V0ZXI6IFJvdXRlciwgYXV0aFNlcnZpY2U6IEF1dGhTZXJ2aWNlLCBkYXRhU2VydmljZTogRGF0YVNlcnZpY2UsIGRpYWxvZzogTWF0RGlhbG9nLCBtZXNzYWdlU2VydmljZTogTWVzc2FnZVNlcnZpY2UpO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIGlzUHJvY2Vzc2luZzogYm9vbGVhbjtcclxuICAgIHJvbGVzOiBSb2xlW107XHJcbiAgICBhcHBDb25maWc6IEFwcENvbmZpZztcclxuICAgIGxvYWRSb2xlcygpOiB2b2lkO1xyXG4gICAgcmVmcmVzaCgpOiB2b2lkO1xyXG4gICAgYWRkUm9sZSgpOiB2b2lkO1xyXG4gICAgdmlld1JvbGUocm9sZTogUm9sZSk6IHZvaWQ7XHJcbiAgICBlZGl0Um9sZShyb2xlOiBSb2xlKTogdm9pZDtcclxuICAgIHVwZGF0ZVJvbGUocm9sZTogUm9sZSk6IHZvaWQ7XHJcbiAgICBkZWxldGVSb2xlKHJvbGU6IFJvbGUpOiB2b2lkO1xyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { AppConfig } from './../../classes/Classes';
|
|
2
|
+
import { OnInit } from "@angular/core";
|
|
3
|
+
import { MatDialog } from "@angular/material/dialog";
|
|
4
|
+
import { DataService } from "../../services/data.service";
|
|
5
|
+
import { HttpService } from "tin-core";
|
|
6
|
+
import { Role } from "../../classes/Classes";
|
|
7
|
+
import { Router } from "@angular/router";
|
|
8
|
+
import { MessageService } from '../../services/message.service';
|
|
9
|
+
import { AuthService } from '../../services/auth.service';
|
|
10
|
+
export declare class RolesComponent implements OnInit {
|
|
11
|
+
private httpService;
|
|
12
|
+
private router;
|
|
13
|
+
private authService;
|
|
14
|
+
private dataService;
|
|
15
|
+
dialog: MatDialog;
|
|
16
|
+
private messageService;
|
|
17
|
+
constructor(httpService: HttpService, router: Router, authService: AuthService, dataService: DataService, dialog: MatDialog, messageService: MessageService);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
isProcessing: boolean;
|
|
20
|
+
roles: Role[];
|
|
21
|
+
appConfig: AppConfig;
|
|
22
|
+
loadRoles(): void;
|
|
23
|
+
refresh(): void;
|
|
24
|
+
addRole(): void;
|
|
25
|
+
viewRole(role: Role): void;
|
|
26
|
+
editRole(role: Role): void;
|
|
27
|
+
updateRole(role: Role): void;
|
|
28
|
+
deleteRole(role: Role): void;
|
|
29
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { DataService } from '../../services/data.service';
|
|
4
|
+
import { MessageService } from '../../services/message.service';
|
|
5
|
+
import { AuthService } from '../../services/auth.service';
|
|
6
|
+
import * as ɵngcc0 from '@angular/core';
|
|
7
|
+
export declare class viewRoleDialog implements OnInit {
|
|
8
|
+
private messageService;
|
|
9
|
+
private dataserv;
|
|
10
|
+
private authserv;
|
|
11
|
+
private dialogRef;
|
|
12
|
+
data: any;
|
|
13
|
+
constructor(messageService: MessageService, dataserv: DataService, authserv: AuthService, dialogRef: MatDialogRef<viewRoleDialog>, data: any);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
submit(): void;
|
|
16
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<viewRoleDialog, never>;
|
|
17
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<viewRoleDialog, "app-viewRole", never, {}, {}, never, never>;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmlld1JvbGVEaWFsb2cuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbInZpZXdSb2xlRGlhbG9nLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBNYXREaWFsb2dSZWYgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xyXG5pbXBvcnQgeyBEYXRhU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2RhdGEuc2VydmljZSc7XHJcbmltcG9ydCB7IE1lc3NhZ2VTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvbWVzc2FnZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgQXV0aFNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9hdXRoLnNlcnZpY2UnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyB2aWV3Um9sZURpYWxvZyBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBwcml2YXRlIG1lc3NhZ2VTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBkYXRhc2VydjtcclxuICAgIHByaXZhdGUgYXV0aHNlcnY7XHJcbiAgICBwcml2YXRlIGRpYWxvZ1JlZjtcclxuICAgIGRhdGE6IGFueTtcclxuICAgIGNvbnN0cnVjdG9yKG1lc3NhZ2VTZXJ2aWNlOiBNZXNzYWdlU2VydmljZSwgZGF0YXNlcnY6IERhdGFTZXJ2aWNlLCBhdXRoc2VydjogQXV0aFNlcnZpY2UsIGRpYWxvZ1JlZjogTWF0RGlhbG9nUmVmPHZpZXdSb2xlRGlhbG9nPiwgZGF0YTogYW55KTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICBzdWJtaXQoKTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { DataService } from '../../services/data.service';
|
|
4
|
+
import { MessageService } from '../../services/message.service';
|
|
5
|
+
import { AuthService } from '../../services/auth.service';
|
|
6
|
+
export declare class viewRoleDialog implements OnInit {
|
|
7
|
+
private messageService;
|
|
8
|
+
private dataserv;
|
|
9
|
+
private authserv;
|
|
10
|
+
private dialogRef;
|
|
11
|
+
data: any;
|
|
12
|
+
constructor(messageService: MessageService, dataserv: DataService, authserv: AuthService, dialogRef: MatDialogRef<viewRoleDialog>, data: any);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
submit(): void;
|
|
15
|
+
}
|
|
@@ -1,23 +1,25 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
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 SelectComponent 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);
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import * as ɵngcc0 from '@angular/core';
|
|
3
|
+
export declare class SelectComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
15
5
|
ngOnInit(): void;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
6
|
+
ngOnChanges(): void;
|
|
7
|
+
displayValue: any;
|
|
8
|
+
width: string;
|
|
9
|
+
readonly: boolean;
|
|
10
|
+
readonlyMode: string;
|
|
11
|
+
hint: string;
|
|
12
|
+
display: string;
|
|
13
|
+
value: string;
|
|
14
|
+
options: any;
|
|
15
|
+
optionValue: string;
|
|
16
|
+
optionDisplay: string;
|
|
17
|
+
optionDisplayExtra: string;
|
|
18
|
+
valueChange: EventEmitter<any>;
|
|
19
|
+
changed(): void;
|
|
20
|
+
selectChanged(): void;
|
|
21
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<SelectComponent, never>;
|
|
22
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<SelectComponent, "spa-select", never, { "width": "width"; "readonly": "readonly"; "readonlyMode": "readonlyMode"; "hint": "hint"; "display": "display"; "value": "value"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "optionDisplayExtra": "optionDisplayExtra"; "options": "options"; }, { "valueChange": "valueChange"; }, never, never>;
|
|
23
23
|
}
|
|
24
|
+
|
|
25
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LmNvbXBvbmVudC5kLnRzIiwic291cmNlcyI6WyJzZWxlY3QuY29tcG9uZW50LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEV2ZW50RW1pdHRlciwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIFNlbGVjdENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBjb25zdHJ1Y3RvcigpO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIG5nT25DaGFuZ2VzKCk6IHZvaWQ7XHJcbiAgICBkaXNwbGF5VmFsdWU6IGFueTtcclxuICAgIHdpZHRoOiBzdHJpbmc7XHJcbiAgICByZWFkb25seTogYm9vbGVhbjtcclxuICAgIHJlYWRvbmx5TW9kZTogc3RyaW5nO1xyXG4gICAgaGludDogc3RyaW5nO1xyXG4gICAgZGlzcGxheTogc3RyaW5nO1xyXG4gICAgdmFsdWU6IHN0cmluZztcclxuICAgIG9wdGlvbnM6IGFueTtcclxuICAgIG9wdGlvblZhbHVlOiBzdHJpbmc7XHJcbiAgICBvcHRpb25EaXNwbGF5OiBzdHJpbmc7XHJcbiAgICBvcHRpb25EaXNwbGF5RXh0cmE6IHN0cmluZztcclxuICAgIHZhbHVlQ2hhbmdlOiBFdmVudEVtaXR0ZXI8YW55PjtcclxuICAgIGNoYW5nZWQoKTogdm9pZDtcclxuICAgIHNlbGVjdENoYW5nZWQoKTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
export declare class SelectComponent implements OnInit {
|
|
3
|
+
constructor();
|
|
4
|
+
ngOnInit(): void;
|
|
5
|
+
ngOnChanges(): void;
|
|
6
|
+
displayValue: any;
|
|
7
|
+
width: string;
|
|
8
|
+
readonly: boolean;
|
|
9
|
+
readonlyMode: string;
|
|
10
|
+
hint: string;
|
|
11
|
+
display: string;
|
|
12
|
+
value: string;
|
|
13
|
+
options: any;
|
|
14
|
+
optionValue: string;
|
|
15
|
+
optionDisplay: string;
|
|
16
|
+
optionDisplayExtra: string;
|
|
17
|
+
valueChange: EventEmitter<any>;
|
|
18
|
+
changed(): void;
|
|
19
|
+
selectChanged(): void;
|
|
20
|
+
}
|