@pepperi-addons/ngx-lib 0.5.0-ng15.3 → 0.5.0-ng16.2

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 (749) hide show
  1. package/address/address.component.d.ts +1 -1
  2. package/attachment/attachment.component.d.ts +1 -1
  3. package/bread-crumbs/bread-crumbs.component.d.ts +1 -1
  4. package/button/button.component.d.ts +1 -1
  5. package/carousel/carousel-item.directive.d.ts +1 -1
  6. package/carousel/carousel.component.d.ts +1 -1
  7. package/checkbox/checkbox.component.d.ts +1 -1
  8. package/chips/chips.component.d.ts +1 -1
  9. package/color/color.component.d.ts +1 -1
  10. package/core/clipboard/clipboard.directive.d.ts +1 -1
  11. package/core/common/directives/auto-width.directive.d.ts +1 -1
  12. package/core/common/directives/button-loader.directive.d.ts +1 -1
  13. package/core/common/directives/data-qa.directive.d.ts +1 -1
  14. package/core/common/directives/div-loader.directive.d.ts +1 -1
  15. package/core/common/directives/prevent-multi-click.directive.d.ts +1 -1
  16. package/core/common/directives/print.directive.d.ts +1 -1
  17. package/core/portal/attach.directive.d.ts +1 -1
  18. package/core/portal/target.directive.d.ts +1 -1
  19. package/date/date.component.d.ts +1 -1
  20. package/dialog/dialog.component.d.ts +1 -1
  21. package/draggable-items/draggable-item/draggable-item.component.d.ts +1 -1
  22. package/draggable-items/draggable-items.component.d.ts +1 -1
  23. package/esm2022/address/address.component.mjs +112 -0
  24. package/{esm2020 → esm2022}/address/address.module.mjs +23 -23
  25. package/{esm2020 → esm2022}/attachment/attachment.component.mjs +65 -61
  26. package/{esm2020 → esm2022}/attachment/attachment.module.mjs +21 -21
  27. package/esm2022/bread-crumbs/bread-crumbs.component.mjs +87 -0
  28. package/esm2022/bread-crumbs/bread-crumbs.model.mjs +10 -0
  29. package/esm2022/bread-crumbs/bread-crumbs.module.mjs +51 -0
  30. package/{esm2020 → esm2022}/button/button.component.mjs +76 -53
  31. package/esm2022/button/button.model.mjs +13 -0
  32. package/{esm2020 → esm2022}/button/button.module.mjs +19 -19
  33. package/esm2022/carousel/carousel-item.directive.mjs +34 -0
  34. package/esm2022/carousel/carousel.component.mjs +765 -0
  35. package/{esm2020 → esm2022}/carousel/carousel.module.mjs +5 -5
  36. package/esm2022/checkbox/checkbox.component.mjs +182 -0
  37. package/esm2022/checkbox/checkbox.module.mjs +64 -0
  38. package/esm2022/chips/chips.component.mjs +187 -0
  39. package/esm2022/chips/chips.module.mjs +82 -0
  40. package/{esm2020 → esm2022}/chips/chips.service.mjs +5 -5
  41. package/esm2022/color/color-picker.component.mjs +229 -0
  42. package/esm2022/color/color.component.mjs +93 -0
  43. package/esm2022/color/color.module.mjs +93 -0
  44. package/{esm2020 → esm2022}/core/clipboard/clipboard.directive.mjs +4 -4
  45. package/{esm2020 → esm2022}/core/clipboard/clipboard.service.mjs +4 -4
  46. package/esm2022/core/common/directives/auto-width.directive.mjs +79 -0
  47. package/esm2022/core/common/directives/base-destroyer.directive.mjs +23 -0
  48. package/esm2022/core/common/directives/button-blur.directive.mjs +25 -0
  49. package/esm2022/core/common/directives/button-loader.directive.mjs +117 -0
  50. package/esm2022/core/common/directives/data-qa.directive.mjs +26 -0
  51. package/esm2022/core/common/directives/div-loader.directive.mjs +67 -0
  52. package/esm2022/core/common/directives/menu-blur.directive.mjs +33 -0
  53. package/esm2022/core/common/directives/prevent-multi-click.directive.mjs +25 -0
  54. package/esm2022/core/common/directives/print.directive.mjs +176 -0
  55. package/esm2022/core/common/model/wapi.model.mjs +247 -0
  56. package/esm2022/core/common/pipes/common-pipes.mjs +180 -0
  57. package/esm2022/core/common/pipes/date-ago.pipe.mjs +47 -0
  58. package/esm2022/core/common/services/addon.service.mjs +234 -0
  59. package/esm2022/core/common/services/color.service.mjs +383 -0
  60. package/esm2022/core/common/services/cookie.service.mjs +156 -0
  61. package/esm2022/core/common/services/data-convertor.service.mjs +139 -0
  62. package/esm2022/core/common/services/file.service.mjs +252 -0
  63. package/{esm2020 → esm2022}/core/common/services/jwt-helper.service.mjs +4 -4
  64. package/esm2022/core/common/services/session.service.mjs +73 -0
  65. package/esm2022/core/common/services/translate.service.mjs +47 -0
  66. package/esm2022/core/common/services/utilities.service.mjs +302 -0
  67. package/esm2022/core/common/services/validator.service.mjs +273 -0
  68. package/esm2022/core/common/services/window-scrolling.service.mjs +38 -0
  69. package/esm2022/core/customization/customization.model.mjs +377 -0
  70. package/esm2022/core/customization/customization.service.mjs +802 -0
  71. package/{esm2020 → esm2022}/core/http/interceptors/error.interceptor.mjs +4 -4
  72. package/esm2022/core/http/interceptors/loader.interceptor.mjs +33 -0
  73. package/{esm2020 → esm2022}/core/http/interceptors/profiler.interceptor.mjs +4 -4
  74. package/esm2022/core/http/services/http.service.mjs +158 -0
  75. package/{esm2020 → esm2022}/core/http/services/loader.service.mjs +6 -6
  76. package/esm2022/core/layout/layout.service.mjs +171 -0
  77. package/esm2022/core/layout/rtl.directive.mjs +50 -0
  78. package/esm2022/core/portal/attach.directive.mjs +30 -0
  79. package/esm2022/core/portal/portal.service.mjs +37 -0
  80. package/esm2022/core/portal/target.directive.mjs +27 -0
  81. package/{esm2020 → esm2022}/core/scroll-to/scroll-to.service.mjs +4 -4
  82. package/esm2022/date/date.component.mjs +345 -0
  83. package/{esm2020 → esm2022}/date/date.model.mjs +7 -7
  84. package/esm2022/date/date.module.mjs +89 -0
  85. package/esm2022/dialog/default-dialog.component.mjs +39 -0
  86. package/esm2022/dialog/dialog.component.mjs +37 -0
  87. package/esm2022/dialog/dialog.model.mjs +41 -0
  88. package/esm2022/dialog/dialog.module.mjs +59 -0
  89. package/esm2022/dialog/dialog.service.mjs +106 -0
  90. package/esm2022/draggable-items/draggable-item/draggable-item.component.mjs +68 -0
  91. package/esm2022/draggable-items/draggable-items.component.mjs +95 -0
  92. package/esm2022/draggable-items/draggable-items.module.mjs +65 -0
  93. package/esm2022/field-title/field-title.component.mjs +46 -0
  94. package/esm2022/field-title/field-title.module.mjs +48 -0
  95. package/{esm2020 → esm2022}/files-uploader/files-uploader.component.mjs +36 -27
  96. package/esm2022/files-uploader/files-uploader.module.mjs +80 -0
  97. package/esm2022/form/field-generator.component.mjs +152 -0
  98. package/esm2022/form/form.component.mjs +1258 -0
  99. package/esm2022/form/form.module.mjs +180 -0
  100. package/esm2022/form/indicators.component.mjs +23 -0
  101. package/esm2022/form/internal-button.component.mjs +188 -0
  102. package/esm2022/form/internal-carusel.component.mjs +126 -0
  103. package/esm2022/form/internal-carusel.service.mjs +34 -0
  104. package/esm2022/form/internal-field-generator.component.mjs +146 -0
  105. package/esm2022/form/internal-form.component.mjs +1236 -0
  106. package/esm2022/form/internal-list.component.mjs +524 -0
  107. package/esm2022/form/internal-menu.component.mjs +62 -0
  108. package/esm2022/form/internal-page.component.mjs +380 -0
  109. package/esm2022/form/internal-page.service.mjs +125 -0
  110. package/esm2022/group-buttons/group-buttons.component.mjs +73 -0
  111. package/esm2022/group-buttons/group-buttons.module.mjs +60 -0
  112. package/esm2022/icon/icon-registry.service.mjs +24 -0
  113. package/esm2022/icon/icon.component.mjs +95 -0
  114. package/{esm2020 → esm2022}/icon/icon.module.mjs +5 -5
  115. package/esm2022/icon/icon.service.mjs +34 -0
  116. package/{esm2020 → esm2022}/image/image.component.mjs +45 -39
  117. package/esm2022/image/image.module.mjs +74 -0
  118. package/esm2022/image/image.service.mjs +53 -0
  119. package/esm2022/images-filmstrip/images-filmstrip.component.mjs +360 -0
  120. package/esm2022/images-filmstrip/images-filmstrip.module.mjs +84 -0
  121. package/esm2022/link/link.component.mjs +324 -0
  122. package/esm2022/link/link.module.mjs +81 -0
  123. package/{esm2020 → esm2022}/link/link.pipes.mjs +4 -4
  124. package/esm2022/list/list-actions.component.mjs +42 -0
  125. package/esm2022/list/list-carousel.component.mjs +110 -0
  126. package/esm2022/list/list-chooser.component.mjs +64 -0
  127. package/esm2022/list/list-pager.component.mjs +126 -0
  128. package/{esm2020 → esm2022}/list/list-sorting.component.mjs +15 -13
  129. package/esm2022/list/list-total.component.mjs +31 -0
  130. package/esm2022/list/list-views.component.mjs +86 -0
  131. package/esm2022/list/list.component.mjs +1394 -0
  132. package/{esm2020 → esm2022}/list/list.model.mjs +4 -1
  133. package/esm2022/list/list.module.mjs +145 -0
  134. package/esm2022/list/list.pipes.mjs +45 -0
  135. package/esm2022/list/virtual-scroller.mjs +1124 -0
  136. package/esm2022/menu/menu-item.component.mjs +111 -0
  137. package/esm2022/menu/menu.component.mjs +218 -0
  138. package/esm2022/menu/menu.model.mjs +23 -0
  139. package/esm2022/menu/menu.module.mjs +60 -0
  140. package/{esm2020 → esm2022}/ngx-lib.module.mjs +65 -65
  141. package/esm2022/page-layout/page-layout.component.mjs +41 -0
  142. package/{esm2020 → esm2022}/page-layout/page-layout.module.mjs +13 -13
  143. package/esm2022/profile-data-views-list/profile-data-view/profile-data-view.component.mjs +48 -0
  144. package/esm2022/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.mjs +82 -0
  145. package/esm2022/profile-data-views-list/profile-data-views-list.component.mjs +131 -0
  146. package/esm2022/profile-data-views-list/profile-data-views-list.module.mjs +89 -0
  147. package/esm2022/quantity-selector/quantity-selector-validation.directive.mjs +53 -0
  148. package/{esm2020 → esm2022}/quantity-selector/quantity-selector.component.mjs +83 -73
  149. package/esm2022/quantity-selector/quantity-selector.module.mjs +83 -0
  150. package/{esm2020 → esm2022}/quantity-selector/quantity-selector.pipes.mjs +4 -4
  151. package/esm2022/query-builder/common/model/type-map.mjs +28 -0
  152. package/esm2022/query-builder/common/services/output-query.service.mjs +118 -0
  153. package/esm2022/query-builder/common/services/query-structure.service.mjs +263 -0
  154. package/esm2022/query-builder/common/services/type-convertor.service.mjs +42 -0
  155. package/esm2022/query-builder/query-builder-item/query-builder-item.component.mjs +134 -0
  156. package/esm2022/query-builder/query-builder-section/query-builder-section.component.mjs +76 -0
  157. package/esm2022/query-builder/query-builder.component.mjs +116 -0
  158. package/esm2022/query-builder/query-builder.module.mjs +71 -0
  159. package/{esm2020 → esm2022}/query-builder/query-builder.service.mjs +4 -4
  160. package/esm2022/remote-loader/addon-block-loader.component.mjs +115 -0
  161. package/esm2022/remote-loader/addon-block-loader.service.mjs +66 -0
  162. package/esm2022/remote-loader/remote-loader-element.component.mjs +179 -0
  163. package/esm2022/remote-loader/remote-loader.component.mjs +120 -0
  164. package/{esm2020 → esm2022}/remote-loader/remote-loader.module.mjs +26 -26
  165. package/esm2022/remote-loader/remote-loader.service.mjs +107 -0
  166. package/{esm2020 → esm2022}/rich-html-textarea/rich-html-textarea.component.mjs +38 -30
  167. package/esm2022/rich-html-textarea/rich-html-textarea.module.mjs +96 -0
  168. package/esm2022/search/search.component.mjs +322 -0
  169. package/esm2022/search/search.module.mjs +71 -0
  170. package/esm2022/select/select.component.mjs +341 -0
  171. package/esm2022/select/select.module.mjs +71 -0
  172. package/esm2022/select-panel/select-panel.component.mjs +161 -0
  173. package/{esm2020 → esm2022}/select-panel/select-panel.module.mjs +31 -31
  174. package/esm2022/separator/separator.component.mjs +65 -0
  175. package/{esm2020 → esm2022}/separator/separator.module.mjs +5 -5
  176. package/esm2022/side-bar/side-bar.component.mjs +141 -0
  177. package/esm2022/side-bar/side-bar.module.mjs +56 -0
  178. package/esm2022/signature/signature-dialog.component.mjs +82 -0
  179. package/{esm2020 → esm2022}/signature/signature.component.mjs +41 -31
  180. package/esm2022/signature/signature.module.mjs +92 -0
  181. package/esm2022/size-detector/size-detector.component.mjs +97 -0
  182. package/{esm2020 → esm2022}/size-detector/size-detector.module.mjs +13 -13
  183. package/esm2022/skeleton-loader/skeleton-loader.component.mjs +46 -0
  184. package/{esm2020 → esm2022}/skeleton-loader/skeleton-loader.module.mjs +7 -7
  185. package/esm2022/slider/slider.component.mjs +105 -0
  186. package/{esm2020 → esm2022}/slider/slider.module.mjs +17 -17
  187. package/esm2022/smart-filters/boolean-filter/boolean-filter.component.mjs +74 -0
  188. package/esm2022/smart-filters/common/filter-actions.component.mjs +28 -0
  189. package/esm2022/smart-filters/common/model/base-filter-component.mjs +307 -0
  190. package/esm2022/smart-filters/common/model/field.mjs +125 -0
  191. package/esm2022/smart-filters/common/model/operator.mjs +287 -0
  192. package/esm2022/smart-filters/date-filter/date-filter.component.mjs +181 -0
  193. package/esm2022/smart-filters/multi-select-filter/multi-select-filter.component.mjs +202 -0
  194. package/esm2022/smart-filters/number-filter/number-filter.component.mjs +133 -0
  195. package/esm2022/smart-filters/smart-filters.component.mjs +143 -0
  196. package/esm2022/smart-filters/smart-filters.module.mjs +159 -0
  197. package/esm2022/smart-filters/text-filter/text-filter.component.mjs +110 -0
  198. package/esm2022/snack-bar/default-snack-bar.component.mjs +31 -0
  199. package/esm2022/snack-bar/snack-bar.component.mjs +28 -0
  200. package/esm2022/snack-bar/snack-bar.model.mjs +9 -0
  201. package/esm2022/snack-bar/snack-bar.module.mjs +63 -0
  202. package/esm2022/snack-bar/snack-bar.service.mjs +62 -0
  203. package/{esm2020 → esm2022}/textarea/textarea.component.mjs +35 -27
  204. package/esm2022/textarea/textarea.module.mjs +83 -0
  205. package/esm2022/textbox/textbox-validation.directive.mjs +96 -0
  206. package/esm2022/textbox/textbox.component.mjs +646 -0
  207. package/esm2022/textbox/textbox.module.mjs +73 -0
  208. package/esm2022/textbox-icon/textbox-icon.component.mjs +50 -0
  209. package/esm2022/textbox-icon/textbox-icon.module.mjs +65 -0
  210. package/esm2022/top-bar/top-bar.component.mjs +127 -0
  211. package/esm2022/top-bar/top-bar.module.mjs +63 -0
  212. package/fesm2022/pepperi-addons-ngx-lib-address.mjs +173 -0
  213. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-address.mjs.map +1 -1
  214. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-attachment.mjs +84 -80
  215. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-attachment.mjs.map +1 -1
  216. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-bread-crumbs.mjs +34 -28
  217. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-bread-crumbs.mjs.map +1 -1
  218. package/fesm2022/pepperi-addons-ngx-lib-button.mjs +227 -0
  219. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-button.mjs.map +1 -1
  220. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-carousel.mjs +76 -55
  221. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-carousel.mjs.map +1 -1
  222. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-checkbox.mjs +54 -48
  223. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-checkbox.mjs.map +1 -1
  224. package/fesm2022/pepperi-addons-ngx-lib-chips.mjs +308 -0
  225. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-chips.mjs.map +1 -1
  226. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-color.mjs +92 -84
  227. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-color.mjs.map +1 -1
  228. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-date.mjs +116 -104
  229. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-date.mjs.map +1 -1
  230. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-dialog.mjs +50 -36
  231. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-dialog.mjs.map +1 -1
  232. package/fesm2022/pepperi-addons-ngx-lib-draggable-items.mjs +229 -0
  233. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-draggable-items.mjs.map +1 -1
  234. package/fesm2022/pepperi-addons-ngx-lib-field-title.mjs +101 -0
  235. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-field-title.mjs.map +1 -1
  236. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-files-uploader.mjs +66 -56
  237. package/fesm2022/pepperi-addons-ngx-lib-files-uploader.mjs.map +1 -0
  238. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-form.mjs +391 -310
  239. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-form.mjs.map +1 -1
  240. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-group-buttons.mjs +38 -35
  241. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-group-buttons.mjs.map +1 -1
  242. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-icon.mjs +23 -18
  243. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-icon.mjs.map +1 -1
  244. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-image.mjs +77 -68
  245. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-image.mjs.map +1 -1
  246. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-images-filmstrip.mjs +83 -60
  247. package/fesm2022/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +1 -0
  248. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-link.mjs +113 -103
  249. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-link.mjs.map +1 -1
  250. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-list.mjs +339 -273
  251. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-list.mjs.map +1 -1
  252. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-menu.mjs +89 -87
  253. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-menu.mjs.map +1 -1
  254. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-page-layout.mjs +23 -17
  255. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-page-layout.mjs.map +1 -1
  256. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-profile-data-views-list.mjs +72 -63
  257. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -1
  258. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-quantity-selector.mjs +125 -110
  259. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-quantity-selector.mjs.map +1 -1
  260. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-query-builder.mjs +93 -66
  261. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -1
  262. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-remote-loader.mjs +84 -64
  263. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-remote-loader.mjs.map +1 -1
  264. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-rich-html-textarea.mjs +76 -67
  265. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +1 -1
  266. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-search.mjs +85 -79
  267. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-search.mjs.map +1 -1
  268. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-select-panel.mjs +53 -49
  269. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-select-panel.mjs.map +1 -1
  270. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-select.mjs +74 -66
  271. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-select.mjs.map +1 -1
  272. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-separator.mjs +18 -16
  273. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-separator.mjs.map +1 -1
  274. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-side-bar.mjs +44 -38
  275. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-side-bar.mjs.map +1 -1
  276. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-signature.mjs +95 -81
  277. package/fesm2022/pepperi-addons-ngx-lib-signature.mjs.map +1 -0
  278. package/fesm2022/pepperi-addons-ngx-lib-size-detector.mjs +139 -0
  279. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -1
  280. package/fesm2022/pepperi-addons-ngx-lib-skeleton-loader.mjs +78 -0
  281. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-skeleton-loader.mjs.map +1 -1
  282. package/fesm2022/pepperi-addons-ngx-lib-slider.mjs +154 -0
  283. package/fesm2022/pepperi-addons-ngx-lib-slider.mjs.map +1 -0
  284. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-smart-filters.mjs +186 -158
  285. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -1
  286. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-snack-bar.mjs +42 -34
  287. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-snack-bar.mjs.map +1 -1
  288. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-textarea.mjs +67 -58
  289. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-textarea.mjs.map +1 -1
  290. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-textbox-icon.mjs +28 -25
  291. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-textbox-icon.mjs.map +1 -1
  292. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-textbox.mjs +156 -144
  293. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-textbox.mjs.map +1 -1
  294. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-top-bar.mjs +48 -32
  295. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -1
  296. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib.mjs +661 -449
  297. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib.mjs.map +1 -1
  298. package/field-title/field-title.component.d.ts +1 -1
  299. package/files-uploader/files-uploader.component.d.ts +1 -1
  300. package/form/field-generator.component.d.ts +1 -1
  301. package/form/form.component.d.ts +1 -1
  302. package/form/form.module.d.ts +2 -2
  303. package/form/indicators.component.d.ts +1 -1
  304. package/form/internal-button.component.d.ts +1 -1
  305. package/form/internal-carusel.component.d.ts +1 -1
  306. package/form/internal-field-generator.component.d.ts +1 -1
  307. package/form/internal-form.component.d.ts +1 -1
  308. package/form/internal-list.component.d.ts +1 -1
  309. package/form/internal-menu.component.d.ts +1 -1
  310. package/form/internal-page.component.d.ts +1 -1
  311. package/group-buttons/group-buttons.component.d.ts +1 -1
  312. package/icon/icon.component.d.ts +1 -1
  313. package/image/image.component.d.ts +1 -1
  314. package/images-filmstrip/images-filmstrip.component.d.ts +1 -1
  315. package/link/link.component.d.ts +1 -1
  316. package/list/list-actions.component.d.ts +1 -1
  317. package/list/list-carousel.component.d.ts +1 -1
  318. package/list/list-chooser.component.d.ts +1 -1
  319. package/list/list-pager.component.d.ts +1 -1
  320. package/list/list-sorting.component.d.ts +1 -1
  321. package/list/list-total.component.d.ts +1 -1
  322. package/list/list-views.component.d.ts +1 -1
  323. package/list/list.component.d.ts +1 -1
  324. package/list/virtual-scroller.d.ts +1 -1
  325. package/menu/menu-item.component.d.ts +1 -1
  326. package/menu/menu.component.d.ts +1 -1
  327. package/package.json +159 -249
  328. package/page-layout/page-layout.component.d.ts +1 -1
  329. package/profile-data-views-list/profile-data-view/profile-data-view.component.d.ts +1 -1
  330. package/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.d.ts +1 -1
  331. package/profile-data-views-list/profile-data-views-list.component.d.ts +1 -1
  332. package/quantity-selector/quantity-selector-validation.directive.d.ts +1 -1
  333. package/quantity-selector/quantity-selector.component.d.ts +1 -1
  334. package/query-builder/query-builder-item/query-builder-item.component.d.ts +1 -1
  335. package/query-builder/query-builder-section/query-builder-section.component.d.ts +1 -1
  336. package/query-builder/query-builder.component.d.ts +1 -1
  337. package/remote-loader/addon-block-loader.component.d.ts +1 -1
  338. package/remote-loader/remote-loader-element.component.d.ts +1 -1
  339. package/remote-loader/remote-loader.component.d.ts +1 -1
  340. package/rich-html-textarea/rich-html-textarea.component.d.ts +1 -1
  341. package/search/search.component.d.ts +1 -1
  342. package/select/select.component.d.ts +1 -1
  343. package/select-panel/select-panel.component.d.ts +1 -1
  344. package/separator/separator.component.d.ts +1 -1
  345. package/side-bar/side-bar.component.d.ts +1 -1
  346. package/signature/signature-dialog.component.d.ts +2 -2
  347. package/signature/signature.component.d.ts +1 -1
  348. package/signature/signature.module.d.ts +2 -2
  349. package/size-detector/size-detector.component.d.ts +1 -1
  350. package/skeleton-loader/skeleton-loader.component.d.ts +1 -1
  351. package/slider/slider.component.d.ts +1 -1
  352. package/slider/slider.component.theme.scss +13 -6
  353. package/smart-filters/boolean-filter/boolean-filter.component.d.ts +1 -1
  354. package/smart-filters/common/filter-actions.component.d.ts +1 -1
  355. package/smart-filters/common/model/base-filter-component.d.ts +1 -1
  356. package/smart-filters/smart-filters.component.d.ts +1 -1
  357. package/snack-bar/snack-bar.component.d.ts +1 -1
  358. package/textarea/textarea.component.d.ts +1 -1
  359. package/textbox/textbox-validation.directive.d.ts +1 -1
  360. package/textbox/textbox.component.d.ts +1 -1
  361. package/textbox-icon/textbox-icon.component.d.ts +1 -1
  362. package/top-bar/top-bar.component.d.ts +1 -1
  363. package/esm2020/address/address.component.mjs +0 -109
  364. package/esm2020/bread-crumbs/bread-crumbs.component.mjs +0 -85
  365. package/esm2020/bread-crumbs/bread-crumbs.model.mjs +0 -7
  366. package/esm2020/bread-crumbs/bread-crumbs.module.mjs +0 -50
  367. package/esm2020/button/button.model.mjs +0 -6
  368. package/esm2020/carousel/carousel-item.directive.mjs +0 -33
  369. package/esm2020/carousel/carousel.component.mjs +0 -745
  370. package/esm2020/checkbox/checkbox.component.mjs +0 -177
  371. package/esm2020/checkbox/checkbox.module.mjs +0 -63
  372. package/esm2020/chips/chips.component.mjs +0 -185
  373. package/esm2020/chips/chips.module.mjs +0 -81
  374. package/esm2020/color/color-picker.component.mjs +0 -224
  375. package/esm2020/color/color.component.mjs +0 -90
  376. package/esm2020/color/color.module.mjs +0 -93
  377. package/esm2020/core/common/directives/auto-width.directive.mjs +0 -77
  378. package/esm2020/core/common/directives/base-destroyer.directive.mjs +0 -22
  379. package/esm2020/core/common/directives/button-blur.directive.mjs +0 -24
  380. package/esm2020/core/common/directives/button-loader.directive.mjs +0 -112
  381. package/esm2020/core/common/directives/data-qa.directive.mjs +0 -23
  382. package/esm2020/core/common/directives/div-loader.directive.mjs +0 -61
  383. package/esm2020/core/common/directives/menu-blur.directive.mjs +0 -32
  384. package/esm2020/core/common/directives/prevent-multi-click.directive.mjs +0 -27
  385. package/esm2020/core/common/directives/print.directive.mjs +0 -170
  386. package/esm2020/core/common/model/wapi.model.mjs +0 -157
  387. package/esm2020/core/common/pipes/common-pipes.mjs +0 -177
  388. package/esm2020/core/common/pipes/date-ago.pipe.mjs +0 -46
  389. package/esm2020/core/common/services/addon.service.mjs +0 -227
  390. package/esm2020/core/common/services/color.service.mjs +0 -385
  391. package/esm2020/core/common/services/cookie.service.mjs +0 -153
  392. package/esm2020/core/common/services/data-convertor.service.mjs +0 -122
  393. package/esm2020/core/common/services/file.service.mjs +0 -250
  394. package/esm2020/core/common/services/session.service.mjs +0 -72
  395. package/esm2020/core/common/services/translate.service.mjs +0 -46
  396. package/esm2020/core/common/services/utilities.service.mjs +0 -301
  397. package/esm2020/core/common/services/validator.service.mjs +0 -272
  398. package/esm2020/core/common/services/window-scrolling.service.mjs +0 -36
  399. package/esm2020/core/customization/customization.model.mjs +0 -338
  400. package/esm2020/core/customization/customization.service.mjs +0 -799
  401. package/esm2020/core/http/interceptors/loader.interceptor.mjs +0 -32
  402. package/esm2020/core/http/services/http.service.mjs +0 -155
  403. package/esm2020/core/layout/layout.service.mjs +0 -168
  404. package/esm2020/core/layout/rtl.directive.mjs +0 -44
  405. package/esm2020/core/portal/attach.directive.mjs +0 -27
  406. package/esm2020/core/portal/portal.service.mjs +0 -36
  407. package/esm2020/core/portal/target.directive.mjs +0 -24
  408. package/esm2020/date/date.component.mjs +0 -334
  409. package/esm2020/date/date.module.mjs +0 -88
  410. package/esm2020/dialog/default-dialog.component.mjs +0 -37
  411. package/esm2020/dialog/dialog.component.mjs +0 -36
  412. package/esm2020/dialog/dialog.model.mjs +0 -33
  413. package/esm2020/dialog/dialog.module.mjs +0 -59
  414. package/esm2020/dialog/dialog.service.mjs +0 -103
  415. package/esm2020/draggable-items/draggable-item/draggable-item.component.mjs +0 -67
  416. package/esm2020/draggable-items/draggable-items.component.mjs +0 -94
  417. package/esm2020/draggable-items/draggable-items.module.mjs +0 -64
  418. package/esm2020/field-title/field-title.component.mjs +0 -48
  419. package/esm2020/field-title/field-title.module.mjs +0 -47
  420. package/esm2020/files-uploader/files-uploader.module.mjs +0 -79
  421. package/esm2020/form/field-generator.component.mjs +0 -152
  422. package/esm2020/form/form.component.mjs +0 -1240
  423. package/esm2020/form/form.module.mjs +0 -179
  424. package/esm2020/form/indicators.component.mjs +0 -23
  425. package/esm2020/form/internal-button.component.mjs +0 -184
  426. package/esm2020/form/internal-carusel.component.mjs +0 -121
  427. package/esm2020/form/internal-carusel.service.mjs +0 -32
  428. package/esm2020/form/internal-field-generator.component.mjs +0 -146
  429. package/esm2020/form/internal-form.component.mjs +0 -1218
  430. package/esm2020/form/internal-list.component.mjs +0 -513
  431. package/esm2020/form/internal-menu.component.mjs +0 -64
  432. package/esm2020/form/internal-page.component.mjs +0 -361
  433. package/esm2020/form/internal-page.service.mjs +0 -120
  434. package/esm2020/group-buttons/group-buttons.component.mjs +0 -71
  435. package/esm2020/group-buttons/group-buttons.module.mjs +0 -59
  436. package/esm2020/icon/icon-registry.service.mjs +0 -26
  437. package/esm2020/icon/icon.component.mjs +0 -91
  438. package/esm2020/icon/icon.service.mjs +0 -31
  439. package/esm2020/image/image.module.mjs +0 -74
  440. package/esm2020/image/image.service.mjs +0 -50
  441. package/esm2020/images-filmstrip/images-filmstrip.component.mjs +0 -338
  442. package/esm2020/images-filmstrip/images-filmstrip.module.mjs +0 -83
  443. package/esm2020/link/link.component.mjs +0 -315
  444. package/esm2020/link/link.module.mjs +0 -80
  445. package/esm2020/list/list-actions.component.mjs +0 -44
  446. package/esm2020/list/list-carousel.component.mjs +0 -107
  447. package/esm2020/list/list-chooser.component.mjs +0 -64
  448. package/esm2020/list/list-pager.component.mjs +0 -120
  449. package/esm2020/list/list-total.component.mjs +0 -33
  450. package/esm2020/list/list-views.component.mjs +0 -85
  451. package/esm2020/list/list.component.mjs +0 -1382
  452. package/esm2020/list/list.module.mjs +0 -144
  453. package/esm2020/list/list.pipes.mjs +0 -47
  454. package/esm2020/list/virtual-scroller.mjs +0 -1080
  455. package/esm2020/menu/menu-item.component.mjs +0 -115
  456. package/esm2020/menu/menu.component.mjs +0 -216
  457. package/esm2020/menu/menu.model.mjs +0 -20
  458. package/esm2020/menu/menu.module.mjs +0 -59
  459. package/esm2020/page-layout/page-layout.component.mjs +0 -35
  460. package/esm2020/profile-data-views-list/profile-data-view/profile-data-view.component.mjs +0 -45
  461. package/esm2020/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.mjs +0 -81
  462. package/esm2020/profile-data-views-list/profile-data-views-list.component.mjs +0 -127
  463. package/esm2020/profile-data-views-list/profile-data-views-list.module.mjs +0 -88
  464. package/esm2020/quantity-selector/quantity-selector-validation.directive.mjs +0 -49
  465. package/esm2020/quantity-selector/quantity-selector.module.mjs +0 -82
  466. package/esm2020/query-builder/common/model/type-map.mjs +0 -27
  467. package/esm2020/query-builder/common/services/output-query.service.mjs +0 -116
  468. package/esm2020/query-builder/common/services/query-structure.service.mjs +0 -258
  469. package/esm2020/query-builder/common/services/type-convertor.service.mjs +0 -42
  470. package/esm2020/query-builder/query-builder-item/query-builder-item.component.mjs +0 -127
  471. package/esm2020/query-builder/query-builder-section/query-builder-section.component.mjs +0 -71
  472. package/esm2020/query-builder/query-builder.component.mjs +0 -110
  473. package/esm2020/query-builder/query-builder.module.mjs +0 -70
  474. package/esm2020/remote-loader/addon-block-loader.component.mjs +0 -112
  475. package/esm2020/remote-loader/addon-block-loader.service.mjs +0 -65
  476. package/esm2020/remote-loader/remote-loader-element.component.mjs +0 -171
  477. package/esm2020/remote-loader/remote-loader.component.mjs +0 -115
  478. package/esm2020/remote-loader/remote-loader.service.mjs +0 -104
  479. package/esm2020/rich-html-textarea/rich-html-textarea.module.mjs +0 -95
  480. package/esm2020/search/search.component.mjs +0 -317
  481. package/esm2020/search/search.module.mjs +0 -70
  482. package/esm2020/select/select.component.mjs +0 -334
  483. package/esm2020/select/select.module.mjs +0 -70
  484. package/esm2020/select-panel/select-panel.component.mjs +0 -157
  485. package/esm2020/separator/separator.component.mjs +0 -63
  486. package/esm2020/side-bar/side-bar.component.mjs +0 -136
  487. package/esm2020/side-bar/side-bar.module.mjs +0 -55
  488. package/esm2020/signature/signature-dialog.component.mjs +0 -79
  489. package/esm2020/signature/signature.module.mjs +0 -91
  490. package/esm2020/size-detector/size-detector.component.mjs +0 -94
  491. package/esm2020/skeleton-loader/skeleton-loader.component.mjs +0 -44
  492. package/esm2020/slider/slider.component.mjs +0 -101
  493. package/esm2020/smart-filters/boolean-filter/boolean-filter.component.mjs +0 -75
  494. package/esm2020/smart-filters/common/filter-actions.component.mjs +0 -29
  495. package/esm2020/smart-filters/common/model/base-filter-component.mjs +0 -290
  496. package/esm2020/smart-filters/common/model/field.mjs +0 -117
  497. package/esm2020/smart-filters/common/model/operator.mjs +0 -280
  498. package/esm2020/smart-filters/date-filter/date-filter.component.mjs +0 -182
  499. package/esm2020/smart-filters/multi-select-filter/multi-select-filter.component.mjs +0 -200
  500. package/esm2020/smart-filters/number-filter/number-filter.component.mjs +0 -136
  501. package/esm2020/smart-filters/smart-filters.component.mjs +0 -141
  502. package/esm2020/smart-filters/smart-filters.module.mjs +0 -158
  503. package/esm2020/smart-filters/text-filter/text-filter.component.mjs +0 -113
  504. package/esm2020/snack-bar/default-snack-bar.component.mjs +0 -29
  505. package/esm2020/snack-bar/snack-bar.component.mjs +0 -26
  506. package/esm2020/snack-bar/snack-bar.model.mjs +0 -7
  507. package/esm2020/snack-bar/snack-bar.module.mjs +0 -63
  508. package/esm2020/snack-bar/snack-bar.service.mjs +0 -60
  509. package/esm2020/textarea/textarea.module.mjs +0 -82
  510. package/esm2020/textbox/textbox-validation.directive.mjs +0 -93
  511. package/esm2020/textbox/textbox.component.mjs +0 -638
  512. package/esm2020/textbox/textbox.module.mjs +0 -72
  513. package/esm2020/textbox-icon/textbox-icon.component.mjs +0 -48
  514. package/esm2020/textbox-icon/textbox-icon.module.mjs +0 -64
  515. package/esm2020/top-bar/top-bar.component.mjs +0 -112
  516. package/esm2020/top-bar/top-bar.module.mjs +0 -62
  517. package/fesm2015/pepperi-addons-ngx-lib-address.mjs +0 -170
  518. package/fesm2015/pepperi-addons-ngx-lib-address.mjs.map +0 -1
  519. package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs +0 -306
  520. package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs.map +0 -1
  521. package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.mjs +0 -147
  522. package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.mjs.map +0 -1
  523. package/fesm2015/pepperi-addons-ngx-lib-button.mjs +0 -197
  524. package/fesm2015/pepperi-addons-ngx-lib-button.mjs.map +0 -1
  525. package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs +0 -804
  526. package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs.map +0 -1
  527. package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs +0 -246
  528. package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs.map +0 -1
  529. package/fesm2015/pepperi-addons-ngx-lib-chips.mjs +0 -306
  530. package/fesm2015/pepperi-addons-ngx-lib-chips.mjs.map +0 -1
  531. package/fesm2015/pepperi-addons-ngx-lib-color.mjs +0 -404
  532. package/fesm2015/pepperi-addons-ngx-lib-color.mjs.map +0 -1
  533. package/fesm2015/pepperi-addons-ngx-lib-date.mjs +0 -481
  534. package/fesm2015/pepperi-addons-ngx-lib-date.mjs.map +0 -1
  535. package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs +0 -263
  536. package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs.map +0 -1
  537. package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs +0 -227
  538. package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs.map +0 -1
  539. package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs +0 -102
  540. package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs.map +0 -1
  541. package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs +0 -331
  542. package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs.map +0 -1
  543. package/fesm2015/pepperi-addons-ngx-lib-form.mjs +0 -4232
  544. package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs +0 -136
  545. package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs.map +0 -1
  546. package/fesm2015/pepperi-addons-ngx-lib-icon.mjs +0 -741
  547. package/fesm2015/pepperi-addons-ngx-lib-image.mjs +0 -397
  548. package/fesm2015/pepperi-addons-ngx-lib-image.mjs.map +0 -1
  549. package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs +0 -426
  550. package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +0 -1
  551. package/fesm2015/pepperi-addons-ngx-lib-link.mjs +0 -414
  552. package/fesm2015/pepperi-addons-ngx-lib-link.mjs.map +0 -1
  553. package/fesm2015/pepperi-addons-ngx-lib-list.mjs +0 -3131
  554. package/fesm2015/pepperi-addons-ngx-lib-list.mjs.map +0 -1
  555. package/fesm2015/pepperi-addons-ngx-lib-menu.mjs +0 -403
  556. package/fesm2015/pepperi-addons-ngx-lib-page-layout.mjs.map +0 -1
  557. package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs +0 -337
  558. package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +0 -1
  559. package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.mjs +0 -741
  560. package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs +0 -1226
  561. package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs.map +0 -1
  562. package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs +0 -644
  563. package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs.map +0 -1
  564. package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs +0 -363
  565. package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +0 -1
  566. package/fesm2015/pepperi-addons-ngx-lib-search.mjs +0 -393
  567. package/fesm2015/pepperi-addons-ngx-lib-search.mjs.map +0 -1
  568. package/fesm2015/pepperi-addons-ngx-lib-select-panel.mjs +0 -235
  569. package/fesm2015/pepperi-addons-ngx-lib-select-panel.mjs.map +0 -1
  570. package/fesm2015/pepperi-addons-ngx-lib-select.mjs +0 -410
  571. package/fesm2015/pepperi-addons-ngx-lib-select.mjs.map +0 -1
  572. package/fesm2015/pepperi-addons-ngx-lib-separator.mjs +0 -89
  573. package/fesm2015/pepperi-addons-ngx-lib-separator.mjs.map +0 -1
  574. package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs +0 -196
  575. package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs.map +0 -1
  576. package/fesm2015/pepperi-addons-ngx-lib-signature.mjs +0 -464
  577. package/fesm2015/pepperi-addons-ngx-lib-signature.mjs.map +0 -1
  578. package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs +0 -136
  579. package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs.map +0 -1
  580. package/fesm2015/pepperi-addons-ngx-lib-skeleton-loader.mjs +0 -78
  581. package/fesm2015/pepperi-addons-ngx-lib-slider.mjs +0 -151
  582. package/fesm2015/pepperi-addons-ngx-lib-slider.mjs.map +0 -1
  583. package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs +0 -1731
  584. package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs.map +0 -1
  585. package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs +0 -183
  586. package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs.map +0 -1
  587. package/fesm2015/pepperi-addons-ngx-lib-textarea.mjs +0 -286
  588. package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs +0 -118
  589. package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs.map +0 -1
  590. package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs +0 -806
  591. package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs.map +0 -1
  592. package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs +0 -180
  593. package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs.map +0 -1
  594. package/fesm2015/pepperi-addons-ngx-lib.mjs +0 -4995
  595. package/fesm2015/pepperi-addons-ngx-lib.mjs.map +0 -1
  596. package/fesm2020/pepperi-addons-ngx-lib-address.mjs +0 -170
  597. package/fesm2020/pepperi-addons-ngx-lib-button.mjs +0 -197
  598. package/fesm2020/pepperi-addons-ngx-lib-chips.mjs +0 -305
  599. package/fesm2020/pepperi-addons-ngx-lib-draggable-items.mjs +0 -226
  600. package/fesm2020/pepperi-addons-ngx-lib-field-title.mjs +0 -102
  601. package/fesm2020/pepperi-addons-ngx-lib-files-uploader.mjs.map +0 -1
  602. package/fesm2020/pepperi-addons-ngx-lib-form.mjs.map +0 -1
  603. package/fesm2020/pepperi-addons-ngx-lib-icon.mjs.map +0 -1
  604. package/fesm2020/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +0 -1
  605. package/fesm2020/pepperi-addons-ngx-lib-menu.mjs.map +0 -1
  606. package/fesm2020/pepperi-addons-ngx-lib-page-layout.mjs +0 -77
  607. package/fesm2020/pepperi-addons-ngx-lib-quantity-selector.mjs.map +0 -1
  608. package/fesm2020/pepperi-addons-ngx-lib-signature.mjs.map +0 -1
  609. package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs +0 -136
  610. package/fesm2020/pepperi-addons-ngx-lib-skeleton-loader.mjs +0 -76
  611. package/fesm2020/pepperi-addons-ngx-lib-skeleton-loader.mjs.map +0 -1
  612. package/fesm2020/pepperi-addons-ngx-lib-slider.mjs +0 -150
  613. package/fesm2020/pepperi-addons-ngx-lib-slider.mjs.map +0 -1
  614. package/fesm2020/pepperi-addons-ngx-lib-textarea.mjs.map +0 -1
  615. /package/{esm2020 → esm2022}/address/pepperi-addons-ngx-lib-address.mjs +0 -0
  616. /package/{esm2020 → esm2022}/address/public-api.mjs +0 -0
  617. /package/{esm2020 → esm2022}/attachment/pepperi-addons-ngx-lib-attachment.mjs +0 -0
  618. /package/{esm2020 → esm2022}/attachment/public-api.mjs +0 -0
  619. /package/{esm2020 → esm2022}/bread-crumbs/pepperi-addons-ngx-lib-bread-crumbs.mjs +0 -0
  620. /package/{esm2020 → esm2022}/bread-crumbs/public-api.mjs +0 -0
  621. /package/{esm2020 → esm2022}/button/pepperi-addons-ngx-lib-button.mjs +0 -0
  622. /package/{esm2020 → esm2022}/button/public-api.mjs +0 -0
  623. /package/{esm2020 → esm2022}/carousel/pepperi-addons-ngx-lib-carousel.mjs +0 -0
  624. /package/{esm2020 → esm2022}/carousel/public-api.mjs +0 -0
  625. /package/{esm2020 → esm2022}/checkbox/pepperi-addons-ngx-lib-checkbox.mjs +0 -0
  626. /package/{esm2020 → esm2022}/checkbox/public-api.mjs +0 -0
  627. /package/{esm2020 → esm2022}/chips/chips.model.mjs +0 -0
  628. /package/{esm2020 → esm2022}/chips/pepperi-addons-ngx-lib-chips.mjs +0 -0
  629. /package/{esm2020 → esm2022}/chips/public-api.mjs +0 -0
  630. /package/{esm2020 → esm2022}/color/color.model.mjs +0 -0
  631. /package/{esm2020 → esm2022}/color/pepperi-addons-ngx-lib-color.mjs +0 -0
  632. /package/{esm2020 → esm2022}/color/public-api.mjs +0 -0
  633. /package/{esm2020 → esm2022}/core/clipboard/index.mjs +0 -0
  634. /package/{esm2020 → esm2022}/core/clipboard/public-api.mjs +0 -0
  635. /package/{esm2020 → esm2022}/core/common/directives/index.mjs +0 -0
  636. /package/{esm2020 → esm2022}/core/common/directives/public-api.mjs +0 -0
  637. /package/{esm2020 → esm2022}/core/common/index.mjs +0 -0
  638. /package/{esm2020 → esm2022}/core/common/model/index.mjs +0 -0
  639. /package/{esm2020 → esm2022}/core/common/model/papi.model.mjs +0 -0
  640. /package/{esm2020 → esm2022}/core/common/model/public-api.mjs +0 -0
  641. /package/{esm2020 → esm2022}/core/common/model/utilities.model.mjs +0 -0
  642. /package/{esm2020 → esm2022}/core/common/pipes/index.mjs +0 -0
  643. /package/{esm2020 → esm2022}/core/common/pipes/public-api.mjs +0 -0
  644. /package/{esm2020 → esm2022}/core/common/public-api.mjs +0 -0
  645. /package/{esm2020 → esm2022}/core/common/services/index.mjs +0 -0
  646. /package/{esm2020 → esm2022}/core/common/services/public-api.mjs +0 -0
  647. /package/{esm2020 → esm2022}/core/customization/index.mjs +0 -0
  648. /package/{esm2020 → esm2022}/core/customization/public-api.mjs +0 -0
  649. /package/{esm2020 → esm2022}/core/http/index.mjs +0 -0
  650. /package/{esm2020 → esm2022}/core/http/interceptors/index.mjs +0 -0
  651. /package/{esm2020 → esm2022}/core/http/public-api.mjs +0 -0
  652. /package/{esm2020 → esm2022}/core/index.mjs +0 -0
  653. /package/{esm2020 → esm2022}/core/layout/index.mjs +0 -0
  654. /package/{esm2020 → esm2022}/core/layout/public-api.mjs +0 -0
  655. /package/{esm2020 → esm2022}/core/portal/index.mjs +0 -0
  656. /package/{esm2020 → esm2022}/core/portal/public-api.mjs +0 -0
  657. /package/{esm2020 → esm2022}/core/public-api.mjs +0 -0
  658. /package/{esm2020 → esm2022}/core/scroll-to/index.mjs +0 -0
  659. /package/{esm2020 → esm2022}/core/scroll-to/public-api.mjs +0 -0
  660. /package/{esm2020 → esm2022}/date/pepperi-addons-ngx-lib-date.mjs +0 -0
  661. /package/{esm2020 → esm2022}/date/public-api.mjs +0 -0
  662. /package/{esm2020 → esm2022}/dialog/pepperi-addons-ngx-lib-dialog.mjs +0 -0
  663. /package/{esm2020 → esm2022}/dialog/public-api.mjs +0 -0
  664. /package/{esm2020 → esm2022}/draggable-items/draggable-items.model.mjs +0 -0
  665. /package/{esm2020 → esm2022}/draggable-items/pepperi-addons-ngx-lib-draggable-items.mjs +0 -0
  666. /package/{esm2020 → esm2022}/draggable-items/public-api.mjs +0 -0
  667. /package/{esm2020 → esm2022}/field-title/pepperi-addons-ngx-lib-field-title.mjs +0 -0
  668. /package/{esm2020 → esm2022}/field-title/public-api.mjs +0 -0
  669. /package/{esm2020 → esm2022}/files-uploader/pepperi-addons-ngx-lib-files-uploader.mjs +0 -0
  670. /package/{esm2020 → esm2022}/files-uploader/public-api.mjs +0 -0
  671. /package/{esm2020 → esm2022}/form/form.model.mjs +0 -0
  672. /package/{esm2020 → esm2022}/form/pepperi-addons-ngx-lib-form.mjs +0 -0
  673. /package/{esm2020 → esm2022}/form/public-api.mjs +0 -0
  674. /package/{esm2020 → esm2022}/group-buttons/pepperi-addons-ngx-lib-group-buttons.mjs +0 -0
  675. /package/{esm2020 → esm2022}/group-buttons/public-api.mjs +0 -0
  676. /package/{esm2020 → esm2022}/icon/icon-generated-all.model.mjs +0 -0
  677. /package/{esm2020 → esm2022}/icon/icon-generated.model.mjs +0 -0
  678. /package/{esm2020 → esm2022}/icon/pepperi-addons-ngx-lib-icon.mjs +0 -0
  679. /package/{esm2020 → esm2022}/icon/public-api.mjs +0 -0
  680. /package/{esm2020 → esm2022}/image/pepperi-addons-ngx-lib-image.mjs +0 -0
  681. /package/{esm2020 → esm2022}/image/public-api.mjs +0 -0
  682. /package/{esm2020 → esm2022}/images-filmstrip/pepperi-addons-ngx-lib-images-filmstrip.mjs +0 -0
  683. /package/{esm2020 → esm2022}/images-filmstrip/public-api.mjs +0 -0
  684. /package/{esm2020 → esm2022}/link/pepperi-addons-ngx-lib-link.mjs +0 -0
  685. /package/{esm2020 → esm2022}/link/public-api.mjs +0 -0
  686. /package/{esm2020 → esm2022}/list/pepperi-addons-ngx-lib-list.mjs +0 -0
  687. /package/{esm2020 → esm2022}/list/public-api.mjs +0 -0
  688. /package/{esm2020 → esm2022}/menu/pepperi-addons-ngx-lib-menu.mjs +0 -0
  689. /package/{esm2020 → esm2022}/menu/public-api.mjs +0 -0
  690. /package/{esm2020 → esm2022}/page-layout/pepperi-addons-ngx-lib-page-layout.mjs +0 -0
  691. /package/{esm2020 → esm2022}/page-layout/public-api.mjs +0 -0
  692. /package/{esm2020 → esm2022}/pepperi-addons-ngx-lib.mjs +0 -0
  693. /package/{esm2020 → esm2022}/profile-data-views-list/pepperi-addons-ngx-lib-profile-data-views-list.mjs +0 -0
  694. /package/{esm2020 → esm2022}/profile-data-views-list/profile-data-views-list.model.mjs +0 -0
  695. /package/{esm2020 → esm2022}/profile-data-views-list/public-api.mjs +0 -0
  696. /package/{esm2020 → esm2022}/public-api.mjs +0 -0
  697. /package/{esm2020 → esm2022}/quantity-selector/pepperi-addons-ngx-lib-quantity-selector.mjs +0 -0
  698. /package/{esm2020 → esm2022}/quantity-selector/public-api.mjs +0 -0
  699. /package/{esm2020 → esm2022}/query-builder/common/model/field.mjs +0 -0
  700. /package/{esm2020 → esm2022}/query-builder/common/model/filter.mjs +0 -0
  701. /package/{esm2020 → esm2022}/query-builder/common/model/legacy.mjs +0 -0
  702. /package/{esm2020 → esm2022}/query-builder/common/model/operator-unit.mjs +0 -0
  703. /package/{esm2020 → esm2022}/query-builder/common/model/operator.mjs +0 -0
  704. /package/{esm2020 → esm2022}/query-builder/common/model/structure.mjs +0 -0
  705. /package/{esm2020 → esm2022}/query-builder/common/model/type.mjs +0 -0
  706. /package/{esm2020 → esm2022}/query-builder/pepperi-addons-ngx-lib-query-builder.mjs +0 -0
  707. /package/{esm2020 → esm2022}/query-builder/public-api.mjs +0 -0
  708. /package/{esm2020 → esm2022}/remote-loader/pepperi-addons-ngx-lib-remote-loader.mjs +0 -0
  709. /package/{esm2020 → esm2022}/remote-loader/public-api.mjs +0 -0
  710. /package/{esm2020 → esm2022}/remote-loader/remote-loader.model.mjs +0 -0
  711. /package/{esm2020 → esm2022}/rich-html-textarea/pepperi-addons-ngx-lib-rich-html-textarea.mjs +0 -0
  712. /package/{esm2020 → esm2022}/rich-html-textarea/public-api.mjs +0 -0
  713. /package/{esm2020 → esm2022}/search/pepperi-addons-ngx-lib-search.mjs +0 -0
  714. /package/{esm2020 → esm2022}/search/public-api.mjs +0 -0
  715. /package/{esm2020 → esm2022}/search/search.model.mjs +0 -0
  716. /package/{esm2020 → esm2022}/select/pepperi-addons-ngx-lib-select.mjs +0 -0
  717. /package/{esm2020 → esm2022}/select/public-api.mjs +0 -0
  718. /package/{esm2020 → esm2022}/select-panel/pepperi-addons-ngx-lib-select-panel.mjs +0 -0
  719. /package/{esm2020 → esm2022}/select-panel/public-api.mjs +0 -0
  720. /package/{esm2020 → esm2022}/select-panel/select-panel.model.mjs +0 -0
  721. /package/{esm2020 → esm2022}/separator/pepperi-addons-ngx-lib-separator.mjs +0 -0
  722. /package/{esm2020 → esm2022}/separator/public-api.mjs +0 -0
  723. /package/{esm2020 → esm2022}/side-bar/pepperi-addons-ngx-lib-side-bar.mjs +0 -0
  724. /package/{esm2020 → esm2022}/side-bar/public-api.mjs +0 -0
  725. /package/{esm2020 → esm2022}/side-bar/side-bar.model.mjs +0 -0
  726. /package/{esm2020 → esm2022}/signature/pepperi-addons-ngx-lib-signature.mjs +0 -0
  727. /package/{esm2020 → esm2022}/signature/public-api.mjs +0 -0
  728. /package/{esm2020 → esm2022}/size-detector/pepperi-addons-ngx-lib-size-detector.mjs +0 -0
  729. /package/{esm2020 → esm2022}/size-detector/public-api.mjs +0 -0
  730. /package/{esm2020 → esm2022}/skeleton-loader/pepperi-addons-ngx-lib-skeleton-loader.mjs +0 -0
  731. /package/{esm2020 → esm2022}/skeleton-loader/public-api.mjs +0 -0
  732. /package/{esm2020 → esm2022}/slider/pepperi-addons-ngx-lib-slider.mjs +0 -0
  733. /package/{esm2020 → esm2022}/slider/public-api.mjs +0 -0
  734. /package/{esm2020 → esm2022}/smart-filters/common/model/creator.mjs +0 -0
  735. /package/{esm2020 → esm2022}/smart-filters/common/model/filter.mjs +0 -0
  736. /package/{esm2020 → esm2022}/smart-filters/common/model/type.mjs +0 -0
  737. /package/{esm2020 → esm2022}/smart-filters/pepperi-addons-ngx-lib-smart-filters.mjs +0 -0
  738. /package/{esm2020 → esm2022}/smart-filters/public-api.mjs +0 -0
  739. /package/{esm2020 → esm2022}/snack-bar/pepperi-addons-ngx-lib-snack-bar.mjs +0 -0
  740. /package/{esm2020 → esm2022}/snack-bar/public-api.mjs +0 -0
  741. /package/{esm2020 → esm2022}/textarea/pepperi-addons-ngx-lib-textarea.mjs +0 -0
  742. /package/{esm2020 → esm2022}/textarea/public-api.mjs +0 -0
  743. /package/{esm2020 → esm2022}/textbox/pepperi-addons-ngx-lib-textbox.mjs +0 -0
  744. /package/{esm2020 → esm2022}/textbox/public-api.mjs +0 -0
  745. /package/{esm2020 → esm2022}/textbox-icon/pepperi-addons-ngx-lib-textbox-icon.mjs +0 -0
  746. /package/{esm2020 → esm2022}/textbox-icon/public-api.mjs +0 -0
  747. /package/{esm2020 → esm2022}/top-bar/pepperi-addons-ngx-lib-top-bar.mjs +0 -0
  748. /package/{esm2020 → esm2022}/top-bar/public-api.mjs +0 -0
  749. /package/{esm2020 → esm2022}/top-bar/top-bar.model.mjs +0 -0
@@ -32,22 +32,22 @@ class PepErrorInterceptor {
32
32
  return throwError(error);
33
33
  }));
34
34
  }
35
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepErrorInterceptor, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepErrorInterceptor });
35
37
  }
36
- PepErrorInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepErrorInterceptor, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
37
- PepErrorInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepErrorInterceptor });
38
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepErrorInterceptor, decorators: [{
38
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepErrorInterceptor, decorators: [{
39
39
  type: Injectable
40
40
  }] });
41
41
 
42
42
  class PepLoaderService {
43
+ counter = 0;
44
+ showLoaderSubject = new BehaviorSubject(undefined);
43
45
  get onChanged$() {
44
46
  return this.showLoaderSubject
45
47
  .asObservable()
46
48
  .pipe(debounceTime(500), filter(v => v !== undefined), distinctUntilChanged());
47
49
  }
48
50
  constructor() {
49
- this.counter = 0;
50
- this.showLoaderSubject = new BehaviorSubject(undefined);
51
51
  // Raise custom event for showing the loader.
52
52
  this.onChanged$.subscribe((show) => {
53
53
  this.showLoaderChanged(show);
@@ -75,10 +75,10 @@ class PepLoaderService {
75
75
  this.showLoaderSubject.next(false);
76
76
  }
77
77
  }
78
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepLoaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepLoaderService, providedIn: 'root' });
78
80
  }
79
- PepLoaderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepLoaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80
- PepLoaderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepLoaderService, providedIn: 'root' });
81
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepLoaderService, decorators: [{
81
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepLoaderService, decorators: [{
82
82
  type: Injectable,
83
83
  args: [{
84
84
  providedIn: 'root',
@@ -86,6 +86,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
86
86
  }], ctorParameters: function () { return []; } });
87
87
 
88
88
  class PepLoaderInterceptor {
89
+ injector;
89
90
  constructor(injector) {
90
91
  this.injector = injector;
91
92
  }
@@ -105,10 +106,10 @@ class PepLoaderInterceptor {
105
106
  // return event;
106
107
  // }));
107
108
  }
109
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepLoaderInterceptor, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
110
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepLoaderInterceptor });
108
111
  }
109
- PepLoaderInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepLoaderInterceptor, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
110
- PepLoaderInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepLoaderInterceptor });
111
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepLoaderInterceptor, decorators: [{
112
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepLoaderInterceptor, decorators: [{
112
113
  type: Injectable
113
114
  }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
114
115
 
@@ -133,10 +134,10 @@ class PepProfilerInterceptor {
133
134
  console.log(msg);
134
135
  }));
135
136
  }
137
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepProfilerInterceptor, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
138
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepProfilerInterceptor });
136
139
  }
137
- PepProfilerInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepProfilerInterceptor, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
138
- PepProfilerInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepProfilerInterceptor });
139
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepProfilerInterceptor, decorators: [{
140
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepProfilerInterceptor, decorators: [{
140
141
  type: Injectable
141
142
  }] });
142
143
 
@@ -162,10 +163,10 @@ const httpInterceptorProviders = [
162
163
  // and the underlying ClipboardService. Upon the (click) event, the [clipboard] value
163
164
  // will be copied to the ClipboardService and a (clipboardCopy) event will be emitted.
164
165
  class PepClipboardDirective {
166
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepClipboardDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
167
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepClipboardDirective, selector: "[pepClipboard]", inputs: { value: ["clipboard", "value"] }, outputs: { copyEvent: "clipboardCopy", errorEvent: "clipboardError" }, host: { listeners: { "click": "copyToClipboard()" } }, ngImport: i0 });
165
168
  }
166
- PepClipboardDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepClipboardDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
167
- PepClipboardDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepClipboardDirective, selector: "[pepClipboard]", inputs: { value: ["clipboard", "value"] }, outputs: { copyEvent: "clipboardCopy", errorEvent: "clipboardError" }, host: { listeners: { "click": "copyToClipboard()" } }, ngImport: i0 });
168
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepClipboardDirective, decorators: [{
169
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepClipboardDirective, decorators: [{
169
170
  type: Directive,
170
171
  args: [{
171
172
  selector: '[pepClipboard]',
@@ -211,6 +212,9 @@ var PepScreenSizeType;
211
212
  })(PepScreenSizeType || (PepScreenSizeType = {}));
212
213
  // export type PepScreenSizeType = 'xl' | 'lg' | 'md' | 'sm' | 'xs';
213
214
  class PepLayoutService {
215
+ translate;
216
+ resizeSubject;
217
+ deviceHasMouseSubject;
214
218
  get onResize$() {
215
219
  return this.resizeSubject.asObservable().pipe(distinctUntilChanged());
216
220
  }
@@ -221,16 +225,16 @@ class PepLayoutService {
221
225
  }
222
226
  constructor(translate = null) {
223
227
  this.translate = translate;
224
- this.documentMouseoverListener = (event) => {
225
- this.deviceHasMouseSubject.next(true);
226
- this.deviceHasMouseSubject.complete();
227
- document.removeEventListener('mouseover', this.documentMouseoverListener, false);
228
- };
229
228
  this.resizeSubject = new BehaviorSubject(PepScreenSizeType.LG);
230
229
  this.deviceHasMouseSubject = new BehaviorSubject(false);
231
230
  document.addEventListener('mouseover', this.documentMouseoverListener, false);
232
231
  // document.addEventListener('touchstart', this._documentTouchstartListener, false);
233
232
  }
233
+ documentMouseoverListener = (event) => {
234
+ this.deviceHasMouseSubject.next(true);
235
+ this.deviceHasMouseSubject.complete();
236
+ document.removeEventListener('mouseover', this.documentMouseoverListener, false);
237
+ };
234
238
  // private _documentTouchstartListener = (event: TouchEvent) => {
235
239
  // debugger;
236
240
  // this.isTouchDevice = true;
@@ -328,10 +332,10 @@ class PepLayoutService {
328
332
  const isRtl = _BIDI_RTL_LANGS.indexOf(userLang) >= 0;
329
333
  return isRtl;
330
334
  }
335
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepLayoutService, deps: [{ token: i1.TranslateService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
336
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepLayoutService, providedIn: 'root' });
331
337
  }
332
- PepLayoutService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepLayoutService, deps: [{ token: i1.TranslateService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
333
- PepLayoutService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepLayoutService, providedIn: 'root' });
334
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepLayoutService, decorators: [{
338
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepLayoutService, decorators: [{
335
339
  type: Injectable,
336
340
  args: [{
337
341
  providedIn: 'root',
@@ -341,6 +345,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
341
345
  }] }]; } });
342
346
 
343
347
  class PepRtlClassDirective {
348
+ layoutService;
349
+ renderer;
350
+ element;
344
351
  constructor(layoutService, renderer, element) {
345
352
  this.layoutService = layoutService;
346
353
  this.renderer = renderer;
@@ -352,16 +359,19 @@ class PepRtlClassDirective {
352
359
  this.renderer.addClass(this.element.nativeElement, 'rtl');
353
360
  }
354
361
  }
362
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepRtlClassDirective, deps: [{ token: PepLayoutService }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
363
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepRtlClassDirective, selector: "[pepRtlClass]", ngImport: i0 });
355
364
  }
356
- PepRtlClassDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepRtlClassDirective, deps: [{ token: PepLayoutService }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
357
- PepRtlClassDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepRtlClassDirective, selector: "[pepRtlClass]", ngImport: i0 });
358
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepRtlClassDirective, decorators: [{
365
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepRtlClassDirective, decorators: [{
359
366
  type: Directive,
360
367
  args: [{
361
368
  selector: '[pepRtlClass]',
362
369
  }]
363
370
  }], ctorParameters: function () { return [{ type: PepLayoutService }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; } });
364
371
  class PepRtlDirectionDirective {
372
+ layoutService;
373
+ renderer;
374
+ element;
365
375
  constructor(layoutService, renderer, element) {
366
376
  this.layoutService = layoutService;
367
377
  this.renderer = renderer;
@@ -371,10 +381,10 @@ class PepRtlDirectionDirective {
371
381
  const isRtl = this.layoutService.isRtl();
372
382
  this.renderer.setAttribute(this.element.nativeElement, 'dir', isRtl ? 'rtl' : 'ltr');
373
383
  }
384
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepRtlDirectionDirective, deps: [{ token: PepLayoutService }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
385
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepRtlDirectionDirective, selector: "[pepRtlDirection]", ngImport: i0 });
374
386
  }
375
- PepRtlDirectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepRtlDirectionDirective, deps: [{ token: PepLayoutService }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
376
- PepRtlDirectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepRtlDirectionDirective, selector: "[pepRtlDirection]", ngImport: i0 });
377
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepRtlDirectionDirective, decorators: [{
387
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepRtlDirectionDirective, decorators: [{
378
388
  type: Directive,
379
389
  args: [{
380
390
  selector: '[pepRtlDirection]',
@@ -382,9 +392,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
382
392
  }], ctorParameters: function () { return [{ type: PepLayoutService }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; } });
383
393
 
384
394
  class PepUtilitiesService {
395
+ translate;
396
+ culture = 'en-US';
385
397
  constructor(translate = null) {
386
398
  this.translate = translate;
387
- this.culture = 'en-US';
388
399
  this.culture = this.translate?.getBrowserCultureLang() || 'en-US';
389
400
  // try {
390
401
  // import(`@angular/common/locales/global/${this.culture}`);
@@ -666,10 +677,10 @@ class PepUtilitiesService {
666
677
  const number2 = this.prepareNumberToFormat(numberAsString2);
667
678
  return number === number2;
668
679
  }
680
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepUtilitiesService, deps: [{ token: i1.TranslateService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
681
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepUtilitiesService, providedIn: 'root' });
669
682
  }
670
- PepUtilitiesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepUtilitiesService, deps: [{ token: i1.TranslateService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
671
- PepUtilitiesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepUtilitiesService, providedIn: 'root' });
672
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepUtilitiesService, decorators: [{
683
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepUtilitiesService, decorators: [{
673
684
  type: Injectable,
674
685
  args: [{
675
686
  providedIn: 'root',
@@ -685,10 +696,10 @@ class PepCapitalizePipe {
685
696
  }
686
697
  return value;
687
698
  }
699
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepCapitalizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
700
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PepCapitalizePipe, name: "pepCapitalize" });
688
701
  }
689
- PepCapitalizePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepCapitalizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
690
- PepCapitalizePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepCapitalizePipe, name: "pepCapitalize" });
691
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepCapitalizePipe, decorators: [{
702
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepCapitalizePipe, decorators: [{
692
703
  type: Pipe,
693
704
  args: [{ name: 'pepCapitalize' }]
694
705
  }] });
@@ -700,10 +711,10 @@ class PepEncodePipe {
700
711
  }
701
712
  return value;
702
713
  }
714
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepEncodePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
715
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PepEncodePipe, name: "pepEncode" });
703
716
  }
704
- PepEncodePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepEncodePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
705
- PepEncodePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepEncodePipe, name: "pepEncode" });
706
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepEncodePipe, decorators: [{
717
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepEncodePipe, decorators: [{
707
718
  type: Pipe,
708
719
  args: [{ name: 'pepEncode' }]
709
720
  }] });
@@ -715,10 +726,10 @@ class PepEscapePipe {
715
726
  }
716
727
  return value;
717
728
  }
729
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepEscapePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
730
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PepEscapePipe, name: "pepEscape" });
718
731
  }
719
- PepEscapePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepEscapePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
720
- PepEscapePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepEscapePipe, name: "pepEscape" });
721
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepEscapePipe, decorators: [{
732
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepEscapePipe, decorators: [{
722
733
  type: Pipe,
723
734
  args: [{ name: 'pepEscape' }]
724
735
  }] });
@@ -727,10 +738,10 @@ class PepReplaceLineBreaksPipe {
727
738
  const newValue = value.replace(/(<br\ ?\/?>)/g, ' ');
728
739
  return newValue;
729
740
  }
741
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepReplaceLineBreaksPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
742
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PepReplaceLineBreaksPipe, name: "pepReplaceLineBreaks" });
730
743
  }
731
- PepReplaceLineBreaksPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepReplaceLineBreaksPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
732
- PepReplaceLineBreaksPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepReplaceLineBreaksPipe, name: "pepReplaceLineBreaks" });
733
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepReplaceLineBreaksPipe, decorators: [{
744
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepReplaceLineBreaksPipe, decorators: [{
734
745
  type: Pipe,
735
746
  args: [{ name: 'pepReplaceLineBreaks' }]
736
747
  }] });
@@ -751,10 +762,10 @@ class PepDateFormatterPipe {
751
762
  }
752
763
  return res;
753
764
  }
765
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepDateFormatterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
766
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PepDateFormatterPipe, name: "pepDateFormatter" });
754
767
  }
755
- PepDateFormatterPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepDateFormatterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
756
- PepDateFormatterPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepDateFormatterPipe, name: "pepDateFormatter" });
757
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepDateFormatterPipe, decorators: [{
768
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepDateFormatterPipe, decorators: [{
758
769
  type: Pipe,
759
770
  args: [{ name: 'pepDateFormatter' }]
760
771
  }] });
@@ -770,28 +781,30 @@ class PepDateStringFormatterPipe {
770
781
  }
771
782
  return res;
772
783
  }
784
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepDateStringFormatterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
785
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PepDateStringFormatterPipe, name: "pepDateStringFormatter" });
773
786
  }
774
- PepDateStringFormatterPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepDateStringFormatterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
775
- PepDateStringFormatterPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepDateStringFormatterPipe, name: "pepDateStringFormatter" });
776
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepDateStringFormatterPipe, decorators: [{
787
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepDateStringFormatterPipe, decorators: [{
777
788
  type: Pipe,
778
789
  args: [{ name: 'pepDateStringFormatter' }]
779
790
  }] });
780
791
  class PepSafeHtmlPipe {
792
+ sanitizer;
781
793
  constructor(sanitizer) {
782
794
  this.sanitizer = sanitizer;
783
795
  }
784
796
  transform(html) {
785
797
  return this.sanitizer.bypassSecurityTrustHtml(html);
786
798
  }
799
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepSafeHtmlPipe, deps: [{ token: i1$1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
800
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PepSafeHtmlPipe, name: "pepSafeHtml" });
787
801
  }
788
- PepSafeHtmlPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepSafeHtmlPipe, deps: [{ token: i1$1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
789
- PepSafeHtmlPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepSafeHtmlPipe, name: "pepSafeHtml" });
790
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepSafeHtmlPipe, decorators: [{
802
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepSafeHtmlPipe, decorators: [{
791
803
  type: Pipe,
792
804
  args: [{ name: 'pepSafeHtml' }]
793
805
  }], ctorParameters: function () { return [{ type: i1$1.DomSanitizer }]; } });
794
806
  class PepSafePipe {
807
+ sanitizer;
795
808
  constructor(sanitizer) {
796
809
  this.sanitizer = sanitizer;
797
810
  }
@@ -811,10 +824,10 @@ class PepSafePipe {
811
824
  throw new Error(`Invalid safe type specified: ${type}`);
812
825
  }
813
826
  }
827
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepSafePipe, deps: [{ token: i1$1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
828
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PepSafePipe, name: "pepSafe" });
814
829
  }
815
- PepSafePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepSafePipe, deps: [{ token: i1$1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
816
- PepSafePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepSafePipe, name: "pepSafe" });
817
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepSafePipe, decorators: [{
830
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepSafePipe, decorators: [{
818
831
  type: Pipe,
819
832
  args: [{ name: 'pepSafe' }]
820
833
  }], ctorParameters: function () { return [{ type: i1$1.DomSanitizer }]; } });
@@ -823,14 +836,15 @@ class PepSplitUppercasePipe {
823
836
  const newValue = value.replace(/([a-z])([A-Z])/g, '$1 $2');
824
837
  return newValue;
825
838
  }
839
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepSplitUppercasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
840
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PepSplitUppercasePipe, name: "pepSplitUppercase" });
826
841
  }
827
- PepSplitUppercasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepSplitUppercasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
828
- PepSplitUppercasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepSplitUppercasePipe, name: "pepSplitUppercase" });
829
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepSplitUppercasePipe, decorators: [{
842
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepSplitUppercasePipe, decorators: [{
830
843
  type: Pipe,
831
844
  args: [{ name: 'pepSplitUppercase' }]
832
845
  }] });
833
846
  class PepToNumberPipe {
847
+ utilitiesService;
834
848
  constructor(utilitiesService) {
835
849
  this.utilitiesService = utilitiesService;
836
850
  }
@@ -842,15 +856,16 @@ class PepToNumberPipe {
842
856
  return numberValue;
843
857
  // return parseInt(value);
844
858
  }
859
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepToNumberPipe, deps: [{ token: PepUtilitiesService }], target: i0.ɵɵFactoryTarget.Pipe });
860
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PepToNumberPipe, name: "pepToNumber" });
845
861
  }
846
- PepToNumberPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepToNumberPipe, deps: [{ token: PepUtilitiesService }], target: i0.ɵɵFactoryTarget.Pipe });
847
- PepToNumberPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepToNumberPipe, name: "pepToNumber" });
848
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepToNumberPipe, decorators: [{
862
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepToNumberPipe, decorators: [{
849
863
  type: Pipe,
850
864
  args: [{ name: 'pepToNumber' }]
851
865
  }], ctorParameters: function () { return [{ type: PepUtilitiesService }]; } });
852
866
 
853
867
  class DateAgoPipe {
868
+ translateService;
854
869
  constructor(translateService) {
855
870
  this.translateService = translateService;
856
871
  }
@@ -883,10 +898,10 @@ class DateAgoPipe {
883
898
  }
884
899
  return value;
885
900
  }
901
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateAgoPipe, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe });
902
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DateAgoPipe, name: "dateAgo" });
886
903
  }
887
- DateAgoPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateAgoPipe, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe });
888
- DateAgoPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DateAgoPipe, name: "dateAgo" });
889
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateAgoPipe, decorators: [{
904
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateAgoPipe, decorators: [{
890
905
  type: Pipe,
891
906
  args: [{
892
907
  name: 'dateAgo'
@@ -894,11 +909,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
894
909
  }], ctorParameters: function () { return [{ type: i1.TranslateService }]; } });
895
910
 
896
911
  class PepInputAutoWidthDirective {
912
+ renderer;
913
+ el;
914
+ includePadding = true;
915
+ input = null;
897
916
  constructor(renderer, el) {
898
917
  this.renderer = renderer;
899
918
  this.el = el;
900
- this.includePadding = true;
901
- this.input = null;
902
919
  }
903
920
  ngAfterViewInit() {
904
921
  if (this.el.nativeElement.tagName.toLowerCase() === 'input') {
@@ -956,10 +973,10 @@ class PepInputAutoWidthDirective {
956
973
  fontFamily;
957
974
  return ctx ? ctx.measureText(value).width : 0;
958
975
  }
976
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepInputAutoWidthDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
977
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepInputAutoWidthDirective, selector: "[pepAutoWidth]", inputs: { includePadding: "includePadding" }, ngImport: i0 });
959
978
  }
960
- PepInputAutoWidthDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepInputAutoWidthDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
961
- PepInputAutoWidthDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepInputAutoWidthDirective, selector: "[pepAutoWidth]", inputs: { includePadding: "includePadding" }, ngImport: i0 });
962
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepInputAutoWidthDirective, decorators: [{
979
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepInputAutoWidthDirective, decorators: [{
963
980
  type: Directive,
964
981
  args: [{
965
982
  selector: '[pepAutoWidth]',
@@ -969,6 +986,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
969
986
  }] } });
970
987
 
971
988
  class PepButtonBlurDirective {
989
+ element;
972
990
  constructor(element) {
973
991
  this.element = element;
974
992
  }
@@ -977,10 +995,10 @@ class PepButtonBlurDirective {
977
995
  this.element.nativeElement.blur();
978
996
  }, 0);
979
997
  }
998
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepButtonBlurDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
999
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepButtonBlurDirective, selector: "[pepButtonBlur]", host: { listeners: { "click": "onClick()" } }, ngImport: i0 });
980
1000
  }
981
- PepButtonBlurDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepButtonBlurDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
982
- PepButtonBlurDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepButtonBlurDirective, selector: "[pepButtonBlur]", host: { listeners: { "click": "onClick()" } }, ngImport: i0 });
983
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepButtonBlurDirective, decorators: [{
1001
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepButtonBlurDirective, decorators: [{
984
1002
  type: Directive,
985
1003
  args: [{
986
1004
  selector: '[pepButtonBlur]',
@@ -991,24 +1009,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
991
1009
  }] } });
992
1010
 
993
1011
  class PepButtonLoaderDirective {
1012
+ renderer;
1013
+ element;
1014
+ utilitiesService;
1015
+ document;
1016
+ loaderTime = 0;
1017
+ loaderColor = null;
1018
+ loaderWidth = '1.5rem';
1019
+ loaderHeight = 'inherit';
1020
+ ignoreDisabledStyle = false;
1021
+ _isLoading = false;
1022
+ _finish = null;
994
1023
  set finish(value) {
995
1024
  this._finish = value;
996
1025
  if (this._isLoading && value) {
997
1026
  this.toggleLoading(false);
998
1027
  }
999
1028
  }
1029
+ svgIcon;
1000
1030
  constructor(renderer, element, utilitiesService, document) {
1001
1031
  this.renderer = renderer;
1002
1032
  this.element = element;
1003
1033
  this.utilitiesService = utilitiesService;
1004
1034
  this.document = document;
1005
- this.loaderTime = 0;
1006
- this.loaderColor = null;
1007
- this.loaderWidth = '1.5rem';
1008
- this.loaderHeight = 'inherit';
1009
- this.ignoreDisabledStyle = false;
1010
- this._isLoading = false;
1011
- this._finish = null;
1012
1035
  }
1013
1036
  clickEvent(event) {
1014
1037
  this.toggleLoading(true);
@@ -1068,10 +1091,10 @@ class PepButtonLoaderDirective {
1068
1091
  }
1069
1092
  }
1070
1093
  }
1094
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepButtonLoaderDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: PepUtilitiesService }, { token: DOCUMENT, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
1095
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepButtonLoaderDirective, selector: "[pepButtonLoader]", inputs: { loaderTime: "loaderTime", loaderColor: "loaderColor", loaderWidth: "loaderWidth", loaderHeight: "loaderHeight", ignoreDisabledStyle: "ignoreDisabledStyle", finish: "finish" }, host: { listeners: { "click": "clickEvent($event)" } }, ngImport: i0 });
1071
1096
  }
1072
- PepButtonLoaderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepButtonLoaderDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: PepUtilitiesService }, { token: DOCUMENT, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
1073
- PepButtonLoaderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepButtonLoaderDirective, selector: "[pepButtonLoader]", inputs: { loaderTime: "loaderTime", loaderColor: "loaderColor", loaderWidth: "loaderWidth", loaderHeight: "loaderHeight", ignoreDisabledStyle: "ignoreDisabledStyle", finish: "finish" }, host: { listeners: { "click": "clickEvent($event)" } }, ngImport: i0 });
1074
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepButtonLoaderDirective, decorators: [{
1097
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepButtonLoaderDirective, decorators: [{
1075
1098
  type: Directive,
1076
1099
  args: [{
1077
1100
  selector: '[pepButtonLoader]',
@@ -1099,6 +1122,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1099
1122
  }] } });
1100
1123
 
1101
1124
  class PepMenuBlurDirective {
1125
+ element;
1102
1126
  constructor(element) {
1103
1127
  this.element = element;
1104
1128
  }
@@ -1112,10 +1136,10 @@ class PepMenuBlurDirective {
1112
1136
  this.element.nativeElement.blur();
1113
1137
  }, 0);
1114
1138
  }
1139
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepMenuBlurDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1140
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepMenuBlurDirective, selector: "[pepMenuBlur]", host: { listeners: { "menuClosed": "menuClosedEvent()", "menuOpened": "menuOpenedEvent()" } }, ngImport: i0 });
1115
1141
  }
1116
- PepMenuBlurDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepMenuBlurDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1117
- PepMenuBlurDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepMenuBlurDirective, selector: "[pepMenuBlur]", host: { listeners: { "menuClosed": "menuClosedEvent()", "menuOpened": "menuOpenedEvent()" } }, ngImport: i0 });
1118
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepMenuBlurDirective, decorators: [{
1142
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepMenuBlurDirective, decorators: [{
1119
1143
  type: Directive,
1120
1144
  args: [{
1121
1145
  selector: '[pepMenuBlur]',
@@ -1129,6 +1153,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1129
1153
  }] } });
1130
1154
 
1131
1155
  class PepDataQaDirective {
1156
+ renderer;
1157
+ element;
1158
+ dataQa;
1132
1159
  constructor(renderer, element) {
1133
1160
  this.renderer = renderer;
1134
1161
  this.element = element;
@@ -1136,10 +1163,10 @@ class PepDataQaDirective {
1136
1163
  ngOnInit() {
1137
1164
  this.renderer.setAttribute(this.element.nativeElement, 'data-qa', this.dataQa);
1138
1165
  }
1166
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepDataQaDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1167
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepDataQaDirective, selector: "[pepDataQa]", inputs: { dataQa: ["pepDataQa", "dataQa"] }, ngImport: i0 });
1139
1168
  }
1140
- PepDataQaDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepDataQaDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1141
- PepDataQaDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepDataQaDirective, selector: "[pepDataQa]", inputs: { dataQa: ["pepDataQa", "dataQa"] }, ngImport: i0 });
1142
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepDataQaDirective, decorators: [{
1169
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepDataQaDirective, decorators: [{
1143
1170
  type: Directive,
1144
1171
  args: [{
1145
1172
  selector: '[pepDataQa]',
@@ -1150,19 +1177,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1150
1177
  }] } });
1151
1178
 
1152
1179
  class PepPreventMultiClickDirective {
1153
- constructor() {
1154
- this.disabledTime = 1000;
1155
- }
1180
+ disabledTime = 1000;
1156
1181
  clickEvent(event) {
1157
1182
  event.srcElement.setAttribute('disabled', true);
1158
1183
  setTimeout(() => {
1159
1184
  event.srcElement.removeAttribute('disabled');
1160
1185
  }, this.disabledTime);
1161
1186
  }
1187
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepPreventMultiClickDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1188
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepPreventMultiClickDirective, selector: "[pepPreventMultiClick]", inputs: { disabledTime: "disabledTime" }, host: { listeners: { "click": "clickEvent($event)" } }, ngImport: i0 });
1162
1189
  }
1163
- PepPreventMultiClickDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepPreventMultiClickDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1164
- PepPreventMultiClickDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepPreventMultiClickDirective, selector: "[pepPreventMultiClick]", inputs: { disabledTime: "disabledTime" }, host: { listeners: { "click": "clickEvent($event)" } }, ngImport: i0 });
1165
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepPreventMultiClickDirective, decorators: [{
1190
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepPreventMultiClickDirective, decorators: [{
1166
1191
  type: Directive,
1167
1192
  args: [{
1168
1193
  selector: '[pepPreventMultiClick]',
@@ -1175,25 +1200,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1175
1200
  }] } });
1176
1201
 
1177
1202
  class PepPrintDirective {
1178
- constructor() {
1179
- this._printStyle = [];
1180
- /**
1181
- * @memberof PepPrintDirective
1182
- */
1183
- this.useExistingCss = true;
1184
- /**
1185
- * A delay in milliseconds to force the print dialog to wait before opened. Default: 0
1186
- *
1187
- * @memberof PepPrintDirective
1188
- */
1189
- this.printDelay = 0;
1190
- /**
1191
- * @returns html for the given tag
1192
- *
1193
- * @memberof PepPrintDirective
1194
- */
1195
- this._styleSheetFile = '';
1196
- }
1203
+ _printStyle = [];
1204
+ /**
1205
+ * @memberof PepPrintDirective
1206
+ */
1207
+ printSectionId;
1208
+ /**
1209
+ * @memberof PepPrintDirective
1210
+ */
1211
+ printTitle;
1212
+ /**
1213
+ * @memberof PepPrintDirective
1214
+ */
1215
+ useExistingCss = true;
1216
+ /**
1217
+ * A delay in milliseconds to force the print dialog to wait before opened. Default: 0
1218
+ *
1219
+ * @memberof PepPrintDirective
1220
+ */
1221
+ printDelay = 0;
1197
1222
  /**
1198
1223
  * @memberof PepPrintDirective
1199
1224
  */
@@ -1217,6 +1242,12 @@ class PepPrintDirective {
1217
1242
  returnStyleValues() {
1218
1243
  return `<style> ${this._printStyle.join(' ').replace(/,/g, ';')} </style>`;
1219
1244
  }
1245
+ /**
1246
+ * @returns html for the given tag
1247
+ *
1248
+ * @memberof PepPrintDirective
1249
+ */
1250
+ _styleSheetFile = '';
1220
1251
  /**
1221
1252
  * @memberof PepPrintDirective
1222
1253
  * @param cssList
@@ -1317,10 +1348,10 @@ class PepPrintDirective {
1317
1348
  </html>`);
1318
1349
  popupWin.document.close();
1319
1350
  }
1351
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepPrintDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1352
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepPrintDirective, selector: "[pepPrint]", inputs: { printSectionId: "printSectionId", printTitle: "printTitle", useExistingCss: "useExistingCss", printDelay: "printDelay", printStyle: "printStyle", styleSheetFile: "styleSheetFile" }, host: { listeners: { "click": "print()" } }, ngImport: i0 });
1320
1353
  }
1321
- PepPrintDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepPrintDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1322
- PepPrintDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepPrintDirective, selector: "[pepPrint]", inputs: { printSectionId: "printSectionId", printTitle: "printTitle", useExistingCss: "useExistingCss", printDelay: "printDelay", printStyle: "printStyle", styleSheetFile: "styleSheetFile" }, host: { listeners: { "click": "print()" } }, ngImport: i0 });
1323
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepPrintDirective, decorators: [{
1354
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepPrintDirective, decorators: [{
1324
1355
  type: Directive,
1325
1356
  args: [{
1326
1357
  selector: "[pepPrint]"
@@ -1436,10 +1467,10 @@ class PepJwtHelperService {
1436
1467
  }
1437
1468
  return authScheme;
1438
1469
  }
1470
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepJwtHelperService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1471
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepJwtHelperService, providedIn: 'root' });
1439
1472
  }
1440
- PepJwtHelperService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepJwtHelperService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1441
- PepJwtHelperService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepJwtHelperService, providedIn: 'root' });
1442
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepJwtHelperService, decorators: [{
1473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepJwtHelperService, decorators: [{
1443
1474
  type: Injectable,
1444
1475
  args: [{
1445
1476
  providedIn: 'root',
@@ -1447,14 +1478,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1447
1478
  }] });
1448
1479
 
1449
1480
  class PepSessionService {
1481
+ jwtHelper;
1482
+ IDP_TOKEN_KEY = 'idp_token';
1483
+ PAPI_BASE_URL_KEY = 'pepperi.baseurl';
1484
+ // private readonly API_BASE_URL_KEY = 'pepperi.publicapibaseurl';
1485
+ // private readonly WAPI_TOKEN_KEY = 'auth_token';
1486
+ WAPI_BASE_URL_KEY = 'serverHostURL'; // pepperi.webapibaseurl
1450
1487
  // private readonly PEPPERI_CONSUMER_TOKEN: 'YY2pAwx6Exo2LWXrUllF9xzSfWF53wqc';
1451
1488
  constructor(jwtHelper) {
1452
1489
  this.jwtHelper = jwtHelper;
1453
- this.IDP_TOKEN_KEY = 'idp_token';
1454
- this.PAPI_BASE_URL_KEY = 'pepperi.baseurl';
1455
- // private readonly API_BASE_URL_KEY = 'pepperi.publicapibaseurl';
1456
- // private readonly WAPI_TOKEN_KEY = 'auth_token';
1457
- this.WAPI_BASE_URL_KEY = 'serverHostURL'; // pepperi.webapibaseurl
1458
1490
  }
1459
1491
  getParseToken() {
1460
1492
  // debugger;
@@ -1505,10 +1537,10 @@ class PepSessionService {
1505
1537
  const tokenObj = this.getParseToken();
1506
1538
  return tokenObj ? tokenObj[this.PAPI_BASE_URL_KEY] : null;
1507
1539
  }
1540
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepSessionService, deps: [{ token: PepJwtHelperService }], target: i0.ɵɵFactoryTarget.Injectable });
1541
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepSessionService, providedIn: 'root' });
1508
1542
  }
1509
- PepSessionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepSessionService, deps: [{ token: PepJwtHelperService }], target: i0.ɵɵFactoryTarget.Injectable });
1510
- PepSessionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepSessionService, providedIn: 'root' });
1511
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepSessionService, decorators: [{
1543
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepSessionService, decorators: [{
1512
1544
  type: Injectable,
1513
1545
  args: [{
1514
1546
  providedIn: 'root',
@@ -1516,6 +1548,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1516
1548
  }], ctorParameters: function () { return [{ type: PepJwtHelperService }]; } });
1517
1549
 
1518
1550
  class PepFileService {
1551
+ scripts;
1552
+ styles;
1519
1553
  constructor() {
1520
1554
  this.scripts = new Map();
1521
1555
  this.styles = new Map();
@@ -1753,10 +1787,10 @@ class PepFileService {
1753
1787
  const url = URL.createObjectURL(blob);
1754
1788
  return url;
1755
1789
  }
1790
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepFileService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1791
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepFileService, providedIn: 'root' });
1756
1792
  }
1757
- PepFileService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepFileService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1758
- PepFileService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepFileService, providedIn: 'root' });
1759
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepFileService, decorators: [{
1793
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepFileService, decorators: [{
1760
1794
  type: Injectable,
1761
1795
  args: [{
1762
1796
  providedIn: 'root',
@@ -1764,16 +1798,133 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1764
1798
  }], ctorParameters: function () { return []; } });
1765
1799
 
1766
1800
  class PepCustomizationService {
1801
+ sessionService;
1802
+ fileService;
1803
+ fb;
1804
+ static STAND_ALONE_FIELD_CLASS_NAME = 'pep-field';
1805
+ static STAND_ALONE_FIELD_NO_SPACING_CLASS_NAME = 'pep-field-no-spacing';
1806
+ static REM_STRING = 'rem';
1807
+ static PX_STRING = 'px';
1808
+ static USER_THEME = 'user_theme';
1809
+ static USER_COLOR = 'user_color';
1810
+ static USER_THEME_VARIABLES = 'user_theme_variables';
1811
+ // Header height
1812
+ static HEADER_HEIGHT_KEY = '--pep-header-height';
1813
+ // Side bar variables keys
1814
+ static SIDE_BAR_WIDTH_KEY = '--pep-side-bar-width';
1815
+ // Settings width
1816
+ static SETTINGS_WIDTH_KEY = '--pep-settings-bar-width';
1817
+ // Top bar variables keys
1818
+ static TOP_BAR_SPACING_TOP_KEY = '--pep-top-bar-spacing-top';
1819
+ static TOP_BAR_SPACING_BOTTOM_KEY = '--pep-top-bar-spacing-bottom';
1820
+ static TOP_BAR_FIELD_HEIGHT_KEY = '--pep-top-bar-field-height';
1821
+ // Footer variables keys
1822
+ static FOOTER_HEIGHT_KEY = '--pep-footer-bar-height';
1823
+ static FOOTER_BAR_SPACING_TOP_KEY = '--pep-footer-bar-spacing-top';
1824
+ static FOOTER_BAR_SPACING_BOTTOM_KEY = '--pep-footer-bar-spacing-bottom';
1825
+ // Main container height
1826
+ static MAIN_HEIGHT_KEY = '--pep-main-height';
1827
+ // Colors variables keys
1828
+ static COLOR_USER_PRIMARY_KEY = '--pep-color-user-primary';
1829
+ static COLOR_USER_SECONDARY_KEY = '--pep-color-user-secondary';
1830
+ static COLOR_SYSTEM_PRIMARY_INVERT_KEY = '--pep-color-system-primary-invert';
1831
+ static COLOR_SYSTEM_PRIMARY_KEY = '--pep-color-system-primary';
1832
+ static COLOR_TEXT_LINK_KEY = '--pep-color-text-link';
1833
+ static COLOR_SYSTEM_CAUTION_KEY = '--pep-color-system-caution';
1834
+ static COLOR_SYSTEM_SUCCESS_KEY = '--pep-color-system-success';
1835
+ static COLOR_STRONG_KEY = '--pep-color-strong';
1836
+ static COLOR_REGULAR_KEY = '--pep-color-regular';
1837
+ static COLOR_WEAK_KEY = '--pep-color-weak';
1838
+ // Top header variables keys
1839
+ static COLOR_TOP_LEGACY_KEY = '--pep-color-legacy';
1840
+ static COLOR_TOP_HEADER_KEY = '--pep-color-top-header';
1841
+ static STYLE_TOP_HEADER_KEY = '--pep-style-top-header';
1842
+ // Loader variables keys
1843
+ static COLOR_LOADER_KEY = '--pep-color-loader';
1844
+ // QS variables keys
1845
+ static COLOR_QS_KEY = '--pep-color-qs';
1846
+ static STYLE_QS_KEY = '--pep-style-qs';
1847
+ // Fonts variables keys
1848
+ static FONT_FAMILY_TITLE_KEY = '--pep-font-family-title';
1849
+ static FONT_FAMILY_TITLE_NORMAL_URL_KEY = '--pep-font-family-title-normal-url';
1850
+ static FONT_FAMILY_TITLE_BOLD_URL_KEY = '--pep-font-family-title-bold-url';
1851
+ static FONT_FAMILY_BODY_KEY = '--pep-font-family-body';
1852
+ static FONT_FAMILY_BODY_NORMAL_URL_KEY = '--pep-font-family-body-normal-url';
1853
+ static FONT_FAMILY_BODY_BOLD_URL_KEY = '--pep-font-family-body-bold-url';
1854
+ // Border radius variables keys
1855
+ static BORDER_RADIUS_KEY = '--pep-border-radius';
1856
+ static BORDER_RADIUS_SM_KEY = PepCustomizationService.BORDER_RADIUS_KEY + '-sm';
1857
+ static BORDER_RADIUS_MD_KEY = PepCustomizationService.BORDER_RADIUS_KEY + '-md';
1858
+ static BORDER_RADIUS_LG_KEY = PepCustomizationService.BORDER_RADIUS_KEY + '-lg';
1859
+ static BORDER_RADIUS_XL_KEY = PepCustomizationService.BORDER_RADIUS_KEY + '-xl';
1860
+ // Fonts variables keys
1861
+ static FONT_SIZE_2XS_KEY = '--pep-font-size-2xs';
1862
+ static FONT_SIZE_XS_KEY = '--pep-font-size-xs';
1863
+ static FONT_SIZE_SM_KEY = '--pep-font-size-sm';
1864
+ static FONT_SIZE_MD_KEY = '--pep-font-size-md';
1865
+ static FONT_SIZE_LG_KEY = '--pep-font-size-lg';
1866
+ static FONT_SIZE_XL_KEY = '--pep-font-size-xl';
1867
+ static FONT_SIZE_2XL_KEY = '--pep-font-size-2xl';
1868
+ // Line height variables keys
1869
+ static LINE_HEIGHT_2XS_KEY = '--pep-line-height-2xs';
1870
+ static LINE_HEIGHT_XS_KEY = '--pep-line-height-xs';
1871
+ static LINE_HEIGHT_SM_KEY = '--pep-line-height-sm';
1872
+ static LINE_HEIGHT_MD_KEY = '--pep-line-height-md';
1873
+ static LINE_HEIGHT_LG_KEY = '--pep-line-height-lg';
1874
+ static LINE_HEIGHT_XL_KEY = '--pep-line-height-xl';
1875
+ static LINE_HEIGHT_2XL_KEY = '--pep-line-height-2xl';
1876
+ // Shadows offset variables keys
1877
+ static SHADOW_NONE_OFFSET_KEY = '--pep-shadow-none-offset';
1878
+ static SHADOW_XS_OFFSET_KEY = '--pep-shadow-xs-offset';
1879
+ static SHADOW_SM_OFFSET_KEY = '--pep-shadow-sm-offset';
1880
+ static SHADOW_MD_OFFSET_KEY = '--pep-shadow-md-offset';
1881
+ static SHADOW_LG_OFFSET_KEY = '--pep-shadow-lg-offset';
1882
+ static SHADOW_XL_OFFSET_KEY = '--pep-shadow-xl-offset';
1883
+ // Spacing variables keys
1884
+ static SPACING_SIZE_2XS_KEY = '--pep-spacing-2xs';
1885
+ static SPACING_SIZE_XS_KEY = '--pep-spacing-xs';
1886
+ static SPACING_SIZE_SM_KEY = '--pep-spacing-sm';
1887
+ static SPACING_SIZE_MD_KEY = '--pep-spacing-md';
1888
+ static SPACING_SIZE_LG_KEY = '--pep-spacing-lg';
1889
+ static SPACING_SIZE_XL_KEY = '--pep-spacing-xl';
1890
+ static SPACING_SIZE_2XL_KEY = '--pep-spacing-2xl';
1891
+ static SPACING_SIZE_3XL_KEY = '--pep-spacing-3xl';
1892
+ static SPACING_SIZE_4XL_KEY = '--pep-spacing-4xl';
1893
+ static SPACING_SIZE_5XL_KEY = '--pep-spacing-5xl';
1894
+ static SPACING_SIZE_6XL_KEY = '--pep-spacing-6xl';
1895
+ static SPACING_SIZE_7XL_KEY = '--pep-spacing-7xl';
1896
+ static SPACING_SIZE_8XL_KEY = '--pep-spacing-8xl';
1897
+ static SPACING_SIZE_9XL_KEY = '--pep-spacing-9xl';
1898
+ // Form variables keys
1899
+ static FORM_FIELD_HEIGHT_KEY = '--pep-form-field-height';
1900
+ static FORM_FIELD_TITLE_HEIGHT_KEY = '--pep-form-field-title-height';
1901
+ static FORM_FIELD_SPACEING_KEY = '--pep-form-field-spacing';
1902
+ static FORM_SPACEING_KEY = '--pep-form-spacing';
1903
+ // Card variables keys
1904
+ static CARD_FIELD_HEIGHT_KEY = '--pep-card-field-height';
1905
+ static CARD_SPACEING_KEY = '--pep-card-spacing';
1906
+ static CARD_SHADOW_OFFSET_KEY = '--pep-shadow-card-offset';
1907
+ static CARD_BORDER_RADIUS_KEY = '--pep-card-border-radius';
1908
+ // Table variables keys
1909
+ static TABLE_FIELD_HEIGHT_KEY = '--pep-table-field-height';
1910
+ static TABLE_SPACEING_KEY = '--pep-table-spacing';
1911
+ static TABLE_BORDER_RADIUS_KEY = '--pep-table-border-radius';
1912
+ // // Branding keys
1913
+ // static BRANDING_LOGO_SRC = '--pep-branding-logo-src';
1914
+ // static FAV_ICON_SRC = '--pep-favicon-src';
1915
+ static DEFAULT_HEADER_HEIGHT = 64; // Default
1916
+ static DEFAULT_SPINNER_COLOR = '#78aa00';
1917
+ static DEFAULT_BRANDING_COLOR = '#fff';
1918
+ hasCustomHomepage = null;
1919
+ hasCustomHeader = null;
1920
+ customHeaderHeight = PepCustomizationService.DEFAULT_HEADER_HEIGHT;
1921
+ mainContHeight = 0;
1922
+ footerHeight = new BehaviorSubject(0);
1923
+ settingsWidth = new BehaviorSubject(0);
1767
1924
  constructor(sessionService, fileService, fb) {
1768
1925
  this.sessionService = sessionService;
1769
1926
  this.fileService = fileService;
1770
1927
  this.fb = fb;
1771
- this.hasCustomHomepage = null;
1772
- this.hasCustomHeader = null;
1773
- this.customHeaderHeight = PepCustomizationService.DEFAULT_HEADER_HEIGHT;
1774
- this.mainContHeight = 0;
1775
- this.footerHeight = new BehaviorSubject(0);
1776
- this.settingsWidth = new BehaviorSubject(0);
1777
1928
  this.hideFooter();
1778
1929
  //
1779
1930
  }
@@ -2432,124 +2583,10 @@ class PepCustomizationService {
2432
2583
  }
2433
2584
  return isBright;
2434
2585
  }
2586
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepCustomizationService, deps: [{ token: PepSessionService }, { token: PepFileService }, { token: i3.FormBuilder }], target: i0.ɵɵFactoryTarget.Injectable });
2587
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepCustomizationService, providedIn: 'root' });
2435
2588
  }
2436
- PepCustomizationService.STAND_ALONE_FIELD_CLASS_NAME = 'pep-field';
2437
- PepCustomizationService.STAND_ALONE_FIELD_NO_SPACING_CLASS_NAME = 'pep-field-no-spacing';
2438
- PepCustomizationService.REM_STRING = 'rem';
2439
- PepCustomizationService.PX_STRING = 'px';
2440
- PepCustomizationService.USER_THEME = 'user_theme';
2441
- PepCustomizationService.USER_COLOR = 'user_color';
2442
- PepCustomizationService.USER_THEME_VARIABLES = 'user_theme_variables';
2443
- // Header height
2444
- PepCustomizationService.HEADER_HEIGHT_KEY = '--pep-header-height';
2445
- // Side bar variables keys
2446
- PepCustomizationService.SIDE_BAR_WIDTH_KEY = '--pep-side-bar-width';
2447
- // Settings width
2448
- PepCustomizationService.SETTINGS_WIDTH_KEY = '--pep-settings-bar-width';
2449
- // Top bar variables keys
2450
- PepCustomizationService.TOP_BAR_SPACING_TOP_KEY = '--pep-top-bar-spacing-top';
2451
- PepCustomizationService.TOP_BAR_SPACING_BOTTOM_KEY = '--pep-top-bar-spacing-bottom';
2452
- PepCustomizationService.TOP_BAR_FIELD_HEIGHT_KEY = '--pep-top-bar-field-height';
2453
- // Footer variables keys
2454
- PepCustomizationService.FOOTER_HEIGHT_KEY = '--pep-footer-bar-height';
2455
- PepCustomizationService.FOOTER_BAR_SPACING_TOP_KEY = '--pep-footer-bar-spacing-top';
2456
- PepCustomizationService.FOOTER_BAR_SPACING_BOTTOM_KEY = '--pep-footer-bar-spacing-bottom';
2457
- // Main container height
2458
- PepCustomizationService.MAIN_HEIGHT_KEY = '--pep-main-height';
2459
- // Colors variables keys
2460
- PepCustomizationService.COLOR_USER_PRIMARY_KEY = '--pep-color-user-primary';
2461
- PepCustomizationService.COLOR_USER_SECONDARY_KEY = '--pep-color-user-secondary';
2462
- PepCustomizationService.COLOR_SYSTEM_PRIMARY_INVERT_KEY = '--pep-color-system-primary-invert';
2463
- PepCustomizationService.COLOR_SYSTEM_PRIMARY_KEY = '--pep-color-system-primary';
2464
- PepCustomizationService.COLOR_TEXT_LINK_KEY = '--pep-color-text-link';
2465
- PepCustomizationService.COLOR_SYSTEM_CAUTION_KEY = '--pep-color-system-caution';
2466
- PepCustomizationService.COLOR_SYSTEM_SUCCESS_KEY = '--pep-color-system-success';
2467
- PepCustomizationService.COLOR_STRONG_KEY = '--pep-color-strong';
2468
- PepCustomizationService.COLOR_REGULAR_KEY = '--pep-color-regular';
2469
- PepCustomizationService.COLOR_WEAK_KEY = '--pep-color-weak';
2470
- // Top header variables keys
2471
- PepCustomizationService.COLOR_TOP_LEGACY_KEY = '--pep-color-legacy';
2472
- PepCustomizationService.COLOR_TOP_HEADER_KEY = '--pep-color-top-header';
2473
- PepCustomizationService.STYLE_TOP_HEADER_KEY = '--pep-style-top-header';
2474
- // Loader variables keys
2475
- PepCustomizationService.COLOR_LOADER_KEY = '--pep-color-loader';
2476
- // QS variables keys
2477
- PepCustomizationService.COLOR_QS_KEY = '--pep-color-qs';
2478
- PepCustomizationService.STYLE_QS_KEY = '--pep-style-qs';
2479
- // Fonts variables keys
2480
- PepCustomizationService.FONT_FAMILY_TITLE_KEY = '--pep-font-family-title';
2481
- PepCustomizationService.FONT_FAMILY_TITLE_NORMAL_URL_KEY = '--pep-font-family-title-normal-url';
2482
- PepCustomizationService.FONT_FAMILY_TITLE_BOLD_URL_KEY = '--pep-font-family-title-bold-url';
2483
- PepCustomizationService.FONT_FAMILY_BODY_KEY = '--pep-font-family-body';
2484
- PepCustomizationService.FONT_FAMILY_BODY_NORMAL_URL_KEY = '--pep-font-family-body-normal-url';
2485
- PepCustomizationService.FONT_FAMILY_BODY_BOLD_URL_KEY = '--pep-font-family-body-bold-url';
2486
- // Border radius variables keys
2487
- PepCustomizationService.BORDER_RADIUS_KEY = '--pep-border-radius';
2488
- PepCustomizationService.BORDER_RADIUS_SM_KEY = PepCustomizationService.BORDER_RADIUS_KEY + '-sm';
2489
- PepCustomizationService.BORDER_RADIUS_MD_KEY = PepCustomizationService.BORDER_RADIUS_KEY + '-md';
2490
- PepCustomizationService.BORDER_RADIUS_LG_KEY = PepCustomizationService.BORDER_RADIUS_KEY + '-lg';
2491
- PepCustomizationService.BORDER_RADIUS_XL_KEY = PepCustomizationService.BORDER_RADIUS_KEY + '-xl';
2492
- // Fonts variables keys
2493
- PepCustomizationService.FONT_SIZE_2XS_KEY = '--pep-font-size-2xs';
2494
- PepCustomizationService.FONT_SIZE_XS_KEY = '--pep-font-size-xs';
2495
- PepCustomizationService.FONT_SIZE_SM_KEY = '--pep-font-size-sm';
2496
- PepCustomizationService.FONT_SIZE_MD_KEY = '--pep-font-size-md';
2497
- PepCustomizationService.FONT_SIZE_LG_KEY = '--pep-font-size-lg';
2498
- PepCustomizationService.FONT_SIZE_XL_KEY = '--pep-font-size-xl';
2499
- PepCustomizationService.FONT_SIZE_2XL_KEY = '--pep-font-size-2xl';
2500
- // Line height variables keys
2501
- PepCustomizationService.LINE_HEIGHT_2XS_KEY = '--pep-line-height-2xs';
2502
- PepCustomizationService.LINE_HEIGHT_XS_KEY = '--pep-line-height-xs';
2503
- PepCustomizationService.LINE_HEIGHT_SM_KEY = '--pep-line-height-sm';
2504
- PepCustomizationService.LINE_HEIGHT_MD_KEY = '--pep-line-height-md';
2505
- PepCustomizationService.LINE_HEIGHT_LG_KEY = '--pep-line-height-lg';
2506
- PepCustomizationService.LINE_HEIGHT_XL_KEY = '--pep-line-height-xl';
2507
- PepCustomizationService.LINE_HEIGHT_2XL_KEY = '--pep-line-height-2xl';
2508
- // Shadows offset variables keys
2509
- PepCustomizationService.SHADOW_NONE_OFFSET_KEY = '--pep-shadow-none-offset';
2510
- PepCustomizationService.SHADOW_XS_OFFSET_KEY = '--pep-shadow-xs-offset';
2511
- PepCustomizationService.SHADOW_SM_OFFSET_KEY = '--pep-shadow-sm-offset';
2512
- PepCustomizationService.SHADOW_MD_OFFSET_KEY = '--pep-shadow-md-offset';
2513
- PepCustomizationService.SHADOW_LG_OFFSET_KEY = '--pep-shadow-lg-offset';
2514
- PepCustomizationService.SHADOW_XL_OFFSET_KEY = '--pep-shadow-xl-offset';
2515
- // Spacing variables keys
2516
- PepCustomizationService.SPACING_SIZE_2XS_KEY = '--pep-spacing-2xs';
2517
- PepCustomizationService.SPACING_SIZE_XS_KEY = '--pep-spacing-xs';
2518
- PepCustomizationService.SPACING_SIZE_SM_KEY = '--pep-spacing-sm';
2519
- PepCustomizationService.SPACING_SIZE_MD_KEY = '--pep-spacing-md';
2520
- PepCustomizationService.SPACING_SIZE_LG_KEY = '--pep-spacing-lg';
2521
- PepCustomizationService.SPACING_SIZE_XL_KEY = '--pep-spacing-xl';
2522
- PepCustomizationService.SPACING_SIZE_2XL_KEY = '--pep-spacing-2xl';
2523
- PepCustomizationService.SPACING_SIZE_3XL_KEY = '--pep-spacing-3xl';
2524
- PepCustomizationService.SPACING_SIZE_4XL_KEY = '--pep-spacing-4xl';
2525
- PepCustomizationService.SPACING_SIZE_5XL_KEY = '--pep-spacing-5xl';
2526
- PepCustomizationService.SPACING_SIZE_6XL_KEY = '--pep-spacing-6xl';
2527
- PepCustomizationService.SPACING_SIZE_7XL_KEY = '--pep-spacing-7xl';
2528
- PepCustomizationService.SPACING_SIZE_8XL_KEY = '--pep-spacing-8xl';
2529
- PepCustomizationService.SPACING_SIZE_9XL_KEY = '--pep-spacing-9xl';
2530
- // Form variables keys
2531
- PepCustomizationService.FORM_FIELD_HEIGHT_KEY = '--pep-form-field-height';
2532
- PepCustomizationService.FORM_FIELD_TITLE_HEIGHT_KEY = '--pep-form-field-title-height';
2533
- PepCustomizationService.FORM_FIELD_SPACEING_KEY = '--pep-form-field-spacing';
2534
- PepCustomizationService.FORM_SPACEING_KEY = '--pep-form-spacing';
2535
- // Card variables keys
2536
- PepCustomizationService.CARD_FIELD_HEIGHT_KEY = '--pep-card-field-height';
2537
- PepCustomizationService.CARD_SPACEING_KEY = '--pep-card-spacing';
2538
- PepCustomizationService.CARD_SHADOW_OFFSET_KEY = '--pep-shadow-card-offset';
2539
- PepCustomizationService.CARD_BORDER_RADIUS_KEY = '--pep-card-border-radius';
2540
- // Table variables keys
2541
- PepCustomizationService.TABLE_FIELD_HEIGHT_KEY = '--pep-table-field-height';
2542
- PepCustomizationService.TABLE_SPACEING_KEY = '--pep-table-spacing';
2543
- PepCustomizationService.TABLE_BORDER_RADIUS_KEY = '--pep-table-border-radius';
2544
- // // Branding keys
2545
- // static BRANDING_LOGO_SRC = '--pep-branding-logo-src';
2546
- // static FAV_ICON_SRC = '--pep-favicon-src';
2547
- PepCustomizationService.DEFAULT_HEADER_HEIGHT = 64; // Default
2548
- PepCustomizationService.DEFAULT_SPINNER_COLOR = '#78aa00';
2549
- PepCustomizationService.DEFAULT_BRANDING_COLOR = '#fff';
2550
- PepCustomizationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepCustomizationService, deps: [{ token: PepSessionService }, { token: PepFileService }, { token: i3.FormBuilder }], target: i0.ɵɵFactoryTarget.Injectable });
2551
- PepCustomizationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepCustomizationService, providedIn: 'root' });
2552
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepCustomizationService, decorators: [{
2589
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepCustomizationService, decorators: [{
2553
2590
  type: Injectable,
2554
2591
  args: [{
2555
2592
  providedIn: 'root',
@@ -2557,15 +2594,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2557
2594
  }], ctorParameters: function () { return [{ type: PepSessionService }, { type: PepFileService }, { type: i3.FormBuilder }]; } });
2558
2595
 
2559
2596
  class PepDivLoaderDirective {
2597
+ renderer;
2598
+ element;
2599
+ utilitiesService;
2600
+ customizationService;
2601
+ document;
2602
+ loaderColor = null;
2603
+ loaderWidth = '5rem';
2604
+ loaderHeight = 'inherit';
2605
+ svgIcon;
2560
2606
  constructor(renderer, element, utilitiesService, customizationService, document) {
2561
2607
  this.renderer = renderer;
2562
2608
  this.element = element;
2563
2609
  this.utilitiesService = utilitiesService;
2564
2610
  this.customizationService = customizationService;
2565
2611
  this.document = document;
2566
- this.loaderColor = null;
2567
- this.loaderWidth = '5rem';
2568
- this.loaderHeight = 'inherit';
2569
2612
  }
2570
2613
  ngOnInit() {
2571
2614
  if (!this.loaderColor) {
@@ -2591,10 +2634,10 @@ class PepDivLoaderDirective {
2591
2634
  this.renderer.addClass(this.svgIcon, 'svg-icon');
2592
2635
  this.renderer.addClass(this.svgIcon, 'stroke');
2593
2636
  }
2637
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepDivLoaderDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: PepUtilitiesService }, { token: PepCustomizationService }, { token: DOCUMENT, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
2638
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepDivLoaderDirective, selector: "[pepDivLoader]", inputs: { loaderColor: "loaderColor", loaderWidth: "loaderWidth", loaderHeight: "loaderHeight" }, ngImport: i0 });
2594
2639
  }
2595
- PepDivLoaderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepDivLoaderDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: PepUtilitiesService }, { token: PepCustomizationService }, { token: DOCUMENT, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
2596
- PepDivLoaderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepDivLoaderDirective, selector: "[pepDivLoader]", inputs: { loaderColor: "loaderColor", loaderWidth: "loaderWidth", loaderHeight: "loaderHeight" }, ngImport: i0 });
2597
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepDivLoaderDirective, decorators: [{
2640
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepDivLoaderDirective, decorators: [{
2598
2641
  type: Directive,
2599
2642
  args: [{
2600
2643
  selector: '[pepDivLoader]',
@@ -2613,6 +2656,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2613
2656
  }] } });
2614
2657
 
2615
2658
  class PepPortalService {
2659
+ targets;
2616
2660
  constructor() {
2617
2661
  this.targets = new Map();
2618
2662
  }
@@ -2636,10 +2680,10 @@ class PepPortalService {
2636
2680
  ? this.targets.get(targetName)
2637
2681
  : null;
2638
2682
  }
2683
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepPortalService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2684
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepPortalService, providedIn: 'root' });
2639
2685
  }
2640
- PepPortalService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepPortalService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2641
- PepPortalService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepPortalService, providedIn: 'root' });
2642
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepPortalService, decorators: [{
2686
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepPortalService, decorators: [{
2643
2687
  type: Injectable,
2644
2688
  args: [{
2645
2689
  providedIn: 'root',
@@ -2647,6 +2691,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2647
2691
  }], ctorParameters: function () { return []; } });
2648
2692
 
2649
2693
  class PepAttachDirective {
2694
+ portalService;
2695
+ templateRef;
2696
+ targetName;
2650
2697
  constructor(portalService, templateRef) {
2651
2698
  this.portalService = portalService;
2652
2699
  this.templateRef = templateRef;
@@ -2657,10 +2704,10 @@ class PepAttachDirective {
2657
2704
  ngOnDestroy() {
2658
2705
  this.portalService.clear(this.targetName);
2659
2706
  }
2707
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepAttachDirective, deps: [{ token: PepPortalService }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
2708
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepAttachDirective, selector: "[pepAttach]", inputs: { targetName: ["pepAttach", "targetName"] }, ngImport: i0 });
2660
2709
  }
2661
- PepAttachDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepAttachDirective, deps: [{ token: PepPortalService }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
2662
- PepAttachDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepAttachDirective, selector: "[pepAttach]", inputs: { targetName: ["pepAttach", "targetName"] }, ngImport: i0 });
2663
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepAttachDirective, decorators: [{
2710
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepAttachDirective, decorators: [{
2664
2711
  type: Directive,
2665
2712
  args: [{
2666
2713
  selector: '[pepAttach]',
@@ -2671,6 +2718,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2671
2718
  }] } });
2672
2719
 
2673
2720
  class PepTargetDirective {
2721
+ portalService;
2722
+ viewContainer;
2723
+ targetName;
2674
2724
  constructor(portalService, viewContainer) {
2675
2725
  this.portalService = portalService;
2676
2726
  this.viewContainer = viewContainer;
@@ -2678,10 +2728,10 @@ class PepTargetDirective {
2678
2728
  ngOnInit() {
2679
2729
  this.portalService.addTarget(this.targetName, this.viewContainer);
2680
2730
  }
2731
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepTargetDirective, deps: [{ token: PepPortalService }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
2732
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PepTargetDirective, selector: "[pepTarget]", inputs: { targetName: ["pepTarget", "targetName"] }, ngImport: i0 });
2681
2733
  }
2682
- PepTargetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepTargetDirective, deps: [{ token: PepPortalService }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
2683
- PepTargetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepTargetDirective, selector: "[pepTarget]", inputs: { targetName: ["pepTarget", "targetName"] }, ngImport: i0 });
2684
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepTargetDirective, decorators: [{
2734
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepTargetDirective, decorators: [{
2685
2735
  type: Directive,
2686
2736
  args: [{
2687
2737
  selector: '[pepTarget]',
@@ -2693,10 +2743,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2693
2743
 
2694
2744
  // Import the core angular services.
2695
2745
  class PepClipboardService {
2746
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepClipboardService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2747
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepClipboardService, providedIn: 'root' });
2696
2748
  }
2697
- PepClipboardService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepClipboardService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2698
- PepClipboardService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepClipboardService, providedIn: 'root' });
2699
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepClipboardService, decorators: [{
2749
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepClipboardService, decorators: [{
2700
2750
  type: Injectable,
2701
2751
  args: [{
2702
2752
  providedIn: 'root',
@@ -2712,6 +2762,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2712
2762
  */
2713
2763
 
2714
2764
  class BaseDestroyerDirective {
2765
+ _destroyed;
2715
2766
  constructor() {
2716
2767
  this._destroyed = new Subject();
2717
2768
  }
@@ -2722,10 +2773,10 @@ class BaseDestroyerDirective {
2722
2773
  this._destroyed.next();
2723
2774
  this._destroyed.complete();
2724
2775
  }
2776
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BaseDestroyerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2777
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: BaseDestroyerDirective, ngImport: i0 });
2725
2778
  }
2726
- BaseDestroyerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BaseDestroyerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2727
- BaseDestroyerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: BaseDestroyerDirective, ngImport: i0 });
2728
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BaseDestroyerDirective, decorators: [{
2779
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BaseDestroyerDirective, decorators: [{
2729
2780
  type: Directive,
2730
2781
  args: [{}]
2731
2782
  }], ctorParameters: function () { return []; } });
@@ -2891,6 +2942,13 @@ var Y_ALIGNMENT_TYPE;
2891
2942
  Y_ALIGNMENT_TYPE[Y_ALIGNMENT_TYPE["Center"] = 3] = "Center";
2892
2943
  })(Y_ALIGNMENT_TYPE || (Y_ALIGNMENT_TYPE = {}));
2893
2944
  class FieldLayout {
2945
+ X;
2946
+ Width;
2947
+ XAlignment;
2948
+ Y;
2949
+ Height;
2950
+ YAlignment;
2951
+ LineNumber;
2894
2952
  // constructor(
2895
2953
  // x = 0,
2896
2954
  // width = 1,
@@ -2908,27 +2966,88 @@ class FieldLayout {
2908
2966
  }
2909
2967
  }
2910
2968
  class UIControlField {
2911
- constructor() {
2912
- this.MandatoryField = false;
2913
- this.Mandatory = false;
2914
- this.minFieldWidth = 45;
2915
- this.calcColumnWidth = 10;
2916
- this.calcTitleColumnWidthString = '100%';
2917
- this.calcColumnWidthString = '100%';
2918
- }
2969
+ Title;
2970
+ MandatoryField = false;
2971
+ Mandatory = false;
2972
+ ReadOnlyField;
2973
+ ReadOnly;
2974
+ FieldConditions;
2975
+ CustomField;
2976
+ ApiName;
2977
+ FieldType;
2978
+ OptionalValues;
2979
+ MinValue;
2980
+ MaxValue;
2981
+ MaxCharacters;
2982
+ MaxFieldCharacters;
2983
+ MaxLines;
2984
+ Layout; // { X: number; Height: number; Y: number; Width: number; XAlignment: number; YAlignment: number };
2985
+ ColumnWidth;
2986
+ ColumnWidthType;
2987
+ FieldName;
2988
+ DefaultValue;
2989
+ Hidden;
2990
+ ObjectTypeReference;
2991
+ ParentField;
2992
+ WrntyFieldName;
2993
+ Editor;
2994
+ minFieldWidth = 45;
2995
+ calcColumnWidth = 10;
2996
+ calcTitleColumnWidthString = '100%';
2997
+ calcColumnWidthString = '100%';
2919
2998
  }
2920
2999
  class UIControl {
3000
+ ObjectID;
3001
+ Type;
3002
+ DisplayName;
3003
+ ControlFields;
3004
+ Columns;
2921
3005
  }
2922
3006
  class ObjectsDataRowCell {
3007
+ Accessory;
3008
+ AdditionalValue;
3009
+ ApiName;
3010
+ BackgroundColor;
3011
+ Enabled;
3012
+ FieldType;
3013
+ FormattedValue;
3014
+ GroupFields;
3015
+ Highlighted;
3016
+ NotificationInfo;
3017
+ OptionalValues;
3018
+ ReferenceObjectInternalType;
3019
+ ReferenceObjectSubType;
3020
+ ReferenceObjectType;
3021
+ TextColor;
3022
+ UiPageKey;
3023
+ UIPageInfo;
3024
+ // Type?: string; // This is in the object??
3025
+ Value;
3026
+ Visible;
3027
+ DigitsNumberAfterDecimalPoint;
2923
3028
  }
2924
3029
  class ObjectsDataRow {
2925
- constructor() {
2926
- this.IsEditable = true;
2927
- this.IsSelected = false;
2928
- this.IsSelectableForActions = true;
2929
- }
3030
+ AdditionalData;
3031
+ BackgroundColor;
3032
+ ExtraInfo;
3033
+ Fields;
3034
+ IsEditable = true;
3035
+ IsSelected = false;
3036
+ IsSelectableForActions = true;
3037
+ MainAction;
3038
+ Profile;
3039
+ Type;
3040
+ UID;
3041
+ Key;
2930
3042
  }
2931
3043
  class ObjectSingleData {
3044
+ Data;
3045
+ ErrorCode;
3046
+ ErrorMessage;
3047
+ IsEditable;
3048
+ Success;
3049
+ Type;
3050
+ UIControl;
2932
3051
  constructor(uiControl = null, data = null) {
2933
3052
  this.Success = true;
2934
3053
  this.ErrorMessage = '';
@@ -2938,6 +3057,16 @@ class ObjectSingleData {
2938
3057
  }
2939
3058
  }
2940
3059
  class ObjectsData {
3060
+ DateFilter;
3061
+ ErrorCode;
3062
+ ErrorMessage;
3063
+ Rows;
3064
+ SearchCode;
3065
+ SecSmartSearchList;
3066
+ SmartSearchList;
3067
+ Success;
3068
+ TotalRows;
3069
+ UIControl;
2941
3070
  // AllRows: Array<ObjectsDataRow>;
2942
3071
  // TotalAmount: any;
2943
3072
  // CurrencySymbol: any;
@@ -2949,10 +3078,22 @@ class ObjectsData {
2949
3078
  }
2950
3079
  }
2951
3080
  class SmartSearchValues {
3081
+ ApiName;
3082
+ ComparisonType;
3083
+ Value;
3084
+ ValueRange;
3085
+ Values;
2952
3086
  }
2953
3087
  class SmartSearchResponse {
3088
+ ApiName;
3089
+ FieldType;
3090
+ Title;
3091
+ Values;
3092
+ SmartSearchData;
2954
3093
  }
2955
3094
  class KeyValuePair {
3095
+ Key;
3096
+ Value;
2956
3097
  }
2957
3098
 
2958
3099
  /*
@@ -2972,6 +3113,9 @@ class KeyValuePair {
2972
3113
  */
2973
3114
 
2974
3115
  class PepCookieService {
3116
+ document;
3117
+ platformId;
3118
+ documentIsAccessible;
2975
3119
  constructor(document, platformId) {
2976
3120
  this.document = document;
2977
3121
  this.platformId = platformId;
@@ -3103,10 +3247,10 @@ class PepCookieService {
3103
3247
  return encodedURIComponent;
3104
3248
  }
3105
3249
  }
3250
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepCookieService, deps: [{ token: DOCUMENT, optional: true }, { token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
3251
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepCookieService, providedIn: 'root' });
3106
3252
  }
3107
- PepCookieService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepCookieService, deps: [{ token: DOCUMENT, optional: true }, { token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
3108
- PepCookieService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepCookieService, providedIn: 'root' });
3109
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepCookieService, decorators: [{
3253
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepCookieService, decorators: [{
3110
3254
  type: Injectable,
3111
3255
  args: [{
3112
3256
  providedIn: 'root',
@@ -3122,14 +3266,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3122
3266
  }] }]; } });
3123
3267
 
3124
3268
  class PepHttpService {
3269
+ sessionService;
3270
+ cookieService;
3271
+ http;
3272
+ AUTH_HEADER = 'Authorization';
3273
+ PEPPERI_TOKEN_HEADER = 'PepperiSessionToken';
3274
+ WAPI_TOKEN_KEY = 'auth_token';
3275
+ PEPPERI_TOKEN_COOKIE = 'PepperiUserSettings';
3125
3276
  constructor(sessionService, cookieService, http) {
3126
3277
  this.sessionService = sessionService;
3127
3278
  this.cookieService = cookieService;
3128
3279
  this.http = http;
3129
- this.AUTH_HEADER = 'Authorization';
3130
- this.PEPPERI_TOKEN_HEADER = 'PepperiSessionToken';
3131
- this.WAPI_TOKEN_KEY = 'auth_token';
3132
- this.PEPPERI_TOKEN_COOKIE = 'PepperiUserSettings';
3133
3280
  }
3134
3281
  handleError(response) {
3135
3282
  let errorMessage = 'Unknown error!';
@@ -3258,10 +3405,10 @@ class PepHttpService {
3258
3405
  const papiBaseUrl = this.sessionService.getPapiBaseUrl();
3259
3406
  return this.postHttpCall(`${papiBaseUrl}${url}`, body, httpOptions);
3260
3407
  }
3408
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepHttpService, deps: [{ token: PepSessionService }, { token: PepCookieService }, { token: i3$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
3409
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepHttpService, providedIn: 'root' });
3261
3410
  }
3262
- PepHttpService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepHttpService, deps: [{ token: PepSessionService }, { token: PepCookieService }, { token: i3$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
3263
- PepHttpService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepHttpService, providedIn: 'root' });
3264
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepHttpService, decorators: [{
3411
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepHttpService, decorators: [{
3265
3412
  type: Injectable,
3266
3413
  args: [{
3267
3414
  providedIn: 'root',
@@ -3272,6 +3419,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3272
3419
  This service is the webapp api for addon usege.
3273
3420
  */
3274
3421
  class PepTranslateService {
3422
+ http;
3275
3423
  constructor(http
3276
3424
  // private sessionService: PepSessionService,
3277
3425
  // private httpService: PepHttpService,
@@ -3300,10 +3448,10 @@ class PepTranslateService {
3300
3448
  // In here you can put the code you want. At this point the lang will be loaded
3301
3449
  });
3302
3450
  }
3451
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepTranslateService, deps: [{ token: i3$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
3452
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepTranslateService, providedIn: 'root' });
3303
3453
  }
3304
- PepTranslateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepTranslateService, deps: [{ token: i3$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
3305
- PepTranslateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepTranslateService, providedIn: 'root' });
3306
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepTranslateService, decorators: [{
3454
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepTranslateService, decorators: [{
3307
3455
  type: Injectable,
3308
3456
  args: [{
3309
3457
  providedIn: 'root',
@@ -3314,6 +3462,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3314
3462
  This service is the webapp api for addon usege.
3315
3463
  */
3316
3464
  class PepAddonService {
3465
+ sessionService;
3466
+ httpService;
3467
+ loaderService;
3468
+ translateService;
3469
+ fileService;
3470
+ router;
3471
+ route;
3472
+ PAGES_ADDON_UUID = '50062e0c-9967-4ed4-9102-f2bc50602d41';
3473
+ // private readonly ADDON_ASSETS_PATH_KEY = 'AddonAssetsPath';
3474
+ ADDONS_DICTIONARY_ASSETS_PATH_KEY = 'AddonsDictionaryAssetsPath';
3475
+ ADDON_API_RELATIVE_PATH = '/addons/api';
3476
+ ADDON_API_ASYNC_RELATIVE_PATH = `${this.ADDON_API_RELATIVE_PATH}/async`;
3477
+ static _customElementsMap = new Map();
3317
3478
  get devServer() {
3318
3479
  return this.route ? this.route.snapshot.queryParamMap.get('devServer') === 'true' : false;
3319
3480
  }
@@ -3325,11 +3486,6 @@ class PepAddonService {
3325
3486
  this.fileService = fileService;
3326
3487
  this.router = router;
3327
3488
  this.route = route;
3328
- this.PAGES_ADDON_UUID = '50062e0c-9967-4ed4-9102-f2bc50602d41';
3329
- // private readonly ADDON_ASSETS_PATH_KEY = 'AddonAssetsPath';
3330
- this.ADDONS_DICTIONARY_ASSETS_PATH_KEY = 'AddonsDictionaryAssetsPath';
3331
- this.ADDON_API_RELATIVE_PATH = '/addons/api';
3332
- this.ADDON_API_ASYNC_RELATIVE_PATH = `${this.ADDON_API_RELATIVE_PATH}/async`;
3333
3489
  //
3334
3490
  }
3335
3491
  getAddonBaseRelativePath(isAsync = false) {
@@ -3512,11 +3668,10 @@ class PepAddonService {
3512
3668
  addonTranslationResource
3513
3669
  ]);
3514
3670
  }
3671
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepAddonService, deps: [{ token: PepSessionService }, { token: PepHttpService }, { token: PepLoaderService }, { token: PepTranslateService }, { token: PepFileService }, { token: i6.Router, optional: true }, { token: i6.ActivatedRoute, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3672
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepAddonService, providedIn: 'root' });
3515
3673
  }
3516
- PepAddonService._customElementsMap = new Map();
3517
- PepAddonService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepAddonService, deps: [{ token: PepSessionService }, { token: PepHttpService }, { token: PepLoaderService }, { token: PepTranslateService }, { token: PepFileService }, { token: i6.Router, optional: true }, { token: i6.ActivatedRoute, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3518
- PepAddonService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepAddonService, providedIn: 'root' });
3519
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepAddonService, decorators: [{
3674
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepAddonService, decorators: [{
3520
3675
  type: Injectable,
3521
3676
  args: [{
3522
3677
  providedIn: 'root',
@@ -3528,13 +3683,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3528
3683
  }] }]; } });
3529
3684
 
3530
3685
  class PepColorService {
3531
- constructor() {
3532
- this.FLOAT_REGEX = /^\d+(\.\d+)?$/;
3533
- this.THREE_DIGIT_HEX_COLOR_REGEX = /^[0-9a-fA-F]{3}$/;
3534
- this.THREE_DIGIT_HEX_COLOR_WITH_HASH_REGEX = /^#[0-9a-fA-F]{3}$/;
3535
- this.SIX_DIGIT_HEX_COLOR_REGEX = /^[0-9a-fA-F]{6}$/;
3536
- this.SIX_DIGIT_HEX_COLOR_WITH_HASH_REGEX = /^#[0-9a-fA-F]{6}$/;
3537
- }
3686
+ FLOAT_REGEX = /^\d+(\.\d+)?$/;
3687
+ THREE_DIGIT_HEX_COLOR_REGEX = /^[0-9a-fA-F]{3}$/;
3688
+ THREE_DIGIT_HEX_COLOR_WITH_HASH_REGEX = /^#[0-9a-fA-F]{3}$/;
3689
+ SIX_DIGIT_HEX_COLOR_REGEX = /^[0-9a-fA-F]{6}$/;
3690
+ SIX_DIGIT_HEX_COLOR_WITH_HASH_REGEX = /^#[0-9a-fA-F]{6}$/;
3538
3691
  contrast(str1, str2) {
3539
3692
  const L1 = this.relativeLuminance(this.hex2rgb(str1));
3540
3693
  const L2 = this.relativeLuminance(this.hex2rgb(str2));
@@ -3900,10 +4053,10 @@ class PepColorService {
3900
4053
  // Using the HSP value, determine whether the color is light or dark
3901
4054
  return (hsp > 127.5) ? 'light' : 'dark';
3902
4055
  }
4056
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepColorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4057
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepColorService, providedIn: 'root' });
3903
4058
  }
3904
- PepColorService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepColorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3905
- PepColorService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepColorService, providedIn: 'root' });
3906
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepColorService, decorators: [{
4059
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepColorService, decorators: [{
3907
4060
  type: Injectable,
3908
4061
  args: [{
3909
4062
  providedIn: 'root',
@@ -3911,6 +4064,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3911
4064
  }] });
3912
4065
 
3913
4066
  class PepFieldData {
4067
+ ApiName;
4068
+ Enabled;
4069
+ Value;
4070
+ FormattedValue;
4071
+ FieldType;
4072
+ ReadOnly;
4073
+ ColumnWidth;
4074
+ ColumnWidthType;
4075
+ XAlignment;
4076
+ Title;
4077
+ AdditionalValue;
4078
+ OptionalValues;
3914
4079
  constructor(options = {}) {
3915
4080
  this.ApiName = options.ApiName;
3916
4081
  this.Enabled = !!options.Enabled;
@@ -3925,6 +4090,11 @@ class PepFieldData {
3925
4090
  }
3926
4091
  }
3927
4092
  class PepRowData {
4093
+ UUID;
4094
+ IsEditable;
4095
+ IsSelected;
4096
+ IsSelectableForActions;
4097
+ Fields;
3928
4098
  }
3929
4099
  class PepDataConvertorService {
3930
4100
  getUiControl(formData) {
@@ -4018,10 +4188,10 @@ class PepDataConvertorService {
4018
4188
  });
4019
4189
  return layout;
4020
4190
  }
4191
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepDataConvertorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4192
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepDataConvertorService, providedIn: 'root' });
4021
4193
  }
4022
- PepDataConvertorService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepDataConvertorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4023
- PepDataConvertorService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepDataConvertorService, providedIn: 'root' });
4024
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepDataConvertorService, decorators: [{
4194
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepDataConvertorService, decorators: [{
4025
4195
  type: Injectable,
4026
4196
  args: [{
4027
4197
  providedIn: 'root',
@@ -4029,15 +4199,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4029
4199
  }] });
4030
4200
 
4031
4201
  class PepValidatorService {
4202
+ translate;
4203
+ // Regular expressions
4204
+ integerUnsigned = '^[0-9]*$';
4205
+ integerSigned = '^-?[0-9]+$';
4206
+ decimalUnsigned = '^[0-9]+(.[0-9]+)?$';
4207
+ decimalSigned = '^-?[0-9]+(.[0-9]+)?$';
4208
+ phone = '^[+]*[(]{0,1}[0-9]{1,4}[)]{0,1}[-s./0-9]*$';
4209
+ decimalSeparator = '.';
4032
4210
  constructor(translate = null) {
4033
4211
  this.translate = translate;
4034
- // Regular expressions
4035
- this.integerUnsigned = '^[0-9]*$';
4036
- this.integerSigned = '^-?[0-9]+$';
4037
- this.decimalUnsigned = '^[0-9]+(.[0-9]+)?$';
4038
- this.decimalSigned = '^-?[0-9]+(.[0-9]+)?$';
4039
- this.phone = '^[+]*[(]{0,1}[0-9]{1,4}[)]{0,1}[-s./0-9]*$';
4040
- this.decimalSeparator = '.';
4041
4212
  const currentLang = this.translate?.currentLang || navigator.language;
4042
4213
  // Check for number with thousands separator and if === ',' then the decimal separator is '.' else ','
4043
4214
  const tmp = new Intl.NumberFormat(currentLang, {
@@ -4283,10 +4454,10 @@ class PepValidatorService {
4283
4454
  const isNumber = new RegExp(this.integerUnsigned).test(key);
4284
4455
  return isNumber;
4285
4456
  }
4457
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepValidatorService, deps: [{ token: i1.TranslateService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4458
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepValidatorService, providedIn: 'root' });
4286
4459
  }
4287
- PepValidatorService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepValidatorService, deps: [{ token: i1.TranslateService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4288
- PepValidatorService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepValidatorService, providedIn: 'root' });
4289
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepValidatorService, decorators: [{
4460
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepValidatorService, decorators: [{
4290
4461
  type: Injectable,
4291
4462
  args: [{
4292
4463
  providedIn: 'root',
@@ -4296,6 +4467,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4296
4467
  }] }]; } });
4297
4468
 
4298
4469
  class PepWindowScrollingService {
4470
+ // Inject a STYLE element for overrides the scroll behavior, this way we can add | remove it in order to the behavior.
4471
+ styleTag;
4299
4472
  constructor() {
4300
4473
  this.styleTag = this.buildStyleElement();
4301
4474
  }
@@ -4319,10 +4492,10 @@ class PepWindowScrollingService {
4319
4492
  `;
4320
4493
  return style;
4321
4494
  }
4495
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepWindowScrollingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4496
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepWindowScrollingService, providedIn: 'root' });
4322
4497
  }
4323
- PepWindowScrollingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepWindowScrollingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4324
- PepWindowScrollingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepWindowScrollingService, providedIn: 'root' });
4325
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepWindowScrollingService, decorators: [{
4498
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepWindowScrollingService, decorators: [{
4326
4499
  type: Injectable,
4327
4500
  args: [{
4328
4501
  providedIn: 'root',
@@ -4350,6 +4523,32 @@ const DEFAULT_HORIZONTAL_ALIGNMENT = 'left';
4350
4523
  /** Default horizontal alignment. */
4351
4524
  const DEFAULT_VERTICAL_ALIGNMENT = 'top';
4352
4525
  class PepFieldBase {
4526
+ value;
4527
+ formattedValue;
4528
+ additionalValue;
4529
+ key;
4530
+ label;
4531
+ accessory;
4532
+ mandatory;
4533
+ readonly;
4534
+ disabled;
4535
+ order;
4536
+ // type: string;
4537
+ controlType;
4538
+ placeholder;
4539
+ hidden;
4540
+ row;
4541
+ rowSpan;
4542
+ col;
4543
+ colSpan;
4544
+ xAlignment;
4545
+ yAlignment;
4546
+ groupFields;
4547
+ maxFieldCharacters;
4548
+ minValue;
4549
+ maxValue;
4550
+ textColor;
4551
+ visible;
4353
4552
  // lastFocusField: any;
4354
4553
  constructor(options = {}) {
4355
4554
  this.key = options.key || '';
@@ -4413,36 +4612,37 @@ class PepFieldBase {
4413
4612
  }
4414
4613
  }
4415
4614
  class PepPlaceholderField extends PepFieldBase {
4615
+ controlType = 'placeholder';
4416
4616
  constructor(options = {}) {
4417
4617
  super(options);
4418
- this.controlType = 'placeholder';
4419
4618
  }
4420
4619
  }
4421
4620
  class PepSeparatorField extends PepFieldBase {
4621
+ controlType = 'separator';
4422
4622
  constructor(options = {}) {
4423
4623
  super(options);
4424
- this.controlType = 'separator';
4425
4624
  }
4426
4625
  }
4427
4626
  class PepAttachmentField extends PepFieldBase {
4627
+ controlType = 'attachment';
4428
4628
  constructor(options = {}) {
4429
4629
  super(options);
4430
- this.controlType = 'attachment';
4431
4630
  }
4432
4631
  }
4433
4632
  class PepIndicatorsField extends PepFieldBase {
4633
+ controlType = 'indicators';
4434
4634
  constructor(options = {}) {
4435
4635
  super(options);
4436
- this.controlType = 'indicators';
4437
4636
  }
4438
4637
  }
4439
4638
  class PepTextboxField extends PepFieldBase {
4639
+ controlType = 'textbox';
4640
+ type = 'text';
4641
+ regex;
4642
+ // regexError?: string;
4643
+ digitsNumberAfterDecimalPoint = NaN;
4440
4644
  constructor(options = {}) {
4441
4645
  super(options);
4442
- this.controlType = 'textbox';
4443
- this.type = 'text';
4444
- // regexError?: string;
4445
- this.digitsNumberAfterDecimalPoint = NaN;
4446
4646
  this.type = options.type || 'text';
4447
4647
  this.regex = options.regex ?? null;
4448
4648
  // this.regexError = options.regexError ?? null;
@@ -4492,10 +4692,10 @@ class PepTextboxField extends PepFieldBase {
4492
4692
  }
4493
4693
  }
4494
4694
  class PepLinkField extends PepFieldBase {
4695
+ controlType = 'link';
4696
+ type = 'link';
4495
4697
  constructor(options = {}) {
4496
4698
  super(options);
4497
- this.controlType = 'link';
4498
- this.type = 'link';
4499
4699
  this.update(options);
4500
4700
  }
4501
4701
  update(options) {
@@ -4509,37 +4709,39 @@ class PepLinkField extends PepFieldBase {
4509
4709
  }
4510
4710
  }
4511
4711
  class PepTextareaField extends PepFieldBase {
4712
+ controlType = 'textarea';
4512
4713
  constructor(options = {}) {
4513
4714
  super(options);
4514
- this.controlType = 'textarea';
4515
4715
  // this.type = 'textarea';
4516
4716
  }
4517
4717
  }
4518
4718
  class PepRichHtmlTextareaField extends PepFieldBase {
4719
+ controlType = 'richhtmltextarea';
4720
+ renderTitle;
4721
+ renderEnlargeButton;
4519
4722
  constructor(options = {}) {
4520
4723
  super(options);
4521
- this.controlType = 'richhtmltextarea';
4522
4724
  this.renderTitle = options.renderTitle !== undefined ? options.renderTitle : true;
4523
4725
  this.renderEnlargeButton = options.renderEnlargeButton !== undefined ? options.renderEnlargeButton : true;
4524
4726
  }
4525
4727
  }
4526
4728
  class PepSignatureField extends PepFieldBase {
4729
+ controlType = 'signature';
4730
+ options = [];
4527
4731
  constructor(options = {}) {
4528
4732
  super(options);
4529
- this.controlType = 'signature';
4530
- this.options = [];
4531
4733
  this.options = options.options || [];
4532
4734
  }
4533
4735
  }
4534
4736
  class PepImageField extends PepFieldBase {
4737
+ controlType = 'image';
4738
+ hasCampaignField = null;
4739
+ indicatorsField = null;
4740
+ menuField = null;
4741
+ options = [];
4742
+ sizeLimitMB = 5;
4535
4743
  constructor(options = {}) {
4536
4744
  super(options);
4537
- this.controlType = 'image';
4538
- this.hasCampaignField = null;
4539
- this.indicatorsField = null;
4540
- this.menuField = null;
4541
- this.options = [];
4542
- this.sizeLimitMB = 5;
4543
4745
  this.hasCampaignField = options.hasCampaignField || null;
4544
4746
  this.indicatorsField = options.indicatorsField || null;
4545
4747
  this.menuField = options.menuField || null;
@@ -4548,19 +4750,22 @@ class PepImageField extends PepFieldBase {
4548
4750
  }
4549
4751
  }
4550
4752
  class PepImagesField extends PepFieldBase {
4753
+ controlType = 'images';
4754
+ options = [];
4551
4755
  constructor(options = {}) {
4552
4756
  super(options);
4553
- this.controlType = 'images';
4554
- this.options = [];
4555
4757
  this.options = options.options || [];
4556
4758
  }
4557
4759
  }
4558
4760
  class PepQuantitySelectorField extends PepFieldBase {
4761
+ controlType = 'qs';
4762
+ allowDecimal;
4763
+ notificationInfo = {};
4764
+ updatedDataCount;
4765
+ type;
4766
+ digitsNumberAfterDecimalPoint = NaN;
4559
4767
  constructor(options = {}) {
4560
4768
  super(options);
4561
- this.controlType = 'qs';
4562
- this.notificationInfo = {};
4563
- this.digitsNumberAfterDecimalPoint = NaN;
4564
4769
  this.updatedDataCount = 0;
4565
4770
  this.type = options.type || 'qs';
4566
4771
  this.update(options);
@@ -4574,11 +4779,12 @@ class PepQuantitySelectorField extends PepFieldBase {
4574
4779
  }
4575
4780
  }
4576
4781
  class PepDateField extends PepFieldBase {
4782
+ controlType = 'date';
4783
+ type;
4577
4784
  // minDateValue?: Date;
4578
4785
  // maxDateValue?: Date;
4579
4786
  constructor(options = {}) {
4580
4787
  super(options);
4581
- this.controlType = 'date';
4582
4788
  this.type = options.type || 'date';
4583
4789
  }
4584
4790
  getValidators() {
@@ -4599,9 +4805,10 @@ class PepDateField extends PepFieldBase {
4599
4805
  }
4600
4806
  }
4601
4807
  class PepCheckboxField extends PepFieldBase {
4808
+ controlType = 'checkbox';
4809
+ type;
4602
4810
  constructor(options = {}) {
4603
4811
  super(options);
4604
- this.controlType = 'checkbox';
4605
4812
  this.type = options.type || 'checkbox';
4606
4813
  }
4607
4814
  getValidators() {
@@ -4610,11 +4817,13 @@ class PepCheckboxField extends PepFieldBase {
4610
4817
  }
4611
4818
  }
4612
4819
  class PepSelectField extends PepFieldBase {
4820
+ controlType = 'select';
4821
+ options = [];
4822
+ type;
4823
+ emptyOption;
4824
+ autoSortOptions = true;
4613
4825
  constructor(options = {}) {
4614
4826
  super(options);
4615
- this.controlType = 'select';
4616
- this.options = [];
4617
- this.autoSortOptions = true;
4618
4827
  this.type = options.type || 'select';
4619
4828
  this.emptyOption = options.emptyOption;
4620
4829
  this.autoSortOptions = options.autoSortOptions ?? true;
@@ -4626,19 +4835,21 @@ class PepSelectField extends PepFieldBase {
4626
4835
  }
4627
4836
  }
4628
4837
  class PepAddressField extends PepFieldBase {
4838
+ controlType = 'address';
4839
+ groupFields = null;
4629
4840
  constructor(options = {}) {
4630
4841
  super(options);
4631
- this.controlType = 'address';
4632
- this.groupFields = null;
4633
4842
  this.groupFields = options.groupFields || null;
4634
4843
  }
4635
4844
  }
4636
4845
  class PepInternalButtonField extends PepFieldBase {
4846
+ controlType = 'button';
4847
+ referenceObjectType;
4848
+ referenceObjectSubType = '';
4849
+ referenceObjectInternalType = '';
4850
+ type;
4637
4851
  constructor(options = {}) {
4638
4852
  super(options);
4639
- this.controlType = 'button';
4640
- this.referenceObjectSubType = '';
4641
- this.referenceObjectInternalType = '';
4642
4853
  this.referenceObjectType = options.referenceObjectType || null;
4643
4854
  this.referenceObjectSubType = options.referenceObjectSubType || null;
4644
4855
  this.referenceObjectInternalType =
@@ -4647,22 +4858,23 @@ class PepInternalButtonField extends PepFieldBase {
4647
4858
  }
4648
4859
  }
4649
4860
  class PepInternalPageField extends PepFieldBase {
4861
+ controlType = 'internalPage';
4862
+ objectId = '';
4863
+ parentId = '';
4864
+ searchCode = '';
4650
4865
  constructor(options = {}) {
4651
4866
  super(options);
4652
- this.controlType = 'internalPage';
4653
- this.objectId = '';
4654
- this.parentId = '';
4655
- this.searchCode = '';
4656
4867
  this.objectId = options.objectId || '';
4657
4868
  this.parentId = options.parentId || '';
4658
4869
  this.searchCode = options.searchCode || '';
4659
4870
  }
4660
4871
  }
4661
4872
  class PepInternalCaruselField extends PepFieldBase {
4873
+ controlType = 'internalCarusel';
4874
+ searchCode = '';
4875
+ pageInfo;
4662
4876
  constructor(options = {}) {
4663
4877
  super(options);
4664
- this.controlType = 'internalCarusel';
4665
- this.searchCode = '';
4666
4878
  this.searchCode = options.searchCode || '';
4667
4879
  this.update(options);
4668
4880
  }
@@ -4672,11 +4884,11 @@ class PepInternalCaruselField extends PepFieldBase {
4672
4884
  }
4673
4885
  }
4674
4886
  class PepInternalMenuField extends PepFieldBase {
4887
+ controlType = 'menu';
4888
+ options = [];
4675
4889
  // hasSubMenu: boolean = false;
4676
4890
  constructor(options = {}) {
4677
4891
  super(options);
4678
- this.controlType = 'menu';
4679
- this.options = [];
4680
4892
  this.options = options.options || [];
4681
4893
  // this.hasSubMenu = options['hasSubMenu'];
4682
4894
  }
@@ -4785,10 +4997,10 @@ class PepScrollToService {
4785
4997
  }
4786
4998
  });
4787
4999
  }
5000
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepScrollToService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5001
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepScrollToService, providedIn: 'root' });
4788
5002
  }
4789
- PepScrollToService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepScrollToService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4790
- PepScrollToService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepScrollToService, providedIn: 'root' });
4791
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepScrollToService, decorators: [{
5003
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepScrollToService, decorators: [{
4792
5004
  type: Injectable,
4793
5005
  args: [{
4794
5006
  providedIn: 'root',
@@ -4840,71 +5052,71 @@ const utilitiesList = [
4840
5052
  ];
4841
5053
  const portalList = [PepAttachDirective, PepTargetDirective];
4842
5054
  class PepNgxLibModule {
5055
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepNgxLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5056
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PepNgxLibModule, declarations: [PepCapitalizePipe,
5057
+ PepEncodePipe,
5058
+ PepEscapePipe,
5059
+ PepReplaceLineBreaksPipe,
5060
+ PepDateFormatterPipe,
5061
+ PepDateStringFormatterPipe,
5062
+ PepSafeHtmlPipe,
5063
+ PepSafePipe,
5064
+ PepSplitUppercasePipe,
5065
+ PepToNumberPipe,
5066
+ DateAgoPipe, PepInputAutoWidthDirective,
5067
+ PepButtonBlurDirective,
5068
+ PepButtonLoaderDirective,
5069
+ PepMenuBlurDirective,
5070
+ PepDataQaDirective,
5071
+ // PreventDoubleClickDirective,
5072
+ PepPreventMultiClickDirective,
5073
+ PepPrintDirective,
5074
+ PepDivLoaderDirective, PepClipboardDirective, PepRtlClassDirective, PepRtlDirectionDirective, PepAttachDirective, PepTargetDirective], imports: [CommonModule,
5075
+ HttpClientModule,
5076
+ ReactiveFormsModule], exports: [PepCapitalizePipe,
5077
+ PepEncodePipe,
5078
+ PepEscapePipe,
5079
+ PepReplaceLineBreaksPipe,
5080
+ PepDateFormatterPipe,
5081
+ PepDateStringFormatterPipe,
5082
+ PepSafeHtmlPipe,
5083
+ PepSafePipe,
5084
+ PepSplitUppercasePipe,
5085
+ PepToNumberPipe,
5086
+ DateAgoPipe, PepInputAutoWidthDirective,
5087
+ PepButtonBlurDirective,
5088
+ PepButtonLoaderDirective,
5089
+ PepMenuBlurDirective,
5090
+ PepDataQaDirective,
5091
+ // PreventDoubleClickDirective,
5092
+ PepPreventMultiClickDirective,
5093
+ PepPrintDirective,
5094
+ PepDivLoaderDirective, PepClipboardDirective, PepRtlClassDirective, PepRtlDirectionDirective, PepAttachDirective, PepTargetDirective, TranslateModule] });
5095
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepNgxLibModule, providers: [
5096
+ httpInterceptorProviders,
5097
+ PepAddonService,
5098
+ PepColorService,
5099
+ PepCookieService,
5100
+ PepDataConvertorService,
5101
+ PepFileService,
5102
+ PepJwtHelperService,
5103
+ PepSessionService,
5104
+ PepTranslateService,
5105
+ PepUtilitiesService,
5106
+ PepValidatorService,
5107
+ PepWindowScrollingService,
5108
+ PepCustomizationService,
5109
+ PepHttpService,
5110
+ PepLoaderService,
5111
+ PepLayoutService,
5112
+ PepPortalService,
5113
+ PepScrollToService,
5114
+ FormBuilder
5115
+ ], imports: [CommonModule,
5116
+ HttpClientModule,
5117
+ ReactiveFormsModule, TranslateModule] });
4843
5118
  }
4844
- PepNgxLibModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepNgxLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
4845
- PepNgxLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepNgxLibModule, declarations: [PepCapitalizePipe,
4846
- PepEncodePipe,
4847
- PepEscapePipe,
4848
- PepReplaceLineBreaksPipe,
4849
- PepDateFormatterPipe,
4850
- PepDateStringFormatterPipe,
4851
- PepSafeHtmlPipe,
4852
- PepSafePipe,
4853
- PepSplitUppercasePipe,
4854
- PepToNumberPipe,
4855
- DateAgoPipe, PepInputAutoWidthDirective,
4856
- PepButtonBlurDirective,
4857
- PepButtonLoaderDirective,
4858
- PepMenuBlurDirective,
4859
- PepDataQaDirective,
4860
- // PreventDoubleClickDirective,
4861
- PepPreventMultiClickDirective,
4862
- PepPrintDirective,
4863
- PepDivLoaderDirective, PepClipboardDirective, PepRtlClassDirective, PepRtlDirectionDirective, PepAttachDirective, PepTargetDirective], imports: [CommonModule,
4864
- HttpClientModule,
4865
- ReactiveFormsModule], exports: [PepCapitalizePipe,
4866
- PepEncodePipe,
4867
- PepEscapePipe,
4868
- PepReplaceLineBreaksPipe,
4869
- PepDateFormatterPipe,
4870
- PepDateStringFormatterPipe,
4871
- PepSafeHtmlPipe,
4872
- PepSafePipe,
4873
- PepSplitUppercasePipe,
4874
- PepToNumberPipe,
4875
- DateAgoPipe, PepInputAutoWidthDirective,
4876
- PepButtonBlurDirective,
4877
- PepButtonLoaderDirective,
4878
- PepMenuBlurDirective,
4879
- PepDataQaDirective,
4880
- // PreventDoubleClickDirective,
4881
- PepPreventMultiClickDirective,
4882
- PepPrintDirective,
4883
- PepDivLoaderDirective, PepClipboardDirective, PepRtlClassDirective, PepRtlDirectionDirective, PepAttachDirective, PepTargetDirective, TranslateModule] });
4884
- PepNgxLibModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepNgxLibModule, providers: [
4885
- httpInterceptorProviders,
4886
- PepAddonService,
4887
- PepColorService,
4888
- PepCookieService,
4889
- PepDataConvertorService,
4890
- PepFileService,
4891
- PepJwtHelperService,
4892
- PepSessionService,
4893
- PepTranslateService,
4894
- PepUtilitiesService,
4895
- PepValidatorService,
4896
- PepWindowScrollingService,
4897
- PepCustomizationService,
4898
- PepHttpService,
4899
- PepLoaderService,
4900
- PepLayoutService,
4901
- PepPortalService,
4902
- PepScrollToService,
4903
- FormBuilder
4904
- ], imports: [CommonModule,
4905
- HttpClientModule,
4906
- ReactiveFormsModule, TranslateModule] });
4907
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepNgxLibModule, decorators: [{
5119
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepNgxLibModule, decorators: [{
4908
5120
  type: NgModule,
4909
5121
  args: [{
4910
5122
  declarations: [