cat-qw-lib 1.0.0 → 1.0.2
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/fesm2022/cat-qw-lib.mjs +6152 -0
- package/fesm2022/cat-qw-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/admin/action-admin/action-admin.module.d.ts +15 -0
- package/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.d.ts +31 -0
- package/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.d.ts +18 -0
- package/lib/admin/action-admin/models/admin-action.model.d.ts +12 -0
- package/lib/admin/action-admin/state/admin-action.service.d.ts +16 -0
- package/lib/admin/action-admin/state/admin-action.store.d.ts +8 -0
- package/lib/admin/api-admin/api-admin.module.d.ts +18 -0
- package/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.d.ts +36 -0
- package/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.d.ts +18 -0
- package/lib/admin/api-admin/models/api-config.model.d.ts +13 -0
- package/lib/admin/api-admin/state/api-admin.service.d.ts +19 -0
- package/lib/admin/api-admin/state/api-admin.store.d.ts +8 -0
- package/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.d.ts +40 -0
- package/lib/admin/dd-admin/components/dd-admin-item-form/dd-admin-item-form.component.d.ts +35 -0
- package/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.d.ts +16 -0
- package/lib/admin/dd-admin/dd-admin.module.d.ts +20 -0
- package/lib/admin/dd-admin/models/api-property.model.d.ts +6 -0
- package/lib/admin/dd-admin/models/dd-attribute-sidebar-view.model.d.ts +4 -0
- package/lib/admin/dd-admin/models/dictionary.model.d.ts +14 -0
- package/lib/admin/dd-admin/state/dictionary.query.d.ts +20 -0
- package/lib/admin/dd-admin/state/dictionary.service.d.ts +17 -0
- package/lib/admin/dd-admin/state/dictionary.store.d.ts +14 -0
- package/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.d.ts +42 -0
- package/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.d.ts +18 -0
- package/lib/admin/queue-admin/components/queue-application-list/queue-application-list.component.d.ts +28 -0
- package/lib/admin/queue-admin/models/queue.model.d.ts +14 -0
- package/lib/admin/queue-admin/queue-admin-routing.module.d.ts +7 -0
- package/lib/admin/queue-admin/queue-admin.module.d.ts +16 -0
- package/lib/admin/queue-admin/state/queue.query.d.ts +10 -0
- package/lib/admin/queue-admin/state/queue.service.d.ts +16 -0
- package/{src/lib/admin/queue-admin/state/queue.state.ts → lib/admin/queue-admin/state/queue.state.d.ts} +6 -14
- package/lib/admin/queue-admin/state/queue.store.d.ts +8 -0
- package/lib/admin/template-admin/components/template-admin-form/template-admin-form.component.d.ts +34 -0
- package/lib/admin/template-admin/components/template-admin-list/template-admin-list.component.d.ts +18 -0
- package/lib/admin/template-admin/models/template.model.d.ts +11 -0
- package/lib/admin/template-admin/state/template-admin.query.d.ts +13 -0
- package/lib/admin/template-admin/state/template-admin.service.d.ts +17 -0
- package/lib/admin/template-admin/state/template-admin.store.d.ts +11 -0
- package/lib/admin/template-admin/template-admin.module.d.ts +17 -0
- package/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.d.ts +43 -0
- package/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.d.ts +17 -0
- package/lib/admin/widget-admin/models/widget.model.d.ts +31 -0
- package/lib/admin/widget-admin/state/widget-admin.query.d.ts +13 -0
- package/lib/admin/widget-admin/state/widget-admin.service.d.ts +23 -0
- package/lib/admin/widget-admin/state/widget-admin.store.d.ts +11 -0
- package/lib/admin/widget-admin/widget-admin.module.d.ts +20 -0
- package/lib/queue/components/queue-container/queue-container.component.d.ts +97 -0
- package/lib/queue/components/queue-item/queue-item.component.d.ts +25 -0
- package/lib/queue/components/queue-list/queue-list.component.d.ts +9 -0
- package/lib/queue/components/queue-record-table/queue-record-table.component.d.ts +80 -0
- package/lib/queue/components/queue-search/queue-search.component.d.ts +40 -0
- package/lib/queue/models/queue.model.d.ts +10 -0
- package/lib/queue/queue-routing.module.d.ts +7 -0
- package/lib/queue/queue.module.d.ts +23 -0
- package/lib/queue/services/application-assignment.service.d.ts +18 -0
- package/lib/queue/services/queue-record-table-builder.service.d.ts +10 -0
- package/lib/queue/state/queue.service.d.ts +45 -0
- package/lib/queue/state/queue.state.d.ts +4 -0
- package/lib/queue/state/queue.store.d.ts +8 -0
- package/lib/shared/_base/base-container/base-container.component.d.ts +10 -0
- package/lib/shared/_base/base-control/base-control.component.d.ts +34 -0
- package/lib/shared/_base/base-form/base-form.component.d.ts +48 -0
- package/lib/shared/_base/base-list/base-list.component.d.ts +26 -0
- package/lib/shared/components/form-container/form-container.component.d.ts +28 -0
- package/lib/shared/components/list/block-list.component.d.ts +16 -0
- package/lib/shared/components/queue-search-customer/queue-search-customer.component.d.ts +10 -0
- package/lib/shared/components/sidebar/sidebar.component.d.ts +13 -0
- package/lib/shared/constant/CSS.d.ts +11 -0
- package/lib/shared/constant/DATASOURCES.d.ts +18 -0
- package/lib/shared/constant/ERROR.d.ts +17 -0
- package/lib/shared/constant/HEADERS.d.ts +4 -0
- package/lib/shared/constant/LIST-CONFIG.d.ts +7 -0
- package/lib/shared/constant/LOOKUPS.d.ts +3 -0
- package/lib/shared/constant/MESSAGES.d.ts +7 -0
- package/lib/shared/constant/PERMISSION.d.ts +16 -0
- package/lib/shared/constant/ROUTES.d.ts +16 -0
- package/lib/shared/constant/SHARED.d.ts +261 -0
- package/lib/shared/constant/URLS.d.ts +6 -0
- package/lib/shared/controls/button/button.component.d.ts +6 -0
- package/lib/shared/controls/check-box/check-box.component.d.ts +9 -0
- package/lib/shared/controls/date/date.component.d.ts +14 -0
- package/lib/shared/controls/dropdown/dropdown.component.d.ts +24 -0
- package/lib/shared/controls/file-upload/file-upload.component.d.ts +7 -0
- package/lib/shared/controls/password/password.component.d.ts +11 -0
- package/lib/shared/controls/text-area/text-area.component.d.ts +8 -0
- package/lib/shared/controls/text-box/text-box.component.d.ts +7 -0
- package/lib/shared/controls/username/username.component.d.ts +6 -0
- package/lib/shared/directives/permission.directive.d.ts +14 -0
- package/{src/lib/shared/index.ts → lib/shared/index.d.ts} +34 -39
- package/lib/shared/models/attribute.model.d.ts +43 -0
- package/lib/shared/models/base.model.d.ts +4 -0
- package/{src/lib/shared/models/custom-widget.model.ts → lib/shared/models/custom-widget.model.d.ts} +13 -14
- package/lib/shared/models/list.model.d.ts +11 -0
- package/lib/shared/models/meta-data.model.d.ts +6 -0
- package/lib/shared/pipe/capitalize-words.pipe.d.ts +7 -0
- package/lib/shared/services/app-config.service.d.ts +19 -0
- package/lib/shared/services/auth/auth.guard.d.ts +12 -0
- package/lib/shared/services/custom-widget.service.d.ts +10 -0
- package/lib/shared/services/data-transformer.service.d.ts +8 -0
- package/lib/shared/services/date-parser.service.d.ts +7 -0
- package/lib/shared/services/form-state.service.d.ts +17 -0
- package/lib/shared/services/list.service.d.ts +13 -0
- package/lib/shared/services/session.service.d.ts +14 -0
- package/lib/shared/services/style-builder.service.d.ts +14 -0
- package/lib/shared/services/table.builder.d.ts +14 -0
- package/lib/shared/services/validator.service.d.ts +7 -0
- package/lib/shared/shared.module.d.ts +36 -0
- package/lib/shared/state/base.query.d.ts +29 -0
- package/lib/shared/state/base.service.d.ts +29 -0
- package/{src/lib/shared/state/base.state.ts → lib/shared/state/base.state.d.ts} +10 -10
- package/lib/shared/state/base.store.d.ts +36 -0
- package/lib/shared/table-primary/components/table-primary.component.d.ts +60 -0
- package/lib/shared/table-primary/models/table-primary-header.model.d.ts +6 -0
- package/lib/shared/table-primary/models/table-primary.model.d.ts +10 -0
- package/lib/shared/table-secondary/components/table-secondary.component.d.ts +132 -0
- package/lib/shared/table-secondary/models/table-secondary-header.model.d.ts +6 -0
- package/lib/shared/table-secondary/models/table-secondary.model.d.ts +17 -0
- package/lib/widget/components/custom-widget/custom-widget.component.d.ts +13 -0
- package/lib/widget/components/widget-body/widget-body.component.d.ts +17 -0
- package/lib/widget/components/widget-container/widget-container.component.d.ts +26 -0
- package/lib/widget/components/widget-footer/widget-footer.component.d.ts +16 -0
- package/lib/widget/components/widget-header/widget-header.component.d.ts +22 -0
- package/lib/widget/components/widget-item/widget-item.component.d.ts +56 -0
- package/lib/widget/components/widget-main/widget-main.component.d.ts +22 -0
- package/lib/widget/components/widget-menu/widget-menu.component.d.ts +36 -0
- package/lib/widget/components/widget-menu-body/widget-menu-body.component.d.ts +7 -0
- package/lib/widget/components/widget-menu-container/widget-menu-container.component.d.ts +48 -0
- package/lib/widget/components/widget-menu-header/widget-menu-header.component.d.ts +9 -0
- package/lib/widget/components/widget-menu-item/widget-menu-item.component.d.ts +23 -0
- package/lib/widget/components/widget-row-tile/widget-row-tile.component.d.ts +24 -0
- package/{src/lib/widget/models/custom-widget.model.ts → lib/widget/models/custom-widget.model.d.ts} +13 -14
- package/lib/widget/models/progress-chart.model.d.ts +9 -0
- package/lib/widget/models/widget.model.d.ts +47 -0
- package/lib/widget/state/widget.query.d.ts +22 -0
- package/lib/widget/state/widget.service.d.ts +20 -0
- package/lib/widget/state/widget.store.d.ts +25 -0
- package/lib/widget/widget.module.d.ts +27 -0
- package/package.json +25 -16
- package/{src/public-api.ts → public-api.d.ts} +26 -36
- package/ng-package.json +0 -10
- package/src/lib/admin/action-admin/action-admin.module.ts +0 -25
- package/src/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.html +0 -113
- package/src/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.scss +0 -4
- package/src/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.spec.ts +0 -119
- package/src/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.ts +0 -79
- package/src/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.html +0 -5
- package/src/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.scss +0 -0
- package/src/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.spec.ts +0 -36
- package/src/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.ts +0 -33
- package/src/lib/admin/action-admin/models/admin-action.model.ts +0 -14
- package/src/lib/admin/action-admin/state/admin-action.query.ts +0 -11
- package/src/lib/admin/action-admin/state/admin-action.service.spec.ts +0 -66
- package/src/lib/admin/action-admin/state/admin-action.service.ts +0 -29
- package/src/lib/admin/action-admin/state/admin-action.state.ts +0 -14
- package/src/lib/admin/action-admin/state/admin-action.store.ts +0 -14
- package/src/lib/admin/admin.module.ts +0 -22
- package/src/lib/admin/api-admin/api-admin.module.ts +0 -37
- package/src/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.html +0 -157
- package/src/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.scss +0 -12
- package/src/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.spec.ts +0 -134
- package/src/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.ts +0 -110
- package/src/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.html +0 -5
- package/src/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.scss +0 -0
- package/src/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.spec.ts +0 -38
- package/src/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.ts +0 -28
- package/src/lib/admin/api-admin/models/api-config.model.ts +0 -14
- package/src/lib/admin/api-admin/state/api-admin.query.ts +0 -16
- package/src/lib/admin/api-admin/state/api-admin.service.ts +0 -34
- package/src/lib/admin/api-admin/state/api-admin.state.ts +0 -14
- package/src/lib/admin/api-admin/state/api-admin.store.ts +0 -13
- package/src/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.html +0 -115
- package/src/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.scss +0 -4
- package/src/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.spec.ts +0 -100
- package/src/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.ts +0 -105
- package/src/lib/admin/dd-admin/components/dd-admin-item-form/dd-admin-item-form.component.html +0 -64
- package/src/lib/admin/dd-admin/components/dd-admin-item-form/dd-admin-item-form.component.scss +0 -0
- package/src/lib/admin/dd-admin/components/dd-admin-item-form/dd-admin-item-form.component.spec.ts +0 -108
- package/src/lib/admin/dd-admin/components/dd-admin-item-form/dd-admin-item-form.component.ts +0 -96
- package/src/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.html +0 -5
- package/src/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.scss +0 -0
- package/src/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.spec.ts +0 -34
- package/src/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.ts +0 -27
- package/src/lib/admin/dd-admin/dd-admin.module.ts +0 -34
- package/src/lib/admin/dd-admin/models/api-property.model.ts +0 -7
- package/src/lib/admin/dd-admin/models/dd-attribute-sidebar-view.model.ts +0 -6
- package/src/lib/admin/dd-admin/models/dictionary.model.ts +0 -16
- package/src/lib/admin/dd-admin/state/dictionary.query.ts +0 -30
- package/src/lib/admin/dd-admin/state/dictionary.service.ts +0 -37
- package/src/lib/admin/dd-admin/state/dictionary.state.ts +0 -30
- package/src/lib/admin/dd-admin/state/dictionary.store.ts +0 -22
- package/src/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.html +0 -115
- package/src/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.scss +0 -71
- package/src/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.spec.ts +0 -22
- package/src/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.ts +0 -185
- package/src/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.html +0 -24
- package/src/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.scss +0 -33
- package/src/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.spec.ts +0 -23
- package/src/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.ts +0 -46
- package/src/lib/admin/queue-admin/components/queue-application-list/queue-application-list.component.html +0 -69
- package/src/lib/admin/queue-admin/components/queue-application-list/queue-application-list.component.scss +0 -84
- package/src/lib/admin/queue-admin/components/queue-application-list/queue-application-list.component.spec.ts +0 -21
- package/src/lib/admin/queue-admin/components/queue-application-list/queue-application-list.component.ts +0 -93
- package/src/lib/admin/queue-admin/models/queue.model.ts +0 -15
- package/src/lib/admin/queue-admin/queue-admin-routing.module.ts +0 -17
- package/src/lib/admin/queue-admin/queue-admin.module.ts +0 -26
- package/src/lib/admin/queue-admin/state/queue.query.ts +0 -11
- package/src/lib/admin/queue-admin/state/queue.service.ts +0 -34
- package/src/lib/admin/queue-admin/state/queue.store.ts +0 -13
- package/src/lib/admin/template-admin/components/template-admin-form/template-admin-form.component.html +0 -99
- package/src/lib/admin/template-admin/components/template-admin-form/template-admin-form.component.scss +0 -3
- package/src/lib/admin/template-admin/components/template-admin-form/template-admin-form.component.spec.ts +0 -23
- package/src/lib/admin/template-admin/components/template-admin-form/template-admin-form.component.ts +0 -82
- package/src/lib/admin/template-admin/components/template-admin-list/template-admin-list.component.html +0 -41
- package/src/lib/admin/template-admin/components/template-admin-list/template-admin-list.component.scss +0 -30
- package/src/lib/admin/template-admin/components/template-admin-list/template-admin-list.component.spec.ts +0 -23
- package/src/lib/admin/template-admin/components/template-admin-list/template-admin-list.component.ts +0 -34
- package/src/lib/admin/template-admin/models/template.model.ts +0 -12
- package/src/lib/admin/template-admin/state/template-admin.query.ts +0 -17
- package/src/lib/admin/template-admin/state/template-admin.service.ts +0 -45
- package/src/lib/admin/template-admin/state/template-admin.state.ts +0 -14
- package/src/lib/admin/template-admin/state/template-admin.store.ts +0 -15
- package/src/lib/admin/template-admin/template-admin.module.ts +0 -40
- package/src/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.html +0 -170
- package/src/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.scss +0 -4
- package/src/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.spec.ts +0 -23
- package/src/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.ts +0 -139
- package/src/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.html +0 -5
- package/src/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.scss +0 -0
- package/src/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.spec.ts +0 -23
- package/src/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.ts +0 -28
- package/src/lib/admin/widget-admin/models/widget.model.ts +0 -35
- package/src/lib/admin/widget-admin/state/widget-admin.query.ts +0 -17
- package/src/lib/admin/widget-admin/state/widget-admin.service.ts +0 -72
- package/src/lib/admin/widget-admin/state/widget-admin.state.ts +0 -14
- package/src/lib/admin/widget-admin/state/widget-admin.store.ts +0 -15
- package/src/lib/admin/widget-admin/widget-admin.module.ts +0 -30
- package/src/lib/queue/ASSIGNMENT_FUNCTIONALITY.md +0 -114
- package/src/lib/queue/CHECKBOX_SELECTION_EXAMPLE.md +0 -240
- package/src/lib/queue/CONTENT_PROJECTION_GUIDE.md +0 -163
- package/src/lib/queue/components/queue-container/queue-container.component.html +0 -37
- package/src/lib/queue/components/queue-container/queue-container.component.scss +0 -7
- package/src/lib/queue/components/queue-container/queue-container.component.ts +0 -155
- package/src/lib/queue/components/queue-item/queue-item.component.html +0 -37
- package/src/lib/queue/components/queue-item/queue-item.component.scss +0 -105
- package/src/lib/queue/components/queue-item/queue-item.component.spec.ts +0 -104
- package/src/lib/queue/components/queue-item/queue-item.component.ts +0 -67
- package/src/lib/queue/components/queue-list/queue-list.component.html +0 -4
- package/src/lib/queue/components/queue-list/queue-list.component.scss +0 -0
- package/src/lib/queue/components/queue-list/queue-list.component.spec.ts +0 -46
- package/src/lib/queue/components/queue-list/queue-list.component.ts +0 -18
- package/src/lib/queue/components/queue-record-table/queue-record-table.component.html +0 -14
- package/src/lib/queue/components/queue-record-table/queue-record-table.component.scss +0 -1
- package/src/lib/queue/components/queue-record-table/queue-record-table.component.ts +0 -241
- package/src/lib/queue/components/queue-search/queue-search.component.html +0 -11
- package/src/lib/queue/components/queue-search/queue-search.component.scss +0 -36
- package/src/lib/queue/components/queue-search/queue-search.component.spec.ts +0 -121
- package/src/lib/queue/components/queue-search/queue-search.component.ts +0 -77
- package/src/lib/queue/models/queue.model.ts +0 -11
- package/src/lib/queue/queue-routing.module.ts +0 -21
- package/src/lib/queue/queue.module.ts +0 -48
- package/src/lib/queue/services/application-assignment.service.ts +0 -27
- package/src/lib/queue/services/queue-record-table-builder.service.ts +0 -66
- package/src/lib/queue/state/queue.service.ts +0 -85
- package/src/lib/queue/state/queue.state.ts +0 -13
- package/src/lib/queue/state/queue.store.ts +0 -14
- package/src/lib/shared/_base/base-container/base-container.component.html +0 -1
- package/src/lib/shared/_base/base-container/base-container.component.scss +0 -0
- package/src/lib/shared/_base/base-container/base-container.component.spec.ts +0 -21
- package/src/lib/shared/_base/base-container/base-container.component.ts +0 -19
- package/src/lib/shared/_base/base-control/base-control.component.html +0 -1
- package/src/lib/shared/_base/base-control/base-control.component.scss +0 -0
- package/src/lib/shared/_base/base-control/base-control.component.spec.ts +0 -21
- package/src/lib/shared/_base/base-control/base-control.component.ts +0 -91
- package/src/lib/shared/_base/base-form/base-form.component.html +0 -1
- package/src/lib/shared/_base/base-form/base-form.component.scss +0 -0
- package/src/lib/shared/_base/base-form/base-form.component.spec.ts +0 -133
- package/src/lib/shared/_base/base-form/base-form.component.ts +0 -203
- package/src/lib/shared/_base/base-list/base-list.component.html +0 -1
- package/src/lib/shared/_base/base-list/base-list.component.scss +0 -0
- package/src/lib/shared/_base/base-list/base-list.component.spec.ts +0 -21
- package/src/lib/shared/_base/base-list/base-list.component.ts +0 -47
- package/src/lib/shared/components/form-container/form-container.component.html +0 -54
- package/src/lib/shared/components/form-container/form-container.component.scss +0 -94
- package/src/lib/shared/components/form-container/form-container.component.spec.ts +0 -21
- package/src/lib/shared/components/form-container/form-container.component.ts +0 -75
- package/src/lib/shared/components/list/block-list.component.html +0 -44
- package/src/lib/shared/components/list/block-list.component.scss +0 -46
- package/src/lib/shared/components/list/block-list.component.spec.ts +0 -21
- package/src/lib/shared/components/list/block-list.component.ts +0 -57
- package/src/lib/shared/components/queue-search-customer/queue-search-customer.component.html +0 -24
- package/src/lib/shared/components/queue-search-customer/queue-search-customer.component.scss +0 -36
- package/src/lib/shared/components/queue-search-customer/queue-search-customer.component.spec.ts +0 -21
- package/src/lib/shared/components/queue-search-customer/queue-search-customer.component.ts +0 -25
- package/src/lib/shared/components/sidebar/sidebar.component.html +0 -13
- package/src/lib/shared/components/sidebar/sidebar.component.scss +0 -42
- package/src/lib/shared/components/sidebar/sidebar.component.spec.ts +0 -24
- package/src/lib/shared/components/sidebar/sidebar.component.ts +0 -26
- package/src/lib/shared/constant/CSS.ts +0 -9
- package/src/lib/shared/constant/DATASOURCES.ts +0 -19
- package/src/lib/shared/constant/ERROR.ts +0 -17
- package/src/lib/shared/constant/HEADERS.ts +0 -4
- package/src/lib/shared/constant/LIST-CONFIG.ts +0 -28
- package/src/lib/shared/constant/LOOKUPS.ts +0 -3
- package/src/lib/shared/constant/MESSAGES.ts +0 -7
- package/src/lib/shared/constant/PERMISSION.ts +0 -16
- package/src/lib/shared/constant/ROUTES.ts +0 -16
- package/src/lib/shared/constant/SHARED.ts +0 -420
- package/src/lib/shared/constant/URLS.ts +0 -7
- package/src/lib/shared/controls/button/button.component.html +0 -25
- package/src/lib/shared/controls/button/button.component.scss +0 -0
- package/src/lib/shared/controls/button/button.component.spec.ts +0 -21
- package/src/lib/shared/controls/button/button.component.ts +0 -15
- package/src/lib/shared/controls/check-box/check-box.component.html +0 -22
- package/src/lib/shared/controls/check-box/check-box.component.scss +0 -32
- package/src/lib/shared/controls/check-box/check-box.component.spec.ts +0 -26
- package/src/lib/shared/controls/check-box/check-box.component.ts +0 -19
- package/src/lib/shared/controls/date/date.component.html +0 -43
- package/src/lib/shared/controls/date/date.component.scss +0 -0
- package/src/lib/shared/controls/date/date.component.spec.ts +0 -21
- package/src/lib/shared/controls/date/date.component.ts +0 -44
- package/src/lib/shared/controls/dropdown/dropdown.component.html +0 -32
- package/src/lib/shared/controls/dropdown/dropdown.component.scss +0 -12
- package/src/lib/shared/controls/dropdown/dropdown.component.ts +0 -79
- package/src/lib/shared/controls/file-upload/file-upload.component.html +0 -18
- package/src/lib/shared/controls/file-upload/file-upload.component.scss +0 -0
- package/src/lib/shared/controls/file-upload/file-upload.component.spec.ts +0 -21
- package/src/lib/shared/controls/file-upload/file-upload.component.ts +0 -19
- package/src/lib/shared/controls/number-feild/number-feild.component.html +0 -39
- package/src/lib/shared/controls/number-feild/number-feild.component.scss +0 -13
- package/src/lib/shared/controls/number-feild/number-feild.component.spec.ts +0 -21
- package/src/lib/shared/controls/number-feild/number-feild.component.ts +0 -35
- package/src/lib/shared/controls/password/password.component.html +0 -25
- package/src/lib/shared/controls/password/password.component.scss +0 -0
- package/src/lib/shared/controls/password/password.component.spec.ts +0 -28
- package/src/lib/shared/controls/password/password.component.ts +0 -26
- package/src/lib/shared/controls/text-area/text-area.component.html +0 -38
- package/src/lib/shared/controls/text-area/text-area.component.scss +0 -22
- package/src/lib/shared/controls/text-area/text-area.component.spec.ts +0 -23
- package/src/lib/shared/controls/text-area/text-area.component.ts +0 -25
- package/src/lib/shared/controls/text-box/text-box.component.html +0 -39
- package/src/lib/shared/controls/text-box/text-box.component.scss +0 -25
- package/src/lib/shared/controls/text-box/text-box.component.spec.ts +0 -30
- package/src/lib/shared/controls/text-box/text-box.component.ts +0 -26
- package/src/lib/shared/controls/username/username.component.html +0 -20
- package/src/lib/shared/controls/username/username.component.scss +0 -0
- package/src/lib/shared/controls/username/username.component.spec.ts +0 -29
- package/src/lib/shared/controls/username/username.component.ts +0 -17
- package/src/lib/shared/directives/permission.directive.spec.ts +0 -60
- package/src/lib/shared/directives/permission.directive.ts +0 -39
- package/src/lib/shared/models/attribute.model.ts +0 -44
- package/src/lib/shared/models/base.model.ts +0 -4
- package/src/lib/shared/models/list.model.ts +0 -27
- package/src/lib/shared/models/message.model.ts +0 -4
- package/src/lib/shared/models/meta-data.model.ts +0 -6
- package/src/lib/shared/pipe/capitalize-words.pipe.spec.ts +0 -8
- package/src/lib/shared/pipe/capitalize-words.pipe.ts +0 -17
- package/src/lib/shared/services/app-config.service.spec.ts +0 -16
- package/src/lib/shared/services/app-config.service.ts +0 -56
- package/src/lib/shared/services/auth/auth.guard.spec.ts +0 -47
- package/src/lib/shared/services/auth/auth.guard.ts +0 -25
- package/src/lib/shared/services/custom-widget.service.ts +0 -29
- package/src/lib/shared/services/data-transformer.service.spec.ts +0 -16
- package/src/lib/shared/services/data-transformer.service.ts +0 -41
- package/src/lib/shared/services/date-parser.service.spec.ts +0 -16
- package/src/lib/shared/services/date-parser.service.ts +0 -54
- package/src/lib/shared/services/form-state.service.spec.ts +0 -16
- package/src/lib/shared/services/form-state.service.ts +0 -50
- package/src/lib/shared/services/list.service.spec.ts +0 -16
- package/src/lib/shared/services/list.service.ts +0 -54
- package/src/lib/shared/services/session.service.spec.ts +0 -16
- package/src/lib/shared/services/session.service.ts +0 -44
- package/src/lib/shared/services/style-builder.service.spec.ts +0 -16
- package/src/lib/shared/services/style-builder.service.ts +0 -61
- package/src/lib/shared/services/table.builder.ts +0 -43
- package/src/lib/shared/services/validator.service.spec.ts +0 -16
- package/src/lib/shared/services/validator.service.ts +0 -13
- package/src/lib/shared/shared.module.ts +0 -68
- package/src/lib/shared/state/base.query.ts +0 -73
- package/src/lib/shared/state/base.service.ts +0 -104
- package/src/lib/shared/state/base.store.ts +0 -89
- package/src/lib/shared/table-primary/components/table-primary.component.html +0 -99
- package/src/lib/shared/table-primary/components/table-primary.component.scss +0 -226
- package/src/lib/shared/table-primary/components/table-primary.component.spec.ts +0 -21
- package/src/lib/shared/table-primary/components/table-primary.component.ts +0 -191
- package/src/lib/shared/table-primary/models/table-primary-header.model.ts +0 -7
- package/src/lib/shared/table-primary/models/table-primary.model.ts +0 -13
- package/src/lib/shared/table-secondary/components/table-secondary.component.html +0 -162
- package/src/lib/shared/table-secondary/components/table-secondary.component.scss +0 -406
- package/src/lib/shared/table-secondary/components/table-secondary.component.spec.ts +0 -95
- package/src/lib/shared/table-secondary/components/table-secondary.component.ts +0 -235
- package/src/lib/shared/table-secondary/index.ts +0 -3
- package/src/lib/shared/table-secondary/models/table-secondary-form.model.ts +0 -12
- package/src/lib/shared/table-secondary/models/table-secondary-header.model.ts +0 -7
- package/src/lib/shared/table-secondary/models/table-secondary.model.ts +0 -20
- package/src/lib/widget/components/custom-widget/custom-widget.component.html +0 -71
- package/src/lib/widget/components/custom-widget/custom-widget.component.scss +0 -43
- package/src/lib/widget/components/custom-widget/custom-widget.component.spec.ts +0 -23
- package/src/lib/widget/components/custom-widget/custom-widget.component.ts +0 -27
- package/src/lib/widget/components/widget-body/widget-body.component.html +0 -14
- package/src/lib/widget/components/widget-body/widget-body.component.scss +0 -16
- package/src/lib/widget/components/widget-body/widget-body.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-body/widget-body.component.ts +0 -39
- package/src/lib/widget/components/widget-container/widget-container.component.html +0 -21
- package/src/lib/widget/components/widget-container/widget-container.component.scss +0 -86
- package/src/lib/widget/components/widget-container/widget-container.component.spec.ts +0 -56
- package/src/lib/widget/components/widget-container/widget-container.component.ts +0 -47
- package/src/lib/widget/components/widget-footer/widget-footer.component.html +0 -10
- package/src/lib/widget/components/widget-footer/widget-footer.component.scss +0 -0
- package/src/lib/widget/components/widget-footer/widget-footer.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-footer/widget-footer.component.ts +0 -25
- package/src/lib/widget/components/widget-header/widget-header.component.html +0 -13
- package/src/lib/widget/components/widget-header/widget-header.component.scss +0 -25
- package/src/lib/widget/components/widget-header/widget-header.component.spec.ts +0 -108
- package/src/lib/widget/components/widget-header/widget-header.component.ts +0 -31
- package/src/lib/widget/components/widget-item/widget-item.component.html +0 -60
- package/src/lib/widget/components/widget-item/widget-item.component.scss +0 -83
- package/src/lib/widget/components/widget-item/widget-item.component.spec.ts +0 -159
- package/src/lib/widget/components/widget-item/widget-item.component.ts +0 -119
- package/src/lib/widget/components/widget-main/widget-main.component.html +0 -9
- package/src/lib/widget/components/widget-main/widget-main.component.scss +0 -0
- package/src/lib/widget/components/widget-main/widget-main.component.spec.ts +0 -60
- package/src/lib/widget/components/widget-main/widget-main.component.ts +0 -30
- package/src/lib/widget/components/widget-menu/widget-menu.component.html +0 -28
- package/src/lib/widget/components/widget-menu/widget-menu.component.scss +0 -0
- package/src/lib/widget/components/widget-menu/widget-menu.component.spec.ts +0 -251
- package/src/lib/widget/components/widget-menu/widget-menu.component.ts +0 -139
- package/src/lib/widget/components/widget-menu-body/widget-menu-body.component.html +0 -15
- package/src/lib/widget/components/widget-menu-body/widget-menu-body.component.scss +0 -11
- package/src/lib/widget/components/widget-menu-body/widget-menu-body.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-menu-body/widget-menu-body.component.ts +0 -12
- package/src/lib/widget/components/widget-menu-container/widget-menu-container.component.html +0 -28
- package/src/lib/widget/components/widget-menu-container/widget-menu-container.component.scss +0 -66
- package/src/lib/widget/components/widget-menu-container/widget-menu-container.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-menu-container/widget-menu-container.component.ts +0 -172
- package/src/lib/widget/components/widget-menu-header/widget-menu-header.component.html +0 -24
- package/src/lib/widget/components/widget-menu-header/widget-menu-header.component.scss +0 -19
- package/src/lib/widget/components/widget-menu-header/widget-menu-header.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-menu-header/widget-menu-header.component.ts +0 -14
- package/src/lib/widget/components/widget-menu-item/widget-menu-item.component.html +0 -30
- package/src/lib/widget/components/widget-menu-item/widget-menu-item.component.scss +0 -32
- package/src/lib/widget/components/widget-menu-item/widget-menu-item.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-menu-item/widget-menu-item.component.ts +0 -69
- package/src/lib/widget/components/widget-row-tile/widget-row-tile.component.html +0 -22
- package/src/lib/widget/components/widget-row-tile/widget-row-tile.component.scss +0 -0
- package/src/lib/widget/components/widget-row-tile/widget-row-tile.component.spec.ts +0 -69
- package/src/lib/widget/components/widget-row-tile/widget-row-tile.component.ts +0 -54
- package/src/lib/widget/models/progress-chart.model.ts +0 -11
- package/src/lib/widget/models/widget.model.ts +0 -51
- package/src/lib/widget/state/widget.query.ts +0 -45
- package/src/lib/widget/state/widget.service.ts +0 -46
- package/src/lib/widget/state/widget.state.ts +0 -18
- package/src/lib/widget/state/widget.store.ts +0 -59
- package/src/lib/widget/widget.module.ts +0 -39
- package/tsconfig.lib.json +0 -15
- package/tsconfig.lib.prod.json +0 -11
- package/tsconfig.spec.json +0 -15
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { HttpClient } from "@angular/common/http";
|
|
2
|
+
import { QueueModel } from "../models/queue.model";
|
|
3
|
+
import { QueueStore } from "./queue.store";
|
|
4
|
+
import { Observable } from "rxjs";
|
|
5
|
+
import { BaseService } from "../../shared/state/base.service";
|
|
6
|
+
import { AppConfigService } from "../../shared/services/app-config.service";
|
|
7
|
+
import { ListService } from "../../shared/services/list.service";
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
/**
|
|
10
|
+
* Service for managing queue-related operations such as retrieving,
|
|
11
|
+
* searching, and storing queue data in the QueueStore.
|
|
12
|
+
*/
|
|
13
|
+
export declare class QueueService extends BaseService<QueueModel> {
|
|
14
|
+
queueStore: QueueStore;
|
|
15
|
+
/**
|
|
16
|
+
* Creates an instance of QueueService.
|
|
17
|
+
* @param {QueueStore} queueStore - The store that manages the QueueModel state
|
|
18
|
+
* @param {HttpClient} http - Angular HttpClient for making HTTP requests
|
|
19
|
+
* @param {AppConfigService} appConfigService - Service for accessing application configuration
|
|
20
|
+
* @param {ListService} listService - Service for handling list-related operations
|
|
21
|
+
*/
|
|
22
|
+
constructor(queueStore: QueueStore, http: HttpClient, appConfigService: AppConfigService, listService: ListService);
|
|
23
|
+
/**
|
|
24
|
+
* Fetches queue records using the provided apiConfig URL and optional params.
|
|
25
|
+
* @param {string} apiConfig - The full API endpoint to fetch records for the selected queue
|
|
26
|
+
* @param {any} [params] - Optional query parameters as an object
|
|
27
|
+
* @returns {Observable<any>} Observable emitting the queue records
|
|
28
|
+
*/
|
|
29
|
+
getQueueRecordsByApiConfig(apiConfig: string, params?: any): Observable<any>;
|
|
30
|
+
/**
|
|
31
|
+
* Fetches all queue entities from the configured data source.
|
|
32
|
+
* The entities are stored in the queueStore upon retrieval.
|
|
33
|
+
* @returns {Observable<any>} Observable emitting the fetched queue entities
|
|
34
|
+
*/
|
|
35
|
+
getAllQueue(): Observable<any>;
|
|
36
|
+
/**
|
|
37
|
+
* Searches for queue data based on the provided search criteria.
|
|
38
|
+
* Results are stored in the queueStore.
|
|
39
|
+
* @param {any} searchItem - The search parameter or query string used to filter queues
|
|
40
|
+
* @returns {Observable<any[]>} Observable emitting the search results as an array
|
|
41
|
+
*/
|
|
42
|
+
getQueuesData(searchItem: any): Observable<any>;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueueService, never>;
|
|
44
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<QueueService>;
|
|
45
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { QueueModel } from "../models/queue.model";
|
|
2
|
+
import { BaseStore } from "../../shared/state/base.store";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class QueueStore extends BaseStore<QueueModel> {
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueueStore, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<QueueStore>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseService } from '../../state/base.service';
|
|
2
|
+
import { BaseModel } from '../../models/base.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BaseContainerComponent<T extends BaseModel> {
|
|
5
|
+
protected service: BaseService<T>;
|
|
6
|
+
constructor(service: BaseService<T>);
|
|
7
|
+
init(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseContainerComponent<any>, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseContainerComponent<any>, "lib-base-container", never, {}, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { AttributeModel } from '../../models/attribute.model';
|
|
3
|
+
import { BaseQuery } from '../../state/base.query';
|
|
4
|
+
import { BaseStore } from '../../state/base.store';
|
|
5
|
+
import { NgModel } from '@angular/forms';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class BaseControlComponent implements OnInit, OnChanges, OnDestroy {
|
|
8
|
+
baseStore: BaseStore<any>;
|
|
9
|
+
baseQuery: BaseQuery<any>;
|
|
10
|
+
constructor(baseStore: BaseStore<any>, baseQuery: BaseQuery<any>);
|
|
11
|
+
store: BaseStore<any> | null;
|
|
12
|
+
record: any;
|
|
13
|
+
attributeModel: AttributeModel;
|
|
14
|
+
error: string;
|
|
15
|
+
onInput: EventEmitter<any>;
|
|
16
|
+
onEnterKeydown: EventEmitter<any>;
|
|
17
|
+
onBtnClick: EventEmitter<any>;
|
|
18
|
+
textboxField: NgModel;
|
|
19
|
+
dropdown: NgModel;
|
|
20
|
+
textArea: NgModel;
|
|
21
|
+
static allAttributes: AttributeModel[];
|
|
22
|
+
query: BaseQuery<any>;
|
|
23
|
+
private destroy$;
|
|
24
|
+
private attributeDestroy$;
|
|
25
|
+
ngOnInit(): void;
|
|
26
|
+
ngOnChanges(): void;
|
|
27
|
+
handleModelChange(event: any, valid: boolean | null, val?: any): void;
|
|
28
|
+
private addToAttributeList;
|
|
29
|
+
handleButtonClick(event: MouseEvent): void;
|
|
30
|
+
getValue(): string | null | undefined;
|
|
31
|
+
ngOnDestroy(): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseControlComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseControlComponent, "app-base-control", never, { "store": { "alias": "store"; "required": false; }; "record": { "alias": "record"; "required": false; }; "attributeModel": { "alias": "attributeModel"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, { "onInput": "onInput"; "onEnterKeydown": "onEnterKeydown"; "onBtnClick": "onBtnClick"; }, never, never, true, never>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { BehaviorSubject, Subject, Subscription } from 'rxjs';
|
|
3
|
+
import { ValidatorService } from '../../services/validator.service';
|
|
4
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
5
|
+
import { AttributeModel } from '../../models/attribute.model';
|
|
6
|
+
import { BaseModel } from '../../models/base.model';
|
|
7
|
+
import { BaseStore } from '../../state/base.store';
|
|
8
|
+
import { BaseService } from '../../state/base.service';
|
|
9
|
+
import { BaseQuery } from '../../state/base.query';
|
|
10
|
+
import { FormStateService } from '../../services/form-state.service';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
/**
|
|
13
|
+
* BaseFormComponent
|
|
14
|
+
*/
|
|
15
|
+
export declare class BaseFormComponent<T extends BaseModel> {
|
|
16
|
+
protected service: BaseService<T>;
|
|
17
|
+
protected validatorService?: ValidatorService | undefined;
|
|
18
|
+
protected router?: Router | undefined;
|
|
19
|
+
protected activatedRoute?: ActivatedRoute | undefined;
|
|
20
|
+
protected baseStore?: BaseStore<T> | undefined;
|
|
21
|
+
protected baseQuery?: BaseQuery<T> | undefined;
|
|
22
|
+
protected formStateService: FormStateService;
|
|
23
|
+
protected subscriptions: Subscription[];
|
|
24
|
+
record: T;
|
|
25
|
+
initialRecord: T;
|
|
26
|
+
recordChange: BehaviorSubject<any>;
|
|
27
|
+
destroy$: Subject<void>;
|
|
28
|
+
onSave: EventEmitter<any>;
|
|
29
|
+
onFormNavigate: EventEmitter<any>;
|
|
30
|
+
onCancel: EventEmitter<any>;
|
|
31
|
+
sanitizedInitialRecord: any;
|
|
32
|
+
sanitizedCurrentRecord: any;
|
|
33
|
+
constructor(service: BaseService<T>, validatorService?: ValidatorService | undefined, router?: Router | undefined, activatedRoute?: ActivatedRoute | undefined, baseStore?: BaseStore<T> | undefined, baseQuery?: BaseQuery<T> | undefined);
|
|
34
|
+
message: any[];
|
|
35
|
+
attributeMode: AttributeModel;
|
|
36
|
+
get currentState(): import("../..").BaseEntityState<T> | undefined;
|
|
37
|
+
init(): void;
|
|
38
|
+
handleBeforeUnload(event: BeforeUnloadEvent): void;
|
|
39
|
+
checkUnsavedChanges(): void;
|
|
40
|
+
private normalizeRecord;
|
|
41
|
+
handleSubmit(): void;
|
|
42
|
+
handleUpdateRecord(): void;
|
|
43
|
+
handleAddRecord(): void;
|
|
44
|
+
handleCancel(): void;
|
|
45
|
+
ngOnDestroy(): void;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseFormComponent<any>, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseFormComponent<any>, "base-form", never, {}, { "onSave": "onSave"; "onFormNavigate": "onFormNavigate"; "onCancel": "onCancel"; }, never, never, true, never>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OnChanges } from '@angular/core';
|
|
2
|
+
import { BaseModel } from '../../models/base.model';
|
|
3
|
+
import { TableBuilder } from '../../services/table.builder';
|
|
4
|
+
import { BaseService } from '../../state/base.service';
|
|
5
|
+
import { TablePrimaryModel } from '../../table-primary/models/table-primary.model';
|
|
6
|
+
import { MetaDataModel } from '../../models/meta-data.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
/**
|
|
9
|
+
* BaseListComponent is a generic class that provides a base implementation for a list component.
|
|
10
|
+
*/
|
|
11
|
+
export declare class BaseListComponent<T extends BaseModel> implements OnChanges {
|
|
12
|
+
protected service: BaseService<T>;
|
|
13
|
+
protected builder: TableBuilder;
|
|
14
|
+
refreshTable: boolean;
|
|
15
|
+
table: TablePrimaryModel;
|
|
16
|
+
metaData: MetaDataModel;
|
|
17
|
+
deletePermission: string;
|
|
18
|
+
editPermission: string;
|
|
19
|
+
constructor(service: BaseService<T>, builder: TableBuilder);
|
|
20
|
+
ngOnChanges(): void;
|
|
21
|
+
init(dynamicWidth?: any): void;
|
|
22
|
+
afterTableBuild(): void;
|
|
23
|
+
handleRefreshTable(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseListComponent<any>, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "lib-base-list", never, { "refreshTable": { "alias": "refreshTable"; "required": false; }; }, {}, never, never, true, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Message } from 'primeng/api';
|
|
3
|
+
import { BaseQuery } from '../../state/base.query';
|
|
4
|
+
import { BaseStore } from '../../state/base.store';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FormContainerComponent implements OnInit, OnDestroy {
|
|
7
|
+
private baseQuery;
|
|
8
|
+
private baseStore;
|
|
9
|
+
messages: Message[];
|
|
10
|
+
record: any;
|
|
11
|
+
headerText: string | undefined;
|
|
12
|
+
showSave: boolean;
|
|
13
|
+
disableSaveButton: {
|
|
14
|
+
isValid: boolean;
|
|
15
|
+
data: string;
|
|
16
|
+
};
|
|
17
|
+
onSave: EventEmitter<any>;
|
|
18
|
+
onCancel: EventEmitter<any>;
|
|
19
|
+
private destroy$;
|
|
20
|
+
constructor(baseQuery: BaseQuery<any>, baseStore: BaseStore<any>);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
handleSaveClick(): void;
|
|
23
|
+
handleCancelClick(): void;
|
|
24
|
+
handleCreateBtnClick(): void;
|
|
25
|
+
ngOnDestroy(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormContainerComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormContainerComponent, "form-container", never, { "messages": { "alias": "messages"; "required": false; }; "record": { "alias": "record"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "showSave": { "alias": "showSave"; "required": false; }; "disableSaveButton": { "alias": "disableSaveButton"; "required": false; }; }, { "onSave": "onSave"; "onCancel": "onCancel"; }, never, ["[headerButtons]", "[headerButtons]", "*"], true, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BlockListComponent {
|
|
5
|
+
router: Router;
|
|
6
|
+
queueData: any[];
|
|
7
|
+
showQueueDataForm: boolean;
|
|
8
|
+
queueDataById: EventEmitter<any>;
|
|
9
|
+
selectedQueueId: any;
|
|
10
|
+
constructor(router: Router);
|
|
11
|
+
ngOnChanges(): void;
|
|
12
|
+
insertQueue(): void;
|
|
13
|
+
handleQueueClick(queueId: any, showQueueDataForm: any): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BlockListComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BlockListComponent, "block-list", never, { "queueData": { "alias": "queueData"; "required": false; }; "showQueueDataForm": { "alias": "showQueueDataForm"; "required": false; }; }, { "queueDataById": "queueDataById"; }, never, never, true, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class QueueSearchCustomerComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
queues: any[];
|
|
5
|
+
queueData: any[];
|
|
6
|
+
selectedQueue: any;
|
|
7
|
+
onSearch(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueueSearchCustomerComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QueueSearchCustomerComponent, "queue-search-customer", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter, Renderer2 } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SidebarComponent {
|
|
4
|
+
private renderer;
|
|
5
|
+
isSidebarVisible: boolean;
|
|
6
|
+
title: string;
|
|
7
|
+
onClose: EventEmitter<any>;
|
|
8
|
+
constructor(renderer: Renderer2);
|
|
9
|
+
onSidebarShow(): void;
|
|
10
|
+
handleSidebarClose(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "sidebar", never, { "isSidebarVisible": { "alias": "isSidebarVisible"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, { "onClose": "onClose"; }, never, ["*"], false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This class is used to store the API Paths for the application
|
|
3
|
+
*/
|
|
4
|
+
export declare class DATASOURCES {
|
|
5
|
+
static QUEUES: string;
|
|
6
|
+
static DICTIONARY: string;
|
|
7
|
+
static ACTIONS: string;
|
|
8
|
+
static WIDGET: string;
|
|
9
|
+
static APIMANAGEMENT: string;
|
|
10
|
+
static APPLICATION: string;
|
|
11
|
+
static DOCUMETS: string;
|
|
12
|
+
static RATIONALE: string;
|
|
13
|
+
static Template: string;
|
|
14
|
+
static QUEUESAPICONFIG: string;
|
|
15
|
+
static DELETEDICTIONARYITEM: string;
|
|
16
|
+
static APPLICATION_QUEUE_SEARCH: string;
|
|
17
|
+
static APPLICATION_ASSIGNMENT: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare class ERROR {
|
|
2
|
+
static ERROR: string;
|
|
3
|
+
static VALIDATE_API_FAILED: string;
|
|
4
|
+
static VALIDATE_ACTION_API_FAILED: string;
|
|
5
|
+
static API_CONFIG_FAILED: string;
|
|
6
|
+
static API_CONFIG_LOADING_FAILED: string;
|
|
7
|
+
static API_NAME_NOT_SET: string;
|
|
8
|
+
static ERROR_FETCHING_DATA: string;
|
|
9
|
+
static UNABLE_TO_FETCH_QUEUE_LIST: string;
|
|
10
|
+
static NO_QUEUE_FOUND_WITH_ID: string;
|
|
11
|
+
static ERROR_FETCHING_WIDGET_DATA: string;
|
|
12
|
+
static ERROR_MISSING_PARAMETERS: string;
|
|
13
|
+
static INVALID_INDEX: string;
|
|
14
|
+
static ERROR_DELETE_DICTIONARY_ITEM: string;
|
|
15
|
+
static MISSING_REQUIRED_FIELD: string;
|
|
16
|
+
static API_VALIDATE_REQURIED: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare class PERMISSION {
|
|
2
|
+
static ACTIONCONFIG_PUT: string;
|
|
3
|
+
static ACTIONCONFIG_DELETE: string;
|
|
4
|
+
static API_CONFIG_PUT: string;
|
|
5
|
+
static API_CONFIG_DELETE: string;
|
|
6
|
+
static DD_ADMIN_PUT: string;
|
|
7
|
+
static DD_ADMIN_DELETE: string;
|
|
8
|
+
static MESSAGE_TEMPLATE_PUT: string;
|
|
9
|
+
static MESSAGE_TEMPLATE_DELETE: string;
|
|
10
|
+
static WIDGETS_PUT: string;
|
|
11
|
+
static WIDGETS_DELETE: string;
|
|
12
|
+
static WIDGETS_EVALUATE: string;
|
|
13
|
+
static QUEUES_GET: string;
|
|
14
|
+
static QUEUES_POST: string;
|
|
15
|
+
static QUEUES_PUT: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare class ROUTES {
|
|
2
|
+
static RECORD: string;
|
|
3
|
+
static QUEUE_FORM: string;
|
|
4
|
+
static DICTIONARY_CREATE_FORM: string;
|
|
5
|
+
static DICTIONARY: string;
|
|
6
|
+
static APIMANAGEMENT: string;
|
|
7
|
+
static APICONFIG: string;
|
|
8
|
+
static VALIDATEAPI: string;
|
|
9
|
+
static APPLICATION: string;
|
|
10
|
+
static APIPROPERTIES: string;
|
|
11
|
+
static APPLICATION_WIDGET_CACHE: string;
|
|
12
|
+
static APPLICATION_WIDGET: string;
|
|
13
|
+
static DOCUMENTALERT: string;
|
|
14
|
+
static VALIDATE_ACTIONS: string;
|
|
15
|
+
static EVALUATE_BY_WIDGETNAME: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
export declare class SHARED {
|
|
2
|
+
static EMPTY: string;
|
|
3
|
+
static REQUIRED_ERROR: string;
|
|
4
|
+
static EMPTYARRAY: never[];
|
|
5
|
+
static NULL: string;
|
|
6
|
+
static SOLICITORID: string;
|
|
7
|
+
static HIPHEN: string;
|
|
8
|
+
static SLASH: string;
|
|
9
|
+
static USERROLE: string;
|
|
10
|
+
static SESSIONKEY: string;
|
|
11
|
+
static SUCCESS: string;
|
|
12
|
+
static ERROR: string;
|
|
13
|
+
static ERROR_MESSAGE: string;
|
|
14
|
+
static SUCCESS_MESSAGE: string;
|
|
15
|
+
static DICTIONARY: string;
|
|
16
|
+
static TITLE: string;
|
|
17
|
+
static DICTIONARY_ITEM: string;
|
|
18
|
+
static DICTIONARY_ITEM_MAPPER: string;
|
|
19
|
+
static SIDEBAR_MASK: string;
|
|
20
|
+
static CUSTOMSIDEBAROVERLAY: string;
|
|
21
|
+
static ID: string;
|
|
22
|
+
static _ID: string;
|
|
23
|
+
static DATE_FORMAT: string;
|
|
24
|
+
static DATE_FORMAT_TYPE2: string;
|
|
25
|
+
static DATE_FORMAT_TYPE3: string;
|
|
26
|
+
static DATE_FORMAT_TYPE4: string;
|
|
27
|
+
static INVALIDDATE: string;
|
|
28
|
+
static __V: string;
|
|
29
|
+
static CREATEDAT: string;
|
|
30
|
+
static UPDATEDAT: string;
|
|
31
|
+
static ZERO: number;
|
|
32
|
+
static TYPE_OBJECT: string;
|
|
33
|
+
static DICTIONARYITEMS: string;
|
|
34
|
+
static GET_DATA_MESSAGE: {
|
|
35
|
+
severity: string;
|
|
36
|
+
detail: string;
|
|
37
|
+
life: number;
|
|
38
|
+
}[];
|
|
39
|
+
static PRIMARY: string;
|
|
40
|
+
static mappingInfo: string;
|
|
41
|
+
static YES: string;
|
|
42
|
+
static NO: string;
|
|
43
|
+
static selectedQueue: string;
|
|
44
|
+
static DASH: string;
|
|
45
|
+
static selectedApplication: string;
|
|
46
|
+
static selectedApplicationNumber: string;
|
|
47
|
+
static GREEN: string;
|
|
48
|
+
static RED: string;
|
|
49
|
+
static FROM_EMAIL: string;
|
|
50
|
+
static to_EMAIL: string;
|
|
51
|
+
static EMAIL: string;
|
|
52
|
+
static token: string;
|
|
53
|
+
static null: string;
|
|
54
|
+
static undefined: string;
|
|
55
|
+
static rationale: string;
|
|
56
|
+
static accepted: string;
|
|
57
|
+
static application: string;
|
|
58
|
+
static INVALID_API_PATH: string;
|
|
59
|
+
static WIDTH_AUTO: string;
|
|
60
|
+
static TRUE: boolean;
|
|
61
|
+
static FALSE: boolean;
|
|
62
|
+
static STRING_TRUE: string;
|
|
63
|
+
static STRING_FALSE: string;
|
|
64
|
+
static AND: string;
|
|
65
|
+
static STRING: string;
|
|
66
|
+
static OPERATORS: string[];
|
|
67
|
+
static STATUS_ACTIVE: string;
|
|
68
|
+
static TODAY: string;
|
|
69
|
+
static YESTERDAY: string;
|
|
70
|
+
static ALL: string;
|
|
71
|
+
static UK: string;
|
|
72
|
+
static INTERNATIONAL: string;
|
|
73
|
+
static QUEUE1: string;
|
|
74
|
+
static QUEUE2: string;
|
|
75
|
+
static QUEUE3: string;
|
|
76
|
+
static SELECTED_QUEUE: string;
|
|
77
|
+
static QUEUEID: string;
|
|
78
|
+
static QUESTION_MARK: string;
|
|
79
|
+
static EQUALS: string;
|
|
80
|
+
static AMPERSAND: string;
|
|
81
|
+
static RECORDID: string;
|
|
82
|
+
static MISSING_WIDGETNAME: string;
|
|
83
|
+
static MISSING_QUEUE_ID: string;
|
|
84
|
+
static MISSING_RECORD_ID: string;
|
|
85
|
+
static EMPTY_STRING: string;
|
|
86
|
+
static SELECTED_QUEUE_ID: string;
|
|
87
|
+
static ISITEMEXPRESSION: string;
|
|
88
|
+
static DT2: string;
|
|
89
|
+
static TEXTBOXFIELD: string;
|
|
90
|
+
static DROPDOWN: string;
|
|
91
|
+
static TEXTAREA: string;
|
|
92
|
+
static DATAITEMS: string;
|
|
93
|
+
static ASC: string;
|
|
94
|
+
static DESC: string;
|
|
95
|
+
static ACTIVE: string;
|
|
96
|
+
static IN_ACTIVE: string;
|
|
97
|
+
static SEMICOLON_STRING: string;
|
|
98
|
+
static COLON_STRING: string;
|
|
99
|
+
static PAGINATOR: string;
|
|
100
|
+
static BROWSER_WARNING: string;
|
|
101
|
+
static DIRECT_DEBITID: string;
|
|
102
|
+
static DIRECT_DEBIT: string;
|
|
103
|
+
static SOLICITOR: string;
|
|
104
|
+
static PRODUCT: string;
|
|
105
|
+
static COMMITMENTS: string;
|
|
106
|
+
static PRODUCT_ID: string;
|
|
107
|
+
static EXPENDITURE: string;
|
|
108
|
+
static INCOME: string;
|
|
109
|
+
static WIDGET_NAME: string;
|
|
110
|
+
static IS_MENU: string;
|
|
111
|
+
static ON_WIDGET_UPDATE: string;
|
|
112
|
+
static selectedApplicationType: string;
|
|
113
|
+
}
|
|
114
|
+
export declare const widgetLayoutTypeList: {
|
|
115
|
+
name: string;
|
|
116
|
+
value: string;
|
|
117
|
+
}[];
|
|
118
|
+
export declare const statusList: {
|
|
119
|
+
name: string;
|
|
120
|
+
}[];
|
|
121
|
+
export declare const msgTemplateTypeList: {
|
|
122
|
+
id: number;
|
|
123
|
+
value: string;
|
|
124
|
+
}[];
|
|
125
|
+
export declare const textEditorToolbar: (string[] | {
|
|
126
|
+
list: string;
|
|
127
|
+
}[] | {
|
|
128
|
+
header: (number | boolean)[];
|
|
129
|
+
}[])[];
|
|
130
|
+
export declare const TemplateTabType: string[];
|
|
131
|
+
export declare const MESSAGE_TYPES: string[];
|
|
132
|
+
export declare const delimiters: string[];
|
|
133
|
+
export declare const dictionaryItemList: never[];
|
|
134
|
+
export declare const dictionaryItemMapperList: never[];
|
|
135
|
+
export declare const dictionaryApiFieldList: {
|
|
136
|
+
title: string;
|
|
137
|
+
data: {
|
|
138
|
+
name: string;
|
|
139
|
+
}[];
|
|
140
|
+
};
|
|
141
|
+
export declare const FolderPanel: {
|
|
142
|
+
_id: string;
|
|
143
|
+
fileCount: number;
|
|
144
|
+
text: string;
|
|
145
|
+
missingFiles: number;
|
|
146
|
+
pendingFiles: number;
|
|
147
|
+
}[];
|
|
148
|
+
export declare const DocumentList: {
|
|
149
|
+
id: number;
|
|
150
|
+
fileName: string;
|
|
151
|
+
status: string;
|
|
152
|
+
documentUrl: string;
|
|
153
|
+
}[];
|
|
154
|
+
export declare const widgetLinkList: {
|
|
155
|
+
name: string;
|
|
156
|
+
code: string;
|
|
157
|
+
}[];
|
|
158
|
+
export declare const dictionaryList: {
|
|
159
|
+
id: number;
|
|
160
|
+
Name: string;
|
|
161
|
+
API: string;
|
|
162
|
+
}[];
|
|
163
|
+
export declare const SEQUENTIAL_MESSAGE: string[];
|
|
164
|
+
export declare const apiHiddenHeaderList: string[];
|
|
165
|
+
export declare const dictionaryHiddenHeaderList: string[];
|
|
166
|
+
export declare const widgetHiddenHeaderList: string[];
|
|
167
|
+
export declare const templateHiddenHeaderList: string[];
|
|
168
|
+
export declare const hiddenHeaderList: string[];
|
|
169
|
+
export declare const expectedRoutes: string[];
|
|
170
|
+
export declare const mileList: {
|
|
171
|
+
name: string;
|
|
172
|
+
value: number;
|
|
173
|
+
}[];
|
|
174
|
+
export declare const messageType: {
|
|
175
|
+
name: string;
|
|
176
|
+
icon: string;
|
|
177
|
+
}[];
|
|
178
|
+
export declare const propertyDataList: ({
|
|
179
|
+
key: string;
|
|
180
|
+
label: string;
|
|
181
|
+
data: string;
|
|
182
|
+
icon: string;
|
|
183
|
+
children: {
|
|
184
|
+
key: string;
|
|
185
|
+
label: string;
|
|
186
|
+
icon: string;
|
|
187
|
+
data: string;
|
|
188
|
+
}[];
|
|
189
|
+
} | {
|
|
190
|
+
key: string;
|
|
191
|
+
label: string;
|
|
192
|
+
data: string;
|
|
193
|
+
icon: string;
|
|
194
|
+
children: {
|
|
195
|
+
key: string;
|
|
196
|
+
label: string;
|
|
197
|
+
icon: string;
|
|
198
|
+
data: string;
|
|
199
|
+
children: ({
|
|
200
|
+
key: string;
|
|
201
|
+
label: string;
|
|
202
|
+
icon: string;
|
|
203
|
+
data: string;
|
|
204
|
+
selectable?: undefined;
|
|
205
|
+
} | {
|
|
206
|
+
key: string;
|
|
207
|
+
label: string;
|
|
208
|
+
icon: string;
|
|
209
|
+
data: string;
|
|
210
|
+
selectable: boolean;
|
|
211
|
+
})[];
|
|
212
|
+
}[];
|
|
213
|
+
})[];
|
|
214
|
+
export declare const actionHiddenHeaderList: string[];
|
|
215
|
+
export declare const actionList: {
|
|
216
|
+
action: string;
|
|
217
|
+
prompt: string;
|
|
218
|
+
queueId: string;
|
|
219
|
+
apiEndPoint: string;
|
|
220
|
+
status: string;
|
|
221
|
+
}[];
|
|
222
|
+
export declare const offerWidgetList: ({
|
|
223
|
+
title: string;
|
|
224
|
+
badge: string;
|
|
225
|
+
badgeIcon: string;
|
|
226
|
+
statusList: ({
|
|
227
|
+
description: string;
|
|
228
|
+
status: string;
|
|
229
|
+
title?: undefined;
|
|
230
|
+
textColor?: undefined;
|
|
231
|
+
} | {
|
|
232
|
+
title: string;
|
|
233
|
+
description: string;
|
|
234
|
+
status: string;
|
|
235
|
+
textColor: string;
|
|
236
|
+
})[];
|
|
237
|
+
viewAll: string;
|
|
238
|
+
} | {
|
|
239
|
+
title: string;
|
|
240
|
+
badge: string;
|
|
241
|
+
badgeIcon: string;
|
|
242
|
+
statusList: ({
|
|
243
|
+
description: string;
|
|
244
|
+
status: string;
|
|
245
|
+
title?: undefined;
|
|
246
|
+
textColor?: undefined;
|
|
247
|
+
} | {
|
|
248
|
+
title: string;
|
|
249
|
+
description: string;
|
|
250
|
+
status: string;
|
|
251
|
+
textColor: string;
|
|
252
|
+
})[];
|
|
253
|
+
viewAll?: undefined;
|
|
254
|
+
})[];
|
|
255
|
+
export declare const actionTableColumnWidthList: {
|
|
256
|
+
name: string;
|
|
257
|
+
apiConfigId: string;
|
|
258
|
+
queueId: string;
|
|
259
|
+
prompt: string;
|
|
260
|
+
isActive: string;
|
|
261
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ButtonComponent extends BaseControlComponent {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "lib-button", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* CheckBoxComponent
|
|
5
|
+
*/
|
|
6
|
+
export declare class CheckBoxComponent extends BaseControlComponent {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckBoxComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckBoxComponent, "check-box", never, {}, {}, never, never, true, never>;
|
|
9
|
+
}
|