@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
@@ -1,21 +0,0 @@
1
- import { ComponentFixture, TestBed } from '@angular/core/testing';
2
- import { BreadcrumbComponent } from './breadcrumb.component';
3
-
4
- describe('BreadcrumbComponent', () => {
5
- let component: BreadcrumbComponent;
6
- let fixture: ComponentFixture<BreadcrumbComponent>;
7
-
8
- beforeEach(async () => {
9
- await TestBed.configureTestingModule({
10
- imports: [BreadcrumbComponent],
11
- }).compileComponents();
12
-
13
- fixture = TestBed.createComponent(BreadcrumbComponent);
14
- component = fixture.componentInstance;
15
- fixture.detectChanges();
16
- });
17
-
18
- it('should create', () => {
19
- expect(component).toBeTruthy();
20
- });
21
- });
@@ -1,30 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { Component } from '@angular/core';
3
- import { RouterModule } from '@angular/router';
4
- import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
5
- import {
6
- BREADCRUMB_COMPONENT_TOKEN,
7
- BreadcrumbCoreComponent
8
- } from '@verisoft/ui-core';
9
- import { Icons } from '../../icons';
10
-
11
- @Component({
12
- selector: 'v-breadcrumb',
13
- standalone: true,
14
- imports: [
15
- CommonModule,
16
- GovDesignSystemModule,
17
- RouterModule
18
- ],
19
- templateUrl: './breadcrumb.component.html',
20
- styleUrl: './breadcrumb.component.scss',
21
- providers: [
22
- {
23
- provide: BREADCRUMB_COMPONENT_TOKEN,
24
- useExisting: BreadcrumbComponent
25
- },
26
- ],
27
- })
28
- export class BreadcrumbComponent extends BreadcrumbCoreComponent {
29
- icons = Icons;
30
- }
@@ -1,26 +0,0 @@
1
- <div class="g-button">
2
- <a
3
- [routerLink]="routerLink ? routerLink : undefined"
4
- [queryParams]="queryParams ? queryParams : undefined"
5
- >
6
- <gov-button
7
- [type]="outlined === true ? 'outlined' : type"
8
- [color]="severity | govColor"
9
- [disabled]="disabled"
10
- [size]="size | govSize"
11
- [name]="name"
12
- [expanded]="expanded"
13
- (gov-click)="handleClick($event)"
14
- (click)="handleClick($event)"
15
- >
16
- @if (icon) {
17
- <gov-icon
18
- [name]="icon"
19
- [slot]="iconPos === 'left' ? 'icon-start' : 'icon-end'"
20
- />
21
- } @if (label) {
22
- {{ label | translate }}
23
- }
24
- </gov-button>
25
- </a>
26
- </div>
File without changes
@@ -1,72 +0,0 @@
1
- import {
2
- ChangeDetectionStrategy,
3
- Component,
4
- EventEmitter,
5
- Input,
6
- Output,
7
- } from "@angular/core";
8
- import { Params, RouterModule } from "@angular/router";
9
- import { GovDesignSystemModule } from "@gov-design-system-ce/angular";
10
- import { ButtonEvent, GovButtonCustomEvent } from "@gov-design-system-ce/components";
11
- import { TranslateModule } from "@ngx-translate/core";
12
- import {
13
- BUTTON_COMPONENT_TOKEN,
14
- ButtonCore,
15
- IconPositionType,
16
- IconPosition,
17
- FieldSize,
18
- FieldSizeType,
19
- ControlSeverity,
20
- ControlSeverityType,
21
- GovButtonType,
22
- GovButtonTypeType,
23
- } from "@verisoft/ui-core";
24
- import { GovColorPipe, GovSizePipe } from "../../pipes";
25
-
26
- @Component({
27
- selector: "v-button",
28
- standalone: true,
29
- styleUrl: "./button.component.scss",
30
- templateUrl: './button.component.html',
31
- imports: [
32
- GovDesignSystemModule, RouterModule, GovSizePipe, GovColorPipe, TranslateModule
33
- ],
34
- changeDetection: ChangeDetectionStrategy.OnPush,
35
- providers: [
36
- {
37
- provide: BUTTON_COMPONENT_TOKEN,
38
- useExisting: ButtonComponent,
39
- }
40
- ],
41
- })
42
- export class ButtonComponent
43
- implements ButtonCore
44
- {
45
- @Input() label: string | undefined;
46
- @Input() icon: string | undefined;
47
- @Input() badge!: string;
48
- @Input() iconPos: IconPositionType = IconPosition.left;
49
- @Input() disabled = false;
50
- @Input() rounded!: boolean;
51
- @Input() outlined!: boolean;
52
- @Input() raised!: boolean;
53
- @Input() routerLink!: any[];
54
- @Input() size: FieldSizeType | undefined = FieldSize.medium;
55
- @Input() queryParams!: Params;
56
- @Input() severity: ControlSeverityType | undefined = ControlSeverity.primary;
57
- @Input() type: GovButtonTypeType = GovButtonType.solid;
58
- @Input() expanded = false;
59
- @Input() name!: string;
60
-
61
- // eslint-disable-next-line @angular-eslint/no-output-native
62
- @Output() click = new EventEmitter<any>();
63
-
64
- handleClick(event: GovButtonCustomEvent<ButtonEvent> | MouseEvent) {
65
- if (this.disabled) {
66
- event.stopPropagation();
67
- return;
68
- }
69
-
70
- this.click.emit(event);
71
- }
72
- }
@@ -1 +0,0 @@
1
- export * from './button.component';
@@ -1,28 +0,0 @@
1
- <gov-form-control class="mb-3">
2
- @if (label) {
3
- <gov-form-label [slot]="labelSlot" [size]="size | govSize">
4
- {{ label | translate}}
5
- </gov-form-label>
6
- }
7
- <gov-form-group>
8
- <gov-form-input
9
- [formControl]="formControl"
10
- [attr.input-type]="type"
11
- [invalid]="ngControl?.errors ? true : false"
12
- [size]="size | govSize"
13
- [required]="required"
14
- [readonly]="readonly"
15
- [attr.disabled]="readonly ? 'true' : 'false'"
16
- [name]="name"
17
- />
18
- </gov-form-group>
19
- <v-validation-message [ngControl]="ngControl"></v-validation-message>
20
- @if (message) {
21
- <gov-form-message
22
- [slot]="messageSlot"
23
- color="neutral"
24
- >
25
- {{ message }}
26
- </gov-form-message>
27
- }
28
- </gov-form-control>
@@ -1,79 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { ChangeDetectionStrategy, Component, Input, Optional, Self } from '@angular/core';
3
- import { ControlValueAccessor, NgControl, ReactiveFormsModule } from '@angular/forms';
4
- import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
5
- import { TranslateModule } from '@ngx-translate/core';
6
- import {
7
- BaseFormInputComponent,
8
- CalendarCore,
9
- CALENDAR_COMPONENT_TOKEN,
10
- FieldType,
11
- FieldSizeType,
12
- FieldSize,
13
- SlotPosition,
14
- SlotPositionType,
15
- } from '@verisoft/ui-core';
16
- import { Icons } from '../../icons';
17
- import { GovSizePipe } from '../../pipes';
18
- import { ErrorComponent } from '../errors';
19
-
20
- @Component({
21
- selector: 'v-calendar',
22
- standalone: true,
23
- imports: [
24
- CommonModule,
25
- ReactiveFormsModule,
26
- GovDesignSystemModule,
27
- GovSizePipe,
28
- ErrorComponent,
29
- TranslateModule
30
- ],
31
- templateUrl: './calendar.component.html',
32
- styleUrl: './calendar.component.scss',
33
- changeDetection: ChangeDetectionStrategy.OnPush,
34
- providers: [
35
- {
36
- provide: CALENDAR_COMPONENT_TOKEN,
37
- useExisting: CalendarComponent
38
- }
39
- ],
40
- })
41
-
42
- export class CalendarComponent
43
- extends BaseFormInputComponent
44
- implements ControlValueAccessor, CalendarCore
45
- {
46
- @Input() icon!: string;
47
-
48
- @Input() floatLabel: string | undefined;
49
-
50
- @Input() maxDate!: Date;
51
-
52
- @Input() minDate!: Date;
53
-
54
- @Input() header!: string;
55
-
56
- @Input() footer!: string;
57
-
58
- @Input() selectionMode: 'single' | 'multiple' | 'range' | undefined;
59
-
60
- @Input() size: FieldSizeType = FieldSize.medium;
61
-
62
- @Input() errorSlot: SlotPositionType = SlotPosition.bottom;
63
-
64
- @Input() labelSlot: SlotPositionType = SlotPosition.top;
65
-
66
- @Input() messageSlot: SlotPositionType = SlotPosition.bottom;
67
-
68
- @Input() message!: string;
69
-
70
- @Input() name!: string;
71
-
72
- type = FieldType.date;
73
-
74
- icons = Icons;
75
-
76
- constructor(@Optional() @Self() ngControl: NgControl) {
77
- super(ngControl);
78
- }
79
- }
@@ -1 +0,0 @@
1
- export * from './calendar.component';
@@ -1,23 +0,0 @@
1
- <gov-form-control class="mt-3">
2
- <gov-form-checkbox
3
- [formControl]="formControl"
4
- [size]="size | govSize"
5
- [value]="value"
6
- [required]="required"
7
- [attr.disabled]="disabled ? 'true' : 'false'"
8
- [identifier]="id"
9
- [indeterminate]="indeterminate"
10
- [name]="name"
11
- [invalid]="ngControl?.errors"
12
- [noLabel]="noLabel"
13
- [disabled]="disabled"
14
- >
15
- <gov-form-label
16
- [size]="size"
17
- slot="label"
18
- >
19
- {{ label ?? '' | translate }}
20
- </gov-form-label>
21
- </gov-form-checkbox>
22
- <v-validation-message [ngControl]="ngControl"></v-validation-message>
23
- </gov-form-control>
@@ -1,62 +0,0 @@
1
- import { CommonModule } from "@angular/common";
2
- import {
3
- ChangeDetectionStrategy,
4
- Component,
5
- Optional,
6
- Self,
7
- Input,
8
- } from "@angular/core";
9
- import { ControlValueAccessor, NgControl, ReactiveFormsModule } from "@angular/forms";
10
- import { RouterModule } from "@angular/router";
11
- import { GovDesignSystemModule } from "@gov-design-system-ce/angular";
12
- import { TranslateModule } from "@ngx-translate/core";
13
- import {
14
- BaseFormInputComponent,
15
- CHECKBOX_COMPONENT_TOKEN,
16
- CheckboxCore,
17
- FieldSize,
18
- FieldSizeType,
19
- } from "@verisoft/ui-core";
20
- import { v4 as uuidv4 } from 'uuid';
21
- import { Icons } from "../../icons";
22
- import { GovSizePipe } from "../../pipes";
23
- import { ErrorComponent } from "../errors";
24
-
25
- @Component({
26
- selector: "v-checkbox",
27
- standalone: true,
28
- styleUrl: "./checkbox.component.scss",
29
- templateUrl: './checkbox.component.html',
30
- imports: [
31
- CommonModule,
32
- GovDesignSystemModule,
33
- RouterModule,
34
- ReactiveFormsModule,
35
- GovSizePipe,
36
- ErrorComponent,
37
- TranslateModule
38
- ],
39
- changeDetection: ChangeDetectionStrategy.OnPush,
40
- providers: [{
41
- provide: CHECKBOX_COMPONENT_TOKEN,
42
- useExisting: CheckboxComponent,
43
- }],
44
- })
45
- export class CheckboxComponent
46
- extends BaseFormInputComponent
47
- implements ControlValueAccessor, CheckboxCore
48
- {
49
- @Input() size: FieldSizeType = FieldSize.medium;
50
- @Input() value!: string;
51
- @Input() name!: string;
52
- @Input() indeterminate = false;
53
- @Input() noLabel = false;
54
-
55
- protected readonly icons = Icons;
56
-
57
- constructor(@Optional() @Self() ngControl: NgControl) {
58
- super(ngControl);
59
- }
60
-
61
- id = uuidv4();
62
- }
@@ -1 +0,0 @@
1
- export * from './checkbox.component';
@@ -1,50 +0,0 @@
1
- <gov-dialog
2
- [open]="visible"
3
- [attr.block-close]="data.closable !== undefined ? !data.closable : false"
4
- [attr.block-backdrop-close]="data.closable !== undefined ? !data.closable : false"
5
- [style.--dialog-max-width]="data.width"
6
- [style.--dialog-max-height]="data.height"
7
- role="dialog"
8
- accessible-close-label="Close dialog box with more information"
9
- (gov-close)="data.cancelButtonFn ? dialogClick(false) : (visible = false)"
10
- >
11
- <gov-icon
12
- type="components"
13
- [name]="data.headerIcon"
14
- slot="icon"
15
- [color]="data.severity | govColor"
16
- />
17
-
18
- <h2 slot="title">{{ data.title ?? 'Title' }}</h2>
19
-
20
- @if (data && data.innerHTML) {
21
- <div [innerHTML]="data.innerHTML"></div>
22
- } @else if (data.componentType) {
23
- <v-dynamic-component
24
- [componentType]="data.componentType"
25
- [data]="$any(data.data)"
26
- ></v-dynamic-component>
27
- }
28
-
29
- <gov-button
30
- color="primary"
31
- size="m"
32
- type="solid"
33
- slot="footer"
34
- (gov-click)="data.confirmButtonFn ? dialogClick(true) : (visible = false)"
35
- >
36
- {{ data.confirmButtonText ?? 'Yes'}}
37
- </gov-button>
38
-
39
- <gov-button
40
- [ngClass]="!data.showCancelButton ? 'd-none' : ''"
41
- color="primary"
42
- size="m"
43
- type="outlined"
44
- slot="footer"
45
- [disabled]="!data.showCancelButton"
46
- (gov-click)="data.cancelButtonFn ? dialogClick(false) : (visible = false)"
47
- >
48
- {{ data.cancelButtonText ?? 'No' }}
49
- </gov-button>
50
- </gov-dialog>
@@ -1,4 +0,0 @@
1
- :host ::ng-deep dialog {
2
- max-width: var(--dialog-max-width, 95%); // default 52.5rem
3
- max-height: var(--dialog-max-height, 95%); // default 100%
4
- }
@@ -1,80 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { ChangeDetectorRef, Component, OnInit } from '@angular/core';
3
- import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
4
- import {
5
- CONFIRM_DIALOG_COMPONENT_TOKEN,
6
- ConfirmDialogCore,
7
- DialogData,
8
- DialogService,
9
- UnsubscribeComponent,
10
- } from '@verisoft/ui-core';
11
- import { takeUntil } from 'rxjs';
12
- import { GovColorPipe } from '../../pipes';
13
- import { DynamicComponent } from '../shared-components';
14
-
15
- @Component({
16
- selector: 'v-confirm-dialog',
17
- standalone: true,
18
- imports: [
19
- CommonModule,
20
- GovDesignSystemModule,
21
- GovColorPipe,
22
- DynamicComponent,
23
- ],
24
- templateUrl: './confirm-dialog.component.html',
25
- styleUrl: './confirm-dialog.component.scss',
26
- providers: [
27
- {
28
- provide: CONFIRM_DIALOG_COMPONENT_TOKEN,
29
- useExisting: ConfirmDialogComponent,
30
- },
31
- ],
32
- })
33
- export class ConfirmDialogComponent
34
- extends UnsubscribeComponent
35
- implements OnInit, ConfirmDialogCore
36
- {
37
- constructor(
38
- private readonly dialogService: DialogService,
39
- private readonly cdr: ChangeDetectorRef
40
- ) {
41
- super();
42
- }
43
-
44
- visible = false;
45
- protected closable = false;
46
- data: DialogData = { severity: 'primary', headerIcon: 'info-circle' };
47
-
48
- ngOnInit(): void {
49
- this.dialogService.showEvent
50
- .pipe(takeUntil(this.destroyed$))
51
- .subscribe((x: DialogData) => {
52
- this.data = x;
53
- this.visible = true;
54
- this.cdr.detectChanges();
55
- });
56
-
57
- this.dialogService.closeEvent
58
- .pipe(takeUntil(this.destroyed$))
59
- .subscribe(() => {
60
- this.data = {};
61
- this.visible = false;
62
- this.cdr.detectChanges();
63
- })
64
- }
65
-
66
- protected dialogClick(confirm: boolean) {
67
- const { confirmButtonFn, cancelButtonFn } = this.data;
68
-
69
- if (confirm && confirmButtonFn) {
70
- confirmButtonFn();
71
- }
72
-
73
- if (!confirm && cancelButtonFn) {
74
- cancelButtonFn();
75
- }
76
-
77
- this.visible = false;
78
- this.cdr.detectChanges();
79
- }
80
- }
@@ -1,8 +0,0 @@
1
- <li
2
- role="option"
3
- class="v-dropdown__item"
4
- [attr.aria-selected]="item?.selected"
5
- [class.is-active]="item?.selected"
6
- >
7
- {{item?.label}}
8
- </li>
@@ -1,18 +0,0 @@
1
- import {
2
- ChangeDetectionStrategy,
3
- Component,
4
- Input,
5
- ViewEncapsulation,
6
- } from '@angular/core';
7
- import { DropDownItemData } from './dropdown.model';
8
-
9
- @Component({
10
- selector: 'v-dropdown-item',
11
- standalone: true,
12
- templateUrl: './dropdown-item.component.html',
13
- changeDetection: ChangeDetectionStrategy.OnPush,
14
- encapsulation: ViewEncapsulation.None,
15
- })
16
- export class DropdownItemComponent<T> {
17
- @Input() item : DropDownItemData<T> | undefined;
18
- }
@@ -1,90 +0,0 @@
1
- <div
2
- class="v-dropdown mb-3"
3
- (keydown)="onKeyDown($event)"
4
- >
5
- <gov-form-control [disabled]="this.ngControl?.disabled">
6
- <gov-form-label
7
- [slot]="label"
8
- [ngClass]="labelClasses"
9
- >
10
- <span [ngClass]="labelClasses">
11
- {{ label ?? '' | translate }}
12
- @if (tooltip) {
13
- <v-tooltip [message]="tooltip | translate" />
14
- }
15
- </span>
16
- </gov-form-label>
17
- <div
18
- class="gov-form-input"
19
- [ngStyle]="forceMinWidth ? {'min-width': '16rem'} : {}"
20
- [ngClass]="inputClasses"
21
- >
22
- <div
23
- class="element d-flex gov-form-input-child"
24
- [ngClass]="labelClasses"
25
- (click)="toggleDropdown()"
26
- >
27
- <div class="v-dropdown__value flex-grow-1 me-1">{{ selectedItem?.label ?? placeholder }}</div>
28
- @if (clearable && ngControl?.enabled && selectedItem !== undefined && selectedItem !== null) {
29
- <gov-icon
30
- [name]="icons.cross"
31
- size="m"
32
- class="v-dropdown__clear me-1"
33
- color="error"
34
- (click)="clearSelection($event)"
35
- />
36
- }
37
- @if (loading) {
38
- <div class="v-dropdown__loader">
39
- <gov-icon [name]="icons.loader" />
40
- </div>
41
- }
42
- <div class="v-dropdown__trigger">
43
- <gov-icon [name]="opened ? icons.chevronUp : icons.chevronDown" />
44
- </div>
45
- </div>
46
- </div>
47
- <div class="position-relative">
48
- @if (opened) {
49
- <div class="v-dropdown__container">
50
- @if (showFilter) {
51
- <div
52
- class="v-dropdown__filter"
53
- #filterTextField
54
- (keydown)="onKeyDown($event)"
55
- >
56
- <v-textfield
57
- placeholder="Search"
58
- [formControl]="filterControl"
59
- iconPos="right"
60
- [icon]="icons.search"
61
- />
62
- </div>
63
- }
64
- @if (!dropdownOptions?.length) {
65
- <div class="v-dropdown__no-item">No option was found.</div>
66
- } @else {
67
- <ul
68
- role="listbox"
69
- class="v-dropdown__list"
70
- >
71
- <cdk-virtual-scroll-viewport
72
- [itemSize]="30"
73
- class="v-dropdown__scroll"
74
- (scrolledIndexChange)="onScroll($event)"
75
- >
76
- <v-dropdown-item
77
- *cdkVirtualFor="let option of dropdownOptions;"
78
- [item]="option"
79
- (click)="selectItem(option, true)"
80
- >
81
- </v-dropdown-item>
82
- </cdk-virtual-scroll-viewport>
83
- </ul>
84
- }
85
- </div>
86
- }
87
- </div>
88
- <v-validation-message [ngControl]="ngControl"></v-validation-message>
89
- </gov-form-control>
90
- </div>