@pega/angular-sdk-components 23.1.10 → 24.1.10

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.
Files changed (192) hide show
  1. package/esm2022/lib/_bridge/angular-pconnect.mjs +18 -6
  2. package/esm2022/lib/_bridge/component-mapper/component-mapper.component.mjs +4 -4
  3. package/esm2022/lib/_bridge/helpers/sdk-pega-component-map.mjs +3 -1
  4. package/esm2022/lib/_bridge/helpers/sdk_component_map.mjs +1 -1
  5. package/esm2022/lib/_components/designSystemExtension/alert/alert.component.mjs +4 -4
  6. package/esm2022/lib/_components/designSystemExtension/alert-banner/alert-banner.component.mjs +4 -4
  7. package/esm2022/lib/_components/designSystemExtension/banner/banner.component.mjs +4 -4
  8. package/esm2022/lib/_components/designSystemExtension/case-create-stage/case-create-stage.component.mjs +5 -5
  9. package/esm2022/lib/_components/designSystemExtension/field-group/field-group.component.mjs +3 -3
  10. package/esm2022/lib/_components/designSystemExtension/material-case-summary/material-case-summary.component.mjs +9 -6
  11. package/esm2022/lib/_components/designSystemExtension/material-details/material-details.component.mjs +5 -5
  12. package/esm2022/lib/_components/designSystemExtension/material-details-fields/material-details-fields.component.mjs +5 -5
  13. package/esm2022/lib/_components/designSystemExtension/material-summary-item/material-summary-item.component.mjs +5 -5
  14. package/esm2022/lib/_components/designSystemExtension/material-summary-list/material-summary-list.component.mjs +4 -4
  15. package/esm2022/lib/_components/designSystemExtension/material-utility/material-utility.component.mjs +5 -5
  16. package/esm2022/lib/_components/designSystemExtension/material-vertical-tabs/material-vertical-tabs.component.mjs +5 -5
  17. package/esm2022/lib/_components/designSystemExtension/operator/operator.component.mjs +16 -9
  18. package/esm2022/lib/_components/designSystemExtension/pulse/pulse.component.mjs +4 -4
  19. package/esm2022/lib/_components/designSystemExtension/rich-text-editor/rich-text-editor.component.mjs +4 -4
  20. package/esm2022/lib/_components/designSystemExtension/wss-quick-create/wss-quick-create.component.mjs +3 -3
  21. package/esm2022/lib/_components/field/auto-complete/auto-complete.component.mjs +6 -6
  22. package/esm2022/lib/_components/field/cancel-alert/cancel-alert.component.mjs +5 -7
  23. package/esm2022/lib/_components/field/check-box/check-box.component.mjs +109 -45
  24. package/esm2022/lib/_components/field/currency/currency.component.mjs +34 -17
  25. package/esm2022/lib/_components/field/date/date.component.mjs +6 -6
  26. package/esm2022/lib/_components/field/date-time/date-time.component.mjs +21 -42
  27. package/esm2022/lib/_components/field/decimal/decimal.component.mjs +38 -10
  28. package/esm2022/lib/_components/field/dropdown/dropdown.component.mjs +7 -12
  29. package/esm2022/lib/_components/field/email/email.component.mjs +5 -5
  30. package/esm2022/lib/_components/field/group/group.component.mjs +9 -6
  31. package/esm2022/lib/_components/field/integer/integer.component.mjs +5 -5
  32. package/esm2022/lib/_components/field/list-view-action-buttons/list-view-action-buttons.component.mjs +3 -3
  33. package/esm2022/lib/_components/field/multiselect/multiselect.component.mjs +307 -0
  34. package/esm2022/lib/_components/field/multiselect/utils.mjs +187 -0
  35. package/esm2022/lib/_components/field/percentage/percentage.component.mjs +27 -8
  36. package/esm2022/lib/_components/field/phone/phone.component.mjs +5 -5
  37. package/esm2022/lib/_components/field/radio-buttons/radio-buttons.component.mjs +7 -12
  38. package/esm2022/lib/_components/field/rich-text/rich-text.component.mjs +6 -6
  39. package/esm2022/lib/_components/field/scalar-list/scalar-list.component.mjs +7 -6
  40. package/esm2022/lib/_components/field/semantic-link/semantic-link.component.mjs +5 -5
  41. package/esm2022/lib/_components/field/text/text.component.mjs +5 -5
  42. package/esm2022/lib/_components/field/text-area/text-area.component.mjs +5 -7
  43. package/esm2022/lib/_components/field/text-content/text-content.component.mjs +5 -5
  44. package/esm2022/lib/_components/field/text-input/text-input.component.mjs +5 -5
  45. package/esm2022/lib/_components/field/time/time.component.mjs +8 -6
  46. package/esm2022/lib/_components/field/url/url.component.mjs +8 -6
  47. package/esm2022/lib/_components/field/user-reference/user-reference.component.mjs +38 -26
  48. package/esm2022/lib/_components/infra/Containers/base-components/flow-container-base.component.mjs +18 -0
  49. package/esm2022/lib/_components/infra/Containers/base-components/helper.mjs +71 -0
  50. package/esm2022/lib/_components/infra/Containers/flow-container/flow-container.component.mjs +35 -39
  51. package/esm2022/lib/_components/infra/Containers/flow-container/helpers.mjs +1 -1
  52. package/esm2022/lib/_components/infra/Containers/hybrid-view-container/hybrid-view-container.component.mjs +3 -3
  53. package/esm2022/lib/_components/infra/Containers/modal-view-container/modal-view-container.component.mjs +41 -13
  54. package/esm2022/lib/_components/infra/Containers/preview-view-container/preview-view-container.component.mjs +3 -3
  55. package/esm2022/lib/_components/infra/Containers/view-container/view-container.component.mjs +5 -6
  56. package/esm2022/lib/_components/infra/action-buttons/action-buttons.component.mjs +3 -3
  57. package/esm2022/lib/_components/infra/assignment/assignment.component.mjs +36 -40
  58. package/esm2022/lib/_components/infra/assignment-card/assignment-card.component.mjs +4 -4
  59. package/esm2022/lib/_components/infra/dashboard-filter/dashboard-filter.component.mjs +5 -6
  60. package/esm2022/lib/_components/infra/defer-load/defer-load.component.mjs +10 -13
  61. package/esm2022/lib/_components/infra/error-boundary/error-boundary.component.mjs +3 -3
  62. package/esm2022/lib/_components/infra/multi-step/multi-step.component.mjs +6 -6
  63. package/esm2022/lib/_components/infra/navbar/navbar.component.mjs +11 -7
  64. package/esm2022/lib/_components/infra/reference/reference.component.mjs +5 -5
  65. package/esm2022/lib/_components/infra/region/region.component.mjs +4 -4
  66. package/esm2022/lib/_components/infra/root-container/root-container.component.mjs +5 -5
  67. package/esm2022/lib/_components/infra/stages/stages.component.mjs +5 -5
  68. package/esm2022/lib/_components/infra/view/view.component.mjs +6 -6
  69. package/esm2022/lib/_components/template/app-shell/app-shell.component.mjs +5 -5
  70. package/esm2022/lib/_components/template/banner-page/banner-page.component.mjs +5 -5
  71. package/esm2022/lib/_components/template/case-summary/case-summary.component.mjs +38 -9
  72. package/esm2022/lib/_components/template/case-view/case-view.component.mjs +6 -12
  73. package/esm2022/lib/_components/template/confirmation/confirmation.component.mjs +5 -5
  74. package/esm2022/lib/_components/template/data-reference/data-reference.component.mjs +6 -8
  75. package/esm2022/lib/_components/template/default-form/default-form.component.mjs +5 -5
  76. package/esm2022/lib/_components/template/details/details.component.mjs +5 -5
  77. package/esm2022/lib/_components/template/details-narrow-wide/details-narrow-wide.component.mjs +5 -5
  78. package/esm2022/lib/_components/template/details-one-column/details-one-column.component.mjs +5 -5
  79. package/esm2022/lib/_components/template/details-sub-tabs/details-sub-tabs.component.mjs +5 -5
  80. package/esm2022/lib/_components/template/details-three-column/details-three-column.component.mjs +5 -5
  81. package/esm2022/lib/_components/template/details-two-column/details-two-column.component.mjs +5 -5
  82. package/esm2022/lib/_components/template/details-wide-narrow/details-wide-narrow.component.mjs +5 -5
  83. package/esm2022/lib/_components/template/dynamic-tabs/dynamic-tabs.component.mjs +5 -6
  84. package/esm2022/lib/_components/template/field-group-list/field-group-list.component.mjs +4 -4
  85. package/esm2022/lib/_components/template/field-group-template/field-group-template.component.mjs +9 -19
  86. package/esm2022/lib/_components/template/field-value-list/field-value-list.component.mjs +10 -5
  87. package/esm2022/lib/_components/template/inline-dashboard/inline-dashboard.component.mjs +4 -4
  88. package/esm2022/lib/_components/template/inline-dashboard-page/inline-dashboard-page.component.mjs +5 -5
  89. package/esm2022/lib/_components/template/list-page/list-page.component.mjs +4 -4
  90. package/esm2022/lib/_components/template/list-view/DefaultViewMeta.mjs +1 -1
  91. package/esm2022/lib/_components/template/list-view/list-view.component.mjs +35 -31
  92. package/esm2022/lib/_components/template/list-view/listViewHelpers.mjs +1 -2
  93. package/esm2022/lib/_components/template/list-view/utils.mjs +1 -1
  94. package/esm2022/lib/_components/template/multi-reference-readonly/multi-reference-readonly.component.mjs +5 -5
  95. package/esm2022/lib/_components/template/narrow-wide-form/narrow-wide-form.component.mjs +4 -4
  96. package/esm2022/lib/_components/template/one-column/one-column.component.mjs +4 -4
  97. package/esm2022/lib/_components/template/one-column-page/one-column-page.component.mjs +4 -4
  98. package/esm2022/lib/_components/template/one-column-tab/one-column-tab.component.mjs +4 -4
  99. package/esm2022/lib/_components/template/page/page.component.mjs +5 -5
  100. package/esm2022/lib/_components/template/promoted-filters/promoted-filters.component.mjs +5 -5
  101. package/esm2022/lib/_components/template/repeating-structures/repeating-structures.component.mjs +5 -6
  102. package/esm2022/lib/_components/template/simple-table/simple-table.component.mjs +5 -7
  103. package/esm2022/lib/_components/template/simple-table-manual/helpers.mjs +2 -2
  104. package/esm2022/lib/_components/template/simple-table-manual/simple-table-manual.component.mjs +49 -28
  105. package/esm2022/lib/_components/template/simple-table-select/simple-table-select.component.mjs +7 -9
  106. package/esm2022/lib/_components/template/single-reference-readonly/single-reference-readonly.component.mjs +4 -4
  107. package/esm2022/lib/_components/template/sub-tabs/sub-tabs.component.mjs +5 -5
  108. package/esm2022/lib/_components/template/three-column/three-column.component.mjs +4 -4
  109. package/esm2022/lib/_components/template/three-column-page/three-column-page.component.mjs +4 -4
  110. package/esm2022/lib/_components/template/two-column/two-column.component.mjs +4 -4
  111. package/esm2022/lib/_components/template/two-column-page/two-column-page.component.mjs +5 -5
  112. package/esm2022/lib/_components/template/two-column-tab/two-column-tab.component.mjs +4 -4
  113. package/esm2022/lib/_components/template/utils.mjs +1 -1
  114. package/esm2022/lib/_components/template/wide-narrow-form/wide-narrow-form.component.mjs +4 -4
  115. package/esm2022/lib/_components/template/wide-narrow-page/wide-narrow-page.component.mjs +5 -5
  116. package/esm2022/lib/_components/template/wss-nav-bar/wss-nav-bar.component.mjs +8 -6
  117. package/esm2022/lib/_components/widget/app-announcement/app-announcement.component.mjs +4 -4
  118. package/esm2022/lib/_components/widget/attachment/attachment.component.mjs +231 -424
  119. package/esm2022/lib/_components/widget/case-history/case-history.component.mjs +6 -7
  120. package/esm2022/lib/_components/widget/feed-container/feed-container.component.mjs +5 -9
  121. package/esm2022/lib/_components/widget/file-utility/file-utility.component.mjs +18 -22
  122. package/esm2022/lib/_components/widget/list-utility/list-utility.component.mjs +6 -6
  123. package/esm2022/lib/_components/widget/quick-create/quick-create.component.mjs +5 -5
  124. package/esm2022/lib/_components/widget/todo/todo.component.mjs +8 -7
  125. package/esm2022/lib/_components/widget/utility/utility.component.mjs +5 -5
  126. package/esm2022/lib/_directives/thousand-seperator.directive.mjs +5 -5
  127. package/esm2022/lib/_helpers/case-utils.mjs +1 -1
  128. package/esm2022/lib/_helpers/currency-utils.mjs +1 -1
  129. package/esm2022/lib/_helpers/event-util.mjs +1 -1
  130. package/esm2022/lib/_helpers/field-group-utils.mjs +1 -1
  131. package/esm2022/lib/_helpers/filter-utils.mjs +1 -1
  132. package/esm2022/lib/_helpers/formatters/boolean.mjs +1 -1
  133. package/esm2022/lib/_helpers/formatters/currency.mjs +2 -2
  134. package/esm2022/lib/_helpers/formatters/date.mjs +1 -1
  135. package/esm2022/lib/_helpers/formatters/format-utils.mjs +3 -3
  136. package/esm2022/lib/_helpers/formatters/index.mjs +1 -1
  137. package/esm2022/lib/_helpers/instructions-utils.mjs +36 -0
  138. package/esm2022/lib/_helpers/tab-utils.mjs +1 -1
  139. package/esm2022/lib/_helpers/template-utils.mjs +4 -4
  140. package/esm2022/lib/_helpers/utils.mjs +6 -6
  141. package/esm2022/lib/_messages/error-messages.service.mjs +3 -3
  142. package/esm2022/lib/_messages/get-login-status.service.mjs +3 -3
  143. package/esm2022/lib/_messages/oauth-response.service.mjs +3 -3
  144. package/esm2022/lib/_messages/progress-spinner.service.mjs +3 -3
  145. package/esm2022/lib/_messages/reset-pconnect.service.mjs +3 -3
  146. package/esm2022/lib/_messages/update-worklist.service.mjs +3 -3
  147. package/esm2022/lib/_services/case.service.mjs +4 -4
  148. package/esm2022/lib/_services/datapage.service.mjs +5 -5
  149. package/esm2022/lib/_services/server-config.service.mjs +3 -3
  150. package/esm2022/public-api.mjs +3 -1
  151. package/fesm2022/pega-angular-sdk-components.mjs +1996 -1429
  152. package/fesm2022/pega-angular-sdk-components.mjs.map +1 -1
  153. package/lib/_bridge/angular-pconnect.d.ts +2 -0
  154. package/lib/_bridge/helpers/sdk-pega-component-map.d.ts +2 -0
  155. package/lib/_components/designSystemExtension/material-case-summary/material-case-summary.component.d.ts +2 -0
  156. package/lib/_components/designSystemExtension/operator/operator.component.d.ts +2 -1
  157. package/lib/_components/field/check-box/check-box.component.d.ts +18 -0
  158. package/lib/_components/field/currency/currency.component.d.ts +7 -5
  159. package/lib/_components/field/date-time/date-time.component.d.ts +1 -1
  160. package/lib/_components/field/decimal/decimal.component.d.ts +9 -1
  161. package/lib/_components/field/list-view-action-buttons/list-view-action-buttons.component.d.ts +1 -1
  162. package/lib/_components/field/multiselect/multiselect.component.d.ts +64 -0
  163. package/lib/_components/field/multiselect/utils.d.ts +8 -0
  164. package/lib/_components/field/percentage/percentage.component.d.ts +6 -0
  165. package/lib/_components/field/time/time.component.d.ts +1 -0
  166. package/lib/_components/field/url/url.component.d.ts +1 -0
  167. package/lib/_components/field/user-reference/user-reference.component.d.ts +9 -4
  168. package/lib/_components/infra/Containers/base-components/flow-container-base.component.d.ts +8 -0
  169. package/lib/_components/infra/Containers/base-components/helper.d.ts +1 -0
  170. package/lib/_components/infra/Containers/flow-container/flow-container.component.d.ts +6 -7
  171. package/lib/_components/infra/Containers/modal-view-container/modal-view-container.component.d.ts +3 -2
  172. package/lib/_components/infra/action-buttons/action-buttons.component.d.ts +1 -1
  173. package/lib/_components/infra/assignment/assignment.component.d.ts +2 -2
  174. package/lib/_components/infra/error-boundary/error-boundary.component.d.ts +1 -1
  175. package/lib/_components/infra/navbar/navbar.component.d.ts +2 -0
  176. package/lib/_components/template/case-summary/case-summary.component.d.ts +2 -0
  177. package/lib/_components/template/field-value-list/field-value-list.component.d.ts +2 -1
  178. package/lib/_components/template/list-view/list-view.component.d.ts +8 -4
  179. package/lib/_components/template/simple-table-manual/helpers.d.ts +1 -1
  180. package/lib/_components/template/simple-table-manual/simple-table-manual.component.d.ts +2 -0
  181. package/lib/_components/template/wss-nav-bar/wss-nav-bar.component.d.ts +2 -0
  182. package/lib/_components/widget/attachment/attachment.component.d.ts +30 -54
  183. package/lib/_components/widget/file-utility/file-utility.component.d.ts +3 -3
  184. package/lib/_components/widget/todo/todo.component.d.ts +4 -3
  185. package/lib/_helpers/common.d.ts +1 -1
  186. package/lib/_helpers/field-group-utils.d.ts +1 -1
  187. package/lib/_helpers/filter-utils.d.ts +1 -1
  188. package/lib/_helpers/formatters/common.d.ts +2 -2
  189. package/lib/_helpers/instructions-utils.d.ts +4 -0
  190. package/lib/doc/KeyReleaseUpdates.md +18 -1
  191. package/package.json +3 -3
  192. package/public-api.d.ts +2 -0
@@ -93,6 +93,8 @@ export declare class AngularPConnectService {
93
93
  * actions: any actions that are defined for this object
94
94
  */
95
95
  registerAndSubscribeComponent(inComp: any, inCallback?: Function | null): AngularPConnectData;
96
+ addFormField(inComp: any): void;
97
+ removeFormField(inComp: any): void;
96
98
  /**
97
99
  * Returns **true** if the component's entry in ___componentPropsArr___ is
98
100
  * the same as the properties that are current associated with the component (___inComp___) passed in.
@@ -63,6 +63,7 @@ import { InlineDashboardPageComponent } from '../../_components/template/inline-
63
63
  import { ListPageComponent } from '../../_components/template/list-page/list-page.component';
64
64
  import { ListViewComponent } from '../../_components/template/list-view/list-view.component';
65
65
  import { MultiReferenceReadonlyComponent } from '../../_components/template/multi-reference-readonly/multi-reference-readonly.component';
66
+ import { MultiselectComponent } from '../../_components/field/multiselect/multiselect.component';
66
67
  import { NarrowWideFormComponent } from '../../_components/template/narrow-wide-form/narrow-wide-form.component';
67
68
  import { OneColumnComponent } from '../../_components/template/one-column/one-column.component';
68
69
  import { OneColumnPageComponent } from '../../_components/template/one-column-page/one-column-page.component';
@@ -162,6 +163,7 @@ declare const pegaSdkComponentMap: {
162
163
  MaterialUtility: typeof MaterialUtilityComponent;
163
164
  ModalViewContainer: typeof ModalViewContainerComponent;
164
165
  MultiReferenceReadOnly: typeof MultiReferenceReadonlyComponent;
166
+ Multiselect: typeof MultiselectComponent;
165
167
  MultiStep: typeof MultiStepComponent;
166
168
  NarrowWideDetails: typeof DetailsNarrowWideComponent;
167
169
  NarrowWideForm: typeof NarrowWideFormComponent;
@@ -9,6 +9,8 @@ export declare class MaterialCaseSummaryComponent implements OnInit, OnChanges {
9
9
  secondaryFields$: any[];
10
10
  primaryFieldsWithStatus$: any[];
11
11
  constructor(utils: Utils);
12
+ localizedVal: (localeKey: any, localePath: any, localeRuleKey?: string | undefined) => any;
13
+ localeCategory: string;
12
14
  ngOnInit(): void;
13
15
  ngOnChanges(): void;
14
16
  updateLabelAndDate(arData: any[]): void;
@@ -8,6 +8,7 @@ export declare class OperatorComponent implements OnInit, OnChanges, OnDestroy {
8
8
  private cdRef;
9
9
  private utils;
10
10
  pConn$: typeof PConnect;
11
+ displayLabel: any;
11
12
  fields$: any[];
12
13
  bShowPopover$: boolean;
13
14
  date$: string;
@@ -21,5 +22,5 @@ export declare class OperatorComponent implements OnInit, OnChanges, OnDestroy {
21
22
  updateSelf(): void;
22
23
  showOperator(): void;
23
24
  static ɵfac: i0.ɵɵFactoryDeclaration<OperatorComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<OperatorComponent, "app-operator", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<OperatorComponent, "app-operator", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "displayLabel": { "alias": "displayLabel"; "required": false; }; }, {}, never, never, true, never>;
25
26
  }
@@ -10,6 +10,13 @@ interface CheckboxProps extends Omit<PConnFieldProps, 'value'> {
10
10
  caption?: string;
11
11
  trueLabel?: string;
12
12
  falseLabel?: string;
13
+ selectionMode?: string;
14
+ datasource?: any;
15
+ selectionKey?: string;
16
+ selectionList?: any;
17
+ primaryField: string;
18
+ readonlyContextList: any;
19
+ referenceList: string;
13
20
  }
14
21
  export declare class CheckBoxComponent implements OnInit, OnDestroy {
15
22
  private angularPConnect;
@@ -36,6 +43,16 @@ export declare class CheckBoxComponent implements OnInit, OnDestroy {
36
43
  helperText: string;
37
44
  trueLabel$?: string;
38
45
  falseLabel$?: string;
46
+ selectionMode?: string;
47
+ datasource?: any;
48
+ selectionKey?: string;
49
+ selectionList?: any;
50
+ primaryField: string;
51
+ selectedvalues: any;
52
+ referenceList: string;
53
+ listOfCheckboxes: any[];
54
+ actionsApi: any;
55
+ propName: any;
39
56
  fieldControl: FormControl<string | null>;
40
57
  constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
41
58
  ngOnInit(): void;
@@ -45,6 +62,7 @@ export declare class CheckBoxComponent implements OnInit, OnDestroy {
45
62
  updateSelf(): void;
46
63
  fieldOnChange(event: any): void;
47
64
  fieldOnBlur(event: any): void;
65
+ handleChangeMultiMode(event: any, element: any): void;
48
66
  getErrorMessage(): string;
49
67
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckBoxComponent, never>;
50
68
  static ɵcmp: i0.ɵɵComponentDeclaration<CheckBoxComponent, "app-check-box", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
@@ -7,6 +7,7 @@ import { PConnFieldProps } from '../../../_types/PConnProps.interface';
7
7
  import * as i0 from "@angular/core";
8
8
  interface CurrrencyProps extends PConnFieldProps {
9
9
  currencyISOCode?: string;
10
+ allowDecimals: boolean;
10
11
  }
11
12
  export declare class CurrencyComponent implements OnInit, OnDestroy {
12
13
  private angularPConnect;
@@ -17,7 +18,7 @@ export declare class CurrencyComponent implements OnInit, OnDestroy {
17
18
  angularPConnectData: AngularPConnectData;
18
19
  configProps$: CurrrencyProps;
19
20
  label$: string;
20
- value$: number | null;
21
+ value$: any;
21
22
  bRequired$: boolean;
22
23
  bReadonly$: boolean;
23
24
  bDisabled$: boolean;
@@ -32,16 +33,17 @@ export declare class CurrencyComponent implements OnInit, OnDestroy {
32
33
  currencyISOCode: string;
33
34
  currencyOptions: Object;
34
35
  fieldControl: FormControl<number | null>;
35
- symbol: string;
36
- thousandsSep: string;
37
- decimalSep: string;
36
+ currSym: string;
37
+ currSep: string;
38
+ currDec: string;
39
+ inputMode: any;
40
+ decimalPrecision: number | undefined;
38
41
  constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
39
42
  ngOnInit(): void;
40
43
  ngOnDestroy(): void;
41
44
  onStateChange(): void;
42
45
  checkAndUpdate(): void;
43
46
  updateSelf(): void;
44
- fieldOnChange(event: any): void;
45
47
  fieldOnBlur(event: any): void;
46
48
  getErrorMessage(): string;
47
49
  static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyComponent, never>;
@@ -46,7 +46,7 @@ export declare class DateTimeComponent implements OnInit, OnDestroy {
46
46
  onStateChange(): void;
47
47
  checkAndUpdate(): void;
48
48
  updateSelf(): void;
49
- fieldOnChange(event: any): void;
49
+ fieldOnDateChange(event: any): void;
50
50
  fieldOnBlur(event: any): void;
51
51
  getErrorMessage(): string;
52
52
  static ɵfac: i0.ɵɵFactoryDeclaration<DateTimeComponent, never>;
@@ -9,6 +9,7 @@ interface DecimalProps extends PConnFieldProps {
9
9
  currencyISOCode?: string;
10
10
  decimalPrecision?: number;
11
11
  showGroupSeparators?: string;
12
+ formatter?: string;
12
13
  }
13
14
  export declare class DecimalComponent implements OnInit, OnDestroy {
14
15
  private angularPConnect;
@@ -19,7 +20,7 @@ export declare class DecimalComponent implements OnInit, OnDestroy {
19
20
  angularPConnectData: AngularPConnectData;
20
21
  configProps$: DecimalProps;
21
22
  label$: string;
22
- value$: number;
23
+ value$: any;
23
24
  bRequired$: boolean;
24
25
  bReadonly$: boolean;
25
26
  bDisabled$: boolean;
@@ -32,6 +33,13 @@ export declare class DecimalComponent implements OnInit, OnDestroy {
32
33
  helperText: string;
33
34
  placeholder: string;
34
35
  fieldControl: FormControl<number | null>;
36
+ currDec: string;
37
+ currSep: string;
38
+ currSym: string;
39
+ decimalPrecision: number | undefined;
40
+ formatter: any;
41
+ formattedValue: any;
42
+ inputMode: any;
35
43
  constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
36
44
  ngOnInit(): void;
37
45
  ngOnDestroy(): void;
@@ -5,7 +5,7 @@ export declare class ListViewActionButtonsComponent {
5
5
  pConn$: typeof PConnect;
6
6
  context$: string;
7
7
  closeActionsDialog: EventEmitter<any>;
8
- localizedVal: (localeKey: string, localePath?: string | undefined, localeRuleKey?: string | undefined) => string;
8
+ localizedVal: (localeKey: any, localePath: any, localeRuleKey?: string | undefined) => any;
9
9
  localeCategory: string;
10
10
  isDisabled: boolean;
11
11
  onCancel(): void;
@@ -0,0 +1,64 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnDestroy, OnInit } from '@angular/core';
3
+ import { FormControl, FormGroup } from '@angular/forms';
4
+ import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
5
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
6
+ import { Utils } from '../../../_helpers/utils';
7
+ import * as i0 from "@angular/core";
8
+ export declare class MultiselectComponent implements OnInit, OnDestroy {
9
+ private angularPConnect;
10
+ private utils;
11
+ pConn$: typeof PConnect;
12
+ formGroup$: FormGroup;
13
+ angularPConnectData: AngularPConnectData;
14
+ label$: string;
15
+ value$: string;
16
+ bRequired$: boolean;
17
+ bDisabled$: boolean;
18
+ bVisible$: boolean;
19
+ controlName$: string;
20
+ bHasForm$: boolean;
21
+ listType: string;
22
+ placeholder: string;
23
+ fieldControl: FormControl<string | null>;
24
+ parameters: {};
25
+ hideLabel: boolean;
26
+ configProps$: any;
27
+ referenceList: any;
28
+ selectionKey: string;
29
+ primaryField: string;
30
+ initialCaseClass: any;
31
+ showSecondaryInSearchOnly: boolean;
32
+ isGroupData: boolean;
33
+ referenceType: any;
34
+ secondaryFields: any;
35
+ groupDataSource: never[];
36
+ matchPosition: string;
37
+ maxResultsDisplay: any;
38
+ groupColumnsConfig: {}[];
39
+ selectionList: any;
40
+ listActions: any;
41
+ selectedItems: any[];
42
+ itemsTreeBaseData: never[];
43
+ displayFieldMeta: any;
44
+ dataApiObj: any;
45
+ itemsTree: any[];
46
+ trigger: any;
47
+ constructor(angularPConnect: AngularPConnectService, utils: Utils);
48
+ ngOnInit(): void;
49
+ ngOnDestroy(): void;
50
+ onStateChange(): void;
51
+ checkAndUpdate(): void;
52
+ updateSelf(): void;
53
+ setPropertyValuesFromProps(): void;
54
+ getCaseListBasedOnParams(searchText: any, group: any, selectedRows: any, currentItemsTree: any, isTriggeredFromSearch?: boolean): void;
55
+ fieldOnChange(event: Event): void;
56
+ optionChanged(event: MatAutocompleteSelectedEvent): void;
57
+ optionClicked: (event: Event, data: any) => void;
58
+ toggleSelection: (data: any) => void;
59
+ removeChip: (data: any) => void;
60
+ setSelectedItemsForReferenceList(data: any): void;
61
+ getErrorMessage(): string;
62
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiselectComponent, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiselectComponent, "app-multiselect", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
64
+ }
@@ -0,0 +1,8 @@
1
+ export declare function setVisibilityForList(c11nEnv: any, visibility: any): void;
2
+ declare function preProcessColumns(columns: any): any;
3
+ declare function getDisplayFieldsMetaData(columns: any): any;
4
+ declare function doSearch(searchText: any, clickedGroup: any, initialCaseClass: any, displayFieldMeta: any, dataApiObj: any, // deep clone of the dataApiObj
5
+ itemsTree: any, isGroupData: any, showSecondaryInSearchOnly: any, selected: any): Promise<any>;
6
+ declare function setValuesToPropertyList(searchText: any, assocProp: any, items: any, columns: any, actions: any, updatePropertyInRedux?: boolean): any;
7
+ declare function getGroupDataForItemsTree(groupDataSource: any, groupsDisplayFieldMeta: any, showSecondaryInSearchOnly: any): any;
8
+ export { preProcessColumns, getDisplayFieldsMetaData, doSearch, setValuesToPropertyList, getGroupDataForItemsTree };
@@ -6,6 +6,8 @@ import { Utils } from '../../../_helpers/utils';
6
6
  import { PConnFieldProps } from '../../../_types/PConnProps.interface';
7
7
  import * as i0 from "@angular/core";
8
8
  interface PercentageProps extends PConnFieldProps {
9
+ showGroupSeparators?: string;
10
+ decimalPrecision?: number;
9
11
  }
10
12
  export declare class PercentageComponent implements OnInit, OnDestroy {
11
13
  private angularPConnect;
@@ -28,6 +30,10 @@ export declare class PercentageComponent implements OnInit, OnDestroy {
28
30
  testId: string;
29
31
  helperText: string;
30
32
  placeholder: string;
33
+ currDec: string;
34
+ currSep: string;
35
+ inputMode: any;
36
+ decimalPrecision: number | undefined;
31
37
  fieldControl: FormControl<number | null>;
32
38
  constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
33
39
  ngOnInit(): void;
@@ -23,6 +23,7 @@ export declare class TimeComponent implements OnInit, OnDestroy {
23
23
  bVisible$: boolean;
24
24
  displayMode$?: string;
25
25
  controlName$: string;
26
+ testId: string;
26
27
  bHasForm$: boolean;
27
28
  componentReference: string;
28
29
  helperText: string;
@@ -23,6 +23,7 @@ export declare class UrlComponent implements OnInit, OnDestroy {
23
23
  bVisible$: boolean;
24
24
  displayMode$?: string;
25
25
  controlName$: string;
26
+ testId: string;
26
27
  bHasForm$: boolean;
27
28
  componentReference: string;
28
29
  helperText: string;
@@ -3,6 +3,7 @@ import { OnInit, OnDestroy } from '@angular/core';
3
3
  import { FormControl, FormGroup } from '@angular/forms';
4
4
  import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
5
  import { Utils } from '../../../_helpers/utils';
6
+ import { Observable } from 'rxjs';
6
7
  import * as i0 from "@angular/core";
7
8
  export declare class UserReferenceComponent implements OnInit, OnDestroy {
8
9
  private angularPConnect;
@@ -23,14 +24,18 @@ export declare class UserReferenceComponent implements OnInit, OnDestroy {
23
24
  testId: string;
24
25
  helperText: string;
25
26
  placeholder: string;
27
+ displayMode$?: string;
28
+ filteredOptions: Observable<any[]>;
29
+ filterValue: string;
26
30
  fieldControl: FormControl<string | null>;
27
31
  constructor(angularPConnect: AngularPConnectService, utils: Utils);
28
- ngOnInit(): void;
32
+ ngOnInit(): Promise<void>;
29
33
  ngOnDestroy(): void;
30
34
  get type(): string;
31
- onStateChange(): void;
32
- checkAndUpdate(): void;
33
- updateSelf(): void;
35
+ onStateChange(): Promise<void>;
36
+ private _filter;
37
+ checkAndUpdate(): Promise<void>;
38
+ updateSelf(): Promise<void>;
34
39
  fieldOnChange(event: any): void;
35
40
  fieldOnBlur(event: any): void;
36
41
  getErrorMessage(): string;
@@ -0,0 +1,8 @@
1
+ import { Injector } from '@angular/core';
2
+ import { AngularPConnectData } from '../../../../_bridge/angular-pconnect';
3
+ export declare class FlowContainerBaseComponent {
4
+ protected angularPConnectData: AngularPConnectData;
5
+ protected angularPConnect: any;
6
+ constructor(injector: Injector);
7
+ getPConnectOfActiveContainerItem(parentPConnect: any): import("@pega/pcore-pconnect-typedefs/interpreter/c11n-env").C11nEnv | null;
8
+ }
@@ -0,0 +1 @@
1
+ export declare const getPConnectOfActiveContainerItem: (containerInfo: any, options: any) => import("@pega/pcore-pconnect-typedefs/interpreter/c11n-env").C11nEnv | null;
@@ -1,10 +1,10 @@
1
1
  /// <reference types="pcore-pconnect-typedefs" />
2
- import { OnInit, ChangeDetectorRef, NgZone, OnDestroy } from '@angular/core';
2
+ import { OnInit, ChangeDetectorRef, NgZone, OnDestroy, Injector } from '@angular/core';
3
3
  import { FormBuilder, FormGroup } from '@angular/forms';
4
4
  import { publicConstants } from '@pega/pcore-pconnect-typedefs/constants';
5
- import { AngularPConnectData, AngularPConnectService } from '../../../../_bridge/angular-pconnect';
6
5
  import { ProgressSpinnerService } from '../../../../_messages/progress-spinner.service';
7
6
  import { Utils } from '../../../../_helpers/utils';
7
+ import { FlowContainerBaseComponent } from '../base-components/flow-container-base.component';
8
8
  import * as i0 from "@angular/core";
9
9
  /**
10
10
  * WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with
@@ -17,15 +17,13 @@ interface FlowContainerProps {
17
17
  routingInfo?: any;
18
18
  pageMessages: any[];
19
19
  }
20
- export declare class FlowContainerComponent implements OnInit, OnDestroy {
21
- private angularPConnect;
20
+ export declare class FlowContainerComponent extends FlowContainerBaseComponent implements OnInit, OnDestroy {
22
21
  private cdRef;
23
22
  private psService;
24
23
  private fb;
25
24
  private ngZone;
26
25
  private utils;
27
26
  pConn$: typeof PConnect;
28
- angularPConnectData: AngularPConnectData;
29
27
  pCoreConstants: typeof publicConstants;
30
28
  configProps$: FlowContainerProps;
31
29
  formGroup$: FormGroup;
@@ -53,7 +51,8 @@ export declare class FlowContainerComponent implements OnInit, OnDestroy {
53
51
  localeCategory: string;
54
52
  localeReference: any;
55
53
  banners: any[];
56
- constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, psService: ProgressSpinnerService, fb: FormBuilder, ngZone: NgZone, utils: Utils);
54
+ pConnectOfActiveContainerItem: any;
55
+ constructor(injector: Injector, cdRef: ChangeDetectorRef, psService: ProgressSpinnerService, fb: FormBuilder, ngZone: NgZone, utils: Utils);
57
56
  ngOnInit(): void;
58
57
  ngOnDestroy(): void;
59
58
  handleCancel(): void;
@@ -66,7 +65,7 @@ export declare class FlowContainerComponent implements OnInit, OnDestroy {
66
65
  initComponent(bLoadChildren: boolean): void;
67
66
  hasAssignments(): boolean;
68
67
  isCaseWideLocalAction(): boolean;
69
- hasChildCaseAssignments(): boolean | "";
68
+ hasChildCaseAssignments(): any;
70
69
  getActiveViewLabel(): string;
71
70
  findCurrentIndicies(arStepperSteps: any[], arIndicies: number[], depth: number): number[];
72
71
  updateSelf(): void;
@@ -48,9 +48,10 @@ export declare class ModalViewContainerComponent implements OnInit, OnDestroy {
48
48
  updateSelf(): void;
49
49
  createView(routingInfo: any, currentItem: any, latestItem: any, key: any): void;
50
50
  hideModal(): void;
51
- getConfigObject(item: any, pConnect: any): {
52
- getPConnect: () => import("@pega/pcore-pconnect-typedefs/interpreter/c11n-env").default;
51
+ getConfigObject(item: any, pConnect: any, isReverseCoexistence?: boolean): {
52
+ getPConnect: () => import("@pega/pcore-pconnect-typedefs/interpreter/c11n-env").C11nEnv;
53
53
  } | null;
54
+ checkIfRefComponent(thePConn: any): boolean;
54
55
  onAlertState(bData: boolean): void;
55
56
  showAlert(payload: any): void;
56
57
  hasContainerItems(routingInfo: any): any;
@@ -4,7 +4,7 @@ export declare class ActionButtonsComponent {
4
4
  arMainButtons$: any[];
5
5
  arSecondaryButtons$: any[];
6
6
  actionButtonClick: EventEmitter<any>;
7
- localizedVal: (localeKey: string, localePath?: string | undefined, localeRuleKey?: string | undefined) => string;
7
+ localizedVal: (localeKey: any, localePath: any, localeRuleKey?: string | undefined) => any;
8
8
  localeCategory: string;
9
9
  buttonClick(sAction: any, sButtonType: any): void;
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionButtonsComponent, never>;
@@ -27,7 +27,6 @@ export declare class AssignmentComponent implements OnInit, OnDestroy, OnChanges
27
27
  configProps$: AssignmentProps;
28
28
  newPConn$: any;
29
29
  containerName$: string;
30
- bIsRefComponent: boolean;
31
30
  bInitialized: boolean;
32
31
  templateName$: string;
33
32
  arMainButtons$: any[];
@@ -44,6 +43,8 @@ export declare class AssignmentComponent implements OnInit, OnDestroy, OnChanges
44
43
  cancelAssignment: any;
45
44
  cancelCreateStageAssignment: any;
46
45
  showPage: any;
46
+ approveCase: any;
47
+ rejectCase: any;
47
48
  bReInit: boolean;
48
49
  localizedVal: any;
49
50
  localeCategory: string;
@@ -55,7 +56,6 @@ export declare class AssignmentComponent implements OnInit, OnDestroy, OnChanges
55
56
  checkAndUpdate(): void;
56
57
  ngOnChanges(): void;
57
58
  updateChanges(): void;
58
- checkIfRefComponent(thePConn: any): boolean;
59
59
  initComponent(): void;
60
60
  createButtons(): void;
61
61
  createButtonsForMultiStepForm(oCaseInfo: any): void;
@@ -1,7 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class ErrorBoundaryComponent {
3
3
  message: string;
4
- localizedVal: (localeKey: string, localePath?: string | undefined, localeRuleKey?: string | undefined) => string;
4
+ localizedVal: any;
5
5
  localeCategory: string;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<ErrorBoundaryComponent, never>;
7
7
  static ɵcmp: i0.ɵɵComponentDeclaration<ErrorBoundaryComponent, "app-error-boundary", never, { "message": { "alias": "message"; "required": false; }; }, {}, never, never, true, never>;
@@ -34,6 +34,8 @@ export declare class NavbarComponent implements OnInit, OnDestroy {
34
34
  navIcon$: string;
35
35
  localizedVal: any;
36
36
  localeCategory: string;
37
+ localeUtils: import("@pega/pcore-pconnect-typedefs/locale/locale-utils").LocaleUtils;
38
+ localeReference: any;
37
39
  constructor(angularPConnect: AngularPConnectService, chRef: ChangeDetectorRef, psService: ProgressSpinnerService, ngZone: NgZone, utils: Utils);
38
40
  ngOnInit(): void;
39
41
  ngOnDestroy(): void;
@@ -28,6 +28,8 @@ export declare class CaseSummaryComponent implements OnInit, OnDestroy, OnChange
28
28
  updateSelf(): void;
29
29
  ngOnChanges(): void;
30
30
  generatePrimaryAndSecondaryFields(): void;
31
+ prepareComponentInCaseSummary(pConnectMeta: any, getPConnect: any): any;
32
+ prepareCaseSummaryData(summaryFieldChildren: any): any;
31
33
  static ɵfac: i0.ɵɵFactoryDeclaration<CaseSummaryComponent, never>;
32
34
  static ɵcmp: i0.ɵɵComponentDeclaration<CaseSummaryComponent, "app-case-summary", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
33
35
  }
@@ -3,6 +3,7 @@ export declare class FieldValueListComponent {
3
3
  label$: any;
4
4
  value$: any;
5
5
  displayMode$: any;
6
+ isHtml$: boolean;
6
7
  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
+ 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; }; "isHtml$": { "alias": "isHtml$"; "required": false; }; }, {}, never, never, true, never>;
8
9
  }
@@ -18,6 +18,8 @@ interface ListViewProps {
18
18
  presets?: any;
19
19
  reorderFields: string | boolean;
20
20
  grouping: string | boolean;
21
+ value: any;
22
+ readonlyContextList: any;
21
23
  }
22
24
  export declare class Group {
23
25
  level: number;
@@ -88,29 +90,31 @@ export declare class ListViewComponent implements OnInit, OnDestroy {
88
90
  paging: any;
89
91
  fieldDefs: any;
90
92
  xRayApis: import("@pega/pcore-pconnect-typedefs/debug/xray-runtime").default;
91
- xRayUid: string | null;
93
+ xRayUid: string;
94
+ checkBoxValue: string;
92
95
  constructor(psService: ProgressSpinnerService, utils: Utils);
93
96
  ngOnInit(): void;
94
97
  getFieldFromFilter(filter: any, dateRange?: boolean): any;
95
98
  processFilterChange(data: any): void;
96
99
  filterBasedOnDateRange(dashboardFilterPayload: any, filter: any, relationalOp: any, selectParam: any, index: any): any;
97
100
  processFilterClear(): void;
98
- getFieldsMetadata(refList: any): Promise<object>;
101
+ getFieldsMetadata(refList: any): Promise<{
102
+ data: any;
103
+ }>;
99
104
  getListData(): void;
100
105
  preparePayload(): void;
101
106
  ngOnDestroy(): void;
102
107
  drop(event: CdkDragDrop<string[]>): void;
103
108
  updateFields(arFields: any[], arColumns: any, fields: any): any[];
104
109
  applySearch(event: Event): void;
110
+ isChecked(rowIn: any): any;
105
111
  fieldOnChange(row: any): void;
106
112
  onCheckboxClick(row: any, event: any): void;
107
113
  _getIconStyle(level: any): string;
108
114
  _getGroupName(fieldName: any): any;
109
115
  _showButton(name: any, row: any): boolean;
110
116
  _listViewClick(column: any, row: any): void;
111
- compare(a: number | string, b: number | string, isAsc: boolean): number;
112
117
  _headerSortClick(event: any, columnData: any): void;
113
- clearOutArrows(event: any, columnData: any): void;
114
118
  sortCompare(a: any, b: any): number;
115
119
  compareByColumnPxRefObjectInsName(aValue: any, bValue: any): number | undefined;
116
120
  updateFilterDisplay(type: any): void;
@@ -78,4 +78,4 @@ export declare const getAddRowCallback: (pConnect: any, index: any) => () => any
78
78
  * @param {string} referenceList - referenceList
79
79
  * @param {string} pageReference - pageReference
80
80
  */
81
- export declare const createPConnect: (contextName: any, referenceList: any, pageReference: any) => import("@pega/pcore-pconnect-typedefs/interpreter/c11n-env").default;
81
+ export declare const createPConnect: (contextName: any, referenceList: any, pageReference: any) => import("@pega/pcore-pconnect-typedefs/interpreter/c11n-env").C11nEnv;
@@ -108,11 +108,13 @@ export declare class SimpleTableManualComponent implements OnInit, OnDestroy {
108
108
  bUseSeparateViewForEdit: any;
109
109
  editView: any;
110
110
  settingsSvgIcon$: string;
111
+ isInitialized: boolean;
111
112
  constructor(angularPConnect: AngularPConnectService, utils: Utils, dataPageService: DatapageService);
112
113
  ngOnInit(): void;
113
114
  ngOnDestroy(): void;
114
115
  checkAndUpdate(): void;
115
116
  updateSelf(): void;
117
+ initializeDefaultPageInstructions(): void;
116
118
  getResultsText(): string;
117
119
  sortCompare(a: any, b: any): number;
118
120
  compareByColumnPxRefObjectInsName(aValue: any, bValue: any): number | undefined;
@@ -33,6 +33,8 @@ export declare class WssNavBarComponent implements OnInit, OnDestroy {
33
33
  showPage: any;
34
34
  logout: any;
35
35
  navIcon$: string;
36
+ localizedVal: (localeKey: any, localePath: any, localeRuleKey?: string | undefined) => any;
37
+ localeCategory: string;
36
38
  constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, psService: ProgressSpinnerService, ngZone: NgZone, utils: Utils);
37
39
  ngOnInit(): void;
38
40
  ngOnDestroy(): void;