@verisoft/ui-govcz 20.0.1 → 20.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (251) hide show
  1. package/.eslintrc.json +60 -0
  2. package/assets/i18n/cs.json +2 -0
  3. package/assets/i18n/en.json +2 -0
  4. package/jest.config.ts +21 -0
  5. package/ng-package.json +28 -0
  6. package/package.json +9 -19
  7. package/project.json +49 -0
  8. package/src/config.d.ts +10 -0
  9. package/src/index.ts +1 -0
  10. package/src/lib/components/breadcrumb/breadcrumb.component.html +25 -0
  11. package/src/lib/components/breadcrumb/breadcrumb.component.scss +0 -0
  12. package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +21 -0
  13. package/src/lib/components/breadcrumb/breadcrumb.component.ts +28 -0
  14. package/src/lib/components/breadcrumb/index.ts +1 -0
  15. package/src/lib/components/button/button.component.html +28 -0
  16. package/src/lib/components/button/button.component.scss +21 -0
  17. package/src/lib/components/button/button.component.ts +77 -0
  18. package/src/lib/components/button/index.ts +1 -0
  19. package/src/lib/components/calendar/calendar.component.html +28 -0
  20. package/src/lib/components/calendar/calendar.component.scss +0 -0
  21. package/src/lib/components/calendar/calendar.component.ts +77 -0
  22. package/src/lib/components/calendar/index.ts +1 -0
  23. package/src/lib/components/checkbox/checkbox.component.html +23 -0
  24. package/src/lib/components/checkbox/checkbox.component.scss +0 -0
  25. package/src/lib/components/checkbox/checkbox.component.ts +61 -0
  26. package/src/lib/components/checkbox/index.ts +1 -0
  27. package/src/lib/components/confirm-dialog/confirm-dialog.component.html +50 -0
  28. package/src/lib/components/confirm-dialog/confirm-dialog.component.scss +4 -0
  29. package/src/lib/components/confirm-dialog/confirm-dialog.component.ts +79 -0
  30. package/src/lib/components/confirm-dialog/index.ts +1 -0
  31. package/src/lib/components/dropdown/dropdown-item.component.html +8 -0
  32. package/src/lib/components/dropdown/dropdown-item.component.ts +18 -0
  33. package/src/lib/components/dropdown/dropdown.component.html +91 -0
  34. package/src/lib/components/dropdown/dropdown.component.scss +108 -0
  35. package/src/lib/components/dropdown/dropdown.component.spec.ts +21 -0
  36. package/src/lib/components/dropdown/dropdown.component.ts +296 -0
  37. package/src/lib/components/dropdown/dropdown.model.ts +6 -0
  38. package/src/lib/components/dropdown/index.ts +1 -0
  39. package/src/lib/components/dropdown-button/dropdown-button.component.html +31 -0
  40. package/src/lib/components/dropdown-button/dropdown-button.component.ts +34 -0
  41. package/src/lib/components/dropdown-button/index.ts +1 -0
  42. package/src/lib/components/errors/error.component.html +11 -0
  43. package/src/lib/components/errors/error.component.scss +0 -0
  44. package/src/lib/components/errors/error.component.spec.ts +19 -0
  45. package/src/lib/components/errors/error.component.ts +29 -0
  46. package/src/lib/components/errors/index.ts +1 -0
  47. package/src/lib/components/feature-list/directives/feature-list-column.directive.ts +32 -0
  48. package/src/lib/components/feature-list/directives/feature-list-filter-field.directive.ts +8 -0
  49. package/src/lib/components/feature-list/feature-list-filter.pipe.ts +20 -0
  50. package/src/lib/components/feature-list/feature-list-page.component.ts +30 -0
  51. package/src/lib/components/feature-list/feature-list-page.model.ts +42 -0
  52. package/src/lib/components/feature-list/feature-list.component.html +67 -0
  53. package/src/lib/components/feature-list/feature-list.component.scss +10 -0
  54. package/src/lib/components/feature-list/feature-list.component.ts +360 -0
  55. package/src/lib/components/feature-list/index.ts +5 -0
  56. package/src/lib/components/filter/directives/filter-field.directive.ts +35 -0
  57. package/src/lib/components/filter/filter.component.html +78 -0
  58. package/src/lib/components/filter/filter.component.scss +32 -0
  59. package/src/lib/components/filter/filter.component.spec.ts +21 -0
  60. package/src/lib/components/filter/filter.component.stories.ts +23 -0
  61. package/src/lib/components/filter/filter.component.ts +286 -0
  62. package/src/lib/components/filter/filter.model.ts +18 -0
  63. package/src/lib/components/filter/index.ts +2 -0
  64. package/src/lib/components/form-field/form-field.component.html +14 -0
  65. package/src/lib/components/form-field/form-field.component.scss +0 -0
  66. package/src/lib/components/form-field/form-field.component.spec.ts +21 -0
  67. package/src/lib/components/form-field/form-field.component.ts +76 -0
  68. package/src/lib/components/form-field/index.ts +1 -0
  69. package/src/lib/components/header/header.component.html +122 -0
  70. package/src/lib/components/header/header.component.scss +0 -0
  71. package/src/lib/components/header/header.component.ts +90 -0
  72. package/src/lib/components/header/index.ts +1 -0
  73. package/src/lib/components/icon/icon.component.html +11 -0
  74. package/src/lib/components/icon/icon.component.scss +20 -0
  75. package/src/lib/components/icon/icon.component.ts +110 -0
  76. package/src/lib/components/icon/index.ts +2 -0
  77. package/src/lib/components/index.ts +37 -0
  78. package/src/lib/components/input-group/index.ts +1 -0
  79. package/src/lib/components/input-group/input-group.component.html +41 -0
  80. package/src/lib/components/input-group/input-group.component.scss +0 -0
  81. package/src/lib/components/input-group/input-group.component.ts +75 -0
  82. package/src/lib/components/loader/index.ts +1 -0
  83. package/src/lib/components/loader/loader.component.html +7 -0
  84. package/src/lib/components/loader/loader.component.scss +0 -0
  85. package/src/lib/components/loader/loader.component.spec.ts +21 -0
  86. package/src/lib/components/loader/loader.component.ts +33 -0
  87. package/src/lib/components/multiselect/index.ts +1 -0
  88. package/src/lib/components/multiselect/multiselect.component.html +21 -0
  89. package/src/lib/components/multiselect/multiselect.component.scss +0 -0
  90. package/src/lib/components/multiselect/multiselect.component.spec.ts +21 -0
  91. package/src/lib/components/multiselect/multiselect.component.ts +117 -0
  92. package/src/lib/components/number-input/index.ts +1 -0
  93. package/src/lib/components/number-input/number-input.component.html +48 -0
  94. package/src/lib/components/number-input/number-input.component.scss +0 -0
  95. package/src/lib/components/number-input/number-input.component.ts +80 -0
  96. package/src/lib/components/page-header/index.ts +1 -0
  97. package/src/lib/components/page-header/page-header.component.html +3 -0
  98. package/src/lib/components/page-header/page-header.component.scss +11 -0
  99. package/src/lib/components/page-header/page-header.component.spec.ts +21 -0
  100. package/src/lib/components/page-header/page-header.component.ts +27 -0
  101. package/src/lib/components/password/index.ts +1 -0
  102. package/src/lib/components/password/password.component.html +31 -0
  103. package/src/lib/components/password/password.component.scss +0 -0
  104. package/src/lib/components/password/password.component.spec.ts +21 -0
  105. package/src/lib/components/password/password.component.ts +83 -0
  106. package/src/lib/components/radiobutton/index.ts +1 -0
  107. package/src/lib/components/radiobutton/radiobutton.component.html +23 -0
  108. package/src/lib/components/radiobutton/radiobutton.component.scss +0 -0
  109. package/src/lib/components/radiobutton/radiobutton.component.ts +61 -0
  110. package/src/lib/components/search/index.ts +1 -0
  111. package/src/lib/components/search/search.component.html +23 -0
  112. package/src/lib/components/search/search.component.scss +0 -0
  113. package/src/lib/components/search/search.component.ts +45 -0
  114. package/src/lib/components/section/index.ts +1 -0
  115. package/src/lib/components/section/section.component.html +26 -0
  116. package/src/lib/components/section/section.component.scss +0 -0
  117. package/src/lib/components/section/section.component.ts +55 -0
  118. package/src/lib/components/shared-components/action-button-group/action-button-group.component.html +25 -0
  119. package/src/lib/components/shared-components/action-button-group/action-button-group.component.scss +0 -0
  120. package/src/lib/components/shared-components/action-button-group/action-button-group.component.spec.ts +21 -0
  121. package/src/lib/components/shared-components/action-button-group/action-button-group.component.ts +111 -0
  122. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.html +10 -0
  123. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.scss +0 -0
  124. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.spec.ts +21 -0
  125. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.ts +69 -0
  126. package/src/lib/components/shared-components/action-button-group/index.ts +2 -0
  127. package/src/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.ts +142 -0
  128. package/src/lib/components/shared-components/dynamic-component/dynamic-component.component.ts +56 -0
  129. package/src/lib/components/shared-components/dynamic-component/index.ts +2 -0
  130. package/src/lib/components/shared-components/generic-field/generic-field.component.html +98 -0
  131. package/src/lib/components/shared-components/generic-field/generic-field.component.spec.ts +21 -0
  132. package/src/lib/components/shared-components/generic-field/generic-field.component.ts +90 -0
  133. package/src/lib/components/shared-components/generic-field/index.ts +1 -0
  134. package/src/lib/components/shared-components/generic-form/generic-form.component.html +46 -0
  135. package/src/lib/components/shared-components/generic-form/generic-form.component.spec.ts +21 -0
  136. package/src/lib/components/shared-components/generic-form/generic-form.component.ts +56 -0
  137. package/src/lib/components/shared-components/generic-form/generic-form.model.spec.ts +82 -0
  138. package/src/lib/components/shared-components/generic-form/generic-form.model.ts +68 -0
  139. package/src/lib/components/shared-components/generic-form/index.ts +2 -0
  140. package/src/lib/components/shared-components/index.ts +4 -0
  141. package/src/lib/components/side-menu/index.ts +2 -0
  142. package/src/lib/components/side-menu/side-menu.component.html +22 -0
  143. package/src/lib/components/side-menu/side-menu.component.scss +17 -0
  144. package/src/lib/components/side-menu/side-menu.component.ts +42 -0
  145. package/src/lib/components/side-menu/side-menu.module.ts +56 -0
  146. package/src/lib/components/snackbar/index.ts +2 -0
  147. package/src/lib/components/snackbar/services/snackbar.service.ts +73 -0
  148. package/src/lib/components/snackbar/snackbar.component.html +14 -0
  149. package/src/lib/components/snackbar/snackbar.component.scss +0 -0
  150. package/src/lib/components/snackbar/snackbar.component.spec.ts +21 -0
  151. package/src/lib/components/snackbar/snackbar.component.ts +44 -0
  152. package/src/lib/components/snackbar/snackbar.model.ts +10 -0
  153. package/src/lib/components/stepper/index.ts +1 -0
  154. package/src/lib/components/stepper/stepper.component.html +35 -0
  155. package/src/lib/components/stepper/stepper.component.scss +9 -0
  156. package/src/lib/components/stepper/stepper.component.ts +60 -0
  157. package/src/lib/components/switch/index.ts +1 -0
  158. package/src/lib/components/switch/switch.component.html +16 -0
  159. package/src/lib/components/switch/switch.component.scss +0 -0
  160. package/src/lib/components/switch/switch.component.ts +39 -0
  161. package/src/lib/components/tab-view/index.ts +2 -0
  162. package/src/lib/components/tab-view/tab-view-item.component.ts +23 -0
  163. package/src/lib/components/tab-view/tab-view.component.html +51 -0
  164. package/src/lib/components/tab-view/tab-view.component.scss +43 -0
  165. package/src/lib/components/tab-view/tab-view.component.ts +64 -0
  166. package/src/lib/components/tab-view/tab-view.module.ts +25 -0
  167. package/src/lib/components/table/index.ts +1 -0
  168. package/src/lib/components/table/table-pagination-info.component.html +9 -0
  169. package/src/lib/components/table/table-pagination-info.component.ts +22 -0
  170. package/src/lib/components/table/table.component.html +199 -0
  171. package/src/lib/components/table/table.component.scss +192 -0
  172. package/src/lib/components/table/table.component.ts +390 -0
  173. package/src/lib/components/table/table.model.ts +17 -0
  174. package/src/lib/components/table/table.models.ts +12 -0
  175. package/src/lib/components/tag/index.ts +3 -0
  176. package/src/lib/components/tag/tag.component.html +12 -0
  177. package/src/lib/components/tag/tag.component.scss +4 -0
  178. package/src/lib/components/tag/tag.component.ts +44 -0
  179. package/src/lib/components/tag/tag.model.ts +7 -0
  180. package/src/lib/components/textarea/index.ts +1 -0
  181. package/src/lib/components/textarea/textarea.component.html +50 -0
  182. package/src/lib/components/textarea/textarea.component.scss +0 -0
  183. package/src/lib/components/textarea/textarea.component.ts +77 -0
  184. package/src/lib/components/textfield/index.ts +1 -0
  185. package/src/lib/components/textfield/textfield.component.html +34 -0
  186. package/src/lib/components/textfield/textfield.component.scss +0 -0
  187. package/src/lib/components/textfield/textfield.component.ts +112 -0
  188. package/src/lib/components/tooltip/index.ts +1 -0
  189. package/src/lib/components/tooltip/tooltip.component.html +9 -0
  190. package/src/lib/components/tooltip/tooltip.component.ts +19 -0
  191. package/src/lib/icons.ts +36 -0
  192. package/src/lib/index.ts +5 -0
  193. package/src/lib/init.service.ts +11 -0
  194. package/src/lib/interceptors/http-error-message.interceptor.ts +45 -0
  195. package/src/lib/pages/bad-request-page/bad-request-page.component.html +5 -0
  196. package/src/lib/pages/bad-request-page/bad-request-page.component.scss +0 -0
  197. package/src/lib/pages/bad-request-page/bad-request-page.component.ts +14 -0
  198. package/src/lib/pages/error-page/error-page.component.html +5 -0
  199. package/src/lib/pages/error-page/error-page.component.scss +0 -0
  200. package/src/lib/pages/error-page/error-page.component.ts +31 -0
  201. package/src/lib/pages/error-page/error-page.constants.ts +19 -0
  202. package/src/lib/pages/index.ts +3 -0
  203. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.html +5 -0
  204. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.scss +0 -0
  205. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.ts +15 -0
  206. package/src/lib/pages/not-authenticated/index.ts +1 -0
  207. package/src/lib/pages/not-authenticated/not-authenticated.component.html +5 -0
  208. package/src/lib/pages/not-authenticated/not-authenticated.component.ts +13 -0
  209. package/src/lib/pages/not-authorized/index.ts +1 -0
  210. package/src/lib/pages/not-authorized/not-authorized.component.html +5 -0
  211. package/src/lib/pages/not-authorized/not-authorized.component.ts +17 -0
  212. package/src/lib/pages/not-found/index.ts +1 -0
  213. package/src/lib/pages/not-found/not-found.component.html +5 -0
  214. package/src/lib/pages/not-found/not-found.component.ts +17 -0
  215. package/src/lib/pages/not-found-page/not-found-page.component.html +6 -0
  216. package/src/lib/pages/not-found-page/not-found-page.component.scss +0 -0
  217. package/src/lib/pages/not-found-page/not-found-page.component.ts +15 -0
  218. package/src/lib/pipes/color/color.pipe.ts +24 -0
  219. package/src/lib/pipes/index.ts +3 -0
  220. package/src/lib/pipes/multiselect/multiselect-options.pipe.ts +61 -0
  221. package/src/lib/pipes/size/size.pipe.ts +24 -0
  222. package/src/sass/foundations/_colors.scss +4 -0
  223. package/src/sass/foundations/index.scss +1 -0
  224. package/src/sass/integrations/_bootstrap.scss +4 -0
  225. package/src/sass/integrations/index.scss +1 -0
  226. package/src/sass/main.scss +12 -0
  227. package/src/sass/overrides/_gov.scss +4 -0
  228. package/src/sass/overrides/index.scss +1 -0
  229. package/src/sass/tokens/_theme-dark.scss +18 -0
  230. package/src/sass/tokens/_theme-light.scss +9 -0
  231. package/src/sass/tokens/index.scss +3 -0
  232. package/src/sass/utils/_table_filter.scss +4 -0
  233. package/src/sass/utils/index.scss +2 -0
  234. package/{styles → src}/sass/vendors/_bootstrap.scss +1 -0
  235. package/src/test-setup.ts +8 -0
  236. package/styles/dist/main.css +6 -2
  237. package/styles/dist/main.css.map +1 -1
  238. package/tsconfig.json +30 -0
  239. package/tsconfig.lib.json +17 -0
  240. package/tsconfig.lib.prod.json +9 -0
  241. package/tsconfig.spec.json +16 -0
  242. package/fesm2022/verisoft-ui-govcz.mjs +0 -3582
  243. package/fesm2022/verisoft-ui-govcz.mjs.map +0 -1
  244. package/index.d.ts +0 -955
  245. package/styles/sass/main.scss +0 -10
  246. package/styles/sass/utils/_variables.scss +0 -3
  247. package/styles/sass/utils/index.scss +0 -2
  248. /package/{styles → src}/sass/header.css +0 -0
  249. /package/{styles → src}/sass/header.scss +0 -0
  250. /package/{styles → src}/sass/scrollbar.scss +0 -0
  251. /package/{styles → src}/sass/utils/_utils.scss +0 -0
@@ -0,0 +1,82 @@
1
+ import { UntypedFormControl, UntypedFormGroup } from '@angular/forms';
2
+ import { generateFormGroup, GenericFieldDefinition } from './generic-form.model';
3
+
4
+ describe('GenericFormModel', () => {
5
+ describe('generateFormGroup', () => {
6
+ const fields = [{ name: 'name' }, { name: 'age' }];
7
+
8
+ const containsField = (formGroup: UntypedFormGroup, field: GenericFieldDefinition) => expect(formGroup.get(field.name)).toBeDefined();
9
+
10
+ test('Should create a new group when no group was provided', () => {
11
+ const formGroup = generateFormGroup([], undefined, undefined, false);
12
+
13
+ expect(formGroup).toBeDefined();
14
+ });
15
+
16
+ test('Should create a new group when no fields are provided', () => {
17
+ const formGroup = generateFormGroup(
18
+ undefined,
19
+ undefined,
20
+ undefined,
21
+ false
22
+ );
23
+
24
+ expect(formGroup).toBeDefined();
25
+ });
26
+
27
+ test('Should create a new group with defined control when fields are provided', () => {
28
+ const formGroup = generateFormGroup(fields, undefined, undefined, false);
29
+
30
+ expect(formGroup).toBeDefined();
31
+ containsField(formGroup, fields[0]);
32
+ containsField(formGroup, fields[1]);
33
+ });
34
+
35
+ test('Should used input group and creates control when fields are provided and formgroup does not have a controls', () => {
36
+ const inputGroup = new UntypedFormGroup({});
37
+
38
+ const formGroup = generateFormGroup(fields, undefined, inputGroup, false);
39
+
40
+ expect(formGroup).toBe(inputGroup);
41
+ containsField(formGroup, fields[0]);
42
+ });
43
+
44
+ test('Should not remove control from input group when input group is provided and fields does not contain control definition.', () => {
45
+ const inputGroup = new UntypedFormGroup({
46
+ student: new UntypedFormControl(),
47
+ });
48
+
49
+ const formGroup = generateFormGroup(fields, undefined, inputGroup, false);
50
+
51
+ expect(formGroup.get('student')).toBeDefined();
52
+ });
53
+
54
+ test('Should use existing group when input group is provided but have already defined group.', () => {
55
+ const inputGroup = new UntypedFormGroup({
56
+ student: new UntypedFormControl(),
57
+ });
58
+
59
+ const lastGroup = new UntypedFormGroup({
60
+ });
61
+
62
+ const formGroup = generateFormGroup(fields, lastGroup, inputGroup, false);
63
+
64
+ expect(formGroup).toBe(lastGroup);
65
+ containsField(formGroup, fields[0]);
66
+ });
67
+
68
+ test('Should use existing a new input group when last form group exists, but input group was changed.', () => {
69
+ const inputGroup = new UntypedFormGroup({
70
+ student: new UntypedFormControl(),
71
+ });
72
+
73
+ const lastGroup = new UntypedFormGroup({
74
+ });
75
+
76
+ const formGroup = generateFormGroup(fields, lastGroup, inputGroup, true);
77
+
78
+ expect(formGroup).toBe(inputGroup);
79
+ containsField(formGroup, fields[0]);
80
+ });
81
+ });
82
+ });
@@ -0,0 +1,68 @@
1
+ import {
2
+ UntypedFormControl,
3
+ UntypedFormGroup,
4
+ } from '@angular/forms';
5
+ import { GenericFieldDefinition } from '@verisoft/ui-core';
6
+
7
+ export function generateFormGroup(
8
+ fields: GenericFieldDefinition[] | undefined,
9
+ lastGroupValue: UntypedFormGroup | undefined,
10
+ inputGroup: UntypedFormGroup | undefined,
11
+ inputGroupChanged = false
12
+ ): UntypedFormGroup {
13
+ const formGroup =
14
+ (inputGroupChanged
15
+ ? inputGroup ?? lastGroupValue
16
+ : lastGroupValue ?? inputGroup) ?? new UntypedFormGroup({});
17
+
18
+ fields?.forEach((field) => {
19
+ const control = formGroup.get(field.name);
20
+ if (!control) {
21
+ formGroup.addControl(
22
+ field.name,
23
+ new UntypedFormControl(field.value, field.validator)
24
+ );
25
+ } else if (control && control.value !== field.value) {
26
+ control.setValue(field.value);
27
+ control.setValidators(field.validator ?? null);
28
+ }
29
+ else {
30
+ control.setValidators(field.validator ?? null);
31
+ }
32
+
33
+ if (field.readonly && (control || formGroup.get(field.name))) {
34
+ formGroup.get(field.name)?.disable();
35
+ }
36
+ });
37
+ if (!inputGroupChanged) {
38
+ for (const field in formGroup.controls) {
39
+ const control = fields?.find((x) => x.name == field);
40
+ if (!control) {
41
+ formGroup.removeControl(field);
42
+ }
43
+ }
44
+ }
45
+
46
+ return formGroup;
47
+ }
48
+
49
+ export function getColumnClass(value?: number): string | undefined {
50
+ if (!value) {
51
+ return undefined;
52
+ }
53
+
54
+ switch (value) {
55
+ case 1:
56
+ return 'col-12';
57
+ case 2:
58
+ return 'col-12 col-md-6';
59
+ case 3:
60
+ return 'col-12 col-md-4';
61
+ case 4:
62
+ return 'col-12 col-md-3';
63
+ case 6:
64
+ return 'col-12 col-md-2';
65
+ }
66
+
67
+ return 'col-12 col-md-1';
68
+ }
@@ -0,0 +1,2 @@
1
+ export * from './generic-form.component';
2
+ export * from './generic-form.model';
@@ -0,0 +1,4 @@
1
+ export * from './action-button-group';
2
+ export * from './generic-field';
3
+ export * from './generic-form';
4
+ export * from './dynamic-component';
@@ -0,0 +1,2 @@
1
+ export * from './side-menu.component';
2
+ export * from './side-menu.module';
@@ -0,0 +1,22 @@
1
+ <div class="v-side-menu">
2
+ <div class="gov-category-list__col gov-category-list__categories">
3
+ <div class="gov-category-list__col-inner">
4
+ <ul class="main-nav gov-list--plain gov-category-list__nav">
5
+ @for (item of items; track item) {
6
+ @for (child of item.children; track child) {
7
+ <li class="gov-category-list__nav">
8
+ <a class="gov-category-list__nav-link p-2 d-flex align-items-center" [routerLink]="child.url"
9
+ routerLinkActive="is-active" title="{{child.label}}">
10
+ <p class="gov-text--body-s">{{child.label}}
11
+ @if (child.children) {
12
+ <gov-icon [name]="icons.chevronDown" />
13
+ }
14
+ </p>
15
+ </a>
16
+ </li>
17
+ }
18
+ }
19
+ </ul>
20
+ </div>
21
+ </div>
22
+ </div>
@@ -0,0 +1,17 @@
1
+ .v-side-menu {
2
+ a {
3
+ &:hover {
4
+ background-color: var(--background-primary-subtle);
5
+ text-decoration: underline;
6
+ }
7
+
8
+ &.is-active {
9
+ background-color: var(--background-primary);
10
+ color: var(--text-white);
11
+
12
+ & > * {
13
+ color: var(--text-white);
14
+ }
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,42 @@
1
+
2
+ import { Component, EventEmitter, inject, Input, Output, ViewEncapsulation } from '@angular/core';
3
+ import { RouterModule } from '@angular/router';
4
+ import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
5
+ import {
6
+ MenuItem,
7
+ SIDE_MENU_COMPONENT_TOKEN,
8
+ SideMenuCore,
9
+ SideMenuService,
10
+ } from '@verisoft/ui-core';
11
+ import { Icons } from '../../icons';
12
+
13
+ @Component({
14
+ selector: 'v-side-menu',
15
+ imports: [RouterModule, GovDesignSystemModule],
16
+ templateUrl: './side-menu.component.html',
17
+ styleUrl: './side-menu.component.scss',
18
+ providers: [
19
+ {
20
+ provide: SIDE_MENU_COMPONENT_TOKEN,
21
+ useExisting: SideMenuComponent,
22
+ },
23
+ ],
24
+ encapsulation: ViewEncapsulation.None,
25
+ })
26
+ export class SideMenuComponent implements SideMenuCore {
27
+ menuService = inject(SideMenuService);
28
+
29
+ @Input() items: MenuItem[] = [];
30
+
31
+ @Input() logoUrl = '';
32
+
33
+ @Input() userName!: string;
34
+
35
+ @Input() userRole!: any | any[] | undefined;
36
+
37
+ @Output() minimalized = new EventEmitter<boolean>();
38
+
39
+ @Output() itemSelected = new EventEmitter<MenuItem>();
40
+
41
+ icons = Icons;
42
+ }
@@ -0,0 +1,56 @@
1
+ import { NgModule, ModuleWithProviders } from '@angular/core';
2
+ import {
3
+ MENU_TOKEN,
4
+ MenuItem,
5
+ SIDE_MENU_COMPONENT_TOKEN,
6
+ SideMenuModuleConfig,
7
+ SideMenuProviderService,
8
+ UnsubscribeComponent,
9
+ } from '@verisoft/ui-core';
10
+ import { SideMenuComponent } from './side-menu.component';
11
+
12
+ @NgModule({
13
+ providers: [
14
+ SideMenuProviderService,
15
+ {
16
+ provide: SIDE_MENU_COMPONENT_TOKEN,
17
+ useExisting: SideMenuComponent,
18
+ }
19
+ ],
20
+ })
21
+ export class SideMenuModule extends UnsubscribeComponent {
22
+ constructor(private readonly service: SideMenuProviderService) {
23
+ super();
24
+ }
25
+
26
+ static forRoot(
27
+ config?: SideMenuModuleConfig
28
+ ): ModuleWithProviders<SideMenuModule> {
29
+ const moduleWithProvider: ModuleWithProviders<SideMenuModule> = {
30
+ ngModule: SideMenuModule,
31
+ };
32
+
33
+ if (config?.items) {
34
+ moduleWithProvider.providers = [
35
+ {
36
+ provide: MENU_TOKEN,
37
+ useValue: config.items,
38
+ },
39
+ ];
40
+ }
41
+
42
+ return moduleWithProvider;
43
+ }
44
+
45
+ static forChild(menu: MenuItem[]): ModuleWithProviders<SideMenuModule> {
46
+ return {
47
+ ngModule: SideMenuModule,
48
+ providers: [
49
+ {
50
+ provide: MENU_TOKEN,
51
+ useValue: menu,
52
+ },
53
+ ],
54
+ };
55
+ }
56
+ }
@@ -0,0 +1,2 @@
1
+ export * from './services/snackbar.service';
2
+ export * from './snackbar.component';
@@ -0,0 +1,73 @@
1
+ import { Overlay, OverlayRef } from '@angular/cdk/overlay';
2
+ import * as portal from '@angular/cdk/portal';
3
+ import { Injectable, Injector } from '@angular/core';
4
+ import { TranslateService } from '@ngx-translate/core';
5
+ import { SnackbarComponent } from '../snackbar.component';
6
+ import { SnackbarConfig } from '../snackbar.model';
7
+
8
+ @Injectable({
9
+ providedIn: 'root',
10
+ })
11
+ export class SnackbarService {
12
+ constructor(
13
+ private overlay: Overlay,
14
+ private translate: TranslateService,
15
+ private injector: Injector
16
+ ) {}
17
+
18
+ showSuccess(message: string, icon?: string) {
19
+ this.showToast({
20
+ message: this.translate.instant(message),
21
+ icon: icon,
22
+ color: 'success',
23
+ });
24
+ }
25
+
26
+ showInfo(message: string, icon?: string) {
27
+ this.showToast({
28
+ message: this.translate.instant(message),
29
+ icon: icon,
30
+ color: 'primary',
31
+ });
32
+ }
33
+
34
+ showWarn(message: string, icon?: string) {
35
+ this.showToast({
36
+ message: this.translate.instant(message),
37
+ icon: icon,
38
+ color: 'warning',
39
+ });
40
+ }
41
+
42
+ showError(message: string, icon?: string) {
43
+ this.showToast({
44
+ message: this.translate.instant(message),
45
+ icon: icon,
46
+ color: 'error',
47
+ });
48
+ }
49
+
50
+ private showToast(config: SnackbarConfig) {
51
+ const positionStrategy = this.overlay
52
+ .position()
53
+ .global();
54
+
55
+ const overlayRef: OverlayRef = this.overlay.create({
56
+ positionStrategy,
57
+ hasBackdrop: false,
58
+ scrollStrategy: this.overlay.scrollStrategies.noop(),
59
+ });
60
+
61
+ const toastPortal = new portal.ComponentPortal(SnackbarComponent, null, this.createInjector(config));
62
+ overlayRef.attach(toastPortal);
63
+ }
64
+
65
+ private createInjector(config: any) {
66
+ return Injector.create({
67
+ providers: [
68
+ { provide: 'TOAST_CONFIG', useValue: config },
69
+ ],
70
+ parent: this.injector,
71
+ });
72
+ }
73
+ }
@@ -0,0 +1,14 @@
1
+ <gov-toast
2
+ [closeLabel]="config.closeLabel ?? closeLabel"
3
+ [color]="config.color || color"
4
+ [gravity]="config.gravity || gravity"
5
+ [position]="config.position || position"
6
+ [time]="config.time ?? time"
7
+ [type]="config.type || type"
8
+ >
9
+ @if (config.icon || icon) {
10
+ <gov-icon
11
+ [name]="config.icon || icon"
12
+ />
13
+ } {{ config.message || message }}
14
+ </gov-toast>
@@ -0,0 +1,21 @@
1
+ import { ComponentFixture, TestBed } from '@angular/core/testing';
2
+ import { SnackbarComponent } from './snackbar.component';
3
+
4
+ describe('SnackbarComponent', () => {
5
+ let component: SnackbarComponent;
6
+ let fixture: ComponentFixture<SnackbarComponent>;
7
+
8
+ beforeEach(async () => {
9
+ await TestBed.configureTestingModule({
10
+ imports: [SnackbarComponent],
11
+ }).compileComponents();
12
+
13
+ fixture = TestBed.createComponent(SnackbarComponent);
14
+ component = fixture.componentInstance;
15
+ fixture.detectChanges();
16
+ });
17
+
18
+ it('should create', () => {
19
+ expect(component).toBeTruthy();
20
+ });
21
+ });
@@ -0,0 +1,44 @@
1
+
2
+ import { Component, Inject, Input, Optional } from '@angular/core';
3
+ import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
4
+ import { SNACKBAR_COMPONENT_TOKEN, SnackbarCore } from '@verisoft/ui-core';
5
+ import { Icons } from '../../icons';
6
+ import { SnackbarConfig } from './snackbar.model';
7
+
8
+ @Component({
9
+ selector: 'v-snackbar',
10
+ imports: [GovDesignSystemModule],
11
+ templateUrl: './snackbar.component.html',
12
+ styleUrl: './snackbar.component.scss',
13
+ providers: [
14
+ {
15
+ provide: SNACKBAR_COMPONENT_TOKEN,
16
+ useExisting: SnackbarComponent,
17
+ },
18
+ ]
19
+ })
20
+ export class SnackbarComponent
21
+ implements SnackbarCore
22
+ {
23
+ @Input({required: true}) message!: string;
24
+
25
+ @Input() icon!: string;
26
+
27
+ @Input() closeLabel!: string;
28
+
29
+ @Input() color: "error" | "neutral" | "primary" | "success" | "warning" = "primary";
30
+
31
+ @Input() gravity: "bottom" | "top" = "top";
32
+
33
+ @Input() position: "center" | "left" | "right" = "right";
34
+
35
+ @Input() time = 4000;
36
+
37
+ @Input() type: "bold" | "subtle" = "subtle";
38
+
39
+ icons = Icons;
40
+
41
+ constructor(
42
+ @Optional() @Inject('TOAST_CONFIG') public config: SnackbarConfig,
43
+ ) { }
44
+ }
@@ -0,0 +1,10 @@
1
+ export interface SnackbarConfig {
2
+ message: string;
3
+ icon?: string;
4
+ closeLabel?: string;
5
+ color?: "error" | "neutral" | "primary" | "success" | "warning";
6
+ gravity?: "bottom" | "top";
7
+ position?: "center" | "left" | "right";
8
+ time?: number;
9
+ type?: "bold" | "subtle";
10
+ }
@@ -0,0 +1 @@
1
+ export * from './stepper.component';
@@ -0,0 +1,35 @@
1
+ <gov-stepper
2
+ [ngClass]="layout === 'vertical' ? 'd-block' : 'd-flex justify-content-between'"
3
+ [size]="size | govSize"
4
+ >
5
+ @for (item of items; track item; let index = $index) {
6
+ <gov-stepper-item
7
+ [ngClass]="{ 'active-step': index === currentStep }"
8
+ >
9
+ <span
10
+ slot="prefix"
11
+ [ngStyle]="{ 'background-color': index === currentStep ? 'var(--color-primary-300)' : 'var(--color-primary-600)' }"
12
+ >
13
+ {{ item.prefix }}
14
+ </span>
15
+ <p slot="headline">{{ item.header }}</p>
16
+ <p slot="annotation">{{ item.annotation }}</p>
17
+ </gov-stepper-item>
18
+ }
19
+ </gov-stepper>
20
+ <div class="d-flex pt-4 justify-content-between">
21
+ @if (currentStep > 0) {
22
+ <v-button
23
+ [label]="'Back'"
24
+ [size]="size"
25
+ (click)="previousStep()"
26
+ />
27
+ }
28
+ @if (currentStep < steps - 1) {
29
+ <v-button
30
+ [label]="'Next'"
31
+ [size]="size"
32
+ (click)="nextStep()"
33
+ />
34
+ }
35
+ </div>
@@ -0,0 +1,9 @@
1
+ gov-stepper-item, .gov-stepper-item {
2
+ width: auto !important;
3
+ }
4
+
5
+ .active-step {
6
+ background-color: var(--color-primary-300);
7
+ border: 1px solid var(--color-primary-600);
8
+ border-radius: 0.5rem;
9
+ }
@@ -0,0 +1,60 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { ChangeDetectionStrategy, Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
3
+ import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
4
+ import {
5
+ StepperCore,
6
+ STEPPER_COMPONENT_TOKEN,
7
+ StepperItem,
8
+ FieldSizeType,
9
+ FieldSize,
10
+ LayoutType,
11
+ LayoutTypeType,
12
+ } from '@verisoft/ui-core';
13
+ import { GovSizePipe } from '../../pipes';
14
+ import { ButtonComponent } from '../button';
15
+ @Component({
16
+ selector: 'v-stepper',
17
+ imports: [
18
+ CommonModule,
19
+ ButtonComponent,
20
+ GovDesignSystemModule,
21
+ GovSizePipe,
22
+ ],
23
+ templateUrl: './stepper.component.html',
24
+ styleUrl: './stepper.component.scss',
25
+ changeDetection: ChangeDetectionStrategy.OnPush,
26
+ providers: [
27
+ { provide: STEPPER_COMPONENT_TOKEN, useExisting: StepperComponent },
28
+ ]
29
+ })
30
+ export class StepperComponent
31
+ implements StepperCore, OnInit
32
+ {
33
+ @Input() items: StepperItem[] = [];
34
+ @Input() size: FieldSizeType | undefined = FieldSize.medium;
35
+ @Input() icon!: string;
36
+ @Input() prefix!: string;
37
+ @Input() annotation!: string;
38
+ @Input() label!: string;
39
+ @Input() layout: LayoutTypeType = LayoutType.horizontal;
40
+ @Output() activeIndexChange = new EventEmitter<number>();
41
+
42
+ steps = 0;
43
+ currentStep = 0;
44
+
45
+ ngOnInit(): void {
46
+ this.steps = this.items.length;
47
+ }
48
+
49
+ previousStep(): void {
50
+ if (this.currentStep > 0) {
51
+ this.currentStep--;
52
+ }
53
+ }
54
+
55
+ nextStep(): void {
56
+ if (this.currentStep < this.items.length - 1) {
57
+ this.currentStep++;
58
+ }
59
+ }
60
+ }
@@ -0,0 +1 @@
1
+ export * from './switch.component'
@@ -0,0 +1,16 @@
1
+ <gov-form-control>
2
+ <gov-form-switch
3
+ [formControl]="formControl"
4
+ [size]="size | govSize"
5
+ [required]="required"
6
+ [name]="name"
7
+ [invalid]="ngControl?.errors"
8
+ >
9
+ @if (label && !noLabel) {
10
+ <gov-form-label [size]="size" slot="label">
11
+ {{ label }}
12
+ </gov-form-label>
13
+ }
14
+ </gov-form-switch>
15
+ <v-validation-message [ngControl]="ngControl"></v-validation-message>
16
+ </gov-form-control>
@@ -0,0 +1,39 @@
1
+
2
+ import { ChangeDetectionStrategy, Component, Input, Optional, Self } from "@angular/core";
3
+ import { ReactiveFormsModule, NgControl } from "@angular/forms";
4
+ import { GovDesignSystemModule } from "@gov-design-system-ce/angular";
5
+ import { SWITCH_COMPONENT_TOKEN, SwitchCore, BaseFormInputComponent, FieldSizeType, FieldSize } from "@verisoft/ui-core";
6
+ import { Icons } from "../../icons";
7
+ import { GovSizePipe } from "../../pipes";
8
+ import { ErrorComponent } from "../errors";
9
+
10
+ @Component({
11
+ selector: "v-switch",
12
+ styleUrl: "./switch.component.scss",
13
+ templateUrl: './switch.component.html',
14
+ imports: [
15
+ GovDesignSystemModule,
16
+ ReactiveFormsModule,
17
+ GovSizePipe,
18
+ ErrorComponent
19
+ ],
20
+ changeDetection: ChangeDetectionStrategy.OnPush,
21
+ providers: [{
22
+ provide: SWITCH_COMPONENT_TOKEN,
23
+ useExisting: SwitchComponent,
24
+ }]
25
+ })
26
+ export class SwitchComponent
27
+ extends BaseFormInputComponent
28
+ implements SwitchCore
29
+ {
30
+ @Input() size: FieldSizeType = FieldSize.medium;
31
+ @Input() noLabel = false;
32
+ @Input() name!: string;
33
+
34
+ icons = Icons;
35
+
36
+ constructor(@Optional() @Self() ngControl: NgControl) {
37
+ super(ngControl);
38
+ }
39
+ }
@@ -0,0 +1,2 @@
1
+ export * from './tab-view.component';
2
+ export * from './tab-view-item.component';
@@ -0,0 +1,23 @@
1
+ import { Component, Input, ViewChild, TemplateRef } from '@angular/core';
2
+ import { TabViewItemCore } from '@verisoft/ui-core';
3
+
4
+ @Component({
5
+
6
+ selector: 'v-tab-view-item',
7
+ template: `<ng-template #contentTemplate>
8
+ <ng-content></ng-content>
9
+ </ng-template>`
10
+ })
11
+ export class TabViewItemComponent
12
+ implements TabViewItemCore {
13
+
14
+ @Input() id?: string;
15
+ @Input() index?: number;
16
+ @Input() disabled = false;
17
+ @Input() title!: string;
18
+ @Input() content?: string;
19
+ @Input() url?: string;
20
+
21
+ @ViewChild('contentTemplate', { static: true })
22
+ contentTemplate!: TemplateRef<any>;
23
+ }