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,34 +0,0 @@
1
- import { EventEmitter, OnInit, OnChanges } from '@angular/core';
2
- import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
3
- import { MECXFieldConfig } from '../../interfaces';
4
- import { BaseComponent } from './base-component';
5
- import * as i0 from "@angular/core";
6
- export declare abstract class BaseDynamicArray extends BaseComponent implements OnInit, OnChanges {
7
- private fb;
8
- onHandleSubmit: EventEmitter<any>;
9
- onHandleUpdateForm: EventEmitter<any>;
10
- onHandleSubmitFormReady: EventEmitter<any>;
11
- self: any;
12
- fields: MECXFieldConfig[];
13
- data: any;
14
- qtd: number;
15
- disabled: boolean;
16
- _form: FormGroup | null;
17
- _plusValidations: any[];
18
- private changesUnsubscribe;
19
- constructor(fb: FormBuilder);
20
- private handleInternalPlusValidation;
21
- private makeInternalPlusValidation;
22
- private createOneControl;
23
- private createControl;
24
- private bindValidations;
25
- private buildForm;
26
- private watchForChanges;
27
- formBase: () => FormGroup;
28
- get formValues(): FormArray;
29
- fillValues(): void;
30
- ngOnInit(): void;
31
- ngOnChanges(): void;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseDynamicArray, never>;
33
- static ɵdir: i0.ɵɵDirectiveDeclaration<BaseDynamicArray, "[baseDynamicArray]", never, { "onHandleSubmit": "onHandleSubmit"; "onHandleUpdateForm": "onHandleUpdateForm"; "self": "self"; "fields": "fields"; "data": "data"; "qtd": "qtd"; "disabled": "disabled"; }, { "onHandleSubmitFormReady": "onHandleSubmitFormReady"; }, never>;
34
- }
@@ -1,24 +0,0 @@
1
- import { EventEmitter, OnInit, OnChanges } from '@angular/core';
2
- import { FormBuilder, FormGroup } from '@angular/forms';
3
- import { MECXFieldConfig } from '../../interfaces';
4
- import { BaseComponent } from './base-component';
5
- import * as i0 from "@angular/core";
6
- export declare abstract class BaseDynamic extends BaseComponent implements OnInit, OnChanges {
7
- private fb;
8
- onHandleSubmit: EventEmitter<any>;
9
- onHandleUpdateForm: EventEmitter<any>;
10
- onHandleSubmitFormReady: EventEmitter<any>;
11
- self: any;
12
- fields: MECXFieldConfig[];
13
- data: any;
14
- disabled: boolean;
15
- _form: FormGroup | null;
16
- constructor(fb: FormBuilder);
17
- private createControl;
18
- private bindValidations;
19
- fillValues(): void;
20
- ngOnInit(): void;
21
- ngOnChanges(): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseDynamic, never>;
23
- static ɵdir: i0.ɵɵDirectiveDeclaration<BaseDynamic, "[baseDynamic]", never, { "onHandleSubmit": "onHandleSubmit"; "onHandleUpdateForm": "onHandleUpdateForm"; "self": "self"; "fields": "fields"; "data": "data"; "disabled": "disabled"; }, { "onHandleSubmitFormReady": "onHandleSubmitFormReady"; }, never>;
24
- }
@@ -1,16 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { Router } from '@angular/router';
3
- import { BaseComponent } from './base-component';
4
- import * as i0 from "@angular/core";
5
- export declare abstract class BaseScrollComponent extends BaseComponent implements OnInit {
6
- private _pId;
7
- private _rt;
8
- private routeScrollPositions;
9
- constructor(_pId: Object, _rt: Router);
10
- private saveScroll;
11
- private restoreScroll;
12
- private addScrollTopListeners;
13
- ngOnInit(): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseScrollComponent, never>;
15
- static ɵdir: i0.ɵɵDirectiveDeclaration<BaseScrollComponent, "[baseScrollComponent]", never, {}, {}, never>;
16
- }
@@ -1 +0,0 @@
1
- export declare const validators: any;
@@ -1,17 +0,0 @@
1
- import { ChangeDetectorRef, OnChanges } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
3
- import { MECXFieldConfig } from '../../../interfaces';
4
- import * as i0 from "@angular/core";
5
- export declare class MECXDynamicButtonComponent implements OnChanges {
6
- private cdr;
7
- _field: MECXFieldConfig | null;
8
- _form: FormGroup | null;
9
- _formErrors: any | any[];
10
- self: any;
11
- constructor(cdr: ChangeDetectorRef);
12
- get className(): string;
13
- ngOnChanges(): void;
14
- onClick(): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXDynamicButtonComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXDynamicButtonComponent, "mecx-dynamic-button", never, { "_field": "_field"; "_form": "_form"; "_formErrors": "_formErrors"; "self": "self"; }, {}, never, never>;
17
- }
@@ -1,22 +0,0 @@
1
- import { ChangeDetectorRef, ComponentFactoryResolver, OnChanges, OnInit, ViewContainerRef } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
3
- import { MECXFieldConfig } from '../../interfaces';
4
- import * as i0 from "@angular/core";
5
- export declare class MECXDynamicDirective implements OnInit, OnChanges {
6
- private resolver;
7
- private container;
8
- private cdr;
9
- field: MECXFieldConfig | null;
10
- form: FormGroup | null;
11
- formErrors: any;
12
- self: any;
13
- plusValidations: any;
14
- componentRef: any;
15
- constructor(resolver: ComponentFactoryResolver, container: ViewContainerRef, cdr: ChangeDetectorRef);
16
- private handleInternalPlusValidation;
17
- private buildComponent;
18
- ngOnInit(): void;
19
- ngOnChanges(): void;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXDynamicDirective, never>;
21
- static ɵdir: i0.ɵɵDirectiveDeclaration<MECXDynamicDirective, "[MECXDynamic]", never, { "field": "field"; "form": "form"; "formErrors": "formErrors"; "self": "self"; "plusValidations": "plusValidations"; }, {}, never>;
22
- }
@@ -1,20 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./button/button.component";
3
- import * as i2 from "./file-upload/file-upload.component";
4
- import * as i3 from "./form/dynamic-form.component";
5
- import * as i4 from "./form/dynamic-form-array.component";
6
- import * as i5 from "./input/input.component";
7
- import * as i6 from "./input-phone/input-phone.component";
8
- import * as i7 from "./radio/radio.component";
9
- import * as i8 from "./select/select.component";
10
- import * as i9 from "./select-search/select-search.component";
11
- import * as i10 from "./dynamic-directive";
12
- import * as i11 from "@angular/common";
13
- import * as i12 from "@angular/forms";
14
- import * as i13 from "monkey-style-guide";
15
- import * as i14 from "@ngx-translate/core";
16
- export declare class MECXDynamicModule {
17
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXDynamicModule, never>;
18
- static ɵmod: i0.ɵɵNgModuleDeclaration<MECXDynamicModule, [typeof i1.MECXDynamicButtonComponent, typeof i2.MECXDynamicFileUploadComponent, typeof i3.MECXDynamicFormComponent, typeof i4.MECXDynamicFormArrayComponent, typeof i5.MECXDynamicInputComponent, typeof i6.MECXDynamicInputPhoneComponent, typeof i7.MECXDynamicRadioComponent, typeof i8.MECXDynamicSelectComponent, typeof i9.MECXDynamicSelectSearchComponent, typeof i10.MECXDynamicDirective], [typeof i11.CommonModule, typeof i12.FormsModule, typeof i12.ReactiveFormsModule, typeof i13.MonkeyInputModule, typeof i13.MonkeySelectModule, typeof i13.MonkeyRadioButtonModule, typeof i13.MonkeyOptionModule, typeof i13.MonkeyFileUploadModule, typeof i13.MonkeyButtonModule, typeof i13.MonkeyInputPhoneModule, typeof i14.TranslateModule], [typeof i10.MECXDynamicDirective, typeof i3.MECXDynamicFormComponent, typeof i4.MECXDynamicFormArrayComponent]>;
19
- static ɵinj: i0.ɵɵInjectorDeclaration<MECXDynamicModule>;
20
- }
@@ -1,17 +0,0 @@
1
- import { ChangeDetectorRef } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
3
- import { MECXFieldConfig } from '../../../interfaces';
4
- import * as i0 from "@angular/core";
5
- export declare class MECXDynamicFileUploadComponent {
6
- private cdr;
7
- _field: MECXFieldConfig;
8
- _form: FormGroup;
9
- _formErrors: any | any[];
10
- self: any;
11
- _function: Function;
12
- constructor(cdr: ChangeDetectorRef);
13
- get className(): string;
14
- ngOnChanges(): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXDynamicFileUploadComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXDynamicFileUploadComponent, "mecx-dynamic-file-upload", never, { "_field": "_field"; "_form": "_form"; "_formErrors": "_formErrors"; "self": "self"; }, {}, never, never>;
17
- }
@@ -1,16 +0,0 @@
1
- import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
2
- import { FormBuilder } from '@angular/forms';
3
- import { BaseDynamicArray } from '../../base';
4
- import * as i0 from "@angular/core";
5
- export declare class MECXDynamicFormArrayComponent extends BaseDynamicArray implements OnInit, OnDestroy {
6
- private cdr;
7
- private unsubscribeAll;
8
- constructor(fb: FormBuilder, cdr: ChangeDetectorRef);
9
- ngOnInit(): void;
10
- ngOnDestroy(): void;
11
- onSubmit(callback: Function): void;
12
- onHandleAdd(): void;
13
- onHandleRemove(index: number): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXDynamicFormArrayComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXDynamicFormArrayComponent, "mecx-dynamic-form-array", never, {}, {}, never, never>;
16
- }
@@ -1,14 +0,0 @@
1
- import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
2
- import { FormBuilder } from '@angular/forms';
3
- import { BaseDynamic } from '../../base/base-dynamic';
4
- import * as i0 from "@angular/core";
5
- export declare class MECXDynamicFormComponent extends BaseDynamic implements OnInit, OnDestroy {
6
- private cdr;
7
- private unsubscribeAll;
8
- constructor(fb: FormBuilder, cdr: ChangeDetectorRef);
9
- ngOnInit(): void;
10
- ngOnDestroy(): void;
11
- onSubmit(callback: Function): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXDynamicFormComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXDynamicFormComponent, "mecx-dynamic-form", never, {}, {}, never, never>;
14
- }
@@ -1,20 +0,0 @@
1
- import { ChangeDetectorRef, OnChanges, OnInit } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
3
- import { MonkeyInputComponent } from 'monkey-style-guide';
4
- import { MECXFieldConfig } from '../../../interfaces';
5
- import * as i0 from "@angular/core";
6
- export declare class MECXDynamicInputComponent implements OnInit, OnChanges {
7
- private cdr;
8
- _field: MECXFieldConfig | null;
9
- _form: FormGroup | null;
10
- _formErrors: any | any[];
11
- self: any;
12
- inputElement: MonkeyInputComponent | null;
13
- constructor(cdr: ChangeDetectorRef);
14
- get className(): string;
15
- ngOnInit(): void;
16
- ngOnChanges(): void;
17
- onChange(event: string): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXDynamicInputComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXDynamicInputComponent, "mecx-dynamic-input", never, { "_field": "_field"; "_form": "_form"; "_formErrors": "_formErrors"; "self": "self"; }, {}, never, never>;
20
- }
@@ -1,20 +0,0 @@
1
- import { ChangeDetectorRef, OnChanges, OnInit } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
3
- import { MonkeyInputComponent } from 'monkey-style-guide';
4
- import { MECXFieldConfig } from '../../../interfaces';
5
- import * as i0 from "@angular/core";
6
- export declare class MECXDynamicInputPhoneComponent implements OnInit, OnChanges {
7
- private cdr;
8
- _field: MECXFieldConfig | null;
9
- _form: FormGroup | null;
10
- _formErrors: any | any[];
11
- self: any;
12
- inputElement: MonkeyInputComponent | null;
13
- constructor(cdr: ChangeDetectorRef);
14
- get className(): string;
15
- ngOnInit(): void;
16
- ngOnChanges(): void;
17
- onChange(event: string): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXDynamicInputPhoneComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXDynamicInputPhoneComponent, "mecx-dynamic-input-phone", never, { "_field": "_field"; "_form": "_form"; "_formErrors": "_formErrors"; "self": "self"; }, {}, never, never>;
20
- }
@@ -1,11 +0,0 @@
1
- import { FormGroup } from '@angular/forms';
2
- import { MECXFieldConfig } from '../../../interfaces';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXDynamicRadioComponent {
5
- _field: MECXFieldConfig | null;
6
- _form: FormGroup | null;
7
- _formErrors: any | any[];
8
- get className(): string;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXDynamicRadioComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXDynamicRadioComponent, "mecx-dynamic-radio", never, { "_field": "_field"; "_form": "_form"; "_formErrors": "_formErrors"; }, {}, never, never>;
11
- }
@@ -1,16 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
3
- import { MECXFieldConfig } from '../../../interfaces';
4
- import * as i0 from "@angular/core";
5
- export declare class MECXDynamicSelectComponent {
6
- _field: MECXFieldConfig | null;
7
- _form: FormGroup | null;
8
- _formErrors: any | any[];
9
- self: any;
10
- get className(): string;
11
- _onHandleOptions: EventEmitter<any>;
12
- onHandleGenericLoad(): void;
13
- onChange(event: string): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXDynamicSelectComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXDynamicSelectComponent, "mecx-dynamic-select", never, { "_field": "_field"; "_form": "_form"; "_formErrors": "_formErrors"; "self": "self"; }, {}, never, never>;
16
- }
@@ -1,16 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
3
- import { MECXFieldConfig } from '../../../interfaces';
4
- import * as i0 from "@angular/core";
5
- export declare class MECXDynamicSelectSearchComponent {
6
- _field: MECXFieldConfig | null;
7
- _form: FormGroup | null;
8
- _formErrors: any | any[];
9
- self: any;
10
- get className(): string;
11
- _onHandleOptions: EventEmitter<any>;
12
- onHandleGenericLoad(): void;
13
- onChange(event: string): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXDynamicSelectSearchComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXDynamicSelectSearchComponent, "mecx-dynamic-select-search", never, { "_field": "_field"; "_form": "_form"; "_formErrors": "_formErrors"; "self": "self"; }, {}, never, never>;
16
- }
@@ -1,32 +0,0 @@
1
- import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
- import { MonkeyEcxFilterMenu, MonkeyEcxFilterOrder } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterComponent implements OnChanges {
5
- searchPlaceholder: string;
6
- orderPlaceholder: string;
7
- menus: MonkeyEcxFilterMenu[];
8
- orders: MonkeyEcxFilterOrder[];
9
- enableSearch: boolean;
10
- set search(value: string);
11
- set order(value: any);
12
- isLoading: boolean;
13
- onFilter: EventEmitter<any>;
14
- _order: MonkeyEcxFilterOrder;
15
- _search: string;
16
- _showMenu: boolean;
17
- _hasFilterByMenu: boolean;
18
- _actionElement: HTMLElement;
19
- closeMenu: () => void;
20
- constructor();
21
- private validateValue;
22
- private handleFilters;
23
- ngOnChanges(changes: SimpleChanges): void;
24
- onSearchFilter(event: string): void;
25
- onClearFilter(): void;
26
- onHandleSubmit(event: any): void;
27
- onHandleShowMenu(): void;
28
- onHandleClose(): void;
29
- onHandleOrder(event: any): void;
30
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterComponent, never>;
31
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterComponent, "mecx-filter", never, { "searchPlaceholder": "searchPlaceholder"; "orderPlaceholder": "orderPlaceholder"; "menus": "menus"; "orders": "orders"; "enableSearch": "enableSearch"; "search": "search"; "order": "order"; "isLoading": "isLoading"; }, { "onFilter": "onFilter"; }, never, never>;
32
- }
@@ -1,14 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./filter.component";
3
- import * as i2 from "monkey-front-core";
4
- import * as i3 from "monkey-style-guide";
5
- import * as i4 from "@ngx-translate/core";
6
- import * as i5 from "./menu/menu.module";
7
- import * as i6 from "./selected/selected.module";
8
- import * as i7 from "@angular/common";
9
- import * as i8 from "@angular/forms";
10
- export declare class MECXFilterModule {
11
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<MECXFilterModule, [typeof i1.MECXFilterComponent], [typeof i2.MonkeyEcxDirectivesModule, typeof i2.MonkeyEcxPipesModule, typeof i3.MonkeyButtonModule, typeof i3.MonkeyInputModule, typeof i3.MonkeyIconModule, typeof i3.MonkeySelectModule, typeof i3.MonkeyOptionModule, typeof i4.TranslateModule, typeof i5.MECXFilterMenuModule, typeof i6.MECXFilterSelectedModule, typeof i7.CommonModule, typeof i8.FormsModule, typeof i8.ReactiveFormsModule], [typeof i1.MECXFilterComponent]>;
13
- static ɵinj: i0.ɵɵInjectorDeclaration<MECXFilterModule>;
14
- }
@@ -1,24 +0,0 @@
1
- import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
- import { MonkeyEcxFilterMenu, MonkeyEcxFilterMenuChildren } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterMenuComponent implements OnChanges {
5
- model: MonkeyEcxFilterMenu[];
6
- onClose: EventEmitter<any>;
7
- onSubmit: EventEmitter<any>;
8
- _onHandleSubmit: Function;
9
- _model: MonkeyEcxFilterMenu[];
10
- _showMenu: boolean;
11
- _menuOption: MonkeyEcxFilterMenu | MonkeyEcxFilterMenuChildren;
12
- closeMenu: () => void;
13
- constructor();
14
- private validateValue;
15
- private onHandleSubmitValue;
16
- private onHandleMenus;
17
- ngOnChanges(changes: SimpleChanges): void;
18
- onHandleChildrenAction(option: MonkeyEcxFilterMenu, child: MonkeyEcxFilterMenuChildren): void;
19
- onHandleShowMenu(option: MonkeyEcxFilterMenu): void;
20
- onHandleClose(): void;
21
- onHandleSubmit(event: any): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterMenuComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterMenuComponent, "mecx-filter-menu", never, { "model": "model"; }, { "onClose": "onClose"; "onSubmit": "onSubmit"; }, never, never>;
24
- }
@@ -1,14 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./menu.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 "@angular/router";
8
- import * as i7 from "../options/options.module";
9
- import * as i8 from "@ngx-translate/core";
10
- export declare class MECXFilterMenuModule {
11
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterMenuModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<MECXFilterMenuModule, [typeof i1.MECXFilterMenuComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.MonkeyEcxDirectivesModule, typeof i5.MonkeyButtonModule, typeof i5.MonkeyBadgeModule, typeof i5.MonkeyIconModule, typeof i5.MonkeyInputModule, typeof i5.MonkeyCheckboxModule, typeof i5.MonkeySelectModule, typeof i5.MonkeyOptionModule, typeof i5.MonkeyDateRangePickerModule, typeof i6.RouterModule, typeof i7.MECXFilterOptionsModule, typeof i8.TranslateModule], [typeof i1.MECXFilterMenuComponent]>;
13
- static ɵinj: i0.ɵɵInjectorDeclaration<MECXFilterMenuModule>;
14
- }
@@ -1,17 +0,0 @@
1
- import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
- import { MonkeyEcxFilterMenu } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterOptionsChildrenComponent implements OnInit, OnDestroy {
5
- option: MonkeyEcxFilterMenu;
6
- onSubmit: EventEmitter<any>;
7
- onShow: EventEmitter<any>;
8
- private eventHandle;
9
- private eventSubscription;
10
- constructor();
11
- ngOnInit(): void;
12
- ngOnDestroy(): void;
13
- onHandleChildrenAction(child: any): void;
14
- onHandleValidateSelected({ field, getValue }: any): boolean;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterOptionsChildrenComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterOptionsChildrenComponent, "mecx-filter-options-children", never, { "option": "option"; }, { "onSubmit": "onSubmit"; "onShow": "onShow"; }, never, never>;
17
- }
@@ -1,17 +0,0 @@
1
- import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
- import { MonkeyEcxFilterMenu } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterOptionsCurrencyComponent implements OnInit, OnChanges, OnDestroy {
5
- option: MonkeyEcxFilterMenu;
6
- onSubmit: EventEmitter<any>;
7
- _value: number;
8
- private eventHandle;
9
- private eventSubscription;
10
- constructor();
11
- ngOnInit(): void;
12
- ngOnDestroy(): void;
13
- ngOnChanges(changes: SimpleChanges): void;
14
- onChangeFilter(value: number): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterOptionsCurrencyComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterOptionsCurrencyComponent, "mecx-filter-options-currency", never, { "option": "option"; }, { "onSubmit": "onSubmit"; }, never, never>;
17
- }
@@ -1,24 +0,0 @@
1
- import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
3
- import { MonkeyEcxFilterMenu, MonkeyEcxFilterMenuChildren } from 'monkey-front-core';
4
- import * as i0 from "@angular/core";
5
- export declare class MECXFilterOptionsDateRangeComponent implements OnInit, OnChanges, OnDestroy {
6
- option: MonkeyEcxFilterMenu | MonkeyEcxFilterMenuChildren;
7
- onSubmit: EventEmitter<any>;
8
- _value: any;
9
- _form: FormGroup;
10
- _moveDaysForward: boolean;
11
- private eventHandle;
12
- private eventSubscription;
13
- constructor();
14
- private onHandleSelectedValue;
15
- ngOnInit(): void;
16
- ngOnDestroy(): void;
17
- ngOnChanges(changes: SimpleChanges): void;
18
- onChangeFilter(value: {
19
- startDate: string;
20
- endDate: string;
21
- }): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterOptionsDateRangeComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterOptionsDateRangeComponent, "mecx-filter-options-date-range", never, { "option": "option"; }, { "onSubmit": "onSubmit"; }, never, never>;
24
- }
@@ -1,17 +0,0 @@
1
- import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
- import { MonkeyEcxFilterMenu } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterOptionsInputComponent implements OnInit, OnChanges, OnDestroy {
5
- option: MonkeyEcxFilterMenu;
6
- onSubmit: EventEmitter<any>;
7
- _value: string;
8
- private eventHandle;
9
- private eventSubscription;
10
- constructor();
11
- ngOnInit(): void;
12
- ngOnDestroy(): void;
13
- ngOnChanges(changes: SimpleChanges): void;
14
- onChangeFilter(value: number): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterOptionsInputComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterOptionsInputComponent, "mecx-filter-options-input", never, { "option": "option"; }, { "onSubmit": "onSubmit"; }, never, never>;
17
- }
@@ -1,20 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { MonkeyEcxFilterMenu, MonkeyEcxFilterMenuChildren } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterOptionsComponent {
5
- option: MonkeyEcxFilterMenu;
6
- closeDirectly: boolean;
7
- onClose: EventEmitter<any>;
8
- onRemove: EventEmitter<any>;
9
- onSubmit: EventEmitter<any>;
10
- onShowFromChildren: EventEmitter<any>;
11
- _showMenu: boolean;
12
- closeMenu: () => void;
13
- constructor();
14
- onHandleChildrenAction(child: MonkeyEcxFilterMenuChildren): void;
15
- onHandleSubmitChildren(event: any): void;
16
- onHandleSubmit(event: any): void;
17
- onHandleShowMenu(): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterOptionsComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterOptionsComponent, "mecx-filter-options", never, { "option": "option"; "closeDirectly": "closeDirectly"; }, { "onClose": "onClose"; "onRemove": "onRemove"; "onSubmit": "onSubmit"; "onShowFromChildren": "onShowFromChildren"; }, never, never>;
20
- }
@@ -1,18 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./children/children.component";
3
- import * as i2 from "./options.component";
4
- import * as i3 from "./currency/currency.component";
5
- import * as i4 from "./date-range/date-range.component";
6
- import * as i5 from "./input/input.component";
7
- import * as i6 from "./status/status.component";
8
- import * as i7 from "@angular/common";
9
- import * as i8 from "@angular/forms";
10
- import * as i9 from "monkey-style-guide";
11
- import * as i10 from "monkey-front-core";
12
- import * as i11 from "@angular/router";
13
- import * as i12 from "@ngx-translate/core";
14
- export declare class MECXFilterOptionsModule {
15
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterOptionsModule, never>;
16
- static ɵmod: i0.ɵɵNgModuleDeclaration<MECXFilterOptionsModule, [typeof i1.MECXFilterOptionsChildrenComponent, typeof i2.MECXFilterOptionsComponent, typeof i3.MECXFilterOptionsCurrencyComponent, typeof i4.MECXFilterOptionsDateRangeComponent, typeof i5.MECXFilterOptionsInputComponent, typeof i6.MECXFilterOptionsStatusComponent], [typeof i7.CommonModule, typeof i8.FormsModule, typeof i9.MonkeyBadgeModule, typeof i9.MonkeyButtonModule, typeof i9.MonkeyCheckboxModule, typeof i9.MonkeyDateRangePickerModule, typeof i10.MonkeyEcxDirectivesModule, typeof i9.MonkeyIconModule, typeof i9.MonkeyInputModule, typeof i9.MonkeyOptionModule, typeof i9.MonkeySelectModule, typeof i8.ReactiveFormsModule, typeof i11.RouterModule, typeof i12.TranslateModule], [typeof i1.MECXFilterOptionsChildrenComponent, typeof i2.MECXFilterOptionsComponent, typeof i3.MECXFilterOptionsCurrencyComponent, typeof i4.MECXFilterOptionsDateRangeComponent, typeof i5.MECXFilterOptionsInputComponent, typeof i6.MECXFilterOptionsStatusComponent]>;
17
- static ɵinj: i0.ɵɵInjectorDeclaration<MECXFilterOptionsModule>;
18
- }
@@ -1,19 +0,0 @@
1
- import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
- import { MonkeyEcxFilterMenu } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterOptionsStatusComponent implements OnInit, OnChanges, OnDestroy {
5
- option: MonkeyEcxFilterMenu;
6
- onSubmit: EventEmitter<any>;
7
- _value: string;
8
- private eventHandle;
9
- private eventSubscription;
10
- constructor();
11
- private verifySelected;
12
- ngOnInit(): void;
13
- ngOnDestroy(): void;
14
- ngOnChanges(changes: SimpleChanges): void;
15
- onHandleChecked(cmp: string): boolean;
16
- onChangeFilter(event: any, value: string): void;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterOptionsStatusComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterOptionsStatusComponent, "mecx-filter-options-status", never, { "option": "option"; }, { "onSubmit": "onSubmit"; }, never, never>;
19
- }
@@ -1,16 +0,0 @@
1
- import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
- import { MonkeyEcxFilterMenu } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterSelectedItemChildrenComponent implements OnChanges {
5
- private elRef;
6
- option: MonkeyEcxFilterMenu;
7
- onShow: EventEmitter<any>;
8
- onRemove: EventEmitter<any>;
9
- _child: any;
10
- constructor(elRef: ElementRef);
11
- private validateValue;
12
- private onHandleSelectedValue;
13
- ngOnChanges(changes: SimpleChanges): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemChildrenComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemChildrenComponent, "mecx-filter-selected-item-children", never, { "option": "option"; }, { "onShow": "onShow"; "onRemove": "onRemove"; }, never, never>;
16
- }
@@ -1,11 +0,0 @@
1
- import { OnChanges, SimpleChanges } from '@angular/core';
2
- import { MonkeyEcxFilterMenu } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterSelectedItemCurrencyComponent implements OnChanges {
5
- option: MonkeyEcxFilterMenu;
6
- _value: any;
7
- private onHandleSelectedValue;
8
- ngOnChanges(changes: SimpleChanges): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemCurrencyComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemCurrencyComponent, "mecx-filter-selected-item-currency", never, { "option": "option"; }, {}, never, never>;
11
- }
@@ -1,12 +0,0 @@
1
- import { OnChanges, SimpleChanges } from '@angular/core';
2
- import { MonkeyEcxFilterMenu, MonkeyEcxFilterMenuChildren } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterSelectedItemDateRangeComponent implements OnChanges {
5
- option: MonkeyEcxFilterMenu | MonkeyEcxFilterMenuChildren;
6
- _startDate: string;
7
- _endDate: string;
8
- private onHandleSelectedValue;
9
- ngOnChanges(changes: SimpleChanges): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemDateRangeComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemDateRangeComponent, "mecx-filter-selected-item-date-range", never, { "option": "option"; }, {}, never, never>;
12
- }
@@ -1,11 +0,0 @@
1
- import { OnChanges, SimpleChanges } from '@angular/core';
2
- import { MonkeyEcxFilterMenuChildren } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterSelectedItemDateWithActionComponent implements OnChanges {
5
- option: MonkeyEcxFilterMenuChildren;
6
- _date: string;
7
- private onHandleSelectedValue;
8
- ngOnChanges(changes: SimpleChanges): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemDateWithActionComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemDateWithActionComponent, "mecx-filter-selected-item-date-with-action", never, { "option": "option"; }, {}, never, never>;
11
- }
@@ -1,11 +0,0 @@
1
- import { OnChanges, SimpleChanges } from '@angular/core';
2
- import { MonkeyEcxFilterMenu } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterSelectedItemInputComponent implements OnChanges {
5
- option: MonkeyEcxFilterMenu;
6
- _value: any;
7
- private onHandleSelectedValue;
8
- ngOnChanges(changes: SimpleChanges): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemInputComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemInputComponent, "mecx-filter-selected-item-input", never, { "option": "option"; }, {}, never, never>;
11
- }
@@ -1,20 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { MonkeyEcxFilterMenu } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterSelectedItemComponent {
5
- set option(value: MonkeyEcxFilterMenu);
6
- onClose: EventEmitter<any>;
7
- onSubmit: EventEmitter<any>;
8
- _option: MonkeyEcxFilterMenu;
9
- _showMenu: boolean;
10
- _actionElement: HTMLElement;
11
- closeMenu: () => void;
12
- constructor();
13
- onHandleShowMenu(): void;
14
- onHandleClose(): void;
15
- onHandleSubmit(event: any): void;
16
- onHandleRemove(): void;
17
- onHandleShowFromChildren(event: any): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemComponent, "mecx-filter-selected-item", never, { "option": "option"; }, { "onClose": "onClose"; "onSubmit": "onSubmit"; }, never, never>;
20
- }
@@ -1,13 +0,0 @@
1
- import { OnChanges, SimpleChanges } from '@angular/core';
2
- import { MonkeyEcxFilterMenu } from 'monkey-front-core';
3
- import * as i0 from "@angular/core";
4
- export declare class MECXFilterSelectedItemStatusComponent implements OnChanges {
5
- option: MonkeyEcxFilterMenu;
6
- labelMoreValues: string;
7
- _selectedValue: string;
8
- _labelMoreValues: string;
9
- private onHandleSelectedValue;
10
- ngOnChanges(changes: SimpleChanges): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemStatusComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemStatusComponent, "mecx-filter-selected-item-status", never, { "option": "option"; "labelMoreValues": "labelMoreValues"; }, {}, never, never>;
13
- }