nuxeo-development-framework 5.3.6 → 5.3.7

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 (344) hide show
  1. package/bundles/nuxeo-development-framework.umd.js +575 -202
  2. package/bundles/nuxeo-development-framework.umd.js.map +1 -1
  3. package/esm2015/lib/components/ndf-config-editor/containers/monaco-editor.component.js +1 -2
  4. package/esm2015/lib/components/ndf-filters/base/base-aggregation-field.component.js +91 -0
  5. package/esm2015/lib/components/ndf-filters/base/base-checkbox-radio.component.js +66 -0
  6. package/esm2015/lib/components/ndf-filters/base/base-custom-field.component.js +46 -0
  7. package/esm2015/lib/components/ndf-filters/base/base-predicate-field.component.js +43 -0
  8. package/esm2015/lib/components/ndf-filters/base/base-value-accessor.component.js +34 -0
  9. package/esm2015/lib/components/ndf-filters/base/index.js +6 -0
  10. package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/field-header.component.js +1 -1
  11. package/esm2015/lib/components/ndf-filters/components/__parts/filter-autocomplete-input/filter-autocomplete-input.component.js +97 -0
  12. package/esm2015/lib/components/ndf-filters/components/__parts/filter-autocomplete-input/filter-autocomplete.service.js +43 -0
  13. package/esm2015/lib/components/ndf-filters/components/__parts/filter-collapse-control/filter-collapse-control.component.js +44 -0
  14. package/esm2015/lib/components/ndf-filters/components/__parts/filter-date-range/filter-date-range.component.js +89 -0
  15. package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-empty-message.component.js +1 -1
  16. package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-option-text/filter-option-text.component.js +1 -1
  17. package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-options-sort/filter-options-sort.component.js +1 -1
  18. package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-search-input/filter-search-input.component.js +1 -1
  19. package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/html-dialog/html-dialog.component.js +2 -2
  20. package/esm2015/lib/components/ndf-filters/components/__parts/index.js +10 -0
  21. package/esm2015/lib/components/ndf-filters/components/aggregation-autocomplete/aggregation-autocomplete.component.js +109 -0
  22. package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-checkbox/aggregation-checkbox.component.js +1 -1
  23. package/esm2015/lib/components/ndf-filters/components/aggregation-custom/aggregation-custom.component.js +66 -0
  24. package/esm2015/lib/components/ndf-filters/components/aggregation-date-list/aggregation-date-list.component.js +219 -0
  25. package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-radio/aggregation-radio.component.js +1 -1
  26. package/esm2015/lib/components/ndf-filters/components/aggregation-select/aggregation-select.component.js +83 -0
  27. package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-switch/aggregation-switch.component.js +1 -1
  28. package/esm2015/lib/components/ndf-filters/components/index.js +11 -0
  29. package/esm2015/lib/components/ndf-filters/components/predicate-date-input/predicate-date-input.component.js +146 -0
  30. package/esm2015/lib/components/ndf-filters/components/predicate-text-input/predicate-text-input.component.js +144 -0
  31. package/esm2015/lib/components/ndf-filters/constants/common.js +4 -0
  32. package/esm2015/lib/components/ndf-filters/constants/field.js +6 -0
  33. package/esm2015/lib/components/ndf-filters/constants/index.js +5 -0
  34. package/esm2015/lib/components/ndf-filters/constants/operators.js +18 -0
  35. package/esm2015/lib/components/ndf-filters/constants/sort.js +23 -0
  36. package/esm2015/lib/components/ndf-filters/constants/type.js +26 -0
  37. package/esm2015/lib/components/ndf-filters/containers/aggregation-field/aggregation-field.component.js +78 -0
  38. package/esm2015/lib/components/ndf-filters/containers/base-field.js +62 -0
  39. package/esm2015/lib/components/ndf-filters/containers/custom-field/custom-field.component.js +73 -0
  40. package/esm2015/lib/components/ndf-filters/containers/filters-panel/base-filters-panel.js +55 -0
  41. package/esm2015/lib/components/ndf-filters/containers/filters-panel/filters-panel.component.js +127 -0
  42. package/esm2015/lib/components/ndf-filters/containers/index.js +5 -0
  43. package/esm2015/lib/components/ndf-filters/containers/predicate-field/predicate-field.component.js +71 -0
  44. package/esm2015/lib/components/ndf-filters/custom-components/active-user-switch/active-user-switch.component.js +55 -0
  45. package/esm2015/lib/components/ndf-filters/custom-components/active-user-switch/active-user.service.js +17 -0
  46. package/esm2015/lib/components/ndf-filters/custom-components/active-user-switch/user-types.js +2 -0
  47. package/esm2015/lib/components/ndf-filters/custom-components/index.js +2 -0
  48. package/esm2015/lib/components/ndf-filters/directives/autocomplete-template.directive.js +28 -0
  49. package/esm2015/lib/components/ndf-filters/directives/checkbox-template.directive.js +28 -0
  50. package/esm2015/lib/components/ndf-filters/directives/custom-template.directive.js +28 -0
  51. package/esm2015/lib/components/ndf-filters/directives/date-template.directive.js +28 -0
  52. package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/dropdown-label-template.directive.js +1 -1
  53. package/esm2015/lib/components/ndf-filters/directives/dropdown-template.directive.js +28 -0
  54. package/esm2015/lib/components/ndf-filters/directives/index.js +9 -0
  55. package/esm2015/lib/components/ndf-filters/directives/radio-template.directive.js +28 -0
  56. package/esm2015/lib/components/ndf-filters/directives/switch-template.directive.js +28 -0
  57. package/esm2015/lib/components/ndf-filters/index.js +2 -0
  58. package/esm2015/lib/components/ndf-filters/models/aggregation-field-config.js +2 -0
  59. package/esm2015/lib/components/ndf-filters/models/aggregation-response.model.js +2 -0
  60. package/esm2015/lib/components/ndf-filters/models/base-field-config.js +2 -0
  61. package/esm2015/lib/components/ndf-filters/models/common.js +2 -0
  62. package/esm2015/lib/components/ndf-filters/models/custom-field-config.js +2 -0
  63. package/esm2015/lib/components/ndf-filters/models/field-config.model.js +2 -0
  64. package/esm2015/lib/components/ndf-filters/models/field-options/autocomplete-options.js +2 -0
  65. package/esm2015/lib/components/ndf-filters/models/field-options/checkbox-options.js +2 -0
  66. package/esm2015/lib/components/ndf-filters/models/field-options/common-utils.js +2 -0
  67. package/esm2015/lib/components/ndf-filters/models/field-options/custom-fields-options.js +2 -0
  68. package/esm2015/lib/components/ndf-filters/models/field-options/custom-options.js +2 -0
  69. package/esm2015/lib/components/ndf-filters/models/field-options/date-list-options.js +2 -0
  70. package/esm2015/lib/components/ndf-filters/models/field-options/date-options.js +2 -0
  71. package/esm2015/lib/components/ndf-filters/models/field-options/dropdown-options.js +2 -0
  72. package/esm2015/lib/components/ndf-filters/models/field-options/index.js +12 -0
  73. package/esm2015/lib/components/ndf-filters/models/field-options/input-options.js +2 -0
  74. package/esm2015/lib/components/ndf-filters/models/field-options/radio-options.js +2 -0
  75. package/esm2015/lib/components/ndf-filters/models/field-options/switch-options.js +2 -0
  76. package/esm2015/lib/components/ndf-filters/models/filter-option.model.js +2 -0
  77. package/esm2015/lib/components/ndf-filters/models/form-query-request.js +2 -0
  78. package/esm2015/lib/components/ndf-filters/models/index.js +14 -0
  79. package/esm2015/lib/components/ndf-filters/models/operator-value-object.js +2 -0
  80. package/esm2015/lib/components/ndf-filters/models/predicate-field-config.js +2 -0
  81. package/esm2015/lib/components/ndf-filters/models/types-helper.js +2 -0
  82. package/esm2015/lib/components/ndf-filters/models/value-object.model.js +12 -0
  83. package/esm2015/lib/components/ndf-filters/ndf-filters-panel.module.js +207 -0
  84. package/esm2015/lib/components/ndf-filters/pipes/autocomplete-filter.pipe.js +27 -0
  85. package/esm2015/lib/components/ndf-filters/pipes/check-condition.pipe.js +32 -0
  86. package/esm2015/lib/components/ndf-filters/pipes/filter.pipe.js +27 -0
  87. package/esm2015/lib/components/ndf-filters/pipes/hash-translate.pipe.js +52 -0
  88. package/esm2015/lib/components/ndf-filters/pipes/index.js +10 -0
  89. package/esm2015/lib/components/ndf-filters/pipes/localized-label.pipe.js +28 -0
  90. package/esm2015/lib/components/ndf-filters/pipes/roles-filters.pipe.js +31 -0
  91. package/esm2015/lib/components/ndf-filters/pipes/sanitizer.pipe.js +34 -0
  92. package/esm2015/lib/components/ndf-filters/pipes/sort.pipe.js +40 -0
  93. package/esm2015/lib/components/ndf-filters/pipes/tooltip.pipe.js +69 -0
  94. package/esm2015/lib/components/ndf-filters/public-api.js +12 -0
  95. package/esm2015/lib/components/ndf-filters/services/aggregation-field.service.js +105 -0
  96. package/esm2015/lib/components/ndf-filters/services/dynamic-component-loader.service.js +59 -0
  97. package/esm2015/lib/components/ndf-filters/services/filters-mapper.service.js +60 -0
  98. package/esm2015/lib/components/ndf-filters/services/filters-query.service.js +117 -0
  99. package/esm2015/lib/components/ndf-filters/services/index.js +5 -0
  100. package/esm2015/lib/components/ndf-filters/utility/index.js +4 -0
  101. package/esm2015/lib/components/ndf-filters/utility/nxql-query.js +53 -0
  102. package/esm2015/lib/components/ndf-filters/utility/nxql.js +47 -0
  103. package/esm2015/lib/components/ndf-filters/utility/object.js +42 -0
  104. package/esm2015/lib/components/ndf-tabs/tab.type.js +1 -1
  105. package/esm2015/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.js +3 -3
  106. package/esm2015/lib/components/reports/ndf-reports/models/common.js +1 -1
  107. package/esm2015/lib/components/reports/ndf-reports/models/ndf-reports.config.js +1 -1
  108. package/esm2015/lib/components/reports/ndf-reports/ndf-reports.module.js +6 -5
  109. package/esm2015/lib/components/reports/ndf-reports/services/report-config-mapper.service.js +1 -1
  110. package/esm2015/lib/components/spell-checker-field/spell-checker-field.module.js +1 -1
  111. package/esm2015/lib/components/tables/ndf-table/components/text-search/text-search.component.js +2 -2
  112. package/esm2015/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.js +26 -25
  113. package/esm2015/lib/components/tables/ndf-table/models/payload-types.js +1 -1
  114. package/esm2015/lib/components/tables/ndf-table/models/search.config.js +1 -1
  115. package/esm2015/lib/components/tables/ndf-table/models/table-mode.js +1 -1
  116. package/esm2015/lib/components/tables/ndf-table/models/table-options.js +1 -1
  117. package/esm2015/lib/components/tables/ndf-table/models/types.js +1 -1
  118. package/esm2015/lib/components/tables/ndf-table/ndf-table.module.js +5 -5
  119. package/esm2015/lib/components/tables/ndf-table/public-api.js +1 -2
  120. package/esm2015/lib/components/tables/ndf-table/services/index.js +1 -2
  121. package/esm2015/lib/shared/evaluator/evaluator.js +332 -0
  122. package/esm2015/lib/shared/evaluator/index.js +2 -0
  123. package/esm2015/lib/shared/evaluator/types.js +2 -0
  124. package/esm2015/lib/shared/models/index.js +2 -1
  125. package/esm2015/lib/shared/models/type-helpers.js +2 -0
  126. package/esm2015/public-api.js +2 -1
  127. package/fesm2015/nuxeo-development-framework.js +532 -169
  128. package/fesm2015/nuxeo-development-framework.js.map +1 -1
  129. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/base/base-aggregation-field.component.d.ts +1 -1
  130. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/base/base-value-accessor.component.d.ts +1 -1
  131. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-autocomplete-input/filter-autocomplete-input.component.d.ts +1 -1
  132. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-autocomplete-input/filter-autocomplete.service.d.ts +3 -2
  133. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-date-range/filter-date-range.component.d.ts +1 -1
  134. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/html-dialog/html-dialog.component.d.ts +2 -1
  135. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/filters-panel/base-filters-panel.d.ts +1 -1
  136. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/filters-panel/filters-panel.component.d.ts +1 -0
  137. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/custom-components/active-user-switch/active-user.service.d.ts +1 -1
  138. package/lib/components/ndf-filters/index.d.ts +1 -0
  139. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/aggregation-field-config.d.ts +2 -1
  140. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/base-field-config.d.ts +3 -1
  141. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/custom-field-config.d.ts +2 -1
  142. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/autocomplete-options.d.ts +1 -1
  143. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/checkbox-options.d.ts +1 -1
  144. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/common-utils.d.ts +2 -1
  145. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/custom-fields-options.d.ts +1 -1
  146. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/date-list-options.d.ts +1 -1
  147. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/date-options.d.ts +1 -1
  148. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/dropdown-options.d.ts +1 -1
  149. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/input-options.d.ts +1 -1
  150. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/radio-options.d.ts +1 -1
  151. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/switch-options.d.ts +1 -1
  152. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/filter-option.model.d.ts +1 -1
  153. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/index.d.ts +1 -0
  154. package/lib/components/ndf-filters/models/operator-value-object.d.ts +6 -0
  155. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/predicate-field-config.d.ts +2 -1
  156. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/types-helper.d.ts +0 -11
  157. package/lib/components/ndf-filters/ndf-filters-panel.module.d.ts +66 -0
  158. package/lib/components/ndf-filters/pipes/check-condition.pipe.d.ts +12 -0
  159. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/index.d.ts +1 -0
  160. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/roles-filters.pipe.d.ts +1 -1
  161. package/lib/components/{tables/ndf-table/filters-panel/index.d.ts → ndf-filters/public-api.d.ts} +2 -1
  162. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/services/aggregation-field.service.d.ts +1 -1
  163. package/lib/components/{tables/ndf-table → ndf-filters}/services/filters-mapper.service.d.ts +1 -1
  164. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/services/index.d.ts +1 -0
  165. package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/utility/index.d.ts +1 -0
  166. package/lib/components/{tables/ndf-table/utils → ndf-filters/utility}/nxql-query.d.ts +4 -3
  167. package/lib/components/ndf-tabs/tab.type.d.ts +1 -1
  168. package/lib/components/reports/ndf-reports/base/base-report.d.ts +3 -3
  169. package/lib/components/reports/ndf-reports/containers/ndf-report/ndf-report.component.d.ts +1 -1
  170. package/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.d.ts +3 -2
  171. package/lib/components/reports/ndf-reports/models/common.d.ts +2 -2
  172. package/lib/components/reports/ndf-reports/models/ndf-reports.config.d.ts +1 -1
  173. package/lib/components/reports/ndf-reports/ndf-reports.module.d.ts +2 -2
  174. package/lib/components/reports/ndf-reports/services/dynamic-timeline-report.service.d.ts +1 -1
  175. package/lib/components/tables/ndf-table/components/text-search/text-search.component.d.ts +1 -1
  176. package/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.d.ts +3 -2
  177. package/lib/components/tables/ndf-table/models/payload-types.d.ts +0 -6
  178. package/lib/components/tables/ndf-table/models/search.config.d.ts +1 -1
  179. package/lib/components/tables/ndf-table/models/table-mode.d.ts +1 -1
  180. package/lib/components/tables/ndf-table/models/table-options.d.ts +1 -1
  181. package/lib/components/tables/ndf-table/models/types.d.ts +1 -1
  182. package/lib/components/tables/ndf-table/ndf-table.module.d.ts +2 -2
  183. package/lib/components/tables/ndf-table/public-api.d.ts +0 -1
  184. package/lib/components/tables/ndf-table/services/index.d.ts +0 -1
  185. package/lib/shared/evaluator/evaluator.d.ts +79 -0
  186. package/lib/shared/evaluator/index.d.ts +1 -0
  187. package/lib/shared/evaluator/types.d.ts +14 -0
  188. package/lib/shared/models/index.d.ts +1 -0
  189. package/lib/shared/models/type-helpers.d.ts +11 -0
  190. package/package.json +3 -2
  191. package/public-api.d.ts +1 -0
  192. package/src/docs/ndf-table.doc.md +287 -217
  193. package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-aggregation-field.component.js +0 -91
  194. package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-checkbox-radio.component.js +0 -66
  195. package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-custom-field.component.js +0 -46
  196. package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-predicate-field.component.js +0 -43
  197. package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-value-accessor.component.js +0 -34
  198. package/esm2015/lib/components/tables/ndf-table/filters-panel/base/index.js +0 -6
  199. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-autocomplete-input/filter-autocomplete-input.component.js +0 -97
  200. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-autocomplete-input/filter-autocomplete.service.js +0 -43
  201. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-collapse-control/filter-collapse-control.component.js +0 -44
  202. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-date-range/filter-date-range.component.js +0 -89
  203. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/index.js +0 -10
  204. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-autocomplete/aggregation-autocomplete.component.js +0 -109
  205. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-custom/aggregation-custom.component.js +0 -66
  206. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-date-list/aggregation-date-list.component.js +0 -219
  207. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-select/aggregation-select.component.js +0 -83
  208. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/index.js +0 -11
  209. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/predicate-date-input/predicate-date-input.component.js +0 -146
  210. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/predicate-text-input/predicate-text-input.component.js +0 -144
  211. package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/common.js +0 -4
  212. package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/field.js +0 -6
  213. package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/index.js +0 -5
  214. package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/operators.js +0 -18
  215. package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/sort.js +0 -23
  216. package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/type.js +0 -26
  217. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/aggregation-field/aggregation-field.component.js +0 -78
  218. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/base-field.js +0 -62
  219. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/custom-field/custom-field.component.js +0 -73
  220. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/filters-panel/base-filters-panel.js +0 -55
  221. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/filters-panel/filters-panel.component.js +0 -122
  222. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/index.js +0 -5
  223. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/predicate-field/predicate-field.component.js +0 -71
  224. package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/active-user-switch.component.js +0 -55
  225. package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/active-user.service.js +0 -17
  226. package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/user-types.js +0 -2
  227. package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/index.js +0 -2
  228. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/autocomplete-template.directive.js +0 -28
  229. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/checkbox-template.directive.js +0 -28
  230. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/custom-template.directive.js +0 -28
  231. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/date-template.directive.js +0 -28
  232. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/dropdown-template.directive.js +0 -28
  233. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/index.js +0 -9
  234. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/radio-template.directive.js +0 -28
  235. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/switch-template.directive.js +0 -28
  236. package/esm2015/lib/components/tables/ndf-table/filters-panel/filters-panel.module.js +0 -205
  237. package/esm2015/lib/components/tables/ndf-table/filters-panel/index.js +0 -11
  238. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/aggregation-field-config.js +0 -2
  239. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/aggregation-response.model.js +0 -2
  240. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/base-field-config.js +0 -2
  241. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/common.js +0 -2
  242. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/custom-field-config.js +0 -2
  243. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-config.model.js +0 -2
  244. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/autocomplete-options.js +0 -2
  245. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/checkbox-options.js +0 -2
  246. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/common-utils.js +0 -2
  247. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/custom-fields-options.js +0 -2
  248. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/custom-options.js +0 -2
  249. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/date-list-options.js +0 -2
  250. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/date-options.js +0 -2
  251. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/dropdown-options.js +0 -2
  252. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/index.js +0 -12
  253. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/input-options.js +0 -2
  254. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/radio-options.js +0 -2
  255. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/switch-options.js +0 -2
  256. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/filter-option.model.js +0 -2
  257. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/form-query-request.js +0 -2
  258. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/index.js +0 -13
  259. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/predicate-field-config.js +0 -2
  260. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/types-helper.js +0 -2
  261. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/value-object.model.js +0 -12
  262. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/autocomplete-filter.pipe.js +0 -27
  263. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/filter.pipe.js +0 -27
  264. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/hash-translate.pipe.js +0 -52
  265. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/index.js +0 -9
  266. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/localized-label.pipe.js +0 -28
  267. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/roles-filters.pipe.js +0 -31
  268. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/sanitizer.pipe.js +0 -34
  269. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/sort.pipe.js +0 -40
  270. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/tooltip.pipe.js +0 -69
  271. package/esm2015/lib/components/tables/ndf-table/filters-panel/services/aggregation-field.service.js +0 -105
  272. package/esm2015/lib/components/tables/ndf-table/filters-panel/services/dynamic-component-loader.service.js +0 -59
  273. package/esm2015/lib/components/tables/ndf-table/filters-panel/services/filters-query.service.js +0 -117
  274. package/esm2015/lib/components/tables/ndf-table/filters-panel/services/index.js +0 -4
  275. package/esm2015/lib/components/tables/ndf-table/filters-panel/utility/index.js +0 -3
  276. package/esm2015/lib/components/tables/ndf-table/filters-panel/utility/nxql.js +0 -47
  277. package/esm2015/lib/components/tables/ndf-table/filters-panel/utility/object.js +0 -42
  278. package/esm2015/lib/components/tables/ndf-table/services/filters-mapper.service.js +0 -60
  279. package/esm2015/lib/components/tables/ndf-table/utils/index.js +0 -2
  280. package/esm2015/lib/components/tables/ndf-table/utils/nxql-query.js +0 -52
  281. package/lib/components/tables/ndf-table/filters-panel/filters-panel.module.d.ts +0 -65
  282. package/lib/components/tables/ndf-table/utils/index.d.ts +0 -1
  283. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/base/base-checkbox-radio.component.d.ts +0 -0
  284. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/base/base-custom-field.component.d.ts +0 -0
  285. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/base/base-predicate-field.component.d.ts +0 -0
  286. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/base/index.d.ts +0 -0
  287. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/field-header.component.d.ts +0 -0
  288. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-collapse-control/filter-collapse-control.component.d.ts +0 -0
  289. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-empty-message.component.d.ts +0 -0
  290. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-option-text/filter-option-text.component.d.ts +0 -0
  291. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-options-sort/filter-options-sort.component.d.ts +0 -0
  292. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-search-input/filter-search-input.component.d.ts +0 -0
  293. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/index.d.ts +0 -0
  294. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-autocomplete/aggregation-autocomplete.component.d.ts +0 -0
  295. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-checkbox/aggregation-checkbox.component.d.ts +0 -0
  296. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-custom/aggregation-custom.component.d.ts +0 -0
  297. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-date-list/aggregation-date-list.component.d.ts +0 -0
  298. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-radio/aggregation-radio.component.d.ts +0 -0
  299. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-select/aggregation-select.component.d.ts +0 -0
  300. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-switch/aggregation-switch.component.d.ts +0 -0
  301. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/index.d.ts +0 -0
  302. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/predicate-date-input/predicate-date-input.component.d.ts +0 -0
  303. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/predicate-text-input/predicate-text-input.component.d.ts +0 -0
  304. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/constants/common.d.ts +0 -0
  305. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/constants/field.d.ts +0 -0
  306. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/constants/index.d.ts +0 -0
  307. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/constants/operators.d.ts +0 -0
  308. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/constants/sort.d.ts +0 -0
  309. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/constants/type.d.ts +0 -0
  310. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/aggregation-field/aggregation-field.component.d.ts +0 -0
  311. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/base-field.d.ts +0 -0
  312. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/custom-field/custom-field.component.d.ts +0 -0
  313. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/index.d.ts +0 -0
  314. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/predicate-field/predicate-field.component.d.ts +0 -0
  315. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/custom-components/active-user-switch/active-user-switch.component.d.ts +0 -0
  316. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/custom-components/active-user-switch/user-types.d.ts +0 -0
  317. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/custom-components/index.d.ts +0 -0
  318. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/autocomplete-template.directive.d.ts +0 -0
  319. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/checkbox-template.directive.d.ts +0 -0
  320. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/custom-template.directive.d.ts +0 -0
  321. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/date-template.directive.d.ts +0 -0
  322. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/dropdown-label-template.directive.d.ts +0 -0
  323. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/dropdown-template.directive.d.ts +0 -0
  324. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/index.d.ts +0 -0
  325. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/radio-template.directive.d.ts +0 -0
  326. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/switch-template.directive.d.ts +0 -0
  327. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/aggregation-response.model.d.ts +0 -0
  328. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/common.d.ts +0 -0
  329. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-config.model.d.ts +0 -0
  330. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/custom-options.d.ts +0 -0
  331. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/index.d.ts +0 -0
  332. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/form-query-request.d.ts +0 -0
  333. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/value-object.model.d.ts +0 -0
  334. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/autocomplete-filter.pipe.d.ts +0 -0
  335. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/filter.pipe.d.ts +0 -0
  336. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/hash-translate.pipe.d.ts +0 -0
  337. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/localized-label.pipe.d.ts +0 -0
  338. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/sanitizer.pipe.d.ts +0 -0
  339. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/sort.pipe.d.ts +0 -0
  340. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/tooltip.pipe.d.ts +0 -0
  341. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/services/dynamic-component-loader.service.d.ts +0 -0
  342. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/services/filters-query.service.d.ts +0 -0
  343. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/utility/nxql.d.ts +0 -0
  344. /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/utility/object.d.ts +0 -0
@@ -1,7 +1,7 @@
1
1
  import { Injector, TemplateRef } from '@angular/core';
2
2
  import { AbstractControl, ValidationErrors } from '@angular/forms';
3
- import { BaseSelector } from '../../../../../shared/components';
4
3
  import { BehaviorSubject } from 'rxjs';
4
+ import { BaseSelector } from '../../../shared/components';
5
5
  import { AggregationFieldConfig, AggregationFieldType, AggregationResponse, FieldOptionsType, FieldValueObject, FilterOption, OptionsType } from '../models';
6
6
  import * as i0 from "@angular/core";
7
7
  export declare abstract class BaseAggregationField<TType extends AggregationFieldType, TValue = any> extends BaseSelector<FilterOption[], TValue> {
@@ -1,6 +1,6 @@
1
1
  import { Injector } from '@angular/core';
2
2
  import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
3
- import { BaseComponent } from '../../../../../shared/components';
3
+ import { BaseComponent } from '../../../shared/components/base';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare abstract class BaseCustomValueAccessor<T, R> extends BaseComponent implements ControlValueAccessor, Validator {
6
6
  injector: Injector;
@@ -6,7 +6,7 @@ import { TranslateService } from '@ngx-translate/core';
6
6
  import { Observable } from 'rxjs';
7
7
  import { AggregationFieldConfig, FilterOption, SearchConfig } from '../../../models';
8
8
  import { FilterAutocompleteService } from './filter-autocomplete.service';
9
- import { DestroySubject } from '../../../../../../../shared/components';
9
+ import { DestroySubject } from '../../../../../shared/components';
10
10
  import * as i0 from "@angular/core";
11
11
  export declare class FilterAutocompleteInputComponent extends DestroySubject implements OnInit {
12
12
  private _filterService;
@@ -1,6 +1,7 @@
1
1
  import { Injector } from '@angular/core';
2
- import { BaseService } from '../../../../../../../shared/services/base';
3
- import { AggregationFieldConfig, EvaluatedString, SearchConfig } from '../../../models';
2
+ import { BaseService } from '../../../../../shared/services/base';
3
+ import { EvaluatedString } from '../../../../../shared/models';
4
+ import { AggregationFieldConfig, SearchConfig } from '../../../models';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class FilterAutocompleteService extends BaseService {
6
7
  private injector;
@@ -1,6 +1,6 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { AbstractControl, FormControl, ValidationErrors } from '@angular/forms';
3
- import { BaseSelector } from '../../../../../../../shared/components';
3
+ import { BaseSelector } from '../../../../../shared/components';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class FilterDateRangeComponent extends BaseSelector implements OnInit {
6
6
  formControl: FormControl;
@@ -1,5 +1,6 @@
1
1
  import { MatDialogRef } from '@angular/material/dialog';
2
- import { HtmlDialogConfig, StrictOmit } from '../../../models';
2
+ import { StrictOmit } from '../../../../../shared/models';
3
+ import { HtmlDialogConfig } from '../../../models';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class HtmlDialogComponent {
5
6
  data: StrictOmit<HtmlDialogConfig, 'options'>;
@@ -1,5 +1,5 @@
1
1
  import { TemplateRef } from '@angular/core';
2
- import { DestroySubject } from '../../../../../../shared/components';
2
+ import { DestroySubject } from '../../../../shared/components';
3
3
  import { AggregationFieldType } from '../../models';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare abstract class BaseFiltersPanel extends DestroySubject {
@@ -8,6 +8,7 @@ import { TranslateService } from '@ngx-translate/core';
8
8
  import * as i0 from "@angular/core";
9
9
  export declare class FiltersPanelComponent extends BaseFiltersPanel implements OnInit {
10
10
  private _translateService;
11
+ currentLang: string;
11
12
  direction$: Observable<Direction>;
12
13
  aggregations: Record<string, AggregationResponse>;
13
14
  private _fieldsSub;
@@ -1,4 +1,4 @@
1
- import { BaseService } from '../../../../../../shared/services';
1
+ import { BaseService } from '../../../../shared/services';
2
2
  import { User } from './user-types';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class ActiveUserService extends BaseService {
@@ -0,0 +1 @@
1
+ export * from './public-api';
@@ -1,6 +1,7 @@
1
1
  import { BaseFieldConfig } from './base-field-config';
2
2
  import { AutocompleteOptions, CheckboxOptions, CustomOptions, DateListOptions, DropdownOptions, RadioOptions, SwitchOptions } from './field-options';
3
- import { FieldSendModeType, Prettify } from './types-helper';
3
+ import { FieldSendModeType } from './types-helper';
4
+ import { Prettify } from '../../../shared/models';
4
5
  export declare type AggregationFieldConfig = Prettify<BaseFieldConfig & {
5
6
  aggregation: string;
6
7
  propertyPath?: string;
@@ -1,4 +1,5 @@
1
- import { ComparisonOperator, TranslateKey } from './types-helper';
1
+ import { EvaluatedString, TranslateKey } from '../../../shared/models';
2
+ import { ComparisonOperator } from './types-helper';
2
3
  export declare type BaseFieldConfig = {
3
4
  label: TranslateKey;
4
5
  fieldKey: string;
@@ -10,4 +11,5 @@ export declare type BaseFieldConfig = {
10
11
  visible?: boolean;
11
12
  roles?: string[];
12
13
  permission?: string;
14
+ condition?: EvaluatedString;
13
15
  };
@@ -1,6 +1,7 @@
1
- import { FieldSendModeType, Prettify } from './types-helper';
1
+ import { FieldSendModeType } from './types-helper';
2
2
  import { BaseFieldConfig } from './base-field-config';
3
3
  import { ActiveUserSwitcherOptions } from './field-options/custom-fields-options';
4
+ import { Prettify } from '../../../shared/models';
4
5
  export declare type CustomFieldConfig = Prettify<BaseFieldConfig & {
5
6
  sendMode: Exclude<FieldSendModeType, 'custom'>;
6
7
  render: ActiveUserSwitcherOptions;
@@ -1,5 +1,5 @@
1
- import { Prettify } from '../types-helper';
2
1
  import { HideLabel, ShowTotalConfig } from './common-utils';
2
+ import { Prettify } from '../../../../shared';
3
3
  /**
4
4
  * Configuration options for an autocomplete field.
5
5
  */
@@ -1,4 +1,4 @@
1
- import { Prettify } from '../types-helper';
1
+ import { Prettify } from '../../../../shared/models';
2
2
  import { CollapseConfig, FilterConfig, HideLabel, SearchConfig, ShowTotalConfig, SortOptions } from './common-utils';
3
3
  /**
4
4
  * Configuration options for a checkbox field.
@@ -1,4 +1,5 @@
1
- import { ComparisonOperator, EvaluatedString, StringOrNumber } from '../types-helper';
1
+ import { ComparisonOperator } from '../types-helper';
2
+ import { EvaluatedString, StringOrNumber } from '../../../../shared';
2
3
  /**
3
4
  * Configuration for search functionality.
4
5
  */
@@ -1,4 +1,4 @@
1
- import { Prettify } from '../types-helper';
1
+ import { Prettify } from '../../../../shared/models';
2
2
  import { HideLabel } from './common-utils';
3
3
  export declare type ActiveUserSwitcherOptions = {
4
4
  type: 'activeUser';
@@ -1,5 +1,5 @@
1
1
  import { DATE_LIST_VIEW } from '../../constants';
2
- import { Prettify } from '../types-helper';
2
+ import { Prettify } from '../../../../shared/models';
3
3
  import { HideLabel, ShowTotalConfig } from './common-utils';
4
4
  export declare type DateListOptions = {
5
5
  type: 'dateList';
@@ -1,4 +1,4 @@
1
- import { Prettify } from '../types-helper';
1
+ import { Prettify } from '../../../../shared/models';
2
2
  import { HideLabel } from './common-utils';
3
3
  export declare type DateInputOptions = {
4
4
  type: 'date';
@@ -1,4 +1,4 @@
1
- import { Prettify } from '../types-helper';
1
+ import { Prettify } from '../../../../shared/models';
2
2
  import { HideLabel, MultipleConfig, ShowTotalConfig } from './common-utils';
3
3
  export declare type DropdownOptions = {
4
4
  type: 'dropdown';
@@ -1,7 +1,7 @@
1
1
  import { KeyValue } from '@angular/common';
2
2
  import { MatDialogConfig } from '@angular/material/dialog';
3
- import { Prettify, TranslateKey } from '../types-helper';
4
3
  import { HideLabel } from './common-utils';
4
+ import { Prettify, TranslateKey } from '../../../../shared/models';
5
5
  /**
6
6
  * Represents the configuration options for an input field.
7
7
  *
@@ -1,4 +1,4 @@
1
- import { Prettify } from '../types-helper';
1
+ import { Prettify } from '../../../../shared/models';
2
2
  import { CollapseConfig, FilterConfig, HideLabel, SearchConfig, ShowTotalConfig, SortOptions } from './common-utils';
3
3
  export declare type RadioOptions = {
4
4
  type: 'radio';
@@ -1,4 +1,4 @@
1
- import { Prettify } from '../types-helper';
1
+ import { Prettify } from '../../../../shared/models';
2
2
  import { CollapseConfig, FilterConfig, HideLabel, MultipleConfig, SearchConfig, ShowTotalConfig, SortOptions } from './common-utils';
3
3
  export declare type SwitchOptions = {
4
4
  type: 'switch';
@@ -1,4 +1,4 @@
1
- import { LocalizedValue } from './types-helper';
1
+ import { LocalizedValue } from '../../../shared/models';
2
2
  import { AggregationTooltipType } from './aggregation-field-config';
3
3
  export interface FilterOption {
4
4
  id: string;
@@ -10,3 +10,4 @@ export * from './value-object.model';
10
10
  export * from './common';
11
11
  export * from './form-query-request';
12
12
  export * from './custom-field-config';
13
+ export * from './operator-value-object';
@@ -0,0 +1,6 @@
1
+ import { ComparisonOperator } from "./types-helper";
2
+ export declare type OperatorValueObject = {
3
+ name: string;
4
+ value: string;
5
+ operator: ComparisonOperator;
6
+ };
@@ -1,6 +1,7 @@
1
+ import { Prettify } from '../../../shared/models';
1
2
  import { BaseFieldConfig } from './base-field-config';
2
3
  import { DateInputOptions, InputOptions } from './field-options';
3
- import { FieldSendModeType, Prettify } from './types-helper';
4
+ import { FieldSendModeType } from './types-helper';
4
5
  export declare type PredicateFieldConfig = Prettify<BaseFieldConfig & {
5
6
  sendMode: Exclude<FieldSendModeType, 'custom'>;
6
7
  render: InputOptions | DateInputOptions;
@@ -3,15 +3,6 @@ import { AggregationFieldConfig } from './aggregation-field-config';
3
3
  import { AggregationResponse } from './aggregation-response.model';
4
4
  import { AutocompleteOptions, CheckboxOptions, CustomOptions, DateInputOptions, DateListOptions, DropdownOptions, InputOptions, RadioOptions, SwitchOptions } from './field-options';
5
5
  import { ActiveUserSwitcherOptions } from './field-options/custom-fields-options';
6
- export declare type StringOrNumber = string | number;
7
- export declare type StrictOmit<K, T extends keyof K> = Omit<K, T>;
8
- export declare type LocalizedValue = {
9
- ar: string;
10
- en: string;
11
- };
12
- export declare type Prettify<T> = {
13
- [k in keyof T]: T[k];
14
- } & {};
15
6
  export declare type ComparisonOperator = (typeof COMPARISON_OPERATOR)[keyof typeof COMPARISON_OPERATOR];
16
7
  export declare type AggregationFieldType = (typeof AGGREGATION_FIELD_TYPES)[keyof typeof AGGREGATION_FIELD_TYPES];
17
8
  export declare type PredicateFieldType = (typeof PREDICATE_FIELD_TYPES)[keyof typeof PREDICATE_FIELD_TYPES];
@@ -34,6 +25,4 @@ export declare type FieldOptionsType = {
34
25
  fieldConfig: AggregationFieldConfig;
35
26
  aggregation: AggregationResponse;
36
27
  };
37
- export declare type EvaluatedString = `${string}{{${string}}}${string}`;
38
- export declare type TranslateKey = string;
39
28
  export {};
@@ -0,0 +1,66 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./containers/filters-panel/filters-panel.component";
3
+ import * as i2 from "./containers/predicate-field/predicate-field.component";
4
+ import * as i3 from "./containers/aggregation-field/aggregation-field.component";
5
+ import * as i4 from "./containers/custom-field/custom-field.component";
6
+ import * as i5 from "./components/aggregation-autocomplete/aggregation-autocomplete.component";
7
+ import * as i6 from "./components/aggregation-select/aggregation-select.component";
8
+ import * as i7 from "./components/aggregation-checkbox/aggregation-checkbox.component";
9
+ import * as i8 from "./components/aggregation-switch/aggregation-switch.component";
10
+ import * as i9 from "./components/aggregation-radio/aggregation-radio.component";
11
+ import * as i10 from "./components/aggregation-custom/aggregation-custom.component";
12
+ import * as i11 from "./components/aggregation-date-list/aggregation-date-list.component";
13
+ import * as i12 from "./components/predicate-text-input/predicate-text-input.component";
14
+ import * as i13 from "./components/predicate-date-input/predicate-date-input.component";
15
+ import * as i14 from "./custom-components/active-user-switch/active-user-switch.component";
16
+ import * as i15 from "./directives/checkbox-template.directive";
17
+ import * as i16 from "./directives/radio-template.directive";
18
+ import * as i17 from "./directives/switch-template.directive";
19
+ import * as i18 from "./directives/dropdown-template.directive";
20
+ import * as i19 from "./directives/autocomplete-template.directive";
21
+ import * as i20 from "./directives/custom-template.directive";
22
+ import * as i21 from "./directives/dropdown-label-template.directive";
23
+ import * as i22 from "./directives/date-template.directive";
24
+ import * as i23 from "./pipes/autocomplete-filter.pipe";
25
+ import * as i24 from "./pipes/filter.pipe";
26
+ import * as i25 from "./pipes/localized-label.pipe";
27
+ import * as i26 from "./pipes/hash-translate.pipe";
28
+ import * as i27 from "./pipes/sanitizer.pipe";
29
+ import * as i28 from "./pipes/sort.pipe";
30
+ import * as i29 from "./pipes/tooltip.pipe";
31
+ import * as i30 from "./pipes/roles-filters.pipe";
32
+ import * as i31 from "./pipes/check-condition.pipe";
33
+ import * as i32 from "./components/__parts/filter-option-text/filter-option-text.component";
34
+ import * as i33 from "./components/__parts/filter-search-input/filter-search-input.component";
35
+ import * as i34 from "./components/__parts/filter-collapse-control/filter-collapse-control.component";
36
+ import * as i35 from "./components/__parts/field-header.component";
37
+ import * as i36 from "./components/__parts/filter-empty-message.component";
38
+ import * as i37 from "./components/__parts/filter-date-range/filter-date-range.component";
39
+ import * as i38 from "./components/__parts/filter-autocomplete-input/filter-autocomplete-input.component";
40
+ import * as i39 from "./components/__parts/filter-options-sort/filter-options-sort.component";
41
+ import * as i40 from "./components/__parts/html-dialog/html-dialog.component";
42
+ import * as i41 from "@angular/common";
43
+ import * as i42 from "@angular/forms";
44
+ import * as i43 from "@ng-select/ng-select";
45
+ import * as i44 from "@angular/material/checkbox";
46
+ import * as i45 from "@angular/material/button";
47
+ import * as i46 from "@angular/material/icon";
48
+ import * as i47 from "@angular/material/menu";
49
+ import * as i48 from "@angular/material/slide-toggle";
50
+ import * as i49 from "@angular/material/radio";
51
+ import * as i50 from "@angular/material/input";
52
+ import * as i51 from "@angular/material/autocomplete";
53
+ import * as i52 from "@angular/material/tooltip";
54
+ import * as i53 from "@angular/material/dialog";
55
+ import * as i54 from "@angular/material/progress-spinner";
56
+ import * as i55 from "@ngx-translate/core";
57
+ import * as i56 from "../dynamic-form/dynamic-form.module";
58
+ import * as i57 from "../../shared/components/nuxeo-dialog/nuxeo-dialog.module";
59
+ import * as i58 from "../../directive/directive.module";
60
+ import * as i59 from "../ndf-datepicker/ndf-datepicker.module";
61
+ import * as i60 from "ngx-mask";
62
+ export declare class NdfFiltersPanelModule {
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<NdfFiltersPanelModule, never>;
64
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NdfFiltersPanelModule, [typeof i1.FiltersPanelComponent, typeof i2.PredicateFieldComponent, typeof i3.AggregationFieldComponent, typeof i4.CustomFieldComponent, typeof i5.AggregationAutocompleteComponent, typeof i6.AggregationSelectComponent, typeof i7.AggregationCheckboxComponent, typeof i8.AggregationSwitchComponent, typeof i9.AggregationRadioComponent, typeof i10.AggregationCustomComponent, typeof i11.AggregationDateListComponent, typeof i12.PredicateTextInputComponent, typeof i13.PredicateDateInputComponent, typeof i14.ActiveUserSwitchComponent, typeof i15.CheckboxTemplateDirective, typeof i16.RadioTemplateDirective, typeof i17.SwitchTemplateDirective, typeof i18.DropdownTemplateDirective, typeof i19.AutocompleteTemplateDirective, typeof i20.CustomTemplateDirective, typeof i21.DropdownLabelTemplateDirective, typeof i21.DropdownMultiLabelTemplateDirective, typeof i22.DateListTemplateDirective, typeof i23.AutocompleteFilterPipe, typeof i24.FilterPipe, typeof i25.LocalizedLabelPipe, typeof i26.HashTranslatePipe, typeof i26.HashTranslateAsyncPipe, typeof i27.SanitizerPipe, typeof i28.SortListPipe, typeof i29.TooltipPipe, typeof i30.FiltersByRolesPipe, typeof i31.CheckConditionPipe, typeof i32.FilterOptionTextComponent, typeof i33.FilterSearchInputComponent, typeof i34.FilterCollapseControlComponent, typeof i35.FieldHeaderComponent, typeof i36.FilterEmptyMessageComponent, typeof i37.FilterDateRangeComponent, typeof i38.FilterAutocompleteInputComponent, typeof i39.FilterOptionsSortComponent, typeof i40.HtmlDialogComponent], [typeof i41.CommonModule, typeof i42.FormsModule, typeof i42.ReactiveFormsModule, typeof i43.NgSelectModule, typeof i44.MatCheckboxModule, typeof i45.MatButtonModule, typeof i46.MatIconModule, typeof i47.MatMenuModule, typeof i48.MatSlideToggleModule, typeof i49.MatRadioModule, typeof i50.MatInputModule, typeof i51.MatAutocompleteModule, typeof i52.MatTooltipModule, typeof i53.MatDialogModule, typeof i54.MatProgressSpinnerModule, typeof i55.TranslateModule, typeof i56.DynamicFormModule, typeof i57.NuxeoDialogModule, typeof i58.DirectiveModule, typeof i59.NdfDatepickerModule, typeof i60.NgxMaskModule], [typeof i1.FiltersPanelComponent, typeof i2.PredicateFieldComponent, typeof i3.AggregationFieldComponent, typeof i4.CustomFieldComponent, typeof i5.AggregationAutocompleteComponent, typeof i6.AggregationSelectComponent, typeof i7.AggregationCheckboxComponent, typeof i8.AggregationSwitchComponent, typeof i9.AggregationRadioComponent, typeof i10.AggregationCustomComponent, typeof i11.AggregationDateListComponent, typeof i12.PredicateTextInputComponent, typeof i13.PredicateDateInputComponent, typeof i14.ActiveUserSwitchComponent, typeof i15.CheckboxTemplateDirective, typeof i16.RadioTemplateDirective, typeof i17.SwitchTemplateDirective, typeof i18.DropdownTemplateDirective, typeof i19.AutocompleteTemplateDirective, typeof i20.CustomTemplateDirective, typeof i21.DropdownLabelTemplateDirective, typeof i21.DropdownMultiLabelTemplateDirective, typeof i22.DateListTemplateDirective, typeof i40.HtmlDialogComponent]>;
65
+ static ɵinj: i0.ɵɵInjectorDeclaration<NdfFiltersPanelModule>;
66
+ }
@@ -0,0 +1,12 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { Evaluator } from '../../../shared/evaluator';
3
+ import { NuxeoService } from '../../../core/services';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CheckConditionPipe implements PipeTransform {
6
+ nuxeoService: NuxeoService;
7
+ user: Record<string, any>;
8
+ constructor(nuxeoService: NuxeoService);
9
+ transform(condition: string, aggregations: Record<string, any>, language: string): Evaluator;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckConditionPipe, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<CheckConditionPipe, "checkCondition">;
12
+ }
@@ -6,3 +6,4 @@ export * from './sanitizer.pipe';
6
6
  export * from './sort.pipe';
7
7
  export * from './tooltip.pipe';
8
8
  export * from './roles-filters.pipe';
9
+ export * from './check-condition.pipe';
@@ -1,5 +1,5 @@
1
1
  import { PipeTransform } from '@angular/core';
2
- import { NuxeoService, RolesService } from '../../../../../core/services';
2
+ import { NuxeoService, RolesService } from '../../../core/services';
3
3
  import { FieldConfigModel } from '../models';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class FiltersByRolesPipe implements PipeTransform {
@@ -3,8 +3,9 @@ export * from './constants';
3
3
  export * from './containers';
4
4
  export * from './custom-components';
5
5
  export * from './directives';
6
- export * from './filters-panel.module';
6
+ export * from './ndf-filters-panel.module';
7
7
  export * from './models';
8
8
  export * from './pipes';
9
9
  export * from './services/filters-query.service';
10
+ export * from './services/filters-mapper.service';
10
11
  export * from './utility';
@@ -1,5 +1,5 @@
1
1
  import { Observable } from 'rxjs';
2
- import { NdfTransformService } from '../../../../../core/services/ndf-transform.service';
2
+ import { NdfTransformService } from '../../../core/services';
3
3
  import { FieldOptionsType, FilterOption } from '../models';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class AggregationFieldService {
@@ -1,4 +1,4 @@
1
- import { FieldConfigModel } from '../filters-panel';
1
+ import { FieldConfigModel } from '../models';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class FiltersMapperService {
4
4
  preparePayload(fields: FieldConfigModel[], criteria: Record<string, any>): {
@@ -1,3 +1,4 @@
1
1
  export * from './aggregation-field.service';
2
2
  export * from './dynamic-component-loader.service';
3
3
  export * from './filters-query.service';
4
+ export * from './filters-mapper.service';
@@ -1,2 +1,3 @@
1
1
  export * from './nxql';
2
2
  export * from './object';
3
+ export * from './nxql-query';
@@ -1,7 +1,8 @@
1
- import { ComparisonOperator, FieldValueObject, FieldConfigModel, NxQL } from '../filters-panel';
2
- import { OperatorReturn } from '../models';
1
+ import { ComparisonOperator, FieldConfigModel, FieldValueObject } from "../models";
2
+ import { OperatorValueObject } from '../models/operator-value-object';
3
+ import { NxQL } from './nxql';
3
4
  export declare class NxQlQuery extends NxQL {
4
- static preparePayloadItem(value: FieldValueObject, field: FieldConfigModel): OperatorReturn;
5
+ static preparePayloadItem(value: FieldValueObject, field: FieldConfigModel): OperatorValueObject;
5
6
  static prepareValueByOperator(operator: ComparisonOperator, fieldValue: FieldValueObject): string;
6
7
  static equals(value: string, prefix?: string): string;
7
8
  static like(value: string, prefix?: string): string;
@@ -1,4 +1,4 @@
1
- import { Prettify } from '../tables';
1
+ import { Prettify } from '../../shared/models';
2
2
  declare type BaseTabType<T> = {
3
3
  id: T;
4
4
  label: string;
@@ -16,7 +16,7 @@ export declare abstract class BaseReport<TDefinition extends ReportDefinitionMod
16
16
  protected _criteriaSub: ReplaySubject<{
17
17
  params?: Record<string, any>;
18
18
  payload?: {
19
- predicateList: import("nuxeo-development-framework").OperatorReturn[];
19
+ predicateList: import("nuxeo-development-framework").OperatorValueObject[];
20
20
  aggregationNames?: {
21
21
  name: string;
22
22
  interval: import("../models").TimeGroups;
@@ -26,7 +26,7 @@ export declare abstract class BaseReport<TDefinition extends ReportDefinitionMod
26
26
  criteria$: import("rxjs").Observable<{
27
27
  params?: Record<string, any>;
28
28
  payload?: {
29
- predicateList: import("nuxeo-development-framework").OperatorReturn[];
29
+ predicateList: import("nuxeo-development-framework").OperatorValueObject[];
30
30
  aggregationNames?: {
31
31
  name: string;
32
32
  interval: import("../models").TimeGroups;
@@ -43,7 +43,7 @@ export declare abstract class BaseReport<TDefinition extends ReportDefinitionMod
43
43
  onOpen: EventEmitter<{
44
44
  params?: Record<string, any>;
45
45
  payload?: {
46
- predicateList: import("nuxeo-development-framework").OperatorReturn[];
46
+ predicateList: import("nuxeo-development-framework").OperatorValueObject[];
47
47
  aggregationNames?: {
48
48
  name: string;
49
49
  interval: import("../models").TimeGroups;
@@ -20,7 +20,7 @@ export declare class NdfReportComponent extends DestroySubject {
20
20
  onOpen: EventEmitter<{
21
21
  params?: Record<string, any>;
22
22
  payload?: {
23
- predicateList: import("nuxeo-development-framework").OperatorReturn[];
23
+ predicateList: import("nuxeo-development-framework").OperatorValueObject[];
24
24
  aggregationNames?: {
25
25
  name: string;
26
26
  interval: import("../../models").TimeGroups;
@@ -5,7 +5,8 @@ import { Router } from '@angular/router';
5
5
  import { TranslateService } from '@ngx-translate/core';
6
6
  import { DestroySubject, FluidHeightDirective } from '../../../../../shared';
7
7
  import { Observable } from 'rxjs';
8
- import { FieldConfigModel, FilterQueryService, FiltersMapperService, FormQueryModel, NdfTableConfig } from '../../../../tables';
8
+ import { NdfTableConfig } from '../../../../tables';
9
+ import { FieldConfigModel, FilterQueryService, FiltersMapperService, FormQueryModel } from '../../../../ndf-filters';
9
10
  import { CriteriaModel, NdfReportsConfig, ReportConfigModel } from '../../models';
10
11
  import { ChartManagerService, NdfReportsService, ReportsStateService, ReportTransformService } from '../../services';
11
12
  import * as i0 from "@angular/core";
@@ -37,7 +38,7 @@ export declare class NdfReportsComponent extends DestroySubject implements OnIni
37
38
  readonly filtersParams$: Observable<{
38
39
  params?: Record<string, any>;
39
40
  payload?: {
40
- predicateList: import("../../../../tables").OperatorReturn[];
41
+ predicateList: import("../../../../ndf-filters").OperatorValueObject[];
41
42
  aggregationNames?: {
42
43
  name: string;
43
44
  interval: import("../../models").TimeGroups;
@@ -1,6 +1,6 @@
1
- import { OperatorReturn } from '../../../tables/ndf-table/models';
2
1
  import { CustomChartOptions } from '../../charts/models';
3
2
  import { CHARTS_TYPES, TIME_GROUPS } from '../constants';
3
+ import { OperatorValueObject } from '../../../ndf-filters/models/operator-value-object';
4
4
  export declare type ChartTypes = (typeof CHARTS_TYPES)[keyof typeof CHARTS_TYPES];
5
5
  export declare type TimeGroups = (typeof TIME_GROUPS)[keyof typeof TIME_GROUPS];
6
6
  declare type BaseChartType<Key extends ChartTypes> = Key extends (typeof CHARTS_TYPES)['verticalBar'] | (typeof CHARTS_TYPES)['horizontalBar'] ? 'bar' : Key;
@@ -10,7 +10,7 @@ export declare type ChartOptionsByType = {
10
10
  export declare type CriteriaModel = {
11
11
  params?: Record<string, any>;
12
12
  payload?: {
13
- predicateList: OperatorReturn[];
13
+ predicateList: OperatorValueObject[];
14
14
  aggregationNames?: {
15
15
  name: string;
16
16
  interval: TimeGroups;
@@ -1,4 +1,4 @@
1
- import { FieldConfigModel } from '../../../tables/ndf-table';
1
+ import { FieldConfigModel } from '../../../ndf-filters';
2
2
  import { ReportDetailsConfig } from './details';
3
3
  import { NdfReportsRequest } from './request';
4
4
  import { ReportDefinitionModel } from './report-config';
@@ -23,7 +23,7 @@ import * as i21 from "@angular/forms";
23
23
  import * as i22 from "@ng-select/ng-select";
24
24
  import * as i23 from "@angular/material/tooltip";
25
25
  import * as i24 from "../../../shared/directives/fluid-height.directive";
26
- import * as i25 from "../../tables/ndf-table/filters-panel/filters-panel.module";
26
+ import * as i25 from "../../ndf-filters/ndf-filters-panel.module";
27
27
  import * as i26 from "@angular/material/progress-spinner";
28
28
  import * as i27 from "../../../shared/components/nuxeo-dialog/nuxeo-dialog.module";
29
29
  import * as i28 from "../../tables/ndf-table/ndf-table.module";
@@ -31,6 +31,6 @@ import * as i29 from "../../../directive/directive.module";
31
31
  import * as i30 from "../../ndf-config-editor/public/editor-navigate-button";
32
32
  export declare class NdfReportsModule {
33
33
  static ɵfac: i0.ɵɵFactoryDeclaration<NdfReportsModule, never>;
34
- static ɵmod: i0.ɵɵNgModuleDeclaration<NdfReportsModule, [typeof i1.NdfReportsComponent, typeof i2.NdfReportComponent, typeof i3.ChartTypeSelectorComponent, typeof i4.DigitReportComponent, typeof i5.GraphReportComponent, typeof i6.DynamicTimelineReportComponent, typeof i7.TimeGroupSelectorComponent, typeof i8.GraphDialogComponent, typeof i9.TimelineDialogComponent, typeof i10.ChartPanelComponent, typeof i10.ChartPanelHeaderComponent, typeof i10.ChartPanelFooterComponent, typeof i11.ScrollableDivDirective, typeof i12.GraphChartComponent, typeof i13.DigitChartComponent], [typeof i14.CommonModule, typeof i15.TranslateModule, typeof i16.MatMenuModule, typeof i17.MatIconModule, typeof i18.MatButtonModule, typeof i19.ChartsModule, typeof i20.DynamicFormModule, typeof i21.ReactiveFormsModule, typeof i21.FormsModule, typeof i22.NgSelectModule, typeof i23.MatTooltipModule, typeof i24.FluidHeightModule, typeof i25.FiltersPanelModule, typeof i26.MatProgressSpinnerModule, typeof i27.NuxeoDialogModule, typeof i28.NdfTableModule, typeof i29.DirectiveModule, typeof i30.EditorNavigateButton], [typeof i1.NdfReportsComponent, typeof i2.NdfReportComponent]>;
34
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NdfReportsModule, [typeof i1.NdfReportsComponent, typeof i2.NdfReportComponent, typeof i3.ChartTypeSelectorComponent, typeof i4.DigitReportComponent, typeof i5.GraphReportComponent, typeof i6.DynamicTimelineReportComponent, typeof i7.TimeGroupSelectorComponent, typeof i8.GraphDialogComponent, typeof i9.TimelineDialogComponent, typeof i10.ChartPanelComponent, typeof i10.ChartPanelHeaderComponent, typeof i10.ChartPanelFooterComponent, typeof i11.ScrollableDivDirective, typeof i12.GraphChartComponent, typeof i13.DigitChartComponent], [typeof i14.CommonModule, typeof i15.TranslateModule, typeof i16.MatMenuModule, typeof i17.MatIconModule, typeof i18.MatButtonModule, typeof i19.ChartsModule, typeof i20.DynamicFormModule, typeof i21.ReactiveFormsModule, typeof i21.FormsModule, typeof i22.NgSelectModule, typeof i23.MatTooltipModule, typeof i24.FluidHeightModule, typeof i25.NdfFiltersPanelModule, typeof i26.MatProgressSpinnerModule, typeof i27.NuxeoDialogModule, typeof i28.NdfTableModule, typeof i29.DirectiveModule, typeof i30.EditorNavigateButton], [typeof i1.NdfReportsComponent, typeof i2.NdfReportComponent]>;
35
35
  static ɵinj: i0.ɵɵInjectorDeclaration<NdfReportsModule>;
36
36
  }
@@ -19,7 +19,7 @@ export declare class DynamicTimelineReportService {
19
19
  prepareData(): import("rxjs").UnaryFunction<import("rxjs").Observable<[DynamicLineChart, {
20
20
  params?: Record<string, any>;
21
21
  payload?: {
22
- predicateList: import("nuxeo-development-framework").OperatorReturn[];
22
+ predicateList: import("nuxeo-development-framework").OperatorValueObject[];
23
23
  aggregationNames?: {
24
24
  name: string;
25
25
  interval: TimeGroups;
@@ -10,7 +10,7 @@ export declare class TextSearchComponent extends DestroySubject implements OnIni
10
10
  searchChange: EventEmitter<string>;
11
11
  openModal: EventEmitter<void>;
12
12
  clear: EventEmitter<void>;
13
- get dialogConfig(): import("../../filters-panel").HtmlDialogConfig;
13
+ get dialogConfig(): import("../../../../ndf-filters").HtmlDialogConfig;
14
14
  get sendMode(): "realTime" | "triggered";
15
15
  get showSendButton(): boolean;
16
16
  ngOnInit(): void;
@@ -3,14 +3,15 @@ import { EventEmitter, OnChanges, SimpleChanges, TemplateRef } from '@angular/co
3
3
  import { MatDialog } from '@angular/material/dialog';
4
4
  import { TranslateService } from '@ngx-translate/core';
5
5
  import { Observable } from 'rxjs';
6
- import { AggregationResponse, FormQueryModel } from '../../filters-panel';
6
+ import { AggregationResponse, FormQueryModel } from '../../../../ndf-filters';
7
7
  import { CustomCriteriaModel, ExportType, NdfTableConfig, SortTableItem, TableColumnConfig, TableSortOptions, TableViewMode } from '../../models';
8
- import { FiltersMapperService, NdfTableConfigurationService, NdfTableService } from '../../services';
8
+ import { NdfTableConfigurationService, NdfTableService } from '../../services';
9
9
  import { PageEvent } from '@angular/material/paginator/paginator';
10
10
  import { DestroySubject } from '../../../../../shared/components';
11
11
  import { NuxeoPagination } from '../../../../../shared/models';
12
12
  import { DynamicTableService } from '../../../dynamic-table';
13
13
  import { CustomToastrService } from '../../../../custom-toastr/services/custom-toastr.service';
14
+ import { FiltersMapperService } from '../../../../ndf-filters/services';
14
15
  import * as i0 from "@angular/core";
15
16
  export declare class NdfTableComponent extends DestroySubject implements OnChanges {
16
17
  private _filtersMapper;
@@ -1,9 +1,3 @@
1
- import { ComparisonOperator } from '../filters-panel';
2
- export declare type OperatorReturn = {
3
- name: string;
4
- value: string;
5
- operator: ComparisonOperator;
6
- };
7
1
  export declare type NdfRequestConfig = {
8
2
  method: 'post' | 'get';
9
3
  url: string;
@@ -1,4 +1,4 @@
1
- import { ComparisonOperator, HtmlDialogConfig } from '../filters-panel';
1
+ import { ComparisonOperator, HtmlDialogConfig } from "../../../ndf-filters";
2
2
  export declare type GlobalSearchConfig = {
3
3
  fieldKey: string;
4
4
  label?: string;
@@ -1,4 +1,4 @@
1
- import { Prettify, TranslateKey } from '../filters-panel';
1
+ import { Prettify, TranslateKey } from '../../../../shared/models';
2
2
  declare type BaseTableModel = {
3
3
  toggleMode?: boolean;
4
4
  availableMode?: TableModeList;
@@ -1,4 +1,4 @@
1
- import { FieldConfigModel } from '../filters-panel';
1
+ import { FieldConfigModel } from "../../../ndf-filters";
2
2
  import { GlobalSearchConfig } from './search.config';
3
3
  import { TableModeConfig, TableSortConfig } from './table-mode';
4
4
  import { LabelValue, SortTableItem } from './types';