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,14 @@
|
|
|
1
|
+
import { OnChanges } from '@angular/core';
|
|
2
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
3
|
+
import { DateParserService } from '../../services/date-parser.service';
|
|
4
|
+
import { BaseStore } from '../../state/base.store';
|
|
5
|
+
import { BaseQuery } from '../../state/base.query';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class DateComponent extends BaseControlComponent implements OnChanges {
|
|
8
|
+
dateService: DateParserService;
|
|
9
|
+
constructor(baseStore: BaseStore<any>, dateService: DateParserService, baseQuery: BaseQuery<any>);
|
|
10
|
+
ngOnChanges(): void;
|
|
11
|
+
getValue(): string;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateComponent, "date", never, {}, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import { SelectItem } from 'primeng/api';
|
|
3
|
+
import { ListService } from '../../services/list.service';
|
|
4
|
+
import { List } from '../../models/list.model';
|
|
5
|
+
import { BaseQuery } from '../../state/base.query';
|
|
6
|
+
import { BaseStore } from '../../state/base.store';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
/**
|
|
9
|
+
* DropdownComponent
|
|
10
|
+
*/
|
|
11
|
+
export declare class DropdownComponent extends BaseControlComponent {
|
|
12
|
+
listService: ListService;
|
|
13
|
+
options: SelectItem[] | undefined;
|
|
14
|
+
list: List | undefined;
|
|
15
|
+
childListRecords: any[];
|
|
16
|
+
isStaticDropdown: boolean;
|
|
17
|
+
constructor(baseStore: BaseStore<any>, listService: ListService, baseQuery: BaseQuery<any>);
|
|
18
|
+
ngOnChanges(): void;
|
|
19
|
+
handleGetAndSetList(): void;
|
|
20
|
+
private mapResponseToOptions;
|
|
21
|
+
handleModelChange(event: any, valid: boolean | null, val?: any): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "dropdown", never, { "isStaticDropdown": { "alias": "isStaticDropdown"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FileUploadComponent extends BaseControlComponent {
|
|
4
|
+
handleSingleUpload(event: any): void;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "file-upload", never, {}, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import { BaseStore } from '../../state/base.store';
|
|
3
|
+
import { BaseQuery } from '../../state/base.query';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PasswordComponent extends BaseControlComponent {
|
|
6
|
+
invalidPasswordErrorMsg: string | undefined;
|
|
7
|
+
constructor(baseStore: BaseStore<any>, baseQuery: BaseQuery<any>);
|
|
8
|
+
ngOninit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PasswordComponent, "password", never, {}, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TextAreaComponent extends BaseControlComponent {
|
|
4
|
+
rowspan: number;
|
|
5
|
+
getValue(): any;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "text-area", never, { "rowspan": { "alias": "rowspan"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TextBoxComponent extends BaseControlComponent {
|
|
4
|
+
getValue(): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextBoxComponent, "text-box", never, {}, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -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 UsernameComponent extends BaseControlComponent {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UsernameComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UsernameComponent, "username", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ElementRef, Renderer2, SimpleChanges, OnChanges } from '@angular/core';
|
|
2
|
+
import { SessionService } from '../services/session.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HasPermissionDirective implements OnChanges {
|
|
5
|
+
private el;
|
|
6
|
+
private renderer;
|
|
7
|
+
sessionService: SessionService;
|
|
8
|
+
permission?: string | string[];
|
|
9
|
+
constructor(el: ElementRef, renderer: Renderer2, sessionService: SessionService);
|
|
10
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
+
private checkPermission;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HasPermissionDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HasPermissionDirective, "[permission]", never, { "permission": { "alias": "permission"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -1,39 +1,34 @@
|
|
|
1
|
-
export * from './shared.module';
|
|
2
|
-
export * from './constant/SHARED';
|
|
3
|
-
export * from './constant/ROUTES';
|
|
4
|
-
export * from './constant/DATASOURCES';
|
|
5
|
-
export * from './constant/HEADERS';
|
|
6
|
-
export * from './constant/URLS';
|
|
7
|
-
export * from './controls/username/username.component';
|
|
8
|
-
export * from './controls/password/password.component';
|
|
9
|
-
export * from './controls/text-box/text-box.component';
|
|
10
|
-
export * from './controls/date/date.component';
|
|
11
|
-
export * from './controls/button/button.component';
|
|
12
|
-
export * from './controls/check-box/check-box.component';
|
|
13
|
-
export * from './components/sidebar/sidebar.component';
|
|
14
|
-
export * from './constant/CSS'
|
|
15
|
-
export * from './models/attribute.model';
|
|
16
|
-
export * from './models/base.model';
|
|
17
|
-
export * from './state/base.store';
|
|
18
|
-
export * from './state/base.query';
|
|
19
|
-
export * from './constant/ERROR';
|
|
20
|
-
|
|
21
|
-
export * from './services/
|
|
22
|
-
export * from './
|
|
23
|
-
|
|
24
|
-
export * from './
|
|
25
|
-
export * from './_base/base-
|
|
26
|
-
export * from './
|
|
27
|
-
export * from './
|
|
28
|
-
|
|
29
|
-
export * from './
|
|
30
|
-
export * from './
|
|
31
|
-
export * from './table-
|
|
32
|
-
export * from './table-
|
|
33
|
-
export * from './table-
|
|
34
|
-
export * from './
|
|
35
|
-
export * from './table-secondary/models/table-secondary.model';
|
|
36
|
-
export * from './table-secondary/models/table-secondary-header.model';
|
|
37
|
-
export * from './pipe/capitalize-words.pipe'
|
|
38
|
-
|
|
39
|
-
|
|
1
|
+
export * from './shared.module';
|
|
2
|
+
export * from './constant/SHARED';
|
|
3
|
+
export * from './constant/ROUTES';
|
|
4
|
+
export * from './constant/DATASOURCES';
|
|
5
|
+
export * from './constant/HEADERS';
|
|
6
|
+
export * from './constant/URLS';
|
|
7
|
+
export * from './controls/username/username.component';
|
|
8
|
+
export * from './controls/password/password.component';
|
|
9
|
+
export * from './controls/text-box/text-box.component';
|
|
10
|
+
export * from './controls/date/date.component';
|
|
11
|
+
export * from './controls/button/button.component';
|
|
12
|
+
export * from './controls/check-box/check-box.component';
|
|
13
|
+
export * from './components/sidebar/sidebar.component';
|
|
14
|
+
export * from './constant/CSS';
|
|
15
|
+
export * from './models/attribute.model';
|
|
16
|
+
export * from './models/base.model';
|
|
17
|
+
export * from './state/base.store';
|
|
18
|
+
export * from './state/base.query';
|
|
19
|
+
export * from './constant/ERROR';
|
|
20
|
+
export * from './services/auth/auth.guard';
|
|
21
|
+
export * from './services/app-config.service';
|
|
22
|
+
export * from './state/base.service';
|
|
23
|
+
export * from './_base/base-list/base-list.component';
|
|
24
|
+
export * from './_base/base-form/base-form.component';
|
|
25
|
+
export * from './_base/base-container/base-container.component';
|
|
26
|
+
export * from './services/table.builder';
|
|
27
|
+
export * from './constant/LOOKUPS';
|
|
28
|
+
export * from './table-primary/components/table-primary.component';
|
|
29
|
+
export * from './table-primary/models/table-primary.model';
|
|
30
|
+
export * from './table-primary/models/table-primary-header.model';
|
|
31
|
+
export * from './table-secondary/components/table-secondary.component';
|
|
32
|
+
export * from './table-secondary/models/table-secondary.model';
|
|
33
|
+
export * from './table-secondary/models/table-secondary-header.model';
|
|
34
|
+
export * from './pipe/capitalize-words.pipe';
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { SelectItem } from "primeng/api";
|
|
2
|
+
export declare class AttributeModel {
|
|
3
|
+
displayText?: string;
|
|
4
|
+
readonly?: boolean;
|
|
5
|
+
name?: any;
|
|
6
|
+
isRequired?: boolean;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
maxLength?: number;
|
|
9
|
+
infoText?: string;
|
|
10
|
+
buttonLabel?: string;
|
|
11
|
+
isDisabled?: boolean;
|
|
12
|
+
customButtonWidth?: string;
|
|
13
|
+
isPrimary?: number;
|
|
14
|
+
title?: string;
|
|
15
|
+
customColumnWidth?: string;
|
|
16
|
+
customHeight?: string;
|
|
17
|
+
icon?: string;
|
|
18
|
+
iconPosition?: 'left' | 'right';
|
|
19
|
+
customPadding?: string;
|
|
20
|
+
dataSource?: string;
|
|
21
|
+
listValueProperty?: string;
|
|
22
|
+
listLabelProperty?: string;
|
|
23
|
+
options?: SelectItem[];
|
|
24
|
+
childListName?: any;
|
|
25
|
+
childListKey?: any;
|
|
26
|
+
inputId?: string;
|
|
27
|
+
allowFraction?: string;
|
|
28
|
+
numberMode?: string;
|
|
29
|
+
currency?: string;
|
|
30
|
+
locale?: 'en-GB';
|
|
31
|
+
tooltip?: string;
|
|
32
|
+
toolTipPosition?: string;
|
|
33
|
+
hourFormat?: string;
|
|
34
|
+
yearRange?: string;
|
|
35
|
+
showCalenderIcon?: boolean;
|
|
36
|
+
additionalFilterList?: string;
|
|
37
|
+
additionalFilterKey?: string;
|
|
38
|
+
lookupName?: any;
|
|
39
|
+
textColorOnReadonly?: any;
|
|
40
|
+
hideLabelOnForm?: boolean;
|
|
41
|
+
disable?: boolean;
|
|
42
|
+
filter?: boolean;
|
|
43
|
+
}
|
package/{src/lib/shared/models/custom-widget.model.ts → lib/shared/models/custom-widget.model.d.ts}
RENAMED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
export interface StatusItem {
|
|
2
|
-
description: string;
|
|
3
|
-
status: string;
|
|
4
|
-
title?: string;
|
|
5
|
-
textColor?: string;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}
|
|
1
|
+
export interface StatusItem {
|
|
2
|
+
description: string;
|
|
3
|
+
status: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
textColor?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface CustomWidgetModel {
|
|
8
|
+
title: string;
|
|
9
|
+
badge?: string;
|
|
10
|
+
badgeIcon?: string;
|
|
11
|
+
statusList?: StatusItem[];
|
|
12
|
+
viewAll?: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SelectItem } from "primeng/api";
|
|
2
|
+
export declare class List {
|
|
3
|
+
dataSource?: string;
|
|
4
|
+
records: any[];
|
|
5
|
+
label: string;
|
|
6
|
+
value: string;
|
|
7
|
+
forProperty: string;
|
|
8
|
+
items: SelectItem[];
|
|
9
|
+
allItems: SelectItem[];
|
|
10
|
+
constructor(dataSource: string, records: any[] | undefined, label: string, value: string, forProperty?: string);
|
|
11
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CapitalizeWordsPipe implements PipeTransform {
|
|
4
|
+
transform(value: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CapitalizeWordsPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<CapitalizeWordsPipe, "capitalizeWords", true>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* This service is used to get the app configuration from the config file.
|
|
5
|
+
*/
|
|
6
|
+
export declare class AppConfigService {
|
|
7
|
+
private http;
|
|
8
|
+
private appConfig;
|
|
9
|
+
private isConfigLoaded;
|
|
10
|
+
constructor(http: HttpClient);
|
|
11
|
+
loadAppConfig(): Promise<void>;
|
|
12
|
+
private ensureConfigLoaded;
|
|
13
|
+
get apiBaseUrl(): any;
|
|
14
|
+
get interactBaseApi(): any;
|
|
15
|
+
get visibilityOptions(): any;
|
|
16
|
+
get swaggerUrl(): any;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppConfigService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppConfigService>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, Router } from '@angular/router';
|
|
2
|
+
import { SessionService } from '../session.service';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AuthGuard implements CanActivate {
|
|
6
|
+
_sessionService: SessionService;
|
|
7
|
+
private _router;
|
|
8
|
+
constructor(_sessionService: SessionService, _router: Router);
|
|
9
|
+
canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthGuard, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthGuard>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CustomWidgetModel, StatusItem } from "../models/custom-widget.model";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CustomWidgetService {
|
|
4
|
+
constructor();
|
|
5
|
+
isLastIndex(event: StatusItem, widgetData: CustomWidgetModel): boolean;
|
|
6
|
+
getNextEventStatus(event: StatusItem, widgetData: CustomWidgetModel): string | null;
|
|
7
|
+
getEventIndex(event: StatusItem, widgetData: CustomWidgetModel): number;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomWidgetService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CustomWidgetService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class DataTransformerService {
|
|
3
|
+
constructor();
|
|
4
|
+
flattenObject(data: any, result?: any[], additionalFields?: any): any[];
|
|
5
|
+
transformLabel(key: string): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataTransformerService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DataTransformerService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class DateParserService {
|
|
3
|
+
constructor();
|
|
4
|
+
parseDate(date: any): string | Date;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateParserService, never>;
|
|
6
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DateParserService>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FormStateService {
|
|
3
|
+
private formChangesSubject$;
|
|
4
|
+
private isFormNavigating$;
|
|
5
|
+
private isShowConfirmation$;
|
|
6
|
+
constructor();
|
|
7
|
+
setIsFormNavigating(isNavigation: boolean): void;
|
|
8
|
+
getIsFormNavigating(): boolean;
|
|
9
|
+
selectIsFormNavigating(): import("rxjs").Observable<boolean>;
|
|
10
|
+
setIsFormSaved(hasChanges: boolean): void;
|
|
11
|
+
getIsFormSaved(): boolean;
|
|
12
|
+
selectIsFormSaved(): import("rxjs").Observable<boolean>;
|
|
13
|
+
setShowConfirmation(value: boolean): void;
|
|
14
|
+
selectShowConfirmation(): import("rxjs").Observable<boolean>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormStateService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FormStateService>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { List } from "../models/list.model";
|
|
2
|
+
import { HttpClient } from "@angular/common/http";
|
|
3
|
+
import { AppConfigService } from "./app-config.service";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ListService {
|
|
6
|
+
http: HttpClient;
|
|
7
|
+
configService: AppConfigService;
|
|
8
|
+
constructor(http: HttpClient, configService: AppConfigService);
|
|
9
|
+
getLists(models: any[]): Promise<List[]>;
|
|
10
|
+
getbyPathName<T>(data: string): import("rxjs").Observable<T>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ListService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SessionService {
|
|
4
|
+
router: Router;
|
|
5
|
+
constructor(router: Router);
|
|
6
|
+
getUserRole(): string | null;
|
|
7
|
+
setUserSession(data: any): void;
|
|
8
|
+
getUserPermissions(): any;
|
|
9
|
+
getUserSession(): any;
|
|
10
|
+
getSessionID(): number;
|
|
11
|
+
clearSession(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SessionService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SessionService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class StyleBuilderService {
|
|
3
|
+
constructor();
|
|
4
|
+
getStyle(style: any): {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
parseStyleObject(styleStr?: string): Record<string, any>;
|
|
8
|
+
private normalizeStyleObject;
|
|
9
|
+
getItemStyle(style: any | undefined): {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StyleBuilderService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StyleBuilderService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { TablePrimaryModel } from "../table-primary/models/table-primary.model";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* TableBuilder
|
|
5
|
+
*/
|
|
6
|
+
export declare class TableBuilder {
|
|
7
|
+
hiddenHeaders: string[];
|
|
8
|
+
buildTable(records: any[], headerWidths?: {
|
|
9
|
+
[key: string]: string;
|
|
10
|
+
}, editPermission?: string, deletePermission?: string): TablePrimaryModel;
|
|
11
|
+
private buildHeaders;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableBuilder, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TableBuilder>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ValidatorService {
|
|
3
|
+
constructor();
|
|
4
|
+
handleValidateRecords(record: any): boolean;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValidatorService, never>;
|
|
6
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ValidatorService>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/sidebar/sidebar.component";
|
|
3
|
+
import * as i2 from "./components/queue-search-customer/queue-search-customer.component";
|
|
4
|
+
import * as i3 from "./directives/permission.directive";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
import * as i6 from "primeng/inputtext";
|
|
8
|
+
import * as i7 from "primeng/button";
|
|
9
|
+
import * as i8 from "primeng/dropdown";
|
|
10
|
+
import * as i9 from "primeng/inputgroup";
|
|
11
|
+
import * as i10 from "primeng/card";
|
|
12
|
+
import * as i11 from "primeng/sidebar";
|
|
13
|
+
import * as i12 from "./controls/check-box/check-box.component";
|
|
14
|
+
import * as i13 from "primeng/dragdrop";
|
|
15
|
+
import * as i14 from "./components/form-container/form-container.component";
|
|
16
|
+
import * as i15 from "./_base/base-list/base-list.component";
|
|
17
|
+
import * as i16 from "./controls/dropdown/dropdown.component";
|
|
18
|
+
import * as i17 from "./controls/text-box/text-box.component";
|
|
19
|
+
import * as i18 from "primeng/inputtextarea";
|
|
20
|
+
import * as i19 from "primeng/divider";
|
|
21
|
+
import * as i20 from "./controls/date/date.component";
|
|
22
|
+
import * as i21 from "primeng/dialog";
|
|
23
|
+
import * as i22 from "primeng/timeline";
|
|
24
|
+
import * as i23 from "primeng/listbox";
|
|
25
|
+
import * as i24 from "primeng/checkbox";
|
|
26
|
+
import * as i25 from "./controls/file-upload/file-upload.component";
|
|
27
|
+
import * as i26 from "primeng/fileupload";
|
|
28
|
+
import * as i27 from "./pipe/capitalize-words.pipe";
|
|
29
|
+
import * as i28 from "./controls/text-area/text-area.component";
|
|
30
|
+
import * as i29 from "./_base/base-form/base-form.component";
|
|
31
|
+
import * as i30 from "./components/list/block-list.component";
|
|
32
|
+
export declare class SharedModule {
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
34
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.SidebarComponent, typeof i2.QueueSearchCustomerComponent, typeof i3.HasPermissionDirective], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i6.InputTextModule, typeof i7.ButtonModule, typeof i8.DropdownModule, typeof i9.InputGroupModule, typeof i10.CardModule, typeof i11.SidebarModule, typeof i12.CheckBoxComponent, typeof i13.DragDropModule, typeof i14.FormContainerComponent, typeof i15.BaseListComponent, typeof i16.DropdownComponent, typeof i15.BaseListComponent, typeof i17.TextBoxComponent, typeof i18.InputTextareaModule, typeof i19.DividerModule, typeof i20.DateComponent, typeof i21.DialogModule, typeof i22.TimelineModule, typeof i23.ListboxModule, typeof i24.CheckboxModule, typeof i25.FileUploadComponent, typeof i26.FileUploadModule, typeof i27.CapitalizeWordsPipe, typeof i28.TextAreaComponent, typeof i29.BaseFormComponent, typeof i30.BlockListComponent], [typeof i3.HasPermissionDirective, typeof i27.CapitalizeWordsPipe, typeof i17.TextBoxComponent, typeof i5.FormsModule, typeof i23.ListboxModule, typeof i21.DialogModule, typeof i24.CheckboxModule, typeof i16.DropdownComponent, typeof i14.FormContainerComponent, typeof i15.BaseListComponent, typeof i1.SidebarComponent, typeof i19.DividerModule, typeof i10.CardModule, typeof i2.QueueSearchCustomerComponent, typeof i30.BlockListComponent]>;
|
|
35
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { QueryEntity } from '@datorama/akita';
|
|
2
|
+
import { BaseEntityState, BaseStore } from './base.store';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { BaseModel } from '../models/base.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* BaseQuery is a generic class that extends QueryEntity from Akita.
|
|
8
|
+
* It provides methods to interact with the state of entities managed by the BaseStore.
|
|
9
|
+
*/
|
|
10
|
+
export declare class BaseQuery<T extends BaseModel> extends QueryEntity<BaseEntityState<T>, T> {
|
|
11
|
+
protected store: BaseStore<T>;
|
|
12
|
+
constructor(store: BaseStore<T>);
|
|
13
|
+
selectAllEntities(): Observable<T[]>;
|
|
14
|
+
selectEntityById(id: string): Observable<T | undefined>;
|
|
15
|
+
getLists(): Observable<any>;
|
|
16
|
+
getAttributeModelList(): Observable<any>;
|
|
17
|
+
getIsFormSubmitted(): Observable<any>;
|
|
18
|
+
getIsApiValidated(): Observable<any>;
|
|
19
|
+
getIsShowMessage(): Observable<any>;
|
|
20
|
+
getSelectedTemplate(): Observable<any>;
|
|
21
|
+
getRecordChange(): Observable<any>;
|
|
22
|
+
getOnDocumentAccept(): Observable<any>;
|
|
23
|
+
getonDailogClose(): Observable<any>;
|
|
24
|
+
getOpenDocument(): Observable<any>;
|
|
25
|
+
getAlertMessage(): Observable<any>;
|
|
26
|
+
selectPage(): Observable<any>;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseQuery<any>, never>;
|
|
28
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BaseQuery<any>>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { BaseStore } from './base.store';
|
|
4
|
+
import { BaseModel } from '../models/base.model';
|
|
5
|
+
import { AppConfigService } from '../services/app-config.service';
|
|
6
|
+
import { ListService } from '../services/list.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class BaseService<T extends BaseModel> {
|
|
9
|
+
private store;
|
|
10
|
+
private appConfigService;
|
|
11
|
+
protected listService: ListService;
|
|
12
|
+
_pathName: string | undefined;
|
|
13
|
+
protected lists: string[];
|
|
14
|
+
protected http: HttpClient;
|
|
15
|
+
protected list: [];
|
|
16
|
+
constructor(http: HttpClient, store: BaseStore<T>, appConfigService: AppConfigService, listService: ListService);
|
|
17
|
+
get apiUrl(): string;
|
|
18
|
+
get interactBaseApi(): string;
|
|
19
|
+
set pathName(value: string);
|
|
20
|
+
initList(): Promise<void>;
|
|
21
|
+
create(entity: T): Observable<T>;
|
|
22
|
+
getAll(): Observable<T[]>;
|
|
23
|
+
getPaginatedList(search?: string, page?: number, limit?: number, sortBy?: string, order?: string, type?: string, isActive?: any, pathName?: string): Observable<T[]>;
|
|
24
|
+
getById(id: string): Observable<T>;
|
|
25
|
+
update(id: string, entity: T): Observable<T>;
|
|
26
|
+
delete(id: string): Observable<void>;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseService<any>, never>;
|
|
28
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BaseService<any>>;
|
|
29
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export class BaseState {
|
|
2
|
-
records
|
|
3
|
-
lists
|
|
4
|
-
attributeModelList?: any[];
|
|
5
|
-
isFormSubmitted
|
|
6
|
-
isApiValidated?: boolean | null;
|
|
7
|
-
isShowMessage?: boolean;
|
|
8
|
-
selectedTemplate?: string;
|
|
9
|
-
updatedData?: any;
|
|
10
|
-
}
|
|
1
|
+
export declare class BaseState {
|
|
2
|
+
records: any[];
|
|
3
|
+
lists: any[];
|
|
4
|
+
attributeModelList?: any[];
|
|
5
|
+
isFormSubmitted?: any;
|
|
6
|
+
isApiValidated?: boolean | null;
|
|
7
|
+
isShowMessage?: boolean;
|
|
8
|
+
selectedTemplate?: string;
|
|
9
|
+
updatedData?: any;
|
|
10
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { EntityState, EntityStore } from '@datorama/akita';
|
|
2
|
+
import { BaseState } from './base.state';
|
|
3
|
+
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import { BaseModel } from '../models/base.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export interface BaseEntityState<T> extends BaseState, EntityState<T> {
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* BaseStore is a generic class that extends EntityStore from Akita.
|
|
10
|
+
*/
|
|
11
|
+
export declare class BaseStore<T extends BaseModel> extends EntityStore<BaseEntityState<T>, T> {
|
|
12
|
+
static storeName: string;
|
|
13
|
+
missingFields: string[];
|
|
14
|
+
recordChange$: BehaviorSubject<any>;
|
|
15
|
+
onDocumentAccept$: BehaviorSubject<any>;
|
|
16
|
+
onDailogClose$: BehaviorSubject<any>;
|
|
17
|
+
openDocument$: BehaviorSubject<any>;
|
|
18
|
+
alertMessage$: BehaviorSubject<any>;
|
|
19
|
+
queueList$: BehaviorSubject<any>;
|
|
20
|
+
constructor();
|
|
21
|
+
setList(data: T[]): void;
|
|
22
|
+
setAttributeModelList(data: T[]): void;
|
|
23
|
+
setIsFormSubmitted(data: any): void;
|
|
24
|
+
setIsApiValidated(data: any): void;
|
|
25
|
+
setIsShowMessage(data: any): void;
|
|
26
|
+
setSelectedTemplate(data: any): void;
|
|
27
|
+
setRecordChange(value: any): void;
|
|
28
|
+
setOnDocumentAccept(value: any): void;
|
|
29
|
+
setOnDailogClose(value: any): void;
|
|
30
|
+
setOpenDocument(value: any): void;
|
|
31
|
+
setAlertMessage(value: any): void;
|
|
32
|
+
setQueueList(value: any): void;
|
|
33
|
+
setUpdatedData(value: any): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseStore<any>, never>;
|
|
35
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BaseStore<any>>;
|
|
36
|
+
}
|