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,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as ɵngcc0 from '@angular/core';
|
|
2
2
|
export declare class ExportService {
|
|
3
3
|
constructor();
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
fileType: string;
|
|
5
|
+
fileExtension: string;
|
|
6
|
+
exportExcel(jsonData: any[], fileName: string): void;
|
|
7
|
+
private saveExcelFile;
|
|
8
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<ExportService, never>;
|
|
6
9
|
}
|
|
10
|
+
|
|
11
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhwb3J0LnNlcnZpY2UuZC50cyIsInNvdXJjZXMiOlsiZXhwb3J0LnNlcnZpY2UuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY2xhc3MgRXhwb3J0U2VydmljZSB7XHJcbiAgICBjb25zdHJ1Y3RvcigpO1xyXG4gICAgZmlsZVR5cGU6IHN0cmluZztcclxuICAgIGZpbGVFeHRlbnNpb246IHN0cmluZztcclxuICAgIGV4cG9ydEV4Y2VsKGpzb25EYXRhOiBhbnlbXSwgZmlsZU5hbWU6IHN0cmluZyk6IHZvaWQ7XHJcbiAgICBwcml2YXRlIHNhdmVFeGNlbEZpbGU7XHJcbn1cclxuIl19
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Router } from '@angular/router';
|
|
2
2
|
import { AuthService } from './auth.service';
|
|
3
3
|
import { MessageService } from './message.service';
|
|
4
|
-
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor
|
|
4
|
+
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
|
|
5
5
|
import { Observable } from 'rxjs';
|
|
6
6
|
import { LoaderService } from './loader.service';
|
|
7
7
|
import { LogService } from './log.service';
|
|
8
|
-
import * as
|
|
8
|
+
import * as ɵngcc0 from '@angular/core';
|
|
9
9
|
export declare class LoaderInterceptor implements HttpInterceptor {
|
|
10
10
|
private loaderService;
|
|
11
11
|
private messageService;
|
|
@@ -15,8 +15,9 @@ export declare class LoaderInterceptor implements HttpInterceptor {
|
|
|
15
15
|
private requests;
|
|
16
16
|
constructor(loaderService: LoaderService, messageService: MessageService, authService: AuthService, router: Router, logService: LogService);
|
|
17
17
|
removeRequest(req: HttpRequest<any>): void;
|
|
18
|
-
showError(userMessage: string, error: HttpErrorResponse): void;
|
|
19
18
|
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
20
|
-
static ɵfac:
|
|
21
|
-
static ɵprov:
|
|
19
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<LoaderInterceptor, never>;
|
|
20
|
+
static ɵprov: ɵngcc0.ɵɵInjectableDef<LoaderInterceptor>;
|
|
22
21
|
}
|
|
22
|
+
|
|
23
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZGVyLWludGVyY2VwdG9yLnNlcnZpY2UuZC50cyIsInNvdXJjZXMiOlsibG9hZGVyLWludGVyY2VwdG9yLnNlcnZpY2UuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBSb3V0ZXIgfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xyXG5pbXBvcnQgeyBBdXRoU2VydmljZSB9IGZyb20gJy4vYXV0aC5zZXJ2aWNlJztcclxuaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tICcuL21lc3NhZ2Uuc2VydmljZSc7XHJcbmltcG9ydCB7IEh0dHBSZXF1ZXN0LCBIdHRwSGFuZGxlciwgSHR0cEV2ZW50LCBIdHRwSW50ZXJjZXB0b3IgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XHJcbmltcG9ydCB7IE9ic2VydmFibGUgfSBmcm9tICdyeGpzJztcclxuaW1wb3J0IHsgTG9hZGVyU2VydmljZSB9IGZyb20gJy4vbG9hZGVyLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBMb2dTZXJ2aWNlIH0gZnJvbSAnLi9sb2cuc2VydmljZSc7XHJcbmV4cG9ydCBkZWNsYXJlIGNsYXNzIExvYWRlckludGVyY2VwdG9yIGltcGxlbWVudHMgSHR0cEludGVyY2VwdG9yIHtcclxuICAgIHByaXZhdGUgbG9hZGVyU2VydmljZTtcclxuICAgIHByaXZhdGUgbWVzc2FnZVNlcnZpY2U7XHJcbiAgICBwcml2YXRlIGF1dGhTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSByb3V0ZXI7XHJcbiAgICBwcml2YXRlIGxvZ1NlcnZpY2U7XHJcbiAgICBwcml2YXRlIHJlcXVlc3RzO1xyXG4gICAgY29uc3RydWN0b3IobG9hZGVyU2VydmljZTogTG9hZGVyU2VydmljZSwgbWVzc2FnZVNlcnZpY2U6IE1lc3NhZ2VTZXJ2aWNlLCBhdXRoU2VydmljZTogQXV0aFNlcnZpY2UsIHJvdXRlcjogUm91dGVyLCBsb2dTZXJ2aWNlOiBMb2dTZXJ2aWNlKTtcclxuICAgIHJlbW92ZVJlcXVlc3QocmVxOiBIdHRwUmVxdWVzdDxhbnk+KTogdm9pZDtcclxuICAgIGludGVyY2VwdChyZXF1ZXN0OiBIdHRwUmVxdWVzdDxhbnk+LCBuZXh0OiBIdHRwSGFuZGxlcik6IE9ic2VydmFibGU8SHR0cEV2ZW50PGFueT4+O1xyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { AuthService } from './auth.service';
|
|
3
|
+
import { MessageService } from './message.service';
|
|
4
|
+
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
|
|
5
|
+
import { Observable } from 'rxjs';
|
|
6
|
+
import { LoaderService } from './loader.service';
|
|
7
|
+
import { LogService } from './log.service';
|
|
8
|
+
export declare class LoaderInterceptor implements HttpInterceptor {
|
|
9
|
+
private loaderService;
|
|
10
|
+
private messageService;
|
|
11
|
+
private authService;
|
|
12
|
+
private router;
|
|
13
|
+
private logService;
|
|
14
|
+
private requests;
|
|
15
|
+
constructor(loaderService: LoaderService, messageService: MessageService, authService: AuthService, router: Router, logService: LogService);
|
|
16
|
+
removeRequest(req: HttpRequest<any>): void;
|
|
17
|
+
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
18
|
+
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { BehaviorSubject } from 'rxjs';
|
|
2
|
-
import * as
|
|
2
|
+
import * as ɵngcc0 from '@angular/core';
|
|
3
3
|
export declare class LoaderService {
|
|
4
4
|
isLoading: BehaviorSubject<boolean>;
|
|
5
5
|
constructor();
|
|
6
|
-
static ɵfac:
|
|
7
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LoaderService>;
|
|
6
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<LoaderService, never>;
|
|
8
7
|
}
|
|
8
|
+
|
|
9
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZGVyLnNlcnZpY2UuZC50cyIsInNvdXJjZXMiOlsibG9hZGVyLnNlcnZpY2UuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7QUFDQTtBQUNBO0FBQ0E7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCZWhhdmlvclN1YmplY3QgfSBmcm9tICdyeGpzJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgTG9hZGVyU2VydmljZSB7XHJcbiAgICBpc0xvYWRpbmc6IEJlaGF2aW9yU3ViamVjdDxib29sZWFuPjtcclxuICAgIGNvbnN0cnVjdG9yKCk7XHJcbn1cclxuIl19
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { LogLevel } from
|
|
2
|
-
import * as
|
|
1
|
+
import { LogLevel } from '../classes/Classes';
|
|
2
|
+
import * as ɵngcc0 from '@angular/core';
|
|
3
3
|
export declare class LogService {
|
|
4
4
|
constructor();
|
|
5
5
|
level: LogLevel;
|
|
@@ -14,6 +14,7 @@ export declare class LogService {
|
|
|
14
14
|
private writeToLog;
|
|
15
15
|
private formatParams;
|
|
16
16
|
private shouldLog;
|
|
17
|
-
static ɵfac:
|
|
18
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LogService>;
|
|
17
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<LogService, never>;
|
|
19
18
|
}
|
|
19
|
+
|
|
20
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nLnNlcnZpY2UuZC50cyIsInNvdXJjZXMiOlsibG9nLnNlcnZpY2UuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTG9nTGV2ZWwgfSBmcm9tICcuLi9jbGFzc2VzL0NsYXNzZXMnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBMb2dTZXJ2aWNlIHtcclxuICAgIGNvbnN0cnVjdG9yKCk7XHJcbiAgICBsZXZlbDogTG9nTGV2ZWw7XHJcbiAgICBsb2dUb0NvbnNvbGU6IGJvb2xlYW47XHJcbiAgICBsb2dUb0FwaTogYm9vbGVhbjtcclxuICAgIGRlYnVnKG1zZzogc3RyaW5nLCAuLi5vcHRpb25hbFBhcmFtczogYW55W10pOiB2b2lkO1xyXG4gICAgaW5mbyhtc2c6IHN0cmluZywgLi4ub3B0aW9uYWxQYXJhbXM6IGFueVtdKTogdm9pZDtcclxuICAgIHdhcm4obXNnOiBzdHJpbmcsIC4uLm9wdGlvbmFsUGFyYW1zOiBhbnlbXSk6IHZvaWQ7XHJcbiAgICBlcnJvcihtc2c6IHN0cmluZywgLi4ub3B0aW9uYWxQYXJhbXM6IGFueVtdKTogdm9pZDtcclxuICAgIGZhdGFsKG1zZzogc3RyaW5nLCAuLi5vcHRpb25hbFBhcmFtczogYW55W10pOiB2b2lkO1xyXG4gICAgbG9nKG1zZzogc3RyaW5nLCAuLi5vcHRpb25hbFBhcmFtczogYW55W10pOiB2b2lkO1xyXG4gICAgcHJpdmF0ZSB3cml0ZVRvTG9nO1xyXG4gICAgcHJpdmF0ZSBmb3JtYXRQYXJhbXM7XHJcbiAgICBwcml2YXRlIHNob3VsZExvZztcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { LogLevel } from '../classes/Classes';
|
|
2
|
+
export declare class LogService {
|
|
3
|
+
constructor();
|
|
4
|
+
level: LogLevel;
|
|
5
|
+
logToConsole: boolean;
|
|
6
|
+
logToApi: boolean;
|
|
7
|
+
debug(msg: string, ...optionalParams: any[]): void;
|
|
8
|
+
info(msg: string, ...optionalParams: any[]): void;
|
|
9
|
+
warn(msg: string, ...optionalParams: any[]): void;
|
|
10
|
+
error(msg: string, ...optionalParams: any[]): void;
|
|
11
|
+
fatal(msg: string, ...optionalParams: any[]): void;
|
|
12
|
+
log(msg: string, ...optionalParams: any[]): void;
|
|
13
|
+
private writeToLog;
|
|
14
|
+
private formatParams;
|
|
15
|
+
private shouldLog;
|
|
16
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { MatSnackBar } from "@angular/material/snack-bar";
|
|
2
2
|
import { MatDialog } from "@angular/material/dialog";
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
-
import * as
|
|
4
|
+
import * as ɵngcc0 from '@angular/core';
|
|
5
5
|
export declare class MessageService {
|
|
6
6
|
private snackBar;
|
|
7
7
|
dialog: MatDialog;
|
|
8
8
|
constructor(snackBar: MatSnackBar, dialog: MatDialog);
|
|
9
9
|
toast(msg: string): void;
|
|
10
|
-
info(details: string): void;
|
|
11
|
-
infoWithSubject(subject: string, details: string): void;
|
|
10
|
+
info(subject: string, details: string): void;
|
|
12
11
|
error(details: string): void;
|
|
13
12
|
confirm(msg: string): Observable<any>;
|
|
14
|
-
static ɵfac:
|
|
15
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MessageService>;
|
|
13
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<MessageService, never>;
|
|
16
14
|
}
|
|
15
|
+
|
|
16
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVzc2FnZS5zZXJ2aWNlLmQudHMiLCJzb3VyY2VzIjpbIm1lc3NhZ2Uuc2VydmljZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWF0U25hY2tCYXIgfSBmcm9tIFwiQGFuZ3VsYXIvbWF0ZXJpYWwvc25hY2stYmFyXCI7XHJcbmltcG9ydCB7IE1hdERpYWxvZyB9IGZyb20gXCJAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2dcIjtcclxuaW1wb3J0IHsgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBNZXNzYWdlU2VydmljZSB7XHJcbiAgICBwcml2YXRlIHNuYWNrQmFyO1xyXG4gICAgZGlhbG9nOiBNYXREaWFsb2c7XHJcbiAgICBjb25zdHJ1Y3RvcihzbmFja0JhcjogTWF0U25hY2tCYXIsIGRpYWxvZzogTWF0RGlhbG9nKTtcclxuICAgIHRvYXN0KG1zZzogc3RyaW5nKTogdm9pZDtcclxuICAgIGluZm8oc3ViamVjdDogc3RyaW5nLCBkZXRhaWxzOiBzdHJpbmcpOiB2b2lkO1xyXG4gICAgZXJyb3IoZGV0YWlsczogc3RyaW5nKTogdm9pZDtcclxuICAgIGNvbmZpcm0obXNnOiBzdHJpbmcpOiBPYnNlcnZhYmxlPGFueT47XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { MatSnackBar } from "@angular/material/snack-bar";
|
|
2
|
+
import { MatDialog } from "@angular/material/dialog";
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
export declare class MessageService {
|
|
5
|
+
private snackBar;
|
|
6
|
+
dialog: MatDialog;
|
|
7
|
+
constructor(snackBar: MatSnackBar, dialog: MatDialog);
|
|
8
|
+
toast(msg: string): void;
|
|
9
|
+
info(subject: string, details: string): void;
|
|
10
|
+
error(details: string): void;
|
|
11
|
+
confirm(msg: string): Observable<any>;
|
|
12
|
+
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as ɵngcc0 from '@angular/core';
|
|
2
2
|
export declare class StorageService {
|
|
3
3
|
constructor();
|
|
4
4
|
store(storageKey: string, value: any): Promise<void>;
|
|
5
5
|
get(storageKey: string): Promise<any>;
|
|
6
6
|
removeStorageItem(storageKey: string): Promise<void>;
|
|
7
7
|
clear(): Promise<void>;
|
|
8
|
-
static ɵfac:
|
|
9
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
|
|
8
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<StorageService, never>;
|
|
10
9
|
}
|
|
10
|
+
|
|
11
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RvcmFnZS5zZXJ2aWNlLmQudHMiLCJzb3VyY2VzIjpbInN0b3JhZ2Uuc2VydmljZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZGVjbGFyZSBjbGFzcyBTdG9yYWdlU2VydmljZSB7XHJcbiAgICBjb25zdHJ1Y3RvcigpO1xyXG4gICAgc3RvcmUoc3RvcmFnZUtleTogc3RyaW5nLCB2YWx1ZTogYW55KTogUHJvbWlzZTx2b2lkPjtcclxuICAgIGdldChzdG9yYWdlS2V5OiBzdHJpbmcpOiBQcm9taXNlPGFueT47XHJcbiAgICByZW1vdmVTdG9yYWdlSXRlbShzdG9yYWdlS2V5OiBzdHJpbmcpOiBQcm9taXNlPHZvaWQ+O1xyXG4gICAgY2xlYXIoKTogUHJvbWlzZTx2b2lkPjtcclxufVxyXG4iXX0=
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as ɵngcc0 from '@angular/core';
|
|
2
2
|
export declare class TinSpaService {
|
|
3
3
|
constructor();
|
|
4
|
-
static ɵfac:
|
|
5
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TinSpaService>;
|
|
4
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDef<TinSpaService, never>;
|
|
6
5
|
}
|
|
6
|
+
|
|
7
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGluLXNwYS5zZXJ2aWNlLmQudHMiLCJzb3VyY2VzIjpbInRpbi1zcGEuc2VydmljZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQTtBQUNBOztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY2xhc3MgVGluU3BhU2VydmljZSB7XHJcbiAgICBjb25zdHJ1Y3RvcigpO1xyXG59XHJcbiJdfQ==
|
package/lib/tin-spa.module.d.ts
CHANGED
|
@@ -1,86 +1,37 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
7
|
-
import * as
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
12
|
-
import * as
|
|
13
|
-
import * as
|
|
14
|
-
import * as
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
17
|
-
import * as
|
|
18
|
-
import * as
|
|
19
|
-
import * as
|
|
20
|
-
import * as
|
|
21
|
-
import * as
|
|
22
|
-
import * as
|
|
23
|
-
import * as
|
|
24
|
-
import * as
|
|
25
|
-
import * as
|
|
26
|
-
import * as
|
|
27
|
-
import * as
|
|
28
|
-
import * as
|
|
29
|
-
import * as
|
|
30
|
-
import * as
|
|
31
|
-
import * as
|
|
32
|
-
import * as i31 from "./pages/bug/bug.component";
|
|
33
|
-
import * as i32 from "./pages/membership/membership.component";
|
|
34
|
-
import * as i33 from "./pages/plans/plans.component";
|
|
35
|
-
import * as i34 from "./pages/customers/customers.component";
|
|
36
|
-
import * as i35 from "./pages/inventory/inventory.component";
|
|
37
|
-
import * as i36 from "./pages/inventory/quantityDialog.component";
|
|
38
|
-
import * as i37 from "./pages/accounts/accounts.component";
|
|
39
|
-
import * as i38 from "./pages/accounts/accountDialog.component";
|
|
40
|
-
import * as i39 from "./pages/suppliers/suppliers.component";
|
|
41
|
-
import * as i40 from "./pages/transactions/transactions.component";
|
|
42
|
-
import * as i41 from "./pages/transactions/transactDialog.component";
|
|
43
|
-
import * as i42 from "./components/list-dialog/list-dialog.component";
|
|
44
|
-
import * as i43 from "./pages/tasks/tasks.component";
|
|
45
|
-
import * as i44 from "./pages/departments/departments.component";
|
|
46
|
-
import * as i45 from "./pages/employees/employees.component";
|
|
47
|
-
import * as i46 from "./pages/positions/positions.component";
|
|
48
|
-
import * as i47 from "./pages/grades/grades.component";
|
|
49
|
-
import * as i48 from "./pages/welcome/welcome.component";
|
|
50
|
-
import * as i49 from "./pages/notifications/notifications.component";
|
|
51
|
-
import * as i50 from "./pages/invitations-table/invitations-table.component";
|
|
52
|
-
import * as i51 from "./components/table-header/table-header.component";
|
|
53
|
-
import * as i52 from "./components/table-row/table-row.component";
|
|
54
|
-
import * as i53 from "./components/table-action/table-action.component";
|
|
55
|
-
import * as i54 from "./components/alert/alert.component";
|
|
56
|
-
import * as i55 from "./components/email/email.component";
|
|
57
|
-
import * as i56 from "./components/page/page.component";
|
|
58
|
-
import * as i57 from "./components/select-common/select-common.component";
|
|
59
|
-
import * as i58 from "./components/select-internal/select-internal.component";
|
|
60
|
-
import * as i59 from "./components/suffix/suffix.component";
|
|
61
|
-
import * as i60 from "./select-context.directive";
|
|
62
|
-
import * as i61 from "./components/select-lite/select-lite.component";
|
|
63
|
-
import * as i62 from "./components/table-lite/table-lite.component";
|
|
64
|
-
import * as i63 from "./components/table-lite/detailsDialog-lite.component";
|
|
65
|
-
import * as i64 from "./pages/approvals/approvals.component";
|
|
66
|
-
import * as i65 from "./pages/approvals-config/approvals-config.component";
|
|
67
|
-
import * as i66 from "./components/multi-text/multi-text.component";
|
|
68
|
-
import * as i67 from "./components/multi-select/multi-select.component";
|
|
69
|
-
import * as i68 from "./components/select-bitwise/select-bitwise.component";
|
|
70
|
-
import * as i69 from "./pages/app-models/app-models.component";
|
|
71
|
-
import * as i70 from "./pages/notifications-config/notifications-config.component";
|
|
72
|
-
import * as i71 from "./components/html/html.component";
|
|
73
|
-
import * as i72 from "./components/notes/notes.component";
|
|
74
|
-
import * as i73 from "./components/capsules/capsules.component";
|
|
75
|
-
import * as i74 from "./components/cards/cards.component";
|
|
76
|
-
import * as i75 from "./components/tabs/tabs.component";
|
|
77
|
-
import * as i76 from "./components/statuses/statuses.component";
|
|
78
|
-
import * as i77 from "./modules/spa-mat.module";
|
|
79
|
-
import * as i78 from "@angular/common/http";
|
|
80
|
-
import * as i79 from "./components/money/currency-input-mask.module";
|
|
81
|
-
import * as i80 from "ngx-doc-viewer";
|
|
1
|
+
import * as ɵngcc0 from '@angular/core';
|
|
2
|
+
import * as ɵngcc1 from './dnd.directive';
|
|
3
|
+
import * as ɵngcc2 from './components/tin-spa.component';
|
|
4
|
+
import * as ɵngcc3 from './components/message/messageDialog.component';
|
|
5
|
+
import * as ɵngcc4 from './components/nav-menu/nav-menu.component';
|
|
6
|
+
import * as ɵngcc5 from './components/loader/loader.component';
|
|
7
|
+
import * as ɵngcc6 from './components/timeout/timeout.component';
|
|
8
|
+
import * as ɵngcc7 from './components/table/table.component';
|
|
9
|
+
import * as ɵngcc8 from './components/tiles/tiles.component';
|
|
10
|
+
import * as ɵngcc9 from './components/date/date.component';
|
|
11
|
+
import * as ɵngcc10 from './components/text/text.component';
|
|
12
|
+
import * as ɵngcc11 from './components/viewer/viewer.component';
|
|
13
|
+
import * as ɵngcc12 from './components/select/select.component';
|
|
14
|
+
import * as ɵngcc13 from './components/check/check.component';
|
|
15
|
+
import * as ɵngcc14 from './components/attach/attach.component';
|
|
16
|
+
import * as ɵngcc15 from './components/datetime/datetime.component';
|
|
17
|
+
import * as ɵngcc16 from './components/money/money.component';
|
|
18
|
+
import * as ɵngcc17 from './components/chips/chips.component';
|
|
19
|
+
import * as ɵngcc18 from './components/activity/activity.component';
|
|
20
|
+
import * as ɵngcc19 from './components/viewer/viewerDialog.component';
|
|
21
|
+
import * as ɵngcc20 from './components/html/html.component';
|
|
22
|
+
import * as ɵngcc21 from './components/option/option.component';
|
|
23
|
+
import * as ɵngcc22 from './components/label/label.component';
|
|
24
|
+
import * as ɵngcc23 from './components/steps/steps.component';
|
|
25
|
+
import * as ɵngcc24 from '@angular/forms';
|
|
26
|
+
import * as ɵngcc25 from '@angular/common';
|
|
27
|
+
import * as ɵngcc26 from './modules/spa-mat.module';
|
|
28
|
+
import * as ɵngcc27 from 'angular2-moment';
|
|
29
|
+
import * as ɵngcc28 from 'ngx-doc-viewer';
|
|
30
|
+
import * as ɵngcc29 from '@kolkov/angular-editor';
|
|
31
|
+
import * as ɵngcc30 from '@ng-idle/keepalive';
|
|
82
32
|
export declare class TinSpaModule {
|
|
83
|
-
static
|
|
84
|
-
static
|
|
85
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TinSpaModule>;
|
|
33
|
+
static ɵmod: ɵngcc0.ɵɵNgModuleDefWithMeta<TinSpaModule, [typeof ɵngcc1.DndDirective, typeof ɵngcc2.TinSpaComponent, typeof ɵngcc3.messageDialog, typeof ɵngcc4.NavMenuComponent, typeof ɵngcc5.LoaderComponent, typeof ɵngcc6.TimeoutComponent, typeof ɵngcc7.TableComponent, typeof ɵngcc8.TilesComponent, typeof ɵngcc9.DateComponent, typeof ɵngcc10.TextComponent, typeof ɵngcc11.ViewerComponent, typeof ɵngcc12.SelectComponent, typeof ɵngcc13.CheckComponent, typeof ɵngcc14.AttachComponent, typeof ɵngcc15.DatetimeComponent, typeof ɵngcc16.MoneyComponent, typeof ɵngcc17.ChipsComponent, typeof ɵngcc18.ActivityComponent, typeof ɵngcc19.viewerDialog, typeof ɵngcc20.HtmlComponent, typeof ɵngcc21.OptionComponent, typeof ɵngcc22.LabelComponent, typeof ɵngcc23.StepsComponent], [typeof ɵngcc24.ReactiveFormsModule, typeof ɵngcc25.CommonModule, typeof ɵngcc24.FormsModule, typeof ɵngcc24.ReactiveFormsModule, typeof ɵngcc26.SpaMatModule, typeof ɵngcc27.MomentModule, typeof ɵngcc28.NgxDocViewerModule, typeof ɵngcc29.AngularEditorModule, typeof ɵngcc30.NgIdleKeepaliveModule], [typeof ɵngcc25.CommonModule, typeof ɵngcc24.FormsModule, typeof ɵngcc26.SpaMatModule, typeof ɵngcc2.TinSpaComponent, typeof ɵngcc3.messageDialog, typeof ɵngcc4.NavMenuComponent, typeof ɵngcc5.LoaderComponent, typeof ɵngcc6.TimeoutComponent, typeof ɵngcc7.TableComponent, typeof ɵngcc8.TilesComponent, typeof ɵngcc9.DateComponent, typeof ɵngcc11.ViewerComponent, typeof ɵngcc12.SelectComponent, typeof ɵngcc10.TextComponent, typeof ɵngcc15.DatetimeComponent, typeof ɵngcc13.CheckComponent, typeof ɵngcc14.AttachComponent, typeof ɵngcc16.MoneyComponent, typeof ɵngcc17.ChipsComponent, typeof ɵngcc18.ActivityComponent, typeof ɵngcc20.HtmlComponent, typeof ɵngcc21.OptionComponent, typeof ɵngcc22.LabelComponent, typeof ɵngcc23.StepsComponent]>;
|
|
34
|
+
static ɵinj: ɵngcc0.ɵɵInjectorDef<TinSpaModule>;
|
|
86
35
|
}
|
|
36
|
+
|
|
37
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGluLXNwYS5tb2R1bGUuZC50cyIsInNvdXJjZXMiOlsidGluLXNwYS5tb2R1bGUuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY2xhc3MgVGluU3BhTW9kdWxlIHtcclxufVxyXG4iXX0=
|
package/package.json
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tin-spa",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
5
|
+
"@angular/common": "^9.1.12",
|
|
6
|
+
"@angular/core": "^9.1.12"
|
|
7
7
|
},
|
|
8
|
+
"main": "bundles/tin-spa.umd.js",
|
|
9
|
+
"module": "fesm5/tin-spa.js",
|
|
10
|
+
"es2015_ivy_ngcc": "__ivy_ngcc__/fesm2015/tin-spa.js",
|
|
11
|
+
"es2015": "fesm2015/tin-spa.js",
|
|
12
|
+
"esm5": "esm5/tin-spa.js",
|
|
13
|
+
"esm2015": "esm2015/tin-spa.js",
|
|
14
|
+
"fesm5": "fesm5/tin-spa.js",
|
|
15
|
+
"fesm2015_ivy_ngcc": "__ivy_ngcc__/fesm2015/tin-spa.js",
|
|
16
|
+
"fesm2015": "fesm2015/tin-spa.js",
|
|
17
|
+
"typings": "tin-spa.d.ts",
|
|
18
|
+
"metadata": "tin-spa.metadata.json",
|
|
19
|
+
"sideEffects": false,
|
|
8
20
|
"dependencies": {
|
|
9
|
-
"tslib": "^
|
|
21
|
+
"tslib": "^1.10.0"
|
|
10
22
|
},
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"fesm2015": "fesm2015/tin-spa.mjs",
|
|
16
|
-
"typings": "index.d.ts",
|
|
17
|
-
"exports": {
|
|
18
|
-
"./package.json": {
|
|
19
|
-
"default": "./package.json"
|
|
20
|
-
},
|
|
21
|
-
".": {
|
|
22
|
-
"types": "./index.d.ts",
|
|
23
|
-
"esm2020": "./esm2020/tin-spa.mjs",
|
|
24
|
-
"es2020": "./fesm2020/tin-spa.mjs",
|
|
25
|
-
"es2015": "./fesm2015/tin-spa.mjs",
|
|
26
|
-
"node": "./fesm2015/tin-spa.mjs",
|
|
27
|
-
"default": "./fesm2020/tin-spa.mjs"
|
|
28
|
-
}
|
|
23
|
+
"__processed_by_ivy_ngcc__": {
|
|
24
|
+
"es2015": "9.1.12",
|
|
25
|
+
"fesm2015": "9.1.12",
|
|
26
|
+
"typings": "9.1.12"
|
|
29
27
|
},
|
|
30
|
-
"
|
|
28
|
+
"scripts": {
|
|
29
|
+
"prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by NGCC. This is not allowed.\\nPlease delete and rebuild the package, without compiling with NGCC, before attempting to publish.\\nNote that NGCC may have been run by importing this package into another project that is being built with Ivy enabled.\\n')\" && exit 1"
|
|
30
|
+
}
|
|
31
31
|
}
|
package/public-api.d.ts
CHANGED
|
@@ -3,77 +3,48 @@ export * from './lib/services/storage.service';
|
|
|
3
3
|
export * from './lib/services/message.service';
|
|
4
4
|
export * from './lib/services/export.service';
|
|
5
5
|
export * from './lib/services/auth.service';
|
|
6
|
-
export * from './lib/services/
|
|
6
|
+
export * from './lib/services/data.service';
|
|
7
7
|
export * from './lib/services/log.service';
|
|
8
|
-
export * from './lib/services/http.service';
|
|
9
|
-
export * from './lib/services/loader.service';
|
|
10
|
-
export * from './lib/services/dialog.service';
|
|
11
8
|
export * from './lib/classes/Classes';
|
|
12
|
-
export * from './lib/classes/TinCore';
|
|
13
9
|
export * from './lib/tin-spa.module';
|
|
14
10
|
export * from './lib/modules/spa-mat.module';
|
|
15
11
|
export * from './lib/modules/spa-index.module';
|
|
16
12
|
export * from './lib/modules/spa-user.module';
|
|
17
13
|
export * from './lib/modules/spa-admin.module';
|
|
18
|
-
export * from './lib/modules/index/index.module';
|
|
19
|
-
export * from './lib/modules/admin/admin.module';
|
|
20
|
-
export * from './lib/modules/user/user.module';
|
|
21
14
|
export * from './lib/components/tin-spa.component';
|
|
15
|
+
export * from './lib/components/table/table.component';
|
|
22
16
|
export * from './lib/components/tiles/tiles.component';
|
|
23
|
-
export * from './lib/components/alert/alert.component';
|
|
24
17
|
export * from './lib/components/date/date.component';
|
|
25
18
|
export * from './lib/components/text/text.component';
|
|
26
|
-
export * from './lib/components/multi-text/multi-text.component';
|
|
27
19
|
export * from './lib/components/label/label.component';
|
|
28
20
|
export * from './lib/components/datetime/datetime.component';
|
|
29
21
|
export * from './lib/components/select/select.component';
|
|
30
|
-
export * from './lib/components/multi-select/multi-select.component';
|
|
31
|
-
export * from './lib/components/select-bitwise/select-bitwise.component';
|
|
32
22
|
export * from './lib/components/attach/attach.component';
|
|
33
23
|
export * from './lib/components/check/check.component';
|
|
24
|
+
export * from './lib/components/viewer/viewer.component';
|
|
34
25
|
export * from './lib/components/money/money.component';
|
|
35
26
|
export * from './lib/components/chips/chips.component';
|
|
36
27
|
export * from './lib/components/activity/activity.component';
|
|
28
|
+
export * from './lib/components/html/html.component';
|
|
37
29
|
export * from './lib/components/option/option.component';
|
|
38
30
|
export * from './lib/components/steps/steps.component';
|
|
39
|
-
export * from './lib/components/filter/filter.component';
|
|
40
31
|
export * from './lib/components/message/messageDialog.component';
|
|
41
32
|
export * from './lib/components/loader/loader.component';
|
|
42
|
-
export * from './lib/components/
|
|
43
|
-
export * from './lib/components/
|
|
44
|
-
export * from './lib/components/
|
|
45
|
-
export * from './lib/components/
|
|
46
|
-
export * from './lib/components/search/search.component';
|
|
47
|
-
export * from './lib/components/viewer/viewer.component';
|
|
48
|
-
export * from './lib/components/viewer/viewerDialog.component';
|
|
33
|
+
export * from './lib/components/users/users.component';
|
|
34
|
+
export * from './lib/components/users/addUserDialog.component';
|
|
35
|
+
export * from './lib/components/users/editUserDialog.component';
|
|
36
|
+
export * from './lib/components/login/login.component';
|
|
49
37
|
export * from './lib/components/nav-menu/nav-menu.component';
|
|
50
|
-
export * from './lib/components/
|
|
51
|
-
export * from './lib/components/
|
|
52
|
-
export * from './lib/components/
|
|
53
|
-
export * from './lib/components/
|
|
54
|
-
export * from './lib/components/
|
|
55
|
-
export * from './lib/components/
|
|
56
|
-
export * from './lib/components/
|
|
57
|
-
export * from './lib/components/
|
|
58
|
-
export * from './lib/
|
|
59
|
-
export * from './lib/
|
|
60
|
-
export * from './lib/
|
|
61
|
-
export * from './lib/
|
|
62
|
-
export * from './lib/
|
|
63
|
-
export * from './lib/pages/grades/grades.component';
|
|
64
|
-
export * from './lib/pages/welcome/welcome.component';
|
|
65
|
-
export * from './lib/pages/customers/customers.component';
|
|
66
|
-
export * from './lib/pages/inventory/inventory.component';
|
|
67
|
-
export * from './lib/pages/accounts/accounts.component';
|
|
68
|
-
export * from './lib/pages/suppliers/suppliers.component';
|
|
69
|
-
export * from './lib/pages/users/users.component';
|
|
70
|
-
export * from './lib/pages/login/login.component';
|
|
71
|
-
export * from './lib/pages/roles/roles.component';
|
|
72
|
-
export * from './lib/pages/roles/addRoleDialog.component';
|
|
73
|
-
export * from './lib/pages/signup/signup.component';
|
|
74
|
-
export * from './lib/pages/change-password/change-password.component';
|
|
75
|
-
export * from './lib/pages/profile/profile.component';
|
|
76
|
-
export * from './lib/pages/recover-account/recover-account.component';
|
|
77
|
-
export * from './lib/pages/create-account/create-account.component';
|
|
78
|
-
export * from './lib/pages/logs/logs.component';
|
|
79
|
-
export * from './lib/pages/settings/settings.component';
|
|
38
|
+
export * from './lib/components/roles/roles.component';
|
|
39
|
+
export * from './lib/components/roles/addRoleDialog.component';
|
|
40
|
+
export * from './lib/components/roles/editRoleDialog.component';
|
|
41
|
+
export * from './lib/components/roles/viewRoleDialog.component';
|
|
42
|
+
export * from './lib/components/signup/signup.component';
|
|
43
|
+
export * from './lib/components/change-password/change-password.component';
|
|
44
|
+
export * from './lib/components/profile/profile.component';
|
|
45
|
+
export * from './lib/components/profiles/profiles.component';
|
|
46
|
+
export * from './lib/components/recover-account/recover-account.component';
|
|
47
|
+
export * from './lib/components/create-account/create-account.component';
|
|
48
|
+
export * from './lib/components/timeout/timeout.component';
|
|
49
|
+
export * from './lib/components/logs/logs.component';
|
|
50
|
+
export * from './lib/components/settings/settings.component';
|
package/tin-spa.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
export { viewerDialog as ɵc } from './lib/components/viewer/viewerDialog.component';
|
|
6
|
+
export { DndDirective as ɵa } from './lib/dnd.directive';
|
|
7
|
+
export { LoaderInterceptor as ɵd } from './lib/services/loader-interceptor.service';
|
|
8
|
+
export { LoaderService as ɵb } from './lib/services/loader.service';
|
|
9
|
+
|
|
10
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGluLXNwYS5kLnRzIiwic291cmNlcyI6WyJ0aW4tc3BhLmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxyXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cclxuICovXHJcbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XHJcbmV4cG9ydCB7IHZpZXdlckRpYWxvZyBhcyDJtWMgfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL3ZpZXdlci92aWV3ZXJEaWFsb2cuY29tcG9uZW50JztcclxuZXhwb3J0IHsgRG5kRGlyZWN0aXZlIGFzIMm1YSB9IGZyb20gJy4vbGliL2RuZC5kaXJlY3RpdmUnO1xyXG5leHBvcnQgeyBMb2FkZXJJbnRlcmNlcHRvciBhcyDJtWQgfSBmcm9tICcuL2xpYi9zZXJ2aWNlcy9sb2FkZXItaW50ZXJjZXB0b3Iuc2VydmljZSc7XHJcbmV4cG9ydCB7IExvYWRlclNlcnZpY2UgYXMgybViIH0gZnJvbSAnLi9saWIvc2VydmljZXMvbG9hZGVyLnNlcnZpY2UnO1xyXG4iXX0=
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
export { viewerDialog as ɵc } from './lib/components/viewer/viewerDialog.component';
|
|
6
|
+
export { DndDirective as ɵa } from './lib/dnd.directive';
|
|
7
|
+
export { LoaderInterceptor as ɵd } from './lib/services/loader-interceptor.service';
|
|
8
|
+
export { LoaderService as ɵb } from './lib/services/loader.service';
|