ngx-register-base 1.3.0 → 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
@@ -1,159 +0,0 @@
1
- import { coerceNumberProperty } from '@angular/cdk/coercion';
2
- import { ChangeDetectionStrategy, Component, computed, DestroyRef, inject, input, model, output, signal, } from '@angular/core';
3
- import { PolymorphModule } from '@prizm-ui/components';
4
- import { debounceTime, Subject } from 'rxjs';
5
- import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
6
- import { CommonModule } from '@angular/common';
7
- import { FormsModule, ReactiveFormsModule } from '@angular/forms';
8
- import { TuiButton, TuiDataListDirective, TuiHint, TuiLoader } from '@taiga-ui/core';
9
- import { TuiDataListWrapperComponent, TuiPagination } from '@taiga-ui/kit';
10
- import { TuiComboBoxModule, TuiTextfieldControllerModule } from '@taiga-ui/legacy';
11
- import { DividerComponent } from '../divider/divider.component';
12
- import { NumberOnlyDirective } from '../../directives/number/number-only.directive';
13
- import * as i0 from "@angular/core";
14
- import * as i1 from "@prizm-ui/components";
15
- import * as i2 from "@angular/forms";
16
- import * as i3 from "@taiga-ui/legacy";
17
- import * as i4 from "@taiga-ui/core";
18
- export var SvgSrc;
19
- (function (SvgSrc) {
20
- SvgSrc["CHEVRONS_DOUBLE_LEFT"] = "assets/ngx-register-base/icons/chevrons-double-left.svg";
21
- SvgSrc["CHEVRONS_DOUBLE_RIGHT"] = "assets/ngx-register-base/icons/chevrons-double-right.svg";
22
- })(SvgSrc || (SvgSrc = {}));
23
- export class PaginatorComponent {
24
- constructor() {
25
- this.textOnPage = input('Строк на странице');
26
- this.totalRecords = input(0, {
27
- transform: (value) => Math.max(coerceNumberProperty(value), 0),
28
- });
29
- /** Количество видимых страниц вокруг активной страницы */
30
- this.pageLinkSize = input(3);
31
- this.showMoreDisabled = input(false);
32
- this.disabled = input(false);
33
- /** Количество отображаемых строк на странице */
34
- this.rows = model(0);
35
- /** Текущая страница */
36
- this.page = model(1);
37
- this.paginatorOptions = input({
38
- noRowsSelector: false,
39
- noRowsSelectorLabel: false,
40
- noFilterInfo: false,
41
- noInfo: false,
42
- noPages: false,
43
- });
44
- this.rowsCountOptions = input(new Array());
45
- this.selectedCounter = input(0);
46
- this.totalNotFiltered = input(0);
47
- this.isLoading = input(false);
48
- /** Ограничения на количество отображаемых строк на странице */
49
- this.minRowsCount = input(1);
50
- this.maxRowsCount = input(99);
51
- this.isIncorrectRowsCount = signal(false);
52
- this.rowsCountErrorMessage = signal('');
53
- this.paginatorChange = output();
54
- this.pageChange = output();
55
- this.rowsChange = output();
56
- this.SvgSrc = SvgSrc;
57
- this.pagesCount = computed(() => {
58
- const total = this.totalRecords();
59
- this.rows();
60
- return Math.ceil(total / this.currentRows);
61
- });
62
- this._dr = inject(DestroyRef);
63
- this.currentRowsInputChange = new Subject();
64
- this.currentRowsInputChange
65
- .pipe(debounceTime(500), takeUntilDestroyed(this._dr))
66
- .subscribe((value) => {
67
- this.changeRows(value);
68
- });
69
- }
70
- ngOnDestroy() {
71
- this.currentRowsInputChange.complete();
72
- }
73
- changePage(page) {
74
- const prev = this.currentPage;
75
- this.page.set(page);
76
- if (this.currentPage !== prev) {
77
- this.emitPageChange();
78
- }
79
- }
80
- toFirstPage() {
81
- this.changePage(0);
82
- }
83
- toLastPage() {
84
- this.changePage(this.pagesCount());
85
- }
86
- emitPageChange() {
87
- this.pageChange.emit(this.currentPage);
88
- this._emitPaginatorChanges();
89
- }
90
- changeRows(rows) {
91
- const rowsCount = Number(rows);
92
- if (!rowsCount) {
93
- this.rowsCountErrorMessage.set('');
94
- this.isIncorrectRowsCount.set(false);
95
- return;
96
- }
97
- const min = this.minRowsCount();
98
- const max = this.maxRowsCount();
99
- if (rowsCount < min || rowsCount > max) {
100
- this.rowsCountErrorMessage.set(`Поле принимает значение от ${min} до ${max}`);
101
- this.isIncorrectRowsCount.set(true);
102
- return;
103
- }
104
- this.rowsCountErrorMessage.set('');
105
- this.isIncorrectRowsCount.set(false);
106
- if (this.currentRows === rows) {
107
- return;
108
- }
109
- this.rows.set(rows);
110
- this.rowsChange.emit(this.currentRows);
111
- if (this.currentPage > this.pagesCount()) {
112
- this.changePage(0);
113
- }
114
- else {
115
- this._emitPaginatorChanges();
116
- }
117
- }
118
- _emitPaginatorChanges() {
119
- this.paginatorChange.emit({
120
- page: this.currentPage,
121
- first: (this.currentPage - 1) * this.currentRows + 1,
122
- rows: this.currentRows,
123
- pagesCount: this.pagesCount(),
124
- });
125
- }
126
- /** get-методы */
127
- get currentPage() {
128
- return Math.max(coerceNumberProperty(this.page()), 1);
129
- }
130
- get currentRows() {
131
- let inputRows = Math.max(coerceNumberProperty(this.rows()), 0);
132
- if (!inputRows) {
133
- [inputRows] = this.rowsCountOptions();
134
- }
135
- return inputRows;
136
- }
137
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PaginatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
138
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: PaginatorComponent, isStandalone: true, selector: "sproc-paginator", inputs: { textOnPage: { classPropertyName: "textOnPage", publicName: "textOnPage", isSignal: true, isRequired: false, transformFunction: null }, totalRecords: { classPropertyName: "totalRecords", publicName: "totalRecords", isSignal: true, isRequired: false, transformFunction: null }, pageLinkSize: { classPropertyName: "pageLinkSize", publicName: "pageLinkSize", isSignal: true, isRequired: false, transformFunction: null }, showMoreDisabled: { classPropertyName: "showMoreDisabled", publicName: "showMoreDisabled", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, page: { classPropertyName: "page", publicName: "page", isSignal: true, isRequired: false, transformFunction: null }, paginatorOptions: { classPropertyName: "paginatorOptions", publicName: "paginatorOptions", isSignal: true, isRequired: false, transformFunction: null }, rowsCountOptions: { classPropertyName: "rowsCountOptions", publicName: "rowsCountOptions", isSignal: true, isRequired: false, transformFunction: null }, selectedCounter: { classPropertyName: "selectedCounter", publicName: "selectedCounter", isSignal: true, isRequired: false, transformFunction: null }, totalNotFiltered: { classPropertyName: "totalNotFiltered", publicName: "totalNotFiltered", isSignal: true, isRequired: false, transformFunction: null }, isLoading: { classPropertyName: "isLoading", publicName: "isLoading", isSignal: true, isRequired: false, transformFunction: null }, minRowsCount: { classPropertyName: "minRowsCount", publicName: "minRowsCount", isSignal: true, isRequired: false, transformFunction: null }, maxRowsCount: { classPropertyName: "maxRowsCount", publicName: "maxRowsCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { rows: "rowsChange", page: "pageChange", paginatorChange: "paginatorChange", pageChange: "pageChange", rowsChange: "rowsChange" }, ngImport: i0, template: "<tui-loader class=\"loader\" [showLoader]=\"isLoading()\" [overlay]=\"true\">\n <div class=\"container\">\n <div class=\"content\">\n @if (!paginatorOptions().noRowsSelector && !paginatorOptions().noRowsSelectorLabel) {\n <span class=\"rows rows__count\">\n <ng-container *polymorphOutlet=\"textOnPage() as title\">\n {{ title }}\n </ng-container>\n </span>\n }\n @if (!paginatorOptions().noRowsSelector) {\n <div class=\"rows-selector\">\n <tui-combo-box\n numberOnly\n [ngModel]=\"currentRows\"\n [ngModelOptions]=\"{ standalone: true }\"\n [strict]=\"false\"\n [tuiTextfieldLabelOutside]=\"true\"\n [tuiTextfieldCleaner]=\"false\"\n tuiTextfieldSize=\"s\"\n [disabled]=\"disabled()\"\n [tuiHint]=\"rowsCountErrorMessage()\"\n [tuiHintManual]=\"isIncorrectRowsCount()\"\n (ngModelChange)=\"currentRowsInputChange.next($event)\"\n >\n <tui-data-list-wrapper\n *tuiDataList\n [items]=\"rowsCountOptions().length ? rowsCountOptions() : [currentRows]\"\n />\n </tui-combo-box>\n </div>\n }\n\n <div class=\"selected-panel\">\n <div class=\"selected-container\">\n <span>\u0412\u044B\u0431\u0440\u0430\u043D\u043E</span>\n <span class=\"selected-counter\">{{ selectedCounter() }}</span>\n </div>\n <sproc-divider layout=\"vertical\"></sproc-divider>\n @if (!paginatorOptions().noFilterInfo) {\n <div class=\"selected-container\">\n <span>\u041E\u0442\u0444\u0438\u043B\u044C\u0442\u0440\u043E\u0432\u0430\u043D\u043E</span>\n <span class=\"selected-counter\">{{ totalRecords() }}</span>\n <span>\u0438\u0437</span>\n <span class=\"selected-counter\">{{ totalNotFiltered() }}</span>\n </div>\n }\n </div>\n </div>\n\n <div class=\"content\">\n @if (!paginatorOptions().noInfo) {\n <span class=\"rows rows__show\" [hidden]=\"disabled()\">\n \u041F\u043E\u043A\u0430\u0437\u0430\u043D\u043E \u0441\u0442\u0440\u043E\u043A: {{ (currentPage - 1) * currentRows + 1 }}-{{\n currentPage * currentRows > totalRecords() ? totalRecords() : currentPage * currentRows\n }}\n <ng-container> \u0438\u0437 {{ totalRecords() }} </ng-container>\n </span>\n }\n\n <div class=\"paginator\">\n <button\n tuiIconButton\n class=\"paginator__control\"\n appearance=\"flat\"\n type=\"button\"\n size=\"xs\"\n tabIndex=\"-1\"\n [disabled]=\"disabled() || currentPage === 1\"\n (click)=\"toFirstPage()\"\n >\n <img [src]=\"SvgSrc.CHEVRONS_DOUBLE_LEFT\" />\n </button>\n <tui-pagination\n [index]=\"currentPage - 1\"\n [length]=\"pagesCount()\"\n [activePadding]=\"pageLinkSize()\"\n (indexChange)=\"changePage($event + 1)\"\n />\n @if (paginatorOptions().noToLastPageBtn ?? true) {\n <button\n tuiIconButton\n class=\"paginator__control\"\n appearance=\"flat\"\n type=\"button\"\n size=\"xs\"\n tabIndex=\"-1\"\n [disabled]=\"disabled() || currentPage === pagesCount() || currentPage === 0\"\n (click)=\"toLastPage()\"\n >\n <img [src]=\"SvgSrc.CHEVRONS_DOUBLE_RIGHT\" />\n </button>\n }\n </div>\n </div>\n </div>\n</tui-loader>\n", styles: [".input-text-14px{font-family:Inter,serif;font-size:14px;font-weight:300;line-height:16px}.input-text-12px,.body-text-12px{font-family:Inter,serif;font-size:12px;font-weight:300;line-height:16px}.body-text-14px{font-family:Inter,serif;font-size:14px;font-weight:300;line-height:20px}.table-heading-12px{font-family:Inter,serif;font-size:12px;font-weight:500;line-height:16px}.table-text-12px{font-family:Inter,serif;font-size:12px;font-weight:300;line-height:16px}.table-text-12px-400{font-family:Inter,serif;font-size:12px;font-weight:400;line-height:16px}.table-text-14px{font-family:Inter,serif;font-size:14px;font-weight:300;line-height:16px}.button-links-12px{font-family:Inter,serif;font-size:12px;font-weight:300;line-height:16px}.button-links-12px-600{font-family:Inter,serif;font-size:12px;font-weight:600;line-height:16px}.button-links-14px{font-family:Inter,serif;font-size:14px;font-weight:300;line-height:16px}.input-label{font-family:Inter,serif;font-size:12px;font-weight:300;line-height:16px}.input-area{font-family:Inter,serif;font-size:12px;font-weight:400;line-height:20px}.static-title-h3{font-family:Inter,serif;font-size:16px;font-weight:600;line-height:20px}.static-title-h4{font-family:Inter,serif;font-size:14px;font-weight:500;line-height:18px}.dynamic-title-h4{font-family:Inter,serif;font-size:14px;font-weight:800;line-height:20px}.main-body-text-12px{font-family:Inter,serif;font-size:12px;font-weight:300;line-height:20px}.main-body-text-14px{font-family:Inter,serif;font-size:14px;font-weight:300;line-height:20px}.main-subscription{font-family:Inter,serif;font-size:10px;font-weight:400;line-height:12px}.input-helper-9px{font-family:Inter,serif;font-size:9px;font-weight:300;line-height:12px}.typography-content-text{font-family:Inter,serif;font-size:12px;font-weight:350;line-height:16px}.main-subtitle,.card-content-text{font-family:Inter,serif;font-size:14px;font-weight:400;line-height:16px}.filter-header-text{font-family:Inter,serif;font-size:14px;font-weight:500;line-height:18px}.btn-14px{font-family:Inter,serif;font-size:14px;font-weight:400;line-height:16px}.search-11px{font-family:Inter,serif;font-size:11px;font-weight:300;line-height:12px}:root{--input-text-12px: normal 300 12px / 16px \"Inter\";--input-text-14px: normal 300 14px / 16px \"Inter\"}:host{height:40px;display:flex}:host .container{height:100%;width:100%;padding:8px 16px;display:flex;justify-content:space-between;align-items:center;overflow:hidden;background:var(--main-white);box-shadow:0 -2px 4px #bfc6d780;z-index:1}:host .container .content{display:flex;align-items:center}:host .container span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host .container .rows{font-family:Inter,serif;font-size:12px;font-weight:300;line-height:16px;color:var(--text-main)}:host .container .rows__count{margin-right:12px}:host .container .rows__show{margin-right:32px}:host .container .selected-panel{display:flex;gap:12px;align-items:center}:host .container .selected-panel sproc-divider{height:24px}:host .container .selected-panel .selected-container{width:100%;display:flex;gap:12px;font-family:Inter,serif;font-size:12px;font-weight:300;line-height:16px;color:var(--text-main)}:host .container .selected-panel .selected-container .selected-counter{padding:0 8px;border-bottom:1px solid var(--table-stroke)}:host .container .rows-selector{margin-right:12px;width:80px;min-width:80px}:host .container .paginator{display:flex;gap:8px}:host .container .paginator__control{--tui-text-action: var(--gray-icon)}:host .container .paginator__control tui-icon{font-size:var(--icon-font-size-m)}:host .container ::ng-deep [tuiAppearance][data-appearance=textfield]{box-shadow:none;padding-right:10px!important}:host .container ::ng-deep [tuiAppearance][data-appearance=textfield] ::ng-deep tui-icon{--t-icon: url('data:image/svg+xml,<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M12 6H4L8 10L12 6Z\" fill=\"%23777B92\"/>%0A</svg>%0A') !important}.loader{width:100%}\n"], dependencies: [{ kind: "component", type: DividerComponent, selector: "sproc-divider", inputs: ["layout"] }, { kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: PolymorphModule }, { kind: "directive", type: i1.PolymorphOutletDirective, selector: "ng-template[polymorphOutlet]", inputs: ["polymorphOutlet", "polymorphOutletInjector", "polymorphOutletContext"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: TuiPagination, selector: "tui-pagination", inputs: ["length", "focusable", "size", "disabled", "activePadding", "sidePadding", "content", "index"], outputs: ["indexChange"] }, { kind: "directive", type: TuiButton, selector: "a[tuiButton],button[tuiButton],a[tuiIconButton],button[tuiIconButton]", inputs: ["size"] }, { kind: "ngmodule", type: TuiComboBoxModule }, { kind: "component", type: i3.TuiComboBoxComponent, selector: "tui-combo-box", inputs: ["stringify", "strictMatcher", "identityMatcher", "valueContent", "strict", "search"], outputs: ["searchChange"] }, { kind: "directive", type: i3.TuiComboBoxStrictDirective, selector: "tui-combo-box[strict]", inputs: ["strict"] }, { kind: "directive", type: i3.TuiComboBoxDirective, selector: "tui-combo-box" }, { kind: "component", type: TuiDataListWrapperComponent, selector: "tui-data-list-wrapper:not([labels]), tui-data-list-wrapper:not([labels])[new]", inputs: ["items", "disabledItemHandler", "emptyContent", "size", "itemContent"], outputs: ["itemClick"] }, { kind: "ngmodule", type: TuiTextfieldControllerModule }, { kind: "directive", type: i3.TuiTextfieldCleanerDirective, selector: "[tuiTextfieldCleaner]", inputs: ["tuiTextfieldCleaner"] }, { kind: "directive", type: i3.TuiTextfieldLabelOutsideDirective, selector: "[tuiTextfieldLabelOutside]", inputs: ["tuiTextfieldLabelOutside"] }, { kind: "directive", type: i3.TuiTextfieldSizeDirective, selector: "[tuiTextfieldSize]", inputs: ["tuiTextfieldSize"] }, { kind: "directive", type: TuiDataListDirective, selector: "ng-template[tuiDataList]" }, { kind: "component", type: TuiLoader, selector: "tui-loader", inputs: ["size", "inheritColor", "overlay", "textContent", "showLoader"] }, { kind: "directive", type: i4.TuiHintDirective, selector: "[tuiHint]:not(ng-container):not(ng-template)", inputs: ["tuiHintContext", "tuiHintAppearance", "tuiHint"] }, { kind: "directive", type: i4.TuiHintManual, selector: "[tuiHint][tuiHintManual]", inputs: ["tuiHintManual"] }, { kind: "directive", type: NumberOnlyDirective, selector: "[numberOnly]", inputs: ["allowFractional"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
139
- }
140
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PaginatorComponent, decorators: [{
141
- type: Component,
142
- args: [{ selector: 'sproc-paginator', imports: [
143
- DividerComponent,
144
- CommonModule,
145
- PolymorphModule,
146
- ReactiveFormsModule,
147
- FormsModule,
148
- TuiPagination,
149
- TuiButton,
150
- TuiComboBoxModule,
151
- TuiDataListWrapperComponent,
152
- TuiTextfieldControllerModule,
153
- TuiDataListDirective,
154
- TuiLoader,
155
- TuiHint,
156
- NumberOnlyDirective,
157
- ], standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: "<tui-loader class=\"loader\" [showLoader]=\"isLoading()\" [overlay]=\"true\">\n <div class=\"container\">\n <div class=\"content\">\n @if (!paginatorOptions().noRowsSelector && !paginatorOptions().noRowsSelectorLabel) {\n <span class=\"rows rows__count\">\n <ng-container *polymorphOutlet=\"textOnPage() as title\">\n {{ title }}\n </ng-container>\n </span>\n }\n @if (!paginatorOptions().noRowsSelector) {\n <div class=\"rows-selector\">\n <tui-combo-box\n numberOnly\n [ngModel]=\"currentRows\"\n [ngModelOptions]=\"{ standalone: true }\"\n [strict]=\"false\"\n [tuiTextfieldLabelOutside]=\"true\"\n [tuiTextfieldCleaner]=\"false\"\n tuiTextfieldSize=\"s\"\n [disabled]=\"disabled()\"\n [tuiHint]=\"rowsCountErrorMessage()\"\n [tuiHintManual]=\"isIncorrectRowsCount()\"\n (ngModelChange)=\"currentRowsInputChange.next($event)\"\n >\n <tui-data-list-wrapper\n *tuiDataList\n [items]=\"rowsCountOptions().length ? rowsCountOptions() : [currentRows]\"\n />\n </tui-combo-box>\n </div>\n }\n\n <div class=\"selected-panel\">\n <div class=\"selected-container\">\n <span>\u0412\u044B\u0431\u0440\u0430\u043D\u043E</span>\n <span class=\"selected-counter\">{{ selectedCounter() }}</span>\n </div>\n <sproc-divider layout=\"vertical\"></sproc-divider>\n @if (!paginatorOptions().noFilterInfo) {\n <div class=\"selected-container\">\n <span>\u041E\u0442\u0444\u0438\u043B\u044C\u0442\u0440\u043E\u0432\u0430\u043D\u043E</span>\n <span class=\"selected-counter\">{{ totalRecords() }}</span>\n <span>\u0438\u0437</span>\n <span class=\"selected-counter\">{{ totalNotFiltered() }}</span>\n </div>\n }\n </div>\n </div>\n\n <div class=\"content\">\n @if (!paginatorOptions().noInfo) {\n <span class=\"rows rows__show\" [hidden]=\"disabled()\">\n \u041F\u043E\u043A\u0430\u0437\u0430\u043D\u043E \u0441\u0442\u0440\u043E\u043A: {{ (currentPage - 1) * currentRows + 1 }}-{{\n currentPage * currentRows > totalRecords() ? totalRecords() : currentPage * currentRows\n }}\n <ng-container> \u0438\u0437 {{ totalRecords() }} </ng-container>\n </span>\n }\n\n <div class=\"paginator\">\n <button\n tuiIconButton\n class=\"paginator__control\"\n appearance=\"flat\"\n type=\"button\"\n size=\"xs\"\n tabIndex=\"-1\"\n [disabled]=\"disabled() || currentPage === 1\"\n (click)=\"toFirstPage()\"\n >\n <img [src]=\"SvgSrc.CHEVRONS_DOUBLE_LEFT\" />\n </button>\n <tui-pagination\n [index]=\"currentPage - 1\"\n [length]=\"pagesCount()\"\n [activePadding]=\"pageLinkSize()\"\n (indexChange)=\"changePage($event + 1)\"\n />\n @if (paginatorOptions().noToLastPageBtn ?? true) {\n <button\n tuiIconButton\n class=\"paginator__control\"\n appearance=\"flat\"\n type=\"button\"\n size=\"xs\"\n tabIndex=\"-1\"\n [disabled]=\"disabled() || currentPage === pagesCount() || currentPage === 0\"\n (click)=\"toLastPage()\"\n >\n <img [src]=\"SvgSrc.CHEVRONS_DOUBLE_RIGHT\" />\n </button>\n }\n </div>\n </div>\n </div>\n</tui-loader>\n", styles: [".input-text-14px{font-family:Inter,serif;font-size:14px;font-weight:300;line-height:16px}.input-text-12px,.body-text-12px{font-family:Inter,serif;font-size:12px;font-weight:300;line-height:16px}.body-text-14px{font-family:Inter,serif;font-size:14px;font-weight:300;line-height:20px}.table-heading-12px{font-family:Inter,serif;font-size:12px;font-weight:500;line-height:16px}.table-text-12px{font-family:Inter,serif;font-size:12px;font-weight:300;line-height:16px}.table-text-12px-400{font-family:Inter,serif;font-size:12px;font-weight:400;line-height:16px}.table-text-14px{font-family:Inter,serif;font-size:14px;font-weight:300;line-height:16px}.button-links-12px{font-family:Inter,serif;font-size:12px;font-weight:300;line-height:16px}.button-links-12px-600{font-family:Inter,serif;font-size:12px;font-weight:600;line-height:16px}.button-links-14px{font-family:Inter,serif;font-size:14px;font-weight:300;line-height:16px}.input-label{font-family:Inter,serif;font-size:12px;font-weight:300;line-height:16px}.input-area{font-family:Inter,serif;font-size:12px;font-weight:400;line-height:20px}.static-title-h3{font-family:Inter,serif;font-size:16px;font-weight:600;line-height:20px}.static-title-h4{font-family:Inter,serif;font-size:14px;font-weight:500;line-height:18px}.dynamic-title-h4{font-family:Inter,serif;font-size:14px;font-weight:800;line-height:20px}.main-body-text-12px{font-family:Inter,serif;font-size:12px;font-weight:300;line-height:20px}.main-body-text-14px{font-family:Inter,serif;font-size:14px;font-weight:300;line-height:20px}.main-subscription{font-family:Inter,serif;font-size:10px;font-weight:400;line-height:12px}.input-helper-9px{font-family:Inter,serif;font-size:9px;font-weight:300;line-height:12px}.typography-content-text{font-family:Inter,serif;font-size:12px;font-weight:350;line-height:16px}.main-subtitle,.card-content-text{font-family:Inter,serif;font-size:14px;font-weight:400;line-height:16px}.filter-header-text{font-family:Inter,serif;font-size:14px;font-weight:500;line-height:18px}.btn-14px{font-family:Inter,serif;font-size:14px;font-weight:400;line-height:16px}.search-11px{font-family:Inter,serif;font-size:11px;font-weight:300;line-height:12px}:root{--input-text-12px: normal 300 12px / 16px \"Inter\";--input-text-14px: normal 300 14px / 16px \"Inter\"}:host{height:40px;display:flex}:host .container{height:100%;width:100%;padding:8px 16px;display:flex;justify-content:space-between;align-items:center;overflow:hidden;background:var(--main-white);box-shadow:0 -2px 4px #bfc6d780;z-index:1}:host .container .content{display:flex;align-items:center}:host .container span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host .container .rows{font-family:Inter,serif;font-size:12px;font-weight:300;line-height:16px;color:var(--text-main)}:host .container .rows__count{margin-right:12px}:host .container .rows__show{margin-right:32px}:host .container .selected-panel{display:flex;gap:12px;align-items:center}:host .container .selected-panel sproc-divider{height:24px}:host .container .selected-panel .selected-container{width:100%;display:flex;gap:12px;font-family:Inter,serif;font-size:12px;font-weight:300;line-height:16px;color:var(--text-main)}:host .container .selected-panel .selected-container .selected-counter{padding:0 8px;border-bottom:1px solid var(--table-stroke)}:host .container .rows-selector{margin-right:12px;width:80px;min-width:80px}:host .container .paginator{display:flex;gap:8px}:host .container .paginator__control{--tui-text-action: var(--gray-icon)}:host .container .paginator__control tui-icon{font-size:var(--icon-font-size-m)}:host .container ::ng-deep [tuiAppearance][data-appearance=textfield]{box-shadow:none;padding-right:10px!important}:host .container ::ng-deep [tuiAppearance][data-appearance=textfield] ::ng-deep tui-icon{--t-icon: url('data:image/svg+xml,<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M12 6H4L8 10L12 6Z\" fill=\"%23777B92\"/>%0A</svg>%0A') !important}.loader{width:100%}\n"] }]
158
- }], ctorParameters: () => [] });
159
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdG9yLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZWdpc3Rlci1iYXNlL3NyYy9saWIvY29tcG9uZW50cy9wYWdpbmF0b3IvcGFnaW5hdG9yLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZWdpc3Rlci1iYXNlL3NyYy9saWIvY29tcG9uZW50cy9wYWdpbmF0b3IvcGFnaW5hdG9yLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxvQkFBb0IsRUFBZSxNQUFNLHVCQUF1QixDQUFDO0FBQzFFLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFFBQVEsRUFDUixVQUFVLEVBQ1YsTUFBTSxFQUNOLEtBQUssRUFDTCxLQUFLLEVBRUwsTUFBTSxFQUNOLE1BQU0sR0FDUCxNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQW9CLGVBQWUsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ3pFLE9BQU8sRUFBRSxZQUFZLEVBQUUsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQzdDLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsV0FBVyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDbEUsT0FBTyxFQUFFLFNBQVMsRUFBRSxvQkFBb0IsRUFBRSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDckYsT0FBTyxFQUFFLDJCQUEyQixFQUFFLGFBQWEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsNEJBQTRCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUVuRixPQUFPLEVB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LENBQUMsb0JBQW9CLENBQUMsSUFBSSxDQUFDLElBQUksRUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDeEQsQ0FBQztJQUVELElBQWMsV0FBVztRQUN2QixJQUFJLFNBQVMsR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLG9CQUFvQixDQUFDLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBRS9ELElBQUksQ0FBQyxTQUFTLEVBQUUsQ0FBQztZQUNmLENBQUMsU0FBUyxDQUFDLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixFQUFFLENBQUM7UUFDeEMsQ0FBQztRQUVELE9BQU8sU0FBUyxDQUFDO0lBQ25CLENBQUM7K0dBeklVLGtCQUFrQjttR0FBbEIsa0JBQWtCLHdvRUNyRC9CLCtsSEFpR0EsNGdJRGhFSSxnQkFBZ0IsNkVBQ2hCLFlBQVksOEJBQ1osZUFBZSxvTkFDZixtQkFBbUIsc0lBQ25CLFdBQVcsdVBBQ1gsYUFBYSw4TEFDYixTQUFTLG1JQUNULGlCQUFpQiw4YUFDakIsMkJBQTJCLGtPQUMzQiw0QkFBNEIsMmFBQzVCLG9CQUFvQixxRUFDcEIsU0FBUyx5WkFFVCxtQkFBbUI7OzRGQU9WLGtCQUFrQjtrQkF2QjlCLFNBQVM7K0JBQ0UsaUJBQWlCLFdBQ2xCO3dCQUNQLGdCQUFnQjt3QkFDaEIsWUFBWTt3QkFDWixlQUFlO3dCQUNmLG1CQUFtQjt3QkFDbkIsV0FBVzt3QkFDWCxhQUFhO3dCQUNiLFNBQVM7d0JBQ1QsaUJBQWlCO3dCQUNqQiwyQkFBMkI7d0JBQzNCLDRCQUE0Qjt3QkFDNUIsb0JBQW9CO3dCQUNwQixTQUFTO3dCQUNULE9BQU87d0JBQ1AsbUJBQW1CO3FCQUNwQixjQUdXLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGNvZXJjZU51bWJlclByb3BlcnR5LCBOdW1iZXJJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9jb2VyY2lvbic7XG5pbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBjb21wdXRlZCxcbiAgRGVzdHJveVJlZixcbiAgaW5qZWN0LFxuICBpbnB1dCxcbiAgbW9kZWwsXG4gIE9uRGVzdHJveSxcbiAgb3V0cHV0LFxuICBzaWduYWwsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUG9seW1vcnBoQ29udGVudCwgUG9seW1vcnBoTW9kdWxlIH0gZnJvbSAnQHByaXptLXVpL2NvbXBvbmVudHMnO1xuaW1wb3J0IHsgZGVib3VuY2VUaW1lLCBTdWJqZWN0IH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyB0YWtlVW50aWxEZXN0cm95ZWQgfSBmcm9tICdAYW5ndWxhci9jb3JlL3J4anMtaW50ZXJvcCc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUsIFJlYWN0aXZlRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBUdWlCdXR0b24sIFR1aURhdGFMaXN0RGlyZWN0aXZlLCBUdWlIaW50LCBUdWlMb2FkZXIgfSBmcm9tICdAdGFpZ2EtdWkvY29yZSc7XG5pbXBvcnQgeyBUdWlEYXRhTGlzdFdyYXBwZXJDb21wb25lbnQsIFR1aVBhZ2luYXRpb24gfSBmcm9tICdAdGFpZ2EtdWkva2l0JztcbmltcG9ydCB7IFR1aUNvbWJvQm94TW9kdWxlLCBUdWlUZXh0ZmllbGRDb250cm9sbGVyTW9kdWxlIH0gZnJvbSAnQHRhaWdhLXVpL2xlZ2FjeSc7XG5pbXBvcnQgeyBJUGFnaW5hdG9yT3B0aW9ucywgSVBhZ2luYXRvck91dHB1dCB9IGZyb20gJy4vdHlwZXMvcGFnaW5hdG9yLnR5cGVzJztcbmltcG9ydCB7IERpdmlkZXJDb21wb25lbnQgfSBmcm9tICcuLi9kaXZpZGVyL2RpdmlkZXIuY29tcG9uZW50JztcbmltcG9ydCB7IE51bWJlck9ubHlEaXJlY3RpdmUgfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzL251bWJlci9udW1iZXItb25seS5kaXJlY3RpdmUnO1xuXG5leHBvcnQgZW51bSBTdmdTcmMge1xuICBDSEVWUk9OU19ET1VCTEVfTEVGVCA9ICdhc3NldHMvbmd4LXJlZ2lzdGVyLWJhc2UvaWNvbnMvY2hldnJvbnMtZG91YmxlLWxlZnQuc3ZnJyxcbiAgQ0hFVlJPTlNfRE9VQkxFX1JJR0hUID0gJ2Fzc2V0cy9uZ3gtcmVnaXN0ZXItYmFzZS9pY29ucy9jaGV2cm9ucy1kb3VibGUtcmlnaHQuc3ZnJyxcbn1cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnc3Byb2MtcGFnaW5hdG9yJyxcbiAgaW1wb3J0czogW1xuICAgIERpdmlkZXJDb21wb25lbnQsXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIFBvbHltb3JwaE1vZHVsZSxcbiAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgIEZvcm1zTW9kdWxlLFxuICAgIFR1aVBhZ2luYXRpb24sXG4gICAgVHVpQnV0dG9uLFxuICAgIFR1aUNvbWJvQm94TW9kdWxlLFxuICAgIFR1aURhdGFMaXN0V3JhcHBlckNvbXBvbmVudCxcbiAgICBUdWlUZXh0ZmllbGRDb250cm9sbGVyTW9kdWxlLFxuICAgIFR1aURhdGFMaXN0RGlyZWN0aXZlLFxuICAgIFR1aUxvYWRlcixcbiAgICBUdWlIaW50LFxuICAgIE51bWJlck9ubHlEaXJlY3RpdmUsXG4gIF0sXG4gIHRlbXBsYXRlVXJsOiAnLi9wYWdpbmF0b3IuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9wYWdpbmF0b3IuY29tcG9uZW50Lmxlc3MnXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIFBhZ2luYXRvckNvbXBvbmVudCBpbXBsZW1lbnRzIE9uRGVzdHJveSB7XG4gIHB1YmxpYyB0ZXh0T25QYWdlID0gaW5wdXQ8UG9seW1vcnBoQ29udGVudD4oJ9Ch0YLRgNC+0Log0L3QsCDRgdGC0YDQsNC90LjRhtC1Jyk7XG4gIHB1YmxpYyB0b3RhbFJlY29yZHMgPSBpbnB1dCgwLCB7XG4gICAgdHJhbnNmb3JtOiAodmFsdWU6IE51bWJlcklucHV0KSA9PiBNYXRoLm1heChjb2VyY2VOdW1iZXJQcm9wZXJ0eSh2YWx1ZSksIDApLFxuICB9KTtcbiAgLyoqINCa0L7Qu9C40YfQtdGB0YLQstC+INCy0LjQtNC40LzRi9GFINGB0YLRgNCw0L3QuNGGINCy0L7QutGA0YPQsyDQsNC60YLQuNCy0L3QvtC5INGB0YLRgNCw0L3QuNGG0YsgICovXG4gIHB1YmxpYyBwYWdlTGlua1NpemUgPSBpbnB1dCgzKTtcbiAgcHVibGljIHNob3dNb3JlRGlzYWJsZWQgPSBpbnB1dChmYWxzZSk7XG4gIHB1YmxpYyBkaXNhYmxlZCA9IGlucHV0KGZhbHNlKTtcbiAgLyoqINCa0L7Qu9C40YfQtdGB0YLQstC+INC+0YLQvtCx0YDQsNC20LDQtdC80YvRhSDRgdGC0YDQvtC6INC90LAg0YHRgtGA0LDQvdC40YbQtSAqL1xuICBwdWJsaWMgcm93cyA9IG1vZGVsPE51bWJlcklucHV0PigwKTtcbiAgLyoqINCi0LXQutGD0YnQsNGPINGB0YLRgNCw0L3QuNGG0LAgKi9cbiAgcHVibGljIHBhZ2UgPSBtb2RlbDxOdW1iZXJJbnB1dD4oMSk7XG4gIHB1YmxpYyBwYWdpbmF0b3JPcHRpb25zID0gaW5wdXQ8SVBhZ2luYXRvck9wdGlvbnM+KHtcbiAgICBub1Jvd3NTZWxlY3RvcjogZmFsc2UsXG4gICAgbm9Sb3dzU2VsZWN0b3JMYWJlbDogZmFsc2UsXG4gICAgbm9GaWx0ZXJJbmZvOiBmYWxzZSxcbiAgICBub0luZm86IGZhbHNlLFxuICAgIG5vUGFnZXM6IGZhbHNlLFxuICB9KTtcbiAgcHVibGljIHJvd3NDb3VudE9wdGlvbnMgPSBpbnB1dChuZXcgQXJyYXk8bnVtYmVyPigpKTtcbiAgcHVibGljIHNlbGVjdGVkQ291bnRlciA9IGlucHV0KDApO1xuICBwdWJsaWMgdG90YWxOb3RGaWx0ZXJlZCA9IGlucHV0KDApO1xuICBwdWJsaWMgaXNMb2FkaW5nID0gaW5wdXQoZmFsc2UpO1xuICAvKiog0J7Qs9GA0LDQvdC40YfQtdC90LjRjyDQvdCwINC60L7Qu9C40YfQtdGB0YLQstC+INC+0YLQvtCx0YDQsNC20LDQtdC80YvRhSDRgdGC0YDQvtC6INC90LAg0YHRgtGA0LDQvdC40YbQtSAqL1xuICBwdWJsaWMgbWluUm93c0NvdW50ID0gaW5wdXQ8bnVtYmVyPigxKTtcbiAgcHVibGljIG1heFJvd3NDb3VudCA9IGlucHV0PG51bWJlcj4oOTkpO1xuICBwcm90ZWN0ZWQgaXNJbmNvcnJlY3RSb3dzQ291bnQgPSBzaWduYWwoZmFsc2UpO1xuICBwcm90ZWN0ZWQgcm93c0NvdW50RXJyb3JNZXNzYWdlID0gc2lnbmFsKCcnKTtcblxuICBwdWJsaWMgcGFnaW5hdG9yQ2hhbmdlID0gb3V0cHV0PElQYWdpbmF0b3JPdXRwdXQ+KCk7XG4gIHB1YmxpYyBwYWdlQ2hhbmdlID0gb3V0cHV0PG51bWJlcj4oKTtcbiAgcHVibGljIHJvd3NDaGFuZ2UgPSBvdXRwdXQ8bnVtYmVyIHwgbnVsbD4oKTtcblxuICBwcm90ZWN0ZWQgcmVhZG9ubHkgU3ZnU3JjID0gU3ZnU3JjO1xuICBwcm90ZWN0ZWQgcGFnZXNDb3VudCA9IGNvbXB1dGVkKCgpID0+IHtcbiAgICBjb25zdCB0b3RhbCA9IHRoaXMudG90YWxSZWNvcmRzKCk7XG4gICAgdGhpcy5yb3dzKCk7XG5cbiAgICByZXR1cm4gTWF0aC5jZWlsKHRvdGFsIC8gdGhpcy5jdXJyZW50Um93cyk7XG4gIH0pO1xuXG4gIHByaXZhdGUgcmVhZG9ubHkgX2RyID0gaW5qZWN0KERlc3Ryb3lSZWYpO1xuXG4gIHByb3RlY3RlZCByZWFkb25seSBjdXJyZW50Um93c0lucHV0Q2hhbmdlID0gbmV3IFN1YmplY3Q8TnVtYmVySW5wdXQ+KCk7XG5cbiAgY29uc3RydWN0b3IoKSB7XG4gICAgdGhpcy5jdXJyZW50Um93c0lucHV0Q2hhbmdlXG4gICAgICAucGlwZShkZWJvdW5jZVRpbWUoNTAwKSwgdGFrZVVudGlsRGVzdHJveWVkKHRoaXMuX2RyKSlcbiAgICAgIC5zdWJzY3JpYmUoKHZhbHVlKSA9PiB7XG4gICAgICAgIHRoaXMuY2hhbmdlUm93cyh2YWx1ZSk7XG4gICAgICB9KTtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLmN1cnJlbnRSb3dzSW5wdXRDaGFuZ2UuY29tcGxldGUoKTtcbiAgfVxuXG4gIHByb3RlY3RlZCBjaGFuZ2VQYWdlKHBhZ2U6IG51bWJlcik6IHZvaWQge1xuICAgIGNvbnN0IHByZXYgPSB0aGlzLmN1cnJlbnRQYWdlO1xuICAgIHRoaXMucGFnZS5zZXQocGFnZSk7XG5cbiAgICBpZiAodGhpcy5jdXJyZW50UGFnZSAhPT0gcHJldikge1xuICAgICAgdGhpcy5lbWl0UGFnZUNoYW5nZSgpO1xuICAgIH1cbiAgfVxuXG4gIHByb3RlY3RlZCB0b0ZpcnN0UGFnZSgpOiB2b2lkIHtcbiAgICB0aGlzLmNoYW5nZVBhZ2UoMCk7XG4gIH1cblxuICBwcm90ZWN0ZWQgdG9MYXN0UGFnZSgpOiB2b2lkIHtcbiAgICB0aGlzLmNoYW5nZVBhZ2UodGhpcy5wYWdlc0NvdW50KCkpO1xuICB9XG5cbiAgcHJpdmF0ZSBlbWl0UGFnZUNoYW5nZSgpOiB2b2lkIHtcbiAgICB0aGlzLnBhZ2VDaGFuZ2UuZW1pdCh0aGlzLmN1cnJlbnRQYWdlKTtcbiAgICB0aGlzLl9lbWl0UGFnaW5hdG9yQ2hhbmdlcygpO1xuICB9XG5cbiAgcHJvdGVjdGVkIGNoYW5nZVJvd3Mocm93czogTnVtYmVySW5wdXQpOiB2b2lkIHtcbiAgICBjb25zdCByb3dzQ291bnQgPSBOdW1iZXIocm93cyk7XG5cbiAgICBpZiAoIXJvd3NDb3VudCkge1xuICAgICAgdGhpcy5yb3dzQ291bnRFcnJvck1lc3NhZ2Uuc2V0KCcnKTtcbiAgICAgIHRoaXMuaXNJbmNvcnJlY3RSb3dzQ291bnQuc2V0KGZhbHNlKTtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICBjb25zdCBtaW4gPSB0aGlzLm1pblJvd3NDb3VudCgpO1xuICAgIGNvbnN0IG1heCA9IHRoaXMubWF4Um93c0NvdW50KCk7XG5cbiAgICBpZiAocm93c0NvdW50IDwgbWluIHx8IHJvd3NDb3VudCA+IG1heCkge1xuICAgICAgdGhpcy5yb3dzQ291bnRFcnJvck1lc3NhZ2Uuc2V0KGDQn9C+0LvQtSDQv9GA0LjQvdC40LzQsNC10YIg0LfQvdCw0YfQtdC90LjQtSDQvtGCICR7bWlufSDQtNC+ICR7bWF4fWApO1xuICAgICAgdGhpcy5pc0luY29ycmVjdFJvd3NDb3VudC5zZXQodHJ1ZSk7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgdGhpcy5yb3dzQ291bnRFcnJvck1lc3NhZ2Uuc2V0KCcnKTtcbiAgICB0aGlzLmlzSW5jb3JyZWN0Um93c0NvdW50LnNldChmYWxzZSk7XG5cbiAgICBpZiAodGhpcy5jdXJyZW50Um93cyA9PT0gcm93cykge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIHRoaXMucm93cy5zZXQocm93cyk7XG4gICAgdGhpcy5yb3dzQ2hhbmdlLmVtaXQodGhpcy5jdXJyZW50Um93cyk7XG5cbiAgICBpZiAodGhpcy5jdXJyZW50UGFnZSA+IHRoaXMucGFnZXNDb3VudCgpKSB7XG4gICAgICB0aGlzLmNoYW5nZVBhZ2UoMCk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuX2VtaXRQYWdpbmF0b3JDaGFuZ2VzKCk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBfZW1pdFBhZ2luYXRvckNoYW5nZXMoKTogdm9pZCB7XG4gICAgdGhpcy5wYWdpbmF0b3JDaGFuZ2UuZW1pdCh7XG4gICAgICBwYWdlOiB0aGlzLmN1cnJlbnRQYWdlLFxuICAgICAgZmlyc3Q6ICh0aGlzLmN1cnJlbnRQYWdlIC0gMSkgKiB0aGlzLmN1cnJlbnRSb3dzICsgMSxcbiAgICAgIHJvd3M6IHRoaXMuY3VycmVudFJvd3MsXG4gICAgICBwYWdlc0NvdW50OiB0aGlzLnBhZ2VzQ291bnQoKSxcbiAgICB9KTtcbiAgfVxuXG4gIC8qKiBnZXQt0LzQtdGC0L7QtNGLICovXG4gIHByb3RlY3RlZCBnZXQgY3VycmVudFBhZ2UoKTogbnVtYmVyIHtcbiAgICByZXR1cm4gTWF0aC5tYXgoY29lcmNlTnVtYmVyUHJvcGVydHkodGhpcy5wYWdlKCkpLCAxKTtcbiAgfVxuXG4gIHByb3RlY3RlZCBnZXQgY3VycmVudFJvd3MoKTogbnVtYmVyIHtcbiAgICBsZXQgaW5wdXRSb3dzID0gTWF0aC5tYXgoY29lcmNlTnVtYmVyUHJvcGVydHkodGhpcy5yb3dzKCkpLCAwKTtcblxuICAgIGlmICghaW5wdXRSb3dzKSB7XG4gICAgICBbaW5wdXRSb3dzXSA9IHRoaXMucm93c0NvdW50T3B0aW9ucygpO1xuICAgIH1cblxuICAgIHJldHVybiBpbnB1dFJvd3M7XG4gIH1cbn1cbiIsIjx0dWktbG9hZGVyIGNsYXNzPVwibG9hZGVyXCIgW3Nob3dMb2FkZXJdPVwiaXNMb2FkaW5nKClcIiBbb3ZlcmxheV09XCJ0cnVlXCI+XG4gIDxkaXYgY2xhc3M9XCJjb250YWluZXJcIj5cbiAgICA8ZGl2IGNsYXNzPVwiY29udGVudFwiPlxuICAgICAgQGlmICghcGFnaW5hdG9yT3B0aW9ucygpLm5vUm93c1NlbGVjdG9yICYmICFwYWdpbmF0b3JPcHRpb25zKCkubm9Sb3dzU2VsZWN0b3JMYWJlbCkge1xuICAgICAgICA8c3BhbiBjbGFzcz1cInJvd3Mgcm93c19fY291bnRcIj5cbiAgICAgICAgICA8bmctY29udGFpbmVyICpwb2x5bW9ycGhPdXRsZXQ9XCJ0ZXh0T25QYWdlKCkgYXMgdGl0bGVcIj5cbiAgICAgICAgICAgIHt7IHRpdGxlIH19XG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgIDwvc3Bhbj5cbiAgICAgIH1cbiAgICAgIEBpZiAoIXBhZ2luYXRvck9wdGlvbnMoKS5ub1Jvd3NTZWxlY3Rvcikge1xuICAgICAgICA8ZGl2IGNsYXNzPVwicm93cy1zZWxlY3RvclwiPlxuICAgICAgICAgIDx0dWktY29tYm8tYm94XG4gICAgICAgICAgICBudW1iZXJPbmx5XG4gICAgICAgICAgICBbbmdNb2RlbF09XCJjdXJyZW50Um93c1wiXG4gICAgICAgICAgICBbbmdNb2RlbE9wdGlvbnNdPVwieyBzdGFuZGFsb25lOiB0cnVlIH1cIlxuICAgICAgICAgICAgW3N0cmljdF09XCJmYWxzZVwiXG4gICAgICAgICAgICBbdHVpVGV4dGZpZWxkTGFiZWxPdXRzaWRlXT1cInRydWVcIlxuICAgICAgICAgICAgW3R1aVRleHRmaWVsZENsZWFuZXJdPVwiZmFsc2VcIlxuICAgICAgICAgICAgdHVpVGV4dGZpZWxkU2l6ZT1cInNcIlxuICAgICAgICAgICAgW2Rpc2FibGVkXT1cImRpc2FibGVkKClcIlxuICAgICAgICAgICAgW3R1aUhpbnRdPVwicm93c0NvdW50RXJyb3JNZXNzYWdlKClcIlxuICAgICAgICAgICAgW3R1aUhpbnRNYW51YWxdPVwiaXNJbmNvcnJlY3RSb3dzQ291bnQoKVwiXG4gICAgICAgICAgICAobmdNb2RlbENoYW5nZSk9XCJjdXJyZW50Um93c0lucHV0Q2hhbmdlLm5leHQoJGV2ZW50KVwiXG4gICAgICAgICAgPlxuICAgICAgICAgICAgPHR1aS1kYXRhLWxpc3Qtd3JhcHBlclxuICAgICAgICAgICAgICAqdHVpRGF0YUxpc3RcbiAgICAgICAgICAgICAgW2l0ZW1zXT1cInJvd3NDb3VudE9wdGlvbnMoKS5sZW5ndGggPyByb3dzQ291bnRPcHRpb25zKCkgOiBbY3VycmVudFJvd3NdXCJcbiAgICAgICAgICAgIC8+XG4gICAgICAgICAgPC90dWktY29tYm8tYm94PlxuICAgICAgICA8L2Rpdj5cbiAgICAgIH1cblxuICAgICAgPGRpdiBjbGFzcz1cInNlbGVjdGVkLXBhbmVsXCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJzZWxlY3RlZC1jb250YWluZXJcIj5cbiAgICAgICAgICA8c3Bhbj7QktGL0LHRgNCw0L3Qvjwvc3Bhbj5cbiAgICAgICAgICA8c3BhbiBjbGFzcz1cInNlbGVjdGVkLWNvdW50ZXJcIj57eyBzZWxlY3RlZENvdW50ZXIoKSB9fTwvc3Bhbj5cbiAgICAgICAgPC9kaXY+XG4gICAgICAgIDxzcHJvYy1kaXZpZGVyIGxheW91dD1cInZlcnRpY2FsXCI+PC9zcHJvYy1kaXZpZGVyPlxuICAgICAgICBAaWYgKCFwYWdpbmF0b3JPcHRpb25zKCkubm9GaWx0ZXJJbmZvKSB7XG4gICAgICAgICAgPGRpdiBjbGFzcz1cInNlbGVjdGVkLWNvbnRhaW5lclwiPlxuICAgICAgICAgICAgPHNwYW4+0J7RgtGE0LjQu9GM0YLRgNC+0LLQsNC90L48L3NwYW4+XG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInNlbGVjdGVkLWNvdW50ZXJcIj57eyB0b3RhbFJlY29yZHMoKSB9fTwvc3Bhbj5cbiAgICAgICAgICAgIDxzcGFuPtC40Lc8L3NwYW4+XG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInNlbGVjdGVkLWNvdW50ZXJcIj57eyB0b3RhbE5vdEZpbHRlcmVkKCkgfX08L3NwYW4+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgIH1cbiAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuXG4gICAgPGRpdiBjbGFzcz1cImNvbnRlbnRcIj5cbiAgICAgIEBpZiAoIXBhZ2luYXRvck9wdGlvbnMoKS5ub0luZm8pIHtcbiAgICAgICAgPHNwYW4gY2xhc3M9XCJyb3dzIHJvd3NfX3Nob3dcIiBbaGlkZGVuXT1cImRpc2FibGVkKClcIj5cbiAgICAgICAgICDQn9C+0LrQsNC30LDQvdC+INGB0YLRgNC+0Lo6IHt7IChjdXJyZW50UGFnZSAtIDEpICogY3VycmVudFJvd3MgKyAxIH19LXt7XG4gICAgICAgICAgICBjdXJyZW50UGFnZSAqIGN1cnJlbnRSb3dzID4gdG90YWxSZWNvcmRzKCkgPyB0b3RhbFJlY29yZHMoKSA6IGN1cnJlbnRQYWdlICogY3VycmVudFJvd3NcbiAgICAgICAgICB9fVxuICAgICAgICAgIDxuZy1jb250YWluZXI+INC40Lcge3sgdG90YWxSZWNvcmRzKCkgfX0gPC9uZy1jb250YWluZXI+XG4gICAgICAgIDwvc3Bhbj5cbiAgICAgIH1cblxuICAgICAgPGRpdiBjbGFzcz1cInBhZ2luYXRvclwiPlxuICAgICAgICA8YnV0dG9uXG4gICAgICAgICAgdHVpSWNvbkJ1dHRvblxuICAgICAgICAgIGNsYXNzPVwicGFnaW5hdG9yX19jb250cm9sXCJcbiAgICAgICAgICBhcHBlYXJhbmNlPVwiZmxhdFwiXG4gICAgICAgICAgdHlwZT1cImJ1dHRvblwiXG4gICAgICAgICAgc2l6ZT1cInhzXCJcbiAgICAgICAgICB0YWJJbmRleD1cIi0xXCJcbiAgICAgICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWQoKSB8fCBjdXJyZW50UGFnZSA9PT0gMVwiXG4gICAgICAgICAgKGNsaWNrKT1cInRvRmlyc3RQYWdlKClcIlxuICAgICAgICA+XG4gICAgICAgICAgPGltZyBbc3JjXT1cIlN2Z1NyYy5DSEVWUk9OU19ET1VCTEVfTEVGVFwiIC8+XG4gICAgICAgIDwvYnV0dG9uPlxuICAgICAgICA8dHVpLXBhZ2luYXRpb25cbiAgICAgICAgICBbaW5kZXhdPVwiY3VycmVudFBhZ2UgLSAxXCJcbiAgICAgICAgICBbbGVuZ3RoXT1cInBhZ2VzQ291bnQoKVwiXG4gICAgICAgICAgW2FjdGl2ZVBhZGRpbmddPVwicGFnZUxpbmtTaXplKClcIlxuICAgICAgICAgIChpbmRleENoYW5nZSk9XCJjaGFuZ2VQYWdlKCRldmVudCArIDEpXCJcbiAgICAgICAgLz5cbiAgICAgICAgQGlmIChwYWdpbmF0b3JPcHRpb25zKCkubm9Ub0xhc3RQYWdlQnRuID8/IHRydWUpIHtcbiAgICAgICAgICA8YnV0dG9uXG4gICAgICAgICAgICB0dWlJY29uQnV0dG9uXG4gICAgICAgICAgICBjbGFzcz1cInBhZ2luYXRvcl9fY29udHJvbFwiXG4gICAgICAgICAgICBhcHBlYXJhbmNlPVwiZmxhdFwiXG4gICAgICAgICAgICB0eXBlPVwiYnV0dG9uXCJcbiAgICAgICAgICAgIHNpemU9XCJ4c1wiXG4gICAgICAgICAgICB0YWJJbmRleD1cIi0xXCJcbiAgICAgICAgICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlZCgpIHx8IGN1cnJlbnRQYWdlID09PSBwYWdlc0NvdW50KCkgfHwgY3VycmVudFBhZ2UgPT09IDBcIlxuICAgICAgICAgICAgKGNsaWNrKT1cInRvTGFzdFBhZ2UoKVwiXG4gICAgICAgICAgPlxuICAgICAgICAgICAgPGltZyBbc3JjXT1cIlN2Z1NyYy5DSEVWUk9OU19ET1VCTEVfUklHSFRcIiAvPlxuICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICB9XG4gICAgICA8L2Rpdj5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG48L3R1aS1sb2FkZXI+XG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdG9yLnR5cGVzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LXJlZ2lzdGVyLWJhc2Uvc3JjL2xpYi9jb21wb25lbnRzL3BhZ2luYXRvci90eXBlcy9wYWdpbmF0b3IudHlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgSVBhZ2luYXRvck91dHB1dCB7XG4gIHBhZ2U6IG51bWJlcjtcbiAgZmlyc3Q6IG51bWJlcjtcbiAgcm93czogbnVtYmVyO1xuICBwYWdlc0NvdW50OiBudW1iZXIgfCBudWxsO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIElQYWdpbmF0b3JPcHRpb25zIHtcbiAgbm9Sb3dzU2VsZWN0b3I/OiBib29sZWFuO1xuICBub1Jvd3NTZWxlY3RvckxhYmVsPzogYm9vbGVhbjtcbiAgbm9GaWx0ZXJJbmZvPzogYm9vbGVhbjtcbiAgbm9JbmZvPzogYm9vbGVhbjtcbiAgbm9QYWdlcz86IGJvb2xlYW47XG4gIG5vVG9GaXJzdFBhZ2VCdG4/OiBib29sZWFuO1xuICBub1RvTGFzdFBhZ2VCdG4/OiBib29sZWFuO1xufVxuIl19
@@ -1,4 +0,0 @@
1
- export const CHECKBOX_SELECTOR_KEY = 'checkbox-selector';
2
- export const CHECKBOX_SELECTOR_WIDTH_PX = 32;
3
- export const MIN_COL_WIDTH_PX = 8;
4
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVnaXN0ZXItdGFibGUuY29uc3RzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LXJlZ2lzdGVyLWJhc2Uvc3JjL2xpYi9jb21wb25lbnRzL3JlZ2lzdGVyLXRhYmxlL2NvbnN0cy9yZWdpc3Rlci10YWJsZS5jb25zdHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFDLE1BQU0scUJBQXFCLEdBQUcsbUJBQW1CLENBQUM7QUFDekQsTUFBTSxDQUFDLE1BQU0sMEJBQTBCLEdBQUcsRUFBRSxDQUFDO0FBQzdDLE1BQU0sQ0FBQyxNQUFNLGdCQUFnQixHQUFHLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjb25zdCBDSEVDS0JPWF9TRUxFQ1RPUl9LRVkgPSAnY2hlY2tib3gtc2VsZWN0b3InO1xuZXhwb3J0IGNvbnN0IENIRUNLQk9YX1NFTEVDVE9SX1dJRFRIX1BYID0gMzI7XG5leHBvcnQgY29uc3QgTUlOX0NPTF9XSURUSF9QWCA9IDg7XG4iXX0=
@@ -1,19 +0,0 @@
1
- import { Directive, Input } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class CellTemplateDirective {
4
- constructor(tpl) {
5
- this.tpl = tpl;
6
- }
7
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CellTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
8
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: CellTemplateDirective, isStandalone: true, selector: "[cellTemplateName]", inputs: { cellTemplateName: "cellTemplateName" }, ngImport: i0 }); }
9
- }
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CellTemplateDirective, decorators: [{
11
- type: Directive,
12
- args: [{
13
- selector: '[cellTemplateName]',
14
- standalone: true,
15
- }]
16
- }], ctorParameters: () => [{ type: i0.TemplateRef }], propDecorators: { cellTemplateName: [{
17
- type: Input
18
- }] } });
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2VsbC10ZW1wbGF0ZS5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmVnaXN0ZXItYmFzZS9zcmMvbGliL2NvbXBvbmVudHMvcmVnaXN0ZXItdGFibGUvZGlyZWN0aXZlcy9jZWxsLXRlbXBsYXRlLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBZSxNQUFNLGVBQWUsQ0FBQzs7QUFNOUQsTUFBTSxPQUFPLHFCQUFxQjtJQUdoQyxZQUFtQixHQUFxQjtRQUFyQixRQUFHLEdBQUgsR0FBRyxDQUFrQjtJQUFHLENBQUM7K0dBSGpDLHFCQUFxQjttR0FBckIscUJBQXFCOzs0RkFBckIscUJBQXFCO2tCQUpqQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxvQkFBb0I7b0JBQzlCLFVBQVUsRUFBRSxJQUFJO2lCQUNqQjtnRkFFVSxnQkFBZ0I7c0JBQXhCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIElucHV0LCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbY2VsbFRlbXBsYXRlTmFtZV0nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxufSlcbmV4cG9ydCBjbGFzcyBDZWxsVGVtcGxhdGVEaXJlY3RpdmUge1xuICBASW5wdXQoKSBjZWxsVGVtcGxhdGVOYW1lITogc3RyaW5nO1xuXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyB0cGw6IFRlbXBsYXRlUmVmPGFueT4pIHt9XG59XG4iXX0=
@@ -1,18 +0,0 @@
1
- import { Directive, input } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class HeaderTemplateDirective {
4
- constructor(tpl) {
5
- this.tpl = tpl;
6
- this.headerTemplateName = input.required();
7
- }
8
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: HeaderTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
9
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.14", type: HeaderTemplateDirective, isStandalone: true, selector: "[headerTemplateName]", inputs: { headerTemplateName: { classPropertyName: "headerTemplateName", publicName: "headerTemplateName", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
10
- }
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: HeaderTemplateDirective, decorators: [{
12
- type: Directive,
13
- args: [{
14
- selector: '[headerTemplateName]',
15
- standalone: true,
16
- }]
17
- }], ctorParameters: () => [{ type: i0.TemplateRef }] });
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVhZGVyLXRlbXBsYXRlLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZWdpc3Rlci1iYXNlL3NyYy9saWIvY29tcG9uZW50cy9yZWdpc3Rlci10YWJsZS9kaXJlY3RpdmVzL2hlYWRlci10ZW1wbGF0ZS5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQWUsTUFBTSxlQUFlLENBQUM7O0FBTTlELE1BQU0sT0FBTyx1QkFBdUI7SUFHbEMsWUFBbUIsR0FBcUI7UUFBckIsUUFBRyxHQUFILEdBQUcsQ0FBa0I7UUFGakMsdUJBQWtCLEdBQUcsS0FBSyxDQUFDLFFBQVEsRUFBVSxDQUFDO0lBRVYsQ0FBQzsrR0FIakMsdUJBQXVCO21HQUF2Qix1QkFBdUI7OzRGQUF2Qix1QkFBdUI7a0JBSm5DLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHNCQUFzQjtvQkFDaEMsVUFBVSxFQUFFLElBQUk7aUJBQ2pCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBpbnB1dCwgVGVtcGxhdGVSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2hlYWRlclRlbXBsYXRlTmFtZV0nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxufSlcbmV4cG9ydCBjbGFzcyBIZWFkZXJUZW1wbGF0ZURpcmVjdGl2ZSB7XG4gIHB1YmxpYyBoZWFkZXJUZW1wbGF0ZU5hbWUgPSBpbnB1dC5yZXF1aXJlZDxzdHJpbmc+KCk7XG5cbiAgY29uc3RydWN0b3IocHVibGljIHRwbDogVGVtcGxhdGVSZWY8YW55Pikge31cbn1cbiJdfQ==
@@ -1,4 +0,0 @@
1
- export { CellTemplateDirective } from './directives/cell-template.directive';
2
- export * from './model/schema';
3
- export { RegisterTableComponent } from './register-table.component';
4
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmVnaXN0ZXItYmFzZS9zcmMvbGliL2NvbXBvbmVudHMvcmVnaXN0ZXItdGFibGUvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDN0UsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7IENlbGxUZW1wbGF0ZURpcmVjdGl2ZSB9IGZyb20gJy4vZGlyZWN0aXZlcy9jZWxsLXRlbXBsYXRlLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL21vZGVsL3NjaGVtYSc7XG5leHBvcnQgeyBSZWdpc3RlclRhYmxlQ29tcG9uZW50IH0gZnJvbSAnLi9yZWdpc3Rlci10YWJsZS5jb21wb25lbnQnO1xuIl19
@@ -1,10 +0,0 @@
1
- export var EColumnDataType;
2
- (function (EColumnDataType) {
3
- EColumnDataType["TEXT"] = "text";
4
- EColumnDataType["NUM"] = "num";
5
- EColumnDataType["CHECKBOX"] = "checkbox";
6
- EColumnDataType["ICON"] = "icon";
7
- EColumnDataType["ICON_SVG"] = "iconSvg";
8
- EColumnDataType["DATE"] = "date";
9
- })(EColumnDataType || (EColumnDataType = {}));
10
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2NoZW1hLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LXJlZ2lzdGVyLWJhc2Uvc3JjL2xpYi9jb21wb25lbnRzL3JlZ2lzdGVyLXRhYmxlL21vZGVsL3NjaGVtYS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFJQSxNQUFNLENBQU4sSUFBWSxlQU9YO0FBUEQsV0FBWSxlQUFlO0lBQ3pCLGdDQUFhLENBQUE7SUFDYiw4QkFBVyxDQUFBO0lBQ1gsd0NBQXFCLENBQUE7SUFDckIsZ0NBQWEsQ0FBQTtJQUNiLHVDQUFvQixDQUFBO0lBQ3BCLGdDQUFhLENBQUE7QUFDZixDQUFDLEVBUFcsZUFBZSxLQUFmLGVBQWUsUUFPMUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPcmRlckJ5LCBXaGVyZUJvb2xFeHAgfSBmcm9tICdoYXN1cmEnO1xuXG5leHBvcnQgdHlwZSBDb2x1bW5EYXRhVHlwZXMgPSAndGV4dCcgfCAnbnVtJyB8ICdjaGVja2JveCcgfCAnaWNvbicgfCAnaWNvblN2ZycgfCAnZW1wdHknIHwgJ2RhdGUnO1xuXG5leHBvcnQgZW51bSBFQ29sdW1uRGF0YVR5cGUge1xuICBURVhUID0gJ3RleHQnLFxuICBOVU0gPSAnbnVtJyxcbiAgQ0hFQ0tCT1ggPSAnY2hlY2tib3gnLFxuICBJQ09OID0gJ2ljb24nLFxuICBJQ09OX1NWRyA9ICdpY29uU3ZnJyxcbiAgREFURSA9ICdkYXRlJyxcbn1cblxuZXhwb3J0IGludGVyZmFjZSBJQ29sdW1uRGF0YSB7XG4gIG5hbWU6IHN0cmluZztcbiAgdHlwZTogRUNvbHVtbkRhdGFUeXBlIHwgQ29sdW1uRGF0YVR5cGVzO1xuICB2YWx1ZT86IHN0cmluZztcbiAgd2lkdGg/OiBzdHJpbmc7XG4gIGlzSGVhZFRlbXBsYXRlPzogYm9vbGVhbjtcbiAgaXNUZW1wbGF0ZT86IGJvb2xlYW47XG4gIHNvcnRhYmxlPzogYm9vbGVhbjtcbiAgdG9vbHRpcFRleHQ/OiBzdHJpbmc7XG4gIHRleHRTdHlsZT86IFJlY29yZDxzdHJpbmcsIHN0cmluZz47XG4gIHJvd3NwYW4/OiBudW1iZXI7XG4gIGNvbHNwYW4/OiBudW1iZXI7XG4gIGNoaWxkcmVuPzogSUNvbHVtbkRhdGFbXTtcbiAgZGF0ZVBhdHRlcm4/OiBzdHJpbmc7XG4gIG51bWJlclBpcGU/OiBzdHJpbmc7XG4gIHN2Z1NyYz86IHN0cmluZztcbiAgaXNDZWxsPzogYm9vbGVhbjtcbiAgY2xhc3M/OiBzdHJpbmc7XG4gIGNsYXNzVGQ/OiBzdHJpbmc7XG4gIGlzTG9hZGluZz86IGJvb2xlYW47XG4gIHBvc3RmaXg/OiBzdHJpbmc7XG4gIGZpeGVkPzogYm9vbGVhbjtcbiAgaGVhZGVyU3R5bGU/OiBzdHJpbmc7XG59XG5cbmV4cG9ydCB0eXBlIFRoV2lkdGhFbnRyeSA9IFBpY2s8SUNvbHVtbkRhdGEsICduYW1lJyB8ICd3aWR0aCc+O1xuXG5leHBvcnQgaW50ZXJmYWNlIElIYXN1cmFRdWVyeUZpbHRlcjxUIGV4dGVuZHMgUmVjb3JkPHN0cmluZywgYW55Pj4ge1xuICB3aGVyZT86IFdoZXJlQm9vbEV4cDxUPjtcbiAgZGlzdGluY3Rfb24/OiAoa2V5b2YgVClbXTtcbiAgbGltaXQ/OiBudW1iZXI7XG4gIG9mZnNldD86IG51bWJlcjtcbiAgb3JkZXJfYnk/OiBPcmRlckJ5PFQ+O1xufVxuXG5leHBvcnQgdHlwZSBSZWdpc3RlclRhYmxlU29ydE9wdGlvbnMgPSB7XG4gIG9yZGVyOiBSZWdpc3RlclRhYmxlQ2VsbFNvcnRPcmRlcjtcbiAgaWQ6IHN0cmluZztcbn07XG5leHBvcnQgdHlwZSBSZWdpc3RlclRhYmxlQ2VsbFNvcnRlckhhbmRsZXI8VD4gPSAoXG4gIGE6IFQsXG4gIGI6IFQsXG4gIG9wdGlvbnM6IFJlZ2lzdGVyVGFibGVTb3J0T3B0aW9uc1xuKSA9PiBudW1iZXI7XG5leHBvcnQgdHlwZSBSZWdpc3RlclRhYmxlQ2VsbFNvcnRlcjxUPiA9IHtcbiAgb3B0aW9uczogUmVnaXN0ZXJUYWJsZVNvcnRPcHRpb25zO1xuICBzb3J0ZXI/OiBSZWdpc3RlclRhYmxlQ2VsbFNvcnRlckhhbmRsZXI8VD47XG59O1xuZXhwb3J0IHR5cGUgUmVnaXN0ZXJUYWJsZUNlbGxTb3J0T3JkZXIgPSAnYXNjJyB8ICdkZXNjJztcbiJdfQ==
@@ -1,33 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import { EColumnDataType } from '../model/schema';
3
- import * as i0 from "@angular/core";
4
- export class ClassByTypePipe {
5
- transform(type, element = 'th') {
6
- let classNamePostfix = 'text';
7
- if (element === 'td') {
8
- if (type === EColumnDataType.CHECKBOX) {
9
- classNamePostfix = 'checkbox';
10
- }
11
- else if (type === EColumnDataType.NUM) {
12
- classNamePostfix = 'num';
13
- }
14
- else if (type === EColumnDataType.DATE) {
15
- classNamePostfix = 'date';
16
- }
17
- }
18
- if (type === EColumnDataType.ICON || type === EColumnDataType.ICON_SVG) {
19
- classNamePostfix = 'icon';
20
- }
21
- return `register-table__cell-${classNamePostfix}`;
22
- }
23
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ClassByTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
24
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: ClassByTypePipe, isStandalone: true, name: "classByType" }); }
25
- }
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ClassByTypePipe, decorators: [{
27
- type: Pipe,
28
- args: [{
29
- name: 'classByType',
30
- standalone: true,
31
- }]
32
- }] });
33
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xhc3MtYnktdHlwZS5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LXJlZ2lzdGVyLWJhc2Uvc3JjL2xpYi9jb21wb25lbnRzL3JlZ2lzdGVyLXRhYmxlL3BpcGVzL2NsYXNzLWJ5LXR5cGUucGlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsSUFBSSxFQUFpQixNQUFNLGVBQWUsQ0FBQztBQUNwRCxPQUFPLEVBQW1CLGVBQWUsRUFBRSxNQUFNLGlCQUFpQixDQUFDOztBQU1uRSxNQUFNLE9BQU8sZUFBZTtJQUMxQixTQUFTLENBQUMsSUFBdUMsRUFBRSxVQUF1QixJQUFJO1FBQzVFLElBQUksZ0JBQWdCLEdBQUcsTUFBTSxDQUFDO1FBRTlCLElBQUksT0FBTyxLQUFLLElBQUksRUFBRSxDQUFDO1lBQ3JCLElBQUksSUFBSSxLQUFLLGVBQWUsQ0FBQyxRQUFRLEVBQUUsQ0FBQztnQkFDdEMsZ0JBQWdCLEdBQUcsVUFBVSxDQUFDO1lBQ2hDLENBQUM7aUJBQU0sSUFBSSxJQUFJLEtBQUssZUFBZSxDQUFDLEdBQUcsRUFBRSxDQUFDO2dCQUN4QyxnQkFBZ0IsR0FBRyxLQUFLLENBQUM7WUFDM0IsQ0FBQztpQkFBTSxJQUFJLElBQUksS0FBSyxlQUFlLENBQUMsSUFBSSxFQUFFLENBQUM7Z0JBQ3pDLGdCQUFnQixHQUFHLE1BQU0sQ0FBQztZQUM1QixDQUFDO1FBQ0gsQ0FBQztRQUVELElBQUksSUFBSSxLQUFLLGVBQWUsQ0FBQyxJQUFJLElBQUksSUFBSSxLQUFLLGVBQWUsQ0FBQyxRQUFRLEVBQUUsQ0FBQztZQUN2RSxnQkFBZ0IsR0FBRyxNQUFNLENBQUM7UUFDNUIsQ0FBQztRQUVELE9BQU8sd0JBQXdCLGdCQUFnQixFQUFFLENBQUM7SUFDcEQsQ0FBQzsrR0FuQlUsZUFBZTs2R0FBZixlQUFlOzs0RkFBZixlQUFlO2tCQUozQixJQUFJO21CQUFDO29CQUNKLElBQUksRUFBRSxhQUFhO29CQUNuQixVQUFVLEVBQUUsSUFBSTtpQkFDakIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb2x1bW5EYXRhVHlwZXMsIEVDb2x1bW5EYXRhVHlwZSB9IGZyb20gJy4uL21vZGVsL3NjaGVtYSc7XG5cbkBQaXBlKHtcbiAgbmFtZTogJ2NsYXNzQnlUeXBlJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgQ2xhc3NCeVR5cGVQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gIHRyYW5zZm9ybSh0eXBlOiBDb2x1bW5EYXRhVHlwZXMgfCBFQ29sdW1uRGF0YVR5cGUsIGVsZW1lbnQ6ICd0aCcgfCAndGQnID0gJ3RoJyk6IHN0cmluZyB7XG4gICAgbGV0IGNsYXNzTmFtZVBvc3RmaXggPSAndGV4dCc7XG5cbiAgICBpZiAoZWxlbWVudCA9PT0gJ3RkJykge1xuICAgICAgaWYgKHR5cGUgPT09IEVDb2x1bW5EYXRhVHlwZS5DSEVDS0JPWCkge1xuICAgICAgICBjbGFzc05hbWVQb3N0Zml4ID0gJ2NoZWNrYm94JztcbiAgICAgIH0gZWxzZSBpZiAodHlwZSA9PT0gRUNvbHVtbkRhdGFUeXBlLk5VTSkge1xuICAgICAgICBjbGFzc05hbWVQb3N0Zml4ID0gJ251bSc7XG4gICAgICB9IGVsc2UgaWYgKHR5cGUgPT09IEVDb2x1bW5EYXRhVHlwZS5EQVRFKSB7XG4gICAgICAgIGNsYXNzTmFtZVBvc3RmaXggPSAnZGF0ZSc7XG4gICAgICB9XG4gICAgfVxuXG4gICAgaWYgKHR5cGUgPT09IEVDb2x1bW5EYXRhVHlwZS5JQ09OIHx8IHR5cGUgPT09IEVDb2x1bW5EYXRhVHlwZS5JQ09OX1NWRykge1xuICAgICAgY2xhc3NOYW1lUG9zdGZpeCA9ICdpY29uJztcbiAgICB9XG5cbiAgICByZXR1cm4gYHJlZ2lzdGVyLXRhYmxlX19jZWxsLSR7Y2xhc3NOYW1lUG9zdGZpeH1gO1xuICB9XG59XG4iXX0=
@@ -1,17 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class StickyColumnPipe {
4
- transform(value, array) {
5
- return array?.includes(value) ?? false;
6
- }
7
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: StickyColumnPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
8
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: StickyColumnPipe, isStandalone: true, name: "stickyColumn" }); }
9
- }
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: StickyColumnPipe, decorators: [{
11
- type: Pipe,
12
- args: [{
13
- name: 'stickyColumn',
14
- standalone: true,
15
- }]
16
- }] });
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RpY2t5LWNvbHVtbi5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LXJlZ2lzdGVyLWJhc2Uvc3JjL2xpYi9jb21wb25lbnRzL3JlZ2lzdGVyLXRhYmxlL3BpcGVzL3N0aWNreS1jb2x1bW4ucGlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsSUFBSSxFQUFpQixNQUFNLGVBQWUsQ0FBQzs7QUFNcEQsTUFBTSxPQUFPLGdCQUFnQjtJQUMzQixTQUFTLENBQUMsS0FBYSxFQUFFLEtBQTJCO1FBQ2xELE9BQU8sS0FBSyxFQUFFLFFBQVEsQ0FBQyxLQUFLLENBQUMsSUFBSSxLQUFLLENBQUM7SUFDekMsQ0FBQzsrR0FIVSxnQkFBZ0I7NkdBQWhCLGdCQUFnQjs7NEZBQWhCLGdCQUFnQjtrQkFKNUIsSUFBSTttQkFBQztvQkFDSixJQUFJLEVBQUUsY0FBYztvQkFDcEIsVUFBVSxFQUFFLElBQUk7aUJBQ2pCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUGlwZSwgUGlwZVRyYW5zZm9ybSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AUGlwZSh7XG4gIG5hbWU6ICdzdGlja3lDb2x1bW4nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxufSlcbmV4cG9ydCBjbGFzcyBTdGlja3lDb2x1bW5QaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gIHRyYW5zZm9ybSh2YWx1ZTogc3RyaW5nLCBhcnJheTogc3RyaW5nW10gfCB1bmRlZmluZWQpOiBib29sZWFuIHtcbiAgICByZXR1cm4gYXJyYXk/LmluY2x1ZGVzKHZhbHVlKSA/PyBmYWxzZTtcbiAgfVxufVxuIl19