ngx-register-base 1.2.3 → 1.3.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 (479) hide show
  1. package/ng-package.json +15 -0
  2. package/package.json +12 -15
  3. package/schematics/ng-update/replace-menu-state-token/index.ts +33 -0
  4. package/schematics/ng-update/update-prefix/index.ts +38 -0
  5. package/schematics/utils/{utils.d.ts → utils.ts} +9 -2
  6. package/src/lib/components/checkbox-selector/checkbox-selector.component.html +91 -0
  7. package/src/lib/components/checkbox-selector/checkbox-selector.component.less +67 -0
  8. package/src/lib/components/checkbox-selector/checkbox-selector.component.ts +176 -0
  9. package/src/lib/components/checkbox-selector/checkbox-selector.types.ts +8 -0
  10. package/src/lib/components/column-settings/column-settings.component.html +160 -0
  11. package/src/lib/components/column-settings/column-settings.component.less +131 -0
  12. package/src/lib/components/column-settings/column-settings.component.ts +352 -0
  13. package/src/lib/components/column-settings/components/column-settings-template/column-settings-template.component.html +65 -0
  14. package/src/lib/components/column-settings/components/column-settings-template/column-settings-template.component.less +79 -0
  15. package/src/lib/components/column-settings/components/column-settings-template/column-settings-template.component.ts +114 -0
  16. package/src/lib/components/column-settings/consts/column-settings.consts.ts +9 -0
  17. package/src/lib/components/column-settings/types/column-settings.types.ts +26 -0
  18. package/src/lib/components/divider/divider.component.html +4 -0
  19. package/src/lib/components/divider/divider.component.less +10 -0
  20. package/src/lib/components/divider/divider.component.ts +12 -0
  21. package/src/lib/components/filter-button/filter-button.component.html +20 -0
  22. package/src/lib/components/filter-button/filter-button.component.less +41 -0
  23. package/src/lib/components/filter-button/filter-button.component.ts +18 -0
  24. package/src/lib/components/filters/components/filter-list/filter-edit/filter-edit.component.html +22 -0
  25. package/src/lib/components/filters/components/filter-list/filter-edit/filter-edit.component.less +23 -0
  26. package/src/lib/components/filters/components/filter-list/filter-edit/filter-edit.component.ts +31 -0
  27. package/src/lib/components/filters/components/filter-list/filter-list-footer/filter-list-footer.component.html +49 -0
  28. package/src/lib/components/filters/components/filter-list/filter-list-footer/filter-list-footer.component.less +37 -0
  29. package/src/lib/components/filters/components/filter-list/filter-list-footer/filter-list-footer.component.ts +66 -0
  30. package/src/lib/components/filters/components/filter-list/filter-list-header/filter-list-header.component.html +147 -0
  31. package/src/lib/components/filters/components/filter-list/filter-list-header/filter-list-header.component.less +45 -0
  32. package/src/lib/components/filters/components/filter-list/filter-list-header/filter-list-header.component.ts +114 -0
  33. package/src/lib/components/filters/components/filter-list/filter-list-saved/filter-list-saved.component.html +44 -0
  34. package/src/lib/components/filters/components/filter-list/filter-list-saved/filter-list-saved.component.less +49 -0
  35. package/src/lib/components/filters/components/filter-list/filter-list-saved/filter-list-saved.component.ts +167 -0
  36. package/src/lib/components/filters/components/filter-list/filter-list.service.ts +97 -0
  37. package/src/lib/components/filters/components/filter-list/filters-section/filters-section.component.html +18 -0
  38. package/src/lib/components/filters/components/filter-list/filters-section/filters-section.component.less +55 -0
  39. package/src/lib/components/filters/components/filter-list/filters-section/filters-section.component.ts +69 -0
  40. package/src/lib/components/filters/components/filter-list.module.ts +29 -0
  41. package/src/lib/components/filters/register-table-filter.component.html +53 -0
  42. package/src/lib/components/filters/register-table-filter.component.less +17 -0
  43. package/src/lib/components/filters/register-table-filter.component.ts +167 -0
  44. package/src/lib/components/filters/register-table-filter.module.ts +22 -0
  45. package/src/lib/components/inputs/inputs.module.ts +104 -0
  46. package/src/lib/components/inputs/param-calendar-year/param-calendar-year.component.html +49 -0
  47. package/src/lib/components/inputs/param-calendar-year/param-calendar-year.component.less +70 -0
  48. package/src/lib/components/inputs/param-calendar-year/param-calendar-year.component.ts +52 -0
  49. package/src/lib/components/inputs/param-custom/param-custom.component.html +1 -0
  50. package/src/lib/components/inputs/param-custom/param-custom.component.ts +9 -0
  51. package/src/lib/components/inputs/param-date/param-date.component.html +55 -0
  52. package/src/lib/components/inputs/param-date/param-date.component.less +67 -0
  53. package/src/lib/components/inputs/param-date/param-date.component.ts +77 -0
  54. package/src/lib/components/inputs/param-date-range/param-date-range.component.html +45 -0
  55. package/src/lib/components/inputs/param-date-range/param-date-range.component.less +75 -0
  56. package/src/lib/components/inputs/param-date-range/param-date-range.component.ts +67 -0
  57. package/src/lib/components/inputs/param-date-time/param-date-time.component.html +70 -0
  58. package/src/lib/components/inputs/param-date-time/param-date-time.component.less +72 -0
  59. package/src/lib/components/inputs/param-date-time/param-date-time.component.ts +101 -0
  60. package/src/lib/components/inputs/param-date-time-range/param-date-time-range.component.html +67 -0
  61. package/src/lib/components/inputs/param-date-time-range/param-date-time-range.component.less +103 -0
  62. package/src/lib/components/inputs/param-date-time-range/param-date-time-range.component.ts +128 -0
  63. package/src/lib/components/inputs/param-month/param-month.component.html +46 -0
  64. package/src/lib/components/inputs/param-month/param-month.component.less +72 -0
  65. package/src/lib/components/inputs/param-month/param-month.component.ts +55 -0
  66. package/src/lib/components/inputs/param-month-range/param-month-range.component.html +39 -0
  67. package/src/lib/components/inputs/param-month-range/param-month-range.component.less +71 -0
  68. package/src/lib/components/inputs/param-month-range/param-month-range.component.ts +76 -0
  69. package/src/lib/components/inputs/param-multi-select/param-multi-select.component.html +84 -0
  70. package/src/lib/components/inputs/param-multi-select/param-multi-select.component.less +108 -0
  71. package/src/lib/components/inputs/param-multi-select/param-multi-select.component.ts +448 -0
  72. package/src/lib/components/inputs/param-select/param-select.component.html +106 -0
  73. package/src/lib/components/inputs/param-select/param-select.component.less +26 -0
  74. package/src/lib/components/inputs/param-select/param-select.component.ts +318 -0
  75. package/src/lib/components/inputs/param-switcher/param-switcher.component.html +8 -0
  76. package/src/lib/components/inputs/param-switcher/param-switcher.component.less +53 -0
  77. package/src/lib/components/inputs/param-switcher/param-switcher.component.ts +13 -0
  78. package/src/lib/components/inputs/param-switcher-date-time-range/consts/param-switcher-date-time-range.consts.ts +29 -0
  79. package/src/lib/components/inputs/param-switcher-date-time-range/param-switcher-date-time-range.component.html +19 -0
  80. package/src/lib/components/inputs/param-switcher-date-time-range/param-switcher-date-time-range.component.less +76 -0
  81. package/src/lib/components/inputs/param-switcher-date-time-range/param-switcher-date-time-range.component.ts +134 -0
  82. package/src/lib/components/inputs/param-switcher-date-time-range/types/param-switcher-date-time-range.types.ts +8 -0
  83. package/src/lib/components/inputs/param-text/param-text.component.html +59 -0
  84. package/src/lib/components/inputs/param-text/param-text.component.less +33 -0
  85. package/src/lib/components/inputs/param-text/param-text.component.ts +36 -0
  86. package/src/lib/components/inputs/param-textarea/param-textarea.component.html +61 -0
  87. package/src/lib/components/inputs/param-textarea/param-textarea.component.less +21 -0
  88. package/src/lib/components/inputs/param-textarea/param-textarea.component.ts +33 -0
  89. package/src/lib/components/inputs/param-toggle/param-toggle.component.html +40 -0
  90. package/src/lib/components/inputs/param-toggle/param-toggle.component.less +69 -0
  91. package/src/lib/components/inputs/param-toggle/param-toggle.component.ts +14 -0
  92. package/src/lib/components/inputs/param-tree/consts/param-tree.consts.ts +59 -0
  93. package/src/lib/components/inputs/param-tree/param-tree.component.html +51 -0
  94. package/src/lib/components/inputs/param-tree/param-tree.component.less +3 -0
  95. package/src/lib/components/inputs/param-tree/param-tree.component.ts +282 -0
  96. package/src/lib/components/inputs/param-tree/services/param-tree.service.ts +176 -0
  97. package/src/lib/components/inputs/param-tree/services/sync-tree-loader.service.ts +18 -0
  98. package/{lib/components/inputs/param-tree/tokens/param-tree.tokens.d.ts → src/lib/components/inputs/param-tree/tokens/param-tree.tokens.ts} +2 -1
  99. package/src/lib/components/inputs/param-tree/types/param-tree.types.ts +39 -0
  100. package/src/lib/components/inputs/param-tree/utils/param-tree.utils.ts +18 -0
  101. package/src/lib/components/inputs/param-tree-multi-select/param-tree-multi-select.component.html +78 -0
  102. package/src/lib/components/inputs/param-tree-multi-select/param-tree-multi-select.component.less +109 -0
  103. package/src/lib/components/inputs/param-tree-multi-select/param-tree-multi-select.component.ts +89 -0
  104. package/src/lib/components/inputs/param-tree-select/param-tree-select.component.html +54 -0
  105. package/src/lib/components/inputs/param-tree-select/param-tree-select.component.less +56 -0
  106. package/src/lib/components/inputs/param-tree-select/param-tree-select.component.ts +91 -0
  107. package/src/lib/components/inputs/sub-components/param-delete-content-icon/param-delete-content-btn.component.html +5 -0
  108. package/src/lib/components/inputs/sub-components/param-delete-content-icon/param-delete-content-btn.component.ts +13 -0
  109. package/src/lib/components/inputs/sub-components/param-invalid-icon/param-invalid-icon.component.html +4 -0
  110. package/src/lib/components/inputs/sub-components/param-invalid-icon/param-invalid-icon.component.ts +11 -0
  111. package/src/lib/components/menu-constructor/sproc-menu-constructor.component.html +95 -0
  112. package/src/lib/components/menu-constructor/sproc-menu-constructor.component.less +183 -0
  113. package/src/lib/components/menu-constructor/sproc-menu-constructor.component.ts +687 -0
  114. package/src/lib/components/menu-constructor/store/sproc-abstract-menu-constructor.store.ts +32 -0
  115. package/src/lib/components/menu-constructor/store/sproc-menu-constructor.consts.ts +46 -0
  116. package/{lib/components/menu-constructor/store/sproc-menu.tokens.d.ts → src/lib/components/menu-constructor/store/sproc-menu.tokens.ts} +4 -1
  117. package/src/lib/components/page-menu/README.md +60 -0
  118. package/src/lib/components/page-menu/schema/sproc-page-menu.consts.ts +8 -0
  119. package/src/lib/components/page-menu/schema/sproc-page-menu.schema.ts +35 -0
  120. package/src/lib/components/page-menu/schema/sproc-page-menu.tokens.ts +5 -0
  121. package/src/lib/components/page-menu/schema/sproc-page-menu.types.ts +42 -0
  122. package/src/lib/components/page-menu/sproc-page-menu.component.html +166 -0
  123. package/src/lib/components/page-menu/sproc-page-menu.component.less +228 -0
  124. package/src/lib/components/page-menu/sproc-page-menu.component.ts +337 -0
  125. package/src/lib/components/paginator/paginator.component.html +97 -0
  126. package/src/lib/components/paginator/paginator.component.less +101 -0
  127. package/src/lib/components/paginator/paginator.component.ts +192 -0
  128. package/src/lib/components/paginator/types/paginator.types.ts +16 -0
  129. package/src/lib/components/register-table/consts/register-table.consts.ts +3 -0
  130. package/src/lib/components/register-table/directives/cell-template.directive.ts +11 -0
  131. package/src/lib/components/register-table/directives/header-template.directive.ts +11 -0
  132. package/src/lib/components/register-table/model/schema.ts +62 -0
  133. package/src/lib/components/register-table/pipes/class-by-type.pipe.ts +28 -0
  134. package/src/lib/components/register-table/pipes/sticky-column.pipe.ts +11 -0
  135. package/src/lib/components/register-table/register-table.component.html +257 -0
  136. package/src/lib/components/register-table/register-table.component.less +151 -0
  137. package/src/lib/components/register-table/register-table.component.ts +743 -0
  138. package/src/lib/components/reset-settings-form/reset-settings-form.component.html +14 -0
  139. package/src/lib/components/reset-settings-form/reset-settings-form.component.less +26 -0
  140. package/src/lib/components/reset-settings-form/reset-settings-form.component.ts +15 -0
  141. package/src/lib/components/search-input/search-input.component.html +6 -0
  142. package/src/lib/components/search-input/search-input.component.less +17 -0
  143. package/src/lib/components/search-input/search-input.component.ts +31 -0
  144. package/src/lib/components/sliding-panel/sliding-panel.component.html +13 -0
  145. package/src/lib/components/sliding-panel/sliding-panel.component.less +112 -0
  146. package/src/lib/components/sliding-panel/sliding-panel.component.ts +36 -0
  147. package/src/lib/components/sliding-panel/sliding-panel.module.ts +11 -0
  148. package/src/lib/consts/date-time.consts.ts +1 -0
  149. package/src/lib/consts/index.ts +8 -0
  150. package/src/lib/consts/inputs.consts.ts +9 -0
  151. package/src/lib/consts/month.consts.ts +82 -0
  152. package/src/lib/consts/params.consts.ts +1 -0
  153. package/src/lib/consts/register-base.consts.ts +40 -0
  154. package/src/lib/core/form-group-wrapper/errors-consts.ts +6 -0
  155. package/src/lib/core/form-group-wrapper/form-group-wrapper.ts +109 -0
  156. package/src/lib/core/input-control/input-control.ts +30 -0
  157. package/src/lib/core/param/param-base.ts +262 -0
  158. package/src/lib/core/param/param-date-base.ts +30 -0
  159. package/src/lib/core/param/param-select-base.ts +118 -0
  160. package/src/lib/core/param/param-text-base.ts +23 -0
  161. package/{lib/core/param/param.tokens.d.ts → src/lib/core/param/param.tokens.ts} +2 -1
  162. package/src/lib/core/register-base/register-base.store.ts +84 -0
  163. package/src/lib/core/register-base/register-base.ts +854 -0
  164. package/src/lib/directives/date/date-time.types.ts +36 -0
  165. package/src/lib/directives/date/format-date.pipe.ts +28 -0
  166. package/src/lib/directives/number/number-only.directive.ts +36 -0
  167. package/src/lib/directives/sticky/sticky-relative.directive.ts +30 -0
  168. package/src/lib/directives/sticky/sticky-relative.service.ts +34 -0
  169. package/src/lib/directives/sticky/sticky.directive.ts +189 -0
  170. package/src/lib/services/date-time.service.ts +399 -0
  171. package/src/lib/services/dialog/dialog.service.ts +62 -0
  172. package/{lib/services/dialog/dialog.types.d.ts → src/lib/services/dialog/dialog.types.ts} +8 -4
  173. package/src/lib/services/dom-intersection.service.ts +23 -0
  174. package/src/lib/services/filter/filters-state.service.ts +83 -0
  175. package/src/lib/services/filter/filters-transmit.service.ts +105 -0
  176. package/src/lib/services/filter/filters.service.ts +21 -0
  177. package/src/lib/services/inputs-state.service.ts +157 -0
  178. package/src/lib/services/inputs.service.ts +114 -0
  179. package/src/lib/services/key-pressed.service.ts +40 -0
  180. package/src/lib/services/resize-window-observer.service.ts +37 -0
  181. package/src/lib/services/selected-objects-state.service.ts +159 -0
  182. package/src/lib/store/fast-query-store.service.ts +132 -0
  183. package/{lib/types/event.types.d.ts → src/lib/types/event.types.ts} +1 -1
  184. package/src/lib/types/hasura.types.ts +41 -0
  185. package/src/lib/types/inputs.types.ts +63 -0
  186. package/src/lib/types/params.types.ts +42 -0
  187. package/src/lib/types/register-base.types.ts +161 -0
  188. package/src/lib/types/sub-types.ts +15 -0
  189. package/src/lib/types/user-profile.types.ts +18 -0
  190. package/src/lib/utils/functions.ts +11 -0
  191. package/src/lib/utils/get-url-segment.ts +46 -0
  192. package/src/lib/utils/prizm.shared.module.ts +176 -0
  193. package/src/lib/utils/rxjs.ts +33 -0
  194. package/src/lib/utils/select-all-utils.ts +16 -0
  195. package/tsconfig.lib.json +16 -0
  196. package/tsconfig.lib.prod.json +11 -0
  197. package/tsconfig.schematics.json +26 -0
  198. package/tsconfig.spec.json +15 -0
  199. package/esm2022/lib/components/checkbox-selector/checkbox-selector.component.mjs +0 -129
  200. package/esm2022/lib/components/checkbox-selector/checkbox-selector.types.mjs +0 -8
  201. package/esm2022/lib/components/column-settings/column-settings.component.mjs +0 -249
  202. package/esm2022/lib/components/column-settings/components/column-settings-template/column-settings-template.component.mjs +0 -80
  203. package/esm2022/lib/components/column-settings/consts/column-settings.consts.mjs +0 -10
  204. package/esm2022/lib/components/column-settings/index.mjs +0 -3
  205. package/esm2022/lib/components/column-settings/types/column-settings.types.mjs +0 -7
  206. package/esm2022/lib/components/divider/divider.component.mjs +0 -16
  207. package/esm2022/lib/components/filter-button/filter-button.component.mjs +0 -19
  208. package/esm2022/lib/components/filters/components/filter-list/filter-edit/filter-edit.component.mjs +0 -31
  209. package/esm2022/lib/components/filters/components/filter-list/filter-list-footer/filter-list-footer.component.mjs +0 -57
  210. package/esm2022/lib/components/filters/components/filter-list/filter-list-header/filter-list-header.component.mjs +0 -110
  211. package/esm2022/lib/components/filters/components/filter-list/filter-list-saved/filter-list-saved.component.mjs +0 -130
  212. package/esm2022/lib/components/filters/components/filter-list/filter-list.service.mjs +0 -89
  213. package/esm2022/lib/components/filters/components/filter-list/filters-section/filters-section.component.mjs +0 -41
  214. package/esm2022/lib/components/filters/components/filter-list.module.mjs +0 -45
  215. package/esm2022/lib/components/filters/index.mjs +0 -3
  216. package/esm2022/lib/components/filters/register-table-filter.component.mjs +0 -155
  217. package/esm2022/lib/components/filters/register-table-filter.module.mjs +0 -39
  218. package/esm2022/lib/components/index.mjs +0 -11
  219. package/esm2022/lib/components/inputs/index.mjs +0 -20
  220. package/esm2022/lib/components/inputs/inputs.module.mjs +0 -166
  221. package/esm2022/lib/components/inputs/param-calendar-year/param-calendar-year.component.mjs +0 -45
  222. package/esm2022/lib/components/inputs/param-custom/param-custom.component.mjs +0 -12
  223. package/esm2022/lib/components/inputs/param-date/param-date.component.mjs +0 -76
  224. package/esm2022/lib/components/inputs/param-date-range/param-date-range.component.mjs +0 -61
  225. package/esm2022/lib/components/inputs/param-date-time/param-date-time.component.mjs +0 -86
  226. package/esm2022/lib/components/inputs/param-date-time-range/param-date-time-range.component.mjs +0 -96
  227. package/esm2022/lib/components/inputs/param-month/param-month.component.mjs +0 -50
  228. package/esm2022/lib/components/inputs/param-month-range/param-month-range.component.mjs +0 -62
  229. package/esm2022/lib/components/inputs/param-multi-select/param-multi-select.component.mjs +0 -309
  230. package/esm2022/lib/components/inputs/param-select/param-select.component.mjs +0 -209
  231. package/esm2022/lib/components/inputs/param-switcher/param-switcher.component.mjs +0 -21
  232. package/esm2022/lib/components/inputs/param-switcher-date-time-range/consts/param-switcher-date-time-range.consts.mjs +0 -28
  233. package/esm2022/lib/components/inputs/param-switcher-date-time-range/index.mjs +0 -3
  234. package/esm2022/lib/components/inputs/param-switcher-date-time-range/param-switcher-date-time-range.component.mjs +0 -105
  235. package/esm2022/lib/components/inputs/param-switcher-date-time-range/types/param-switcher-date-time-range.types.mjs +0 -10
  236. package/esm2022/lib/components/inputs/param-text/param-text.component.mjs +0 -40
  237. package/esm2022/lib/components/inputs/param-textarea/param-textarea.component.mjs +0 -38
  238. package/esm2022/lib/components/inputs/param-toggle/param-toggle.component.mjs +0 -20
  239. package/esm2022/lib/components/inputs/param-tree/consts/param-tree.consts.mjs +0 -37
  240. package/esm2022/lib/components/inputs/param-tree/index.mjs +0 -8
  241. package/esm2022/lib/components/inputs/param-tree/param-tree.component.mjs +0 -207
  242. package/esm2022/lib/components/inputs/param-tree/services/param-tree.service.mjs +0 -116
  243. package/esm2022/lib/components/inputs/param-tree/services/sync-tree-loader.service.mjs +0 -20
  244. package/esm2022/lib/components/inputs/param-tree/tokens/param-tree.tokens.mjs +0 -3
  245. package/esm2022/lib/components/inputs/param-tree/types/param-tree.types.mjs +0 -2
  246. package/esm2022/lib/components/inputs/param-tree/utils/param-tree.utils.mjs +0 -9
  247. package/esm2022/lib/components/inputs/param-tree-multi-select/param-tree-multi-select.component.mjs +0 -80
  248. package/esm2022/lib/components/inputs/param-tree-select/param-tree-select.component.mjs +0 -85
  249. package/esm2022/lib/components/inputs/sub-components/param-delete-content-icon/param-delete-content-btn.component.mjs +0 -15
  250. package/esm2022/lib/components/inputs/sub-components/param-invalid-icon/param-invalid-icon.component.mjs +0 -12
  251. package/esm2022/lib/components/menu-constructor/index.mjs +0 -5
  252. package/esm2022/lib/components/menu-constructor/sproc-menu-constructor.component.mjs +0 -559
  253. package/esm2022/lib/components/menu-constructor/store/sproc-abstract-menu-constructor.store.mjs +0 -3
  254. package/esm2022/lib/components/menu-constructor/store/sproc-menu-constructor.consts.mjs +0 -5
  255. package/esm2022/lib/components/menu-constructor/store/sproc-menu.tokens.mjs +0 -3
  256. package/esm2022/lib/components/page-menu/index.mjs +0 -6
  257. package/esm2022/lib/components/page-menu/schema/sproc-page-menu.consts.mjs +0 -9
  258. package/esm2022/lib/components/page-menu/schema/sproc-page-menu.schema.mjs +0 -2
  259. package/esm2022/lib/components/page-menu/schema/sproc-page-menu.tokens.mjs +0 -4
  260. package/esm2022/lib/components/page-menu/schema/sproc-page-menu.types.mjs +0 -3
  261. package/esm2022/lib/components/page-menu/sproc-page-menu.component.mjs +0 -275
  262. package/esm2022/lib/components/paginator/paginator.component.mjs +0 -159
  263. package/esm2022/lib/components/paginator/types/paginator.types.mjs +0 -2
  264. package/esm2022/lib/components/register-table/consts/register-table.consts.mjs +0 -4
  265. package/esm2022/lib/components/register-table/directives/cell-template.directive.mjs +0 -19
  266. package/esm2022/lib/components/register-table/directives/header-template.directive.mjs +0 -18
  267. package/esm2022/lib/components/register-table/index.mjs +0 -4
  268. package/esm2022/lib/components/register-table/model/schema.mjs +0 -10
  269. package/esm2022/lib/components/register-table/pipes/class-by-type.pipe.mjs +0 -33
  270. package/esm2022/lib/components/register-table/pipes/sticky-column.pipe.mjs +0 -17
  271. package/esm2022/lib/components/register-table/register-table.component.mjs +0 -544
  272. package/esm2022/lib/components/reset-settings-form/reset-settings-form.component.mjs +0 -18
  273. package/esm2022/lib/components/search-input/search-input.component.mjs +0 -28
  274. package/esm2022/lib/components/sliding-panel/sliding-panel.component.mjs +0 -48
  275. package/esm2022/lib/components/sliding-panel/sliding-panel.module.mjs +0 -19
  276. package/esm2022/lib/consts/date-time.consts.mjs +0 -2
  277. package/esm2022/lib/consts/index.mjs +0 -4
  278. package/esm2022/lib/consts/inputs.consts.mjs +0 -4
  279. package/esm2022/lib/consts/month.consts.mjs +0 -77
  280. package/esm2022/lib/consts/params.consts.mjs +0 -2
  281. package/esm2022/lib/consts/register-base.consts.mjs +0 -26
  282. package/esm2022/lib/core/form-group-wrapper/errors-consts.mjs +0 -8
  283. package/esm2022/lib/core/form-group-wrapper/form-group-wrapper.mjs +0 -81
  284. package/esm2022/lib/core/form-group-wrapper/index.mjs +0 -2
  285. package/esm2022/lib/core/index.mjs +0 -5
  286. package/esm2022/lib/core/input-control/index.mjs +0 -2
  287. package/esm2022/lib/core/input-control/input-control.mjs +0 -11
  288. package/esm2022/lib/core/param/index.mjs +0 -6
  289. package/esm2022/lib/core/param/param-base.mjs +0 -215
  290. package/esm2022/lib/core/param/param-date-base.mjs +0 -26
  291. package/esm2022/lib/core/param/param-select-base.mjs +0 -114
  292. package/esm2022/lib/core/param/param-text-base.mjs +0 -25
  293. package/esm2022/lib/core/param/param.tokens.mjs +0 -4
  294. package/esm2022/lib/core/register-base/index.mjs +0 -3
  295. package/esm2022/lib/core/register-base/register-base.mjs +0 -575
  296. package/esm2022/lib/core/register-base/register-base.store.mjs +0 -43
  297. package/esm2022/lib/directives/date/date-time.types.mjs +0 -34
  298. package/esm2022/lib/directives/date/format-date.pipe.mjs +0 -33
  299. package/esm2022/lib/directives/index.mjs +0 -3
  300. package/esm2022/lib/directives/number/number-only.directive.mjs +0 -41
  301. package/esm2022/lib/directives/sticky/index.mjs +0 -3
  302. package/esm2022/lib/directives/sticky/sticky-relative.directive.mjs +0 -32
  303. package/esm2022/lib/directives/sticky/sticky-relative.service.mjs +0 -32
  304. package/esm2022/lib/directives/sticky/sticky.directive.mjs +0 -169
  305. package/esm2022/lib/services/date-time.service.mjs +0 -314
  306. package/esm2022/lib/services/dialog/dialog.service.mjs +0 -53
  307. package/esm2022/lib/services/dialog/dialog.types.mjs +0 -2
  308. package/esm2022/lib/services/dialog/index.mjs +0 -3
  309. package/esm2022/lib/services/dom-intersection.service.mjs +0 -22
  310. package/esm2022/lib/services/filter/filters-state.service.mjs +0 -65
  311. package/esm2022/lib/services/filter/filters-transmit.service.mjs +0 -82
  312. package/esm2022/lib/services/filter/filters.service.mjs +0 -23
  313. package/esm2022/lib/services/index.mjs +0 -8
  314. package/esm2022/lib/services/inputs-state.service.mjs +0 -130
  315. package/esm2022/lib/services/inputs.service.mjs +0 -88
  316. package/esm2022/lib/services/key-pressed.service.mjs +0 -37
  317. package/esm2022/lib/services/resize-window-observer.service.mjs +0 -33
  318. package/esm2022/lib/services/selected-objects-state.service.mjs +0 -123
  319. package/esm2022/lib/store/fast-query-store.service.mjs +0 -110
  320. package/esm2022/lib/store/index.mjs +0 -2
  321. package/esm2022/lib/types/event.types.mjs +0 -2
  322. package/esm2022/lib/types/hasura.types.mjs +0 -2
  323. package/esm2022/lib/types/index.mjs +0 -7
  324. package/esm2022/lib/types/inputs.types.mjs +0 -19
  325. package/esm2022/lib/types/params.types.mjs +0 -2
  326. package/esm2022/lib/types/register-base.types.mjs +0 -6
  327. package/esm2022/lib/types/sub-types.mjs +0 -2
  328. package/esm2022/lib/types/user-profile.types.mjs +0 -2
  329. package/esm2022/lib/utils/functions.mjs +0 -10
  330. package/esm2022/lib/utils/get-url-segment.mjs +0 -35
  331. package/esm2022/lib/utils/index.mjs +0 -5
  332. package/esm2022/lib/utils/prizm.shared.module.mjs +0 -284
  333. package/esm2022/lib/utils/rxjs.mjs +0 -28
  334. package/esm2022/lib/utils/select-all-utils.mjs +0 -11
  335. package/esm2022/ngx-register-base.mjs +0 -5
  336. package/esm2022/public-api.mjs +0 -9
  337. package/fesm2022/ngx-register-base.mjs +0 -7465
  338. package/fesm2022/ngx-register-base.mjs.map +0 -1
  339. package/index.d.ts +0 -5
  340. package/lib/components/checkbox-selector/checkbox-selector.component.d.ts +0 -33
  341. package/lib/components/checkbox-selector/checkbox-selector.types.d.ts +0 -7
  342. package/lib/components/column-settings/column-settings.component.d.ts +0 -80
  343. package/lib/components/column-settings/components/column-settings-template/column-settings-template.component.d.ts +0 -24
  344. package/lib/components/column-settings/consts/column-settings.consts.d.ts +0 -8
  345. package/lib/components/column-settings/types/column-settings.types.d.ts +0 -22
  346. package/lib/components/divider/divider.component.d.ts +0 -6
  347. package/lib/components/filter-button/filter-button.component.d.ts +0 -8
  348. package/lib/components/filters/components/filter-list/filter-edit/filter-edit.component.d.ts +0 -14
  349. package/lib/components/filters/components/filter-list/filter-list-footer/filter-list-footer.component.d.ts +0 -25
  350. package/lib/components/filters/components/filter-list/filter-list-header/filter-list-header.component.d.ts +0 -39
  351. package/lib/components/filters/components/filter-list/filter-list-saved/filter-list-saved.component.d.ts +0 -41
  352. package/lib/components/filters/components/filter-list/filter-list.service.d.ts +0 -20
  353. package/lib/components/filters/components/filter-list/filters-section/filters-section.component.d.ts +0 -15
  354. package/lib/components/filters/components/filter-list.module.d.ts +0 -15
  355. package/lib/components/filters/register-table-filter.component.d.ts +0 -40
  356. package/lib/components/filters/register-table-filter.module.d.ts +0 -13
  357. package/lib/components/inputs/inputs.module.d.ts +0 -31
  358. package/lib/components/inputs/param-calendar-year/param-calendar-year.component.d.ts +0 -19
  359. package/lib/components/inputs/param-custom/param-custom.component.d.ts +0 -6
  360. package/lib/components/inputs/param-date/param-date.component.d.ts +0 -20
  361. package/lib/components/inputs/param-date-range/param-date-range.component.d.ts +0 -26
  362. package/lib/components/inputs/param-date-time/param-date-time.component.d.ts +0 -25
  363. package/lib/components/inputs/param-date-time-range/param-date-time-range.component.d.ts +0 -28
  364. package/lib/components/inputs/param-month/param-month.component.d.ts +0 -18
  365. package/lib/components/inputs/param-month-range/param-month-range.component.d.ts +0 -21
  366. package/lib/components/inputs/param-multi-select/param-multi-select.component.d.ts +0 -46
  367. package/lib/components/inputs/param-select/param-select.component.d.ts +0 -30
  368. package/lib/components/inputs/param-switcher/param-switcher.component.d.ts +0 -8
  369. package/lib/components/inputs/param-switcher-date-time-range/consts/param-switcher-date-time-range.consts.d.ts +0 -2
  370. package/lib/components/inputs/param-switcher-date-time-range/param-switcher-date-time-range.component.d.ts +0 -19
  371. package/lib/components/inputs/param-switcher-date-time-range/types/param-switcher-date-time-range.types.d.ts +0 -8
  372. package/lib/components/inputs/param-text/param-text.component.d.ts +0 -10
  373. package/lib/components/inputs/param-textarea/param-textarea.component.d.ts +0 -10
  374. package/lib/components/inputs/param-toggle/param-toggle.component.d.ts +0 -9
  375. package/lib/components/inputs/param-tree/consts/param-tree.consts.d.ts +0 -7
  376. package/lib/components/inputs/param-tree/param-tree.component.d.ts +0 -41
  377. package/lib/components/inputs/param-tree/services/param-tree.service.d.ts +0 -37
  378. package/lib/components/inputs/param-tree/services/sync-tree-loader.service.d.ts +0 -10
  379. package/lib/components/inputs/param-tree/types/param-tree.types.d.ts +0 -32
  380. package/lib/components/inputs/param-tree/utils/param-tree.utils.d.ts +0 -7
  381. package/lib/components/inputs/param-tree-multi-select/param-tree-multi-select.component.d.ts +0 -31
  382. package/lib/components/inputs/param-tree-select/param-tree-select.component.d.ts +0 -30
  383. package/lib/components/inputs/sub-components/param-delete-content-icon/param-delete-content-btn.component.d.ts +0 -6
  384. package/lib/components/inputs/sub-components/param-invalid-icon/param-invalid-icon.component.d.ts +0 -5
  385. package/lib/components/menu-constructor/sproc-menu-constructor.component.d.ts +0 -113
  386. package/lib/components/menu-constructor/store/sproc-abstract-menu-constructor.store.d.ts +0 -24
  387. package/lib/components/menu-constructor/store/sproc-menu-constructor.consts.d.ts +0 -36
  388. package/lib/components/page-menu/schema/sproc-page-menu.consts.d.ts +0 -7
  389. package/lib/components/page-menu/schema/sproc-page-menu.schema.d.ts +0 -30
  390. package/lib/components/page-menu/schema/sproc-page-menu.tokens.d.ts +0 -3
  391. package/lib/components/page-menu/schema/sproc-page-menu.types.d.ts +0 -36
  392. package/lib/components/page-menu/sproc-page-menu.component.d.ts +0 -48
  393. package/lib/components/paginator/paginator.component.d.ts +0 -52
  394. package/lib/components/paginator/types/paginator.types.d.ts +0 -15
  395. package/lib/components/register-table/consts/register-table.consts.d.ts +0 -3
  396. package/lib/components/register-table/directives/cell-template.directive.d.ts +0 -9
  397. package/lib/components/register-table/directives/header-template.directive.d.ts +0 -9
  398. package/lib/components/register-table/model/schema.d.ts +0 -52
  399. package/lib/components/register-table/pipes/class-by-type.pipe.d.ts +0 -8
  400. package/lib/components/register-table/pipes/sticky-column.pipe.d.ts +0 -7
  401. package/lib/components/register-table/register-table.component.d.ts +0 -165
  402. package/lib/components/reset-settings-form/reset-settings-form.component.d.ts +0 -9
  403. package/lib/components/search-input/search-input.component.d.ts +0 -11
  404. package/lib/components/sliding-panel/sliding-panel.component.d.ts +0 -14
  405. package/lib/components/sliding-panel/sliding-panel.module.d.ts +0 -9
  406. package/lib/consts/date-time.consts.d.ts +0 -1
  407. package/lib/consts/index.d.ts +0 -3
  408. package/lib/consts/inputs.consts.d.ts +0 -4
  409. package/lib/consts/month.consts.d.ts +0 -49
  410. package/lib/consts/params.consts.d.ts +0 -1
  411. package/lib/consts/register-base.consts.d.ts +0 -19
  412. package/lib/core/form-group-wrapper/errors-consts.d.ts +0 -5
  413. package/lib/core/form-group-wrapper/form-group-wrapper.d.ts +0 -15
  414. package/lib/core/input-control/input-control.d.ts +0 -11
  415. package/lib/core/param/param-base.d.ts +0 -68
  416. package/lib/core/param/param-date-base.d.ts +0 -18
  417. package/lib/core/param/param-select-base.d.ts +0 -42
  418. package/lib/core/param/param-text-base.d.ts +0 -15
  419. package/lib/core/register-base/register-base.d.ts +0 -168
  420. package/lib/core/register-base/register-base.store.d.ts +0 -35
  421. package/lib/directives/date/date-time.types.d.ts +0 -32
  422. package/lib/directives/date/format-date.pipe.d.ts +0 -10
  423. package/lib/directives/number/number-only.directive.d.ts +0 -10
  424. package/lib/directives/sticky/sticky-relative.directive.d.ts +0 -13
  425. package/lib/directives/sticky/sticky-relative.service.d.ts +0 -15
  426. package/lib/directives/sticky/sticky.directive.d.ts +0 -27
  427. package/lib/services/date-time.service.d.ts +0 -80
  428. package/lib/services/dialog/dialog.service.d.ts +0 -22
  429. package/lib/services/dom-intersection.service.d.ts +0 -8
  430. package/lib/services/filter/filters-state.service.d.ts +0 -21
  431. package/lib/services/filter/filters-transmit.service.d.ts +0 -28
  432. package/lib/services/filter/filters.service.d.ts +0 -12
  433. package/lib/services/inputs-state.service.d.ts +0 -57
  434. package/lib/services/inputs.service.d.ts +0 -28
  435. package/lib/services/key-pressed.service.d.ts +0 -15
  436. package/lib/services/resize-window-observer.service.d.ts +0 -11
  437. package/lib/services/selected-objects-state.service.d.ts +0 -47
  438. package/lib/store/fast-query-store.service.d.ts +0 -19
  439. package/lib/types/hasura.types.d.ts +0 -35
  440. package/lib/types/inputs.types.d.ts +0 -41
  441. package/lib/types/params.types.d.ts +0 -27
  442. package/lib/types/register-base.types.d.ts +0 -123
  443. package/lib/types/sub-types.d.ts +0 -8
  444. package/lib/types/user-profile.types.d.ts +0 -17
  445. package/lib/utils/functions.d.ts +0 -3
  446. package/lib/utils/get-url-segment.d.ts +0 -7
  447. package/lib/utils/prizm.shared.module.d.ts +0 -14
  448. package/lib/utils/rxjs.d.ts +0 -10
  449. package/lib/utils/select-all-utils.d.ts +0 -8
  450. package/schematics/ng-update/replace-menu-state-token/index.d.ts +0 -2
  451. package/schematics/ng-update/replace-menu-state-token/index.js +0 -29
  452. package/schematics/ng-update/replace-menu-state-token/index.js.map +0 -1
  453. package/schematics/ng-update/update-prefix/index.d.ts +0 -2
  454. package/schematics/ng-update/update-prefix/index.js +0 -33
  455. package/schematics/ng-update/update-prefix/index.js.map +0 -1
  456. package/schematics/utils/utils.js +0 -25
  457. package/schematics/utils/utils.js.map +0 -1
  458. /package/{lib/components/column-settings/index.d.ts → src/lib/components/column-settings/index.ts} +0 -0
  459. /package/{lib/components/filters/index.d.ts → src/lib/components/filters/index.ts} +0 -0
  460. /package/{lib/components/index.d.ts → src/lib/components/index.ts} +0 -0
  461. /package/{lib/components/inputs/index.d.ts → src/lib/components/inputs/index.ts} +0 -0
  462. /package/{lib/components/inputs/param-switcher-date-time-range/index.d.ts → src/lib/components/inputs/param-switcher-date-time-range/index.ts} +0 -0
  463. /package/{lib/components/inputs/param-tree/index.d.ts → src/lib/components/inputs/param-tree/index.ts} +0 -0
  464. /package/{lib/components/menu-constructor/index.d.ts → src/lib/components/menu-constructor/index.ts} +0 -0
  465. /package/{lib/components/page-menu/index.d.ts → src/lib/components/page-menu/index.ts} +0 -0
  466. /package/{lib/components/register-table/index.d.ts → src/lib/components/register-table/index.ts} +0 -0
  467. /package/{lib/core/form-group-wrapper/index.d.ts → src/lib/core/form-group-wrapper/index.ts} +0 -0
  468. /package/{lib/core/index.d.ts → src/lib/core/index.ts} +0 -0
  469. /package/{lib/core/input-control/index.d.ts → src/lib/core/input-control/index.ts} +0 -0
  470. /package/{lib/core/param/index.d.ts → src/lib/core/param/index.ts} +0 -0
  471. /package/{lib/core/register-base/index.d.ts → src/lib/core/register-base/index.ts} +0 -0
  472. /package/{lib/directives/index.d.ts → src/lib/directives/index.ts} +0 -0
  473. /package/{lib/directives/sticky/index.d.ts → src/lib/directives/sticky/index.ts} +0 -0
  474. /package/{lib/services/dialog/index.d.ts → src/lib/services/dialog/index.ts} +0 -0
  475. /package/{lib/services/index.d.ts → src/lib/services/index.ts} +0 -0
  476. /package/{lib/store/index.d.ts → src/lib/store/index.ts} +0 -0
  477. /package/{lib/types/index.d.ts → src/lib/types/index.ts} +0 -0
  478. /package/{lib/utils/index.d.ts → src/lib/utils/index.ts} +0 -0
  479. /package/{public-api.d.ts → src/public-api.ts} +0 -0
package/index.d.ts DELETED
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="ngx-register-base" />
5
- export * from './public-api';
@@ -1,33 +0,0 @@
1
- import { SelectionTypes, ApplySelectionTypes } from './checkbox-selector.types';
2
- import { ScalarUUID } from 'hasura';
3
- import { ERegisterObjectState } from '../../types';
4
- import * as i0 from "@angular/core";
5
- export declare class CheckboxSelectorComponent {
6
- totalRecords: import("@angular/core").InputSignal<number | undefined>;
7
- /** @deprecated используйте stateObjects */
8
- selected: import("@angular/core").InputSignal<Set<ScalarUUID>>;
9
- disabled: import("@angular/core").InputSignal<boolean>;
10
- loading: import("@angular/core").InputSignal<boolean | null>;
11
- inputMaxValue: import("@angular/core").InputSignal<number | null>;
12
- onApply: import("@angular/core").OutputEmitterRef<ApplySelectionTypes>;
13
- private readonly _selectedService;
14
- protected readonly ESelectionTypes: typeof SelectionTypes;
15
- protected isOpen: import("@angular/core").WritableSignal<boolean>;
16
- protected selectedElement: import("@angular/core").WritableSignal<SelectionTypes | null>;
17
- protected inputValue: import("@angular/core").WritableSignal<number | null>;
18
- protected readonly inputDescription: import("@angular/core").Signal<string>;
19
- protected stateObjects: import("@angular/core").WritableSignal<Map<ScalarUUID, import("../../types").IRegisterObject<any>>> | undefined;
20
- protected stateUnfetchedObjects: import("@angular/core").Signal<ERegisterObjectState> | undefined;
21
- constructor();
22
- protected selectElement(newElement: SelectionTypes): void;
23
- protected onInputFocus(): void;
24
- protected applySelection(): void;
25
- protected toggle(): void;
26
- protected calcIndeterminate(): boolean;
27
- protected calcChecked(): boolean;
28
- protected close(): void;
29
- protected inputValueChanges(value: number): void;
30
- protected dropSelection(): void;
31
- static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxSelectorComponent, never>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxSelectorComponent, "sproc-checkbox-selector", never, { "totalRecords": { "alias": "totalRecords"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "inputMaxValue": { "alias": "inputMaxValue"; "required": false; "isSignal": true; }; }, { "onApply": "onApply"; }, never, never, true, never>;
33
- }
@@ -1,7 +0,0 @@
1
- export type ApplySelectionTypes = Omit<SelectionTypes, SelectionTypes.COUNT> | number | null;
2
- export declare enum SelectionTypes {
3
- ALL = "ALL",
4
- VISIBLE = "VISIBLE",
5
- INVERSE = "INVERSE",
6
- COUNT = "COUNT"
7
- }
@@ -1,80 +0,0 @@
1
- import { OnInit, TemplateRef } from '@angular/core';
2
- import { CdkDragDrop } from '@angular/cdk/drag-drop';
3
- import { IColumnSettings, IColumnSettingsChanges, ITableColumnSettings } from './types/column-settings.types';
4
- import { ITpUserSettings } from '../../types';
5
- import * as i0 from "@angular/core";
6
- export declare class ColumnSettingsComponent implements OnInit {
7
- resetColumnSettingsRef: import("@angular/core").Signal<TemplateRef<any> | undefined>;
8
- resetColumnSettingsFooter: import("@angular/core").Signal<TemplateRef<any> | undefined>;
9
- defaultSettings: import("@angular/core").InputSignal<ITableColumnSettings>;
10
- /** Высота всего компонента настроек */
11
- height: import("@angular/core").InputSignal<number | undefined>;
12
- disabled: import("@angular/core").InputSignal<boolean>;
13
- /** показ заголовка листа фикс. слева колонок */
14
- showLeftListHeader: import("@angular/core").InputSignal<boolean>;
15
- /** показ заголовка листа фикс. справа колонок */
16
- showRightListHeader: import("@angular/core").InputSignal<boolean>;
17
- /** заголовок листа с колонками (нефиксированные) */
18
- columnsListHeader: import("@angular/core").InputSignal<string>;
19
- /** показ фикс. справа колонок */
20
- showFixedRightList: import("@angular/core").InputSignal<boolean>;
21
- /** функция предикат - возможность добавления элемента в лист фикс. слева колонок */
22
- fixedLeftListEnterPredicate: import("@angular/core").InputSignal<() => boolean>;
23
- /** функция предикат - возможность добавления элемента в лист колонок (нефиксированные) */
24
- columnsListEnterPredicate: import("@angular/core").InputSignal<() => boolean>;
25
- /** функция предикат - возможность добавления элемента в лист фикс. справа колонок */
26
- fixedRightListEnterPredicate: import("@angular/core").InputSignal<() => boolean>;
27
- protected readonly openSettings: import("@angular/core").WritableSignal<boolean>;
28
- protected readonly inputSettings: import("@angular/core").WritableSignal<ITableColumnSettings | null>;
29
- protected readonly fixedLeftColumns: import("@angular/core").Signal<IColumnSettings[]>;
30
- protected readonly columns: import("@angular/core").Signal<IColumnSettings[]>;
31
- protected readonly fixedRightColumns: import("@angular/core").Signal<IColumnSettings[]>;
32
- columnsChanges: import("@angular/core").OutputRef<IColumnSettingsChanges>;
33
- protected readonly settingsStore: import("../../types").IUserSettingsLoader<ITpUserSettings>;
34
- private readonly _dr;
35
- private readonly _router;
36
- private readonly _userProfileService;
37
- private readonly _dialogService;
38
- private readonly _resizeWindowObserver;
39
- protected readonly iconSettings = "/assets/ngx-register-base/icons/settings.svg";
40
- protected readonly iconEraser = "/assets/ngx-register-base/icons/eraser.svg";
41
- protected readonly iconCancelClose = "/assets/ngx-register-base/icons/cancel-close.svg";
42
- protected readonly columnSettingsHeaderHeightPx = 40;
43
- protected readonly columnSettingsSubtitleHeightPx = 32;
44
- protected readonly scrollBoxFixedColumnsHeightPx: import("@angular/core").WritableSignal<number>;
45
- protected readonly scrollBoxRightFixedColumnsHeightPx: import("@angular/core").WritableSignal<number>;
46
- protected readonly scrollBoxFixedColumnsMaxHeightPx = 287;
47
- protected readonly scrollBoxColumnsMaxHeightPx: import("@angular/core").WritableSignal<number>;
48
- protected readonly columnSettingsFooterHeightPx = 48;
49
- protected readonly columnListHeightPx: import("@angular/core").Signal<number>;
50
- protected readonly columnListBottomPaddingPx = 8;
51
- private readonly _idUser;
52
- private readonly _moduleName;
53
- private _columnsSettings;
54
- constructor();
55
- setDefaultSettings(): void;
56
- private _effectOnSetScrollBoxColumnsMaxHeight;
57
- ngOnInit(): void;
58
- private fetchSettings;
59
- private subscribeOnSettings;
60
- protected deleteSettings(): void;
61
- protected saveSettings(settings: ITableColumnSettings): void;
62
- protected saveTableSettings(): void;
63
- protected openResetDialog(): void;
64
- protected toggle(): void;
65
- protected close(): void;
66
- protected dropIntoFixedLeft(event: CdkDragDrop<IColumnSettings[]>): void;
67
- protected dropIntoColumns(event: CdkDragDrop<IColumnSettings[]>): void;
68
- private _moveDroppedItem;
69
- protected toggleVisibility(col: IColumnSettings): void;
70
- protected showAllColumns(): void;
71
- protected isHiddenColumn(column: IColumnSettings): boolean;
72
- protected onFixedScrollbarResize([fixedScrollbar]: readonly ResizeObserverEntry[]): void;
73
- protected onRightFixedScrollbarResize([fixedScrollbar]: readonly ResizeObserverEntry[]): void;
74
- private _calcColumnListHeightPx;
75
- private _calcScrollBoxColumnsMaxHeightPx;
76
- private _setStatusRecursive;
77
- private _setColumnsStatusRecursive;
78
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnSettingsComponent, never>;
79
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnSettingsComponent, "sproc-column-settings", never, { "defaultSettings": { "alias": "defaultSettings"; "required": true; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "showLeftListHeader": { "alias": "showLeftListHeader"; "required": false; "isSignal": true; }; "showRightListHeader": { "alias": "showRightListHeader"; "required": false; "isSignal": true; }; "columnsListHeader": { "alias": "columnsListHeader"; "required": false; "isSignal": true; }; "showFixedRightList": { "alias": "showFixedRightList"; "required": false; "isSignal": true; }; "fixedLeftListEnterPredicate": { "alias": "fixedLeftListEnterPredicate"; "required": false; "isSignal": true; }; "columnsListEnterPredicate": { "alias": "columnsListEnterPredicate"; "required": false; "isSignal": true; }; "fixedRightListEnterPredicate": { "alias": "fixedRightListEnterPredicate"; "required": false; "isSignal": true; }; }, { "columnsChanges": "columnsChanges"; }, never, never, true, never>;
80
- }
@@ -1,24 +0,0 @@
1
- import { EColumnStatus, IColumnSettings } from '../../types/column-settings.types';
2
- import { CdkDragDrop } from '@angular/cdk/drag-drop';
3
- import * as i0 from "@angular/core";
4
- export declare class ColumnSettingsTemplateComponent {
5
- column: import("@angular/core").InputSignal<IColumnSettings>;
6
- parent: import("@angular/core").InputSignal<IColumnSettings | undefined>;
7
- expand: import("@angular/core").InputSignal<boolean>;
8
- protected readonly iconEditorDots = "/assets/ngx-register-base/icons/16-editor-dots.svg";
9
- protected readonly iconChevron = "/assets/ngx-register-base/icons/chevrons/chevrons-right.svg";
10
- protected readonly iconEye = "/assets/ngx-register-base/icons/eye.svg";
11
- protected readonly iconEyeClosed = "/assets/ngx-register-base/icons/eye-closed.svg";
12
- protected readonly iconLock = "/assets/ngx-register-base/icons/lock.svg";
13
- protected readonly EColumnStatus: typeof EColumnStatus;
14
- protected readonly status: import("@angular/core").Signal<EColumnStatus | import("../../types/column-settings.types").IColumnStatus>;
15
- protected readonly canExpand: import("@angular/core").Signal<boolean>;
16
- protected readonly expanded: import("@angular/core").WritableSignal<boolean>;
17
- protected collapseNested(): void;
18
- protected toggleNested(): void;
19
- protected isHiddenColumn(column: IColumnSettings): boolean;
20
- protected toggleVisibility(column: IColumnSettings): void;
21
- protected dropIntoChildren(event: CdkDragDrop<IColumnSettings[]>): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnSettingsTemplateComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnSettingsTemplateComponent, "sproc-column-settings-template", never, { "column": { "alias": "column"; "required": true; "isSignal": true; }; "parent": { "alias": "parent"; "required": false; "isSignal": true; }; "expand": { "alias": "expand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
24
- }
@@ -1,8 +0,0 @@
1
- export declare const ICON_SETTINGS = "/assets/ngx-register-base/icons/settings.svg";
2
- export declare const ICON_ERASER = "/assets/ngx-register-base/icons/eraser.svg";
3
- export declare const ICON_CANCEL_CLOSE = "/assets/ngx-register-base/icons/cancel-close.svg";
4
- export declare const ICON_EDITOR_DOTS = "/assets/ngx-register-base/icons/16-editor-dots.svg";
5
- export declare const ICON_CHEVRONS_RIGHT = "/assets/ngx-register-base/icons/chevrons/chevrons-right.svg";
6
- export declare const ICON_EYE = "/assets/ngx-register-base/icons/eye.svg";
7
- export declare const ICON_EYE_CLOSED = "/assets/ngx-register-base/icons/eye-closed.svg";
8
- export declare const ICON_LOCK = "/assets/ngx-register-base/icons/lock.svg";
@@ -1,22 +0,0 @@
1
- export interface ITableColumnSettings {
2
- columns: IColumnSettings[];
3
- stickyLeft: IColumnSettings[];
4
- stickyRight: IColumnSettings[];
5
- }
6
- export interface IColumnSettings {
7
- id: string;
8
- name: string;
9
- status: EColumnStatus | IColumnStatus;
10
- children?: IColumnSettings[];
11
- }
12
- /** @deprecated используйте EColumnStatus */
13
- export type IColumnStatus = 'sticky' | 'hidden' | 'default';
14
- export declare enum EColumnStatus {
15
- STICKY = "sticky",
16
- HIDDEN = "hidden",
17
- DEFAULT = "default"
18
- }
19
- export interface IColumnSettingsChanges {
20
- settings: ITableColumnSettings | null;
21
- id?: string;
22
- }
@@ -1,6 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class DividerComponent {
3
- layout: 'horizontal' | 'vertical';
4
- static ɵfac: i0.ɵɵFactoryDeclaration<DividerComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<DividerComponent, "sproc-divider", never, { "layout": { "alias": "layout"; "required": false; }; }, {}, never, never, true, never>;
6
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class FilterButtonComponent {
3
- filterApplied: import("@angular/core").InputSignal<boolean>;
4
- disabled: import("@angular/core").InputSignal<boolean>;
5
- filterToggle: import("@angular/core").OutputEmitterRef<void>;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<FilterButtonComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<FilterButtonComponent, "sproc-filter-button", never, { "filterApplied": { "alias": "filterApplied"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "filterToggle": "filterToggle"; }, never, never, true, never>;
8
- }
@@ -1,14 +0,0 @@
1
- import { OnDestroy, OnInit } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import { FiltersStateService } from '../../../../../services';
4
- import * as i0 from "@angular/core";
5
- export declare class FilterEditComponent implements OnInit, OnDestroy {
6
- private readonly _filterStateService;
7
- readonly valueControl: FormControl<string | null>;
8
- private subscription;
9
- constructor(_filterStateService: FiltersStateService<any>);
10
- ngOnInit(): void;
11
- ngOnDestroy(): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<FilterEditComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<FilterEditComponent, "sproc-filter-edit", never, {}, {}, never, never, false, never>;
14
- }
@@ -1,25 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { Router } from '@angular/router';
3
- import { FilterListService } from '../filter-list.service';
4
- import { EInputsState, GqlFields } from '../../../../../types';
5
- import { FiltersStateService } from '../../../../../services';
6
- import * as i0 from "@angular/core";
7
- export declare class FilterListFooterComponent implements OnInit {
8
- private readonly _router;
9
- private readonly _filterStateService;
10
- private readonly _filterListService;
11
- acceptButtonDisabled: boolean;
12
- applyButtonDisabled: boolean;
13
- footerApplyButtonLabel: string;
14
- apply: EventEmitter<GqlFields>;
15
- private readonly _dr;
16
- readonly filterState$: import("rxjs").Observable<EInputsState>;
17
- readonly FilterState: typeof EInputsState;
18
- constructor(_router: Router, _filterStateService: FiltersStateService<any>, _filterListService: FilterListService);
19
- ngOnInit(): void;
20
- onApplyFilter(): void;
21
- onApplySavedFilter(): void;
22
- onSaveFilter(): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<FilterListFooterComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<FilterListFooterComponent, "sproc-filter-list-footer", never, { "acceptButtonDisabled": { "alias": "acceptButtonDisabled"; "required": false; }; "applyButtonDisabled": { "alias": "applyButtonDisabled"; "required": false; }; "footerApplyButtonLabel": { "alias": "footerApplyButtonLabel"; "required": false; }; }, { "apply": "apply"; }, never, never, false, never>;
25
- }
@@ -1,39 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { FilterListService } from '../filter-list.service';
3
- import { Router } from '@angular/router';
4
- import { EInputsState, GqlFields } from '../../../../../types';
5
- import { FiltersStateService } from '../../../../../services';
6
- import * as i0 from "@angular/core";
7
- export declare class FilterListHeaderComponent implements OnInit {
8
- private readonly _router;
9
- private readonly _filterStateService;
10
- private readonly _filterListService;
11
- total: number | null;
12
- showTotal: boolean;
13
- showPin: boolean;
14
- showCloseButton: boolean;
15
- acceptButtonDisabled: boolean;
16
- applyButtonDisabled: boolean;
17
- filterListHeaderTitle: string;
18
- pinnedChange: EventEmitter<boolean>;
19
- applyFilter: EventEmitter<GqlFields>;
20
- resetFilter: EventEmitter<void>;
21
- private readonly _dr;
22
- readonly count$: import("rxjs").Observable<number>;
23
- readonly filterState$: import("rxjs").Observable<EInputsState>;
24
- readonly FilterState: typeof EInputsState;
25
- constructor(_router: Router, _filterStateService: FiltersStateService<any>, _filterListService: FilterListService);
26
- ngOnInit(): void;
27
- onTogglePin(): void;
28
- onSavedList(): void;
29
- onSave(): void;
30
- onApplyFilter(): void;
31
- onReset(): void;
32
- onClose(): void;
33
- onApplySavedFilter(): void;
34
- onSaveFilter(): void;
35
- onBack(): void;
36
- protected get isPin(): boolean;
37
- static ɵfac: i0.ɵɵFactoryDeclaration<FilterListHeaderComponent, never>;
38
- static ɵcmp: i0.ɵɵComponentDeclaration<FilterListHeaderComponent, "sproc-filter-list-header", never, { "total": { "alias": "total"; "required": false; }; "showTotal": { "alias": "showTotal"; "required": false; }; "showPin": { "alias": "showPin"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "acceptButtonDisabled": { "alias": "acceptButtonDisabled"; "required": false; }; "applyButtonDisabled": { "alias": "applyButtonDisabled"; "required": false; }; "filterListHeaderTitle": { "alias": "filterListHeaderTitle"; "required": false; }; }, { "pinnedChange": "pinnedChange"; "applyFilter": "applyFilter"; "resetFilter": "resetFilter"; }, never, never, false, never>;
39
- }
@@ -1,41 +0,0 @@
1
- import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
- import { Router } from '@angular/router';
3
- import { SETTINGS_TYPE } from '../../../../../consts';
4
- import { ITpUserSettings } from '../../../../../types';
5
- import { FiltersStateService } from '../../../../../services';
6
- import * as i0 from "@angular/core";
7
- interface IFilterSavedItem {
8
- id: string;
9
- user_id: string;
10
- name: string;
11
- favorite: boolean;
12
- selected: boolean;
13
- filter: Record<string, any>;
14
- settingType: SETTINGS_TYPE;
15
- sourceSettings: ITpUserSettings;
16
- }
17
- export declare class FilterListSavedComponent implements OnInit, OnDestroy {
18
- private readonly _router;
19
- private readonly _filterStateService;
20
- private readonly _cdr;
21
- savedItems: IFilterSavedItem[];
22
- private filterStateSubscription;
23
- private savedFiltersSubscription;
24
- private selectedFilter;
25
- private modulePath?;
26
- private readonly _userSettingsStore;
27
- private readonly _userProfileService;
28
- readonly loading$: import("rxjs").Observable<boolean>;
29
- constructor(_router: Router, _filterStateService: FiltersStateService<any>, _cdr: ChangeDetectorRef);
30
- ngOnInit(): void;
31
- ngOnDestroy(): void;
32
- private subscribeOnFilterState;
33
- private subscribeOnSettings;
34
- onSelect(id: string): void;
35
- onFavorite(id: string): void;
36
- onEdit(id: string): void;
37
- onDelete(id: string): void;
38
- static ɵfac: i0.ɵɵFactoryDeclaration<FilterListSavedComponent, never>;
39
- static ɵcmp: i0.ɵɵComponentDeclaration<FilterListSavedComponent, "sproc-filter-list-saved", never, {}, {}, never, never, false, never>;
40
- }
41
- export {};
@@ -1,20 +0,0 @@
1
- import { ReplaySubject } from 'rxjs';
2
- import { GqlFields } from '../../../../types';
3
- import { FiltersService, FiltersStateService } from '../../../../services';
4
- import * as i0 from "@angular/core";
5
- export declare class FilterListService {
6
- private readonly _filtersService;
7
- private readonly _filterStateService;
8
- readonly apply$: ReplaySubject<GqlFields>;
9
- modulePath: string;
10
- private _pinnedFilterSetting;
11
- private readonly settingsStore;
12
- constructor(_filtersService: FiltersService<any>, _filterStateService: FiltersStateService<any>);
13
- applyFilter(): void;
14
- applySavedFilter(): void;
15
- saveFilter(): void;
16
- clear(): void;
17
- savePinnedFilters(): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<FilterListService, never>;
19
- static ɵprov: i0.ɵɵInjectableDeclaration<FilterListService>;
20
- }
@@ -1,15 +0,0 @@
1
- import { NgControl } from '@angular/forms';
2
- import * as i0 from "@angular/core";
3
- export declare class FiltersSectionComponent {
4
- controls: import("@angular/core").Signal<readonly NgControl[]>;
5
- label: import("@angular/core").InputSignal<string>;
6
- protected isOpen: import("@angular/core").WritableSignal<boolean>;
7
- protected haveAppliedFilters: import("@angular/core").Signal<boolean>;
8
- private _sameControlApplied;
9
- private _controlsChanges;
10
- private readonly _injector;
11
- protected toggleHeader(): void;
12
- private _checkSomeControlApplied;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<FiltersSectionComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<FiltersSectionComponent, "sproc-filters-section", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; }, {}, ["controls"], ["*"], false, never>;
15
- }
@@ -1,15 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./filter-list/filter-list-header/filter-list-header.component";
3
- import * as i2 from "./filter-list/filter-edit/filter-edit.component";
4
- import * as i3 from "./filter-list/filter-list-saved/filter-list-saved.component";
5
- import * as i4 from "./filter-list/filters-section/filters-section.component";
6
- import * as i5 from "./filter-list/filter-list-footer/filter-list-footer.component";
7
- import * as i6 from "@angular/common";
8
- import * as i7 from "@angular/forms";
9
- import * as i8 from "../../../utils/prizm.shared.module";
10
- import * as i9 from "../../divider/divider.component";
11
- export declare class FilterListModule {
12
- static ɵfac: i0.ɵɵFactoryDeclaration<FilterListModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<FilterListModule, [typeof i1.FilterListHeaderComponent, typeof i2.FilterEditComponent, typeof i3.FilterListSavedComponent, typeof i4.FiltersSectionComponent, typeof i5.FilterListFooterComponent], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i7.ReactiveFormsModule, typeof i8.PrizmSharedModule, typeof i9.DividerComponent], [typeof i2.FilterEditComponent, typeof i3.FilterListSavedComponent, typeof i4.FiltersSectionComponent, typeof i1.FilterListHeaderComponent, typeof i5.FilterListFooterComponent]>;
14
- static ɵinj: i0.ɵɵInjectorDeclaration<FilterListModule>;
15
- }
@@ -1,40 +0,0 @@
1
- import { AfterViewInit, EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
- import { EInputsState, GqlFields } from '../../types';
3
- import { FiltersService, FiltersStateService } from '../../services';
4
- import { RegisterBaseStore } from '../../core';
5
- import * as i0 from "@angular/core";
6
- export declare class RegisterTableFilterComponent<Type extends Record<string, any>> implements OnInit, AfterViewInit, OnDestroy {
7
- private readonly _store;
8
- private readonly _filterStateService;
9
- private readonly _filterListService;
10
- /** Высота всего компонента фильтров */
11
- height: string | undefined;
12
- showTotal: boolean;
13
- showPin: boolean;
14
- showCloseButton: boolean;
15
- acceptButtonDisabled: boolean;
16
- applyButtonDisabled: boolean;
17
- /** Доп. отступ для вычисления высоты панели (в пикселях) */
18
- subOffsetHeight: number;
19
- filterListHeaderTitle: string;
20
- footerApplyButtonLabel: string;
21
- clickApplyButton: EventEmitter<void>;
22
- private readonly _menuState;
23
- private readonly _unsubscribe$;
24
- readonly FilterState: typeof EInputsState;
25
- readonly filterState$: import("rxjs").Observable<EInputsState>;
26
- readonly isOpen$: import("rxjs").Observable<boolean>;
27
- readonly total$: import("rxjs").Observable<number>;
28
- private _currentFilters;
29
- private _previousState;
30
- constructor(_store: RegisterBaseStore<Type>, _filterStateService: FiltersStateService<Type>, _filterListService: FiltersService<Type>);
31
- ngOnInit(): void;
32
- protected closeMenu(isPin: boolean): void;
33
- onApplyFilter(gqlFilter: GqlFields, savePage?: boolean): void;
34
- ngAfterViewInit(): void;
35
- private _subscribeOnState;
36
- private _setFilters;
37
- ngOnDestroy(): void;
38
- static ɵfac: i0.ɵɵFactoryDeclaration<RegisterTableFilterComponent<any>, never>;
39
- static ɵcmp: i0.ɵɵComponentDeclaration<RegisterTableFilterComponent<any>, "sproc-register-table-filter", never, { "height": { "alias": "height"; "required": false; }; "showTotal": { "alias": "showTotal"; "required": false; }; "showPin": { "alias": "showPin"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "acceptButtonDisabled": { "alias": "acceptButtonDisabled"; "required": false; }; "applyButtonDisabled": { "alias": "applyButtonDisabled"; "required": false; }; "subOffsetHeight": { "alias": "subOffsetHeight"; "required": false; }; "filterListHeaderTitle": { "alias": "filterListHeaderTitle"; "required": false; }; "footerApplyButtonLabel": { "alias": "footerApplyButtonLabel"; "required": false; }; }, { "clickApplyButton": "clickApplyButton"; }, never, ["*"], false, never>;
40
- }
@@ -1,13 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./register-table-filter.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "@angular/forms";
5
- import * as i4 from "./components/filter-list.module";
6
- import * as i5 from "../divider/divider.component";
7
- import * as i6 from "../sliding-panel/sliding-panel.module";
8
- import * as i7 from "@taiga-ui/core";
9
- export declare class RegisterTableFilterModule {
10
- static ɵfac: i0.ɵɵFactoryDeclaration<RegisterTableFilterModule, never>;
11
- static ɵmod: i0.ɵɵNgModuleDeclaration<RegisterTableFilterModule, [typeof i1.RegisterTableFilterComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.FilterListModule, typeof i5.DividerComponent, typeof i6.SlidingPanelModule, typeof i7.TuiLoader], [typeof i1.RegisterTableFilterComponent]>;
12
- static ɵinj: i0.ɵɵInjectorDeclaration<RegisterTableFilterModule>;
13
- }
@@ -1,31 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./param-date-range/param-date-range.component";
3
- import * as i2 from "./param-date-time/param-date-time.component";
4
- import * as i3 from "./param-month/param-month.component";
5
- import * as i4 from "./param-month-range/param-month-range.component";
6
- import * as i5 from "./param-toggle/param-toggle.component";
7
- import * as i6 from "./param-date-time-range/param-date-time-range.component";
8
- import * as i7 from "./param-custom/param-custom.component";
9
- import * as i8 from "./param-switcher/param-switcher.component";
10
- import * as i9 from "./param-switcher-date-time-range/param-switcher-date-time-range.component";
11
- import * as i10 from "./param-calendar-year/param-calendar-year.component";
12
- import * as i11 from "@angular/common";
13
- import * as i12 from "./param-text/param-text.component";
14
- import * as i13 from "../../utils/prizm.shared.module";
15
- import * as i14 from "@prizm-ui/components";
16
- import * as i15 from "@taiga-ui/core";
17
- import * as i16 from "@taiga-ui/legacy";
18
- import * as i17 from "@taiga-ui/kit";
19
- import * as i18 from "@taiga-ui/layout";
20
- import * as i19 from "./param-multi-select/param-multi-select.component";
21
- import * as i20 from "./param-select/param-select.component";
22
- import * as i21 from "./param-date/param-date.component";
23
- import * as i22 from "./param-textarea/param-textarea.component";
24
- import * as i23 from "../../directives/date/format-date.pipe";
25
- import * as i24 from "./sub-components/param-delete-content-icon/param-delete-content-btn.component";
26
- import * as i25 from "./sub-components/param-invalid-icon/param-invalid-icon.component";
27
- export declare class InputsModule {
28
- static ɵfac: i0.ɵɵFactoryDeclaration<InputsModule, never>;
29
- static ɵmod: i0.ɵɵNgModuleDeclaration<InputsModule, [typeof i1.ParamDateRangeComponent, typeof i2.ParamDateTimeComponent, typeof i3.ParamMonthComponent, typeof i4.ParamMonthRangeComponent, typeof i5.ParamToggleComponent, typeof i6.ParamDateTimeRangeComponent, typeof i7.ParamCustomComponent, typeof i8.ParamSwitcherComponent, typeof i9.ParamSwitcherDateTimeRangeComponent, typeof i9.ParamSwitcherDateTimeRangeComponent, typeof i10.ParamCalendarYearComponent], [typeof i11.CommonModule, typeof i12.ParamTextComponent, typeof i13.PrizmSharedModule, typeof i14.PrizmInputMultiSelectModule, typeof i15.TuiTextfieldComponent, typeof i15.TuiTextfieldDirective, typeof i15.TuiTextfieldOptionsDirective, typeof i15.TuiAppearance, typeof i16.TuiInputModule, typeof i16.TuiTextfieldControllerModule, typeof i15.TuiIcon, typeof i15.TuiButton, typeof i17.TuiChevron, typeof i17.TuiSelectDirective, typeof i17.TuiDataListWrapperComponent, typeof i15.TuiTextfieldDropdownDirective, typeof i17.TuiFilterByInputPipe, typeof i18.TuiInputSearch, typeof i19.ParamMultiSelectComponent, typeof i20.ParamSelectComponent, typeof i21.ParamDateComponent, typeof i17.TuiSwitch, typeof i22.ParamTextareaComponent, typeof i16.TuiInputYearModule, typeof i23.FormatDatePipe, typeof i24.ParamDeleteContentBtnComponent, typeof i25.ParamInvalidIconComponent], [typeof i20.ParamSelectComponent, typeof i19.ParamMultiSelectComponent, typeof i1.ParamDateRangeComponent, typeof i2.ParamDateTimeComponent, typeof i3.ParamMonthComponent, typeof i4.ParamMonthRangeComponent, typeof i5.ParamToggleComponent, typeof i12.ParamTextComponent, typeof i6.ParamDateTimeRangeComponent, typeof i7.ParamCustomComponent, typeof i8.ParamSwitcherComponent, typeof i21.ParamDateComponent, typeof i9.ParamSwitcherDateTimeRangeComponent, typeof i9.ParamSwitcherDateTimeRangeComponent, typeof i22.ParamTextareaComponent, typeof i10.ParamCalendarYearComponent]>;
30
- static ɵinj: i0.ɵɵInjectorDeclaration<InputsModule>;
31
- }
@@ -1,19 +0,0 @@
1
- import { type TuiBooleanHandler } from '@taiga-ui/cdk';
2
- import { TuiSizeL } from '@taiga-ui/core';
3
- import { ParamBase } from '../../../core/param/param-base';
4
- import { TuiInputYearComponent } from '@taiga-ui/legacy';
5
- import * as i0 from "@angular/core";
6
- export declare class ParamCalendarYearComponent extends ParamBase<number, string> {
7
- private readonly _cdr;
8
- yearInputComponent: import("@angular/core").Signal<TuiInputYearComponent | undefined>;
9
- buildShowedValue: import("@angular/core").InputSignal<(value: number) => string>;
10
- protected readonly disabledHandler: TuiBooleanHandler<number>;
11
- disabledYears: import("@angular/core").InputSignal<number[]>;
12
- min: import("@angular/core").InputSignal<number | null>;
13
- max: import("@angular/core").InputSignal<number | null>;
14
- size: import("@angular/core").InputSignal<TuiSizeL>;
15
- protected isYearPickerOpen: boolean;
16
- protected click(): void;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<ParamCalendarYearComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamCalendarYearComponent, "sproc-param-calendar-year", never, { "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; "disabledYears": { "alias": "disabledYears"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
19
- }
@@ -1,6 +0,0 @@
1
- import { ParamBase } from '../../../core/param/param-base';
2
- import * as i0 from "@angular/core";
3
- export declare class ParamCustomComponent extends ParamBase<any, any> {
4
- static ɵfac: i0.ɵɵFactoryDeclaration<ParamCustomComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamCustomComponent, "sproc-param-custom", never, {}, {}, never, ["*"], false, never>;
6
- }
@@ -1,20 +0,0 @@
1
- import { TuiDay } from '@taiga-ui/cdk';
2
- import { ParamDateBase } from '../../../core/param/param-date-base';
3
- import { FormatterSavedValueType, ParserSavedValueType } from '../../../types/params.types';
4
- import * as i0 from "@angular/core";
5
- export type InputDateSaveValue = string | null;
6
- export declare class ParamDateComponent extends ParamDateBase<TuiDay | null, InputDateSaveValue> {
7
- placeholder: import("@angular/core").InputSignal<string>;
8
- min: TuiDay | null;
9
- max: TuiDay | null;
10
- set formatSavedValue(formatter: FormatterSavedValueType<TuiDay | null, InputDateSaveValue> | undefined);
11
- set parseSavedValue(parser: ParserSavedValueType<InputDateSaveValue, TuiDay | null> | undefined);
12
- buildShowedValue: import("@angular/core").InputSignal<(value: TuiDay | null) => string>;
13
- protected formatterSavedValue: (value: TuiDay | null) => InputDateSaveValue;
14
- protected parserSavedValue: (value: InputDateSaveValue) => TuiDay | null;
15
- private _defaultDateConvert;
16
- private _defaultFormatterSaveValue;
17
- private _defaultParserSaveValue;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<ParamDateComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamDateComponent, "sproc-param-date", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "formatSavedValue": { "alias": "formatSavedValue"; "required": false; }; "parseSavedValue": { "alias": "parseSavedValue"; "required": false; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
20
- }
@@ -1,26 +0,0 @@
1
- import { PrizmDay, PrizmDayLike, PrizmDayRange } from '@prizm-ui/components';
2
- import { ParamDateBase } from '../../../core/param/param-date-base';
3
- import { FormatterSavedValueType, ParserSavedValueType } from '../../../types/params.types';
4
- import { TuiDay } from '@taiga-ui/cdk';
5
- import * as i0 from "@angular/core";
6
- export type InputDateRangeSavedValue = {
7
- from: string;
8
- to: string;
9
- } | null;
10
- export declare class ParamDateRangeComponent extends ParamDateBase<PrizmDayRange | null, InputDateRangeSavedValue> {
11
- maxLength: import("@angular/core").InputSignal<PrizmDayLike | null>;
12
- /** текст сообщения об ошибке */
13
- errorMessage: import("@angular/core").InputSignal<string>;
14
- placeholder: import("@angular/core").InputSignal<string>;
15
- min: TuiDay | PrizmDay | undefined;
16
- max: TuiDay | PrizmDay | undefined;
17
- set formatSavedValue(formatter: FormatterSavedValueType<PrizmDayRange | null, InputDateRangeSavedValue> | undefined);
18
- set parseSavedValue(parser: ParserSavedValueType<InputDateRangeSavedValue, PrizmDayRange | null> | undefined);
19
- buildShowedValue: import("@angular/core").InputSignal<(value: PrizmDayRange | null) => string>;
20
- protected formatterSavedValue: (range: PrizmDayRange | null) => InputDateRangeSavedValue;
21
- protected parserSavedValue: (value: InputDateRangeSavedValue) => PrizmDayRange | null;
22
- private _defaultFormatterSaveValue;
23
- private _defaultParserSaveValue;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<ParamDateRangeComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamDateRangeComponent, "sproc-param-date-range", never, { "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "formatSavedValue": { "alias": "formatSavedValue"; "required": false; }; "parseSavedValue": { "alias": "parseSavedValue"; "required": false; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
26
- }
@@ -1,25 +0,0 @@
1
- import { PrizmDay, PrizmTime, PrizmTimeMode } from '@prizm-ui/components';
2
- import { ParamDateBase } from '../../../core/param/param-date-base';
3
- import { FormatterSavedValueType, ParserSavedValueType } from '../../../types/params.types';
4
- import * as i0 from "@angular/core";
5
- export type SmaPrizmDateTime = [PrizmDay, PrizmTime | undefined];
6
- export type InputDateTimeSaveValue = string | null;
7
- export declare class ParamDateTimeComponent extends ParamDateBase<SmaPrizmDateTime | null, InputDateTimeSaveValue> {
8
- placeholder: import("@angular/core").InputSignal<string>;
9
- min: PrizmDay | [PrizmDay, PrizmTime] | undefined;
10
- max: PrizmDay | [PrizmDay, PrizmTime] | undefined;
11
- timeMode: PrizmTimeMode;
12
- set formatSavedValue(formatter: FormatterSavedValueType<SmaPrizmDateTime | null, InputDateTimeSaveValue> | undefined);
13
- set parseSavedValue(parser: ParserSavedValueType<InputDateTimeSaveValue, SmaPrizmDateTime | null> | undefined);
14
- protected formatterSavedValue: (value: SmaPrizmDateTime | null) => InputDateTimeSaveValue;
15
- protected parserSavedValue: (value: InputDateTimeSaveValue) => SmaPrizmDateTime | null;
16
- private _defaultFormatterSaveValue;
17
- private _defaultParserSaveValue;
18
- protected onInit(): void;
19
- protected clearValue(): void;
20
- protected get nativeDate(): Date | null;
21
- private _subscribeOnTimeZoneChanges;
22
- private _valueFromLocalNativeDate;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<ParamDateTimeComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamDateTimeComponent, "sproc-param-date-time", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "timeMode": { "alias": "timeMode"; "required": false; }; "formatSavedValue": { "alias": "formatSavedValue"; "required": false; }; "parseSavedValue": { "alias": "parseSavedValue"; "required": false; }; }, {}, never, never, false, never>;
25
- }