@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.
- package/README.md +52 -3
- package/esm2022/index.mjs +2 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +34 -0
- package/esm2022/lib/components/breadcrumb/index.mjs +2 -0
- package/esm2022/lib/components/button/button.component.mjs +87 -0
- package/esm2022/lib/components/button/index.mjs +2 -0
- package/esm2022/lib/components/calendar/calendar.component.mjs +87 -0
- package/esm2022/lib/components/calendar/index.mjs +2 -0
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +62 -0
- package/esm2022/lib/components/checkbox/index.mjs +2 -0
- package/esm2022/lib/components/confirm-dialog/confirm-dialog.component.mjs +72 -0
- package/esm2022/lib/components/confirm-dialog/index.mjs +2 -0
- package/esm2022/lib/components/dropdown/dropdown-item.component.mjs +14 -0
- package/esm2022/lib/components/dropdown/dropdown.component.mjs +280 -0
- package/esm2022/lib/components/dropdown/dropdown.model.mjs +2 -0
- package/esm2022/lib/components/dropdown/index.mjs +2 -0
- package/esm2022/lib/components/errors/error.component.mjs +34 -0
- package/esm2022/lib/components/errors/index.mjs +2 -0
- package/esm2022/lib/components/form-field/form-field.component.mjs +92 -0
- package/esm2022/lib/components/form-field/index.mjs +2 -0
- package/esm2022/lib/components/header/header.component.mjs +85 -0
- package/esm2022/lib/components/header/index.mjs +2 -0
- package/esm2022/lib/components/index.mjs +34 -0
- package/esm2022/lib/components/input-group/index.mjs +2 -0
- package/esm2022/lib/components/input-group/input-group.component.mjs +89 -0
- package/esm2022/lib/components/loader/index.mjs +2 -0
- package/esm2022/lib/components/loader/loader.component.mjs +34 -0
- package/esm2022/lib/components/multiselect/index.mjs +2 -0
- package/esm2022/lib/components/multiselect/multiselect.component.mjs +121 -0
- package/esm2022/lib/components/number-input/index.mjs +2 -0
- package/esm2022/lib/components/number-input/number-input.component.mjs +104 -0
- package/esm2022/lib/components/page-header/index.mjs +2 -0
- package/esm2022/lib/components/page-header/page-header.component.mjs +28 -0
- package/esm2022/lib/components/password/index.mjs +2 -0
- package/esm2022/lib/components/password/password.component.mjs +94 -0
- package/esm2022/lib/components/radiobutton/index.mjs +2 -0
- package/esm2022/lib/components/radiobutton/radiobutton.component.mjs +50 -0
- package/esm2022/lib/components/search/index.mjs +2 -0
- package/esm2022/lib/components/search/search.component.mjs +40 -0
- package/esm2022/lib/components/section/index.mjs +2 -0
- package/esm2022/lib/components/section/section.component.mjs +70 -0
- package/esm2022/lib/components/shared-components/action-button-group/action-button-group.component.mjs +97 -0
- package/esm2022/lib/components/shared-components/action-button-group/components/action-button/action-button.component.mjs +64 -0
- package/esm2022/lib/components/shared-components/action-button-group/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.mjs +91 -0
- package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component.component.mjs +42 -0
- package/esm2022/lib/components/shared-components/dynamic-component/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-column.directive.mjs +43 -0
- package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.mjs +16 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-filter.pipe.mjs +24 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-page.component.mjs +43 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-page.model.mjs +16 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list.component.mjs +285 -0
- package/esm2022/lib/components/shared-components/feature-list/index.mjs +6 -0
- package/esm2022/lib/components/shared-components/filter/directives/filter-field.directive.mjs +53 -0
- package/esm2022/lib/components/shared-components/filter/filter.component.mjs +195 -0
- package/esm2022/lib/components/shared-components/filter/filter.model.mjs +16 -0
- package/esm2022/lib/components/shared-components/filter/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/generic-field/generic-field.component.mjs +98 -0
- package/esm2022/lib/components/shared-components/generic-field/index.mjs +2 -0
- package/esm2022/lib/components/shared-components/generic-form/generic-form.component.mjs +46 -0
- package/esm2022/lib/components/shared-components/generic-form/generic-form.model.mjs +50 -0
- package/esm2022/lib/components/shared-components/generic-form/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/index.mjs +7 -0
- package/esm2022/lib/components/side-menu/index.mjs +3 -0
- package/esm2022/lib/components/side-menu/side-menu.component.mjs +48 -0
- package/esm2022/lib/components/side-menu/side-menu.module.mjs +73 -0
- package/esm2022/lib/components/snackbar/index.mjs +3 -0
- package/esm2022/lib/components/snackbar/services/snackbar.service.mjs +75 -0
- package/esm2022/lib/components/snackbar/snackbar.component.mjs +61 -0
- package/esm2022/lib/components/snackbar/snackbar.model.mjs +2 -0
- package/esm2022/lib/components/stepper/index.mjs +2 -0
- package/esm2022/lib/components/stepper/stepper.component.mjs +66 -0
- package/esm2022/lib/components/switch/index.mjs +2 -0
- package/esm2022/lib/components/switch/switch.component.mjs +45 -0
- package/esm2022/lib/components/tab-view/index.mjs +4 -0
- package/esm2022/lib/components/tab-view/tab-view-item.component.mjs +41 -0
- package/esm2022/lib/components/tab-view/tab-view.component.mjs +56 -0
- package/esm2022/lib/components/tab-view/tab-view.module.mjs +41 -0
- package/esm2022/lib/components/table/index.mjs +2 -0
- package/esm2022/lib/components/table/table-pagination-info.component.mjs +32 -0
- package/esm2022/lib/components/table/table.component.mjs +359 -0
- package/esm2022/lib/components/table/table.model.mjs +14 -0
- package/esm2022/lib/components/textarea/index.mjs +2 -0
- package/esm2022/lib/components/textarea/textarea.component.mjs +95 -0
- package/esm2022/lib/components/textfield/index.mjs +2 -0
- package/esm2022/lib/components/textfield/textfield.component.mjs +124 -0
- package/esm2022/lib/components/tooltip/index.mjs +2 -0
- package/esm2022/lib/components/tooltip/tooltip.component.mjs +66 -0
- package/esm2022/lib/components/tristatecheckbox/index.mjs +2 -0
- package/esm2022/lib/components/tristatecheckbox/tristatecheckbox.component.mjs +89 -0
- package/esm2022/lib/icons.mjs +35 -0
- package/esm2022/lib/index.mjs +6 -0
- package/esm2022/lib/init.service.mjs +17 -0
- package/esm2022/lib/pages/index.mjs +4 -0
- package/esm2022/lib/pages/not-authenticated/index.mjs +2 -0
- package/esm2022/lib/pages/not-authenticated/not-authenticated.component.mjs +17 -0
- package/esm2022/lib/pages/not-authorized/index.mjs +2 -0
- package/esm2022/lib/pages/not-authorized/not-authorized.component.mjs +20 -0
- package/esm2022/lib/pages/not-found/index.mjs +2 -0
- package/esm2022/lib/pages/not-found/not-found.component.mjs +20 -0
- package/esm2022/lib/pipes/color/color.pipe.mjs +27 -0
- package/esm2022/lib/pipes/index.mjs +4 -0
- package/esm2022/lib/pipes/multiselect/multiselect-options.pipe.mjs +52 -0
- package/esm2022/lib/pipes/size/size.pipe.mjs +23 -0
- package/esm2022/verisoft-ui-govcz.mjs +5 -0
- package/fesm2022/verisoft-ui-govcz.mjs +3742 -0
- package/fesm2022/verisoft-ui-govcz.mjs.map +1 -0
- package/index.d.ts +1 -0
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +7 -0
- package/{src/lib/components/breadcrumb/index.ts → lib/components/breadcrumb/index.d.ts} +1 -1
- package/lib/components/button/button.component.d.ts +26 -0
- package/lib/components/button/index.d.ts +1 -0
- package/lib/components/calendar/calendar.component.d.ts +23 -0
- package/lib/components/calendar/index.d.ts +1 -0
- package/lib/components/checkbox/checkbox.component.d.ts +15 -0
- package/lib/components/checkbox/index.d.ts +1 -0
- package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +15 -0
- package/{src/lib/components/confirm-dialog/index.ts → lib/components/confirm-dialog/index.d.ts} +1 -1
- package/lib/components/dropdown/dropdown-item.component.d.ts +7 -0
- package/lib/components/dropdown/dropdown.component.d.ts +65 -0
- package/{src/lib/components/dropdown/dropdown.model.ts → lib/components/dropdown/dropdown.model.d.ts} +6 -6
- package/{src/lib/components/dropdown/index.ts → lib/components/dropdown/index.d.ts} +1 -1
- package/lib/components/errors/error.component.d.ts +14 -0
- package/lib/components/errors/index.d.ts +1 -0
- package/lib/components/form-field/form-field.component.d.ts +25 -0
- package/{src/lib/components/form-field/index.ts → lib/components/form-field/index.d.ts} +1 -1
- package/lib/components/header/header.component.d.ts +25 -0
- package/lib/components/header/index.d.ts +1 -0
- package/{src/lib/components/index.ts → lib/components/index.d.ts} +33 -33
- package/lib/components/input-group/index.d.ts +1 -0
- package/lib/components/input-group/input-group.component.d.ts +24 -0
- package/lib/components/loader/index.d.ts +1 -0
- package/lib/components/loader/loader.component.d.ts +8 -0
- package/lib/components/multiselect/index.d.ts +1 -0
- package/lib/components/multiselect/multiselect.component.d.ts +35 -0
- package/lib/components/number-input/index.d.ts +1 -0
- package/lib/components/number-input/number-input.component.d.ts +29 -0
- package/lib/components/page-header/index.d.ts +1 -0
- package/lib/components/page-header/page-header.component.d.ts +9 -0
- package/{src/lib/components/password/index.ts → lib/components/password/index.d.ts} +1 -1
- package/lib/components/password/password.component.d.ts +23 -0
- package/lib/components/radiobutton/index.d.ts +1 -0
- package/lib/components/radiobutton/radiobutton.component.d.ts +12 -0
- package/lib/components/search/index.d.ts +1 -0
- package/lib/components/search/search.component.d.ts +14 -0
- package/lib/components/section/index.d.ts +1 -0
- package/lib/components/section/section.component.d.ts +18 -0
- package/lib/components/shared-components/action-button-group/action-button-group.component.d.ts +29 -0
- package/lib/components/shared-components/action-button-group/components/action-button/action-button.component.d.ts +24 -0
- package/{src/lib/components/shared-components/action-button-group/index.ts → lib/components/shared-components/action-button-group/index.d.ts} +2 -2
- package/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.d.ts +17 -0
- package/lib/components/shared-components/dynamic-component/dynamic-component.component.d.ts +16 -0
- package/{src/lib/components/shared-components/dynamic-component/index.ts → lib/components/shared-components/dynamic-component/index.d.ts} +2 -2
- package/lib/components/shared-components/feature-list/directives/feature-list-column.directive.d.ts +10 -0
- package/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.d.ts +6 -0
- package/lib/components/shared-components/feature-list/feature-list-filter.pipe.d.ts +9 -0
- package/lib/components/shared-components/feature-list/feature-list-page.component.d.ts +9 -0
- package/lib/components/shared-components/feature-list/feature-list-page.model.d.ts +23 -0
- package/lib/components/shared-components/feature-list/feature-list.component.d.ts +62 -0
- package/{src/lib/components/shared-components/feature-list/index.ts → lib/components/shared-components/feature-list/index.d.ts} +5 -5
- package/lib/components/shared-components/filter/directives/filter-field.directive.d.ts +20 -0
- package/lib/components/shared-components/filter/filter.component.d.ts +53 -0
- package/lib/components/shared-components/filter/filter.model.d.ts +2 -0
- package/{src/lib/components/shared-components/filter/index.ts → lib/components/shared-components/filter/index.d.ts} +2 -2
- package/lib/components/shared-components/generic-field/generic-field.component.d.ts +28 -0
- package/{src/lib/components/shared-components/generic-field/index.ts → lib/components/shared-components/generic-field/index.d.ts} +1 -1
- package/lib/components/shared-components/generic-form/generic-form.component.d.ts +15 -0
- package/lib/components/shared-components/generic-form/generic-form.model.d.ts +4 -0
- package/{src/lib/components/shared-components/generic-form/index.ts → lib/components/shared-components/generic-form/index.d.ts} +2 -2
- package/{src/lib/components/shared-components/index.ts → lib/components/shared-components/index.d.ts} +6 -6
- package/{src/lib/components/side-menu/index.ts → lib/components/side-menu/index.d.ts} +2 -2
- package/lib/components/side-menu/side-menu.component.d.ts +15 -0
- package/lib/components/side-menu/side-menu.module.d.ts +12 -0
- package/{src/lib/components/snackbar/index.ts → lib/components/snackbar/index.d.ts} +2 -2
- package/lib/components/snackbar/services/snackbar.service.d.ts +18 -0
- package/lib/components/snackbar/snackbar.component.d.ts +18 -0
- package/{src/lib/components/snackbar/snackbar.model.ts → lib/components/snackbar/snackbar.model.d.ts} +10 -10
- package/lib/components/stepper/index.d.ts +1 -0
- package/lib/components/stepper/stepper.component.d.ts +20 -0
- package/lib/components/switch/index.d.ts +1 -0
- package/lib/components/switch/switch.component.d.ts +12 -0
- package/{src/lib/components/tab-view/index.ts → lib/components/tab-view/index.d.ts} +3 -3
- package/lib/components/tab-view/tab-view-item.component.d.ts +14 -0
- package/lib/components/tab-view/tab-view.component.d.ts +19 -0
- package/lib/components/tab-view/tab-view.module.d.ts +12 -0
- package/{src/lib/components/table/index.ts → lib/components/table/index.d.ts} +1 -1
- package/lib/components/table/table-pagination-info.component.d.ts +12 -0
- package/lib/components/table/table.component.d.ts +91 -0
- package/lib/components/table/table.model.d.ts +3 -0
- package/lib/components/textarea/index.d.ts +1 -0
- package/lib/components/textarea/textarea.component.d.ts +25 -0
- package/lib/components/textfield/index.d.ts +1 -0
- package/lib/components/textfield/textfield.component.d.ts +28 -0
- package/lib/components/tooltip/index.d.ts +1 -0
- package/lib/components/tooltip/tooltip.component.d.ts +18 -0
- package/{src/lib/components/tristatecheckbox/index.ts → lib/components/tristatecheckbox/index.d.ts} +1 -1
- package/lib/components/tristatecheckbox/tristatecheckbox.component.d.ts +27 -0
- package/lib/icons.d.ts +2 -0
- package/{src/lib/index.ts → lib/index.d.ts} +5 -5
- package/lib/init.service.d.ts +6 -0
- package/{src/lib/pages/index.ts → lib/pages/index.d.ts} +3 -3
- package/{src/lib/pages/not-authenticated/index.ts → lib/pages/not-authenticated/index.d.ts} +1 -1
- package/lib/pages/not-authenticated/not-authenticated.component.d.ts +5 -0
- package/{src/lib/pages/not-authorized/index.ts → lib/pages/not-authorized/index.d.ts} +1 -1
- package/lib/pages/not-authorized/not-authorized.component.d.ts +6 -0
- package/{src/lib/pages/not-found/index.ts → lib/pages/not-found/index.d.ts} +1 -1
- package/lib/pages/not-found/not-found.component.d.ts +6 -0
- package/lib/pipes/color/color.pipe.d.ts +8 -0
- package/{src/lib/pipes/index.ts → lib/pipes/index.d.ts} +3 -3
- package/lib/pipes/multiselect/multiselect-options.pipe.d.ts +9 -0
- package/lib/pipes/size/size.pipe.d.ts +8 -0
- package/package.json +38 -23
- package/.eslintrc.json +0 -48
- package/jest.config.ts +0 -21
- package/ng-package.json +0 -15
- package/project.json +0 -49
- package/src/assets/main.css +0 -18
- package/src/config.d.ts +0 -10
- package/src/index.ts +0 -1
- package/src/lib/components/breadcrumb/breadcrumb.component.html +0 -23
- package/src/lib/components/breadcrumb/breadcrumb.component.scss +0 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +0 -21
- package/src/lib/components/breadcrumb/breadcrumb.component.ts +0 -30
- package/src/lib/components/button/button.component.html +0 -26
- package/src/lib/components/button/button.component.scss +0 -0
- package/src/lib/components/button/button.component.ts +0 -72
- package/src/lib/components/button/index.ts +0 -1
- package/src/lib/components/calendar/calendar.component.html +0 -28
- package/src/lib/components/calendar/calendar.component.scss +0 -0
- package/src/lib/components/calendar/calendar.component.ts +0 -79
- package/src/lib/components/calendar/index.ts +0 -1
- package/src/lib/components/checkbox/checkbox.component.html +0 -23
- package/src/lib/components/checkbox/checkbox.component.scss +0 -0
- package/src/lib/components/checkbox/checkbox.component.ts +0 -62
- package/src/lib/components/checkbox/index.ts +0 -1
- package/src/lib/components/confirm-dialog/confirm-dialog.component.html +0 -50
- package/src/lib/components/confirm-dialog/confirm-dialog.component.scss +0 -4
- package/src/lib/components/confirm-dialog/confirm-dialog.component.ts +0 -80
- package/src/lib/components/dropdown/dropdown-item.component.html +0 -8
- package/src/lib/components/dropdown/dropdown-item.component.ts +0 -18
- package/src/lib/components/dropdown/dropdown.component.html +0 -90
- package/src/lib/components/dropdown/dropdown.component.scss +0 -108
- package/src/lib/components/dropdown/dropdown.component.spec.ts +0 -21
- package/src/lib/components/dropdown/dropdown.component.ts +0 -297
- package/src/lib/components/errors/error.component.html +0 -11
- package/src/lib/components/errors/error.component.scss +0 -0
- package/src/lib/components/errors/error.component.spec.ts +0 -19
- package/src/lib/components/errors/error.component.ts +0 -30
- package/src/lib/components/errors/index.ts +0 -1
- package/src/lib/components/form-field/form-field.component.html +0 -14
- package/src/lib/components/form-field/form-field.component.scss +0 -0
- package/src/lib/components/form-field/form-field.component.spec.ts +0 -21
- package/src/lib/components/form-field/form-field.component.ts +0 -78
- package/src/lib/components/header/header.component.html +0 -122
- package/src/lib/components/header/header.component.scss +0 -0
- package/src/lib/components/header/header.component.ts +0 -91
- package/src/lib/components/header/index.ts +0 -1
- package/src/lib/components/input-group/index.ts +0 -1
- package/src/lib/components/input-group/input-group.component.html +0 -41
- package/src/lib/components/input-group/input-group.component.scss +0 -0
- package/src/lib/components/input-group/input-group.component.ts +0 -77
- package/src/lib/components/loader/index.ts +0 -1
- package/src/lib/components/loader/loader.component.html +0 -7
- package/src/lib/components/loader/loader.component.scss +0 -0
- package/src/lib/components/loader/loader.component.spec.ts +0 -21
- package/src/lib/components/loader/loader.component.ts +0 -33
- package/src/lib/components/multiselect/index.ts +0 -1
- package/src/lib/components/multiselect/multiselect.component.html +0 -21
- package/src/lib/components/multiselect/multiselect.component.scss +0 -0
- package/src/lib/components/multiselect/multiselect.component.spec.ts +0 -21
- package/src/lib/components/multiselect/multiselect.component.ts +0 -119
- package/src/lib/components/number-input/index.ts +0 -1
- package/src/lib/components/number-input/number-input.component.html +0 -48
- package/src/lib/components/number-input/number-input.component.scss +0 -0
- package/src/lib/components/number-input/number-input.component.ts +0 -82
- package/src/lib/components/page-header/index.ts +0 -1
- package/src/lib/components/page-header/page-header.component.html +0 -3
- package/src/lib/components/page-header/page-header.component.scss +0 -11
- package/src/lib/components/page-header/page-header.component.spec.ts +0 -21
- package/src/lib/components/page-header/page-header.component.ts +0 -29
- package/src/lib/components/password/password.component.html +0 -31
- package/src/lib/components/password/password.component.scss +0 -0
- package/src/lib/components/password/password.component.spec.ts +0 -21
- package/src/lib/components/password/password.component.ts +0 -85
- package/src/lib/components/radiobutton/index.ts +0 -1
- package/src/lib/components/radiobutton/radiobutton.component.html +0 -23
- package/src/lib/components/radiobutton/radiobutton.component.scss +0 -0
- package/src/lib/components/radiobutton/radiobutton.component.ts +0 -58
- package/src/lib/components/search/index.ts +0 -1
- package/src/lib/components/search/search.component.html +0 -23
- package/src/lib/components/search/search.component.scss +0 -0
- package/src/lib/components/search/search.component.ts +0 -47
- package/src/lib/components/section/index.ts +0 -1
- package/src/lib/components/section/section.component.html +0 -26
- package/src/lib/components/section/section.component.scss +0 -0
- package/src/lib/components/section/section.component.ts +0 -57
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.html +0 -27
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.scss +0 -0
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.spec.ts +0 -21
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.ts +0 -114
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.html +0 -11
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.scss +0 -0
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.spec.ts +0 -21
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.ts +0 -71
- package/src/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.ts +0 -142
- package/src/lib/components/shared-components/dynamic-component/dynamic-component.component.ts +0 -56
- package/src/lib/components/shared-components/feature-list/directives/feature-list-column.directive.ts +0 -32
- package/src/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.ts +0 -8
- package/src/lib/components/shared-components/feature-list/feature-list-filter.pipe.ts +0 -21
- package/src/lib/components/shared-components/feature-list/feature-list-page.component.ts +0 -31
- package/src/lib/components/shared-components/feature-list/feature-list-page.model.ts +0 -42
- package/src/lib/components/shared-components/feature-list/feature-list.component.html +0 -59
- package/src/lib/components/shared-components/feature-list/feature-list.component.scss +0 -10
- package/src/lib/components/shared-components/feature-list/feature-list.component.ts +0 -342
- package/src/lib/components/shared-components/filter/directives/filter-field.directive.ts +0 -35
- package/src/lib/components/shared-components/filter/filter.component.html +0 -68
- package/src/lib/components/shared-components/filter/filter.component.scss +0 -0
- package/src/lib/components/shared-components/filter/filter.component.spec.ts +0 -21
- package/src/lib/components/shared-components/filter/filter.component.stories.ts +0 -23
- package/src/lib/components/shared-components/filter/filter.component.ts +0 -284
- package/src/lib/components/shared-components/filter/filter.model.ts +0 -18
- package/src/lib/components/shared-components/generic-field/generic-field.component.html +0 -97
- package/src/lib/components/shared-components/generic-field/generic-field.component.spec.ts +0 -21
- package/src/lib/components/shared-components/generic-field/generic-field.component.ts +0 -94
- package/src/lib/components/shared-components/generic-form/generic-form.component.html +0 -46
- package/src/lib/components/shared-components/generic-form/generic-form.component.spec.ts +0 -21
- package/src/lib/components/shared-components/generic-form/generic-form.component.ts +0 -57
- package/src/lib/components/shared-components/generic-form/generic-form.model.spec.ts +0 -82
- package/src/lib/components/shared-components/generic-form/generic-form.model.ts +0 -68
- package/src/lib/components/side-menu/side-menu.component.html +0 -25
- package/src/lib/components/side-menu/side-menu.component.scss +0 -23
- package/src/lib/components/side-menu/side-menu.component.ts +0 -42
- package/src/lib/components/side-menu/side-menu.module.ts +0 -64
- package/src/lib/components/sidemenu/index.ts +0 -2
- package/src/lib/components/snackbar/services/snackbar.service.ts +0 -73
- package/src/lib/components/snackbar/snackbar.component.html +0 -14
- package/src/lib/components/snackbar/snackbar.component.scss +0 -0
- package/src/lib/components/snackbar/snackbar.component.spec.ts +0 -21
- package/src/lib/components/snackbar/snackbar.component.ts +0 -45
- package/src/lib/components/stepper/index.ts +0 -1
- package/src/lib/components/stepper/stepper.component.html +0 -35
- package/src/lib/components/stepper/stepper.component.scss +0 -9
- package/src/lib/components/stepper/stepper.component.ts +0 -61
- package/src/lib/components/switch/index.ts +0 -1
- package/src/lib/components/switch/switch.component.html +0 -16
- package/src/lib/components/switch/switch.component.scss +0 -0
- package/src/lib/components/switch/switch.component.ts +0 -37
- package/src/lib/components/tab-view/tab-view-item.component.ts +0 -23
- package/src/lib/components/tab-view/tab-view.component.html +0 -51
- package/src/lib/components/tab-view/tab-view.component.scss +0 -43
- package/src/lib/components/tab-view/tab-view.component.ts +0 -61
- package/src/lib/components/tab-view/tab-view.module.ts +0 -25
- package/src/lib/components/table/table-pagination-info.component.html +0 -9
- package/src/lib/components/table/table-pagination-info.component.ts +0 -22
- package/src/lib/components/table/table.component.html +0 -198
- package/src/lib/components/table/table.component.scss +0 -193
- package/src/lib/components/table/table.component.ts +0 -387
- package/src/lib/components/table/table.model.ts +0 -17
- package/src/lib/components/table/table.models.ts +0 -12
- package/src/lib/components/textarea/index.ts +0 -1
- package/src/lib/components/textarea/textarea.component.html +0 -50
- package/src/lib/components/textarea/textarea.component.scss +0 -0
- package/src/lib/components/textarea/textarea.component.ts +0 -78
- package/src/lib/components/textfield/index.ts +0 -1
- package/src/lib/components/textfield/textfield.component.html +0 -56
- package/src/lib/components/textfield/textfield.component.scss +0 -0
- package/src/lib/components/textfield/textfield.component.ts +0 -114
- package/src/lib/components/tooltip/index.ts +0 -1
- package/src/lib/components/tooltip/tooltip.component.html +0 -10
- package/src/lib/components/tooltip/tooltip.component.scss +0 -0
- package/src/lib/components/tooltip/tooltip.component.ts +0 -57
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.html +0 -23
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.scss +0 -0
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.ts +0 -103
- package/src/lib/icons.ts +0 -36
- package/src/lib/init.service.ts +0 -11
- package/src/lib/interceptors/http-error-message.interceptor.ts +0 -45
- package/src/lib/pages/bad-request-page/bad-request-page.component.html +0 -5
- package/src/lib/pages/bad-request-page/bad-request-page.component.scss +0 -0
- package/src/lib/pages/bad-request-page/bad-request-page.component.ts +0 -15
- package/src/lib/pages/error-page/error-page.component.html +0 -5
- package/src/lib/pages/error-page/error-page.component.scss +0 -0
- package/src/lib/pages/error-page/error-page.component.ts +0 -32
- package/src/lib/pages/error-page/error-page.constants.ts +0 -19
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.html +0 -5
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.scss +0 -0
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.ts +0 -16
- package/src/lib/pages/not-authenticated/not-authenticated.component.html +0 -5
- package/src/lib/pages/not-authenticated/not-authenticated.component.ts +0 -14
- package/src/lib/pages/not-authorized/not-authorized.component.html +0 -5
- package/src/lib/pages/not-authorized/not-authorized.component.ts +0 -18
- package/src/lib/pages/not-found/not-found.component.html +0 -5
- package/src/lib/pages/not-found/not-found.component.ts +0 -18
- package/src/lib/pages/not-found-page/not-found-page.component.html +0 -6
- package/src/lib/pages/not-found-page/not-found-page.component.scss +0 -0
- package/src/lib/pages/not-found-page/not-found-page.component.ts +0 -16
- package/src/lib/pipes/color/color.pipe.ts +0 -24
- package/src/lib/pipes/multiselect/multiselect-options.pipe.ts +0 -61
- package/src/lib/pipes/size/size.pipe.ts +0 -20
- package/src/test-setup.ts +0 -8
- package/tsconfig.json +0 -30
- package/tsconfig.lib.json +0 -17
- package/tsconfig.lib.prod.json +0 -9
- package/tsconfig.spec.json +0 -16
- /package/{src/sass → sass}/header.css +0 -0
- /package/{src/sass → sass}/header.scss +0 -0
- /package/{src/sass → sass}/main.scss +0 -0
- /package/{src/sass → sass}/scrollbar.scss +0 -0
- /package/{src/sass → sass}/sidemenu.css +0 -0
- /package/{src/sass → sass}/vendors/_bootstrap.scss +0 -0
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import {
|
|
3
|
-
ChangeDetectionStrategy,
|
|
4
|
-
Component,
|
|
5
|
-
Input,
|
|
6
|
-
OnInit,
|
|
7
|
-
Optional,
|
|
8
|
-
Self,
|
|
9
|
-
} from '@angular/core';
|
|
10
|
-
import {
|
|
11
|
-
ControlValueAccessor,
|
|
12
|
-
FormControl,
|
|
13
|
-
NgControl,
|
|
14
|
-
ReactiveFormsModule,
|
|
15
|
-
Validators,
|
|
16
|
-
} from '@angular/forms';
|
|
17
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
18
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
19
|
-
import {
|
|
20
|
-
TextfieldCore,
|
|
21
|
-
TEXTFIELD_COMPONENT_TOKEN,
|
|
22
|
-
FieldType,
|
|
23
|
-
BaseFormInputComponent,
|
|
24
|
-
FieldSizeType,
|
|
25
|
-
FieldSize,
|
|
26
|
-
IconPositionType,
|
|
27
|
-
IconPosition,
|
|
28
|
-
SlotPositionType,
|
|
29
|
-
SlotPosition,
|
|
30
|
-
FieldTypeType,
|
|
31
|
-
} from '@verisoft/ui-core';
|
|
32
|
-
import { GovSizePipe } from '../../pipes';
|
|
33
|
-
import { ErrorComponent } from '../errors';
|
|
34
|
-
import { TooltipComponent } from '../tooltip';
|
|
35
|
-
@Component({
|
|
36
|
-
selector: 'v-textfield',
|
|
37
|
-
standalone: true,
|
|
38
|
-
imports: [
|
|
39
|
-
CommonModule,
|
|
40
|
-
ReactiveFormsModule,
|
|
41
|
-
GovDesignSystemModule,
|
|
42
|
-
TooltipComponent,
|
|
43
|
-
GovSizePipe,
|
|
44
|
-
TranslateModule,
|
|
45
|
-
ErrorComponent,
|
|
46
|
-
],
|
|
47
|
-
templateUrl: './textfield.component.html',
|
|
48
|
-
styleUrl: './textfield.component.scss',
|
|
49
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
50
|
-
providers: [
|
|
51
|
-
{
|
|
52
|
-
provide: TEXTFIELD_COMPONENT_TOKEN,
|
|
53
|
-
useExisting: TextfieldComponent,
|
|
54
|
-
},
|
|
55
|
-
],
|
|
56
|
-
})
|
|
57
|
-
export class TextfieldComponent
|
|
58
|
-
extends BaseFormInputComponent
|
|
59
|
-
implements ControlValueAccessor, TextfieldCore, OnInit
|
|
60
|
-
{
|
|
61
|
-
@Input() floatLabel!: boolean;
|
|
62
|
-
@Input() type: FieldTypeType = FieldType.text;
|
|
63
|
-
@Input() minlength = 0;
|
|
64
|
-
@Input() maxlength = 524288;
|
|
65
|
-
@Input() min = -2147483648;
|
|
66
|
-
@Input() max = 2147483647;
|
|
67
|
-
@Input() prefix!: string;
|
|
68
|
-
@Input() sufix!: string;
|
|
69
|
-
@Input() message!: string;
|
|
70
|
-
@Input() name!: string;
|
|
71
|
-
@Input() role!: string;
|
|
72
|
-
@Input() size: FieldSizeType | undefined = FieldSize.medium;
|
|
73
|
-
@Input() icon!: string;
|
|
74
|
-
@Input() iconPos: IconPositionType = IconPosition.right;
|
|
75
|
-
@Input() labelSlot: SlotPositionType = SlotPosition.top;
|
|
76
|
-
@Input() errorSlot: SlotPositionType = SlotPosition.bottom;
|
|
77
|
-
@Input() messageSlot: SlotPositionType = SlotPosition.bottom;
|
|
78
|
-
|
|
79
|
-
constructor(@Optional() @Self() ngControl: NgControl) {
|
|
80
|
-
super(ngControl);
|
|
81
|
-
if (ngControl) {
|
|
82
|
-
ngControl.valueAccessor = this;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
override ngOnInit(): void {
|
|
87
|
-
super.ngOnInit();
|
|
88
|
-
|
|
89
|
-
if (!this.formControl && this.ngControl) {
|
|
90
|
-
this.formControl = this.ngControl.control as FormControl;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
if (this.formControl && this.type === FieldType.number) {
|
|
94
|
-
this.setMinMaxNumberInputValidators();
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
private setMinMaxNumberInputValidators(): void {
|
|
99
|
-
if (!this.formControl) {
|
|
100
|
-
return;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
const validators = [];
|
|
104
|
-
if (this.min !== undefined && this.min !== null) {
|
|
105
|
-
validators.push(Validators.min(this.min));
|
|
106
|
-
}
|
|
107
|
-
if (this.max !== undefined && this.max !== null) {
|
|
108
|
-
validators.push(Validators.max(this.max));
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
this.formControl.addValidators(validators);
|
|
112
|
-
this.formControl.updateValueAndValidity({ onlySelf: true, emitEvent: true });
|
|
113
|
-
}
|
|
114
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './tooltip.component';
|
|
File without changes
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { Component, Input, ElementRef, Renderer2, AfterViewInit } from "@angular/core";
|
|
2
|
-
import { GovDesignSystemModule } from "@gov-design-system-ce/angular";
|
|
3
|
-
import { GovSizePipe } from "../../pipes";
|
|
4
|
-
|
|
5
|
-
@Component({
|
|
6
|
-
standalone: true,
|
|
7
|
-
selector: "v-tooltip",
|
|
8
|
-
templateUrl: './tooltip.component.html',
|
|
9
|
-
styleUrl: "./tooltip.component.scss",
|
|
10
|
-
imports: [
|
|
11
|
-
GovDesignSystemModule,
|
|
12
|
-
GovSizePipe
|
|
13
|
-
],
|
|
14
|
-
})
|
|
15
|
-
export class TooltipComponent implements AfterViewInit {
|
|
16
|
-
@Input() color: 'primary' | 'secondary' = 'primary';
|
|
17
|
-
|
|
18
|
-
@Input() size: 'small' | 'medium' | 'large' = 'medium';
|
|
19
|
-
|
|
20
|
-
@Input() position: 'top' | 'right' | 'bottom' | 'left' = 'top';
|
|
21
|
-
|
|
22
|
-
@Input({ required: true }) message!: string;
|
|
23
|
-
|
|
24
|
-
@Input() label = '?';
|
|
25
|
-
|
|
26
|
-
isVisible = false;
|
|
27
|
-
tooltipId: string | null = null;
|
|
28
|
-
|
|
29
|
-
constructor(private el: ElementRef, private renderer: Renderer2) {}
|
|
30
|
-
|
|
31
|
-
ngAfterViewInit() {
|
|
32
|
-
const scrollContainer = document.querySelector('.gov-main-container-content');
|
|
33
|
-
if (scrollContainer) {
|
|
34
|
-
this.renderer.listen(scrollContainer, 'scroll', () => {
|
|
35
|
-
if (this.isVisible && this.tooltipId) {
|
|
36
|
-
const tooltipContent = document.querySelector(`[parent-id="${this.tooltipId}"]`);
|
|
37
|
-
if (tooltipContent) {
|
|
38
|
-
this.renderer.setStyle(tooltipContent, 'visibility', 'hidden');
|
|
39
|
-
this.isVisible = false;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
toggleTooltip() {
|
|
47
|
-
this.isVisible = !this.isVisible;
|
|
48
|
-
const tooltip = this.el.nativeElement.querySelector('gov-tooltip');
|
|
49
|
-
if (tooltip && !this.tooltipId) {
|
|
50
|
-
this.tooltipId = tooltip.getAttribute('id');
|
|
51
|
-
}
|
|
52
|
-
const tooltipContent = document.querySelector(`[parent-id="${this.tooltipId}"]`);
|
|
53
|
-
if (tooltipContent) {
|
|
54
|
-
this.renderer.setStyle(tooltipContent, 'visibility', this.isVisible ? 'visible' : 'hidden');
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
}
|
|
@@ -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
|
-
[checked]="checked"
|
|
9
|
-
[indeterminate]="isChecked === 0"
|
|
10
|
-
[name]="name"
|
|
11
|
-
[invalid]="ngControl?.errors"
|
|
12
|
-
[noLabel]="noLabel"
|
|
13
|
-
(gov-change)="toggleCheckbox()"
|
|
14
|
-
>
|
|
15
|
-
<gov-form-label
|
|
16
|
-
[size]="size | govSize"
|
|
17
|
-
slot="label"
|
|
18
|
-
>
|
|
19
|
-
{{ label }}
|
|
20
|
-
</gov-form-label>
|
|
21
|
-
</gov-form-checkbox>
|
|
22
|
-
<v-validation-message [ngControl]="ngControl"></v-validation-message>
|
|
23
|
-
</gov-form-control>
|
|
File without changes
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import {
|
|
3
|
-
ChangeDetectionStrategy,
|
|
4
|
-
Component,
|
|
5
|
-
Optional,
|
|
6
|
-
Self,
|
|
7
|
-
Input,
|
|
8
|
-
OnInit,
|
|
9
|
-
ChangeDetectorRef,
|
|
10
|
-
} from '@angular/core';
|
|
11
|
-
import {
|
|
12
|
-
ControlValueAccessor,
|
|
13
|
-
NgControl,
|
|
14
|
-
ReactiveFormsModule,
|
|
15
|
-
} from '@angular/forms';
|
|
16
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
17
|
-
import {
|
|
18
|
-
BaseFormInputComponent,
|
|
19
|
-
TRISTATE_CHECKBOX_COMPONENT_TOKEN,
|
|
20
|
-
TristateCheckboxCore,
|
|
21
|
-
SlotPositionType,
|
|
22
|
-
SlotPosition,
|
|
23
|
-
FieldSizeType,
|
|
24
|
-
FieldSize,
|
|
25
|
-
} from '@verisoft/ui-core';
|
|
26
|
-
import { GovSizePipe } from '../../pipes';
|
|
27
|
-
import { ErrorComponent } from '../errors';
|
|
28
|
-
|
|
29
|
-
enum States {
|
|
30
|
-
None = -1,
|
|
31
|
-
False = 0,
|
|
32
|
-
True = 1,
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
@Component({
|
|
36
|
-
selector: 'v-tristatecheckbox',
|
|
37
|
-
standalone: true,
|
|
38
|
-
styleUrls: ['./tristatecheckbox.component.scss'],
|
|
39
|
-
templateUrl: './tristatecheckbox.component.html',
|
|
40
|
-
imports: [
|
|
41
|
-
CommonModule,
|
|
42
|
-
GovDesignSystemModule,
|
|
43
|
-
ReactiveFormsModule,
|
|
44
|
-
ErrorComponent,
|
|
45
|
-
GovSizePipe,
|
|
46
|
-
],
|
|
47
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
48
|
-
providers: [
|
|
49
|
-
{
|
|
50
|
-
provide: TRISTATE_CHECKBOX_COMPONENT_TOKEN,
|
|
51
|
-
useExisting: TristatecheckboxComponent,
|
|
52
|
-
},
|
|
53
|
-
],
|
|
54
|
-
})
|
|
55
|
-
export class TristatecheckboxComponent
|
|
56
|
-
extends BaseFormInputComponent
|
|
57
|
-
implements ControlValueAccessor, TristateCheckboxCore, OnInit {
|
|
58
|
-
|
|
59
|
-
@Input() size: FieldSizeType = FieldSize.medium;
|
|
60
|
-
|
|
61
|
-
@Input() value!: string;
|
|
62
|
-
|
|
63
|
-
@Input() name!: string;
|
|
64
|
-
|
|
65
|
-
@Input() noLabel = false;
|
|
66
|
-
|
|
67
|
-
@Input() errorSlot: SlotPositionType = SlotPosition.bottom;
|
|
68
|
-
|
|
69
|
-
@Input() checked!: boolean;
|
|
70
|
-
|
|
71
|
-
protected isChecked = States.None;
|
|
72
|
-
|
|
73
|
-
constructor(
|
|
74
|
-
@Optional() @Self() ngControl: NgControl,
|
|
75
|
-
protected changeDetectorRef: ChangeDetectorRef
|
|
76
|
-
) {
|
|
77
|
-
super(ngControl);
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
override writeValue(value: any): void {
|
|
81
|
-
this.isChecked = value === true ? States.True : value === false ? States.False : States.None;
|
|
82
|
-
this.changeDetectorRef.markForCheck();
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
protected toggleCheckbox(): void {
|
|
86
|
-
this.isChecked = this.isChecked === States.False
|
|
87
|
-
? States.None
|
|
88
|
-
: this.isChecked === States.None
|
|
89
|
-
? States.True
|
|
90
|
-
: States.False;
|
|
91
|
-
this.updateControlValue();
|
|
92
|
-
this.changeDetectorRef.markForCheck();
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
private updateControlValue(): void {
|
|
96
|
-
const newValue = this.getCurrentValue();
|
|
97
|
-
this.formControl.setValue(newValue, { emitEvent: true });
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
private getCurrentValue(): boolean | null {
|
|
101
|
-
return this.isChecked === States.True ? true : this.isChecked === States.False ? false : null;
|
|
102
|
-
}
|
|
103
|
-
}
|
package/src/lib/icons.ts
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { CommonIcons } from '@verisoft/ui-core';
|
|
2
|
-
|
|
3
|
-
export const Icons: CommonIcons = {
|
|
4
|
-
add: 'plus-lg',
|
|
5
|
-
minus: 'dash',
|
|
6
|
-
delete: 'trash',
|
|
7
|
-
filter: 'filter',
|
|
8
|
-
download: 'upload',
|
|
9
|
-
save: 'download',
|
|
10
|
-
print: 'print-fill',
|
|
11
|
-
edit: 'pencil',
|
|
12
|
-
calendar: 'calendar',
|
|
13
|
-
settings: 'gear',
|
|
14
|
-
house: 'house-door-fill',
|
|
15
|
-
chevronRight: 'chevron-right',
|
|
16
|
-
chevronDown: 'chevron-down',
|
|
17
|
-
chevronLeft: 'chevron-left',
|
|
18
|
-
chevronUp: 'chevron-up',
|
|
19
|
-
checkbox: 'check-square',
|
|
20
|
-
warning: 'exclamation-triangle-fill',
|
|
21
|
-
search: 'search',
|
|
22
|
-
action: 'bars',
|
|
23
|
-
user: 'user',
|
|
24
|
-
logout: 'logout',
|
|
25
|
-
crossCircle: 'x-circle',
|
|
26
|
-
infoCircle: 'info-circle',
|
|
27
|
-
cross: 'x-lg',
|
|
28
|
-
arrowLeft: 'arrow-left',
|
|
29
|
-
arrowRight: 'arrow-right',
|
|
30
|
-
questionCircle: 'question-circle',
|
|
31
|
-
checkCircle: 'check-circle',
|
|
32
|
-
sitemap: 'diagram',
|
|
33
|
-
check: 'check-lg',
|
|
34
|
-
envelope: 'envelope',
|
|
35
|
-
loader: 'loader',
|
|
36
|
-
};
|
package/src/lib/init.service.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { defineCustomElements } from "@gov-design-system-ce/components/loader";
|
|
3
|
-
|
|
4
|
-
@Injectable({
|
|
5
|
-
providedIn: 'root',
|
|
6
|
-
})
|
|
7
|
-
export class GovInitService {
|
|
8
|
-
constructor() {
|
|
9
|
-
defineCustomElements(window);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpErrorResponse,
|
|
3
|
-
HttpEvent,
|
|
4
|
-
HttpHandler,
|
|
5
|
-
HttpInterceptor,
|
|
6
|
-
HttpRequest,
|
|
7
|
-
} from '@angular/common/http';
|
|
8
|
-
import { inject, Injectable } from '@angular/core';
|
|
9
|
-
import { catchError, Observable, throwError } from 'rxjs';
|
|
10
|
-
import { SnackbarService } from '../components';
|
|
11
|
-
|
|
12
|
-
@Injectable()
|
|
13
|
-
export class HttpErrorMessageInterceptor implements HttpInterceptor {
|
|
14
|
-
|
|
15
|
-
snackbarService = inject(SnackbarService);
|
|
16
|
-
|
|
17
|
-
intercept(
|
|
18
|
-
req: HttpRequest<any>,
|
|
19
|
-
next: HttpHandler
|
|
20
|
-
): Observable<HttpEvent<any>> {
|
|
21
|
-
return next.handle(req).pipe(
|
|
22
|
-
catchError((errorResponse: HttpErrorResponse) => {
|
|
23
|
-
if (!errorResponse.ok) {
|
|
24
|
-
|
|
25
|
-
if (errorResponse.status === 400) {
|
|
26
|
-
console.error('Bad request');
|
|
27
|
-
} if (errorResponse.status === 403) {
|
|
28
|
-
this.snackbarService.showError('Unauthorized request');
|
|
29
|
-
console.error('Unauthorized request');
|
|
30
|
-
} if (errorResponse.status === 404) {
|
|
31
|
-
console.error('Entity not found');
|
|
32
|
-
} if (errorResponse.status === 422) {
|
|
33
|
-
console.error('Error occured during validation');
|
|
34
|
-
console.log(errorResponse);
|
|
35
|
-
} else {
|
|
36
|
-
this.snackbarService.showError(errorResponse.message);
|
|
37
|
-
console.error(errorResponse);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
return throwError(() => errorResponse);
|
|
42
|
-
})
|
|
43
|
-
);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<gov-error-code>
|
|
2
|
-
<gov-icon type="complex" name="card-400" slot="icon"></gov-icon>
|
|
3
|
-
<p>Sorry, the server cannot or will not process the request</p>
|
|
4
|
-
<gov-button color="primary" size="m" type="solid" (gov-click)="navigationBack()">Go back</gov-button>
|
|
5
|
-
</gov-error-code>
|
|
File without changes
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { Component } from '@angular/core';
|
|
3
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
4
|
-
@Component({
|
|
5
|
-
selector: 'v-bad-request-page',
|
|
6
|
-
standalone: true,
|
|
7
|
-
imports: [CommonModule, GovDesignSystemModule],
|
|
8
|
-
templateUrl: './bad-request-page.component.html',
|
|
9
|
-
styleUrl: './bad-request-page.component.scss'
|
|
10
|
-
})
|
|
11
|
-
export class BadRequestPageComponent {
|
|
12
|
-
navigationBack() {
|
|
13
|
-
history.back();
|
|
14
|
-
}
|
|
15
|
-
}
|
|
File without changes
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { Component, Input } from '@angular/core';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
5
|
-
import { ErrorDetails, ERROR_MAP } from './error-page.constants';
|
|
6
|
-
|
|
7
|
-
@Component({
|
|
8
|
-
selector: 'v-error-page',
|
|
9
|
-
standalone: true,
|
|
10
|
-
imports: [CommonModule, GovDesignSystemModule],
|
|
11
|
-
templateUrl: './error-page.component.html',
|
|
12
|
-
styleUrl: './error-page.component.scss'
|
|
13
|
-
})
|
|
14
|
-
export class ErrorPageComponent {
|
|
15
|
-
@Input() url!: string;
|
|
16
|
-
@Input() code = 404;
|
|
17
|
-
|
|
18
|
-
constructor(private router: Router) {}
|
|
19
|
-
|
|
20
|
-
get errorDetails(): ErrorDetails {
|
|
21
|
-
return ERROR_MAP[this.code];
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
navigateToUrl() {
|
|
25
|
-
if (this.url) {
|
|
26
|
-
this.router.navigate([this.url]);
|
|
27
|
-
}
|
|
28
|
-
else {
|
|
29
|
-
history.back();
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export interface ErrorDetails {
|
|
2
|
-
message: string;
|
|
3
|
-
iconName: string;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
export const ERROR_MAP: Record<number, ErrorDetails> = {
|
|
7
|
-
400: {
|
|
8
|
-
message: 'Sorry, the server cannot or will not process the request.',
|
|
9
|
-
iconName: 'card-400'
|
|
10
|
-
},
|
|
11
|
-
404: {
|
|
12
|
-
message: 'Sorry, the page you are looking for does not exist or has been moved.',
|
|
13
|
-
iconName: 'card-404'
|
|
14
|
-
},
|
|
15
|
-
500: {
|
|
16
|
-
message: 'Sorry, an unexpected condition was encountered.',
|
|
17
|
-
iconName: 'card-500'
|
|
18
|
-
}
|
|
19
|
-
};
|
|
File without changes
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { Component } from '@angular/core';
|
|
3
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
4
|
-
|
|
5
|
-
@Component({
|
|
6
|
-
selector: 'v-internal-server-error-page',
|
|
7
|
-
standalone: true,
|
|
8
|
-
imports: [CommonModule, GovDesignSystemModule],
|
|
9
|
-
templateUrl: './internal-server-error-page.component.html',
|
|
10
|
-
styleUrl: './internal-server-error-page.component.scss',
|
|
11
|
-
})
|
|
12
|
-
export class InternalServerErrorPageComponent {
|
|
13
|
-
navigationBack() {
|
|
14
|
-
history.back();
|
|
15
|
-
}
|
|
16
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Component } from "@angular/core";
|
|
2
|
-
import { GovDesignSystemModule } from "@gov-design-system-ce/angular";
|
|
3
|
-
import { ButtonComponent } from "./../../components";
|
|
4
|
-
|
|
5
|
-
@Component({
|
|
6
|
-
standalone: true,
|
|
7
|
-
selector: 'v-not-authenticated',
|
|
8
|
-
templateUrl: "./not-authenticated.component.html",
|
|
9
|
-
imports: [
|
|
10
|
-
GovDesignSystemModule,
|
|
11
|
-
ButtonComponent,
|
|
12
|
-
],
|
|
13
|
-
})
|
|
14
|
-
export class NotAuthenticatedComponent { }
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Component } from "@angular/core";
|
|
2
|
-
import { GovDesignSystemModule } from "@gov-design-system-ce/angular";
|
|
3
|
-
import { ButtonComponent } from "../../components";
|
|
4
|
-
|
|
5
|
-
@Component({
|
|
6
|
-
standalone: true,
|
|
7
|
-
selector: 'v-not-authorized',
|
|
8
|
-
templateUrl: "./not-authorized.component.html",
|
|
9
|
-
imports: [
|
|
10
|
-
GovDesignSystemModule,
|
|
11
|
-
ButtonComponent,
|
|
12
|
-
],
|
|
13
|
-
})
|
|
14
|
-
export class NotAuthorizedComponent {
|
|
15
|
-
goBack(): void {
|
|
16
|
-
history.back();
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Component } from "@angular/core";
|
|
2
|
-
import { GovDesignSystemModule } from "@gov-design-system-ce/angular";
|
|
3
|
-
import { ButtonComponent } from "../../components";
|
|
4
|
-
|
|
5
|
-
@Component({
|
|
6
|
-
standalone: true,
|
|
7
|
-
selector: 'v-not-found',
|
|
8
|
-
templateUrl: "./not-found.component.html",
|
|
9
|
-
imports: [
|
|
10
|
-
GovDesignSystemModule,
|
|
11
|
-
ButtonComponent
|
|
12
|
-
],
|
|
13
|
-
})
|
|
14
|
-
export class NotFoundComponent {
|
|
15
|
-
goBack(): void {
|
|
16
|
-
history.back();
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<gov-error-code>
|
|
2
|
-
<gov-icon type="complex" name="card-404" slot="icon"></gov-icon>
|
|
3
|
-
<p>This is not the page you are looking for.<br />Try searching for something
|
|
4
|
-
else.</p>
|
|
5
|
-
<gov-button color="primary" size="m" type="solid" (gov-click)="navigationBack()">Go back</gov-button>
|
|
6
|
-
</gov-error-code>
|
|
File without changes
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { Component } from '@angular/core';
|
|
3
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
4
|
-
|
|
5
|
-
@Component({
|
|
6
|
-
selector: 'v-not-found-page',
|
|
7
|
-
standalone: true,
|
|
8
|
-
imports: [CommonModule, GovDesignSystemModule],
|
|
9
|
-
templateUrl: './not-found-page.component.html',
|
|
10
|
-
styleUrl: './not-found-page.component.scss',
|
|
11
|
-
})
|
|
12
|
-
export class NotFoundPageComponent {
|
|
13
|
-
navigationBack() {
|
|
14
|
-
history.back();
|
|
15
|
-
}
|
|
16
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { Pipe, PipeTransform } from "@angular/core";
|
|
2
|
-
import { ControlSeverity, ControlSeverityType, GovControlSeverity } from "@verisoft/ui-core";
|
|
3
|
-
|
|
4
|
-
@Pipe({
|
|
5
|
-
name: 'govColor',
|
|
6
|
-
standalone: true,
|
|
7
|
-
})
|
|
8
|
-
export class GovColorPipe implements PipeTransform {
|
|
9
|
-
transform(color: ControlSeverityType | undefined): string | undefined {
|
|
10
|
-
switch (color) {
|
|
11
|
-
case ControlSeverity.danger:
|
|
12
|
-
return GovControlSeverity.error;
|
|
13
|
-
|
|
14
|
-
case ControlSeverity.info:
|
|
15
|
-
return GovControlSeverity.neutral;
|
|
16
|
-
|
|
17
|
-
case ControlSeverity.help:
|
|
18
|
-
case ControlSeverity.contrast:
|
|
19
|
-
return GovControlSeverity.primary;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
return color;
|
|
23
|
-
}
|
|
24
|
-
}
|