@pepperi-addons/ngx-lib 0.3.15-beta.8 → 0.4.0-angular14.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 (1165) hide show
  1. package/address/address.component.d.ts +3 -0
  2. package/address/address.module.d.ts +13 -0
  3. package/address/index.d.ts +5 -0
  4. package/attachment/attachment.component.d.ts +3 -0
  5. package/attachment/attachment.module.d.ts +12 -0
  6. package/attachment/index.d.ts +5 -0
  7. package/bread-crumbs/bread-crumbs.component.d.ts +4 -0
  8. package/bread-crumbs/bread-crumbs.component.theme.scss +7 -7
  9. package/bread-crumbs/bread-crumbs.module.d.ts +10 -0
  10. package/bread-crumbs/index.d.ts +5 -0
  11. package/button/button.component.d.ts +3 -0
  12. package/button/button.module.d.ts +11 -0
  13. package/button/index.d.ts +5 -0
  14. package/carousel/carousel-item.directive.d.ts +3 -0
  15. package/carousel/carousel.component.d.ts +3 -0
  16. package/carousel/carousel.module.d.ts +6 -0
  17. package/carousel/index.d.ts +5 -0
  18. package/checkbox/checkbox.component.d.ts +3 -0
  19. package/checkbox/checkbox.module.d.ts +14 -0
  20. package/checkbox/index.d.ts +5 -0
  21. package/color/color-picker.component.d.ts +4 -0
  22. package/color/color.component.d.ts +4 -0
  23. package/color/color.module.d.ts +21 -0
  24. package/color/index.d.ts +5 -0
  25. package/core/clipboard/clipboard.directive.d.ts +3 -0
  26. package/core/clipboard/clipboard.service.d.ts +3 -0
  27. package/core/common/directives/auto-width.directive.d.ts +3 -0
  28. package/core/common/directives/button-blur.directive.d.ts +3 -0
  29. package/core/common/directives/button-loader.directive.d.ts +3 -0
  30. package/core/common/directives/data-qa.directive.d.ts +3 -0
  31. package/core/common/directives/menu-blur.directive.d.ts +3 -0
  32. package/core/common/directives/prevent-multi-click.directive.d.ts +3 -0
  33. package/core/common/directives/print.directive.d.ts +3 -0
  34. package/core/common/pipes/common-pipes.d.ts +21 -0
  35. package/core/common/pipes/date-ago.pipe.d.ts +11 -0
  36. package/core/common/pipes/public-api.d.ts +1 -0
  37. package/core/common/services/addon.service.d.ts +3 -0
  38. package/core/common/services/color.service.d.ts +3 -0
  39. package/core/common/services/cookie.service.d.ts +3 -0
  40. package/core/common/services/data-convertor.service.d.ts +3 -0
  41. package/core/common/services/file.service.d.ts +3 -0
  42. package/core/common/services/jwt-helper.service.d.ts +3 -0
  43. package/core/common/services/session.service.d.ts +3 -0
  44. package/core/common/services/translate.service.d.ts +3 -0
  45. package/core/common/services/utilities.service.d.ts +20 -1
  46. package/core/common/services/validator.service.d.ts +3 -0
  47. package/core/common/services/window-scrolling.service.d.ts +3 -0
  48. package/core/customization/customization.service.d.ts +4 -0
  49. package/core/http/interceptors/error.interceptor.d.ts +3 -0
  50. package/core/http/interceptors/loader.interceptor.d.ts +3 -0
  51. package/core/http/interceptors/profiler.interceptor.d.ts +3 -0
  52. package/core/http/services/http.service.d.ts +3 -0
  53. package/core/http/services/loader.service.d.ts +3 -0
  54. package/core/layout/layout.service.d.ts +3 -0
  55. package/core/layout/rtl.directive.d.ts +5 -0
  56. package/core/portal/attach.directive.d.ts +3 -0
  57. package/core/portal/portal.service.d.ts +3 -0
  58. package/core/portal/target.directive.d.ts +3 -0
  59. package/core/scroll-to/scroll-to.service.d.ts +3 -0
  60. package/date/date.component.d.ts +3 -0
  61. package/date/date.model.d.ts +5 -0
  62. package/date/date.module.d.ts +18 -0
  63. package/date/index.d.ts +5 -0
  64. package/dialog/default-dialog.component.d.ts +3 -0
  65. package/dialog/dialog.component.d.ts +3 -0
  66. package/dialog/dialog.model.d.ts +4 -0
  67. package/dialog/dialog.module.d.ts +13 -0
  68. package/dialog/dialog.service.d.ts +3 -0
  69. package/dialog/index.d.ts +5 -0
  70. package/draggable-items/draggable-item/draggable-item.component.d.ts +3 -0
  71. package/draggable-items/draggable-items.component.d.ts +4 -1
  72. package/draggable-items/draggable-items.model.d.ts +5 -1
  73. package/draggable-items/draggable-items.module.d.ts +13 -0
  74. package/draggable-items/index.d.ts +5 -0
  75. package/esm2020/address/address.component.mjs +109 -0
  76. package/esm2020/address/address.module.mjs +54 -0
  77. package/{esm2015/address/pepperi-addons-ngx-lib-address.js → esm2020/address/pepperi-addons-ngx-lib-address.mjs} +0 -0
  78. package/{esm2015/address/public-api.js → esm2020/address/public-api.mjs} +0 -0
  79. package/esm2020/attachment/attachment.component.mjs +220 -0
  80. package/esm2020/attachment/attachment.module.mjs +50 -0
  81. package/{esm2015/attachment/pepperi-addons-ngx-lib-attachment.js → esm2020/attachment/pepperi-addons-ngx-lib-attachment.mjs} +0 -0
  82. package/{esm2015/attachment/public-api.js → esm2020/attachment/public-api.mjs} +0 -0
  83. package/esm2020/bread-crumbs/bread-crumbs.component.mjs +85 -0
  84. package/{esm2015/bread-crumbs/bread-crumbs.model.js → esm2020/bread-crumbs/bread-crumbs.model.mjs} +0 -0
  85. package/esm2020/bread-crumbs/bread-crumbs.module.mjs +50 -0
  86. package/{esm2015/bread-crumbs/pepperi-addons-ngx-lib-bread-crumbs.js → esm2020/bread-crumbs/pepperi-addons-ngx-lib-bread-crumbs.mjs} +0 -0
  87. package/{esm2015/bread-crumbs/public-api.js → esm2020/bread-crumbs/public-api.mjs} +0 -0
  88. package/esm2020/button/button.component.mjs +138 -0
  89. package/{esm2015/button/button.model.js → esm2020/button/button.model.mjs} +0 -0
  90. package/esm2020/button/button.module.mjs +46 -0
  91. package/{esm2015/button/pepperi-addons-ngx-lib-button.js → esm2020/button/pepperi-addons-ngx-lib-button.mjs} +0 -0
  92. package/{esm2015/button/public-api.js → esm2020/button/public-api.mjs} +0 -0
  93. package/esm2020/carousel/carousel-item.directive.mjs +33 -0
  94. package/esm2020/carousel/carousel.component.mjs +745 -0
  95. package/esm2020/carousel/carousel.module.mjs +17 -0
  96. package/{esm2015/carousel/pepperi-addons-ngx-lib-carousel.js → esm2020/carousel/pepperi-addons-ngx-lib-carousel.mjs} +0 -0
  97. package/{esm2015/carousel/public-api.js → esm2020/carousel/public-api.mjs} +0 -0
  98. package/esm2020/checkbox/checkbox.component.mjs +168 -0
  99. package/esm2020/checkbox/checkbox.module.mjs +63 -0
  100. package/{esm2015/checkbox/pepperi-addons-ngx-lib-checkbox.js → esm2020/checkbox/pepperi-addons-ngx-lib-checkbox.mjs} +0 -0
  101. package/{esm2015/checkbox/public-api.js → esm2020/checkbox/public-api.mjs} +0 -0
  102. package/esm2020/color/color-picker.component.mjs +224 -0
  103. package/esm2020/color/color.component.mjs +90 -0
  104. package/{esm2015/color/color.model.js → esm2020/color/color.model.mjs} +0 -0
  105. package/esm2020/color/color.module.mjs +93 -0
  106. package/esm2020/color/pepperi-addons-ngx-lib-color.mjs +5 -0
  107. package/{esm2015/color/public-api.js → esm2020/color/public-api.mjs} +0 -0
  108. package/esm2020/core/clipboard/clipboard.directive.mjs +24 -0
  109. package/esm2020/core/clipboard/clipboard.service.mjs +14 -0
  110. package/{esm2015/core/clipboard/index.js → esm2020/core/clipboard/index.mjs} +0 -0
  111. package/{esm2015/core/clipboard/public-api.js → esm2020/core/clipboard/public-api.mjs} +0 -0
  112. package/esm2020/core/common/directives/auto-width.directive.mjs +77 -0
  113. package/esm2020/core/common/directives/button-blur.directive.mjs +24 -0
  114. package/esm2020/core/common/directives/button-loader.directive.mjs +112 -0
  115. package/esm2020/core/common/directives/data-qa.directive.mjs +23 -0
  116. package/{esm2015/core/common/directives/index.js → esm2020/core/common/directives/index.mjs} +0 -0
  117. package/esm2020/core/common/directives/menu-blur.directive.mjs +32 -0
  118. package/esm2020/core/common/directives/prevent-multi-click.directive.mjs +27 -0
  119. package/esm2020/core/common/directives/print.directive.mjs +170 -0
  120. package/{esm2015/core/common/directives/public-api.js → esm2020/core/common/directives/public-api.mjs} +0 -0
  121. package/{esm2015/core/common/index.js → esm2020/core/common/index.mjs} +0 -0
  122. package/{esm2015/core/common/model/index.js → esm2020/core/common/model/index.mjs} +0 -0
  123. package/{esm2015/core/common/model/papi.model.js → esm2020/core/common/model/papi.model.mjs} +0 -0
  124. package/{esm2015/core/common/model/public-api.js → esm2020/core/common/model/public-api.mjs} +0 -0
  125. package/{esm2015/core/common/model/utilities.model.js → esm2020/core/common/model/utilities.model.mjs} +0 -0
  126. package/{esm2015/core/common/model/wapi.model.js → esm2020/core/common/model/wapi.model.mjs} +0 -0
  127. package/esm2020/core/common/pipes/common-pipes.mjs +167 -0
  128. package/esm2020/core/common/pipes/date-ago.pipe.mjs +46 -0
  129. package/{esm2015/core/common/pipes/index.js → esm2020/core/common/pipes/index.mjs} +0 -0
  130. package/esm2020/core/common/pipes/public-api.mjs +6 -0
  131. package/{esm2015/core/common/public-api.js → esm2020/core/common/public-api.mjs} +0 -0
  132. package/esm2020/core/common/services/addon.service.mjs +148 -0
  133. package/esm2020/core/common/services/color.service.mjs +359 -0
  134. package/esm2020/core/common/services/cookie.service.mjs +153 -0
  135. package/esm2020/core/common/services/data-convertor.service.mjs +119 -0
  136. package/esm2020/core/common/services/file.service.mjs +213 -0
  137. package/{esm2015/core/common/services/index.js → esm2020/core/common/services/index.mjs} +0 -0
  138. package/esm2020/core/common/services/jwt-helper.service.mjs +106 -0
  139. package/{esm2015/core/common/services/public-api.js → esm2020/core/common/services/public-api.mjs} +0 -0
  140. package/esm2020/core/common/services/session.service.mjs +71 -0
  141. package/esm2020/core/common/services/translate.service.mjs +46 -0
  142. package/esm2020/core/common/services/utilities.service.mjs +210 -0
  143. package/esm2020/core/common/services/validator.service.mjs +272 -0
  144. package/esm2020/core/common/services/window-scrolling.service.mjs +36 -0
  145. package/esm2020/core/customization/customization.model.mjs +289 -0
  146. package/esm2020/core/customization/customization.service.mjs +771 -0
  147. package/{esm2015/core/customization/index.js → esm2020/core/customization/index.mjs} +0 -0
  148. package/{esm2015/core/customization/public-api.js → esm2020/core/customization/public-api.mjs} +0 -0
  149. package/{esm2015/core/http/index.js → esm2020/core/http/index.mjs} +0 -0
  150. package/esm2020/core/http/interceptors/error.interceptor.mjs +27 -0
  151. package/{esm2015/core/http/interceptors/index.js → esm2020/core/http/interceptors/index.mjs} +0 -0
  152. package/esm2020/core/http/interceptors/loader.interceptor.mjs +33 -0
  153. package/esm2020/core/http/interceptors/profiler.interceptor.mjs +32 -0
  154. package/{esm2015/core/http/public-api.js → esm2020/core/http/public-api.mjs} +0 -0
  155. package/esm2020/core/http/services/http.service.mjs +155 -0
  156. package/esm2020/core/http/services/loader.service.mjs +50 -0
  157. package/{esm2015/core/index.js → esm2020/core/index.mjs} +0 -0
  158. package/{esm2015/core/layout/index.js → esm2020/core/layout/index.mjs} +0 -0
  159. package/esm2020/core/layout/layout.service.mjs +168 -0
  160. package/{esm2015/core/layout/public-api.js → esm2020/core/layout/public-api.mjs} +0 -0
  161. package/esm2020/core/layout/rtl.directive.mjs +44 -0
  162. package/esm2020/core/portal/attach.directive.mjs +27 -0
  163. package/{esm2015/core/portal/index.js → esm2020/core/portal/index.mjs} +0 -0
  164. package/esm2020/core/portal/portal.service.mjs +36 -0
  165. package/{esm2015/core/portal/public-api.js → esm2020/core/portal/public-api.mjs} +0 -0
  166. package/esm2020/core/portal/target.directive.mjs +24 -0
  167. package/{esm2015/core/public-api.js → esm2020/core/public-api.mjs} +0 -0
  168. package/{esm2015/core/scroll-to/index.js → esm2020/core/scroll-to/index.mjs} +0 -0
  169. package/{esm2015/core/scroll-to/public-api.js → esm2020/core/scroll-to/public-api.mjs} +0 -0
  170. package/esm2020/core/scroll-to/scroll-to.service.mjs +84 -0
  171. package/esm2020/date/date.component.mjs +295 -0
  172. package/esm2020/date/date.model.mjs +54 -0
  173. package/esm2020/date/date.module.mjs +88 -0
  174. package/esm2020/date/pepperi-addons-ngx-lib-date.mjs +5 -0
  175. package/{esm2015/date/public-api.js → esm2020/date/public-api.mjs} +0 -0
  176. package/esm2020/dialog/default-dialog.component.mjs +37 -0
  177. package/esm2020/dialog/dialog.component.mjs +36 -0
  178. package/esm2020/dialog/dialog.model.mjs +33 -0
  179. package/esm2020/dialog/dialog.module.mjs +59 -0
  180. package/esm2020/dialog/dialog.service.mjs +82 -0
  181. package/esm2020/dialog/pepperi-addons-ngx-lib-dialog.mjs +5 -0
  182. package/{esm2015/dialog/public-api.js → esm2020/dialog/public-api.mjs} +0 -0
  183. package/esm2020/draggable-items/draggable-item/draggable-item.component.mjs +27 -0
  184. package/esm2020/draggable-items/draggable-items.component.mjs +102 -0
  185. package/esm2020/draggable-items/draggable-items.model.mjs +2 -0
  186. package/esm2020/draggable-items/draggable-items.module.mjs +60 -0
  187. package/{esm2015/draggable-items/pepperi-addons-ngx-lib-draggable-items.js → esm2020/draggable-items/pepperi-addons-ngx-lib-draggable-items.mjs} +0 -0
  188. package/{esm2015/draggable-items/public-api.js → esm2020/draggable-items/public-api.mjs} +0 -0
  189. package/esm2020/field-title/field-title.component.mjs +42 -0
  190. package/esm2020/field-title/field-title.module.mjs +47 -0
  191. package/{esm2015/field-title/pepperi-addons-ngx-lib-field-title.js → esm2020/field-title/pepperi-addons-ngx-lib-field-title.mjs} +0 -0
  192. package/{esm2015/field-title/public-api.js → esm2020/field-title/public-api.mjs} +0 -0
  193. package/esm2020/files-uploader/files-uploader.component.mjs +241 -0
  194. package/esm2020/files-uploader/files-uploader.module.mjs +79 -0
  195. package/{esm2015/files-uploader/pepperi-addons-ngx-lib-files-uploader.js → esm2020/files-uploader/pepperi-addons-ngx-lib-files-uploader.mjs} +0 -0
  196. package/{esm2015/files-uploader/public-api.js → esm2020/files-uploader/public-api.mjs} +0 -0
  197. package/esm2020/form/field-generator.component.mjs +153 -0
  198. package/esm2020/form/form.component.mjs +1218 -0
  199. package/{esm2015/form/form.model.js → esm2020/form/form.model.mjs} +0 -0
  200. package/esm2020/form/form.module.mjs +171 -0
  201. package/esm2020/form/indicators.component.mjs +23 -0
  202. package/esm2020/form/internal-button.component.mjs +184 -0
  203. package/esm2020/form/internal-carusel.component.mjs +119 -0
  204. package/esm2020/form/internal-carusel.service.mjs +32 -0
  205. package/esm2020/form/internal-field-generator.component.mjs +147 -0
  206. package/esm2020/form/internal-form.component.mjs +1214 -0
  207. package/esm2020/form/internal-list.component.mjs +510 -0
  208. package/esm2020/form/internal-menu.component.mjs +66 -0
  209. package/esm2020/form/internal-page.component.mjs +365 -0
  210. package/esm2020/form/internal-page.service.mjs +120 -0
  211. package/esm2020/form/pepperi-addons-ngx-lib-form.mjs +5 -0
  212. package/{esm2015/form/public-api.js → esm2020/form/public-api.mjs} +0 -0
  213. package/esm2020/group-buttons/group-buttons.component.mjs +67 -0
  214. package/esm2020/group-buttons/group-buttons.module.mjs +59 -0
  215. package/{esm2015/group-buttons/pepperi-addons-ngx-lib-group-buttons.js → esm2020/group-buttons/pepperi-addons-ngx-lib-group-buttons.mjs} +0 -0
  216. package/{esm2015/group-buttons/public-api.js → esm2020/group-buttons/public-api.mjs} +0 -0
  217. package/{esm2015/icon/icon-generated-all.model.js → esm2020/icon/icon-generated-all.model.mjs} +0 -0
  218. package/{esm2015/icon/icon-generated.model.js → esm2020/icon/icon-generated.model.mjs} +0 -0
  219. package/esm2020/icon/icon-registry.service.mjs +26 -0
  220. package/esm2020/icon/icon.component.mjs +91 -0
  221. package/esm2020/icon/icon.module.mjs +20 -0
  222. package/esm2020/icon/icon.service.mjs +31 -0
  223. package/{esm2015/icon/pepperi-addons-ngx-lib-icon.js → esm2020/icon/pepperi-addons-ngx-lib-icon.mjs} +0 -0
  224. package/{esm2015/icon/public-api.js → esm2020/icon/public-api.mjs} +0 -0
  225. package/esm2020/image/image.component.mjs +247 -0
  226. package/esm2020/image/image.module.mjs +74 -0
  227. package/esm2020/image/image.service.mjs +52 -0
  228. package/{esm2015/image/pepperi-addons-ngx-lib-image.js → esm2020/image/pepperi-addons-ngx-lib-image.mjs} +0 -0
  229. package/{esm2015/image/public-api.js → esm2020/image/public-api.mjs} +0 -0
  230. package/esm2020/images-filmstrip/images-filmstrip.component.mjs +425 -0
  231. package/esm2020/images-filmstrip/images-filmstrip.module.mjs +138 -0
  232. package/{esm2015/images-filmstrip/pepperi-addons-ngx-lib-images-filmstrip.js → esm2020/images-filmstrip/pepperi-addons-ngx-lib-images-filmstrip.mjs} +0 -0
  233. package/{esm2015/images-filmstrip/public-api.js → esm2020/images-filmstrip/public-api.mjs} +0 -0
  234. package/esm2020/link/link.component.mjs +340 -0
  235. package/esm2020/link/link.module.mjs +80 -0
  236. package/esm2020/link/link.pipes.mjs +18 -0
  237. package/esm2020/link/pepperi-addons-ngx-lib-link.mjs +5 -0
  238. package/{esm2015/link/public-api.js → esm2020/link/public-api.mjs} +0 -0
  239. package/esm2020/list/list-actions.component.mjs +44 -0
  240. package/esm2020/list/list-carousel.component.mjs +107 -0
  241. package/esm2020/list/list-chooser.component.mjs +64 -0
  242. package/esm2020/list/list-pager.component.mjs +120 -0
  243. package/esm2020/list/list-sorting.component.mjs +61 -0
  244. package/esm2020/list/list-total.component.mjs +30 -0
  245. package/esm2020/list/list-views.component.mjs +85 -0
  246. package/esm2020/list/list.component.mjs +1160 -0
  247. package/{esm2015/list/list.model.js → esm2020/list/list.model.mjs} +0 -0
  248. package/esm2020/list/list.module.mjs +144 -0
  249. package/esm2020/list/list.pipes.mjs +47 -0
  250. package/esm2020/list/pepperi-addons-ngx-lib-list.mjs +5 -0
  251. package/{esm2015/list/public-api.js → esm2020/list/public-api.mjs} +0 -0
  252. package/esm2020/list/virtual-scroller.mjs +1071 -0
  253. package/esm2020/menu/menu-item.component.mjs +115 -0
  254. package/esm2020/menu/menu.component.mjs +205 -0
  255. package/{esm2015/menu/menu.model.js → esm2020/menu/menu.model.mjs} +0 -0
  256. package/esm2020/menu/menu.module.mjs +59 -0
  257. package/esm2020/menu/pepperi-addons-ngx-lib-menu.mjs +5 -0
  258. package/{esm2015/menu/public-api.js → esm2020/menu/public-api.mjs} +0 -0
  259. package/esm2020/ngx-lib.module.mjs +156 -0
  260. package/esm2020/page-layout/page-layout.component.mjs +35 -0
  261. package/esm2020/page-layout/page-layout.module.mjs +34 -0
  262. package/{esm2015/page-layout/pepperi-addons-ngx-lib-page-layout.js → esm2020/page-layout/pepperi-addons-ngx-lib-page-layout.mjs} +0 -0
  263. package/{esm2015/page-layout/public-api.js → esm2020/page-layout/public-api.mjs} +0 -0
  264. package/esm2020/pepperi-addons-ngx-lib.mjs +5 -0
  265. package/{esm2015/profile-data-views-list/pepperi-addons-ngx-lib-profile-data-views-list.js → esm2020/profile-data-views-list/pepperi-addons-ngx-lib-profile-data-views-list.mjs} +0 -0
  266. package/esm2020/profile-data-views-list/profile-data-view/profile-data-view.component.mjs +45 -0
  267. package/esm2020/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.mjs +65 -0
  268. package/esm2020/profile-data-views-list/profile-data-views-list.component.mjs +95 -0
  269. package/{esm2015/profile-data-views-list/profile-data-views-list.model.js → esm2020/profile-data-views-list/profile-data-views-list.model.mjs} +0 -0
  270. package/esm2020/profile-data-views-list/profile-data-views-list.module.mjs +88 -0
  271. package/{esm2015/profile-data-views-list/public-api.js → esm2020/profile-data-views-list/public-api.mjs} +0 -0
  272. package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
  273. package/esm2020/quantity-selector/pepperi-addons-ngx-lib-quantity-selector.mjs +5 -0
  274. package/{esm2015/quantity-selector/public-api.js → esm2020/quantity-selector/public-api.mjs} +0 -0
  275. package/esm2020/quantity-selector/quantity-selector-validation.directive.mjs +47 -0
  276. package/esm2020/quantity-selector/quantity-selector.component.mjs +511 -0
  277. package/esm2020/quantity-selector/quantity-selector.module.mjs +82 -0
  278. package/esm2020/quantity-selector/quantity-selector.pipes.mjs +23 -0
  279. package/{esm2015/query-builder/common/model/field.js → esm2020/query-builder/common/model/field.mjs} +0 -0
  280. package/{esm2015/query-builder/common/model/filter.js → esm2020/query-builder/common/model/filter.mjs} +0 -0
  281. package/esm2020/query-builder/common/model/legacy.mjs +2 -0
  282. package/esm2020/query-builder/common/model/operator-unit.mjs +42 -0
  283. package/esm2020/query-builder/common/model/operator.mjs +266 -0
  284. package/{esm2015/query-builder/common/model/structure.js → esm2020/query-builder/common/model/structure.mjs} +0 -0
  285. package/esm2020/query-builder/common/model/type-map.mjs +27 -0
  286. package/{esm2015/query-builder/common/model/type.js → esm2020/query-builder/common/model/type.mjs} +0 -0
  287. package/esm2020/query-builder/common/services/output-query.service.mjs +114 -0
  288. package/esm2020/query-builder/common/services/query-structure.service.mjs +224 -0
  289. package/esm2020/query-builder/common/services/type-convertor.service.mjs +42 -0
  290. package/esm2020/query-builder/pepperi-addons-ngx-lib-query-builder.mjs +5 -0
  291. package/{esm2015/query-builder/public-api.js → esm2020/query-builder/public-api.mjs} +0 -0
  292. package/esm2020/query-builder/query-builder-item/query-builder-item.component.mjs +125 -0
  293. package/esm2020/query-builder/query-builder-section/query-builder-section.component.mjs +71 -0
  294. package/esm2020/query-builder/query-builder.component.mjs +110 -0
  295. package/esm2020/query-builder/query-builder.module.mjs +54 -0
  296. package/esm2020/query-builder/query-builder.service.mjs +102 -0
  297. package/esm2020/remote-loader/addon-block-loader.component.mjs +84 -0
  298. package/esm2020/remote-loader/addon-block-loader.service.mjs +61 -0
  299. package/{esm2015/remote-loader/pepperi-addons-ngx-lib-remote-loader.js → esm2020/remote-loader/pepperi-addons-ngx-lib-remote-loader.mjs} +0 -0
  300. package/esm2020/remote-loader/public-api.mjs +10 -0
  301. package/esm2020/remote-loader/remote-loader.component.mjs +124 -0
  302. package/esm2020/remote-loader/remote-loader.model.mjs +2 -0
  303. package/esm2020/remote-loader/remote-loader.module.mjs +60 -0
  304. package/esm2020/remote-loader/remote-loader.service.mjs +57 -0
  305. package/{esm2015/rich-html-textarea/pepperi-addons-ngx-lib-rich-html-textarea.js → esm2020/rich-html-textarea/pepperi-addons-ngx-lib-rich-html-textarea.mjs} +0 -0
  306. package/{esm2015/rich-html-textarea/public-api.js → esm2020/rich-html-textarea/public-api.mjs} +0 -0
  307. package/esm2020/rich-html-textarea/rich-html-textarea.component.mjs +245 -0
  308. package/esm2020/rich-html-textarea/rich-html-textarea.module.mjs +95 -0
  309. package/{esm2015/search/pepperi-addons-ngx-lib-search.js → esm2020/search/pepperi-addons-ngx-lib-search.mjs} +0 -0
  310. package/{esm2015/search/public-api.js → esm2020/search/public-api.mjs} +0 -0
  311. package/esm2020/search/search.component.mjs +317 -0
  312. package/{esm2015/search/search.model.js → esm2020/search/search.model.mjs} +0 -0
  313. package/esm2020/search/search.module.mjs +70 -0
  314. package/{esm2015/select/pepperi-addons-ngx-lib-select.js → esm2020/select/pepperi-addons-ngx-lib-select.mjs} +0 -0
  315. package/{esm2015/select/public-api.js → esm2020/select/public-api.mjs} +0 -0
  316. package/esm2020/select/select.component.mjs +238 -0
  317. package/esm2020/select/select.module.mjs +70 -0
  318. package/{esm2015/separator/pepperi-addons-ngx-lib-separator.js → esm2020/separator/pepperi-addons-ngx-lib-separator.mjs} +0 -0
  319. package/{esm2015/separator/public-api.js → esm2020/separator/public-api.mjs} +0 -0
  320. package/esm2020/separator/separator.component.mjs +63 -0
  321. package/esm2020/separator/separator.module.mjs +18 -0
  322. package/{esm2015/side-bar/pepperi-addons-ngx-lib-side-bar.js → esm2020/side-bar/pepperi-addons-ngx-lib-side-bar.mjs} +0 -0
  323. package/{esm2015/side-bar/public-api.js → esm2020/side-bar/public-api.mjs} +0 -0
  324. package/esm2020/side-bar/side-bar.component.mjs +138 -0
  325. package/{esm2015/side-bar/side-bar.model.js → esm2020/side-bar/side-bar.model.mjs} +0 -0
  326. package/esm2020/side-bar/side-bar.module.mjs +51 -0
  327. package/{esm2015/signature/pepperi-addons-ngx-lib-signature.js → esm2020/signature/pepperi-addons-ngx-lib-signature.mjs} +0 -0
  328. package/{esm2015/signature/public-api.js → esm2020/signature/public-api.mjs} +0 -0
  329. package/esm2020/signature/signature.component.mjs +254 -0
  330. package/esm2020/signature/signature.module.mjs +90 -0
  331. package/{esm2015/size-detector/pepperi-addons-ngx-lib-size-detector.js → esm2020/size-detector/pepperi-addons-ngx-lib-size-detector.mjs} +0 -0
  332. package/{esm2015/size-detector/public-api.js → esm2020/size-detector/public-api.mjs} +0 -0
  333. package/esm2020/size-detector/size-detector.component.mjs +92 -0
  334. package/esm2020/size-detector/size-detector.module.mjs +35 -0
  335. package/{esm2015/slider/pepperi-addons-ngx-lib-slider.js → esm2020/slider/pepperi-addons-ngx-lib-slider.mjs} +0 -0
  336. package/{esm2015/slider/public-api.js → esm2020/slider/public-api.mjs} +0 -0
  337. package/esm2020/slider/slider.component.mjs +101 -0
  338. package/esm2020/slider/slider.module.mjs +42 -0
  339. package/esm2020/smart-filters/boolean-filter/boolean-filter.component.mjs +75 -0
  340. package/esm2020/smart-filters/common/filter-actions.component.mjs +29 -0
  341. package/esm2020/smart-filters/common/model/base-filter-component.mjs +295 -0
  342. package/{esm2015/smart-filters/common/model/creator.js → esm2020/smart-filters/common/model/creator.mjs} +0 -0
  343. package/{esm2015/smart-filters/common/model/field.js → esm2020/smart-filters/common/model/field.mjs} +0 -0
  344. package/{esm2015/smart-filters/common/model/filter.js → esm2020/smart-filters/common/model/filter.mjs} +0 -0
  345. package/esm2020/smart-filters/common/model/operator.mjs +271 -0
  346. package/esm2020/smart-filters/common/model/type.mjs +2 -0
  347. package/esm2020/smart-filters/date-filter/date-filter.component.mjs +172 -0
  348. package/esm2020/smart-filters/multi-select-filter/multi-select-filter.component.mjs +200 -0
  349. package/esm2020/smart-filters/number-filter/number-filter.component.mjs +116 -0
  350. package/{esm2015/smart-filters/pepperi-addons-ngx-lib-smart-filters.js → esm2020/smart-filters/pepperi-addons-ngx-lib-smart-filters.mjs} +0 -0
  351. package/{esm2015/smart-filters/public-api.js → esm2020/smart-filters/public-api.mjs} +0 -0
  352. package/esm2020/smart-filters/smart-filters.component.mjs +141 -0
  353. package/esm2020/smart-filters/smart-filters.module.mjs +153 -0
  354. package/esm2020/smart-filters/text-filter/text-filter.component.mjs +92 -0
  355. package/esm2020/snack-bar/default-snack-bar.component.mjs +29 -0
  356. package/esm2020/snack-bar/pepperi-addons-ngx-lib-snack-bar.mjs +5 -0
  357. package/{esm2015/snack-bar/public-api.js → esm2020/snack-bar/public-api.mjs} +0 -0
  358. package/esm2020/snack-bar/snack-bar.component.mjs +26 -0
  359. package/{esm2015/snack-bar/snack-bar.model.js → esm2020/snack-bar/snack-bar.model.mjs} +0 -0
  360. package/esm2020/snack-bar/snack-bar.module.mjs +63 -0
  361. package/esm2020/snack-bar/snack-bar.service.mjs +60 -0
  362. package/{esm2015/textarea/pepperi-addons-ngx-lib-textarea.js → esm2020/textarea/pepperi-addons-ngx-lib-textarea.mjs} +0 -0
  363. package/{esm2015/textarea/public-api.js → esm2020/textarea/public-api.mjs} +0 -0
  364. package/esm2020/textarea/textarea.component.mjs +182 -0
  365. package/esm2020/textarea/textarea.module.mjs +82 -0
  366. package/esm2020/textbox/pepperi-addons-ngx-lib-textbox.mjs +5 -0
  367. package/{esm2015/textbox/public-api.js → esm2020/textbox/public-api.mjs} +0 -0
  368. package/esm2020/textbox/textbox-validation.directive.mjs +89 -0
  369. package/esm2020/textbox/textbox.component.mjs +443 -0
  370. package/esm2020/textbox/textbox.module.mjs +72 -0
  371. package/{esm2015/textbox-icon/pepperi-addons-ngx-lib-textbox-icon.js → esm2020/textbox-icon/pepperi-addons-ngx-lib-textbox-icon.mjs} +0 -0
  372. package/{esm2015/textbox-icon/public-api.js → esm2020/textbox-icon/public-api.mjs} +0 -0
  373. package/esm2020/textbox-icon/textbox-icon.component.mjs +48 -0
  374. package/esm2020/textbox-icon/textbox-icon.module.mjs +64 -0
  375. package/{esm2015/top-bar/pepperi-addons-ngx-lib-top-bar.js → esm2020/top-bar/pepperi-addons-ngx-lib-top-bar.mjs} +0 -0
  376. package/{esm2015/top-bar/public-api.js → esm2020/top-bar/public-api.mjs} +0 -0
  377. package/esm2020/top-bar/top-bar.component.mjs +112 -0
  378. package/{esm2015/top-bar/top-bar.model.js → esm2020/top-bar/top-bar.model.mjs} +0 -0
  379. package/esm2020/top-bar/top-bar.module.mjs +62 -0
  380. package/fesm2015/pepperi-addons-ngx-lib-address.mjs +170 -0
  381. package/fesm2015/pepperi-addons-ngx-lib-address.mjs.map +1 -0
  382. package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs +277 -0
  383. package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs.map +1 -0
  384. package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.mjs +147 -0
  385. package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.mjs.map +1 -0
  386. package/fesm2015/pepperi-addons-ngx-lib-button.mjs +197 -0
  387. package/fesm2015/pepperi-addons-ngx-lib-button.mjs.map +1 -0
  388. package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs +804 -0
  389. package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs.map +1 -0
  390. package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs +237 -0
  391. package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs.map +1 -0
  392. package/fesm2015/pepperi-addons-ngx-lib-color.mjs +404 -0
  393. package/fesm2015/pepperi-addons-ngx-lib-color.mjs.map +1 -0
  394. package/fesm2015/pepperi-addons-ngx-lib-date.mjs +441 -0
  395. package/fesm2015/pepperi-addons-ngx-lib-date.mjs.map +1 -0
  396. package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs +242 -0
  397. package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs.map +1 -0
  398. package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs +192 -0
  399. package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs.map +1 -0
  400. package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs +96 -0
  401. package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs.map +1 -0
  402. package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs +326 -0
  403. package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs.map +1 -0
  404. package/fesm2015/pepperi-addons-ngx-lib-form.mjs +4202 -0
  405. package/fesm2015/pepperi-addons-ngx-lib-form.mjs.map +1 -0
  406. package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs +132 -0
  407. package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs.map +1 -0
  408. package/fesm2015/pepperi-addons-ngx-lib-icon.mjs +661 -0
  409. package/fesm2015/pepperi-addons-ngx-lib-icon.mjs.map +1 -0
  410. package/fesm2015/pepperi-addons-ngx-lib-image.mjs +374 -0
  411. package/fesm2015/pepperi-addons-ngx-lib-image.mjs.map +1 -0
  412. package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs +552 -0
  413. package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +1 -0
  414. package/fesm2015/pepperi-addons-ngx-lib-link.mjs +439 -0
  415. package/fesm2015/pepperi-addons-ngx-lib-link.mjs.map +1 -0
  416. package/fesm2015/pepperi-addons-ngx-lib-list.mjs +2896 -0
  417. package/fesm2015/pepperi-addons-ngx-lib-list.mjs.map +1 -0
  418. package/fesm2015/pepperi-addons-ngx-lib-menu.mjs +391 -0
  419. package/fesm2015/pepperi-addons-ngx-lib-menu.mjs.map +1 -0
  420. package/fesm2015/pepperi-addons-ngx-lib-page-layout.mjs +77 -0
  421. package/fesm2015/pepperi-addons-ngx-lib-page-layout.mjs.map +1 -0
  422. package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs +289 -0
  423. package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -0
  424. package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.mjs +662 -0
  425. package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.mjs.map +1 -0
  426. package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs +1160 -0
  427. package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -0
  428. package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs +391 -0
  429. package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs.map +1 -0
  430. package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs +344 -0
  431. package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +1 -0
  432. package/fesm2015/pepperi-addons-ngx-lib-search.mjs +393 -0
  433. package/fesm2015/pepperi-addons-ngx-lib-search.mjs.map +1 -0
  434. package/fesm2015/pepperi-addons-ngx-lib-select.mjs +314 -0
  435. package/fesm2015/pepperi-addons-ngx-lib-select.mjs.map +1 -0
  436. package/fesm2015/pepperi-addons-ngx-lib-separator.mjs +89 -0
  437. package/fesm2015/pepperi-addons-ngx-lib-separator.mjs.map +1 -0
  438. package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs +194 -0
  439. package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs.map +1 -0
  440. package/fesm2015/pepperi-addons-ngx-lib-signature.mjs +350 -0
  441. package/fesm2015/pepperi-addons-ngx-lib-signature.mjs.map +1 -0
  442. package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs +134 -0
  443. package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -0
  444. package/fesm2015/pepperi-addons-ngx-lib-slider.mjs +151 -0
  445. package/fesm2015/pepperi-addons-ngx-lib-slider.mjs.map +1 -0
  446. package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs +1671 -0
  447. package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -0
  448. package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs +183 -0
  449. package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs.map +1 -0
  450. package/fesm2015/pepperi-addons-ngx-lib-textarea.mjs +271 -0
  451. package/fesm2015/pepperi-addons-ngx-lib-textarea.mjs.map +1 -0
  452. package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs +118 -0
  453. package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs.map +1 -0
  454. package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs +605 -0
  455. package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs.map +1 -0
  456. package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs +180 -0
  457. package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -0
  458. package/fesm2015/pepperi-addons-ngx-lib.mjs +4577 -0
  459. package/fesm2015/pepperi-addons-ngx-lib.mjs.map +1 -0
  460. package/fesm2020/pepperi-addons-ngx-lib-address.mjs +170 -0
  461. package/fesm2020/pepperi-addons-ngx-lib-address.mjs.map +1 -0
  462. package/fesm2020/pepperi-addons-ngx-lib-attachment.mjs +277 -0
  463. package/fesm2020/pepperi-addons-ngx-lib-attachment.mjs.map +1 -0
  464. package/fesm2020/pepperi-addons-ngx-lib-bread-crumbs.mjs +147 -0
  465. package/fesm2020/pepperi-addons-ngx-lib-bread-crumbs.mjs.map +1 -0
  466. package/fesm2020/pepperi-addons-ngx-lib-button.mjs +197 -0
  467. package/fesm2020/pepperi-addons-ngx-lib-button.mjs.map +1 -0
  468. package/fesm2020/pepperi-addons-ngx-lib-carousel.mjs +800 -0
  469. package/fesm2020/pepperi-addons-ngx-lib-carousel.mjs.map +1 -0
  470. package/fesm2020/pepperi-addons-ngx-lib-checkbox.mjs +237 -0
  471. package/fesm2020/pepperi-addons-ngx-lib-checkbox.mjs.map +1 -0
  472. package/fesm2020/pepperi-addons-ngx-lib-color.mjs +401 -0
  473. package/fesm2020/pepperi-addons-ngx-lib-color.mjs.map +1 -0
  474. package/fesm2020/pepperi-addons-ngx-lib-date.mjs +437 -0
  475. package/fesm2020/pepperi-addons-ngx-lib-date.mjs.map +1 -0
  476. package/fesm2020/pepperi-addons-ngx-lib-dialog.mjs +237 -0
  477. package/fesm2020/pepperi-addons-ngx-lib-dialog.mjs.map +1 -0
  478. package/fesm2020/pepperi-addons-ngx-lib-draggable-items.mjs +191 -0
  479. package/fesm2020/pepperi-addons-ngx-lib-draggable-items.mjs.map +1 -0
  480. package/fesm2020/pepperi-addons-ngx-lib-field-title.mjs +96 -0
  481. package/fesm2020/pepperi-addons-ngx-lib-field-title.mjs.map +1 -0
  482. package/fesm2020/pepperi-addons-ngx-lib-files-uploader.mjs +323 -0
  483. package/fesm2020/pepperi-addons-ngx-lib-files-uploader.mjs.map +1 -0
  484. package/fesm2020/pepperi-addons-ngx-lib-form.mjs +4198 -0
  485. package/fesm2020/pepperi-addons-ngx-lib-form.mjs.map +1 -0
  486. package/fesm2020/pepperi-addons-ngx-lib-group-buttons.mjs +132 -0
  487. package/fesm2020/pepperi-addons-ngx-lib-group-buttons.mjs.map +1 -0
  488. package/fesm2020/pepperi-addons-ngx-lib-icon.mjs +659 -0
  489. package/fesm2020/pepperi-addons-ngx-lib-icon.mjs.map +1 -0
  490. package/fesm2020/pepperi-addons-ngx-lib-image.mjs +372 -0
  491. package/fesm2020/pepperi-addons-ngx-lib-image.mjs.map +1 -0
  492. package/fesm2020/pepperi-addons-ngx-lib-images-filmstrip.mjs +549 -0
  493. package/fesm2020/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +1 -0
  494. package/fesm2020/pepperi-addons-ngx-lib-link.mjs +439 -0
  495. package/fesm2020/pepperi-addons-ngx-lib-link.mjs.map +1 -0
  496. package/fesm2020/pepperi-addons-ngx-lib-list.mjs +2882 -0
  497. package/fesm2020/pepperi-addons-ngx-lib-list.mjs.map +1 -0
  498. package/fesm2020/pepperi-addons-ngx-lib-menu.mjs +391 -0
  499. package/fesm2020/pepperi-addons-ngx-lib-menu.mjs.map +1 -0
  500. package/fesm2020/pepperi-addons-ngx-lib-page-layout.mjs +77 -0
  501. package/fesm2020/pepperi-addons-ngx-lib-page-layout.mjs.map +1 -0
  502. package/fesm2020/pepperi-addons-ngx-lib-profile-data-views-list.mjs +288 -0
  503. package/fesm2020/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -0
  504. package/fesm2020/pepperi-addons-ngx-lib-quantity-selector.mjs +661 -0
  505. package/fesm2020/pepperi-addons-ngx-lib-quantity-selector.mjs.map +1 -0
  506. package/fesm2020/pepperi-addons-ngx-lib-query-builder.mjs +1149 -0
  507. package/fesm2020/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -0
  508. package/fesm2020/pepperi-addons-ngx-lib-remote-loader.mjs +380 -0
  509. package/fesm2020/pepperi-addons-ngx-lib-remote-loader.mjs.map +1 -0
  510. package/fesm2020/pepperi-addons-ngx-lib-rich-html-textarea.mjs +344 -0
  511. package/fesm2020/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +1 -0
  512. package/fesm2020/pepperi-addons-ngx-lib-search.mjs +392 -0
  513. package/fesm2020/pepperi-addons-ngx-lib-search.mjs.map +1 -0
  514. package/fesm2020/pepperi-addons-ngx-lib-select.mjs +314 -0
  515. package/fesm2020/pepperi-addons-ngx-lib-select.mjs.map +1 -0
  516. package/fesm2020/pepperi-addons-ngx-lib-separator.mjs +89 -0
  517. package/fesm2020/pepperi-addons-ngx-lib-separator.mjs.map +1 -0
  518. package/fesm2020/pepperi-addons-ngx-lib-side-bar.mjs +194 -0
  519. package/fesm2020/pepperi-addons-ngx-lib-side-bar.mjs.map +1 -0
  520. package/fesm2020/pepperi-addons-ngx-lib-signature.mjs +350 -0
  521. package/fesm2020/pepperi-addons-ngx-lib-signature.mjs.map +1 -0
  522. package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs +134 -0
  523. package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -0
  524. package/fesm2020/pepperi-addons-ngx-lib-slider.mjs +150 -0
  525. package/fesm2020/pepperi-addons-ngx-lib-slider.mjs.map +1 -0
  526. package/fesm2020/pepperi-addons-ngx-lib-smart-filters.mjs +1664 -0
  527. package/fesm2020/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -0
  528. package/fesm2020/pepperi-addons-ngx-lib-snack-bar.mjs +180 -0
  529. package/fesm2020/pepperi-addons-ngx-lib-snack-bar.mjs.map +1 -0
  530. package/fesm2020/pepperi-addons-ngx-lib-textarea.mjs +270 -0
  531. package/fesm2020/pepperi-addons-ngx-lib-textarea.mjs.map +1 -0
  532. package/fesm2020/pepperi-addons-ngx-lib-textbox-icon.mjs +118 -0
  533. package/fesm2020/pepperi-addons-ngx-lib-textbox-icon.mjs.map +1 -0
  534. package/fesm2020/pepperi-addons-ngx-lib-textbox.mjs +605 -0
  535. package/fesm2020/pepperi-addons-ngx-lib-textbox.mjs.map +1 -0
  536. package/fesm2020/pepperi-addons-ngx-lib-top-bar.mjs +179 -0
  537. package/fesm2020/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -0
  538. package/fesm2020/pepperi-addons-ngx-lib.mjs +4559 -0
  539. package/fesm2020/pepperi-addons-ngx-lib.mjs.map +1 -0
  540. package/field-title/field-title.component.d.ts +3 -0
  541. package/field-title/field-title.module.d.ts +10 -0
  542. package/field-title/index.d.ts +5 -0
  543. package/files-uploader/files-uploader.component.d.ts +4 -0
  544. package/files-uploader/files-uploader.module.d.ts +16 -0
  545. package/files-uploader/index.d.ts +5 -0
  546. package/form/field-generator.component.d.ts +3 -0
  547. package/form/form.component.d.ts +3 -0
  548. package/form/form.module.d.ts +44 -0
  549. package/form/index.d.ts +5 -0
  550. package/form/indicators.component.d.ts +3 -0
  551. package/form/internal-button.component.d.ts +3 -0
  552. package/form/internal-carusel.component.d.ts +3 -0
  553. package/form/internal-carusel.service.d.ts +3 -0
  554. package/form/internal-field-generator.component.d.ts +35 -0
  555. package/form/internal-form.component.d.ts +89 -0
  556. package/form/internal-list.component.d.ts +3 -0
  557. package/form/internal-menu.component.d.ts +3 -0
  558. package/form/internal-page.component.d.ts +3 -0
  559. package/form/internal-page.service.d.ts +3 -0
  560. package/group-buttons/group-buttons.component.d.ts +3 -0
  561. package/group-buttons/group-buttons.module.d.ts +13 -0
  562. package/group-buttons/index.d.ts +5 -0
  563. package/icon/icon-registry.service.d.ts +3 -0
  564. package/icon/icon.component.d.ts +3 -0
  565. package/icon/icon.module.d.ts +5 -0
  566. package/icon/icon.service.d.ts +3 -0
  567. package/icon/index.d.ts +5 -0
  568. package/image/image.component.d.ts +3 -0
  569. package/image/image.module.d.ts +15 -0
  570. package/image/image.service.d.ts +3 -0
  571. package/image/index.d.ts +5 -0
  572. package/images-filmstrip/images-filmstrip.component.d.ts +6 -3
  573. package/images-filmstrip/images-filmstrip.module.d.ts +17 -0
  574. package/images-filmstrip/index.d.ts +5 -0
  575. package/index.d.ts +5 -0
  576. package/link/index.d.ts +5 -0
  577. package/link/link.component.d.ts +3 -0
  578. package/link/link.module.d.ts +17 -0
  579. package/link/link.pipes.d.ts +3 -0
  580. package/list/index.d.ts +5 -0
  581. package/list/list-actions.component.d.ts +4 -0
  582. package/list/list-carousel.component.d.ts +4 -0
  583. package/list/list-chooser.component.d.ts +4 -0
  584. package/list/list-pager.component.d.ts +4 -0
  585. package/list/list-sorting.component.d.ts +4 -0
  586. package/list/list-total.component.d.ts +4 -0
  587. package/list/list-total.component.theme.scss +7 -7
  588. package/list/list-views.component.d.ts +4 -0
  589. package/list/list.component.d.ts +3 -0
  590. package/list/list.module.d.ts +29 -0
  591. package/list/list.pipes.d.ts +5 -0
  592. package/list/virtual-scroller.d.ts +8 -1
  593. package/menu/index.d.ts +5 -0
  594. package/menu/menu-item.component.d.ts +3 -0
  595. package/menu/menu.component.d.ts +3 -0
  596. package/menu/menu.module.d.ts +13 -0
  597. package/ngx-lib.module.d.ts +21 -0
  598. package/package.json +345 -20
  599. package/page-layout/index.d.ts +5 -0
  600. package/page-layout/page-layout.component.d.ts +3 -0
  601. package/page-layout/page-layout.module.d.ts +8 -0
  602. package/profile-data-views-list/index.d.ts +5 -0
  603. package/profile-data-views-list/profile-data-view/profile-data-view.component.d.ts +3 -0
  604. package/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.d.ts +3 -0
  605. package/profile-data-views-list/profile-data-views-list.component.d.ts +3 -0
  606. package/profile-data-views-list/profile-data-views-list.module.d.ts +18 -0
  607. package/quantity-selector/index.d.ts +5 -0
  608. package/quantity-selector/quantity-selector-validation.directive.d.ts +3 -0
  609. package/quantity-selector/quantity-selector.component.d.ts +3 -0
  610. package/quantity-selector/quantity-selector.module.d.ts +18 -0
  611. package/quantity-selector/quantity-selector.pipes.d.ts +3 -0
  612. package/query-builder/common/model/legacy.d.ts +1 -1
  613. package/query-builder/common/model/operator-unit.d.ts +1 -1
  614. package/query-builder/common/model/type-map.d.ts +3 -3
  615. package/query-builder/common/services/output-query.service.d.ts +3 -0
  616. package/query-builder/common/services/query-structure.service.d.ts +9 -1
  617. package/query-builder/common/services/type-convertor.service.d.ts +3 -0
  618. package/query-builder/index.d.ts +5 -0
  619. package/query-builder/query-builder-item/query-builder-item.component.d.ts +6 -2
  620. package/query-builder/query-builder-section/query-builder-section.component.d.ts +4 -1
  621. package/query-builder/query-builder.component.d.ts +4 -0
  622. package/query-builder/query-builder.module.d.ts +14 -0
  623. package/query-builder/query-builder.service.d.ts +3 -0
  624. package/remote-loader/addon-block-loader.component.d.ts +11 -3
  625. package/remote-loader/addon-block-loader.service.d.ts +16 -0
  626. package/remote-loader/index.d.ts +5 -0
  627. package/remote-loader/public-api.d.ts +1 -0
  628. package/remote-loader/remote-loader.component.d.ts +3 -0
  629. package/remote-loader/remote-loader.model.d.ts +4 -2
  630. package/remote-loader/remote-loader.module.d.ts +11 -0
  631. package/remote-loader/remote-loader.service.d.ts +7 -13
  632. package/rich-html-textarea/index.d.ts +5 -0
  633. package/rich-html-textarea/rich-html-textarea.component.d.ts +3 -0
  634. package/rich-html-textarea/rich-html-textarea.module.d.ts +20 -0
  635. package/search/index.d.ts +5 -0
  636. package/search/search.component.d.ts +4 -0
  637. package/search/search.module.d.ts +15 -0
  638. package/select/index.d.ts +5 -0
  639. package/select/select.component.d.ts +3 -0
  640. package/select/select.module.d.ts +15 -0
  641. package/separator/index.d.ts +5 -0
  642. package/separator/separator.component.d.ts +3 -0
  643. package/separator/separator.module.d.ts +6 -0
  644. package/side-bar/index.d.ts +5 -0
  645. package/side-bar/side-bar.component.d.ts +4 -0
  646. package/side-bar/side-bar.module.d.ts +11 -0
  647. package/signature/index.d.ts +5 -0
  648. package/signature/signature.component.d.ts +3 -0
  649. package/signature/signature.module.d.ts +19 -0
  650. package/size-detector/index.d.ts +5 -0
  651. package/size-detector/size-detector.component.d.ts +3 -0
  652. package/size-detector/size-detector.module.d.ts +9 -0
  653. package/slider/index.d.ts +5 -0
  654. package/slider/slider.component.d.ts +3 -0
  655. package/slider/slider.module.d.ts +10 -0
  656. package/smart-filters/boolean-filter/boolean-filter.component.d.ts +16 -0
  657. package/smart-filters/common/filter-actions.component.d.ts +3 -0
  658. package/smart-filters/common/model/base-filter-component.d.ts +7 -1
  659. package/smart-filters/common/model/operator.d.ts +13 -0
  660. package/smart-filters/common/model/type.d.ts +1 -1
  661. package/smart-filters/date-filter/date-filter.component.d.ts +18 -0
  662. package/smart-filters/index.d.ts +5 -0
  663. package/smart-filters/multi-select-filter/multi-select-filter.component.d.ts +18 -1
  664. package/smart-filters/number-filter/number-filter.component.d.ts +13 -0
  665. package/smart-filters/smart-filters.component.d.ts +3 -0
  666. package/smart-filters/smart-filters.module.d.ts +32 -0
  667. package/smart-filters/text-filter/text-filter.component.d.ts +11 -0
  668. package/snack-bar/default-snack-bar.component.d.ts +3 -0
  669. package/snack-bar/index.d.ts +5 -0
  670. package/snack-bar/snack-bar.component.d.ts +3 -0
  671. package/snack-bar/snack-bar.module.d.ts +14 -0
  672. package/snack-bar/snack-bar.service.d.ts +3 -0
  673. package/src/assets/i18n/en.ngx-lib.json +25 -2
  674. package/src/assets/i18n/hu.ngx-lib.json +1 -1
  675. package/src/assets/i18n/nl.ngx-lib.json +1 -1
  676. package/src/assets/i18n/pl.ngx-lib.json +1 -1
  677. package/src/assets/i18n/ru.ngx-lib.json +1 -1
  678. package/src/core/style/abstracts/mixins.scss +1 -1
  679. package/src/core/style/abstracts/variables.scss +5 -1
  680. package/src/core/style/base/base.scss +19 -0
  681. package/src/core/style/components/general.scss +1 -0
  682. package/src/core/style/themes/black-theme.scss +1 -1
  683. package/src/core/style/themes/default-theme.scss +1 -1
  684. package/src/core/style/themes/light-theme.scss +1 -1
  685. package/src/core/style/themes/nature-theme.scss +1 -1
  686. package/textarea/index.d.ts +5 -0
  687. package/textarea/textarea.component.d.ts +3 -0
  688. package/textarea/textarea.module.d.ts +18 -0
  689. package/textbox/index.d.ts +5 -0
  690. package/textbox/textbox-validation.directive.d.ts +3 -0
  691. package/textbox/textbox.component.d.ts +10 -0
  692. package/textbox/textbox.module.d.ts +17 -0
  693. package/textbox-icon/index.d.ts +5 -0
  694. package/textbox-icon/textbox-icon.component.d.ts +3 -0
  695. package/textbox-icon/textbox-icon.module.d.ts +11 -0
  696. package/theming.scss +1 -1
  697. package/top-bar/index.d.ts +5 -0
  698. package/top-bar/top-bar.component.d.ts +3 -0
  699. package/top-bar/top-bar.module.d.ts +13 -0
  700. package/address/package.json +0 -11
  701. package/address/pepperi-addons-ngx-lib-address.d.ts +0 -4
  702. package/address/pepperi-addons-ngx-lib-address.metadata.json +0 -1
  703. package/attachment/package.json +0 -11
  704. package/attachment/pepperi-addons-ngx-lib-attachment.d.ts +0 -4
  705. package/attachment/pepperi-addons-ngx-lib-attachment.metadata.json +0 -1
  706. package/bread-crumbs/package.json +0 -11
  707. package/bread-crumbs/pepperi-addons-ngx-lib-bread-crumbs.d.ts +0 -4
  708. package/bread-crumbs/pepperi-addons-ngx-lib-bread-crumbs.metadata.json +0 -1
  709. package/bundles/pepperi-addons-ngx-lib-address.umd.js +0 -145
  710. package/bundles/pepperi-addons-ngx-lib-address.umd.js.map +0 -1
  711. package/bundles/pepperi-addons-ngx-lib-attachment.umd.js +0 -268
  712. package/bundles/pepperi-addons-ngx-lib-attachment.umd.js.map +0 -1
  713. package/bundles/pepperi-addons-ngx-lib-bread-crumbs.umd.js +0 -145
  714. package/bundles/pepperi-addons-ngx-lib-bread-crumbs.umd.js.map +0 -1
  715. package/bundles/pepperi-addons-ngx-lib-button.umd.js +0 -182
  716. package/bundles/pepperi-addons-ngx-lib-button.umd.js.map +0 -1
  717. package/bundles/pepperi-addons-ngx-lib-carousel.umd.js +0 -812
  718. package/bundles/pepperi-addons-ngx-lib-carousel.umd.js.map +0 -1
  719. package/bundles/pepperi-addons-ngx-lib-checkbox.umd.js +0 -213
  720. package/bundles/pepperi-addons-ngx-lib-checkbox.umd.js.map +0 -1
  721. package/bundles/pepperi-addons-ngx-lib-color.umd.js +0 -323
  722. package/bundles/pepperi-addons-ngx-lib-color.umd.js.map +0 -1
  723. package/bundles/pepperi-addons-ngx-lib-date.umd.js +0 -698
  724. package/bundles/pepperi-addons-ngx-lib-date.umd.js.map +0 -1
  725. package/bundles/pepperi-addons-ngx-lib-dialog.umd.js +0 -239
  726. package/bundles/pepperi-addons-ngx-lib-dialog.umd.js.map +0 -1
  727. package/bundles/pepperi-addons-ngx-lib-draggable-items.umd.js +0 -175
  728. package/bundles/pepperi-addons-ngx-lib-draggable-items.umd.js.map +0 -1
  729. package/bundles/pepperi-addons-ngx-lib-field-title.umd.js +0 -78
  730. package/bundles/pepperi-addons-ngx-lib-field-title.umd.js.map +0 -1
  731. package/bundles/pepperi-addons-ngx-lib-files-uploader.umd.js +0 -281
  732. package/bundles/pepperi-addons-ngx-lib-files-uploader.umd.js.map +0 -1
  733. package/bundles/pepperi-addons-ngx-lib-form.umd.js +0 -3299
  734. package/bundles/pepperi-addons-ngx-lib-form.umd.js.map +0 -1
  735. package/bundles/pepperi-addons-ngx-lib-group-buttons.umd.js +0 -108
  736. package/bundles/pepperi-addons-ngx-lib-group-buttons.umd.js.map +0 -1
  737. package/bundles/pepperi-addons-ngx-lib-icon.umd.js +0 -834
  738. package/bundles/pepperi-addons-ngx-lib-icon.umd.js.map +0 -1
  739. package/bundles/pepperi-addons-ngx-lib-image.umd.js +0 -370
  740. package/bundles/pepperi-addons-ngx-lib-image.umd.js.map +0 -1
  741. package/bundles/pepperi-addons-ngx-lib-images-filmstrip.umd.js +0 -444
  742. package/bundles/pepperi-addons-ngx-lib-images-filmstrip.umd.js.map +0 -1
  743. package/bundles/pepperi-addons-ngx-lib-link.umd.js +0 -411
  744. package/bundles/pepperi-addons-ngx-lib-link.umd.js.map +0 -1
  745. package/bundles/pepperi-addons-ngx-lib-list.umd.js +0 -3274
  746. package/bundles/pepperi-addons-ngx-lib-list.umd.js.map +0 -1
  747. package/bundles/pepperi-addons-ngx-lib-menu.umd.js +0 -676
  748. package/bundles/pepperi-addons-ngx-lib-menu.umd.js.map +0 -1
  749. package/bundles/pepperi-addons-ngx-lib-page-layout.umd.js +0 -81
  750. package/bundles/pepperi-addons-ngx-lib-page-layout.umd.js.map +0 -1
  751. package/bundles/pepperi-addons-ngx-lib-profile-data-views-list.umd.js +0 -572
  752. package/bundles/pepperi-addons-ngx-lib-profile-data-views-list.umd.js.map +0 -1
  753. package/bundles/pepperi-addons-ngx-lib-quantity-selector.umd.js +0 -952
  754. package/bundles/pepperi-addons-ngx-lib-quantity-selector.umd.js.map +0 -1
  755. package/bundles/pepperi-addons-ngx-lib-query-builder.umd.js +0 -1143
  756. package/bundles/pepperi-addons-ngx-lib-query-builder.umd.js.map +0 -1
  757. package/bundles/pepperi-addons-ngx-lib-remote-loader.umd.js +0 -697
  758. package/bundles/pepperi-addons-ngx-lib-remote-loader.umd.js.map +0 -1
  759. package/bundles/pepperi-addons-ngx-lib-rich-html-textarea.umd.js +0 -296
  760. package/bundles/pepperi-addons-ngx-lib-rich-html-textarea.umd.js.map +0 -1
  761. package/bundles/pepperi-addons-ngx-lib-search.umd.js +0 -347
  762. package/bundles/pepperi-addons-ngx-lib-search.umd.js.map +0 -1
  763. package/bundles/pepperi-addons-ngx-lib-select.umd.js +0 -598
  764. package/bundles/pepperi-addons-ngx-lib-select.umd.js.map +0 -1
  765. package/bundles/pepperi-addons-ngx-lib-separator.umd.js +0 -100
  766. package/bundles/pepperi-addons-ngx-lib-separator.umd.js.map +0 -1
  767. package/bundles/pepperi-addons-ngx-lib-side-bar.umd.js +0 -184
  768. package/bundles/pepperi-addons-ngx-lib-side-bar.umd.js.map +0 -1
  769. package/bundles/pepperi-addons-ngx-lib-signature.umd.js +0 -307
  770. package/bundles/pepperi-addons-ngx-lib-signature.umd.js.map +0 -1
  771. package/bundles/pepperi-addons-ngx-lib-size-detector.umd.js +0 -134
  772. package/bundles/pepperi-addons-ngx-lib-size-detector.umd.js.map +0 -1
  773. package/bundles/pepperi-addons-ngx-lib-slider.umd.js +0 -145
  774. package/bundles/pepperi-addons-ngx-lib-slider.umd.js.map +0 -1
  775. package/bundles/pepperi-addons-ngx-lib-smart-filters.umd.js +0 -1848
  776. package/bundles/pepperi-addons-ngx-lib-smart-filters.umd.js.map +0 -1
  777. package/bundles/pepperi-addons-ngx-lib-snack-bar.umd.js +0 -202
  778. package/bundles/pepperi-addons-ngx-lib-snack-bar.umd.js.map +0 -1
  779. package/bundles/pepperi-addons-ngx-lib-textarea.umd.js +0 -232
  780. package/bundles/pepperi-addons-ngx-lib-textarea.umd.js.map +0 -1
  781. package/bundles/pepperi-addons-ngx-lib-textbox-icon.umd.js +0 -101
  782. package/bundles/pepperi-addons-ngx-lib-textbox-icon.umd.js.map +0 -1
  783. package/bundles/pepperi-addons-ngx-lib-textbox.umd.js +0 -554
  784. package/bundles/pepperi-addons-ngx-lib-textbox.umd.js.map +0 -1
  785. package/bundles/pepperi-addons-ngx-lib-top-bar.umd.js +0 -150
  786. package/bundles/pepperi-addons-ngx-lib-top-bar.umd.js.map +0 -1
  787. package/bundles/pepperi-addons-ngx-lib.umd.js +0 -5022
  788. package/bundles/pepperi-addons-ngx-lib.umd.js.map +0 -1
  789. package/button/package.json +0 -11
  790. package/button/pepperi-addons-ngx-lib-button.d.ts +0 -4
  791. package/button/pepperi-addons-ngx-lib-button.metadata.json +0 -1
  792. package/carousel/package.json +0 -11
  793. package/carousel/pepperi-addons-ngx-lib-carousel.d.ts +0 -4
  794. package/carousel/pepperi-addons-ngx-lib-carousel.metadata.json +0 -1
  795. package/checkbox/package.json +0 -14
  796. package/checkbox/pepperi-addons-ngx-lib-checkbox.d.ts +0 -4
  797. package/checkbox/pepperi-addons-ngx-lib-checkbox.metadata.json +0 -1
  798. package/color/package.json +0 -14
  799. package/color/pepperi-addons-ngx-lib-color.d.ts +0 -5
  800. package/color/pepperi-addons-ngx-lib-color.metadata.json +0 -1
  801. package/date/package.json +0 -18
  802. package/date/pepperi-addons-ngx-lib-date.d.ts +0 -5
  803. package/date/pepperi-addons-ngx-lib-date.metadata.json +0 -1
  804. package/dialog/package.json +0 -15
  805. package/dialog/pepperi-addons-ngx-lib-dialog.d.ts +0 -5
  806. package/dialog/pepperi-addons-ngx-lib-dialog.metadata.json +0 -1
  807. package/draggable-items/package.json +0 -14
  808. package/draggable-items/pepperi-addons-ngx-lib-draggable-items.d.ts +0 -4
  809. package/draggable-items/pepperi-addons-ngx-lib-draggable-items.metadata.json +0 -1
  810. package/esm2015/address/address.component.js +0 -97
  811. package/esm2015/address/address.module.js +0 -31
  812. package/esm2015/attachment/attachment.component.js +0 -209
  813. package/esm2015/attachment/attachment.module.js +0 -29
  814. package/esm2015/bread-crumbs/bread-crumbs.component.js +0 -79
  815. package/esm2015/bread-crumbs/bread-crumbs.module.js +0 -35
  816. package/esm2015/button/button.component.js +0 -128
  817. package/esm2015/button/button.module.js +0 -27
  818. package/esm2015/carousel/carousel-item.directive.js +0 -27
  819. package/esm2015/carousel/carousel.component.js +0 -714
  820. package/esm2015/carousel/carousel.module.js +0 -12
  821. package/esm2015/checkbox/checkbox.component.js +0 -152
  822. package/esm2015/checkbox/checkbox.module.js +0 -40
  823. package/esm2015/color/color-picker.component.js +0 -224
  824. package/esm2015/color/color.component.js +0 -75
  825. package/esm2015/color/color.module.js +0 -58
  826. package/esm2015/color/pepperi-addons-ngx-lib-color.js +0 -6
  827. package/esm2015/core/clipboard/clipboard.directive.js +0 -20
  828. package/esm2015/core/clipboard/clipboard.service.js +0 -12
  829. package/esm2015/core/common/directives/auto-width.directive.js +0 -78
  830. package/esm2015/core/common/directives/button-blur.directive.js +0 -23
  831. package/esm2015/core/common/directives/button-loader.directive.js +0 -103
  832. package/esm2015/core/common/directives/data-qa.directive.js +0 -23
  833. package/esm2015/core/common/directives/menu-blur.directive.js +0 -29
  834. package/esm2015/core/common/directives/prevent-multi-click.directive.js +0 -22
  835. package/esm2015/core/common/directives/print.directive.js +0 -160
  836. package/esm2015/core/common/pipes/common-pipes.js +0 -142
  837. package/esm2015/core/common/pipes/public-api.js +0 -5
  838. package/esm2015/core/common/services/addon.service.js +0 -161
  839. package/esm2015/core/common/services/color.service.js +0 -357
  840. package/esm2015/core/common/services/cookie.service.js +0 -148
  841. package/esm2015/core/common/services/data-convertor.service.js +0 -118
  842. package/esm2015/core/common/services/file.service.js +0 -212
  843. package/esm2015/core/common/services/jwt-helper.service.js +0 -104
  844. package/esm2015/core/common/services/session.service.js +0 -73
  845. package/esm2015/core/common/services/translate.service.js +0 -48
  846. package/esm2015/core/common/services/utilities.service.js +0 -126
  847. package/esm2015/core/common/services/validator.service.js +0 -273
  848. package/esm2015/core/common/services/window-scrolling.service.js +0 -35
  849. package/esm2015/core/customization/customization.model.js +0 -290
  850. package/esm2015/core/customization/customization.service.js +0 -775
  851. package/esm2015/core/http/interceptors/error.interceptor.js +0 -24
  852. package/esm2015/core/http/interceptors/loader.interceptor.js +0 -33
  853. package/esm2015/core/http/interceptors/profiler.interceptor.js +0 -29
  854. package/esm2015/core/http/services/http.service.js +0 -161
  855. package/esm2015/core/http/services/loader.service.js +0 -49
  856. package/esm2015/core/layout/layout.service.js +0 -169
  857. package/esm2015/core/layout/rtl.directive.js +0 -47
  858. package/esm2015/core/portal/attach.directive.js +0 -27
  859. package/esm2015/core/portal/portal.service.js +0 -35
  860. package/esm2015/core/portal/target.directive.js +0 -24
  861. package/esm2015/core/scroll-to/scroll-to.service.js +0 -82
  862. package/esm2015/date/date.component.js +0 -252
  863. package/esm2015/date/date.model.js +0 -45
  864. package/esm2015/date/date.module.js +0 -51
  865. package/esm2015/date/pepperi-addons-ngx-lib-date.js +0 -6
  866. package/esm2015/dialog/default-dialog.component.js +0 -32
  867. package/esm2015/dialog/dialog.component.js +0 -28
  868. package/esm2015/dialog/dialog.model.js +0 -22
  869. package/esm2015/dialog/dialog.module.js +0 -40
  870. package/esm2015/dialog/dialog.service.js +0 -77
  871. package/esm2015/dialog/pepperi-addons-ngx-lib-dialog.js +0 -6
  872. package/esm2015/draggable-items/draggable-item/draggable-item.component.js +0 -25
  873. package/esm2015/draggable-items/draggable-items.component.js +0 -92
  874. package/esm2015/draggable-items/draggable-items.model.js +0 -2
  875. package/esm2015/draggable-items/draggable-items.module.js +0 -43
  876. package/esm2015/field-title/field-title.component.js +0 -32
  877. package/esm2015/field-title/field-title.module.js +0 -32
  878. package/esm2015/files-uploader/files-uploader.component.js +0 -221
  879. package/esm2015/files-uploader/files-uploader.module.js +0 -50
  880. package/esm2015/form/field-generator.component.js +0 -122
  881. package/esm2015/form/form.component.js +0 -1197
  882. package/esm2015/form/form.module.js +0 -108
  883. package/esm2015/form/indicators.component.js +0 -21
  884. package/esm2015/form/internal-button.component.js +0 -166
  885. package/esm2015/form/internal-carusel.component.js +0 -116
  886. package/esm2015/form/internal-carusel.service.js +0 -32
  887. package/esm2015/form/internal-list.component.js +0 -495
  888. package/esm2015/form/internal-menu.component.js +0 -55
  889. package/esm2015/form/internal-page.component.js +0 -351
  890. package/esm2015/form/internal-page.service.js +0 -121
  891. package/esm2015/form/pepperi-addons-ngx-lib-form.js +0 -14
  892. package/esm2015/group-buttons/group-buttons.component.js +0 -58
  893. package/esm2015/group-buttons/group-buttons.module.js +0 -38
  894. package/esm2015/icon/icon-registry.service.js +0 -24
  895. package/esm2015/icon/icon.component.js +0 -125
  896. package/esm2015/icon/icon.module.js +0 -15
  897. package/esm2015/icon/icon.service.js +0 -32
  898. package/esm2015/image/image.component.js +0 -229
  899. package/esm2015/image/image.module.js +0 -49
  900. package/esm2015/image/image.service.js +0 -55
  901. package/esm2015/images-filmstrip/images-filmstrip.component.js +0 -373
  902. package/esm2015/images-filmstrip/images-filmstrip.module.js +0 -71
  903. package/esm2015/link/link.component.js +0 -316
  904. package/esm2015/link/link.module.js +0 -51
  905. package/esm2015/link/link.pipes.js +0 -13
  906. package/esm2015/link/pepperi-addons-ngx-lib-link.js +0 -6
  907. package/esm2015/list/list-actions.component.js +0 -36
  908. package/esm2015/list/list-carousel.component.js +0 -95
  909. package/esm2015/list/list-chooser.component.js +0 -58
  910. package/esm2015/list/list-pager.component.js +0 -113
  911. package/esm2015/list/list-sorting.component.js +0 -55
  912. package/esm2015/list/list-total.component.js +0 -24
  913. package/esm2015/list/list-views.component.js +0 -72
  914. package/esm2015/list/list.component.js +0 -1128
  915. package/esm2015/list/list.module.js +0 -88
  916. package/esm2015/list/list.pipes.js +0 -40
  917. package/esm2015/list/pepperi-addons-ngx-lib-list.js +0 -7
  918. package/esm2015/list/virtual-scroller.js +0 -1079
  919. package/esm2015/menu/menu-item.component.js +0 -103
  920. package/esm2015/menu/menu.component.js +0 -174
  921. package/esm2015/menu/menu.module.js +0 -40
  922. package/esm2015/menu/pepperi-addons-ngx-lib-menu.js +0 -6
  923. package/esm2015/ngx-lib.module.js +0 -77
  924. package/esm2015/page-layout/page-layout.component.js +0 -42
  925. package/esm2015/page-layout/page-layout.module.js +0 -21
  926. package/esm2015/pepperi-addons-ngx-lib.js +0 -9
  927. package/esm2015/profile-data-views-list/profile-data-view/profile-data-view.component.js +0 -39
  928. package/esm2015/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.js +0 -60
  929. package/esm2015/profile-data-views-list/profile-data-views-list.component.js +0 -87
  930. package/esm2015/profile-data-views-list/profile-data-views-list.module.js +0 -57
  931. package/esm2015/quantity-selector/pepperi-addons-ngx-lib-quantity-selector.js +0 -7
  932. package/esm2015/quantity-selector/quantity-selector-validation.directive.js +0 -44
  933. package/esm2015/quantity-selector/quantity-selector.component.js +0 -466
  934. package/esm2015/quantity-selector/quantity-selector.module.js +0 -53
  935. package/esm2015/quantity-selector/quantity-selector.pipes.js +0 -19
  936. package/esm2015/query-builder/common/model/legacy.js +0 -2
  937. package/esm2015/query-builder/common/model/operator-unit.js +0 -42
  938. package/esm2015/query-builder/common/model/operator.js +0 -207
  939. package/esm2015/query-builder/common/model/type-map.js +0 -27
  940. package/esm2015/query-builder/common/services/output-query.service.js +0 -111
  941. package/esm2015/query-builder/common/services/query-structure.service.js +0 -199
  942. package/esm2015/query-builder/common/services/type-convertor.service.js +0 -40
  943. package/esm2015/query-builder/pepperi-addons-ngx-lib-query-builder.js +0 -10
  944. package/esm2015/query-builder/query-builder-item/query-builder-item.component.js +0 -116
  945. package/esm2015/query-builder/query-builder-section/query-builder-section.component.js +0 -64
  946. package/esm2015/query-builder/query-builder.component.js +0 -104
  947. package/esm2015/query-builder/query-builder.module.js +0 -35
  948. package/esm2015/query-builder/query-builder.service.js +0 -101
  949. package/esm2015/remote-loader/addon-block-loader.component.js +0 -62
  950. package/esm2015/remote-loader/public-api.js +0 -9
  951. package/esm2015/remote-loader/remote-loader.component.js +0 -121
  952. package/esm2015/remote-loader/remote-loader.model.js +0 -2
  953. package/esm2015/remote-loader/remote-loader.module.js +0 -36
  954. package/esm2015/remote-loader/remote-loader.service.js +0 -107
  955. package/esm2015/rich-html-textarea/rich-html-textarea.component.js +0 -220
  956. package/esm2015/rich-html-textarea/rich-html-textarea.module.js +0 -57
  957. package/esm2015/search/search.component.js +0 -274
  958. package/esm2015/search/search.module.js +0 -45
  959. package/esm2015/select/select.component.js +0 -212
  960. package/esm2015/select/select.module.js +0 -43
  961. package/esm2015/separator/separator.component.js +0 -63
  962. package/esm2015/separator/separator.module.js +0 -13
  963. package/esm2015/side-bar/side-bar.component.js +0 -131
  964. package/esm2015/side-bar/side-bar.module.js +0 -34
  965. package/esm2015/signature/signature.component.js +0 -234
  966. package/esm2015/signature/signature.module.js +0 -55
  967. package/esm2015/size-detector/size-detector.component.js +0 -89
  968. package/esm2015/size-detector/size-detector.module.js +0 -22
  969. package/esm2015/slider/slider.component.js +0 -96
  970. package/esm2015/slider/slider.module.js +0 -25
  971. package/esm2015/smart-filters/boolean-filter/boolean-filter.component.js +0 -42
  972. package/esm2015/smart-filters/common/filter-actions.component.js +0 -26
  973. package/esm2015/smart-filters/common/model/base-filter-component.js +0 -260
  974. package/esm2015/smart-filters/common/model/operator.js +0 -216
  975. package/esm2015/smart-filters/common/model/type.js +0 -2
  976. package/esm2015/smart-filters/date-filter/date-filter.component.js +0 -144
  977. package/esm2015/smart-filters/multi-select-filter/multi-select-filter.component.js +0 -153
  978. package/esm2015/smart-filters/number-filter/number-filter.component.js +0 -103
  979. package/esm2015/smart-filters/smart-filters.component.js +0 -130
  980. package/esm2015/smart-filters/smart-filters.module.js +0 -91
  981. package/esm2015/smart-filters/text-filter/text-filter.component.js +0 -79
  982. package/esm2015/snack-bar/default-snack-bar.component.js +0 -28
  983. package/esm2015/snack-bar/pepperi-addons-ngx-lib-snack-bar.js +0 -6
  984. package/esm2015/snack-bar/snack-bar.component.js +0 -26
  985. package/esm2015/snack-bar/snack-bar.module.js +0 -42
  986. package/esm2015/snack-bar/snack-bar.service.js +0 -63
  987. package/esm2015/textarea/textarea.component.js +0 -161
  988. package/esm2015/textarea/textarea.module.js +0 -51
  989. package/esm2015/textbox/pepperi-addons-ngx-lib-textbox.js +0 -6
  990. package/esm2015/textbox/textbox-validation.directive.js +0 -86
  991. package/esm2015/textbox/textbox.component.js +0 -389
  992. package/esm2015/textbox/textbox.module.js +0 -45
  993. package/esm2015/textbox-icon/textbox-icon.component.js +0 -41
  994. package/esm2015/textbox-icon/textbox-icon.module.js +0 -47
  995. package/esm2015/top-bar/top-bar.component.js +0 -99
  996. package/esm2015/top-bar/top-bar.module.js +0 -41
  997. package/fesm2015/pepperi-addons-ngx-lib-address.js +0 -136
  998. package/fesm2015/pepperi-addons-ngx-lib-address.js.map +0 -1
  999. package/fesm2015/pepperi-addons-ngx-lib-attachment.js +0 -246
  1000. package/fesm2015/pepperi-addons-ngx-lib-attachment.js.map +0 -1
  1001. package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.js +0 -128
  1002. package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.js.map +0 -1
  1003. package/fesm2015/pepperi-addons-ngx-lib-button.js +0 -169
  1004. package/fesm2015/pepperi-addons-ngx-lib-button.js.map +0 -1
  1005. package/fesm2015/pepperi-addons-ngx-lib-carousel.js +0 -760
  1006. package/fesm2015/pepperi-addons-ngx-lib-carousel.js.map +0 -1
  1007. package/fesm2015/pepperi-addons-ngx-lib-checkbox.js +0 -200
  1008. package/fesm2015/pepperi-addons-ngx-lib-checkbox.js.map +0 -1
  1009. package/fesm2015/pepperi-addons-ngx-lib-color.js +0 -350
  1010. package/fesm2015/pepperi-addons-ngx-lib-color.js.map +0 -1
  1011. package/fesm2015/pepperi-addons-ngx-lib-date.js +0 -350
  1012. package/fesm2015/pepperi-addons-ngx-lib-date.js.map +0 -1
  1013. package/fesm2015/pepperi-addons-ngx-lib-dialog.js +0 -199
  1014. package/fesm2015/pepperi-addons-ngx-lib-dialog.js.map +0 -1
  1015. package/fesm2015/pepperi-addons-ngx-lib-draggable-items.js +0 -166
  1016. package/fesm2015/pepperi-addons-ngx-lib-draggable-items.js.map +0 -1
  1017. package/fesm2015/pepperi-addons-ngx-lib-field-title.js +0 -73
  1018. package/fesm2015/pepperi-addons-ngx-lib-field-title.js.map +0 -1
  1019. package/fesm2015/pepperi-addons-ngx-lib-files-uploader.js +0 -276
  1020. package/fesm2015/pepperi-addons-ngx-lib-files-uploader.js.map +0 -1
  1021. package/fesm2015/pepperi-addons-ngx-lib-form.js +0 -2756
  1022. package/fesm2015/pepperi-addons-ngx-lib-form.js.map +0 -1
  1023. package/fesm2015/pepperi-addons-ngx-lib-group-buttons.js +0 -104
  1024. package/fesm2015/pepperi-addons-ngx-lib-group-buttons.js.map +0 -1
  1025. package/fesm2015/pepperi-addons-ngx-lib-icon.js +0 -688
  1026. package/fesm2015/pepperi-addons-ngx-lib-icon.js.map +0 -1
  1027. package/fesm2015/pepperi-addons-ngx-lib-image.js +0 -335
  1028. package/fesm2015/pepperi-addons-ngx-lib-image.js.map +0 -1
  1029. package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.js +0 -436
  1030. package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.js.map +0 -1
  1031. package/fesm2015/pepperi-addons-ngx-lib-link.js +0 -383
  1032. package/fesm2015/pepperi-addons-ngx-lib-link.js.map +0 -1
  1033. package/fesm2015/pepperi-addons-ngx-lib-list.js +0 -2770
  1034. package/fesm2015/pepperi-addons-ngx-lib-list.js.map +0 -1
  1035. package/fesm2015/pepperi-addons-ngx-lib-menu.js +0 -338
  1036. package/fesm2015/pepperi-addons-ngx-lib-menu.js.map +0 -1
  1037. package/fesm2015/pepperi-addons-ngx-lib-page-layout.js +0 -70
  1038. package/fesm2015/pepperi-addons-ngx-lib-page-layout.js.map +0 -1
  1039. package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.js +0 -247
  1040. package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.js.map +0 -1
  1041. package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.js +0 -585
  1042. package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.js.map +0 -1
  1043. package/fesm2015/pepperi-addons-ngx-lib-query-builder.js +0 -1030
  1044. package/fesm2015/pepperi-addons-ngx-lib-query-builder.js.map +0 -1
  1045. package/fesm2015/pepperi-addons-ngx-lib-remote-loader.js +0 -325
  1046. package/fesm2015/pepperi-addons-ngx-lib-remote-loader.js.map +0 -1
  1047. package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.js +0 -284
  1048. package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.js.map +0 -1
  1049. package/fesm2015/pepperi-addons-ngx-lib-search.js +0 -326
  1050. package/fesm2015/pepperi-addons-ngx-lib-search.js.map +0 -1
  1051. package/fesm2015/pepperi-addons-ngx-lib-select.js +0 -263
  1052. package/fesm2015/pepperi-addons-ngx-lib-select.js.map +0 -1
  1053. package/fesm2015/pepperi-addons-ngx-lib-separator.js +0 -85
  1054. package/fesm2015/pepperi-addons-ngx-lib-separator.js.map +0 -1
  1055. package/fesm2015/pepperi-addons-ngx-lib-side-bar.js +0 -172
  1056. package/fesm2015/pepperi-addons-ngx-lib-side-bar.js.map +0 -1
  1057. package/fesm2015/pepperi-addons-ngx-lib-signature.js +0 -296
  1058. package/fesm2015/pepperi-addons-ngx-lib-signature.js.map +0 -1
  1059. package/fesm2015/pepperi-addons-ngx-lib-size-detector.js +0 -119
  1060. package/fesm2015/pepperi-addons-ngx-lib-size-detector.js.map +0 -1
  1061. package/fesm2015/pepperi-addons-ngx-lib-slider.js +0 -129
  1062. package/fesm2015/pepperi-addons-ngx-lib-slider.js.map +0 -1
  1063. package/fesm2015/pepperi-addons-ngx-lib-smart-filters.js +0 -1407
  1064. package/fesm2015/pepperi-addons-ngx-lib-smart-filters.js.map +0 -1
  1065. package/fesm2015/pepperi-addons-ngx-lib-snack-bar.js +0 -166
  1066. package/fesm2015/pepperi-addons-ngx-lib-snack-bar.js.map +0 -1
  1067. package/fesm2015/pepperi-addons-ngx-lib-textarea.js +0 -219
  1068. package/fesm2015/pepperi-addons-ngx-lib-textarea.js.map +0 -1
  1069. package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.js +0 -96
  1070. package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.js.map +0 -1
  1071. package/fesm2015/pepperi-addons-ngx-lib-textbox.js +0 -524
  1072. package/fesm2015/pepperi-addons-ngx-lib-textbox.js.map +0 -1
  1073. package/fesm2015/pepperi-addons-ngx-lib-top-bar.js +0 -146
  1074. package/fesm2015/pepperi-addons-ngx-lib-top-bar.js.map +0 -1
  1075. package/fesm2015/pepperi-addons-ngx-lib.js +0 -4309
  1076. package/fesm2015/pepperi-addons-ngx-lib.js.map +0 -1
  1077. package/field-title/package.json +0 -11
  1078. package/field-title/pepperi-addons-ngx-lib-field-title.d.ts +0 -4
  1079. package/field-title/pepperi-addons-ngx-lib-field-title.metadata.json +0 -1
  1080. package/files-uploader/package.json +0 -15
  1081. package/files-uploader/pepperi-addons-ngx-lib-files-uploader.d.ts +0 -4
  1082. package/files-uploader/pepperi-addons-ngx-lib-files-uploader.metadata.json +0 -1
  1083. package/form/package.json +0 -15
  1084. package/form/pepperi-addons-ngx-lib-form.d.ts +0 -13
  1085. package/form/pepperi-addons-ngx-lib-form.metadata.json +0 -1
  1086. package/group-buttons/package.json +0 -11
  1087. package/group-buttons/pepperi-addons-ngx-lib-group-buttons.d.ts +0 -4
  1088. package/group-buttons/pepperi-addons-ngx-lib-group-buttons.metadata.json +0 -1
  1089. package/icon/package.json +0 -11
  1090. package/icon/pepperi-addons-ngx-lib-icon.d.ts +0 -4
  1091. package/icon/pepperi-addons-ngx-lib-icon.metadata.json +0 -1
  1092. package/image/package.json +0 -14
  1093. package/image/pepperi-addons-ngx-lib-image.d.ts +0 -4
  1094. package/image/pepperi-addons-ngx-lib-image.metadata.json +0 -1
  1095. package/images-filmstrip/package.json +0 -17
  1096. package/images-filmstrip/pepperi-addons-ngx-lib-images-filmstrip.d.ts +0 -4
  1097. package/images-filmstrip/pepperi-addons-ngx-lib-images-filmstrip.metadata.json +0 -1
  1098. package/link/package.json +0 -14
  1099. package/link/pepperi-addons-ngx-lib-link.d.ts +0 -5
  1100. package/link/pepperi-addons-ngx-lib-link.metadata.json +0 -1
  1101. package/list/package.json +0 -15
  1102. package/list/pepperi-addons-ngx-lib-list.d.ts +0 -6
  1103. package/list/pepperi-addons-ngx-lib-list.metadata.json +0 -1
  1104. package/menu/package.json +0 -11
  1105. package/menu/pepperi-addons-ngx-lib-menu.d.ts +0 -5
  1106. package/menu/pepperi-addons-ngx-lib-menu.metadata.json +0 -1
  1107. package/page-layout/package.json +0 -11
  1108. package/page-layout/pepperi-addons-ngx-lib-page-layout.d.ts +0 -4
  1109. package/page-layout/pepperi-addons-ngx-lib-page-layout.metadata.json +0 -1
  1110. package/pepperi-addons-ngx-lib.d.ts +0 -8
  1111. package/pepperi-addons-ngx-lib.metadata.json +0 -1
  1112. package/profile-data-views-list/package.json +0 -15
  1113. package/profile-data-views-list/pepperi-addons-ngx-lib-profile-data-views-list.d.ts +0 -4
  1114. package/profile-data-views-list/pepperi-addons-ngx-lib-profile-data-views-list.metadata.json +0 -1
  1115. package/quantity-selector/package.json +0 -15
  1116. package/quantity-selector/pepperi-addons-ngx-lib-quantity-selector.d.ts +0 -6
  1117. package/quantity-selector/pepperi-addons-ngx-lib-quantity-selector.metadata.json +0 -1
  1118. package/query-builder/package.json +0 -14
  1119. package/query-builder/pepperi-addons-ngx-lib-query-builder.d.ts +0 -9
  1120. package/query-builder/pepperi-addons-ngx-lib-query-builder.metadata.json +0 -1
  1121. package/remote-loader/package.json +0 -14
  1122. package/remote-loader/pepperi-addons-ngx-lib-remote-loader.d.ts +0 -4
  1123. package/remote-loader/pepperi-addons-ngx-lib-remote-loader.metadata.json +0 -1
  1124. package/rich-html-textarea/package.json +0 -15
  1125. package/rich-html-textarea/pepperi-addons-ngx-lib-rich-html-textarea.d.ts +0 -4
  1126. package/rich-html-textarea/pepperi-addons-ngx-lib-rich-html-textarea.metadata.json +0 -1
  1127. package/search/package.json +0 -14
  1128. package/search/pepperi-addons-ngx-lib-search.d.ts +0 -4
  1129. package/search/pepperi-addons-ngx-lib-search.metadata.json +0 -1
  1130. package/select/package.json +0 -14
  1131. package/select/pepperi-addons-ngx-lib-select.d.ts +0 -4
  1132. package/select/pepperi-addons-ngx-lib-select.metadata.json +0 -1
  1133. package/separator/package.json +0 -11
  1134. package/separator/pepperi-addons-ngx-lib-separator.d.ts +0 -4
  1135. package/separator/pepperi-addons-ngx-lib-separator.metadata.json +0 -1
  1136. package/side-bar/package.json +0 -11
  1137. package/side-bar/pepperi-addons-ngx-lib-side-bar.d.ts +0 -4
  1138. package/side-bar/pepperi-addons-ngx-lib-side-bar.metadata.json +0 -1
  1139. package/signature/package.json +0 -15
  1140. package/signature/pepperi-addons-ngx-lib-signature.d.ts +0 -4
  1141. package/signature/pepperi-addons-ngx-lib-signature.metadata.json +0 -1
  1142. package/size-detector/package.json +0 -14
  1143. package/size-detector/pepperi-addons-ngx-lib-size-detector.d.ts +0 -4
  1144. package/size-detector/pepperi-addons-ngx-lib-size-detector.metadata.json +0 -1
  1145. package/slider/package.json +0 -11
  1146. package/slider/pepperi-addons-ngx-lib-slider.d.ts +0 -4
  1147. package/slider/pepperi-addons-ngx-lib-slider.metadata.json +0 -1
  1148. package/smart-filters/package.json +0 -20
  1149. package/smart-filters/pepperi-addons-ngx-lib-smart-filters.d.ts +0 -4
  1150. package/smart-filters/pepperi-addons-ngx-lib-smart-filters.metadata.json +0 -1
  1151. package/snack-bar/package.json +0 -15
  1152. package/snack-bar/pepperi-addons-ngx-lib-snack-bar.d.ts +0 -5
  1153. package/snack-bar/pepperi-addons-ngx-lib-snack-bar.metadata.json +0 -1
  1154. package/textarea/package.json +0 -14
  1155. package/textarea/pepperi-addons-ngx-lib-textarea.d.ts +0 -4
  1156. package/textarea/pepperi-addons-ngx-lib-textarea.metadata.json +0 -1
  1157. package/textbox/package.json +0 -14
  1158. package/textbox/pepperi-addons-ngx-lib-textbox.d.ts +0 -5
  1159. package/textbox/pepperi-addons-ngx-lib-textbox.metadata.json +0 -1
  1160. package/textbox-icon/package.json +0 -11
  1161. package/textbox-icon/pepperi-addons-ngx-lib-textbox-icon.d.ts +0 -4
  1162. package/textbox-icon/pepperi-addons-ngx-lib-textbox-icon.metadata.json +0 -1
  1163. package/top-bar/package.json +0 -11
  1164. package/top-bar/pepperi-addons-ngx-lib-top-bar.d.ts +0 -4
  1165. package/top-bar/pepperi-addons-ngx-lib-top-bar.metadata.json +0 -1
@@ -0,0 +1,271 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, TemplateRef, Component, ChangeDetectionStrategy, Input, Output, ViewChild, NgModule } from '@angular/core';
3
+ import * as i3 from '@angular/common';
4
+ import { CommonModule } from '@angular/common';
5
+ import * as i4 from '@angular/forms';
6
+ import { ReactiveFormsModule } from '@angular/forms';
7
+ import { MatCommonModule } from '@angular/material/core';
8
+ import * as i6 from '@angular/material/button';
9
+ import { MatButtonModule } from '@angular/material/button';
10
+ import * as i7 from '@angular/material/form-field';
11
+ import { MatFormFieldModule } from '@angular/material/form-field';
12
+ import * as i8 from '@angular/material/input';
13
+ import { MatInputModule } from '@angular/material/input';
14
+ import * as i9 from '@angular/material/icon';
15
+ import { MatIconModule } from '@angular/material/icon';
16
+ import { MatDialogModule } from '@angular/material/dialog';
17
+ import * as i2 from '@pepperi-addons/ngx-lib';
18
+ import { DEFAULT_HORIZONTAL_ALIGNMENT, PepTextareaField, PepCustomizationService, PepNgxLibModule } from '@pepperi-addons/ngx-lib';
19
+ import * as i1$1 from '@pepperi-addons/ngx-lib/icon';
20
+ import { pepIconSystemEdit, pepIconSystemClose, PepIconModule } from '@pepperi-addons/ngx-lib/icon';
21
+ import * as i12 from '@pepperi-addons/ngx-lib/textbox-icon';
22
+ import { PepTextboxIconModule } from '@pepperi-addons/ngx-lib/textbox-icon';
23
+ import * as i11 from '@pepperi-addons/ngx-lib/field-title';
24
+ import { PepFieldTitleModule } from '@pepperi-addons/ngx-lib/field-title';
25
+ import * as i1 from '@pepperi-addons/ngx-lib/dialog';
26
+ import { PepDialogModule } from '@pepperi-addons/ngx-lib/dialog';
27
+ import * as i5 from '@angular/cdk/bidi';
28
+ import * as i13 from '@ngx-translate/core';
29
+
30
+ class PepTextareaComponent {
31
+ constructor(dialogService, customizationService, renderer, element) {
32
+ this.dialogService = dialogService;
33
+ this.customizationService = customizationService;
34
+ this.renderer = renderer;
35
+ this.element = element;
36
+ this.key = '';
37
+ this.value = '';
38
+ this.label = '';
39
+ this.mandatory = false;
40
+ this.disabled = false;
41
+ this.readonly = false;
42
+ this.textColor = '';
43
+ this.xAlignment = DEFAULT_HORIZONTAL_ALIGNMENT;
44
+ this._rowSpan = 1;
45
+ this._visible = true;
46
+ // @Input() lastFocusField: any;
47
+ this.controlType = 'textarea';
48
+ this.form = null;
49
+ this.isActive = false;
50
+ this.showTitle = true;
51
+ this.renderTitle = true;
52
+ this._layoutType = 'form';
53
+ this.valueChange = new EventEmitter();
54
+ this.fieldHeight = '';
55
+ this.standAlone = false;
56
+ this.isInEditMode = false;
57
+ }
58
+ set rowSpan(value) {
59
+ this._rowSpan = value;
60
+ this.setFieldHeight();
61
+ }
62
+ get rowSpan() {
63
+ return this._rowSpan;
64
+ }
65
+ set visible(visible) {
66
+ this._visible = visible;
67
+ if (visible) {
68
+ this.renderer.removeClass(this.element.nativeElement, 'hidden-element');
69
+ }
70
+ else {
71
+ this.renderer.addClass(this.element.nativeElement, 'hidden-element');
72
+ }
73
+ }
74
+ get visible() {
75
+ return this._visible;
76
+ }
77
+ set layoutType(value) {
78
+ this._layoutType = value;
79
+ this.setFieldHeight();
80
+ }
81
+ get layoutType() {
82
+ return this._layoutType;
83
+ }
84
+ setFieldHeight() {
85
+ this.fieldHeight = this.customizationService.calculateFieldHeight(this.layoutType, this.rowSpan, this.standAlone);
86
+ }
87
+ setDefaultForm() {
88
+ const pepField = new PepTextareaField({
89
+ key: this.key,
90
+ value: this.value,
91
+ mandatory: this.mandatory,
92
+ readonly: this.readonly,
93
+ disabled: this.disabled,
94
+ maxFieldCharacters: this.maxFieldCharacters,
95
+ });
96
+ this.form = this.customizationService.getDefaultFromGroup(pepField);
97
+ }
98
+ ngOnInit() {
99
+ if (this.form === null) {
100
+ this.standAlone = true;
101
+ this.setFieldHeight();
102
+ this.setDefaultForm();
103
+ this.renderer.addClass(this.element.nativeElement, PepCustomizationService.STAND_ALONE_FIELD_CLASS_NAME);
104
+ if (!this.renderTitle) {
105
+ this.renderer.addClass(this.element.nativeElement, PepCustomizationService.STAND_ALONE_FIELD_NO_SPACING_CLASS_NAME);
106
+ }
107
+ }
108
+ }
109
+ ngOnChanges(changes) {
110
+ if (this.standAlone) {
111
+ this.setDefaultForm();
112
+ }
113
+ }
114
+ ngOnDestroy() {
115
+ //
116
+ }
117
+ onBlur(event) {
118
+ const value = event.target ? event.target.value : event;
119
+ this.changeValue(value);
120
+ setTimeout(() => {
121
+ if (this.isInEditMode) {
122
+ this.isInEditMode = false;
123
+ }
124
+ }, 0);
125
+ }
126
+ changeValue(value) {
127
+ if (value !== this.value) {
128
+ this.value = value;
129
+ this.customizationService.updateFormFieldValue(this.form, this.key, value);
130
+ this.valueChange.emit(value);
131
+ }
132
+ }
133
+ cardTemplateClicked(event) {
134
+ this.openDialog();
135
+ }
136
+ openDialog() {
137
+ const config = this.dialogService.getDialogConfig({
138
+ // maxWidth: '90vw',
139
+ // maxHeight: '90vh'
140
+ }, 'regular');
141
+ this.dialogRef = this.dialogService.openDialog(this.textAreaDialogTemplate, {}, config);
142
+ this.dialogRef.afterClosed().subscribe((value) => {
143
+ if (value !== undefined && value !== null) {
144
+ this.changeValue(value);
145
+ }
146
+ });
147
+ }
148
+ closeDialog(data = null) {
149
+ var _a;
150
+ (_a = this.dialogRef) === null || _a === void 0 ? void 0 : _a.close(data);
151
+ }
152
+ }
153
+ PepTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextareaComponent, deps: [{ token: i1.PepDialogService }, { token: i2.PepCustomizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
154
+ PepTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.1", type: PepTextareaComponent, selector: "pep-textarea", inputs: { key: "key", value: "value", label: "label", mandatory: "mandatory", disabled: "disabled", readonly: "readonly", maxFieldCharacters: "maxFieldCharacters", textColor: "textColor", xAlignment: "xAlignment", rowSpan: "rowSpan", visible: "visible", form: "form", isActive: "isActive", showTitle: "showTitle", renderTitle: "renderTitle", layoutType: "layoutType" }, outputs: { valueChange: "valueChange" }, viewQueries: [{ propertyName: "textAreaDialogTemplate", first: true, predicate: ["textAreaDialogTemplate"], descendants: true, read: TemplateRef }], usesOnChanges: true, ngImport: i0, template: "<ng-container [formGroup]=\"form\">\n <ng-template #pepTemplate let-isFormView=\"isFormView\">\n <div class=\"pep-textarea-container\" [ngClass]=\"{ 'stand-alone': standAlone,\n 'right-alignment': xAlignment == 'right', 'one-row': rowSpan === 1,\n 'pep-textarea-card-container': layoutType === 'card'}\">\n <pep-field-title *ngIf=\"renderTitle && isFormView\" [label]=\"label\" [mandatory]=\"mandatory\"\n [disabled]=\"disabled\" [maxFieldCharacters]=\"disabled || readonly ? 0 : maxFieldCharacters\"\n [xAlignment]=\"xAlignment\" [showTitle]=\"showTitle\" [inputLength]=\"input.value?.length\">\n </pep-field-title>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n [ngClass]=\"{ 'pep-table-textarea': layoutType === 'table' }\">\n <textarea #input [hidden]=\"readonly\" [id]=\"key\" class=\"body-sm\" matInput (blur)=\"onBlur($event)\"\n title=\"{{ value }}\" [value]=\"value\"\n maxlength=\"{{ maxFieldCharacters > 0 ? maxFieldCharacters : 99999 }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [formControlName]=\"key\" [style.height]=\"fieldHeight\">\n </textarea>\n <div *ngIf=\"readonly\" class=\"body-sm disable-text-div\" title=\"{{ value }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [innerHtml]=\"value | pepSafeHtml\" [style.height]=\"fieldHeight\">\n </div>\n <!-- <pep-textbox-icon *ngIf=\"xAlignment == 'right'\" matPrefix [value]=\"value\" [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon> -->\n <pep-textbox-icon matSuffix [value]=\"value\" [label]=\"label\" [type]=\"controlType\"\n [disabled]=\"disabled || readonly\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\"\n (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <mat-error>\n <span class=\"body-xs\"\n [title]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"\n [innerText]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"></span>\n </mat-error>\n </mat-form-field>\n </div>\n </ng-template>\n\n <ng-container *ngIf=\"layoutType === 'form'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: true }\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'card'\">\n <ng-container *ngIf=\"isInEditMode; then editBlock; else readOnlyBlock\"></ng-container>\n <ng-template #editBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #readOnlyBlock>\n <div class=\"pep-textarea-card-container card-flex-container\"\n [ngClass]=\"{'one-row': rowSpan === 1, 'pep-button weak': isActive && !disabled}\"\n [ngStyle]=\"{ color: textColor, '-webkit-line-clamp': rowSpan }\" [class]=\"'text-align-' + xAlignment\"\n (click)=\"!disabled ? cardTemplateClicked($event) : ''\" [style.height]=\"fieldHeight\">\n <span *ngIf=\" showTitle && label !=''\" class=\" body-xs title no-shrink\" title=\"{{ label }}\">{{ label\n }}&nbsp;</span>\n <span [id]=\"key\" title=\"{{ value }}\" class=\"body-sm value wrap\">{{ value }}</span>\n <button *ngIf=\"isActive && !disabled\" class=\"pep-button weak card-edit-button self-start\"\n [ngClass]=\"{'self-end' : value && value !== ''}\" mat-button>\n <mat-icon>\n <pep-icon name=\"system_edit\">\n </pep-icon>\n </mat-icon>\n </button>\n </div>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'table'\">\n <ng-container *ngIf=\"isActive && !disabled; then selectedBlock; else notSelectedBlock\"></ng-container>\n <ng-template #selectedBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #notSelectedBlock>\n <ng-container *ngIf=\"value?.length > 0; then notEmptyBlock; else emptyBlock\"></ng-container>\n <ng-template #notEmptyBlock>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n class=\"pep-report-textarea\" [ngClass]=\"{ readonly: disabled }\">\n <input matInput [id]=\"key\" class=\"body-sm pep-report-input\" [ngClass]=\"{ readonly: disabled}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'center' ? 'center' : xAlignment == 'right' ? 'right' : 'left' }\"\n title=\"{{ value }}\" [formControlName]=\"key\" type=\"text\" [value]=\"value\" [disabled]=\"true\" />\n <pep-textbox-icon *ngIf=\"disabled && xAlignment == 'right'\" matPrefix [value]=\"value\"\n [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <pep-textbox-icon *ngIf=\"disabled && (xAlignment == 'left')\" matSuffix [value]=\"value\"\n [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n </mat-form-field>\n </ng-template>\n <ng-template #emptyBlock>\n <span>&nbsp;</span>\n </ng-template>\n </ng-template>\n </ng-container>\n</ng-container>\n\n<ng-template #textAreaDialogTemplate>\n <pep-dialog class=\"dialog-textarea-container\" [title]=\"label\" (close)=\"closeDialog($event)\">\n <ng-container pep-dialog-content>\n <textarea #dialogTextarea [readonly]=\"disabled || readonly\">{{ value }}</textarea>\n </ng-container>\n <div pep-dialog-actions class=\"pep-spacing-element-negative\">\n <ng-container *ngIf=\"disabled || readonly; then notEditableBlock; else editableBlock\">\n </ng-container>\n <ng-template #editableBlock>\n <button mat-button (click)=\"closeDialog()\" class=\"pep-spacing-element pep-button md weak\">\n {{ 'ACTIONS.CANCEL' | translate }}\n </button>\n <button mat-button class=\"pep-spacing-element pep-button md strong\"\n (click)=\"closeDialog(dialogTextarea.value)\">\n {{ 'ACTIONS.SAVE' | translate }}\n </button>\n </ng-template>\n <ng-template #notEditableBlock>\n <button mat-button (click)=\"closeDialog()\" class=\"pep-spacing-element pep-button md weak\">\n {{ 'ACTIONS.CLOSE' | translate }}\n </button>\n </ng-template>\n </div>\n </pep-dialog>\n</ng-template>", styles: [".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding:0}:host{height:inherit;display:grid}:host>*{align-self:center}.disable-text-div{display:inline-block;vertical-align:middle;margin:0;padding:.5rem 1.5rem .5rem 0;overflow-y:hidden;white-space:pre-wrap}.right-alignment .disable-text-div{padding:.5rem 0 .5rem 1.5rem}.dialog-textarea-container textarea{border:none;resize:none;width:25rem;height:13rem}.dialog-textarea-container textarea:focus{outline:none}\n", ".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding:0}.pepperi-report-textarea ::ng-deep .mat-form-field-flex,.pep-report-textarea ::ng-deep .mat-form-field-flex{background:transparent!important}\n"], dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i4.MaxLengthValidator, selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", inputs: ["maxlength"] }, { kind: "directive", type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i5.Dir, selector: "[dir]", inputs: ["dir"], outputs: ["dirChange"], exportAs: ["dir"] }, { kind: "component", type: i6.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i7.MatError, selector: "mat-error", inputs: ["id"] }, { kind: "component", type: i7.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i7.MatPrefix, selector: "[matPrefix]" }, { kind: "directive", type: i7.MatSuffix, selector: "[matSuffix]" }, { kind: "directive", type: i8.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i9.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i1$1.PepIconComponent, selector: "pep-icon", inputs: ["spin", "name", "fill"] }, { kind: "component", type: i11.PepFieldTitleComponent, selector: "pep-field-title", inputs: ["label", "mandatory", "disabled", "maxFieldCharacters", "hint", "xAlignment", "showTitle", "inputLength"] }, { kind: "component", type: i12.PepTextboxIconComponent, selector: "pep-textbox-icon", inputs: ["value", "label", "type", "disabled"], outputs: ["iconClick"] }, { kind: "component", type: i1.PepDialogComponent, selector: "pep-dialog", inputs: ["title", "showClose", "showHeader", "showFooter"], outputs: ["close"] }, { kind: "pipe", type: i2.PepSafeHtmlPipe, name: "pepSafeHtml" }, { kind: "pipe", type: i13.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
155
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextareaComponent, decorators: [{
156
+ type: Component,
157
+ args: [{ selector: 'pep-textarea', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container [formGroup]=\"form\">\n <ng-template #pepTemplate let-isFormView=\"isFormView\">\n <div class=\"pep-textarea-container\" [ngClass]=\"{ 'stand-alone': standAlone,\n 'right-alignment': xAlignment == 'right', 'one-row': rowSpan === 1,\n 'pep-textarea-card-container': layoutType === 'card'}\">\n <pep-field-title *ngIf=\"renderTitle && isFormView\" [label]=\"label\" [mandatory]=\"mandatory\"\n [disabled]=\"disabled\" [maxFieldCharacters]=\"disabled || readonly ? 0 : maxFieldCharacters\"\n [xAlignment]=\"xAlignment\" [showTitle]=\"showTitle\" [inputLength]=\"input.value?.length\">\n </pep-field-title>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n [ngClass]=\"{ 'pep-table-textarea': layoutType === 'table' }\">\n <textarea #input [hidden]=\"readonly\" [id]=\"key\" class=\"body-sm\" matInput (blur)=\"onBlur($event)\"\n title=\"{{ value }}\" [value]=\"value\"\n maxlength=\"{{ maxFieldCharacters > 0 ? maxFieldCharacters : 99999 }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [formControlName]=\"key\" [style.height]=\"fieldHeight\">\n </textarea>\n <div *ngIf=\"readonly\" class=\"body-sm disable-text-div\" title=\"{{ value }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [innerHtml]=\"value | pepSafeHtml\" [style.height]=\"fieldHeight\">\n </div>\n <!-- <pep-textbox-icon *ngIf=\"xAlignment == 'right'\" matPrefix [value]=\"value\" [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon> -->\n <pep-textbox-icon matSuffix [value]=\"value\" [label]=\"label\" [type]=\"controlType\"\n [disabled]=\"disabled || readonly\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\"\n (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <mat-error>\n <span class=\"body-xs\"\n [title]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"\n [innerText]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"></span>\n </mat-error>\n </mat-form-field>\n </div>\n </ng-template>\n\n <ng-container *ngIf=\"layoutType === 'form'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: true }\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'card'\">\n <ng-container *ngIf=\"isInEditMode; then editBlock; else readOnlyBlock\"></ng-container>\n <ng-template #editBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #readOnlyBlock>\n <div class=\"pep-textarea-card-container card-flex-container\"\n [ngClass]=\"{'one-row': rowSpan === 1, 'pep-button weak': isActive && !disabled}\"\n [ngStyle]=\"{ color: textColor, '-webkit-line-clamp': rowSpan }\" [class]=\"'text-align-' + xAlignment\"\n (click)=\"!disabled ? cardTemplateClicked($event) : ''\" [style.height]=\"fieldHeight\">\n <span *ngIf=\" showTitle && label !=''\" class=\" body-xs title no-shrink\" title=\"{{ label }}\">{{ label\n }}&nbsp;</span>\n <span [id]=\"key\" title=\"{{ value }}\" class=\"body-sm value wrap\">{{ value }}</span>\n <button *ngIf=\"isActive && !disabled\" class=\"pep-button weak card-edit-button self-start\"\n [ngClass]=\"{'self-end' : value && value !== ''}\" mat-button>\n <mat-icon>\n <pep-icon name=\"system_edit\">\n </pep-icon>\n </mat-icon>\n </button>\n </div>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'table'\">\n <ng-container *ngIf=\"isActive && !disabled; then selectedBlock; else notSelectedBlock\"></ng-container>\n <ng-template #selectedBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #notSelectedBlock>\n <ng-container *ngIf=\"value?.length > 0; then notEmptyBlock; else emptyBlock\"></ng-container>\n <ng-template #notEmptyBlock>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n class=\"pep-report-textarea\" [ngClass]=\"{ readonly: disabled }\">\n <input matInput [id]=\"key\" class=\"body-sm pep-report-input\" [ngClass]=\"{ readonly: disabled}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'center' ? 'center' : xAlignment == 'right' ? 'right' : 'left' }\"\n title=\"{{ value }}\" [formControlName]=\"key\" type=\"text\" [value]=\"value\" [disabled]=\"true\" />\n <pep-textbox-icon *ngIf=\"disabled && xAlignment == 'right'\" matPrefix [value]=\"value\"\n [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <pep-textbox-icon *ngIf=\"disabled && (xAlignment == 'left')\" matSuffix [value]=\"value\"\n [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n </mat-form-field>\n </ng-template>\n <ng-template #emptyBlock>\n <span>&nbsp;</span>\n </ng-template>\n </ng-template>\n </ng-container>\n</ng-container>\n\n<ng-template #textAreaDialogTemplate>\n <pep-dialog class=\"dialog-textarea-container\" [title]=\"label\" (close)=\"closeDialog($event)\">\n <ng-container pep-dialog-content>\n <textarea #dialogTextarea [readonly]=\"disabled || readonly\">{{ value }}</textarea>\n </ng-container>\n <div pep-dialog-actions class=\"pep-spacing-element-negative\">\n <ng-container *ngIf=\"disabled || readonly; then notEditableBlock; else editableBlock\">\n </ng-container>\n <ng-template #editableBlock>\n <button mat-button (click)=\"closeDialog()\" class=\"pep-spacing-element pep-button md weak\">\n {{ 'ACTIONS.CANCEL' | translate }}\n </button>\n <button mat-button class=\"pep-spacing-element pep-button md strong\"\n (click)=\"closeDialog(dialogTextarea.value)\">\n {{ 'ACTIONS.SAVE' | translate }}\n </button>\n </ng-template>\n <ng-template #notEditableBlock>\n <button mat-button (click)=\"closeDialog()\" class=\"pep-spacing-element pep-button md weak\">\n {{ 'ACTIONS.CLOSE' | translate }}\n </button>\n </ng-template>\n </div>\n </pep-dialog>\n</ng-template>", styles: [".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding:0}:host{height:inherit;display:grid}:host>*{align-self:center}.disable-text-div{display:inline-block;vertical-align:middle;margin:0;padding:.5rem 1.5rem .5rem 0;overflow-y:hidden;white-space:pre-wrap}.right-alignment .disable-text-div{padding:.5rem 0 .5rem 1.5rem}.dialog-textarea-container textarea{border:none;resize:none;width:25rem;height:13rem}.dialog-textarea-container textarea:focus{outline:none}\n", ".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding:0}.pepperi-report-textarea ::ng-deep .mat-form-field-flex,.pep-report-textarea ::ng-deep .mat-form-field-flex{background:transparent!important}\n"] }]
158
+ }], ctorParameters: function () { return [{ type: i1.PepDialogService }, { type: i2.PepCustomizationService }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { key: [{
159
+ type: Input
160
+ }], value: [{
161
+ type: Input
162
+ }], label: [{
163
+ type: Input
164
+ }], mandatory: [{
165
+ type: Input
166
+ }], disabled: [{
167
+ type: Input
168
+ }], readonly: [{
169
+ type: Input
170
+ }], maxFieldCharacters: [{
171
+ type: Input
172
+ }], textColor: [{
173
+ type: Input
174
+ }], xAlignment: [{
175
+ type: Input
176
+ }], rowSpan: [{
177
+ type: Input
178
+ }], visible: [{
179
+ type: Input
180
+ }], form: [{
181
+ type: Input
182
+ }], isActive: [{
183
+ type: Input
184
+ }], showTitle: [{
185
+ type: Input
186
+ }], renderTitle: [{
187
+ type: Input
188
+ }], layoutType: [{
189
+ type: Input
190
+ }], valueChange: [{
191
+ type: Output
192
+ }], textAreaDialogTemplate: [{
193
+ type: ViewChild,
194
+ args: ['textAreaDialogTemplate', { read: TemplateRef }]
195
+ }] } });
196
+
197
+ class PepTextareaModule {
198
+ constructor(pepIconRegistry) {
199
+ this.pepIconRegistry = pepIconRegistry;
200
+ this.pepIconRegistry.registerIcons([
201
+ pepIconSystemEdit,
202
+ pepIconSystemClose,
203
+ ]);
204
+ }
205
+ }
206
+ PepTextareaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextareaModule, deps: [{ token: i1$1.PepIconRegistry }], target: i0.ɵɵFactoryTarget.NgModule });
207
+ PepTextareaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.1", ngImport: i0, type: PepTextareaModule, declarations: [PepTextareaComponent], imports: [CommonModule,
208
+ ReactiveFormsModule,
209
+ // Material modules,
210
+ MatCommonModule,
211
+ MatButtonModule,
212
+ MatFormFieldModule,
213
+ MatInputModule,
214
+ MatIconModule,
215
+ MatDialogModule,
216
+ // ngx-lib modules
217
+ PepNgxLibModule,
218
+ PepIconModule,
219
+ PepFieldTitleModule,
220
+ PepTextboxIconModule,
221
+ PepDialogModule], exports: [PepTextareaComponent] });
222
+ PepTextareaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextareaModule, imports: [CommonModule,
223
+ ReactiveFormsModule,
224
+ // Material modules,
225
+ MatCommonModule,
226
+ MatButtonModule,
227
+ MatFormFieldModule,
228
+ MatInputModule,
229
+ MatIconModule,
230
+ MatDialogModule,
231
+ // ngx-lib modules
232
+ PepNgxLibModule,
233
+ PepIconModule,
234
+ PepFieldTitleModule,
235
+ PepTextboxIconModule,
236
+ PepDialogModule] });
237
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextareaModule, decorators: [{
238
+ type: NgModule,
239
+ args: [{
240
+ imports: [
241
+ CommonModule,
242
+ ReactiveFormsModule,
243
+ // Material modules,
244
+ MatCommonModule,
245
+ MatButtonModule,
246
+ MatFormFieldModule,
247
+ MatInputModule,
248
+ MatIconModule,
249
+ MatDialogModule,
250
+ // ngx-lib modules
251
+ PepNgxLibModule,
252
+ PepIconModule,
253
+ PepFieldTitleModule,
254
+ PepTextboxIconModule,
255
+ PepDialogModule,
256
+ ],
257
+ exports: [PepTextareaComponent],
258
+ declarations: [PepTextareaComponent],
259
+ }]
260
+ }], ctorParameters: function () { return [{ type: i1$1.PepIconRegistry }]; } });
261
+
262
+ /*
263
+ * Public API Surface of ngx-lib/textarea
264
+ */
265
+
266
+ /**
267
+ * Generated bundle index. Do not edit.
268
+ */
269
+
270
+ export { PepTextareaComponent, PepTextareaModule };
271
+ //# sourceMappingURL=pepperi-addons-ngx-lib-textarea.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pepperi-addons-ngx-lib-textarea.mjs","sources":["../../../projects/ngx-lib/textarea/textarea.component.ts","../../../projects/ngx-lib/textarea/textarea.component.html","../../../projects/ngx-lib/textarea/textarea.module.ts","../../../projects/ngx-lib/textarea/public-api.ts","../../../projects/ngx-lib/textarea/pepperi-addons-ngx-lib-textarea.ts"],"sourcesContent":["import {\n Component,\n OnInit,\n OnChanges,\n Input,\n Output,\n EventEmitter,\n ChangeDetectionStrategy,\n ElementRef,\n ViewChild,\n OnDestroy,\n Renderer2,\n TemplateRef,\n} from '@angular/core';\nimport { FormGroup } from '@angular/forms';\nimport { MatDialogRef } from '@angular/material/dialog';\nimport {\n PepLayoutType,\n PepCustomizationService,\n PepHorizontalAlignment,\n DEFAULT_HORIZONTAL_ALIGNMENT,\n PepTextareaField,\n} from '@pepperi-addons/ngx-lib';\nimport { PepDialogService } from '@pepperi-addons/ngx-lib/dialog';\n\n@Component({\n selector: 'pep-textarea',\n templateUrl: './textarea.component.html',\n styleUrls: ['./textarea.component.scss', './textarea.component.theme.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class PepTextareaComponent implements OnChanges, OnInit, OnDestroy {\n @Input() key = '';\n @Input() value = '';\n @Input() label = '';\n @Input() mandatory = false;\n @Input() disabled = false;\n @Input() readonly = false;\n @Input() maxFieldCharacters: number;\n @Input() textColor = '';\n @Input() xAlignment: PepHorizontalAlignment = DEFAULT_HORIZONTAL_ALIGNMENT;\n\n private _rowSpan = 1;\n @Input()\n set rowSpan(value) {\n this._rowSpan = value;\n this.setFieldHeight();\n }\n get rowSpan(): number {\n return this._rowSpan;\n }\n\n private _visible = true;\n @Input()\n set visible(visible: boolean) {\n this._visible = visible;\n if (visible) {\n this.renderer.removeClass(\n this.element.nativeElement,\n 'hidden-element'\n );\n } else {\n this.renderer.addClass(\n this.element.nativeElement,\n 'hidden-element'\n );\n }\n }\n get visible(): boolean {\n return this._visible;\n }\n\n // @Input() lastFocusField: any;\n\n controlType = 'textarea';\n\n @Input() form: FormGroup = null;\n @Input() isActive = false;\n @Input() showTitle = true;\n @Input() renderTitle = true;\n\n private _layoutType: PepLayoutType = 'form';\n @Input()\n set layoutType(value: PepLayoutType) {\n this._layoutType = value;\n this.setFieldHeight();\n }\n get layoutType(): PepLayoutType {\n return this._layoutType;\n }\n\n @Output()\n valueChange: EventEmitter<string> = new EventEmitter<string>();\n\n // @ViewChild('input') input: ElementRef;\n @ViewChild('textAreaDialogTemplate', { read: TemplateRef })\n textAreaDialogTemplate: TemplateRef<any>;\n\n fieldHeight = '';\n standAlone = false;\n isInEditMode = false;\n\n dialogRef: MatDialogRef<any>;\n\n constructor(\n private dialogService: PepDialogService,\n private customizationService: PepCustomizationService,\n private renderer: Renderer2,\n private element: ElementRef\n ) { }\n\n private setFieldHeight(): void {\n this.fieldHeight = this.customizationService.calculateFieldHeight(\n this.layoutType,\n this.rowSpan,\n this.standAlone\n );\n }\n\n private setDefaultForm(): void {\n const pepField = new PepTextareaField({\n key: this.key,\n value: this.value,\n mandatory: this.mandatory,\n readonly: this.readonly,\n disabled: this.disabled,\n maxFieldCharacters: this.maxFieldCharacters,\n });\n this.form = this.customizationService.getDefaultFromGroup(pepField);\n }\n\n ngOnInit(): void {\n if (this.form === null) {\n this.standAlone = true;\n this.setFieldHeight();\n this.setDefaultForm();\n\n this.renderer.addClass(\n this.element.nativeElement,\n PepCustomizationService.STAND_ALONE_FIELD_CLASS_NAME\n );\n\n if (!this.renderTitle) {\n this.renderer.addClass(\n this.element.nativeElement,\n PepCustomizationService.STAND_ALONE_FIELD_NO_SPACING_CLASS_NAME\n );\n }\n }\n }\n\n ngOnChanges(changes: any): void {\n if (this.standAlone) {\n this.setDefaultForm();\n }\n }\n\n ngOnDestroy(): void {\n //\n }\n\n onBlur(event: any): void {\n const value = event.target ? event.target.value : event;\n this.changeValue(value);\n\n setTimeout(() => {\n if (this.isInEditMode) {\n this.isInEditMode = false;\n }\n }, 0);\n }\n\n changeValue(value: any): void {\n if (value !== this.value) {\n this.value = value;\n this.customizationService.updateFormFieldValue(\n this.form,\n this.key,\n value\n );\n this.valueChange.emit(value);\n }\n }\n\n cardTemplateClicked(event: any): void {\n this.openDialog();\n }\n\n openDialog(): void {\n const config = this.dialogService.getDialogConfig(\n {\n // maxWidth: '90vw',\n // maxHeight: '90vh'\n },\n 'regular'\n );\n\n this.dialogRef = this.dialogService.openDialog(\n this.textAreaDialogTemplate,\n {},\n config\n );\n\n this.dialogRef.afterClosed().subscribe((value) => {\n if (value !== undefined && value !== null) {\n this.changeValue(value);\n }\n });\n }\n\n closeDialog(data: any = null): void {\n this.dialogRef?.close(data);\n }\n}\n","<ng-container [formGroup]=\"form\">\n <ng-template #pepTemplate let-isFormView=\"isFormView\">\n <div class=\"pep-textarea-container\" [ngClass]=\"{ 'stand-alone': standAlone,\n 'right-alignment': xAlignment == 'right', 'one-row': rowSpan === 1,\n 'pep-textarea-card-container': layoutType === 'card'}\">\n <pep-field-title *ngIf=\"renderTitle && isFormView\" [label]=\"label\" [mandatory]=\"mandatory\"\n [disabled]=\"disabled\" [maxFieldCharacters]=\"disabled || readonly ? 0 : maxFieldCharacters\"\n [xAlignment]=\"xAlignment\" [showTitle]=\"showTitle\" [inputLength]=\"input.value?.length\">\n </pep-field-title>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n [ngClass]=\"{ 'pep-table-textarea': layoutType === 'table' }\">\n <textarea #input [hidden]=\"readonly\" [id]=\"key\" class=\"body-sm\" matInput (blur)=\"onBlur($event)\"\n title=\"{{ value }}\" [value]=\"value\"\n maxlength=\"{{ maxFieldCharacters > 0 ? maxFieldCharacters : 99999 }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [formControlName]=\"key\" [style.height]=\"fieldHeight\">\n </textarea>\n <div *ngIf=\"readonly\" class=\"body-sm disable-text-div\" title=\"{{ value }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [innerHtml]=\"value | pepSafeHtml\" [style.height]=\"fieldHeight\">\n </div>\n <!-- <pep-textbox-icon *ngIf=\"xAlignment == 'right'\" matPrefix [value]=\"value\" [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon> -->\n <pep-textbox-icon matSuffix [value]=\"value\" [label]=\"label\" [type]=\"controlType\"\n [disabled]=\"disabled || readonly\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\"\n (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <mat-error>\n <span class=\"body-xs\"\n [title]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"\n [innerText]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"></span>\n </mat-error>\n </mat-form-field>\n </div>\n </ng-template>\n\n <ng-container *ngIf=\"layoutType === 'form'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: true }\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'card'\">\n <ng-container *ngIf=\"isInEditMode; then editBlock; else readOnlyBlock\"></ng-container>\n <ng-template #editBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #readOnlyBlock>\n <div class=\"pep-textarea-card-container card-flex-container\"\n [ngClass]=\"{'one-row': rowSpan === 1, 'pep-button weak': isActive && !disabled}\"\n [ngStyle]=\"{ color: textColor, '-webkit-line-clamp': rowSpan }\" [class]=\"'text-align-' + xAlignment\"\n (click)=\"!disabled ? cardTemplateClicked($event) : ''\" [style.height]=\"fieldHeight\">\n <span *ngIf=\" showTitle && label !=''\" class=\" body-xs title no-shrink\" title=\"{{ label }}\">{{ label\n }}&nbsp;</span>\n <span [id]=\"key\" title=\"{{ value }}\" class=\"body-sm value wrap\">{{ value }}</span>\n <button *ngIf=\"isActive && !disabled\" class=\"pep-button weak card-edit-button self-start\"\n [ngClass]=\"{'self-end' : value && value !== ''}\" mat-button>\n <mat-icon>\n <pep-icon name=\"system_edit\">\n </pep-icon>\n </mat-icon>\n </button>\n </div>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'table'\">\n <ng-container *ngIf=\"isActive && !disabled; then selectedBlock; else notSelectedBlock\"></ng-container>\n <ng-template #selectedBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #notSelectedBlock>\n <ng-container *ngIf=\"value?.length > 0; then notEmptyBlock; else emptyBlock\"></ng-container>\n <ng-template #notEmptyBlock>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n class=\"pep-report-textarea\" [ngClass]=\"{ readonly: disabled }\">\n <input matInput [id]=\"key\" class=\"body-sm pep-report-input\" [ngClass]=\"{ readonly: disabled}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'center' ? 'center' : xAlignment == 'right' ? 'right' : 'left' }\"\n title=\"{{ value }}\" [formControlName]=\"key\" type=\"text\" [value]=\"value\" [disabled]=\"true\" />\n <pep-textbox-icon *ngIf=\"disabled && xAlignment == 'right'\" matPrefix [value]=\"value\"\n [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <pep-textbox-icon *ngIf=\"disabled && (xAlignment == 'left')\" matSuffix [value]=\"value\"\n [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n </mat-form-field>\n </ng-template>\n <ng-template #emptyBlock>\n <span>&nbsp;</span>\n </ng-template>\n </ng-template>\n </ng-container>\n</ng-container>\n\n<ng-template #textAreaDialogTemplate>\n <pep-dialog class=\"dialog-textarea-container\" [title]=\"label\" (close)=\"closeDialog($event)\">\n <ng-container pep-dialog-content>\n <textarea #dialogTextarea [readonly]=\"disabled || readonly\">{{ value }}</textarea>\n </ng-container>\n <div pep-dialog-actions class=\"pep-spacing-element-negative\">\n <ng-container *ngIf=\"disabled || readonly; then notEditableBlock; else editableBlock\">\n </ng-container>\n <ng-template #editableBlock>\n <button mat-button (click)=\"closeDialog()\" class=\"pep-spacing-element pep-button md weak\">\n {{ 'ACTIONS.CANCEL' | translate }}\n </button>\n <button mat-button class=\"pep-spacing-element pep-button md strong\"\n (click)=\"closeDialog(dialogTextarea.value)\">\n {{ 'ACTIONS.SAVE' | translate }}\n </button>\n </ng-template>\n <ng-template #notEditableBlock>\n <button mat-button (click)=\"closeDialog()\" class=\"pep-spacing-element pep-button md weak\">\n {{ 'ACTIONS.CLOSE' | translate }}\n </button>\n </ng-template>\n </div>\n </pep-dialog>\n</ng-template>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ReactiveFormsModule } from '@angular/forms';\n\nimport { MatCommonModule } from '@angular/material/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatDialogModule } from '@angular/material/dialog';\n\nimport { PepNgxLibModule } from '@pepperi-addons/ngx-lib';\nimport {\n PepIconModule,\n PepIconRegistry,\n pepIconSystemEdit,\n pepIconSystemClose,\n} from '@pepperi-addons/ngx-lib/icon';\nimport { PepTextboxIconModule } from '@pepperi-addons/ngx-lib/textbox-icon';\nimport { PepFieldTitleModule } from '@pepperi-addons/ngx-lib/field-title';\nimport { PepDialogModule } from '@pepperi-addons/ngx-lib/dialog';\n\nimport { PepTextareaComponent } from './textarea.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n // Material modules,\n MatCommonModule,\n MatButtonModule,\n MatFormFieldModule,\n MatInputModule,\n MatIconModule,\n MatDialogModule,\n // ngx-lib modules\n PepNgxLibModule,\n PepIconModule,\n PepFieldTitleModule,\n PepTextboxIconModule,\n PepDialogModule,\n ],\n exports: [PepTextareaComponent],\n declarations: [PepTextareaComponent],\n})\nexport class PepTextareaModule {\n constructor(private pepIconRegistry: PepIconRegistry) {\n this.pepIconRegistry.registerIcons([\n pepIconSystemEdit,\n pepIconSystemClose,\n ]);\n }\n}\n","/*\n * Public API Surface of ngx-lib/textarea\n */\nexport * from './textarea.module';\nexport * from './textarea.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i10","i1"],"mappings":"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"}
@@ -0,0 +1,118 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, Component, Input, Output, NgModule } from '@angular/core';
3
+ import * as i1 from '@angular/common';
4
+ import { CommonModule } from '@angular/common';
5
+ import { MatCommonModule } from '@angular/material/core';
6
+ import * as i2 from '@angular/material/button';
7
+ import { MatButtonModule } from '@angular/material/button';
8
+ import { MatFormFieldModule } from '@angular/material/form-field';
9
+ import * as i3 from '@angular/material/icon';
10
+ import { MatIconModule } from '@angular/material/icon';
11
+ import * as i1$1 from '@pepperi-addons/ngx-lib/icon';
12
+ import { pepIconNumberCoins, pepIconNumberPercent, pepIconNumberNumber, pepIconNumberDecimal, pepIconSystemPhone, pepIconSystemEmail, pepIconSystemLink, pepIconSystemFullScreen, pepIconSystemEdit, pepIconTimeDatetime, pepIconTimeCal, PepIconModule } from '@pepperi-addons/ngx-lib/icon';
13
+
14
+ class PepTextboxIconComponent {
15
+ constructor() {
16
+ this.test = true;
17
+ this.iconClick = new EventEmitter();
18
+ }
19
+ iconButtonClicked() {
20
+ const currentValue = this.value;
21
+ if (currentValue.toString().trim().length > 0) {
22
+ switch (this.type) {
23
+ case 'email':
24
+ window.open('mailto:' + currentValue, 'email');
25
+ break;
26
+ case 'phone':
27
+ window.open('tel:' + currentValue, 'tel');
28
+ break;
29
+ case 'link':
30
+ window.open(currentValue);
31
+ break;
32
+ default:
33
+ break;
34
+ }
35
+ }
36
+ this.iconClick.emit();
37
+ }
38
+ }
39
+ PepTextboxIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextboxIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
40
+ PepTextboxIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.1", type: PepTextboxIconComponent, selector: "pep-textbox-icon", inputs: { value: "value", label: "label", type: "type", disabled: "disabled" }, outputs: { iconClick: "iconClick" }, ngImport: i0, template: "<mat-icon *ngIf=\"type === 'currency'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_coins\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'percentage'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_percent\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'int'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_number\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'real'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_decimal\">\n </pep-icon>\n</mat-icon>\n<button *ngIf=\"type === 'phone'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_phone\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'email'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_email\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'link'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_link\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'textarea'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"system_full_screen\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'richhtmltextarea'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"{{ disabled ? 'system_full_screen' : 'system_edit'}}\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<button *ngIf=\"!disabled && type === 'datetime'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"time_datetime\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<button *ngIf=\"!disabled && type === 'date'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"time_cal\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<!-- <span class=\"pep-text-icon\" *ngIf=\"type === 'percentage'\">%</span> -->\n<!-- <mat-icon matSuffix>sentiment_very_satisfied</mat-icon> -->\n<!-- <mat-icon matPrefix>sentiment_very_satisfied</mat-icon> -->\n<!-- <mat-hint>Hint</mat-hint> -->", styles: [":host{display:flex}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i1$1.PepIconComponent, selector: "pep-icon", inputs: ["spin", "name", "fill"] }] });
41
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextboxIconComponent, decorators: [{
42
+ type: Component,
43
+ args: [{ selector: 'pep-textbox-icon', template: "<mat-icon *ngIf=\"type === 'currency'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_coins\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'percentage'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_percent\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'int'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_number\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'real'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_decimal\">\n </pep-icon>\n</mat-icon>\n<button *ngIf=\"type === 'phone'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_phone\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'email'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_email\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'link'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_link\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'textarea'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"system_full_screen\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'richhtmltextarea'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"{{ disabled ? 'system_full_screen' : 'system_edit'}}\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<button *ngIf=\"!disabled && type === 'datetime'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"time_datetime\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<button *ngIf=\"!disabled && type === 'date'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"time_cal\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<!-- <span class=\"pep-text-icon\" *ngIf=\"type === 'percentage'\">%</span> -->\n<!-- <mat-icon matSuffix>sentiment_very_satisfied</mat-icon> -->\n<!-- <mat-icon matPrefix>sentiment_very_satisfied</mat-icon> -->\n<!-- <mat-hint>Hint</mat-hint> -->", styles: [":host{display:flex}\n"] }]
44
+ }], propDecorators: { value: [{
45
+ type: Input
46
+ }], label: [{
47
+ type: Input
48
+ }], type: [{
49
+ type: Input
50
+ }], disabled: [{
51
+ type: Input
52
+ }], iconClick: [{
53
+ type: Output
54
+ }] } });
55
+
56
+ class PepTextboxIconModule {
57
+ constructor(pepIconRegistry) {
58
+ this.pepIconRegistry = pepIconRegistry;
59
+ this.pepIconRegistry.registerIcons([
60
+ pepIconNumberCoins,
61
+ pepIconNumberPercent,
62
+ pepIconNumberNumber,
63
+ pepIconNumberDecimal,
64
+ pepIconSystemPhone,
65
+ pepIconSystemEmail,
66
+ pepIconSystemLink,
67
+ pepIconSystemFullScreen,
68
+ pepIconSystemEdit,
69
+ pepIconTimeDatetime,
70
+ pepIconTimeCal,
71
+ ]);
72
+ }
73
+ }
74
+ PepTextboxIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextboxIconModule, deps: [{ token: i1$1.PepIconRegistry }], target: i0.ɵɵFactoryTarget.NgModule });
75
+ PepTextboxIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.1", ngImport: i0, type: PepTextboxIconModule, declarations: [PepTextboxIconComponent], imports: [CommonModule,
76
+ // Material modules,
77
+ MatCommonModule,
78
+ MatButtonModule,
79
+ MatFormFieldModule,
80
+ MatIconModule,
81
+ // ngx-lib modules
82
+ PepIconModule], exports: [PepTextboxIconComponent] });
83
+ PepTextboxIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextboxIconModule, imports: [CommonModule,
84
+ // Material modules,
85
+ MatCommonModule,
86
+ MatButtonModule,
87
+ MatFormFieldModule,
88
+ MatIconModule,
89
+ // ngx-lib modules
90
+ PepIconModule] });
91
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextboxIconModule, decorators: [{
92
+ type: NgModule,
93
+ args: [{
94
+ imports: [
95
+ CommonModule,
96
+ // Material modules,
97
+ MatCommonModule,
98
+ MatButtonModule,
99
+ MatFormFieldModule,
100
+ MatIconModule,
101
+ // ngx-lib modules
102
+ PepIconModule,
103
+ ],
104
+ exports: [PepTextboxIconComponent],
105
+ declarations: [PepTextboxIconComponent],
106
+ }]
107
+ }], ctorParameters: function () { return [{ type: i1$1.PepIconRegistry }]; } });
108
+
109
+ /*
110
+ * Public API Surface of ngx-lib/textbox-icon
111
+ */
112
+
113
+ /**
114
+ * Generated bundle index. Do not edit.
115
+ */
116
+
117
+ export { PepTextboxIconComponent, PepTextboxIconModule };
118
+ //# sourceMappingURL=pepperi-addons-ngx-lib-textbox-icon.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pepperi-addons-ngx-lib-textbox-icon.mjs","sources":["../../../projects/ngx-lib/textbox-icon/textbox-icon.component.ts","../../../projects/ngx-lib/textbox-icon/textbox-icon.component.html","../../../projects/ngx-lib/textbox-icon/textbox-icon.module.ts","../../../projects/ngx-lib/textbox-icon/public-api.ts","../../../projects/ngx-lib/textbox-icon/pepperi-addons-ngx-lib-textbox-icon.ts"],"sourcesContent":["import { Component, Input, Output, EventEmitter } from '@angular/core';\n\n@Component({\n selector: 'pep-textbox-icon',\n templateUrl: './textbox-icon.component.html',\n styleUrls: ['./textbox-icon.component.scss'],\n})\nexport class PepTextboxIconComponent {\n @Input() value: string;\n @Input() label: string;\n @Input() type?: string;\n @Input() disabled: boolean;\n\n test = true;\n @Output() iconClick: EventEmitter<void> = new EventEmitter<void>();\n\n iconButtonClicked(): void {\n const currentValue = this.value;\n if (currentValue.toString().trim().length > 0) {\n switch (this.type) {\n case 'email':\n window.open('mailto:' + currentValue, 'email');\n break;\n case 'phone':\n window.open('tel:' + currentValue, 'tel');\n break;\n case 'link':\n window.open(currentValue);\n break;\n default:\n break;\n }\n }\n\n this.iconClick.emit();\n }\n}\n","<mat-icon *ngIf=\"type === 'currency'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_coins\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'percentage'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_percent\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'int'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_number\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'real'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_decimal\">\n </pep-icon>\n</mat-icon>\n<button *ngIf=\"type === 'phone'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_phone\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'email'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_email\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'link'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_link\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'textarea'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"system_full_screen\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'richhtmltextarea'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"{{ disabled ? 'system_full_screen' : 'system_edit'}}\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<button *ngIf=\"!disabled && type === 'datetime'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"time_datetime\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<button *ngIf=\"!disabled && type === 'date'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"time_cal\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<!-- <span class=\"pep-text-icon\" *ngIf=\"type === 'percentage'\">%</span> -->\n<!-- <mat-icon matSuffix>sentiment_very_satisfied</mat-icon> -->\n<!-- <mat-icon matPrefix>sentiment_very_satisfied</mat-icon> -->\n<!-- <mat-hint>Hint</mat-hint> -->","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { MatCommonModule } from '@angular/material/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatIconModule } from '@angular/material/icon';\n\n// import { PepNgxLibModule } from '@pepperi-addons/ngx-lib';\nimport {\n PepIconModule,\n PepIconRegistry,\n pepIconNumberCoins,\n pepIconNumberPercent,\n pepIconNumberNumber,\n pepIconNumberDecimal,\n pepIconSystemPhone,\n pepIconSystemEmail,\n pepIconSystemLink,\n pepIconSystemFullScreen,\n pepIconSystemEdit,\n pepIconTimeDatetime,\n pepIconTimeCal,\n} from '@pepperi-addons/ngx-lib/icon';\n\nimport { PepTextboxIconComponent } from './textbox-icon.component';\n\n@NgModule({\n imports: [\n CommonModule,\n // Material modules,\n MatCommonModule,\n MatButtonModule,\n MatFormFieldModule,\n MatIconModule,\n // ngx-lib modules\n PepIconModule,\n ],\n exports: [PepTextboxIconComponent],\n declarations: [PepTextboxIconComponent],\n})\nexport class PepTextboxIconModule {\n constructor(private pepIconRegistry: PepIconRegistry) {\n this.pepIconRegistry.registerIcons([\n pepIconNumberCoins,\n pepIconNumberPercent,\n pepIconNumberNumber,\n pepIconNumberDecimal,\n pepIconSystemPhone,\n pepIconSystemEmail,\n pepIconSystemLink,\n pepIconSystemFullScreen,\n pepIconSystemEdit,\n pepIconTimeDatetime,\n pepIconTimeCal,\n ]);\n }\n}\n","/*\n * Public API Surface of ngx-lib/textbox-icon\n */\nexport * from './textbox-icon.module';\nexport * from './textbox-icon.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i4","i1"],"mappings":";;;;;;;;;;;;;MAOa,uBAAuB,CAAA;AALpC,IAAA,WAAA,GAAA;AAWI,QAAA,IAAI,CAAA,IAAA,GAAG,IAAI,CAAC;AACF,QAAA,IAAA,CAAA,SAAS,GAAuB,IAAI,YAAY,EAAQ,CAAC;KAsBtE;IApBG,iBAAiB,GAAA;AACb,QAAA,MAAM,YAAY,GAAG,IAAI,CAAC,KAAK,CAAC;QAChC,IAAI,YAAY,CAAC,QAAQ,EAAE,CAAC,IAAI,EAAE,CAAC,MAAM,GAAG,CAAC,EAAE;YAC3C,QAAQ,IAAI,CAAC,IAAI;AACb,gBAAA,KAAK,OAAO;oBACR,MAAM,CAAC,IAAI,CAAC,SAAS,GAAG,YAAY,EAAE,OAAO,CAAC,CAAC;oBAC/C,MAAM;AACV,gBAAA,KAAK,OAAO;oBACR,MAAM,CAAC,IAAI,CAAC,MAAM,GAAG,YAAY,EAAE,KAAK,CAAC,CAAC;oBAC1C,MAAM;AACV,gBAAA,KAAK,MAAM;AACP,oBAAA,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;oBAC1B,MAAM;AACV,gBAAA;oBACI,MAAM;AACb,aAAA;AACJ,SAAA;AAED,QAAA,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,CAAC;KACzB;;oHA5BQ,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAvB,uBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,uBAAuB,6KCPpC,umFAmEkC,EAAA,MAAA,EAAA,CAAA,uBAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,IAAA,EAAA,QAAA,EAAA,QAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,4LAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,eAAA,EAAA,OAAA,CAAA,EAAA,QAAA,EAAA,CAAA,WAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,SAAA,EAAA,SAAA,EAAA,UAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,MAAA,EAAA,MAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;2FD5DrB,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBALnC,SAAS;+BACI,kBAAkB,EAAA,QAAA,EAAA,umFAAA,EAAA,MAAA,EAAA,CAAA,uBAAA,CAAA,EAAA,CAAA;8BAKnB,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBAGI,SAAS,EAAA,CAAA;sBAAlB,MAAM;;;ME2BE,oBAAoB,CAAA;AAC7B,IAAA,WAAA,CAAoB,eAAgC,EAAA;AAAhC,QAAA,IAAe,CAAA,eAAA,GAAf,eAAe,CAAiB;AAChD,QAAA,IAAI,CAAC,eAAe,CAAC,aAAa,CAAC;YAC/B,kBAAkB;YAClB,oBAAoB;YACpB,mBAAmB;YACnB,oBAAoB;YACpB,kBAAkB;YAClB,kBAAkB;YAClB,iBAAiB;YACjB,uBAAuB;YACvB,iBAAiB;YACjB,mBAAmB;YACnB,cAAc;AACjB,SAAA,CAAC,CAAC;KACN;;iHAfQ,oBAAoB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAAC,IAAA,CAAA,eAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;kHAApB,oBAAoB,EAAA,YAAA,EAAA,CAFd,uBAAuB,CAAA,EAAA,OAAA,EAAA,CAVlC,YAAY;;QAEZ,eAAe;QACf,eAAe;QACf,kBAAkB;QAClB,aAAa;;QAEb,aAAa,aAEP,uBAAuB,CAAA,EAAA,CAAA,CAAA;AAGxB,oBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,oBAAoB,YAZzB,YAAY;;QAEZ,eAAe;QACf,eAAe;QACf,kBAAkB;QAClB,aAAa;;QAEb,aAAa,CAAA,EAAA,CAAA,CAAA;2FAKR,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAdhC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACN,oBAAA,OAAO,EAAE;wBACL,YAAY;;wBAEZ,eAAe;wBACf,eAAe;wBACf,kBAAkB;wBAClB,aAAa;;wBAEb,aAAa;AAChB,qBAAA;oBACD,OAAO,EAAE,CAAC,uBAAuB,CAAC;oBAClC,YAAY,EAAE,CAAC,uBAAuB,CAAC;iBAC1C,CAAA;;;ACxCD;;AAEG;;ACFH;;AAEG;;;;"}