ngx-register-base 1.3.1 → 1.3.3

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/esm2022/lib/components/checkbox-selector/checkbox-selector.component.mjs +129 -0
  2. package/esm2022/lib/components/checkbox-selector/checkbox-selector.types.mjs +8 -0
  3. package/esm2022/lib/components/column-settings/column-settings.component.mjs +249 -0
  4. package/esm2022/lib/components/column-settings/components/column-settings-template/column-settings-template.component.mjs +80 -0
  5. package/esm2022/lib/components/column-settings/consts/column-settings.consts.mjs +10 -0
  6. package/esm2022/lib/components/column-settings/index.mjs +3 -0
  7. package/esm2022/lib/components/column-settings/types/column-settings.types.mjs +7 -0
  8. package/esm2022/lib/components/divider/divider.component.mjs +16 -0
  9. package/esm2022/lib/components/filter-button/filter-button.component.mjs +19 -0
  10. package/esm2022/lib/components/filters/components/filter-list/filter-edit/filter-edit.component.mjs +31 -0
  11. package/esm2022/lib/components/filters/components/filter-list/filter-list-footer/filter-list-footer.component.mjs +57 -0
  12. package/esm2022/lib/components/filters/components/filter-list/filter-list-header/filter-list-header.component.mjs +110 -0
  13. package/esm2022/lib/components/filters/components/filter-list/filter-list-saved/filter-list-saved.component.mjs +130 -0
  14. package/esm2022/lib/components/filters/components/filter-list/filter-list.service.mjs +89 -0
  15. package/esm2022/lib/components/filters/components/filter-list/filters-section/filters-section.component.mjs +41 -0
  16. package/esm2022/lib/components/filters/components/filter-list.module.mjs +45 -0
  17. package/esm2022/lib/components/filters/index.mjs +3 -0
  18. package/esm2022/lib/components/filters/register-table-filter.component.mjs +155 -0
  19. package/esm2022/lib/components/filters/register-table-filter.module.mjs +39 -0
  20. package/esm2022/lib/components/index.mjs +11 -0
  21. package/esm2022/lib/components/inputs/index.mjs +20 -0
  22. package/esm2022/lib/components/inputs/inputs.module.mjs +166 -0
  23. package/esm2022/lib/components/inputs/param-calendar-year/param-calendar-year.component.mjs +45 -0
  24. package/esm2022/lib/components/inputs/param-custom/param-custom.component.mjs +12 -0
  25. package/esm2022/lib/components/inputs/param-date/param-date.component.mjs +76 -0
  26. package/esm2022/lib/components/inputs/param-date-range/param-date-range.component.mjs +60 -0
  27. package/esm2022/lib/components/inputs/param-date-time/param-date-time.component.mjs +86 -0
  28. package/esm2022/lib/components/inputs/param-date-time-range/param-date-time-range.component.mjs +95 -0
  29. package/esm2022/lib/components/inputs/param-month/param-month.component.mjs +50 -0
  30. package/esm2022/lib/components/inputs/param-month-range/param-month-range.component.mjs +62 -0
  31. package/esm2022/lib/components/inputs/param-multi-select/param-multi-select.component.mjs +309 -0
  32. package/esm2022/lib/components/inputs/param-select/param-select.component.mjs +233 -0
  33. package/esm2022/lib/components/inputs/param-switcher/param-switcher.component.mjs +21 -0
  34. package/esm2022/lib/components/inputs/param-switcher-date-time-range/consts/param-switcher-date-time-range.consts.mjs +28 -0
  35. package/esm2022/lib/components/inputs/param-switcher-date-time-range/index.mjs +3 -0
  36. package/esm2022/lib/components/inputs/param-switcher-date-time-range/param-switcher-date-time-range.component.mjs +105 -0
  37. package/esm2022/lib/components/inputs/param-switcher-date-time-range/types/param-switcher-date-time-range.types.mjs +10 -0
  38. package/esm2022/lib/components/inputs/param-text/param-text.component.mjs +40 -0
  39. package/esm2022/lib/components/inputs/param-textarea/param-textarea.component.mjs +38 -0
  40. package/esm2022/lib/components/inputs/param-toggle/param-toggle.component.mjs +20 -0
  41. package/esm2022/lib/components/inputs/param-tree/consts/param-tree.consts.mjs +37 -0
  42. package/esm2022/lib/components/inputs/param-tree/index.mjs +8 -0
  43. package/esm2022/lib/components/inputs/param-tree/param-tree.component.mjs +207 -0
  44. package/esm2022/lib/components/inputs/param-tree/services/param-tree.service.mjs +116 -0
  45. package/esm2022/lib/components/inputs/param-tree/services/sync-tree-loader.service.mjs +20 -0
  46. package/esm2022/lib/components/inputs/param-tree/tokens/param-tree.tokens.mjs +3 -0
  47. package/esm2022/lib/components/inputs/param-tree/types/param-tree.types.mjs +2 -0
  48. package/esm2022/lib/components/inputs/param-tree/utils/param-tree.utils.mjs +9 -0
  49. package/esm2022/lib/components/inputs/param-tree-multi-select/param-tree-multi-select.component.mjs +80 -0
  50. package/esm2022/lib/components/inputs/param-tree-select/param-tree-select.component.mjs +85 -0
  51. package/esm2022/lib/components/inputs/sub-components/param-delete-content-icon/param-delete-content-btn.component.mjs +15 -0
  52. package/esm2022/lib/components/inputs/sub-components/param-invalid-icon/param-invalid-icon.component.mjs +12 -0
  53. package/esm2022/lib/components/menu-constructor/index.mjs +5 -0
  54. package/esm2022/lib/components/menu-constructor/sproc-menu-constructor.component.mjs +559 -0
  55. package/esm2022/lib/components/menu-constructor/store/sproc-abstract-menu-constructor.store.mjs +3 -0
  56. package/esm2022/lib/components/menu-constructor/store/sproc-menu-constructor.consts.mjs +5 -0
  57. package/esm2022/lib/components/menu-constructor/store/sproc-menu.tokens.mjs +3 -0
  58. package/esm2022/lib/components/page-menu/index.mjs +6 -0
  59. package/esm2022/lib/components/page-menu/schema/sproc-page-menu.consts.mjs +9 -0
  60. package/esm2022/lib/components/page-menu/schema/sproc-page-menu.schema.mjs +2 -0
  61. package/esm2022/lib/components/page-menu/schema/sproc-page-menu.tokens.mjs +4 -0
  62. package/esm2022/lib/components/page-menu/schema/sproc-page-menu.types.mjs +3 -0
  63. package/esm2022/lib/components/page-menu/sproc-page-menu.component.mjs +275 -0
  64. package/esm2022/lib/components/paginator/paginator.component.mjs +159 -0
  65. package/esm2022/lib/components/paginator/types/paginator.types.mjs +2 -0
  66. package/esm2022/lib/components/register-table/consts/register-table.consts.mjs +4 -0
  67. package/esm2022/lib/components/register-table/directives/cell-template.directive.mjs +19 -0
  68. package/esm2022/lib/components/register-table/directives/header-template.directive.mjs +18 -0
  69. package/esm2022/lib/components/register-table/index.mjs +4 -0
  70. package/esm2022/lib/components/register-table/model/schema.mjs +10 -0
  71. package/esm2022/lib/components/register-table/pipes/class-by-type.pipe.mjs +33 -0
  72. package/esm2022/lib/components/register-table/pipes/sticky-column.pipe.mjs +17 -0
  73. package/esm2022/lib/components/register-table/register-table.component.mjs +544 -0
  74. package/esm2022/lib/components/reset-settings-form/reset-settings-form.component.mjs +18 -0
  75. package/esm2022/lib/components/search-input/search-input.component.mjs +28 -0
  76. package/esm2022/lib/components/sliding-panel/sliding-panel.component.mjs +48 -0
  77. package/esm2022/lib/components/sliding-panel/sliding-panel.module.mjs +19 -0
  78. package/esm2022/lib/consts/date-time.consts.mjs +2 -0
  79. package/esm2022/lib/consts/index.mjs +4 -0
  80. package/esm2022/lib/consts/inputs.consts.mjs +4 -0
  81. package/esm2022/lib/consts/month.consts.mjs +77 -0
  82. package/esm2022/lib/consts/params.consts.mjs +2 -0
  83. package/esm2022/lib/consts/register-base.consts.mjs +26 -0
  84. package/esm2022/lib/core/form-group-wrapper/errors-consts.mjs +8 -0
  85. package/esm2022/lib/core/form-group-wrapper/form-group-wrapper.mjs +81 -0
  86. package/esm2022/lib/core/form-group-wrapper/index.mjs +2 -0
  87. package/esm2022/lib/core/index.mjs +5 -0
  88. package/esm2022/lib/core/input-control/index.mjs +2 -0
  89. package/esm2022/lib/core/input-control/input-control.mjs +11 -0
  90. package/esm2022/lib/core/param/index.mjs +6 -0
  91. package/esm2022/lib/core/param/param-base.mjs +215 -0
  92. package/esm2022/lib/core/param/param-date-base.mjs +26 -0
  93. package/esm2022/lib/core/param/param-select-base.mjs +114 -0
  94. package/esm2022/lib/core/param/param-text-base.mjs +25 -0
  95. package/esm2022/lib/core/param/param.tokens.mjs +4 -0
  96. package/esm2022/lib/core/register-base/index.mjs +3 -0
  97. package/esm2022/lib/core/register-base/register-base.mjs +575 -0
  98. package/esm2022/lib/core/register-base/register-base.store.mjs +43 -0
  99. package/esm2022/lib/directives/date/date-time.types.mjs +34 -0
  100. package/esm2022/lib/directives/date/format-date.pipe.mjs +33 -0
  101. package/esm2022/lib/directives/index.mjs +3 -0
  102. package/esm2022/lib/directives/number/number-only.directive.mjs +41 -0
  103. package/esm2022/lib/directives/sticky/index.mjs +3 -0
  104. package/esm2022/lib/directives/sticky/sticky-relative.directive.mjs +32 -0
  105. package/esm2022/lib/directives/sticky/sticky-relative.service.mjs +32 -0
  106. package/esm2022/lib/directives/sticky/sticky.directive.mjs +169 -0
  107. package/esm2022/lib/services/date-time.service.mjs +314 -0
  108. package/esm2022/lib/services/dialog/dialog.service.mjs +53 -0
  109. package/esm2022/lib/services/dialog/dialog.types.mjs +2 -0
  110. package/esm2022/lib/services/dialog/index.mjs +3 -0
  111. package/esm2022/lib/services/dom-intersection.service.mjs +22 -0
  112. package/esm2022/lib/services/filter/filters-state.service.mjs +65 -0
  113. package/esm2022/lib/services/filter/filters-transmit.service.mjs +82 -0
  114. package/esm2022/lib/services/filter/filters.service.mjs +23 -0
  115. package/esm2022/lib/services/index.mjs +8 -0
  116. package/esm2022/lib/services/inputs-state.service.mjs +130 -0
  117. package/esm2022/lib/services/inputs.service.mjs +88 -0
  118. package/esm2022/lib/services/key-pressed.service.mjs +37 -0
  119. package/esm2022/lib/services/resize-window-observer.service.mjs +33 -0
  120. package/esm2022/lib/services/selected-objects-state.service.mjs +123 -0
  121. package/esm2022/lib/store/fast-query-store.service.mjs +110 -0
  122. package/esm2022/lib/store/index.mjs +2 -0
  123. package/esm2022/lib/types/event.types.mjs +2 -0
  124. package/esm2022/lib/types/hasura.types.mjs +2 -0
  125. package/esm2022/lib/types/index.mjs +7 -0
  126. package/esm2022/lib/types/inputs.types.mjs +19 -0
  127. package/esm2022/lib/types/params.types.mjs +2 -0
  128. package/esm2022/lib/types/register-base.types.mjs +6 -0
  129. package/esm2022/lib/types/sub-types.mjs +2 -0
  130. package/esm2022/lib/types/user-profile.types.mjs +2 -0
  131. package/esm2022/lib/utils/functions.mjs +10 -0
  132. package/esm2022/lib/utils/get-url-segment.mjs +35 -0
  133. package/esm2022/lib/utils/index.mjs +5 -0
  134. package/esm2022/lib/utils/prizm.shared.module.mjs +284 -0
  135. package/esm2022/lib/utils/rxjs.mjs +28 -0
  136. package/esm2022/lib/utils/select-all-utils.mjs +11 -0
  137. package/esm2022/ngx-register-base.mjs +5 -0
  138. package/esm2022/public-api.mjs +9 -0
  139. package/fesm2022/ngx-register-base.mjs +7487 -0
  140. package/fesm2022/ngx-register-base.mjs.map +1 -0
  141. package/index.d.ts +5 -0
  142. package/lib/components/checkbox-selector/checkbox-selector.component.d.ts +33 -0
  143. package/lib/components/checkbox-selector/checkbox-selector.types.d.ts +7 -0
  144. package/lib/components/column-settings/column-settings.component.d.ts +80 -0
  145. package/lib/components/column-settings/components/column-settings-template/column-settings-template.component.d.ts +24 -0
  146. package/lib/components/column-settings/consts/column-settings.consts.d.ts +8 -0
  147. package/lib/components/column-settings/types/column-settings.types.d.ts +22 -0
  148. package/lib/components/divider/divider.component.d.ts +6 -0
  149. package/lib/components/filter-button/filter-button.component.d.ts +8 -0
  150. package/lib/components/filters/components/filter-list/filter-edit/filter-edit.component.d.ts +14 -0
  151. package/lib/components/filters/components/filter-list/filter-list-footer/filter-list-footer.component.d.ts +25 -0
  152. package/lib/components/filters/components/filter-list/filter-list-header/filter-list-header.component.d.ts +39 -0
  153. package/lib/components/filters/components/filter-list/filter-list-saved/filter-list-saved.component.d.ts +41 -0
  154. package/lib/components/filters/components/filter-list/filter-list.service.d.ts +20 -0
  155. package/lib/components/filters/components/filter-list/filters-section/filters-section.component.d.ts +15 -0
  156. package/lib/components/filters/components/filter-list.module.d.ts +15 -0
  157. package/lib/components/filters/register-table-filter.component.d.ts +40 -0
  158. package/lib/components/filters/register-table-filter.module.d.ts +13 -0
  159. package/lib/components/inputs/inputs.module.d.ts +31 -0
  160. package/lib/components/inputs/param-calendar-year/param-calendar-year.component.d.ts +19 -0
  161. package/lib/components/inputs/param-custom/param-custom.component.d.ts +6 -0
  162. package/lib/components/inputs/param-date/param-date.component.d.ts +20 -0
  163. package/lib/components/inputs/param-date-range/param-date-range.component.d.ts +26 -0
  164. package/lib/components/inputs/param-date-time/param-date-time.component.d.ts +25 -0
  165. package/lib/components/inputs/param-date-time-range/param-date-time-range.component.d.ts +28 -0
  166. package/lib/components/inputs/param-month/param-month.component.d.ts +18 -0
  167. package/lib/components/inputs/param-month-range/param-month-range.component.d.ts +21 -0
  168. package/lib/components/inputs/param-multi-select/param-multi-select.component.d.ts +46 -0
  169. package/lib/components/inputs/param-select/param-select.component.d.ts +34 -0
  170. package/lib/components/inputs/param-switcher/param-switcher.component.d.ts +8 -0
  171. package/lib/components/inputs/param-switcher-date-time-range/consts/param-switcher-date-time-range.consts.d.ts +2 -0
  172. package/lib/components/inputs/param-switcher-date-time-range/param-switcher-date-time-range.component.d.ts +19 -0
  173. package/lib/components/inputs/param-switcher-date-time-range/types/param-switcher-date-time-range.types.d.ts +8 -0
  174. package/lib/components/inputs/param-text/param-text.component.d.ts +10 -0
  175. package/lib/components/inputs/param-textarea/param-textarea.component.d.ts +10 -0
  176. package/lib/components/inputs/param-toggle/param-toggle.component.d.ts +9 -0
  177. package/lib/components/inputs/param-tree/consts/param-tree.consts.d.ts +7 -0
  178. package/lib/components/inputs/param-tree/param-tree.component.d.ts +41 -0
  179. package/lib/components/inputs/param-tree/services/param-tree.service.d.ts +37 -0
  180. package/lib/components/inputs/param-tree/services/sync-tree-loader.service.d.ts +10 -0
  181. package/{src/lib/components/inputs/param-tree/tokens/param-tree.tokens.ts → lib/components/inputs/param-tree/tokens/param-tree.tokens.d.ts} +1 -2
  182. package/lib/components/inputs/param-tree/types/param-tree.types.d.ts +32 -0
  183. package/lib/components/inputs/param-tree/utils/param-tree.utils.d.ts +7 -0
  184. package/lib/components/inputs/param-tree-multi-select/param-tree-multi-select.component.d.ts +31 -0
  185. package/lib/components/inputs/param-tree-select/param-tree-select.component.d.ts +30 -0
  186. package/lib/components/inputs/sub-components/param-delete-content-icon/param-delete-content-btn.component.d.ts +6 -0
  187. package/lib/components/inputs/sub-components/param-invalid-icon/param-invalid-icon.component.d.ts +5 -0
  188. package/lib/components/menu-constructor/sproc-menu-constructor.component.d.ts +113 -0
  189. package/lib/components/menu-constructor/store/sproc-abstract-menu-constructor.store.d.ts +24 -0
  190. package/lib/components/menu-constructor/store/sproc-menu-constructor.consts.d.ts +36 -0
  191. package/{src/lib/components/menu-constructor/store/sproc-menu.tokens.ts → lib/components/menu-constructor/store/sproc-menu.tokens.d.ts} +1 -4
  192. package/lib/components/page-menu/schema/sproc-page-menu.consts.d.ts +7 -0
  193. package/lib/components/page-menu/schema/sproc-page-menu.schema.d.ts +30 -0
  194. package/lib/components/page-menu/schema/sproc-page-menu.tokens.d.ts +3 -0
  195. package/lib/components/page-menu/schema/sproc-page-menu.types.d.ts +36 -0
  196. package/lib/components/page-menu/sproc-page-menu.component.d.ts +48 -0
  197. package/lib/components/paginator/paginator.component.d.ts +52 -0
  198. package/lib/components/paginator/types/paginator.types.d.ts +15 -0
  199. package/lib/components/register-table/consts/register-table.consts.d.ts +3 -0
  200. package/lib/components/register-table/directives/cell-template.directive.d.ts +9 -0
  201. package/lib/components/register-table/directives/header-template.directive.d.ts +9 -0
  202. package/lib/components/register-table/model/schema.d.ts +52 -0
  203. package/lib/components/register-table/pipes/class-by-type.pipe.d.ts +8 -0
  204. package/lib/components/register-table/pipes/sticky-column.pipe.d.ts +7 -0
  205. package/lib/components/register-table/register-table.component.d.ts +165 -0
  206. package/lib/components/reset-settings-form/reset-settings-form.component.d.ts +9 -0
  207. package/lib/components/search-input/search-input.component.d.ts +11 -0
  208. package/lib/components/sliding-panel/sliding-panel.component.d.ts +14 -0
  209. package/lib/components/sliding-panel/sliding-panel.module.d.ts +9 -0
  210. package/lib/consts/date-time.consts.d.ts +1 -0
  211. package/lib/consts/index.d.ts +3 -0
  212. package/lib/consts/inputs.consts.d.ts +4 -0
  213. package/lib/consts/month.consts.d.ts +49 -0
  214. package/lib/consts/params.consts.d.ts +1 -0
  215. package/lib/consts/register-base.consts.d.ts +19 -0
  216. package/lib/core/form-group-wrapper/errors-consts.d.ts +5 -0
  217. package/lib/core/form-group-wrapper/form-group-wrapper.d.ts +15 -0
  218. package/lib/core/input-control/input-control.d.ts +11 -0
  219. package/lib/core/param/param-base.d.ts +68 -0
  220. package/lib/core/param/param-date-base.d.ts +18 -0
  221. package/lib/core/param/param-select-base.d.ts +42 -0
  222. package/lib/core/param/param-text-base.d.ts +15 -0
  223. package/{src/lib/core/param/param.tokens.ts → lib/core/param/param.tokens.d.ts} +1 -2
  224. package/lib/core/register-base/register-base.d.ts +168 -0
  225. package/lib/core/register-base/register-base.store.d.ts +35 -0
  226. package/lib/directives/date/date-time.types.d.ts +32 -0
  227. package/lib/directives/date/format-date.pipe.d.ts +10 -0
  228. package/lib/directives/number/number-only.directive.d.ts +10 -0
  229. package/lib/directives/sticky/sticky-relative.directive.d.ts +13 -0
  230. package/lib/directives/sticky/sticky-relative.service.d.ts +15 -0
  231. package/lib/directives/sticky/sticky.directive.d.ts +27 -0
  232. package/lib/services/date-time.service.d.ts +80 -0
  233. package/lib/services/dialog/dialog.service.d.ts +22 -0
  234. package/{src/lib/services/dialog/dialog.types.ts → lib/services/dialog/dialog.types.d.ts} +4 -8
  235. package/lib/services/dom-intersection.service.d.ts +8 -0
  236. package/lib/services/filter/filters-state.service.d.ts +21 -0
  237. package/lib/services/filter/filters-transmit.service.d.ts +28 -0
  238. package/lib/services/filter/filters.service.d.ts +12 -0
  239. package/lib/services/inputs-state.service.d.ts +57 -0
  240. package/lib/services/inputs.service.d.ts +28 -0
  241. package/lib/services/key-pressed.service.d.ts +15 -0
  242. package/lib/services/resize-window-observer.service.d.ts +11 -0
  243. package/lib/services/selected-objects-state.service.d.ts +47 -0
  244. package/lib/store/fast-query-store.service.d.ts +19 -0
  245. package/{src/lib/types/event.types.ts → lib/types/event.types.d.ts} +1 -1
  246. package/lib/types/hasura.types.d.ts +35 -0
  247. package/lib/types/inputs.types.d.ts +41 -0
  248. package/lib/types/params.types.d.ts +27 -0
  249. package/lib/types/register-base.types.d.ts +123 -0
  250. package/lib/types/sub-types.d.ts +8 -0
  251. package/lib/types/user-profile.types.d.ts +17 -0
  252. package/lib/utils/functions.d.ts +3 -0
  253. package/lib/utils/get-url-segment.d.ts +7 -0
  254. package/lib/utils/prizm.shared.module.d.ts +14 -0
  255. package/lib/utils/rxjs.d.ts +10 -0
  256. package/lib/utils/select-all-utils.d.ts +8 -0
  257. package/package.json +15 -12
  258. package/schematics/ng-update/replace-menu-state-token/index.d.ts +2 -0
  259. package/schematics/ng-update/replace-menu-state-token/index.js +29 -0
  260. package/schematics/ng-update/replace-menu-state-token/index.js.map +1 -0
  261. package/schematics/ng-update/update-prefix/index.d.ts +2 -0
  262. package/schematics/ng-update/update-prefix/index.js +33 -0
  263. package/schematics/ng-update/update-prefix/index.js.map +1 -0
  264. package/schematics/utils/{utils.ts → utils.d.ts} +2 -9
  265. package/schematics/utils/utils.js +25 -0
  266. package/schematics/utils/utils.js.map +1 -0
  267. package/ng-package.json +0 -15
  268. package/schematics/ng-update/replace-menu-state-token/index.ts +0 -33
  269. package/schematics/ng-update/update-prefix/index.ts +0 -38
  270. package/src/lib/components/checkbox-selector/checkbox-selector.component.html +0 -91
  271. package/src/lib/components/checkbox-selector/checkbox-selector.component.less +0 -67
  272. package/src/lib/components/checkbox-selector/checkbox-selector.component.ts +0 -176
  273. package/src/lib/components/checkbox-selector/checkbox-selector.types.ts +0 -8
  274. package/src/lib/components/column-settings/column-settings.component.html +0 -160
  275. package/src/lib/components/column-settings/column-settings.component.less +0 -131
  276. package/src/lib/components/column-settings/column-settings.component.ts +0 -352
  277. package/src/lib/components/column-settings/components/column-settings-template/column-settings-template.component.html +0 -65
  278. package/src/lib/components/column-settings/components/column-settings-template/column-settings-template.component.less +0 -79
  279. package/src/lib/components/column-settings/components/column-settings-template/column-settings-template.component.ts +0 -114
  280. package/src/lib/components/column-settings/consts/column-settings.consts.ts +0 -9
  281. package/src/lib/components/column-settings/types/column-settings.types.ts +0 -26
  282. package/src/lib/components/divider/divider.component.html +0 -4
  283. package/src/lib/components/divider/divider.component.less +0 -10
  284. package/src/lib/components/divider/divider.component.ts +0 -12
  285. package/src/lib/components/filter-button/filter-button.component.html +0 -20
  286. package/src/lib/components/filter-button/filter-button.component.less +0 -41
  287. package/src/lib/components/filter-button/filter-button.component.ts +0 -18
  288. package/src/lib/components/filters/components/filter-list/filter-edit/filter-edit.component.html +0 -22
  289. package/src/lib/components/filters/components/filter-list/filter-edit/filter-edit.component.less +0 -23
  290. package/src/lib/components/filters/components/filter-list/filter-edit/filter-edit.component.ts +0 -31
  291. package/src/lib/components/filters/components/filter-list/filter-list-footer/filter-list-footer.component.html +0 -49
  292. package/src/lib/components/filters/components/filter-list/filter-list-footer/filter-list-footer.component.less +0 -37
  293. package/src/lib/components/filters/components/filter-list/filter-list-footer/filter-list-footer.component.ts +0 -66
  294. package/src/lib/components/filters/components/filter-list/filter-list-header/filter-list-header.component.html +0 -147
  295. package/src/lib/components/filters/components/filter-list/filter-list-header/filter-list-header.component.less +0 -45
  296. package/src/lib/components/filters/components/filter-list/filter-list-header/filter-list-header.component.ts +0 -114
  297. package/src/lib/components/filters/components/filter-list/filter-list-saved/filter-list-saved.component.html +0 -44
  298. package/src/lib/components/filters/components/filter-list/filter-list-saved/filter-list-saved.component.less +0 -49
  299. package/src/lib/components/filters/components/filter-list/filter-list-saved/filter-list-saved.component.ts +0 -167
  300. package/src/lib/components/filters/components/filter-list/filter-list.service.ts +0 -97
  301. package/src/lib/components/filters/components/filter-list/filters-section/filters-section.component.html +0 -18
  302. package/src/lib/components/filters/components/filter-list/filters-section/filters-section.component.less +0 -55
  303. package/src/lib/components/filters/components/filter-list/filters-section/filters-section.component.ts +0 -69
  304. package/src/lib/components/filters/components/filter-list.module.ts +0 -29
  305. package/src/lib/components/filters/register-table-filter.component.html +0 -53
  306. package/src/lib/components/filters/register-table-filter.component.less +0 -17
  307. package/src/lib/components/filters/register-table-filter.component.ts +0 -167
  308. package/src/lib/components/filters/register-table-filter.module.ts +0 -22
  309. package/src/lib/components/inputs/inputs.module.ts +0 -104
  310. package/src/lib/components/inputs/param-calendar-year/param-calendar-year.component.html +0 -49
  311. package/src/lib/components/inputs/param-calendar-year/param-calendar-year.component.less +0 -70
  312. package/src/lib/components/inputs/param-calendar-year/param-calendar-year.component.ts +0 -52
  313. package/src/lib/components/inputs/param-custom/param-custom.component.html +0 -1
  314. package/src/lib/components/inputs/param-custom/param-custom.component.ts +0 -9
  315. package/src/lib/components/inputs/param-date/param-date.component.html +0 -55
  316. package/src/lib/components/inputs/param-date/param-date.component.less +0 -67
  317. package/src/lib/components/inputs/param-date/param-date.component.ts +0 -77
  318. package/src/lib/components/inputs/param-date-range/param-date-range.component.html +0 -45
  319. package/src/lib/components/inputs/param-date-range/param-date-range.component.less +0 -75
  320. package/src/lib/components/inputs/param-date-range/param-date-range.component.ts +0 -67
  321. package/src/lib/components/inputs/param-date-time/param-date-time.component.html +0 -70
  322. package/src/lib/components/inputs/param-date-time/param-date-time.component.less +0 -72
  323. package/src/lib/components/inputs/param-date-time/param-date-time.component.ts +0 -101
  324. package/src/lib/components/inputs/param-date-time-range/param-date-time-range.component.html +0 -67
  325. package/src/lib/components/inputs/param-date-time-range/param-date-time-range.component.less +0 -103
  326. package/src/lib/components/inputs/param-date-time-range/param-date-time-range.component.ts +0 -128
  327. package/src/lib/components/inputs/param-month/param-month.component.html +0 -46
  328. package/src/lib/components/inputs/param-month/param-month.component.less +0 -72
  329. package/src/lib/components/inputs/param-month/param-month.component.ts +0 -55
  330. package/src/lib/components/inputs/param-month-range/param-month-range.component.html +0 -39
  331. package/src/lib/components/inputs/param-month-range/param-month-range.component.less +0 -71
  332. package/src/lib/components/inputs/param-month-range/param-month-range.component.ts +0 -76
  333. package/src/lib/components/inputs/param-multi-select/param-multi-select.component.html +0 -84
  334. package/src/lib/components/inputs/param-multi-select/param-multi-select.component.less +0 -108
  335. package/src/lib/components/inputs/param-multi-select/param-multi-select.component.ts +0 -448
  336. package/src/lib/components/inputs/param-select/param-select.component.html +0 -106
  337. package/src/lib/components/inputs/param-select/param-select.component.less +0 -26
  338. package/src/lib/components/inputs/param-select/param-select.component.ts +0 -318
  339. package/src/lib/components/inputs/param-switcher/param-switcher.component.html +0 -8
  340. package/src/lib/components/inputs/param-switcher/param-switcher.component.less +0 -53
  341. package/src/lib/components/inputs/param-switcher/param-switcher.component.ts +0 -13
  342. package/src/lib/components/inputs/param-switcher-date-time-range/consts/param-switcher-date-time-range.consts.ts +0 -29
  343. package/src/lib/components/inputs/param-switcher-date-time-range/param-switcher-date-time-range.component.html +0 -19
  344. package/src/lib/components/inputs/param-switcher-date-time-range/param-switcher-date-time-range.component.less +0 -76
  345. package/src/lib/components/inputs/param-switcher-date-time-range/param-switcher-date-time-range.component.ts +0 -134
  346. package/src/lib/components/inputs/param-switcher-date-time-range/types/param-switcher-date-time-range.types.ts +0 -8
  347. package/src/lib/components/inputs/param-text/param-text.component.html +0 -59
  348. package/src/lib/components/inputs/param-text/param-text.component.less +0 -33
  349. package/src/lib/components/inputs/param-text/param-text.component.ts +0 -36
  350. package/src/lib/components/inputs/param-textarea/param-textarea.component.html +0 -61
  351. package/src/lib/components/inputs/param-textarea/param-textarea.component.less +0 -21
  352. package/src/lib/components/inputs/param-textarea/param-textarea.component.ts +0 -33
  353. package/src/lib/components/inputs/param-toggle/param-toggle.component.html +0 -40
  354. package/src/lib/components/inputs/param-toggle/param-toggle.component.less +0 -69
  355. package/src/lib/components/inputs/param-toggle/param-toggle.component.ts +0 -14
  356. package/src/lib/components/inputs/param-tree/consts/param-tree.consts.ts +0 -59
  357. package/src/lib/components/inputs/param-tree/param-tree.component.html +0 -51
  358. package/src/lib/components/inputs/param-tree/param-tree.component.less +0 -3
  359. package/src/lib/components/inputs/param-tree/param-tree.component.ts +0 -282
  360. package/src/lib/components/inputs/param-tree/services/param-tree.service.ts +0 -176
  361. package/src/lib/components/inputs/param-tree/services/sync-tree-loader.service.ts +0 -18
  362. package/src/lib/components/inputs/param-tree/types/param-tree.types.ts +0 -39
  363. package/src/lib/components/inputs/param-tree/utils/param-tree.utils.ts +0 -18
  364. package/src/lib/components/inputs/param-tree-multi-select/param-tree-multi-select.component.html +0 -78
  365. package/src/lib/components/inputs/param-tree-multi-select/param-tree-multi-select.component.less +0 -109
  366. package/src/lib/components/inputs/param-tree-multi-select/param-tree-multi-select.component.ts +0 -89
  367. package/src/lib/components/inputs/param-tree-select/param-tree-select.component.html +0 -54
  368. package/src/lib/components/inputs/param-tree-select/param-tree-select.component.less +0 -56
  369. package/src/lib/components/inputs/param-tree-select/param-tree-select.component.ts +0 -91
  370. package/src/lib/components/inputs/sub-components/param-delete-content-icon/param-delete-content-btn.component.html +0 -5
  371. package/src/lib/components/inputs/sub-components/param-delete-content-icon/param-delete-content-btn.component.ts +0 -13
  372. package/src/lib/components/inputs/sub-components/param-invalid-icon/param-invalid-icon.component.html +0 -4
  373. package/src/lib/components/inputs/sub-components/param-invalid-icon/param-invalid-icon.component.ts +0 -11
  374. package/src/lib/components/menu-constructor/sproc-menu-constructor.component.html +0 -95
  375. package/src/lib/components/menu-constructor/sproc-menu-constructor.component.less +0 -183
  376. package/src/lib/components/menu-constructor/sproc-menu-constructor.component.ts +0 -687
  377. package/src/lib/components/menu-constructor/store/sproc-abstract-menu-constructor.store.ts +0 -32
  378. package/src/lib/components/menu-constructor/store/sproc-menu-constructor.consts.ts +0 -46
  379. package/src/lib/components/page-menu/README.md +0 -60
  380. package/src/lib/components/page-menu/schema/sproc-page-menu.consts.ts +0 -8
  381. package/src/lib/components/page-menu/schema/sproc-page-menu.schema.ts +0 -35
  382. package/src/lib/components/page-menu/schema/sproc-page-menu.tokens.ts +0 -5
  383. package/src/lib/components/page-menu/schema/sproc-page-menu.types.ts +0 -42
  384. package/src/lib/components/page-menu/sproc-page-menu.component.html +0 -166
  385. package/src/lib/components/page-menu/sproc-page-menu.component.less +0 -228
  386. package/src/lib/components/page-menu/sproc-page-menu.component.ts +0 -337
  387. package/src/lib/components/paginator/paginator.component.html +0 -97
  388. package/src/lib/components/paginator/paginator.component.less +0 -101
  389. package/src/lib/components/paginator/paginator.component.ts +0 -192
  390. package/src/lib/components/paginator/types/paginator.types.ts +0 -16
  391. package/src/lib/components/register-table/consts/register-table.consts.ts +0 -3
  392. package/src/lib/components/register-table/directives/cell-template.directive.ts +0 -11
  393. package/src/lib/components/register-table/directives/header-template.directive.ts +0 -11
  394. package/src/lib/components/register-table/model/schema.ts +0 -62
  395. package/src/lib/components/register-table/pipes/class-by-type.pipe.ts +0 -28
  396. package/src/lib/components/register-table/pipes/sticky-column.pipe.ts +0 -11
  397. package/src/lib/components/register-table/register-table.component.html +0 -257
  398. package/src/lib/components/register-table/register-table.component.less +0 -151
  399. package/src/lib/components/register-table/register-table.component.ts +0 -743
  400. package/src/lib/components/reset-settings-form/reset-settings-form.component.html +0 -14
  401. package/src/lib/components/reset-settings-form/reset-settings-form.component.less +0 -26
  402. package/src/lib/components/reset-settings-form/reset-settings-form.component.ts +0 -15
  403. package/src/lib/components/search-input/search-input.component.html +0 -6
  404. package/src/lib/components/search-input/search-input.component.less +0 -17
  405. package/src/lib/components/search-input/search-input.component.ts +0 -31
  406. package/src/lib/components/sliding-panel/sliding-panel.component.html +0 -13
  407. package/src/lib/components/sliding-panel/sliding-panel.component.less +0 -112
  408. package/src/lib/components/sliding-panel/sliding-panel.component.ts +0 -36
  409. package/src/lib/components/sliding-panel/sliding-panel.module.ts +0 -11
  410. package/src/lib/consts/date-time.consts.ts +0 -1
  411. package/src/lib/consts/index.ts +0 -8
  412. package/src/lib/consts/inputs.consts.ts +0 -9
  413. package/src/lib/consts/month.consts.ts +0 -82
  414. package/src/lib/consts/params.consts.ts +0 -1
  415. package/src/lib/consts/register-base.consts.ts +0 -40
  416. package/src/lib/core/form-group-wrapper/errors-consts.ts +0 -6
  417. package/src/lib/core/form-group-wrapper/form-group-wrapper.ts +0 -109
  418. package/src/lib/core/input-control/input-control.ts +0 -30
  419. package/src/lib/core/param/param-base.ts +0 -262
  420. package/src/lib/core/param/param-date-base.ts +0 -30
  421. package/src/lib/core/param/param-select-base.ts +0 -118
  422. package/src/lib/core/param/param-text-base.ts +0 -23
  423. package/src/lib/core/register-base/register-base.store.ts +0 -84
  424. package/src/lib/core/register-base/register-base.ts +0 -854
  425. package/src/lib/directives/date/date-time.types.ts +0 -36
  426. package/src/lib/directives/date/format-date.pipe.ts +0 -28
  427. package/src/lib/directives/number/number-only.directive.ts +0 -36
  428. package/src/lib/directives/sticky/sticky-relative.directive.ts +0 -30
  429. package/src/lib/directives/sticky/sticky-relative.service.ts +0 -34
  430. package/src/lib/directives/sticky/sticky.directive.ts +0 -189
  431. package/src/lib/services/date-time.service.ts +0 -399
  432. package/src/lib/services/dialog/dialog.service.ts +0 -62
  433. package/src/lib/services/dom-intersection.service.ts +0 -23
  434. package/src/lib/services/filter/filters-state.service.ts +0 -83
  435. package/src/lib/services/filter/filters-transmit.service.ts +0 -105
  436. package/src/lib/services/filter/filters.service.ts +0 -21
  437. package/src/lib/services/inputs-state.service.ts +0 -157
  438. package/src/lib/services/inputs.service.ts +0 -114
  439. package/src/lib/services/key-pressed.service.ts +0 -40
  440. package/src/lib/services/resize-window-observer.service.ts +0 -37
  441. package/src/lib/services/selected-objects-state.service.ts +0 -159
  442. package/src/lib/store/fast-query-store.service.ts +0 -132
  443. package/src/lib/types/hasura.types.ts +0 -41
  444. package/src/lib/types/inputs.types.ts +0 -63
  445. package/src/lib/types/params.types.ts +0 -42
  446. package/src/lib/types/register-base.types.ts +0 -161
  447. package/src/lib/types/sub-types.ts +0 -15
  448. package/src/lib/types/user-profile.types.ts +0 -18
  449. package/src/lib/utils/functions.ts +0 -11
  450. package/src/lib/utils/get-url-segment.ts +0 -46
  451. package/src/lib/utils/prizm.shared.module.ts +0 -176
  452. package/src/lib/utils/rxjs.ts +0 -33
  453. package/src/lib/utils/select-all-utils.ts +0 -16
  454. package/tsconfig.lib.json +0 -16
  455. package/tsconfig.lib.prod.json +0 -11
  456. package/tsconfig.schematics.json +0 -26
  457. package/tsconfig.spec.json +0 -15
  458. /package/{src/lib/components/column-settings/index.ts → lib/components/column-settings/index.d.ts} +0 -0
  459. /package/{src/lib/components/filters/index.ts → lib/components/filters/index.d.ts} +0 -0
  460. /package/{src/lib/components/index.ts → lib/components/index.d.ts} +0 -0
  461. /package/{src/lib/components/inputs/index.ts → lib/components/inputs/index.d.ts} +0 -0
  462. /package/{src/lib/components/inputs/param-switcher-date-time-range/index.ts → lib/components/inputs/param-switcher-date-time-range/index.d.ts} +0 -0
  463. /package/{src/lib/components/inputs/param-tree/index.ts → lib/components/inputs/param-tree/index.d.ts} +0 -0
  464. /package/{src/lib/components/menu-constructor/index.ts → lib/components/menu-constructor/index.d.ts} +0 -0
  465. /package/{src/lib/components/page-menu/index.ts → lib/components/page-menu/index.d.ts} +0 -0
  466. /package/{src/lib/components/register-table/index.ts → lib/components/register-table/index.d.ts} +0 -0
  467. /package/{src/lib/core/form-group-wrapper/index.ts → lib/core/form-group-wrapper/index.d.ts} +0 -0
  468. /package/{src/lib/core/index.ts → lib/core/index.d.ts} +0 -0
  469. /package/{src/lib/core/input-control/index.ts → lib/core/input-control/index.d.ts} +0 -0
  470. /package/{src/lib/core/param/index.ts → lib/core/param/index.d.ts} +0 -0
  471. /package/{src/lib/core/register-base/index.ts → lib/core/register-base/index.d.ts} +0 -0
  472. /package/{src/lib/directives/index.ts → lib/directives/index.d.ts} +0 -0
  473. /package/{src/lib/directives/sticky/index.ts → lib/directives/sticky/index.d.ts} +0 -0
  474. /package/{src/lib/services/dialog/index.ts → lib/services/dialog/index.d.ts} +0 -0
  475. /package/{src/lib/services/index.ts → lib/services/index.d.ts} +0 -0
  476. /package/{src/lib/store/index.ts → lib/store/index.d.ts} +0 -0
  477. /package/{src/lib/types/index.ts → lib/types/index.d.ts} +0 -0
  478. /package/{src/lib/utils/index.ts → lib/utils/index.d.ts} +0 -0
  479. /package/{src/public-api.ts → public-api.d.ts} +0 -0
@@ -0,0 +1,36 @@
1
+ import { ScalarUUID } from 'hasura';
2
+ import { IClsMenuItem } from '../../page-menu';
3
+ export interface FlatNode {
4
+ id: ScalarUUID;
5
+ id_parent: ScalarUUID | null;
6
+ title: string;
7
+ code: string;
8
+ route: string;
9
+ icon: string;
10
+ order_num: number;
11
+ allowed_roles: string | null;
12
+ depth: number;
13
+ collapsed?: boolean;
14
+ }
15
+ export declare const ROOT_TITLE = "root";
16
+ export declare const NEW_ITEM_PREFIX = "NEW_";
17
+ export declare const MIGRATION_HINT = "\u0413\u0435\u043D\u0435\u0440\u0438\u0440\u0443\u0435\u0442 SQL \u043A\u043E\u0434 \u0434\u043B\u044F \u043C\u0438\u0433\u0440\u0430\u0446\u0438\u0438 \u0442\u0430\u0431\u043B\u0438\u0446\u044B cls_menu_item. \u0413\u0435\u043D\u0435\u0440\u0430\u0446\u0438\u044F \u043A\u043E\u0434\u0430 \u043F\u0440\u043E\u0438\u0441\u0445\u043E\u0434\u0438\u0442 \u043D\u0430 \u043E\u0441\u043D\u043E\u0432\u0435 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u0441\u043E\u0445\u0440\u0430\u043D\u0435\u043D\u043D\u043E\u0433\u043E \u043C\u0435\u043D\u044E.";
18
+ export interface IClsMenuItemResponse {
19
+ usr_cls_menu_item: IClsMenuItem[];
20
+ }
21
+ export type AlertAppearance = 'info' | 'negative' | 'warning' | 'positive' | 'neutral';
22
+ export interface IClsMenuItemInput {
23
+ title: string | null;
24
+ route: string | null;
25
+ code: string | null;
26
+ icon: string | null;
27
+ order_num: number;
28
+ allowed_roles: string[] | null;
29
+ id_parent: ScalarUUID | null;
30
+ }
31
+ export interface IMenuConstructorError {
32
+ label: string;
33
+ content: any;
34
+ appearance: AlertAppearance;
35
+ }
36
+ export declare const EMPTY_UUID = "00000000-0000-0000-0000-000000000000";
@@ -1,6 +1,3 @@
1
1
  import { InjectionToken } from '@angular/core';
2
2
  import { SprocAbstractMenuConstructorStore } from './sproc-abstract-menu-constructor.store';
3
-
4
- export const MENU_CONSTRUCTOR_STORE_TOKEN = new InjectionToken<SprocAbstractMenuConstructorStore>(
5
- 'MENU_CONSTRUCTOR_STORE_TOKEN',
6
- );
3
+ export declare const MENU_CONSTRUCTOR_STORE_TOKEN: InjectionToken<SprocAbstractMenuConstructorStore>;
@@ -0,0 +1,7 @@
1
+ export declare const SIDE_MENU_OPENED_WIDTH = 350;
2
+ export declare const SIDE_MENU_CLOSED_WIDTH = 48;
3
+ export declare enum EPageMenuIconsSrc {
4
+ CHEVRON_RIGHT = "assets/ngx-register-base/icons/chevron-right.svg",
5
+ CHEVRON_UP = "assets/ngx-register-base/icons/chevron-up.svg",
6
+ MENU_CHEVRON = "assets/ngx-register-base/icons/chevron-menu.svg"
7
+ }
@@ -0,0 +1,30 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ export interface IScreen {
3
+ title: string;
4
+ icon?: string;
5
+ }
6
+ export interface NavigationMenuItem {
7
+ text: string;
8
+ extraTemplate?: TemplateRef<unknown> | null;
9
+ icon?: string | null;
10
+ isGroup?: boolean;
11
+ children?: NavigationMenuItem[];
12
+ }
13
+ export interface CustomItem extends NavigationMenuItem {
14
+ id: string;
15
+ children?: CustomItem[];
16
+ }
17
+ export interface INavigationBase extends IScreen {
18
+ isExpanded?: boolean;
19
+ children?: INavigationBase[];
20
+ route?: string;
21
+ code?: string;
22
+ id?: string;
23
+ accessedRoles?: string[];
24
+ parent?: INavigationBase;
25
+ }
26
+ export interface INavigation extends Omit<INavigationBase, 'isExpanded'> {
27
+ code: string;
28
+ children?: INavigation[];
29
+ parent?: INavigation;
30
+ }
@@ -0,0 +1,3 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { AbstractMenuStateService } from './sproc-page-menu.types';
3
+ export declare const PAGE_MENU_STATE: InjectionToken<AbstractMenuStateService>;
@@ -0,0 +1,36 @@
1
+ import { Observable } from 'rxjs';
2
+ import { ScalarUUID } from 'hasura';
3
+ export interface IClsMenuItem {
4
+ code: string;
5
+ id: ScalarUUID;
6
+ id_parent: string;
7
+ route: string | null;
8
+ title: string | null;
9
+ icon: string | undefined;
10
+ allowed_roles: string[] | null;
11
+ is_deleted: boolean;
12
+ order_num: number | null;
13
+ children?: IClsMenuItem[];
14
+ }
15
+ export declare abstract class AbstractMenuStateService {
16
+ /**
17
+ * Observable, отражающий текущее состояние меню (открыто / закрыто)
18
+ */
19
+ abstract readonly isOpen$: Observable<boolean>;
20
+ /**
21
+ * Observable, сигнализирующий, доступно ли переключение меню
22
+ */
23
+ abstract readonly toggleDisabled$: Observable<boolean>;
24
+ /**
25
+ * Текущее синхронное состояние меню
26
+ */
27
+ abstract get isOpen(): boolean;
28
+ /**
29
+ * Принудительно установить состояние меню
30
+ */
31
+ abstract setOpen(value: boolean): void;
32
+ /**
33
+ * Переключить состояние меню
34
+ */
35
+ abstract toggle(): void;
36
+ }
@@ -0,0 +1,48 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { EPageMenuIconsSrc } from './schema/sproc-page-menu.consts';
3
+ import { IClsMenuItem } from './schema/sproc-page-menu.types';
4
+ import { INavigation } from './schema/sproc-page-menu.schema';
5
+ import * as i0 from "@angular/core";
6
+ export declare class SprocPageMenuComponent implements OnInit {
7
+ menuItems: import("@angular/core").InputSignal<IClsMenuItem[]>;
8
+ menuIconsSrc: import("@angular/core").InputSignal<string>;
9
+ openLogoSrc: import("@angular/core").InputSignal<string>;
10
+ closedLogoSrc: import("@angular/core").InputSignal<string>;
11
+ findActiveSection: import("@angular/core").InputSignal<(reset: () => void, findRoute: (routeToFind: string) => void) => void>;
12
+ readonly menuOpenedWidth = "350px";
13
+ readonly menuClosedWidth = "48px";
14
+ private readonly _router;
15
+ private readonly _state;
16
+ private readonly _dr;
17
+ protected readonly toggleDisabled$: import("rxjs").Observable<boolean>;
18
+ protected menuState: import("@angular/core").Signal<boolean | undefined>;
19
+ protected selectedSection: import("@angular/core").WritableSignal<string>;
20
+ protected expandedIds: import("@angular/core").WritableSignal<Set<string>>;
21
+ protected selectedItem: import("@angular/core").Signal<INavigation | null>;
22
+ protected parentItems: import("@angular/core").Signal<INavigation[]>;
23
+ protected parentItemCodes: import("@angular/core").Signal<Set<string>>;
24
+ navigationHierarchy: import("@angular/core").WritableSignal<INavigation[]>;
25
+ protected codeToItem: Record<string, INavigation>;
26
+ protected isOpenServiceVersionInfo: boolean;
27
+ protected readonly ICONS_SRC: typeof EPageMenuIconsSrc;
28
+ constructor();
29
+ addMenuScrollbar(id: string): void;
30
+ ngOnInit(): void;
31
+ protected toggleNavigation(): void;
32
+ protected toggleItem(item: INavigation): void;
33
+ protected collapseMenu(exception?: INavigation): void;
34
+ protected get isMenuOpened(): boolean;
35
+ protected get isMenuClosed(): boolean;
36
+ protected isExternalLink(route: string | undefined): boolean;
37
+ protected handleNavigation(item: INavigation): void;
38
+ protected serviceInfoOnActiveZone(active: boolean): void;
39
+ protected serviceInfoOnObscured(obscured: boolean): void;
40
+ private buildMenu;
41
+ private findRoute;
42
+ private _findActiveSection;
43
+ private getParents;
44
+ private resetSelection;
45
+ private collectChildren;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<SprocPageMenuComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<SprocPageMenuComponent, "sproc-page-menu", never, { "menuItems": { "alias": "menuItems"; "required": true; "isSignal": true; }; "menuIconsSrc": { "alias": "menuIconsSrc"; "required": false; "isSignal": true; }; "openLogoSrc": { "alias": "openLogoSrc"; "required": false; "isSignal": true; }; "closedLogoSrc": { "alias": "closedLogoSrc"; "required": false; "isSignal": true; }; "findActiveSection": { "alias": "findActiveSection"; "required": true; "isSignal": true; }; }, {}, never, ["*"], true, never>;
48
+ }
@@ -0,0 +1,52 @@
1
+ import { NumberInput } from '@angular/cdk/coercion';
2
+ import { OnDestroy } from '@angular/core';
3
+ import { PolymorphContent } from '@prizm-ui/components';
4
+ import { Subject } from 'rxjs';
5
+ import { IPaginatorOptions, IPaginatorOutput } from './types/paginator.types';
6
+ import * as i0 from "@angular/core";
7
+ export declare enum SvgSrc {
8
+ CHEVRONS_DOUBLE_LEFT = "assets/ngx-register-base/icons/chevrons-double-left.svg",
9
+ CHEVRONS_DOUBLE_RIGHT = "assets/ngx-register-base/icons/chevrons-double-right.svg"
10
+ }
11
+ export declare class PaginatorComponent implements OnDestroy {
12
+ textOnPage: import("@angular/core").InputSignal<PolymorphContent>;
13
+ totalRecords: import("@angular/core").InputSignalWithTransform<number, NumberInput>;
14
+ /** Количество видимых страниц вокруг активной страницы */
15
+ pageLinkSize: import("@angular/core").InputSignal<number>;
16
+ showMoreDisabled: import("@angular/core").InputSignal<boolean>;
17
+ disabled: import("@angular/core").InputSignal<boolean>;
18
+ /** Количество отображаемых строк на странице */
19
+ rows: import("@angular/core").ModelSignal<NumberInput>;
20
+ /** Текущая страница */
21
+ page: import("@angular/core").ModelSignal<NumberInput>;
22
+ paginatorOptions: import("@angular/core").InputSignal<IPaginatorOptions>;
23
+ rowsCountOptions: import("@angular/core").InputSignal<number[]>;
24
+ selectedCounter: import("@angular/core").InputSignal<number>;
25
+ totalNotFiltered: import("@angular/core").InputSignal<number>;
26
+ isLoading: import("@angular/core").InputSignal<boolean>;
27
+ /** Ограничения на количество отображаемых строк на странице */
28
+ minRowsCount: import("@angular/core").InputSignal<number>;
29
+ maxRowsCount: import("@angular/core").InputSignal<number>;
30
+ protected isIncorrectRowsCount: import("@angular/core").WritableSignal<boolean>;
31
+ protected rowsCountErrorMessage: import("@angular/core").WritableSignal<string>;
32
+ paginatorChange: import("@angular/core").OutputEmitterRef<IPaginatorOutput>;
33
+ pageChange: import("@angular/core").OutputEmitterRef<number>;
34
+ rowsChange: import("@angular/core").OutputEmitterRef<number | null>;
35
+ protected readonly SvgSrc: typeof SvgSrc;
36
+ protected pagesCount: import("@angular/core").Signal<number>;
37
+ private readonly _dr;
38
+ protected readonly currentRowsInputChange: Subject<NumberInput>;
39
+ constructor();
40
+ ngOnDestroy(): void;
41
+ protected changePage(page: number): void;
42
+ protected toFirstPage(): void;
43
+ protected toLastPage(): void;
44
+ private emitPageChange;
45
+ protected changeRows(rows: NumberInput): void;
46
+ private _emitPaginatorChanges;
47
+ /** get-методы */
48
+ protected get currentPage(): number;
49
+ protected get currentRows(): number;
50
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaginatorComponent, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "sproc-paginator", never, { "textOnPage": { "alias": "textOnPage"; "required": false; "isSignal": true; }; "totalRecords": { "alias": "totalRecords"; "required": false; "isSignal": true; }; "pageLinkSize": { "alias": "pageLinkSize"; "required": false; "isSignal": true; }; "showMoreDisabled": { "alias": "showMoreDisabled"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; "isSignal": true; }; "paginatorOptions": { "alias": "paginatorOptions"; "required": false; "isSignal": true; }; "rowsCountOptions": { "alias": "rowsCountOptions"; "required": false; "isSignal": true; }; "selectedCounter": { "alias": "selectedCounter"; "required": false; "isSignal": true; }; "totalNotFiltered": { "alias": "totalNotFiltered"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "minRowsCount": { "alias": "minRowsCount"; "required": false; "isSignal": true; }; "maxRowsCount": { "alias": "maxRowsCount"; "required": false; "isSignal": true; }; }, { "rows": "rowsChange"; "page": "pageChange"; "paginatorChange": "paginatorChange"; "pageChange": "pageChange"; "rowsChange": "rowsChange"; }, never, never, true, never>;
52
+ }
@@ -0,0 +1,15 @@
1
+ export interface IPaginatorOutput {
2
+ page: number;
3
+ first: number;
4
+ rows: number;
5
+ pagesCount: number | null;
6
+ }
7
+ export interface IPaginatorOptions {
8
+ noRowsSelector?: boolean;
9
+ noRowsSelectorLabel?: boolean;
10
+ noFilterInfo?: boolean;
11
+ noInfo?: boolean;
12
+ noPages?: boolean;
13
+ noToFirstPageBtn?: boolean;
14
+ noToLastPageBtn?: boolean;
15
+ }
@@ -0,0 +1,3 @@
1
+ export declare const CHECKBOX_SELECTOR_KEY = "checkbox-selector";
2
+ export declare const CHECKBOX_SELECTOR_WIDTH_PX = 32;
3
+ export declare const MIN_COL_WIDTH_PX = 8;
@@ -0,0 +1,9 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CellTemplateDirective {
4
+ tpl: TemplateRef<any>;
5
+ cellTemplateName: string;
6
+ constructor(tpl: TemplateRef<any>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CellTemplateDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CellTemplateDirective, "[cellTemplateName]", never, { "cellTemplateName": { "alias": "cellTemplateName"; "required": false; }; }, {}, never, never, true, never>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class HeaderTemplateDirective {
4
+ tpl: TemplateRef<any>;
5
+ headerTemplateName: import("@angular/core").InputSignal<string>;
6
+ constructor(tpl: TemplateRef<any>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeaderTemplateDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HeaderTemplateDirective, "[headerTemplateName]", never, { "headerTemplateName": { "alias": "headerTemplateName"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
9
+ }
@@ -0,0 +1,52 @@
1
+ import { OrderBy, WhereBoolExp } from 'hasura';
2
+ export type ColumnDataTypes = 'text' | 'num' | 'checkbox' | 'icon' | 'iconSvg' | 'empty' | 'date';
3
+ export declare enum EColumnDataType {
4
+ TEXT = "text",
5
+ NUM = "num",
6
+ CHECKBOX = "checkbox",
7
+ ICON = "icon",
8
+ ICON_SVG = "iconSvg",
9
+ DATE = "date"
10
+ }
11
+ export interface IColumnData {
12
+ name: string;
13
+ type: EColumnDataType | ColumnDataTypes;
14
+ value?: string;
15
+ width?: string;
16
+ isHeadTemplate?: boolean;
17
+ isTemplate?: boolean;
18
+ sortable?: boolean;
19
+ tooltipText?: string;
20
+ textStyle?: Record<string, string>;
21
+ rowspan?: number;
22
+ colspan?: number;
23
+ children?: IColumnData[];
24
+ datePattern?: string;
25
+ numberPipe?: string;
26
+ svgSrc?: string;
27
+ isCell?: boolean;
28
+ class?: string;
29
+ classTd?: string;
30
+ isLoading?: boolean;
31
+ postfix?: string;
32
+ fixed?: boolean;
33
+ headerStyle?: string;
34
+ }
35
+ export type ThWidthEntry = Pick<IColumnData, 'name' | 'width'>;
36
+ export interface IHasuraQueryFilter<T extends Record<string, any>> {
37
+ where?: WhereBoolExp<T>;
38
+ distinct_on?: (keyof T)[];
39
+ limit?: number;
40
+ offset?: number;
41
+ order_by?: OrderBy<T>;
42
+ }
43
+ export type RegisterTableSortOptions = {
44
+ order: RegisterTableCellSortOrder;
45
+ id: string;
46
+ };
47
+ export type RegisterTableCellSorterHandler<T> = (a: T, b: T, options: RegisterTableSortOptions) => number;
48
+ export type RegisterTableCellSorter<T> = {
49
+ options: RegisterTableSortOptions;
50
+ sorter?: RegisterTableCellSorterHandler<T>;
51
+ };
52
+ export type RegisterTableCellSortOrder = 'asc' | 'desc';
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { ColumnDataTypes, EColumnDataType } from '../model/schema';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ClassByTypePipe implements PipeTransform {
5
+ transform(type: ColumnDataTypes | EColumnDataType, element?: 'th' | 'td'): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClassByTypePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<ClassByTypePipe, "classByType", true>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class StickyColumnPipe implements PipeTransform {
4
+ transform(value: string, array: string[] | undefined): boolean;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<StickyColumnPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<StickyColumnPipe, "stickyColumn", true>;
7
+ }
@@ -0,0 +1,165 @@
1
+ import { DestroyRef, ElementRef, OnDestroy, TemplateRef } from '@angular/core';
2
+ import { TuiTableSortChange } from '@taiga-ui/addon-table';
3
+ import { EColumnDataType, IColumnData, RegisterTableCellSorter, ThWidthEntry } from './model/schema';
4
+ import { EDatePattern, ETimezone } from '../../directives/date/date-time.types';
5
+ import { HeaderTemplateDirective } from './directives/header-template.directive';
6
+ import { DateTimeService } from '../../services/date-time.service';
7
+ import { CellTemplateDirective } from './directives/cell-template.directive';
8
+ import { ScalarUUID } from 'hasura';
9
+ import { ERegisterObjectState, IRegisterObject } from '../../types';
10
+ import { ApplySelectionTypes } from '../checkbox-selector/checkbox-selector.types';
11
+ import { IPaginatorOutput } from '../paginator/types/paginator.types';
12
+ import * as i0 from "@angular/core";
13
+ /** Общий компонент для создания таблицы ресстра */
14
+ export declare class RegisterTableComponent implements OnDestroy {
15
+ /** Переданный контент для заголовков таблицы, темплейты с директивой HeaderTemplateDirective */
16
+ headerTemplates: import("@angular/core").Signal<readonly HeaderTemplateDirective[]>;
17
+ /** Переданный контент для ячеек таблицы, темплейты с директивой CellTemplateDirective */
18
+ cellTemplates: import("@angular/core").Signal<readonly CellTemplateDirective[]>;
19
+ /** Элементы строк таблицы */
20
+ bodyRows: import("@angular/core").Signal<readonly ElementRef<any>[]>;
21
+ /** Элемент скролла таблицы */
22
+ scrollbar: import("@angular/core").Signal<ElementRef<any> | undefined>;
23
+ /** Состояние загрузки данных таблицы */
24
+ isLoading: import("@angular/core").InputSignal<boolean | null>;
25
+ /** Состояние загрузки данных пагинации */
26
+ isPaginatorLoading: import("@angular/core").InputSignal<boolean>;
27
+ /** Номер страницы */
28
+ page: import("@angular/core").InputSignal<number | null>;
29
+ /** Количество записей на одной странице */
30
+ limit: import("@angular/core").InputSignal<number | null>;
31
+ /** Отображение колонки выбора строк (по умолчанию отображается) */
32
+ checkboxColumn: import("@angular/core").InputSignal<boolean>;
33
+ /** Список столбцов */
34
+ columns: import("@angular/core").InputSignal<string[]>;
35
+ /** Данные столбцов */
36
+ columnsData: import("@angular/core").InputSignal<IColumnData[]>;
37
+ /** Идентификаторы фиксированных слева столбцов */
38
+ stickyLeftIds: import("@angular/core").InputSignal<string[] | undefined>;
39
+ /** Идентификаторы фиксированных слева столбцов */
40
+ stickyRightIds: import("@angular/core").InputSignal<string[] | undefined>;
41
+ /** Всего записей */
42
+ totalRecords: import("@angular/core").InputSignal<number>;
43
+ /** Всего записей, без учета фильтра */
44
+ totalNotFiltered: import("@angular/core").InputSignal<number>;
45
+ /** Значения таблицы */
46
+ rowData: import("@angular/core").InputSignal<any[]>;
47
+ /**
48
+ * @description Идентификаторы выбранных записей
49
+ *
50
+ * @deprecated Используйте stateObjects
51
+ * */
52
+ selectedIds: import("@angular/core").InputSignal<Set<ScalarUUID>>;
53
+ /**
54
+ * @description Объекты выбранных записей
55
+ *
56
+ * @deprecated Используйте stateObjects
57
+ * */
58
+ selectedObjects: import("@angular/core").InputSignal<Set<any>>;
59
+ /** Загрузка дополнительных записей при выборе соответствущего пункта в чекбокс-селекторе */
60
+ isSelectloading: import("@angular/core").InputSignal<boolean | null>;
61
+ /** Текст пустой таблицы */
62
+ emptyText: import("@angular/core").InputSignal<string>;
63
+ /** Дизейбл сортировки */
64
+ sortingDisabled: import("@angular/core").InputSignal<boolean>;
65
+ /** Максимальное значения выбора чекбоксов через поле ввода */
66
+ checkboxInputMaxValue: import("@angular/core").InputSignal<number | null>;
67
+ /** Дизейбл выбора чекбоксов */
68
+ checkboxDisabled: import("@angular/core").InputSignal<boolean>;
69
+ /** Дизейбл выбора чекбоксов */
70
+ paginatorDisabled: import("@angular/core").InputSignal<boolean>;
71
+ selectedCounter: import("@angular/core").Signal<number>;
72
+ protected readonly dts: DateTimeService;
73
+ protected readonly destroyRef: DestroyRef;
74
+ private readonly _shift;
75
+ private readonly _domIntersectionService;
76
+ private readonly _selectedService;
77
+ /** Событие выбора в чекбокс-селекторе */
78
+ selectChanged: import("@angular/core").OutputEmitterRef<ApplySelectionTypes>;
79
+ /** Событие изменения значений пагинатора */
80
+ paginatorChange: import("@angular/core").OutputEmitterRef<IPaginatorOutput>;
81
+ /** Событие нажатия на строку */
82
+ rowClick: import("@angular/core").OutputEmitterRef<any>;
83
+ /** Событие двойного нажатия на строку */
84
+ rowDblClick: import("@angular/core").OutputEmitterRef<any>;
85
+ /** Событие нажатия на строку */
86
+ rowSelected: import("@angular/core").OutputEmitterRef<{
87
+ row: any[];
88
+ count: number;
89
+ }>;
90
+ /** Событие сортировки значений в таблице */
91
+ sort: import("@angular/core").OutputEmitterRef<RegisterTableCellSorter<any>[]>;
92
+ /** Событие изменения ширины колонки */
93
+ private readonly _thsWidthMap;
94
+ thsWidthChange: import("@angular/core").OutputRef<ThWidthEntry[]>;
95
+ /** Событие изменения видимых строк таблицы */
96
+ private readonly _observerRowsVisibilityDOM$;
97
+ visibleRowsChange: import("@angular/core").OutputRef<any[]>;
98
+ protected readonly EColumnDataType: typeof EColumnDataType;
99
+ protected readonly ETimezone: typeof ETimezone;
100
+ protected readonly EDatePattern: typeof EDatePattern;
101
+ protected readonly ERegisterObjectState: typeof ERegisterObjectState;
102
+ protected readonly CHECKBOX_SELECTOR_KEY = "checkbox-selector";
103
+ protected readonly CHECKBOX_SELECTOR_WIDTH_PX = 32;
104
+ protected readonly stickyThStyle: Readonly<{
105
+ 'z-index': 22;
106
+ }>;
107
+ protected readonly stickyTdStyle: Readonly<{
108
+ 'z-index': 21;
109
+ }>;
110
+ protected readonly columnsWithCheckboxes: import("@angular/core").Signal<string[]>;
111
+ protected readonly scrollPosition: import("@angular/core").WritableSignal<{
112
+ top: number;
113
+ left: number;
114
+ }>;
115
+ protected readonly tableWidth: import("@angular/core").Signal<number | undefined>;
116
+ protected stateObjects: import("@angular/core").WritableSignal<Map<ScalarUUID, IRegisterObject<any>>> | undefined;
117
+ protected visibleColumnsTree: import("@angular/core").Signal<IColumnData[]>;
118
+ protected maxDepth: import("@angular/core").Signal<number>;
119
+ protected leaves: import("@angular/core").Signal<IColumnData[]>;
120
+ protected headerRows: import("@angular/core").Signal<{
121
+ col: IColumnData;
122
+ rowspan: number;
123
+ colspan: number;
124
+ }[][]>;
125
+ private _deprecatedSelectedRowsCounter;
126
+ protected readonly timeZoneChanges$: import("rxjs").Observable<import("../../services").ITimeZone>;
127
+ protected readonly columnOrders: Map<string, RegisterTableCellSorter<any>>;
128
+ private readonly _projectedHeadersMap;
129
+ private readonly _projectedCellsMap;
130
+ private readonly _clickedRow$;
131
+ private readonly _hoveredRow$;
132
+ protected lastSelectedRow: unknown;
133
+ constructor();
134
+ private _setScrollPositionAfterDataLoading;
135
+ private _projectHeaderTemplates;
136
+ private _projectCellTemplates;
137
+ private _syncRowVisibilityDOM;
138
+ ngOnDestroy(): void;
139
+ protected getProjectionHeaderByName(name: string): TemplateRef<any> | undefined;
140
+ protected getProjectionCellByName(name: string): TemplateRef<any> | undefined;
141
+ protected sortChange({ sortComparator }: TuiTableSortChange<Partial<Record<string, any>>>): void;
142
+ private updateColumnOrder;
143
+ protected setThName(thName: string): any;
144
+ protected checkAvailableColumnSorting(columnData: IColumnData): boolean;
145
+ protected checkResizeBlocked(columnData: IColumnData): boolean;
146
+ protected onRowHover(row: unknown): void;
147
+ protected onRowClick(event: MouseEvent, row: unknown): void;
148
+ private _changeOnlyRowState;
149
+ private _selectOnlyRow;
150
+ private _emitDeprecatedSelectedRows;
151
+ private _changeRangeRowsState;
152
+ private _selectRangeRows;
153
+ protected thResizeChanges(name: string, width: number): void;
154
+ protected getThWidth(name: string): string | undefined;
155
+ protected saveScrollEndPosition(): void;
156
+ protected updateAllStateObjectsByState(state: ERegisterObjectState): void;
157
+ protected updateStateObjectByKey(key: ScalarUUID, updates: Partial<IRegisterObject>): void;
158
+ protected markRowBeforeSelect(row: unknown): boolean;
159
+ private _buildHeaderRecursive;
160
+ private _getFlatLeaves;
161
+ private _filterVisibleColumns;
162
+ private _getMaxDepth;
163
+ static ɵfac: i0.ɵɵFactoryDeclaration<RegisterTableComponent, never>;
164
+ static ɵcmp: i0.ɵɵComponentDeclaration<RegisterTableComponent, "sproc-register-table", never, { "isLoading": { "alias": "isLoading"; "required": true; "isSignal": true; }; "isPaginatorLoading": { "alias": "isPaginatorLoading"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": true; "isSignal": true; }; "limit": { "alias": "limit"; "required": true; "isSignal": true; }; "checkboxColumn": { "alias": "checkboxColumn"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "columnsData": { "alias": "columnsData"; "required": true; "isSignal": true; }; "stickyLeftIds": { "alias": "stickyLeftIds"; "required": false; "isSignal": true; }; "stickyRightIds": { "alias": "stickyRightIds"; "required": false; "isSignal": true; }; "totalRecords": { "alias": "totalRecords"; "required": true; "isSignal": true; }; "totalNotFiltered": { "alias": "totalNotFiltered"; "required": true; "isSignal": true; }; "rowData": { "alias": "rowData"; "required": true; "isSignal": true; }; "selectedIds": { "alias": "selectedIds"; "required": false; "isSignal": true; }; "selectedObjects": { "alias": "selectedObjects"; "required": false; "isSignal": true; }; "isSelectloading": { "alias": "isSelectloading"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "sortingDisabled": { "alias": "sortingDisabled"; "required": false; "isSignal": true; }; "checkboxInputMaxValue": { "alias": "checkboxInputMaxValue"; "required": false; "isSignal": true; }; "checkboxDisabled": { "alias": "checkboxDisabled"; "required": false; "isSignal": true; }; "paginatorDisabled": { "alias": "paginatorDisabled"; "required": false; "isSignal": true; }; }, { "selectChanged": "selectChanged"; "paginatorChange": "paginatorChange"; "rowClick": "rowClick"; "rowDblClick": "rowDblClick"; "rowSelected": "rowSelected"; "sort": "sort"; "thsWidthChange": "thsWidthChange"; "visibleRowsChange": "visibleRowsChange"; }, ["headerTemplates", "cellTemplates"], never, true, never>;
165
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare enum SvgSrc {
3
+ WARNING = "assets/ngx-register-base/icons/circle-exclamation-empty.svg"
4
+ }
5
+ export declare class ResetSettingsFormComponent {
6
+ protected readonly svgSrc: typeof SvgSrc;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ResetSettingsFormComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ResetSettingsFormComponent, "sproc-reset-settings-form", never, {}, {}, never, never, true, never>;
9
+ }
@@ -0,0 +1,11 @@
1
+ import { FormControl } from '@angular/forms';
2
+ import { FormatterGqlValueType, IInputControl } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SearchInputComponent {
5
+ searchControl: import("@angular/core").InputSignal<IInputControl<string | null, any> | FormControl<string | null>>;
6
+ searchGqlFormatter: import("@angular/core").InputSignal<FormatterGqlValueType<string> | undefined>;
7
+ disabled: import("@angular/core").InputSignal<boolean>;
8
+ readonly formatGqlValueProxy: FormatterGqlValueType<string>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchInputComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchInputComponent, "sproc-search-input", never, { "searchControl": { "alias": "searchControl"; "required": true; "isSignal": true; }; "searchGqlFormatter": { "alias": "searchGqlFormatter"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
11
+ }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class SlidingPanelComponent {
3
+ get headerOffsetHeightPx(): string;
4
+ get footerOffsetHeightPx(): string;
5
+ get subOffsetHeightPx(): string;
6
+ /** Доп. отступ для вычисления высоты панели (в пикселях) */
7
+ subOffsetHeight: number;
8
+ /** Состояние видимости панели */
9
+ isOpen: boolean | null | undefined;
10
+ private readonly _headerContainer;
11
+ private readonly _footerContainer;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<SlidingPanelComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<SlidingPanelComponent, "sproc-sliding-panel", never, { "subOffsetHeight": { "alias": "subOffsetHeight"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; }, {}, never, ["[header]", "*", "[footer]"], false, never>;
14
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./sliding-panel.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@prizm-ui/components";
5
+ export declare class SlidingPanelModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<SlidingPanelModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SlidingPanelModule, [typeof i1.SlidingPanelComponent], [typeof i2.CommonModule, typeof i3.PrizmScrollbarComponent], [typeof i1.SlidingPanelComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<SlidingPanelModule>;
9
+ }
@@ -0,0 +1 @@
1
+ export declare const STORED_TIMEZONE = "storedTimezone";
@@ -0,0 +1,3 @@
1
+ export { INPUTS_STATE_CONFIG_KEY } from './inputs.consts';
2
+ export * from './month.consts';
3
+ export { EOrder, SETTINGS_TYPE, USER_SETTINGS_LOADER, USER_PROFILE_LOADER, } from './register-base.consts';
@@ -0,0 +1,4 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { IInputsStateConfig } from '../types';
3
+ export declare const INPUTS_STATE_CONFIG_KEY: InjectionToken<IInputsStateConfig>;
4
+ export declare const WARN_SEARCH_INPUT_UNDEFINED = "\u041F\u043E\u043B\u0435 \u043F\u043E\u0438\u0441\u043A\u0430 \u043D\u0435 \u0438\u043D\u0438\u0446\u0438\u0430\u043B\u0438\u0437\u0438\u0440\u043E\u0432\u0430\u043D\u043E. \u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430 \u0437\u0430\u0434\u0430\u0439\u0442\u0435 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044E searchInput: true \u043F\u0440\u0438 \u043F\u0440\u043E\u0432\u0430\u0439\u0434\u0435 INPUTS_STATE_CONFIG_KEY";
@@ -0,0 +1,49 @@
1
+ export declare enum EMonth {
2
+ JAN = 0,
3
+ FEB = 1,
4
+ MAR = 2,
5
+ APR = 3,
6
+ MAY = 4,
7
+ JUN = 5,
8
+ JUL = 6,
9
+ AUG = 7,
10
+ SEP = 8,
11
+ OCT = 9,
12
+ NOV = 10,
13
+ DEC = 11
14
+ }
15
+ export declare enum MonthsNumber {
16
+ January = 1,
17
+ February = 2,
18
+ March = 3,
19
+ April = 4,
20
+ May = 5,
21
+ June = 6,
22
+ July = 7,
23
+ August = 8,
24
+ September = 9,
25
+ October = 10,
26
+ November = 11,
27
+ December = 12
28
+ }
29
+ export declare enum MonthsName {
30
+ January = "\u042F\u043D\u0432\u0430\u0440\u044C",
31
+ February = "\u0424\u0435\u0432\u0440\u0430\u043B\u044C",
32
+ March = "\u041C\u0430\u0440\u0442",
33
+ April = "\u0410\u043F\u0440\u0435\u043B\u044C",
34
+ May = "\u041C\u0430\u0439",
35
+ June = "\u0418\u044E\u043D\u044C",
36
+ July = "\u0418\u044E\u043B\u044C",
37
+ August = "\u0410\u0432\u0433\u0443\u0441\u0442",
38
+ September = "\u0421\u0435\u043D\u0442\u044F\u0431\u0440\u044C",
39
+ October = "\u041E\u043A\u0442\u044F\u0431\u0440\u044C",
40
+ November = "\u041D\u043E\u044F\u0431\u0440\u044C",
41
+ December = "\u0414\u0435\u043A\u0430\u0431\u0440\u044C"
42
+ }
43
+ export declare class MonthMapper {
44
+ static readonly MONTH_NUMBER_NAMES: Map<string, MonthsNumber>;
45
+ static getMonthNumber(monthName: string): number | undefined;
46
+ static getRusNamesArr(): string[];
47
+ static getNumbersArr(): number[];
48
+ static getMonthRusNameByNumber(monthNumber: number): string | undefined;
49
+ }
@@ -0,0 +1 @@
1
+ export declare const PARAM_SEARCH_INPUT_DEBOUNCE_TIME_MLS = 1000;