@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,60 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
3
+ import { FormControl, FormGroup } from '@angular/forms';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import { Utils } from '../../../_helpers/utils';
6
+ import { PConnFieldProps } from '../../../_types/PConnProps.interface';
7
+ import * as i0 from "@angular/core";
8
+ interface IOption {
9
+ key: string;
10
+ value: string;
11
+ }
12
+ interface RadioButtonsProps extends PConnFieldProps {
13
+ inline: boolean;
14
+ fieldMetadata?: any;
15
+ }
16
+ export declare class RadioButtonsComponent implements OnInit, OnDestroy {
17
+ private angularPConnect;
18
+ private cdRef;
19
+ private utils;
20
+ pConn$: typeof PConnect;
21
+ formGroup$: FormGroup;
22
+ angularPConnectData: AngularPConnectData;
23
+ configProps$: RadioButtonsProps;
24
+ label$: string;
25
+ value$: string;
26
+ bRequired$: boolean;
27
+ bReadonly$: boolean;
28
+ bDisabled$: boolean;
29
+ bVisible$: boolean;
30
+ bInline$: boolean;
31
+ displayMode$?: string;
32
+ controlName$: string;
33
+ bHasForm$: boolean;
34
+ options$: IOption[];
35
+ componentReference: string;
36
+ testId: string;
37
+ helperText: string;
38
+ placeholder: string;
39
+ fieldControl: FormControl<string | null>;
40
+ fieldMetadata: any[];
41
+ localeContext: string;
42
+ localeClass: string;
43
+ localeName: string;
44
+ localePath: string;
45
+ localizedValue: string;
46
+ constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
47
+ ngOnInit(): void;
48
+ ngOnDestroy(): void;
49
+ onStateChange(): void;
50
+ checkAndUpdate(): void;
51
+ updateSelf(): void;
52
+ isSelected(buttonValue: string): boolean;
53
+ fieldOnChange(event: any): void;
54
+ fieldOnBlur(event: any): void;
55
+ getLocalizedOptionValue(opt: IOption): string;
56
+ getErrorMessage(): string;
57
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonsComponent, never>;
58
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonsComponent, "app-radio-buttons", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
59
+ }
60
+ export {};
@@ -0,0 +1,42 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, OnDestroy } from '@angular/core';
3
+ import { FormGroup } from '@angular/forms';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import { Utils } from '../../../_helpers/utils';
6
+ import { PConnFieldProps } from '../../../_types/PConnProps.interface';
7
+ import * as i0 from "@angular/core";
8
+ interface RichTextProps extends PConnFieldProps {
9
+ }
10
+ export declare class RichTextComponent implements OnInit, OnDestroy {
11
+ private angularPConnect;
12
+ private utils;
13
+ pConn$: typeof PConnect;
14
+ formGroup$: FormGroup;
15
+ angularPConnectData: AngularPConnectData;
16
+ configProps$: RichTextProps;
17
+ label$: string;
18
+ value$: string;
19
+ bRequired$: boolean;
20
+ bReadonly$: boolean;
21
+ bDisabled$: boolean;
22
+ bVisible$: boolean;
23
+ displayMode$?: string;
24
+ controlName$: string;
25
+ testId: string;
26
+ helperText: string;
27
+ placeholder: any;
28
+ info: any;
29
+ error: boolean;
30
+ status: any;
31
+ constructor(angularPConnect: AngularPConnectService, utils: Utils);
32
+ ngOnInit(): void;
33
+ ngOnDestroy(): void;
34
+ onStateChange(): void;
35
+ checkAndUpdate(): void;
36
+ updateSelf(): void;
37
+ fieldOnChange(): void;
38
+ fieldOnBlur(editorValue: any): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<RichTextComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<RichTextComponent, "app-rich-text", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
41
+ }
42
+ export {};
@@ -0,0 +1,37 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnDestroy, OnInit } from '@angular/core';
3
+ import { FormControl, FormGroup } from '@angular/forms';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import { PConnFieldProps } from '../../../_types/PConnProps.interface';
6
+ import * as i0 from "@angular/core";
7
+ interface ScalarListProps extends Omit<PConnFieldProps, 'value'> {
8
+ displayInModal: boolean;
9
+ value: any[];
10
+ componentType: string;
11
+ restProps?: object;
12
+ }
13
+ export declare class ScalarListComponent implements OnInit, OnDestroy {
14
+ private angularPConnect;
15
+ pConn$: typeof PConnect;
16
+ formGroup$: FormGroup;
17
+ angularPConnectData: AngularPConnectData;
18
+ configProps$: ScalarListProps;
19
+ label$: string;
20
+ value$: any;
21
+ displayMode$?: string;
22
+ items: any[];
23
+ isDisplayModeEnabled: boolean;
24
+ controlName$: string;
25
+ fieldControl: FormControl<string | null>;
26
+ bHasForm$: boolean;
27
+ bReadonly$: boolean;
28
+ constructor(angularPConnect: AngularPConnectService);
29
+ ngOnInit(): void;
30
+ ngOnDestroy(): void;
31
+ onStateChange(): void;
32
+ checkAndUpdate(): void;
33
+ updateSelf(): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScalarListComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScalarListComponent, "app-scalar-list", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
36
+ }
37
+ export {};
@@ -0,0 +1,30 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, OnDestroy } from '@angular/core';
3
+ import { FormGroup } from '@angular/forms';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import { Utils } from '../../../_helpers/utils';
6
+ import { PConnFieldProps } from '../../../_types/PConnProps.interface';
7
+ import * as i0 from "@angular/core";
8
+ interface SemanticLinkProps extends PConnFieldProps {
9
+ text: string;
10
+ }
11
+ export declare class SemanticLinkComponent implements OnInit, OnDestroy {
12
+ private angularPConnect;
13
+ private utils;
14
+ pConn$: typeof PConnect;
15
+ formGroup$: FormGroup;
16
+ angularPConnectData: AngularPConnectData;
17
+ configProps$: SemanticLinkProps;
18
+ label$: string;
19
+ value$: string;
20
+ displayMode$?: string;
21
+ bVisible$: boolean;
22
+ constructor(angularPConnect: AngularPConnectService, utils: Utils);
23
+ ngOnInit(): void;
24
+ ngOnDestroy(): void;
25
+ onStateChange(): void;
26
+ updateSelf(): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<SemanticLinkComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<SemanticLinkComponent, "app-semantic-link", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
29
+ }
30
+ export {};
@@ -0,0 +1,40 @@
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 { PConnFieldProps } from '../../../_types/PConnProps.interface';
6
+ import * as i0 from "@angular/core";
7
+ interface TextProps extends PConnFieldProps {
8
+ }
9
+ export declare class TextComponent implements OnInit, OnDestroy {
10
+ private angularPConnect;
11
+ private utils;
12
+ pConn$: typeof PConnect;
13
+ formatAs$: string;
14
+ angularPConnectData: AngularPConnectData;
15
+ configProps$: TextProps;
16
+ label$: string;
17
+ value$: string;
18
+ bRequired$: boolean;
19
+ bReadonly$: boolean;
20
+ bDisabled$: boolean;
21
+ bVisible$: boolean;
22
+ displayMode$?: string;
23
+ controlName$: string;
24
+ componentReference: string;
25
+ formattedValue$: string;
26
+ format$: string;
27
+ formattedUrl$: string;
28
+ constructor(angularPConnect: AngularPConnectService, utils: Utils);
29
+ ngOnInit(): void;
30
+ ngOnDestroy(): void;
31
+ checkAndUpdate(): void;
32
+ updateSelf(): void;
33
+ onStateChange(): void;
34
+ generateUrl(sVal: any): string;
35
+ generateDate(sVal: any): string;
36
+ generateDateTime(sVal: any): string;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextComponent, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextComponent, "app-text", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formatAs$": { "alias": "formatAs$"; "required": false; }; }, {}, never, never, true, never>;
39
+ }
40
+ export {};
@@ -0,0 +1,45 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
3
+ import { FormControl, FormGroup } from '@angular/forms';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import { Utils } from '../../../_helpers/utils';
6
+ import { PConnFieldProps } from '../../../_types/PConnProps.interface';
7
+ import * as i0 from "@angular/core";
8
+ interface TextAreaProps extends PConnFieldProps {
9
+ fieldMetadata?: any;
10
+ }
11
+ export declare class TextAreaComponent implements OnInit, OnDestroy {
12
+ private angularPConnect;
13
+ private cdRef;
14
+ private utils;
15
+ pConn$: typeof PConnect;
16
+ formGroup$: FormGroup;
17
+ angularPConnectData: AngularPConnectData;
18
+ configProps$: TextAreaProps;
19
+ label$: string;
20
+ value$: string;
21
+ bRequired$: boolean;
22
+ bReadonly$: boolean;
23
+ bDisabled$: boolean;
24
+ bVisible$: boolean;
25
+ nMaxLength$: number;
26
+ displayMode$?: string;
27
+ controlName$: string;
28
+ bHasForm$: boolean;
29
+ componentReference: string;
30
+ testId: string;
31
+ helperText: string;
32
+ fieldControl: FormControl<string | null>;
33
+ constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
34
+ ngOnInit(): void;
35
+ ngOnDestroy(): void;
36
+ onStateChange(): void;
37
+ checkAndUpdate(): void;
38
+ updateSelf(): void;
39
+ fieldOnChange(event: any): void;
40
+ fieldOnBlur(event: any): void;
41
+ getErrorMessage(): string;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "app-text-area", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
44
+ }
45
+ export {};
@@ -0,0 +1,30 @@
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 { PConnFieldProps } from '../../../_types/PConnProps.interface';
6
+ import * as i0 from "@angular/core";
7
+ interface TextContentProps extends PConnFieldProps {
8
+ content: string;
9
+ displayAs: 'Paragraph' | 'Heading 1' | 'Heading 2' | 'Heading 3' | 'Heading 4';
10
+ }
11
+ export declare class TextContentComponent implements OnInit, OnDestroy {
12
+ private angularPConnect;
13
+ private utils;
14
+ pConn$: typeof PConnect;
15
+ angularPConnectData: AngularPConnectData;
16
+ configProps$: TextContentProps;
17
+ content$: string;
18
+ displayAs$: string;
19
+ displayMode$?: string;
20
+ bVisible$: boolean;
21
+ constructor(angularPConnect: AngularPConnectService, utils: Utils);
22
+ ngOnInit(): void;
23
+ ngOnDestroy(): void;
24
+ updateSelf(): void;
25
+ onStateChange(): void;
26
+ checkAndUpdate(): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextContentComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextContentComponent, "app-text-content", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
29
+ }
30
+ export {};
@@ -0,0 +1,45 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
3
+ import { FormControl, FormGroup } from '@angular/forms';
4
+ import { AngularPConnectService, AngularPConnectData } from '../../../_bridge/angular-pconnect';
5
+ import { Utils } from '../../../_helpers/utils';
6
+ import { PConnFieldProps } from '../../../_types/PConnProps.interface';
7
+ import * as i0 from "@angular/core";
8
+ interface TextInputProps extends PConnFieldProps {
9
+ fieldMetadata?: any;
10
+ }
11
+ export declare class TextInputComponent implements OnInit, OnDestroy {
12
+ private angularPConnect;
13
+ private cdRef;
14
+ private utils;
15
+ pConn$: typeof PConnect;
16
+ formGroup$: FormGroup;
17
+ angularPConnectData: AngularPConnectData;
18
+ configProps$: TextInputProps;
19
+ label$: string;
20
+ value$: string;
21
+ bRequired$: boolean;
22
+ bReadonly$: boolean;
23
+ bDisabled$: boolean;
24
+ bVisible$: boolean;
25
+ displayMode$?: string;
26
+ controlName$: string;
27
+ testId: string;
28
+ bHasForm$: boolean;
29
+ componentReference: string;
30
+ helperText: string;
31
+ placeholder: string;
32
+ fieldControl: FormControl<string | null>;
33
+ constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
34
+ ngOnInit(): void;
35
+ ngOnDestroy(): void;
36
+ onStateChange(): void;
37
+ checkAndUpdate(): void;
38
+ updateSelf(): void;
39
+ fieldOnChange(event: any): void;
40
+ fieldOnBlur(event: any): void;
41
+ getErrorMessage(): string;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "app-text-input", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
44
+ }
45
+ export {};
@@ -0,0 +1,43 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
3
+ import { FormControl, FormGroup } from '@angular/forms';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import { Utils } from '../../../_helpers/utils';
6
+ import { PConnFieldProps } from '../../../_types/PConnProps.interface';
7
+ import * as i0 from "@angular/core";
8
+ interface TimeProps extends PConnFieldProps {
9
+ }
10
+ export declare class TimeComponent implements OnInit, OnDestroy {
11
+ private angularPConnect;
12
+ private cdRef;
13
+ private utils;
14
+ pConn$: typeof PConnect;
15
+ formGroup$: FormGroup;
16
+ angularPConnectData: AngularPConnectData;
17
+ configProps$: TimeProps;
18
+ label$: string;
19
+ value$: string;
20
+ bRequired$: boolean;
21
+ bReadonly$: boolean;
22
+ bDisabled$: boolean;
23
+ bVisible$: boolean;
24
+ displayMode$?: string;
25
+ controlName$: string;
26
+ bHasForm$: boolean;
27
+ componentReference: string;
28
+ helperText: string;
29
+ placeholder: string;
30
+ fieldControl: FormControl<string | null>;
31
+ constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
32
+ ngOnInit(): void;
33
+ ngOnDestroy(): void;
34
+ onStateChange(): void;
35
+ checkAndUpdate(): void;
36
+ updateSelf(): void;
37
+ fieldOnChange(event: any): void;
38
+ fieldOnBlur(event: any): void;
39
+ getErrorMessage(): string;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimeComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeComponent, "app-time", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
42
+ }
43
+ export {};
@@ -0,0 +1,43 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
3
+ import { FormControl, FormGroup } from '@angular/forms';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import { Utils } from '../../../_helpers/utils';
6
+ import { PConnFieldProps } from '../../../_types/PConnProps.interface';
7
+ import * as i0 from "@angular/core";
8
+ interface URLProps extends PConnFieldProps {
9
+ }
10
+ export declare class UrlComponent implements OnInit, OnDestroy {
11
+ private angularPConnect;
12
+ private cdRef;
13
+ private utils;
14
+ pConn$: typeof PConnect;
15
+ formGroup$: FormGroup;
16
+ angularPConnectData: AngularPConnectData;
17
+ configProps$: URLProps;
18
+ label$: string;
19
+ value$: string;
20
+ bRequired$: boolean;
21
+ bReadonly$: boolean;
22
+ bDisabled$: boolean;
23
+ bVisible$: boolean;
24
+ displayMode$?: string;
25
+ controlName$: string;
26
+ bHasForm$: boolean;
27
+ componentReference: string;
28
+ helperText: string;
29
+ placeholder: string;
30
+ fieldControl: FormControl<string | null>;
31
+ constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
32
+ ngOnInit(): void;
33
+ ngOnDestroy(): void;
34
+ onStateChange(): void;
35
+ checkAndUpdate(): void;
36
+ updateSelf(): void;
37
+ fieldOnChange(event: any): void;
38
+ fieldOnBlur(event: any): void;
39
+ getErrorMessage(): string;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<UrlComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<UrlComponent, "app-url", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
42
+ }
43
+ export {};
@@ -0,0 +1,39 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, OnDestroy } from '@angular/core';
3
+ import { FormControl, FormGroup } from '@angular/forms';
4
+ import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
5
+ import { Utils } from '../../../_helpers/utils';
6
+ import * as i0 from "@angular/core";
7
+ export declare class UserReferenceComponent implements OnInit, OnDestroy {
8
+ private angularPConnect;
9
+ private utils;
10
+ pConn$: typeof PConnect;
11
+ formGroup$: FormGroup;
12
+ angularPConnectData: AngularPConnectData;
13
+ controlName$: string;
14
+ value$: any;
15
+ userName$: string;
16
+ label$: string;
17
+ userID$: string;
18
+ options$: any;
19
+ bReadonly$: boolean;
20
+ bRequired$: boolean;
21
+ showAsFormattedText$?: boolean;
22
+ displayAs$?: string;
23
+ testId: string;
24
+ helperText: string;
25
+ placeholder: string;
26
+ fieldControl: FormControl<string | null>;
27
+ constructor(angularPConnect: AngularPConnectService, utils: Utils);
28
+ ngOnInit(): void;
29
+ ngOnDestroy(): void;
30
+ get type(): string;
31
+ onStateChange(): void;
32
+ checkAndUpdate(): void;
33
+ updateSelf(): void;
34
+ fieldOnChange(event: any): void;
35
+ fieldOnBlur(event: any): void;
36
+ getErrorMessage(): string;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserReferenceComponent, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserReferenceComponent, "app-user-reference", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
39
+ }
@@ -0,0 +1,85 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, ChangeDetectorRef, NgZone, OnDestroy } from '@angular/core';
3
+ import { FormBuilder, FormGroup } from '@angular/forms';
4
+ import { publicConstants } from '@pega/pcore-pconnect-typedefs/constants';
5
+ import { AngularPConnectData, AngularPConnectService } from '../../../../_bridge/angular-pconnect';
6
+ import { ProgressSpinnerService } from '../../../../_messages/progress-spinner.service';
7
+ import { Utils } from '../../../../_helpers/utils';
8
+ import * as i0 from "@angular/core";
9
+ /**
10
+ * WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with
11
+ * Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and
12
+ * is totally at your own risk.
13
+ */
14
+ interface FlowContainerProps {
15
+ children?: any[];
16
+ name?: string;
17
+ routingInfo?: any;
18
+ pageMessages: any[];
19
+ }
20
+ export declare class FlowContainerComponent implements OnInit, OnDestroy {
21
+ private angularPConnect;
22
+ private cdRef;
23
+ private psService;
24
+ private fb;
25
+ private ngZone;
26
+ private utils;
27
+ pConn$: typeof PConnect;
28
+ angularPConnectData: AngularPConnectData;
29
+ pCoreConstants: typeof publicConstants;
30
+ configProps$: FlowContainerProps;
31
+ formGroup$: FormGroup;
32
+ arChildren$: any[];
33
+ itemKey$: string;
34
+ containerName$: string;
35
+ buildName$: string;
36
+ todo_showTodo$: boolean;
37
+ todo_caseInfoID$: string;
38
+ todo_showTodoList$: boolean;
39
+ todo_datasource$: any;
40
+ todo_headerText$: string;
41
+ todo_type$: string;
42
+ todo_context$: string;
43
+ todo_pConn$: typeof PConnect;
44
+ bHasCancel: boolean;
45
+ caseMessages$: string;
46
+ bHasCaseMessages$: boolean;
47
+ checkSvg$: string;
48
+ TODO: any;
49
+ bShowConfirm: boolean;
50
+ bShowBanner: boolean;
51
+ confirm_pconn: any;
52
+ localizedVal: any;
53
+ localeCategory: string;
54
+ localeReference: any;
55
+ banners: any[];
56
+ constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, psService: ProgressSpinnerService, fb: FormBuilder, ngZone: NgZone, utils: Utils);
57
+ ngOnInit(): void;
58
+ ngOnDestroy(): void;
59
+ handleCancel(): void;
60
+ handleCancelPressed(): void;
61
+ onStateChange(): void;
62
+ checkAndUpdate(): void;
63
+ showPageMessages(completeProps: FlowContainerProps): void;
64
+ getTodoVisibilty(): boolean;
65
+ initContainer(): void;
66
+ initComponent(bLoadChildren: boolean): void;
67
+ hasAssignments(): boolean;
68
+ isCaseWideLocalAction(): boolean;
69
+ hasChildCaseAssignments(): boolean | "";
70
+ getActiveViewLabel(): string;
71
+ findCurrentIndicies(arStepperSteps: any[], arIndicies: number[], depth: number): number[];
72
+ updateSelf(): void;
73
+ loadReviewPage(localPConn: any): void;
74
+ showCaseMessages(): void;
75
+ updateFlowContainerChildren(): void;
76
+ addPConnectAndUpdateChildren(currentItem: any, key: any): void;
77
+ getBuildName(): string;
78
+ formValid(): boolean;
79
+ touchAll(): void;
80
+ topViewRefresh(): void;
81
+ addContainerItem(pConnect: any): void;
82
+ static ɵfac: i0.ɵɵFactoryDeclaration<FlowContainerComponent, never>;
83
+ static ɵcmp: i0.ɵɵComponentDeclaration<FlowContainerComponent, "app-flow-container", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
84
+ }
85
+ export {};
@@ -0,0 +1,2 @@
1
+ export declare const showBanner: (getPConnect: any) => boolean;
2
+ export declare function getToDoAssignments(pConnect: any): any;
@@ -0,0 +1,15 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { FormGroup } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with
6
+ * Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and
7
+ * is totally at your own risk.
8
+ */
9
+ export declare class HybridViewContainerComponent {
10
+ pConn$: typeof PConnect;
11
+ formGroup$: FormGroup;
12
+ displayOnlyFA$: boolean;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<HybridViewContainerComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<HybridViewContainerComponent, "app-hybrid-view-container", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "displayOnlyFA$": { "alias": "displayOnlyFA$"; "required": false; }; }, {}, never, never, true, never>;
15
+ }
@@ -0,0 +1,71 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit, EventEmitter, NgZone, OnDestroy } from '@angular/core';
3
+ import { FormBuilder, 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
+ export declare class ModalViewContainerComponent implements OnInit, OnDestroy {
13
+ private angularPConnect;
14
+ private ngZone;
15
+ private psService;
16
+ private fb;
17
+ pConn$: typeof PConnect;
18
+ displayOnlyFA$: boolean;
19
+ modalVisibleChange: EventEmitter<boolean>;
20
+ angularPConnectData: AngularPConnectData;
21
+ arChildren$: any[];
22
+ stateProps$: Object;
23
+ banners: any;
24
+ templateName$: string;
25
+ buildName$: string;
26
+ context$: string;
27
+ title$: string;
28
+ bShowModal$: boolean;
29
+ bShowAsModal$: boolean;
30
+ itemKey$: string;
31
+ formGroup$: FormGroup;
32
+ oCaseInfo: Object;
33
+ updateToken$: number;
34
+ routingInfoRef: any;
35
+ createdViewPConn$: any;
36
+ bSubscribed: boolean;
37
+ cancelPConn$?: typeof PConnect;
38
+ bShowCancelAlert$: boolean;
39
+ bAlertState: boolean;
40
+ localizedVal: Function;
41
+ localeCategory: string;
42
+ isMultiRecord: boolean;
43
+ actionsDialog: boolean;
44
+ constructor(angularPConnect: AngularPConnectService, ngZone: NgZone, psService: ProgressSpinnerService, fb: FormBuilder);
45
+ ngOnInit(): void;
46
+ ngOnDestroy(): void;
47
+ onStateChange(): void;
48
+ updateSelf(): void;
49
+ createView(routingInfo: any, currentItem: any, latestItem: any, key: any): void;
50
+ hideModal(): void;
51
+ getConfigObject(item: any, pConnect: any): {
52
+ getPConnect: () => import("@pega/pcore-pconnect-typedefs/interpreter/c11n-env").default;
53
+ } | null;
54
+ onAlertState(bData: boolean): void;
55
+ showAlert(payload: any): void;
56
+ hasContainerItems(routingInfo: any): any;
57
+ getKeyAndLatestItem(routinginfo: any): {
58
+ key: any;
59
+ latestItem: any;
60
+ } | {
61
+ key?: undefined;
62
+ latestItem?: undefined;
63
+ };
64
+ compareCaseInfoIsDifferent(oCurrentCaseInfo: Object): boolean;
65
+ getBanners(): any;
66
+ getModalHeading(dataObjectAction: any): any;
67
+ determineModalHeaderByAction(actionName: any, caseTypeName: any, ID: any, caseLocaleRef: any): any;
68
+ closeActionsDialog: () => void;
69
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalViewContainerComponent, never>;
70
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalViewContainerComponent, "app-modal-view-container", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "displayOnlyFA$": { "alias": "displayOnlyFA$"; "required": false; }; }, { "modalVisibleChange": "modalVisibleChange"; }, never, never, true, never>;
71
+ }
@@ -0,0 +1,15 @@
1
+ /// <reference types="pcore-pconnect-typedefs" />
2
+ import { OnInit } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with
6
+ * Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and
7
+ * is totally at your own risk.
8
+ */
9
+ export declare class PreviewViewContainerComponent implements OnInit {
10
+ pConn$: typeof PConnect;
11
+ ngOnInit(): void;
12
+ buildName(): string;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<PreviewViewContainerComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<PreviewViewContainerComponent, "app-preview-view-container", never, { "pConn$": { "alias": "pConn$"; "required": false; }; }, {}, never, never, true, never>;
15
+ }