@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,122 +0,0 @@
|
|
|
1
|
-
<header class="gov-header">
|
|
2
|
-
<div class="gov-header__divider">
|
|
3
|
-
<div class="gov-header__content">
|
|
4
|
-
<gov-flex
|
|
5
|
-
justify-content="space-between"
|
|
6
|
-
align-items="center"
|
|
7
|
-
responsive="false"
|
|
8
|
-
>
|
|
9
|
-
<a
|
|
10
|
-
href="/"
|
|
11
|
-
class="gov-header__logo"
|
|
12
|
-
aria-label="Zpět na úvodní stránku"
|
|
13
|
-
>
|
|
14
|
-
<gov-flex
|
|
15
|
-
align-items="center"
|
|
16
|
-
gap="s"
|
|
17
|
-
responsive="false"
|
|
18
|
-
>
|
|
19
|
-
@if (logoUrl) {
|
|
20
|
-
<img
|
|
21
|
-
class="gov-header__logo-img"
|
|
22
|
-
src="{{ logoUrl }}"
|
|
23
|
-
width="125px"
|
|
24
|
-
height="43px"
|
|
25
|
-
alt="GAČR Logo"
|
|
26
|
-
>
|
|
27
|
-
}
|
|
28
|
-
</gov-flex>
|
|
29
|
-
</a>
|
|
30
|
-
</gov-flex>
|
|
31
|
-
<gov-flex
|
|
32
|
-
class="gov-header__action"
|
|
33
|
-
justify-content="space-between"
|
|
34
|
-
align-items="center"
|
|
35
|
-
gap="s"
|
|
36
|
-
>
|
|
37
|
-
<gov-button
|
|
38
|
-
color="primary"
|
|
39
|
-
size="m"
|
|
40
|
-
type="base"
|
|
41
|
-
>{{ userName }}</gov-button>
|
|
42
|
-
<ng-content></ng-content>
|
|
43
|
-
<ng-container *ngTemplateOutlet="
|
|
44
|
-
this.actionTemplate;
|
|
45
|
-
"></ng-container>
|
|
46
|
-
</gov-flex>
|
|
47
|
-
</div>
|
|
48
|
-
</div>
|
|
49
|
-
<div class="gov-header__navigation">
|
|
50
|
-
<nav
|
|
51
|
-
class="gov-navigation"
|
|
52
|
-
aria-label="Main navigation"
|
|
53
|
-
id="main-navigation"
|
|
54
|
-
>
|
|
55
|
-
<ul>
|
|
56
|
-
@for (tab of tabsService.menuItems$ | async; track tab; let index = $index) {
|
|
57
|
-
<li
|
|
58
|
-
*hasPermission="tab.data?.permissions ?? []"
|
|
59
|
-
class="gov-navigation--has-megamenu"
|
|
60
|
-
>
|
|
61
|
-
<gov-button
|
|
62
|
-
type="base"
|
|
63
|
-
color="primary"
|
|
64
|
-
size="l"
|
|
65
|
-
[attr.aria-label]="tab.label"
|
|
66
|
-
(gov-click)="
|
|
67
|
-
showOrHide(index, tab.children?.length ?? 0);
|
|
68
|
-
canRedirect(tab.url, !tab.children?.length)
|
|
69
|
-
"
|
|
70
|
-
>
|
|
71
|
-
{{ tab.label }}
|
|
72
|
-
@if (tab.children?.length) {
|
|
73
|
-
<gov-icon
|
|
74
|
-
slot="icon-end"
|
|
75
|
-
size="s"
|
|
76
|
-
[name]="canBeShown(index) ? 'chevron-up' : 'chevron-down'"
|
|
77
|
-
></gov-icon>
|
|
78
|
-
}
|
|
79
|
-
</gov-button>
|
|
80
|
-
@if (canBeShown(index)) {
|
|
81
|
-
<ul
|
|
82
|
-
id="megamenu{{index}}"
|
|
83
|
-
class="gov-mega-menu gov-header__submenu"
|
|
84
|
-
[attr.aria-hidden]="canBeShown(index)"
|
|
85
|
-
>
|
|
86
|
-
@for (child of tab.children; track child) {
|
|
87
|
-
<li
|
|
88
|
-
*hasPermission="child.data?.permissions ?? []"
|
|
89
|
-
class="gov-mega-menu__heading"
|
|
90
|
-
>
|
|
91
|
-
<a
|
|
92
|
-
[routerLink]="child.url"
|
|
93
|
-
(click)="showOrHide(index)"
|
|
94
|
-
>
|
|
95
|
-
@if (child.icon) {
|
|
96
|
-
<gov-icon
|
|
97
|
-
[name]="child.icon"
|
|
98
|
-
size="m"
|
|
99
|
-
></gov-icon>
|
|
100
|
-
}
|
|
101
|
-
<span>{{ child.label }}</span>
|
|
102
|
-
</a>
|
|
103
|
-
@if (child.children) { @for(miniChild of child.children; track miniChild) {
|
|
104
|
-
<ul>
|
|
105
|
-
<li *hasPermission="miniChild.data?.permissions ?? []">
|
|
106
|
-
<a
|
|
107
|
-
[routerLink]="miniChild.url"
|
|
108
|
-
(click)="showOrHide(index)"
|
|
109
|
-
>{{ miniChild.label }}</a>
|
|
110
|
-
</li>
|
|
111
|
-
</ul>
|
|
112
|
-
} }
|
|
113
|
-
</li>
|
|
114
|
-
}
|
|
115
|
-
</ul>
|
|
116
|
-
}
|
|
117
|
-
</li>
|
|
118
|
-
}
|
|
119
|
-
</ul>
|
|
120
|
-
</nav>
|
|
121
|
-
</div>
|
|
122
|
-
</header>
|
|
File without changes
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
import { AsyncPipe, CommonModule } from "@angular/common";
|
|
2
|
-
import {
|
|
3
|
-
ChangeDetectionStrategy,
|
|
4
|
-
Component,
|
|
5
|
-
ContentChild,
|
|
6
|
-
inject,
|
|
7
|
-
Input,
|
|
8
|
-
TemplateRef,
|
|
9
|
-
} from "@angular/core";
|
|
10
|
-
import { Router, RouterModule } from "@angular/router";
|
|
11
|
-
import { GovDesignSystemModule } from "@gov-design-system-ce/angular";
|
|
12
|
-
import { HasPermissionDirective } from '@verisoft/security-core';
|
|
13
|
-
import {
|
|
14
|
-
HEADER_COMPONENT_TOKEN,
|
|
15
|
-
HeaderCore,
|
|
16
|
-
MenuItem,
|
|
17
|
-
SideMenuService,
|
|
18
|
-
} from "@verisoft/ui-core";
|
|
19
|
-
import { Icons } from "../../icons";
|
|
20
|
-
|
|
21
|
-
@Component({
|
|
22
|
-
selector: "v-header",
|
|
23
|
-
standalone: true,
|
|
24
|
-
styleUrl: "./header.component.scss",
|
|
25
|
-
templateUrl: './header.component.html',
|
|
26
|
-
imports: [
|
|
27
|
-
CommonModule,
|
|
28
|
-
GovDesignSystemModule,
|
|
29
|
-
AsyncPipe,
|
|
30
|
-
RouterModule,
|
|
31
|
-
HasPermissionDirective,
|
|
32
|
-
],
|
|
33
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
34
|
-
providers: [
|
|
35
|
-
{
|
|
36
|
-
provide: HEADER_COMPONENT_TOKEN,
|
|
37
|
-
useExisting: HeaderComponent
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
})
|
|
41
|
-
export class HeaderComponent
|
|
42
|
-
implements HeaderCore {
|
|
43
|
-
|
|
44
|
-
@Input() title!: string;
|
|
45
|
-
|
|
46
|
-
@Input() userName!: string;
|
|
47
|
-
|
|
48
|
-
@Input() logoUrl!: string;
|
|
49
|
-
|
|
50
|
-
@Input() userRole!: any;
|
|
51
|
-
|
|
52
|
-
@Input() menuRef!: HTMLDivElement;
|
|
53
|
-
|
|
54
|
-
@Input() items: MenuItem[] = [];
|
|
55
|
-
|
|
56
|
-
@ContentChild('action', { static: false })
|
|
57
|
-
actionTemplate!: TemplateRef<{ $implicit: any }>;
|
|
58
|
-
|
|
59
|
-
protected icons = Icons;
|
|
60
|
-
protected menuVisible = false;
|
|
61
|
-
private openedIndexes: number[] = [];
|
|
62
|
-
|
|
63
|
-
protected readonly tabsService = inject(SideMenuService);
|
|
64
|
-
private readonly router = inject(Router);
|
|
65
|
-
|
|
66
|
-
toggleMenu() {
|
|
67
|
-
this.menuVisible = !this.menuVisible;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
protected canRedirect(url?: string, canRedirect?: boolean) {
|
|
71
|
-
if (url && canRedirect) {
|
|
72
|
-
this.router.navigateByUrl(url);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
protected showOrHide(index: number, children?: number): void {
|
|
77
|
-
if (children === 0) {
|
|
78
|
-
return;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
if (!this.openedIndexes.includes(index)) {
|
|
82
|
-
this.openedIndexes = [...[], index];
|
|
83
|
-
} else if (this.openedIndexes.includes(index)) {
|
|
84
|
-
this.openedIndexes = this.openedIndexes.filter(x => x !== index);
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
protected canBeShown(index: number) {
|
|
89
|
-
return this.openedIndexes.includes(index);
|
|
90
|
-
}
|
|
91
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './header.component'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './input-group.component';
|
|
@@ -1,41 +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
|
-
@if(prefix) {
|
|
11
|
-
<gov-icon
|
|
12
|
-
[name]="name"
|
|
13
|
-
/>
|
|
14
|
-
}
|
|
15
|
-
<gov-form-input
|
|
16
|
-
input-type="input-type"
|
|
17
|
-
[formControl]="formControl"
|
|
18
|
-
[minlength]="minlength"
|
|
19
|
-
[maxlength]="maxlength"
|
|
20
|
-
[size]='size | govSize'
|
|
21
|
-
[name]='name'
|
|
22
|
-
[role]='role'
|
|
23
|
-
[required]="required"
|
|
24
|
-
[readonly]="readonly"
|
|
25
|
-
[invalid]="ngControl?.errors ? true : false"
|
|
26
|
-
/>
|
|
27
|
-
@if(sufix) {
|
|
28
|
-
<gov-icon
|
|
29
|
-
[name]="name"
|
|
30
|
-
/>
|
|
31
|
-
}
|
|
32
|
-
<v-validation-message [ngControl]="ngControl"></v-validation-message>
|
|
33
|
-
@if (message) {
|
|
34
|
-
<gov-form-message
|
|
35
|
-
[slot]="messageSlot"
|
|
36
|
-
color="neutral"
|
|
37
|
-
>
|
|
38
|
-
{{ message }}
|
|
39
|
-
</gov-form-message>
|
|
40
|
-
}
|
|
41
|
-
</gov-form-control>
|
|
File without changes
|
|
@@ -1,77 +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
|
-
INPUT_GROUP_COMPONENT_TOKEN,
|
|
18
|
-
InputGroupCore,
|
|
19
|
-
InputGroupItem,
|
|
20
|
-
FieldSizeType,
|
|
21
|
-
FieldSize,
|
|
22
|
-
IconPositionType,
|
|
23
|
-
IconPosition,
|
|
24
|
-
SlotPositionType,
|
|
25
|
-
SlotPosition,
|
|
26
|
-
FieldTypeType,
|
|
27
|
-
FieldType,
|
|
28
|
-
} from '@verisoft/ui-core';
|
|
29
|
-
import { Icons } from '../../icons';
|
|
30
|
-
import { GovSizePipe } from '../../pipes';
|
|
31
|
-
import { ErrorComponent } from '../errors';
|
|
32
|
-
|
|
33
|
-
@Component({
|
|
34
|
-
selector: 'v-input-group',
|
|
35
|
-
standalone: true,
|
|
36
|
-
imports: [
|
|
37
|
-
CommonModule,
|
|
38
|
-
ReactiveFormsModule,
|
|
39
|
-
GovDesignSystemModule,
|
|
40
|
-
GovSizePipe,
|
|
41
|
-
ErrorComponent,
|
|
42
|
-
],
|
|
43
|
-
templateUrl: './input-group.component.html',
|
|
44
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
45
|
-
providers: [
|
|
46
|
-
{
|
|
47
|
-
provide: INPUT_GROUP_COMPONENT_TOKEN,
|
|
48
|
-
useExisting: InputGroupComponent,
|
|
49
|
-
},
|
|
50
|
-
],
|
|
51
|
-
})
|
|
52
|
-
export class InputGroupComponent
|
|
53
|
-
extends BaseFormInputComponent
|
|
54
|
-
implements ControlValueAccessor, InputGroupCore
|
|
55
|
-
{
|
|
56
|
-
@Input() floatLabel!: boolean;
|
|
57
|
-
@Input() type: FieldTypeType = FieldType.text;
|
|
58
|
-
@Input() minlength = 0;
|
|
59
|
-
@Input() items!: InputGroupItem[];
|
|
60
|
-
@Input() prefix!: string;
|
|
61
|
-
@Input() sufix!: string;
|
|
62
|
-
@Input() maxlength = 524288;
|
|
63
|
-
@Input() name! : string;
|
|
64
|
-
@Input() role! : string;
|
|
65
|
-
@Input() message! : string;
|
|
66
|
-
@Input() size: FieldSizeType | undefined = FieldSize.medium;
|
|
67
|
-
@Input() icon!: string;
|
|
68
|
-
@Input() iconPos: IconPositionType = IconPosition.right;
|
|
69
|
-
@Input() labelSlot: SlotPositionType = SlotPosition.top;
|
|
70
|
-
@Input() messageSlot: SlotPositionType = SlotPosition.bottom;
|
|
71
|
-
|
|
72
|
-
icons = Icons;
|
|
73
|
-
|
|
74
|
-
constructor(@Optional() @Self() ngControl: NgControl) {
|
|
75
|
-
super(ngControl);
|
|
76
|
-
}
|
|
77
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './loader.component';
|
|
File without changes
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { LoaderComponent } from './loader.component';
|
|
3
|
-
|
|
4
|
-
describe('LoaderComponent', () => {
|
|
5
|
-
let component: LoaderComponent;
|
|
6
|
-
let fixture: ComponentFixture<LoaderComponent>;
|
|
7
|
-
|
|
8
|
-
beforeEach(async () => {
|
|
9
|
-
await TestBed.configureTestingModule({
|
|
10
|
-
imports: [LoaderComponent],
|
|
11
|
-
}).compileComponents();
|
|
12
|
-
|
|
13
|
-
fixture = TestBed.createComponent(LoaderComponent);
|
|
14
|
-
component = fixture.componentInstance;
|
|
15
|
-
fixture.detectChanges();
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
it('should create', () => {
|
|
19
|
-
expect(component).toBeTruthy();
|
|
20
|
-
});
|
|
21
|
-
});
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
3
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
4
|
-
import {
|
|
5
|
-
LOADER_COMPONENT_TOKEN,
|
|
6
|
-
LoaderCore,
|
|
7
|
-
FieldSize,
|
|
8
|
-
FieldSizeType,
|
|
9
|
-
} from '@verisoft/ui-core';
|
|
10
|
-
import { GovSizePipe } from '../../pipes';
|
|
11
|
-
|
|
12
|
-
@Component({
|
|
13
|
-
selector: 'v-loader',
|
|
14
|
-
standalone: true,
|
|
15
|
-
imports: [
|
|
16
|
-
CommonModule, GovDesignSystemModule, GovSizePipe
|
|
17
|
-
],
|
|
18
|
-
templateUrl: './loader.component.html',
|
|
19
|
-
styleUrl: './loader.component.scss',
|
|
20
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
21
|
-
providers: [
|
|
22
|
-
{
|
|
23
|
-
provide: LOADER_COMPONENT_TOKEN,
|
|
24
|
-
useExisting: LoaderComponent,
|
|
25
|
-
}
|
|
26
|
-
],
|
|
27
|
-
})
|
|
28
|
-
export class LoaderComponent
|
|
29
|
-
implements LoaderCore
|
|
30
|
-
{
|
|
31
|
-
@Input() size: FieldSizeType = FieldSize.medium;
|
|
32
|
-
@Input() message!: string;
|
|
33
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './multiselect.component';
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
<gov-form-control>
|
|
2
|
-
<gov-form-label
|
|
3
|
-
[slot]="label"
|
|
4
|
-
[size]="size | govSize"
|
|
5
|
-
>
|
|
6
|
-
{{ label }}
|
|
7
|
-
</gov-form-label>
|
|
8
|
-
<gov-form-multi-select
|
|
9
|
-
[size]="size | govSize"
|
|
10
|
-
[formControl]="formControl"
|
|
11
|
-
[required]="required"
|
|
12
|
-
[invalid]="ngControl && ngControl.errors"
|
|
13
|
-
[options]="options | govMultiselectOptions : optionLabel : optionValue"
|
|
14
|
-
[placeholder]="placeholder ?? ''"
|
|
15
|
-
(gov-focus)="onDropdownShow()"
|
|
16
|
-
(gov-remove)="onDropdownClear()"
|
|
17
|
-
(gov-change)="selectionChange($event)"
|
|
18
|
-
(lazyLoadEvent)="onLazyLoad($any($event))"
|
|
19
|
-
/>
|
|
20
|
-
<v-validation-message [ngControl]="ngControl"></v-validation-message>
|
|
21
|
-
</gov-form-control>
|
|
File without changes
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { MultiselectComponent } from './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,119 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import {
|
|
3
|
-
ChangeDetectionStrategy,
|
|
4
|
-
Component,
|
|
5
|
-
EventEmitter,
|
|
6
|
-
Input,
|
|
7
|
-
OnChanges,
|
|
8
|
-
Optional,
|
|
9
|
-
Output,
|
|
10
|
-
Self,
|
|
11
|
-
SimpleChanges,
|
|
12
|
-
inject,
|
|
13
|
-
ChangeDetectorRef,
|
|
14
|
-
} from '@angular/core';
|
|
15
|
-
import {
|
|
16
|
-
ControlValueAccessor,
|
|
17
|
-
NgControl,
|
|
18
|
-
ReactiveFormsModule,
|
|
19
|
-
} from '@angular/forms';
|
|
20
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
21
|
-
import {
|
|
22
|
-
FilterEvent,
|
|
23
|
-
LazyLoadEvent,
|
|
24
|
-
} from '@verisoft/core';
|
|
25
|
-
import {
|
|
26
|
-
BaseFormInputComponent,
|
|
27
|
-
MULTISELECT_COMPONENT_TOKEN,
|
|
28
|
-
MultiselectCore,
|
|
29
|
-
FieldSize,
|
|
30
|
-
FieldSizeType,
|
|
31
|
-
SlotPosition,
|
|
32
|
-
SlotPositionType,
|
|
33
|
-
} from '@verisoft/ui-core';
|
|
34
|
-
import { Icons } from '../../icons';
|
|
35
|
-
import { GovMultiselectOptionsPipe, GovSizePipe } from '../../pipes';
|
|
36
|
-
import { ErrorComponent } from '../errors';
|
|
37
|
-
|
|
38
|
-
@Component({
|
|
39
|
-
selector: 'v-multiselect',
|
|
40
|
-
standalone: true,
|
|
41
|
-
imports: [
|
|
42
|
-
CommonModule,
|
|
43
|
-
ReactiveFormsModule,
|
|
44
|
-
GovDesignSystemModule,
|
|
45
|
-
GovSizePipe,
|
|
46
|
-
GovMultiselectOptionsPipe,
|
|
47
|
-
ErrorComponent,
|
|
48
|
-
],
|
|
49
|
-
templateUrl: './multiselect.component.html',
|
|
50
|
-
styleUrl: './multiselect.component.scss',
|
|
51
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
52
|
-
providers: [
|
|
53
|
-
{
|
|
54
|
-
provide: MULTISELECT_COMPONENT_TOKEN,
|
|
55
|
-
useExisting: MultiselectComponent,
|
|
56
|
-
},
|
|
57
|
-
],
|
|
58
|
-
})
|
|
59
|
-
export class MultiselectComponent<T>
|
|
60
|
-
extends BaseFormInputComponent
|
|
61
|
-
implements ControlValueAccessor, OnChanges, MultiselectCore<T>
|
|
62
|
-
{
|
|
63
|
-
constructor(@Optional() @Self() ngControl: NgControl) {
|
|
64
|
-
super(ngControl);
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
@Input() options: T[] | undefined = [];
|
|
68
|
-
@Input() optionLabel!: string | undefined;
|
|
69
|
-
@Input() optionValue!: string | undefined;
|
|
70
|
-
@Input() dropdownIcon: string | undefined;
|
|
71
|
-
@Input() floatLabel: string | undefined;
|
|
72
|
-
@Input() editable = true;
|
|
73
|
-
@Input() display!: 'flex' | 'block';
|
|
74
|
-
@Input() errorSlot: SlotPositionType = SlotPosition.bottom;
|
|
75
|
-
@Input() lazy!: boolean;
|
|
76
|
-
@Input() filter!: boolean;
|
|
77
|
-
@Input() loading = false;
|
|
78
|
-
@Input() size: FieldSizeType = FieldSize.medium;
|
|
79
|
-
|
|
80
|
-
@Output() changed = new EventEmitter<any>();
|
|
81
|
-
@Output() showed = new EventEmitter<any>();
|
|
82
|
-
@Output() cleared = new EventEmitter<any>();
|
|
83
|
-
@Output() lazyLoad = new EventEmitter<LazyLoadEvent>();
|
|
84
|
-
@Output() filtered = new EventEmitter<FilterEvent>();
|
|
85
|
-
|
|
86
|
-
icons = Icons;
|
|
87
|
-
|
|
88
|
-
lazyLoadOptions: LazyLoadEvent = {
|
|
89
|
-
limit: 50,
|
|
90
|
-
offset: 0,
|
|
91
|
-
};
|
|
92
|
-
|
|
93
|
-
cdRef = inject(ChangeDetectorRef);
|
|
94
|
-
|
|
95
|
-
ngOnChanges(changes: SimpleChanges): void {
|
|
96
|
-
if (changes['options'] && !changes['options'].firstChange) {
|
|
97
|
-
this.cdRef.detectChanges();
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
onLazyLoad(event: any): void {
|
|
102
|
-
if (this.options && this.options.length - event.last <= 0) {
|
|
103
|
-
this.lazyLoadOptions.offset = event.last;
|
|
104
|
-
this.lazyLoad.emit(this.lazyLoadOptions);
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
selectionChange(event: any): void {
|
|
109
|
-
this.cleared.emit(event);
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
onDropdownShow(): void {
|
|
113
|
-
this.showed.emit();
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
onDropdownClear(): void {
|
|
117
|
-
this.cleared.emit();
|
|
118
|
-
}
|
|
119
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './number-input.component';
|
|
@@ -1,48 +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
|
-
<gov-form-input
|
|
12
|
-
[attr.input-type]="type"
|
|
13
|
-
[formControl]="formControl"
|
|
14
|
-
[minlength]="minlength"
|
|
15
|
-
[maxlength]="maxlength"
|
|
16
|
-
[size]='size | govSize'
|
|
17
|
-
[name]='name'
|
|
18
|
-
[role]='role'
|
|
19
|
-
[required]="required"
|
|
20
|
-
[readonly]="readonly"
|
|
21
|
-
[invalid]="ngControl?.errors ? true : false"
|
|
22
|
-
>
|
|
23
|
-
@if (icon) {
|
|
24
|
-
<gov-icon
|
|
25
|
-
[name]="icon"
|
|
26
|
-
[slot]="iconPos === 'left' ? 'icon-start' : 'icon-end'"
|
|
27
|
-
/>
|
|
28
|
-
} @if (prefix) {
|
|
29
|
-
<p slot="prefix">
|
|
30
|
-
{{ prefix }}
|
|
31
|
-
</p>
|
|
32
|
-
} @if (sufix) {
|
|
33
|
-
<p slot="sufix">
|
|
34
|
-
{{ sufix }}
|
|
35
|
-
</p>
|
|
36
|
-
}
|
|
37
|
-
</gov-form-input>
|
|
38
|
-
<v-validation-message [ngControl]="ngControl"></v-validation-message>
|
|
39
|
-
@if (message) {
|
|
40
|
-
<gov-form-message
|
|
41
|
-
[slot]="messageSlot"
|
|
42
|
-
color="neutral"
|
|
43
|
-
>
|
|
44
|
-
{{ message }}
|
|
45
|
-
</gov-form-message>
|
|
46
|
-
}
|
|
47
|
-
</gov-form-group>
|
|
48
|
-
</gov-form-control>
|
|
File without changes
|