@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.
Files changed (300) hide show
  1. package/README.md +24 -0
  2. package/_shared/styles.scss +28 -0
  3. package/esm2022/lib/_bridge/angular-pconnect.mjs +416 -0
  4. package/esm2022/lib/_bridge/component-mapper/component-mapper.component.mjs +114 -0
  5. package/esm2022/lib/_bridge/helpers/sdk-pega-component-map.mjs +228 -0
  6. package/esm2022/lib/_bridge/helpers/sdk_component_map.mjs +142 -0
  7. package/esm2022/lib/_components/designSystemExtension/alert/alert.component.mjs +50 -0
  8. package/esm2022/lib/_components/designSystemExtension/alert-banner/alert-banner.component.mjs +29 -0
  9. package/esm2022/lib/_components/designSystemExtension/banner/banner.component.mjs +31 -0
  10. package/esm2022/lib/_components/designSystemExtension/case-create-stage/case-create-stage.component.mjs +51 -0
  11. package/esm2022/lib/_components/designSystemExtension/material-case-summary/material-case-summary.component.mjs +80 -0
  12. package/esm2022/lib/_components/designSystemExtension/material-details/material-details.component.mjs +37 -0
  13. package/esm2022/lib/_components/designSystemExtension/material-details-fields/material-details-fields.component.mjs +31 -0
  14. package/esm2022/lib/_components/designSystemExtension/material-summary-item/material-summary-item.component.mjs +36 -0
  15. package/esm2022/lib/_components/designSystemExtension/material-summary-list/material-summary-list.component.mjs +25 -0
  16. package/esm2022/lib/_components/designSystemExtension/material-utility/material-utility.component.mjs +28 -0
  17. package/esm2022/lib/_components/designSystemExtension/material-vertical-tabs/material-vertical-tabs.component.mjs +42 -0
  18. package/esm2022/lib/_components/designSystemExtension/operator/operator.component.mjs +136 -0
  19. package/esm2022/lib/_components/designSystemExtension/pulse/pulse.component.mjs +33 -0
  20. package/esm2022/lib/_components/designSystemExtension/rich-text-editor/rich-text-editor.component.mjs +93 -0
  21. package/esm2022/lib/_components/designSystemExtension/wss-quick-create/wss-quick-create.component.mjs +18 -0
  22. package/esm2022/lib/_components/field/auto-complete/auto-complete.component.mjs +286 -0
  23. package/esm2022/lib/_components/field/cancel-alert/cancel-alert.component.mjs +98 -0
  24. package/esm2022/lib/_components/field/check-box/check-box.component.mjs +157 -0
  25. package/esm2022/lib/_components/field/currency/currency.component.mjs +160 -0
  26. package/esm2022/lib/_components/field/date/date.component.mjs +219 -0
  27. package/esm2022/lib/_components/field/date-time/date-time.component.mjs +200 -0
  28. package/esm2022/lib/_components/field/decimal/decimal.component.mjs +157 -0
  29. package/esm2022/lib/_components/field/dropdown/dropdown.component.mjs +197 -0
  30. package/esm2022/lib/_components/field/email/email.component.mjs +150 -0
  31. package/esm2022/lib/_components/field/integer/integer.component.mjs +155 -0
  32. package/esm2022/lib/_components/field/list-view-action-buttons/list-view-action-buttons.component.mjs +44 -0
  33. package/esm2022/lib/_components/field/percentage/percentage.component.mjs +155 -0
  34. package/esm2022/lib/_components/field/phone/phone.component.mjs +167 -0
  35. package/esm2022/lib/_components/field/radio-buttons/radio-buttons.component.mjs +189 -0
  36. package/esm2022/lib/_components/field/rich-text/rich-text.component.mjs +103 -0
  37. package/esm2022/lib/_components/field/scalar-list/scalar-list.component.mjs +95 -0
  38. package/esm2022/lib/_components/field/semantic-link/semantic-link.component.mjs +57 -0
  39. package/esm2022/lib/_components/field/text/text.component.mjs +138 -0
  40. package/esm2022/lib/_components/field/text-area/text-area.component.mjs +155 -0
  41. package/esm2022/lib/_components/field/text-content/text-content.component.mjs +69 -0
  42. package/esm2022/lib/_components/field/text-input/text-input.component.mjs +152 -0
  43. package/esm2022/lib/_components/field/time/time.component.mjs +151 -0
  44. package/esm2022/lib/_components/field/url/url.component.mjs +150 -0
  45. package/esm2022/lib/_components/field/user-reference/user-reference.component.mjs +175 -0
  46. package/esm2022/lib/_components/infra/Containers/flow-container/flow-container.component.mjs +491 -0
  47. package/esm2022/lib/_components/infra/Containers/flow-container/helpers.mjs +68 -0
  48. package/esm2022/lib/_components/infra/Containers/hybrid-view-container/hybrid-view-container.component.mjs +24 -0
  49. package/esm2022/lib/_components/infra/Containers/modal-view-container/modal-view-container.component.mjs +314 -0
  50. package/esm2022/lib/_components/infra/Containers/preview-view-container/preview-view-container.component.mjs +32 -0
  51. package/esm2022/lib/_components/infra/Containers/view-container/view-container.component.mjs +219 -0
  52. package/esm2022/lib/_components/infra/action-buttons/action-buttons.component.mjs +31 -0
  53. package/esm2022/lib/_components/infra/assignment/assignment.component.mjs +387 -0
  54. package/esm2022/lib/_components/infra/assignment-card/assignment-card.component.mjs +47 -0
  55. package/esm2022/lib/_components/infra/dashboard-filter/dashboard-filter.component.mjs +88 -0
  56. package/esm2022/lib/_components/infra/defer-load/defer-load.component.mjs +144 -0
  57. package/esm2022/lib/_components/infra/error-boundary/error-boundary.component.mjs +18 -0
  58. package/esm2022/lib/_components/infra/multi-step/multi-step.component.mjs +80 -0
  59. package/esm2022/lib/_components/infra/navbar/navbar.component.mjs +132 -0
  60. package/esm2022/lib/_components/infra/reference/reference.component.mjs +133 -0
  61. package/esm2022/lib/_components/infra/region/region.component.mjs +33 -0
  62. package/esm2022/lib/_components/infra/root-container/root-container.component.mjs +228 -0
  63. package/esm2022/lib/_components/infra/stages/stages.component.mjs +62 -0
  64. package/esm2022/lib/_components/infra/view/view.component.mjs +173 -0
  65. package/esm2022/lib/_components/template/app-shell/app-shell.component.mjs +140 -0
  66. package/esm2022/lib/_components/template/banner-page/banner-page.component.mjs +43 -0
  67. package/esm2022/lib/_components/template/case-summary/case-summary.component.mjs +72 -0
  68. package/esm2022/lib/_components/template/case-view/case-view.component.mjs +196 -0
  69. package/esm2022/lib/_components/template/confirmation/confirmation.component.mjs +68 -0
  70. package/esm2022/lib/_components/template/data-reference/data-reference.component.mjs +239 -0
  71. package/esm2022/lib/_components/template/default-form/default-form.component.mjs +61 -0
  72. package/esm2022/lib/_components/template/details/details.component.mjs +102 -0
  73. package/esm2022/lib/_components/template/details-narrow-wide/details-narrow-wide.component.mjs +72 -0
  74. package/esm2022/lib/_components/template/details-one-column/details-one-column.component.mjs +71 -0
  75. package/esm2022/lib/_components/template/details-sub-tabs/details-sub-tabs.component.mjs +66 -0
  76. package/esm2022/lib/_components/template/details-three-column/details-three-column.component.mjs +80 -0
  77. package/esm2022/lib/_components/template/details-two-column/details-two-column.component.mjs +77 -0
  78. package/esm2022/lib/_components/template/details-wide-narrow/details-wide-narrow.component.mjs +77 -0
  79. package/esm2022/lib/_components/template/dynamic-tabs/dynamic-tabs.component.mjs +65 -0
  80. package/esm2022/lib/_components/template/field-group-list/field-group-list.component.mjs +23 -0
  81. package/esm2022/lib/_components/template/field-group-template/field-group-template.component.mjs +134 -0
  82. package/esm2022/lib/_components/template/field-value-list/field-value-list.component.mjs +19 -0
  83. package/esm2022/lib/_components/template/inline-dashboard/inline-dashboard.component.mjs +22 -0
  84. package/esm2022/lib/_components/template/inline-dashboard-page/inline-dashboard-page.component.mjs +40 -0
  85. package/esm2022/lib/_components/template/list-page/list-page.component.mjs +14 -0
  86. package/esm2022/lib/_components/template/list-view/DefaultViewMeta.mjs +208 -0
  87. package/esm2022/lib/_components/template/list-view/list-view.component.mjs +1198 -0
  88. package/esm2022/lib/_components/template/list-view/listViewHelpers.mjs +61 -0
  89. package/esm2022/lib/_components/template/list-view/utils.mjs +660 -0
  90. package/esm2022/lib/_components/template/multi-reference-readonly/multi-reference-readonly.component.mjs +44 -0
  91. package/esm2022/lib/_components/template/narrow-wide-form/narrow-wide-form.component.mjs +30 -0
  92. package/esm2022/lib/_components/template/one-column/one-column.component.mjs +30 -0
  93. package/esm2022/lib/_components/template/one-column-page/one-column-page.component.mjs +16 -0
  94. package/esm2022/lib/_components/template/one-column-tab/one-column-tab.component.mjs +30 -0
  95. package/esm2022/lib/_components/template/page/page.component.mjs +52 -0
  96. package/esm2022/lib/_components/template/promoted-filters/promoted-filters.component.mjs +149 -0
  97. package/esm2022/lib/_components/template/repeating-structures/repeating-structures.component.mjs +139 -0
  98. package/esm2022/lib/_components/template/simple-table/simple-table.component.mjs +106 -0
  99. package/esm2022/lib/_components/template/simple-table-manual/helpers.mjs +270 -0
  100. package/esm2022/lib/_components/template/simple-table-manual/simple-table-manual.component.mjs +760 -0
  101. package/esm2022/lib/_components/template/simple-table-select/simple-table-select.component.mjs +131 -0
  102. package/esm2022/lib/_components/template/single-reference-readonly/single-reference-readonly.component.mjs +16 -0
  103. package/esm2022/lib/_components/template/sub-tabs/sub-tabs.component.mjs +67 -0
  104. package/esm2022/lib/_components/template/three-column/three-column.component.mjs +30 -0
  105. package/esm2022/lib/_components/template/three-column-page/three-column-page.component.mjs +16 -0
  106. package/esm2022/lib/_components/template/two-column/two-column.component.mjs +30 -0
  107. package/esm2022/lib/_components/template/two-column-page/two-column-page.component.mjs +40 -0
  108. package/esm2022/lib/_components/template/two-column-tab/two-column-tab.component.mjs +30 -0
  109. package/esm2022/lib/_components/template/utils.mjs +22 -0
  110. package/esm2022/lib/_components/template/wide-narrow-form/wide-narrow-form.component.mjs +30 -0
  111. package/esm2022/lib/_components/template/wide-narrow-page/wide-narrow-page.component.mjs +53 -0
  112. package/esm2022/lib/_components/template/wss-nav-bar/wss-nav-bar.component.mjs +135 -0
  113. package/esm2022/lib/_components/widget/app-announcement/app-announcement.component.mjs +24 -0
  114. package/esm2022/lib/_components/widget/attachment/attachment.component.mjs +588 -0
  115. package/esm2022/lib/_components/widget/case-history/case-history.component.mjs +81 -0
  116. package/esm2022/lib/_components/widget/feed-container/feed-container.component.mjs +525 -0
  117. package/esm2022/lib/_components/widget/file-utility/file-utility.component.mjs +631 -0
  118. package/esm2022/lib/_components/widget/list-utility/list-utility.component.mjs +57 -0
  119. package/esm2022/lib/_components/widget/quick-create/quick-create.component.mjs +75 -0
  120. package/esm2022/lib/_components/widget/todo/todo.component.mjs +213 -0
  121. package/esm2022/lib/_components/widget/utility/utility.component.mjs +34 -0
  122. package/esm2022/lib/_directives/thousand-seperator.directive.mjs +28 -0
  123. package/esm2022/lib/_helpers/case-utils.mjs +71 -0
  124. package/esm2022/lib/_helpers/common.mjs +20 -0
  125. package/esm2022/lib/_helpers/currency-utils.mjs +57 -0
  126. package/esm2022/lib/_helpers/date-format-utils.mjs +68 -0
  127. package/esm2022/lib/_helpers/event-util.mjs +19 -0
  128. package/esm2022/lib/_helpers/field-group-utils.mjs +47 -0
  129. package/esm2022/lib/_helpers/filter-utils.mjs +106 -0
  130. package/esm2022/lib/_helpers/formatters/currency-map.mjs +903 -0
  131. package/esm2022/lib/_helpers/formatters/format-utils.mjs +68 -0
  132. package/esm2022/lib/_helpers/tab-utils.mjs +59 -0
  133. package/esm2022/lib/_helpers/template-utils.mjs +56 -0
  134. package/esm2022/lib/_helpers/utils.mjs +386 -0
  135. package/esm2022/lib/_helpers/versionHelpers.mjs +12 -0
  136. package/esm2022/lib/_messages/error-messages.service.mjs +31 -0
  137. package/esm2022/lib/_messages/get-login-status.service.mjs +26 -0
  138. package/esm2022/lib/_messages/oauth-response.service.mjs +30 -0
  139. package/esm2022/lib/_messages/progress-spinner.service.mjs +30 -0
  140. package/esm2022/lib/_messages/reset-pconnect.service.mjs +31 -0
  141. package/esm2022/lib/_messages/update-worklist.service.mjs +30 -0
  142. package/esm2022/lib/_services/case.service.mjs +32 -0
  143. package/esm2022/lib/_services/datapage.service.mjs +52 -0
  144. package/esm2022/lib/_services/endpoints.mjs +61 -0
  145. package/esm2022/lib/_services/server-config.service.mjs +52 -0
  146. package/esm2022/lib/_types/PConnProps.interface.mjs +2 -0
  147. package/esm2022/pega-angular-sdk-components.mjs +5 -0
  148. package/esm2022/public-api.mjs +138 -0
  149. package/esm2022/sdk-local-component-map.mjs +9 -0
  150. package/fesm2022/pega-angular-sdk-components.mjs +17380 -0
  151. package/fesm2022/pega-angular-sdk-components.mjs.map +1 -0
  152. package/index.d.ts +5 -0
  153. package/lib/_bridge/angular-pconnect.d.ts +140 -0
  154. package/lib/_bridge/component-mapper/component-mapper.component.d.ts +20 -0
  155. package/lib/_bridge/helpers/sdk-pega-component-map.d.ts +213 -0
  156. package/lib/_bridge/helpers/sdk_component_map.d.ts +3 -0
  157. package/lib/_components/designSystemExtension/alert/alert.component.d.ts +12 -0
  158. package/lib/_components/designSystemExtension/alert-banner/alert-banner.component.d.ts +13 -0
  159. package/lib/_components/designSystemExtension/banner/banner.component.d.ts +15 -0
  160. package/lib/_components/designSystemExtension/case-create-stage/case-create-stage.component.d.ts +20 -0
  161. package/lib/_components/designSystemExtension/material-case-summary/material-case-summary.component.d.ts +18 -0
  162. package/lib/_components/designSystemExtension/material-details/material-details.component.d.ts +15 -0
  163. package/lib/_components/designSystemExtension/material-details-fields/material-details-fields.component.d.ts +12 -0
  164. package/lib/_components/designSystemExtension/material-summary-item/material-summary-item.component.d.ts +15 -0
  165. package/lib/_components/designSystemExtension/material-summary-list/material-summary-list.component.d.ts +9 -0
  166. package/lib/_components/designSystemExtension/material-utility/material-utility.component.d.ts +16 -0
  167. package/lib/_components/designSystemExtension/material-vertical-tabs/material-vertical-tabs.component.d.ts +11 -0
  168. package/lib/_components/designSystemExtension/operator/operator.component.d.ts +25 -0
  169. package/lib/_components/designSystemExtension/pulse/pulse.component.d.ts +16 -0
  170. package/lib/_components/designSystemExtension/rich-text-editor/rich-text-editor.component.d.ts +23 -0
  171. package/lib/_components/designSystemExtension/wss-quick-create/wss-quick-create.component.d.ts +7 -0
  172. package/lib/_components/field/auto-complete/auto-complete.component.d.ts +74 -0
  173. package/lib/_components/field/cancel-alert/cancel-alert.component.d.ts +24 -0
  174. package/lib/_components/field/check-box/check-box.component.d.ts +48 -0
  175. package/lib/_components/field/currency/currency.component.d.ts +50 -0
  176. package/lib/_components/field/date/date.component.d.ts +65 -0
  177. package/lib/_components/field/date-time/date-time.component.d.ts +55 -0
  178. package/lib/_components/field/decimal/decimal.component.d.ts +46 -0
  179. package/lib/_components/field/dropdown/dropdown.component.d.ts +60 -0
  180. package/lib/_components/field/email/email.component.d.ts +44 -0
  181. package/lib/_components/field/integer/integer.component.d.ts +44 -0
  182. package/lib/_components/field/list-view-action-buttons/list-view-action-buttons.component.d.ts +15 -0
  183. package/lib/_components/field/percentage/percentage.component.d.ts +44 -0
  184. package/lib/_components/field/phone/phone.component.d.ts +48 -0
  185. package/lib/_components/field/radio-buttons/radio-buttons.component.d.ts +60 -0
  186. package/lib/_components/field/rich-text/rich-text.component.d.ts +42 -0
  187. package/lib/_components/field/scalar-list/scalar-list.component.d.ts +37 -0
  188. package/lib/_components/field/semantic-link/semantic-link.component.d.ts +30 -0
  189. package/lib/_components/field/text/text.component.d.ts +40 -0
  190. package/lib/_components/field/text-area/text-area.component.d.ts +45 -0
  191. package/lib/_components/field/text-content/text-content.component.d.ts +30 -0
  192. package/lib/_components/field/text-input/text-input.component.d.ts +45 -0
  193. package/lib/_components/field/time/time.component.d.ts +43 -0
  194. package/lib/_components/field/url/url.component.d.ts +43 -0
  195. package/lib/_components/field/user-reference/user-reference.component.d.ts +39 -0
  196. package/lib/_components/infra/Containers/flow-container/flow-container.component.d.ts +85 -0
  197. package/lib/_components/infra/Containers/flow-container/helpers.d.ts +2 -0
  198. package/lib/_components/infra/Containers/hybrid-view-container/hybrid-view-container.component.d.ts +15 -0
  199. package/lib/_components/infra/Containers/modal-view-container/modal-view-container.component.d.ts +71 -0
  200. package/lib/_components/infra/Containers/preview-view-container/preview-view-container.component.d.ts +15 -0
  201. package/lib/_components/infra/Containers/view-container/view-container.component.d.ts +51 -0
  202. package/lib/_components/infra/action-buttons/action-buttons.component.d.ts +12 -0
  203. package/lib/_components/infra/assignment/assignment.component.d.ts +72 -0
  204. package/lib/_components/infra/assignment-card/assignment-card.component.d.ts +18 -0
  205. package/lib/_components/infra/dashboard-filter/dashboard-filter.component.d.ts +20 -0
  206. package/lib/_components/infra/defer-load/defer-load.component.d.ts +46 -0
  207. package/lib/_components/infra/error-boundary/error-boundary.component.d.ts +8 -0
  208. package/lib/_components/infra/multi-step/multi-step.component.d.ts +31 -0
  209. package/lib/_components/infra/navbar/navbar.component.d.ts +51 -0
  210. package/lib/_components/infra/reference/reference.component.d.ts +16 -0
  211. package/lib/_components/infra/region/region.component.d.ts +14 -0
  212. package/lib/_components/infra/root-container/root-container.component.d.ts +35 -0
  213. package/lib/_components/infra/stages/stages.component.d.ts +29 -0
  214. package/lib/_components/infra/view/view.component.d.ts +40 -0
  215. package/lib/_components/template/app-shell/app-shell.component.d.ts +55 -0
  216. package/lib/_components/template/banner-page/banner-page.component.d.ts +27 -0
  217. package/lib/_components/template/case-summary/case-summary.component.d.ts +34 -0
  218. package/lib/_components/template/case-view/case-view.component.d.ts +56 -0
  219. package/lib/_components/template/confirmation/confirmation.component.d.ts +38 -0
  220. package/lib/_components/template/data-reference/data-reference.component.d.ts +41 -0
  221. package/lib/_components/template/default-form/default-form.component.d.ts +21 -0
  222. package/lib/_components/template/details/details.component.d.ts +20 -0
  223. package/lib/_components/template/details-narrow-wide/details-narrow-wide.component.d.ts +21 -0
  224. package/lib/_components/template/details-one-column/details-one-column.component.d.ts +22 -0
  225. package/lib/_components/template/details-sub-tabs/details-sub-tabs.component.d.ts +24 -0
  226. package/lib/_components/template/details-three-column/details-three-column.component.d.ts +25 -0
  227. package/lib/_components/template/details-two-column/details-two-column.component.d.ts +25 -0
  228. package/lib/_components/template/details-wide-narrow/details-wide-narrow.component.d.ts +24 -0
  229. package/lib/_components/template/dynamic-tabs/dynamic-tabs.component.d.ts +20 -0
  230. package/lib/_components/template/field-group-list/field-group-list.component.d.ts +9 -0
  231. package/lib/_components/template/field-group-template/field-group-template.component.d.ts +52 -0
  232. package/lib/_components/template/field-value-list/field-value-list.component.d.ts +8 -0
  233. package/lib/_components/template/inline-dashboard/inline-dashboard.component.d.ts +16 -0
  234. package/lib/_components/template/inline-dashboard-page/inline-dashboard-page.component.d.ts +25 -0
  235. package/lib/_components/template/list-page/list-page.component.d.ts +7 -0
  236. package/lib/_components/template/list-view/DefaultViewMeta.d.ts +1 -0
  237. package/lib/_components/template/list-view/list-view.component.d.ts +157 -0
  238. package/lib/_components/template/list-view/listViewHelpers.d.ts +1 -0
  239. package/lib/_components/template/list-view/utils.d.ts +118 -0
  240. package/lib/_components/template/multi-reference-readonly/multi-reference-readonly.component.d.ts +25 -0
  241. package/lib/_components/template/narrow-wide-form/narrow-wide-form.component.d.ts +14 -0
  242. package/lib/_components/template/one-column/one-column.component.d.ts +14 -0
  243. package/lib/_components/template/one-column-page/one-column-page.component.d.ts +9 -0
  244. package/lib/_components/template/one-column-tab/one-column-tab.component.d.ts +14 -0
  245. package/lib/_components/template/page/page.component.d.ts +25 -0
  246. package/lib/_components/template/promoted-filters/promoted-filters.component.d.ts +35 -0
  247. package/lib/_components/template/repeating-structures/repeating-structures.component.d.ts +37 -0
  248. package/lib/_components/template/simple-table/simple-table.component.d.ts +43 -0
  249. package/lib/_components/template/simple-table-manual/helpers.d.ts +81 -0
  250. package/lib/_components/template/simple-table-manual/simple-table-manual.component.d.ts +159 -0
  251. package/lib/_components/template/simple-table-select/simple-table-select.component.d.ts +32 -0
  252. package/lib/_components/template/single-reference-readonly/single-reference-readonly.component.d.ts +9 -0
  253. package/lib/_components/template/sub-tabs/sub-tabs.component.d.ts +26 -0
  254. package/lib/_components/template/three-column/three-column.component.d.ts +14 -0
  255. package/lib/_components/template/three-column-page/three-column-page.component.d.ts +9 -0
  256. package/lib/_components/template/two-column/two-column.component.d.ts +14 -0
  257. package/lib/_components/template/two-column-page/two-column-page.component.d.ts +17 -0
  258. package/lib/_components/template/two-column-tab/two-column-tab.component.d.ts +14 -0
  259. package/lib/_components/template/utils.d.ts +2 -0
  260. package/lib/_components/template/wide-narrow-form/wide-narrow-form.component.d.ts +14 -0
  261. package/lib/_components/template/wide-narrow-page/wide-narrow-page.component.d.ts +20 -0
  262. package/lib/_components/template/wss-nav-bar/wss-nav-bar.component.d.ts +50 -0
  263. package/lib/_components/widget/app-announcement/app-announcement.component.d.ts +19 -0
  264. package/lib/_components/widget/attachment/attachment.component.d.ts +99 -0
  265. package/lib/_components/widget/case-history/case-history.component.d.ts +24 -0
  266. package/lib/_components/widget/feed-container/feed-container.component.d.ts +49 -0
  267. package/lib/_components/widget/file-utility/file-utility.component.d.ts +150 -0
  268. package/lib/_components/widget/list-utility/list-utility.component.d.ts +23 -0
  269. package/lib/_components/widget/quick-create/quick-create.component.d.ts +29 -0
  270. package/lib/_components/widget/todo/todo.component.d.ts +64 -0
  271. package/lib/_components/widget/utility/utility.component.d.ts +25 -0
  272. package/lib/_directives/thousand-seperator.directive.d.ts +9 -0
  273. package/lib/_helpers/case-utils.d.ts +19 -0
  274. package/lib/_helpers/common.d.ts +3 -0
  275. package/lib/_helpers/currency-utils.d.ts +10 -0
  276. package/lib/_helpers/date-format-utils.d.ts +12 -0
  277. package/lib/_helpers/event-util.d.ts +2 -0
  278. package/lib/_helpers/field-group-utils.d.ts +16 -0
  279. package/lib/_helpers/filter-utils.d.ts +46 -0
  280. package/lib/_helpers/formatters/currency-map.d.ts +1132 -0
  281. package/lib/_helpers/formatters/format-utils.d.ts +8 -0
  282. package/lib/_helpers/tab-utils.d.ts +4 -0
  283. package/lib/_helpers/template-utils.d.ts +16 -0
  284. package/lib/_helpers/utils.d.ts +32 -0
  285. package/lib/_helpers/versionHelpers.d.ts +8 -0
  286. package/lib/_messages/error-messages.service.d.ts +15 -0
  287. package/lib/_messages/get-login-status.service.d.ts +10 -0
  288. package/lib/_messages/oauth-response.service.d.ts +14 -0
  289. package/lib/_messages/progress-spinner.service.d.ts +14 -0
  290. package/lib/_messages/reset-pconnect.service.d.ts +15 -0
  291. package/lib/_messages/update-worklist.service.d.ts +14 -0
  292. package/lib/_services/case.service.d.ts +12 -0
  293. package/lib/_services/datapage.service.d.ts +14 -0
  294. package/lib/_services/endpoints.d.ts +39 -0
  295. package/lib/_services/server-config.service.d.ts +31 -0
  296. package/lib/_types/PConnProps.interface.d.ts +17 -0
  297. package/package.json +28 -0
  298. package/public-api.d.ts +133 -0
  299. package/sdk-local-component-map.d.ts +2 -0
  300. package/sdk-local-component-map.ts +12 -0
@@ -0,0 +1,51 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, NgZone, OnDestroy } from '@angular/core';
3
+ import { FormGroup } from '@angular/forms';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../../_bridge/angular-pconnect';
5
+ import { ProgressSpinnerService } from '../../../../_messages/progress-spinner.service';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with
9
+ * Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and
10
+ * is totally at your own risk.
11
+ */
12
+ interface ViewContainerProps {
13
+ mode?: string;
14
+ name?: string;
15
+ limit?: number;
16
+ template?: string;
17
+ title?: string;
18
+ routingInfo: object;
19
+ readOnly?: boolean;
20
+ }
21
+ export declare class ViewContainerComponent implements OnInit, OnDestroy {
22
+ private angularPConnect;
23
+ private psService;
24
+ private ngZone;
25
+ pConn$: typeof PConnect;
26
+ formGroup$: FormGroup;
27
+ displayOnlyFA$: boolean;
28
+ angularPConnectData: AngularPConnectData;
29
+ configProps$: ViewContainerProps;
30
+ arChildren$: any[];
31
+ templateName$: string;
32
+ buildName$: string;
33
+ context$: string;
34
+ title$: string;
35
+ viewPConn$: any;
36
+ isViewContainer$: boolean;
37
+ createdViewPConn$: any;
38
+ state: any;
39
+ dispatchObject: any;
40
+ constructor(angularPConnect: AngularPConnectService, psService: ProgressSpinnerService, ngZone: NgZone);
41
+ ngOnInit(): void;
42
+ ngOnDestroy(): void;
43
+ onStateChange(): void;
44
+ checkAndUpdate(): void;
45
+ updateSelf(): void;
46
+ prepareDispatchObject(): any;
47
+ buildName(): string;
48
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewContainerComponent, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<ViewContainerComponent, "app-view-container", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "displayOnlyFA$": { "alias": "displayOnlyFA$"; "required": false; }; }, {}, never, never, true, never>;
50
+ }
51
+ export {};
@@ -0,0 +1,12 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ActionButtonsComponent {
4
+ arMainButtons$: any[];
5
+ arSecondaryButtons$: any[];
6
+ actionButtonClick: EventEmitter<any>;
7
+ localizedVal: (localeKey: string, localePath?: string | undefined, localeRuleKey?: string | undefined) => string;
8
+ localeCategory: string;
9
+ buttonClick(sAction: any, sButtonType: any): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionButtonsComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionButtonsComponent, "app-action-buttons", never, { "arMainButtons$": { "alias": "arMainButtons$"; "required": false; }; "arSecondaryButtons$": { "alias": "arSecondaryButtons$"; "required": false; }; }, { "actionButtonClick": "actionButtonClick"; }, never, never, true, never>;
12
+ }
@@ -0,0 +1,72 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, NgZone, OnDestroy, OnChanges } from '@angular/core';
3
+ import { MatSnackBar } from '@angular/material/snack-bar';
4
+ import { FormGroup } from '@angular/forms';
5
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
6
+ import { ErrorMessagesService } from '../../../_messages/error-messages.service';
7
+ import { ProgressSpinnerService } from '../../../_messages/progress-spinner.service';
8
+ import * as i0 from "@angular/core";
9
+ interface AssignmentProps {
10
+ template: string;
11
+ }
12
+ export declare class AssignmentComponent implements OnInit, OnDestroy, OnChanges {
13
+ private angularPConnect;
14
+ private psService;
15
+ private erService;
16
+ private ngZone;
17
+ private snackBar;
18
+ pConn$: typeof PConnect;
19
+ formGroup$: FormGroup;
20
+ arChildren$: any[];
21
+ itemKey$: string;
22
+ isCreateStage$: boolean;
23
+ updateToken$: number;
24
+ isInModal$: boolean;
25
+ banners: any;
26
+ angularPConnectData: AngularPConnectData;
27
+ configProps$: AssignmentProps;
28
+ newPConn$: any;
29
+ containerName$: string;
30
+ bIsRefComponent: boolean;
31
+ bInitialized: boolean;
32
+ templateName$: string;
33
+ arMainButtons$: any[];
34
+ arSecondaryButtons$: any[];
35
+ actionsAPI: any;
36
+ bHasNavigation$: boolean;
37
+ bIsVertical$: boolean;
38
+ arCurrentStepIndicies$: number[];
39
+ arNavigationSteps$: any[];
40
+ init: boolean;
41
+ finishAssignment: any;
42
+ navigateToStep: any;
43
+ saveAssignment: any;
44
+ cancelAssignment: any;
45
+ cancelCreateStageAssignment: any;
46
+ showPage: any;
47
+ bReInit: boolean;
48
+ localizedVal: any;
49
+ localeCategory: string;
50
+ localeReference: any;
51
+ constructor(angularPConnect: AngularPConnectService, psService: ProgressSpinnerService, erService: ErrorMessagesService, ngZone: NgZone, snackBar: MatSnackBar);
52
+ ngOnInit(): void;
53
+ ngOnDestroy(): void;
54
+ onStateChange(): void;
55
+ checkAndUpdate(): void;
56
+ ngOnChanges(): void;
57
+ updateChanges(): void;
58
+ checkIfRefComponent(thePConn: any): boolean;
59
+ initComponent(): void;
60
+ createButtons(): void;
61
+ createButtonsForMultiStepForm(oCaseInfo: any): void;
62
+ findCurrentIndicies(arStepperSteps: any[], arIndicies: number[], depth: number): number[];
63
+ onSaveActionSuccess(data: any): void;
64
+ onActionButtonClick(oData: any): void;
65
+ buttonClick(sAction: any, sButtonType: any): void;
66
+ formValid(): boolean;
67
+ touchAll(): void;
68
+ topViewRefresh(): void;
69
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssignmentComponent, never>;
70
+ static ɵcmp: i0.ɵɵComponentDeclaration<AssignmentComponent, "app-assignment", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "arChildren$": { "alias": "arChildren$"; "required": false; }; "itemKey$": { "alias": "itemKey$"; "required": false; }; "isCreateStage$": { "alias": "isCreateStage$"; "required": false; }; "updateToken$": { "alias": "updateToken$"; "required": false; }; "isInModal$": { "alias": "isInModal$"; "required": false; }; "banners": { "alias": "banners"; "required": false; }; }, {}, never, never, true, never>;
71
+ }
72
+ export {};
@@ -0,0 +1,18 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, EventEmitter, OnChanges } from '@angular/core';
3
+ import { FormGroup } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AssignmentCardComponent implements OnInit, OnChanges {
6
+ pConn$: typeof PConnect;
7
+ formGroup$: FormGroup;
8
+ arMainButtons$: any[];
9
+ arSecondaryButtons$: any[];
10
+ arChildren$: any[];
11
+ updateToken$: number;
12
+ actionButtonClick: EventEmitter<any>;
13
+ ngOnInit(): void;
14
+ ngOnChanges(): void;
15
+ onActionButtonClick(oData: any): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssignmentCardComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<AssignmentCardComponent, "app-assignment-card", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "arMainButtons$": { "alias": "arMainButtons$"; "required": false; }; "arSecondaryButtons$": { "alias": "arSecondaryButtons$"; "required": false; }; "arChildren$": { "alias": "arChildren$"; "required": false; }; "updateToken$": { "alias": "updateToken$"; "required": false; }; }, { "actionButtonClick": "actionButtonClick"; }, never, never, true, never>;
18
+ }
@@ -0,0 +1,20 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit } from '@angular/core';
3
+ import { FormGroup } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DashboardFilterComponent implements OnInit {
6
+ pConn$: typeof PConnect;
7
+ filtersFormGroup$: FormGroup;
8
+ inlineProps: any;
9
+ children: any;
10
+ arChildren$: any[];
11
+ private filterChangeSubject;
12
+ constructor();
13
+ ngOnInit(): void;
14
+ clearFilters(): void;
15
+ updateTmpData(filterData: any): void;
16
+ dateRangeChangeHandler(field: any): void;
17
+ fireFilterChange(data: any): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<DashboardFilterComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<DashboardFilterComponent, "app-dashboard-filter", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "filtersFormGroup$": { "alias": "filtersFormGroup$"; "required": false; }; "inlineProps": { "alias": "inlineProps"; "required": false; }; "children": { "alias": "children"; "required": false; }; }, {}, never, never, true, never>;
20
+ }
@@ -0,0 +1,46 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, OnDestroy, OnChanges } from '@angular/core';
3
+ import { publicConstants } from '@pega/pcore-pconnect-typedefs/constants';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import * as i0 from "@angular/core";
6
+ /**
7
+ * WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with
8
+ * Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and
9
+ * is totally at your own risk.
10
+ */
11
+ export declare class DeferLoadComponent implements OnInit, OnDestroy, OnChanges {
12
+ private angularPConnect;
13
+ pConn$: typeof PConnect;
14
+ loadData$: any;
15
+ name: any;
16
+ componentName$: string;
17
+ loadedPConn$: any;
18
+ bShowDefer$: boolean;
19
+ angularPConnectData: AngularPConnectData;
20
+ constants: typeof publicConstants;
21
+ currentLoadedAssignment: string;
22
+ isContainerPreview: boolean;
23
+ loadViewCaseID: any;
24
+ resourceType: any;
25
+ deferLoadId: any;
26
+ containerName: any;
27
+ CASE: any;
28
+ PAGE: any;
29
+ DATA: any;
30
+ constructor(angularPConnect: AngularPConnectService);
31
+ ngOnInit(): void;
32
+ ngOnDestroy(): void;
33
+ onStateChange(): void;
34
+ ngOnChanges(): void;
35
+ getViewOptions: () => {
36
+ viewContext: any;
37
+ pageClass: any;
38
+ container: string | null;
39
+ containerName: string | null;
40
+ updateData: boolean;
41
+ };
42
+ onResponse(data: any): void;
43
+ loadActiveTab(): void;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<DeferLoadComponent, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<DeferLoadComponent, "app-defer-load", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "loadData$": { "alias": "loadData$"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, true, never>;
46
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ErrorBoundaryComponent {
3
+ message: string;
4
+ localizedVal: (localeKey: string, localePath?: string | undefined, localeRuleKey?: string | undefined) => string;
5
+ localeCategory: string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorBoundaryComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ErrorBoundaryComponent, "app-error-boundary", never, { "message": { "alias": "message"; "required": false; }; }, {}, never, never, true, never>;
8
+ }
@@ -0,0 +1,31 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, EventEmitter } from '@angular/core';
3
+ import { FormGroup } from '@angular/forms';
4
+ import { Utils } from '../../../_helpers/utils';
5
+ import * as i0 from "@angular/core";
6
+ export declare class MultiStepComponent implements OnInit {
7
+ private utils;
8
+ pConn$: typeof PConnect;
9
+ formGroup$: FormGroup;
10
+ arMainButtons$: any[];
11
+ arSecondaryButtons$: any[];
12
+ arChildren$: any[];
13
+ bIsVertical$: boolean;
14
+ arCurrentStepIndicies$: number[];
15
+ arNavigationSteps$: any[];
16
+ actionButtonClick: EventEmitter<any>;
17
+ svgCurrent$: string;
18
+ svgNotCurrent$: string;
19
+ bShow$: boolean;
20
+ constructor(utils: Utils);
21
+ ngOnInit(): void;
22
+ onActionButtonClick(oData: any): void;
23
+ _getVIconClass(status: any): string;
24
+ _getVLabelClass(status: any): string;
25
+ _getVBodyClass(index: number): string;
26
+ _getHIconClass(status: any): string;
27
+ _getHLabelClass(status: any): string;
28
+ _showHLine(index: number): boolean;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiStepComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiStepComponent, "app-multi-step", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "arMainButtons$": { "alias": "arMainButtons$"; "required": false; }; "arSecondaryButtons$": { "alias": "arSecondaryButtons$"; "required": false; }; "arChildren$": { "alias": "arChildren$"; "required": false; }; "bIsVertical$": { "alias": "bIsVertical$"; "required": false; }; "arCurrentStepIndicies$": { "alias": "arCurrentStepIndicies$"; "required": false; }; "arNavigationSteps$": { "alias": "arNavigationSteps$"; "required": false; }; }, { "actionButtonClick": "actionButtonClick"; }, never, never, true, never>;
31
+ }
@@ -0,0 +1,51 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, ChangeDetectorRef, NgZone, OnDestroy } from '@angular/core';
3
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
4
+ import { ProgressSpinnerService } from '../../../_messages/progress-spinner.service';
5
+ import { Utils } from '../../../_helpers/utils';
6
+ import * as i0 from "@angular/core";
7
+ interface NavBarProps {
8
+ showAppName?: boolean;
9
+ }
10
+ export declare class NavbarComponent implements OnInit, OnDestroy {
11
+ private angularPConnect;
12
+ private chRef;
13
+ private psService;
14
+ private ngZone;
15
+ private utils;
16
+ pConn$: typeof PConnect;
17
+ appName$: string;
18
+ pages$: any[];
19
+ caseTypes$: any[];
20
+ angularPConnectData: AngularPConnectData;
21
+ configProps$: NavBarProps;
22
+ navPages$: any[];
23
+ navExpandCollapse$: string;
24
+ bShowCaseTypes$: boolean;
25
+ portalApp$: string;
26
+ portalLogoImage$: string;
27
+ showAppName$?: boolean;
28
+ portalOperator$: string;
29
+ portalOperatorInitials$: string;
30
+ actionsAPI: any;
31
+ createWork: any;
32
+ showPage: any;
33
+ logout: any;
34
+ navIcon$: string;
35
+ localizedVal: any;
36
+ localeCategory: string;
37
+ constructor(angularPConnect: AngularPConnectService, chRef: ChangeDetectorRef, psService: ProgressSpinnerService, ngZone: NgZone, utils: Utils);
38
+ ngOnInit(): void;
39
+ ngOnDestroy(): void;
40
+ loadImage(src: string): Promise<unknown>;
41
+ onStateChange(): void;
42
+ updateSelf(): void;
43
+ initComponent(): void;
44
+ navPanelButtonClick(oPageData: any): void;
45
+ navPanelCreateButtonClick(): void;
46
+ navPanelCreateCaseType(sCaseType: string, sFlowType: string): void;
47
+ navPanelLogoutClick(): void;
48
+ static ɵfac: i0.ɵɵFactoryDeclaration<NavbarComponent, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "app-navbar", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "appName$": { "alias": "appName$"; "required": false; }; "pages$": { "alias": "pages$"; "required": false; }; "caseTypes$": { "alias": "caseTypes$"; "required": false; }; }, {}, never, never, true, never>;
50
+ }
51
+ export {};
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with
4
+ * Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and
5
+ * is totally at your own risk.
6
+ */
7
+ export declare class ReferenceComponent {
8
+ referencedComponent: any;
9
+ private static bLogging;
10
+ constructor();
11
+ static createFullReferencedViewFromRef(inPConn: any): any;
12
+ static normalizePConn(inPConn: any): any;
13
+ static normalizePConnArray(inPConnArray: any): any;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReferenceComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<ReferenceComponent, "app-reference", never, {}, {}, never, never, true, never>;
16
+ }
@@ -0,0 +1,14 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
3
+ import { FormGroup } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
5
+ export declare class RegionComponent implements OnInit, OnChanges {
6
+ pConn$: typeof PConnect;
7
+ formGroup$: FormGroup;
8
+ arChildren$: any[];
9
+ ngOnInit(): void;
10
+ ngOnChanges(changes: SimpleChanges): void;
11
+ updateSelf(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<RegionComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<RegionComponent, "app-region", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
14
+ }
@@ -0,0 +1,35 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, NgZone, OnDestroy } from '@angular/core';
3
+ import { Subscription } from 'rxjs';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import { ProgressSpinnerService } from '../../../_messages/progress-spinner.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class RootContainerComponent implements OnInit, OnDestroy {
8
+ private angularPConnect;
9
+ private psService;
10
+ private ngZone;
11
+ pConn$: typeof PConnect;
12
+ displayOnlyFA$: boolean;
13
+ isMashup$: boolean;
14
+ angularPConnectData: AngularPConnectData;
15
+ componentName$: string;
16
+ bIsProgress$: boolean;
17
+ pvConn$: any;
18
+ mConn$: any;
19
+ bShowRoot$: boolean;
20
+ progressSpinnerSubscription: Subscription;
21
+ spinnerTimer: any;
22
+ viewContainerPConn$: any;
23
+ localizedVal: any;
24
+ localeCategory: string;
25
+ constructor(angularPConnect: AngularPConnectService, psService: ProgressSpinnerService, ngZone: NgZone);
26
+ ngOnInit(): void;
27
+ ngOnDestroy(): void;
28
+ onStateChange(): void;
29
+ modalVisibleChanged(isVisible: any): void;
30
+ updateSelf(): void;
31
+ generateViewContainerForNoPortal(): void;
32
+ showHideProgress(bShow: boolean): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<RootContainerComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<RootContainerComponent, "app-root-container", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "displayOnlyFA$": { "alias": "displayOnlyFA$"; "required": false; }; "isMashup$": { "alias": "isMashup$"; "required": false; }; }, {}, never, never, true, never>;
35
+ }
@@ -0,0 +1,29 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, OnDestroy } from '@angular/core';
3
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
4
+ import { Utils } from '../../../_helpers/utils';
5
+ import * as i0 from "@angular/core";
6
+ interface StagesProps {
7
+ stages: any[];
8
+ }
9
+ export declare class StagesComponent implements OnInit, OnDestroy {
10
+ private angularPConnect;
11
+ private utils;
12
+ pConn$: typeof PConnect;
13
+ angularPConnectData: AngularPConnectData;
14
+ PCore$: typeof PCore;
15
+ configProps$: StagesProps;
16
+ arStageResults$: any[];
17
+ lastStage$: any;
18
+ checkSvgIcon$: string;
19
+ key: string;
20
+ constructor(angularPConnect: AngularPConnectService, utils: Utils);
21
+ ngOnInit(): void;
22
+ ngOnDestroy(): void;
23
+ onStateChange(): void;
24
+ checkAndUpdate(): void;
25
+ updateSelf(): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<StagesComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<StagesComponent, "app-stages", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
28
+ }
29
+ export {};
@@ -0,0 +1,40 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, SimpleChanges, OnDestroy, OnChanges } from '@angular/core';
3
+ import { FormGroup } from '@angular/forms';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import { Utils } from '../../../_helpers/utils';
6
+ import * as i0 from "@angular/core";
7
+ interface ViewProps {
8
+ template?: string;
9
+ label?: string;
10
+ showLabel: boolean;
11
+ title?: string;
12
+ visibility?: boolean;
13
+ }
14
+ export declare class ViewComponent implements OnInit, OnDestroy, OnChanges {
15
+ private angularPConnect;
16
+ private utils;
17
+ pConn$: typeof PConnect;
18
+ formGroup$: FormGroup;
19
+ displayOnlyFA$: boolean;
20
+ angularPConnectData: AngularPConnectData;
21
+ configProps$: ViewProps;
22
+ inheritedProps$: any;
23
+ arChildren$: any[];
24
+ templateName$: string;
25
+ title$: string;
26
+ label$: string;
27
+ showLabel$: boolean;
28
+ visibility$: boolean;
29
+ constructor(angularPConnect: AngularPConnectService, utils: Utils);
30
+ ngOnInit(): void;
31
+ onStateChange(): void;
32
+ checkAndUpdate(): void;
33
+ ngOnChanges(changes: SimpleChanges): void;
34
+ updateSelf(): void;
35
+ additionalProps(state: any, getPConnect: any): {};
36
+ ngOnDestroy(): void;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewComponent, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<ViewComponent, "app-view", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "displayOnlyFA$": { "alias": "displayOnlyFA$"; "required": false; }; }, {}, never, never, true, never>;
39
+ }
40
+ export {};
@@ -0,0 +1,55 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, NgZone, OnDestroy } from '@angular/core';
3
+ import { MatSnackBar } from '@angular/material/snack-bar';
4
+ import { Subscription } from 'rxjs';
5
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
6
+ import { ErrorMessagesService } from '../../../_messages/error-messages.service';
7
+ import * as i0 from "@angular/core";
8
+ interface IPage {
9
+ classID: string;
10
+ pxPageViewIcon: string;
11
+ pyClassName: string;
12
+ pyLabel: string;
13
+ pyRuleName: string;
14
+ pyURLContent: string;
15
+ }
16
+ interface AppShellProps {
17
+ pages: IPage[];
18
+ caseTypes?: object[];
19
+ portalLogo: string;
20
+ portalName: string;
21
+ portalTemplate: string;
22
+ readOnly?: boolean;
23
+ showAppHeaderBar: boolean;
24
+ showAppName: boolean;
25
+ }
26
+ export declare class AppShellComponent implements OnInit, OnDestroy {
27
+ private angularPConnect;
28
+ private erService;
29
+ private snackBar;
30
+ private ngZone;
31
+ pConn$: typeof PConnect;
32
+ angularPConnectData: AngularPConnectData;
33
+ configProps$: AppShellProps;
34
+ pages$: IPage[];
35
+ caseTypes$?: object[];
36
+ arChildren$: any[];
37
+ bShowAppShell$: boolean;
38
+ appName$: string;
39
+ errorMessagesSubscription: Subscription;
40
+ sErrorMessages: string;
41
+ snackBarRef: any;
42
+ bOkDisplayError: boolean;
43
+ portalTemplate: string;
44
+ links: any;
45
+ constructor(angularPConnect: AngularPConnectService, erService: ErrorMessagesService, snackBar: MatSnackBar, ngZone: NgZone);
46
+ ngOnInit(): void;
47
+ ngOnDestroy(): void;
48
+ onStateChange(): void;
49
+ checkAndUpdate(): void;
50
+ updateSelf(): void;
51
+ showDismissErrorMessages(errorMessages: any): void;
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppShellComponent, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppShellComponent, "app-app-shell", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
54
+ }
55
+ export {};
@@ -0,0 +1,27 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ interface BannerPageProps {
5
+ layout?: string;
6
+ title?: string;
7
+ message?: string;
8
+ backgroundImage?: string;
9
+ }
10
+ export declare class BannerPageComponent implements OnInit, OnChanges {
11
+ pConn$: typeof PConnect;
12
+ formGroup$: any;
13
+ configProps$: BannerPageProps;
14
+ arChildren$: any[];
15
+ title?: string;
16
+ message: any;
17
+ backgroundImage?: string;
18
+ layout$?: string;
19
+ divClass$: string;
20
+ constructor();
21
+ ngOnInit(): void;
22
+ ngOnChanges(changes: SimpleChanges): void;
23
+ updateSelf(): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<BannerPageComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<BannerPageComponent, "app-banner-page", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
26
+ }
27
+ export {};
@@ -0,0 +1,34 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, OnDestroy, OnChanges } from '@angular/core';
3
+ import { FormGroup } from '@angular/forms';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import * as i0 from "@angular/core";
6
+ interface CaseSummaryProps {
7
+ status?: string;
8
+ showStatus?: boolean;
9
+ template?: string;
10
+ readOnly?: boolean;
11
+ }
12
+ export declare class CaseSummaryComponent implements OnInit, OnDestroy, OnChanges {
13
+ private angularPConnect;
14
+ pConn$: typeof PConnect;
15
+ formGroup$: FormGroup;
16
+ angularPConnectData: AngularPConnectData;
17
+ configProps$: CaseSummaryProps;
18
+ arChildren$: any[];
19
+ status$?: string;
20
+ bShowStatus$?: boolean;
21
+ primaryFields$: any[];
22
+ secondaryFields$: any[];
23
+ constructor(angularPConnect: AngularPConnectService);
24
+ ngOnInit(): void;
25
+ ngOnDestroy(): void;
26
+ initComponent(): void;
27
+ onStateChange(): void;
28
+ updateSelf(): void;
29
+ ngOnChanges(): void;
30
+ generatePrimaryAndSecondaryFields(): void;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaseSummaryComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaseSummaryComponent, "app-case-summary", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
33
+ }
34
+ export {};
@@ -0,0 +1,56 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
3
+ import { FormGroup } from '@angular/forms';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import { Utils } from '../../../_helpers/utils';
6
+ import * as i0 from "@angular/core";
7
+ interface CaseViewProps {
8
+ icon: string;
9
+ subheader: string;
10
+ header: string;
11
+ }
12
+ export declare class CaseViewComponent implements OnInit, OnDestroy {
13
+ private cdRef;
14
+ private angularPConnect;
15
+ private utils;
16
+ pConn$: typeof PConnect;
17
+ formGroup$: FormGroup;
18
+ displayOnlyFA$: boolean;
19
+ angularPConnectData: AngularPConnectData;
20
+ configProps$: CaseViewProps;
21
+ arChildren$: any[];
22
+ heading$: string;
23
+ id$: string;
24
+ status$: string;
25
+ caseTabs$: any[];
26
+ svgCase$: string;
27
+ tabData$: any;
28
+ mainTabs: any;
29
+ mainTabData: any;
30
+ arAvailableActions$: any[];
31
+ arAvailabeProcesses$: any[];
32
+ caseSummaryPConn$: any;
33
+ currentCaseID: string;
34
+ editAction: boolean;
35
+ bHasNewAttachments: boolean;
36
+ localizedVal: any;
37
+ localeCategory: string;
38
+ localeKey: string;
39
+ constructor(cdRef: ChangeDetectorRef, angularPConnect: AngularPConnectService, utils: Utils);
40
+ ngOnInit(): void;
41
+ ngOnDestroy(): void;
42
+ onStateChange(): void;
43
+ checkAndUpdate(): void;
44
+ hasCaseIDChanged(): boolean;
45
+ updateHeaderAndSummary(): void;
46
+ fullUpdate(): void;
47
+ generateTabsData(): void;
48
+ updateSelf(): void;
49
+ onTabClick(tab: any): void;
50
+ _editClick(): void;
51
+ _menuActionClick(data: any): void;
52
+ _menuProcessClick(data: any): void;
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaseViewComponent, never>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaseViewComponent, "app-case-view", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "displayOnlyFA$": { "alias": "displayOnlyFA$"; "required": false; }; }, {}, never, never, true, never>;
55
+ }
56
+ export {};