@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,8 @@
1
+ export declare const formatters: {
2
+ Currency: (value: any, options: any) => any;
3
+ 'Currency-Code': (value: any, options: any) => any;
4
+ Decimal: (value: any, options: any) => any;
5
+ 'Decimal-Auto': (value: any, options: any) => any;
6
+ Integer: (value: any, options: any) => any;
7
+ Percentage: (value: any, options: any) => any;
8
+ };
@@ -0,0 +1,4 @@
1
+ export declare const getDeferFriendlyTabs: (allTabs: any) => any;
2
+ export declare const getVisibleTabs: (allTabs: any, uuid: any) => any;
3
+ export declare const getTransientTabs: (availableTabs: any, currentTabId: any, tabItems: any) => any;
4
+ export declare const tabClick: (id: any, availableTabs: any, currentTabId: any, tabItems: any) => void;
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TemplateUtils {
3
+ /**
4
+ * Determine if the current view is the view of the case step/assignment.
5
+ * @param {Function} pConnect PConnect object for the component
6
+ */
7
+ getIsAssignmentView(pConnect: any): boolean;
8
+ /**
9
+ * A hook that gets the instructions content for a view.
10
+ * @param {Function} pConnect PConnect object for the component
11
+ * @param {string} [instructions="casestep"] 'casestep', 'none', or the html content of a Rule-UI-Paragraph rule (processed via core's paragraph annotation handler)
12
+ */
13
+ getInstructions(pConnect: any, instructions?: string): any;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<TemplateUtils, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<TemplateUtils>;
16
+ }
@@ -0,0 +1,32 @@
1
+ import { ServerConfigService } from '../_services/server-config.service';
2
+ import * as i0 from "@angular/core";
3
+ export declare class Utils {
4
+ private scService;
5
+ lastControlID: number;
6
+ viewContainerCount: number;
7
+ constructor(scService: ServerConfigService);
8
+ getSDKStaticContentUrl(): string;
9
+ consoleKidDump(pConn: any, level?: number, kidNum?: number): void;
10
+ htmlDecode(sVal: string): string | null;
11
+ getUniqueControlID(): string;
12
+ getOptionList(configProps: any, dataObject: any): any[];
13
+ handleAssociatedList(configProps: any): any[];
14
+ handleDataPageList(configProps: any, dataObject: any): any[];
15
+ transformListSourceItems(listSourceItems: any[]): any[];
16
+ getInitials(userName: string): string;
17
+ getImageSrc(name: string, serverUrl: string): string;
18
+ getIconPath(serverUrl: string): string;
19
+ getBooleanValue(inValue: any): boolean;
20
+ generateDate(dateVal: any, dateFormat: any): any;
21
+ generateDateTime(dateTimeVal: any, dateFormat: any): any;
22
+ getIconFromFileType(fileType: any): string;
23
+ getIconForAttachment(attachment: any): any;
24
+ addViewContainer(): void;
25
+ removeViewContainer(): void;
26
+ okToAddContainerToVC(): boolean;
27
+ getUserId: (user: any) => string;
28
+ static sdkGetAuthHeader(): string;
29
+ static isEmptyObject(obj: Object): boolean;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<Utils, never>;
31
+ static ɵprov: i0.ɵɵInjectableDeclaration<Utils>;
32
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * versionHelpers.ts
3
+ *
4
+ * Container helper functions that can identify which version of
5
+ * PCore/PConnect is being run
6
+ */
7
+ export declare const sdkVersion = "8.7";
8
+ export declare function compareSdkPCoreVersions(): void;
@@ -0,0 +1,15 @@
1
+ import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ErrorMessagesService {
4
+ private subject;
5
+ /**
6
+ *
7
+ * @param sAction - show, dismiss
8
+ * @param sActionMessage - text to displayed, will be queued with others until dismiss
9
+ */
10
+ sendMessage(sAction: string, sActionMessage: string): void;
11
+ clearMessage(): void;
12
+ getMessage(): Observable<any>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorMessagesService, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<ErrorMessagesService>;
15
+ }
@@ -0,0 +1,10 @@
1
+ import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class GetLoginStatusService {
4
+ private subject;
5
+ sendMessage(sLoginStatus: string): void;
6
+ clearMessage(): void;
7
+ getMessage(): Observable<any>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<GetLoginStatusService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<GetLoginStatusService>;
10
+ }
@@ -0,0 +1,14 @@
1
+ import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class OAuthResponseService {
4
+ private subject;
5
+ /**
6
+ * Function to pass the OAuth token
7
+ * @param oToken - token
8
+ */
9
+ sendMessage(oToken: any): void;
10
+ clearMessage(): void;
11
+ getMessage(): Observable<any>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<OAuthResponseService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<OAuthResponseService>;
14
+ }
@@ -0,0 +1,14 @@
1
+ import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ProgressSpinnerService {
4
+ private subject;
5
+ /**
6
+ * Function to show/hide spinner
7
+ * @param bShow - true: show spinner, false: hide spinner
8
+ */
9
+ sendMessage(bShow: boolean): void;
10
+ clearMessage(): void;
11
+ getMessage(): Observable<any>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressSpinnerService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProgressSpinnerService>;
14
+ }
@@ -0,0 +1,15 @@
1
+ import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ResetPConnectService {
4
+ private subject;
5
+ /**
6
+ * function to reset pConnect
7
+ * @param bReset - true: reset pconnect, false - do nothing
8
+ * @param sType - what causing the reset, so far (cancel, finishAssignment)
9
+ */
10
+ sendMessage(bReset: boolean, sType: string): void;
11
+ clearMessage(): void;
12
+ getMessage(): Observable<any>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ResetPConnectService, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<ResetPConnectService>;
15
+ }
@@ -0,0 +1,14 @@
1
+ import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class UpdateWorklistService {
4
+ private subject;
5
+ /**
6
+ * Function signals to update Work list
7
+ * @param bUpdate - true: update worklist, false - do nothing
8
+ */
9
+ sendMessage(bUpdate: boolean): void;
10
+ clearMessage(): void;
11
+ getMessage(): Observable<any>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<UpdateWorklistService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<UpdateWorklistService>;
14
+ }
@@ -0,0 +1,12 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { ServerConfigService } from './server-config.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CaseService {
5
+ private http;
6
+ private scService;
7
+ constructor(http: HttpClient, scService: ServerConfigService);
8
+ caseTypeUrl: string;
9
+ getCaseTypes(): import("rxjs").Observable<import("@angular/common/http").HttpResponse<Object>>;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaseService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<CaseService>;
12
+ }
@@ -0,0 +1,14 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { ServerConfigService } from './server-config.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DatapageService {
5
+ private http;
6
+ private scService;
7
+ constructor(http: HttpClient, scService: ServerConfigService);
8
+ dataPageUrl: string;
9
+ getDataPage(id: any, dpParams: any): import("rxjs").Observable<import("@angular/common/http").HttpResponse<Object>>;
10
+ getResults(response: any): any;
11
+ getDataPageData(dataPageName: any, parameters: any, context: any): Promise<unknown>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatapageService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<DatapageService>;
14
+ }
@@ -0,0 +1,39 @@
1
+ export declare const loginBoxType: {
2
+ Main: number;
3
+ Popup: number;
4
+ Modal: number;
5
+ };
6
+ export declare const endpoints: {
7
+ loginExperience: number;
8
+ SP_VERSION: string;
9
+ AUTH: string;
10
+ CASES: string;
11
+ CASES_V2: string;
12
+ CASETYPES: string;
13
+ CASETYPES_V2: string;
14
+ CONFIG_V2: string;
15
+ VIEWS: string;
16
+ ASSIGNMENTS: string;
17
+ ASSIGNMENTS_V2: string;
18
+ ACTIONS: string;
19
+ PAGES: string;
20
+ DATA: string;
21
+ DATA_V2: string;
22
+ REFRESH: string;
23
+ BACK_V2: string;
24
+ PULSE: string;
25
+ PULSE_V2: string;
26
+ ROUTING: string;
27
+ MEDIACO: string;
28
+ API: string;
29
+ EMBEDDED: string;
30
+ EMBEDDEDHTML: string;
31
+ MASHUP: string;
32
+ MASHUPHTML: string;
33
+ SIMPLEPORTAL: string;
34
+ SIMPLEPORTALHTML: string;
35
+ PORTAL: string;
36
+ PORTALHTML: string;
37
+ FULLPORTAL: string;
38
+ FULLPORTALHTML: string;
39
+ };
@@ -0,0 +1,31 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ServerConfigService {
3
+ /**
4
+ * Asynchronous initialization of the config file contents.
5
+ * @returns Promise of config file fetch
6
+ */
7
+ readSdkConfig(): Promise<any>;
8
+ /**
9
+ *
10
+ * @returns the sdk-config JSON object
11
+ */
12
+ getSdkConfig(): Promise<any>;
13
+ /**
14
+ *
15
+ * @returns the authConfig block in the SDK Config object
16
+ */
17
+ getSdkConfigAuth(): Promise<any>;
18
+ /**
19
+ *
20
+ * @returns the serverConfig bloc from the sdk-config.json file
21
+ */
22
+ getSdkConfigServer(): any;
23
+ /**
24
+ * @param {String} key the key to be inserted/updated in serverConfig
25
+ * @param {String} value the value to be assigned to the given key
26
+ */
27
+ setSdkConfigServer(key: string, value: string): void;
28
+ getBaseUrl(): string;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<ServerConfigService, never>;
30
+ static ɵprov: i0.ɵɵInjectableDeclaration<ServerConfigService>;
31
+ }
@@ -0,0 +1,17 @@
1
+ export interface PConnFieldProps {
2
+ label: string;
3
+ required: boolean;
4
+ disabled: boolean;
5
+ value?: string;
6
+ validatemessage: string;
7
+ status?: string;
8
+ onChange: any;
9
+ onBlur?: any;
10
+ readOnly: boolean;
11
+ testId: string;
12
+ helperText: string;
13
+ displayMode?: string;
14
+ hideLabel: boolean;
15
+ placeholder?: string;
16
+ visibility?: boolean;
17
+ }
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@pega/angular-sdk-components",
3
+ "version": "0.23.1",
4
+ "peerDependencies": {
5
+ "@angular/common": "^16.2.12",
6
+ "@angular/core": "^16.2.12"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.6.2"
10
+ },
11
+ "sideEffects": false,
12
+ "exports": {
13
+ "./_shared/styles.scss": {
14
+ "style": "./_shared/styles.scss"
15
+ },
16
+ "./package.json": {
17
+ "default": "./package.json"
18
+ },
19
+ ".": {
20
+ "types": "./index.d.ts",
21
+ "esm2022": "./esm2022/pega-angular-sdk-components.mjs",
22
+ "esm": "./esm2022/pega-angular-sdk-components.mjs",
23
+ "default": "./fesm2022/pega-angular-sdk-components.mjs"
24
+ }
25
+ },
26
+ "module": "fesm2022/pega-angular-sdk-components.mjs",
27
+ "typings": "index.d.ts"
28
+ }
@@ -0,0 +1,133 @@
1
+ export * from './lib/_bridge/component-mapper/component-mapper.component';
2
+ export * from './lib/_bridge/helpers/sdk_component_map';
3
+ export * from './lib/_bridge/angular-pconnect';
4
+ export * from './lib/_components/field/auto-complete/auto-complete.component';
5
+ export * from './lib/_components/field/cancel-alert/cancel-alert.component';
6
+ export * from './lib/_components/field/check-box/check-box.component';
7
+ export * from './lib/_components/field/currency/currency.component';
8
+ export * from './lib/_components/field/date-time/date-time.component';
9
+ export * from './lib/_components/field/date/date.component';
10
+ export * from './lib/_components/field/decimal/decimal.component';
11
+ export * from './lib/_components/field/dropdown/dropdown.component';
12
+ export * from './lib/_components/field/email/email.component';
13
+ export * from './lib/_components/field/integer/integer.component';
14
+ export * from './lib/_components/field/percentage/percentage.component';
15
+ export * from './lib/_components/field/phone/phone.component';
16
+ export * from './lib/_components/field/radio-buttons/radio-buttons.component';
17
+ export * from './lib/_components/field/rich-text/rich-text.component';
18
+ export * from './lib/_components/field/semantic-link/semantic-link.component';
19
+ export * from './lib/_components/field/text/text.component';
20
+ export * from './lib/_components/field/text-area/text-area.component';
21
+ export * from './lib/_components/field/text-content/text-content.component';
22
+ export * from './lib/_components/field/text-input/text-input.component';
23
+ export * from './lib/_components/field/time/time.component';
24
+ export * from './lib/_components/field/url/url.component';
25
+ export * from './lib/_components/field/user-reference/user-reference.component';
26
+ export * from './lib/_components/infra/action-buttons/action-buttons.component';
27
+ export * from './lib/_components/infra/assignment/assignment.component';
28
+ export * from './lib/_components/infra/assignment-card/assignment-card.component';
29
+ export * from './lib/_components/infra/Containers/flow-container/flow-container.component';
30
+ export * from './lib/_components/infra/Containers/flow-container/helpers';
31
+ export * from './lib/_components/infra/Containers/hybrid-view-container/hybrid-view-container.component';
32
+ export * from './lib/_components/infra/Containers/modal-view-container/modal-view-container.component';
33
+ export * from './lib/_components/infra/Containers/preview-view-container/preview-view-container.component';
34
+ export * from './lib/_components/infra/Containers/view-container/view-container.component';
35
+ export * from './lib/_components/infra/dashboard-filter/dashboard-filter.component';
36
+ export * from './lib/_components/infra/defer-load/defer-load.component';
37
+ export * from './lib/_components/infra/error-boundary/error-boundary.component';
38
+ export * from './lib/_components/infra/multi-step/multi-step.component';
39
+ export * from './lib/_components/infra/navbar/navbar.component';
40
+ export * from './lib/_components/infra/reference/reference.component';
41
+ export * from './lib/_components/infra/region/region.component';
42
+ export * from './lib/_components/infra/root-container/root-container.component';
43
+ export * from './lib/_components/infra/stages/stages.component';
44
+ export * from './lib/_components/infra/view/view.component';
45
+ export * from './lib/_components/template/app-shell/app-shell.component';
46
+ export * from './lib/_components/template/case-summary/case-summary.component';
47
+ export * from './lib/_components/template/case-view/case-view.component';
48
+ export * from './lib/_components/template/confirmation/confirmation.component';
49
+ export * from './lib/_components/template/data-reference/data-reference.component';
50
+ export * from './lib/_components/template/default-form/default-form.component';
51
+ export * from './lib/_components/template/details/details.component';
52
+ export * from './lib/_components/template/details-narrow-wide/details-narrow-wide.component';
53
+ export * from './lib/_components/template/details-one-column/details-one-column.component';
54
+ export * from './lib/_components/template/details-sub-tabs/details-sub-tabs.component';
55
+ export * from './lib/_components/template/details-three-column/details-three-column.component';
56
+ export * from './lib/_components/template/details-two-column/details-two-column.component';
57
+ export * from './lib/_components/template/details-wide-narrow/details-wide-narrow.component';
58
+ export * from './lib/_components/template/field-group-list/field-group-list.component';
59
+ export * from './lib/_components/template/field-group-template/field-group-template.component';
60
+ export * from './lib/_components/template/field-value-list/field-value-list.component';
61
+ export * from './lib/_components/template/inline-dashboard/inline-dashboard.component';
62
+ export * from './lib/_components/template/inline-dashboard-page/inline-dashboard-page.component';
63
+ export * from './lib/_components/template/list-page/list-page.component';
64
+ export * from './lib/_components/template/list-view/list-view.component';
65
+ export * from './lib/_components/template/multi-reference-readonly/multi-reference-readonly.component';
66
+ export * from './lib/_components/template/narrow-wide-form/narrow-wide-form.component';
67
+ export * from './lib/_components/template/one-column/one-column.component';
68
+ export * from './lib/_components/template/one-column-page/one-column-page.component';
69
+ export * from './lib/_components/template/one-column-tab/one-column-tab.component';
70
+ export * from './lib/_components/template/page/page.component';
71
+ export * from './lib/_components/template/promoted-filters/promoted-filters.component';
72
+ export * from './lib/_components/template/repeating-structures/repeating-structures.component';
73
+ export * from './lib/_components/template/simple-table/simple-table.component';
74
+ export * from './lib/_components/template/simple-table-manual/simple-table-manual.component';
75
+ export * from './lib/_components/template/simple-table-select/simple-table-select.component';
76
+ export * from './lib/_components/template/single-reference-readonly/single-reference-readonly.component';
77
+ export * from './lib/_components/template/sub-tabs/sub-tabs.component';
78
+ export * from './lib/_components/template/three-column/three-column.component';
79
+ export * from './lib/_components/template/three-column-page/three-column-page.component';
80
+ export * from './lib/_components/template/two-column/two-column.component';
81
+ export * from './lib/_components/template/two-column-page/two-column-page.component';
82
+ export * from './lib/_components/template/two-column-tab/two-column-tab.component';
83
+ export * from './lib/_components/template/wide-narrow-form/wide-narrow-form.component';
84
+ export * from './lib/_components/template/wide-narrow-page/wide-narrow-page.component';
85
+ export * from './lib/_components/template/utils';
86
+ export * from './lib/_components/template/simple-table-manual/helpers';
87
+ export * from './lib/_components/widget/app-announcement/app-announcement.component';
88
+ export * from './lib/_components/widget/attachment/attachment.component';
89
+ export * from './lib/_components/widget/case-history/case-history.component';
90
+ export * from './lib/_components/widget/feed-container/feed-container.component';
91
+ export * from './lib/_components/widget/file-utility/file-utility.component';
92
+ export * from './lib/_components/widget/list-utility/list-utility.component';
93
+ export * from './lib/_components/widget/todo/todo.component';
94
+ export * from './lib/_components/widget/utility/utility.component';
95
+ export * from './lib/_components/designSystemExtension/alert/alert.component';
96
+ export * from './lib/_components/designSystemExtension/alert-banner/alert-banner.component';
97
+ export * from './lib/_components/designSystemExtension/case-create-stage/case-create-stage.component';
98
+ export * from './lib/_components/designSystemExtension/material-case-summary/material-case-summary.component';
99
+ export * from './lib/_components/designSystemExtension/material-details/material-details.component';
100
+ export * from './lib/_components/designSystemExtension/material-details-fields/material-details-fields.component';
101
+ export * from './lib/_components/designSystemExtension/material-summary-item/material-summary-item.component';
102
+ export * from './lib/_components/designSystemExtension/material-summary-list/material-summary-list.component';
103
+ export * from './lib/_components/designSystemExtension/material-utility/material-utility.component';
104
+ export * from './lib/_components/designSystemExtension/material-vertical-tabs/material-vertical-tabs.component';
105
+ export * from './lib/_components/designSystemExtension/operator/operator.component';
106
+ export * from './lib/_components/designSystemExtension/pulse/pulse.component';
107
+ export * from './lib/_components/designSystemExtension/rich-text-editor/rich-text-editor.component';
108
+ export * from './lib/_directives/thousand-seperator.directive';
109
+ export * from './lib/_services/server-config.service';
110
+ export * from './lib/_services/case.service';
111
+ export * from './lib/_services/datapage.service';
112
+ export * from './lib/_services/endpoints';
113
+ export * from './lib/_helpers/case-utils';
114
+ export * from './lib/_helpers/currency-utils';
115
+ export * from './lib/_helpers/common';
116
+ export * from './lib/_helpers/date-format-utils';
117
+ export * from './lib/_helpers/event-util';
118
+ export * from './lib/_helpers/field-group-utils';
119
+ export * from './lib/_helpers/formatters/format-utils';
120
+ export * from './lib/_helpers/formatters/currency-map';
121
+ export * from './lib/_helpers/tab-utils';
122
+ export * from './lib/_helpers/template-utils';
123
+ export * from './lib/_helpers/utils';
124
+ export * from './lib/_helpers/versionHelpers';
125
+ export * from './lib/_helpers/filter-utils';
126
+ export * from './lib/_messages/error-messages.service';
127
+ export * from './lib/_messages/get-login-status.service';
128
+ export * from './lib/_messages/oauth-response.service';
129
+ export * from './lib/_messages/progress-spinner.service';
130
+ export * from './lib/_messages/reset-pconnect.service';
131
+ export * from './lib/_messages/update-worklist.service';
132
+ export * from './lib/_types/PConnProps.interface';
133
+ export * from './sdk-local-component-map';
@@ -0,0 +1,2 @@
1
+ declare const localSdkComponentMap: {};
2
+ export default localSdkComponentMap;
@@ -0,0 +1,12 @@
1
+ // Statically load all "local" components that aren't yet in the npm package
2
+
3
+ /* import end - DO NOT REMOVE */
4
+
5
+ // localSdkComponentMap is the JSON object where we'll store the components that are
6
+ // found locally. If not found here, we'll look in the Pega-provided component map
7
+
8
+ const localSdkComponentMap = {
9
+ /* map end - DO NOT REMOVE */
10
+ };
11
+
12
+ export default localSdkComponentMap;