@resolveio/client-lib-core 0.0.1
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/esm2020/lib/account-manager.service.mjs +213 -0
- package/esm2020/lib/auth/auth-guard.service.mjs +137 -0
- package/esm2020/lib/auth/auth-permissions.service.mjs +24 -0
- package/esm2020/lib/auth/auth.service.mjs +241 -0
- package/esm2020/lib/auth/auth365.component.mjs +44 -0
- package/esm2020/lib/auth/can-deactivate-guard.service.mjs +13 -0
- package/esm2020/lib/auth/enroll.component.mjs +81 -0
- package/esm2020/lib/auth/forgot-password.component.mjs +82 -0
- package/esm2020/lib/core.component.mjs +488 -0
- package/esm2020/lib/core.module.mjs +179 -0
- package/esm2020/lib/core.service.mjs +96 -0
- package/esm2020/lib/directive/focus.mjs +22 -0
- package/esm2020/lib/directive/scroll.mjs +55 -0
- package/esm2020/lib/home/about-us.component.mjs +34 -0
- package/esm2020/lib/home/contact-us.component.mjs +57 -0
- package/esm2020/lib/home/demo.component.mjs +59 -0
- package/esm2020/lib/home/home.component.mjs +105 -0
- package/esm2020/lib/home/home.module.mjs +50 -0
- package/esm2020/lib/logger/logger.component.mjs +221 -0
- package/esm2020/lib/models/app-status.model.mjs +2 -0
- package/esm2020/lib/models/collection-document.model.mjs +2 -0
- package/esm2020/lib/models/cron-job.model.mjs +2 -0
- package/esm2020/lib/models/dialog.model.mjs +2 -0
- package/esm2020/lib/models/file.model.mjs +2 -0
- package/esm2020/lib/models/log-method-latency.model.mjs +2 -0
- package/esm2020/lib/models/navbar-main-tab.model.mjs +2 -0
- package/esm2020/lib/models/pagination.model.mjs +2 -0
- package/esm2020/lib/models/permission.model.mjs +2 -0
- package/esm2020/lib/models/select-data-label.model.mjs +2 -0
- package/esm2020/lib/models/subscription.model.mjs +2 -0
- package/esm2020/lib/models/support-ticket.model.mjs +2 -0
- package/esm2020/lib/models/user-group.model.mjs +2 -0
- package/esm2020/lib/models/user.model.mjs +2 -0
- package/esm2020/lib/offline-db.mjs +519 -0
- package/esm2020/lib/offline-manager.service.mjs +107 -0
- package/esm2020/lib/pipes/domsanitizor.pipe.mjs +28 -0
- package/esm2020/lib/pipes/filter.pipe.mjs +36 -0
- package/esm2020/lib/pipes/json-parse.pipe.mjs +29 -0
- package/esm2020/lib/pipes/minus-currency.pipe.mjs +16 -0
- package/esm2020/lib/pipes/phone.pipe.mjs +47 -0
- package/esm2020/lib/pipes/pipe.module.mjs +54 -0
- package/esm2020/lib/pipes/reverse-list.pipe.mjs +17 -0
- package/esm2020/lib/pipes/titlecase.pipe.mjs +22 -0
- package/esm2020/lib/resolveio-class.mjs +41 -0
- package/esm2020/lib/shared/shared.module.mjs +91 -0
- package/esm2020/lib/socket-manager.service.mjs +360 -0
- package/esm2020/lib/socket.service.mjs +129 -0
- package/esm2020/lib/standard-pages/contactus/contactus.component.mjs +45 -0
- package/esm2020/lib/standard-pages/faq/faq.component.mjs +45 -0
- package/esm2020/lib/standard-pages/features/features.component.mjs +23 -0
- package/esm2020/lib/standard-pages/home/home.component.mjs +38 -0
- package/esm2020/lib/standard-pages/howitwork/howitwork.component.mjs +23 -0
- package/esm2020/lib/standard-pages/loginsignup/loginsignup.component.mjs +23 -0
- package/esm2020/lib/standard-pages/pricing/pricing.component.mjs +37 -0
- package/esm2020/lib/standard-pages/standard-pages.module.mjs +69 -0
- package/esm2020/lib/support-ticket/detail/support-ticket-detail.component.mjs +204 -0
- package/esm2020/lib/support-ticket/edit/support-ticket-edit.component.mjs +122 -0
- package/esm2020/lib/support-ticket/list/support-ticket-list.component.mjs +137 -0
- package/esm2020/lib/support-ticket/new/support-ticket-new.component.mjs +115 -0
- package/esm2020/lib/support-ticket/support-ticket.component.mjs +63 -0
- package/esm2020/lib/support-ticket/support-ticket.module.mjs +57 -0
- package/esm2020/lib/support-ticket/support-ticket.routing.mjs +20 -0
- package/esm2020/lib/support-ticket/support-ticket.service.mjs +17 -0
- package/esm2020/lib/token-manager.service.mjs +24 -0
- package/esm2020/lib/user-settings/settings/users-settings.component.mjs +312 -0
- package/esm2020/lib/user-settings/user-settings.component.mjs +57 -0
- package/esm2020/lib/user-settings/user-settings.module.mjs +58 -0
- package/esm2020/lib/user-settings/user-settings.permission.mjs +10 -0
- package/esm2020/lib/user-settings/user-settings.routing.mjs +14 -0
- package/esm2020/lib/user-settings/user-settings.service.mjs +17 -0
- package/esm2020/lib/util/action-name.helper.mjs +9 -0
- package/esm2020/lib/util/aws.service.mjs +79 -0
- package/esm2020/lib/util/common.helper.mjs +140 -0
- package/esm2020/lib/util/validation.service.mjs +177 -0
- package/esm2020/lib/util/window-resize.service.mjs +24 -0
- package/esm2020/lib/util/window.service.mjs +16 -0
- package/esm2020/lib/widgets/alert/alert.model.mjs +2 -0
- package/esm2020/lib/widgets/alert/alert.service.mjs +76 -0
- package/esm2020/lib/widgets/chartjs/chart.component.mjs +86 -0
- package/esm2020/lib/widgets/chartjs/chart.module.mjs +17 -0
- package/esm2020/lib/widgets/collapse-table/collapse-table.component.mjs +79 -0
- package/esm2020/lib/widgets/collapse-table/collapse-table.module.mjs +36 -0
- package/esm2020/lib/widgets/data-table/data-table.component.mjs +77 -0
- package/esm2020/lib/widgets/data-table/data-table.model.mjs +2 -0
- package/esm2020/lib/widgets/data-table/data-table.module.mjs +43 -0
- package/esm2020/lib/widgets/date-shortcut/date-shortcut.component.mjs +195 -0
- package/esm2020/lib/widgets/date-shortcut/date-shortcut.module.mjs +34 -0
- package/esm2020/lib/widgets/dialog/dialog.confirm.content.mjs +63 -0
- package/esm2020/lib/widgets/dialog/dialog.error.content.mjs +57 -0
- package/esm2020/lib/widgets/dialog/dialog.input.content.mjs +197 -0
- package/esm2020/lib/widgets/dialog/dialog.login.content.mjs +348 -0
- package/esm2020/lib/widgets/dialog/dialog.notify.content.mjs +57 -0
- package/esm2020/lib/widgets/dialog/dialog.register.content.mjs +330 -0
- package/esm2020/lib/widgets/dialog/dialog.select-data-labels.content.mjs +191 -0
- package/esm2020/lib/widgets/dialog/dialog.select-datetime.content.mjs +140 -0
- package/esm2020/lib/widgets/dialog/dialog.service.mjs +71 -0
- package/esm2020/lib/widgets/file/file-upload.component.mjs +440 -0
- package/esm2020/lib/widgets/file/file-upload.module.mjs +50 -0
- package/esm2020/lib/widgets/form-button/form-button.component.mjs +91 -0
- package/esm2020/lib/widgets/form-button/form-button.module.mjs +30 -0
- package/esm2020/lib/widgets/navbar-main/navbar-main.component.mjs +209 -0
- package/esm2020/lib/widgets/navbar-module/navbar-module.component.mjs +138 -0
- package/esm2020/lib/widgets/navbar-module/navbar-module.model.mjs +2 -0
- package/esm2020/lib/widgets/ngx-tour-ng-bootstrap/ng-bootstrap-tour.service.mjs +14 -0
- package/esm2020/lib/widgets/ngx-tour-ng-bootstrap/ng-bootstrap.module.mjs +34 -0
- package/esm2020/lib/widgets/ngx-tour-ng-bootstrap/step-option.interface.mjs +2 -0
- package/esm2020/lib/widgets/ngx-tour-ng-bootstrap/tour-anchor.directive.mjs +76 -0
- package/esm2020/lib/widgets/ngx-tour-ng-bootstrap/tour-step-template.component.mjs +70 -0
- package/esm2020/lib/widgets/ngx-tour-ng-bootstrap/tour-step-template.service.mjs +10 -0
- package/esm2020/lib/widgets/responsive-button-group/responsive-button-group.component.mjs +38 -0
- package/esm2020/lib/widgets/responsive-button-group/responsive-button-group.module.mjs +26 -0
- package/esm2020/lib/widgets/scheduler/scheduler.component.mjs +185 -0
- package/esm2020/lib/widgets/scheduler/scheduler.module.mjs +39 -0
- package/esm2020/lib/widgets/sort-table/sort-table-header.component.mjs +67 -0
- package/esm2020/lib/widgets/sort-table/sort-table-ngfor.component.mjs +48 -0
- package/esm2020/lib/widgets/sort-table/sort-table.directive.mjs +174 -0
- package/esm2020/lib/widgets/sort-table/sort-table.module.mjs +40 -0
- package/esm2020/lib/widgets/user-role/user-role.component.mjs +27 -0
- package/esm2020/lib/widgets/user-role/user-role.module.mjs +26 -0
- package/esm2020/public_api.mjs +109 -0
- package/esm2020/resolveio-client-lib-core.mjs +5 -0
- package/fesm2015/resolveio-client-lib-core.mjs +8856 -0
- package/fesm2015/resolveio-client-lib-core.mjs.map +1 -0
- package/fesm2020/resolveio-client-lib-core.mjs +8849 -0
- package/fesm2020/resolveio-client-lib-core.mjs.map +1 -0
- package/lib/account-manager.service.d.ts +42 -0
- package/lib/auth/auth-guard.service.d.ts +25 -0
- package/lib/auth/auth-permissions.service.d.ts +10 -0
- package/lib/auth/auth.service.d.ts +29 -0
- package/lib/auth/auth365.component.d.ts +20 -0
- package/lib/auth/can-deactivate-guard.service.d.ts +11 -0
- package/lib/auth/enroll.component.d.ts +28 -0
- package/lib/auth/forgot-password.component.d.ts +28 -0
- package/lib/core.component.d.ts +69 -0
- package/lib/core.module.d.ts +32 -0
- package/lib/core.service.d.ts +53 -0
- package/lib/directive/focus.d.ts +10 -0
- package/lib/directive/scroll.d.ts +20 -0
- package/lib/home/about-us.component.d.ts +15 -0
- package/lib/home/contact-us.component.d.ts +20 -0
- package/lib/home/demo.component.d.ts +25 -0
- package/lib/home/home.component.d.ts +33 -0
- package/lib/home/home.module.d.ts +13 -0
- package/lib/logger/logger.component.d.ts +37 -0
- package/lib/models/app-status.model.d.ts +4 -0
- package/lib/models/collection-document.model.d.ts +6 -0
- package/lib/models/cron-job.model.d.ts +13 -0
- package/lib/models/dialog.model.d.ts +18 -0
- package/lib/models/file.model.d.ts +9 -0
- package/lib/models/log-method-latency.model.d.ts +7 -0
- package/lib/models/navbar-main-tab.model.d.ts +14 -0
- package/lib/models/pagination.model.d.ts +17 -0
- package/lib/models/permission.model.d.ts +13 -0
- package/lib/models/select-data-label.model.d.ts +9 -0
- package/lib/models/subscription.model.d.ts +19 -0
- package/lib/models/support-ticket.model.d.ts +71 -0
- package/lib/models/user-group.model.d.ts +19 -0
- package/lib/models/user.model.d.ts +70 -0
- package/lib/offline-db.d.ts +28 -0
- package/lib/offline-manager.service.d.ts +23 -0
- package/lib/pipes/domsanitizor.pipe.d.ts +10 -0
- package/lib/pipes/filter.pipe.d.ts +12 -0
- package/lib/pipes/json-parse.pipe.d.ts +7 -0
- package/lib/pipes/minus-currency.pipe.d.ts +7 -0
- package/lib/pipes/phone.pipe.d.ts +7 -0
- package/lib/pipes/pipe.module.d.ts +13 -0
- package/lib/pipes/reverse-list.pipe.d.ts +6 -0
- package/lib/pipes/titlecase.pipe.d.ts +7 -0
- package/lib/resolveio-class.d.ts +26 -0
- package/lib/shared/shared.module.d.ts +16 -0
- package/lib/socket-manager.service.d.ts +33 -0
- package/lib/socket.service.d.ts +33 -0
- package/lib/standard-pages/contactus/contactus.component.d.ts +17 -0
- package/lib/standard-pages/faq/faq.component.d.ts +17 -0
- package/lib/standard-pages/features/features.component.d.ts +12 -0
- package/lib/standard-pages/home/home.component.d.ts +14 -0
- package/lib/standard-pages/howitwork/howitwork.component.d.ts +12 -0
- package/lib/standard-pages/loginsignup/loginsignup.component.d.ts +12 -0
- package/lib/standard-pages/pricing/pricing.component.d.ts +14 -0
- package/lib/standard-pages/standard-pages.module.d.ts +17 -0
- package/lib/support-ticket/detail/support-ticket-detail.component.d.ts +32 -0
- package/lib/support-ticket/edit/support-ticket-edit.component.d.ts +30 -0
- package/lib/support-ticket/list/support-ticket-list.component.d.ts +26 -0
- package/lib/support-ticket/new/support-ticket-new.component.d.ts +26 -0
- package/lib/support-ticket/support-ticket.component.d.ts +20 -0
- package/lib/support-ticket/support-ticket.module.d.ts +16 -0
- package/lib/support-ticket/support-ticket.routing.d.ts +3 -0
- package/lib/support-ticket/support-ticket.service.d.ts +9 -0
- package/lib/token-manager.service.d.ts +11 -0
- package/lib/user-settings/settings/users-settings.component.d.ts +57 -0
- package/lib/user-settings/user-settings.component.d.ts +20 -0
- package/lib/user-settings/user-settings.module.d.ts +15 -0
- package/lib/user-settings/user-settings.permission.d.ts +2 -0
- package/lib/user-settings/user-settings.routing.d.ts +3 -0
- package/lib/user-settings/user-settings.service.d.ts +9 -0
- package/lib/util/action-name.helper.d.ts +1 -0
- package/lib/util/aws.service.d.ts +16 -0
- package/lib/util/common.helper.d.ts +12 -0
- package/lib/util/validation.service.d.ts +85 -0
- package/lib/util/window-resize.service.d.ts +12 -0
- package/lib/util/window.service.d.ts +6 -0
- package/lib/widgets/alert/alert.model.d.ts +1 -0
- package/lib/widgets/alert/alert.service.d.ts +11 -0
- package/lib/widgets/chartjs/chart.component.d.ts +22 -0
- package/lib/widgets/chartjs/chart.module.d.ts +8 -0
- package/lib/widgets/collapse-table/collapse-table.component.d.ts +23 -0
- package/lib/widgets/collapse-table/collapse-table.module.d.ts +9 -0
- package/lib/widgets/data-table/data-table.component.d.ts +23 -0
- package/lib/widgets/data-table/data-table.model.d.ts +13 -0
- package/lib/widgets/data-table/data-table.module.d.ts +12 -0
- package/lib/widgets/date-shortcut/date-shortcut.component.d.ts +20 -0
- package/lib/widgets/date-shortcut/date-shortcut.module.d.ts +10 -0
- package/lib/widgets/dialog/dialog.confirm.content.d.ts +12 -0
- package/lib/widgets/dialog/dialog.error.content.d.ts +11 -0
- package/lib/widgets/dialog/dialog.input.content.d.ts +18 -0
- package/lib/widgets/dialog/dialog.login.content.d.ts +16 -0
- package/lib/widgets/dialog/dialog.notify.content.d.ts +11 -0
- package/lib/widgets/dialog/dialog.register.content.d.ts +13 -0
- package/lib/widgets/dialog/dialog.select-data-labels.content.d.ts +22 -0
- package/lib/widgets/dialog/dialog.select-datetime.content.d.ts +16 -0
- package/lib/widgets/dialog/dialog.service.d.ts +18 -0
- package/lib/widgets/file/file-upload.component.d.ts +49 -0
- package/lib/widgets/file/file-upload.module.d.ts +14 -0
- package/lib/widgets/form-button/form-button.component.d.ts +14 -0
- package/lib/widgets/form-button/form-button.module.d.ts +9 -0
- package/lib/widgets/navbar-main/navbar-main.component.d.ts +52 -0
- package/lib/widgets/navbar-module/navbar-module.component.d.ts +24 -0
- package/lib/widgets/navbar-module/navbar-module.model.d.ts +13 -0
- package/lib/widgets/ngx-tour-ng-bootstrap/ng-bootstrap-tour.service.d.ts +7 -0
- package/lib/widgets/ngx-tour-ng-bootstrap/ng-bootstrap.module.d.ts +17 -0
- package/lib/widgets/ngx-tour-ng-bootstrap/step-option.interface.d.ts +5 -0
- package/lib/widgets/ngx-tour-ng-bootstrap/tour-anchor.directive.d.ts +26 -0
- package/lib/widgets/ngx-tour-ng-bootstrap/tour-step-template.component.d.ts +20 -0
- package/lib/widgets/ngx-tour-ng-bootstrap/tour-step-template.service.d.ts +9 -0
- package/lib/widgets/responsive-button-group/responsive-button-group.component.d.ts +17 -0
- package/lib/widgets/responsive-button-group/responsive-button-group.module.d.ts +8 -0
- package/lib/widgets/scheduler/scheduler.component.d.ts +50 -0
- package/lib/widgets/scheduler/scheduler.module.d.ts +11 -0
- package/lib/widgets/sort-table/sort-table-header.component.d.ts +23 -0
- package/lib/widgets/sort-table/sort-table-ngfor.component.d.ts +17 -0
- package/lib/widgets/sort-table/sort-table.directive.d.ts +48 -0
- package/lib/widgets/sort-table/sort-table.module.d.ts +11 -0
- package/lib/widgets/user-role/user-role.component.d.ts +10 -0
- package/lib/widgets/user-role/user-role.module.d.ts +8 -0
- package/package.json +72 -0
- package/public_api.d.ts +105 -0
- package/resolveio-client-lib-core.d.ts +5 -0
- package/src/assets/css/font-awesome.css +2338 -0
- package/src/assets/css/home-page-layout.css +7221 -0
- package/src/assets/css/home-page-theme.css +1157 -0
- package/src/assets/css/leaflet.css +629 -0
- package/src/assets/css/owl.carousel.min.css +1 -0
- package/src/assets/css/owl.theme.min.css +1 -0
- package/src/assets/css/style.css +1283 -0
- package/src/assets/css/tablet.css +18 -0
- package/src/assets/css/toastr.css +192 -0
- package/src/assets/images/ResolveIO.png +0 -0
- package/src/assets/images/ResolveIO_white.png +0 -0
- package/src/assets/images/contactus/Contact_bnr.jpg +0 -0
- package/src/assets/images/contactus/cont-comp.png +0 -0
- package/src/assets/images/contactus/cont-mail.png +0 -0
- package/src/assets/images/contactus/cont-phone.png +0 -0
- package/src/assets/images/contactus/form-img.png +0 -0
- package/src/assets/images/contactus/user.png +0 -0
- package/src/assets/images/faq/Faq-form.png +0 -0
- package/src/assets/images/faq/clientlogo1.jpg +0 -0
- package/src/assets/images/faq/clientlogo2.jpg +0 -0
- package/src/assets/images/faq/clientlogo3.jpg +0 -0
- package/src/assets/images/faq/clientlogo4.jpg +0 -0
- package/src/assets/images/faq/clientlogo5.jpg +0 -0
- package/src/assets/images/faq/faq_banner copy.jpg +0 -0
- package/src/assets/images/faq/faq_banner.jpg +0 -0
- package/src/assets/images/faq/faqwomen.jpg +0 -0
- package/src/assets/images/faq/mail-input.png +0 -0
- package/src/assets/images/faq/user-input.png +0 -0
- package/src/assets/images/favicon-32x32.png +0 -0
- package/src/assets/images/features/future-bnr.jpg +0 -0
- package/src/assets/images/features/polygon.png +0 -0
- package/src/assets/images/home/banner-1.jpg +0 -0
- package/src/assets/images/home/booking.png +0 -0
- package/src/assets/images/home/client.jpg +0 -0
- package/src/assets/images/home/client2.jpg +0 -0
- package/src/assets/images/home/clientlogo1.jpg +0 -0
- package/src/assets/images/home/clientlogo2.jpg +0 -0
- package/src/assets/images/home/clientlogo3.jpg +0 -0
- package/src/assets/images/home/clientlogo4.jpg +0 -0
- package/src/assets/images/home/clientlogo5.jpg +0 -0
- package/src/assets/images/home/easy_invoicing.png +0 -0
- package/src/assets/images/home/inventory.png +0 -0
- package/src/assets/images/home/manage.png +0 -0
- package/src/assets/images/home/more.png +0 -0
- package/src/assets/images/home/order_management.png +0 -0
- package/src/assets/images/home/plan.png +0 -0
- package/src/assets/images/home-page/AjaxLoader.gif +0 -0
- package/src/assets/images/home-page/ResolveIO_white.png +0 -0
- package/src/assets/images/home-page/abt_thumb.png +0 -0
- package/src/assets/images/home-page/aero_icon_right_white.png +0 -0
- package/src/assets/images/home-page/arrow_btn.png +0 -0
- package/src/assets/images/home-page/banner_thumb.png +0 -0
- package/src/assets/images/home-page/blank.gif +0 -0
- package/src/assets/images/home-page/close_icon.png +0 -0
- package/src/assets/images/home-page/contact_bg.jpg +0 -0
- package/src/assets/images/home-page/email_icon.png +0 -0
- package/src/assets/images/home-page/fancybox_loading.gif +0 -0
- package/src/assets/images/home-page/fancybox_loading@2x.gif +0 -0
- package/src/assets/images/home-page/fancybox_overlay.png +0 -0
- package/src/assets/images/home-page/fancybox_sprite.png +0 -0
- package/src/assets/images/home-page/fancybox_sprite@2x.png +0 -0
- package/src/assets/images/home-page/header_center_after.png +0 -0
- package/src/assets/images/home-page/header_left_after.png +0 -0
- package/src/assets/images/home-page/home_banner_1.jpg +0 -0
- package/src/assets/images/home-page/logo.png +0 -0
- package/src/assets/images/home-page/logo_thumb_ace.png +0 -0
- package/src/assets/images/home-page/logo_thumb_acquire.png +0 -0
- package/src/assets/images/home-page/logo_thumb_chemtech.jpeg +0 -0
- package/src/assets/images/home-page/logo_thumb_cherokee.png +0 -0
- package/src/assets/images/home-page/logo_thumb_coilchem.png +0 -0
- package/src/assets/images/home-page/logo_thumb_dcs.png +0 -0
- package/src/assets/images/home-page/logo_thumb_integrity.png +0 -0
- package/src/assets/images/home-page/logo_thumb_intrepid.png +0 -0
- package/src/assets/images/home-page/logo_thumb_omt.png +0 -0
- package/src/assets/images/home-page/logo_thumb_quantum.png +0 -0
- package/src/assets/images/home-page/logo_thumb_smartchemical.png +0 -0
- package/src/assets/images/home-page/logo_thumb_terra.png +0 -0
- package/src/assets/images/home-page/logo_thumb_truechem.png +0 -0
- package/src/assets/images/home-page/password_icon.png +0 -0
- package/src/assets/images/home-page/phone_icon.png +0 -0
- package/src/assets/images/home-page/software_icon_1.png +0 -0
- package/src/assets/images/home-page/software_icon_2.png +0 -0
- package/src/assets/images/home-page/software_sec_bg.jpg +0 -0
- package/src/assets/images/home-page/software_thumb.png +0 -0
- package/src/assets/images/home-page/white_arrow_btn.png +0 -0
- package/src/assets/images/howitwork/add-booking.png +0 -0
- package/src/assets/images/howitwork/add-order.png +0 -0
- package/src/assets/images/howitwork/add-stuff.png +0 -0
- package/src/assets/images/howitwork/how_banner.jpg +0 -0
- package/src/assets/images/howitwork/howimg1.png +0 -0
- package/src/assets/images/howitwork/howimg2.png +0 -0
- package/src/assets/images/howitwork/step-check.png +0 -0
- package/src/assets/images/loginsignup/formimg.jpg +0 -0
- package/src/assets/images/loginsignup/login-logo.png +0 -0
- package/src/assets/images/owl.video.play.png +0 -0
- package/src/assets/images/pricing/Pricing_banner.jpg +0 -0
- package/src/assets/images/pricing/clientlogo1.jpg +0 -0
- package/src/assets/images/pricing/clientlogo2.jpg +0 -0
- package/src/assets/images/pricing/clientlogo3.jpg +0 -0
- package/src/assets/images/pricing/clientlogo4.jpg +0 -0
- package/src/assets/images/pricing/clientlogo5.jpg +0 -0
- package/src/assets/images/pricing/info-ico.png +0 -0
- package/src/assets/scss/toastr.scss +201 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { BehaviorSubject, Subscription } from 'rxjs';
|
|
2
|
+
import { UserModel } from './models/user.model';
|
|
3
|
+
import { SocketManagerService } from './socket-manager.service';
|
|
4
|
+
import { TokenManagerService } from './token-manager.service';
|
|
5
|
+
import { AlertService } from './widgets/alert/alert.service';
|
|
6
|
+
import { OfflineManagerService } from './offline-manager.service';
|
|
7
|
+
import { Router } from '@angular/router';
|
|
8
|
+
import { HttpClient } from '@angular/common/http';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class AccountManagerService {
|
|
11
|
+
private _router;
|
|
12
|
+
private _socket;
|
|
13
|
+
private _token;
|
|
14
|
+
private _http;
|
|
15
|
+
private _alert;
|
|
16
|
+
private _offline;
|
|
17
|
+
user: BehaviorSubject<UserModel>;
|
|
18
|
+
initCompleted: BehaviorSubject<boolean>;
|
|
19
|
+
loginCompleted: BehaviorSubject<boolean>;
|
|
20
|
+
user$: Subscription;
|
|
21
|
+
appVersion: number;
|
|
22
|
+
environment: any;
|
|
23
|
+
constructor(_router: Router, _socket: SocketManagerService, _token: TokenManagerService, _http: HttpClient, _alert: AlertService, _offline: OfflineManagerService);
|
|
24
|
+
initLoginManager(environment: any, appVersion: any): void;
|
|
25
|
+
private initLogin;
|
|
26
|
+
getAccessToken(refreshToken: any): void;
|
|
27
|
+
logIn(username: string, password: string): Promise<unknown>;
|
|
28
|
+
logIn365(azure_token: string): Promise<unknown>;
|
|
29
|
+
resetUserPassword(username: string): Promise<unknown>;
|
|
30
|
+
logOut(): void;
|
|
31
|
+
openSocket(token: any, appVersion: any): void;
|
|
32
|
+
closeSocket(): void;
|
|
33
|
+
setUser(user: UserModel): void;
|
|
34
|
+
getUser(): UserModel;
|
|
35
|
+
getSocketStatus(): BehaviorSubject<number>;
|
|
36
|
+
isUserInView(view: string): boolean;
|
|
37
|
+
isUserSuperAdmin(): boolean;
|
|
38
|
+
isInitCompleted(): Promise<unknown>;
|
|
39
|
+
isLoginCompleted(): Promise<unknown>;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccountManagerService, never>;
|
|
41
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AccountManagerService>;
|
|
42
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { AccountManagerService } from '../account-manager.service';
|
|
2
|
+
import { CanActivate, Router, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
|
|
3
|
+
import { AuthService } from './auth.service';
|
|
4
|
+
import { DialogService } from '../widgets/dialog/dialog.service';
|
|
5
|
+
import { OfflineManagerService } from '../offline-manager.service';
|
|
6
|
+
import { CoreService } from '../core.service';
|
|
7
|
+
import { AuthPermissionService } from './auth-permissions.service';
|
|
8
|
+
import { AlertService } from '../widgets/alert/alert.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class AuthGuard implements CanActivate {
|
|
11
|
+
private _router;
|
|
12
|
+
private _auth;
|
|
13
|
+
private _ds;
|
|
14
|
+
private _account;
|
|
15
|
+
private _app;
|
|
16
|
+
private _offline;
|
|
17
|
+
private _aps;
|
|
18
|
+
private _alert;
|
|
19
|
+
redirectUrl: string;
|
|
20
|
+
constructor(_router: Router, _auth: AuthService, _ds: DialogService, _account: AccountManagerService, _app: CoreService, _offline: OfflineManagerService, _aps: AuthPermissionService, _alert: AlertService);
|
|
21
|
+
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Promise<boolean> | boolean;
|
|
22
|
+
doesLinkHaveParameter(link: string): boolean;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthGuard, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthGuard>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ModulePermissionModel } from '../models/permission.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AuthPermissionService {
|
|
4
|
+
modules: ModulePermissionModel[];
|
|
5
|
+
constructor();
|
|
6
|
+
registerModule(modulePermission: ModulePermissionModel): void;
|
|
7
|
+
getAllModulePermissions(): ModulePermissionModel[];
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthPermissionService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthPermissionService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { DialogService } from '../widgets/dialog/dialog.service';
|
|
2
|
+
import { AccountManagerService } from '../account-manager.service';
|
|
3
|
+
import { AlertService } from '../widgets/alert/alert.service';
|
|
4
|
+
import { UserModel } from '../models/user.model';
|
|
5
|
+
import { ValidationService } from '../util/validation.service';
|
|
6
|
+
import { SocketManagerService } from '../socket-manager.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class AuthService {
|
|
9
|
+
private _ds;
|
|
10
|
+
private _vs;
|
|
11
|
+
private _alert;
|
|
12
|
+
private _account;
|
|
13
|
+
private _socket;
|
|
14
|
+
environment: any;
|
|
15
|
+
userHasPhoneNumber: boolean;
|
|
16
|
+
userData: any;
|
|
17
|
+
userAgentApplication: any;
|
|
18
|
+
constructor(_ds: DialogService, _vs: ValidationService, _alert: AlertService, _account: AccountManagerService, _socket: SocketManagerService);
|
|
19
|
+
setupMSSingleSignOn(environment: any): void;
|
|
20
|
+
setUserHasPhoneNumber(value: boolean): void;
|
|
21
|
+
registerUser(other: Object, sendEnrollmentEmail?: boolean): Promise<unknown>;
|
|
22
|
+
editUser(user: UserModel): Promise<unknown>;
|
|
23
|
+
loginUser(): Promise<any>;
|
|
24
|
+
private microsoftSignOn;
|
|
25
|
+
private loginModal;
|
|
26
|
+
removeUser(id: string): Promise<unknown>;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
|
|
28
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BaseComponent } from '../resolveio-class';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { ProviderService } from '../resolveio-class';
|
|
4
|
+
import { DialogService } from '../widgets/dialog/dialog.service';
|
|
5
|
+
import { HttpClient } from '@angular/common/http';
|
|
6
|
+
import { SocketManagerService } from '../socket-manager.service';
|
|
7
|
+
import { CoreService } from '../core.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class Auth365Component extends BaseComponent {
|
|
10
|
+
private _app;
|
|
11
|
+
private _route;
|
|
12
|
+
private _services;
|
|
13
|
+
private _http;
|
|
14
|
+
private _ds;
|
|
15
|
+
private _socket;
|
|
16
|
+
token: string;
|
|
17
|
+
constructor(_app: CoreService, _route: ActivatedRoute, _services: ProviderService, _http: HttpClient, _ds: DialogService, _socket: SocketManagerService);
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Auth365Component, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Auth365Component, "ng-component", never, {}, {}, never, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CanDeactivate } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface CanComponentDeactivate {
|
|
5
|
+
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
6
|
+
}
|
|
7
|
+
export declare class CanDeactivateGuard implements CanDeactivate<CanComponentDeactivate> {
|
|
8
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { BaseComponent } from '../resolveio-class';
|
|
2
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { ActivatedRoute } from '@angular/router';
|
|
5
|
+
import { Subscription } from 'rxjs';
|
|
6
|
+
import { UserModel } from '../models/user.model';
|
|
7
|
+
import { ProviderService } from '../resolveio-class';
|
|
8
|
+
import { DialogService } from '../widgets/dialog/dialog.service';
|
|
9
|
+
import { HttpClient } from '@angular/common/http';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class EnrollComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
12
|
+
private _route;
|
|
13
|
+
private _services;
|
|
14
|
+
private _http;
|
|
15
|
+
private _ds;
|
|
16
|
+
serverURL: string;
|
|
17
|
+
form: FormGroup;
|
|
18
|
+
user: UserModel;
|
|
19
|
+
subscription$: Subscription[];
|
|
20
|
+
token: string;
|
|
21
|
+
disableFormButton: boolean;
|
|
22
|
+
constructor(_route: ActivatedRoute, _services: ProviderService, _http: HttpClient, _ds: DialogService);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
ngOnDestroy(): void;
|
|
25
|
+
submit(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnrollComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EnrollComponent, "ng-component", never, {}, {}, never, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { BaseComponent } from '../resolveio-class';
|
|
2
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { ActivatedRoute } from '@angular/router';
|
|
5
|
+
import { Subscription } from 'rxjs';
|
|
6
|
+
import { UserModel } from '../models/user.model';
|
|
7
|
+
import { ProviderService } from '../resolveio-class';
|
|
8
|
+
import { DialogService } from '../widgets/dialog/dialog.service';
|
|
9
|
+
import { HttpClient } from '@angular/common/http';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class ForgotPasswordComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
12
|
+
private _route;
|
|
13
|
+
private _services;
|
|
14
|
+
private _http;
|
|
15
|
+
private _ds;
|
|
16
|
+
serverURL: string;
|
|
17
|
+
form: FormGroup;
|
|
18
|
+
user: UserModel;
|
|
19
|
+
subscription$: Subscription[];
|
|
20
|
+
token: string;
|
|
21
|
+
disableFormButton: boolean;
|
|
22
|
+
constructor(_route: ActivatedRoute, _services: ProviderService, _http: HttpClient, _ds: DialogService);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
ngOnDestroy(): void;
|
|
25
|
+
submit(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "ng-component", never, {}, {}, never, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { OnInit, ElementRef } from '@angular/core';
|
|
2
|
+
import { UserModel } from './models/user.model';
|
|
3
|
+
import { AppStatusModel } from './models/app-status.model';
|
|
4
|
+
import { DeviceDetectorService } from 'ngx-device-detector';
|
|
5
|
+
import { ResizeService } from './util/window-resize.service';
|
|
6
|
+
import { ProviderService, BaseComponent } from './resolveio-class';
|
|
7
|
+
import { OfflineManagerService } from './offline-manager.service';
|
|
8
|
+
import { LocalStorageService } from 'ngx-localstorage';
|
|
9
|
+
import { AuthService } from './auth/auth.service';
|
|
10
|
+
import { AuthPermissionService } from './auth/auth-permissions.service';
|
|
11
|
+
import { DialogService } from './widgets/dialog/dialog.service';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
export declare class CoreComponent extends BaseComponent implements OnInit {
|
|
14
|
+
private _deviceDet;
|
|
15
|
+
private _ds;
|
|
16
|
+
private _resizeService;
|
|
17
|
+
_services: ProviderService;
|
|
18
|
+
private _offline;
|
|
19
|
+
private _storage;
|
|
20
|
+
private _auth;
|
|
21
|
+
private _aps;
|
|
22
|
+
appVersion: number;
|
|
23
|
+
environment: any;
|
|
24
|
+
logo: string;
|
|
25
|
+
navTabs: string;
|
|
26
|
+
userHasPhoneNumber: boolean;
|
|
27
|
+
client: string;
|
|
28
|
+
standardProgram: string;
|
|
29
|
+
tourStops: any[];
|
|
30
|
+
showResolveIOHomepage: boolean;
|
|
31
|
+
el_navBarMain: ElementRef;
|
|
32
|
+
el_navBarModule: ElementRef;
|
|
33
|
+
serverVersion: number;
|
|
34
|
+
year: string;
|
|
35
|
+
fullScreen: boolean;
|
|
36
|
+
windowSizeHeight: number;
|
|
37
|
+
windowSizeWidth: number;
|
|
38
|
+
navbarMainHeight: number;
|
|
39
|
+
statusHeight: number;
|
|
40
|
+
connectedHeight: number;
|
|
41
|
+
isDevice: boolean;
|
|
42
|
+
showNavigationMenu: boolean;
|
|
43
|
+
initVersion: boolean;
|
|
44
|
+
openNavMod: boolean;
|
|
45
|
+
tourStarted: boolean;
|
|
46
|
+
isConnected: boolean;
|
|
47
|
+
isConnecting: boolean;
|
|
48
|
+
socketStatus: number;
|
|
49
|
+
user: UserModel;
|
|
50
|
+
status: AppStatusModel;
|
|
51
|
+
collapsableMenu: boolean;
|
|
52
|
+
fontSize: number;
|
|
53
|
+
openedWindow: boolean;
|
|
54
|
+
invalidVersion: boolean;
|
|
55
|
+
isOffline: boolean;
|
|
56
|
+
foundUpdate: boolean;
|
|
57
|
+
orientation: string;
|
|
58
|
+
isResolveIO: boolean;
|
|
59
|
+
constructor(_deviceDet: DeviceDetectorService, _ds: DialogService, _resizeService: ResizeService, _services: ProviderService, _offline: OfflineManagerService, _storage: LocalStorageService, _auth: AuthService, _aps: AuthPermissionService);
|
|
60
|
+
ngOnInit(): void;
|
|
61
|
+
getNavbarModuleHeight(): any;
|
|
62
|
+
onPushBackButton(): void;
|
|
63
|
+
onPushReloadButton(): void;
|
|
64
|
+
onPushForwardButton(): void;
|
|
65
|
+
openNav(): void;
|
|
66
|
+
closeNav(): void;
|
|
67
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CoreComponent, never>;
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CoreComponent, "resolveio-client-lib-core", never, { "appVersion": "appVersion"; "environment": "environment"; "logo": "logo"; "navTabs": "navTabs"; "userHasPhoneNumber": "userHasPhoneNumber"; "client": "client"; "standardProgram": "standardProgram"; "tourStops": "tourStops"; "showResolveIOHomepage": "showResolveIOHomepage"; }, {}, never, never>;
|
|
69
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./core.component";
|
|
3
|
+
import * as i2 from "./logger/logger.component";
|
|
4
|
+
import * as i3 from "./widgets/navbar-main/navbar-main.component";
|
|
5
|
+
import * as i4 from "./widgets/navbar-module/navbar-module.component";
|
|
6
|
+
import * as i5 from "./auth/forgot-password.component";
|
|
7
|
+
import * as i6 from "./auth/enroll.component";
|
|
8
|
+
import * as i7 from "./auth/auth365.component";
|
|
9
|
+
import * as i8 from "./directive/focus";
|
|
10
|
+
import * as i9 from "./directive/scroll";
|
|
11
|
+
import * as i10 from "./widgets/dialog/dialog.confirm.content";
|
|
12
|
+
import * as i11 from "./widgets/dialog/dialog.error.content";
|
|
13
|
+
import * as i12 from "./widgets/dialog/dialog.input.content";
|
|
14
|
+
import * as i13 from "./widgets/dialog/dialog.notify.content";
|
|
15
|
+
import * as i14 from "./widgets/dialog/dialog.select-datetime.content";
|
|
16
|
+
import * as i15 from "./widgets/dialog/dialog.select-data-labels.content";
|
|
17
|
+
import * as i16 from "./widgets/dialog/dialog.login.content";
|
|
18
|
+
import * as i17 from "./widgets/dialog/dialog.register.content";
|
|
19
|
+
import * as i18 from "./shared/shared.module";
|
|
20
|
+
import * as i19 from "@angular/common/http";
|
|
21
|
+
import * as i20 from "@ng-bootstrap/ng-bootstrap";
|
|
22
|
+
import * as i21 from "ngx-toastr";
|
|
23
|
+
import * as i22 from "./home/home.module";
|
|
24
|
+
import * as i23 from "./standard-pages/standard-pages.module";
|
|
25
|
+
import * as i24 from "ngx-localstorage";
|
|
26
|
+
import * as i25 from "./user-settings/user-settings.module";
|
|
27
|
+
import * as i26 from "@angular/platform-browser/animations";
|
|
28
|
+
export declare class CoreModule {
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CoreModule, never>;
|
|
30
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule, [typeof i1.CoreComponent, typeof i2.LoggerComponent, typeof i3.NavbarMainComponent, typeof i4.NavbarModuleComponent, typeof i5.ForgotPasswordComponent, typeof i6.EnrollComponent, typeof i7.Auth365Component, typeof i8.FocusDirective, typeof i9.ScrollDirective, typeof i10.DialogConfirmContent, typeof i11.DialogErrorContent, typeof i12.DialogInputContent, typeof i13.DialogNotifyContent, typeof i14.DialogSelectDateTimeContent, typeof i15.DialogSelectDataLabelsContent, typeof i16.DialogLoginContent, typeof i17.DialogRegisterContent], [typeof i18.SharedModule, typeof i19.HttpClientModule, typeof i20.NgbModule, typeof i21.ToastrModule, typeof i22.HomeModule, typeof i23.StandardPagesModule, typeof i24.NgxLocalStorageModule, typeof i25.UserSettingsModule, typeof i26.BrowserAnimationsModule], [typeof i1.CoreComponent, typeof i2.LoggerComponent, typeof i3.NavbarMainComponent, typeof i4.NavbarModuleComponent, typeof i5.ForgotPasswordComponent, typeof i6.EnrollComponent, typeof i7.Auth365Component, typeof i8.FocusDirective, typeof i9.ScrollDirective]>;
|
|
31
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CoreModule>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
import { NavbarModel } from './widgets/navbar-module/navbar-module.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CoreService {
|
|
5
|
+
showResolveIOHomepage: BehaviorSubject<boolean>;
|
|
6
|
+
isDevice: BehaviorSubject<boolean>;
|
|
7
|
+
fullScreen: BehaviorSubject<boolean>;
|
|
8
|
+
fsActivated: BehaviorSubject<boolean>;
|
|
9
|
+
hasConnected: BehaviorSubject<boolean>;
|
|
10
|
+
navbarModuleData: BehaviorSubject<{
|
|
11
|
+
title: string;
|
|
12
|
+
module: string;
|
|
13
|
+
description: string;
|
|
14
|
+
description_name: string;
|
|
15
|
+
tabs: any[];
|
|
16
|
+
}>;
|
|
17
|
+
hasStatusMessage: BehaviorSubject<boolean>;
|
|
18
|
+
alertData: BehaviorSubject<{
|
|
19
|
+
type: string;
|
|
20
|
+
message: string;
|
|
21
|
+
timer: number;
|
|
22
|
+
showing: boolean;
|
|
23
|
+
}>;
|
|
24
|
+
isInvalidVersion: BehaviorSubject<boolean>;
|
|
25
|
+
isInvalidSW: BehaviorSubject<boolean>;
|
|
26
|
+
environment: BehaviorSubject<any>;
|
|
27
|
+
client: BehaviorSubject<string>;
|
|
28
|
+
standardProgram: BehaviorSubject<boolean>;
|
|
29
|
+
navTabs: BehaviorSubject<any[]>;
|
|
30
|
+
tourStops: BehaviorSubject<any[]>;
|
|
31
|
+
tourStarted: BehaviorSubject<boolean>;
|
|
32
|
+
isDemo: BehaviorSubject<boolean>;
|
|
33
|
+
isLoggingOut: BehaviorSubject<boolean>;
|
|
34
|
+
constructor();
|
|
35
|
+
setResolveIOHomepage(showResolveIOHomepage: boolean): void;
|
|
36
|
+
setFullScreen(fullScreen: boolean): void;
|
|
37
|
+
setFsActivated(activated: boolean): void;
|
|
38
|
+
setHasConnected(connected: boolean): void;
|
|
39
|
+
setNavbarModuleData(data: NavbarModel): void;
|
|
40
|
+
setHasStatusMessage(data: boolean): void;
|
|
41
|
+
setIsDevice(data: boolean): void;
|
|
42
|
+
setIsInvalidVersion(data: boolean): void;
|
|
43
|
+
setIsInvalidSW(data: boolean): void;
|
|
44
|
+
setEnvironment(env: any): void;
|
|
45
|
+
setClient(client: any): void;
|
|
46
|
+
setStandardProgram(standardProgram: any): void;
|
|
47
|
+
setNavTabs(navTabs: any): void;
|
|
48
|
+
setTourStops(tourStops: any): void;
|
|
49
|
+
setTourStarted(tourStarted: any): void;
|
|
50
|
+
setDemo(isDemo: boolean): void;
|
|
51
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CoreService, never>;
|
|
52
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CoreService>;
|
|
53
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FocusDirective {
|
|
4
|
+
private element;
|
|
5
|
+
focus: boolean;
|
|
6
|
+
constructor(element: ElementRef);
|
|
7
|
+
protected ngOnChanges(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FocusDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FocusDirective, "[focus]", never, { "focus": "focus"; }, {}, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare type ScrollEvent = {
|
|
4
|
+
isReachingBottom: boolean;
|
|
5
|
+
isReachingTop: boolean;
|
|
6
|
+
originalEvent: Event;
|
|
7
|
+
isWindowEvent: boolean;
|
|
8
|
+
};
|
|
9
|
+
export declare class ScrollDirective {
|
|
10
|
+
onScroll: EventEmitter<ScrollEvent>;
|
|
11
|
+
bottomOffset: number;
|
|
12
|
+
topOffset: number;
|
|
13
|
+
constructor();
|
|
14
|
+
scrolled($event: Event): void;
|
|
15
|
+
windowScrolled($event: Event): void;
|
|
16
|
+
protected windowScrollEvent($event: Event): void;
|
|
17
|
+
protected elementScrollEvent($event: Event): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollDirective, never>;
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollDirective, "[detect-scroll]", never, { "bottomOffset": "bottomOffset"; "topOffset": "topOffset"; }, { "onScroll": "onScroll"; }, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { AuthService } from '../auth/auth.service';
|
|
3
|
+
import { ProviderService, BaseComponent } from '../resolveio-class';
|
|
4
|
+
import { NavbarModel } from '../widgets/navbar-module/navbar-module.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AboutUsComponent extends BaseComponent implements OnInit {
|
|
7
|
+
private auth;
|
|
8
|
+
private _services;
|
|
9
|
+
menuData: NavbarModel;
|
|
10
|
+
constructor(auth: AuthService, _services: ProviderService);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
ngOnDestroy(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AboutUsComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AboutUsComponent, "ng-component", never, {}, {}, never, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { AuthService } from '../auth/auth.service';
|
|
3
|
+
import { ProviderService, BaseComponent } from '../resolveio-class';
|
|
4
|
+
import { FormGroup } from '@angular/forms';
|
|
5
|
+
import { HttpClient } from '@angular/common/http';
|
|
6
|
+
import { NavbarModel } from '../widgets/navbar-module/navbar-module.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class ContactUsComponent extends BaseComponent implements OnInit {
|
|
9
|
+
private auth;
|
|
10
|
+
private _services;
|
|
11
|
+
private _http;
|
|
12
|
+
form: FormGroup;
|
|
13
|
+
menuData: NavbarModel;
|
|
14
|
+
constructor(auth: AuthService, _services: ProviderService, _http: HttpClient);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
ngOnDestroy(): void;
|
|
17
|
+
onSubmitContactUs(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactUsComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactUsComponent, "ng-component", never, {}, {}, never, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NavbarModel } from '../widgets/navbar-module/navbar-module.model';
|
|
3
|
+
import { AuthService } from '../auth/auth.service';
|
|
4
|
+
import { ProviderService, BaseComponent } from '../resolveio-class';
|
|
5
|
+
import { Subscription } from 'rxjs';
|
|
6
|
+
import { HttpClient } from '@angular/common/http';
|
|
7
|
+
import { ActivatedRoute } from '@angular/router';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DemoComponent extends BaseComponent implements OnInit {
|
|
10
|
+
private _route;
|
|
11
|
+
private auth;
|
|
12
|
+
private _services;
|
|
13
|
+
private _http;
|
|
14
|
+
private scrollable;
|
|
15
|
+
private contactus;
|
|
16
|
+
menuData: NavbarModel;
|
|
17
|
+
subscription$: Subscription[];
|
|
18
|
+
constructor(_route: ActivatedRoute, auth: AuthService, _services: ProviderService, _http: HttpClient);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
ngOnDestroy(): void;
|
|
21
|
+
login(): void;
|
|
22
|
+
scrollToBottom(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DemoComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DemoComponent, "ng-component", never, {}, {}, never, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NavbarModel } from '../widgets/navbar-module/navbar-module.model';
|
|
3
|
+
import { AuthService } from '../auth/auth.service';
|
|
4
|
+
import { ProviderService, BaseComponent } from '../resolveio-class';
|
|
5
|
+
import { Subscription } from 'rxjs';
|
|
6
|
+
import { FormGroup } from '@angular/forms';
|
|
7
|
+
import { HttpClient } from '@angular/common/http';
|
|
8
|
+
import { ActivatedRoute } from '@angular/router';
|
|
9
|
+
import { CoreService } from '../core.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class HomeComponent extends BaseComponent implements OnInit {
|
|
12
|
+
private _route;
|
|
13
|
+
private auth;
|
|
14
|
+
private _services;
|
|
15
|
+
private _http;
|
|
16
|
+
private _app;
|
|
17
|
+
private scrollable;
|
|
18
|
+
private contactus;
|
|
19
|
+
menuData: NavbarModel;
|
|
20
|
+
selectedSolution: string;
|
|
21
|
+
subscription$: Subscription[];
|
|
22
|
+
showResolveIOHomepage: any;
|
|
23
|
+
isLoggedIn: boolean;
|
|
24
|
+
form: FormGroup;
|
|
25
|
+
constructor(_route: ActivatedRoute, auth: AuthService, _services: ProviderService, _http: HttpClient, _app: CoreService);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
ngOnDestroy(): void;
|
|
28
|
+
login(): void;
|
|
29
|
+
onSubmitContactUs(): void;
|
|
30
|
+
scrollToBottom(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HomeComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HomeComponent, "ng-component", never, {}, {}, never, never>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./home.component";
|
|
3
|
+
import * as i2 from "./about-us.component";
|
|
4
|
+
import * as i3 from "./contact-us.component";
|
|
5
|
+
import * as i4 from "./demo.component";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
import * as i6 from "../shared/shared.module";
|
|
8
|
+
import * as i7 from "@ng-bootstrap/ng-bootstrap";
|
|
9
|
+
export declare class HomeModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HomeModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HomeModule, [typeof i1.HomeComponent, typeof i2.AboutUsComponent, typeof i3.ContactUsComponent, typeof i4.DemoComponent], [typeof i5.CommonModule, typeof i6.SharedModule, typeof i7.NgbModule], [typeof i1.HomeComponent, typeof i2.AboutUsComponent, typeof i3.ContactUsComponent, typeof i4.DemoComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HomeModule>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { Subscription } from 'rxjs';
|
|
3
|
+
import { ProviderService, BaseComponent } from '../resolveio-class';
|
|
4
|
+
import { DialogService } from '../widgets/dialog/dialog.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class LoggerComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
7
|
+
private _services;
|
|
8
|
+
private _ds;
|
|
9
|
+
private _cd;
|
|
10
|
+
subscription$: Subscription[];
|
|
11
|
+
logs: any[];
|
|
12
|
+
entries_per_page: number;
|
|
13
|
+
page_num: number;
|
|
14
|
+
log_cnt: number;
|
|
15
|
+
user: any;
|
|
16
|
+
users: any[];
|
|
17
|
+
dateStartElem: any;
|
|
18
|
+
dateEndElem: any;
|
|
19
|
+
timeStartElem: any;
|
|
20
|
+
timeEndElem: any;
|
|
21
|
+
dateStart: Date;
|
|
22
|
+
dateEnd: Date;
|
|
23
|
+
selectedTypes: any[];
|
|
24
|
+
collection: string;
|
|
25
|
+
method: string;
|
|
26
|
+
route: string;
|
|
27
|
+
id_document: string;
|
|
28
|
+
constructor(_services: ProviderService, _ds: DialogService, _cd: ChangeDetectorRef);
|
|
29
|
+
ngOnInit(): void;
|
|
30
|
+
ngOnDestroy(): void;
|
|
31
|
+
getLogData(): void;
|
|
32
|
+
selectType(type: string): void;
|
|
33
|
+
icon(type: any): "success" | "info" | "danger" | "primary" | "secondary";
|
|
34
|
+
removeAllLogs(): void;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoggerComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoggerComponent, "ng-component", never, {}, {}, never, never>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CollectionDocument } from './collection-document.model';
|
|
2
|
+
export interface CronJobModel extends CollectionDocument {
|
|
3
|
+
name: string;
|
|
4
|
+
repeat: boolean;
|
|
5
|
+
time_to_run: string;
|
|
6
|
+
method_run: string;
|
|
7
|
+
method_run_data?: Object;
|
|
8
|
+
method_complete?: string;
|
|
9
|
+
method_complete_data?: Object;
|
|
10
|
+
running: boolean;
|
|
11
|
+
timezone?: string;
|
|
12
|
+
next_run?: Date;
|
|
13
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface DialogInputFieldModel {
|
|
2
|
+
label: string;
|
|
3
|
+
form: string;
|
|
4
|
+
data: string | number | any[];
|
|
5
|
+
validators: any[];
|
|
6
|
+
validatorErrors?: string[];
|
|
7
|
+
validatorMsg?: string[];
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
required?: boolean;
|
|
10
|
+
type?: DialogInputFieldTypes;
|
|
11
|
+
options?: DialogInputFieldSelectOptions[];
|
|
12
|
+
}
|
|
13
|
+
export interface DialogInputFieldSelectOptions {
|
|
14
|
+
value: string | number;
|
|
15
|
+
text: string;
|
|
16
|
+
}
|
|
17
|
+
declare type DialogInputFieldTypes = 'text' | 'number' | 'select' | 'ng-select' | 'state' | 'email' | 'password' | 'textarea';
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface NavbarMainTabModel {
|
|
2
|
+
type: NavbarMainTabType;
|
|
3
|
+
links: NavbarMainTabLinkModel[];
|
|
4
|
+
roles?: string[];
|
|
5
|
+
label?: string;
|
|
6
|
+
left?: number;
|
|
7
|
+
tourAnchor?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare type NavbarMainTabType = 'link' | 'dropdown';
|
|
10
|
+
export interface NavbarMainTabLinkModel {
|
|
11
|
+
routerLink: string;
|
|
12
|
+
label: string;
|
|
13
|
+
role: string;
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare type SortMongo = string | Exclude<SortDirection, {
|
|
2
|
+
$meta: string;
|
|
3
|
+
}> | string[] | {
|
|
4
|
+
[key: string]: SortDirection;
|
|
5
|
+
} | Map<string, SortDirection> | [string, SortDirection][] | [string, SortDirection];
|
|
6
|
+
/** @public */
|
|
7
|
+
export declare type SortDirection = 1 | -1 | 'asc' | 'desc' | 'ascending' | 'descending' | {
|
|
8
|
+
$meta: string;
|
|
9
|
+
};
|
|
10
|
+
export interface PaginationOptions {
|
|
11
|
+
limit?: number;
|
|
12
|
+
skip?: number;
|
|
13
|
+
sort?: SortMongo;
|
|
14
|
+
fields?: {
|
|
15
|
+
[key: string]: number;
|
|
16
|
+
};
|
|
17
|
+
}
|