@verisoft/ui-govcz 18.6.3 → 18.6.5

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 (410) hide show
  1. package/esm2022/index.mjs +2 -0
  2. package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +34 -0
  3. package/esm2022/lib/components/breadcrumb/index.mjs +2 -0
  4. package/esm2022/lib/components/button/button.component.mjs +87 -0
  5. package/esm2022/lib/components/button/index.mjs +2 -0
  6. package/esm2022/lib/components/calendar/calendar.component.mjs +87 -0
  7. package/esm2022/lib/components/calendar/index.mjs +2 -0
  8. package/esm2022/lib/components/checkbox/checkbox.component.mjs +62 -0
  9. package/esm2022/lib/components/checkbox/index.mjs +2 -0
  10. package/esm2022/lib/components/confirm-dialog/confirm-dialog.component.mjs +72 -0
  11. package/esm2022/lib/components/confirm-dialog/index.mjs +2 -0
  12. package/esm2022/lib/components/dropdown/dropdown-item.component.mjs +14 -0
  13. package/esm2022/lib/components/dropdown/dropdown.component.mjs +280 -0
  14. package/esm2022/lib/components/dropdown/dropdown.model.mjs +2 -0
  15. package/esm2022/lib/components/dropdown/index.mjs +2 -0
  16. package/esm2022/lib/components/errors/error.component.mjs +34 -0
  17. package/esm2022/lib/components/errors/index.mjs +2 -0
  18. package/esm2022/lib/components/form-field/form-field.component.mjs +92 -0
  19. package/esm2022/lib/components/form-field/index.mjs +2 -0
  20. package/esm2022/lib/components/header/header.component.mjs +85 -0
  21. package/esm2022/lib/components/header/index.mjs +2 -0
  22. package/esm2022/lib/components/index.mjs +34 -0
  23. package/esm2022/lib/components/input-group/index.mjs +2 -0
  24. package/esm2022/lib/components/input-group/input-group.component.mjs +89 -0
  25. package/esm2022/lib/components/loader/index.mjs +2 -0
  26. package/esm2022/lib/components/loader/loader.component.mjs +34 -0
  27. package/esm2022/lib/components/multiselect/index.mjs +2 -0
  28. package/esm2022/lib/components/multiselect/multiselect.component.mjs +121 -0
  29. package/esm2022/lib/components/number-input/index.mjs +2 -0
  30. package/esm2022/lib/components/number-input/number-input.component.mjs +104 -0
  31. package/esm2022/lib/components/page-header/index.mjs +2 -0
  32. package/esm2022/lib/components/page-header/page-header.component.mjs +28 -0
  33. package/esm2022/lib/components/password/index.mjs +2 -0
  34. package/esm2022/lib/components/password/password.component.mjs +94 -0
  35. package/esm2022/lib/components/radiobutton/index.mjs +2 -0
  36. package/esm2022/lib/components/radiobutton/radiobutton.component.mjs +50 -0
  37. package/esm2022/lib/components/search/index.mjs +2 -0
  38. package/esm2022/lib/components/search/search.component.mjs +40 -0
  39. package/esm2022/lib/components/section/index.mjs +2 -0
  40. package/esm2022/lib/components/section/section.component.mjs +70 -0
  41. package/esm2022/lib/components/shared-components/action-button-group/action-button-group.component.mjs +97 -0
  42. package/esm2022/lib/components/shared-components/action-button-group/components/action-button/action-button.component.mjs +64 -0
  43. package/esm2022/lib/components/shared-components/action-button-group/index.mjs +3 -0
  44. package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.mjs +91 -0
  45. package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component.component.mjs +42 -0
  46. package/esm2022/lib/components/shared-components/dynamic-component/index.mjs +3 -0
  47. package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-column.directive.mjs +43 -0
  48. package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.mjs +16 -0
  49. package/esm2022/lib/components/shared-components/feature-list/feature-list-filter.pipe.mjs +24 -0
  50. package/esm2022/lib/components/shared-components/feature-list/feature-list-page.component.mjs +43 -0
  51. package/esm2022/lib/components/shared-components/feature-list/feature-list-page.model.mjs +16 -0
  52. package/esm2022/lib/components/shared-components/feature-list/feature-list.component.mjs +285 -0
  53. package/esm2022/lib/components/shared-components/feature-list/index.mjs +6 -0
  54. package/esm2022/lib/components/shared-components/filter/directives/filter-field.directive.mjs +53 -0
  55. package/esm2022/lib/components/shared-components/filter/filter.component.mjs +195 -0
  56. package/esm2022/lib/components/shared-components/filter/filter.model.mjs +16 -0
  57. package/esm2022/lib/components/shared-components/filter/index.mjs +3 -0
  58. package/esm2022/lib/components/shared-components/generic-field/generic-field.component.mjs +98 -0
  59. package/esm2022/lib/components/shared-components/generic-field/index.mjs +2 -0
  60. package/esm2022/lib/components/shared-components/generic-form/generic-form.component.mjs +46 -0
  61. package/esm2022/lib/components/shared-components/generic-form/generic-form.model.mjs +50 -0
  62. package/esm2022/lib/components/shared-components/generic-form/index.mjs +3 -0
  63. package/esm2022/lib/components/shared-components/index.mjs +7 -0
  64. package/esm2022/lib/components/side-menu/index.mjs +3 -0
  65. package/esm2022/lib/components/side-menu/side-menu.component.mjs +48 -0
  66. package/esm2022/lib/components/side-menu/side-menu.module.mjs +73 -0
  67. package/esm2022/lib/components/snackbar/index.mjs +3 -0
  68. package/esm2022/lib/components/snackbar/services/snackbar.service.mjs +75 -0
  69. package/esm2022/lib/components/snackbar/snackbar.component.mjs +61 -0
  70. package/esm2022/lib/components/snackbar/snackbar.model.mjs +2 -0
  71. package/esm2022/lib/components/stepper/index.mjs +2 -0
  72. package/esm2022/lib/components/stepper/stepper.component.mjs +66 -0
  73. package/esm2022/lib/components/switch/index.mjs +2 -0
  74. package/esm2022/lib/components/switch/switch.component.mjs +45 -0
  75. package/esm2022/lib/components/tab-view/index.mjs +4 -0
  76. package/esm2022/lib/components/tab-view/tab-view-item.component.mjs +41 -0
  77. package/esm2022/lib/components/tab-view/tab-view.component.mjs +56 -0
  78. package/esm2022/lib/components/tab-view/tab-view.module.mjs +41 -0
  79. package/esm2022/lib/components/table/index.mjs +2 -0
  80. package/esm2022/lib/components/table/table-pagination-info.component.mjs +32 -0
  81. package/esm2022/lib/components/table/table.component.mjs +359 -0
  82. package/esm2022/lib/components/table/table.model.mjs +14 -0
  83. package/esm2022/lib/components/textarea/index.mjs +2 -0
  84. package/esm2022/lib/components/textarea/textarea.component.mjs +95 -0
  85. package/esm2022/lib/components/textfield/index.mjs +2 -0
  86. package/esm2022/lib/components/textfield/textfield.component.mjs +124 -0
  87. package/esm2022/lib/components/tooltip/index.mjs +2 -0
  88. package/esm2022/lib/components/tooltip/tooltip.component.mjs +66 -0
  89. package/esm2022/lib/components/tristatecheckbox/index.mjs +2 -0
  90. package/esm2022/lib/components/tristatecheckbox/tristatecheckbox.component.mjs +89 -0
  91. package/esm2022/lib/icons.mjs +35 -0
  92. package/esm2022/lib/index.mjs +6 -0
  93. package/esm2022/lib/init.service.mjs +17 -0
  94. package/esm2022/lib/pages/index.mjs +4 -0
  95. package/esm2022/lib/pages/not-authenticated/index.mjs +2 -0
  96. package/esm2022/lib/pages/not-authenticated/not-authenticated.component.mjs +17 -0
  97. package/esm2022/lib/pages/not-authorized/index.mjs +2 -0
  98. package/esm2022/lib/pages/not-authorized/not-authorized.component.mjs +20 -0
  99. package/esm2022/lib/pages/not-found/index.mjs +2 -0
  100. package/esm2022/lib/pages/not-found/not-found.component.mjs +20 -0
  101. package/esm2022/lib/pipes/color/color.pipe.mjs +27 -0
  102. package/esm2022/lib/pipes/index.mjs +4 -0
  103. package/esm2022/lib/pipes/multiselect/multiselect-options.pipe.mjs +52 -0
  104. package/esm2022/lib/pipes/size/size.pipe.mjs +23 -0
  105. package/esm2022/verisoft-ui-govcz.mjs +5 -0
  106. package/fesm2022/verisoft-ui-govcz.mjs +3742 -0
  107. package/fesm2022/verisoft-ui-govcz.mjs.map +1 -0
  108. package/index.d.ts +1 -0
  109. package/lib/components/breadcrumb/breadcrumb.component.d.ts +7 -0
  110. package/{src/lib/components/breadcrumb/index.ts → lib/components/breadcrumb/index.d.ts} +1 -1
  111. package/lib/components/button/button.component.d.ts +26 -0
  112. package/lib/components/button/index.d.ts +1 -0
  113. package/lib/components/calendar/calendar.component.d.ts +23 -0
  114. package/lib/components/calendar/index.d.ts +1 -0
  115. package/lib/components/checkbox/checkbox.component.d.ts +15 -0
  116. package/lib/components/checkbox/index.d.ts +1 -0
  117. package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +15 -0
  118. package/{src/lib/components/confirm-dialog/index.ts → lib/components/confirm-dialog/index.d.ts} +1 -1
  119. package/lib/components/dropdown/dropdown-item.component.d.ts +7 -0
  120. package/lib/components/dropdown/dropdown.component.d.ts +65 -0
  121. package/{src/lib/components/dropdown/dropdown.model.ts → lib/components/dropdown/dropdown.model.d.ts} +6 -6
  122. package/{src/lib/components/dropdown/index.ts → lib/components/dropdown/index.d.ts} +1 -1
  123. package/lib/components/errors/error.component.d.ts +14 -0
  124. package/lib/components/errors/index.d.ts +1 -0
  125. package/lib/components/form-field/form-field.component.d.ts +25 -0
  126. package/{src/lib/components/form-field/index.ts → lib/components/form-field/index.d.ts} +1 -1
  127. package/lib/components/header/header.component.d.ts +25 -0
  128. package/lib/components/header/index.d.ts +1 -0
  129. package/{src/lib/components/index.ts → lib/components/index.d.ts} +33 -33
  130. package/lib/components/input-group/index.d.ts +1 -0
  131. package/lib/components/input-group/input-group.component.d.ts +24 -0
  132. package/lib/components/loader/index.d.ts +1 -0
  133. package/lib/components/loader/loader.component.d.ts +8 -0
  134. package/lib/components/multiselect/index.d.ts +1 -0
  135. package/lib/components/multiselect/multiselect.component.d.ts +35 -0
  136. package/lib/components/number-input/index.d.ts +1 -0
  137. package/lib/components/number-input/number-input.component.d.ts +29 -0
  138. package/lib/components/page-header/index.d.ts +1 -0
  139. package/lib/components/page-header/page-header.component.d.ts +9 -0
  140. package/{src/lib/components/password/index.ts → lib/components/password/index.d.ts} +1 -1
  141. package/lib/components/password/password.component.d.ts +23 -0
  142. package/lib/components/radiobutton/index.d.ts +1 -0
  143. package/lib/components/radiobutton/radiobutton.component.d.ts +12 -0
  144. package/lib/components/search/index.d.ts +1 -0
  145. package/lib/components/search/search.component.d.ts +14 -0
  146. package/lib/components/section/index.d.ts +1 -0
  147. package/lib/components/section/section.component.d.ts +18 -0
  148. package/lib/components/shared-components/action-button-group/action-button-group.component.d.ts +29 -0
  149. package/lib/components/shared-components/action-button-group/components/action-button/action-button.component.d.ts +24 -0
  150. package/{src/lib/components/shared-components/action-button-group/index.ts → lib/components/shared-components/action-button-group/index.d.ts} +2 -2
  151. package/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.d.ts +17 -0
  152. package/lib/components/shared-components/dynamic-component/dynamic-component.component.d.ts +16 -0
  153. package/{src/lib/components/shared-components/dynamic-component/index.ts → lib/components/shared-components/dynamic-component/index.d.ts} +2 -2
  154. package/lib/components/shared-components/feature-list/directives/feature-list-column.directive.d.ts +10 -0
  155. package/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.d.ts +6 -0
  156. package/lib/components/shared-components/feature-list/feature-list-filter.pipe.d.ts +9 -0
  157. package/lib/components/shared-components/feature-list/feature-list-page.component.d.ts +9 -0
  158. package/lib/components/shared-components/feature-list/feature-list-page.model.d.ts +23 -0
  159. package/lib/components/shared-components/feature-list/feature-list.component.d.ts +62 -0
  160. package/{src/lib/components/shared-components/feature-list/index.ts → lib/components/shared-components/feature-list/index.d.ts} +5 -5
  161. package/lib/components/shared-components/filter/directives/filter-field.directive.d.ts +20 -0
  162. package/lib/components/shared-components/filter/filter.component.d.ts +53 -0
  163. package/lib/components/shared-components/filter/filter.model.d.ts +2 -0
  164. package/{src/lib/components/shared-components/filter/index.ts → lib/components/shared-components/filter/index.d.ts} +2 -2
  165. package/lib/components/shared-components/generic-field/generic-field.component.d.ts +28 -0
  166. package/{src/lib/components/shared-components/generic-field/index.ts → lib/components/shared-components/generic-field/index.d.ts} +1 -1
  167. package/lib/components/shared-components/generic-form/generic-form.component.d.ts +15 -0
  168. package/lib/components/shared-components/generic-form/generic-form.model.d.ts +4 -0
  169. package/{src/lib/components/shared-components/generic-form/index.ts → lib/components/shared-components/generic-form/index.d.ts} +2 -2
  170. package/{src/lib/components/shared-components/index.ts → lib/components/shared-components/index.d.ts} +6 -6
  171. package/{src/lib/components/side-menu/index.ts → lib/components/side-menu/index.d.ts} +2 -2
  172. package/lib/components/side-menu/side-menu.component.d.ts +15 -0
  173. package/lib/components/side-menu/side-menu.module.d.ts +12 -0
  174. package/{src/lib/components/snackbar/index.ts → lib/components/snackbar/index.d.ts} +2 -2
  175. package/lib/components/snackbar/services/snackbar.service.d.ts +18 -0
  176. package/lib/components/snackbar/snackbar.component.d.ts +18 -0
  177. package/{src/lib/components/snackbar/snackbar.model.ts → lib/components/snackbar/snackbar.model.d.ts} +10 -10
  178. package/lib/components/stepper/index.d.ts +1 -0
  179. package/lib/components/stepper/stepper.component.d.ts +20 -0
  180. package/lib/components/switch/index.d.ts +1 -0
  181. package/lib/components/switch/switch.component.d.ts +12 -0
  182. package/{src/lib/components/tab-view/index.ts → lib/components/tab-view/index.d.ts} +3 -3
  183. package/lib/components/tab-view/tab-view-item.component.d.ts +14 -0
  184. package/lib/components/tab-view/tab-view.component.d.ts +19 -0
  185. package/lib/components/tab-view/tab-view.module.d.ts +12 -0
  186. package/{src/lib/components/table/index.ts → lib/components/table/index.d.ts} +1 -1
  187. package/lib/components/table/table-pagination-info.component.d.ts +12 -0
  188. package/lib/components/table/table.component.d.ts +91 -0
  189. package/lib/components/table/table.model.d.ts +3 -0
  190. package/lib/components/textarea/index.d.ts +1 -0
  191. package/lib/components/textarea/textarea.component.d.ts +25 -0
  192. package/lib/components/textfield/index.d.ts +1 -0
  193. package/lib/components/textfield/textfield.component.d.ts +28 -0
  194. package/lib/components/tooltip/index.d.ts +1 -0
  195. package/lib/components/tooltip/tooltip.component.d.ts +18 -0
  196. package/{src/lib/components/tristatecheckbox/index.ts → lib/components/tristatecheckbox/index.d.ts} +1 -1
  197. package/lib/components/tristatecheckbox/tristatecheckbox.component.d.ts +27 -0
  198. package/lib/icons.d.ts +2 -0
  199. package/{src/lib/index.ts → lib/index.d.ts} +5 -5
  200. package/lib/init.service.d.ts +6 -0
  201. package/{src/lib/pages/index.ts → lib/pages/index.d.ts} +3 -3
  202. package/{src/lib/pages/not-authenticated/index.ts → lib/pages/not-authenticated/index.d.ts} +1 -1
  203. package/lib/pages/not-authenticated/not-authenticated.component.d.ts +5 -0
  204. package/{src/lib/pages/not-authorized/index.ts → lib/pages/not-authorized/index.d.ts} +1 -1
  205. package/lib/pages/not-authorized/not-authorized.component.d.ts +6 -0
  206. package/{src/lib/pages/not-found/index.ts → lib/pages/not-found/index.d.ts} +1 -1
  207. package/lib/pages/not-found/not-found.component.d.ts +6 -0
  208. package/lib/pipes/color/color.pipe.d.ts +8 -0
  209. package/{src/lib/pipes/index.ts → lib/pipes/index.d.ts} +3 -3
  210. package/lib/pipes/multiselect/multiselect-options.pipe.d.ts +9 -0
  211. package/lib/pipes/size/size.pipe.d.ts +8 -0
  212. package/package.json +38 -23
  213. package/.eslintrc.json +0 -48
  214. package/jest.config.ts +0 -21
  215. package/ng-package.json +0 -15
  216. package/project.json +0 -49
  217. package/src/assets/main.css +0 -18
  218. package/src/config.d.ts +0 -10
  219. package/src/index.ts +0 -1
  220. package/src/lib/components/breadcrumb/breadcrumb.component.html +0 -23
  221. package/src/lib/components/breadcrumb/breadcrumb.component.scss +0 -0
  222. package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +0 -21
  223. package/src/lib/components/breadcrumb/breadcrumb.component.ts +0 -30
  224. package/src/lib/components/button/button.component.html +0 -26
  225. package/src/lib/components/button/button.component.scss +0 -0
  226. package/src/lib/components/button/button.component.ts +0 -72
  227. package/src/lib/components/button/index.ts +0 -1
  228. package/src/lib/components/calendar/calendar.component.html +0 -28
  229. package/src/lib/components/calendar/calendar.component.scss +0 -0
  230. package/src/lib/components/calendar/calendar.component.ts +0 -79
  231. package/src/lib/components/calendar/index.ts +0 -1
  232. package/src/lib/components/checkbox/checkbox.component.html +0 -23
  233. package/src/lib/components/checkbox/checkbox.component.scss +0 -0
  234. package/src/lib/components/checkbox/checkbox.component.ts +0 -62
  235. package/src/lib/components/checkbox/index.ts +0 -1
  236. package/src/lib/components/confirm-dialog/confirm-dialog.component.html +0 -50
  237. package/src/lib/components/confirm-dialog/confirm-dialog.component.scss +0 -4
  238. package/src/lib/components/confirm-dialog/confirm-dialog.component.ts +0 -80
  239. package/src/lib/components/dropdown/dropdown-item.component.html +0 -8
  240. package/src/lib/components/dropdown/dropdown-item.component.ts +0 -18
  241. package/src/lib/components/dropdown/dropdown.component.html +0 -90
  242. package/src/lib/components/dropdown/dropdown.component.scss +0 -108
  243. package/src/lib/components/dropdown/dropdown.component.spec.ts +0 -21
  244. package/src/lib/components/dropdown/dropdown.component.ts +0 -297
  245. package/src/lib/components/errors/error.component.html +0 -11
  246. package/src/lib/components/errors/error.component.scss +0 -0
  247. package/src/lib/components/errors/error.component.spec.ts +0 -19
  248. package/src/lib/components/errors/error.component.ts +0 -30
  249. package/src/lib/components/errors/index.ts +0 -1
  250. package/src/lib/components/form-field/form-field.component.html +0 -14
  251. package/src/lib/components/form-field/form-field.component.scss +0 -0
  252. package/src/lib/components/form-field/form-field.component.spec.ts +0 -21
  253. package/src/lib/components/form-field/form-field.component.ts +0 -78
  254. package/src/lib/components/header/header.component.html +0 -122
  255. package/src/lib/components/header/header.component.scss +0 -0
  256. package/src/lib/components/header/header.component.ts +0 -91
  257. package/src/lib/components/header/index.ts +0 -1
  258. package/src/lib/components/input-group/index.ts +0 -1
  259. package/src/lib/components/input-group/input-group.component.html +0 -41
  260. package/src/lib/components/input-group/input-group.component.scss +0 -0
  261. package/src/lib/components/input-group/input-group.component.ts +0 -77
  262. package/src/lib/components/loader/index.ts +0 -1
  263. package/src/lib/components/loader/loader.component.html +0 -7
  264. package/src/lib/components/loader/loader.component.scss +0 -0
  265. package/src/lib/components/loader/loader.component.spec.ts +0 -21
  266. package/src/lib/components/loader/loader.component.ts +0 -33
  267. package/src/lib/components/multiselect/index.ts +0 -1
  268. package/src/lib/components/multiselect/multiselect.component.html +0 -21
  269. package/src/lib/components/multiselect/multiselect.component.scss +0 -0
  270. package/src/lib/components/multiselect/multiselect.component.spec.ts +0 -21
  271. package/src/lib/components/multiselect/multiselect.component.ts +0 -119
  272. package/src/lib/components/number-input/index.ts +0 -1
  273. package/src/lib/components/number-input/number-input.component.html +0 -48
  274. package/src/lib/components/number-input/number-input.component.scss +0 -0
  275. package/src/lib/components/number-input/number-input.component.ts +0 -82
  276. package/src/lib/components/page-header/index.ts +0 -1
  277. package/src/lib/components/page-header/page-header.component.html +0 -3
  278. package/src/lib/components/page-header/page-header.component.scss +0 -11
  279. package/src/lib/components/page-header/page-header.component.spec.ts +0 -21
  280. package/src/lib/components/page-header/page-header.component.ts +0 -29
  281. package/src/lib/components/password/password.component.html +0 -31
  282. package/src/lib/components/password/password.component.scss +0 -0
  283. package/src/lib/components/password/password.component.spec.ts +0 -21
  284. package/src/lib/components/password/password.component.ts +0 -85
  285. package/src/lib/components/radiobutton/index.ts +0 -1
  286. package/src/lib/components/radiobutton/radiobutton.component.html +0 -23
  287. package/src/lib/components/radiobutton/radiobutton.component.scss +0 -0
  288. package/src/lib/components/radiobutton/radiobutton.component.ts +0 -58
  289. package/src/lib/components/search/index.ts +0 -1
  290. package/src/lib/components/search/search.component.html +0 -23
  291. package/src/lib/components/search/search.component.scss +0 -0
  292. package/src/lib/components/search/search.component.ts +0 -47
  293. package/src/lib/components/section/index.ts +0 -1
  294. package/src/lib/components/section/section.component.html +0 -26
  295. package/src/lib/components/section/section.component.scss +0 -0
  296. package/src/lib/components/section/section.component.ts +0 -57
  297. package/src/lib/components/shared-components/action-button-group/action-button-group.component.html +0 -27
  298. package/src/lib/components/shared-components/action-button-group/action-button-group.component.scss +0 -0
  299. package/src/lib/components/shared-components/action-button-group/action-button-group.component.spec.ts +0 -21
  300. package/src/lib/components/shared-components/action-button-group/action-button-group.component.ts +0 -114
  301. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.html +0 -11
  302. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.scss +0 -0
  303. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.spec.ts +0 -21
  304. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.ts +0 -71
  305. package/src/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.ts +0 -142
  306. package/src/lib/components/shared-components/dynamic-component/dynamic-component.component.ts +0 -56
  307. package/src/lib/components/shared-components/feature-list/directives/feature-list-column.directive.ts +0 -32
  308. package/src/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.ts +0 -8
  309. package/src/lib/components/shared-components/feature-list/feature-list-filter.pipe.ts +0 -21
  310. package/src/lib/components/shared-components/feature-list/feature-list-page.component.ts +0 -31
  311. package/src/lib/components/shared-components/feature-list/feature-list-page.model.ts +0 -42
  312. package/src/lib/components/shared-components/feature-list/feature-list.component.html +0 -59
  313. package/src/lib/components/shared-components/feature-list/feature-list.component.scss +0 -10
  314. package/src/lib/components/shared-components/feature-list/feature-list.component.ts +0 -342
  315. package/src/lib/components/shared-components/filter/directives/filter-field.directive.ts +0 -35
  316. package/src/lib/components/shared-components/filter/filter.component.html +0 -68
  317. package/src/lib/components/shared-components/filter/filter.component.scss +0 -0
  318. package/src/lib/components/shared-components/filter/filter.component.spec.ts +0 -21
  319. package/src/lib/components/shared-components/filter/filter.component.stories.ts +0 -23
  320. package/src/lib/components/shared-components/filter/filter.component.ts +0 -284
  321. package/src/lib/components/shared-components/filter/filter.model.ts +0 -18
  322. package/src/lib/components/shared-components/generic-field/generic-field.component.html +0 -97
  323. package/src/lib/components/shared-components/generic-field/generic-field.component.spec.ts +0 -21
  324. package/src/lib/components/shared-components/generic-field/generic-field.component.ts +0 -94
  325. package/src/lib/components/shared-components/generic-form/generic-form.component.html +0 -46
  326. package/src/lib/components/shared-components/generic-form/generic-form.component.spec.ts +0 -21
  327. package/src/lib/components/shared-components/generic-form/generic-form.component.ts +0 -57
  328. package/src/lib/components/shared-components/generic-form/generic-form.model.spec.ts +0 -82
  329. package/src/lib/components/shared-components/generic-form/generic-form.model.ts +0 -68
  330. package/src/lib/components/side-menu/side-menu.component.html +0 -25
  331. package/src/lib/components/side-menu/side-menu.component.scss +0 -23
  332. package/src/lib/components/side-menu/side-menu.component.ts +0 -42
  333. package/src/lib/components/side-menu/side-menu.module.ts +0 -64
  334. package/src/lib/components/sidemenu/index.ts +0 -2
  335. package/src/lib/components/snackbar/services/snackbar.service.ts +0 -73
  336. package/src/lib/components/snackbar/snackbar.component.html +0 -14
  337. package/src/lib/components/snackbar/snackbar.component.scss +0 -0
  338. package/src/lib/components/snackbar/snackbar.component.spec.ts +0 -21
  339. package/src/lib/components/snackbar/snackbar.component.ts +0 -45
  340. package/src/lib/components/stepper/index.ts +0 -1
  341. package/src/lib/components/stepper/stepper.component.html +0 -35
  342. package/src/lib/components/stepper/stepper.component.scss +0 -9
  343. package/src/lib/components/stepper/stepper.component.ts +0 -61
  344. package/src/lib/components/switch/index.ts +0 -1
  345. package/src/lib/components/switch/switch.component.html +0 -16
  346. package/src/lib/components/switch/switch.component.scss +0 -0
  347. package/src/lib/components/switch/switch.component.ts +0 -37
  348. package/src/lib/components/tab-view/tab-view-item.component.ts +0 -23
  349. package/src/lib/components/tab-view/tab-view.component.html +0 -51
  350. package/src/lib/components/tab-view/tab-view.component.scss +0 -43
  351. package/src/lib/components/tab-view/tab-view.component.ts +0 -61
  352. package/src/lib/components/tab-view/tab-view.module.ts +0 -25
  353. package/src/lib/components/table/table-pagination-info.component.html +0 -9
  354. package/src/lib/components/table/table-pagination-info.component.ts +0 -22
  355. package/src/lib/components/table/table.component.html +0 -198
  356. package/src/lib/components/table/table.component.scss +0 -193
  357. package/src/lib/components/table/table.component.ts +0 -387
  358. package/src/lib/components/table/table.model.ts +0 -17
  359. package/src/lib/components/table/table.models.ts +0 -12
  360. package/src/lib/components/textarea/index.ts +0 -1
  361. package/src/lib/components/textarea/textarea.component.html +0 -50
  362. package/src/lib/components/textarea/textarea.component.scss +0 -0
  363. package/src/lib/components/textarea/textarea.component.ts +0 -78
  364. package/src/lib/components/textfield/index.ts +0 -1
  365. package/src/lib/components/textfield/textfield.component.html +0 -56
  366. package/src/lib/components/textfield/textfield.component.scss +0 -0
  367. package/src/lib/components/textfield/textfield.component.ts +0 -114
  368. package/src/lib/components/tooltip/index.ts +0 -1
  369. package/src/lib/components/tooltip/tooltip.component.html +0 -10
  370. package/src/lib/components/tooltip/tooltip.component.scss +0 -0
  371. package/src/lib/components/tooltip/tooltip.component.ts +0 -57
  372. package/src/lib/components/tristatecheckbox/tristatecheckbox.component.html +0 -23
  373. package/src/lib/components/tristatecheckbox/tristatecheckbox.component.scss +0 -0
  374. package/src/lib/components/tristatecheckbox/tristatecheckbox.component.ts +0 -103
  375. package/src/lib/icons.ts +0 -36
  376. package/src/lib/init.service.ts +0 -11
  377. package/src/lib/interceptors/http-error-message.interceptor.ts +0 -45
  378. package/src/lib/pages/bad-request-page/bad-request-page.component.html +0 -5
  379. package/src/lib/pages/bad-request-page/bad-request-page.component.scss +0 -0
  380. package/src/lib/pages/bad-request-page/bad-request-page.component.ts +0 -15
  381. package/src/lib/pages/error-page/error-page.component.html +0 -5
  382. package/src/lib/pages/error-page/error-page.component.scss +0 -0
  383. package/src/lib/pages/error-page/error-page.component.ts +0 -32
  384. package/src/lib/pages/error-page/error-page.constants.ts +0 -19
  385. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.html +0 -5
  386. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.scss +0 -0
  387. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.ts +0 -16
  388. package/src/lib/pages/not-authenticated/not-authenticated.component.html +0 -5
  389. package/src/lib/pages/not-authenticated/not-authenticated.component.ts +0 -14
  390. package/src/lib/pages/not-authorized/not-authorized.component.html +0 -5
  391. package/src/lib/pages/not-authorized/not-authorized.component.ts +0 -18
  392. package/src/lib/pages/not-found/not-found.component.html +0 -5
  393. package/src/lib/pages/not-found/not-found.component.ts +0 -18
  394. package/src/lib/pages/not-found-page/not-found-page.component.html +0 -6
  395. package/src/lib/pages/not-found-page/not-found-page.component.scss +0 -0
  396. package/src/lib/pages/not-found-page/not-found-page.component.ts +0 -16
  397. package/src/lib/pipes/color/color.pipe.ts +0 -24
  398. package/src/lib/pipes/multiselect/multiselect-options.pipe.ts +0 -61
  399. package/src/lib/pipes/size/size.pipe.ts +0 -20
  400. package/src/test-setup.ts +0 -8
  401. package/tsconfig.json +0 -30
  402. package/tsconfig.lib.json +0 -17
  403. package/tsconfig.lib.prod.json +0 -9
  404. package/tsconfig.spec.json +0 -16
  405. /package/{src/sass → sass}/header.css +0 -0
  406. /package/{src/sass → sass}/header.scss +0 -0
  407. /package/{src/sass → sass}/main.scss +0 -0
  408. /package/{src/sass → sass}/scrollbar.scss +0 -0
  409. /package/{src/sass → sass}/sidemenu.css +0 -0
  410. /package/{src/sass → sass}/vendors/_bootstrap.scss +0 -0
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './lib';
@@ -0,0 +1,7 @@
1
+ import { BreadcrumbCoreComponent } from '@verisoft/ui-core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class BreadcrumbComponent extends BreadcrumbCoreComponent {
4
+ icons: import("@verisoft/ui-core").CommonIcons;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "v-breadcrumb", never, {}, {}, never, never, true, never>;
7
+ }
@@ -1 +1 @@
1
- export * from './breadcrumb.component';
1
+ export * from './breadcrumb.component';
@@ -0,0 +1,26 @@
1
+ import { EventEmitter } from "@angular/core";
2
+ import { Params } from "@angular/router";
3
+ import { ButtonEvent, GovButtonCustomEvent } from "@gov-design-system-ce/components";
4
+ import { ButtonCore, IconPositionType, FieldSizeType, ControlSeverityType, GovButtonTypeType } from "@verisoft/ui-core";
5
+ import * as i0 from "@angular/core";
6
+ export declare class ButtonComponent implements ButtonCore {
7
+ label: string | undefined;
8
+ icon: string | undefined;
9
+ badge: string;
10
+ iconPos: IconPositionType;
11
+ disabled: boolean;
12
+ rounded: boolean;
13
+ outlined: boolean;
14
+ raised: boolean;
15
+ routerLink: any[];
16
+ size: FieldSizeType | undefined;
17
+ queryParams: Params;
18
+ severity: ControlSeverityType | undefined;
19
+ type: GovButtonTypeType;
20
+ expanded: boolean;
21
+ name: string;
22
+ click: EventEmitter<any>;
23
+ handleClick(event: GovButtonCustomEvent<ButtonEvent> | MouseEvent): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "v-button", never, { "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "iconPos": { "alias": "iconPos"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "outlined": { "alias": "outlined"; "required": false; }; "raised": { "alias": "raised"; "required": false; }; "routerLink": { "alias": "routerLink"; "required": false; }; "size": { "alias": "size"; "required": false; }; "queryParams": { "alias": "queryParams"; "required": false; }; "severity": { "alias": "severity"; "required": false; }; "type": { "alias": "type"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, { "click": "click"; }, never, never, true, never>;
26
+ }
@@ -0,0 +1 @@
1
+ export * from './button.component';
@@ -0,0 +1,23 @@
1
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
2
+ import { BaseFormInputComponent, CalendarCore, FieldType, FieldSizeType, SlotPositionType } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CalendarComponent extends BaseFormInputComponent implements ControlValueAccessor, CalendarCore {
5
+ icon: string;
6
+ floatLabel: string | undefined;
7
+ maxDate: Date;
8
+ minDate: Date;
9
+ header: string;
10
+ footer: string;
11
+ selectionMode: 'single' | 'multiple' | 'range' | undefined;
12
+ size: FieldSizeType;
13
+ errorSlot: SlotPositionType;
14
+ labelSlot: SlotPositionType;
15
+ messageSlot: SlotPositionType;
16
+ message: string;
17
+ name: string;
18
+ type: FieldType;
19
+ icons: import("@verisoft/ui-core").CommonIcons;
20
+ constructor(ngControl: NgControl);
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, [{ optional: true; self: true; }]>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "v-calendar", never, { "icon": { "alias": "icon"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "header": { "alias": "header"; "required": false; }; "footer": { "alias": "footer"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "size": { "alias": "size"; "required": false; }; "errorSlot": { "alias": "errorSlot"; "required": false; }; "labelSlot": { "alias": "labelSlot"; "required": false; }; "messageSlot": { "alias": "messageSlot"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, true, never>;
23
+ }
@@ -0,0 +1 @@
1
+ export * from './calendar.component';
@@ -0,0 +1,15 @@
1
+ import { ControlValueAccessor, NgControl } from "@angular/forms";
2
+ import { BaseFormInputComponent, CheckboxCore, FieldSizeType } from "@verisoft/ui-core";
3
+ import * as i0 from "@angular/core";
4
+ export declare class CheckboxComponent extends BaseFormInputComponent implements ControlValueAccessor, CheckboxCore {
5
+ size: FieldSizeType;
6
+ value: string;
7
+ name: string;
8
+ indeterminate: boolean;
9
+ noLabel: boolean;
10
+ protected readonly icons: import("@verisoft/ui-core").CommonIcons;
11
+ constructor(ngControl: NgControl);
12
+ id: string;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, [{ optional: true; self: true; }]>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "v-checkbox", never, { "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "noLabel": { "alias": "noLabel"; "required": false; }; }, {}, never, never, true, never>;
15
+ }
@@ -0,0 +1 @@
1
+ export * from './checkbox.component';
@@ -0,0 +1,15 @@
1
+ import { ChangeDetectorRef, OnInit } from '@angular/core';
2
+ import { ConfirmDialogCore, DialogData, DialogService, UnsubscribeComponent } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ConfirmDialogComponent extends UnsubscribeComponent implements OnInit, ConfirmDialogCore {
5
+ private readonly dialogService;
6
+ private readonly cdr;
7
+ constructor(dialogService: DialogService, cdr: ChangeDetectorRef);
8
+ visible: boolean;
9
+ protected closable: boolean;
10
+ data: DialogData;
11
+ ngOnInit(): void;
12
+ protected dialogClick(confirm: boolean): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmDialogComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmDialogComponent, "v-confirm-dialog", never, {}, {}, never, never, true, never>;
15
+ }
@@ -1 +1 @@
1
- export * from './confirm-dialog.component';
1
+ export * from './confirm-dialog.component';
@@ -0,0 +1,7 @@
1
+ import { DropDownItemData } from './dropdown.model';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DropdownItemComponent<T> {
4
+ item: DropDownItemData<T> | undefined;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemComponent<any>, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItemComponent<any>, "v-dropdown-item", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
7
+ }
@@ -0,0 +1,65 @@
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
+ import { ControlValueAccessor, FormControl, NgControl } from '@angular/forms';
3
+ import { FilterEvent, LazyLoadEvent } from '@verisoft/core';
4
+ import { BaseFormInputComponent, DropdownCore, FieldSizeType } from '@verisoft/ui-core';
5
+ import { Subscription } from 'rxjs';
6
+ import { DropDownItemData } from './dropdown.model';
7
+ import * as i0 from "@angular/core";
8
+ export declare class DropdownComponent<T> extends BaseFormInputComponent implements ControlValueAccessor, DropdownCore<T>, OnInit, OnChanges, OnDestroy {
9
+ private changeDetectorRef;
10
+ filterTextField: ElementRef;
11
+ options: T[] | undefined;
12
+ optionLabel: string | undefined;
13
+ optionValue: string | undefined;
14
+ dropdownIcon: string | undefined;
15
+ floatLabel: string | undefined;
16
+ lazy: boolean;
17
+ filter: boolean;
18
+ editable: boolean;
19
+ loading: boolean;
20
+ size: FieldSizeType;
21
+ showFilter: boolean;
22
+ localSearch: boolean;
23
+ forceMinWidth: boolean;
24
+ changed: EventEmitter<any>;
25
+ showed: EventEmitter<any>;
26
+ cleared: EventEmitter<any>;
27
+ lazyLoad: EventEmitter<LazyLoadEvent>;
28
+ filtered: EventEmitter<FilterEvent>;
29
+ opened: boolean;
30
+ icons: import("@verisoft/ui-core").CommonIcons;
31
+ selectedItem: DropDownItemData<T> | undefined;
32
+ filterControl: FormControl<string | null>;
33
+ filterSub: Subscription | undefined;
34
+ dropdownOptions: DropDownItemData<T>[] | undefined;
35
+ private readonly pageSize;
36
+ private lastPage;
37
+ get labelClasses(): {
38
+ disabled: boolean | null | undefined;
39
+ error: boolean | null | undefined;
40
+ };
41
+ get inputClasses(): {
42
+ 'disabled-input': boolean | null | undefined;
43
+ 'error-input': boolean | null | undefined;
44
+ };
45
+ constructor(ngControl: NgControl, changeDetectorRef: ChangeDetectorRef);
46
+ ngOnInit(): void;
47
+ writeValue(value: any): void;
48
+ ngOnChanges(changes: SimpleChanges): void;
49
+ private convertToOptions;
50
+ ngOnDestroy(): void;
51
+ toggleDropdown(): void;
52
+ protected clearSelection(event: MouseEvent): void;
53
+ private openDropdown;
54
+ selectItem(option: DropDownItemData<T> | undefined, emitChange: boolean): void;
55
+ onDocumentClick(event: MouseEvent): void;
56
+ onScroll(index: number): void;
57
+ onKeyDown(event: KeyboardEvent): void;
58
+ private loadDataForIndex;
59
+ private setFilterFocus;
60
+ private closeDropdown;
61
+ private filterOptions;
62
+ private createFilterObject;
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent<any>, [{ optional: true; self: true; }, null]>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent<any>, "v-dropdown", never, { "options": { "alias": "options"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "dropdownIcon": { "alias": "dropdownIcon"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "showFilter": { "alias": "showFilter"; "required": false; }; "localSearch": { "alias": "localSearch"; "required": false; }; "forceMinWidth": { "alias": "forceMinWidth"; "required": false; }; }, { "changed": "changed"; "showed": "showed"; "cleared": "cleared"; "lazyLoad": "lazyLoad"; "filtered": "filtered"; }, never, never, true, never>;
65
+ }
@@ -1,6 +1,6 @@
1
- export interface DropDownItemData<T> {
2
- label: string;
3
- value: string | number;
4
- item: T;
5
- selected: boolean;
6
- }
1
+ export interface DropDownItemData<T> {
2
+ label: string;
3
+ value: string | number;
4
+ item: T;
5
+ selected: boolean;
6
+ }
@@ -1 +1 @@
1
- export * from './dropdown.component';
1
+ export * from './dropdown.component';
@@ -0,0 +1,14 @@
1
+ import { NgControl, ValidationErrors } from "@angular/forms";
2
+ import { SlotPositionType } from "@verisoft/ui-core";
3
+ import { Observable } from "rxjs";
4
+ import * as i0 from "@angular/core";
5
+ export declare class ErrorComponent {
6
+ ngControl?: NgControl;
7
+ errorSlot: SlotPositionType;
8
+ messageSlot: SlotPositionType;
9
+ readonly errorService: import("@verisoft/core").ErrorProvider;
10
+ icons: import("@verisoft/ui-core").CommonIcons;
11
+ getErrorMessage(errors: ValidationErrors): Observable<string>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "v-validation-message", never, { "ngControl": { "alias": "ngControl"; "required": true; }; "errorSlot": { "alias": "errorSlot"; "required": false; }; "messageSlot": { "alias": "messageSlot"; "required": false; }; }, {}, never, never, true, never>;
14
+ }
@@ -0,0 +1 @@
1
+ export * from './error.component';
@@ -0,0 +1,25 @@
1
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
2
+ import { BaseFormInputComponent, FieldSizeType, IconPositionType, FormFieldCore, FieldTypeType, SlotPositionType } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FormFieldComponent extends BaseFormInputComponent implements ControlValueAccessor, FormFieldCore {
5
+ constructor(ngControl: NgControl);
6
+ floatLabel: boolean;
7
+ type: FieldTypeType;
8
+ minlength: number;
9
+ maxlength: number;
10
+ prefix: string;
11
+ sufix: string;
12
+ message: string;
13
+ name: string;
14
+ role: string;
15
+ autocorrect: 'on' | 'off';
16
+ size: FieldSizeType | undefined;
17
+ icon: string;
18
+ iconPos: IconPositionType;
19
+ display: 'flex' | 'block';
20
+ labelSlot: SlotPositionType;
21
+ messageSlot: SlotPositionType;
22
+ icons: import("@verisoft/ui-core").CommonIcons;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, [{ optional: true; self: true; }]>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "v-form-field", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "sufix": { "alias": "sufix"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "role": { "alias": "role"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "size": { "alias": "size"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPos": { "alias": "iconPos"; "required": false; }; "display": { "alias": "display"; "required": false; }; "labelSlot": { "alias": "labelSlot"; "required": false; }; "messageSlot": { "alias": "messageSlot"; "required": false; }; }, {}, never, ["*"], true, never>;
25
+ }
@@ -1 +1 @@
1
- export * from './form-field.component';
1
+ export * from './form-field.component';
@@ -0,0 +1,25 @@
1
+ import { TemplateRef } from "@angular/core";
2
+ import { HeaderCore, MenuItem, SideMenuService } from "@verisoft/ui-core";
3
+ import * as i0 from "@angular/core";
4
+ export declare class HeaderComponent implements HeaderCore {
5
+ title: string;
6
+ userName: string;
7
+ logoUrl: string;
8
+ userRole: any;
9
+ menuRef: HTMLDivElement;
10
+ items: MenuItem[];
11
+ actionTemplate: TemplateRef<{
12
+ $implicit: any;
13
+ }>;
14
+ protected icons: import("@verisoft/ui-core").CommonIcons;
15
+ protected menuVisible: boolean;
16
+ private openedIndexes;
17
+ protected readonly tabsService: SideMenuService;
18
+ private readonly router;
19
+ toggleMenu(): void;
20
+ protected canRedirect(url?: string, canRedirect?: boolean): void;
21
+ protected showOrHide(index: number, children?: number): void;
22
+ protected canBeShown(index: number): boolean;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "v-header", never, { "title": { "alias": "title"; "required": false; }; "userName": { "alias": "userName"; "required": false; }; "logoUrl": { "alias": "logoUrl"; "required": false; }; "userRole": { "alias": "userRole"; "required": false; }; "menuRef": { "alias": "menuRef"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, {}, ["actionTemplate"], ["*"], true, never>;
25
+ }
@@ -0,0 +1 @@
1
+ export * from './header.component';
@@ -1,33 +1,33 @@
1
- export * from './button';
2
- export * from './breadcrumb';
3
- export * from './calendar';
4
- export * from './checkbox';
5
- export * from './confirm-dialog';
6
- export * from './dropdown';
7
- export * from './header';
8
- export * from './checkbox';
9
- export * from './password';
10
- export * from './shared-components';
11
- export * from './radiobutton';
12
- export * from './switch';
13
- export * from './multiselect';
14
- export * from './search';
15
- export * from './section';
16
- export * from './side-menu';
17
- export * from './snackbar';
18
- export * from './table';
19
- export * from './textarea';
20
- export * from './textfield';
21
- export * from './tooltip';
22
- export * from './loader';
23
- export * from './tristatecheckbox';
24
- export * from './form-field';
25
- export * from './input-group';
26
- export * from './number-input';
27
- export * from './tooltip';
28
- export * from './snackbar';
29
- export * from './section';
30
- export * from './page-header';
31
- export * from './section'
32
- export * from './stepper';
33
- export * from './tab-view';
1
+ export * from './button';
2
+ export * from './breadcrumb';
3
+ export * from './calendar';
4
+ export * from './checkbox';
5
+ export * from './confirm-dialog';
6
+ export * from './dropdown';
7
+ export * from './header';
8
+ export * from './checkbox';
9
+ export * from './password';
10
+ export * from './shared-components';
11
+ export * from './radiobutton';
12
+ export * from './switch';
13
+ export * from './multiselect';
14
+ export * from './search';
15
+ export * from './section';
16
+ export * from './side-menu';
17
+ export * from './snackbar';
18
+ export * from './table';
19
+ export * from './textarea';
20
+ export * from './textfield';
21
+ export * from './tooltip';
22
+ export * from './loader';
23
+ export * from './tristatecheckbox';
24
+ export * from './form-field';
25
+ export * from './input-group';
26
+ export * from './number-input';
27
+ export * from './tooltip';
28
+ export * from './snackbar';
29
+ export * from './section';
30
+ export * from './page-header';
31
+ export * from './section';
32
+ export * from './stepper';
33
+ export * from './tab-view';
@@ -0,0 +1 @@
1
+ export * from './input-group.component';
@@ -0,0 +1,24 @@
1
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
2
+ import { BaseFormInputComponent, InputGroupCore, InputGroupItem, FieldSizeType, IconPositionType, SlotPositionType, FieldTypeType } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class InputGroupComponent extends BaseFormInputComponent implements ControlValueAccessor, InputGroupCore {
5
+ floatLabel: boolean;
6
+ type: FieldTypeType;
7
+ minlength: number;
8
+ items: InputGroupItem[];
9
+ prefix: string;
10
+ sufix: string;
11
+ maxlength: number;
12
+ name: string;
13
+ role: string;
14
+ message: string;
15
+ size: FieldSizeType | undefined;
16
+ icon: string;
17
+ iconPos: IconPositionType;
18
+ labelSlot: SlotPositionType;
19
+ messageSlot: SlotPositionType;
20
+ icons: import("@verisoft/ui-core").CommonIcons;
21
+ constructor(ngControl: NgControl);
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputGroupComponent, [{ optional: true; self: true; }]>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputGroupComponent, "v-input-group", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "items": { "alias": "items"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "sufix": { "alias": "sufix"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "role": { "alias": "role"; "required": false; }; "message": { "alias": "message"; "required": false; }; "size": { "alias": "size"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPos": { "alias": "iconPos"; "required": false; }; "labelSlot": { "alias": "labelSlot"; "required": false; }; "messageSlot": { "alias": "messageSlot"; "required": false; }; }, {}, never, never, true, never>;
24
+ }
@@ -0,0 +1 @@
1
+ export * from './loader.component';
@@ -0,0 +1,8 @@
1
+ import { LoaderCore, FieldSizeType } from '@verisoft/ui-core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LoaderComponent implements LoaderCore {
4
+ size: FieldSizeType;
5
+ message: string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "v-loader", never, { "size": { "alias": "size"; "required": false; }; "message": { "alias": "message"; "required": false; }; }, {}, never, never, true, never>;
8
+ }
@@ -0,0 +1 @@
1
+ export * from './multiselect.component';
@@ -0,0 +1,35 @@
1
+ import { EventEmitter, OnChanges, SimpleChanges, ChangeDetectorRef } from '@angular/core';
2
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
3
+ import { FilterEvent, LazyLoadEvent } from '@verisoft/core';
4
+ import { BaseFormInputComponent, MultiselectCore, FieldSizeType, SlotPositionType } from '@verisoft/ui-core';
5
+ import * as i0 from "@angular/core";
6
+ export declare class MultiselectComponent<T> extends BaseFormInputComponent implements ControlValueAccessor, OnChanges, MultiselectCore<T> {
7
+ constructor(ngControl: NgControl);
8
+ options: T[] | undefined;
9
+ optionLabel: string | undefined;
10
+ optionValue: string | undefined;
11
+ dropdownIcon: string | undefined;
12
+ floatLabel: string | undefined;
13
+ editable: boolean;
14
+ display: 'flex' | 'block';
15
+ errorSlot: SlotPositionType;
16
+ lazy: boolean;
17
+ filter: boolean;
18
+ loading: boolean;
19
+ size: FieldSizeType;
20
+ changed: EventEmitter<any>;
21
+ showed: EventEmitter<any>;
22
+ cleared: EventEmitter<any>;
23
+ lazyLoad: EventEmitter<LazyLoadEvent>;
24
+ filtered: EventEmitter<FilterEvent>;
25
+ icons: import("@verisoft/ui-core").CommonIcons;
26
+ lazyLoadOptions: LazyLoadEvent;
27
+ cdRef: ChangeDetectorRef;
28
+ ngOnChanges(changes: SimpleChanges): void;
29
+ onLazyLoad(event: any): void;
30
+ selectionChange(event: any): void;
31
+ onDropdownShow(): void;
32
+ onDropdownClear(): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiselectComponent<any>, [{ optional: true; self: true; }]>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiselectComponent<any>, "v-multiselect", never, { "options": { "alias": "options"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "dropdownIcon": { "alias": "dropdownIcon"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "display": { "alias": "display"; "required": false; }; "errorSlot": { "alias": "errorSlot"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "changed": "changed"; "showed": "showed"; "cleared": "cleared"; "lazyLoad": "lazyLoad"; "filtered": "filtered"; }, never, never, true, never>;
35
+ }
@@ -0,0 +1 @@
1
+ export * from './number-input.component';
@@ -0,0 +1,29 @@
1
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
2
+ import { NumberInputCore, BaseFormInputComponent, FieldSizeType, IconPositionType, SlotPositionType, FieldTypeType } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class NumberInputComponent extends BaseFormInputComponent implements ControlValueAccessor, NumberInputCore {
5
+ mode: string;
6
+ currency: string;
7
+ min: number;
8
+ max: number;
9
+ step: number;
10
+ floatLabel: boolean;
11
+ type: FieldTypeType;
12
+ minlength: number;
13
+ maxlength: number;
14
+ prefix: string;
15
+ sufix: string;
16
+ message: string;
17
+ name: string;
18
+ role: string;
19
+ size: FieldSizeType | undefined;
20
+ icon: string;
21
+ iconPos: IconPositionType;
22
+ labelSlot: SlotPositionType;
23
+ errorSlot: SlotPositionType;
24
+ messageSlot: SlotPositionType;
25
+ icons: import("@verisoft/ui-core").CommonIcons;
26
+ constructor(ngControl: NgControl);
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumberInputComponent, [{ optional: true; self: true; }]>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<NumberInputComponent, "v-number-input", never, { "mode": { "alias": "mode"; "required": false; }; "currency": { "alias": "currency"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "sufix": { "alias": "sufix"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "role": { "alias": "role"; "required": false; }; "size": { "alias": "size"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPos": { "alias": "iconPos"; "required": false; }; "labelSlot": { "alias": "labelSlot"; "required": false; }; "errorSlot": { "alias": "errorSlot"; "required": false; }; "messageSlot": { "alias": "messageSlot"; "required": false; }; }, {}, never, never, true, never>;
29
+ }
@@ -0,0 +1 @@
1
+ export * from './page-header.component';
@@ -0,0 +1,9 @@
1
+ import { PageHeaderCore } from '@verisoft/ui-core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PageHeaderComponent implements PageHeaderCore {
4
+ title: string;
5
+ subtitle: string | undefined;
6
+ showBackButton: boolean | undefined;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageHeaderComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageHeaderComponent, "v-page-header", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "showBackButton": { "alias": "showBackButton"; "required": false; }; }, {}, never, never, true, never>;
9
+ }
@@ -1 +1 @@
1
- export * from './password.component';
1
+ export * from './password.component';
@@ -0,0 +1,23 @@
1
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
2
+ import { BaseFormInputComponent, FieldType, PasswordCore, SlotPositionType, IconPositionType, FieldSizeType, PasswordStrength } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class PasswordComponent extends BaseFormInputComponent implements ControlValueAccessor, PasswordCore {
5
+ toggleMask: boolean;
6
+ feedback: boolean;
7
+ labelSlot: SlotPositionType;
8
+ requiredStrength: PasswordStrength;
9
+ message: string;
10
+ name: string;
11
+ role: string;
12
+ icon: string;
13
+ iconPos: IconPositionType;
14
+ size: FieldSizeType | undefined;
15
+ messageSlot: SlotPositionType;
16
+ icons: import("@verisoft/ui-core").CommonIcons;
17
+ passwordStrength: PasswordStrength;
18
+ type: FieldType;
19
+ constructor(ngControl: NgControl);
20
+ valueChange(value: string): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<PasswordComponent, [{ optional: true; self: true; }]>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<PasswordComponent, "v-password", never, { "toggleMask": { "alias": "toggleMask"; "required": false; }; "feedback": { "alias": "feedback"; "required": false; }; "labelSlot": { "alias": "labelSlot"; "required": false; }; "requiredStrength": { "alias": "requiredStrength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "role": { "alias": "role"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPos": { "alias": "iconPos"; "required": false; }; "size": { "alias": "size"; "required": false; }; "messageSlot": { "alias": "messageSlot"; "required": false; }; }, {}, never, never, true, never>;
23
+ }
@@ -0,0 +1 @@
1
+ export * from './radiobutton.component';
@@ -0,0 +1,12 @@
1
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
2
+ import { BaseFormInputComponent, FieldSizeType, RadiobuttonCore, RadioButtonItem } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class RadioButtonComponent<T> extends BaseFormInputComponent implements ControlValueAccessor, RadiobuttonCore<T> {
5
+ radioGroupName: string;
6
+ items: RadioButtonItem<T>[];
7
+ size: FieldSizeType;
8
+ icons: import("@verisoft/ui-core").CommonIcons;
9
+ constructor(ngControl: NgControl);
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent<any>, [{ optional: true; self: true; }]>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent<any>, "v-radiobutton", never, { "radioGroupName": { "alias": "radioGroupName"; "required": false; }; "items": { "alias": "items"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1 @@
1
+ export * from './search.component';
@@ -0,0 +1,14 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FieldSizeType } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SearchComponent {
5
+ placeholder: string;
6
+ size: FieldSizeType;
7
+ searchTerm: EventEmitter<string>;
8
+ value: string;
9
+ icons: import("@verisoft/ui-core").CommonIcons;
10
+ setValue(event: any): void;
11
+ search(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchComponent, "v-search", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "searchTerm": "searchTerm"; }, never, never, true, never>;
14
+ }
@@ -0,0 +1 @@
1
+ export * from './section.component';
@@ -0,0 +1,18 @@
1
+ import { FieldSizeType, SectionCore } from '@verisoft/ui-core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SectionComponent implements SectionCore {
4
+ title: string;
5
+ badge: string;
6
+ showContent: boolean;
7
+ backgroundColor: string;
8
+ annotation: string;
9
+ identifier: string;
10
+ icon: string;
11
+ iconType: string;
12
+ size: FieldSizeType;
13
+ badgeSlot: 'prefix' | 'sufix';
14
+ open: boolean;
15
+ icons: import("@verisoft/ui-core").CommonIcons;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<SectionComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<SectionComponent, "v-section", never, { "title": { "alias": "title"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "showContent": { "alias": "showContent"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "annotation": { "alias": "annotation"; "required": false; }; "identifier": { "alias": "identifier"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconType": { "alias": "iconType"; "required": false; }; "size": { "alias": "size"; "required": false; }; "badgeSlot": { "alias": "badgeSlot"; "required": false; }; "open": { "alias": "open"; "required": false; }; }, {}, never, ["*"], true, never>;
18
+ }