@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,51 @@
|
|
|
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 { ProgressSpinnerService } from '../../../../_messages/progress-spinner.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with
|
|
9
|
+
* Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and
|
|
10
|
+
* is totally at your own risk.
|
|
11
|
+
*/
|
|
12
|
+
interface ViewContainerProps {
|
|
13
|
+
mode?: string;
|
|
14
|
+
name?: string;
|
|
15
|
+
limit?: number;
|
|
16
|
+
template?: string;
|
|
17
|
+
title?: string;
|
|
18
|
+
routingInfo: object;
|
|
19
|
+
readOnly?: boolean;
|
|
20
|
+
}
|
|
21
|
+
export declare class ViewContainerComponent implements OnInit, OnDestroy {
|
|
22
|
+
private angularPConnect;
|
|
23
|
+
private psService;
|
|
24
|
+
private ngZone;
|
|
25
|
+
pConn$: typeof PConnect;
|
|
26
|
+
formGroup$: FormGroup;
|
|
27
|
+
displayOnlyFA$: boolean;
|
|
28
|
+
angularPConnectData: AngularPConnectData;
|
|
29
|
+
configProps$: ViewContainerProps;
|
|
30
|
+
arChildren$: any[];
|
|
31
|
+
templateName$: string;
|
|
32
|
+
buildName$: string;
|
|
33
|
+
context$: string;
|
|
34
|
+
title$: string;
|
|
35
|
+
viewPConn$: any;
|
|
36
|
+
isViewContainer$: boolean;
|
|
37
|
+
createdViewPConn$: any;
|
|
38
|
+
state: any;
|
|
39
|
+
dispatchObject: any;
|
|
40
|
+
constructor(angularPConnect: AngularPConnectService, psService: ProgressSpinnerService, ngZone: NgZone);
|
|
41
|
+
ngOnInit(): void;
|
|
42
|
+
ngOnDestroy(): void;
|
|
43
|
+
onStateChange(): void;
|
|
44
|
+
checkAndUpdate(): void;
|
|
45
|
+
updateSelf(): void;
|
|
46
|
+
prepareDispatchObject(): any;
|
|
47
|
+
buildName(): string;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ViewContainerComponent, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ViewContainerComponent, "app-view-container", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "displayOnlyFA$": { "alias": "displayOnlyFA$"; "required": false; }; }, {}, never, never, true, never>;
|
|
50
|
+
}
|
|
51
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ActionButtonsComponent {
|
|
4
|
+
arMainButtons$: any[];
|
|
5
|
+
arSecondaryButtons$: any[];
|
|
6
|
+
actionButtonClick: EventEmitter<any>;
|
|
7
|
+
localizedVal: (localeKey: string, localePath?: string | undefined, localeRuleKey?: string | undefined) => string;
|
|
8
|
+
localeCategory: string;
|
|
9
|
+
buttonClick(sAction: any, sButtonType: any): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActionButtonsComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionButtonsComponent, "app-action-buttons", never, { "arMainButtons$": { "alias": "arMainButtons$"; "required": false; }; "arSecondaryButtons$": { "alias": "arSecondaryButtons$"; "required": false; }; }, { "actionButtonClick": "actionButtonClick"; }, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, NgZone, OnDestroy, OnChanges } from '@angular/core';
|
|
3
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
|
+
import { FormGroup } from '@angular/forms';
|
|
5
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
6
|
+
import { ErrorMessagesService } from '../../../_messages/error-messages.service';
|
|
7
|
+
import { ProgressSpinnerService } from '../../../_messages/progress-spinner.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
interface AssignmentProps {
|
|
10
|
+
template: string;
|
|
11
|
+
}
|
|
12
|
+
export declare class AssignmentComponent implements OnInit, OnDestroy, OnChanges {
|
|
13
|
+
private angularPConnect;
|
|
14
|
+
private psService;
|
|
15
|
+
private erService;
|
|
16
|
+
private ngZone;
|
|
17
|
+
private snackBar;
|
|
18
|
+
pConn$: typeof PConnect;
|
|
19
|
+
formGroup$: FormGroup;
|
|
20
|
+
arChildren$: any[];
|
|
21
|
+
itemKey$: string;
|
|
22
|
+
isCreateStage$: boolean;
|
|
23
|
+
updateToken$: number;
|
|
24
|
+
isInModal$: boolean;
|
|
25
|
+
banners: any;
|
|
26
|
+
angularPConnectData: AngularPConnectData;
|
|
27
|
+
configProps$: AssignmentProps;
|
|
28
|
+
newPConn$: any;
|
|
29
|
+
containerName$: string;
|
|
30
|
+
bIsRefComponent: boolean;
|
|
31
|
+
bInitialized: boolean;
|
|
32
|
+
templateName$: string;
|
|
33
|
+
arMainButtons$: any[];
|
|
34
|
+
arSecondaryButtons$: any[];
|
|
35
|
+
actionsAPI: any;
|
|
36
|
+
bHasNavigation$: boolean;
|
|
37
|
+
bIsVertical$: boolean;
|
|
38
|
+
arCurrentStepIndicies$: number[];
|
|
39
|
+
arNavigationSteps$: any[];
|
|
40
|
+
init: boolean;
|
|
41
|
+
finishAssignment: any;
|
|
42
|
+
navigateToStep: any;
|
|
43
|
+
saveAssignment: any;
|
|
44
|
+
cancelAssignment: any;
|
|
45
|
+
cancelCreateStageAssignment: any;
|
|
46
|
+
showPage: any;
|
|
47
|
+
bReInit: boolean;
|
|
48
|
+
localizedVal: any;
|
|
49
|
+
localeCategory: string;
|
|
50
|
+
localeReference: any;
|
|
51
|
+
constructor(angularPConnect: AngularPConnectService, psService: ProgressSpinnerService, erService: ErrorMessagesService, ngZone: NgZone, snackBar: MatSnackBar);
|
|
52
|
+
ngOnInit(): void;
|
|
53
|
+
ngOnDestroy(): void;
|
|
54
|
+
onStateChange(): void;
|
|
55
|
+
checkAndUpdate(): void;
|
|
56
|
+
ngOnChanges(): void;
|
|
57
|
+
updateChanges(): void;
|
|
58
|
+
checkIfRefComponent(thePConn: any): boolean;
|
|
59
|
+
initComponent(): void;
|
|
60
|
+
createButtons(): void;
|
|
61
|
+
createButtonsForMultiStepForm(oCaseInfo: any): void;
|
|
62
|
+
findCurrentIndicies(arStepperSteps: any[], arIndicies: number[], depth: number): number[];
|
|
63
|
+
onSaveActionSuccess(data: any): void;
|
|
64
|
+
onActionButtonClick(oData: any): void;
|
|
65
|
+
buttonClick(sAction: any, sButtonType: any): void;
|
|
66
|
+
formValid(): boolean;
|
|
67
|
+
touchAll(): void;
|
|
68
|
+
topViewRefresh(): void;
|
|
69
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AssignmentComponent, never>;
|
|
70
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AssignmentComponent, "app-assignment", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "arChildren$": { "alias": "arChildren$"; "required": false; }; "itemKey$": { "alias": "itemKey$"; "required": false; }; "isCreateStage$": { "alias": "isCreateStage$"; "required": false; }; "updateToken$": { "alias": "updateToken$"; "required": false; }; "isInModal$": { "alias": "isInModal$"; "required": false; }; "banners": { "alias": "banners"; "required": false; }; }, {}, never, never, true, never>;
|
|
71
|
+
}
|
|
72
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, EventEmitter, OnChanges } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AssignmentCardComponent implements OnInit, OnChanges {
|
|
6
|
+
pConn$: typeof PConnect;
|
|
7
|
+
formGroup$: FormGroup;
|
|
8
|
+
arMainButtons$: any[];
|
|
9
|
+
arSecondaryButtons$: any[];
|
|
10
|
+
arChildren$: any[];
|
|
11
|
+
updateToken$: number;
|
|
12
|
+
actionButtonClick: EventEmitter<any>;
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
ngOnChanges(): void;
|
|
15
|
+
onActionButtonClick(oData: any): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AssignmentCardComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AssignmentCardComponent, "app-assignment-card", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "arMainButtons$": { "alias": "arMainButtons$"; "required": false; }; "arSecondaryButtons$": { "alias": "arSecondaryButtons$"; "required": false; }; "arChildren$": { "alias": "arChildren$"; "required": false; }; "updateToken$": { "alias": "updateToken$"; "required": false; }; }, { "actionButtonClick": "actionButtonClick"; }, never, never, true, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DashboardFilterComponent implements OnInit {
|
|
6
|
+
pConn$: typeof PConnect;
|
|
7
|
+
filtersFormGroup$: FormGroup;
|
|
8
|
+
inlineProps: any;
|
|
9
|
+
children: any;
|
|
10
|
+
arChildren$: any[];
|
|
11
|
+
private filterChangeSubject;
|
|
12
|
+
constructor();
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
clearFilters(): void;
|
|
15
|
+
updateTmpData(filterData: any): void;
|
|
16
|
+
dateRangeChangeHandler(field: any): void;
|
|
17
|
+
fireFilterChange(data: any): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DashboardFilterComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DashboardFilterComponent, "app-dashboard-filter", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "filtersFormGroup$": { "alias": "filtersFormGroup$"; "required": false; }; "inlineProps": { "alias": "inlineProps"; "required": false; }; "children": { "alias": "children"; "required": false; }; }, {}, never, never, true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnDestroy, OnChanges } from '@angular/core';
|
|
3
|
+
import { publicConstants } from '@pega/pcore-pconnect-typedefs/constants';
|
|
4
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with
|
|
8
|
+
* Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and
|
|
9
|
+
* is totally at your own risk.
|
|
10
|
+
*/
|
|
11
|
+
export declare class DeferLoadComponent implements OnInit, OnDestroy, OnChanges {
|
|
12
|
+
private angularPConnect;
|
|
13
|
+
pConn$: typeof PConnect;
|
|
14
|
+
loadData$: any;
|
|
15
|
+
name: any;
|
|
16
|
+
componentName$: string;
|
|
17
|
+
loadedPConn$: any;
|
|
18
|
+
bShowDefer$: boolean;
|
|
19
|
+
angularPConnectData: AngularPConnectData;
|
|
20
|
+
constants: typeof publicConstants;
|
|
21
|
+
currentLoadedAssignment: string;
|
|
22
|
+
isContainerPreview: boolean;
|
|
23
|
+
loadViewCaseID: any;
|
|
24
|
+
resourceType: any;
|
|
25
|
+
deferLoadId: any;
|
|
26
|
+
containerName: any;
|
|
27
|
+
CASE: any;
|
|
28
|
+
PAGE: any;
|
|
29
|
+
DATA: any;
|
|
30
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
31
|
+
ngOnInit(): void;
|
|
32
|
+
ngOnDestroy(): void;
|
|
33
|
+
onStateChange(): void;
|
|
34
|
+
ngOnChanges(): void;
|
|
35
|
+
getViewOptions: () => {
|
|
36
|
+
viewContext: any;
|
|
37
|
+
pageClass: any;
|
|
38
|
+
container: string | null;
|
|
39
|
+
containerName: string | null;
|
|
40
|
+
updateData: boolean;
|
|
41
|
+
};
|
|
42
|
+
onResponse(data: any): void;
|
|
43
|
+
loadActiveTab(): void;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DeferLoadComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DeferLoadComponent, "app-defer-load", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "loadData$": { "alias": "loadData$"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, true, never>;
|
|
46
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ErrorBoundaryComponent {
|
|
3
|
+
message: string;
|
|
4
|
+
localizedVal: (localeKey: string, localePath?: string | undefined, localeRuleKey?: string | undefined) => string;
|
|
5
|
+
localeCategory: string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorBoundaryComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorBoundaryComponent, "app-error-boundary", never, { "message": { "alias": "message"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, EventEmitter } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { Utils } from '../../../_helpers/utils';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class MultiStepComponent implements OnInit {
|
|
7
|
+
private utils;
|
|
8
|
+
pConn$: typeof PConnect;
|
|
9
|
+
formGroup$: FormGroup;
|
|
10
|
+
arMainButtons$: any[];
|
|
11
|
+
arSecondaryButtons$: any[];
|
|
12
|
+
arChildren$: any[];
|
|
13
|
+
bIsVertical$: boolean;
|
|
14
|
+
arCurrentStepIndicies$: number[];
|
|
15
|
+
arNavigationSteps$: any[];
|
|
16
|
+
actionButtonClick: EventEmitter<any>;
|
|
17
|
+
svgCurrent$: string;
|
|
18
|
+
svgNotCurrent$: string;
|
|
19
|
+
bShow$: boolean;
|
|
20
|
+
constructor(utils: Utils);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
onActionButtonClick(oData: any): void;
|
|
23
|
+
_getVIconClass(status: any): string;
|
|
24
|
+
_getVLabelClass(status: any): string;
|
|
25
|
+
_getVBodyClass(index: number): string;
|
|
26
|
+
_getHIconClass(status: any): string;
|
|
27
|
+
_getHLabelClass(status: any): string;
|
|
28
|
+
_showHLine(index: number): boolean;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultiStepComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiStepComponent, "app-multi-step", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "arMainButtons$": { "alias": "arMainButtons$"; "required": false; }; "arSecondaryButtons$": { "alias": "arSecondaryButtons$"; "required": false; }; "arChildren$": { "alias": "arChildren$"; "required": false; }; "bIsVertical$": { "alias": "bIsVertical$"; "required": false; }; "arCurrentStepIndicies$": { "alias": "arCurrentStepIndicies$"; "required": false; }; "arNavigationSteps$": { "alias": "arNavigationSteps$"; "required": false; }; }, { "actionButtonClick": "actionButtonClick"; }, never, never, true, never>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, ChangeDetectorRef, NgZone, OnDestroy } 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 NavBarProps {
|
|
8
|
+
showAppName?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class NavbarComponent implements OnInit, OnDestroy {
|
|
11
|
+
private angularPConnect;
|
|
12
|
+
private chRef;
|
|
13
|
+
private psService;
|
|
14
|
+
private ngZone;
|
|
15
|
+
private utils;
|
|
16
|
+
pConn$: typeof PConnect;
|
|
17
|
+
appName$: string;
|
|
18
|
+
pages$: any[];
|
|
19
|
+
caseTypes$: any[];
|
|
20
|
+
angularPConnectData: AngularPConnectData;
|
|
21
|
+
configProps$: NavBarProps;
|
|
22
|
+
navPages$: any[];
|
|
23
|
+
navExpandCollapse$: string;
|
|
24
|
+
bShowCaseTypes$: boolean;
|
|
25
|
+
portalApp$: string;
|
|
26
|
+
portalLogoImage$: string;
|
|
27
|
+
showAppName$?: boolean;
|
|
28
|
+
portalOperator$: string;
|
|
29
|
+
portalOperatorInitials$: string;
|
|
30
|
+
actionsAPI: any;
|
|
31
|
+
createWork: any;
|
|
32
|
+
showPage: any;
|
|
33
|
+
logout: any;
|
|
34
|
+
navIcon$: string;
|
|
35
|
+
localizedVal: any;
|
|
36
|
+
localeCategory: string;
|
|
37
|
+
constructor(angularPConnect: AngularPConnectService, chRef: ChangeDetectorRef, psService: ProgressSpinnerService, ngZone: NgZone, utils: Utils);
|
|
38
|
+
ngOnInit(): void;
|
|
39
|
+
ngOnDestroy(): void;
|
|
40
|
+
loadImage(src: string): Promise<unknown>;
|
|
41
|
+
onStateChange(): void;
|
|
42
|
+
updateSelf(): void;
|
|
43
|
+
initComponent(): void;
|
|
44
|
+
navPanelButtonClick(oPageData: any): void;
|
|
45
|
+
navPanelCreateButtonClick(): void;
|
|
46
|
+
navPanelCreateCaseType(sCaseType: string, sFlowType: string): void;
|
|
47
|
+
navPanelLogoutClick(): void;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarComponent, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "app-navbar", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "appName$": { "alias": "appName$"; "required": false; }; "pages$": { "alias": "pages$"; "required": false; }; "caseTypes$": { "alias": "caseTypes$"; "required": false; }; }, {}, never, never, true, never>;
|
|
50
|
+
}
|
|
51
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with
|
|
4
|
+
* Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and
|
|
5
|
+
* is totally at your own risk.
|
|
6
|
+
*/
|
|
7
|
+
export declare class ReferenceComponent {
|
|
8
|
+
referencedComponent: any;
|
|
9
|
+
private static bLogging;
|
|
10
|
+
constructor();
|
|
11
|
+
static createFullReferencedViewFromRef(inPConn: any): any;
|
|
12
|
+
static normalizePConn(inPConn: any): any;
|
|
13
|
+
static normalizePConnArray(inPConnArray: any): any;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReferenceComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReferenceComponent, "app-reference", never, {}, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
@@ -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 RegionComponent 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<RegionComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RegionComponent, "app-region", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, NgZone, OnDestroy } from '@angular/core';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
5
|
+
import { ProgressSpinnerService } from '../../../_messages/progress-spinner.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class RootContainerComponent implements OnInit, OnDestroy {
|
|
8
|
+
private angularPConnect;
|
|
9
|
+
private psService;
|
|
10
|
+
private ngZone;
|
|
11
|
+
pConn$: typeof PConnect;
|
|
12
|
+
displayOnlyFA$: boolean;
|
|
13
|
+
isMashup$: boolean;
|
|
14
|
+
angularPConnectData: AngularPConnectData;
|
|
15
|
+
componentName$: string;
|
|
16
|
+
bIsProgress$: boolean;
|
|
17
|
+
pvConn$: any;
|
|
18
|
+
mConn$: any;
|
|
19
|
+
bShowRoot$: boolean;
|
|
20
|
+
progressSpinnerSubscription: Subscription;
|
|
21
|
+
spinnerTimer: any;
|
|
22
|
+
viewContainerPConn$: any;
|
|
23
|
+
localizedVal: any;
|
|
24
|
+
localeCategory: string;
|
|
25
|
+
constructor(angularPConnect: AngularPConnectService, psService: ProgressSpinnerService, ngZone: NgZone);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
ngOnDestroy(): void;
|
|
28
|
+
onStateChange(): void;
|
|
29
|
+
modalVisibleChanged(isVisible: any): void;
|
|
30
|
+
updateSelf(): void;
|
|
31
|
+
generateViewContainerForNoPortal(): void;
|
|
32
|
+
showHideProgress(bShow: boolean): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RootContainerComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RootContainerComponent, "app-root-container", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "displayOnlyFA$": { "alias": "displayOnlyFA$"; "required": false; }; "isMashup$": { "alias": "isMashup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, 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
|
+
interface StagesProps {
|
|
7
|
+
stages: any[];
|
|
8
|
+
}
|
|
9
|
+
export declare class StagesComponent implements OnInit, OnDestroy {
|
|
10
|
+
private angularPConnect;
|
|
11
|
+
private utils;
|
|
12
|
+
pConn$: typeof PConnect;
|
|
13
|
+
angularPConnectData: AngularPConnectData;
|
|
14
|
+
PCore$: typeof PCore;
|
|
15
|
+
configProps$: StagesProps;
|
|
16
|
+
arStageResults$: any[];
|
|
17
|
+
lastStage$: any;
|
|
18
|
+
checkSvgIcon$: string;
|
|
19
|
+
key: string;
|
|
20
|
+
constructor(angularPConnect: AngularPConnectService, utils: Utils);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnDestroy(): void;
|
|
23
|
+
onStateChange(): void;
|
|
24
|
+
checkAndUpdate(): void;
|
|
25
|
+
updateSelf(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StagesComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StagesComponent, "app-stages", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
|
|
28
|
+
}
|
|
29
|
+
export {};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, SimpleChanges, OnDestroy, OnChanges } 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
|
+
interface ViewProps {
|
|
8
|
+
template?: string;
|
|
9
|
+
label?: string;
|
|
10
|
+
showLabel: boolean;
|
|
11
|
+
title?: string;
|
|
12
|
+
visibility?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class ViewComponent implements OnInit, OnDestroy, OnChanges {
|
|
15
|
+
private angularPConnect;
|
|
16
|
+
private utils;
|
|
17
|
+
pConn$: typeof PConnect;
|
|
18
|
+
formGroup$: FormGroup;
|
|
19
|
+
displayOnlyFA$: boolean;
|
|
20
|
+
angularPConnectData: AngularPConnectData;
|
|
21
|
+
configProps$: ViewProps;
|
|
22
|
+
inheritedProps$: any;
|
|
23
|
+
arChildren$: any[];
|
|
24
|
+
templateName$: string;
|
|
25
|
+
title$: string;
|
|
26
|
+
label$: string;
|
|
27
|
+
showLabel$: boolean;
|
|
28
|
+
visibility$: boolean;
|
|
29
|
+
constructor(angularPConnect: AngularPConnectService, utils: Utils);
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
onStateChange(): void;
|
|
32
|
+
checkAndUpdate(): void;
|
|
33
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
34
|
+
updateSelf(): void;
|
|
35
|
+
additionalProps(state: any, getPConnect: any): {};
|
|
36
|
+
ngOnDestroy(): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ViewComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ViewComponent, "app-view", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "displayOnlyFA$": { "alias": "displayOnlyFA$"; "required": false; }; }, {}, never, never, true, never>;
|
|
39
|
+
}
|
|
40
|
+
export {};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, NgZone, OnDestroy } from '@angular/core';
|
|
3
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
|
+
import { Subscription } from 'rxjs';
|
|
5
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
6
|
+
import { ErrorMessagesService } from '../../../_messages/error-messages.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
interface IPage {
|
|
9
|
+
classID: string;
|
|
10
|
+
pxPageViewIcon: string;
|
|
11
|
+
pyClassName: string;
|
|
12
|
+
pyLabel: string;
|
|
13
|
+
pyRuleName: string;
|
|
14
|
+
pyURLContent: string;
|
|
15
|
+
}
|
|
16
|
+
interface AppShellProps {
|
|
17
|
+
pages: IPage[];
|
|
18
|
+
caseTypes?: object[];
|
|
19
|
+
portalLogo: string;
|
|
20
|
+
portalName: string;
|
|
21
|
+
portalTemplate: string;
|
|
22
|
+
readOnly?: boolean;
|
|
23
|
+
showAppHeaderBar: boolean;
|
|
24
|
+
showAppName: boolean;
|
|
25
|
+
}
|
|
26
|
+
export declare class AppShellComponent implements OnInit, OnDestroy {
|
|
27
|
+
private angularPConnect;
|
|
28
|
+
private erService;
|
|
29
|
+
private snackBar;
|
|
30
|
+
private ngZone;
|
|
31
|
+
pConn$: typeof PConnect;
|
|
32
|
+
angularPConnectData: AngularPConnectData;
|
|
33
|
+
configProps$: AppShellProps;
|
|
34
|
+
pages$: IPage[];
|
|
35
|
+
caseTypes$?: object[];
|
|
36
|
+
arChildren$: any[];
|
|
37
|
+
bShowAppShell$: boolean;
|
|
38
|
+
appName$: string;
|
|
39
|
+
errorMessagesSubscription: Subscription;
|
|
40
|
+
sErrorMessages: string;
|
|
41
|
+
snackBarRef: any;
|
|
42
|
+
bOkDisplayError: boolean;
|
|
43
|
+
portalTemplate: string;
|
|
44
|
+
links: any;
|
|
45
|
+
constructor(angularPConnect: AngularPConnectService, erService: ErrorMessagesService, snackBar: MatSnackBar, ngZone: NgZone);
|
|
46
|
+
ngOnInit(): void;
|
|
47
|
+
ngOnDestroy(): void;
|
|
48
|
+
onStateChange(): void;
|
|
49
|
+
checkAndUpdate(): void;
|
|
50
|
+
updateSelf(): void;
|
|
51
|
+
showDismissErrorMessages(errorMessages: any): void;
|
|
52
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppShellComponent, never>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppShellComponent, "app-app-shell", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
|
|
54
|
+
}
|
|
55
|
+
export {};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
interface BannerPageProps {
|
|
5
|
+
layout?: string;
|
|
6
|
+
title?: string;
|
|
7
|
+
message?: string;
|
|
8
|
+
backgroundImage?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class BannerPageComponent implements OnInit, OnChanges {
|
|
11
|
+
pConn$: typeof PConnect;
|
|
12
|
+
formGroup$: any;
|
|
13
|
+
configProps$: BannerPageProps;
|
|
14
|
+
arChildren$: any[];
|
|
15
|
+
title?: string;
|
|
16
|
+
message: any;
|
|
17
|
+
backgroundImage?: string;
|
|
18
|
+
layout$?: string;
|
|
19
|
+
divClass$: string;
|
|
20
|
+
constructor();
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
23
|
+
updateSelf(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BannerPageComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BannerPageComponent, "app-banner-page", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
26
|
+
}
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnDestroy, OnChanges } 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
|
+
interface CaseSummaryProps {
|
|
7
|
+
status?: string;
|
|
8
|
+
showStatus?: boolean;
|
|
9
|
+
template?: string;
|
|
10
|
+
readOnly?: boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare class CaseSummaryComponent implements OnInit, OnDestroy, OnChanges {
|
|
13
|
+
private angularPConnect;
|
|
14
|
+
pConn$: typeof PConnect;
|
|
15
|
+
formGroup$: FormGroup;
|
|
16
|
+
angularPConnectData: AngularPConnectData;
|
|
17
|
+
configProps$: CaseSummaryProps;
|
|
18
|
+
arChildren$: any[];
|
|
19
|
+
status$?: string;
|
|
20
|
+
bShowStatus$?: boolean;
|
|
21
|
+
primaryFields$: any[];
|
|
22
|
+
secondaryFields$: any[];
|
|
23
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
ngOnDestroy(): void;
|
|
26
|
+
initComponent(): void;
|
|
27
|
+
onStateChange(): void;
|
|
28
|
+
updateSelf(): void;
|
|
29
|
+
ngOnChanges(): void;
|
|
30
|
+
generatePrimaryAndSecondaryFields(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaseSummaryComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaseSummaryComponent, "app-case-summary", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
33
|
+
}
|
|
34
|
+
export {};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, ChangeDetectorRef, 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
|
+
interface CaseViewProps {
|
|
8
|
+
icon: string;
|
|
9
|
+
subheader: string;
|
|
10
|
+
header: string;
|
|
11
|
+
}
|
|
12
|
+
export declare class CaseViewComponent implements OnInit, OnDestroy {
|
|
13
|
+
private cdRef;
|
|
14
|
+
private angularPConnect;
|
|
15
|
+
private utils;
|
|
16
|
+
pConn$: typeof PConnect;
|
|
17
|
+
formGroup$: FormGroup;
|
|
18
|
+
displayOnlyFA$: boolean;
|
|
19
|
+
angularPConnectData: AngularPConnectData;
|
|
20
|
+
configProps$: CaseViewProps;
|
|
21
|
+
arChildren$: any[];
|
|
22
|
+
heading$: string;
|
|
23
|
+
id$: string;
|
|
24
|
+
status$: string;
|
|
25
|
+
caseTabs$: any[];
|
|
26
|
+
svgCase$: string;
|
|
27
|
+
tabData$: any;
|
|
28
|
+
mainTabs: any;
|
|
29
|
+
mainTabData: any;
|
|
30
|
+
arAvailableActions$: any[];
|
|
31
|
+
arAvailabeProcesses$: any[];
|
|
32
|
+
caseSummaryPConn$: any;
|
|
33
|
+
currentCaseID: string;
|
|
34
|
+
editAction: boolean;
|
|
35
|
+
bHasNewAttachments: boolean;
|
|
36
|
+
localizedVal: any;
|
|
37
|
+
localeCategory: string;
|
|
38
|
+
localeKey: string;
|
|
39
|
+
constructor(cdRef: ChangeDetectorRef, angularPConnect: AngularPConnectService, utils: Utils);
|
|
40
|
+
ngOnInit(): void;
|
|
41
|
+
ngOnDestroy(): void;
|
|
42
|
+
onStateChange(): void;
|
|
43
|
+
checkAndUpdate(): void;
|
|
44
|
+
hasCaseIDChanged(): boolean;
|
|
45
|
+
updateHeaderAndSummary(): void;
|
|
46
|
+
fullUpdate(): void;
|
|
47
|
+
generateTabsData(): void;
|
|
48
|
+
updateSelf(): void;
|
|
49
|
+
onTabClick(tab: any): void;
|
|
50
|
+
_editClick(): void;
|
|
51
|
+
_menuActionClick(data: any): void;
|
|
52
|
+
_menuProcessClick(data: any): void;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaseViewComponent, never>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaseViewComponent, "app-case-view", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "displayOnlyFA$": { "alias": "displayOnlyFA$"; "required": false; }; }, {}, never, never, true, never>;
|
|
55
|
+
}
|
|
56
|
+
export {};
|