@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,108 +0,0 @@
|
|
|
1
|
-
.v-dropdown__container {
|
|
2
|
-
position: absolute;
|
|
3
|
-
z-index: 100;
|
|
4
|
-
background-color: var(--button-outlined-primary-hover);
|
|
5
|
-
min-width: 100%;
|
|
6
|
-
border-radius: var(--border-radius, var(--corner-radius-s));
|
|
7
|
-
border: var(--border-width, 0.0625rem) solid var(--form-border-color, var(--border-neutral));
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.v-dropdown__trigger {
|
|
11
|
-
min-height: 1.5rem;
|
|
12
|
-
display: flex;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.disabled {
|
|
16
|
-
color: var(--form-state-value-disabled, var(--text-disabled));
|
|
17
|
-
cursor: default !important;
|
|
18
|
-
pointer-events: none;
|
|
19
|
-
|
|
20
|
-
&-input {
|
|
21
|
-
border-color: var(--form-state-border-disabled, var(--border-subtlest)) !important;
|
|
22
|
-
background: var(--form-state-bg-disabled, transparent);
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.error {
|
|
27
|
-
color: var(--form-state-label-error, var(--text-status-error));
|
|
28
|
-
|
|
29
|
-
&-input {
|
|
30
|
-
border-color: var(--form-state-border-error, var(--status-error)) !important;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.gov-form-input-child {
|
|
35
|
-
padding: 0.5rem 0.75rem;
|
|
36
|
-
border: 0px !important;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.v-dropdown__no-item {
|
|
40
|
-
padding: 0.5rem;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.v-dropdown__list {
|
|
44
|
-
margin: 0;
|
|
45
|
-
padding: 0;
|
|
46
|
-
list-style-type: none;
|
|
47
|
-
display: flex;
|
|
48
|
-
flex-direction: column;
|
|
49
|
-
overflow: auto;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.v-dropdown__scroll {
|
|
53
|
-
height: 10rem;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.v-dropdown__filter {
|
|
57
|
-
padding: 0.5rem;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.v-dropdown__item {
|
|
61
|
-
padding: 0.25rem 0.5rem;
|
|
62
|
-
cursor: pointer;
|
|
63
|
-
|
|
64
|
-
&.is-active {
|
|
65
|
-
background-color: var(--background-primary);
|
|
66
|
-
color: var(--text-white);
|
|
67
|
-
|
|
68
|
-
&:hover {
|
|
69
|
-
opacity: 0.8;
|
|
70
|
-
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
&:hover {
|
|
75
|
-
background-color: var(--background-primary);
|
|
76
|
-
;
|
|
77
|
-
color: var(--text-white);
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.v-dropdown__loader {
|
|
82
|
-
width: 1.5rem;
|
|
83
|
-
height: 1.5rem;
|
|
84
|
-
margin-right: 1rem;
|
|
85
|
-
animation: rotate 1s linear infinite;
|
|
86
|
-
display: inline-block;
|
|
87
|
-
transform-origin: center;
|
|
88
|
-
color: var(--color-neutral-300)
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.v-dropdown__clear {
|
|
92
|
-
z-index: 99;
|
|
93
|
-
cursor: pointer;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
@keyframes rotate {
|
|
97
|
-
from {
|
|
98
|
-
transform: rotate(0deg);
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
to {
|
|
102
|
-
transform: rotate(360deg);
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
::ng-deep .cdk-virtual-scrollable {
|
|
107
|
-
contain: none;
|
|
108
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { MultiselectComponent } from './gov-multiselect.component';
|
|
3
|
-
|
|
4
|
-
describe('MultiselectComponent', () => {
|
|
5
|
-
let component: MultiselectComponent<any>;
|
|
6
|
-
let fixture: ComponentFixture<MultiselectComponent<any>>;
|
|
7
|
-
|
|
8
|
-
beforeEach(async () => {
|
|
9
|
-
await TestBed.configureTestingModule({
|
|
10
|
-
imports: [MultiselectComponent],
|
|
11
|
-
}).compileComponents();
|
|
12
|
-
|
|
13
|
-
fixture = TestBed.createComponent(MultiselectComponent);
|
|
14
|
-
component = fixture.componentInstance;
|
|
15
|
-
fixture.detectChanges();
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
it('should create', () => {
|
|
19
|
-
expect(component).toBeTruthy();
|
|
20
|
-
});
|
|
21
|
-
});
|
|
@@ -1,297 +0,0 @@
|
|
|
1
|
-
import { ScrollingModule } from '@angular/cdk/scrolling';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import {
|
|
4
|
-
ChangeDetectionStrategy,
|
|
5
|
-
ChangeDetectorRef,
|
|
6
|
-
Component,
|
|
7
|
-
ElementRef,
|
|
8
|
-
EventEmitter,
|
|
9
|
-
HostListener,
|
|
10
|
-
Input,
|
|
11
|
-
NO_ERRORS_SCHEMA,
|
|
12
|
-
OnChanges,
|
|
13
|
-
OnDestroy,
|
|
14
|
-
OnInit,
|
|
15
|
-
Optional,
|
|
16
|
-
Output,
|
|
17
|
-
Self,
|
|
18
|
-
SimpleChanges,
|
|
19
|
-
ViewChild,
|
|
20
|
-
ViewEncapsulation,
|
|
21
|
-
} from '@angular/core';
|
|
22
|
-
import {
|
|
23
|
-
ControlValueAccessor,
|
|
24
|
-
FormControl,
|
|
25
|
-
NgControl,
|
|
26
|
-
ReactiveFormsModule,
|
|
27
|
-
} from '@angular/forms';
|
|
28
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
29
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
30
|
-
import { DEFAULT_PAGE_SIZE, FilterEvent, getValueByPath, LazyLoadEvent } from '@verisoft/core';
|
|
31
|
-
import {
|
|
32
|
-
BaseFormInputComponent,
|
|
33
|
-
DropdownCore,
|
|
34
|
-
DROPDOWN_COMPONENT_TOKEN,
|
|
35
|
-
FieldSizeType,
|
|
36
|
-
FieldSize,
|
|
37
|
-
} from '@verisoft/ui-core';
|
|
38
|
-
import { debounceTime, distinctUntilChanged, Subscription } from 'rxjs';
|
|
39
|
-
import { Icons } from '../../icons';
|
|
40
|
-
import { ErrorComponent } from '../errors';
|
|
41
|
-
import { TextfieldComponent } from '../textfield';
|
|
42
|
-
import { DropdownItemComponent } from './dropdown-item.component';
|
|
43
|
-
import { DropDownItemData } from './dropdown.model';
|
|
44
|
-
|
|
45
|
-
@Component({
|
|
46
|
-
selector: 'v-dropdown',
|
|
47
|
-
standalone: true,
|
|
48
|
-
imports: [
|
|
49
|
-
CommonModule,
|
|
50
|
-
ReactiveFormsModule,
|
|
51
|
-
GovDesignSystemModule,
|
|
52
|
-
ErrorComponent,
|
|
53
|
-
DropdownItemComponent,
|
|
54
|
-
TextfieldComponent,
|
|
55
|
-
ScrollingModule,
|
|
56
|
-
TranslateModule,
|
|
57
|
-
],
|
|
58
|
-
templateUrl: './dropdown.component.html',
|
|
59
|
-
styleUrl: './dropdown.component.scss',
|
|
60
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
61
|
-
encapsulation: ViewEncapsulation.None,
|
|
62
|
-
providers: [
|
|
63
|
-
{
|
|
64
|
-
provide: DROPDOWN_COMPONENT_TOKEN,
|
|
65
|
-
useExisting: DropdownComponent,
|
|
66
|
-
},
|
|
67
|
-
],
|
|
68
|
-
schemas: [
|
|
69
|
-
NO_ERRORS_SCHEMA
|
|
70
|
-
],
|
|
71
|
-
})
|
|
72
|
-
export class DropdownComponent<T>
|
|
73
|
-
extends BaseFormInputComponent
|
|
74
|
-
implements ControlValueAccessor, DropdownCore<T>, OnInit, OnChanges, OnDestroy {
|
|
75
|
-
|
|
76
|
-
@ViewChild('filterTextField', { static: false }) filterTextField!: ElementRef;
|
|
77
|
-
|
|
78
|
-
@Input() options: T[] | undefined = [];
|
|
79
|
-
@Input() optionLabel: string | undefined;
|
|
80
|
-
@Input() optionValue: string | undefined;
|
|
81
|
-
@Input() dropdownIcon: string | undefined;
|
|
82
|
-
@Input() floatLabel: string | undefined;
|
|
83
|
-
@Input() lazy!: boolean;
|
|
84
|
-
@Input() filter!: boolean;
|
|
85
|
-
@Input() editable!: boolean;
|
|
86
|
-
@Input() loading!: boolean;
|
|
87
|
-
@Input() size: FieldSizeType = FieldSize.medium;
|
|
88
|
-
@Input() showFilter = true;
|
|
89
|
-
@Input() localSearch = true;
|
|
90
|
-
@Input() forceMinWidth = false;
|
|
91
|
-
|
|
92
|
-
@Output() changed = new EventEmitter<any>();
|
|
93
|
-
@Output() showed = new EventEmitter<any>();
|
|
94
|
-
@Output() cleared = new EventEmitter<any>();
|
|
95
|
-
@Output() lazyLoad = new EventEmitter<LazyLoadEvent>();
|
|
96
|
-
@Output() filtered = new EventEmitter<FilterEvent>();
|
|
97
|
-
|
|
98
|
-
opened = false;
|
|
99
|
-
icons = Icons;
|
|
100
|
-
selectedItem: DropDownItemData<T> | undefined;
|
|
101
|
-
filterControl = new FormControl('');
|
|
102
|
-
filterSub: Subscription | undefined
|
|
103
|
-
dropdownOptions: DropDownItemData<T>[] | undefined;
|
|
104
|
-
private readonly pageSize = DEFAULT_PAGE_SIZE;
|
|
105
|
-
private lastPage: number | undefined;
|
|
106
|
-
|
|
107
|
-
get labelClasses() {
|
|
108
|
-
return {
|
|
109
|
-
disabled: this.ngControl?.disabled,
|
|
110
|
-
error: this.ngControl?.invalid
|
|
111
|
-
};
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
get inputClasses() {
|
|
115
|
-
return {
|
|
116
|
-
'disabled-input': this.ngControl?.disabled,
|
|
117
|
-
'error-input': this.ngControl?.invalid
|
|
118
|
-
};
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
constructor(@Optional() @Self() ngControl: NgControl,
|
|
122
|
-
private changeDetectorRef: ChangeDetectorRef) {
|
|
123
|
-
super(ngControl);
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
override ngOnInit() {
|
|
127
|
-
super.ngOnInit();
|
|
128
|
-
this.filterSub = this.filterControl.valueChanges.pipe(
|
|
129
|
-
debounceTime(300),
|
|
130
|
-
distinctUntilChanged()
|
|
131
|
-
).subscribe((value) => {
|
|
132
|
-
this.filterOptions(value);
|
|
133
|
-
});
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
override writeValue(value: any): void {
|
|
137
|
-
const selectedItem = (value == undefined || value === "") ? undefined : (this.dropdownOptions?.find(x => x.value === value)
|
|
138
|
-
?? { value, label: '', option: undefined as T, selected: false } as unknown as DropDownItemData<T>)
|
|
139
|
-
this.selectItem(selectedItem, false);
|
|
140
|
-
|
|
141
|
-
this.changeDetectorRef.detectChanges();
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
ngOnChanges(changes: SimpleChanges) {
|
|
145
|
-
if (changes['options'] || changes['loading']) {
|
|
146
|
-
this.dropdownOptions = this.convertToOptions();
|
|
147
|
-
if (this.selectedItem && !this.selectedItem?.item) {
|
|
148
|
-
const item = this.dropdownOptions?.find(x => this.selectedItem?.value === x.value);
|
|
149
|
-
if (item) {
|
|
150
|
-
this.selectItem(item, false);
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
this.changeDetectorRef.detectChanges();
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
private convertToOptions(): DropDownItemData<T>[] | undefined {
|
|
159
|
-
return this.options?.map((option) => ({
|
|
160
|
-
label: (this.optionLabel ? getValueByPath(option, this.optionLabel) : option) as unknown as string,
|
|
161
|
-
value: this.optionValue ? getValueByPath(option, this.optionValue) : option as unknown as string,
|
|
162
|
-
item: option,
|
|
163
|
-
selected: false,
|
|
164
|
-
} as DropDownItemData<T>)
|
|
165
|
-
);
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
ngOnDestroy() {
|
|
169
|
-
this.filterSub?.unsubscribe();
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
toggleDropdown() {
|
|
173
|
-
if (this.ngControl?.disabled) {
|
|
174
|
-
return;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
if (!this.opened) {
|
|
178
|
-
this.openDropdown();
|
|
179
|
-
} else {
|
|
180
|
-
this.closeDropdown();
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
protected clearSelection(event: MouseEvent) {
|
|
185
|
-
event.stopPropagation();
|
|
186
|
-
this.changed.emit(null);
|
|
187
|
-
this.dropdownOptions = this.dropdownOptions?.map(x => ({ ...x, selected: false })) ?? [];
|
|
188
|
-
this.ngControl?.control?.setValue(null);
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
private openDropdown() {
|
|
192
|
-
this.opened = true;
|
|
193
|
-
this.setFilterFocus();
|
|
194
|
-
this.showed.emit();
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
selectItem(option: DropDownItemData<T> | undefined, emitChange: boolean) {
|
|
198
|
-
if (option == undefined) {
|
|
199
|
-
this.selectedItem = undefined;
|
|
200
|
-
this.closeDropdown();
|
|
201
|
-
return;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
if (this.selectedItem && this.selectedItem != option) {
|
|
205
|
-
this.selectedItem.selected = false;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
option.selected = true;
|
|
209
|
-
this.selectedItem = option;
|
|
210
|
-
|
|
211
|
-
if (emitChange) {
|
|
212
|
-
if (this.ngControl?.control?.value !== option.value) {
|
|
213
|
-
this.changed.emit(option.value);
|
|
214
|
-
this.ngControl?.control?.setValue(option?.value);
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
this.closeDropdown();
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
@HostListener('document:click', ['$event'])
|
|
222
|
-
onDocumentClick(event: MouseEvent) {
|
|
223
|
-
const target = event.target as HTMLElement;
|
|
224
|
-
if (!target.closest('v-dropdown')) {
|
|
225
|
-
this.opened = false;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
onScroll(index: number) {
|
|
230
|
-
this.loadDataForIndex(index);
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
onKeyDown(event: KeyboardEvent) {
|
|
234
|
-
if (this.formControl.disabled || this.readonly || this.loading || !this.opened) {
|
|
235
|
-
return;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
switch (event.code) {
|
|
239
|
-
case 'ArrowDown':
|
|
240
|
-
break;
|
|
241
|
-
|
|
242
|
-
case 'ArrowUp':
|
|
243
|
-
break;
|
|
244
|
-
|
|
245
|
-
case 'ArrowLeft':
|
|
246
|
-
case 'ArrowRight':
|
|
247
|
-
break;
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
private loadDataForIndex(index: number) {
|
|
252
|
-
if (this.lazy) {
|
|
253
|
-
const currentPage = Math.floor(index / this.pageSize);
|
|
254
|
-
const shouldLazyLoad = currentPage !== this.lastPage;
|
|
255
|
-
if (shouldLazyLoad) {
|
|
256
|
-
this.lastPage = currentPage;
|
|
257
|
-
this.lazyLoad.emit({
|
|
258
|
-
filter: this.createFilterObject(this.filterControl.value),
|
|
259
|
-
offset: currentPage * this.pageSize,
|
|
260
|
-
limit: this.pageSize,
|
|
261
|
-
});
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
private setFilterFocus() {
|
|
267
|
-
setTimeout(() => {
|
|
268
|
-
this.filterTextField?.nativeElement?.querySelector("input").focus();
|
|
269
|
-
}, 200);
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
private closeDropdown() {
|
|
273
|
-
this.opened = false;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
private filterOptions(value: string | null) {
|
|
277
|
-
if (!this.localSearch) {
|
|
278
|
-
this.filtered.emit({
|
|
279
|
-
filter: !value ? undefined : value,
|
|
280
|
-
});
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
if (this.lazy) {
|
|
284
|
-
this.loadDataForIndex(0);
|
|
285
|
-
} else {
|
|
286
|
-
const loweredFilterValue = value?.toLocaleLowerCase();
|
|
287
|
-
this.dropdownOptions = !loweredFilterValue ?
|
|
288
|
-
this.convertToOptions()
|
|
289
|
-
: this.convertToOptions()?.filter(x => x.label?.toLocaleLowerCase()?.indexOf(loweredFilterValue) !== -1);
|
|
290
|
-
this.changeDetectorRef.detectChanges();
|
|
291
|
-
}
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
private createFilterObject(filterValue: string | null): Partial<T> {
|
|
295
|
-
return (this.optionLabel ? { [this.optionLabel]: filterValue } : filterValue) as unknown as Partial<T>
|
|
296
|
-
}
|
|
297
|
-
}
|
|
File without changes
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
describe('Extract first key from errors object', () => {
|
|
2
|
-
it('should return the first key from an object with multiple keys', () => {
|
|
3
|
-
const errors = { name: 'Required', email: 'Invalid' };
|
|
4
|
-
const key = Object.keys(errors)[0];
|
|
5
|
-
expect(key).toBe('name');
|
|
6
|
-
});
|
|
7
|
-
|
|
8
|
-
it('should return undefined for an empty object', () => {
|
|
9
|
-
const errors = {};
|
|
10
|
-
const key = Object.keys(errors)[0];
|
|
11
|
-
expect(key).toBeUndefined();
|
|
12
|
-
});
|
|
13
|
-
|
|
14
|
-
it('should return the only key in a single-key object', () => {
|
|
15
|
-
const errors = { password: 'Too short' };
|
|
16
|
-
const key = Object.keys(errors)[0];
|
|
17
|
-
expect(key).toBe('password');
|
|
18
|
-
});
|
|
19
|
-
});
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from "@angular/common";
|
|
2
|
-
import { Component, inject, Input, } from "@angular/core";
|
|
3
|
-
import { NgControl, ValidationErrors } from "@angular/forms";
|
|
4
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
5
|
-
import { ERROR_PROVIDER_TOKEN } from "@verisoft/core";
|
|
6
|
-
import { SlotPosition, SlotPositionType } from "@verisoft/ui-core";
|
|
7
|
-
import { Observable } from "rxjs";
|
|
8
|
-
import { Icons } from "../../icons";
|
|
9
|
-
|
|
10
|
-
@Component({
|
|
11
|
-
selector: "v-validation-message",
|
|
12
|
-
templateUrl: "./error.component.html",
|
|
13
|
-
styleUrl: "./error.component.scss",
|
|
14
|
-
standalone: true,
|
|
15
|
-
imports: [CommonModule, GovDesignSystemModule],
|
|
16
|
-
})
|
|
17
|
-
export class ErrorComponent {
|
|
18
|
-
@Input({required: true}) ngControl?: NgControl;
|
|
19
|
-
|
|
20
|
-
@Input() errorSlot: SlotPositionType = SlotPosition.bottom
|
|
21
|
-
|
|
22
|
-
@Input() messageSlot: SlotPositionType = SlotPosition.bottom
|
|
23
|
-
|
|
24
|
-
readonly errorService = inject(ERROR_PROVIDER_TOKEN);
|
|
25
|
-
icons = Icons
|
|
26
|
-
|
|
27
|
-
getErrorMessage(errors: ValidationErrors): Observable<string> {
|
|
28
|
-
return this.errorService.mapError(errors);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './error.component';
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<gov-form-control>
|
|
2
|
-
@if (label) {
|
|
3
|
-
<gov-form-label
|
|
4
|
-
[slot]="labelSlot"
|
|
5
|
-
[size]="size | govSize"
|
|
6
|
-
>
|
|
7
|
-
{{ label }}
|
|
8
|
-
</gov-form-label>
|
|
9
|
-
}
|
|
10
|
-
<gov-form-group>
|
|
11
|
-
<ng-content />
|
|
12
|
-
</gov-form-group>
|
|
13
|
-
<v-validation-message [ngControl]="ngControl"></v-validation-message>
|
|
14
|
-
</gov-form-control>
|
|
File without changes
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { FormFieldComponent } from './form-field.component';
|
|
3
|
-
|
|
4
|
-
describe('FormFieldComponent', () => {
|
|
5
|
-
let component: FormFieldComponent<any>;
|
|
6
|
-
let fixture: ComponentFixture<FormFieldComponent<any>>;
|
|
7
|
-
|
|
8
|
-
beforeEach(async () => {
|
|
9
|
-
await TestBed.configureTestingModule({
|
|
10
|
-
imports: [FormFieldComponent],
|
|
11
|
-
}).compileComponents();
|
|
12
|
-
|
|
13
|
-
fixture = TestBed.createComponent(FormFieldComponent);
|
|
14
|
-
component = fixture.componentInstance;
|
|
15
|
-
fixture.detectChanges();
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
it('should create', () => {
|
|
19
|
-
expect(component).toBeTruthy();
|
|
20
|
-
});
|
|
21
|
-
});
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import {
|
|
3
|
-
ChangeDetectionStrategy,
|
|
4
|
-
Component,
|
|
5
|
-
Input,
|
|
6
|
-
Optional,
|
|
7
|
-
Self,
|
|
8
|
-
} from '@angular/core';
|
|
9
|
-
import {
|
|
10
|
-
ControlValueAccessor,
|
|
11
|
-
NgControl,
|
|
12
|
-
ReactiveFormsModule,
|
|
13
|
-
} from '@angular/forms';
|
|
14
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
15
|
-
import {
|
|
16
|
-
BaseFormInputComponent,
|
|
17
|
-
FieldSize,
|
|
18
|
-
FieldSizeType,
|
|
19
|
-
FieldType,
|
|
20
|
-
IconPositionType,
|
|
21
|
-
IconPosition,
|
|
22
|
-
FormFieldCore,
|
|
23
|
-
FORM_FIELD_COMPONENT_TOKEN,
|
|
24
|
-
FieldTypeType,
|
|
25
|
-
SlotPosition,
|
|
26
|
-
SlotPositionType,
|
|
27
|
-
} from '@verisoft/ui-core';
|
|
28
|
-
import { Icons } from '../../icons';
|
|
29
|
-
import { GovSizePipe } from '../../pipes';
|
|
30
|
-
import { ErrorComponent } from '../errors';
|
|
31
|
-
|
|
32
|
-
@Component({
|
|
33
|
-
selector: 'v-form-field',
|
|
34
|
-
standalone: true,
|
|
35
|
-
imports: [
|
|
36
|
-
CommonModule,
|
|
37
|
-
ReactiveFormsModule,
|
|
38
|
-
GovDesignSystemModule,
|
|
39
|
-
GovSizePipe,
|
|
40
|
-
ErrorComponent,
|
|
41
|
-
],
|
|
42
|
-
templateUrl: './form-field.component.html',
|
|
43
|
-
styleUrl: './form-field.component.scss',
|
|
44
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
45
|
-
providers: [
|
|
46
|
-
{
|
|
47
|
-
provide: FORM_FIELD_COMPONENT_TOKEN,
|
|
48
|
-
useExisting: FormFieldComponent,
|
|
49
|
-
},
|
|
50
|
-
],
|
|
51
|
-
})
|
|
52
|
-
export class FormFieldComponent
|
|
53
|
-
extends BaseFormInputComponent
|
|
54
|
-
implements ControlValueAccessor, FormFieldCore
|
|
55
|
-
{
|
|
56
|
-
constructor(@Optional() @Self() ngControl: NgControl) {
|
|
57
|
-
super(ngControl);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
@Input() floatLabel!: boolean;
|
|
61
|
-
@Input() type: FieldTypeType = FieldType.text;
|
|
62
|
-
@Input() minlength = 0;
|
|
63
|
-
@Input() maxlength = 524288;
|
|
64
|
-
@Input() prefix!: string;
|
|
65
|
-
@Input() sufix!: string;
|
|
66
|
-
@Input() message!: string;
|
|
67
|
-
@Input() name! : string;
|
|
68
|
-
@Input() role! : string;
|
|
69
|
-
@Input() autocorrect: 'on' | 'off' = 'on';
|
|
70
|
-
@Input() size: FieldSizeType | undefined = FieldSize.medium;
|
|
71
|
-
@Input() icon!: string;
|
|
72
|
-
@Input() iconPos: IconPositionType = IconPosition.right;
|
|
73
|
-
@Input() display!: 'flex' | 'block';
|
|
74
|
-
@Input() labelSlot: SlotPositionType = SlotPosition.top;
|
|
75
|
-
@Input() messageSlot: SlotPositionType = SlotPosition.bottom;
|
|
76
|
-
|
|
77
|
-
icons = Icons;
|
|
78
|
-
}
|