@pega/angular-sdk-components 0.23.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/_shared/styles.scss +28 -0
- package/esm2022/lib/_bridge/angular-pconnect.mjs +416 -0
- package/esm2022/lib/_bridge/component-mapper/component-mapper.component.mjs +114 -0
- package/esm2022/lib/_bridge/helpers/sdk-pega-component-map.mjs +228 -0
- package/esm2022/lib/_bridge/helpers/sdk_component_map.mjs +142 -0
- package/esm2022/lib/_components/designSystemExtension/alert/alert.component.mjs +50 -0
- package/esm2022/lib/_components/designSystemExtension/alert-banner/alert-banner.component.mjs +29 -0
- package/esm2022/lib/_components/designSystemExtension/banner/banner.component.mjs +31 -0
- package/esm2022/lib/_components/designSystemExtension/case-create-stage/case-create-stage.component.mjs +51 -0
- package/esm2022/lib/_components/designSystemExtension/material-case-summary/material-case-summary.component.mjs +80 -0
- package/esm2022/lib/_components/designSystemExtension/material-details/material-details.component.mjs +37 -0
- package/esm2022/lib/_components/designSystemExtension/material-details-fields/material-details-fields.component.mjs +31 -0
- package/esm2022/lib/_components/designSystemExtension/material-summary-item/material-summary-item.component.mjs +36 -0
- package/esm2022/lib/_components/designSystemExtension/material-summary-list/material-summary-list.component.mjs +25 -0
- package/esm2022/lib/_components/designSystemExtension/material-utility/material-utility.component.mjs +28 -0
- package/esm2022/lib/_components/designSystemExtension/material-vertical-tabs/material-vertical-tabs.component.mjs +42 -0
- package/esm2022/lib/_components/designSystemExtension/operator/operator.component.mjs +136 -0
- package/esm2022/lib/_components/designSystemExtension/pulse/pulse.component.mjs +33 -0
- package/esm2022/lib/_components/designSystemExtension/rich-text-editor/rich-text-editor.component.mjs +93 -0
- package/esm2022/lib/_components/designSystemExtension/wss-quick-create/wss-quick-create.component.mjs +18 -0
- package/esm2022/lib/_components/field/auto-complete/auto-complete.component.mjs +286 -0
- package/esm2022/lib/_components/field/cancel-alert/cancel-alert.component.mjs +98 -0
- package/esm2022/lib/_components/field/check-box/check-box.component.mjs +157 -0
- package/esm2022/lib/_components/field/currency/currency.component.mjs +160 -0
- package/esm2022/lib/_components/field/date/date.component.mjs +219 -0
- package/esm2022/lib/_components/field/date-time/date-time.component.mjs +200 -0
- package/esm2022/lib/_components/field/decimal/decimal.component.mjs +157 -0
- package/esm2022/lib/_components/field/dropdown/dropdown.component.mjs +197 -0
- package/esm2022/lib/_components/field/email/email.component.mjs +150 -0
- package/esm2022/lib/_components/field/integer/integer.component.mjs +155 -0
- package/esm2022/lib/_components/field/list-view-action-buttons/list-view-action-buttons.component.mjs +44 -0
- package/esm2022/lib/_components/field/percentage/percentage.component.mjs +155 -0
- package/esm2022/lib/_components/field/phone/phone.component.mjs +167 -0
- package/esm2022/lib/_components/field/radio-buttons/radio-buttons.component.mjs +189 -0
- package/esm2022/lib/_components/field/rich-text/rich-text.component.mjs +103 -0
- package/esm2022/lib/_components/field/scalar-list/scalar-list.component.mjs +95 -0
- package/esm2022/lib/_components/field/semantic-link/semantic-link.component.mjs +57 -0
- package/esm2022/lib/_components/field/text/text.component.mjs +138 -0
- package/esm2022/lib/_components/field/text-area/text-area.component.mjs +155 -0
- package/esm2022/lib/_components/field/text-content/text-content.component.mjs +69 -0
- package/esm2022/lib/_components/field/text-input/text-input.component.mjs +152 -0
- package/esm2022/lib/_components/field/time/time.component.mjs +151 -0
- package/esm2022/lib/_components/field/url/url.component.mjs +150 -0
- package/esm2022/lib/_components/field/user-reference/user-reference.component.mjs +175 -0
- package/esm2022/lib/_components/infra/Containers/flow-container/flow-container.component.mjs +491 -0
- package/esm2022/lib/_components/infra/Containers/flow-container/helpers.mjs +68 -0
- package/esm2022/lib/_components/infra/Containers/hybrid-view-container/hybrid-view-container.component.mjs +24 -0
- package/esm2022/lib/_components/infra/Containers/modal-view-container/modal-view-container.component.mjs +314 -0
- package/esm2022/lib/_components/infra/Containers/preview-view-container/preview-view-container.component.mjs +32 -0
- package/esm2022/lib/_components/infra/Containers/view-container/view-container.component.mjs +219 -0
- package/esm2022/lib/_components/infra/action-buttons/action-buttons.component.mjs +31 -0
- package/esm2022/lib/_components/infra/assignment/assignment.component.mjs +387 -0
- package/esm2022/lib/_components/infra/assignment-card/assignment-card.component.mjs +47 -0
- package/esm2022/lib/_components/infra/dashboard-filter/dashboard-filter.component.mjs +88 -0
- package/esm2022/lib/_components/infra/defer-load/defer-load.component.mjs +144 -0
- package/esm2022/lib/_components/infra/error-boundary/error-boundary.component.mjs +18 -0
- package/esm2022/lib/_components/infra/multi-step/multi-step.component.mjs +80 -0
- package/esm2022/lib/_components/infra/navbar/navbar.component.mjs +132 -0
- package/esm2022/lib/_components/infra/reference/reference.component.mjs +133 -0
- package/esm2022/lib/_components/infra/region/region.component.mjs +33 -0
- package/esm2022/lib/_components/infra/root-container/root-container.component.mjs +228 -0
- package/esm2022/lib/_components/infra/stages/stages.component.mjs +62 -0
- package/esm2022/lib/_components/infra/view/view.component.mjs +173 -0
- package/esm2022/lib/_components/template/app-shell/app-shell.component.mjs +140 -0
- package/esm2022/lib/_components/template/banner-page/banner-page.component.mjs +43 -0
- package/esm2022/lib/_components/template/case-summary/case-summary.component.mjs +72 -0
- package/esm2022/lib/_components/template/case-view/case-view.component.mjs +196 -0
- package/esm2022/lib/_components/template/confirmation/confirmation.component.mjs +68 -0
- package/esm2022/lib/_components/template/data-reference/data-reference.component.mjs +239 -0
- package/esm2022/lib/_components/template/default-form/default-form.component.mjs +61 -0
- package/esm2022/lib/_components/template/details/details.component.mjs +102 -0
- package/esm2022/lib/_components/template/details-narrow-wide/details-narrow-wide.component.mjs +72 -0
- package/esm2022/lib/_components/template/details-one-column/details-one-column.component.mjs +71 -0
- package/esm2022/lib/_components/template/details-sub-tabs/details-sub-tabs.component.mjs +66 -0
- package/esm2022/lib/_components/template/details-three-column/details-three-column.component.mjs +80 -0
- package/esm2022/lib/_components/template/details-two-column/details-two-column.component.mjs +77 -0
- package/esm2022/lib/_components/template/details-wide-narrow/details-wide-narrow.component.mjs +77 -0
- package/esm2022/lib/_components/template/dynamic-tabs/dynamic-tabs.component.mjs +65 -0
- package/esm2022/lib/_components/template/field-group-list/field-group-list.component.mjs +23 -0
- package/esm2022/lib/_components/template/field-group-template/field-group-template.component.mjs +134 -0
- package/esm2022/lib/_components/template/field-value-list/field-value-list.component.mjs +19 -0
- package/esm2022/lib/_components/template/inline-dashboard/inline-dashboard.component.mjs +22 -0
- package/esm2022/lib/_components/template/inline-dashboard-page/inline-dashboard-page.component.mjs +40 -0
- package/esm2022/lib/_components/template/list-page/list-page.component.mjs +14 -0
- package/esm2022/lib/_components/template/list-view/DefaultViewMeta.mjs +208 -0
- package/esm2022/lib/_components/template/list-view/list-view.component.mjs +1198 -0
- package/esm2022/lib/_components/template/list-view/listViewHelpers.mjs +61 -0
- package/esm2022/lib/_components/template/list-view/utils.mjs +660 -0
- package/esm2022/lib/_components/template/multi-reference-readonly/multi-reference-readonly.component.mjs +44 -0
- package/esm2022/lib/_components/template/narrow-wide-form/narrow-wide-form.component.mjs +30 -0
- package/esm2022/lib/_components/template/one-column/one-column.component.mjs +30 -0
- package/esm2022/lib/_components/template/one-column-page/one-column-page.component.mjs +16 -0
- package/esm2022/lib/_components/template/one-column-tab/one-column-tab.component.mjs +30 -0
- package/esm2022/lib/_components/template/page/page.component.mjs +52 -0
- package/esm2022/lib/_components/template/promoted-filters/promoted-filters.component.mjs +149 -0
- package/esm2022/lib/_components/template/repeating-structures/repeating-structures.component.mjs +139 -0
- package/esm2022/lib/_components/template/simple-table/simple-table.component.mjs +106 -0
- package/esm2022/lib/_components/template/simple-table-manual/helpers.mjs +270 -0
- package/esm2022/lib/_components/template/simple-table-manual/simple-table-manual.component.mjs +760 -0
- package/esm2022/lib/_components/template/simple-table-select/simple-table-select.component.mjs +131 -0
- package/esm2022/lib/_components/template/single-reference-readonly/single-reference-readonly.component.mjs +16 -0
- package/esm2022/lib/_components/template/sub-tabs/sub-tabs.component.mjs +67 -0
- package/esm2022/lib/_components/template/three-column/three-column.component.mjs +30 -0
- package/esm2022/lib/_components/template/three-column-page/three-column-page.component.mjs +16 -0
- package/esm2022/lib/_components/template/two-column/two-column.component.mjs +30 -0
- package/esm2022/lib/_components/template/two-column-page/two-column-page.component.mjs +40 -0
- package/esm2022/lib/_components/template/two-column-tab/two-column-tab.component.mjs +30 -0
- package/esm2022/lib/_components/template/utils.mjs +22 -0
- package/esm2022/lib/_components/template/wide-narrow-form/wide-narrow-form.component.mjs +30 -0
- package/esm2022/lib/_components/template/wide-narrow-page/wide-narrow-page.component.mjs +53 -0
- package/esm2022/lib/_components/template/wss-nav-bar/wss-nav-bar.component.mjs +135 -0
- package/esm2022/lib/_components/widget/app-announcement/app-announcement.component.mjs +24 -0
- package/esm2022/lib/_components/widget/attachment/attachment.component.mjs +588 -0
- package/esm2022/lib/_components/widget/case-history/case-history.component.mjs +81 -0
- package/esm2022/lib/_components/widget/feed-container/feed-container.component.mjs +525 -0
- package/esm2022/lib/_components/widget/file-utility/file-utility.component.mjs +631 -0
- package/esm2022/lib/_components/widget/list-utility/list-utility.component.mjs +57 -0
- package/esm2022/lib/_components/widget/quick-create/quick-create.component.mjs +75 -0
- package/esm2022/lib/_components/widget/todo/todo.component.mjs +213 -0
- package/esm2022/lib/_components/widget/utility/utility.component.mjs +34 -0
- package/esm2022/lib/_directives/thousand-seperator.directive.mjs +28 -0
- package/esm2022/lib/_helpers/case-utils.mjs +71 -0
- package/esm2022/lib/_helpers/common.mjs +20 -0
- package/esm2022/lib/_helpers/currency-utils.mjs +57 -0
- package/esm2022/lib/_helpers/date-format-utils.mjs +68 -0
- package/esm2022/lib/_helpers/event-util.mjs +19 -0
- package/esm2022/lib/_helpers/field-group-utils.mjs +47 -0
- package/esm2022/lib/_helpers/filter-utils.mjs +106 -0
- package/esm2022/lib/_helpers/formatters/currency-map.mjs +903 -0
- package/esm2022/lib/_helpers/formatters/format-utils.mjs +68 -0
- package/esm2022/lib/_helpers/tab-utils.mjs +59 -0
- package/esm2022/lib/_helpers/template-utils.mjs +56 -0
- package/esm2022/lib/_helpers/utils.mjs +386 -0
- package/esm2022/lib/_helpers/versionHelpers.mjs +12 -0
- package/esm2022/lib/_messages/error-messages.service.mjs +31 -0
- package/esm2022/lib/_messages/get-login-status.service.mjs +26 -0
- package/esm2022/lib/_messages/oauth-response.service.mjs +30 -0
- package/esm2022/lib/_messages/progress-spinner.service.mjs +30 -0
- package/esm2022/lib/_messages/reset-pconnect.service.mjs +31 -0
- package/esm2022/lib/_messages/update-worklist.service.mjs +30 -0
- package/esm2022/lib/_services/case.service.mjs +32 -0
- package/esm2022/lib/_services/datapage.service.mjs +52 -0
- package/esm2022/lib/_services/endpoints.mjs +61 -0
- package/esm2022/lib/_services/server-config.service.mjs +52 -0
- package/esm2022/lib/_types/PConnProps.interface.mjs +2 -0
- package/esm2022/pega-angular-sdk-components.mjs +5 -0
- package/esm2022/public-api.mjs +138 -0
- package/esm2022/sdk-local-component-map.mjs +9 -0
- package/fesm2022/pega-angular-sdk-components.mjs +17380 -0
- package/fesm2022/pega-angular-sdk-components.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/_bridge/angular-pconnect.d.ts +140 -0
- package/lib/_bridge/component-mapper/component-mapper.component.d.ts +20 -0
- package/lib/_bridge/helpers/sdk-pega-component-map.d.ts +213 -0
- package/lib/_bridge/helpers/sdk_component_map.d.ts +3 -0
- package/lib/_components/designSystemExtension/alert/alert.component.d.ts +12 -0
- package/lib/_components/designSystemExtension/alert-banner/alert-banner.component.d.ts +13 -0
- package/lib/_components/designSystemExtension/banner/banner.component.d.ts +15 -0
- package/lib/_components/designSystemExtension/case-create-stage/case-create-stage.component.d.ts +20 -0
- package/lib/_components/designSystemExtension/material-case-summary/material-case-summary.component.d.ts +18 -0
- package/lib/_components/designSystemExtension/material-details/material-details.component.d.ts +15 -0
- package/lib/_components/designSystemExtension/material-details-fields/material-details-fields.component.d.ts +12 -0
- package/lib/_components/designSystemExtension/material-summary-item/material-summary-item.component.d.ts +15 -0
- package/lib/_components/designSystemExtension/material-summary-list/material-summary-list.component.d.ts +9 -0
- package/lib/_components/designSystemExtension/material-utility/material-utility.component.d.ts +16 -0
- package/lib/_components/designSystemExtension/material-vertical-tabs/material-vertical-tabs.component.d.ts +11 -0
- package/lib/_components/designSystemExtension/operator/operator.component.d.ts +25 -0
- package/lib/_components/designSystemExtension/pulse/pulse.component.d.ts +16 -0
- package/lib/_components/designSystemExtension/rich-text-editor/rich-text-editor.component.d.ts +23 -0
- package/lib/_components/designSystemExtension/wss-quick-create/wss-quick-create.component.d.ts +7 -0
- package/lib/_components/field/auto-complete/auto-complete.component.d.ts +74 -0
- package/lib/_components/field/cancel-alert/cancel-alert.component.d.ts +24 -0
- package/lib/_components/field/check-box/check-box.component.d.ts +48 -0
- package/lib/_components/field/currency/currency.component.d.ts +50 -0
- package/lib/_components/field/date/date.component.d.ts +65 -0
- package/lib/_components/field/date-time/date-time.component.d.ts +55 -0
- package/lib/_components/field/decimal/decimal.component.d.ts +46 -0
- package/lib/_components/field/dropdown/dropdown.component.d.ts +60 -0
- package/lib/_components/field/email/email.component.d.ts +44 -0
- package/lib/_components/field/integer/integer.component.d.ts +44 -0
- package/lib/_components/field/list-view-action-buttons/list-view-action-buttons.component.d.ts +15 -0
- package/lib/_components/field/percentage/percentage.component.d.ts +44 -0
- package/lib/_components/field/phone/phone.component.d.ts +48 -0
- package/lib/_components/field/radio-buttons/radio-buttons.component.d.ts +60 -0
- package/lib/_components/field/rich-text/rich-text.component.d.ts +42 -0
- package/lib/_components/field/scalar-list/scalar-list.component.d.ts +37 -0
- package/lib/_components/field/semantic-link/semantic-link.component.d.ts +30 -0
- package/lib/_components/field/text/text.component.d.ts +40 -0
- package/lib/_components/field/text-area/text-area.component.d.ts +45 -0
- package/lib/_components/field/text-content/text-content.component.d.ts +30 -0
- package/lib/_components/field/text-input/text-input.component.d.ts +45 -0
- package/lib/_components/field/time/time.component.d.ts +43 -0
- package/lib/_components/field/url/url.component.d.ts +43 -0
- package/lib/_components/field/user-reference/user-reference.component.d.ts +39 -0
- package/lib/_components/infra/Containers/flow-container/flow-container.component.d.ts +85 -0
- package/lib/_components/infra/Containers/flow-container/helpers.d.ts +2 -0
- package/lib/_components/infra/Containers/hybrid-view-container/hybrid-view-container.component.d.ts +15 -0
- package/lib/_components/infra/Containers/modal-view-container/modal-view-container.component.d.ts +71 -0
- package/lib/_components/infra/Containers/preview-view-container/preview-view-container.component.d.ts +15 -0
- package/lib/_components/infra/Containers/view-container/view-container.component.d.ts +51 -0
- package/lib/_components/infra/action-buttons/action-buttons.component.d.ts +12 -0
- package/lib/_components/infra/assignment/assignment.component.d.ts +72 -0
- package/lib/_components/infra/assignment-card/assignment-card.component.d.ts +18 -0
- package/lib/_components/infra/dashboard-filter/dashboard-filter.component.d.ts +20 -0
- package/lib/_components/infra/defer-load/defer-load.component.d.ts +46 -0
- package/lib/_components/infra/error-boundary/error-boundary.component.d.ts +8 -0
- package/lib/_components/infra/multi-step/multi-step.component.d.ts +31 -0
- package/lib/_components/infra/navbar/navbar.component.d.ts +51 -0
- package/lib/_components/infra/reference/reference.component.d.ts +16 -0
- package/lib/_components/infra/region/region.component.d.ts +14 -0
- package/lib/_components/infra/root-container/root-container.component.d.ts +35 -0
- package/lib/_components/infra/stages/stages.component.d.ts +29 -0
- package/lib/_components/infra/view/view.component.d.ts +40 -0
- package/lib/_components/template/app-shell/app-shell.component.d.ts +55 -0
- package/lib/_components/template/banner-page/banner-page.component.d.ts +27 -0
- package/lib/_components/template/case-summary/case-summary.component.d.ts +34 -0
- package/lib/_components/template/case-view/case-view.component.d.ts +56 -0
- package/lib/_components/template/confirmation/confirmation.component.d.ts +38 -0
- package/lib/_components/template/data-reference/data-reference.component.d.ts +41 -0
- package/lib/_components/template/default-form/default-form.component.d.ts +21 -0
- package/lib/_components/template/details/details.component.d.ts +20 -0
- package/lib/_components/template/details-narrow-wide/details-narrow-wide.component.d.ts +21 -0
- package/lib/_components/template/details-one-column/details-one-column.component.d.ts +22 -0
- package/lib/_components/template/details-sub-tabs/details-sub-tabs.component.d.ts +24 -0
- package/lib/_components/template/details-three-column/details-three-column.component.d.ts +25 -0
- package/lib/_components/template/details-two-column/details-two-column.component.d.ts +25 -0
- package/lib/_components/template/details-wide-narrow/details-wide-narrow.component.d.ts +24 -0
- package/lib/_components/template/dynamic-tabs/dynamic-tabs.component.d.ts +20 -0
- package/lib/_components/template/field-group-list/field-group-list.component.d.ts +9 -0
- package/lib/_components/template/field-group-template/field-group-template.component.d.ts +52 -0
- package/lib/_components/template/field-value-list/field-value-list.component.d.ts +8 -0
- package/lib/_components/template/inline-dashboard/inline-dashboard.component.d.ts +16 -0
- package/lib/_components/template/inline-dashboard-page/inline-dashboard-page.component.d.ts +25 -0
- package/lib/_components/template/list-page/list-page.component.d.ts +7 -0
- package/lib/_components/template/list-view/DefaultViewMeta.d.ts +1 -0
- package/lib/_components/template/list-view/list-view.component.d.ts +157 -0
- package/lib/_components/template/list-view/listViewHelpers.d.ts +1 -0
- package/lib/_components/template/list-view/utils.d.ts +118 -0
- package/lib/_components/template/multi-reference-readonly/multi-reference-readonly.component.d.ts +25 -0
- package/lib/_components/template/narrow-wide-form/narrow-wide-form.component.d.ts +14 -0
- package/lib/_components/template/one-column/one-column.component.d.ts +14 -0
- package/lib/_components/template/one-column-page/one-column-page.component.d.ts +9 -0
- package/lib/_components/template/one-column-tab/one-column-tab.component.d.ts +14 -0
- package/lib/_components/template/page/page.component.d.ts +25 -0
- package/lib/_components/template/promoted-filters/promoted-filters.component.d.ts +35 -0
- package/lib/_components/template/repeating-structures/repeating-structures.component.d.ts +37 -0
- package/lib/_components/template/simple-table/simple-table.component.d.ts +43 -0
- package/lib/_components/template/simple-table-manual/helpers.d.ts +81 -0
- package/lib/_components/template/simple-table-manual/simple-table-manual.component.d.ts +159 -0
- package/lib/_components/template/simple-table-select/simple-table-select.component.d.ts +32 -0
- package/lib/_components/template/single-reference-readonly/single-reference-readonly.component.d.ts +9 -0
- package/lib/_components/template/sub-tabs/sub-tabs.component.d.ts +26 -0
- package/lib/_components/template/three-column/three-column.component.d.ts +14 -0
- package/lib/_components/template/three-column-page/three-column-page.component.d.ts +9 -0
- package/lib/_components/template/two-column/two-column.component.d.ts +14 -0
- package/lib/_components/template/two-column-page/two-column-page.component.d.ts +17 -0
- package/lib/_components/template/two-column-tab/two-column-tab.component.d.ts +14 -0
- package/lib/_components/template/utils.d.ts +2 -0
- package/lib/_components/template/wide-narrow-form/wide-narrow-form.component.d.ts +14 -0
- package/lib/_components/template/wide-narrow-page/wide-narrow-page.component.d.ts +20 -0
- package/lib/_components/template/wss-nav-bar/wss-nav-bar.component.d.ts +50 -0
- package/lib/_components/widget/app-announcement/app-announcement.component.d.ts +19 -0
- package/lib/_components/widget/attachment/attachment.component.d.ts +99 -0
- package/lib/_components/widget/case-history/case-history.component.d.ts +24 -0
- package/lib/_components/widget/feed-container/feed-container.component.d.ts +49 -0
- package/lib/_components/widget/file-utility/file-utility.component.d.ts +150 -0
- package/lib/_components/widget/list-utility/list-utility.component.d.ts +23 -0
- package/lib/_components/widget/quick-create/quick-create.component.d.ts +29 -0
- package/lib/_components/widget/todo/todo.component.d.ts +64 -0
- package/lib/_components/widget/utility/utility.component.d.ts +25 -0
- package/lib/_directives/thousand-seperator.directive.d.ts +9 -0
- package/lib/_helpers/case-utils.d.ts +19 -0
- package/lib/_helpers/common.d.ts +3 -0
- package/lib/_helpers/currency-utils.d.ts +10 -0
- package/lib/_helpers/date-format-utils.d.ts +12 -0
- package/lib/_helpers/event-util.d.ts +2 -0
- package/lib/_helpers/field-group-utils.d.ts +16 -0
- package/lib/_helpers/filter-utils.d.ts +46 -0
- package/lib/_helpers/formatters/currency-map.d.ts +1132 -0
- package/lib/_helpers/formatters/format-utils.d.ts +8 -0
- package/lib/_helpers/tab-utils.d.ts +4 -0
- package/lib/_helpers/template-utils.d.ts +16 -0
- package/lib/_helpers/utils.d.ts +32 -0
- package/lib/_helpers/versionHelpers.d.ts +8 -0
- package/lib/_messages/error-messages.service.d.ts +15 -0
- package/lib/_messages/get-login-status.service.d.ts +10 -0
- package/lib/_messages/oauth-response.service.d.ts +14 -0
- package/lib/_messages/progress-spinner.service.d.ts +14 -0
- package/lib/_messages/reset-pconnect.service.d.ts +15 -0
- package/lib/_messages/update-worklist.service.d.ts +14 -0
- package/lib/_services/case.service.d.ts +12 -0
- package/lib/_services/datapage.service.d.ts +14 -0
- package/lib/_services/endpoints.d.ts +39 -0
- package/lib/_services/server-config.service.d.ts +31 -0
- package/lib/_types/PConnProps.interface.d.ts +17 -0
- package/package.json +28 -0
- package/public-api.d.ts +133 -0
- package/sdk-local-component-map.d.ts +2 -0
- package/sdk-local-component-map.ts +12 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ThreeColumnComponent implements OnInit, OnChanges {
|
|
6
|
+
pConn$: typeof PConnect;
|
|
7
|
+
formGroup$: FormGroup;
|
|
8
|
+
arChildren$: any[];
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
+
updateSelf(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThreeColumnComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ThreeColumnComponent, "app-three-column", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ThreeColumnPageComponent {
|
|
5
|
+
pConn$: typeof PConnect;
|
|
6
|
+
formGroup$: FormGroup;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThreeColumnPageComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ThreeColumnPageComponent, "app-three-column-page", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, SimpleChanges, OnChanges } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TwoColumnComponent implements OnInit, OnChanges {
|
|
6
|
+
pConn$: typeof PConnect;
|
|
7
|
+
formGroup$: FormGroup;
|
|
8
|
+
arChildren$: any[];
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
+
updateSelf(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoColumnComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TwoColumnComponent, "app-two-column", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TwoColumnPageComponent implements OnInit, OnDestroy {
|
|
7
|
+
private angularPConnect;
|
|
8
|
+
pConn$: typeof PConnect;
|
|
9
|
+
formGroup$: FormGroup;
|
|
10
|
+
angularPConnectData: AngularPConnectData;
|
|
11
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
onStateChange(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoColumnPageComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TwoColumnPageComponent, "app-two-column-page", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TwoColumnTabComponent implements OnInit, OnChanges {
|
|
6
|
+
pConn$: typeof PConnect;
|
|
7
|
+
formGroup$: FormGroup;
|
|
8
|
+
arChildren$: any[];
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
+
updateSelf(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoColumnTabComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TwoColumnTabComponent, "app-two-column-tab", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class WideNarrowFormComponent implements OnInit, OnChanges {
|
|
6
|
+
pConn$: typeof PConnect;
|
|
7
|
+
formGroup$: FormGroup;
|
|
8
|
+
arChildren$: any[];
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
+
updateSelf(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WideNarrowFormComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WideNarrowFormComponent, "app-wide-narrow-form", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class WideNarrowPageComponent implements OnInit, OnDestroy {
|
|
7
|
+
private angularPConnect;
|
|
8
|
+
pConn$: typeof PConnect;
|
|
9
|
+
formGroup$: FormGroup;
|
|
10
|
+
thePConnType: string;
|
|
11
|
+
angularPConnectData: AngularPConnectData;
|
|
12
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
onStateChange(): void;
|
|
16
|
+
checkAndUpdate(): void;
|
|
17
|
+
updateSelf(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WideNarrowPageComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WideNarrowPageComponent, "app-wide-narrow-page", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { ChangeDetectorRef, NgZone, OnDestroy, OnInit } from '@angular/core';
|
|
3
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
4
|
+
import { ProgressSpinnerService } from '../../../_messages/progress-spinner.service';
|
|
5
|
+
import { Utils } from '../../../_helpers/utils';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
interface WssNavBarProps {
|
|
8
|
+
showAppName: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class WssNavBarComponent implements OnInit, OnDestroy {
|
|
11
|
+
private angularPConnect;
|
|
12
|
+
private cdRef;
|
|
13
|
+
private psService;
|
|
14
|
+
private ngZone;
|
|
15
|
+
private utils;
|
|
16
|
+
pConn$: typeof PConnect;
|
|
17
|
+
appName$: string;
|
|
18
|
+
pages$: any[];
|
|
19
|
+
caseTypes$: any[];
|
|
20
|
+
homePage: any;
|
|
21
|
+
angularPConnectData: AngularPConnectData;
|
|
22
|
+
configProps$: WssNavBarProps;
|
|
23
|
+
navPages$: any[];
|
|
24
|
+
navExpandCollapse$: string;
|
|
25
|
+
bShowCaseTypes$: boolean;
|
|
26
|
+
portalApp$: string;
|
|
27
|
+
portalLogoImage$: string;
|
|
28
|
+
showAppName$: boolean;
|
|
29
|
+
portalOperator$: string;
|
|
30
|
+
portalOperatorInitials$: string;
|
|
31
|
+
actionsAPI: any;
|
|
32
|
+
createWork: any;
|
|
33
|
+
showPage: any;
|
|
34
|
+
logout: any;
|
|
35
|
+
navIcon$: string;
|
|
36
|
+
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, psService: ProgressSpinnerService, ngZone: NgZone, utils: Utils);
|
|
37
|
+
ngOnInit(): void;
|
|
38
|
+
ngOnDestroy(): void;
|
|
39
|
+
loadImage(src: string): Promise<unknown>;
|
|
40
|
+
onStateChange(): void;
|
|
41
|
+
updateSelf(): void;
|
|
42
|
+
initComponent(): void;
|
|
43
|
+
navPanelButtonClick(oPageData: any): void;
|
|
44
|
+
navPanelCreateButtonClick(): void;
|
|
45
|
+
navPanelCreateCaseType(sCaseType: string, sFlowType: string): void;
|
|
46
|
+
navPanelLogoutClick(): void;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WssNavBarComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WssNavBarComponent, "app-wss-nav-bar", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "appName$": { "alias": "appName$"; "required": false; }; "pages$": { "alias": "pages$"; "required": false; }; "caseTypes$": { "alias": "caseTypes$"; "required": false; }; "homePage": { "alias": "homePage"; "required": false; }; }, {}, never, never, true, never>;
|
|
49
|
+
}
|
|
50
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
interface AppAnnouncementProps {
|
|
5
|
+
header?: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
whatsnewlink?: string;
|
|
8
|
+
label?: string;
|
|
9
|
+
datasource?: any;
|
|
10
|
+
}
|
|
11
|
+
export declare class AppAnnouncementComponent implements OnInit {
|
|
12
|
+
pConn$: typeof PConnect;
|
|
13
|
+
configProps$: AppAnnouncementProps;
|
|
14
|
+
details$: any[];
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppAnnouncementComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppAnnouncementComponent, "app-app-announcement", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, NgZone, OnDestroy } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
5
|
+
import { Utils } from '../../../_helpers/utils';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class AttachmentComponent implements OnInit, OnDestroy {
|
|
8
|
+
private angularPConnect;
|
|
9
|
+
private utils;
|
|
10
|
+
private ngZone;
|
|
11
|
+
pConn$: typeof PConnect;
|
|
12
|
+
formGroup$: FormGroup;
|
|
13
|
+
angularPConnectData: AngularPConnectData;
|
|
14
|
+
label$: string;
|
|
15
|
+
value$: any;
|
|
16
|
+
bRequired$: boolean;
|
|
17
|
+
bReadonly$: boolean;
|
|
18
|
+
bDisabled$: boolean;
|
|
19
|
+
bVisible$: boolean;
|
|
20
|
+
bLoading$: boolean;
|
|
21
|
+
arFiles$: any[];
|
|
22
|
+
arFileList$: any[];
|
|
23
|
+
removeFileFromList$: any;
|
|
24
|
+
arMenuList$: any[];
|
|
25
|
+
bShowSelector$: boolean;
|
|
26
|
+
bShowJustDelete$: boolean;
|
|
27
|
+
att_valueRef: any;
|
|
28
|
+
att_categoryName: string;
|
|
29
|
+
att_id: string;
|
|
30
|
+
myFiles: any;
|
|
31
|
+
fileTemp: any;
|
|
32
|
+
caseID: any;
|
|
33
|
+
allowMultiple$: boolean;
|
|
34
|
+
extensions$: string;
|
|
35
|
+
status: string;
|
|
36
|
+
validateMessage: string | undefined;
|
|
37
|
+
valueRef: string;
|
|
38
|
+
imagePath$: string;
|
|
39
|
+
constructor(angularPConnect: AngularPConnectService, utils: Utils, ngZone: NgZone);
|
|
40
|
+
ngOnInit(): void;
|
|
41
|
+
checkAndUpdate(): void;
|
|
42
|
+
ngOnDestroy(): void;
|
|
43
|
+
onStateChange(): void;
|
|
44
|
+
updateAttachmentsInfo(): void;
|
|
45
|
+
processFile(file: any, i: any): void;
|
|
46
|
+
updateSelf(): void;
|
|
47
|
+
updateAttachments(): void;
|
|
48
|
+
updateAttachmentsFromServer(): void;
|
|
49
|
+
resetAttachmentStoredState(): void;
|
|
50
|
+
_downloadFileFromList(fileObj: any): void;
|
|
51
|
+
fileDownload: (data: any, fileName: any, ext: any) => void;
|
|
52
|
+
getAttachmentKey: (name?: string) => string;
|
|
53
|
+
CheckForInvalidAttachment(): void;
|
|
54
|
+
_removeFileFromList(item: any): void;
|
|
55
|
+
getCurrentAttachmentsList(key: any, context: any): any;
|
|
56
|
+
errorHandler(isFetchCanceled: any, file: any): (error: any) => never;
|
|
57
|
+
uploadMyFiles(event: any): void;
|
|
58
|
+
handleFileUploadSuccess(fileResponses: any): void;
|
|
59
|
+
handleFileUploadFailure(): void;
|
|
60
|
+
getNewListUtilityItemProps: ({ att, cancelFile, downloadFile, deleteFile, removeFile }: {
|
|
61
|
+
att: any;
|
|
62
|
+
cancelFile: any;
|
|
63
|
+
downloadFile: any;
|
|
64
|
+
deleteFile: any;
|
|
65
|
+
removeFile: any;
|
|
66
|
+
}) => {
|
|
67
|
+
id: any;
|
|
68
|
+
visual: {
|
|
69
|
+
icon: any;
|
|
70
|
+
progress: any;
|
|
71
|
+
};
|
|
72
|
+
primary: {
|
|
73
|
+
type: any;
|
|
74
|
+
name: any;
|
|
75
|
+
icon: string;
|
|
76
|
+
click: any;
|
|
77
|
+
};
|
|
78
|
+
secondary: {
|
|
79
|
+
text: any;
|
|
80
|
+
error: any;
|
|
81
|
+
};
|
|
82
|
+
actions: any;
|
|
83
|
+
};
|
|
84
|
+
onUploadProgress(): void;
|
|
85
|
+
getFiles(arFiles: any[]): any[];
|
|
86
|
+
setNewFiles(arFiles: any): any[];
|
|
87
|
+
validateMaxSize(fileObj: any, maxSizeInMB: any): boolean;
|
|
88
|
+
validateFileExtension: (fileObj: any, allowedExtensions: any) => any;
|
|
89
|
+
buildFilePropsFromResponse(respObj: any): {
|
|
90
|
+
props: {
|
|
91
|
+
meta: string;
|
|
92
|
+
name: any;
|
|
93
|
+
icon: string;
|
|
94
|
+
};
|
|
95
|
+
responseProps: any;
|
|
96
|
+
};
|
|
97
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AttachmentComponent, never>;
|
|
98
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AttachmentComponent, "app-attachment", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
99
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { MatTableDataSource } from '@angular/material/table';
|
|
4
|
+
import { Utils } from '../../../_helpers/utils';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
interface CaseHistoryProps {
|
|
7
|
+
label?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare class CaseHistoryComponent implements OnInit {
|
|
10
|
+
private utils;
|
|
11
|
+
pConn$: typeof PConnect;
|
|
12
|
+
configProps$: CaseHistoryProps;
|
|
13
|
+
repeatList$: MatTableDataSource<any>;
|
|
14
|
+
fields$: any[];
|
|
15
|
+
displayedColumns$: any[];
|
|
16
|
+
waitingForData: boolean;
|
|
17
|
+
constructor(utils: Utils);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
updateData(listData: any[], fieldData: any[]): any[];
|
|
20
|
+
getDisplayColumns(fields?: any[]): any[];
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaseHistoryComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaseHistoryComponent, "app-case-history", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
24
|
+
export {};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
3
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
4
|
+
import { Utils } from '../../../_helpers/utils';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FeedContainerComponent implements OnInit, OnDestroy {
|
|
7
|
+
private angularPConnect;
|
|
8
|
+
private cdRef;
|
|
9
|
+
private utils;
|
|
10
|
+
pConn$: typeof PConnect;
|
|
11
|
+
angularPConnectData: AngularPConnectData;
|
|
12
|
+
userName$: string;
|
|
13
|
+
imageKey$: string;
|
|
14
|
+
currentUserInitials$: string;
|
|
15
|
+
currentUserName$: string;
|
|
16
|
+
pulseMessages$: any[];
|
|
17
|
+
showReplyComment$: Object;
|
|
18
|
+
svgComment$: string;
|
|
19
|
+
svgLike$: string;
|
|
20
|
+
svgLikedByMe$: string;
|
|
21
|
+
svgSend$: string;
|
|
22
|
+
pulseConversation: string;
|
|
23
|
+
userData: Map<any, any>;
|
|
24
|
+
pulseComment: Object;
|
|
25
|
+
actionsAPI: any;
|
|
26
|
+
feedAPI: any;
|
|
27
|
+
pulseData: any;
|
|
28
|
+
fetchMessages: any;
|
|
29
|
+
likeMessage: any;
|
|
30
|
+
postMessage: any;
|
|
31
|
+
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
ngOnDestroy(): void;
|
|
34
|
+
onStateChange(): void;
|
|
35
|
+
updateSelf(): void;
|
|
36
|
+
getMessageData(): void;
|
|
37
|
+
convertToArray(messages: any[]): any[];
|
|
38
|
+
appendPulseMessage(messages: any[]): any[];
|
|
39
|
+
updateMessagesWithOperators(): void;
|
|
40
|
+
updateCurrentUserName(sUser: string): void;
|
|
41
|
+
postClick(): void;
|
|
42
|
+
messageChange(event: any): void;
|
|
43
|
+
likeClick(messageID: string, rMessageID: string, bLikedByMe: boolean, level: string): void;
|
|
44
|
+
commentClick(messageID: any): void;
|
|
45
|
+
postCommentClick(messageID: any): void;
|
|
46
|
+
newCommentChange(event: any, messageID: any): void;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedContainerComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeedContainerComponent, "app-feed-container", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
|
|
49
|
+
}
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, NgZone, OnDestroy } from '@angular/core';
|
|
3
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
4
|
+
import { Utils } from '../../../_helpers/utils';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FileUtilityComponent implements OnInit, OnDestroy {
|
|
7
|
+
private angularPConnect;
|
|
8
|
+
private utils;
|
|
9
|
+
private ngZone;
|
|
10
|
+
pConn$: typeof PConnect;
|
|
11
|
+
angularPConnectData: AngularPConnectData;
|
|
12
|
+
arFullListAttachments: any[];
|
|
13
|
+
lu_name$: string;
|
|
14
|
+
lu_icon$: string;
|
|
15
|
+
lu_bLoading$: boolean;
|
|
16
|
+
lu_count$: number;
|
|
17
|
+
lu_arActions$: any[];
|
|
18
|
+
lu_arItems$: any;
|
|
19
|
+
va_arItems$: any[];
|
|
20
|
+
lu_onViewAllFunction: any;
|
|
21
|
+
bShowFileModal$: boolean;
|
|
22
|
+
bShowLinkModal$: boolean;
|
|
23
|
+
bShowViewAllModal$: boolean;
|
|
24
|
+
arFileMainButtons$: any[];
|
|
25
|
+
arFileSecondaryButtons$: any[];
|
|
26
|
+
arLinkMainButtons$: any[];
|
|
27
|
+
arLinkSecondaryButtons$: any[];
|
|
28
|
+
arFiles$: any[];
|
|
29
|
+
arFileList$: any[];
|
|
30
|
+
removeFileFromList$: any;
|
|
31
|
+
arLinks$: any[];
|
|
32
|
+
arLinksList$: any[];
|
|
33
|
+
removeLinksFromList$: any;
|
|
34
|
+
link_title$: string;
|
|
35
|
+
link_url$: string;
|
|
36
|
+
closeSvgIcon$: string;
|
|
37
|
+
currentCaseID: string;
|
|
38
|
+
addAttachmentsActions: any[];
|
|
39
|
+
constructor(angularPConnect: AngularPConnectService, utils: Utils, ngZone: NgZone);
|
|
40
|
+
ngOnInit(): void;
|
|
41
|
+
ngOnDestroy(): void;
|
|
42
|
+
onStateChange(): void;
|
|
43
|
+
onAttachFiles(files: any): void;
|
|
44
|
+
refreshAttachments(): void;
|
|
45
|
+
onUploadProgress(): void;
|
|
46
|
+
errorHandler(): void;
|
|
47
|
+
onAttachLinks(links: any): void;
|
|
48
|
+
addAttachments(attsFromResp?: any[]): any[];
|
|
49
|
+
onViewAll(): void;
|
|
50
|
+
_closeViewAll(): void;
|
|
51
|
+
removeFileFromList(item: any): void;
|
|
52
|
+
removeLinksFromList(item: any): void;
|
|
53
|
+
getNewListUtilityItemProps: ({ att, cancelFile, downloadFile, deleteFile, removeFile }: {
|
|
54
|
+
att: any;
|
|
55
|
+
cancelFile: any;
|
|
56
|
+
downloadFile: any;
|
|
57
|
+
deleteFile: any;
|
|
58
|
+
removeFile: any;
|
|
59
|
+
}) => {
|
|
60
|
+
id: any;
|
|
61
|
+
visual: {
|
|
62
|
+
icon: any;
|
|
63
|
+
progress: any;
|
|
64
|
+
};
|
|
65
|
+
primary: {
|
|
66
|
+
type: any;
|
|
67
|
+
name: any;
|
|
68
|
+
icon: string;
|
|
69
|
+
click: any;
|
|
70
|
+
};
|
|
71
|
+
secondary: {
|
|
72
|
+
text: any;
|
|
73
|
+
};
|
|
74
|
+
actions: any;
|
|
75
|
+
};
|
|
76
|
+
getListUtilityItemProps: ({ att, cancelFile, downloadFile, deleteFile, removeFile }: {
|
|
77
|
+
att: any;
|
|
78
|
+
cancelFile: any;
|
|
79
|
+
downloadFile: any;
|
|
80
|
+
deleteFile: any;
|
|
81
|
+
removeFile: any;
|
|
82
|
+
}) => {
|
|
83
|
+
id: any;
|
|
84
|
+
visual: {
|
|
85
|
+
icon: any;
|
|
86
|
+
progress: any;
|
|
87
|
+
};
|
|
88
|
+
primary: {
|
|
89
|
+
type: any;
|
|
90
|
+
name: any;
|
|
91
|
+
icon: string;
|
|
92
|
+
click: any;
|
|
93
|
+
};
|
|
94
|
+
secondary: {
|
|
95
|
+
text: any;
|
|
96
|
+
};
|
|
97
|
+
actions: any;
|
|
98
|
+
};
|
|
99
|
+
_addLink(): void;
|
|
100
|
+
_changeTitle(event: any): void;
|
|
101
|
+
_changeUrl(event: any): void;
|
|
102
|
+
downloadFile(att: any): void;
|
|
103
|
+
fileDownload: (data: any, fileName: any, ext: any) => void;
|
|
104
|
+
cancelFile(): void;
|
|
105
|
+
deleteFile(att: any): void;
|
|
106
|
+
removeFile(): void;
|
|
107
|
+
removeNewFile(): void;
|
|
108
|
+
createModal(modalType: string): void;
|
|
109
|
+
createModalButtons(): void;
|
|
110
|
+
uploadMyFiles($event: any): void;
|
|
111
|
+
getFiles(arFiles: any[]): any[];
|
|
112
|
+
setNewFiles(arFiles: any): any;
|
|
113
|
+
validateMaxSize(fileObj: any, maxSizeInMB: any): boolean;
|
|
114
|
+
onFileActionButtonClick(event: any): void;
|
|
115
|
+
onLinkActionButtonClick(event: any): void;
|
|
116
|
+
clearOutFiles(): void;
|
|
117
|
+
clearOutLinks(): void;
|
|
118
|
+
addALink(): void;
|
|
119
|
+
_fieldOnChangeLink(event: any): void;
|
|
120
|
+
_fieldOnChangeURL(event: any): void;
|
|
121
|
+
updateSelf(): void;
|
|
122
|
+
getCaseID(): string;
|
|
123
|
+
fetchCaseAttachments(caseID: any): Promise<object>;
|
|
124
|
+
handleAttachmentsResponse(resp: any): void;
|
|
125
|
+
getUtilityItems(attachments: any): any;
|
|
126
|
+
mapAttachmentToUtilityItem(att: any): {
|
|
127
|
+
id: any;
|
|
128
|
+
visual: {
|
|
129
|
+
icon: any;
|
|
130
|
+
progress: any;
|
|
131
|
+
};
|
|
132
|
+
primary: {
|
|
133
|
+
type: any;
|
|
134
|
+
name: any;
|
|
135
|
+
icon: string;
|
|
136
|
+
click: any;
|
|
137
|
+
};
|
|
138
|
+
secondary: {
|
|
139
|
+
text: any;
|
|
140
|
+
};
|
|
141
|
+
actions: any;
|
|
142
|
+
};
|
|
143
|
+
getDownloadFunction(att: any): (() => void) | null;
|
|
144
|
+
getCancelFunction(att: any): (() => void) | null;
|
|
145
|
+
getDeleteFunction(att: any): (() => void) | null;
|
|
146
|
+
getRemoveFunction(att: any): (() => void) | null;
|
|
147
|
+
caseHasChanged(): boolean;
|
|
148
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileUtilityComponent, never>;
|
|
149
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUtilityComponent, "app-file-utility", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
|
|
150
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Utils } from '../../../_helpers/utils';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ListUtilityComponent implements OnInit {
|
|
5
|
+
private utils;
|
|
6
|
+
name$: string;
|
|
7
|
+
icon$: string;
|
|
8
|
+
bLoading$: boolean;
|
|
9
|
+
count$: number;
|
|
10
|
+
arActions$: any[];
|
|
11
|
+
arItems$: any[];
|
|
12
|
+
menuIconOverrideAction$: any[];
|
|
13
|
+
onViewAll$: any;
|
|
14
|
+
headerSvgIcon$: string;
|
|
15
|
+
settingsSvgIcon$: string;
|
|
16
|
+
noItemsMessage$: string;
|
|
17
|
+
imagePath$: string;
|
|
18
|
+
constructor(utils: Utils);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
getIconPath(): string;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListUtilityComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListUtilityComponent, "app-list-utility", never, { "name$": { "alias": "name$"; "required": false; }; "icon$": { "alias": "icon$"; "required": false; }; "bLoading$": { "alias": "bLoading$"; "required": false; }; "count$": { "alias": "count$"; "required": false; }; "arActions$": { "alias": "arActions$"; "required": false; }; "arItems$": { "alias": "arItems$"; "required": false; }; "menuIconOverrideAction$": { "alias": "menuIconOverrideAction$"; "required": false; }; "onViewAll$": { "alias": "onViewAll$"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
3
|
+
import { Utils } from '../../../_helpers/utils';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
interface QuickCreateProps {
|
|
6
|
+
heading?: string;
|
|
7
|
+
showCaseIcons?: boolean;
|
|
8
|
+
classFilter?: any;
|
|
9
|
+
}
|
|
10
|
+
export declare class QuickCreateComponent implements OnInit, OnChanges {
|
|
11
|
+
private utils;
|
|
12
|
+
pConn$: typeof PConnect;
|
|
13
|
+
formGroup$: any;
|
|
14
|
+
configProps$: QuickCreateProps;
|
|
15
|
+
arChildren$: any[];
|
|
16
|
+
heading$?: string;
|
|
17
|
+
showCaseIcons$?: boolean;
|
|
18
|
+
classFilter$: any;
|
|
19
|
+
cases$: any;
|
|
20
|
+
constructor(utils: Utils);
|
|
21
|
+
createCase(className: any): void;
|
|
22
|
+
initComponent(): void;
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
25
|
+
updateSelf(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QuickCreateComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuickCreateComponent, "app-quick-create", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
28
|
+
}
|
|
29
|
+
export {};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, NgZone, OnDestroy, OnChanges } from '@angular/core';
|
|
3
|
+
import { publicConstants } from '@pega/pcore-pconnect-typedefs/constants';
|
|
4
|
+
import { ProgressSpinnerService } from '../../../_messages/progress-spinner.service';
|
|
5
|
+
import { ErrorMessagesService } from '../../../_messages/error-messages.service';
|
|
6
|
+
import { Utils } from '../../../_helpers/utils';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
interface ToDoProps {
|
|
9
|
+
datasource?: any;
|
|
10
|
+
headerText?: string;
|
|
11
|
+
myWorkList?: any;
|
|
12
|
+
label?: string;
|
|
13
|
+
readOnly?: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare class TodoComponent implements OnInit, OnDestroy, OnChanges {
|
|
16
|
+
private psService;
|
|
17
|
+
private erService;
|
|
18
|
+
private ngZone;
|
|
19
|
+
private utils;
|
|
20
|
+
pConn$: typeof PConnect;
|
|
21
|
+
caseInfoID$: string;
|
|
22
|
+
datasource$: any;
|
|
23
|
+
headerText$?: string;
|
|
24
|
+
showTodoList$: boolean;
|
|
25
|
+
target$: string;
|
|
26
|
+
type$: string;
|
|
27
|
+
context$: string;
|
|
28
|
+
myWorkList$: any;
|
|
29
|
+
isConfirm: any;
|
|
30
|
+
configProps$: ToDoProps;
|
|
31
|
+
currentUser$: string;
|
|
32
|
+
currentUserInitials$: string;
|
|
33
|
+
assignmentCount$: number;
|
|
34
|
+
bShowMore$: boolean;
|
|
35
|
+
arAssignments$: any[];
|
|
36
|
+
assignmentsSource$: any;
|
|
37
|
+
CONSTS: typeof publicConstants;
|
|
38
|
+
bLogging: boolean;
|
|
39
|
+
localizedVal: (localeKey: string, localePath?: string | undefined, localeRuleKey?: string | undefined) => string;
|
|
40
|
+
localeCategory: string;
|
|
41
|
+
showlessLocalizedValue: string;
|
|
42
|
+
showMoreLocalizedValue: string;
|
|
43
|
+
constructor(psService: ProgressSpinnerService, erService: ErrorMessagesService, ngZone: NgZone, utils: Utils);
|
|
44
|
+
ngOnInit(): void;
|
|
45
|
+
ngOnDestroy(): void;
|
|
46
|
+
ngOnChanges(): void;
|
|
47
|
+
updateWorkList(key: any): void;
|
|
48
|
+
updateList(): void;
|
|
49
|
+
updateToDo(): void;
|
|
50
|
+
getID(assignment: any): any;
|
|
51
|
+
topThreeAssignments(assignmentsSource: any[]): any[];
|
|
52
|
+
getAssignmentId(assignment: any): any;
|
|
53
|
+
getPriority(assignment: any): any;
|
|
54
|
+
getAssignmentName(assignment: any): any;
|
|
55
|
+
initAssignments(): any[];
|
|
56
|
+
getCaseInfoAssignment(assignmentsSource: any[], caseInfoID: string): any[];
|
|
57
|
+
_showMore(): void;
|
|
58
|
+
_showLess(): void;
|
|
59
|
+
isChildCase(assignment: any): any;
|
|
60
|
+
clickGo(assignment: any): void;
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TodoComponent, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TodoComponent, "app-todo", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "caseInfoID$": { "alias": "caseInfoID$"; "required": false; }; "datasource$": { "alias": "datasource$"; "required": false; }; "headerText$": { "alias": "headerText$"; "required": false; }; "showTodoList$": { "alias": "showTodoList$"; "required": false; }; "target$": { "alias": "target$"; "required": false; }; "type$": { "alias": "type$"; "required": false; }; "context$": { "alias": "context$"; "required": false; }; "myWorkList$": { "alias": "myWorkList$"; "required": false; }; "isConfirm": { "alias": "isConfirm"; "required": false; }; }, {}, never, never, true, never>;
|
|
63
|
+
}
|
|
64
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
|
+
import { Utils } from '../../../_helpers/utils';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
interface UtilityProps {
|
|
6
|
+
headerIcon?: string;
|
|
7
|
+
headerText?: string;
|
|
8
|
+
noItemsMessage?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class UtilityComponent implements OnInit, OnChanges {
|
|
11
|
+
private utils;
|
|
12
|
+
pConn$: typeof PConnect;
|
|
13
|
+
configProps$: UtilityProps;
|
|
14
|
+
headerIcon$?: string;
|
|
15
|
+
headerText$?: string;
|
|
16
|
+
headerIconUrl$?: string;
|
|
17
|
+
noItemsMessage$?: string;
|
|
18
|
+
constructor(utils: Utils);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
21
|
+
updateSelf(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UtilityComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UtilityComponent, "app-utility", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
25
|
+
export {};
|