@verisoft/ui-primeng 18.6.0 → 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/.eslintrc.json +43 -0
- package/README.md +53 -3
- package/assets/.gitkeep +0 -0
- package/assets/fonts/orbitron-black.ttf +0 -0
- package/assets/fonts/orbitron-bold.otf +0 -0
- package/assets/icons/complex/v-logo.svg +4 -0
- package/assets/images/_global/elon.jpg +0 -0
- package/assets/images/_global/jara.png +0 -0
- package/assets/images/_global/logos/v-logo.webp +0 -0
- package/assets/sass/base/_scrollbar.scss +18 -0
- package/assets/sass/base/_typography.scss +25 -0
- package/assets/sass/layout/_app.scss +27 -0
- package/assets/sass/layout/_button.scss +57 -0
- package/assets/sass/layout/_checkbox.scss +33 -0
- package/assets/sass/layout/_dialog.scss +13 -0
- package/assets/sass/layout/_dropdown.scss +9 -0
- package/assets/sass/layout/_formField.scss +5 -0
- package/assets/sass/layout/_header.scss +63 -0
- package/assets/sass/layout/_icons.scss +13 -0
- package/assets/sass/layout/_inputSwitch.scss +13 -0
- package/assets/sass/layout/_layout.scss +6 -0
- package/assets/sass/layout/_loader.scss +9 -0
- package/assets/sass/layout/_radiobutton.scss +21 -0
- package/assets/sass/layout/_sidemenu.scss +173 -0
- package/assets/sass/layout/_snackbar.scss +8 -0
- package/assets/sass/layout/_tables.scss +5 -0
- package/assets/sass/layout/_tree.scss +12 -0
- package/assets/sass/layout/_tristatecheckbox.scss +15 -0
- package/assets/sass/main.scss +28 -0
- package/assets/sass/themes/_verisoft_theme.scss +46 -0
- package/assets/sass/utils/_mixins.scss +0 -0
- package/assets/sass/utils/_utils.scss +39 -0
- package/assets/sass/utils/_variables.scss +12 -0
- package/assets/sass/vendors/_bootstrap.scss +2 -0
- package/assets/sass/vendors/_primeng.scss +2 -0
- package/jest.config.ts +22 -0
- package/ng-package.json +15 -0
- package/package.json +22 -37
- package/project.json +36 -0
- package/{index.d.ts → src/index.ts} +29 -29
- package/src/lib/components/breadcrumb/breadcrumb.component.html +12 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.scss +18 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +21 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.stories.ts +36 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.ts +29 -0
- package/src/lib/components/breadcrumb/breadcrumb.pipe.ts +13 -0
- package/{lib/components/breadcrumb/index.d.ts → src/lib/components/breadcrumb/index.ts} +1 -1
- package/src/lib/components/button/button.component.html +20 -0
- package/src/lib/components/button/button.component.scss +0 -0
- package/src/lib/components/button/button.component.spec.ts +21 -0
- package/src/lib/components/button/button.component.ts +49 -0
- package/{lib/components/button/index.d.ts → src/lib/components/button/index.ts} +1 -1
- package/src/lib/components/calendar/calendar.component.html +53 -0
- package/src/lib/components/calendar/calendar.component.scss +0 -0
- package/src/lib/components/calendar/calendar.component.spec.ts +21 -0
- package/src/lib/components/calendar/calendar.component.ts +72 -0
- package/{lib/components/calendar/index.d.ts → src/lib/components/calendar/index.ts} +1 -1
- package/src/lib/components/checkbox/checkbox.component.html +19 -0
- package/src/lib/components/checkbox/checkbox.component.scss +15 -0
- package/src/lib/components/checkbox/checkbox.component.spec.ts +21 -0
- package/src/lib/components/checkbox/checkbox.component.stories.ts +72 -0
- package/src/lib/components/checkbox/checkbox.component.ts +45 -0
- package/{lib/components/checkbox/index.d.ts → src/lib/components/checkbox/index.ts} +1 -1
- package/src/lib/components/confirm-dialog/confirm-dialog.component.html +48 -0
- package/src/lib/components/confirm-dialog/confirm-dialog.component.scss +3 -0
- package/src/lib/components/confirm-dialog/confirm-dialog.component.spec.ts +21 -0
- package/src/lib/components/confirm-dialog/confirm-dialog.component.stories.ts +74 -0
- package/src/lib/components/confirm-dialog/confirm-dialog.component.ts +74 -0
- package/{lib/components/confirm-dialog/index.d.ts → src/lib/components/confirm-dialog/index.ts} +1 -1
- package/src/lib/components/dropdown/dropdown.component.html +96 -0
- package/src/lib/components/dropdown/dropdown.component.scss +16 -0
- package/src/lib/components/dropdown/dropdown.component.spec.ts +21 -0
- package/src/lib/components/dropdown/dropdown.component.stories.ts +90 -0
- package/src/lib/components/dropdown/dropdown.component.ts +144 -0
- package/{lib/components/dropdown/index.d.ts → src/lib/components/dropdown/index.ts} +1 -1
- package/src/lib/components/errors/error.component.html +6 -0
- package/src/lib/components/errors/error.component.scss +3 -0
- package/src/lib/components/errors/error.component.ts +35 -0
- package/src/lib/components/errors/index.ts +1 -0
- package/src/lib/components/form-field/form-field.component.html +36 -0
- package/src/lib/components/form-field/form-field.component.scss +0 -0
- package/src/lib/components/form-field/form-field.component.spec.ts +21 -0
- package/src/lib/components/form-field/form-field.component.stories.ts +69 -0
- package/src/lib/components/form-field/form-field.component.ts +38 -0
- package/{lib/components/form-field/index.d.ts → src/lib/components/form-field/index.ts} +1 -1
- package/src/lib/components/header/header.component.html +84 -0
- package/src/lib/components/header/header.component.scss +0 -0
- package/src/lib/components/header/header.component.spec.ts +21 -0
- package/src/lib/components/header/header.component.stories.ts +24 -0
- package/src/lib/components/header/header.component.ts +66 -0
- package/{lib/components/header/index.d.ts → src/lib/components/header/index.ts} +2 -2
- package/src/lib/components/header/services/header-provider.service.ts +15 -0
- package/{lib/components/input-group/index.d.ts → src/lib/components/input-group/index.ts} +1 -1
- package/src/lib/components/input-group/input-group.component.html +30 -0
- package/src/lib/components/input-group/input-group.component.spec.ts +21 -0
- package/src/lib/components/input-group/input-group.component.ts +60 -0
- package/{lib/components/loader/index.d.ts → src/lib/components/loader/index.ts} +1 -1
- package/src/lib/components/loader/loader.component.html +5 -0
- package/src/lib/components/loader/loader.component.scss +0 -0
- package/src/lib/components/loader/loader.component.spec.ts +21 -0
- package/src/lib/components/loader/loader.component.ts +17 -0
- package/{lib/components/multiselect/index.d.ts → src/lib/components/multiselect/index.ts} +1 -1
- package/src/lib/components/multiselect/multiselect.component.html +70 -0
- package/src/lib/components/multiselect/multiselect.component.scss +0 -0
- package/src/lib/components/multiselect/multiselect.component.spec.ts +21 -0
- package/src/lib/components/multiselect/multiselect.component.ts +122 -0
- package/{lib/components/number-input/index.d.ts → src/lib/components/number-input/index.ts} +1 -1
- package/src/lib/components/number-input/number-input.component.html +22 -0
- package/src/lib/components/number-input/number-input.component.spec.ts +21 -0
- package/src/lib/components/number-input/number-input.component.ts +57 -0
- package/{lib/components/page-header/index.d.ts → src/lib/components/page-header/index.ts} +1 -1
- package/src/lib/components/page-header/page-header.component.html +31 -0
- package/src/lib/components/page-header/page-header.component.scss +0 -0
- package/src/lib/components/page-header/page-header.component.spec.ts +21 -0
- package/src/lib/components/page-header/page-header.component.ts +32 -0
- package/{lib/components/password/index.d.ts → src/lib/components/password/index.ts} +1 -1
- package/src/lib/components/password/password.component.html +24 -0
- package/src/lib/components/password/password.component.scss +0 -0
- package/src/lib/components/password/password.component.spec.ts +21 -0
- package/src/lib/components/password/password.component.ts +58 -0
- package/{lib/components/radiobutton/index.d.ts → src/lib/components/radiobutton/index.ts} +1 -1
- package/src/lib/components/radiobutton/radiobutton.component.html +32 -0
- package/src/lib/components/radiobutton/radiobutton.component.scss +6 -0
- package/src/lib/components/radiobutton/radiobutton.component.spec.ts +21 -0
- package/src/lib/components/radiobutton/radiobutton.component.stories.ts +71 -0
- package/src/lib/components/radiobutton/radiobutton.component.ts +62 -0
- package/{lib/components/section/index.d.ts → src/lib/components/section/index.ts} +1 -1
- package/src/lib/components/section/section.component.html +23 -0
- package/src/lib/components/section/section.component.scss +0 -0
- package/src/lib/components/section/section.component.spec.ts +21 -0
- package/src/lib/components/section/section.component.ts +32 -0
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.html +27 -0
- 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 +21 -0
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.ts +114 -0
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.html +11 -0
- 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 +21 -0
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.ts +71 -0
- package/{lib/components/shared-components/action-button-group/index.d.ts → src/lib/components/shared-components/action-button-group/index.ts} +2 -2
- package/src/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.ts +142 -0
- package/src/lib/components/shared-components/dynamic-component/dynamic-component.component.ts +56 -0
- package/{lib/components/shared-components/dynamic-component/index.d.ts → src/lib/components/shared-components/dynamic-component/index.ts} +2 -2
- package/src/lib/components/shared-components/feature-list/directives/feature-list-column.directive.ts +32 -0
- package/src/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.ts +8 -0
- package/src/lib/components/shared-components/feature-list/feature-list-filter.pipe.ts +21 -0
- package/src/lib/components/shared-components/feature-list/feature-list-page.component.ts +31 -0
- package/src/lib/components/shared-components/feature-list/feature-list-page.model.ts +42 -0
- package/src/lib/components/shared-components/feature-list/feature-list.component.html +59 -0
- package/src/lib/components/shared-components/feature-list/feature-list.component.scss +10 -0
- package/src/lib/components/shared-components/feature-list/feature-list.component.ts +342 -0
- package/{lib/components/shared-components/feature-list/index.d.ts → src/lib/components/shared-components/feature-list/index.ts} +5 -5
- package/src/lib/components/shared-components/filter/directives/filter-field.directive.ts +35 -0
- package/src/lib/components/shared-components/filter/filter.component.html +68 -0
- package/src/lib/components/shared-components/filter/filter.component.scss +0 -0
- package/src/lib/components/shared-components/filter/filter.component.spec.ts +21 -0
- package/src/lib/components/shared-components/filter/filter.component.stories.ts +23 -0
- package/src/lib/components/shared-components/filter/filter.component.ts +284 -0
- package/src/lib/components/shared-components/filter/filter.model.ts +18 -0
- package/{lib/components/shared-components/filter/index.d.ts → src/lib/components/shared-components/filter/index.ts} +2 -2
- package/src/lib/components/shared-components/generic-field/generic-field.component.html +97 -0
- package/src/lib/components/shared-components/generic-field/generic-field.component.spec.ts +21 -0
- package/src/lib/components/shared-components/generic-field/generic-field.component.ts +94 -0
- package/{lib/components/shared-components/generic-field/index.d.ts → src/lib/components/shared-components/generic-field/index.ts} +1 -1
- package/src/lib/components/shared-components/generic-form/generic-form.component.html +46 -0
- package/src/lib/components/shared-components/generic-form/generic-form.component.spec.ts +21 -0
- package/src/lib/components/shared-components/generic-form/generic-form.component.ts +57 -0
- package/src/lib/components/shared-components/generic-form/generic-form.model.spec.ts +82 -0
- package/src/lib/components/shared-components/generic-form/generic-form.model.ts +68 -0
- package/{lib/components/shared-components/generic-form/index.d.ts → src/lib/components/shared-components/generic-form/index.ts} +2 -2
- package/{lib/components/shared-components/index.d.ts → src/lib/components/shared-components/index.ts} +6 -6
- package/{lib/components/side-menu/index.d.ts → src/lib/components/side-menu/index.ts} +2 -2
- package/src/lib/components/side-menu/side-menu.component.html +52 -0
- package/src/lib/components/side-menu/side-menu.component.scss +0 -0
- package/src/lib/components/side-menu/side-menu.component.spec.ts +21 -0
- package/src/lib/components/side-menu/side-menu.component.ts +98 -0
- package/src/lib/components/side-menu/side-menu.module.ts +66 -0
- package/{lib/components/slider/index.d.ts → src/lib/components/slider/index.ts} +1 -1
- package/src/lib/components/slider/slider.component.html +19 -0
- package/src/lib/components/slider/slider.component.spec.ts +21 -0
- package/src/lib/components/slider/slider.component.ts +58 -0
- package/{lib/components/snackbar/index.d.ts → src/lib/components/snackbar/index.ts} +2 -2
- package/src/lib/components/snackbar/services/snackbar.service.ts +45 -0
- package/src/lib/components/snackbar/snackbar.component.html +3 -0
- package/src/lib/components/snackbar/snackbar.component.scss +0 -0
- package/src/lib/components/snackbar/snackbar.component.spec.ts +21 -0
- package/src/lib/components/snackbar/snackbar.component.stories.ts +70 -0
- package/src/lib/components/snackbar/snackbar.component.ts +26 -0
- package/{lib/components/stepper/index.d.ts → src/lib/components/stepper/index.ts} +1 -1
- package/src/lib/components/stepper/stepper.component.html +43 -0
- package/src/lib/components/stepper/stepper.component.spec.ts +21 -0
- package/src/lib/components/stepper/stepper.component.ts +40 -0
- package/{lib/components/switch/index.d.ts → src/lib/components/switch/index.ts} +1 -1
- package/src/lib/components/switch/switch.component.html +18 -0
- package/src/lib/components/switch/switch.component.scss +0 -0
- package/src/lib/components/switch/switch.component.spec.ts +21 -0
- package/src/lib/components/switch/switch.component.stories.ts +65 -0
- package/src/lib/components/switch/switch.component.ts +54 -0
- package/{lib/components/tab-view/index.d.ts → src/lib/components/tab-view/index.ts} +3 -3
- package/src/lib/components/tab-view/tab-menu.pipe.ts +23 -0
- package/src/lib/components/tab-view/tab-view-item.component.ts +22 -0
- package/src/lib/components/tab-view/tab-view.component.html +23 -0
- package/src/lib/components/tab-view/tab-view.component.ts +55 -0
- package/src/lib/components/tab-view/tab-view.module.ts +19 -0
- package/{lib/components/table/index.d.ts → src/lib/components/table/index.ts} +1 -1
- package/src/lib/components/table/table-filter.pipe.ts +59 -0
- package/src/lib/components/table/table.component.html +123 -0
- package/src/lib/components/table/table.component.scss +11 -0
- package/src/lib/components/table/table.component.spec.ts +21 -0
- package/src/lib/components/table/table.component.stories.ts +55 -0
- package/src/lib/components/table/table.component.ts +289 -0
- package/src/lib/components/table/table.models.ts +26 -0
- package/{lib/components/textarea/index.d.ts → src/lib/components/textarea/index.ts} +1 -1
- package/src/lib/components/textarea/textarea.component.html +40 -0
- package/src/lib/components/textarea/textarea.component.scss +5 -0
- package/src/lib/components/textarea/textarea.component.spec.ts +21 -0
- package/src/lib/components/textarea/textarea.component.stories.ts +98 -0
- package/src/lib/components/textarea/textarea.component.ts +64 -0
- package/{lib/components/textfield/index.d.ts → src/lib/components/textfield/index.ts} +1 -1
- package/src/lib/components/textfield/textfield.component.html +83 -0
- package/src/lib/components/textfield/textfield.component.scss +23 -0
- package/src/lib/components/textfield/textfield.component.spec.ts +21 -0
- package/src/lib/components/textfield/textfield.component.stories.ts +85 -0
- package/src/lib/components/textfield/textfield.component.ts +69 -0
- package/{lib/components/tristatecheckbox/index.d.ts → src/lib/components/tristatecheckbox/index.ts} +1 -1
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.html +23 -0
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.scss +0 -0
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.spec.ts +21 -0
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.stories.ts +22 -0
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.ts +50 -0
- package/src/lib/icons.ts +36 -0
- package/src/lib/interceptors/http-error-message.interceptor.ts +35 -0
- package/src/lib/pages/not-found-page/not-found-page.component.html +26 -0
- 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.spec.ts +21 -0
- package/src/lib/pages/not-found-page/not-found-page.component.ts +17 -0
- package/src/tab-view.ts +1 -0
- package/src/test-setup.ts +8 -0
- package/tsconfig.json +29 -0
- package/tsconfig.lib.json +18 -0
- package/tsconfig.lib.prod.json +9 -0
- package/tsconfig.spec.json +16 -0
- package/esm2022/index.mjs +0 -30
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +0 -31
- package/esm2022/lib/components/breadcrumb/breadcrumb.pipe.mjs +0 -17
- package/esm2022/lib/components/breadcrumb/index.mjs +0 -2
- package/esm2022/lib/components/button/button.component.mjs +0 -61
- package/esm2022/lib/components/button/index.mjs +0 -2
- package/esm2022/lib/components/calendar/calendar.component.mjs +0 -73
- package/esm2022/lib/components/calendar/index.mjs +0 -2
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +0 -47
- package/esm2022/lib/components/checkbox/index.mjs +0 -2
- package/esm2022/lib/components/confirm-dialog/confirm-dialog.component.mjs +0 -65
- package/esm2022/lib/components/confirm-dialog/index.mjs +0 -2
- package/esm2022/lib/components/dropdown/dropdown.component.mjs +0 -139
- package/esm2022/lib/components/dropdown/index.mjs +0 -2
- package/esm2022/lib/components/errors/error.component.mjs +0 -41
- package/esm2022/lib/components/errors/index.mjs +0 -2
- package/esm2022/lib/components/form-field/form-field.component.mjs +0 -41
- package/esm2022/lib/components/form-field/index.mjs +0 -2
- package/esm2022/lib/components/header/header.component.mjs +0 -58
- package/esm2022/lib/components/header/index.mjs +0 -3
- package/esm2022/lib/components/header/services/header-provider.service.mjs +0 -24
- package/esm2022/lib/components/input-group/index.mjs +0 -2
- package/esm2022/lib/components/input-group/input-group.component.mjs +0 -57
- package/esm2022/lib/components/loader/index.mjs +0 -2
- package/esm2022/lib/components/loader/loader.component.mjs +0 -19
- package/esm2022/lib/components/multiselect/index.mjs +0 -2
- package/esm2022/lib/components/multiselect/multiselect.component.mjs +0 -124
- package/esm2022/lib/components/number-input/index.mjs +0 -2
- package/esm2022/lib/components/number-input/number-input.component.mjs +0 -64
- package/esm2022/lib/components/page-header/index.mjs +0 -2
- package/esm2022/lib/components/page-header/page-header.component.mjs +0 -28
- package/esm2022/lib/components/password/index.mjs +0 -2
- package/esm2022/lib/components/password/password.component.mjs +0 -59
- package/esm2022/lib/components/radiobutton/index.mjs +0 -2
- package/esm2022/lib/components/radiobutton/radiobutton.component.mjs +0 -57
- package/esm2022/lib/components/section/index.mjs +0 -2
- package/esm2022/lib/components/section/section.component.mjs +0 -35
- package/esm2022/lib/components/shared-components/action-button-group/action-button-group.component.mjs +0 -92
- package/esm2022/lib/components/shared-components/action-button-group/components/action-button/action-button.component.mjs +0 -60
- package/esm2022/lib/components/shared-components/action-button-group/index.mjs +0 -3
- package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.mjs +0 -90
- package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component.component.mjs +0 -41
- package/esm2022/lib/components/shared-components/dynamic-component/index.mjs +0 -3
- package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-column.directive.mjs +0 -46
- package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.mjs +0 -16
- package/esm2022/lib/components/shared-components/feature-list/feature-list-filter.pipe.mjs +0 -24
- package/esm2022/lib/components/shared-components/feature-list/feature-list-page.component.mjs +0 -42
- package/esm2022/lib/components/shared-components/feature-list/feature-list-page.model.mjs +0 -16
- package/esm2022/lib/components/shared-components/feature-list/feature-list.component.mjs +0 -275
- package/esm2022/lib/components/shared-components/feature-list/index.mjs +0 -6
- package/esm2022/lib/components/shared-components/filter/directives/filter-field.directive.mjs +0 -44
- package/esm2022/lib/components/shared-components/filter/filter.component.mjs +0 -190
- package/esm2022/lib/components/shared-components/filter/filter.model.mjs +0 -16
- package/esm2022/lib/components/shared-components/filter/index.mjs +0 -3
- package/esm2022/lib/components/shared-components/generic-field/generic-field.component.mjs +0 -93
- package/esm2022/lib/components/shared-components/generic-field/index.mjs +0 -2
- package/esm2022/lib/components/shared-components/generic-form/generic-form.component.mjs +0 -40
- package/esm2022/lib/components/shared-components/generic-form/generic-form.model.mjs +0 -50
- package/esm2022/lib/components/shared-components/generic-form/index.mjs +0 -3
- package/esm2022/lib/components/shared-components/index.mjs +0 -7
- package/esm2022/lib/components/side-menu/index.mjs +0 -3
- package/esm2022/lib/components/side-menu/side-menu.component.mjs +0 -92
- package/esm2022/lib/components/side-menu/side-menu.module.mjs +0 -74
- package/esm2022/lib/components/slider/index.mjs +0 -2
- package/esm2022/lib/components/slider/slider.component.mjs +0 -62
- package/esm2022/lib/components/snackbar/index.mjs +0 -3
- package/esm2022/lib/components/snackbar/services/snackbar.service.mjs +0 -50
- package/esm2022/lib/components/snackbar/snackbar.component.mjs +0 -33
- package/esm2022/lib/components/stepper/index.mjs +0 -2
- package/esm2022/lib/components/stepper/stepper.component.mjs +0 -48
- package/esm2022/lib/components/switch/index.mjs +0 -2
- package/esm2022/lib/components/switch/switch.component.mjs +0 -54
- package/esm2022/lib/components/tab-view/index.mjs +0 -4
- package/esm2022/lib/components/tab-view/tab-menu.pipe.mjs +0 -25
- package/esm2022/lib/components/tab-view/tab-view-item.component.mjs +0 -31
- package/esm2022/lib/components/tab-view/tab-view.component.mjs +0 -50
- package/esm2022/lib/components/tab-view/tab-view.module.mjs +0 -29
- package/esm2022/lib/components/table/index.mjs +0 -2
- package/esm2022/lib/components/table/table-filter.pipe.mjs +0 -49
- package/esm2022/lib/components/table/table.component.mjs +0 -220
- package/esm2022/lib/components/table/table.models.mjs +0 -17
- package/esm2022/lib/components/textarea/index.mjs +0 -2
- package/esm2022/lib/components/textarea/textarea.component.mjs +0 -65
- package/esm2022/lib/components/textfield/index.mjs +0 -2
- package/esm2022/lib/components/textfield/textfield.component.mjs +0 -65
- package/esm2022/lib/components/tristatecheckbox/index.mjs +0 -2
- package/esm2022/lib/components/tristatecheckbox/tristatecheckbox.component.mjs +0 -53
- package/esm2022/lib/icons.mjs +0 -35
- package/esm2022/lib/interceptors/http-error-message.interceptor.mjs +0 -31
- package/esm2022/verisoft-ui-primeng.mjs +0 -5
- package/fesm2022/verisoft-ui-primeng.mjs +0 -2909
- package/fesm2022/verisoft-ui-primeng.mjs.map +0 -1
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +0 -6
- package/lib/components/breadcrumb/breadcrumb.pipe.d.ts +0 -9
- package/lib/components/button/button.component.d.ts +0 -20
- package/lib/components/calendar/calendar.component.d.ts +0 -17
- package/lib/components/checkbox/checkbox.component.d.ts +0 -9
- package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +0 -15
- package/lib/components/dropdown/dropdown.component.d.ts +0 -38
- package/lib/components/errors/error.component.d.ts +0 -16
- package/lib/components/errors/index.d.ts +0 -1
- package/lib/components/form-field/form-field.component.d.ts +0 -12
- package/lib/components/header/header.component.d.ts +0 -23
- package/lib/components/header/services/header-provider.service.d.ts +0 -10
- package/lib/components/input-group/input-group.component.d.ts +0 -9
- package/lib/components/loader/loader.component.d.ts +0 -6
- package/lib/components/multiselect/multiselect.component.d.ts +0 -34
- package/lib/components/number-input/number-input.component.d.ts +0 -14
- package/lib/components/page-header/page-header.component.d.ts +0 -10
- package/lib/components/password/password.component.d.ts +0 -11
- package/lib/components/radiobutton/radiobutton.component.d.ts +0 -10
- package/lib/components/section/section.component.d.ts +0 -12
- package/lib/components/shared-components/action-button-group/action-button-group.component.d.ts +0 -29
- package/lib/components/shared-components/action-button-group/components/action-button/action-button.component.d.ts +0 -24
- package/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.d.ts +0 -17
- package/lib/components/shared-components/dynamic-component/dynamic-component.component.d.ts +0 -16
- package/lib/components/shared-components/feature-list/directives/feature-list-column.directive.d.ts +0 -10
- package/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.d.ts +0 -6
- package/lib/components/shared-components/feature-list/feature-list-filter.pipe.d.ts +0 -9
- package/lib/components/shared-components/feature-list/feature-list-page.component.d.ts +0 -9
- package/lib/components/shared-components/feature-list/feature-list-page.model.d.ts +0 -23
- package/lib/components/shared-components/feature-list/feature-list.component.d.ts +0 -62
- package/lib/components/shared-components/filter/directives/filter-field.directive.d.ts +0 -20
- package/lib/components/shared-components/filter/filter.component.d.ts +0 -53
- package/lib/components/shared-components/filter/filter.model.d.ts +0 -2
- package/lib/components/shared-components/generic-field/generic-field.component.d.ts +0 -28
- package/lib/components/shared-components/generic-form/generic-form.component.d.ts +0 -15
- package/lib/components/shared-components/generic-form/generic-form.model.d.ts +0 -4
- package/lib/components/side-menu/side-menu.component.d.ts +0 -27
- package/lib/components/side-menu/side-menu.module.d.ts +0 -13
- package/lib/components/slider/slider.component.d.ts +0 -12
- package/lib/components/snackbar/services/snackbar.service.d.ts +0 -12
- package/lib/components/snackbar/snackbar.component.d.ts +0 -9
- package/lib/components/stepper/stepper.component.d.ts +0 -17
- package/lib/components/switch/switch.component.d.ts +0 -9
- package/lib/components/tab-view/tab-menu.pipe.d.ts +0 -9
- package/lib/components/tab-view/tab-view-item.component.d.ts +0 -12
- package/lib/components/tab-view/tab-view.component.d.ts +0 -17
- package/lib/components/tab-view/tab-view.module.d.ts +0 -13
- package/lib/components/table/table-filter.pipe.d.ts +0 -13
- package/lib/components/table/table.component.d.ts +0 -67
- package/lib/components/table/table.models.d.ts +0 -4
- package/lib/components/textarea/textarea.component.d.ts +0 -12
- package/lib/components/textfield/textfield.component.d.ts +0 -12
- package/lib/components/tristatecheckbox/tristatecheckbox.component.d.ts +0 -9
- package/lib/icons.d.ts +0 -2
- package/lib/interceptors/http-error-message.interceptor.d.ts +0 -11
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { Component } from '@angular/core';
|
|
3
|
+
import { SNACKBAR_COMPONENT_TOKEN, SnackbarCore } from '@verisoft/ui-core';
|
|
4
|
+
import { RippleModule } from 'primeng/ripple';
|
|
5
|
+
import { ToastModule } from 'primeng/toast';
|
|
6
|
+
import { SnackbarService } from './services/snackbar.service';
|
|
7
|
+
|
|
8
|
+
@Component({
|
|
9
|
+
selector: 'v-snackbar',
|
|
10
|
+
standalone: true,
|
|
11
|
+
imports: [CommonModule, ToastModule, RippleModule],
|
|
12
|
+
templateUrl: './snackbar.component.html',
|
|
13
|
+
styleUrl: './snackbar.component.scss',
|
|
14
|
+
providers: [
|
|
15
|
+
SnackbarService,
|
|
16
|
+
{
|
|
17
|
+
provide: SNACKBAR_COMPONENT_TOKEN,
|
|
18
|
+
useExisting: SnackbarComponent,
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
})
|
|
22
|
+
export class SnackbarComponent
|
|
23
|
+
implements SnackbarCore
|
|
24
|
+
{
|
|
25
|
+
constructor(private snackbarService: SnackbarService) {}
|
|
26
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './stepper.component';
|
|
1
|
+
export * from './stepper.component';
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<div class="v-stepper">
|
|
2
|
+
<p-stepper>
|
|
3
|
+
<p-stepperPanel
|
|
4
|
+
*ngFor="let item of items; let index = index"
|
|
5
|
+
[header]="item.header"
|
|
6
|
+
>
|
|
7
|
+
<ng-template
|
|
8
|
+
pTemplate="content"
|
|
9
|
+
let-nextCallback="nextCallback"
|
|
10
|
+
let-prevCallback="prevCallback"
|
|
11
|
+
let-index="index"
|
|
12
|
+
>
|
|
13
|
+
<ng-container *ngIf="item.template && item.template.elementRef">
|
|
14
|
+
<ng-template
|
|
15
|
+
*ngTemplateOutlet="
|
|
16
|
+
item.template;
|
|
17
|
+
context: { item: item, index: index }
|
|
18
|
+
"
|
|
19
|
+
/>
|
|
20
|
+
</ng-container>
|
|
21
|
+
<div class="d-flex pt-4 justify-content-between">
|
|
22
|
+
<v-button
|
|
23
|
+
*ngIf="index > 0"
|
|
24
|
+
label="Back"
|
|
25
|
+
[icon]="icons.arrowLeft"
|
|
26
|
+
size="small"
|
|
27
|
+
[outlined]="true"
|
|
28
|
+
(click)="prevCallback.emit()"
|
|
29
|
+
/>
|
|
30
|
+
|
|
31
|
+
<v-button
|
|
32
|
+
*ngIf="index < items.length - 1"
|
|
33
|
+
label="Next"
|
|
34
|
+
size="small"
|
|
35
|
+
[icon]="icons.arrowRight"
|
|
36
|
+
iconPos="right"
|
|
37
|
+
(click)="nextCallback.emit()"
|
|
38
|
+
/>
|
|
39
|
+
</div>
|
|
40
|
+
</ng-template>
|
|
41
|
+
</p-stepperPanel>
|
|
42
|
+
</p-stepper>
|
|
43
|
+
</div>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
+
import { StepperComponent } from './stepper.component';
|
|
3
|
+
|
|
4
|
+
describe('StepperComponent', () => {
|
|
5
|
+
let component: StepperComponent;
|
|
6
|
+
let fixture: ComponentFixture<StepperComponent>;
|
|
7
|
+
|
|
8
|
+
beforeEach(async () => {
|
|
9
|
+
await TestBed.configureTestingModule({
|
|
10
|
+
imports: [StepperComponent],
|
|
11
|
+
}).compileComponents();
|
|
12
|
+
|
|
13
|
+
fixture = TestBed.createComponent(StepperComponent);
|
|
14
|
+
component = fixture.componentInstance;
|
|
15
|
+
fixture.detectChanges();
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
it('should create', () => {
|
|
19
|
+
expect(component).toBeTruthy();
|
|
20
|
+
});
|
|
21
|
+
});
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
|
3
|
+
import {
|
|
4
|
+
StepperCore,
|
|
5
|
+
STEPPER_COMPONENT_TOKEN,
|
|
6
|
+
StepperItem,
|
|
7
|
+
LayoutType,
|
|
8
|
+
LayoutTypeType,
|
|
9
|
+
FieldSizeType,
|
|
10
|
+
FieldSize
|
|
11
|
+
} from '@verisoft/ui-core';
|
|
12
|
+
import { StepperModule } from 'primeng/stepper';
|
|
13
|
+
import { Icons } from '../../icons';
|
|
14
|
+
import { ButtonComponent } from '../button';
|
|
15
|
+
|
|
16
|
+
@Component({
|
|
17
|
+
selector: 'v-stepper',
|
|
18
|
+
standalone: true,
|
|
19
|
+
imports: [CommonModule, ButtonComponent, StepperModule],
|
|
20
|
+
templateUrl: './stepper.component.html',
|
|
21
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
22
|
+
providers: [
|
|
23
|
+
{ provide: STEPPER_COMPONENT_TOKEN, useExisting: StepperComponent },
|
|
24
|
+
],
|
|
25
|
+
})
|
|
26
|
+
export class StepperComponent
|
|
27
|
+
implements StepperCore
|
|
28
|
+
{
|
|
29
|
+
@Input() items!: StepperItem[];
|
|
30
|
+
|
|
31
|
+
icons = Icons;
|
|
32
|
+
@Input() prefix!: string;
|
|
33
|
+
@Input() label!: string;
|
|
34
|
+
@Input() size: FieldSizeType | undefined = FieldSize.medium;
|
|
35
|
+
@Input() layout: LayoutTypeType = LayoutType.horizontal;
|
|
36
|
+
@Input() icon!: string;
|
|
37
|
+
@Input() activeIndex = 0;
|
|
38
|
+
@Input() annotation!: string;
|
|
39
|
+
@Output() activeIndexChange = new EventEmitter<number>();
|
|
40
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './switch.component';
|
|
1
|
+
export * from './switch.component';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<div class="v-switch d-flex align-items-center">
|
|
2
|
+
<v-form-field
|
|
3
|
+
class="w-100"
|
|
4
|
+
[label]="label"
|
|
5
|
+
[tooltip]="tooltip"
|
|
6
|
+
[required]="isRequired()"
|
|
7
|
+
[testId]="testId"
|
|
8
|
+
[display]="formDisplay"
|
|
9
|
+
>
|
|
10
|
+
<p-inputSwitch
|
|
11
|
+
[formControl]="formControl"
|
|
12
|
+
[required]="isRequired()"
|
|
13
|
+
[title]="label"
|
|
14
|
+
[readonly]="readonly"
|
|
15
|
+
[inputId]="id"
|
|
16
|
+
/><v-validation-message [ngControl]="ngControl"></v-validation-message>
|
|
17
|
+
</v-form-field>
|
|
18
|
+
</div>
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
+
import { SwitchComponent } from './switch.component';
|
|
3
|
+
|
|
4
|
+
describe('SwitchComponent', () => {
|
|
5
|
+
let component: SwitchComponent;
|
|
6
|
+
let fixture: ComponentFixture<SwitchComponent>;
|
|
7
|
+
|
|
8
|
+
beforeEach(async () => {
|
|
9
|
+
await TestBed.configureTestingModule({
|
|
10
|
+
imports: [SwitchComponent],
|
|
11
|
+
}).compileComponents();
|
|
12
|
+
|
|
13
|
+
fixture = TestBed.createComponent(SwitchComponent);
|
|
14
|
+
component = fixture.componentInstance;
|
|
15
|
+
fixture.detectChanges();
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
it('should create', () => {
|
|
19
|
+
expect(component).toBeTruthy();
|
|
20
|
+
});
|
|
21
|
+
});
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import {
|
|
2
|
+
FormControl,
|
|
3
|
+
FormGroup,
|
|
4
|
+
ReactiveFormsModule,
|
|
5
|
+
Validators,
|
|
6
|
+
} from '@angular/forms';
|
|
7
|
+
import { moduleMetadata, type Meta, type StoryObj } from '@storybook/angular';
|
|
8
|
+
import { SwitchComponent } from './switch.component';
|
|
9
|
+
|
|
10
|
+
const meta: Meta<SwitchComponent> = {
|
|
11
|
+
component: SwitchComponent,
|
|
12
|
+
title: 'SwitchComponent',
|
|
13
|
+
decorators: [
|
|
14
|
+
moduleMetadata({
|
|
15
|
+
imports: [ReactiveFormsModule],
|
|
16
|
+
}),
|
|
17
|
+
],
|
|
18
|
+
};
|
|
19
|
+
export default meta;
|
|
20
|
+
type Story = StoryObj<SwitchComponent>;
|
|
21
|
+
const formGroup = new FormGroup({
|
|
22
|
+
switch: new FormControl(null),
|
|
23
|
+
switchRequired: new FormControl(null, [Validators.requiredTrue]),
|
|
24
|
+
});
|
|
25
|
+
export const Primary: Story = {
|
|
26
|
+
render: (args: any) => ({
|
|
27
|
+
props: {
|
|
28
|
+
...args,
|
|
29
|
+
formGroup: formGroup,
|
|
30
|
+
},
|
|
31
|
+
template: `
|
|
32
|
+
<form [formGroup]="formGroup">
|
|
33
|
+
<v-switch
|
|
34
|
+
[disabled]="disabled"
|
|
35
|
+
[readonly]="readonly"
|
|
36
|
+
formControlName="switch"
|
|
37
|
+
[required]="required"/>
|
|
38
|
+
</form>`,
|
|
39
|
+
}),
|
|
40
|
+
args: {
|
|
41
|
+
disabled: false,
|
|
42
|
+
readonly: false,
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export const SwitchRequired: Story = {
|
|
47
|
+
render: (args: any) => ({
|
|
48
|
+
props: {
|
|
49
|
+
...args,
|
|
50
|
+
formGroup: formGroup,
|
|
51
|
+
},
|
|
52
|
+
template: `
|
|
53
|
+
<form [formGroup]="formGroup">
|
|
54
|
+
<v-switch
|
|
55
|
+
[disabled]="disabled"
|
|
56
|
+
[readonly]="readonly"
|
|
57
|
+
formControlName="switchRequired"
|
|
58
|
+
[required]="required"/>
|
|
59
|
+
</form>`,
|
|
60
|
+
}),
|
|
61
|
+
args: {
|
|
62
|
+
disabled: false,
|
|
63
|
+
readonly: false,
|
|
64
|
+
},
|
|
65
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import {
|
|
3
|
+
ChangeDetectionStrategy,
|
|
4
|
+
Component,
|
|
5
|
+
forwardRef,
|
|
6
|
+
Optional,
|
|
7
|
+
Self,
|
|
8
|
+
} from '@angular/core';
|
|
9
|
+
import {
|
|
10
|
+
ControlValueAccessor,
|
|
11
|
+
NgControl,
|
|
12
|
+
ReactiveFormsModule,
|
|
13
|
+
} from '@angular/forms';
|
|
14
|
+
import { BaseFormInputComponent, BaseInputControls, SWITCH_COMPONENT_TOKEN, SwitchCore } from '@verisoft/ui-core';
|
|
15
|
+
import { InputSwitchModule } from 'primeng/inputswitch';
|
|
16
|
+
import { v4 as uuidv4 } from 'uuid';
|
|
17
|
+
import { ErrorComponent } from '../errors';
|
|
18
|
+
import { FormFieldComponent } from '../form-field';
|
|
19
|
+
|
|
20
|
+
@Component({
|
|
21
|
+
selector: 'v-switch',
|
|
22
|
+
standalone: true,
|
|
23
|
+
imports: [
|
|
24
|
+
CommonModule,
|
|
25
|
+
InputSwitchModule,
|
|
26
|
+
ReactiveFormsModule,
|
|
27
|
+
FormFieldComponent,
|
|
28
|
+
ErrorComponent
|
|
29
|
+
],
|
|
30
|
+
templateUrl: './switch.component.html',
|
|
31
|
+
styleUrl: './switch.component.scss',
|
|
32
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
33
|
+
providers: [
|
|
34
|
+
{
|
|
35
|
+
provide: BaseInputControls,
|
|
36
|
+
useExisting: forwardRef(() => SwitchComponent),
|
|
37
|
+
multi: true,
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
provide: SWITCH_COMPONENT_TOKEN,
|
|
41
|
+
useExisting: SwitchComponent,
|
|
42
|
+
},
|
|
43
|
+
],
|
|
44
|
+
})
|
|
45
|
+
export class SwitchComponent
|
|
46
|
+
extends BaseFormInputComponent
|
|
47
|
+
implements ControlValueAccessor, SwitchCore
|
|
48
|
+
{
|
|
49
|
+
constructor(@Optional() @Self() ngControl: NgControl) {
|
|
50
|
+
super(ngControl);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
id = uuidv4();
|
|
54
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './tab-view.component';
|
|
2
|
-
export * from './tab-view-item.component';
|
|
3
|
-
export * from './tab-view.module';
|
|
1
|
+
export * from './tab-view.component';
|
|
2
|
+
export * from './tab-view-item.component';
|
|
3
|
+
export * from './tab-view.module';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Pipe, PipeTransform } from '@angular/core';
|
|
2
|
+
import { TabViewItemCore } from '@verisoft/ui-core';
|
|
3
|
+
import { MenuItem } from 'primeng/api';
|
|
4
|
+
|
|
5
|
+
@Pipe({
|
|
6
|
+
name: 'tabMenu',
|
|
7
|
+
pure: true,
|
|
8
|
+
standalone: true,
|
|
9
|
+
})
|
|
10
|
+
export class TabMenuPipe implements PipeTransform {
|
|
11
|
+
transform(value: TabViewItemCore[] | undefined): MenuItem[] | undefined {
|
|
12
|
+
if (!value) {
|
|
13
|
+
return undefined;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
return value.map((x) => ({
|
|
17
|
+
label: x.title,
|
|
18
|
+
icon: x.icon,
|
|
19
|
+
disabled: x.disabled,
|
|
20
|
+
routerLink: x.url,
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Component, Input, TemplateRef, ViewChild } from '@angular/core';
|
|
2
|
+
|
|
3
|
+
@Component({
|
|
4
|
+
selector: 'v-tab-view-item',
|
|
5
|
+
template: `<ng-template #contentTemplate>
|
|
6
|
+
<ng-content></ng-content>
|
|
7
|
+
</ng-template>`,
|
|
8
|
+
})
|
|
9
|
+
export class TabViewItemComponent {
|
|
10
|
+
@ViewChild('contentTemplate', { static: true })
|
|
11
|
+
contentTemplate!: TemplateRef<any>;
|
|
12
|
+
|
|
13
|
+
@Input() title!: string;
|
|
14
|
+
|
|
15
|
+
@Input() url?: string;
|
|
16
|
+
|
|
17
|
+
@Input() icon?: string;
|
|
18
|
+
|
|
19
|
+
@Input() disabled?: boolean;
|
|
20
|
+
|
|
21
|
+
@Input() content?: string;
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<div class="v-tab-view">
|
|
2
|
+
@if (useRouting) {
|
|
3
|
+
<p-tabMenu
|
|
4
|
+
[model]="mergedItems | tabMenu"
|
|
5
|
+
[activeItem]="items[activeIndex]"
|
|
6
|
+
(activeItemChange)="activeItemChanged($event)"
|
|
7
|
+
>
|
|
8
|
+
</p-tabMenu>
|
|
9
|
+
<router-outlet></router-outlet>
|
|
10
|
+
} @else {
|
|
11
|
+
<p-tabView (activeIndexChange)="activeItemChanged($event)">
|
|
12
|
+
@for (item of mergedItems; track item; let index = $index) {
|
|
13
|
+
<p-tabPanel [selected]="activeIndex === index" [header]="item.title" [disabled]="item.disabled === true">
|
|
14
|
+
@if (item.contentTemplate){
|
|
15
|
+
<ng-container *ngTemplateOutlet="item.contentTemplate"></ng-container>
|
|
16
|
+
} @else if (item.content) {
|
|
17
|
+
{{ item.content }}
|
|
18
|
+
}
|
|
19
|
+
</p-tabPanel>
|
|
20
|
+
}
|
|
21
|
+
</p-tabView>
|
|
22
|
+
}
|
|
23
|
+
</div>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AfterContentInit,
|
|
3
|
+
Component,
|
|
4
|
+
ContentChildren,
|
|
5
|
+
EventEmitter,
|
|
6
|
+
Input,
|
|
7
|
+
Output,
|
|
8
|
+
QueryList,
|
|
9
|
+
} from '@angular/core';
|
|
10
|
+
import { TabViewCore, TabViewItemCore } from '@verisoft/ui-core';
|
|
11
|
+
import { MenuItem } from 'primeng/api';
|
|
12
|
+
import { TabMenuModule } from 'primeng/tabmenu';
|
|
13
|
+
import { TabViewModule } from 'primeng/tabview';
|
|
14
|
+
import { TabMenuPipe } from './tab-menu.pipe';
|
|
15
|
+
import { TabViewItemComponent } from './tab-view-item.component';
|
|
16
|
+
|
|
17
|
+
@Component({
|
|
18
|
+
selector: 'v-tab-view',
|
|
19
|
+
templateUrl: './tab-view.component.html',
|
|
20
|
+
standalone: true,
|
|
21
|
+
imports: [TabMenuModule, TabMenuPipe, TabViewModule],
|
|
22
|
+
})
|
|
23
|
+
export class TabViewComponent
|
|
24
|
+
implements AfterContentInit, TabViewCore
|
|
25
|
+
{
|
|
26
|
+
@ContentChildren(TabViewItemComponent)
|
|
27
|
+
children!: QueryList<TabViewItemComponent>;
|
|
28
|
+
|
|
29
|
+
@Input() items: TabViewItemCore[] = [];
|
|
30
|
+
|
|
31
|
+
@Input() useRouting = false;
|
|
32
|
+
|
|
33
|
+
@Input() activeIndex = 0;
|
|
34
|
+
|
|
35
|
+
@Output() activeIndexChange = new EventEmitter<number>();
|
|
36
|
+
|
|
37
|
+
mergedItems: TabViewItemCore[] = [];
|
|
38
|
+
|
|
39
|
+
ngAfterContentInit(): void {
|
|
40
|
+
this.mergedItems = [...this.items, ...this.children.toArray()];
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
protected activeItemChanged(item: MenuItem | number): void {
|
|
44
|
+
let index: number;
|
|
45
|
+
if (typeof item === 'number') {
|
|
46
|
+
index = item;
|
|
47
|
+
} else {
|
|
48
|
+
index = this.items.indexOf(item as TabViewItemCore);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
if (index != -1) {
|
|
52
|
+
this.activeIndexChange.emit(index);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { NgTemplateOutlet } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { RouterOutlet } from '@angular/router';
|
|
4
|
+
import { TAB_VIEW_COMPONENT_TOKEN } from '@verisoft/ui-core';
|
|
5
|
+
import { TabMenuModule } from 'primeng/tabmenu';
|
|
6
|
+
import { TabViewModule as PrimeTabViewModule } from 'primeng/tabview';
|
|
7
|
+
import { TabMenuPipe } from './tab-menu.pipe';
|
|
8
|
+
import { TabViewItemComponent } from './tab-view-item.component';
|
|
9
|
+
import { TabViewComponent } from './tab-view.component';
|
|
10
|
+
|
|
11
|
+
@NgModule({
|
|
12
|
+
imports: [RouterOutlet, TabMenuModule, PrimeTabViewModule, NgTemplateOutlet, TabViewComponent, TabMenuPipe],
|
|
13
|
+
declarations: [TabViewItemComponent],
|
|
14
|
+
exports: [TabViewComponent, TabViewItemComponent],
|
|
15
|
+
providers: [
|
|
16
|
+
{ provide: TAB_VIEW_COMPONENT_TOKEN, useExisting: TabViewComponent },
|
|
17
|
+
],
|
|
18
|
+
})
|
|
19
|
+
export class TabViewModule {}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './table.component';
|
|
1
|
+
export * from './table.component';
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { Pipe, PipeTransform } from '@angular/core';
|
|
2
|
+
import { FilterMetadata } from 'primeng/api';
|
|
3
|
+
|
|
4
|
+
type PrimeNgFilterDefinition = {
|
|
5
|
+
[s: string]: FilterMetadata | FilterMetadata[];
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
@Pipe({
|
|
9
|
+
name: 'primengFilter',
|
|
10
|
+
standalone: true,
|
|
11
|
+
})
|
|
12
|
+
export class TableFilterPipe<T> implements PipeTransform {
|
|
13
|
+
transform(value: Partial<T>): PrimeNgFilterDefinition | undefined {
|
|
14
|
+
if (value == undefined) {
|
|
15
|
+
return undefined;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
return Object.entries(value)
|
|
19
|
+
.filter((x) => x[0] != undefined)
|
|
20
|
+
.reduce((currentFilter: PrimeNgFilterDefinition, [key, value]) => {
|
|
21
|
+
const filterValue = this.convertToFilterMetadata(value);
|
|
22
|
+
if (filterValue) {
|
|
23
|
+
if (key === 'searchField') {
|
|
24
|
+
key = 'global';
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
currentFilter[key] = filterValue;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
return currentFilter;
|
|
31
|
+
}, {});
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
private convertToFilterMetadata(
|
|
35
|
+
value: unknown
|
|
36
|
+
): FilterMetadata | FilterMetadata[] | undefined {
|
|
37
|
+
if (value == undefined) {
|
|
38
|
+
return undefined;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
if (typeof value == 'string') {
|
|
42
|
+
return {
|
|
43
|
+
matchMode: 'contains',
|
|
44
|
+
value: value,
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
if (Array.isArray(value)) {
|
|
49
|
+
return value.map((x) =>
|
|
50
|
+
this.convertToFilterMetadata(x)
|
|
51
|
+
) as FilterMetadata[];
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
return {
|
|
55
|
+
matchMode: 'equals',
|
|
56
|
+
value: value,
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
<div class="v-table">
|
|
2
|
+
<p-table
|
|
3
|
+
#table
|
|
4
|
+
class="v-table"
|
|
5
|
+
[value]="tableRows"
|
|
6
|
+
[filters]="filter | primengFilter"
|
|
7
|
+
[paginator]="showPaginator"
|
|
8
|
+
[rows]="pageSize"
|
|
9
|
+
[totalRecords]="total"
|
|
10
|
+
[loading]="loading"
|
|
11
|
+
[lazy]="lazy"
|
|
12
|
+
dataKey="id"
|
|
13
|
+
[scrollable]="scrollable"
|
|
14
|
+
[sortMode]="sortMultiple ? 'multiple' : 'single'"
|
|
15
|
+
[scrollHeight]="'flex'"
|
|
16
|
+
[selectionMode]="selectionMode"
|
|
17
|
+
[selection]="tableSelection"
|
|
18
|
+
[rowsPerPageOptions]="[10, 25, 50, 100]"
|
|
19
|
+
[expandedRowKeys]="expandedRows"
|
|
20
|
+
[showCurrentPageReport]="true"
|
|
21
|
+
currentPageReportTemplate="Showing {first} to {last} of {totalRecords} entries"
|
|
22
|
+
[customSort]="lazy"
|
|
23
|
+
[multiSortMeta]="sortMeta"
|
|
24
|
+
[resizableColumns]="true"
|
|
25
|
+
columnResizeMode="expand"
|
|
26
|
+
[globalFilterFields]="globalFilterFields"
|
|
27
|
+
(onPage)="pageChanged($event)"
|
|
28
|
+
(onSort)="sortChanged($event)"
|
|
29
|
+
(selectionChange)="selectionChanged($event)"
|
|
30
|
+
(onLazyLoad)="fireLazyLoad($event)"
|
|
31
|
+
>
|
|
32
|
+
<ng-template pTemplate="header">
|
|
33
|
+
<tr>
|
|
34
|
+
@if (selectionMode === 'multiple') {
|
|
35
|
+
<th>
|
|
36
|
+
<p-tableHeaderCheckbox></p-tableHeaderCheckbox>
|
|
37
|
+
</th>
|
|
38
|
+
} @for (column of tableColumns; track column; let index = $index) {
|
|
39
|
+
<th
|
|
40
|
+
*ngIf="column.sortable"
|
|
41
|
+
pResizableColumn
|
|
42
|
+
[pSortableColumn]="'row.' + column.id"
|
|
43
|
+
[style.width]="column.width"
|
|
44
|
+
>
|
|
45
|
+
{{ column.headerGetter(column.id, index) }}
|
|
46
|
+
<p-sortIcon [field]="'row.' + column.id"></p-sortIcon>
|
|
47
|
+
</th>
|
|
48
|
+
<th
|
|
49
|
+
*ngIf="!column.sortable"
|
|
50
|
+
pResizableColumn
|
|
51
|
+
[class.v-auto-cell]="column.template"
|
|
52
|
+
[style.width]="column.width"
|
|
53
|
+
>
|
|
54
|
+
{{ column.headerGetter(column.id, index) }}
|
|
55
|
+
</th>
|
|
56
|
+
} @if (rowDetailTemplate){
|
|
57
|
+
<th></th>
|
|
58
|
+
}
|
|
59
|
+
</tr>
|
|
60
|
+
</ng-template>
|
|
61
|
+
<ng-template pTemplate="body" let-row let-expanded="expanded">
|
|
62
|
+
<tr
|
|
63
|
+
[pSelectableRow]="row"
|
|
64
|
+
[pSelectableRowDisabled]="selectionMode !== 'single'"
|
|
65
|
+
(dblclick)="
|
|
66
|
+
router.navigate(['./' + row.row[entityKey ?? 'id']], {
|
|
67
|
+
relativeTo: route
|
|
68
|
+
})
|
|
69
|
+
"
|
|
70
|
+
>
|
|
71
|
+
@if (selectionMode === 'multiple'){
|
|
72
|
+
<td>
|
|
73
|
+
<p-tableCheckbox [value]="row"></p-tableCheckbox>
|
|
74
|
+
</td>
|
|
75
|
+
}
|
|
76
|
+
<td
|
|
77
|
+
*ngFor="let cd of tableColumns; let index = index"
|
|
78
|
+
[class]="cd.columnClass!"
|
|
79
|
+
[class.v-auto-cell]="cd.template"
|
|
80
|
+
>
|
|
81
|
+
<ng-container *ngIf="cd.template">
|
|
82
|
+
<ng-container
|
|
83
|
+
*ngTemplateOutlet="cd.template; context: { $implicit: row.row }"
|
|
84
|
+
></ng-container>
|
|
85
|
+
</ng-container>
|
|
86
|
+
<span
|
|
87
|
+
*ngIf="!row.template"
|
|
88
|
+
[queryParams]="cd.queryParams ? cd.queryParams : undefined"
|
|
89
|
+
[routerLink]="cd.routerLink ? cd.routerLink(row.row) : undefined"
|
|
90
|
+
[innerHTML]="cd.valueGetter(row.row, index)"
|
|
91
|
+
></span>
|
|
92
|
+
</td>
|
|
93
|
+
@if (rowDetailTemplate){
|
|
94
|
+
<td>
|
|
95
|
+
<p-button
|
|
96
|
+
type="button"
|
|
97
|
+
pRipple
|
|
98
|
+
severity="primary"
|
|
99
|
+
[pRowToggler]="row"
|
|
100
|
+
[text]="true"
|
|
101
|
+
[rounded]="true"
|
|
102
|
+
[plain]="true"
|
|
103
|
+
[icon]="expanded ? icons.chevronDown : icons.chevronRight"
|
|
104
|
+
/>
|
|
105
|
+
</td>
|
|
106
|
+
}
|
|
107
|
+
</tr>
|
|
108
|
+
</ng-template>
|
|
109
|
+
<ng-template pTemplate="rowexpansion" let-row>
|
|
110
|
+
<tr>
|
|
111
|
+
<td [attr.colspan]="tableColumns.length + 1">
|
|
112
|
+
<ng-container
|
|
113
|
+
class="w-100"
|
|
114
|
+
*ngTemplateOutlet="
|
|
115
|
+
expansionTemplate.template;
|
|
116
|
+
context: { $implicit: row.row }
|
|
117
|
+
"
|
|
118
|
+
></ng-container>
|
|
119
|
+
</td>
|
|
120
|
+
</tr>
|
|
121
|
+
</ng-template>
|
|
122
|
+
</p-table>
|
|
123
|
+
</div>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
+
import { TableComponent } from './table.component';
|
|
3
|
+
|
|
4
|
+
describe('TableComponent', () => {
|
|
5
|
+
let component: TableComponent<any>;
|
|
6
|
+
let fixture: ComponentFixture<TableComponent<any>>;
|
|
7
|
+
|
|
8
|
+
beforeEach(async () => {
|
|
9
|
+
await TestBed.configureTestingModule({
|
|
10
|
+
imports: [TableComponent],
|
|
11
|
+
}).compileComponents();
|
|
12
|
+
|
|
13
|
+
fixture = TestBed.createComponent(TableComponent);
|
|
14
|
+
component = fixture.componentInstance;
|
|
15
|
+
fixture.detectChanges();
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
it('should create', () => {
|
|
19
|
+
expect(component).toBeTruthy();
|
|
20
|
+
});
|
|
21
|
+
});
|