@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,22 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
+
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
4
|
+
import { SelectDataLabelModel } from '../../models/select-data-label.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DialogSelectDataLabelsContent implements OnInit {
|
|
7
|
+
_activeModal: NgbActiveModal;
|
|
8
|
+
private _fb;
|
|
9
|
+
title: string;
|
|
10
|
+
subtitle: string;
|
|
11
|
+
data: any;
|
|
12
|
+
showArraySubData: any;
|
|
13
|
+
form: FormGroup;
|
|
14
|
+
dialogData: SelectDataLabelModel[];
|
|
15
|
+
constructor(_activeModal: NgbActiveModal, _fb: FormBuilder);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
getKeys(): void;
|
|
18
|
+
changeSelected(label: SelectDataLabelModel): void;
|
|
19
|
+
submit(): SelectDataLabelModel[];
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogSelectDataLabelsContent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectDataLabelsContent, "ng-component", never, { "title": "title"; "subtitle": "subtitle"; "data": "data"; "showArraySubData": "showArraySubData"; }, {}, never, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
+
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DialogSelectDateTimeContent implements OnInit {
|
|
6
|
+
_activeModal: NgbActiveModal;
|
|
7
|
+
private _fb;
|
|
8
|
+
title: string;
|
|
9
|
+
date: Date;
|
|
10
|
+
form: FormGroup;
|
|
11
|
+
constructor(_activeModal: NgbActiveModal, _fb: FormBuilder);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
submitForm(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogSelectDateTimeContent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectDateTimeContent, "ng-component", never, { "title": "title"; "date": "date"; }, {}, never, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { NgbModal, NgbModalOptions } from '@ng-bootstrap/ng-bootstrap';
|
|
2
|
+
import { DialogInputFieldModel } from '../../models/dialog.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DialogService {
|
|
5
|
+
private modalService;
|
|
6
|
+
constructor(modalService: NgbModal);
|
|
7
|
+
openDialog(content: any, options?: NgbModalOptions): import("@ng-bootstrap/ng-bootstrap").NgbModalRef;
|
|
8
|
+
notify(msg: string): void;
|
|
9
|
+
input(title: string, inputFields: DialogInputFieldModel[]): Promise<any>;
|
|
10
|
+
error(msg: string): void;
|
|
11
|
+
confirm(msg: string, html?: string): Promise<any>;
|
|
12
|
+
selectDateTime(date: Date): Promise<any>;
|
|
13
|
+
selectDataLabel(data: any, showArraySubData?: boolean): Promise<any>;
|
|
14
|
+
login(msAllowed: boolean): Promise<any>;
|
|
15
|
+
register(): Promise<any>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
|
|
2
|
+
import { DialogService } from '../dialog/dialog.service';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import { FileModel } from '../../models/file.model';
|
|
5
|
+
import { BaseComponent, ProviderService } from '../../resolveio-class';
|
|
6
|
+
import { ResizeService } from '../../util/window-resize.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class FileUploadComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
9
|
+
private _resize;
|
|
10
|
+
private _services;
|
|
11
|
+
private _ds;
|
|
12
|
+
private _http;
|
|
13
|
+
constructor(_resize: ResizeService, _services: ProviderService, _ds: DialogService, _http: HttpClient);
|
|
14
|
+
files: FileModel[];
|
|
15
|
+
allowDelete: boolean;
|
|
16
|
+
allowReplace: boolean;
|
|
17
|
+
showFileUpload: boolean;
|
|
18
|
+
filesChanged: EventEmitter<any>;
|
|
19
|
+
fileAdded: EventEmitter<any>;
|
|
20
|
+
fileRemoved: EventEmitter<any>;
|
|
21
|
+
fileType: string;
|
|
22
|
+
download_link: any;
|
|
23
|
+
supportedFileTypes: string[];
|
|
24
|
+
pdfSrc: string;
|
|
25
|
+
replaceFileIndex: number;
|
|
26
|
+
isUploading: boolean;
|
|
27
|
+
progressMsg: string;
|
|
28
|
+
windowSize$: any;
|
|
29
|
+
windowSize: number;
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
ngOnDestroy(): void;
|
|
32
|
+
dragFileAccepted(file: any): void;
|
|
33
|
+
upload(file: File, type: string, order?: number, fileName?: string, status?: string): Promise<unknown>;
|
|
34
|
+
uploadWithEmit(file: File, type: string, order?: number, fileName?: string, status?: string): Promise<unknown>;
|
|
35
|
+
delete(index: number, confirm?: boolean): void;
|
|
36
|
+
deleteWithEmit(index: number, confirm?: boolean): void;
|
|
37
|
+
deleteFileWithId(id: string): void;
|
|
38
|
+
open(file: any): void;
|
|
39
|
+
setPDFViewerSrc(file: any): void;
|
|
40
|
+
onFileSelect(data: any): void;
|
|
41
|
+
onFileSelectReplace(data: any): void;
|
|
42
|
+
userIsInRole(role: any): boolean;
|
|
43
|
+
isMobile(): void;
|
|
44
|
+
private downloadResource;
|
|
45
|
+
download(file: FileModel): void;
|
|
46
|
+
email(file: FileModel): void;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "file-upload", never, { "files": "files"; "allowDelete": "allowDelete"; "allowReplace": "allowReplace"; "showFileUpload": "showFileUpload"; "fileType": "fileType"; }, { "filesChanged": "filesChanged"; "fileAdded": "fileAdded"; "fileRemoved": "fileRemoved"; }, never, never>;
|
|
49
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./file-upload.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../collapse-table/collapse-table.module";
|
|
6
|
+
import * as i5 from "@ng-bootstrap/ng-bootstrap";
|
|
7
|
+
import * as i6 from "../responsive-button-group/responsive-button-group.module";
|
|
8
|
+
import * as i7 from "ngx-file-drop";
|
|
9
|
+
import * as i8 from "ngx-doc-viewer";
|
|
10
|
+
export declare class FileModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FileModule, [typeof i1.FileUploadComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.CollapseTableModule, typeof i5.NgbModule, typeof i6.ResponsiveButtonGroupModule, typeof i7.NgxFileDropModule, typeof i8.NgxDocViewerModule], [typeof i1.FileUploadComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FileModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { FormGroup } from '@angular/forms';
|
|
2
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FormButtonComponent extends BaseComponent {
|
|
5
|
+
private _services;
|
|
6
|
+
form: FormGroup;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
formButton: any;
|
|
9
|
+
constructor(_services: ProviderService);
|
|
10
|
+
getTipErrors(): any[];
|
|
11
|
+
isSuperAdmin(): boolean;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormButtonComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormButtonComponent, "form-button", never, { "form": "form"; "disabled": "disabled"; }, {}, never, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./form-button.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@ng-bootstrap/ng-bootstrap";
|
|
5
|
+
export declare class FormButtonModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormButtonModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FormButtonModule, [typeof i1.FormButtonComponent], [typeof i2.CommonModule, typeof i3.NgbTooltipModule], [typeof i1.FormButtonComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FormButtonModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { BaseComponent, ProviderService } from '../../resolveio-class';
|
|
2
|
+
import { UserModel } from '../../models/user.model';
|
|
3
|
+
import { QueryList, AfterViewInit, ElementRef, OnInit } from '@angular/core';
|
|
4
|
+
import { AuthService } from '../../auth/auth.service';
|
|
5
|
+
import { NavbarMainTabModel } from '../../models/navbar-main-tab.model';
|
|
6
|
+
import { DialogService } from '../dialog/dialog.service';
|
|
7
|
+
import { CoreService } from '../../core.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class NavbarMainComponent extends BaseComponent implements OnInit, AfterViewInit {
|
|
10
|
+
private _services;
|
|
11
|
+
private auth;
|
|
12
|
+
private _ds;
|
|
13
|
+
private _app;
|
|
14
|
+
dropdowns: QueryList<any>;
|
|
15
|
+
scrollable: ElementRef;
|
|
16
|
+
logo: string;
|
|
17
|
+
navTabs: NavbarMainTabModel[];
|
|
18
|
+
fontSize: number;
|
|
19
|
+
user: UserModel;
|
|
20
|
+
collapseShowing: boolean;
|
|
21
|
+
client: string;
|
|
22
|
+
isResolveIO: boolean;
|
|
23
|
+
standardProgram: boolean;
|
|
24
|
+
tourStarted: boolean;
|
|
25
|
+
scrollRightInterval: any;
|
|
26
|
+
scrollLeftInterval: any;
|
|
27
|
+
isDemo: boolean;
|
|
28
|
+
constructor(_services: ProviderService, auth: AuthService, _ds: DialogService, _app: CoreService);
|
|
29
|
+
ngOnInit(): void;
|
|
30
|
+
ngAfterViewInit(): void;
|
|
31
|
+
logout(): void;
|
|
32
|
+
login(): void;
|
|
33
|
+
hasScrolled(): boolean;
|
|
34
|
+
hasMoreScroll(): boolean;
|
|
35
|
+
startScrollRight(): void;
|
|
36
|
+
stopScrollRight(): void;
|
|
37
|
+
scrollRightOnce(): void;
|
|
38
|
+
startScrollLeft(): void;
|
|
39
|
+
stopScrollLeft(): void;
|
|
40
|
+
scrollLeftOnce(): void;
|
|
41
|
+
calculateDropdownsLeft(): boolean;
|
|
42
|
+
isInRole(role: any): boolean;
|
|
43
|
+
isSuperAdmin(): any;
|
|
44
|
+
isInOneRole(roles: string[]): boolean;
|
|
45
|
+
navigateTo(route: string): void;
|
|
46
|
+
help(): void;
|
|
47
|
+
isCustomer(): boolean;
|
|
48
|
+
getWindowWidth(): number;
|
|
49
|
+
print(): void;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarMainComponent, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarMainComponent, "navbar-main", never, { "logo": "logo"; "navTabs": "navTabs"; "fontSize": "fontSize"; }, {}, never, never>;
|
|
52
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { NavbarModel, NavbarTabModel } from './navbar-module.model';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class NavbarModuleComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
7
|
+
private _cdRef;
|
|
8
|
+
private _services;
|
|
9
|
+
sideNavHeight: number;
|
|
10
|
+
sideNavWidth: number;
|
|
11
|
+
menuData: NavbarModel;
|
|
12
|
+
selectedTab: NavbarTabModel;
|
|
13
|
+
currentRoute: String;
|
|
14
|
+
routerEvents$: Subscription[];
|
|
15
|
+
tourStarted: boolean;
|
|
16
|
+
constructor(_cdRef: ChangeDetectorRef, _services: ProviderService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
selectTabFromRouter(): void;
|
|
20
|
+
tabClass(tab: NavbarTabModel): "" | "active";
|
|
21
|
+
navigateTo(tab: NavbarTabModel): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarModuleComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarModuleComponent, "navbar-module", never, { "sideNavHeight": "sideNavHeight"; "sideNavWidth": "sideNavWidth"; }, {}, never, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface NavbarModel {
|
|
2
|
+
title: string;
|
|
3
|
+
module: string;
|
|
4
|
+
description: string;
|
|
5
|
+
description_name: string;
|
|
6
|
+
tabs: Array<NavbarTabModel>;
|
|
7
|
+
}
|
|
8
|
+
export interface NavbarTabModel {
|
|
9
|
+
link: string;
|
|
10
|
+
params: string;
|
|
11
|
+
label: string;
|
|
12
|
+
tourAnchor?: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TourService } from 'ngx-tour-core';
|
|
2
|
+
import { INgbStepOption } from './step-option.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NgbTourService extends TourService<INgbStepOption> {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgbTourService, never>;
|
|
6
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NgbTourService>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import { Route } from '@angular/router';
|
|
3
|
+
import { NgbTourService } from './ng-bootstrap-tour.service';
|
|
4
|
+
import { TourAnchorNgBootstrapDirective, TourAnchorNgBootstrapPopoverDirective } from './tour-anchor.directive';
|
|
5
|
+
import { TourStepTemplateComponent } from './tour-step-template.component';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "./tour-anchor.directive";
|
|
8
|
+
import * as i2 from "./tour-step-template.component";
|
|
9
|
+
import * as i3 from "@angular/common";
|
|
10
|
+
import * as i4 from "@ng-bootstrap/ng-bootstrap";
|
|
11
|
+
export { TourAnchorNgBootstrapDirective, TourAnchorNgBootstrapPopoverDirective, TourStepTemplateComponent, NgbTourService };
|
|
12
|
+
export declare class TourNgBootstrapModule {
|
|
13
|
+
static forRoot(): ModuleWithProviders<Route>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TourNgBootstrapModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TourNgBootstrapModule, [typeof i1.TourAnchorNgBootstrapDirective, typeof i1.TourAnchorNgBootstrapPopoverDirective, typeof i2.TourStepTemplateComponent], [typeof i3.CommonModule, typeof i4.NgbPopoverModule], [typeof i1.TourAnchorNgBootstrapDirective, typeof i1.TourAnchorNgBootstrapPopoverDirective, typeof i2.TourStepTemplateComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TourNgBootstrapModule>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { IStepOption } from 'ngx-tour-core';
|
|
2
|
+
import { Placement } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
+
export interface INgbStepOption extends IStepOption {
|
|
4
|
+
placement?: Placement | 'after' | 'after-top' | 'after-bottom' | 'top-after' | 'top-before' | 'bottom-after' | 'bottom-before' | 'before' | 'before-top' | 'before-bottom' | 'below' | 'above';
|
|
5
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
+
import { TourAnchorDirective } from 'ngx-tour-core';
|
|
4
|
+
import { NgbTourService } from './ng-bootstrap-tour.service';
|
|
5
|
+
import { INgbStepOption } from './step-option.interface';
|
|
6
|
+
import { TourStepTemplateService } from './tour-step-template.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class TourAnchorNgBootstrapPopoverDirective extends NgbPopover {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TourAnchorNgBootstrapPopoverDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TourAnchorNgBootstrapPopoverDirective, "[tourAnchor]", never, {}, {}, never>;
|
|
11
|
+
}
|
|
12
|
+
export declare class TourAnchorNgBootstrapDirective implements OnInit, OnDestroy, TourAnchorDirective {
|
|
13
|
+
private tourService;
|
|
14
|
+
private tourStepTemplate;
|
|
15
|
+
private element;
|
|
16
|
+
private popoverDirective;
|
|
17
|
+
tourAnchor: string;
|
|
18
|
+
isActive: boolean;
|
|
19
|
+
constructor(tourService: NgbTourService, tourStepTemplate: TourStepTemplateService, element: ElementRef, popoverDirective: TourAnchorNgBootstrapPopoverDirective);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
ngOnDestroy(): void;
|
|
22
|
+
showTourStep(step: INgbStepOption): void;
|
|
23
|
+
hideTourStep(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TourAnchorNgBootstrapDirective, [null, null, null, { host: true; }]>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TourAnchorNgBootstrapDirective, "[tourAnchor]", never, { "tourAnchor": "tourAnchor"; }, {}, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { TourHotkeyListenerComponent, IStepOption } from 'ngx-tour-core';
|
|
2
|
+
import { TourStepTemplateService } from './tour-step-template.service';
|
|
3
|
+
import { TemplateRef, AfterContentInit } from '@angular/core';
|
|
4
|
+
import { NgbTourService } from './ng-bootstrap-tour.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TourStepTemplateComponent extends TourHotkeyListenerComponent implements AfterContentInit {
|
|
7
|
+
private tourStepTemplateService;
|
|
8
|
+
tourService: NgbTourService;
|
|
9
|
+
defaultTourStepTemplate: TemplateRef<any>;
|
|
10
|
+
stepTemplate: TemplateRef<{
|
|
11
|
+
step: IStepOption;
|
|
12
|
+
}>;
|
|
13
|
+
stepTemplateContent: TemplateRef<{
|
|
14
|
+
step: IStepOption;
|
|
15
|
+
}>;
|
|
16
|
+
constructor(tourStepTemplateService: TourStepTemplateService, tourService: NgbTourService);
|
|
17
|
+
ngAfterContentInit(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TourStepTemplateComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TourStepTemplateComponent, "tour-step-template", never, { "stepTemplate": "stepTemplate"; }, {}, ["stepTemplateContent"], never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TourStepTemplateService {
|
|
4
|
+
template: TemplateRef<{
|
|
5
|
+
content: string;
|
|
6
|
+
}>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TourStepTemplateService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TourStepTemplateService>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import { ResizeService } from '../../util/window-resize.service';
|
|
3
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ResponsiveButtonGroupComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
6
|
+
private _cdRef;
|
|
7
|
+
private _resizeService;
|
|
8
|
+
private _services;
|
|
9
|
+
collapseSize: number;
|
|
10
|
+
windowSize: number;
|
|
11
|
+
windowSizeSubscription: any;
|
|
12
|
+
constructor(_cdRef: ChangeDetectorRef, _resizeService: ResizeService, _services: ProviderService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveButtonGroupComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResponsiveButtonGroupComponent, "responsive-button-group", never, { "collapseSize": "collapseSize"; }, {}, never, ["*"]>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./responsive-button-group.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class ResponsiveButtonGroupModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveButtonGroupModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ResponsiveButtonGroupModule, [typeof i1.ResponsiveButtonGroupComponent], [typeof i2.CommonModule], [typeof i1.ResponsiveButtonGroupComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ResponsiveButtonGroupModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SchedulerComponent extends BaseComponent implements AfterViewInit, OnDestroy {
|
|
5
|
+
private _services;
|
|
6
|
+
today: Date;
|
|
7
|
+
over_forward: boolean;
|
|
8
|
+
over_backwards: boolean;
|
|
9
|
+
mouseDown: boolean;
|
|
10
|
+
mouseLastEvent: any;
|
|
11
|
+
timer_sub: any;
|
|
12
|
+
months: string[];
|
|
13
|
+
size_svg: {
|
|
14
|
+
width: number;
|
|
15
|
+
height: number;
|
|
16
|
+
};
|
|
17
|
+
size_cell: {
|
|
18
|
+
width: number;
|
|
19
|
+
height: number;
|
|
20
|
+
};
|
|
21
|
+
svgChart: ElementRef;
|
|
22
|
+
constructor(_services: ProviderService);
|
|
23
|
+
ngAfterViewInit(): void;
|
|
24
|
+
ngOnDestroy(): void;
|
|
25
|
+
onMouseup(): void;
|
|
26
|
+
onMousedown(event: any): void;
|
|
27
|
+
onMousemove(event: MouseEvent): void;
|
|
28
|
+
onMouseLeave(event: MouseEvent): void;
|
|
29
|
+
buildDays(): any[];
|
|
30
|
+
buildMonths(): {
|
|
31
|
+
index_start: number;
|
|
32
|
+
index_end: any;
|
|
33
|
+
month: string;
|
|
34
|
+
}[];
|
|
35
|
+
buildYears(): {
|
|
36
|
+
index_start: number;
|
|
37
|
+
index_end: any;
|
|
38
|
+
year: number;
|
|
39
|
+
}[];
|
|
40
|
+
decrementToday(): void;
|
|
41
|
+
incrementToday(): void;
|
|
42
|
+
overForward(): void;
|
|
43
|
+
leftForward(): void;
|
|
44
|
+
overBackwards(): void;
|
|
45
|
+
leftBackwards(): void;
|
|
46
|
+
zoomOut(): void;
|
|
47
|
+
zoomIn(): void;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerComponent, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SchedulerComponent, "scheduler", never, {}, {}, never, never>;
|
|
50
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./scheduler.component";
|
|
3
|
+
import * as i2 from "@ng-bootstrap/ng-bootstrap";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/router";
|
|
7
|
+
export declare class SchedulerModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SchedulerModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SchedulerModule, [typeof i1.SchedulerComponent], [typeof i2.NgbModule, typeof i3.FormsModule, typeof i4.CommonModule, typeof i5.RouterModule], [typeof i1.SchedulerComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SchedulerModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnDestroy, OnInit, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { Sortable, SortDirectionType, SortTableDirective } from './sort-table.directive';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SortTableHeaderComponent implements Sortable, OnDestroy, OnInit {
|
|
6
|
+
_sort: SortTableDirective;
|
|
7
|
+
_arrowDirection: SortDirectionType;
|
|
8
|
+
id: string;
|
|
9
|
+
arrowPosition: 'before' | 'after';
|
|
10
|
+
start: SortDirectionType;
|
|
11
|
+
_rerenderSubscription: Subscription;
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
constructor(changeDetectorRef: ChangeDetectorRef, _sort: SortTableDirective);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
_isSorted(): boolean;
|
|
17
|
+
_getSortDirection(): SortDirectionType;
|
|
18
|
+
_updateArrowDirection(): void;
|
|
19
|
+
_isDisabled(): boolean;
|
|
20
|
+
onClick(event: any): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SortTableHeaderComponent, [null, { optional: true; }]>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SortTableHeaderComponent, "[sort-table-header]", never, { "disabled": "disabled"; "id": "sort-table-header"; "arrowPosition": "arrowPosition"; "start": "start"; }, {}, never, ["*"]>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnChanges, OnInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
+
import { Subscription } from 'rxjs';
|
|
3
|
+
import { SortTableDirective } from './sort-table.directive';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SortTableNgForComponent implements OnInit, OnChanges, OnDestroy {
|
|
6
|
+
_sort: SortTableDirective;
|
|
7
|
+
data: any[];
|
|
8
|
+
dataChanged: EventEmitter<any[]>;
|
|
9
|
+
sortSub$: Subscription;
|
|
10
|
+
sortedData: any[];
|
|
11
|
+
constructor(_sort: SortTableDirective);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
ngOnChanges(): void;
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SortTableNgForComponent, [{ optional: true; }]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SortTableNgForComponent, "[sort-table-ngfor]", never, { "data": "sort-table-ngfor"; }, { "dataChanged": "dataChanged"; }, never, ["*"]>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { EventEmitter, ElementRef } from '@angular/core';
|
|
2
|
+
import { Subject, Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare type SortDirectionType = 1 | 0 | -1;
|
|
5
|
+
export interface Sortable {
|
|
6
|
+
/** The id of the column being sorted. */
|
|
7
|
+
id: string;
|
|
8
|
+
/** Starting sort direction. */
|
|
9
|
+
start: SortDirectionType;
|
|
10
|
+
disabled: boolean;
|
|
11
|
+
}
|
|
12
|
+
/** The current sort state. */
|
|
13
|
+
export interface Sort {
|
|
14
|
+
/** The id of the column being sorted. */
|
|
15
|
+
active: string;
|
|
16
|
+
/** The sort direction. */
|
|
17
|
+
direction: SortDirectionType;
|
|
18
|
+
}
|
|
19
|
+
export declare class SortTableDirective {
|
|
20
|
+
private element;
|
|
21
|
+
sortables: Map<string, Sortable>;
|
|
22
|
+
/** Used to notify any child components listening to state changes. */
|
|
23
|
+
readonly _stateChanges: Subject<void>;
|
|
24
|
+
/** The id of the most recently sorted Sortable. */
|
|
25
|
+
active: string;
|
|
26
|
+
start: SortDirectionType;
|
|
27
|
+
disabled: boolean;
|
|
28
|
+
tableFixed: boolean;
|
|
29
|
+
headerFixed: boolean;
|
|
30
|
+
secondaryColor: boolean;
|
|
31
|
+
tertiaryColor: boolean;
|
|
32
|
+
get direction(): SortDirectionType;
|
|
33
|
+
set direction(direction: SortDirectionType);
|
|
34
|
+
private _direction;
|
|
35
|
+
private _data;
|
|
36
|
+
readonly sortChange: EventEmitter<Sort>;
|
|
37
|
+
constructor(element: ElementRef);
|
|
38
|
+
register(sortable: Sortable): void;
|
|
39
|
+
deregister(sortable: Sortable): void;
|
|
40
|
+
sort(sortable: Sortable): void;
|
|
41
|
+
getData(): Observable<any[]>;
|
|
42
|
+
setData(data: any): void;
|
|
43
|
+
ngOnInit(): void;
|
|
44
|
+
ngOnChanges(): void;
|
|
45
|
+
ngOnDestroy(): void;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SortTableDirective, never>;
|
|
47
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SortTableDirective, "[sortable]", never, { "active": "sortActive"; "start": "sortStart"; "disabled": "sortDisabled"; "tableFixed": "tableFixed"; "headerFixed": "headerFixed"; "secondaryColor": "secondaryColor"; "tertiaryColor": "tertiaryColor"; }, { "sortChange": "sortChange"; }, never>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./sort-table.directive";
|
|
3
|
+
import * as i2 from "./sort-table-header.component";
|
|
4
|
+
import * as i3 from "./sort-table-ngfor.component";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
export declare class SortTableModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SortTableModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SortTableModule, [typeof i1.SortTableDirective, typeof i2.SortTableHeaderComponent, typeof i3.SortTableNgForComponent], [typeof i4.FormsModule, typeof i5.CommonModule], [typeof i1.SortTableDirective, typeof i2.SortTableHeaderComponent, typeof i3.SortTableNgForComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SortTableModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class UserRoleComponent extends BaseComponent {
|
|
4
|
+
private _services;
|
|
5
|
+
role: string;
|
|
6
|
+
constructor(_services: ProviderService);
|
|
7
|
+
userInRole(): boolean;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserRoleComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserRoleComponent, "user-role", never, { "role": "role"; }, {}, never, ["*"]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./user-role.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class UserRoleModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserRoleModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UserRoleModule, [typeof i1.UserRoleComponent], [typeof i2.CommonModule], [typeof i1.UserRoleComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<UserRoleModule>;
|
|
8
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@resolveio/client-lib-core",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@ng-bootstrap/ng-bootstrap": "6.1.0",
|
|
6
|
+
"@ng-select/ng-select": "4.0.4",
|
|
7
|
+
"@resolveio/chartjs": "0.0.9",
|
|
8
|
+
"angular2-csv": "0.2.5",
|
|
9
|
+
"bootstrap": "4.5.0",
|
|
10
|
+
"cronstrue": "1.88.0",
|
|
11
|
+
"deep-object-diff": "1.1.0",
|
|
12
|
+
"file-saver": "2.0.5",
|
|
13
|
+
"jquery": "3.4.1",
|
|
14
|
+
"jsbarcode": "3.11.3",
|
|
15
|
+
"moment": "2.29.1",
|
|
16
|
+
"msal": "1.4.10",
|
|
17
|
+
"ngx-device-detector": "2.0.6",
|
|
18
|
+
"ngx-doc-viewer": "2.0.2",
|
|
19
|
+
"ngx-file-drop": "9.0.1",
|
|
20
|
+
"ngx-localstorage": "3.1.0",
|
|
21
|
+
"ngx-sortablejs": "3.1.4",
|
|
22
|
+
"ngx-toastr": "12.0.1",
|
|
23
|
+
"ngx-tour-core": "4.2.0",
|
|
24
|
+
"withinviewport": "2.1.2"
|
|
25
|
+
},
|
|
26
|
+
"bundleDependencies": [
|
|
27
|
+
"@ng-bootstrap/ng-bootstrap",
|
|
28
|
+
"@ng-select/ng-select",
|
|
29
|
+
"@resolveio/chartjs",
|
|
30
|
+
"angular2-csv",
|
|
31
|
+
"bootstrap",
|
|
32
|
+
"cronstrue",
|
|
33
|
+
"deep-object-diff",
|
|
34
|
+
"file-saver",
|
|
35
|
+
"jquery",
|
|
36
|
+
"jsbarcode",
|
|
37
|
+
"moment",
|
|
38
|
+
"msal",
|
|
39
|
+
"ngx-device-detector",
|
|
40
|
+
"ngx-doc-viewer",
|
|
41
|
+
"ngx-file-drop",
|
|
42
|
+
"ngx-localstorage",
|
|
43
|
+
"ngx-sortablejs",
|
|
44
|
+
"ngx-toastr",
|
|
45
|
+
"ngx-tour-core",
|
|
46
|
+
"ngx-owl-carousel-o",
|
|
47
|
+
"withinviewport"
|
|
48
|
+
],
|
|
49
|
+
"module": "fesm2015/resolveio-client-lib-core.mjs",
|
|
50
|
+
"es2020": "fesm2020/resolveio-client-lib-core.mjs",
|
|
51
|
+
"esm2020": "esm2020/resolveio-client-lib-core.mjs",
|
|
52
|
+
"fesm2020": "fesm2020/resolveio-client-lib-core.mjs",
|
|
53
|
+
"fesm2015": "fesm2015/resolveio-client-lib-core.mjs",
|
|
54
|
+
"typings": "resolveio-client-lib-core.d.ts",
|
|
55
|
+
"exports": {
|
|
56
|
+
"./package.json": {
|
|
57
|
+
"default": "./package.json"
|
|
58
|
+
},
|
|
59
|
+
".": {
|
|
60
|
+
"types": "./resolveio-client-lib-core.d.ts",
|
|
61
|
+
"esm2020": "./esm2020/resolveio-client-lib-core.mjs",
|
|
62
|
+
"es2020": "./fesm2020/resolveio-client-lib-core.mjs",
|
|
63
|
+
"es2015": "./fesm2015/resolveio-client-lib-core.mjs",
|
|
64
|
+
"node": "./fesm2015/resolveio-client-lib-core.mjs",
|
|
65
|
+
"default": "./fesm2020/resolveio-client-lib-core.mjs"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"sideEffects": false,
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"tslib": "^2.3.0"
|
|
71
|
+
}
|
|
72
|
+
}
|