@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,38 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnDestroy } 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
|
+
interface ConfirmationProps {
|
|
7
|
+
datasource: {
|
|
8
|
+
source: any;
|
|
9
|
+
};
|
|
10
|
+
label: string;
|
|
11
|
+
showLabel: boolean;
|
|
12
|
+
showTasks: boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class ConfirmationComponent implements OnInit, OnDestroy {
|
|
15
|
+
private angularPConnect;
|
|
16
|
+
pConn$: typeof PConnect;
|
|
17
|
+
angularPConnectData: AngularPConnectData;
|
|
18
|
+
configProps$: ConfirmationProps;
|
|
19
|
+
rootInfo: any;
|
|
20
|
+
datasource: any;
|
|
21
|
+
showTasks: any;
|
|
22
|
+
detailProps: any;
|
|
23
|
+
toDoList: any;
|
|
24
|
+
label: string;
|
|
25
|
+
CONSTS: typeof publicConstants;
|
|
26
|
+
showDetails: boolean;
|
|
27
|
+
showConfirmView: boolean;
|
|
28
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
29
|
+
ngOnInit(): void;
|
|
30
|
+
ngOnDestroy(): void;
|
|
31
|
+
onStateChange(): void;
|
|
32
|
+
checkAndUpdate(): void;
|
|
33
|
+
updateSelf(): void;
|
|
34
|
+
onConfirmViewClose(): void;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmationComponent, "app-confirmation", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
|
|
37
|
+
}
|
|
38
|
+
export {};
|
|
@@ -0,0 +1,41 @@
|
|
|
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 DataReferenceComponent implements OnInit, OnDestroy {
|
|
7
|
+
private angularPConnect;
|
|
8
|
+
pConn$: typeof PConnect;
|
|
9
|
+
formGroup$: FormGroup;
|
|
10
|
+
angularPConnectData: AngularPConnectData;
|
|
11
|
+
arFields$: any[];
|
|
12
|
+
referenceType: string;
|
|
13
|
+
selectionMode: string;
|
|
14
|
+
parameters: any;
|
|
15
|
+
hideLabel: boolean;
|
|
16
|
+
childrenToRender: any[];
|
|
17
|
+
dropDownDataSource: string;
|
|
18
|
+
isDisplayModeEnabled: boolean;
|
|
19
|
+
propsToUse: any;
|
|
20
|
+
rawViewMetadata: any;
|
|
21
|
+
viewName: string;
|
|
22
|
+
firstChildMeta: any;
|
|
23
|
+
canBeChangedInReviewMode: boolean;
|
|
24
|
+
propName: string;
|
|
25
|
+
firstChildPConnect: any;
|
|
26
|
+
children: any;
|
|
27
|
+
displaySingleRef: boolean;
|
|
28
|
+
displayMultiRef: boolean;
|
|
29
|
+
refList: any;
|
|
30
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
31
|
+
ngOnInit(): void;
|
|
32
|
+
ngOnDestroy(): void;
|
|
33
|
+
onStateChange(): void;
|
|
34
|
+
updateSelf(): void;
|
|
35
|
+
updatePropertiesFromProps(theConfigProps: any): void;
|
|
36
|
+
generateChildrenToRender(): void;
|
|
37
|
+
handleSelection(event: any): void;
|
|
38
|
+
recreatedFirstChild(): any;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataReferenceComponent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataReferenceComponent, "app-data-reference", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { TemplateUtils } from '../../../_helpers/template-utils';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DefaultFormComponent implements OnInit {
|
|
7
|
+
private templateUtils;
|
|
8
|
+
pConn$: typeof PConnect;
|
|
9
|
+
formGroup$: FormGroup;
|
|
10
|
+
arChildren$: any[];
|
|
11
|
+
divClass$: string;
|
|
12
|
+
template: any;
|
|
13
|
+
showLabel: any;
|
|
14
|
+
label: any;
|
|
15
|
+
instructions: string;
|
|
16
|
+
NO_HEADER_TEMPLATES: string[];
|
|
17
|
+
constructor(templateUtils: TemplateUtils);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultFormComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DefaultFormComponent, "app-default-form", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DetailsComponent implements OnInit, OnDestroy {
|
|
6
|
+
private angularPConnect;
|
|
7
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
8
|
+
pConn$: typeof PConnect;
|
|
9
|
+
highlightedDataArr: any[];
|
|
10
|
+
showHighlightedData: boolean;
|
|
11
|
+
arFields$: any[];
|
|
12
|
+
angularPConnectData: AngularPConnectData;
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
onStateChange(): void;
|
|
16
|
+
checkAndUpdate(): void;
|
|
17
|
+
updateSelf(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DetailsComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DetailsComponent, "app-details", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DetailsNarrowWideComponent implements OnInit, OnDestroy {
|
|
6
|
+
private angularPConnect;
|
|
7
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
8
|
+
pConn$: typeof PConnect;
|
|
9
|
+
arFields$: any[];
|
|
10
|
+
arFields2$: any[];
|
|
11
|
+
highlightedDataArr: any[];
|
|
12
|
+
showHighlightedData: boolean;
|
|
13
|
+
angularPConnectData: AngularPConnectData;
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
onStateChange(): void;
|
|
17
|
+
checkAndUpdate(): void;
|
|
18
|
+
updateSelf(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DetailsNarrowWideComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DetailsNarrowWideComponent, "app-details-narrow-wide", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
|
+
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
4
|
+
import { FormGroup } from '@angular/forms';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DetailsOneColumnComponent implements OnInit, OnDestroy {
|
|
7
|
+
private angularPConnect;
|
|
8
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
9
|
+
pConn$: typeof PConnect;
|
|
10
|
+
formGroup$: FormGroup;
|
|
11
|
+
showHighlightedData: boolean;
|
|
12
|
+
highlightedDataArr: any;
|
|
13
|
+
arFields$: any[];
|
|
14
|
+
angularPConnectData: AngularPConnectData;
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
ngOnDestroy(): void;
|
|
17
|
+
onStateChange(): void;
|
|
18
|
+
checkAndUpdate(): void;
|
|
19
|
+
updateSelf(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DetailsOneColumnComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DetailsOneColumnComponent, "app-details-one-column", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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 DetailsSubTabsComponent implements OnInit, OnDestroy {
|
|
7
|
+
private angularPConnect;
|
|
8
|
+
pConn$: typeof PConnect;
|
|
9
|
+
formGroup$: FormGroup;
|
|
10
|
+
angularPConnectData: AngularPConnectData;
|
|
11
|
+
currentTabId: string;
|
|
12
|
+
tabItems: any[];
|
|
13
|
+
availableTabs: any[];
|
|
14
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
ngOnDestroy(): void;
|
|
17
|
+
onStateChange(): void;
|
|
18
|
+
checkAndUpdate(): void;
|
|
19
|
+
updateSelf(): void;
|
|
20
|
+
updateTabContent(): void;
|
|
21
|
+
handleTabClick(event: any): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DetailsSubTabsComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DetailsSubTabsComponent, "app-details-sub-tabs", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
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 DetailsThreeColumnComponent implements OnInit, OnDestroy {
|
|
7
|
+
private angularPConnect;
|
|
8
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
9
|
+
pConn$: typeof PConnect;
|
|
10
|
+
formGroup$: FormGroup;
|
|
11
|
+
showHighlightedData: boolean;
|
|
12
|
+
highlightedDataArr: any;
|
|
13
|
+
arFields$: any[];
|
|
14
|
+
arFields2$: any[];
|
|
15
|
+
arFields3$: any[];
|
|
16
|
+
propsToUse: any;
|
|
17
|
+
angularPConnectData: AngularPConnectData;
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
onStateChange(): void;
|
|
21
|
+
checkAndUpdate(): void;
|
|
22
|
+
updateSelf(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DetailsThreeColumnComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DetailsThreeColumnComponent, "app-details-three-column", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
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 DetailsTwoColumnComponent implements OnInit, OnDestroy {
|
|
7
|
+
private angularPConnect;
|
|
8
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
9
|
+
pConn$: typeof PConnect;
|
|
10
|
+
formGroup$: FormGroup;
|
|
11
|
+
showHighlightedData: boolean;
|
|
12
|
+
highlightedDataArr: any;
|
|
13
|
+
arFields$: any[];
|
|
14
|
+
arFields2$: any[];
|
|
15
|
+
arFields3$: any[];
|
|
16
|
+
propsToUse: any;
|
|
17
|
+
angularPConnectData: AngularPConnectData;
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
onStateChange(): void;
|
|
21
|
+
checkAndUpdate(): void;
|
|
22
|
+
updateSelf(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DetailsTwoColumnComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DetailsTwoColumnComponent, "app-details-two-column", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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 DetailsWideNarrowComponent implements OnInit, OnDestroy {
|
|
7
|
+
private angularPConnect;
|
|
8
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
9
|
+
pConn$: typeof PConnect;
|
|
10
|
+
formGroup$: FormGroup;
|
|
11
|
+
highlightedDataArr: any[];
|
|
12
|
+
showHighlightedData: boolean;
|
|
13
|
+
arFields$: any[];
|
|
14
|
+
arFields2$: any[];
|
|
15
|
+
propsToUse: any;
|
|
16
|
+
angularPConnectData: AngularPConnectData;
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
onStateChange(): void;
|
|
20
|
+
checkAndUpdate(): void;
|
|
21
|
+
updateSelf(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DetailsWideNarrowComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DetailsWideNarrowComponent, "app-details-wide-narrow", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnDestroy, OnInit } 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 DynamicTabsComponent implements OnInit, OnDestroy {
|
|
7
|
+
private angularPConnect;
|
|
8
|
+
pConn$: typeof PConnect;
|
|
9
|
+
formGroup$: FormGroup;
|
|
10
|
+
angularPConnectData: AngularPConnectData;
|
|
11
|
+
tabsItems: any[];
|
|
12
|
+
constructor(angularPConnect: AngularPConnectService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
onStateChange(): void;
|
|
16
|
+
checkAndUpdate(): void;
|
|
17
|
+
updateSelf(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTabsComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTabsComponent, "app-dynamic-tabs", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FieldGroupListComponent {
|
|
3
|
+
item: any;
|
|
4
|
+
heading: any;
|
|
5
|
+
formGroup$: any;
|
|
6
|
+
fields: any;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldGroupListComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldGroupListComponent, "app-field-group-list", never, { "item": { "alias": "item"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
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 { Utils } from '../../../_helpers/utils';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
interface FieldGroupTemplateProps {
|
|
8
|
+
label?: string;
|
|
9
|
+
showLabel?: boolean;
|
|
10
|
+
referenceList?: any[];
|
|
11
|
+
contextClass: string;
|
|
12
|
+
renderMode?: string;
|
|
13
|
+
heading?: string;
|
|
14
|
+
lookForChildInConfig?: boolean;
|
|
15
|
+
displayMode?: string;
|
|
16
|
+
fieldHeader?: string;
|
|
17
|
+
allowTableEdit: boolean;
|
|
18
|
+
}
|
|
19
|
+
export declare class FieldGroupTemplateComponent implements OnInit, OnDestroy, OnChanges {
|
|
20
|
+
private angularPConnect;
|
|
21
|
+
private utils;
|
|
22
|
+
configProps$: FieldGroupTemplateProps;
|
|
23
|
+
pConn$: typeof PConnect;
|
|
24
|
+
formGroup$: FormGroup;
|
|
25
|
+
angularPConnectData: AngularPConnectData;
|
|
26
|
+
inheritedProps$: object;
|
|
27
|
+
showLabel$?: boolean;
|
|
28
|
+
label$?: string;
|
|
29
|
+
readonlyMode: boolean;
|
|
30
|
+
contextClass: any;
|
|
31
|
+
referenceList: any;
|
|
32
|
+
pageReference: any;
|
|
33
|
+
heading: any;
|
|
34
|
+
children: any;
|
|
35
|
+
menuIconOverride$: any;
|
|
36
|
+
prevRefLength: number;
|
|
37
|
+
allowAddEdit: boolean;
|
|
38
|
+
fieldHeader: any;
|
|
39
|
+
constructor(angularPConnect: AngularPConnectService, utils: Utils);
|
|
40
|
+
ngOnInit(): void;
|
|
41
|
+
ngOnDestroy(): void;
|
|
42
|
+
onStateChange(): void;
|
|
43
|
+
ngOnChanges(changes: any): void;
|
|
44
|
+
updateSelf(): void;
|
|
45
|
+
getStaticHeader: (heading: any, index: any) => string;
|
|
46
|
+
getDynamicHeader: (item: any, index: any) => any;
|
|
47
|
+
addFieldGroupItem(): void;
|
|
48
|
+
deleteFieldGroupItem(index: any): void;
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldGroupTemplateComponent, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldGroupTemplateComponent, "app-field-group-template", never, { "configProps$": { "alias": "configProps$"; "required": false; }; "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
51
|
+
}
|
|
52
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FieldValueListComponent {
|
|
3
|
+
label$: any;
|
|
4
|
+
value$: any;
|
|
5
|
+
displayMode$: any;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldValueListComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldValueListComponent, "app-field-value-list", never, { "label$": { "alias": "label$"; "required": false; }; "value$": { "alias": "value$"; "required": false; }; "displayMode$": { "alias": "displayMode$"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
interface InlineDashboardProps {
|
|
5
|
+
title: string;
|
|
6
|
+
filterPosition?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class InlineDashboardComponent {
|
|
9
|
+
pConn$: typeof PConnect;
|
|
10
|
+
filtersFormGroup$: FormGroup;
|
|
11
|
+
inlineProps: InlineDashboardProps;
|
|
12
|
+
children: any[];
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InlineDashboardComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InlineDashboardComponent, "app-inline-dashboard", 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>;
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, SimpleChanges, OnChanges } from '@angular/core';
|
|
3
|
+
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
interface InlineDashboardPageProps {
|
|
6
|
+
title: string;
|
|
7
|
+
icon?: string;
|
|
8
|
+
filterPosition?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class InlineDashboardPageComponent implements OnInit, OnChanges {
|
|
11
|
+
private fb;
|
|
12
|
+
pConn$: typeof PConnect;
|
|
13
|
+
configProps$: InlineDashboardPageProps;
|
|
14
|
+
filterComponents: any;
|
|
15
|
+
inlineProps: any;
|
|
16
|
+
children: any;
|
|
17
|
+
filtersFormGroup$: FormGroup;
|
|
18
|
+
constructor(fb: FormBuilder);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
21
|
+
updateSelf(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InlineDashboardPageComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InlineDashboardPageComponent, "app-inline-dashboard-page", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ListPageComponent {
|
|
4
|
+
pConn$: typeof PConnect;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListPageComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListPageComponent, "app-list-page", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getDefaultViewMeta(fieldMeta: any, classID: any, showField: any): any;
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
|
+
import { MatPaginator } from '@angular/material/paginator';
|
|
4
|
+
import { MatSort } from '@angular/material/sort';
|
|
5
|
+
import { MatTableDataSource } from '@angular/material/table';
|
|
6
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
7
|
+
import { ProgressSpinnerService } from '../../../_messages/progress-spinner.service';
|
|
8
|
+
import { Utils } from '../../../_helpers/utils';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
interface ListViewProps {
|
|
11
|
+
globalSearch?: boolean;
|
|
12
|
+
referenceList?: any;
|
|
13
|
+
rowClickAction?: any;
|
|
14
|
+
selectionMode?: string;
|
|
15
|
+
referenceType?: string;
|
|
16
|
+
compositeKeys?: any;
|
|
17
|
+
showDynamicFields?: boolean;
|
|
18
|
+
presets?: any;
|
|
19
|
+
reorderFields: string | boolean;
|
|
20
|
+
grouping: string | boolean;
|
|
21
|
+
}
|
|
22
|
+
export declare class Group {
|
|
23
|
+
level: number;
|
|
24
|
+
parent: Group;
|
|
25
|
+
expanded: boolean;
|
|
26
|
+
totalCounts: number;
|
|
27
|
+
get visible(): boolean;
|
|
28
|
+
}
|
|
29
|
+
export declare class ListViewComponent implements OnInit, OnDestroy {
|
|
30
|
+
private psService;
|
|
31
|
+
private utils;
|
|
32
|
+
paginator: MatPaginator;
|
|
33
|
+
sort: MatSort;
|
|
34
|
+
pConn$: typeof PConnect;
|
|
35
|
+
bInForm$: boolean;
|
|
36
|
+
payload: any;
|
|
37
|
+
repeatList$: MatTableDataSource<any>;
|
|
38
|
+
fields$: any[];
|
|
39
|
+
displayedColumns$: any[];
|
|
40
|
+
groupByColumns$: string[];
|
|
41
|
+
configProps$: ListViewProps;
|
|
42
|
+
updatedRefList: any;
|
|
43
|
+
repeatListData: any[];
|
|
44
|
+
searchIcon$: string;
|
|
45
|
+
bShowSearch$: boolean;
|
|
46
|
+
bColumnReorder$: boolean;
|
|
47
|
+
bGrouping$: boolean;
|
|
48
|
+
perfFilter: string;
|
|
49
|
+
searchFilter: string;
|
|
50
|
+
menuSvgIcon$: string;
|
|
51
|
+
arrowSvgIcon$: string;
|
|
52
|
+
arrowDownSvgIcon$: string;
|
|
53
|
+
arrowUpSvgIcon$: string;
|
|
54
|
+
filterSvgIcon$: string;
|
|
55
|
+
filterOnSvgIcon$: string;
|
|
56
|
+
groupBySvgIcon$: string;
|
|
57
|
+
compareType: string;
|
|
58
|
+
compareRef: string;
|
|
59
|
+
arrowDirection: string;
|
|
60
|
+
filterByColumns: any[];
|
|
61
|
+
bShowFilterPopover$: boolean;
|
|
62
|
+
bContains$: boolean;
|
|
63
|
+
bDateTime$: boolean;
|
|
64
|
+
filterContainsLabel$: string;
|
|
65
|
+
filterContainsType$: string;
|
|
66
|
+
filterContainsValue$: any;
|
|
67
|
+
bIsDate$: boolean;
|
|
68
|
+
bIsDateTime$: boolean;
|
|
69
|
+
bIsTime$: boolean;
|
|
70
|
+
currentFilterRefData: any;
|
|
71
|
+
currentFilterImageEl: any;
|
|
72
|
+
arFilterMainButtons$: any[];
|
|
73
|
+
arFilterSecondaryButtons$: any[];
|
|
74
|
+
selectionMode?: string;
|
|
75
|
+
singleSelectionMode: boolean;
|
|
76
|
+
multiSelectionMode: boolean;
|
|
77
|
+
rowID: any;
|
|
78
|
+
response: any;
|
|
79
|
+
compositeKeys: any;
|
|
80
|
+
showDynamicFields: any;
|
|
81
|
+
filters: any;
|
|
82
|
+
selectParam: any[];
|
|
83
|
+
filterPayload: any;
|
|
84
|
+
ref: any;
|
|
85
|
+
cosmosTableRef: any;
|
|
86
|
+
listContext: any;
|
|
87
|
+
query: any;
|
|
88
|
+
paging: any;
|
|
89
|
+
fieldDefs: any;
|
|
90
|
+
xRayApis: import("@pega/pcore-pconnect-typedefs/debug/xray-runtime").default;
|
|
91
|
+
xRayUid: string | null;
|
|
92
|
+
constructor(psService: ProgressSpinnerService, utils: Utils);
|
|
93
|
+
ngOnInit(): void;
|
|
94
|
+
getFieldFromFilter(filter: any, dateRange?: boolean): any;
|
|
95
|
+
processFilterChange(data: any): void;
|
|
96
|
+
filterBasedOnDateRange(dashboardFilterPayload: any, filter: any, relationalOp: any, selectParam: any, index: any): any;
|
|
97
|
+
processFilterClear(): void;
|
|
98
|
+
getFieldsMetadata(refList: any): Promise<object>;
|
|
99
|
+
getListData(): void;
|
|
100
|
+
preparePayload(): void;
|
|
101
|
+
ngOnDestroy(): void;
|
|
102
|
+
drop(event: CdkDragDrop<string[]>): void;
|
|
103
|
+
updateFields(arFields: any[], arColumns: any, fields: any): any[];
|
|
104
|
+
applySearch(event: Event): void;
|
|
105
|
+
fieldOnChange(row: any): void;
|
|
106
|
+
onCheckboxClick(row: any, event: any): void;
|
|
107
|
+
_getIconStyle(level: any): string;
|
|
108
|
+
_getGroupName(fieldName: any): any;
|
|
109
|
+
_showButton(name: any, row: any): boolean;
|
|
110
|
+
_listViewClick(column: any, row: any): void;
|
|
111
|
+
compare(a: number | string, b: number | string, isAsc: boolean): number;
|
|
112
|
+
_headerSortClick(event: any, columnData: any): void;
|
|
113
|
+
clearOutArrows(event: any, columnData: any): void;
|
|
114
|
+
sortCompare(a: any, b: any): number;
|
|
115
|
+
compareByColumnPxRefObjectInsName(aValue: any, bValue: any): number | undefined;
|
|
116
|
+
updateFilterDisplay(type: any): void;
|
|
117
|
+
_filter(event: any, columnData: any): void;
|
|
118
|
+
_clickAway(event: any): void;
|
|
119
|
+
_filterContainsType(event: any): void;
|
|
120
|
+
_filterContainsValue(event: any): void;
|
|
121
|
+
_filterContainsDateValue(event: any, value: any): void;
|
|
122
|
+
_filterContainsDateTimeValue(event: any): void;
|
|
123
|
+
_filterContainsTimeValue(event: any): void;
|
|
124
|
+
_onFilterActionButtonClick(event: any): void;
|
|
125
|
+
updateFilterWithInfo(): void;
|
|
126
|
+
updateFilterVarsWithCurrent(columnData: any): void;
|
|
127
|
+
filterData(item: any): boolean;
|
|
128
|
+
filterDataWithDate(item: any, filterObj: any, filterValue: any): any;
|
|
129
|
+
filterDataWithCommonTypes(item: any, filterObj: any, filterValue: any): any;
|
|
130
|
+
filterSortGroupBy(): void;
|
|
131
|
+
_showUnGroupBy(columnData: any): boolean;
|
|
132
|
+
_groupBy(event: any, columnData: any): void;
|
|
133
|
+
_unGroupBy(event: any, columnData: any): void;
|
|
134
|
+
checkGroupByColumn(field: any, add: any): void;
|
|
135
|
+
addGroups(data: any[], groupByColumns: string[]): any[];
|
|
136
|
+
getSublevel(data: any[], level: number, groupByColumns: string[], parent: Group): any[];
|
|
137
|
+
uniqueBy(a: any, key: any): any;
|
|
138
|
+
isGroup(index: any, item: any): boolean;
|
|
139
|
+
_groupHeaderClick(row: any): void;
|
|
140
|
+
customFilterPredicate(data: any | Group, filter: string): boolean;
|
|
141
|
+
getDataRowVisible(data: any): boolean;
|
|
142
|
+
getDataRowVisibleWithFilter(data: any, filter: any): boolean;
|
|
143
|
+
updateData(listData: any[], fieldData: any[]): any[];
|
|
144
|
+
openAssignment(row: any): void;
|
|
145
|
+
openWork(row: any): void;
|
|
146
|
+
initializeData(data: any): any;
|
|
147
|
+
getType(field: any): any;
|
|
148
|
+
initializeColumns(fields?: never[]): any[];
|
|
149
|
+
getHeaderCells(colFields: any, fields: any): any;
|
|
150
|
+
buildSelect(fieldDefs: any, colId: any, patchQueryFields?: never[], compositeKeys?: never[]): any;
|
|
151
|
+
getField(fieldDefs: any, columnId: any): any;
|
|
152
|
+
getFieldsMap(fieldDefs: any): Map<any, any>;
|
|
153
|
+
addItemKeyInSelect(fieldDefs: any, itemKey: any, select: any, compositeKeys: any): any;
|
|
154
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListViewComponent, never>;
|
|
155
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewComponent, "app-list-view", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "bInForm$": { "alias": "bInForm$"; "required": false; }; "payload": { "alias": "payload"; "required": false; }; }, {}, never, never, true, never>;
|
|
156
|
+
}
|
|
157
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function useInit(props: any): Promise<any>;
|