@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,82 +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
|
-
NumberInputCore,
|
|
17
|
-
NUMBER_INPUT_COMPONENT_TOKEN,
|
|
18
|
-
FieldType,
|
|
19
|
-
BaseFormInputComponent,
|
|
20
|
-
FieldSizeType,
|
|
21
|
-
FieldSize,
|
|
22
|
-
IconPositionType,
|
|
23
|
-
IconPosition,
|
|
24
|
-
SlotPositionType,
|
|
25
|
-
SlotPosition,
|
|
26
|
-
FieldTypeType,
|
|
27
|
-
} from '@verisoft/ui-core';
|
|
28
|
-
import { Icons } from '../../icons';
|
|
29
|
-
import { GovSizePipe } from '../../pipes';
|
|
30
|
-
import { ErrorComponent } from '../errors';
|
|
31
|
-
@Component({
|
|
32
|
-
selector: 'v-number-input',
|
|
33
|
-
standalone: true,
|
|
34
|
-
imports: [
|
|
35
|
-
CommonModule,
|
|
36
|
-
ReactiveFormsModule,
|
|
37
|
-
GovDesignSystemModule,
|
|
38
|
-
GovSizePipe,
|
|
39
|
-
ErrorComponent,
|
|
40
|
-
],
|
|
41
|
-
templateUrl: './number-input.component.html',
|
|
42
|
-
styleUrl: './number-input.component.scss',
|
|
43
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
44
|
-
providers: [
|
|
45
|
-
{
|
|
46
|
-
provide: NUMBER_INPUT_COMPONENT_TOKEN,
|
|
47
|
-
useExisting: NumberInputComponent,
|
|
48
|
-
},
|
|
49
|
-
],
|
|
50
|
-
})
|
|
51
|
-
|
|
52
|
-
export class NumberInputComponent
|
|
53
|
-
extends BaseFormInputComponent
|
|
54
|
-
implements ControlValueAccessor, NumberInputCore
|
|
55
|
-
{
|
|
56
|
-
@Input() mode!: string;
|
|
57
|
-
@Input() currency!: string;
|
|
58
|
-
@Input() min!: number;
|
|
59
|
-
@Input() max!: number;
|
|
60
|
-
@Input() step = 1;
|
|
61
|
-
@Input() floatLabel!: boolean;
|
|
62
|
-
@Input() type: FieldTypeType = FieldType.number;
|
|
63
|
-
@Input() minlength = 0;
|
|
64
|
-
@Input() maxlength = 524288;
|
|
65
|
-
@Input() prefix!: string;
|
|
66
|
-
@Input() sufix!: string;
|
|
67
|
-
@Input() message!: string;
|
|
68
|
-
@Input() name! : string;
|
|
69
|
-
@Input() role! : string;
|
|
70
|
-
@Input() size: FieldSizeType | undefined = FieldSize.medium;
|
|
71
|
-
@Input() icon!: string;
|
|
72
|
-
@Input() iconPos: IconPositionType = IconPosition.right;
|
|
73
|
-
@Input() labelSlot: SlotPositionType = SlotPosition.top;
|
|
74
|
-
@Input() errorSlot: SlotPositionType = SlotPosition.bottom;
|
|
75
|
-
@Input() messageSlot: SlotPositionType = SlotPosition.bottom;
|
|
76
|
-
|
|
77
|
-
icons = Icons;
|
|
78
|
-
|
|
79
|
-
constructor(@Optional() @Self() ngControl: NgControl) {
|
|
80
|
-
super(ngControl);
|
|
81
|
-
}
|
|
82
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './page-header.component';
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { PageHeaderComponent } from './page-header.component';
|
|
3
|
-
|
|
4
|
-
describe('PageHeaderComponent', () => {
|
|
5
|
-
let component: PageHeaderComponent;
|
|
6
|
-
let fixture: ComponentFixture<PageHeaderComponent>;
|
|
7
|
-
|
|
8
|
-
beforeEach(async () => {
|
|
9
|
-
await TestBed.configureTestingModule({
|
|
10
|
-
imports: [PageHeaderComponent],
|
|
11
|
-
}).compileComponents();
|
|
12
|
-
|
|
13
|
-
fixture = TestBed.createComponent(PageHeaderComponent);
|
|
14
|
-
component = fixture.componentInstance;
|
|
15
|
-
fixture.detectChanges();
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
it('should create', () => {
|
|
19
|
-
expect(component).toBeTruthy();
|
|
20
|
-
});
|
|
21
|
-
});
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import {
|
|
3
|
-
ChangeDetectionStrategy,
|
|
4
|
-
Component,
|
|
5
|
-
Input,
|
|
6
|
-
} from '@angular/core';
|
|
7
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
8
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
9
|
-
import { PageHeaderCore } from '@verisoft/ui-core';
|
|
10
|
-
|
|
11
|
-
@Component({
|
|
12
|
-
selector: 'v-page-header',
|
|
13
|
-
standalone: true,
|
|
14
|
-
imports: [
|
|
15
|
-
CommonModule,
|
|
16
|
-
GovDesignSystemModule,
|
|
17
|
-
TranslateModule,
|
|
18
|
-
],
|
|
19
|
-
templateUrl: './page-header.component.html',
|
|
20
|
-
styleUrl: './page-header.component.scss',
|
|
21
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
22
|
-
})
|
|
23
|
-
export class PageHeaderComponent implements PageHeaderCore {
|
|
24
|
-
@Input() title = '';
|
|
25
|
-
|
|
26
|
-
@Input() subtitle: string | undefined;
|
|
27
|
-
|
|
28
|
-
@Input() showBackButton: boolean | undefined;
|
|
29
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
<gov-form-control class="mb-3">
|
|
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
|
-
@if (feedback) {
|
|
12
|
-
<gov-form-password-power [power]="passwordStrength - 1" />
|
|
13
|
-
}
|
|
14
|
-
<gov-form-input
|
|
15
|
-
[formControl]="formControl"
|
|
16
|
-
[attr.input-type]="type"
|
|
17
|
-
[placeholder]="placeholder"
|
|
18
|
-
[invalid]="ngControl?.errors"
|
|
19
|
-
(ngModelChange)="valueChange($event)"
|
|
20
|
-
/>
|
|
21
|
-
</gov-form-group>
|
|
22
|
-
<v-validation-message [ngControl]="ngControl"></v-validation-message>
|
|
23
|
-
@if (message) {
|
|
24
|
-
<gov-form-message
|
|
25
|
-
[slot]="messageSlot"
|
|
26
|
-
color="neutral"
|
|
27
|
-
>
|
|
28
|
-
{{ message }}
|
|
29
|
-
</gov-form-message>
|
|
30
|
-
}
|
|
31
|
-
</gov-form-control>
|
|
File without changes
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { PasswordComponent } from './password.component';
|
|
3
|
-
|
|
4
|
-
describe('PasswordComponent', () => {
|
|
5
|
-
let component: PasswordComponent;
|
|
6
|
-
let fixture: ComponentFixture< PasswordComponent>;
|
|
7
|
-
|
|
8
|
-
beforeEach(async () => {
|
|
9
|
-
await TestBed.configureTestingModule({
|
|
10
|
-
imports: [PasswordComponent],
|
|
11
|
-
}).compileComponents();
|
|
12
|
-
|
|
13
|
-
fixture = TestBed.createComponent(PasswordComponent);
|
|
14
|
-
component = fixture.componentInstance;
|
|
15
|
-
fixture.detectChanges();
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
it('should create', () => {
|
|
19
|
-
expect(component).toBeTruthy();
|
|
20
|
-
});
|
|
21
|
-
});
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, Input, Optional, Self } from '@angular/core';
|
|
3
|
-
import { ControlValueAccessor, NgControl, ReactiveFormsModule } from '@angular/forms';
|
|
4
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
5
|
-
import {
|
|
6
|
-
BaseFormInputComponent,
|
|
7
|
-
FieldType,
|
|
8
|
-
PASSWORD_COMPONENT_TOKEN,
|
|
9
|
-
PasswordCore,
|
|
10
|
-
SlotPosition,
|
|
11
|
-
SlotPositionType,
|
|
12
|
-
IconPosition,
|
|
13
|
-
IconPositionType,
|
|
14
|
-
FieldSize,
|
|
15
|
-
FieldSizeType,
|
|
16
|
-
PasswordStrength,
|
|
17
|
-
} from '@verisoft/ui-core';
|
|
18
|
-
import zxcvbn from 'zxcvbn';
|
|
19
|
-
import { Icons } from '../../icons';
|
|
20
|
-
import { GovSizePipe } from '../../pipes';
|
|
21
|
-
import { ErrorComponent } from '../errors';
|
|
22
|
-
|
|
23
|
-
@Component({
|
|
24
|
-
selector: 'v-password',
|
|
25
|
-
standalone: true,
|
|
26
|
-
imports: [
|
|
27
|
-
CommonModule,
|
|
28
|
-
ReactiveFormsModule,
|
|
29
|
-
GovDesignSystemModule,
|
|
30
|
-
GovSizePipe,
|
|
31
|
-
ErrorComponent,
|
|
32
|
-
],
|
|
33
|
-
templateUrl: './password.component.html',
|
|
34
|
-
styleUrl: './password.component.scss',
|
|
35
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
36
|
-
providers: [
|
|
37
|
-
{
|
|
38
|
-
provide: PASSWORD_COMPONENT_TOKEN,
|
|
39
|
-
useExisting: PasswordComponent
|
|
40
|
-
}
|
|
41
|
-
],
|
|
42
|
-
})
|
|
43
|
-
|
|
44
|
-
export class PasswordComponent
|
|
45
|
-
extends BaseFormInputComponent
|
|
46
|
-
implements ControlValueAccessor, PasswordCore
|
|
47
|
-
{
|
|
48
|
-
@Input() toggleMask = true;
|
|
49
|
-
@Input() feedback = false;
|
|
50
|
-
@Input() labelSlot: SlotPositionType = SlotPosition.top;
|
|
51
|
-
@Input() requiredStrength: PasswordStrength = PasswordStrength.None;
|
|
52
|
-
@Input() message!: string;
|
|
53
|
-
@Input() name! : string;
|
|
54
|
-
@Input() role! : string;
|
|
55
|
-
@Input() icon!: string;
|
|
56
|
-
@Input() iconPos: IconPositionType = IconPosition.right;
|
|
57
|
-
@Input() size: FieldSizeType | undefined = FieldSize.medium;
|
|
58
|
-
@Input() messageSlot: SlotPositionType = SlotPosition.bottom;
|
|
59
|
-
|
|
60
|
-
icons = Icons;
|
|
61
|
-
passwordStrength: PasswordStrength = PasswordStrength.None;
|
|
62
|
-
type = FieldType.password;
|
|
63
|
-
|
|
64
|
-
constructor(@Optional() @Self() ngControl: NgControl) {
|
|
65
|
-
super(ngControl);
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
valueChange(value: string) {
|
|
69
|
-
if (!value) {
|
|
70
|
-
this.passwordStrength = 0;
|
|
71
|
-
return;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
const result = zxcvbn(value);
|
|
75
|
-
this.passwordStrength = result.score;
|
|
76
|
-
|
|
77
|
-
if (!this.formControl) {
|
|
78
|
-
return;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
if (result.score < this.requiredStrength) {
|
|
82
|
-
this.formControl.setErrors({passwordLowStrength: true}, {emitEvent: false})
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './radiobutton.component';
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<gov-form-control>
|
|
2
|
-
<gov-form-radio-group [formControl]="formControl">
|
|
3
|
-
@if (items) { @for(item of items; track item) {
|
|
4
|
-
<gov-form-radio
|
|
5
|
-
[size]="size | govSize"
|
|
6
|
-
[value]="item.value"
|
|
7
|
-
[required]="required"
|
|
8
|
-
[identifier]="item.id"
|
|
9
|
-
[name]="radioGroupName"
|
|
10
|
-
[invalid]="ngControl?.errors"
|
|
11
|
-
[disabled]="formControl.disabled"
|
|
12
|
-
>
|
|
13
|
-
<gov-form-label
|
|
14
|
-
[size]="size | govSize"
|
|
15
|
-
slot="label"
|
|
16
|
-
>
|
|
17
|
-
{{ label }}
|
|
18
|
-
</gov-form-label>
|
|
19
|
-
</gov-form-radio>
|
|
20
|
-
} }
|
|
21
|
-
</gov-form-radio-group>
|
|
22
|
-
<v-validation-message [ngControl]="ngControl"></v-validation-message>
|
|
23
|
-
</gov-form-control>
|
|
File without changes
|
|
@@ -1,58 +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 { RouterModule } from '@angular/router';
|
|
15
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
16
|
-
import {
|
|
17
|
-
BaseFormInputComponent,
|
|
18
|
-
FieldSize,
|
|
19
|
-
FieldSizeType,
|
|
20
|
-
RADIOBUTTON_COMPONENT_TOKEN,
|
|
21
|
-
RadiobuttonCore,
|
|
22
|
-
RadioButtonItem,
|
|
23
|
-
} from '@verisoft/ui-core';
|
|
24
|
-
import { Icons } from '../../icons';
|
|
25
|
-
import { GovSizePipe } from '../../pipes';
|
|
26
|
-
import { ErrorComponent } from '../errors';
|
|
27
|
-
|
|
28
|
-
@Component({
|
|
29
|
-
selector: "v-radiobutton",
|
|
30
|
-
standalone: true,
|
|
31
|
-
styleUrl: "./radiobutton.component.scss",
|
|
32
|
-
templateUrl: './radiobutton.component.html',
|
|
33
|
-
imports: [
|
|
34
|
-
CommonModule, GovDesignSystemModule, RouterModule, ReactiveFormsModule, GovSizePipe, ErrorComponent
|
|
35
|
-
],
|
|
36
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
37
|
-
providers: [
|
|
38
|
-
{
|
|
39
|
-
provide: RADIOBUTTON_COMPONENT_TOKEN,
|
|
40
|
-
useExisting: RadioButtonComponent,
|
|
41
|
-
},
|
|
42
|
-
],
|
|
43
|
-
})
|
|
44
|
-
|
|
45
|
-
export class RadioButtonComponent<T>
|
|
46
|
-
extends BaseFormInputComponent
|
|
47
|
-
implements ControlValueAccessor, RadiobuttonCore<T>
|
|
48
|
-
{
|
|
49
|
-
@Input() radioGroupName = Math.random().toString();
|
|
50
|
-
@Input() items: RadioButtonItem<T>[] = [];
|
|
51
|
-
@Input() size: FieldSizeType = FieldSize.medium;
|
|
52
|
-
|
|
53
|
-
icons = Icons;
|
|
54
|
-
|
|
55
|
-
constructor(@Optional() @Self() ngControl: NgControl) {
|
|
56
|
-
super(ngControl);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './search.component';
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<gov-form-control>
|
|
2
|
-
<gov-form-group>
|
|
3
|
-
<gov-form-search color="neutral">
|
|
4
|
-
<gov-form-input
|
|
5
|
-
[placeholder]="placeholder"
|
|
6
|
-
[size]="size | govSize"
|
|
7
|
-
slot="input"
|
|
8
|
-
(gov-input)="setValue($event)"
|
|
9
|
-
/>
|
|
10
|
-
<gov-button
|
|
11
|
-
[size]="size | govSize"
|
|
12
|
-
color="primary"
|
|
13
|
-
type="solid"
|
|
14
|
-
slot="button"
|
|
15
|
-
(gov-click)="search()"
|
|
16
|
-
>
|
|
17
|
-
<gov-icon
|
|
18
|
-
[name]="icons.search"
|
|
19
|
-
/>
|
|
20
|
-
</gov-button>
|
|
21
|
-
</gov-form-search>
|
|
22
|
-
</gov-form-group>
|
|
23
|
-
</gov-form-control>
|
|
File without changes
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import {
|
|
3
|
-
ChangeDetectionStrategy,
|
|
4
|
-
Component,
|
|
5
|
-
EventEmitter,
|
|
6
|
-
Input,
|
|
7
|
-
Output,
|
|
8
|
-
} from '@angular/core';
|
|
9
|
-
import { ReactiveFormsModule } from '@angular/forms';
|
|
10
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
11
|
-
import { FieldSizeType, FieldSize } from '@verisoft/ui-core';
|
|
12
|
-
import { Icons } from '../../icons';
|
|
13
|
-
import { GovSizePipe } from '../../pipes';
|
|
14
|
-
|
|
15
|
-
@Component({
|
|
16
|
-
selector: 'v-search',
|
|
17
|
-
standalone: true,
|
|
18
|
-
imports: [
|
|
19
|
-
CommonModule,
|
|
20
|
-
GovDesignSystemModule,
|
|
21
|
-
GovSizePipe,
|
|
22
|
-
ReactiveFormsModule,
|
|
23
|
-
],
|
|
24
|
-
templateUrl: './search.component.html',
|
|
25
|
-
styleUrl: './search.component.scss',
|
|
26
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
27
|
-
})
|
|
28
|
-
export class SearchComponent {
|
|
29
|
-
|
|
30
|
-
@Input() placeholder!: string;
|
|
31
|
-
|
|
32
|
-
@Input() size: FieldSizeType = FieldSize.medium;
|
|
33
|
-
|
|
34
|
-
@Output() searchTerm = new EventEmitter<string>();
|
|
35
|
-
|
|
36
|
-
value!: string;
|
|
37
|
-
|
|
38
|
-
icons = Icons
|
|
39
|
-
|
|
40
|
-
setValue(event: any) {
|
|
41
|
-
this.value = event.detail.value;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
search() {
|
|
45
|
-
this.searchTerm.emit(this.value);
|
|
46
|
-
}
|
|
47
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './section.component';
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
<gov-accordion>
|
|
2
|
-
<gov-accordion-item
|
|
3
|
-
[size]="size | govSize"
|
|
4
|
-
[identifier]="identifier"
|
|
5
|
-
[open]="open"
|
|
6
|
-
>
|
|
7
|
-
@if (icon) {
|
|
8
|
-
<gov-icon
|
|
9
|
-
[name]="icons.chevronDown"
|
|
10
|
-
/>
|
|
11
|
-
} @if (title) {
|
|
12
|
-
<h2 slot="label">{{ title | translate }}</h2>
|
|
13
|
-
} @if (badge) {
|
|
14
|
-
<gov-badge
|
|
15
|
-
inverse="true"
|
|
16
|
-
size="s"
|
|
17
|
-
[slot]="badgeSlot"
|
|
18
|
-
>
|
|
19
|
-
{{ badge }}
|
|
20
|
-
</gov-badge>
|
|
21
|
-
} @if (annotation) {
|
|
22
|
-
<p slot="annotation">{{ annotation | translate }}</p>
|
|
23
|
-
}
|
|
24
|
-
<ng-content></ng-content>
|
|
25
|
-
</gov-accordion-item>
|
|
26
|
-
</gov-accordion>
|
|
File without changes
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import {
|
|
3
|
-
ChangeDetectionStrategy,
|
|
4
|
-
Component,
|
|
5
|
-
Input,
|
|
6
|
-
NO_ERRORS_SCHEMA,
|
|
7
|
-
} from '@angular/core';
|
|
8
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
9
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
10
|
-
import {
|
|
11
|
-
FieldSizeType,
|
|
12
|
-
FieldSize,
|
|
13
|
-
SECTION_COMPONENT_TOKEN,
|
|
14
|
-
SectionCore,
|
|
15
|
-
} from '@verisoft/ui-core';
|
|
16
|
-
import { Icons } from '../../icons';
|
|
17
|
-
import { GovSizePipe } from '../../pipes';
|
|
18
|
-
|
|
19
|
-
@Component({
|
|
20
|
-
selector: 'v-section',
|
|
21
|
-
standalone: true,
|
|
22
|
-
imports: [
|
|
23
|
-
CommonModule,
|
|
24
|
-
GovDesignSystemModule,
|
|
25
|
-
GovSizePipe,
|
|
26
|
-
TranslateModule,
|
|
27
|
-
],
|
|
28
|
-
templateUrl: './section.component.html',
|
|
29
|
-
styleUrl: './section.component.scss',
|
|
30
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
31
|
-
providers: [
|
|
32
|
-
{
|
|
33
|
-
provide: SECTION_COMPONENT_TOKEN,
|
|
34
|
-
useExisting: SectionComponent,
|
|
35
|
-
},
|
|
36
|
-
],
|
|
37
|
-
schemas: [
|
|
38
|
-
NO_ERRORS_SCHEMA
|
|
39
|
-
],
|
|
40
|
-
})
|
|
41
|
-
export class SectionComponent
|
|
42
|
-
implements SectionCore
|
|
43
|
-
{
|
|
44
|
-
@Input() title!: string;
|
|
45
|
-
@Input() badge!: string;
|
|
46
|
-
@Input() showContent = false;
|
|
47
|
-
@Input() backgroundColor!: string;
|
|
48
|
-
@Input() annotation!: string;
|
|
49
|
-
@Input() identifier!: string;
|
|
50
|
-
@Input() icon!: string;
|
|
51
|
-
@Input() iconType!: string;
|
|
52
|
-
@Input() size: FieldSizeType = FieldSize.medium;
|
|
53
|
-
@Input() badgeSlot: 'prefix' | 'sufix' = 'sufix';
|
|
54
|
-
@Input() open = false;
|
|
55
|
-
|
|
56
|
-
icons = Icons;
|
|
57
|
-
}
|
package/src/lib/components/shared-components/action-button-group/action-button-group.component.html
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
<div
|
|
2
|
-
class="v-action-button-group align-items-center justify-content-center justify-content-md-end"
|
|
3
|
-
>
|
|
4
|
-
<div class="v-action-button-group__actions d-flex gap-2">
|
|
5
|
-
@for (action of visibleActions; track action) {
|
|
6
|
-
<v-action-button
|
|
7
|
-
[disabled]="action.disabled"
|
|
8
|
-
[icon]="action.icon"
|
|
9
|
-
[id]="action.id"
|
|
10
|
-
[outlined]="action.outlined"
|
|
11
|
-
[raised]="action.raised"
|
|
12
|
-
[toolTip]="action.toolTip || action.label"
|
|
13
|
-
[severity]="action.severity"
|
|
14
|
-
[size]="action.size"
|
|
15
|
-
(click)="fireClick(action, $event)"
|
|
16
|
-
></v-action-button>
|
|
17
|
-
} @if (actions.length > visibleActions.length) {
|
|
18
|
-
<v-button
|
|
19
|
-
(click)="menu.toggle($event)"
|
|
20
|
-
[label]="label"
|
|
21
|
-
[iconPos]="menuIconPos"
|
|
22
|
-
[icon]="menuIcon"
|
|
23
|
-
/>
|
|
24
|
-
}
|
|
25
|
-
</div>
|
|
26
|
-
</div>
|
|
27
|
-
<p-menu #menu [model]="menuItems" [popup]="true" appendTo="body" />
|
package/src/lib/components/shared-components/action-button-group/action-button-group.component.scss
DELETED
|
File without changes
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { ActionButtonGroupComponent } from './action-button-group.component';
|
|
3
|
-
|
|
4
|
-
describe('ActionButtonGroupComponent', () => {
|
|
5
|
-
let component: ActionButtonGroupComponent;
|
|
6
|
-
let fixture: ComponentFixture<ActionButtonGroupComponent>;
|
|
7
|
-
|
|
8
|
-
beforeEach(async () => {
|
|
9
|
-
await TestBed.configureTestingModule({
|
|
10
|
-
imports: [ActionButtonGroupComponent],
|
|
11
|
-
}).compileComponents();
|
|
12
|
-
|
|
13
|
-
fixture = TestBed.createComponent(ActionButtonGroupComponent);
|
|
14
|
-
component = fixture.componentInstance;
|
|
15
|
-
fixture.detectChanges();
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
it('should create', () => {
|
|
19
|
-
expect(component).toBeTruthy();
|
|
20
|
-
});
|
|
21
|
-
});
|