@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
@@ -0,0 +1,187 @@
1
+ import { Component, Input, Output, EventEmitter } from '@angular/core';
2
+ import { DEFAULT_HORIZONTAL_ALIGNMENT, BaseDestroyerDirective } from '@pepperi-addons/ngx-lib';
3
+ import { PepChipsService } from './chips.service';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "./chips.service";
6
+ import * as i2 from "@ngx-translate/core";
7
+ import * as i3 from "@angular/common";
8
+ import * as i4 from "@angular/material/chips";
9
+ import * as i5 from "@pepperi-addons/ngx-lib/field-title";
10
+ import * as i6 from "@pepperi-addons/ngx-lib/button";
11
+ export class PepChipsComponent extends BaseDestroyerDirective {
12
+ chipsService;
13
+ _translate;
14
+ /**
15
+ * The chips within the chip list.
16
+ *
17
+ * @memberof PepChipsComponent
18
+ */
19
+ // @Input() form: FormGroup = null; // Why we need this?
20
+ layoutType = 'form';
21
+ inline = false;
22
+ xAlignment = DEFAULT_HORIZONTAL_ALIGNMENT;
23
+ renderTitle = true;
24
+ showTitle = true;
25
+ label = '';
26
+ mandatory = false;
27
+ disabled = false;
28
+ classNames = '';
29
+ set chips(chips) {
30
+ this.chipsService.initData(chips);
31
+ }
32
+ get chips() {
33
+ return this.chipsService.chips;
34
+ }
35
+ /**
36
+ * The add chip emitter type.
37
+ *
38
+ * @type {PepChipsInputType}
39
+ * @memberof PepChipsComponent
40
+ */
41
+ type = 'input';
42
+ /**
43
+ * The chip layput direction type.
44
+ *
45
+ * @type {PepChipsOrientationType}
46
+ * @memberof PepChipsComponent
47
+ */
48
+ orientation = 'horizontal';
49
+ /**
50
+ * The style of the button.
51
+ *
52
+ * @type {PepStyleType}
53
+ * @memberof PepButtonComponent
54
+ */
55
+ styleType = 'regular';
56
+ /**
57
+ * Whether chip multi select allowed.
58
+ *
59
+ * @memberof PepChipsComponent
60
+ */
61
+ multiSelect = false;
62
+ /**
63
+ * Add new chip placeholder.
64
+ *
65
+ * @memberof PepChipsComponent
66
+ */
67
+ placeholder = '';
68
+ /**
69
+ * Add new chip(s) event.
70
+ *
71
+ * @type {EventEmitter<void>}
72
+ * @memberof PepButtonComponent
73
+ */
74
+ fieldClick = new EventEmitter();
75
+ selectionChange = new EventEmitter();
76
+ /**
77
+ * Selected chip(s)
78
+ */
79
+ get selected() {
80
+ const selected = this.chipsService.selected;
81
+ if (this.multiSelect) {
82
+ return selected.length ? selected : [];
83
+ }
84
+ else {
85
+ return selected.length ? selected[0] : null;
86
+ }
87
+ }
88
+ constructor(chipsService, _translate) {
89
+ super();
90
+ this.chipsService = chipsService;
91
+ this._translate = _translate;
92
+ //
93
+ }
94
+ ngOnInit() {
95
+ //
96
+ }
97
+ /**
98
+ * Adding chip(s) to current chips list
99
+ * @param chips Chip(s) to add
100
+ */
101
+ addChipsToList(chips) {
102
+ chips.forEach(chip => this.chipsService.addChip(chip));
103
+ }
104
+ /**
105
+ * On new chip added
106
+ * @param event Chip addition event
107
+ */
108
+ onChipAdded(event) {
109
+ const value = (event.value || '').trim();
110
+ if (value) {
111
+ this.chipsService.addChip({
112
+ value: value
113
+ });
114
+ // clear the input value
115
+ event.chipInput?.clear();
116
+ }
117
+ }
118
+ /**
119
+ * On chip removed
120
+ * @param chip Removed chip item
121
+ */
122
+ onChipRemoved(chip) {
123
+ const index = this.chips.indexOf(chip);
124
+ if (index >= 0) {
125
+ this.chips.splice(index, 1);
126
+ }
127
+ }
128
+ /**
129
+ * On chip selection status changed
130
+ * @param isSelected Whether the chip is selected
131
+ * @param chip Selected chip item
132
+ */
133
+ onSelectionChanged(isSelected, chip) {
134
+ chip.selected = isSelected;
135
+ this.selectionChange.emit({
136
+ value: chip.value,
137
+ isSelected: isSelected
138
+ });
139
+ }
140
+ /**
141
+ * On Add new chip(s) clicked
142
+ */
143
+ onChipsSelectClicked() {
144
+ this.fieldClick.emit();
145
+ }
146
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepChipsComponent, deps: [{ token: i1.PepChipsService }, { token: i2.TranslateService }], target: i0.ɵɵFactoryTarget.Component });
147
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PepChipsComponent, selector: "pep-chips", inputs: { layoutType: "layoutType", inline: "inline", xAlignment: "xAlignment", renderTitle: "renderTitle", showTitle: "showTitle", label: "label", mandatory: "mandatory", disabled: "disabled", classNames: "classNames", chips: "chips", type: "type", orientation: "orientation", styleType: "styleType", multiSelect: "multiSelect", placeholder: "placeholder" }, outputs: { fieldClick: "fieldClick", selectionChange: "selectionChange" }, providers: [PepChipsService], usesInheritance: true, ngImport: i0, template: "<!-- <ng-container [formGroup]=\"form\"> -->\n <pep-field-title *ngIf=\"renderTitle\" \n [label]=\"label\" \n [mandatory]=\"mandatory\"\n [disabled]=\"disabled\" \n [xAlignment]=\"xAlignment\" \n [showTitle]=\"showTitle\">\n </pep-field-title>\n <div class=\"pep-chips-container\" [ngClass]=\"[type === 'input' ? 'input-type-state' : '', chips?.length > 0 ? 'need-gap' : '' ]\" [ngStyle]=\"{ 'height': inline === true ? '100%' : 'auto' }\">\n <!-- <mat-form-field class=\"pep-chips-container keep-background-on-focus\" [ngClass]=\"type === 'select' ? 'not-mat-form-state' : ''\" appearance=\"outline\"> -->\n <mat-chip-grid #chipList [ngClass]=\"{'mat-chip-list-stacked': orientation === 'vertical'}\">\n <!-- If you need multi-select, implement selection logic in your component and use custom classes -->\n <mat-chip-row *ngFor=\"let chip of chips\" class=\"pep-chips {{ styleType }} {{ classNames }}\" [disabled]=\"chip.disabled || disabled\"\n [removable]=\"chip.removable\"\n (removed)=\"onChipRemoved(chip)\" (selectionChange)=\"onSelectionChanged($event.selected, chip)\">\n<!-- If you need selection state, add a custom class or attribute here and handle selection logic in your TS -->\n <span class=\"ellipsis pull-left flip noSelect\" title=\"{{chip.value}}\">{{chip.value}}</span>\n <pep-button *ngIf=\"chip.removable\" matChipRemove styleType=\"weak\" styleStateType=\"system\" sizeType=\"xs\" iconName=\"system_close\"></pep-button>\n </mat-chip-row>\n </mat-chip-grid>\n <input *ngIf=\"type === 'input' && !disabled\" matInput autocomplete=\"off\" class=\"chip-input\"\n [placeholder]=\"placeholder || 'CHIPS.ADD_CHIP' | translate\" [matChipInputFor]=\"chipList\"\n [matChipInputAddOnBlur]=\"true\" (matChipInputTokenEnd)=\"onChipAdded($event)\">\n <pep-button *ngIf=\"type === 'select' && !disabled\" [value]=\"placeholder || 'CHIPS.ADD_CHIP' | translate\" styleType=\"weak\" styleStateType=\"system\" sizeType=\"xs\" iconName=\"number_plus\"\n iconPosition=\"end\" (buttonClick)=\"onChipsSelectClicked()\"></pep-button>\n <!-- </mat-form-field> -->\n </div>\n<!-- </ng-container> -->", styles: [".pep-chips-container{border-radius:var(--pep-border-radius-md, .25rem);padding:var(--pep-spacing-sm, .5rem);background-color:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.04);display:flex;flex-direction:column;max-height:100%}.pep-chips-container.need-gap{gap:var(--pep-spacing-sm, .5rem)}.pep-chips-container ::ng-deep .mat-chip-list,.pep-chips-container ::ng-deep .mat-mdc-chip-grid{width:100%;overflow-y:auto;height:calc(100% - var(--pep-line-height-sm, 1.09375rem))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips{gap:var(--pep-spacing-sm, .5rem);margin:0}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips{font-family:var(--pep-font-family-body, Inter),-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:var(--pep-font-size-xs, .75rem);font-weight:var(--pep-font-weight-normal, 400);line-height:var(--pep-line-height-xs, .9375rem);margin:0;padding-block:0;padding-inline-start:var(--pep-spacing-sm, .5rem);padding-inline-end:var(--pep-spacing-xs, .25rem);height:var(--pep-line-height-md, 1.25rem);min-height:unset;z-index:1;gap:var(--pep-spacing-xs, .25rem);max-width:100%}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-chip-remove,.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-chip-remove,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove{height:unset;width:unset;margin:0;opacity:1!important;margin-top:var(--pep-spacing-2xs, .125rem)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove .pep-button{flex-shrink:0;border-radius:50%;min-width:unset;height:var(--pep-spacing-lg, 1rem);width:var(--pep-spacing-lg, 1rem)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove .pep-button .mat-mdc-icon{height:var(--pep-spacing-md, .75rem);width:var(--pep-spacing-md, .75rem);font-size:var(--pep-font-size-md, 1rem);margin:unset}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .noSelect,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .noSelect,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .noSelect,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .noSelect{-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .noSelect:focus,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .noSelect:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .noSelect:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .noSelect:focus{outline:none!important}.pep-chips-container ::ng-deep .mat-chip-list.mat-chip-list-stacked .pep-chips,.pep-chips-container ::ng-deep .mat-chip-list.mat-mdc-chip-list-stacked .pep-chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid.mat-chip-list-stacked .pep-chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid.mat-mdc-chip-list-stacked .pep-chips{justify-content:space-between;width:fit-content!important}.pep-chips-container ::ng-deep .mat-chip-list.mat-chip-list-stacked .mat-chip-input,.pep-chips-container ::ng-deep .mat-chip-list.mat-chip-list-stacked .mat-mdc-chip-input,.pep-chips-container ::ng-deep .mat-chip-list.mat-mdc-chip-list-stacked .mat-chip-input,.pep-chips-container ::ng-deep .mat-chip-list.mat-mdc-chip-list-stacked .mat-mdc-chip-input,.pep-chips-container ::ng-deep .mat-mdc-chip-grid.mat-chip-list-stacked .mat-chip-input,.pep-chips-container ::ng-deep .mat-mdc-chip-grid.mat-chip-list-stacked .mat-mdc-chip-input,.pep-chips-container ::ng-deep .mat-mdc-chip-grid.mat-mdc-chip-list-stacked .mat-chip-input,.pep-chips-container ::ng-deep .mat-mdc-chip-grid.mat-mdc-chip-list-stacked .mat-mdc-chip-input{flex:unset;width:100%}.pep-chips-container .chip-input{background:transparent;border:none;outline:none;padding:0;margin:0;width:100%;max-width:100%;vertical-align:bottom;text-align:inherit;box-sizing:content-box;font-size:var(--pep-font-size-sm, .875rem)!important;line-height:var(--pep-line-height-sm, 1.09375rem)!important;max-height:var(--pep-line-height-sm, 1.09375rem)}.pep-chips-container .mat-chip-input,.pep-chips-container .mat-mdc-chip-input{font-family:var(--pep-font-family-body, Inter),-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:var(--pep-font-size-xs, .75rem);font-weight:var(--pep-font-weight-normal, 400);line-height:var(--pep-line-height-md, 1.25rem);margin:0}.pep-chips-container .mat-chip-input::placeholder,.pep-chips-container .mat-mdc-chip-input::placeholder{color:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.7)}.pep-chips-container .chips-select{font-family:var(--pep-font-family-body, Inter),-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:var(--pep-font-size-xs, .75rem);font-weight:var(--pep-font-weight-normal, 400);line-height:var(--pep-line-height-md, 1.25rem);z-index:1;cursor:pointer}.pep-chips-container pep-button{display:block!important}\n", ".pep-chips-container{background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.08)}.pep-chips-container.input-type-state:hover{background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.16)}.pep-chips-container ::ng-deep .mat-chip-list:focus-visible,.pep-chips-container ::ng-deep .mat-mdc-chip-grid:focus-visible{outline:none}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip.mat-standard-chip:after,.pep-chips-container ::ng-deep .mat-chip-list .mat-mdc-chip.mat-mdc-standard-chip:after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip.mat-standard-chip:after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-mdc-chip.mat-mdc-standard-chip:after{background:unset}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip.mat-standard-chip:focus:after,.pep-chips-container ::ng-deep .mat-chip-list .mat-mdc-chip.mat-mdc-standard-chip:focus:after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip.mat-standard-chip:focus:after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-mdc-chip.mat-mdc-standard-chip:focus:after{opacity:unset}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips{background:#fff;border:1px solid black}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.regular,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.regular,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.regular,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.regular{background:hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),98%);box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);border:1px solid hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),calc(var(--pep-color-regular-l, 10%) + 30%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.regular:hover,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.regular:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.regular:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.regular:hover{background:hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),98%);box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.16);border:1px solid hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),calc(var(--pep-color-regular-l, 10%) + 20%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.regular:focus,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.regular:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.regular:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.regular:focus{background:hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),88%);box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.16);border:1px solid hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),var(--pep-color-regular-l, 10%));box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak{background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.08)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak:hover,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak:hover{background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.16)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak:focus,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak:focus{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak:focus:not(.keep-background-on-focus),.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak:focus:not(.keep-background-on-focus),.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak:focus:not(.keep-background-on-focus),.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak:focus:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak:focus:after,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak:focus:after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak:focus:after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak:focus:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak-invert,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak-invert,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak-invert,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak-invert{background:hsla(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%),.12);color:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak-invert .svg-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak-invert .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak-invert .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak-invert .svg-icon{fill:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))!important}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak-invert:hover,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak-invert:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak-invert:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak-invert:hover{background:hsla(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%),.24);box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);cursor:pointer}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak-invert:focus,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak-invert:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak-invert:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak-invert:focus{background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%));box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5);color:hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak-invert:focus .svg-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak-invert:focus .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak-invert:focus .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak-invert:focus .svg-icon{fill:hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))!important}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),var(--pep-color-strong-l, 27%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);color:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .svg-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .svg-icon{fill:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .svg-icon.stroke{fill:unset;stroke:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong:hover,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong:hover{background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),calc(var(--pep-color-strong-l, 27%) - 8%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.16)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong:focus,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong:focus{background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),calc(var(--pep-color-strong-l, 27%) - 15%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),var(--pep-color-strong-l, 27%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);color:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button .svg-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button .svg-icon{fill:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button .svg-icon.stroke{fill:unset;stroke:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:hover,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:hover{background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),calc(var(--pep-color-strong-l, 27%) - 8%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.16)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:focus,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:focus{background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),calc(var(--pep-color-strong-l, 27%) - 15%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:active,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:active,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:active,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:active{background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),calc(var(--pep-color-strong-l, 27%) - 15%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.32)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled),.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled),.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled),.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):after,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):after{border:unset}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon{fill:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke{fill:unset;stroke:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color){background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),var(--pep-color-strong-l, 27%))!important;opacity:.5!important;color:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon{fill:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke{fill:unset;stroke:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips ::ng-deep .mat-mdc-chip-trailing-icon,.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips ::ng-deep .mdc-evolution-chip__action--primary,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips ::ng-deep .mat-mdc-chip-trailing-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips ::ng-deep .mdc-evolution-chip__action--primary,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips ::ng-deep .mat-mdc-chip-trailing-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips ::ng-deep .mdc-evolution-chip__action--primary,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips ::ng-deep .mat-mdc-chip-trailing-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips ::ng-deep .mdc-evolution-chip__action--primary{padding-inline:0!important}\n"], dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i4.MatChipGrid, selector: "mat-chip-grid", inputs: ["tabIndex", "disabled", "placeholder", "required", "value", "errorStateMatcher"], outputs: ["change", "valueChange"] }, { kind: "directive", type: i4.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i4.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i4.MatChipRow, selector: "mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]", inputs: ["color", "disabled", "disableRipple", "tabIndex", "editable"], outputs: ["edited"] }, { kind: "component", type: i5.PepFieldTitleComponent, selector: "pep-field-title", inputs: ["label", "mandatory", "disabled", "maxFieldCharacters", "hint", "xAlignment", "showTitle", "inputLength", "fontBodyType", "multiLine"] }, { kind: "component", type: i6.PepButtonComponent, selector: "pep-button", inputs: ["key", "value", "styleType", "styleStateType", "sizeType", "classNames", "disabled", "iconName", "iconPosition", "visible"], outputs: ["buttonClick"] }, { kind: "pipe", type: i2.TranslatePipe, name: "translate" }] });
148
+ }
149
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepChipsComponent, decorators: [{
150
+ type: Component,
151
+ args: [{ selector: 'pep-chips', providers: [PepChipsService], template: "<!-- <ng-container [formGroup]=\"form\"> -->\n <pep-field-title *ngIf=\"renderTitle\" \n [label]=\"label\" \n [mandatory]=\"mandatory\"\n [disabled]=\"disabled\" \n [xAlignment]=\"xAlignment\" \n [showTitle]=\"showTitle\">\n </pep-field-title>\n <div class=\"pep-chips-container\" [ngClass]=\"[type === 'input' ? 'input-type-state' : '', chips?.length > 0 ? 'need-gap' : '' ]\" [ngStyle]=\"{ 'height': inline === true ? '100%' : 'auto' }\">\n <!-- <mat-form-field class=\"pep-chips-container keep-background-on-focus\" [ngClass]=\"type === 'select' ? 'not-mat-form-state' : ''\" appearance=\"outline\"> -->\n <mat-chip-grid #chipList [ngClass]=\"{'mat-chip-list-stacked': orientation === 'vertical'}\">\n <!-- If you need multi-select, implement selection logic in your component and use custom classes -->\n <mat-chip-row *ngFor=\"let chip of chips\" class=\"pep-chips {{ styleType }} {{ classNames }}\" [disabled]=\"chip.disabled || disabled\"\n [removable]=\"chip.removable\"\n (removed)=\"onChipRemoved(chip)\" (selectionChange)=\"onSelectionChanged($event.selected, chip)\">\n<!-- If you need selection state, add a custom class or attribute here and handle selection logic in your TS -->\n <span class=\"ellipsis pull-left flip noSelect\" title=\"{{chip.value}}\">{{chip.value}}</span>\n <pep-button *ngIf=\"chip.removable\" matChipRemove styleType=\"weak\" styleStateType=\"system\" sizeType=\"xs\" iconName=\"system_close\"></pep-button>\n </mat-chip-row>\n </mat-chip-grid>\n <input *ngIf=\"type === 'input' && !disabled\" matInput autocomplete=\"off\" class=\"chip-input\"\n [placeholder]=\"placeholder || 'CHIPS.ADD_CHIP' | translate\" [matChipInputFor]=\"chipList\"\n [matChipInputAddOnBlur]=\"true\" (matChipInputTokenEnd)=\"onChipAdded($event)\">\n <pep-button *ngIf=\"type === 'select' && !disabled\" [value]=\"placeholder || 'CHIPS.ADD_CHIP' | translate\" styleType=\"weak\" styleStateType=\"system\" sizeType=\"xs\" iconName=\"number_plus\"\n iconPosition=\"end\" (buttonClick)=\"onChipsSelectClicked()\"></pep-button>\n <!-- </mat-form-field> -->\n </div>\n<!-- </ng-container> -->", styles: [".pep-chips-container{border-radius:var(--pep-border-radius-md, .25rem);padding:var(--pep-spacing-sm, .5rem);background-color:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.04);display:flex;flex-direction:column;max-height:100%}.pep-chips-container.need-gap{gap:var(--pep-spacing-sm, .5rem)}.pep-chips-container ::ng-deep .mat-chip-list,.pep-chips-container ::ng-deep .mat-mdc-chip-grid{width:100%;overflow-y:auto;height:calc(100% - var(--pep-line-height-sm, 1.09375rem))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips{gap:var(--pep-spacing-sm, .5rem);margin:0}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips{font-family:var(--pep-font-family-body, Inter),-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:var(--pep-font-size-xs, .75rem);font-weight:var(--pep-font-weight-normal, 400);line-height:var(--pep-line-height-xs, .9375rem);margin:0;padding-block:0;padding-inline-start:var(--pep-spacing-sm, .5rem);padding-inline-end:var(--pep-spacing-xs, .25rem);height:var(--pep-line-height-md, 1.25rem);min-height:unset;z-index:1;gap:var(--pep-spacing-xs, .25rem);max-width:100%}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-chip-remove,.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-chip-remove,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove{height:unset;width:unset;margin:0;opacity:1!important;margin-top:var(--pep-spacing-2xs, .125rem)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove .pep-button,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove .pep-button{flex-shrink:0;border-radius:50%;min-width:unset;height:var(--pep-spacing-lg, 1rem);width:var(--pep-spacing-lg, 1rem)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .mat-mdc-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-chip-remove .pep-button .mat-mdc-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove .pep-button .mat-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .mat-mdc-chip-remove .pep-button .mat-mdc-icon{height:var(--pep-spacing-md, .75rem);width:var(--pep-spacing-md, .75rem);font-size:var(--pep-font-size-md, 1rem);margin:unset}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .noSelect,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .noSelect,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .noSelect,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .noSelect{-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips .noSelect:focus,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips .noSelect:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips .noSelect:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips .noSelect:focus{outline:none!important}.pep-chips-container ::ng-deep .mat-chip-list.mat-chip-list-stacked .pep-chips,.pep-chips-container ::ng-deep .mat-chip-list.mat-mdc-chip-list-stacked .pep-chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid.mat-chip-list-stacked .pep-chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid.mat-mdc-chip-list-stacked .pep-chips{justify-content:space-between;width:fit-content!important}.pep-chips-container ::ng-deep .mat-chip-list.mat-chip-list-stacked .mat-chip-input,.pep-chips-container ::ng-deep .mat-chip-list.mat-chip-list-stacked .mat-mdc-chip-input,.pep-chips-container ::ng-deep .mat-chip-list.mat-mdc-chip-list-stacked .mat-chip-input,.pep-chips-container ::ng-deep .mat-chip-list.mat-mdc-chip-list-stacked .mat-mdc-chip-input,.pep-chips-container ::ng-deep .mat-mdc-chip-grid.mat-chip-list-stacked .mat-chip-input,.pep-chips-container ::ng-deep .mat-mdc-chip-grid.mat-chip-list-stacked .mat-mdc-chip-input,.pep-chips-container ::ng-deep .mat-mdc-chip-grid.mat-mdc-chip-list-stacked .mat-chip-input,.pep-chips-container ::ng-deep .mat-mdc-chip-grid.mat-mdc-chip-list-stacked .mat-mdc-chip-input{flex:unset;width:100%}.pep-chips-container .chip-input{background:transparent;border:none;outline:none;padding:0;margin:0;width:100%;max-width:100%;vertical-align:bottom;text-align:inherit;box-sizing:content-box;font-size:var(--pep-font-size-sm, .875rem)!important;line-height:var(--pep-line-height-sm, 1.09375rem)!important;max-height:var(--pep-line-height-sm, 1.09375rem)}.pep-chips-container .mat-chip-input,.pep-chips-container .mat-mdc-chip-input{font-family:var(--pep-font-family-body, Inter),-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:var(--pep-font-size-xs, .75rem);font-weight:var(--pep-font-weight-normal, 400);line-height:var(--pep-line-height-md, 1.25rem);margin:0}.pep-chips-container .mat-chip-input::placeholder,.pep-chips-container .mat-mdc-chip-input::placeholder{color:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.7)}.pep-chips-container .chips-select{font-family:var(--pep-font-family-body, Inter),-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:var(--pep-font-size-xs, .75rem);font-weight:var(--pep-font-weight-normal, 400);line-height:var(--pep-line-height-md, 1.25rem);z-index:1;cursor:pointer}.pep-chips-container pep-button{display:block!important}\n", ".pep-chips-container{background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.08)}.pep-chips-container.input-type-state:hover{background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.16)}.pep-chips-container ::ng-deep .mat-chip-list:focus-visible,.pep-chips-container ::ng-deep .mat-mdc-chip-grid:focus-visible{outline:none}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip.mat-standard-chip:after,.pep-chips-container ::ng-deep .mat-chip-list .mat-mdc-chip.mat-mdc-standard-chip:after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip.mat-standard-chip:after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-mdc-chip.mat-mdc-standard-chip:after{background:unset}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip.mat-standard-chip:focus:after,.pep-chips-container ::ng-deep .mat-chip-list .mat-mdc-chip.mat-mdc-standard-chip:focus:after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip.mat-standard-chip:focus:after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-mdc-chip.mat-mdc-standard-chip:focus:after{opacity:unset}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips{background:#fff;border:1px solid black}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.regular,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.regular,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.regular,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.regular{background:hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),98%);box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);border:1px solid hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),calc(var(--pep-color-regular-l, 10%) + 30%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.regular:hover,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.regular:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.regular:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.regular:hover{background:hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),98%);box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.16);border:1px solid hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),calc(var(--pep-color-regular-l, 10%) + 20%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.regular:focus,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.regular:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.regular:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.regular:focus{background:hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),88%);box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.16);border:1px solid hsl(var(--pep-color-regular-h, 0),var(--pep-color-regular-s, 0%),var(--pep-color-regular-l, 10%));box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak{background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.08)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak:hover,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak:hover{background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.16)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak:focus,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak:focus{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak:focus:not(.keep-background-on-focus),.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak:focus:not(.keep-background-on-focus),.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak:focus:not(.keep-background-on-focus),.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak:focus:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak:focus:after,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak:focus:after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak:focus:after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak:focus:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak-invert,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak-invert,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak-invert,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak-invert{background:hsla(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%),.12);color:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak-invert .svg-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak-invert .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak-invert .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak-invert .svg-icon{fill:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))!important}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak-invert:hover,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak-invert:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak-invert:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak-invert:hover{background:hsla(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%),.24);box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);cursor:pointer}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak-invert:focus,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak-invert:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak-invert:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak-invert:focus{background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%));box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5);color:hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.weak-invert:focus .svg-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.weak-invert:focus .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.weak-invert:focus .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.weak-invert:focus .svg-icon{fill:hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))!important}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),var(--pep-color-strong-l, 27%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);color:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .svg-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .svg-icon{fill:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .svg-icon.stroke{fill:unset;stroke:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong:hover,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong:hover{background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),calc(var(--pep-color-strong-l, 27%) - 8%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.16)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong:focus,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong:focus{background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),calc(var(--pep-color-strong-l, 27%) - 15%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),var(--pep-color-strong-l, 27%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);color:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button .svg-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button .svg-icon{fill:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button .svg-icon.stroke{fill:unset;stroke:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:hover,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:hover,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:hover{background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),calc(var(--pep-color-strong-l, 27%) - 8%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.16)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:focus,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:focus,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:focus{background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),calc(var(--pep-color-strong-l, 27%) - 15%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:active,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:active,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:active,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:active{background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),calc(var(--pep-color-strong-l, 27%) - 15%));box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.32)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled),.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled),.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled),.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):after,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):after,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):after{border:unset}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon{fill:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke{fill:unset;stroke:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color){background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),var(--pep-color-strong-l, 27%))!important;opacity:.5!important;color:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon{fill:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke{fill:unset;stroke:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips ::ng-deep .mat-mdc-chip-trailing-icon,.pep-chips-container ::ng-deep .mat-chip-list .mat-chip-list-wrapper .pep-chips ::ng-deep .mdc-evolution-chip__action--primary,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips ::ng-deep .mat-mdc-chip-trailing-icon,.pep-chips-container ::ng-deep .mat-chip-list .mdc-evolution-chip-set__chips .pep-chips ::ng-deep .mdc-evolution-chip__action--primary,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips ::ng-deep .mat-mdc-chip-trailing-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mat-chip-list-wrapper .pep-chips ::ng-deep .mdc-evolution-chip__action--primary,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips ::ng-deep .mat-mdc-chip-trailing-icon,.pep-chips-container ::ng-deep .mat-mdc-chip-grid .mdc-evolution-chip-set__chips .pep-chips ::ng-deep .mdc-evolution-chip__action--primary{padding-inline:0!important}\n"] }]
152
+ }], ctorParameters: function () { return [{ type: i1.PepChipsService }, { type: i2.TranslateService }]; }, propDecorators: { layoutType: [{
153
+ type: Input
154
+ }], inline: [{
155
+ type: Input
156
+ }], xAlignment: [{
157
+ type: Input
158
+ }], renderTitle: [{
159
+ type: Input
160
+ }], showTitle: [{
161
+ type: Input
162
+ }], label: [{
163
+ type: Input
164
+ }], mandatory: [{
165
+ type: Input
166
+ }], disabled: [{
167
+ type: Input
168
+ }], classNames: [{
169
+ type: Input
170
+ }], chips: [{
171
+ type: Input
172
+ }], type: [{
173
+ type: Input
174
+ }], orientation: [{
175
+ type: Input
176
+ }], styleType: [{
177
+ type: Input
178
+ }], multiSelect: [{
179
+ type: Input
180
+ }], placeholder: [{
181
+ type: Input
182
+ }], fieldClick: [{
183
+ type: Output
184
+ }], selectionChange: [{
185
+ type: Output
186
+ }] } });
187
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpcHMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LWxpYi9jaGlwcy9jaGlwcy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtbGliL2NoaXBzL2NoaXBzLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDSCxTQUFTLEVBRVQsS0FBSyxFQUNMLE1BQU0sRUFDTixZQUFZLEVBRWYsTUFBTSxlQUFlLENBQUM7QUFJdkIsT0FBTyxFQUFFLDRCQUE0QixFQUF1RCxzQkFBc0IsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBRXBKLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7Ozs7Ozs7QUFTbEQsTUFBTSxPQUFPLGlCQUFrQixTQUFRLHNCQUFzQjtJQXNGdEM7SUFBdUM7SUFyRjFEOzs7O01BSUU7SUFFRix3REFBd0Q7SUFDL0MsVUFBVSxHQUFrQixNQUFNLENBQUM7SUFDbkMsTUFBTSxHQUFHLEtBQUssQ0FBQztJQUNmLFVBQVUsR0FBMkIsNEJBQTRCLENBQUM7SUFDbEUsV0FBVyxHQUFHLElBQUksQ0FBQztJQUNuQixTQUFTLEdBQUcsSUFBSSxDQUFDO0lBQ2pCLEtBQUssR0FBRyxFQUFFLENBQUM7SUFFWCxTQUFTLEdBQUcsS0FBSyxDQUFDO0lBQ2xCLFFBQVEsR0FBRyxLQUFLLENBQUM7SUFDakIsVUFBVSxHQUFHLEVBQUUsQ0FBQztJQUV6QixJQUNJLEtBQUssQ0FBQyxLQUFpQjtRQUN2QixJQUFJLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN0QyxDQUFDO0lBQ0QsSUFBSSxLQUFLO1FBQ0wsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQztJQUNuQyxDQUFDO0lBRUQ7Ozs7O01BS0U7SUFDTyxJQUFJLEdBQXNCLE9BQU8sQ0FBQztJQUUzQzs7Ozs7TUFLRTtJQUNPLFdBQVcsR0FBNEIsWUFBWSxDQUFDO0lBRTdEOzs7OztNQUtFO0lBQ08sU0FBUyxHQUFpQixTQUFTLENBQUM7SUFFN0M7Ozs7TUFJRTtJQUNPLFdBQVcsR0FBRyxLQUFLLENBQUM7SUFFN0I7Ozs7TUFJRTtJQUNPLFdBQVcsR0FBRyxFQUFFLENBQUM7SUFFMUI7Ozs7O09BS0c7SUFDTyxVQUFVLEdBQXVCLElBQUksWUFBWSxFQUFRLENBQUM7SUFDMUQsZUFBZSxHQUFvQyxJQUFJLFlBQVksRUFBcUIsQ0FBQztJQUVuRzs7T0FFRztJQUNILElBQUksUUFBUTtRQUNSLE1BQU0sUUFBUSxHQUFHLElBQUksQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDO1FBQzVDLElBQUksSUFBSSxDQUFDLFdBQVcsRUFBRTtZQUNsQixPQUFPLFFBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1NBQzFDO2FBQU07WUFDSCxPQUFPLFFBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO1NBQy9DO0lBQ0wsQ0FBQztJQUVELFlBQW1CLFlBQTZCLEVBQVUsVUFBNEI7UUFDbEYsS0FBSyxFQUFFLENBQUM7UUFETyxpQkFBWSxHQUFaLFlBQVksQ0FBaUI7UUFBVSxlQUFVLEdBQVYsVUFBVSxDQUFrQjtRQUVsRixFQUFFO0lBQ04sQ0FBQztJQUVELFFBQVE7UUFDTixFQUFFO0lBQ0osQ0FBQztJQUVEOzs7T0FHRztJQUNILGNBQWMsQ0FBQyxLQUFpQjtRQUM1QixLQUFLLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztJQUMzRCxDQUFDO0lBRUQ7OztPQUdHO0lBQ0gsV0FBVyxDQUFDLEtBQXdCO1FBQ2hDLE1BQU0sS0FBSyxHQUFHLENBQUMsS0FBSyxDQUFDLEtBQUssSUFBSSxFQUFFLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUV6QyxJQUFJLEtBQUssRUFBRTtZQUNQLElBQUksQ0FBQyxZQUFZLENBQUMsT0FBTyxDQUFDO2dCQUN0QixLQUFLLEVBQUUsS0FBSzthQUNmLENBQUMsQ0FBQztZQUNILHdCQUF3QjtZQUN4QixLQUFLLENBQUMsU0FBUyxFQUFFLEtBQUssRUFBRSxDQUFDO1NBQzVCO0lBQ0wsQ0FBQztJQUVEOzs7T0FHRztJQUNILGFBQWEsQ0FBQyxJQUFjO1FBQ3hCLE1BQU0sS0FBSyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDO1FBRXZDLElBQUksS0FBSyxJQUFJLENBQUMsRUFBRTtZQUNaLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQztTQUMvQjtJQUNMLENBQUM7SUFFRDs7OztPQUlHO0lBQ0gsa0JBQWtCLENBQUMsVUFBbUIsRUFBRSxJQUFjO1FBQ2xELElBQUksQ0FBQyxRQUFRLEdBQUcsVUFBVSxDQUFDO1FBRTNCLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDO1lBQ3RCLEtBQUssRUFBRSxJQUFJLENBQUMsS0FBSztZQUNqQixVQUFVLEVBQUUsVUFBVTtTQUN6QixDQUFDLENBQUE7SUFDTixDQUFDO0lBRUQ7O09BRUc7SUFDSCxvQkFBb0I7UUFDaEIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUMzQixDQUFDO3dHQXRKUSxpQkFBaUI7NEZBQWpCLGlCQUFpQix1ZEFGZixDQUFDLGVBQWUsQ0FBQyxpRENwQmhDLG9wRUEyQndCOzs0RkRMWCxpQkFBaUI7a0JBTjdCLFNBQVM7K0JBQ0ksV0FBVyxhQUdWLENBQUMsZUFBZSxDQUFDO3FJQVVuQixVQUFVO3NCQUFsQixLQUFLO2dCQUNHLE1BQU07c0JBQWQsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLO2dCQUNHLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0csU0FBUztzQkFBakIsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBRUcsU0FBUztzQkFBakIsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBR0YsS0FBSztzQkFEUixLQUFLO2dCQWNHLElBQUk7c0JBQVosS0FBSztnQkFRRyxXQUFXO3NCQUFuQixLQUFLO2dCQVFHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBT0csV0FBVztzQkFBbkIsS0FBSztnQkFPRyxXQUFXO3NCQUFuQixLQUFLO2dCQVFJLFVBQVU7c0JBQW5CLE1BQU07Z0JBQ0csZUFBZTtzQkFBeEIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gICAgQ29tcG9uZW50LFxuICAgIE9uSW5pdCxcbiAgICBJbnB1dCxcbiAgICBPdXRwdXQsXG4gICAgRXZlbnRFbWl0dGVyLFxuICAgIE9uRGVzdHJveVxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbi8vIGltcG9ydCB7IEZvcm1Hcm91cCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IE1hdENoaXBJbnB1dEV2ZW50LCB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NoaXBzJztcbmltcG9ydCB7IFRyYW5zbGF0ZVNlcnZpY2UgfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJztcbmltcG9ydCB7IERFRkFVTFRfSE9SSVpPTlRBTF9BTElHTk1FTlQsIFBlcEhvcml6b250YWxBbGlnbm1lbnQsIFBlcExheW91dFR5cGUsIFBlcFN0eWxlVHlwZSwgQmFzZURlc3Ryb3llckRpcmVjdGl2ZSB9IGZyb20gJ0BwZXBwZXJpLWFkZG9ucy9uZ3gtbGliJztcbmltcG9ydCB7IElQZXBDaGlwLCBQZXBDaGlwc09yaWVudGF0aW9uVHlwZSwgUGVwQ2hpcHNJbnB1dFR5cGUsIElQZXBDaGlwU2VsZWN0aW9uIH0gZnJvbSAnLi9jaGlwcy5tb2RlbCc7XG5pbXBvcnQgeyBQZXBDaGlwc1NlcnZpY2UgfSBmcm9tICcuL2NoaXBzLnNlcnZpY2UnO1xuXG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAncGVwLWNoaXBzJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vY2hpcHMuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2NoaXBzLmNvbXBvbmVudC5zY3NzJywgJy4vY2hpcHMuY29tcG9uZW50LnRoZW1lLnNjc3MnXSxcbiAgICBwcm92aWRlcnM6IFtQZXBDaGlwc1NlcnZpY2VdXG59KVxuZXhwb3J0IGNsYXNzIFBlcENoaXBzQ29tcG9uZW50IGV4dGVuZHMgQmFzZURlc3Ryb3llckRpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gICAgLyoqXG4gICAgKiBUaGUgY2hpcHMgd2l0aGluIHRoZSBjaGlwIGxpc3QuXG4gICAgKiAgICBcbiAgICAqIEBtZW1iZXJvZiBQZXBDaGlwc0NvbXBvbmVudFxuICAgICovXG5cbiAgICAvLyBASW5wdXQoKSBmb3JtOiBGb3JtR3JvdXAgPSBudWxsOyAvLyBXaHkgd2UgbmVlZCB0aGlzP1xuICAgIEBJbnB1dCgpIGxheW91dFR5cGU6IFBlcExheW91dFR5cGUgPSAnZm9ybSc7XG4gICAgQElucHV0KCkgaW5saW5lID0gZmFsc2U7XG4gICAgQElucHV0KCkgeEFsaWdubWVudDogUGVwSG9yaXpvbnRhbEFsaWdubWVudCA9IERFRkFVTFRfSE9SSVpPTlRBTF9BTElHTk1FTlQ7XG4gICAgQElucHV0KCkgcmVuZGVyVGl0bGUgPSB0cnVlO1xuICAgIEBJbnB1dCgpIHNob3dUaXRsZSA9IHRydWU7IFxuICAgIEBJbnB1dCgpIGxhYmVsID0gJyc7XG5cbiAgICBASW5wdXQoKSBtYW5kYXRvcnkgPSBmYWxzZTtcbiAgICBASW5wdXQoKSBkaXNhYmxlZCA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIGNsYXNzTmFtZXMgPSAnJztcbiAgICBcbiAgICBASW5wdXQoKVxuICAgIHNldCBjaGlwcyhjaGlwczogSVBlcENoaXBbXSkge1xuICAgICAgICB0aGlzLmNoaXBzU2VydmljZS5pbml0RGF0YShjaGlwcyk7XG4gICAgfVxuICAgIGdldCBjaGlwcygpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuY2hpcHNTZXJ2aWNlLmNoaXBzO1xuICAgIH1cblxuICAgIC8qKlxuICAgICogVGhlIGFkZCBjaGlwIGVtaXR0ZXIgdHlwZS5cbiAgICAqXG4gICAgKiBAdHlwZSB7UGVwQ2hpcHNJbnB1dFR5cGV9XG4gICAgKiBAbWVtYmVyb2YgUGVwQ2hpcHNDb21wb25lbnRcbiAgICAqL1xuICAgIEBJbnB1dCgpIHR5cGU6IFBlcENoaXBzSW5wdXRUeXBlID0gJ2lucHV0JztcblxuICAgIC8qKlxuICAgICogVGhlIGNoaXAgbGF5cHV0IGRpcmVjdGlvbiB0eXBlLlxuICAgICpcbiAgICAqIEB0eXBlIHtQZXBDaGlwc09yaWVudGF0aW9uVHlwZX1cbiAgICAqIEBtZW1iZXJvZiBQZXBDaGlwc0NvbXBvbmVudFxuICAgICovXG4gICAgQElucHV0KCkgb3JpZW50YXRpb246IFBlcENoaXBzT3JpZW50YXRpb25UeXBlID0gJ2hvcml6b250YWwnO1xuXG4gICAgLyoqXG4gICAgKiBUaGUgc3R5bGUgb2YgdGhlIGJ1dHRvbi5cbiAgICAqXG4gICAgKiBAdHlwZSB7UGVwU3R5bGVUeXBlfVxuICAgICogQG1lbWJlcm9mIFBlcEJ1dHRvbkNvbXBvbmVudFxuICAgICovXG4gICAgQElucHV0KCkgc3R5bGVUeXBlOiBQZXBTdHlsZVR5cGUgPSAncmVndWxhcic7XG5cbiAgICAvKipcbiAgICAqIFdoZXRoZXIgY2hpcCBtdWx0aSBzZWxlY3QgYWxsb3dlZC5cbiAgICAqICAgIFxuICAgICogQG1lbWJlcm9mIFBlcENoaXBzQ29tcG9uZW50XG4gICAgKi9cbiAgICBASW5wdXQoKSBtdWx0aVNlbGVjdCA9IGZhbHNlO1xuXG4gICAgLyoqXG4gICAgKiBBZGQgbmV3IGNoaXAgcGxhY2Vob2xkZXIuXG4gICAgKiAgICBcbiAgICAqIEBtZW1iZXJvZiBQZXBDaGlwc0NvbXBvbmVudFxuICAgICovXG4gICAgQElucHV0KCkgcGxhY2Vob2xkZXIgPSAnJztcblxuICAgIC8qKlxuICAgICAqIEFkZCBuZXcgY2hpcChzKSBldmVudC5cbiAgICAgKlxuICAgICAqIEB0eXBlIHtFdmVudEVtaXR0ZXI8dm9pZD59XG4gICAgICogQG1lbWJlcm9mIFBlcEJ1dHRvbkNvbXBvbmVudFxuICAgICAqL1xuICAgIEBPdXRwdXQoKSBmaWVsZENsaWNrOiBFdmVudEVtaXR0ZXI8dm9pZD4gPSBuZXcgRXZlbnRFbWl0dGVyPHZvaWQ+KCk7XG4gICAgQE91dHB1dCgpIHNlbGVjdGlvbkNoYW5nZTogRXZlbnRFbWl0dGVyPElQZXBDaGlwU2VsZWN0aW9uPiA9IG5ldyBFdmVudEVtaXR0ZXI8SVBlcENoaXBTZWxlY3Rpb24+KCk7XG5cbiAgICAvKipcbiAgICAgKiBTZWxlY3RlZCBjaGlwKHMpXG4gICAgICovXG4gICAgZ2V0IHNlbGVjdGVkKCkge1xuICAgICAgICBjb25zdCBzZWxlY3RlZCA9IHRoaXMuY2hpcHNTZXJ2aWNlLnNlbGVjdGVkOyAgICAgICAgXG4gICAgICAgIGlmICh0aGlzLm11bHRpU2VsZWN0KSB7XG4gICAgICAgICAgICByZXR1cm4gc2VsZWN0ZWQubGVuZ3RoID8gc2VsZWN0ZWQgOiBbXTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHJldHVybiBzZWxlY3RlZC5sZW5ndGggPyBzZWxlY3RlZFswXSA6IG51bGw7XG4gICAgICAgIH0gICAgICAgIFxuICAgIH1cblxuICAgIGNvbnN0cnVjdG9yKHB1YmxpYyBjaGlwc1NlcnZpY2U6IFBlcENoaXBzU2VydmljZSwgcHJpdmF0ZSBfdHJhbnNsYXRlOiBUcmFuc2xhdGVTZXJ2aWNlKSB7XG4gICAgICAgIHN1cGVyKCk7XG4gICAgICAgIC8vXG4gICAgfVxuXG4gICAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgICAvL1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIEFkZGluZyBjaGlwKHMpIHRvIGN1cnJlbnQgY2hpcHMgbGlzdFxuICAgICAqIEBwYXJhbSBjaGlwcyBDaGlwKHMpIHRvIGFkZFxuICAgICAqL1xuICAgIGFkZENoaXBzVG9MaXN0KGNoaXBzOiBJUGVwQ2hpcFtdKSB7XG4gICAgICAgIGNoaXBzLmZvckVhY2goY2hpcCA9PiB0aGlzLmNoaXBzU2VydmljZS5hZGRDaGlwKGNoaXApKTtcbiAgICB9ICAgIFxuXG4gICAgLyoqXG4gICAgICogT24gbmV3IGNoaXAgYWRkZWRcbiAgICAgKiBAcGFyYW0gZXZlbnQgQ2hpcCBhZGRpdGlvbiBldmVudFxuICAgICAqL1xuICAgIG9uQ2hpcEFkZGVkKGV2ZW50OiBNYXRDaGlwSW5wdXRFdmVudCk6IHZvaWQge1xuICAgICAgICBjb25zdCB2YWx1ZSA9IChldmVudC52YWx1ZSB8fCAnJykudHJpbSgpO1xuXG4gICAgICAgIGlmICh2YWx1ZSkge1xuICAgICAgICAgICAgdGhpcy5jaGlwc1NlcnZpY2UuYWRkQ2hpcCh7XG4gICAgICAgICAgICAgICAgdmFsdWU6IHZhbHVlXG4gICAgICAgICAgICB9KTtcbiAgICAgICAgICAgIC8vIGNsZWFyIHRoZSBpbnB1dCB2YWx1ZVxuICAgICAgICAgICAgZXZlbnQuY2hpcElucHV0Py5jbGVhcigpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogT24gY2hpcCByZW1vdmVkXG4gICAgICogQHBhcmFtIGNoaXAgUmVtb3ZlZCBjaGlwIGl0ZW1cbiAgICAgKi9cbiAgICBvbkNoaXBSZW1vdmVkKGNoaXA6IElQZXBDaGlwKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IGluZGV4ID0gdGhpcy5jaGlwcy5pbmRleE9mKGNoaXApO1xuXG4gICAgICAgIGlmIChpbmRleCA+PSAwKSB7XG4gICAgICAgICAgICB0aGlzLmNoaXBzLnNwbGljZShpbmRleCwgMSk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBPbiBjaGlwIHNlbGVjdGlvbiBzdGF0dXMgY2hhbmdlZFxuICAgICAqIEBwYXJhbSBpc1NlbGVjdGVkIFdoZXRoZXIgdGhlIGNoaXAgaXMgc2VsZWN0ZWRcbiAgICAgKiBAcGFyYW0gY2hpcCBTZWxlY3RlZCBjaGlwIGl0ZW1cbiAgICAgKi9cbiAgICBvblNlbGVjdGlvbkNoYW5nZWQoaXNTZWxlY3RlZDogYm9vbGVhbiwgY2hpcDogSVBlcENoaXApIHtcbiAgICAgICAgY2hpcC5zZWxlY3RlZCA9IGlzU2VsZWN0ZWQ7XG5cbiAgICAgICAgdGhpcy5zZWxlY3Rpb25DaGFuZ2UuZW1pdCh7XG4gICAgICAgICAgICB2YWx1ZTogY2hpcC52YWx1ZSxcbiAgICAgICAgICAgIGlzU2VsZWN0ZWQ6IGlzU2VsZWN0ZWRcbiAgICAgICAgfSlcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBPbiBBZGQgbmV3IGNoaXAocykgY2xpY2tlZFxuICAgICAqL1xuICAgIG9uQ2hpcHNTZWxlY3RDbGlja2VkKCkge1xuICAgICAgICB0aGlzLmZpZWxkQ2xpY2suZW1pdCgpO1xuICAgIH1cblxufSIsIjwhLS0gPG5nLWNvbnRhaW5lciBbZm9ybUdyb3VwXT1cImZvcm1cIj4gLS0+XG4gIDxwZXAtZmllbGQtdGl0bGUgKm5nSWY9XCJyZW5kZXJUaXRsZVwiIFxuICAgICAgW2xhYmVsXT1cImxhYmVsXCIgXG4gICAgICBbbWFuZGF0b3J5XT1cIm1hbmRhdG9yeVwiXG4gICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIiBcbiAgICAgIFt4QWxpZ25tZW50XT1cInhBbGlnbm1lbnRcIiBcbiAgICAgIFtzaG93VGl0bGVdPVwic2hvd1RpdGxlXCI+XG4gIDwvcGVwLWZpZWxkLXRpdGxlPlxuICA8ZGl2IGNsYXNzPVwicGVwLWNoaXBzLWNvbnRhaW5lclwiIFtuZ0NsYXNzXT1cIlt0eXBlID09PSAnaW5wdXQnID8gJ2lucHV0LXR5cGUtc3RhdGUnIDogJycsIGNoaXBzPy5sZW5ndGggPiAwID8gJ25lZWQtZ2FwJyA6ICcnIF1cIiBbbmdTdHlsZV09XCJ7ICdoZWlnaHQnOiBpbmxpbmUgPT09IHRydWUgPyAnMTAwJScgOiAnYXV0bycgfVwiPlxuICA8IS0tIDxtYXQtZm9ybS1maWVsZCAgY2xhc3M9XCJwZXAtY2hpcHMtY29udGFpbmVyIGtlZXAtYmFja2dyb3VuZC1vbi1mb2N1c1wiIFtuZ0NsYXNzXT1cInR5cGUgPT09ICdzZWxlY3QnID8gJ25vdC1tYXQtZm9ybS1zdGF0ZScgOiAnJ1wiIGFwcGVhcmFuY2U9XCJvdXRsaW5lXCI+IC0tPlxuICAgIDxtYXQtY2hpcC1ncmlkICNjaGlwTGlzdCBbbmdDbGFzc109XCJ7J21hdC1jaGlwLWxpc3Qtc3RhY2tlZCc6IG9yaWVudGF0aW9uID09PSAndmVydGljYWwnfVwiPlxuICAgIDwhLS0gSWYgeW91IG5lZWQgbXVsdGktc2VsZWN0LCBpbXBsZW1lbnQgc2VsZWN0aW9uIGxvZ2ljIGluIHlvdXIgY29tcG9uZW50IGFuZCB1c2UgY3VzdG9tIGNsYXNzZXMgLS0+XG4gICAgICA8bWF0LWNoaXAtcm93ICpuZ0Zvcj1cImxldCBjaGlwIG9mIGNoaXBzXCIgY2xhc3M9XCJwZXAtY2hpcHMge3sgc3R5bGVUeXBlIH19IHt7IGNsYXNzTmFtZXMgfX1cIiBbZGlzYWJsZWRdPVwiY2hpcC5kaXNhYmxlZCB8fCBkaXNhYmxlZFwiXG4gICAgICAgIFtyZW1vdmFibGVdPVwiY2hpcC5yZW1vdmFibGVcIlxuICAgICAgICAocmVtb3ZlZCk9XCJvbkNoaXBSZW1vdmVkKGNoaXApXCIgKHNlbGVjdGlvbkNoYW5nZSk9XCJvblNlbGVjdGlvbkNoYW5nZWQoJGV2ZW50LnNlbGVjdGVkLCBjaGlwKVwiPlxuPCEtLSBJZiB5b3UgbmVlZCBzZWxlY3Rpb24gc3RhdGUsIGFkZCBhIGN1c3RvbSBjbGFzcyBvciBhdHRyaWJ1dGUgaGVyZSBhbmQgaGFuZGxlIHNlbGVjdGlvbiBsb2dpYyBpbiB5b3VyIFRTIC0tPlxuICAgICAgICA8c3BhbiBjbGFzcz1cImVsbGlwc2lzIHB1bGwtbGVmdCBmbGlwIG5vU2VsZWN0XCIgdGl0bGU9XCJ7e2NoaXAudmFsdWV9fVwiPnt7Y2hpcC52YWx1ZX19PC9zcGFuPlxuICAgICAgICA8cGVwLWJ1dHRvbiAqbmdJZj1cImNoaXAucmVtb3ZhYmxlXCIgbWF0Q2hpcFJlbW92ZSBzdHlsZVR5cGU9XCJ3ZWFrXCIgc3R5bGVTdGF0ZVR5cGU9XCJzeXN0ZW1cIiBzaXplVHlwZT1cInhzXCIgaWNvbk5hbWU9XCJzeXN0ZW1fY2xvc2VcIj48L3BlcC1idXR0b24+XG4gICAgICA8L21hdC1jaGlwLXJvdz5cbiAgICA8L21hdC1jaGlwLWdyaWQ+XG4gICAgPGlucHV0ICpuZ0lmPVwidHlwZSA9PT0gJ2lucHV0JyAmJiAhZGlzYWJsZWRcIiBtYXRJbnB1dCBhdXRvY29tcGxldGU9XCJvZmZcIiBjbGFzcz1cImNoaXAtaW5wdXRcIlxuICAgIFtwbGFjZWhvbGRlcl09XCJwbGFjZWhvbGRlciB8fCAnQ0hJUFMuQUREX0NISVAnIHwgdHJhbnNsYXRlXCIgW21hdENoaXBJbnB1dEZvcl09XCJjaGlwTGlzdFwiXG4gICAgW21hdENoaXBJbnB1dEFkZE9uQmx1cl09XCJ0cnVlXCIgKG1hdENoaXBJbnB1dFRva2VuRW5kKT1cIm9uQ2hpcEFkZGVkKCRldmVudClcIj5cbiAgICA8cGVwLWJ1dHRvbiAqbmdJZj1cInR5cGUgPT09ICdzZWxlY3QnICYmICFkaXNhYmxlZFwiICBbdmFsdWVdPVwicGxhY2Vob2xkZXIgfHwgJ0NISVBTLkFERF9DSElQJyB8IHRyYW5zbGF0ZVwiIHN0eWxlVHlwZT1cIndlYWtcIiBzdHlsZVN0YXRlVHlwZT1cInN5c3RlbVwiIHNpemVUeXBlPVwieHNcIiBpY29uTmFtZT1cIm51bWJlcl9wbHVzXCJcbiAgICBpY29uUG9zaXRpb249XCJlbmRcIiAoYnV0dG9uQ2xpY2spPVwib25DaGlwc1NlbGVjdENsaWNrZWQoKVwiPjwvcGVwLWJ1dHRvbj5cbiAgPCEtLSA8L21hdC1mb3JtLWZpZWxkPiAtLT5cbiAgPC9kaXY+XG48IS0tIDwvbmctY29udGFpbmVyPiAtLT4iXX0=
@@ -0,0 +1,82 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ReactiveFormsModule } from '@angular/forms';
4
+ import { MatCommonModule } from '@angular/material/core';
5
+ import { MatFormFieldModule } from '@angular/material/form-field';
6
+ import { MatChipsModule, MAT_CHIPS_DEFAULT_OPTIONS } from '@angular/material/chips';
7
+ import { MatIconModule } from '@angular/material/icon';
8
+ import { COMMA, ENTER } from '@angular/cdk/keycodes';
9
+ import { PepNgxLibModule } from '@pepperi-addons/ngx-lib';
10
+ import { PepIconModule, pepIconSystemBolt, pepIconSystemClose } from '@pepperi-addons/ngx-lib/icon';
11
+ import { PepFieldTitleModule } from '@pepperi-addons/ngx-lib/field-title';
12
+ import { PepButtonModule } from '@pepperi-addons/ngx-lib/button';
13
+ import { PepChipsComponent } from './chips.component';
14
+ import * as i0 from "@angular/core";
15
+ import * as i1 from "@pepperi-addons/ngx-lib/icon";
16
+ const pepIcons = [
17
+ pepIconSystemBolt,
18
+ pepIconSystemClose
19
+ ];
20
+ export class PepChipsModule {
21
+ pepIconRegistry;
22
+ constructor(pepIconRegistry) {
23
+ this.pepIconRegistry = pepIconRegistry;
24
+ this.pepIconRegistry.registerIcons(pepIcons);
25
+ }
26
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepChipsModule, deps: [{ token: i1.PepIconRegistry }], target: i0.ɵɵFactoryTarget.NgModule });
27
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: PepChipsModule, declarations: [PepChipsComponent], imports: [CommonModule,
28
+ ReactiveFormsModule,
29
+ MatCommonModule,
30
+ MatFormFieldModule,
31
+ MatChipsModule,
32
+ MatIconModule,
33
+ PepNgxLibModule,
34
+ PepIconModule,
35
+ PepFieldTitleModule,
36
+ PepButtonModule], exports: [PepChipsComponent] });
37
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepChipsModule, providers: [
38
+ {
39
+ provide: MAT_CHIPS_DEFAULT_OPTIONS,
40
+ useValue: {
41
+ separatorKeyCodes: [ENTER, COMMA]
42
+ }
43
+ }
44
+ ], imports: [CommonModule,
45
+ ReactiveFormsModule,
46
+ MatCommonModule,
47
+ MatFormFieldModule,
48
+ MatChipsModule,
49
+ MatIconModule,
50
+ PepNgxLibModule,
51
+ PepIconModule,
52
+ PepFieldTitleModule,
53
+ PepButtonModule] });
54
+ }
55
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepChipsModule, decorators: [{
56
+ type: NgModule,
57
+ args: [{
58
+ declarations: [PepChipsComponent],
59
+ imports: [
60
+ CommonModule,
61
+ ReactiveFormsModule,
62
+ MatCommonModule,
63
+ MatFormFieldModule,
64
+ MatChipsModule,
65
+ MatIconModule,
66
+ PepNgxLibModule,
67
+ PepIconModule,
68
+ PepFieldTitleModule,
69
+ PepButtonModule
70
+ ],
71
+ exports: [PepChipsComponent],
72
+ providers: [
73
+ {
74
+ provide: MAT_CHIPS_DEFAULT_OPTIONS,
75
+ useValue: {
76
+ separatorKeyCodes: [ENTER, COMMA]
77
+ }
78
+ }
79
+ ]
80
+ }]
81
+ }], ctorParameters: function () { return [{ type: i1.PepIconRegistry }]; } });
82
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpcHMubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LWxpYi9jaGlwcy9jaGlwcy5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFckQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3pELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxjQUFjLEVBQUUseUJBQXlCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUNwRixPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDdkQsT0FBTyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQWtCLE1BQU0sdUJBQXVCLENBQUM7QUFFckUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQzFELE9BQU8sRUFDSCxhQUFhLEVBRWIsaUJBQWlCLEVBQ2pCLGtCQUFrQixFQUNyQixNQUFNLDhCQUE4QixDQUFDO0FBRXRDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHFDQUFxQyxDQUFDO0FBQzFFLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUNqRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQzs7O0FBRXRELE1BQU0sUUFBUSxHQUFHO0lBQ2IsaUJBQWlCO0lBQ2pCLGtCQUFrQjtDQUNyQixDQUFDO0FBMkJGLE1BQU0sT0FBTyxjQUFjO0lBQ0g7SUFBcEIsWUFBb0IsZUFBZ0M7UUFBaEMsb0JBQWUsR0FBZixlQUFlLENBQWlCO1FBQ2hELElBQUksQ0FBQyxlQUFlLENBQUMsYUFBYSxDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQ2pELENBQUM7d0dBSFEsY0FBYzt5R0FBZCxjQUFjLGlCQXZCUixpQkFBaUIsYUFFNUIsWUFBWTtZQUNaLG1CQUFtQjtZQUNuQixlQUFlO1lBQ2Ysa0JBQWtCO1lBQ2xCLGNBQWM7WUFDZCxhQUFhO1lBQ2IsZUFBZTtZQUNmLGFBQWE7WUFDYixtQkFBbUI7WUFDbkIsZUFBZSxhQUVULGlCQUFpQjt5R0FVbEIsY0FBYyxhQVRaO1lBQ1A7Z0JBQ0UsT0FBTyxFQUFFLHlCQUF5QjtnQkFDbEMsUUFBUSxFQUFFO29CQUNSLGlCQUFpQixFQUFFLENBQUMsS0FBSyxFQUFFLEtBQUssQ0FBQztpQkFDbEM7YUFDRjtTQUNGLFlBbkJDLFlBQVk7WUFDWixtQkFBbUI7WUFDbkIsZUFBZTtZQUNmLGtCQUFrQjtZQUNsQixjQUFjO1lBQ2QsYUFBYTtZQUNiLGVBQWU7WUFDZixhQUFhO1lBQ2IsbUJBQW1CO1lBQ25CLGVBQWU7OzRGQVlWLGNBQWM7a0JBeEIxQixRQUFRO21CQUFDO29CQUNOLFlBQVksRUFBRSxDQUFDLGlCQUFpQixDQUFDO29CQUNqQyxPQUFPLEVBQUU7d0JBQ0wsWUFBWTt3QkFDWixtQkFBbUI7d0JBQ25CLGVBQWU7d0JBQ2Ysa0JBQWtCO3dCQUNsQixjQUFjO3dCQUNkLGFBQWE7d0JBQ2IsZUFBZTt3QkFDZixhQUFhO3dCQUNiLG1CQUFtQjt3QkFDbkIsZUFBZTtxQkFDbEI7b0JBQ0QsT0FBTyxFQUFFLENBQUMsaUJBQWlCLENBQUM7b0JBQzVCLFNBQVMsRUFBRTt3QkFDUDs0QkFDRSxPQUFPLEVBQUUseUJBQXlCOzRCQUNsQyxRQUFRLEVBQUU7Z0NBQ1IsaUJBQWlCLEVBQUUsQ0FBQyxLQUFLLEVBQUUsS0FBSyxDQUFDOzZCQUNsQzt5QkFDRjtxQkFDRjtpQkFDTiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgUmVhY3RpdmVGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcblxuaW1wb3J0IHsgTWF0Q29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvY29yZSc7XG5pbXBvcnQgeyBNYXRGb3JtRmllbGRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9mb3JtLWZpZWxkJztcbmltcG9ydCB7IE1hdENoaXBzTW9kdWxlLCBNQVRfQ0hJUFNfREVGQVVMVF9PUFRJT05TIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvY2hpcHMnO1xuaW1wb3J0IHsgTWF0SWNvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2ljb24nO1xuaW1wb3J0IHsgQ09NTUEsIEVOVEVSLCBUQUIsIFNFTUlDT0xPTiB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9rZXljb2Rlcyc7XG5cbmltcG9ydCB7IFBlcE5neExpYk1vZHVsZSB9IGZyb20gJ0BwZXBwZXJpLWFkZG9ucy9uZ3gtbGliJztcbmltcG9ydCB7IFxuICAgIFBlcEljb25Nb2R1bGUsXG4gICAgUGVwSWNvblJlZ2lzdHJ5LFxuICAgIHBlcEljb25TeXN0ZW1Cb2x0LFxuICAgIHBlcEljb25TeXN0ZW1DbG9zZVxufSBmcm9tICdAcGVwcGVyaS1hZGRvbnMvbmd4LWxpYi9pY29uJztcblxuaW1wb3J0IHsgUGVwRmllbGRUaXRsZU1vZHVsZSB9IGZyb20gJ0BwZXBwZXJpLWFkZG9ucy9uZ3gtbGliL2ZpZWxkLXRpdGxlJztcbmltcG9ydCB7IFBlcEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0BwZXBwZXJpLWFkZG9ucy9uZ3gtbGliL2J1dHRvbic7XG5pbXBvcnQgeyBQZXBDaGlwc0NvbXBvbmVudCB9IGZyb20gJy4vY2hpcHMuY29tcG9uZW50JztcblxuY29uc3QgcGVwSWNvbnMgPSBbXG4gICAgcGVwSWNvblN5c3RlbUJvbHQsXG4gICAgcGVwSWNvblN5c3RlbUNsb3NlXG5dO1xuXG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbUGVwQ2hpcHNDb21wb25lbnRdLFxuICAgIGltcG9ydHM6IFtcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxuICAgICAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLCAgICAgICAgXG4gICAgICAgIE1hdENvbW1vbk1vZHVsZSxcbiAgICAgICAgTWF0Rm9ybUZpZWxkTW9kdWxlLFxuICAgICAgICBNYXRDaGlwc01vZHVsZSxcbiAgICAgICAgTWF0SWNvbk1vZHVsZSxcbiAgICAgICAgUGVwTmd4TGliTW9kdWxlLFxuICAgICAgICBQZXBJY29uTW9kdWxlLFxuICAgICAgICBQZXBGaWVsZFRpdGxlTW9kdWxlLCAgICAgICAgXG4gICAgICAgIFBlcEJ1dHRvbk1vZHVsZVxuICAgIF0sXG4gICAgZXhwb3J0czogW1BlcENoaXBzQ29tcG9uZW50XSxcbiAgICBwcm92aWRlcnM6IFtcbiAgICAgICAge1xuICAgICAgICAgIHByb3ZpZGU6IE1BVF9DSElQU19ERUZBVUxUX09QVElPTlMsXG4gICAgICAgICAgdXNlVmFsdWU6IHtcbiAgICAgICAgICAgIHNlcGFyYXRvcktleUNvZGVzOiBbRU5URVIsIENPTU1BXVxuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgXSAgICBcbn0pXG5leHBvcnQgY2xhc3MgUGVwQ2hpcHNNb2R1bGUge1xuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUgcGVwSWNvblJlZ2lzdHJ5OiBQZXBJY29uUmVnaXN0cnkpIHtcbiAgICAgICAgdGhpcy5wZXBJY29uUmVnaXN0cnkucmVnaXN0ZXJJY29ucyhwZXBJY29ucyk7XG4gICAgfVxufVxuIl19
@@ -1,8 +1,8 @@
1
1
  import { Injectable } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export class PepChipsService {
4
+ _chips = [];
4
5
  constructor() {
5
- this._chips = [];
6
6
  //
7
7
  }
8
8
  get chips() {
@@ -27,10 +27,10 @@ export class PepChipsService {
27
27
  selectable: chip.selectable !== undefined ? chip.selectable : true
28
28
  });
29
29
  }
30
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepChipsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
31
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepChipsService });
30
32
  }
31
- PepChipsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepChipsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
32
- PepChipsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepChipsService });
33
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepChipsService, decorators: [{
33
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepChipsService, decorators: [{
34
34
  type: Injectable
35
35
  }], ctorParameters: function () { return []; } });
36
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpcHMuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1saWIvY2hpcHMvY2hpcHMuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxNQUFNLE9BQU8sZUFBZTtJQUd4QjtRQUZRLFdBQU0sR0FBZSxFQUFFLENBQUM7UUFHNUIsRUFBRTtJQUNOLENBQUM7SUFFRCxJQUFJLEtBQUs7UUFDTCxPQUFPLElBQUksQ0FBQyxNQUFNLENBQUM7SUFDdkIsQ0FBQztJQUVELElBQUksUUFBUTtRQUNSLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzdFLENBQUM7SUFFRCxRQUFRLENBQUMsS0FBaUI7UUFDdEIsSUFBSSxDQUFDLE1BQU0sR0FBRyxFQUFFLENBQUM7UUFDakIsSUFBSSxLQUFLLEVBQUUsTUFBTSxFQUFFO1lBQ2YsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztTQUM3QztJQUNMLENBQUM7SUFFRCxPQUFPLENBQUMsSUFBYztRQUNsQixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQztZQUNiLEdBQUcsRUFBRSxJQUFJLENBQUMsR0FBRztZQUNiLEtBQUssRUFBRSxJQUFJLENBQUMsS0FBSztZQUNqQixRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVEsS0FBSyxTQUFTLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLEtBQUs7WUFDN0QsUUFBUSxFQUFFLElBQUksQ0FBQyxRQUFRLEtBQUssU0FBUyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxLQUFLO1lBQzdELFNBQVMsRUFBRSxJQUFJLENBQUMsU0FBUyxLQUFLLFNBQVMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsSUFBSTtZQUMvRCxVQUFVLEVBQUUsSUFBSSxDQUFDLFVBQVUsS0FBSyxTQUFTLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLElBQUk7U0FDckUsQ0FBQyxDQUFBO0lBQ04sQ0FBQzs7NkdBL0JRLGVBQWU7aUhBQWYsZUFBZTs0RkFBZixlQUFlO2tCQUQzQixVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgSVBlcENoaXAgfSBmcm9tICcuL2NoaXBzLm1vZGVsJztcblxuQEluamVjdGFibGUoKVxuZXhwb3J0IGNsYXNzIFBlcENoaXBzU2VydmljZSB7XG4gICAgcHJpdmF0ZSBfY2hpcHM6IElQZXBDaGlwW10gPSBbXTsgICAgXG5cbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgLy9cbiAgICB9XG5cbiAgICBnZXQgY2hpcHMoKSB7XG4gICAgICAgIHJldHVybiB0aGlzLl9jaGlwcztcbiAgICB9XG5cbiAgICBnZXQgc2VsZWN0ZWQoKSB7XG4gICAgICAgIHJldHVybiB0aGlzLl9jaGlwcy5maWx0ZXIoY2hpcCA9PiBjaGlwLnNlbGVjdGVkKS5tYXAoY2hpcCA9PiBjaGlwLnZhbHVlKTtcbiAgICB9XG5cbiAgICBpbml0RGF0YShjaGlwczogSVBlcENoaXBbXSkge1xuICAgICAgICB0aGlzLl9jaGlwcyA9IFtdOyAgICAgIFxuICAgICAgICBpZiAoY2hpcHM/Lmxlbmd0aCkge1xuICAgICAgICAgICAgY2hpcHMuZm9yRWFjaChjaGlwID0+IHRoaXMuYWRkQ2hpcChjaGlwKSk7XG4gICAgICAgIH0gICAgICAgIFxuICAgIH1cblxuICAgIGFkZENoaXAoY2hpcDogSVBlcENoaXApIHsgICAgICAgIFxuICAgICAgICB0aGlzLl9jaGlwcy5wdXNoKHtcbiAgICAgICAgICAgIGtleTogY2hpcC5rZXksXG4gICAgICAgICAgICB2YWx1ZTogY2hpcC52YWx1ZSxcbiAgICAgICAgICAgIGRpc2FibGVkOiBjaGlwLmRpc2FibGVkICE9PSB1bmRlZmluZWQgPyBjaGlwLmRpc2FibGVkIDogZmFsc2UsXG4gICAgICAgICAgICBzZWxlY3RlZDogY2hpcC5zZWxlY3RlZCAhPT0gdW5kZWZpbmVkID8gY2hpcC5zZWxlY3RlZCA6IGZhbHNlLFxuICAgICAgICAgICAgcmVtb3ZhYmxlOiBjaGlwLnJlbW92YWJsZSAhPT0gdW5kZWZpbmVkID8gY2hpcC5yZW1vdmFibGUgOiB0cnVlLFxuICAgICAgICAgICAgc2VsZWN0YWJsZTogY2hpcC5zZWxlY3RhYmxlICE9PSB1bmRlZmluZWQgPyBjaGlwLnNlbGVjdGFibGUgOiB0cnVlXG4gICAgICAgIH0pXG4gICAgfVxufSJdfQ==
36
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpcHMuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1saWIvY2hpcHMvY2hpcHMuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxNQUFNLE9BQU8sZUFBZTtJQUNoQixNQUFNLEdBQWUsRUFBRSxDQUFDO0lBRWhDO1FBQ0ksRUFBRTtJQUNOLENBQUM7SUFFRCxJQUFJLEtBQUs7UUFDTCxPQUFPLElBQUksQ0FBQyxNQUFNLENBQUM7SUFDdkIsQ0FBQztJQUVELElBQUksUUFBUTtRQUNSLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzdFLENBQUM7SUFFRCxRQUFRLENBQUMsS0FBaUI7UUFDdEIsSUFBSSxDQUFDLE1BQU0sR0FBRyxFQUFFLENBQUM7UUFDakIsSUFBSSxLQUFLLEVBQUUsTUFBTSxFQUFFO1lBQ2YsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztTQUM3QztJQUNMLENBQUM7SUFFRCxPQUFPLENBQUMsSUFBYztRQUNsQixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQztZQUNiLEdBQUcsRUFBRSxJQUFJLENBQUMsR0FBRztZQUNiLEtBQUssRUFBRSxJQUFJLENBQUMsS0FBSztZQUNqQixRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVEsS0FBSyxTQUFTLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLEtBQUs7WUFDN0QsUUFBUSxFQUFFLElBQUksQ0FBQyxRQUFRLEtBQUssU0FBUyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxLQUFLO1lBQzdELFNBQVMsRUFBRSxJQUFJLENBQUMsU0FBUyxLQUFLLFNBQVMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsSUFBSTtZQUMvRCxVQUFVLEVBQUUsSUFBSSxDQUFDLFVBQVUsS0FBSyxTQUFTLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLElBQUk7U0FDckUsQ0FBQyxDQUFBO0lBQ04sQ0FBQzt3R0EvQlEsZUFBZTs0R0FBZixlQUFlOzs0RkFBZixlQUFlO2tCQUQzQixVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgSVBlcENoaXAgfSBmcm9tICcuL2NoaXBzLm1vZGVsJztcblxuQEluamVjdGFibGUoKVxuZXhwb3J0IGNsYXNzIFBlcENoaXBzU2VydmljZSB7XG4gICAgcHJpdmF0ZSBfY2hpcHM6IElQZXBDaGlwW10gPSBbXTsgICAgXG5cbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgLy9cbiAgICB9XG5cbiAgICBnZXQgY2hpcHMoKSB7XG4gICAgICAgIHJldHVybiB0aGlzLl9jaGlwcztcbiAgICB9XG5cbiAgICBnZXQgc2VsZWN0ZWQoKSB7XG4gICAgICAgIHJldHVybiB0aGlzLl9jaGlwcy5maWx0ZXIoY2hpcCA9PiBjaGlwLnNlbGVjdGVkKS5tYXAoY2hpcCA9PiBjaGlwLnZhbHVlKTtcbiAgICB9XG5cbiAgICBpbml0RGF0YShjaGlwczogSVBlcENoaXBbXSkge1xuICAgICAgICB0aGlzLl9jaGlwcyA9IFtdOyAgICAgIFxuICAgICAgICBpZiAoY2hpcHM/Lmxlbmd0aCkge1xuICAgICAgICAgICAgY2hpcHMuZm9yRWFjaChjaGlwID0+IHRoaXMuYWRkQ2hpcChjaGlwKSk7XG4gICAgICAgIH0gICAgICAgIFxuICAgIH1cblxuICAgIGFkZENoaXAoY2hpcDogSVBlcENoaXApIHsgICAgICAgIFxuICAgICAgICB0aGlzLl9jaGlwcy5wdXNoKHtcbiAgICAgICAgICAgIGtleTogY2hpcC5rZXksXG4gICAgICAgICAgICB2YWx1ZTogY2hpcC52YWx1ZSxcbiAgICAgICAgICAgIGRpc2FibGVkOiBjaGlwLmRpc2FibGVkICE9PSB1bmRlZmluZWQgPyBjaGlwLmRpc2FibGVkIDogZmFsc2UsXG4gICAgICAgICAgICBzZWxlY3RlZDogY2hpcC5zZWxlY3RlZCAhPT0gdW5kZWZpbmVkID8gY2hpcC5zZWxlY3RlZCA6IGZhbHNlLFxuICAgICAgICAgICAgcmVtb3ZhYmxlOiBjaGlwLnJlbW92YWJsZSAhPT0gdW5kZWZpbmVkID8gY2hpcC5yZW1vdmFibGUgOiB0cnVlLFxuICAgICAgICAgICAgc2VsZWN0YWJsZTogY2hpcC5zZWxlY3RhYmxlICE9PSB1bmRlZmluZWQgPyBjaGlwLnNlbGVjdGFibGUgOiB0cnVlXG4gICAgICAgIH0pXG4gICAgfVxufSJdfQ==