nuxeo-development-framework 5.2.3 → 5.2.4-1

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 (372) hide show
  1. package/bundles/nuxeo-development-framework.umd.js +7109 -711
  2. package/bundles/nuxeo-development-framework.umd.js.map +1 -1
  3. package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +48 -34
  4. package/esm2015/lib/components/dynamic-search/dynamic-search.module.js +5 -5
  5. package/esm2015/lib/components/ndf-datepicker/adapters/hijri-adapter.js +203 -0
  6. package/esm2015/lib/components/ndf-datepicker/adapters/index.js +3 -0
  7. package/esm2015/lib/components/ndf-datepicker/adapters/moment-adapter.js +186 -0
  8. package/esm2015/lib/components/ndf-datepicker/base/base-value-accessor.js +92 -0
  9. package/esm2015/lib/components/ndf-datepicker/base/index.js +2 -0
  10. package/esm2015/lib/components/ndf-datepicker/components/base-datepicker.js +37 -0
  11. package/esm2015/lib/components/ndf-datepicker/components/index.js +4 -0
  12. package/esm2015/lib/components/ndf-datepicker/components/input-date.component.js +110 -0
  13. package/esm2015/lib/components/ndf-datepicker/components/input-range-date.component.js +124 -0
  14. package/esm2015/lib/components/ndf-datepicker/constants/date-locale-keys.js +7 -0
  15. package/esm2015/lib/components/ndf-datepicker/constants/date-picker.js +2 -0
  16. package/esm2015/lib/components/ndf-datepicker/constants/date-type.js +5 -0
  17. package/esm2015/lib/components/ndf-datepicker/constants/formats.js +24 -0
  18. package/esm2015/lib/components/ndf-datepicker/constants/hijri-dates-names.js +117 -0
  19. package/esm2015/lib/components/ndf-datepicker/constants/index.js +6 -0
  20. package/esm2015/lib/components/ndf-datepicker/containers/datepicker-container.js +37 -0
  21. package/esm2015/lib/components/ndf-datepicker/containers/index.js +3 -0
  22. package/esm2015/lib/components/ndf-datepicker/containers/ndf-gregorian-datepicker.component.js +105 -0
  23. package/esm2015/lib/components/ndf-datepicker/containers/ndf-hijri-datepicker.component.js +112 -0
  24. package/esm2015/lib/components/ndf-datepicker/index.js +10 -0
  25. package/esm2015/lib/components/ndf-datepicker/models/data-types.js +2 -0
  26. package/esm2015/lib/components/ndf-datepicker/models/index.js +3 -0
  27. package/esm2015/lib/components/ndf-datepicker/models/value-object.js +2 -0
  28. package/esm2015/lib/components/ndf-datepicker/ndf-datepicker.component.js +198 -0
  29. package/esm2015/lib/components/ndf-datepicker/ndf-datepicker.module.js +66 -0
  30. package/esm2015/lib/components/ndf-datepicker/services/calendar.service.js +130 -0
  31. package/esm2015/lib/components/ndf-datepicker/services/index.js +3 -0
  32. package/esm2015/lib/components/ndf-datepicker/services/localize-state.service.js +41 -0
  33. package/esm2015/lib/components/no-data-found/index.js +3 -0
  34. package/esm2015/lib/components/no-data-found/no-data-found.component.js +33 -0
  35. package/esm2015/lib/components/no-data-found/no-data.module.js +19 -0
  36. package/esm2015/lib/components/notifications/models/common.js +1 -1
  37. package/esm2015/lib/components/{dynamic-table → tables/dynamic-table}/directives/empty-state.directive.js +1 -1
  38. package/esm2015/lib/components/tables/dynamic-table/dynamic-table/dynamic-table.component.js +353 -0
  39. package/esm2015/lib/components/tables/dynamic-table/dynamic-table.module.js +51 -0
  40. package/esm2015/lib/components/tables/dynamic-table/index.js +2 -0
  41. package/esm2015/lib/components/tables/dynamic-table/public-api.js +5 -0
  42. package/esm2015/lib/components/tables/dynamic-table/services/dynamic-table.service.js +16 -0
  43. package/esm2015/lib/components/{dynamic-table → tables}/index.js +1 -1
  44. package/esm2015/lib/components/tables/ndf-table/components/index.js +6 -0
  45. package/esm2015/lib/components/tables/ndf-table/components/mode-toggler/mode-toggler.component.js +45 -0
  46. package/esm2015/lib/components/tables/ndf-table/components/sorting-list/sorting-list.component.js +42 -0
  47. package/esm2015/lib/components/tables/ndf-table/components/table-columns-toggler/table-columns-toggler.component.js +123 -0
  48. package/esm2015/lib/components/tables/ndf-table/components/table-export/table-export.component.js +41 -0
  49. package/esm2015/lib/components/tables/ndf-table/components/text-search/text-search.component.js +74 -0
  50. package/esm2015/lib/components/tables/ndf-table/constants/index.js +2 -0
  51. package/esm2015/lib/components/tables/ndf-table/constants/sizes.js +19 -0
  52. package/esm2015/lib/components/tables/ndf-table/containers/index.js +2 -0
  53. package/esm2015/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.js +404 -0
  54. package/esm2015/lib/components/tables/ndf-table/directives/actions.directive.js +28 -0
  55. package/esm2015/lib/components/tables/ndf-table/directives/filter-custom.directive.js +28 -0
  56. package/esm2015/lib/components/tables/ndf-table/directives/fluid-height.directive.js +112 -0
  57. package/esm2015/lib/components/tables/ndf-table/directives/index.js +5 -0
  58. package/esm2015/lib/components/tables/ndf-table/directives/search.directive.js +28 -0
  59. package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-aggregation-field.component.js +91 -0
  60. package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-checkbox-radio.component.js +66 -0
  61. package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-custom-field.component.js +46 -0
  62. package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-predicate-field.component.js +43 -0
  63. package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-value-accessor.component.js +34 -0
  64. package/esm2015/lib/components/tables/ndf-table/filters-panel/base/index.js +6 -0
  65. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/field-header.component.js +36 -0
  66. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-autocomplete-input/filter-autocomplete-input.component.js +97 -0
  67. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-autocomplete-input/filter-autocomplete.service.js +43 -0
  68. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-collapse-control/filter-collapse-control.component.js +44 -0
  69. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-date-range/filter-date-range.component.js +89 -0
  70. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-empty-message.component.js +30 -0
  71. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-option-text/filter-option-text.component.js +33 -0
  72. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-options-sort/filter-options-sort.component.js +34 -0
  73. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-search-input/filter-search-input.component.js +36 -0
  74. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/html-dialog/html-dialog.component.js +34 -0
  75. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/index.js +10 -0
  76. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-autocomplete/aggregation-autocomplete.component.js +109 -0
  77. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-checkbox/aggregation-checkbox.component.js +65 -0
  78. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-custom/aggregation-custom.component.js +66 -0
  79. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-date-list/aggregation-date-list.component.js +219 -0
  80. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-radio/aggregation-radio.component.js +68 -0
  81. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-select/aggregation-select.component.js +83 -0
  82. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-switch/aggregation-switch.component.js +71 -0
  83. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/index.js +11 -0
  84. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/predicate-date-input/predicate-date-input.component.js +146 -0
  85. package/esm2015/lib/components/tables/ndf-table/filters-panel/components/predicate-text-input/predicate-text-input.component.js +144 -0
  86. package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/common.js +4 -0
  87. package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/field.js +6 -0
  88. package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/index.js +5 -0
  89. package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/operators.js +18 -0
  90. package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/sort.js +23 -0
  91. package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/type.js +26 -0
  92. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/aggregation-field/aggregation-field.component.js +78 -0
  93. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/base-field.js +62 -0
  94. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/custom-field/custom-field.component.js +73 -0
  95. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/filters-panel/base-filters-panel.js +55 -0
  96. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/filters-panel/filters-panel.component.js +122 -0
  97. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/index.js +5 -0
  98. package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/predicate-field/predicate-field.component.js +71 -0
  99. package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/active-user-switch.component.js +55 -0
  100. package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/active-user.service.js +17 -0
  101. package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/user-types.js +2 -0
  102. package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/index.js +2 -0
  103. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/autocomplete-template.directive.js +28 -0
  104. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/checkbox-template.directive.js +28 -0
  105. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/custom-template.directive.js +28 -0
  106. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/date-template.directive.js +28 -0
  107. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/dropdown-label-template.directive.js +53 -0
  108. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/dropdown-template.directive.js +28 -0
  109. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/index.js +9 -0
  110. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/radio-template.directive.js +28 -0
  111. package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/switch-template.directive.js +28 -0
  112. package/esm2015/lib/components/tables/ndf-table/filters-panel/filters-panel.module.js +205 -0
  113. package/esm2015/lib/components/tables/ndf-table/filters-panel/index.js +12 -0
  114. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/aggregation-field-config.js +2 -0
  115. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/aggregation-response.model.js +2 -0
  116. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/base-field-config.js +2 -0
  117. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/common.js +2 -0
  118. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/custom-field-config.js +2 -0
  119. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-config.model.js +2 -0
  120. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/autocomplete-options.js +2 -0
  121. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/checkbox-options.js +2 -0
  122. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/common-utils.js +2 -0
  123. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/custom-fields-options.js +2 -0
  124. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/custom-options.js +2 -0
  125. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/date-list-options.js +2 -0
  126. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/date-options.js +2 -0
  127. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/dropdown-options.js +2 -0
  128. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/index.js +12 -0
  129. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/input-options.js +2 -0
  130. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/radio-options.js +2 -0
  131. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/switch-options.js +2 -0
  132. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/filter-option.model.js +2 -0
  133. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/form-query-request.js +2 -0
  134. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/index.js +13 -0
  135. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/predicate-field-config.js +2 -0
  136. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/types-helper.js +2 -0
  137. package/esm2015/lib/components/tables/ndf-table/filters-panel/models/value-object.model.js +12 -0
  138. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/autocomplete-filter.pipe.js +27 -0
  139. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/filter.pipe.js +27 -0
  140. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/hash-translate.pipe.js +52 -0
  141. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/index.js +9 -0
  142. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/localized-label.pipe.js +28 -0
  143. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/roles-filters.pipe.js +31 -0
  144. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/sanitizer.pipe.js +34 -0
  145. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/sort.pipe.js +40 -0
  146. package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/tooltip.pipe.js +69 -0
  147. package/esm2015/lib/components/tables/ndf-table/filters-panel/services/aggregation-field.service.js +105 -0
  148. package/esm2015/lib/components/tables/ndf-table/filters-panel/services/dynamic-component-loader.service.js +59 -0
  149. package/esm2015/lib/components/tables/ndf-table/filters-panel/services/filters-query.service.js +117 -0
  150. package/esm2015/lib/components/tables/ndf-table/filters-panel/services/index.js +5 -0
  151. package/esm2015/lib/components/tables/ndf-table/filters-panel/services/ndf-transform.service.js +80 -0
  152. package/esm2015/lib/components/tables/ndf-table/filters-panel/utility/index.js +3 -0
  153. package/esm2015/lib/components/tables/ndf-table/filters-panel/utility/nxql.js +47 -0
  154. package/esm2015/lib/components/tables/ndf-table/filters-panel/utility/object.js +42 -0
  155. package/esm2015/lib/components/tables/ndf-table/index.js +2 -0
  156. package/esm2015/lib/components/tables/ndf-table/models/index.js +8 -0
  157. package/esm2015/lib/components/tables/ndf-table/models/payload-types.js +2 -0
  158. package/esm2015/lib/components/tables/ndf-table/models/search.config.js +2 -0
  159. package/esm2015/lib/components/tables/ndf-table/models/table-column.js +2 -0
  160. package/esm2015/lib/components/tables/ndf-table/models/table-config.js +2 -0
  161. package/esm2015/lib/components/tables/ndf-table/models/table-mode.js +2 -0
  162. package/esm2015/lib/components/tables/ndf-table/models/table-options.js +2 -0
  163. package/esm2015/lib/components/tables/ndf-table/models/types.js +2 -0
  164. package/esm2015/lib/components/tables/ndf-table/ndf-table.module.js +104 -0
  165. package/esm2015/lib/components/tables/ndf-table/public-api.js +8 -0
  166. package/esm2015/lib/components/tables/ndf-table/services/filters-mapper.service.js +60 -0
  167. package/esm2015/lib/components/tables/ndf-table/services/index.js +3 -0
  168. package/esm2015/lib/components/tables/ndf-table/services/ndf-table.service.js +27 -0
  169. package/esm2015/lib/components/tables/ndf-table/utils/index.js +2 -0
  170. package/esm2015/lib/components/tables/ndf-table/utils/nxql-query.js +52 -0
  171. package/esm2015/lib/components/tables/public-api.js +4 -0
  172. package/esm2015/lib/components/tables/table/dynamic-column/dynamic-column.component.js +68 -0
  173. package/esm2015/lib/components/tables/table/dynamic-component.js +59 -0
  174. package/esm2015/lib/components/tables/table/index.js +2 -0
  175. package/esm2015/lib/components/{table → tables/table}/page-sizes-list/page-sizes-list.component.js +1 -1
  176. package/esm2015/lib/components/tables/table/public-api.js +6 -0
  177. package/esm2015/lib/components/{table → tables/table}/table/table.component.js +10 -10
  178. package/esm2015/lib/components/tables/table/table.module.js +69 -0
  179. package/esm2015/lib/core/services/index.js +3 -0
  180. package/esm2015/lib/shared/models/index.js +2 -1
  181. package/esm2015/lib/shared/models/types-helper.js +2 -0
  182. package/esm2015/public-api.js +4 -7
  183. package/fesm2015/nuxeo-development-framework.js +6330 -551
  184. package/fesm2015/nuxeo-development-framework.js.map +1 -1
  185. package/lib/components/dynamic-search/dynamic-search/dynamic-search.component.d.ts +1 -1
  186. package/lib/components/dynamic-search/dynamic-search.module.d.ts +1 -1
  187. package/lib/components/ndf-datepicker/adapters/hijri-adapter.d.ts +35 -0
  188. package/lib/components/ndf-datepicker/adapters/index.d.ts +2 -0
  189. package/lib/components/ndf-datepicker/adapters/moment-adapter.d.ts +50 -0
  190. package/lib/components/ndf-datepicker/base/base-value-accessor.d.ts +38 -0
  191. package/lib/components/ndf-datepicker/base/index.d.ts +1 -0
  192. package/lib/components/ndf-datepicker/components/base-datepicker.d.ts +13 -0
  193. package/lib/components/ndf-datepicker/components/index.d.ts +3 -0
  194. package/lib/components/ndf-datepicker/components/input-date.component.d.ts +19 -0
  195. package/lib/components/ndf-datepicker/components/input-range-date.component.d.ts +19 -0
  196. package/lib/components/ndf-datepicker/constants/date-locale-keys.d.ts +6 -0
  197. package/lib/components/ndf-datepicker/constants/date-picker.d.ts +1 -0
  198. package/lib/components/ndf-datepicker/constants/date-type.d.ts +4 -0
  199. package/lib/components/ndf-datepicker/constants/formats.d.ts +5 -0
  200. package/lib/components/ndf-datepicker/constants/hijri-dates-names.d.ts +12 -0
  201. package/lib/components/ndf-datepicker/constants/index.d.ts +5 -0
  202. package/lib/components/ndf-datepicker/containers/datepicker-container.d.ts +15 -0
  203. package/lib/components/ndf-datepicker/containers/index.d.ts +2 -0
  204. package/lib/components/ndf-datepicker/containers/ndf-gregorian-datepicker.component.d.ts +10 -0
  205. package/lib/components/ndf-datepicker/containers/ndf-hijri-datepicker.component.d.ts +10 -0
  206. package/lib/components/ndf-datepicker/index.d.ts +9 -0
  207. package/lib/components/ndf-datepicker/models/data-types.d.ts +11 -0
  208. package/lib/components/ndf-datepicker/models/index.d.ts +2 -0
  209. package/lib/components/ndf-datepicker/models/value-object.d.ts +8 -0
  210. package/lib/components/ndf-datepicker/ndf-datepicker.component.d.ts +42 -0
  211. package/lib/components/ndf-datepicker/ndf-datepicker.module.d.ts +20 -0
  212. package/lib/components/ndf-datepicker/services/calendar.service.d.ts +33 -0
  213. package/lib/components/ndf-datepicker/services/index.d.ts +2 -0
  214. package/lib/components/ndf-datepicker/services/localize-state.service.d.ts +34 -0
  215. package/lib/components/no-data-found/index.d.ts +2 -0
  216. package/lib/components/no-data-found/no-data-found.component.d.ts +8 -0
  217. package/lib/components/no-data-found/no-data.module.d.ts +9 -0
  218. package/lib/components/notifications/models/common.d.ts +0 -1
  219. package/lib/components/{dynamic-table → tables/dynamic-table}/dynamic-table/dynamic-table.component.d.ts +7 -3
  220. package/lib/components/{dynamic-table → tables/dynamic-table}/dynamic-table.module.d.ts +3 -3
  221. package/lib/components/tables/index.d.ts +1 -0
  222. package/lib/components/tables/ndf-table/components/index.d.ts +5 -0
  223. package/lib/components/tables/ndf-table/components/mode-toggler/mode-toggler.component.d.ts +13 -0
  224. package/lib/components/tables/ndf-table/components/sorting-list/sorting-list.component.d.ts +12 -0
  225. package/lib/components/tables/ndf-table/components/table-columns-toggler/table-columns-toggler.component.d.ts +35 -0
  226. package/lib/components/tables/ndf-table/components/table-export/table-export.component.d.ts +13 -0
  227. package/lib/components/tables/ndf-table/components/text-search/text-search.component.d.ts +21 -0
  228. package/lib/components/tables/ndf-table/constants/index.d.ts +1 -0
  229. package/lib/components/tables/ndf-table/constants/sizes.d.ts +4 -0
  230. package/lib/components/tables/ndf-table/containers/index.d.ts +1 -0
  231. package/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.d.ts +119 -0
  232. package/lib/components/tables/ndf-table/directives/actions.directive.d.ts +9 -0
  233. package/lib/components/tables/ndf-table/directives/filter-custom.directive.d.ts +9 -0
  234. package/lib/components/tables/ndf-table/directives/fluid-height.directive.d.ts +36 -0
  235. package/lib/components/tables/ndf-table/directives/index.d.ts +4 -0
  236. package/lib/components/tables/ndf-table/directives/search.directive.d.ts +9 -0
  237. package/lib/components/tables/ndf-table/filters-panel/base/base-aggregation-field.component.d.ts +35 -0
  238. package/lib/components/tables/ndf-table/filters-panel/base/base-checkbox-radio.component.d.ts +22 -0
  239. package/lib/components/tables/ndf-table/filters-panel/base/base-custom-field.component.d.ts +19 -0
  240. package/lib/components/tables/ndf-table/filters-panel/base/base-predicate-field.component.d.ts +15 -0
  241. package/lib/components/tables/ndf-table/filters-panel/base/base-value-accessor.component.d.ts +20 -0
  242. package/lib/components/tables/ndf-table/filters-panel/base/index.d.ts +5 -0
  243. package/lib/components/tables/ndf-table/filters-panel/components/__parts/field-header.component.d.ts +5 -0
  244. package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-autocomplete-input/filter-autocomplete-input.component.d.ts +35 -0
  245. package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-autocomplete-input/filter-autocomplete.service.d.ts +13 -0
  246. package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-collapse-control/filter-collapse-control.component.d.ts +12 -0
  247. package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-date-range/filter-date-range.component.d.ts +16 -0
  248. package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-empty-message.component.d.ts +6 -0
  249. package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-option-text/filter-option-text.component.d.ts +9 -0
  250. package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-options-sort/filter-options-sort.component.d.ts +11 -0
  251. package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-search-input/filter-search-input.component.d.ts +10 -0
  252. package/lib/components/tables/ndf-table/filters-panel/components/__parts/html-dialog/html-dialog.component.d.ts +10 -0
  253. package/lib/components/tables/ndf-table/filters-panel/components/__parts/index.d.ts +9 -0
  254. package/lib/components/tables/ndf-table/filters-panel/components/aggregation-autocomplete/aggregation-autocomplete.component.d.ts +20 -0
  255. package/lib/components/tables/ndf-table/filters-panel/components/aggregation-checkbox/aggregation-checkbox.component.d.ts +10 -0
  256. package/lib/components/tables/ndf-table/filters-panel/components/aggregation-custom/aggregation-custom.component.d.ts +9 -0
  257. package/lib/components/tables/ndf-table/filters-panel/components/aggregation-date-list/aggregation-date-list.component.d.ts +41 -0
  258. package/lib/components/tables/ndf-table/filters-panel/components/aggregation-radio/aggregation-radio.component.d.ts +11 -0
  259. package/lib/components/tables/ndf-table/filters-panel/components/aggregation-select/aggregation-select.component.d.ts +14 -0
  260. package/lib/components/tables/ndf-table/filters-panel/components/aggregation-switch/aggregation-switch.component.d.ts +11 -0
  261. package/lib/components/tables/ndf-table/filters-panel/components/index.d.ts +10 -0
  262. package/lib/components/tables/ndf-table/filters-panel/components/predicate-date-input/predicate-date-input.component.d.ts +25 -0
  263. package/lib/components/tables/ndf-table/filters-panel/components/predicate-text-input/predicate-text-input.component.d.ts +40 -0
  264. package/lib/components/tables/ndf-table/filters-panel/constants/common.d.ts +3 -0
  265. package/lib/components/tables/ndf-table/filters-panel/constants/field.d.ts +5 -0
  266. package/lib/components/tables/ndf-table/filters-panel/constants/index.d.ts +4 -0
  267. package/lib/components/tables/ndf-table/filters-panel/constants/operators.d.ts +17 -0
  268. package/lib/components/tables/ndf-table/filters-panel/constants/sort.d.ts +2 -0
  269. package/lib/components/tables/ndf-table/filters-panel/constants/type.d.ts +25 -0
  270. package/lib/components/tables/ndf-table/filters-panel/containers/aggregation-field/aggregation-field.component.d.ts +13 -0
  271. package/lib/components/tables/ndf-table/filters-panel/containers/base-field.d.ts +21 -0
  272. package/lib/components/tables/ndf-table/filters-panel/containers/custom-field/custom-field.component.d.ts +13 -0
  273. package/lib/components/tables/ndf-table/filters-panel/containers/filters-panel/base-filters-panel.d.ts +19 -0
  274. package/lib/components/tables/ndf-table/filters-panel/containers/filters-panel/filters-panel.component.d.ts +48 -0
  275. package/lib/components/tables/ndf-table/filters-panel/containers/index.d.ts +4 -0
  276. package/lib/components/tables/ndf-table/filters-panel/containers/predicate-field/predicate-field.component.d.ts +12 -0
  277. package/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/active-user-switch.component.d.ts +14 -0
  278. package/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/active-user.service.d.ts +8 -0
  279. package/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/user-types.d.ts +29 -0
  280. package/lib/components/tables/ndf-table/filters-panel/custom-components/index.d.ts +1 -0
  281. package/lib/components/tables/ndf-table/filters-panel/directives/autocomplete-template.directive.d.ts +9 -0
  282. package/lib/components/tables/ndf-table/filters-panel/directives/checkbox-template.directive.d.ts +9 -0
  283. package/lib/components/tables/ndf-table/filters-panel/directives/custom-template.directive.d.ts +9 -0
  284. package/lib/components/tables/ndf-table/filters-panel/directives/date-template.directive.d.ts +9 -0
  285. package/lib/components/tables/ndf-table/filters-panel/directives/dropdown-label-template.directive.d.ts +16 -0
  286. package/lib/components/tables/ndf-table/filters-panel/directives/dropdown-template.directive.d.ts +9 -0
  287. package/lib/components/tables/ndf-table/filters-panel/directives/index.d.ts +8 -0
  288. package/lib/components/tables/ndf-table/filters-panel/directives/radio-template.directive.d.ts +9 -0
  289. package/lib/components/tables/ndf-table/filters-panel/directives/switch-template.directive.d.ts +9 -0
  290. package/lib/components/tables/ndf-table/filters-panel/filters-panel.module.d.ts +65 -0
  291. package/lib/components/tables/ndf-table/filters-panel/index.d.ts +11 -0
  292. package/lib/components/tables/ndf-table/filters-panel/models/aggregation-field-config.d.ts +42 -0
  293. package/lib/components/tables/ndf-table/filters-panel/models/aggregation-response.model.d.ts +20 -0
  294. package/lib/components/tables/ndf-table/filters-panel/models/base-field-config.d.ts +13 -0
  295. package/lib/components/tables/ndf-table/filters-panel/models/common.d.ts +5 -0
  296. package/lib/components/tables/ndf-table/filters-panel/models/custom-field-config.d.ts +7 -0
  297. package/lib/components/tables/ndf-table/filters-panel/models/field-config.model.d.ts +14 -0
  298. package/lib/components/tables/ndf-table/filters-panel/models/field-options/autocomplete-options.d.ts +6 -0
  299. package/lib/components/tables/ndf-table/filters-panel/models/field-options/checkbox-options.d.ts +6 -0
  300. package/lib/components/tables/ndf-table/filters-panel/models/field-options/common-utils.d.ts +35 -0
  301. package/lib/components/tables/ndf-table/filters-panel/models/field-options/custom-fields-options.d.ts +9 -0
  302. package/lib/components/tables/ndf-table/filters-panel/models/field-options/custom-options.d.ts +5 -0
  303. package/lib/components/tables/ndf-table/filters-panel/models/field-options/date-list-options.d.ts +10 -0
  304. package/lib/components/tables/ndf-table/filters-panel/models/field-options/date-options.d.ts +22 -0
  305. package/lib/components/tables/ndf-table/filters-panel/models/field-options/dropdown-options.d.ts +6 -0
  306. package/lib/components/tables/ndf-table/filters-panel/models/field-options/index.d.ts +11 -0
  307. package/lib/components/tables/ndf-table/filters-panel/models/field-options/input-options.d.ts +40 -0
  308. package/lib/components/tables/ndf-table/filters-panel/models/field-options/radio-options.d.ts +6 -0
  309. package/lib/components/tables/ndf-table/filters-panel/models/field-options/switch-options.d.ts +6 -0
  310. package/lib/components/tables/ndf-table/filters-panel/models/filter-option.model.d.ts +13 -0
  311. package/lib/components/tables/ndf-table/filters-panel/models/form-query-request.d.ts +5 -0
  312. package/lib/components/tables/ndf-table/filters-panel/models/index.d.ts +12 -0
  313. package/lib/components/tables/ndf-table/filters-panel/models/predicate-field-config.d.ts +7 -0
  314. package/lib/components/tables/ndf-table/filters-panel/models/types-helper.d.ts +47 -0
  315. package/lib/components/tables/ndf-table/filters-panel/models/value-object.model.d.ts +18 -0
  316. package/lib/components/tables/ndf-table/filters-panel/pipes/autocomplete-filter.pipe.d.ts +11 -0
  317. package/lib/components/tables/ndf-table/filters-panel/pipes/filter.pipe.d.ts +11 -0
  318. package/lib/components/tables/ndf-table/filters-panel/pipes/hash-translate.pipe.d.ts +18 -0
  319. package/lib/components/tables/ndf-table/filters-panel/pipes/index.d.ts +8 -0
  320. package/lib/components/tables/ndf-table/filters-panel/pipes/localized-label.pipe.d.ts +14 -0
  321. package/lib/components/tables/ndf-table/filters-panel/pipes/roles-filters.pipe.d.ts +12 -0
  322. package/lib/components/tables/ndf-table/filters-panel/pipes/sanitizer.pipe.d.ts +10 -0
  323. package/lib/components/tables/ndf-table/filters-panel/pipes/sort.pipe.d.ts +11 -0
  324. package/lib/components/tables/ndf-table/filters-panel/pipes/tooltip.pipe.d.ts +21 -0
  325. package/lib/components/tables/ndf-table/filters-panel/services/aggregation-field.service.d.ts +16 -0
  326. package/lib/components/tables/ndf-table/filters-panel/services/dynamic-component-loader.service.d.ts +18 -0
  327. package/lib/components/tables/ndf-table/filters-panel/services/filters-query.service.d.ts +58 -0
  328. package/lib/components/tables/ndf-table/filters-panel/services/index.d.ts +4 -0
  329. package/lib/components/tables/ndf-table/filters-panel/services/ndf-transform.service.d.ts +55 -0
  330. package/lib/components/tables/ndf-table/filters-panel/utility/index.d.ts +2 -0
  331. package/lib/components/tables/ndf-table/filters-panel/utility/nxql.d.ts +19 -0
  332. package/lib/components/tables/ndf-table/filters-panel/utility/object.d.ts +7 -0
  333. package/lib/components/tables/ndf-table/index.d.ts +1 -0
  334. package/lib/components/tables/ndf-table/models/index.d.ts +7 -0
  335. package/lib/components/tables/ndf-table/models/payload-types.d.ts +28 -0
  336. package/lib/components/tables/ndf-table/models/search.config.d.ts +13 -0
  337. package/lib/components/tables/ndf-table/models/table-column.d.ts +34 -0
  338. package/lib/components/tables/ndf-table/models/table-config.d.ts +45 -0
  339. package/lib/components/tables/ndf-table/models/table-mode.d.ts +25 -0
  340. package/lib/components/tables/ndf-table/models/table-options.d.ts +54 -0
  341. package/lib/components/tables/ndf-table/models/types.d.ts +38 -0
  342. package/lib/components/tables/ndf-table/ndf-table.module.d.ts +32 -0
  343. package/lib/components/tables/ndf-table/public-api.d.ts +7 -0
  344. package/lib/components/tables/ndf-table/services/filters-mapper.service.d.ts +17 -0
  345. package/lib/components/tables/ndf-table/services/index.d.ts +2 -0
  346. package/lib/components/tables/ndf-table/services/ndf-table.service.d.ts +10 -0
  347. package/lib/components/tables/ndf-table/utils/index.d.ts +1 -0
  348. package/lib/components/tables/ndf-table/utils/nxql-query.d.ts +10 -0
  349. package/lib/components/tables/public-api.d.ts +3 -0
  350. package/lib/components/{table → tables/table}/dynamic-column/dynamic-column.component.d.ts +1 -1
  351. package/lib/components/{table → tables/table}/dynamic-component.d.ts +1 -1
  352. package/lib/components/tables/table/index.d.ts +1 -0
  353. package/lib/components/tables/table/public-api.d.ts +5 -0
  354. package/lib/components/{table → tables/table}/table/table.component.d.ts +3 -3
  355. package/lib/components/{table → tables/table}/table.module.d.ts +3 -3
  356. package/lib/core/services/index.d.ts +2 -0
  357. package/lib/shared/models/index.d.ts +1 -0
  358. package/lib/shared/models/types-helper.d.ts +1 -0
  359. package/package.json +3 -2
  360. package/public-api.d.ts +3 -6
  361. package/esm2015/lib/components/dynamic-table/dynamic-table/dynamic-table.component.js +0 -349
  362. package/esm2015/lib/components/dynamic-table/dynamic-table.module.js +0 -51
  363. package/esm2015/lib/components/dynamic-table/public-api.js +0 -5
  364. package/esm2015/lib/components/dynamic-table/services/dynamic-table.service.js +0 -16
  365. package/esm2015/lib/components/table/dynamic-column/dynamic-column.component.js +0 -68
  366. package/esm2015/lib/components/table/dynamic-component.js +0 -59
  367. package/esm2015/lib/components/table/table.module.js +0 -69
  368. /package/lib/components/{dynamic-table → tables/dynamic-table}/directives/empty-state.directive.d.ts +0 -0
  369. /package/lib/components/{dynamic-table → tables/dynamic-table}/index.d.ts +0 -0
  370. /package/lib/components/{dynamic-table → tables/dynamic-table}/public-api.d.ts +0 -0
  371. /package/lib/components/{dynamic-table → tables/dynamic-table}/services/dynamic-table.service.d.ts +0 -0
  372. /package/lib/components/{table → tables/table}/page-sizes-list/page-sizes-list.component.d.ts +0 -0
@@ -0,0 +1,41 @@
1
+ import { SelectionModel } from '@angular/cdk/collections';
2
+ import { OnInit } from '@angular/core';
3
+ import { FormControl } from '@angular/forms';
4
+ import { BaseAggregationField } from '../../base';
5
+ import { FieldValueObject } from '../../models';
6
+ import * as i0 from "@angular/core";
7
+ export declare class AggregationDateListComponent extends BaseAggregationField<'dateList', string[] | FieldValueObject<string>> implements OnInit {
8
+ private _controlContainer;
9
+ private _renderer;
10
+ private _el;
11
+ minMaxDateCtrl: FormControl;
12
+ selectionModel: SelectionModel<any>;
13
+ internalValue: any;
14
+ viewLayout: {
15
+ readonly list: "list";
16
+ readonly dropdown: "dropdown";
17
+ };
18
+ writeValue(obj: string[] | FieldValueObject): void;
19
+ private _initValue;
20
+ private _handleSelection;
21
+ ngOnInit(): void;
22
+ updateValueSelection(value: string[]): void;
23
+ updateSelectValue(value: string): void;
24
+ updateValueMinMax(value: {
25
+ min: string;
26
+ max: string;
27
+ }): void;
28
+ updateValue(value: any): void;
29
+ clearSelected(): void;
30
+ private _appendMinMaxControl;
31
+ private _addMinMaxListener;
32
+ private _addSelectionListener;
33
+ private _resetMinMaxCtrl;
34
+ private _internalReset;
35
+ private _onChange;
36
+ private _isDropdown;
37
+ private _isList;
38
+ private _updateVisibility;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<AggregationDateListComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<AggregationDateListComponent, "aggregation-date-list", never, {}, {}, never, never>;
41
+ }
@@ -0,0 +1,11 @@
1
+ import { SelectionModel } from '@angular/cdk/collections';
2
+ import { OnInit, TemplateRef } from '@angular/core';
3
+ import { AggregationBaseSelectionComponent } from '../../base';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AggregationRadioComponent extends AggregationBaseSelectionComponent<'radio'> implements OnInit {
6
+ radioTemplate: TemplateRef<any> | undefined;
7
+ selectionModel: SelectionModel<any>;
8
+ ngOnInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<AggregationRadioComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<AggregationRadioComponent, "app-aggregation-radio", never, {}, {}, ["radioTemplate"], never>;
11
+ }
@@ -0,0 +1,14 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { BaseAggregationField } from '../../base';
3
+ import { FilterOption } from '../../models';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AggregationSelectComponent extends BaseAggregationField<'dropdown'> {
6
+ labelTemplate: TemplateRef<any> | undefined;
7
+ multiLabelTemplate: TemplateRef<any> | undefined;
8
+ internalValue: string | string[];
9
+ searchFn: (term: string, item: FilterOption) => boolean;
10
+ writeValue(obj: string | string[]): void;
11
+ updateValue(value: string | string[]): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<AggregationSelectComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<AggregationSelectComponent, "app-aggregation-select", never, { "labelTemplate": "labelTemplate"; "multiLabelTemplate": "multiLabelTemplate"; }, {}, never, never>;
14
+ }
@@ -0,0 +1,11 @@
1
+ import { SelectionModel } from '@angular/cdk/collections';
2
+ import { OnInit, TemplateRef } from '@angular/core';
3
+ import { AggregationBaseSelectionComponent } from '../../base';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AggregationSwitchComponent extends AggregationBaseSelectionComponent<'switch'> implements OnInit {
6
+ switchTemplate: TemplateRef<any> | undefined;
7
+ selectionModel: SelectionModel<any>;
8
+ ngOnInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<AggregationSwitchComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<AggregationSwitchComponent, "app-aggregation-switch", never, {}, {}, ["switchTemplate"], never>;
11
+ }
@@ -0,0 +1,10 @@
1
+ export * from './__parts';
2
+ export * from './aggregation-autocomplete/aggregation-autocomplete.component';
3
+ export * from './aggregation-checkbox/aggregation-checkbox.component';
4
+ export * from './aggregation-custom/aggregation-custom.component';
5
+ export * from './aggregation-date-list/aggregation-date-list.component';
6
+ export * from './aggregation-radio/aggregation-radio.component';
7
+ export * from './aggregation-select/aggregation-select.component';
8
+ export * from './aggregation-switch/aggregation-switch.component';
9
+ export * from './predicate-text-input/predicate-text-input.component';
10
+ export * from './predicate-date-input/predicate-date-input.component';
@@ -0,0 +1,25 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl, FormControl, ValidationErrors, Validators } from '@angular/forms';
3
+ import { BasePredicateField } from '../../base';
4
+ import { FieldValueObject } from '../../models';
5
+ import * as i0 from "@angular/core";
6
+ declare type DateType = string | FieldValueObject<string> | {
7
+ min: string;
8
+ max: string;
9
+ };
10
+ export declare class PredicateDateInputComponent extends BasePredicateField<'date', string | FieldValueObject<string>> implements OnInit {
11
+ formDate: FormControl;
12
+ get isDateRange(): boolean;
13
+ get validators(): (typeof Validators.required)[];
14
+ get debounceTime(): number;
15
+ writeValue(obj: DateType): void;
16
+ validate(control: AbstractControl): ValidationErrors;
17
+ ngOnInit(): void;
18
+ private _handelDateObj;
19
+ private _handelFieldValueData;
20
+ private _prepareDateToEmit;
21
+ private _normalizeDateRange;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<PredicateDateInputComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<PredicateDateInputComponent, "lib-predicate-date-input", never, {}, {}, never, never>;
24
+ }
25
+ export {};
@@ -0,0 +1,40 @@
1
+ import { KeyValue } from '@angular/common';
2
+ import { OnInit } from '@angular/core';
3
+ import { FormControl } from '@angular/forms';
4
+ import { BasePredicateField } from '../../base';
5
+ import { FieldValueObject, HtmlDialogConfig } from '../../models';
6
+ import * as i0 from "@angular/core";
7
+ export declare class PredicateTextInputComponent extends BasePredicateField<'input', string | FieldValueObject<string>> implements OnInit {
8
+ private readonly _dialog;
9
+ internalValue: FormControl;
10
+ selectValue: KeyValue<string, string>;
11
+ get selectConfig(): {
12
+ selectedValue?: string;
13
+ items: KeyValue<string, string>[];
14
+ };
15
+ get tooltip(): string;
16
+ get dialogConfig(): HtmlDialogConfig;
17
+ get maskOptions(): {
18
+ mask: string;
19
+ shownMaskExpression?: string;
20
+ dropSpecialCharacters?: boolean;
21
+ showMaskTyped?: boolean;
22
+ validation?: boolean;
23
+ allowNegativeNumbers?: boolean;
24
+ keepCharacterPositions?: boolean;
25
+ leadZero?: boolean;
26
+ hiddenInput?: boolean;
27
+ clearIfNotMatch?: boolean;
28
+ prefix?: string;
29
+ suffix?: string;
30
+ };
31
+ writeValue(data: string | FieldValueObject<string>): void;
32
+ ngOnInit(): void;
33
+ updateValue(value: string): void;
34
+ updateObjectValue(): void;
35
+ changeOperator(event: KeyValue<string, string>): void;
36
+ openModal(): void;
37
+ private _prepareSelectList;
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<PredicateTextInputComponent, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<PredicateTextInputComponent, "predicate-text-input", never, {}, {}, never, never>;
40
+ }
@@ -0,0 +1,3 @@
1
+ export declare const MIN_VISIBLE_COUNT = 10;
2
+ export declare const DEFAULT_DEBOUNCE_TIME = 100;
3
+ export declare const VALUE_OBJECT = "__valueObject__";
@@ -0,0 +1,5 @@
1
+ export declare const FIELD_SEND_MODE: {
2
+ readonly payload: "payload";
3
+ readonly queryParam: "queryParam";
4
+ readonly custom: "custom";
5
+ };
@@ -0,0 +1,4 @@
1
+ export * from './common';
2
+ export * from './field';
3
+ export * from './operators';
4
+ export * from './type';
@@ -0,0 +1,17 @@
1
+ export declare const COMPARISON_OPERATOR: {
2
+ readonly equals: "=";
3
+ readonly notEquals: "!=";
4
+ readonly lessThan: "<";
5
+ readonly greaterThan: ">";
6
+ readonly in: "IN";
7
+ readonly notIn: "NOT IN";
8
+ readonly between: "BETWEEN";
9
+ readonly lessThanOrEqual: "<=";
10
+ readonly greaterThanOrEqual: ">=";
11
+ readonly like: "LIKE";
12
+ readonly iLike: "ILIKE";
13
+ readonly notLike: "NOT LIKE";
14
+ readonly notILike: "NOT ILIKE";
15
+ readonly startsWith: "STARTSWITH";
16
+ readonly fullText: "FULLTEXT";
17
+ };
@@ -0,0 +1,2 @@
1
+ import { SortModel } from '../models';
2
+ export declare const SORT_OPTIONS: SortModel[];
@@ -0,0 +1,25 @@
1
+ export declare const AGGREGATION_FIELD_TYPES: {
2
+ readonly dropdown: "dropdown";
3
+ readonly checkbox: "checkbox";
4
+ readonly radio: "radio";
5
+ readonly switch: "switch";
6
+ readonly autocomplete: "autocomplete";
7
+ readonly dateList: "dateList";
8
+ readonly custom: "custom";
9
+ };
10
+ export declare const DATE_LIST_VIEW: {
11
+ readonly list: "list";
12
+ readonly dropdown: "dropdown";
13
+ };
14
+ export declare const FIELD_TYPE: {
15
+ readonly aggregation: "aggregation";
16
+ readonly predicate: "predicate";
17
+ readonly custom: "custom";
18
+ };
19
+ export declare const PREDICATE_FIELD_TYPES: {
20
+ readonly input: "input";
21
+ readonly date: "date";
22
+ };
23
+ export declare const CUSTOM_FIELD_TYPES: {
24
+ readonly activeUser: "activeUser";
25
+ };
@@ -0,0 +1,13 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { AggregationFieldConfig, AggregationResponse } from '../../models';
3
+ import { BaseField } from '../base-field';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AggregationFieldComponent extends BaseField<AggregationFieldConfig> {
6
+ aggregation: AggregationResponse;
7
+ contentTemplate: TemplateRef<any> | undefined;
8
+ private readonly handlers;
9
+ ngOnInit(): void;
10
+ private _prepareField;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AggregationFieldComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<AggregationFieldComponent, "app-aggregation-field", never, { "aggregation": "aggregation"; "contentTemplate": "contentTemplate"; }, {}, never, never>;
13
+ }
@@ -0,0 +1,21 @@
1
+ import { BaseCustomValueAccessor } from '../base';
2
+ import { ComponentRef, OnChanges, OnDestroy, SimpleChanges, ViewContainerRef } from '@angular/core';
3
+ import { AbstractControl, ValidationErrors } from '@angular/forms';
4
+ import { DynamicComponentLoaderService } from '../services';
5
+ import { FieldConfig } from '../models';
6
+ import * as i0 from "@angular/core";
7
+ export declare abstract class BaseField<TFieldConfig extends FieldConfig> extends BaseCustomValueAccessor<any, any> implements OnChanges, OnDestroy {
8
+ container: ViewContainerRef;
9
+ protected dynamicComponent: DynamicComponentLoaderService;
10
+ fieldConfig: TFieldConfig;
11
+ protected _componentRef: ComponentRef<any>;
12
+ internalValue: any;
13
+ writeValue(obj: any): void;
14
+ validate(control: AbstractControl): ValidationErrors;
15
+ registerOnValidatorChange?(fn: () => void): void;
16
+ ngOnChanges(changes: SimpleChanges): void;
17
+ ngOnDestroy(): void;
18
+ protected _prepareValueAccessor(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseField<any>, never>;
20
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BaseField<any>, never, never, { "fieldConfig": "fieldConfig"; }, {}, never>;
21
+ }
@@ -0,0 +1,13 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { AggregationResponse, CustomFieldConfig } from '../../models';
3
+ import { BaseField } from '../base-field';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CustomFieldComponent extends BaseField<CustomFieldConfig> implements OnInit {
6
+ aggregations: Record<string, AggregationResponse>;
7
+ private readonly handlers;
8
+ ngOnInit(): void;
9
+ private _prepareComponent;
10
+ private _prepareField;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomFieldComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomFieldComponent, "app-custom-field", never, { "aggregations": "aggregations"; }, {}, never, never>;
13
+ }
@@ -0,0 +1,19 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { DestroySubject } from '../../../../../../shared/components';
3
+ import { AggregationFieldType } from '../../models';
4
+ import * as i0 from "@angular/core";
5
+ export declare abstract class BaseFiltersPanel extends DestroySubject {
6
+ autocompleteTemplate: TemplateRef<any>;
7
+ checkboxTemplate: TemplateRef<any>;
8
+ customTemplate: TemplateRef<any>;
9
+ dropdownTemplate: TemplateRef<any>;
10
+ dropdownLabelTemplate: TemplateRef<any>;
11
+ dropdownMultiLabelTemplate: TemplateRef<any>;
12
+ radioTemplate: TemplateRef<any>;
13
+ switchTemplate: TemplateRef<any>;
14
+ dateListTemplate: TemplateRef<any>;
15
+ customTemplateRef: TemplateRef<any>;
16
+ getContentTemplate(type: AggregationFieldType): TemplateRef<any>;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseFiltersPanel, never>;
18
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BaseFiltersPanel, never, never, { "customTemplateRef": "customTemplateRef"; }, {}, ["autocompleteTemplate", "checkboxTemplate", "customTemplate", "dropdownTemplate", "dropdownLabelTemplate", "dropdownMultiLabelTemplate", "radioTemplate", "switchTemplate", "dateListTemplate"]>;
19
+ }
@@ -0,0 +1,48 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import { Observable } from 'rxjs';
4
+ import { AggregationResponse, FieldConfigModel, FormQueryModel } from '../../models';
5
+ import { BaseFiltersPanel } from './base-filters-panel';
6
+ import { Direction } from '@angular/cdk/bidi';
7
+ import { TranslateService } from '@ngx-translate/core';
8
+ import * as i0 from "@angular/core";
9
+ export declare class FiltersPanelComponent extends BaseFiltersPanel implements OnInit {
10
+ private _translateService;
11
+ direction$: Observable<Direction>;
12
+ aggregations: Record<string, AggregationResponse>;
13
+ private _fieldsSub;
14
+ private _activeQuerySub;
15
+ set fields(vals: FieldConfigModel[]);
16
+ get fields(): FieldConfigModel[];
17
+ set activeQuery(obj: FormQueryModel);
18
+ filterChanged: EventEmitter<Record<string, any>>;
19
+ fieldTypes: {
20
+ readonly aggregation: "aggregation";
21
+ readonly predicate: "predicate";
22
+ readonly custom: "custom";
23
+ };
24
+ FieldRenderType: {
25
+ readonly dropdown: "dropdown";
26
+ readonly checkbox: "checkbox";
27
+ readonly radio: "radio";
28
+ readonly switch: "switch";
29
+ readonly autocomplete: "autocomplete";
30
+ readonly dateList: "dateList";
31
+ readonly custom: "custom";
32
+ };
33
+ formGroup: FormGroup;
34
+ constructor(_translateService: TranslateService);
35
+ trackByFieldKey(_: number, field: FieldConfigModel): string;
36
+ get hasValues(): boolean;
37
+ ngOnInit(): void;
38
+ resetFilters(): void;
39
+ private _sortItems;
40
+ private _initFormGroup;
41
+ private _patchActiveQuery;
42
+ private _prepareFiltersForm;
43
+ private _handleFormGroupChanges;
44
+ private _removeControls;
45
+ private _handelActiveQueryChange;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<FiltersPanelComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<FiltersPanelComponent, "app-filters-panel", never, { "aggregations": "aggregations"; "fields": "fields"; "activeQuery": "activeQuery"; }, { "filterChanged": "filterChanged"; }, never, never>;
48
+ }
@@ -0,0 +1,4 @@
1
+ export * from './filters-panel/filters-panel.component';
2
+ export * from './predicate-field/predicate-field.component';
3
+ export * from './aggregation-field/aggregation-field.component';
4
+ export * from './custom-field/custom-field.component';
@@ -0,0 +1,12 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { PredicateFieldConfig } from '../../models';
3
+ import { BaseField } from '../base-field';
4
+ import * as i0 from "@angular/core";
5
+ export declare class PredicateFieldComponent extends BaseField<PredicateFieldConfig> implements OnInit {
6
+ private readonly handlers;
7
+ ngOnInit(): void;
8
+ private _prepareComponent;
9
+ private _prepareField;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<PredicateFieldComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<PredicateFieldComponent, "app-predicate-field", never, {}, {}, never, never>;
12
+ }
@@ -0,0 +1,14 @@
1
+ import { MatSlideToggleChange } from '@angular/material/slide-toggle';
2
+ import { BaseCustomField } from '../../base/base-custom-field.component';
3
+ import { FieldValueObject } from '../../models';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ActiveUserSwitchComponent extends BaseCustomField<'activeUser', string> {
6
+ private readonly _userService;
7
+ isUserSelected: boolean;
8
+ writeValue(value: string | FieldValueObject<string>): void;
9
+ toggle({ checked }: MatSlideToggleChange): void;
10
+ getValue(): any;
11
+ updateObjectValue(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActiveUserSwitchComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActiveUserSwitchComponent, "active-user-switch", never, {}, {}, never, never>;
14
+ }
@@ -0,0 +1,8 @@
1
+ import { BaseService } from '../../../../../../shared/services';
2
+ import { User } from './user-types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ActiveUserService extends BaseService {
5
+ getCurrentUser(): User;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActiveUserService, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<ActiveUserService>;
8
+ }
@@ -0,0 +1,29 @@
1
+ export declare type User = {
2
+ 'entity-type': string;
3
+ id: string;
4
+ properties: UserProperties;
5
+ extendedGroups: any[];
6
+ isPartial: boolean;
7
+ isAdministrator: boolean;
8
+ isAnonymous: boolean;
9
+ birthdate: any;
10
+ phonenumber: any;
11
+ avatar: any;
12
+ userGroups: UserGroup[];
13
+ fullName: string;
14
+ };
15
+ export declare type UserProperties = {
16
+ firstName: string;
17
+ lastName: string;
18
+ jobTitle: any;
19
+ tenantId: any;
20
+ groups: any[];
21
+ company: any;
22
+ email: string;
23
+ username: string;
24
+ };
25
+ export declare type UserGroup = {
26
+ name: string;
27
+ label: string;
28
+ url: string;
29
+ };
@@ -0,0 +1 @@
1
+ export * from './active-user-switch/active-user-switch.component';
@@ -0,0 +1,9 @@
1
+ import { InjectionToken, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const AUTOCOMPLETE_TEMPLATE: InjectionToken<AutocompleteTemplateDirective>;
4
+ export declare class AutocompleteTemplateDirective {
5
+ template: TemplateRef<any>;
6
+ constructor(template: TemplateRef<any>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteTemplateDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AutocompleteTemplateDirective, "[autocompleteTemplate]", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { InjectionToken, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const CHECKBOX_TEMPLATE: InjectionToken<CheckboxTemplateDirective>;
4
+ export declare class CheckboxTemplateDirective {
5
+ template: TemplateRef<any>;
6
+ constructor(template: TemplateRef<any>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxTemplateDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CheckboxTemplateDirective, "[checkboxTemplate]", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { InjectionToken, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const CUSTOM_TEMPLATE: InjectionToken<CustomTemplateDirective>;
4
+ export declare class CustomTemplateDirective {
5
+ template: TemplateRef<any>;
6
+ constructor(template: TemplateRef<any>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomTemplateDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CustomTemplateDirective, "[customTemplate]", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { InjectionToken, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const DATE_LIST_TEMPLATE: InjectionToken<DateListTemplateDirective>;
4
+ export declare class DateListTemplateDirective {
5
+ template: TemplateRef<any>;
6
+ constructor(template: TemplateRef<any>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateListTemplateDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DateListTemplateDirective, "[dateListTemplate]", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,16 @@
1
+ import { InjectionToken, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const DROPDOWN_LABEL_TEMPLATE: InjectionToken<DropdownLabelTemplateDirective>;
4
+ export declare class DropdownLabelTemplateDirective {
5
+ template: TemplateRef<any>;
6
+ constructor(template: TemplateRef<any>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownLabelTemplateDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownLabelTemplateDirective, "[dropdownLabelTemplate]", never, {}, {}, never>;
9
+ }
10
+ export declare const DROPDOWN_MULTI_LABEL_TEMPLATE: InjectionToken<DropdownMultiLabelTemplateDirective>;
11
+ export declare class DropdownMultiLabelTemplateDirective {
12
+ template: TemplateRef<any>;
13
+ constructor(template: TemplateRef<any>);
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMultiLabelTemplateDirective, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownMultiLabelTemplateDirective, "[dropdownMultiLabelTemplate]", never, {}, {}, never>;
16
+ }
@@ -0,0 +1,9 @@
1
+ import { InjectionToken, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const DROPDOWN_TEMPLATE: InjectionToken<DropdownTemplateDirective>;
4
+ export declare class DropdownTemplateDirective {
5
+ template: TemplateRef<any>;
6
+ constructor(template: TemplateRef<any>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownTemplateDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownTemplateDirective, "[dropdownTemplate]", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,8 @@
1
+ export * from './autocomplete-template.directive';
2
+ export * from './checkbox-template.directive';
3
+ export * from './custom-template.directive';
4
+ export * from './date-template.directive';
5
+ export * from './dropdown-label-template.directive';
6
+ export * from './dropdown-template.directive';
7
+ export * from './radio-template.directive';
8
+ export * from './switch-template.directive';
@@ -0,0 +1,9 @@
1
+ import { InjectionToken, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const RADIO_TEMPLATE: InjectionToken<RadioTemplateDirective>;
4
+ export declare class RadioTemplateDirective {
5
+ template: TemplateRef<any>;
6
+ constructor(template: TemplateRef<any>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioTemplateDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RadioTemplateDirective, "[radioTemplate]", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { InjectionToken, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const SWITCH_TEMPLATE: InjectionToken<SwitchTemplateDirective>;
4
+ export declare class SwitchTemplateDirective {
5
+ template: TemplateRef<any>;
6
+ constructor(template: TemplateRef<any>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SwitchTemplateDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SwitchTemplateDirective, "[switchTemplate]", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,65 @@
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 "./components/__parts/filter-option-text/filter-option-text.component";
33
+ import * as i32 from "./components/__parts/filter-search-input/filter-search-input.component";
34
+ import * as i33 from "./components/__parts/filter-collapse-control/filter-collapse-control.component";
35
+ import * as i34 from "./components/__parts/field-header.component";
36
+ import * as i35 from "./components/__parts/filter-empty-message.component";
37
+ import * as i36 from "./components/__parts/filter-date-range/filter-date-range.component";
38
+ import * as i37 from "./components/__parts/filter-autocomplete-input/filter-autocomplete-input.component";
39
+ import * as i38 from "./components/__parts/filter-options-sort/filter-options-sort.component";
40
+ import * as i39 from "./components/__parts/html-dialog/html-dialog.component";
41
+ import * as i40 from "@angular/common";
42
+ import * as i41 from "@angular/forms";
43
+ import * as i42 from "@ng-select/ng-select";
44
+ import * as i43 from "@angular/material/checkbox";
45
+ import * as i44 from "@angular/material/button";
46
+ import * as i45 from "@angular/material/icon";
47
+ import * as i46 from "@angular/material/menu";
48
+ import * as i47 from "@angular/material/slide-toggle";
49
+ import * as i48 from "@angular/material/radio";
50
+ import * as i49 from "@angular/material/input";
51
+ import * as i50 from "@angular/material/autocomplete";
52
+ import * as i51 from "@angular/material/tooltip";
53
+ import * as i52 from "@angular/material/dialog";
54
+ import * as i53 from "@angular/material/progress-spinner";
55
+ import * as i54 from "@ngx-translate/core";
56
+ import * as i55 from "../../../dynamic-form/dynamic-form.module";
57
+ import * as i56 from "../../../../shared/components/nuxeo-dialog/nuxeo-dialog.module";
58
+ import * as i57 from "../../../../directive/directive.module";
59
+ import * as i58 from "../../../ndf-datepicker/ndf-datepicker.module";
60
+ import * as i59 from "ngx-mask";
61
+ export declare class FiltersPanelModule {
62
+ static ɵfac: i0.ɵɵFactoryDeclaration<FiltersPanelModule, never>;
63
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FiltersPanelModule, [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.FilterOptionTextComponent, typeof i32.FilterSearchInputComponent, typeof i33.FilterCollapseControlComponent, typeof i34.FieldHeaderComponent, typeof i35.FilterEmptyMessageComponent, typeof i36.FilterDateRangeComponent, typeof i37.FilterAutocompleteInputComponent, typeof i38.FilterOptionsSortComponent, typeof i39.HtmlDialogComponent], [typeof i40.CommonModule, typeof i41.FormsModule, typeof i41.ReactiveFormsModule, typeof i42.NgSelectModule, typeof i43.MatCheckboxModule, typeof i44.MatButtonModule, typeof i45.MatIconModule, typeof i46.MatMenuModule, typeof i47.MatSlideToggleModule, typeof i48.MatRadioModule, typeof i49.MatInputModule, typeof i50.MatAutocompleteModule, typeof i51.MatTooltipModule, typeof i52.MatDialogModule, typeof i53.MatProgressSpinnerModule, typeof i54.TranslateModule, typeof i55.DynamicFormModule, typeof i56.NuxeoDialogModule, typeof i57.DirectiveModule, typeof i58.NdfDatepickerModule, typeof i59.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 i39.HtmlDialogComponent]>;
64
+ static ɵinj: i0.ɵɵInjectorDeclaration<FiltersPanelModule>;
65
+ }
@@ -0,0 +1,11 @@
1
+ export * from './components';
2
+ export * from './constants';
3
+ export * from './containers';
4
+ export * from './custom-components';
5
+ export * from './directives';
6
+ export * from './filters-panel.module';
7
+ export * from './models';
8
+ export * from './pipes';
9
+ export * from './services/filters-query.service';
10
+ export * from './services/ndf-transform.service';
11
+ export * from './utility';