@verisoft/ui-govcz 18.6.4 → 18.7.0

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 (411) hide show
  1. package/README.md +52 -3
  2. package/esm2022/index.mjs +2 -0
  3. package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +34 -0
  4. package/esm2022/lib/components/breadcrumb/index.mjs +2 -0
  5. package/esm2022/lib/components/button/button.component.mjs +87 -0
  6. package/esm2022/lib/components/button/index.mjs +2 -0
  7. package/esm2022/lib/components/calendar/calendar.component.mjs +87 -0
  8. package/esm2022/lib/components/calendar/index.mjs +2 -0
  9. package/esm2022/lib/components/checkbox/checkbox.component.mjs +62 -0
  10. package/esm2022/lib/components/checkbox/index.mjs +2 -0
  11. package/esm2022/lib/components/confirm-dialog/confirm-dialog.component.mjs +72 -0
  12. package/esm2022/lib/components/confirm-dialog/index.mjs +2 -0
  13. package/esm2022/lib/components/dropdown/dropdown-item.component.mjs +14 -0
  14. package/esm2022/lib/components/dropdown/dropdown.component.mjs +280 -0
  15. package/esm2022/lib/components/dropdown/dropdown.model.mjs +2 -0
  16. package/esm2022/lib/components/dropdown/index.mjs +2 -0
  17. package/esm2022/lib/components/errors/error.component.mjs +34 -0
  18. package/esm2022/lib/components/errors/index.mjs +2 -0
  19. package/esm2022/lib/components/form-field/form-field.component.mjs +92 -0
  20. package/esm2022/lib/components/form-field/index.mjs +2 -0
  21. package/esm2022/lib/components/header/header.component.mjs +85 -0
  22. package/esm2022/lib/components/header/index.mjs +2 -0
  23. package/esm2022/lib/components/index.mjs +34 -0
  24. package/esm2022/lib/components/input-group/index.mjs +2 -0
  25. package/esm2022/lib/components/input-group/input-group.component.mjs +89 -0
  26. package/esm2022/lib/components/loader/index.mjs +2 -0
  27. package/esm2022/lib/components/loader/loader.component.mjs +34 -0
  28. package/esm2022/lib/components/multiselect/index.mjs +2 -0
  29. package/esm2022/lib/components/multiselect/multiselect.component.mjs +121 -0
  30. package/esm2022/lib/components/number-input/index.mjs +2 -0
  31. package/esm2022/lib/components/number-input/number-input.component.mjs +104 -0
  32. package/esm2022/lib/components/page-header/index.mjs +2 -0
  33. package/esm2022/lib/components/page-header/page-header.component.mjs +28 -0
  34. package/esm2022/lib/components/password/index.mjs +2 -0
  35. package/esm2022/lib/components/password/password.component.mjs +94 -0
  36. package/esm2022/lib/components/radiobutton/index.mjs +2 -0
  37. package/esm2022/lib/components/radiobutton/radiobutton.component.mjs +50 -0
  38. package/esm2022/lib/components/search/index.mjs +2 -0
  39. package/esm2022/lib/components/search/search.component.mjs +40 -0
  40. package/esm2022/lib/components/section/index.mjs +2 -0
  41. package/esm2022/lib/components/section/section.component.mjs +70 -0
  42. package/esm2022/lib/components/shared-components/action-button-group/action-button-group.component.mjs +97 -0
  43. package/esm2022/lib/components/shared-components/action-button-group/components/action-button/action-button.component.mjs +64 -0
  44. package/esm2022/lib/components/shared-components/action-button-group/index.mjs +3 -0
  45. package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.mjs +91 -0
  46. package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component.component.mjs +42 -0
  47. package/esm2022/lib/components/shared-components/dynamic-component/index.mjs +3 -0
  48. package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-column.directive.mjs +43 -0
  49. package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.mjs +16 -0
  50. package/esm2022/lib/components/shared-components/feature-list/feature-list-filter.pipe.mjs +24 -0
  51. package/esm2022/lib/components/shared-components/feature-list/feature-list-page.component.mjs +43 -0
  52. package/esm2022/lib/components/shared-components/feature-list/feature-list-page.model.mjs +16 -0
  53. package/esm2022/lib/components/shared-components/feature-list/feature-list.component.mjs +285 -0
  54. package/esm2022/lib/components/shared-components/feature-list/index.mjs +6 -0
  55. package/esm2022/lib/components/shared-components/filter/directives/filter-field.directive.mjs +53 -0
  56. package/esm2022/lib/components/shared-components/filter/filter.component.mjs +195 -0
  57. package/esm2022/lib/components/shared-components/filter/filter.model.mjs +16 -0
  58. package/esm2022/lib/components/shared-components/filter/index.mjs +3 -0
  59. package/esm2022/lib/components/shared-components/generic-field/generic-field.component.mjs +98 -0
  60. package/esm2022/lib/components/shared-components/generic-field/index.mjs +2 -0
  61. package/esm2022/lib/components/shared-components/generic-form/generic-form.component.mjs +46 -0
  62. package/esm2022/lib/components/shared-components/generic-form/generic-form.model.mjs +50 -0
  63. package/esm2022/lib/components/shared-components/generic-form/index.mjs +3 -0
  64. package/esm2022/lib/components/shared-components/index.mjs +7 -0
  65. package/esm2022/lib/components/side-menu/index.mjs +3 -0
  66. package/esm2022/lib/components/side-menu/side-menu.component.mjs +48 -0
  67. package/esm2022/lib/components/side-menu/side-menu.module.mjs +73 -0
  68. package/esm2022/lib/components/snackbar/index.mjs +3 -0
  69. package/esm2022/lib/components/snackbar/services/snackbar.service.mjs +75 -0
  70. package/esm2022/lib/components/snackbar/snackbar.component.mjs +61 -0
  71. package/esm2022/lib/components/snackbar/snackbar.model.mjs +2 -0
  72. package/esm2022/lib/components/stepper/index.mjs +2 -0
  73. package/esm2022/lib/components/stepper/stepper.component.mjs +66 -0
  74. package/esm2022/lib/components/switch/index.mjs +2 -0
  75. package/esm2022/lib/components/switch/switch.component.mjs +45 -0
  76. package/esm2022/lib/components/tab-view/index.mjs +4 -0
  77. package/esm2022/lib/components/tab-view/tab-view-item.component.mjs +41 -0
  78. package/esm2022/lib/components/tab-view/tab-view.component.mjs +56 -0
  79. package/esm2022/lib/components/tab-view/tab-view.module.mjs +41 -0
  80. package/esm2022/lib/components/table/index.mjs +2 -0
  81. package/esm2022/lib/components/table/table-pagination-info.component.mjs +32 -0
  82. package/esm2022/lib/components/table/table.component.mjs +359 -0
  83. package/esm2022/lib/components/table/table.model.mjs +14 -0
  84. package/esm2022/lib/components/textarea/index.mjs +2 -0
  85. package/esm2022/lib/components/textarea/textarea.component.mjs +95 -0
  86. package/esm2022/lib/components/textfield/index.mjs +2 -0
  87. package/esm2022/lib/components/textfield/textfield.component.mjs +124 -0
  88. package/esm2022/lib/components/tooltip/index.mjs +2 -0
  89. package/esm2022/lib/components/tooltip/tooltip.component.mjs +66 -0
  90. package/esm2022/lib/components/tristatecheckbox/index.mjs +2 -0
  91. package/esm2022/lib/components/tristatecheckbox/tristatecheckbox.component.mjs +89 -0
  92. package/esm2022/lib/icons.mjs +35 -0
  93. package/esm2022/lib/index.mjs +6 -0
  94. package/esm2022/lib/init.service.mjs +17 -0
  95. package/esm2022/lib/pages/index.mjs +4 -0
  96. package/esm2022/lib/pages/not-authenticated/index.mjs +2 -0
  97. package/esm2022/lib/pages/not-authenticated/not-authenticated.component.mjs +17 -0
  98. package/esm2022/lib/pages/not-authorized/index.mjs +2 -0
  99. package/esm2022/lib/pages/not-authorized/not-authorized.component.mjs +20 -0
  100. package/esm2022/lib/pages/not-found/index.mjs +2 -0
  101. package/esm2022/lib/pages/not-found/not-found.component.mjs +20 -0
  102. package/esm2022/lib/pipes/color/color.pipe.mjs +27 -0
  103. package/esm2022/lib/pipes/index.mjs +4 -0
  104. package/esm2022/lib/pipes/multiselect/multiselect-options.pipe.mjs +52 -0
  105. package/esm2022/lib/pipes/size/size.pipe.mjs +23 -0
  106. package/esm2022/verisoft-ui-govcz.mjs +5 -0
  107. package/fesm2022/verisoft-ui-govcz.mjs +3742 -0
  108. package/fesm2022/verisoft-ui-govcz.mjs.map +1 -0
  109. package/index.d.ts +1 -0
  110. package/lib/components/breadcrumb/breadcrumb.component.d.ts +7 -0
  111. package/{src/lib/components/breadcrumb/index.ts → lib/components/breadcrumb/index.d.ts} +1 -1
  112. package/lib/components/button/button.component.d.ts +26 -0
  113. package/lib/components/button/index.d.ts +1 -0
  114. package/lib/components/calendar/calendar.component.d.ts +23 -0
  115. package/lib/components/calendar/index.d.ts +1 -0
  116. package/lib/components/checkbox/checkbox.component.d.ts +15 -0
  117. package/lib/components/checkbox/index.d.ts +1 -0
  118. package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +15 -0
  119. package/{src/lib/components/confirm-dialog/index.ts → lib/components/confirm-dialog/index.d.ts} +1 -1
  120. package/lib/components/dropdown/dropdown-item.component.d.ts +7 -0
  121. package/lib/components/dropdown/dropdown.component.d.ts +65 -0
  122. package/{src/lib/components/dropdown/dropdown.model.ts → lib/components/dropdown/dropdown.model.d.ts} +6 -6
  123. package/{src/lib/components/dropdown/index.ts → lib/components/dropdown/index.d.ts} +1 -1
  124. package/lib/components/errors/error.component.d.ts +14 -0
  125. package/lib/components/errors/index.d.ts +1 -0
  126. package/lib/components/form-field/form-field.component.d.ts +25 -0
  127. package/{src/lib/components/form-field/index.ts → lib/components/form-field/index.d.ts} +1 -1
  128. package/lib/components/header/header.component.d.ts +25 -0
  129. package/lib/components/header/index.d.ts +1 -0
  130. package/{src/lib/components/index.ts → lib/components/index.d.ts} +33 -33
  131. package/lib/components/input-group/index.d.ts +1 -0
  132. package/lib/components/input-group/input-group.component.d.ts +24 -0
  133. package/lib/components/loader/index.d.ts +1 -0
  134. package/lib/components/loader/loader.component.d.ts +8 -0
  135. package/lib/components/multiselect/index.d.ts +1 -0
  136. package/lib/components/multiselect/multiselect.component.d.ts +35 -0
  137. package/lib/components/number-input/index.d.ts +1 -0
  138. package/lib/components/number-input/number-input.component.d.ts +29 -0
  139. package/lib/components/page-header/index.d.ts +1 -0
  140. package/lib/components/page-header/page-header.component.d.ts +9 -0
  141. package/{src/lib/components/password/index.ts → lib/components/password/index.d.ts} +1 -1
  142. package/lib/components/password/password.component.d.ts +23 -0
  143. package/lib/components/radiobutton/index.d.ts +1 -0
  144. package/lib/components/radiobutton/radiobutton.component.d.ts +12 -0
  145. package/lib/components/search/index.d.ts +1 -0
  146. package/lib/components/search/search.component.d.ts +14 -0
  147. package/lib/components/section/index.d.ts +1 -0
  148. package/lib/components/section/section.component.d.ts +18 -0
  149. package/lib/components/shared-components/action-button-group/action-button-group.component.d.ts +29 -0
  150. package/lib/components/shared-components/action-button-group/components/action-button/action-button.component.d.ts +24 -0
  151. package/{src/lib/components/shared-components/action-button-group/index.ts → lib/components/shared-components/action-button-group/index.d.ts} +2 -2
  152. package/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.d.ts +17 -0
  153. package/lib/components/shared-components/dynamic-component/dynamic-component.component.d.ts +16 -0
  154. package/{src/lib/components/shared-components/dynamic-component/index.ts → lib/components/shared-components/dynamic-component/index.d.ts} +2 -2
  155. package/lib/components/shared-components/feature-list/directives/feature-list-column.directive.d.ts +10 -0
  156. package/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.d.ts +6 -0
  157. package/lib/components/shared-components/feature-list/feature-list-filter.pipe.d.ts +9 -0
  158. package/lib/components/shared-components/feature-list/feature-list-page.component.d.ts +9 -0
  159. package/lib/components/shared-components/feature-list/feature-list-page.model.d.ts +23 -0
  160. package/lib/components/shared-components/feature-list/feature-list.component.d.ts +62 -0
  161. package/{src/lib/components/shared-components/feature-list/index.ts → lib/components/shared-components/feature-list/index.d.ts} +5 -5
  162. package/lib/components/shared-components/filter/directives/filter-field.directive.d.ts +20 -0
  163. package/lib/components/shared-components/filter/filter.component.d.ts +53 -0
  164. package/lib/components/shared-components/filter/filter.model.d.ts +2 -0
  165. package/{src/lib/components/shared-components/filter/index.ts → lib/components/shared-components/filter/index.d.ts} +2 -2
  166. package/lib/components/shared-components/generic-field/generic-field.component.d.ts +28 -0
  167. package/{src/lib/components/shared-components/generic-field/index.ts → lib/components/shared-components/generic-field/index.d.ts} +1 -1
  168. package/lib/components/shared-components/generic-form/generic-form.component.d.ts +15 -0
  169. package/lib/components/shared-components/generic-form/generic-form.model.d.ts +4 -0
  170. package/{src/lib/components/shared-components/generic-form/index.ts → lib/components/shared-components/generic-form/index.d.ts} +2 -2
  171. package/{src/lib/components/shared-components/index.ts → lib/components/shared-components/index.d.ts} +6 -6
  172. package/{src/lib/components/side-menu/index.ts → lib/components/side-menu/index.d.ts} +2 -2
  173. package/lib/components/side-menu/side-menu.component.d.ts +15 -0
  174. package/lib/components/side-menu/side-menu.module.d.ts +12 -0
  175. package/{src/lib/components/snackbar/index.ts → lib/components/snackbar/index.d.ts} +2 -2
  176. package/lib/components/snackbar/services/snackbar.service.d.ts +18 -0
  177. package/lib/components/snackbar/snackbar.component.d.ts +18 -0
  178. package/{src/lib/components/snackbar/snackbar.model.ts → lib/components/snackbar/snackbar.model.d.ts} +10 -10
  179. package/lib/components/stepper/index.d.ts +1 -0
  180. package/lib/components/stepper/stepper.component.d.ts +20 -0
  181. package/lib/components/switch/index.d.ts +1 -0
  182. package/lib/components/switch/switch.component.d.ts +12 -0
  183. package/{src/lib/components/tab-view/index.ts → lib/components/tab-view/index.d.ts} +3 -3
  184. package/lib/components/tab-view/tab-view-item.component.d.ts +14 -0
  185. package/lib/components/tab-view/tab-view.component.d.ts +19 -0
  186. package/lib/components/tab-view/tab-view.module.d.ts +12 -0
  187. package/{src/lib/components/table/index.ts → lib/components/table/index.d.ts} +1 -1
  188. package/lib/components/table/table-pagination-info.component.d.ts +12 -0
  189. package/lib/components/table/table.component.d.ts +91 -0
  190. package/lib/components/table/table.model.d.ts +3 -0
  191. package/lib/components/textarea/index.d.ts +1 -0
  192. package/lib/components/textarea/textarea.component.d.ts +25 -0
  193. package/lib/components/textfield/index.d.ts +1 -0
  194. package/lib/components/textfield/textfield.component.d.ts +28 -0
  195. package/lib/components/tooltip/index.d.ts +1 -0
  196. package/lib/components/tooltip/tooltip.component.d.ts +18 -0
  197. package/{src/lib/components/tristatecheckbox/index.ts → lib/components/tristatecheckbox/index.d.ts} +1 -1
  198. package/lib/components/tristatecheckbox/tristatecheckbox.component.d.ts +27 -0
  199. package/lib/icons.d.ts +2 -0
  200. package/{src/lib/index.ts → lib/index.d.ts} +5 -5
  201. package/lib/init.service.d.ts +6 -0
  202. package/{src/lib/pages/index.ts → lib/pages/index.d.ts} +3 -3
  203. package/{src/lib/pages/not-authenticated/index.ts → lib/pages/not-authenticated/index.d.ts} +1 -1
  204. package/lib/pages/not-authenticated/not-authenticated.component.d.ts +5 -0
  205. package/{src/lib/pages/not-authorized/index.ts → lib/pages/not-authorized/index.d.ts} +1 -1
  206. package/lib/pages/not-authorized/not-authorized.component.d.ts +6 -0
  207. package/{src/lib/pages/not-found/index.ts → lib/pages/not-found/index.d.ts} +1 -1
  208. package/lib/pages/not-found/not-found.component.d.ts +6 -0
  209. package/lib/pipes/color/color.pipe.d.ts +8 -0
  210. package/{src/lib/pipes/index.ts → lib/pipes/index.d.ts} +3 -3
  211. package/lib/pipes/multiselect/multiselect-options.pipe.d.ts +9 -0
  212. package/lib/pipes/size/size.pipe.d.ts +8 -0
  213. package/package.json +38 -23
  214. package/.eslintrc.json +0 -48
  215. package/jest.config.ts +0 -21
  216. package/ng-package.json +0 -15
  217. package/project.json +0 -49
  218. package/src/assets/main.css +0 -18
  219. package/src/config.d.ts +0 -10
  220. package/src/index.ts +0 -1
  221. package/src/lib/components/breadcrumb/breadcrumb.component.html +0 -23
  222. package/src/lib/components/breadcrumb/breadcrumb.component.scss +0 -0
  223. package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +0 -21
  224. package/src/lib/components/breadcrumb/breadcrumb.component.ts +0 -30
  225. package/src/lib/components/button/button.component.html +0 -26
  226. package/src/lib/components/button/button.component.scss +0 -0
  227. package/src/lib/components/button/button.component.ts +0 -72
  228. package/src/lib/components/button/index.ts +0 -1
  229. package/src/lib/components/calendar/calendar.component.html +0 -28
  230. package/src/lib/components/calendar/calendar.component.scss +0 -0
  231. package/src/lib/components/calendar/calendar.component.ts +0 -79
  232. package/src/lib/components/calendar/index.ts +0 -1
  233. package/src/lib/components/checkbox/checkbox.component.html +0 -23
  234. package/src/lib/components/checkbox/checkbox.component.scss +0 -0
  235. package/src/lib/components/checkbox/checkbox.component.ts +0 -62
  236. package/src/lib/components/checkbox/index.ts +0 -1
  237. package/src/lib/components/confirm-dialog/confirm-dialog.component.html +0 -50
  238. package/src/lib/components/confirm-dialog/confirm-dialog.component.scss +0 -4
  239. package/src/lib/components/confirm-dialog/confirm-dialog.component.ts +0 -80
  240. package/src/lib/components/dropdown/dropdown-item.component.html +0 -8
  241. package/src/lib/components/dropdown/dropdown-item.component.ts +0 -18
  242. package/src/lib/components/dropdown/dropdown.component.html +0 -90
  243. package/src/lib/components/dropdown/dropdown.component.scss +0 -108
  244. package/src/lib/components/dropdown/dropdown.component.spec.ts +0 -21
  245. package/src/lib/components/dropdown/dropdown.component.ts +0 -297
  246. package/src/lib/components/errors/error.component.html +0 -11
  247. package/src/lib/components/errors/error.component.scss +0 -0
  248. package/src/lib/components/errors/error.component.spec.ts +0 -19
  249. package/src/lib/components/errors/error.component.ts +0 -30
  250. package/src/lib/components/errors/index.ts +0 -1
  251. package/src/lib/components/form-field/form-field.component.html +0 -14
  252. package/src/lib/components/form-field/form-field.component.scss +0 -0
  253. package/src/lib/components/form-field/form-field.component.spec.ts +0 -21
  254. package/src/lib/components/form-field/form-field.component.ts +0 -78
  255. package/src/lib/components/header/header.component.html +0 -122
  256. package/src/lib/components/header/header.component.scss +0 -0
  257. package/src/lib/components/header/header.component.ts +0 -91
  258. package/src/lib/components/header/index.ts +0 -1
  259. package/src/lib/components/input-group/index.ts +0 -1
  260. package/src/lib/components/input-group/input-group.component.html +0 -41
  261. package/src/lib/components/input-group/input-group.component.scss +0 -0
  262. package/src/lib/components/input-group/input-group.component.ts +0 -77
  263. package/src/lib/components/loader/index.ts +0 -1
  264. package/src/lib/components/loader/loader.component.html +0 -7
  265. package/src/lib/components/loader/loader.component.scss +0 -0
  266. package/src/lib/components/loader/loader.component.spec.ts +0 -21
  267. package/src/lib/components/loader/loader.component.ts +0 -33
  268. package/src/lib/components/multiselect/index.ts +0 -1
  269. package/src/lib/components/multiselect/multiselect.component.html +0 -21
  270. package/src/lib/components/multiselect/multiselect.component.scss +0 -0
  271. package/src/lib/components/multiselect/multiselect.component.spec.ts +0 -21
  272. package/src/lib/components/multiselect/multiselect.component.ts +0 -119
  273. package/src/lib/components/number-input/index.ts +0 -1
  274. package/src/lib/components/number-input/number-input.component.html +0 -48
  275. package/src/lib/components/number-input/number-input.component.scss +0 -0
  276. package/src/lib/components/number-input/number-input.component.ts +0 -82
  277. package/src/lib/components/page-header/index.ts +0 -1
  278. package/src/lib/components/page-header/page-header.component.html +0 -3
  279. package/src/lib/components/page-header/page-header.component.scss +0 -11
  280. package/src/lib/components/page-header/page-header.component.spec.ts +0 -21
  281. package/src/lib/components/page-header/page-header.component.ts +0 -29
  282. package/src/lib/components/password/password.component.html +0 -31
  283. package/src/lib/components/password/password.component.scss +0 -0
  284. package/src/lib/components/password/password.component.spec.ts +0 -21
  285. package/src/lib/components/password/password.component.ts +0 -85
  286. package/src/lib/components/radiobutton/index.ts +0 -1
  287. package/src/lib/components/radiobutton/radiobutton.component.html +0 -23
  288. package/src/lib/components/radiobutton/radiobutton.component.scss +0 -0
  289. package/src/lib/components/radiobutton/radiobutton.component.ts +0 -58
  290. package/src/lib/components/search/index.ts +0 -1
  291. package/src/lib/components/search/search.component.html +0 -23
  292. package/src/lib/components/search/search.component.scss +0 -0
  293. package/src/lib/components/search/search.component.ts +0 -47
  294. package/src/lib/components/section/index.ts +0 -1
  295. package/src/lib/components/section/section.component.html +0 -26
  296. package/src/lib/components/section/section.component.scss +0 -0
  297. package/src/lib/components/section/section.component.ts +0 -57
  298. package/src/lib/components/shared-components/action-button-group/action-button-group.component.html +0 -27
  299. package/src/lib/components/shared-components/action-button-group/action-button-group.component.scss +0 -0
  300. package/src/lib/components/shared-components/action-button-group/action-button-group.component.spec.ts +0 -21
  301. package/src/lib/components/shared-components/action-button-group/action-button-group.component.ts +0 -114
  302. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.html +0 -11
  303. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.scss +0 -0
  304. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.spec.ts +0 -21
  305. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.ts +0 -71
  306. package/src/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.ts +0 -142
  307. package/src/lib/components/shared-components/dynamic-component/dynamic-component.component.ts +0 -56
  308. package/src/lib/components/shared-components/feature-list/directives/feature-list-column.directive.ts +0 -32
  309. package/src/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.ts +0 -8
  310. package/src/lib/components/shared-components/feature-list/feature-list-filter.pipe.ts +0 -21
  311. package/src/lib/components/shared-components/feature-list/feature-list-page.component.ts +0 -31
  312. package/src/lib/components/shared-components/feature-list/feature-list-page.model.ts +0 -42
  313. package/src/lib/components/shared-components/feature-list/feature-list.component.html +0 -59
  314. package/src/lib/components/shared-components/feature-list/feature-list.component.scss +0 -10
  315. package/src/lib/components/shared-components/feature-list/feature-list.component.ts +0 -342
  316. package/src/lib/components/shared-components/filter/directives/filter-field.directive.ts +0 -35
  317. package/src/lib/components/shared-components/filter/filter.component.html +0 -68
  318. package/src/lib/components/shared-components/filter/filter.component.scss +0 -0
  319. package/src/lib/components/shared-components/filter/filter.component.spec.ts +0 -21
  320. package/src/lib/components/shared-components/filter/filter.component.stories.ts +0 -23
  321. package/src/lib/components/shared-components/filter/filter.component.ts +0 -284
  322. package/src/lib/components/shared-components/filter/filter.model.ts +0 -18
  323. package/src/lib/components/shared-components/generic-field/generic-field.component.html +0 -97
  324. package/src/lib/components/shared-components/generic-field/generic-field.component.spec.ts +0 -21
  325. package/src/lib/components/shared-components/generic-field/generic-field.component.ts +0 -94
  326. package/src/lib/components/shared-components/generic-form/generic-form.component.html +0 -46
  327. package/src/lib/components/shared-components/generic-form/generic-form.component.spec.ts +0 -21
  328. package/src/lib/components/shared-components/generic-form/generic-form.component.ts +0 -57
  329. package/src/lib/components/shared-components/generic-form/generic-form.model.spec.ts +0 -82
  330. package/src/lib/components/shared-components/generic-form/generic-form.model.ts +0 -68
  331. package/src/lib/components/side-menu/side-menu.component.html +0 -25
  332. package/src/lib/components/side-menu/side-menu.component.scss +0 -23
  333. package/src/lib/components/side-menu/side-menu.component.ts +0 -42
  334. package/src/lib/components/side-menu/side-menu.module.ts +0 -64
  335. package/src/lib/components/sidemenu/index.ts +0 -2
  336. package/src/lib/components/snackbar/services/snackbar.service.ts +0 -73
  337. package/src/lib/components/snackbar/snackbar.component.html +0 -14
  338. package/src/lib/components/snackbar/snackbar.component.scss +0 -0
  339. package/src/lib/components/snackbar/snackbar.component.spec.ts +0 -21
  340. package/src/lib/components/snackbar/snackbar.component.ts +0 -45
  341. package/src/lib/components/stepper/index.ts +0 -1
  342. package/src/lib/components/stepper/stepper.component.html +0 -35
  343. package/src/lib/components/stepper/stepper.component.scss +0 -9
  344. package/src/lib/components/stepper/stepper.component.ts +0 -61
  345. package/src/lib/components/switch/index.ts +0 -1
  346. package/src/lib/components/switch/switch.component.html +0 -16
  347. package/src/lib/components/switch/switch.component.scss +0 -0
  348. package/src/lib/components/switch/switch.component.ts +0 -37
  349. package/src/lib/components/tab-view/tab-view-item.component.ts +0 -23
  350. package/src/lib/components/tab-view/tab-view.component.html +0 -51
  351. package/src/lib/components/tab-view/tab-view.component.scss +0 -43
  352. package/src/lib/components/tab-view/tab-view.component.ts +0 -61
  353. package/src/lib/components/tab-view/tab-view.module.ts +0 -25
  354. package/src/lib/components/table/table-pagination-info.component.html +0 -9
  355. package/src/lib/components/table/table-pagination-info.component.ts +0 -22
  356. package/src/lib/components/table/table.component.html +0 -198
  357. package/src/lib/components/table/table.component.scss +0 -193
  358. package/src/lib/components/table/table.component.ts +0 -387
  359. package/src/lib/components/table/table.model.ts +0 -17
  360. package/src/lib/components/table/table.models.ts +0 -12
  361. package/src/lib/components/textarea/index.ts +0 -1
  362. package/src/lib/components/textarea/textarea.component.html +0 -50
  363. package/src/lib/components/textarea/textarea.component.scss +0 -0
  364. package/src/lib/components/textarea/textarea.component.ts +0 -78
  365. package/src/lib/components/textfield/index.ts +0 -1
  366. package/src/lib/components/textfield/textfield.component.html +0 -56
  367. package/src/lib/components/textfield/textfield.component.scss +0 -0
  368. package/src/lib/components/textfield/textfield.component.ts +0 -114
  369. package/src/lib/components/tooltip/index.ts +0 -1
  370. package/src/lib/components/tooltip/tooltip.component.html +0 -10
  371. package/src/lib/components/tooltip/tooltip.component.scss +0 -0
  372. package/src/lib/components/tooltip/tooltip.component.ts +0 -57
  373. package/src/lib/components/tristatecheckbox/tristatecheckbox.component.html +0 -23
  374. package/src/lib/components/tristatecheckbox/tristatecheckbox.component.scss +0 -0
  375. package/src/lib/components/tristatecheckbox/tristatecheckbox.component.ts +0 -103
  376. package/src/lib/icons.ts +0 -36
  377. package/src/lib/init.service.ts +0 -11
  378. package/src/lib/interceptors/http-error-message.interceptor.ts +0 -45
  379. package/src/lib/pages/bad-request-page/bad-request-page.component.html +0 -5
  380. package/src/lib/pages/bad-request-page/bad-request-page.component.scss +0 -0
  381. package/src/lib/pages/bad-request-page/bad-request-page.component.ts +0 -15
  382. package/src/lib/pages/error-page/error-page.component.html +0 -5
  383. package/src/lib/pages/error-page/error-page.component.scss +0 -0
  384. package/src/lib/pages/error-page/error-page.component.ts +0 -32
  385. package/src/lib/pages/error-page/error-page.constants.ts +0 -19
  386. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.html +0 -5
  387. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.scss +0 -0
  388. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.ts +0 -16
  389. package/src/lib/pages/not-authenticated/not-authenticated.component.html +0 -5
  390. package/src/lib/pages/not-authenticated/not-authenticated.component.ts +0 -14
  391. package/src/lib/pages/not-authorized/not-authorized.component.html +0 -5
  392. package/src/lib/pages/not-authorized/not-authorized.component.ts +0 -18
  393. package/src/lib/pages/not-found/not-found.component.html +0 -5
  394. package/src/lib/pages/not-found/not-found.component.ts +0 -18
  395. package/src/lib/pages/not-found-page/not-found-page.component.html +0 -6
  396. package/src/lib/pages/not-found-page/not-found-page.component.scss +0 -0
  397. package/src/lib/pages/not-found-page/not-found-page.component.ts +0 -16
  398. package/src/lib/pipes/color/color.pipe.ts +0 -24
  399. package/src/lib/pipes/multiselect/multiselect-options.pipe.ts +0 -61
  400. package/src/lib/pipes/size/size.pipe.ts +0 -20
  401. package/src/test-setup.ts +0 -8
  402. package/tsconfig.json +0 -30
  403. package/tsconfig.lib.json +0 -17
  404. package/tsconfig.lib.prod.json +0 -9
  405. package/tsconfig.spec.json +0 -16
  406. /package/{src/sass → sass}/header.css +0 -0
  407. /package/{src/sass → sass}/header.scss +0 -0
  408. /package/{src/sass → sass}/main.scss +0 -0
  409. /package/{src/sass → sass}/scrollbar.scss +0 -0
  410. /package/{src/sass → sass}/sidemenu.css +0 -0
  411. /package/{src/sass → sass}/vendors/_bootstrap.scss +0 -0
@@ -0,0 +1,29 @@
1
+ import { AfterContentInit, ChangeDetectorRef, QueryList } from '@angular/core';
2
+ import { ActionButton, ActionButtonGroupCore, IconPositionType, ScreenSizeService, UnsubscribeComponent } from '@verisoft/ui-core';
3
+ import { MenuItem } from 'primeng/api';
4
+ import { ActionButtonComponent } from './components/action-button/action-button.component';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ActionButtonGroupComponent extends UnsubscribeComponent implements AfterContentInit, ActionButtonGroupCore {
7
+ private readonly changeDetectorRef;
8
+ readonly screenSizeService: ScreenSizeService;
9
+ actions: QueryList<ActionButtonComponent>;
10
+ maxItems: number;
11
+ maxItemsMobile: number;
12
+ items: ActionButton[];
13
+ menuIconPos: IconPositionType;
14
+ menuIcon: string;
15
+ label?: string;
16
+ icon?: string;
17
+ icons: import("@verisoft/ui-core").CommonIcons;
18
+ allItems: ActionButton[];
19
+ visibleActions: ActionButton[];
20
+ menuItems: MenuItem[];
21
+ constructor(changeDetectorRef: ChangeDetectorRef, screenSizeService: ScreenSizeService);
22
+ ngAfterContentInit(): void;
23
+ fireClick(item: ActionButton, event: MouseEvent): void;
24
+ private subscribeItemChange;
25
+ private computeItems;
26
+ private convertToMenuItem;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionButtonGroupComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionButtonGroupComponent, "v-action-button-group", never, { "maxItems": { "alias": "maxItems"; "required": false; }; "maxItemsMobile": { "alias": "maxItemsMobile"; "required": false; }; "items": { "alias": "items"; "required": false; }; "menuIconPos": { "alias": "menuIconPos"; "required": false; }; "menuIcon": { "alias": "menuIcon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, ["actions"], never, true, never>;
29
+ }
@@ -0,0 +1,24 @@
1
+ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { ActionButton, ActionButtonGroupCore, ControlSeverityType, FieldSizeType } from '@verisoft/ui-core';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ActionButtonComponent implements ActionButton, OnChanges {
6
+ disabled: boolean;
7
+ toolTip?: string;
8
+ id?: string;
9
+ icon?: string;
10
+ outlined: boolean;
11
+ raised: boolean;
12
+ severity?: ControlSeverityType;
13
+ label?: string;
14
+ size?: FieldSizeType;
15
+ click: EventEmitter<MouseEvent>;
16
+ icons: import("@verisoft/ui-core").CommonIcons;
17
+ private propertyChangeSubject;
18
+ propertyChanged: Observable<unknown>;
19
+ buttonGroup: ActionButtonGroupCore | null;
20
+ ngOnChanges(changes: SimpleChanges): void;
21
+ handleClick(event: MouseEvent): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionButtonComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionButtonComponent, "v-action-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "toolTip": { "alias": "toolTip"; "required": false; }; "id": { "alias": "id"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "outlined": { "alias": "outlined"; "required": false; }; "raised": { "alias": "raised"; "required": false; }; "severity": { "alias": "severity"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "click": "click"; }, never, never, true, never>;
24
+ }
@@ -1,2 +1,2 @@
1
- export * from './action-button-group.component';
2
- export * from './components/action-button/action-button.component';
1
+ export * from './action-button-group.component';
2
+ export * from './components/action-button/action-button.component';
@@ -0,0 +1,17 @@
1
+ import { ViewContainerRef, Type, ComponentFactoryResolver, Injector, ComponentRef, OnDestroy } from '@angular/core';
2
+ import { ExtendedComponent } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DynamicComponentFactoryService implements OnDestroy {
5
+ private componentFactoryResolver;
6
+ constructor(componentFactoryResolver: ComponentFactoryResolver);
7
+ ngOnDestroy(): void;
8
+ createDynamicComponent<TComponent>(componentType: Type<TComponent>, viewContainerRef: ViewContainerRef, inputs: ExtendedComponent<TComponent>, injector?: Injector | undefined): Promise<ComponentRef<TComponent>>;
9
+ setComponentData<TComponent>(component: ComponentRef<TComponent>, inputs: Partial<TComponent>): void;
10
+ private unsubscribeComponentEvents;
11
+ private fireComponentEvents;
12
+ private setComponentDataInt;
13
+ private fireInputComponentEvents;
14
+ private fireOutputComponentEvents;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentFactoryService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<DynamicComponentFactoryService>;
17
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit, OnChanges, Type, ViewContainerRef } from '@angular/core';
2
+ import { ExtendedComponent } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DynamicComponent<TComponent> implements AfterViewInit, OnChanges {
5
+ componentType: Type<TComponent>;
6
+ data: ExtendedComponent<TComponent>;
7
+ container: ViewContainerRef;
8
+ private factoryServices;
9
+ private changeDetectorRef;
10
+ private injector;
11
+ ngOnChanges(): void;
12
+ ngAfterViewInit(): void;
13
+ private createComponent;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponent<any>, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<DynamicComponent<any>, "v-dynamic-component", never, { "componentType": { "alias": "componentType"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
16
+ }
@@ -1,2 +1,2 @@
1
- export * from './dynamic-component-factory.service';
2
- export * from './dynamic-component.component';
1
+ export * from './dynamic-component-factory.service';
2
+ export * from './dynamic-component.component';
@@ -0,0 +1,10 @@
1
+ import { GenericFieldTypeType, TableColumnDirective } from '@verisoft/ui-core';
2
+ import { FeatureListColumnDefinition, FeatureListColumnProvider } from '../feature-list-page.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FeatureListColumnDirective<T> extends TableColumnDirective<T> implements FeatureListColumnProvider<T> {
5
+ filter: boolean;
6
+ type: GenericFieldTypeType;
7
+ getDefinition(): FeatureListColumnDefinition<T>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureListColumnDirective<any>, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FeatureListColumnDirective<any>, "v-feature-list-column", never, { "filter": { "alias": "filter"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,6 @@
1
+ import { FilterFieldDirective } from '../../filter';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FeatureListFilterFieldDirective extends FilterFieldDirective {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureListFilterFieldDirective, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FeatureListFilterFieldDirective, "v-feature-list-filter-field", never, {}, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,9 @@
1
+ import { PipeTransform } from "@angular/core";
2
+ import { GenericFieldDefinition } from "@verisoft/ui-core";
3
+ import { FeatureListColumnDefinition } from "./feature-list-page.model";
4
+ import * as i0 from "@angular/core";
5
+ export declare class FeatureListFilterPipe<T> implements PipeTransform {
6
+ transform(value: FeatureListColumnDefinition<T>[] | undefined): GenericFieldDefinition[] | undefined;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureListFilterPipe<any>, never>;
8
+ static ɵpipe: i0.ɵɵPipeDeclaration<FeatureListFilterPipe<any>, "featureListColumn", true>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { ActivatedRoute } from '@angular/router';
2
+ import { FeatureListPageConfig } from './feature-list-page.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FeatureListPageComponent {
5
+ config: FeatureListPageConfig;
6
+ constructor(activatedRoute: ActivatedRoute);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureListPageComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeatureListPageComponent, "v-feature-list-page", never, {}, {}, never, never, true, never>;
9
+ }
@@ -0,0 +1,23 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { Route } from '@angular/router';
3
+ import { ColumnDefinition, GenericFieldTypeType } from '@verisoft/ui-core';
4
+ export interface FeatureListPageConfig {
5
+ title: string;
6
+ datasource: string;
7
+ tableName: string;
8
+ showAdd?: boolean;
9
+ showDownload?: boolean;
10
+ showDelete?: boolean;
11
+ }
12
+ export declare const FEATURE_LIST_PAGE_CONFIG_PROPERTY = "feature_list_config";
13
+ export declare function addFeatureListPage(value: Partial<Route> & {
14
+ config: FeatureListPageConfig;
15
+ }): Route;
16
+ export interface FeatureListColumnDefinition<T> extends ColumnDefinition<T> {
17
+ filter?: boolean;
18
+ type?: GenericFieldTypeType;
19
+ }
20
+ export declare const FEATURE_LIST_COLUMN_PROVIDER: InjectionToken<unknown>;
21
+ export interface FeatureListColumnProvider<T> {
22
+ getDefinition: () => FeatureListColumnDefinition<T>;
23
+ }
@@ -0,0 +1,62 @@
1
+ import { AfterViewInit, EventEmitter, QueryList } from '@angular/core';
2
+ import { DatasourceType } from '@verisoft/core';
3
+ import { GenericFieldDefinition, TableDatasourceDirective, TableSelectionModeType } from '@verisoft/ui-core';
4
+ import { FeatureListFilterFieldDirective } from './directives/feature-list-filter-field.directive';
5
+ import { FeatureListColumnDefinition, FeatureListColumnProvider } from './feature-list-page.model';
6
+ import * as i0 from "@angular/core";
7
+ export declare class FeatureListComponent<T> implements AfterViewInit {
8
+ viewColumns: QueryList<FeatureListColumnProvider<T>>;
9
+ fieldDeclarations: QueryList<FeatureListFilterFieldDirective>;
10
+ tableDatasourceDirective: TableDatasourceDirective<T>;
11
+ autoBind: boolean;
12
+ title: string;
13
+ columns: FeatureListColumnDefinition<T>[];
14
+ filters: GenericFieldDefinition[];
15
+ maxVisibleActions: number;
16
+ tableName: string;
17
+ ngrxFeatureKey?: string;
18
+ maxVisibleMobileActions: number;
19
+ showExtendedFilter: boolean;
20
+ showDownload: boolean;
21
+ showDelete: boolean;
22
+ showAdd: boolean;
23
+ canDownload: boolean;
24
+ canDelete: boolean;
25
+ canAdd: boolean;
26
+ useRouterFilter: boolean;
27
+ fulltextFieldName: string;
28
+ showFulltext: boolean;
29
+ deleteConfirmMessage: string | undefined;
30
+ autoDeleteEnabled: boolean;
31
+ autoDownloadEnabled: boolean;
32
+ downloadFileName: string;
33
+ datasource: DatasourceType<T>;
34
+ extraFilter: any;
35
+ disableCustomClicks: boolean;
36
+ maximumColumnLength: number;
37
+ addClick: EventEmitter<any>;
38
+ downloadClick: EventEmitter<any>;
39
+ deleteClick: EventEmitter<T[]>;
40
+ selectionChange: EventEmitter<any>;
41
+ set selectionMode(mode: TableSelectionModeType | undefined);
42
+ get selectionMode(): TableSelectionModeType | undefined;
43
+ icons: import("@verisoft/ui-core").CommonIcons;
44
+ private httpClient;
45
+ private baseUrl;
46
+ private _selectionMode;
47
+ private cdRef;
48
+ private dialogService;
49
+ selection: T[];
50
+ ngAfterViewInit(): void;
51
+ selectItems(items: T[]): void;
52
+ startDeleteItems(): void;
53
+ startDownload(): void;
54
+ private deleteItems;
55
+ private forceDelete;
56
+ private createDeleteFn;
57
+ private createDownloadFn;
58
+ private finishDeletion;
59
+ private convertToBlob;
60
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureListComponent<any>, never>;
61
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeatureListComponent<any>, "v-feature-list", never, { "autoBind": { "alias": "autoBind"; "required": false; }; "title": { "alias": "title"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "maxVisibleActions": { "alias": "maxVisibleActions"; "required": false; }; "tableName": { "alias": "tableName"; "required": true; }; "ngrxFeatureKey": { "alias": "ngrxFeatureKey"; "required": false; }; "maxVisibleMobileActions": { "alias": "maxVisibleMobileActions"; "required": false; }; "showExtendedFilter": { "alias": "showExtendedFilter"; "required": false; }; "showDownload": { "alias": "showDownload"; "required": false; }; "showDelete": { "alias": "showDelete"; "required": false; }; "showAdd": { "alias": "showAdd"; "required": false; }; "canDownload": { "alias": "canDownload"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; "canAdd": { "alias": "canAdd"; "required": false; }; "useRouterFilter": { "alias": "useRouterFilter"; "required": false; }; "fulltextFieldName": { "alias": "fulltextFieldName"; "required": false; }; "showFulltext": { "alias": "showFulltext"; "required": false; }; "deleteConfirmMessage": { "alias": "deleteConfirmMessage"; "required": false; }; "autoDeleteEnabled": { "alias": "autoDeleteEnabled"; "required": false; }; "autoDownloadEnabled": { "alias": "autoDownloadEnabled"; "required": false; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "extraFilter": { "alias": "extraFilter"; "required": false; }; "disableCustomClicks": { "alias": "disableCustomClicks"; "required": false; }; "maximumColumnLength": { "alias": "maximumColumnLength"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; }, { "addClick": "addClick"; "downloadClick": "downloadClick"; "deleteClick": "deleteClick"; "selectionChange": "selectionChange"; }, ["viewColumns", "fieldDeclarations"], never, true, never>;
62
+ }
@@ -1,5 +1,5 @@
1
- export * from './feature-list.component';
2
- export * from './feature-list-page.model';
3
- export * from './directives/feature-list-column.directive';
4
- export * from './directives/feature-list-filter-field.directive';
5
- export * from './feature-list-filter.pipe';
1
+ export * from './feature-list.component';
2
+ export * from './feature-list-page.model';
3
+ export * from './directives/feature-list-column.directive';
4
+ export * from './directives/feature-list-filter-field.directive';
5
+ export * from './feature-list-filter.pipe';
@@ -0,0 +1,20 @@
1
+ import { ValidatorFn } from '@angular/forms';
2
+ import { DatasourceType } from '@verisoft/core';
3
+ import { GenericFieldDefinition, GenericFieldTypeType } from '@verisoft/ui-core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FilterFieldDirective implements GenericFieldDefinition {
6
+ name: string;
7
+ type: GenericFieldTypeType | undefined;
8
+ label: string | undefined;
9
+ optionLabel: string;
10
+ optionValue: string | undefined;
11
+ options: unknown[] | undefined;
12
+ value?: unknown;
13
+ validator?: ValidatorFn[];
14
+ datasource: DatasourceType<any> | undefined;
15
+ filterField?: string;
16
+ showFilter?: boolean;
17
+ localSearch?: boolean;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterFieldDirective, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FilterFieldDirective, "v-filter-field", never, { "name": { "alias": "name"; "required": true; }; "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "options": { "alias": "options"; "required": false; }; "value": { "alias": "value"; "required": false; }; "validator": { "alias": "validator"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "filterField": { "alias": "filterField"; "required": false; }; "showFilter": { "alias": "showFilter"; "required": false; }; "localSearch": { "alias": "localSearch"; "required": false; }; }, {}, never, never, true, never>;
20
+ }
@@ -0,0 +1,53 @@
1
+ import { AfterContentInit, ChangeDetectorRef, OnChanges, OnInit, QueryList, SimpleChanges } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import { BaseHttpService } from '@verisoft/core';
4
+ import { DialogService, FieldSize, FilterCore, GenericFieldDefinition, ScreenSizeService, UnsubscribeComponent } from '@verisoft/ui-core';
5
+ import { Observable } from 'rxjs';
6
+ import { FilterFieldDirective } from './directives/filter-field.directive';
7
+ import * as i0 from "@angular/core";
8
+ type FilterValueType = {
9
+ [key: string]: unknown;
10
+ };
11
+ export declare class FilterComponent<T extends object> extends UnsubscribeComponent implements OnChanges, OnInit, AfterContentInit, FilterCore {
12
+ fieldDeclarations: QueryList<FilterFieldDirective>;
13
+ fields: GenericFieldDefinition[];
14
+ filters: GenericFieldDefinition[];
15
+ title?: string;
16
+ fulltextFieldName: string;
17
+ showFulltext: boolean;
18
+ showFilters: boolean;
19
+ autoBind: boolean;
20
+ debounceTime?: number;
21
+ icons: import("@verisoft/ui-core").CommonIcons;
22
+ fieldDefinitios$?: Observable<GenericFieldDefinition[]>;
23
+ formGroup$?: Observable<FormGroup>;
24
+ simpleFormFieldDefinitions$?: Observable<GenericFieldDefinition[]>;
25
+ private searchField;
26
+ private onTouch?;
27
+ private onChange?;
28
+ private inputFields$;
29
+ FieldSize: typeof FieldSize;
30
+ protected screenSizeService: ScreenSizeService;
31
+ protected changeDetectorRef: ChangeDetectorRef;
32
+ protected dialogService: DialogService;
33
+ service: BaseHttpService<T>;
34
+ formGroup: FormGroup<{}>;
35
+ filledFiltersCount$: Observable<string>;
36
+ private lastFormFields;
37
+ ngOnInit(): void;
38
+ ngOnChanges(changes: SimpleChanges): void;
39
+ ngAfterContentInit(): void;
40
+ protected openFilter(): void;
41
+ protected openSearch(): void;
42
+ writeValue(data: FilterValueType): void;
43
+ registerOnChange(fn: (value: FilterValueType | undefined) => void): void;
44
+ registerOnTouched(fn: () => void): void;
45
+ setDisabledState?(isDisabled: boolean): void;
46
+ submitValue(): void;
47
+ setFilterValues(dialogFormGroup: FormGroup): void;
48
+ clear(): void;
49
+ private convertFilter;
50
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterComponent<any>, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent<any>, "v-filter", never, { "fields": { "alias": "fields"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "title": { "alias": "title"; "required": false; }; "fulltextFieldName": { "alias": "fulltextFieldName"; "required": false; }; "showFulltext": { "alias": "showFulltext"; "required": false; }; "showFilters": { "alias": "showFilters"; "required": false; }; "autoBind": { "alias": "autoBind"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; }, {}, ["fieldDeclarations"], ["v-action-button-group"], true, never>;
52
+ }
53
+ export {};
@@ -0,0 +1,2 @@
1
+ import { FormGroup } from '@angular/forms';
2
+ export declare function getFilledControlCount(formGroup: FormGroup): number;
@@ -1,2 +1,2 @@
1
- export * from './filter.component';
2
- export * from './directives/filter-field.directive';
1
+ export * from './filter.component';
2
+ export * from './directives/filter-field.directive';
@@ -0,0 +1,28 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { DatasourceType, FilterEvent, LazyLoadEvent } from '@verisoft/core';
3
+ import { BaseFormInputComponent, FieldSizeType, GenericFieldCore, GenericFieldType, GenericFieldTypeType } from '@verisoft/ui-core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class GenericFieldComponent<T> extends BaseFormInputComponent implements GenericFieldCore<T> {
6
+ type?: GenericFieldTypeType;
7
+ floatLabel?: boolean;
8
+ optionLabel: string | undefined;
9
+ optionValue: string | undefined;
10
+ options: T[] | undefined;
11
+ size?: FieldSizeType;
12
+ loading: boolean;
13
+ lazy: boolean;
14
+ filter: boolean;
15
+ datasource?: DatasourceType<T>;
16
+ filterField?: string;
17
+ showFilter?: boolean;
18
+ localSearch?: boolean;
19
+ changed: EventEmitter<any>;
20
+ showed: EventEmitter<any>;
21
+ cleared: EventEmitter<any>;
22
+ lazyLoad: EventEmitter<LazyLoadEvent>;
23
+ filtered: EventEmitter<FilterEvent>;
24
+ fieldTypes: typeof GenericFieldType;
25
+ icons: import("@verisoft/ui-core").CommonIcons;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<GenericFieldComponent<any>, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<GenericFieldComponent<any>, "v-generic-field", never, { "type": { "alias": "type"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "options": { "alias": "options"; "required": false; }; "size": { "alias": "size"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "filterField": { "alias": "filterField"; "required": false; }; "showFilter": { "alias": "showFilter"; "required": false; }; "localSearch": { "alias": "localSearch"; "required": false; }; }, { "changed": "changed"; "showed": "showed"; "cleared": "cleared"; "lazyLoad": "lazyLoad"; "filtered": "filtered"; }, never, never, true, never>;
28
+ }
@@ -1 +1 @@
1
- export * from './generic-field.component';
1
+ export * from './generic-field.component';
@@ -0,0 +1,15 @@
1
+ import { OnChanges, SimpleChanges } from '@angular/core';
2
+ import { UntypedFormGroup } from '@angular/forms';
3
+ import { GenericFieldDefinition } from '@verisoft/ui-core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class GenericFormComponent implements OnChanges {
6
+ formGroup?: UntypedFormGroup;
7
+ fields?: GenericFieldDefinition[];
8
+ columns?: number;
9
+ showAsRow: boolean;
10
+ formGroupComputed: UntypedFormGroup;
11
+ columnClass?: string;
12
+ ngOnChanges(changes: SimpleChanges): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<GenericFormComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<GenericFormComponent, "v-generic-form", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "showAsRow": { "alias": "showAsRow"; "required": false; }; }, {}, never, never, true, never>;
15
+ }
@@ -0,0 +1,4 @@
1
+ import { UntypedFormGroup } from '@angular/forms';
2
+ import { GenericFieldDefinition } from '@verisoft/ui-core';
3
+ export declare function generateFormGroup(fields: GenericFieldDefinition[] | undefined, lastGroupValue: UntypedFormGroup | undefined, inputGroup: UntypedFormGroup | undefined, inputGroupChanged?: boolean): UntypedFormGroup;
4
+ export declare function getColumnClass(value?: number): string | undefined;
@@ -1,2 +1,2 @@
1
- export * from './generic-form.component';
2
- export * from './generic-form.model';
1
+ export * from './generic-form.component';
2
+ export * from './generic-form.model';
@@ -1,6 +1,6 @@
1
- export * from './action-button-group';
2
- export * from './filter';
3
- export * from './feature-list';
4
- export * from './generic-field';
5
- export * from './generic-form';
6
- export * from './dynamic-component';
1
+ export * from './action-button-group';
2
+ export * from './filter';
3
+ export * from './feature-list';
4
+ export * from './generic-field';
5
+ export * from './generic-form';
6
+ export * from './dynamic-component';
@@ -1,2 +1,2 @@
1
- export * from './side-menu.component';
2
- export * from './side-menu.module';
1
+ export * from './side-menu.component';
2
+ export * from './side-menu.module';
@@ -0,0 +1,15 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { MenuItem, SideMenuCore, SideMenuService } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SideMenuComponent implements SideMenuCore {
5
+ menuService: SideMenuService;
6
+ items: MenuItem[];
7
+ logoUrl: string;
8
+ userName: string;
9
+ userRole: any | any[] | undefined;
10
+ minimalized: EventEmitter<boolean>;
11
+ itemSelected: EventEmitter<MenuItem>;
12
+ icons: import("@verisoft/ui-core").CommonIcons;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<SideMenuComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<SideMenuComponent, "v-side-menu", never, { "items": { "alias": "items"; "required": false; }; "logoUrl": { "alias": "logoUrl"; "required": false; }; "userName": { "alias": "userName"; "required": false; }; "userRole": { "alias": "userRole"; "required": false; }; }, { "minimalized": "minimalized"; "itemSelected": "itemSelected"; }, never, never, true, never>;
15
+ }
@@ -0,0 +1,12 @@
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import { MenuItem, SideMenuModuleConfig, SideMenuProviderService, UnsubscribeComponent } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SideMenuModule extends UnsubscribeComponent {
5
+ private readonly service;
6
+ constructor(service: SideMenuProviderService);
7
+ static forRoot(config?: SideMenuModuleConfig): ModuleWithProviders<SideMenuModule>;
8
+ static forChild(menu: MenuItem[]): ModuleWithProviders<SideMenuModule>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SideMenuModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SideMenuModule, never, never, never>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<SideMenuModule>;
12
+ }
@@ -1,2 +1,2 @@
1
- export * from './services/snackbar.service';
2
- export * from './snackbar.component';
1
+ export * from './services/snackbar.service';
2
+ export * from './snackbar.component';
@@ -0,0 +1,18 @@
1
+ import { Overlay } from '@angular/cdk/overlay';
2
+ import { Injector } from '@angular/core';
3
+ import { TranslateService } from '@ngx-translate/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SnackbarService {
6
+ private overlay;
7
+ private translate;
8
+ private injector;
9
+ constructor(overlay: Overlay, translate: TranslateService, injector: Injector);
10
+ showSuccess(message: string, icon?: string): void;
11
+ showInfo(message: string, icon?: string): void;
12
+ showWarn(message: string, icon?: string): void;
13
+ showError(message: string, icon?: string): void;
14
+ private showToast;
15
+ private createInjector;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<SnackbarService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<SnackbarService>;
18
+ }
@@ -0,0 +1,18 @@
1
+ import { SnackbarCore } from '@verisoft/ui-core';
2
+ import { SnackbarConfig } from './snackbar.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SnackbarComponent implements SnackbarCore {
5
+ config: SnackbarConfig;
6
+ message: string;
7
+ icon: string;
8
+ closeLabel: string;
9
+ color: "error" | "neutral" | "primary" | "success" | "warning";
10
+ gravity: "bottom" | "top";
11
+ position: "center" | "left" | "right";
12
+ time: number;
13
+ type: "bold" | "subtle";
14
+ icons: import("@verisoft/ui-core").CommonIcons;
15
+ constructor(config: SnackbarConfig);
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<SnackbarComponent, [{ optional: true; }]>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<SnackbarComponent, "v-snackbar", never, { "message": { "alias": "message"; "required": true; }; "icon": { "alias": "icon"; "required": false; }; "closeLabel": { "alias": "closeLabel"; "required": false; }; "color": { "alias": "color"; "required": false; }; "gravity": { "alias": "gravity"; "required": false; }; "position": { "alias": "position"; "required": false; }; "time": { "alias": "time"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
18
+ }
@@ -1,10 +1,10 @@
1
- export interface SnackbarConfig {
2
- message: string;
3
- icon?: string;
4
- closeLabel?: string;
5
- color?: "error" | "neutral" | "primary" | "success" | "warning";
6
- gravity?: "bottom" | "top";
7
- position?: "center" | "left" | "right";
8
- time?: number;
9
- type?: "bold" | "subtle";
10
- }
1
+ export interface SnackbarConfig {
2
+ message: string;
3
+ icon?: string;
4
+ closeLabel?: string;
5
+ color?: "error" | "neutral" | "primary" | "success" | "warning";
6
+ gravity?: "bottom" | "top";
7
+ position?: "center" | "left" | "right";
8
+ time?: number;
9
+ type?: "bold" | "subtle";
10
+ }
@@ -0,0 +1 @@
1
+ export * from './stepper.component';
@@ -0,0 +1,20 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { StepperCore, StepperItem, FieldSizeType, LayoutTypeType } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class StepperComponent implements StepperCore, OnInit {
5
+ items: StepperItem[];
6
+ size: FieldSizeType | undefined;
7
+ icon: string;
8
+ prefix: string;
9
+ annotation: string;
10
+ label: string;
11
+ layout: LayoutTypeType;
12
+ activeIndexChange: EventEmitter<number>;
13
+ steps: number;
14
+ currentStep: number;
15
+ ngOnInit(): void;
16
+ previousStep(): void;
17
+ nextStep(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "v-stepper", never, { "items": { "alias": "items"; "required": false; }; "size": { "alias": "size"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "annotation": { "alias": "annotation"; "required": false; }; "label": { "alias": "label"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; }, { "activeIndexChange": "activeIndexChange"; }, never, never, true, never>;
20
+ }
@@ -0,0 +1 @@
1
+ export * from './switch.component';
@@ -0,0 +1,12 @@
1
+ import { NgControl } from "@angular/forms";
2
+ import { SwitchCore, BaseFormInputComponent, FieldSizeType } from "@verisoft/ui-core";
3
+ import * as i0 from "@angular/core";
4
+ export declare class SwitchComponent extends BaseFormInputComponent implements SwitchCore {
5
+ size: FieldSizeType;
6
+ noLabel: boolean;
7
+ name: string;
8
+ icons: import("@verisoft/ui-core").CommonIcons;
9
+ constructor(ngControl: NgControl);
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, [{ optional: true; self: true; }]>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "v-switch", never, { "size": { "alias": "size"; "required": false; }; "noLabel": { "alias": "noLabel"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, true, never>;
12
+ }
@@ -1,3 +1,3 @@
1
- export * from './tab-view.component';
2
- export * from './tab-view-item.component';
3
- export * from './tab-view.module';
1
+ export * from './tab-view.component';
2
+ export * from './tab-view-item.component';
3
+ export * from './tab-view.module';
@@ -0,0 +1,14 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { TabViewItemCore } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TabViewItemComponent implements TabViewItemCore {
5
+ id?: string;
6
+ index?: number;
7
+ disabled: boolean;
8
+ title: string;
9
+ content?: string;
10
+ url?: string;
11
+ contentTemplate: TemplateRef<any>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabViewItemComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabViewItemComponent, "v-tab-view-item", never, { "id": { "alias": "id"; "required": false; }; "index": { "alias": "index"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; "content": { "alias": "content"; "required": false; }; "url": { "alias": "url"; "required": false; }; }, {}, never, ["*"], false, never>;
14
+ }
@@ -0,0 +1,19 @@
1
+ import { AfterContentInit, EventEmitter, QueryList } from '@angular/core';
2
+ import { TabViewItemCore } from '@verisoft/ui-core';
3
+ import { TabViewItemComponent } from './tab-view-item.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TabViewComponent implements AfterContentInit {
6
+ tabs: QueryList<TabViewItemComponent>;
7
+ highlight: boolean;
8
+ useRouting: boolean;
9
+ items: TabViewItemCore[];
10
+ activeIndex: number;
11
+ activeIndexChange: EventEmitter<number>;
12
+ private readonly cd;
13
+ ngAfterContentInit(): void;
14
+ initTabs(): void;
15
+ changeTabIndex(index: number): void;
16
+ setTabActive(options: TabViewItemComponent[]): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabViewComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabViewComponent, "v-tab-view", never, { "highlight": { "alias": "highlight"; "required": false; }; "useRouting": { "alias": "useRouting"; "required": false; }; "items": { "alias": "items"; "required": false; }; "activeIndex": { "alias": "activeIndex"; "required": false; }; }, { "activeIndexChange": "activeIndexChange"; }, ["tabs"], never, false, never>;
19
+ }