@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,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tab-view.component";
3
+ import * as i2 from "./tab-view-item.component";
4
+ import * as i3 from "@angular/router";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "@gov-design-system-ce/angular";
7
+ import * as i6 from "@ngx-translate/core";
8
+ export declare class TabViewModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabViewModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TabViewModule, [typeof i1.TabViewComponent, typeof i2.TabViewItemComponent], [typeof i3.RouterOutlet, typeof i4.NgTemplateOutlet, typeof i5.GovDesignSystemModule, typeof i3.RouterLinkActive, typeof i3.RouterLink, typeof i6.TranslateModule], [typeof i1.TabViewComponent, typeof i2.TabViewItemComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<TabViewModule>;
12
+ }
@@ -1 +1 @@
1
- export * from './table.component';
1
+ export * from './table.component';
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TablePaginationInfoComponent {
3
+ showingText: string;
4
+ toText: string;
5
+ ofText: string;
6
+ entriesText: string;
7
+ currentPage: number;
8
+ pageSize: number;
9
+ total: number;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TablePaginationInfoComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<TablePaginationInfoComponent, "v-table-pagination-info", never, { "showingText": { "alias": "showingText"; "required": false; }; "toText": { "alias": "toText"; "required": false; }; "ofText": { "alias": "ofText"; "required": false; }; "entriesText": { "alias": "entriesText"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "total": { "alias": "total"; "required": false; }; }, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,91 @@
1
+ import { AfterViewInit, EventEmitter, OnChanges, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
2
+ import { FormCheckboxEvent, FormSelectEvent } from '@gov-design-system-ce/components';
3
+ import { LazyLoadEvent, Sort } from '@verisoft/core';
4
+ import { ColumnDefinition, ColumnModel, ColumnProvider, FieldSizeType, RowModel, TableCore } from '@verisoft/ui-core';
5
+ import * as i0 from "@angular/core";
6
+ export declare class TableComponent<T> implements OnChanges, AfterViewInit, TableCore<T> {
7
+ viewColumns: QueryList<ColumnProvider<T>>;
8
+ rowDetailTemplate: TemplateRef<{
9
+ $implicit: T;
10
+ }>;
11
+ rowDetailButtonTemplate: TemplateRef<{
12
+ $implicit: T;
13
+ }>;
14
+ sorters: Sort[];
15
+ data: T[];
16
+ total: number;
17
+ filter: Partial<T> | undefined;
18
+ extraFilter: Partial<T> | undefined;
19
+ loading: boolean;
20
+ scrollable: boolean;
21
+ pageSize: number;
22
+ currentPage: number;
23
+ showPaginator: boolean;
24
+ userTableWrapper: boolean;
25
+ sortMultiple: boolean;
26
+ lazy: boolean;
27
+ selectionMode: 'single' | 'multiple' | undefined;
28
+ selection: T[];
29
+ showPageSizePicker: boolean;
30
+ entityKey: string | undefined;
31
+ customRoute: string | undefined;
32
+ disableCustomClicks: boolean;
33
+ tableName?: string;
34
+ size: FieldSizeType;
35
+ showActionButtons: boolean;
36
+ maximumColumnLength: number;
37
+ set columns(value: ColumnDefinition<T>[]);
38
+ get columns(): ColumnDefinition<T>[];
39
+ selectionChange: EventEmitter<T[]>;
40
+ lazyLoad: EventEmitter<LazyLoadEvent>;
41
+ download: EventEmitter<RowModel<T>[]>;
42
+ delete: EventEmitter<RowModel<T>[]>;
43
+ save: EventEmitter<RowModel<T>[]>;
44
+ private readonly cdRef;
45
+ private readonly router;
46
+ private readonly route;
47
+ private readonly service;
48
+ private _columns;
49
+ tableColumns: ColumnModel<T>[];
50
+ tableRows: RowModel<T>[];
51
+ pageSizeOptions: {
52
+ value: string;
53
+ }[];
54
+ allSelected: boolean;
55
+ icons: import("@verisoft/ui-core").CommonIcons;
56
+ get govPageSize(): string;
57
+ get tableRowView(): RowModel<T>[];
58
+ get selected(): RowModel<T>[];
59
+ get selectedCount(): number;
60
+ constructor();
61
+ ngOnChanges(changes: SimpleChanges): void;
62
+ ngAfterViewInit(): void;
63
+ protected sortColumn(column: ColumnModel<T>): void;
64
+ protected changePage(event: {
65
+ detail: {
66
+ pagination: {
67
+ currentPage: number;
68
+ };
69
+ };
70
+ }): void;
71
+ protected changePageSize(event: CustomEvent<FormSelectEvent>): void;
72
+ protected selectRow(row: RowModel<T>, event: MouseEvent): void;
73
+ protected navigate(row: RowModel<T>, event: MouseEvent): void;
74
+ protected navigateNewWindow(row: RowModel<T>, event: MouseEvent): void;
75
+ protected toggleAll(event: CustomEvent<FormCheckboxEvent>): void;
76
+ protected toggleDetail(row: RowModel<T>): void;
77
+ protected selectRowCheckbox(row: RowModel<T>, event: CustomEvent<FormCheckboxEvent>): void;
78
+ protected truncate(text: string): string;
79
+ protected deselectAll(): void;
80
+ private createUrl;
81
+ private reactToSignals;
82
+ private updateColumnModels;
83
+ private updateRowModels;
84
+ private fireSelectionChange;
85
+ private selectSelected;
86
+ private fireLazyLoad;
87
+ private updateFilter;
88
+ private getSorts;
89
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent<any>, never>;
90
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any>, "v-table", never, { "sorters": { "alias": "sorters"; "required": false; }; "data": { "alias": "data"; "required": false; }; "total": { "alias": "total"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "extraFilter": { "alias": "extraFilter"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "showPaginator": { "alias": "showPaginator"; "required": false; }; "userTableWrapper": { "alias": "userTableWrapper"; "required": false; }; "sortMultiple": { "alias": "sortMultiple"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "showPageSizePicker": { "alias": "showPageSizePicker"; "required": false; }; "entityKey": { "alias": "entityKey"; "required": false; }; "customRoute": { "alias": "customRoute"; "required": false; }; "disableCustomClicks": { "alias": "disableCustomClicks"; "required": false; }; "tableName": { "alias": "tableName"; "required": false; }; "size": { "alias": "size"; "required": false; }; "showActionButtons": { "alias": "showActionButtons"; "required": false; }; "maximumColumnLength": { "alias": "maximumColumnLength"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; }, { "selectionChange": "selectionChange"; "lazyLoad": "lazyLoad"; "download": "download"; "delete": "delete"; "save": "save"; }, ["rowDetailTemplate", "rowDetailButtonTemplate", "viewColumns"], never, true, never>;
91
+ }
@@ -0,0 +1,3 @@
1
+ import { SortDirectionType } from '@verisoft/core';
2
+ export declare function getNextSortDirection(sortDirection: SortDirectionType | undefined, isNullable?: boolean): SortDirectionType | undefined;
3
+ export declare function createCustomRoute<T>(row: T, entityKey?: string, customRoute?: string): string | undefined;
@@ -0,0 +1 @@
1
+ export * from './textarea.component';
@@ -0,0 +1,25 @@
1
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
2
+ import { TextfieldCore, FieldType, BaseFormInputComponent, FieldSizeType, IconPositionType, SlotPositionType } from '@verisoft/ui-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TextareaComponent extends BaseFormInputComponent implements ControlValueAccessor, TextfieldCore {
5
+ floatLabel: boolean;
6
+ type: FieldType;
7
+ minlength: number;
8
+ maxlength: number;
9
+ prefix: string;
10
+ sufix: string;
11
+ message: string;
12
+ name: string;
13
+ role: string;
14
+ size: FieldSizeType;
15
+ icon: string;
16
+ iconPos: IconPositionType;
17
+ labelSlot: SlotPositionType;
18
+ messageSlot: SlotPositionType;
19
+ rows: number;
20
+ cols: number;
21
+ icons: import("@verisoft/ui-core").CommonIcons;
22
+ constructor(ngControl: NgControl);
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextareaComponent, [{ optional: true; self: true; }]>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextareaComponent, "v-textarea", 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; }; "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; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; }, {}, never, never, true, never>;
25
+ }
@@ -0,0 +1 @@
1
+ export * from './textfield.component';
@@ -0,0 +1,28 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
3
+ import { TextfieldCore, BaseFormInputComponent, FieldSizeType, IconPositionType, SlotPositionType, FieldTypeType } from '@verisoft/ui-core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TextfieldComponent extends BaseFormInputComponent implements ControlValueAccessor, TextfieldCore, OnInit {
6
+ floatLabel: boolean;
7
+ type: FieldTypeType;
8
+ minlength: number;
9
+ maxlength: number;
10
+ min: number;
11
+ max: number;
12
+ prefix: string;
13
+ sufix: string;
14
+ message: string;
15
+ name: string;
16
+ role: string;
17
+ size: FieldSizeType | undefined;
18
+ icon: string;
19
+ iconPos: IconPositionType;
20
+ labelSlot: SlotPositionType;
21
+ errorSlot: SlotPositionType;
22
+ messageSlot: SlotPositionType;
23
+ constructor(ngControl: NgControl);
24
+ ngOnInit(): void;
25
+ private setMinMaxNumberInputValidators;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextfieldComponent, [{ optional: true; self: true; }]>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextfieldComponent, "v-textfield", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "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>;
28
+ }
@@ -0,0 +1 @@
1
+ export * from './tooltip.component';
@@ -0,0 +1,18 @@
1
+ import { ElementRef, Renderer2, AfterViewInit } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class TooltipComponent implements AfterViewInit {
4
+ private el;
5
+ private renderer;
6
+ color: 'primary' | 'secondary';
7
+ size: 'small' | 'medium' | 'large';
8
+ position: 'top' | 'right' | 'bottom' | 'left';
9
+ message: string;
10
+ label: string;
11
+ isVisible: boolean;
12
+ tooltipId: string | null;
13
+ constructor(el: ElementRef, renderer: Renderer2);
14
+ ngAfterViewInit(): void;
15
+ toggleTooltip(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "v-tooltip", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "position": { "alias": "position"; "required": false; }; "message": { "alias": "message"; "required": true; }; "label": { "alias": "label"; "required": false; }; }, {}, never, never, true, never>;
18
+ }
@@ -1 +1 @@
1
- export * from './tristatecheckbox.component';
1
+ export * from './tristatecheckbox.component';
@@ -0,0 +1,27 @@
1
+ import { OnInit, ChangeDetectorRef } from '@angular/core';
2
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
3
+ import { BaseFormInputComponent, TristateCheckboxCore, SlotPositionType, FieldSizeType } from '@verisoft/ui-core';
4
+ import * as i0 from "@angular/core";
5
+ declare enum States {
6
+ None = -1,
7
+ False = 0,
8
+ True = 1
9
+ }
10
+ export declare class TristatecheckboxComponent extends BaseFormInputComponent implements ControlValueAccessor, TristateCheckboxCore, OnInit {
11
+ protected changeDetectorRef: ChangeDetectorRef;
12
+ size: FieldSizeType;
13
+ value: string;
14
+ name: string;
15
+ noLabel: boolean;
16
+ errorSlot: SlotPositionType;
17
+ checked: boolean;
18
+ protected isChecked: States;
19
+ constructor(ngControl: NgControl, changeDetectorRef: ChangeDetectorRef);
20
+ writeValue(value: any): void;
21
+ protected toggleCheckbox(): void;
22
+ private updateControlValue;
23
+ private getCurrentValue;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<TristatecheckboxComponent, [{ optional: true; self: true; }, null]>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<TristatecheckboxComponent, "v-tristatecheckbox", never, { "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "noLabel": { "alias": "noLabel"; "required": false; }; "errorSlot": { "alias": "errorSlot"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, {}, never, never, true, never>;
26
+ }
27
+ export {};
package/lib/icons.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ import { CommonIcons } from '@verisoft/ui-core';
2
+ export declare const Icons: CommonIcons;
@@ -1,5 +1,5 @@
1
- export * from './components';
2
- export * from './pipes';
3
- export * from './init.service';
4
- export * from './pages';
5
- export * from './icons';
1
+ export * from './components';
2
+ export * from './pipes';
3
+ export * from './init.service';
4
+ export * from './pages';
5
+ export * from './icons';
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GovInitService {
3
+ constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovInitService, never>;
5
+ static ɵprov: i0.ɵɵInjectableDeclaration<GovInitService>;
6
+ }
@@ -1,3 +1,3 @@
1
- export * from './not-authenticated';
2
- export * from './not-authorized';
3
- export * from './not-found';
1
+ export * from './not-authenticated';
2
+ export * from './not-authorized';
3
+ export * from './not-found';
@@ -1 +1 @@
1
- export * from './not-authenticated.component';
1
+ export * from './not-authenticated.component';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class NotAuthenticatedComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotAuthenticatedComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotAuthenticatedComponent, "v-not-authenticated", never, {}, {}, never, never, true, never>;
5
+ }
@@ -1 +1 @@
1
- export * from './not-authorized.component';
1
+ export * from './not-authorized.component';
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class NotAuthorizedComponent {
3
+ goBack(): void;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotAuthorizedComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotAuthorizedComponent, "v-not-authorized", never, {}, {}, never, never, true, never>;
6
+ }
@@ -1 +1 @@
1
- export * from './not-found.component';
1
+ export * from './not-found.component';
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class NotFoundComponent {
3
+ goBack(): void;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotFoundComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotFoundComponent, "v-not-found", never, {}, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from "@angular/core";
2
+ import { ControlSeverityType } from "@verisoft/ui-core";
3
+ import * as i0 from "@angular/core";
4
+ export declare class GovColorPipe implements PipeTransform {
5
+ transform(color: ControlSeverityType | undefined): string | undefined;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovColorPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<GovColorPipe, "govColor", true>;
8
+ }
@@ -1,3 +1,3 @@
1
- export * from './color/color.pipe';
2
- export * from './multiselect/multiselect-options.pipe';
3
- export * from './size/size.pipe';
1
+ export * from './color/color.pipe';
2
+ export * from './multiselect/multiselect-options.pipe';
3
+ export * from './size/size.pipe';
@@ -0,0 +1,9 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { GovFormMultiSelectItem } from '@gov-design-system-ce/components';
3
+ import * as i0 from "@angular/core";
4
+ export declare class GovMultiselectOptionsPipe implements PipeTransform {
5
+ transform(options: any[] | undefined, optionLabel?: string, optionValue?: string, addEmptyOption?: boolean): GovFormMultiSelectItem[];
6
+ private convertToGovOption;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovMultiselectOptionsPipe, never>;
8
+ static ɵpipe: i0.ɵɵPipeDeclaration<GovMultiselectOptionsPipe, "govMultiselectOptions", true>;
9
+ }
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from "@angular/core";
2
+ import { FieldSizeType } from "@verisoft/ui-core";
3
+ import * as i0 from "@angular/core";
4
+ export declare class GovSizePipe implements PipeTransform {
5
+ transform(size: FieldSizeType | undefined): string | undefined;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovSizePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<GovSizePipe, "govSize", true>;
8
+ }
package/package.json CHANGED
@@ -1,24 +1,39 @@
1
- {
2
- "name": "@verisoft/ui-govcz",
3
- "version": "18.6.4",
4
- "main": "dist/index.js",
5
- "module": "src/Verisoft.Frontend/src/dist/src/libs/ui-govcz/fesm2022/verisoft-ui-govcz.mjs",
6
- "types": "src/Verisoft.Frontend/src/dist/src/libs/ui-govcz/index.d.ts",
7
- "peerDependencies": {
8
- "@angular/common": "^18.2.8",
9
- "@angular/core": "^18.2.8",
10
- "@angular/router": "18.2.8",
11
- "@gov-design-system-ce/angular": "^1.1.1",
12
- "@verisoft/ui-core": "18.3.1",
13
- "@gov-design-system-ce/components": "^4.1.3-BETA-10",
14
- "@angular/forms": "18.2.8",
15
- "uuid": "^10.0.0",
16
- "@verisoft/core": "18.3.1",
17
- "zxcvbn": "^4.4.2",
18
- "rxjs": "~7.8.0",
19
- "@angular/cdk": "^18.2.14",
20
- "@ngx-translate/core": "^15.0.0",
21
- "@verisoft/security-core": "18.3.1"
22
- },
23
- "sideEffects": false
1
+ {
2
+ "name": "@verisoft/ui-govcz",
3
+ "version": "18.7.0",
4
+ "main": "dist/index.js",
5
+ "module": "fesm2022/verisoft-ui-govcz.mjs",
6
+ "types": "src/Verisoft.Frontend/src/dist/libs/ui-govcz/index.d.ts",
7
+ "peerDependencies": {
8
+ "@angular/common": "^18.2.8",
9
+ "@angular/core": "^18.2.8",
10
+ "@angular/router": "18.2.8",
11
+ "@gov-design-system-ce/angular": "^1.1.1",
12
+ "@verisoft/ui-core": "18.7.0",
13
+ "@gov-design-system-ce/components": "^4.1.3-BETA-10",
14
+ "@angular/forms": "18.2.8",
15
+ "uuid": "^10.0.0",
16
+ "@verisoft/core": "18.7.0",
17
+ "zxcvbn": "^4.4.2",
18
+ "rxjs": "~7.8.0",
19
+ "@angular/cdk": "^18.2.14",
20
+ "@ngx-translate/core": "^15.0.0",
21
+ "@verisoft/security-core": "18.7.0"
22
+ },
23
+ "sideEffects": false,
24
+ "typings": "index.d.ts",
25
+ "exports": {
26
+ "./package.json": {
27
+ "default": "./package.json"
28
+ },
29
+ ".": {
30
+ "types": "./index.d.ts",
31
+ "esm2022": "./esm2022/verisoft-ui-govcz.mjs",
32
+ "esm": "./esm2022/verisoft-ui-govcz.mjs",
33
+ "default": "./fesm2022/verisoft-ui-govcz.mjs"
34
+ }
35
+ },
36
+ "dependencies": {
37
+ "tslib": "^2.3.0"
38
+ }
24
39
  }
package/.eslintrc.json DELETED
@@ -1,48 +0,0 @@
1
- {
2
- "extends": ["../../../.eslintrc.base.json"],
3
- "ignorePatterns": ["!**/*"],
4
- "overrides": [
5
- {
6
- "files": ["*.ts"],
7
- "extends": [
8
- "plugin:@nx/angular",
9
- "plugin:@angular-eslint/template/process-inline-templates"
10
- ],
11
- "rules": {
12
- "@angular-eslint/directive-selector": [
13
- "error",
14
- {
15
- "type": "attribute",
16
- "prefix": "v",
17
- "style": "camelCase"
18
- }
19
- ],
20
- "@angular-eslint/component-selector": [
21
- "error",
22
- {
23
- "type": "element",
24
- "prefix": "v",
25
- "style": "kebab-case"
26
- }
27
- ]
28
- }
29
- },
30
- {
31
- "files": ["*.html"],
32
- "extends": ["plugin:@nx/angular-template"],
33
- "rules": {}
34
- },
35
- {
36
- "files": ["*.json"],
37
- "parser": "jsonc-eslint-parser",
38
- "rules": {
39
- "@nx/dependency-checks": [
40
- "error",
41
- {
42
- "ignoredFiles": ["{projectRoot}/eslint.config.{js,cjs,mjs}"]
43
- }
44
- ]
45
- }
46
- }
47
- ]
48
- }
package/jest.config.ts DELETED
@@ -1,21 +0,0 @@
1
- export default {
2
- displayName: 'ui-govcz',
3
- preset: '../../../jest.preset.js',
4
- setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
5
- coverageDirectory: '../../../coverage/src/libs/ui-govcz',
6
- transform: {
7
- '^.+\\.(ts|mjs|js|html)$': [
8
- 'jest-preset-angular',
9
- {
10
- tsconfig: '<rootDir>/tsconfig.spec.json',
11
- stringifyContentPathRegex: '\\.(html|svg)$',
12
- },
13
- ],
14
- },
15
- transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
16
- snapshotSerializers: [
17
- 'jest-preset-angular/build/serializers/no-ng-attributes',
18
- 'jest-preset-angular/build/serializers/ng-snapshot',
19
- 'jest-preset-angular/build/serializers/html-comment',
20
- ],
21
- };
package/ng-package.json DELETED
@@ -1,15 +0,0 @@
1
- {
2
- "$schema": "../../../node_modules/ng-packagr/ng-package.schema.json",
3
- "dest": "../../../dist/libs/ui-govcz",
4
- "lib": {
5
- "entryFile": "src/index.ts"
6
- },
7
- "assets": [
8
- {
9
- "glob": "**/*",
10
- "input": "./src/sass/",
11
- "output": "/sass/"
12
- },
13
- "./assets/"
14
- ]
15
- }
package/project.json DELETED
@@ -1,49 +0,0 @@
1
- {
2
- "name": "ui-govcz",
3
- "$schema": "../../../node_modules/nx/schemas/project-schema.json",
4
- "sourceRoot": "src/libs/ui-govcz/src",
5
- "prefix": "lib",
6
- "projectType": "library",
7
- "tags": [],
8
- "targets": {
9
- "build": {
10
- "executor": "@nx/angular:package",
11
- "outputs": ["{workspaceRoot}/dist/{projectRoot}"],
12
- "options": {
13
- "project": "libs/ui-govcz/ng-package.json"
14
- },
15
- "configurations": {
16
- "production": {
17
- "tsConfig": "src/libs/ui-govcz/tsconfig.lib.prod.json"
18
- },
19
- "development": {
20
- "tsConfig": "src/libs/ui-govcz/tsconfig.lib.json"
21
- }
22
- },
23
- "dependsOn": [
24
- "sync-shared",
25
- {
26
- "target": "build",
27
- "projects": ["core", "store", "ui-core"]
28
- }
29
- ],
30
- "defaultConfiguration": "production"
31
- },
32
- "test": {
33
- "executor": "@nx/jest:jest",
34
- "outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
35
- "options": {
36
- "jestConfig": "src/libs/ui-govcz/jest.config.ts"
37
- }
38
- },
39
- "lint": {
40
- "executor": "@nx/eslint:lint"
41
- },
42
- "sync-shared": {
43
- "executor": "nx:run-commands",
44
- "options": {
45
- "command": "cpx \"src/libs/ui-primeng/src/lib/components/shared-components/**/*.*\" \"src/libs/ui-govcz/src/lib/components/shared-components\" --update"
46
- }
47
- }
48
- }
49
- }
@@ -1,18 +0,0 @@
1
- /* Error: Can't find stylesheet to import.
2
- * ,
3
- * 1 | @import 'node_modules/bootstrap/scss/bootstrap-grid.scss';
4
- * | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5
- * '
6
- * src\libs\ui-govcz\src\sass\vendors\_bootstrap.scss 1:9 @import
7
- * src\libs\ui-govcz\src\sass\main.scss 3:9 root stylesheet */
8
-
9
- body::before {
10
- font-family: "Source Code Pro", "SF Mono", Monaco, Inconsolata, "Fira Mono",
11
- "Droid Sans Mono", monospace, monospace;
12
- white-space: pre;
13
- display: block;
14
- padding: 1em;
15
- margin-bottom: 1em;
16
- border-bottom: 2px solid black;
17
- content: "Error: Can't find stylesheet to import.\a \2577 \a 1 \2502 @import 'node_modules/bootstrap/scss/bootstrap-grid.scss';\d\a \2502 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\a \2575 \a src\\libs\\ui-govcz\\src\\sass\\vendors\\_bootstrap.scss 1:9 @import\a src\\libs\\ui-govcz\\src\\sass\\main.scss 3:9 root stylesheet";
18
- }
package/src/config.d.ts DELETED
@@ -1,10 +0,0 @@
1
- declare global {
2
- interface Window {
3
- GOV_DS_CONFIG?: {
4
- canValidateWcagOnRender?: boolean;
5
- iconsPath?: string;
6
- };
7
- }
8
- }
9
-
10
- window.GOV_DS_CONFIG ??= { canValidateWcagOnRender: true, iconsPath: '/assets/govcz/icons' };
package/src/index.ts DELETED
@@ -1 +0,0 @@
1
- export * from './lib';
@@ -1,23 +0,0 @@
1
- <div class="gov-breadcrums mt-3 mb-3">
2
- <gov-breadcrumbs accessible-label="gov-breadcrums">
3
- <ul>
4
- <li *ngIf="useHomeRoute">
5
- <gov-icon [name]="icons.house" />
6
- <a [routerLink]="'/'">Home</a>
7
- </li>
8
- @if (items) { @for (item of items; track item; let index = $index) {
9
- <li>
10
- @if (index > 0 || useHomeRoute) {
11
- <gov-icon [name]="icons.chevronRight" />
12
- }
13
- @if (item.icon) {
14
- <gov-icon [name]="item.icon" />
15
- }
16
- <a [routerLink]="item.routerLink">
17
- {{ item.label }}
18
- </a>
19
- </li>
20
- } }
21
- </ul>
22
- </gov-breadcrumbs>
23
- </div>