monkey-front-components 0.0.381 → 0.0.384

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 (276) hide show
  1. package/karma.conf.js +44 -0
  2. package/monkey-front-components-0.0.384.tgz +0 -0
  3. package/ng-package.json +10 -0
  4. package/package.json +7 -27
  5. package/src/lib/components/base/base-component.ts +359 -0
  6. package/src/lib/components/base/base-dynamic-array.ts +233 -0
  7. package/src/lib/components/base/base-dynamic.ts +90 -0
  8. package/src/lib/components/base/base-scroll-component.ts +52 -0
  9. package/src/lib/components/base/base-validators.ts +19 -0
  10. package/{lib/components/base/index.d.ts → src/lib/components/base/index.ts} +5 -5
  11. package/src/lib/components/dynamic/button/button.component.html +4 -0
  12. package/src/lib/components/dynamic/button/button.component.scss +7 -0
  13. package/src/lib/components/dynamic/button/button.component.ts +47 -0
  14. package/{lib/components/dynamic/button/index.d.ts → src/lib/components/dynamic/button/index.ts} +1 -1
  15. package/src/lib/components/dynamic/dynamic-directive.ts +102 -0
  16. package/src/lib/components/dynamic/dynamic.module.ts +53 -0
  17. package/src/lib/components/dynamic/file-upload/file-upload.component.html +10 -0
  18. package/src/lib/components/dynamic/file-upload/file-upload.component.ts +46 -0
  19. package/{lib/components/dynamic/file-upload/index.d.ts → src/lib/components/dynamic/file-upload/index.ts} +1 -1
  20. package/src/lib/components/dynamic/form/dynamic-form-array.component.html +19 -0
  21. package/src/lib/components/dynamic/form/dynamic-form-array.component.scss +10 -0
  22. package/src/lib/components/dynamic/form/dynamic-form-array.component.ts +75 -0
  23. package/src/lib/components/dynamic/form/dynamic-form.component.html +7 -0
  24. package/src/lib/components/dynamic/form/dynamic-form.component.ts +49 -0
  25. package/{lib/components/dynamic/form/index.d.ts → src/lib/components/dynamic/form/index.ts} +2 -2
  26. package/{lib/components/dynamic/index.d.ts → src/lib/components/dynamic/index.ts} +8 -8
  27. package/{lib/components/dynamic/input/index.d.ts → src/lib/components/dynamic/input/index.ts} +1 -1
  28. package/src/lib/components/dynamic/input/input.component.html +9 -0
  29. package/src/lib/components/dynamic/input/input.component.ts +58 -0
  30. package/{lib/components/dynamic/input-phone/index.d.ts → src/lib/components/dynamic/input-phone/index.ts} +1 -1
  31. package/src/lib/components/dynamic/input-phone/input-phone.component.html +7 -0
  32. package/src/lib/components/dynamic/input-phone/input-phone.component.ts +58 -0
  33. package/{lib/components/dynamic/radio/index.d.ts → src/lib/components/dynamic/radio/index.ts} +1 -1
  34. package/src/lib/components/dynamic/radio/radio.component.html +8 -0
  35. package/src/lib/components/dynamic/radio/radio.component.ts +22 -0
  36. package/{lib/components/dynamic/select/index.d.ts → src/lib/components/dynamic/select/index.ts} +1 -1
  37. package/src/lib/components/dynamic/select/select.component.html +14 -0
  38. package/src/lib/components/dynamic/select/select.component.ts +75 -0
  39. package/{lib/components/dynamic/select-search/index.d.ts → src/lib/components/dynamic/select-search/index.ts} +1 -1
  40. package/src/lib/components/dynamic/select-search/select-search.component.html +15 -0
  41. package/src/lib/components/dynamic/select-search/select-search.component.ts +76 -0
  42. package/{lib/components/index.d.ts → src/lib/components/index.ts} +3 -3
  43. package/src/lib/components/shared/filter/filter.component.html +51 -0
  44. package/src/lib/components/shared/filter/filter.component.scss +79 -0
  45. package/src/lib/components/shared/filter/filter.component.ts +117 -0
  46. package/src/lib/components/shared/filter/filter.module.ts +36 -0
  47. package/{lib/components/shared/filter/index.d.ts → src/lib/components/shared/filter/index.ts} +2 -2
  48. package/{lib/components/shared/filter/menu/index.d.ts → src/lib/components/shared/filter/menu/index.ts} +1 -1
  49. package/src/lib/components/shared/filter/menu/menu.component.html +28 -0
  50. package/src/lib/components/shared/filter/menu/menu.component.scss +62 -0
  51. package/src/lib/components/shared/filter/menu/menu.component.ts +122 -0
  52. package/src/lib/components/shared/filter/menu/menu.module.ts +41 -0
  53. package/src/lib/components/shared/filter/options/children/children.component.html +6 -0
  54. package/src/lib/components/shared/filter/options/children/children.component.scss +30 -0
  55. package/src/lib/components/shared/filter/options/children/children.component.ts +58 -0
  56. package/{lib/components/shared/filter/options/children/index.d.ts → src/lib/components/shared/filter/options/children/index.ts} +1 -1
  57. package/src/lib/components/shared/filter/options/currency/currency.component.html +3 -0
  58. package/src/lib/components/shared/filter/options/currency/currency.component.scss +19 -0
  59. package/src/lib/components/shared/filter/options/currency/currency.component.ts +52 -0
  60. package/{lib/components/shared/filter/options/currency/index.d.ts → src/lib/components/shared/filter/options/currency/index.ts} +1 -1
  61. package/src/lib/components/shared/filter/options/date-range/date-range.component.html +3 -0
  62. package/src/lib/components/shared/filter/options/date-range/date-range.component.scss +34 -0
  63. package/src/lib/components/shared/filter/options/date-range/date-range.component.ts +72 -0
  64. package/{lib/components/shared/filter/options/date-range/index.d.ts → src/lib/components/shared/filter/options/date-range/index.ts} +1 -1
  65. package/{lib/components/shared/filter/options/index.d.ts → src/lib/components/shared/filter/options/index.ts} +1 -1
  66. package/{lib/components/shared/filter/options/input/index.d.ts → src/lib/components/shared/filter/options/input/index.ts} +1 -1
  67. package/src/lib/components/shared/filter/options/input/input.component.html +3 -0
  68. package/src/lib/components/shared/filter/options/input/input.component.scss +19 -0
  69. package/src/lib/components/shared/filter/options/input/input.component.ts +52 -0
  70. package/src/lib/components/shared/filter/options/options.component.html +43 -0
  71. package/src/lib/components/shared/filter/options/options.component.scss +56 -0
  72. package/src/lib/components/shared/filter/options/options.component.ts +58 -0
  73. package/src/lib/components/shared/filter/options/options.module.ts +58 -0
  74. package/{lib/components/shared/filter/options/status/index.d.ts → src/lib/components/shared/filter/options/status/index.ts} +1 -1
  75. package/src/lib/components/shared/filter/options/status/status.component.html +4 -0
  76. package/src/lib/components/shared/filter/options/status/status.component.scss +29 -0
  77. package/src/lib/components/shared/filter/options/status/status.component.ts +73 -0
  78. package/{lib/components/shared/filter/selected/index.d.ts → src/lib/components/shared/filter/selected/index.ts} +1 -1
  79. package/src/lib/components/shared/filter/selected/item/children/children.component.html +19 -0
  80. package/src/lib/components/shared/filter/selected/item/children/children.component.scss +68 -0
  81. package/src/lib/components/shared/filter/selected/item/children/children.component.ts +49 -0
  82. package/{lib/components/shared/filter/selected/item/children/index.d.ts → src/lib/components/shared/filter/selected/item/children/index.ts} +1 -1
  83. package/src/lib/components/shared/filter/selected/item/currency/currency.component.html +1 -0
  84. package/src/lib/components/shared/filter/selected/item/currency/currency.component.scss +4 -0
  85. package/src/lib/components/shared/filter/selected/item/currency/currency.component.ts +26 -0
  86. package/{lib/components/shared/filter/selected/item/currency/index.d.ts → src/lib/components/shared/filter/selected/item/currency/index.ts} +1 -1
  87. package/src/lib/components/shared/filter/selected/item/date-range/date-range.component.html +2 -0
  88. package/src/lib/components/shared/filter/selected/item/date-range/date-range.component.scss +4 -0
  89. package/src/lib/components/shared/filter/selected/item/date-range/date-range.component.ts +39 -0
  90. package/{lib/components/shared/filter/selected/item/date-range/index.d.ts → src/lib/components/shared/filter/selected/item/date-range/index.ts} +1 -1
  91. package/src/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.html +1 -0
  92. package/src/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.scss +4 -0
  93. package/src/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.ts +29 -0
  94. package/{lib/components/shared/filter/selected/item/date-with-action/index.d.ts → src/lib/components/shared/filter/selected/item/date-with-action/index.ts} +1 -1
  95. package/{lib/components/shared/filter/selected/item/index.d.ts → src/lib/components/shared/filter/selected/item/index.ts} +7 -7
  96. package/{lib/components/shared/filter/selected/item/input/index.d.ts → src/lib/components/shared/filter/selected/item/input/index.ts} +1 -1
  97. package/src/lib/components/shared/filter/selected/item/input/input.component.html +1 -0
  98. package/src/lib/components/shared/filter/selected/item/input/input.component.scss +4 -0
  99. package/src/lib/components/shared/filter/selected/item/input/input.component.ts +26 -0
  100. package/src/lib/components/shared/filter/selected/item/item.component.html +38 -0
  101. package/src/lib/components/shared/filter/selected/item/item.component.scss +72 -0
  102. package/src/lib/components/shared/filter/selected/item/item.component.ts +71 -0
  103. package/{lib/components/shared/filter/selected/item/status/index.d.ts → src/lib/components/shared/filter/selected/item/status/index.ts} +1 -1
  104. package/src/lib/components/shared/filter/selected/item/status/status.component.html +1 -0
  105. package/src/lib/components/shared/filter/selected/item/status/status.component.scss +4 -0
  106. package/src/lib/components/shared/filter/selected/item/status/status.component.ts +36 -0
  107. package/src/lib/components/shared/filter/selected/selected.component.html +3 -0
  108. package/src/lib/components/shared/filter/selected/selected.component.scss +9 -0
  109. package/src/lib/components/shared/filter/selected/selected.component.ts +76 -0
  110. package/src/lib/components/shared/filter/selected/selected.module.ts +60 -0
  111. package/{lib/components/shared/index.d.ts → src/lib/components/shared/index.ts} +4 -4
  112. package/{lib/components/shared/password-strength/index.d.ts → src/lib/components/shared/password-strength/index.ts} +2 -2
  113. package/src/lib/components/shared/password-strength/password-strength.component.html +50 -0
  114. package/src/lib/components/shared/password-strength/password-strength.component.scss +70 -0
  115. package/src/lib/components/shared/password-strength/password-strength.component.ts +89 -0
  116. package/src/lib/components/shared/password-strength/password-strength.module.ts +24 -0
  117. package/src/lib/components/shared/password-strength/password-strength.ts +5 -0
  118. package/src/lib/components/shared/products/filter/filter.component.html +6 -0
  119. package/src/lib/components/shared/products/filter/filter.component.scss +20 -0
  120. package/src/lib/components/shared/products/filter/filter.component.ts +34 -0
  121. package/{lib/components/shared/products/index.d.ts → src/lib/components/shared/products/index.ts} +2 -2
  122. package/src/lib/components/shared/products/products.component.html +15 -0
  123. package/src/lib/components/shared/products/products.component.scss +70 -0
  124. package/src/lib/components/shared/products/products.component.ts +104 -0
  125. package/src/lib/components/shared/products/products.module.ts +13 -0
  126. package/{lib/components/shared/products/providers/index.d.ts → src/lib/components/shared/products/providers/index.ts} +1 -1
  127. package/src/lib/components/shared/products/providers/products.model.ts +60 -0
  128. package/{lib/components/shared/progress-bar/index.d.ts → src/lib/components/shared/progress-bar/index.ts} +3 -3
  129. package/src/lib/components/shared/progress-bar/progress-bar.component.html +3 -0
  130. package/src/lib/components/shared/progress-bar/progress-bar.component.scss +6 -0
  131. package/src/lib/components/shared/progress-bar/progress-bar.component.ts +27 -0
  132. package/src/lib/components/shared/progress-bar/progress-bar.module.ts +10 -0
  133. package/src/lib/components/shared/progress-bar/progress-bar.service.ts +59 -0
  134. package/src/lib/interfaces/field-config.ts +58 -0
  135. package/{lib/interfaces/index.d.ts → src/lib/interfaces/index.ts} +1 -1
  136. package/src/public-api.ts +5 -0
  137. package/src/test.ts +26 -0
  138. package/tsconfig.lib.json +20 -0
  139. package/tsconfig.lib.prod.json +10 -0
  140. package/tsconfig.spec.json +17 -0
  141. package/esm2020/lib/components/base/base-component.mjs +0 -322
  142. package/esm2020/lib/components/base/base-dynamic-array.mjs +0 -221
  143. package/esm2020/lib/components/base/base-dynamic.mjs +0 -99
  144. package/esm2020/lib/components/base/base-scroll-component.mjs +0 -55
  145. package/esm2020/lib/components/base/base-validators.mjs +0 -19
  146. package/esm2020/lib/components/base/index.mjs +0 -6
  147. package/esm2020/lib/components/dynamic/button/button.component.mjs +0 -52
  148. package/esm2020/lib/components/dynamic/button/index.mjs +0 -2
  149. package/esm2020/lib/components/dynamic/dynamic-directive.mjs +0 -95
  150. package/esm2020/lib/components/dynamic/dynamic.module.mjs +0 -84
  151. package/esm2020/lib/components/dynamic/file-upload/file-upload.component.mjs +0 -52
  152. package/esm2020/lib/components/dynamic/file-upload/index.mjs +0 -2
  153. package/esm2020/lib/components/dynamic/form/dynamic-form-array.component.mjs +0 -72
  154. package/esm2020/lib/components/dynamic/form/dynamic-form.component.mjs +0 -46
  155. package/esm2020/lib/components/dynamic/form/index.mjs +0 -3
  156. package/esm2020/lib/components/dynamic/index.mjs +0 -9
  157. package/esm2020/lib/components/dynamic/input/index.mjs +0 -2
  158. package/esm2020/lib/components/dynamic/input/input.component.mjs +0 -65
  159. package/esm2020/lib/components/dynamic/input-phone/index.mjs +0 -2
  160. package/esm2020/lib/components/dynamic/input-phone/input-phone.component.mjs +0 -65
  161. package/esm2020/lib/components/dynamic/radio/index.mjs +0 -2
  162. package/esm2020/lib/components/dynamic/radio/radio.component.mjs +0 -33
  163. package/esm2020/lib/components/dynamic/select/index.mjs +0 -2
  164. package/esm2020/lib/components/dynamic/select/select.component.mjs +0 -80
  165. package/esm2020/lib/components/dynamic/select-search/index.mjs +0 -2
  166. package/esm2020/lib/components/dynamic/select-search/select-search.component.mjs +0 -80
  167. package/esm2020/lib/components/index.mjs +0 -4
  168. package/esm2020/lib/components/shared/filter/filter.component.mjs +0 -119
  169. package/esm2020/lib/components/shared/filter/filter.module.mjs +0 -63
  170. package/esm2020/lib/components/shared/filter/index.mjs +0 -3
  171. package/esm2020/lib/components/shared/filter/menu/index.mjs +0 -2
  172. package/esm2020/lib/components/shared/filter/menu/menu.component.mjs +0 -120
  173. package/esm2020/lib/components/shared/filter/menu/menu.module.mjs +0 -70
  174. package/esm2020/lib/components/shared/filter/options/children/children.component.mjs +0 -50
  175. package/esm2020/lib/components/shared/filter/options/children/index.mjs +0 -2
  176. package/esm2020/lib/components/shared/filter/options/currency/currency.component.mjs +0 -46
  177. package/esm2020/lib/components/shared/filter/options/currency/index.mjs +0 -2
  178. package/esm2020/lib/components/shared/filter/options/date-range/date-range.component.mjs +0 -65
  179. package/esm2020/lib/components/shared/filter/options/date-range/index.mjs +0 -2
  180. package/esm2020/lib/components/shared/filter/options/index.mjs +0 -2
  181. package/esm2020/lib/components/shared/filter/options/input/index.mjs +0 -2
  182. package/esm2020/lib/components/shared/filter/options/input/input.component.mjs +0 -46
  183. package/esm2020/lib/components/shared/filter/options/options.component.mjs +0 -68
  184. package/esm2020/lib/components/shared/filter/options/options.module.mjs +0 -95
  185. package/esm2020/lib/components/shared/filter/options/status/index.mjs +0 -2
  186. package/esm2020/lib/components/shared/filter/options/status/status.component.mjs +0 -66
  187. package/esm2020/lib/components/shared/filter/selected/index.mjs +0 -2
  188. package/esm2020/lib/components/shared/filter/selected/item/children/children.component.mjs +0 -57
  189. package/esm2020/lib/components/shared/filter/selected/item/children/index.mjs +0 -2
  190. package/esm2020/lib/components/shared/filter/selected/item/currency/currency.component.mjs +0 -29
  191. package/esm2020/lib/components/shared/filter/selected/item/currency/index.mjs +0 -2
  192. package/esm2020/lib/components/shared/filter/selected/item/date-range/date-range.component.mjs +0 -42
  193. package/esm2020/lib/components/shared/filter/selected/item/date-range/index.mjs +0 -2
  194. package/esm2020/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.mjs +0 -33
  195. package/esm2020/lib/components/shared/filter/selected/item/date-with-action/index.mjs +0 -2
  196. package/esm2020/lib/components/shared/filter/selected/item/index.mjs +0 -8
  197. package/esm2020/lib/components/shared/filter/selected/item/input/index.mjs +0 -2
  198. package/esm2020/lib/components/shared/filter/selected/item/input/input.component.mjs +0 -28
  199. package/esm2020/lib/components/shared/filter/selected/item/item.component.mjs +0 -74
  200. package/esm2020/lib/components/shared/filter/selected/item/status/index.mjs +0 -2
  201. package/esm2020/lib/components/shared/filter/selected/item/status/status.component.mjs +0 -39
  202. package/esm2020/lib/components/shared/filter/selected/selected.component.mjs +0 -80
  203. package/esm2020/lib/components/shared/filter/selected/selected.module.mjs +0 -90
  204. package/esm2020/lib/components/shared/index.mjs +0 -5
  205. package/esm2020/lib/components/shared/password-strength/index.mjs +0 -3
  206. package/esm2020/lib/components/shared/password-strength/password-strength.component.mjs +0 -85
  207. package/esm2020/lib/components/shared/password-strength/password-strength.mjs +0 -2
  208. package/esm2020/lib/components/shared/password-strength/password-strength.module.mjs +0 -50
  209. package/esm2020/lib/components/shared/products/filter/filter.component.mjs +0 -36
  210. package/esm2020/lib/components/shared/products/index.mjs +0 -3
  211. package/esm2020/lib/components/shared/products/products.component.mjs +0 -91
  212. package/esm2020/lib/components/shared/products/products.module.mjs +0 -22
  213. package/esm2020/lib/components/shared/products/providers/index.mjs +0 -2
  214. package/esm2020/lib/components/shared/products/providers/products.model.mjs +0 -38
  215. package/esm2020/lib/components/shared/progress-bar/index.mjs +0 -4
  216. package/esm2020/lib/components/shared/progress-bar/progress-bar.component.mjs +0 -28
  217. package/esm2020/lib/components/shared/progress-bar/progress-bar.module.mjs +0 -18
  218. package/esm2020/lib/components/shared/progress-bar/progress-bar.service.mjs +0 -49
  219. package/esm2020/lib/interfaces/field-config.mjs +0 -2
  220. package/esm2020/lib/interfaces/index.mjs +0 -2
  221. package/esm2020/monkey-front-components.mjs +0 -5
  222. package/esm2020/public-api.mjs +0 -5
  223. package/fesm2015/monkey-front-components.mjs +0 -2877
  224. package/fesm2015/monkey-front-components.mjs.map +0 -1
  225. package/fesm2020/monkey-front-components.mjs +0 -2859
  226. package/fesm2020/monkey-front-components.mjs.map +0 -1
  227. package/lib/components/base/base-component.d.ts +0 -50
  228. package/lib/components/base/base-dynamic-array.d.ts +0 -34
  229. package/lib/components/base/base-dynamic.d.ts +0 -24
  230. package/lib/components/base/base-scroll-component.d.ts +0 -16
  231. package/lib/components/base/base-validators.d.ts +0 -1
  232. package/lib/components/dynamic/button/button.component.d.ts +0 -17
  233. package/lib/components/dynamic/dynamic-directive.d.ts +0 -22
  234. package/lib/components/dynamic/dynamic.module.d.ts +0 -20
  235. package/lib/components/dynamic/file-upload/file-upload.component.d.ts +0 -17
  236. package/lib/components/dynamic/form/dynamic-form-array.component.d.ts +0 -16
  237. package/lib/components/dynamic/form/dynamic-form.component.d.ts +0 -14
  238. package/lib/components/dynamic/input/input.component.d.ts +0 -20
  239. package/lib/components/dynamic/input-phone/input-phone.component.d.ts +0 -20
  240. package/lib/components/dynamic/radio/radio.component.d.ts +0 -11
  241. package/lib/components/dynamic/select/select.component.d.ts +0 -16
  242. package/lib/components/dynamic/select-search/select-search.component.d.ts +0 -16
  243. package/lib/components/shared/filter/filter.component.d.ts +0 -32
  244. package/lib/components/shared/filter/filter.module.d.ts +0 -14
  245. package/lib/components/shared/filter/menu/menu.component.d.ts +0 -24
  246. package/lib/components/shared/filter/menu/menu.module.d.ts +0 -14
  247. package/lib/components/shared/filter/options/children/children.component.d.ts +0 -17
  248. package/lib/components/shared/filter/options/currency/currency.component.d.ts +0 -17
  249. package/lib/components/shared/filter/options/date-range/date-range.component.d.ts +0 -24
  250. package/lib/components/shared/filter/options/input/input.component.d.ts +0 -17
  251. package/lib/components/shared/filter/options/options.component.d.ts +0 -20
  252. package/lib/components/shared/filter/options/options.module.d.ts +0 -18
  253. package/lib/components/shared/filter/options/status/status.component.d.ts +0 -19
  254. package/lib/components/shared/filter/selected/item/children/children.component.d.ts +0 -16
  255. package/lib/components/shared/filter/selected/item/currency/currency.component.d.ts +0 -11
  256. package/lib/components/shared/filter/selected/item/date-range/date-range.component.d.ts +0 -12
  257. package/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.d.ts +0 -11
  258. package/lib/components/shared/filter/selected/item/input/input.component.d.ts +0 -11
  259. package/lib/components/shared/filter/selected/item/item.component.d.ts +0 -20
  260. package/lib/components/shared/filter/selected/item/status/status.component.d.ts +0 -13
  261. package/lib/components/shared/filter/selected/selected.component.d.ts +0 -18
  262. package/lib/components/shared/filter/selected/selected.module.d.ts +0 -21
  263. package/lib/components/shared/password-strength/password-strength.component.d.ts +0 -23
  264. package/lib/components/shared/password-strength/password-strength.d.ts +0 -5
  265. package/lib/components/shared/password-strength/password-strength.module.d.ts +0 -12
  266. package/lib/components/shared/products/filter/filter.component.d.ts +0 -12
  267. package/lib/components/shared/products/products.component.d.ts +0 -20
  268. package/lib/components/shared/products/products.module.d.ts +0 -11
  269. package/lib/components/shared/products/providers/products.model.d.ts +0 -13
  270. package/lib/components/shared/progress-bar/progress-bar.component.d.ts +0 -12
  271. package/lib/components/shared/progress-bar/progress-bar.module.d.ts +0 -8
  272. package/lib/components/shared/progress-bar/progress-bar.service.d.ts +0 -14
  273. package/lib/interfaces/field-config.d.ts +0 -54
  274. package/monkey-front-components-0.0.381.tgz +0 -0
  275. package/monkey-front-components.d.ts +0 -5
  276. package/public-api.d.ts +0 -1
@@ -1,18 +0,0 @@
1
- import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
- import { MonkeyEcxFilterMenu } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterSelectedComponent implements OnChanges {
5
- model: MonkeyEcxFilterMenu[];
6
- onOpenFilters: EventEmitter<any>;
7
- onClose: EventEmitter<any>;
8
- onSubmit: EventEmitter<any>;
9
- _model: MonkeyEcxFilterMenu[];
10
- constructor();
11
- private validateValue;
12
- private onHandleSelectedValue;
13
- ngOnChanges(changes: SimpleChanges): void;
14
- onHandleClose(): void;
15
- onHandleSubmit(event: any): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedComponent, "mecx-filter-selected", never, { "model": "model"; }, { "onOpenFilters": "onOpenFilters"; "onClose": "onClose"; "onSubmit": "onSubmit"; }, never, never>;
18
- }
@@ -1,21 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./selected.component";
3
- import * as i2 from "./item/children/children.component";
4
- import * as i3 from "./item/item.component";
5
- import * as i4 from "./item/currency/currency.component";
6
- import * as i5 from "./item/date-range/date-range.component";
7
- import * as i6 from "./item/date-with-action/date-with-action.component";
8
- import * as i7 from "./item/input/input.component";
9
- import * as i8 from "./item/status/status.component";
10
- import * as i9 from "@angular/common";
11
- import * as i10 from "@angular/forms";
12
- import * as i11 from "../options/options.module";
13
- import * as i12 from "monkey-style-guide";
14
- import * as i13 from "monkey-front-core";
15
- import * as i14 from "@angular/router";
16
- import * as i15 from "@ngx-translate/core";
17
- export declare class MECXFilterSelectedModule {
18
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedModule, never>;
19
- static ɵmod: i0.ɵɵNgModuleDeclaration<MECXFilterSelectedModule, [typeof i1.MECXFilterSelectedComponent, typeof i2.MECXFilterSelectedItemChildrenComponent, typeof i3.MECXFilterSelectedItemComponent, typeof i4.MECXFilterSelectedItemCurrencyComponent, typeof i5.MECXFilterSelectedItemDateRangeComponent, typeof i6.MECXFilterSelectedItemDateWithActionComponent, typeof i7.MECXFilterSelectedItemInputComponent, typeof i8.MECXFilterSelectedItemStatusComponent], [typeof i9.CommonModule, typeof i10.FormsModule, typeof i11.MECXFilterOptionsModule, typeof i12.MonkeyBadgeModule, typeof i12.MonkeyButtonModule, typeof i12.MonkeyCheckboxModule, typeof i12.MonkeyDateRangePickerModule, typeof i13.MonkeyEcxDirectivesModule, typeof i13.MonkeyEcxPipesModule, typeof i12.MonkeyIconModule, typeof i12.MonkeyInputModule, typeof i12.MonkeyOptionModule, typeof i12.MonkeySelectModule, typeof i10.ReactiveFormsModule, typeof i14.RouterModule, typeof i15.TranslateModule], [typeof i1.MECXFilterSelectedComponent]>;
20
- static ɵinj: i0.ɵɵInjectorDeclaration<MECXFilterSelectedModule>;
21
- }
@@ -1,23 +0,0 @@
1
- import { OnChanges, EventEmitter } from '@angular/core';
2
- import { MonkeyEcxConfigService } from 'monkey-front-core';
3
- import { PasswordStrength } from './password-strength';
4
- import * as i0 from "@angular/core";
5
- export declare class MECXPasswordStrengthComponent implements OnChanges {
6
- private configService;
7
- passwordToCheck: string | null;
8
- i18n: any;
9
- onHandleSubmitReady: EventEmitter<any>;
10
- _validatorsPasswordPass: Array<PasswordStrength>;
11
- _stepPassword: number;
12
- private validatorsPassword;
13
- constructor(configService: MonkeyEcxConfigService);
14
- private handleColor;
15
- private passwordStrengthValidator;
16
- private onHandleReady;
17
- private onHandleChages;
18
- private onHandlePasswordStrengthKeys;
19
- ngOnInit(): void;
20
- ngOnChanges(): void;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXPasswordStrengthComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXPasswordStrengthComponent, "mecx-password-strength", never, { "passwordToCheck": "passwordToCheck"; "i18n": "i18n"; }, { "onHandleSubmitReady": "onHandleSubmitReady"; }, never, never>;
23
- }
@@ -1,5 +0,0 @@
1
- export interface PasswordStrength {
2
- regex: string;
3
- validate: boolean;
4
- percent: number;
5
- }
@@ -1,12 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./password-strength.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "@angular/forms";
5
- import * as i4 from "monkey-front-core";
6
- import * as i5 from "monkey-style-guide";
7
- import * as i6 from "@ngx-translate/core";
8
- export declare class MECXPasswordStrengthModule {
9
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXPasswordStrengthModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<MECXPasswordStrengthModule, [typeof i1.MECXPasswordStrengthComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.MonkeyEcxPipesModule, typeof i4.MonkeyEcxDirectivesModule, typeof i5.MonkeyButtonModule, typeof i5.MonkeyInputModule, typeof i5.MonkeyIconModule, typeof i6.TranslateModule], [typeof i1.MECXPasswordStrengthComponent]>;
11
- static ɵinj: i0.ɵɵInjectorDeclaration<MECXPasswordStrengthModule>;
12
- }
@@ -1,12 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class MECXProductsFilterComponent {
4
- isLoading: boolean;
5
- onChangeFilter: EventEmitter<any>;
6
- _search: string;
7
- constructor();
8
- onSearchFilter(event: string): void;
9
- onClearFilter(): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsFilterComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXProductsFilterComponent, "mecx-products-filter", never, { "isLoading": "isLoading"; }, { "onChangeFilter": "onChangeFilter"; }, never, never>;
12
- }
@@ -1,20 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { MonkeyEcxTokenStorageService } from 'monkey-front-core';
3
- import { BaseComponent } from '../../base/base-component';
4
- import * as i0 from "@angular/core";
5
- export declare class MECXProductsComponent extends BaseComponent implements OnInit {
6
- private tokenStorage;
7
- onAccess: EventEmitter<any>;
8
- _products: any[];
9
- _filteredProducts: any[];
10
- _filter: string;
11
- _hasMoreProducts: boolean;
12
- constructor(tokenStorage: MonkeyEcxTokenStorageService);
13
- onImgError(img: HTMLImageElement): void;
14
- private onHandleProducts;
15
- private onHandleMe;
16
- ngOnInit(): void;
17
- onHandleChangeFilter(event: string): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXProductsComponent, "mecx-products", never, {}, { "onAccess": "onAccess"; }, never, never>;
20
- }
@@ -1,11 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./products.component";
3
- import * as i2 from "./filter/filter.component";
4
- import * as i3 from "@angular/common";
5
- import * as i4 from "@ngx-translate/core";
6
- import * as i5 from "monkey-style-guide";
7
- export declare class MECXProductsModule {
8
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<MECXProductsModule, [typeof i1.MECXProductsComponent, typeof i2.MECXProductsFilterComponent], [typeof i3.CommonModule, typeof i4.TranslateModule, typeof i5.MonkeyInputModule, typeof i5.MonkeyButtonModule], [typeof i1.MECXProductsComponent]>;
10
- static ɵinj: i0.ɵɵInjectorDeclaration<MECXProductsModule>;
11
- }
@@ -1,13 +0,0 @@
1
- export declare class ProductsModel {
2
- url: string;
3
- token: string;
4
- username: string;
5
- ownerGovernmentId: string;
6
- ownerName: string;
7
- product: string;
8
- name: string;
9
- type: string;
10
- logo: string;
11
- constructor(data?: any);
12
- private handleLogo;
13
- }
@@ -1,12 +0,0 @@
1
- import { OnDestroy, OnInit } from '@angular/core';
2
- import { BaseComponent } from '../../base/base-component';
3
- import { MECXProgressBarService } from './progress-bar.service';
4
- import * as i0 from "@angular/core";
5
- export declare class MECXProgressBarComponent extends BaseComponent implements OnInit, OnDestroy {
6
- private progressBarService;
7
- visible: boolean;
8
- constructor(progressBarService: MECXProgressBarService);
9
- ngOnInit(): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXProgressBarComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXProgressBarComponent, "mecx-progress-bar", never, {}, {}, never, never>;
12
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./progress-bar.component";
3
- import * as i2 from "@angular/common";
4
- export declare class MECXProgressBarModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXProgressBarModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<MECXProgressBarModule, [typeof i1.MECXProgressBarComponent], [typeof i2.CommonModule], [typeof i1.MECXProgressBarComponent]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<MECXProgressBarModule>;
8
- }
@@ -1,14 +0,0 @@
1
- import { Router } from '@angular/router';
2
- import { Observable } from 'rxjs';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXProgressBarService {
5
- private router;
6
- private visible;
7
- constructor(router: Router);
8
- private init;
9
- show(): void;
10
- hide(): void;
11
- visibleConfig(): Observable<any>;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXProgressBarService, never>;
13
- static ɵprov: i0.ɵɵInjectableDeclaration<MECXProgressBarService>;
14
- }
@@ -1,54 +0,0 @@
1
- export interface MECXFieldConfigValidator {
2
- name: string;
3
- param: string | number;
4
- }
5
- export interface MECXFieldConfigStyle {
6
- class: string;
7
- }
8
- export interface MECXFieldConfigValue {
9
- description: string;
10
- value: string;
11
- }
12
- export interface MECXFieldConfigFunctions {
13
- onChange: string;
14
- onClick: string;
15
- onHandleUpload: {
16
- func: string;
17
- type: string;
18
- };
19
- onHandleGenericLoad: {
20
- func: string;
21
- url: string;
22
- };
23
- }
24
- export interface MECXFieldConfig {
25
- fieldType?: string;
26
- label?: string;
27
- icon?: string;
28
- helperMessage?: string;
29
- mask?: string;
30
- prefix?: string;
31
- internationalNumber?: string;
32
- name?: string;
33
- placeholder?: string;
34
- type?: string;
35
- color?: string;
36
- disabled?: boolean;
37
- value?: string | number | Date | undefined | MECXFieldConfigValue | MECXFieldConfigValue[];
38
- validations?: MECXFieldConfigValidator[];
39
- functions?: MECXFieldConfigFunctions;
40
- style?: MECXFieldConfigStyle;
41
- maxSize?: number;
42
- maxLength?: number;
43
- onlyNumber?: boolean;
44
- currency?: boolean;
45
- maxDateToday?: boolean;
46
- allowedExtensions?: string[];
47
- alwaysShow?: boolean;
48
- alwaysShowPlusValidation: {
49
- field?: string;
50
- operator?: string;
51
- value?: string;
52
- };
53
- fieldToCompare?: string;
54
- }
Binary file
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="monkey-front-components" />
5
- export * from './public-api';
package/public-api.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from './lib/components';