@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
package/src/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.ts
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
import {
|
|
3
|
+
Injectable,
|
|
4
|
+
ViewContainerRef,
|
|
5
|
+
Type,
|
|
6
|
+
ComponentFactoryResolver,
|
|
7
|
+
Injector,
|
|
8
|
+
ComponentRef,
|
|
9
|
+
ComponentFactory,
|
|
10
|
+
OnChanges,
|
|
11
|
+
SimpleChanges,
|
|
12
|
+
SimpleChange,
|
|
13
|
+
EventEmitter,
|
|
14
|
+
OnDestroy,
|
|
15
|
+
} from '@angular/core';
|
|
16
|
+
import { ExtendedComponent } from '@verisoft/ui-core';
|
|
17
|
+
import { Subscription } from 'rxjs';
|
|
18
|
+
|
|
19
|
+
@Injectable({
|
|
20
|
+
providedIn: 'root',
|
|
21
|
+
})
|
|
22
|
+
export class DynamicComponentFactoryService implements OnDestroy {
|
|
23
|
+
constructor(private componentFactoryResolver: ComponentFactoryResolver) { }
|
|
24
|
+
|
|
25
|
+
ngOnDestroy(): void {
|
|
26
|
+
this.unsubscribeComponentEvents(this);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
async createDynamicComponent<TComponent>(
|
|
30
|
+
componentType: Type<TComponent>,
|
|
31
|
+
viewContainerRef: ViewContainerRef,
|
|
32
|
+
inputs: ExtendedComponent<TComponent>,
|
|
33
|
+
injector: Injector | undefined = undefined
|
|
34
|
+
) {
|
|
35
|
+
const componentFactory =
|
|
36
|
+
this.componentFactoryResolver.resolveComponentFactory(componentType);
|
|
37
|
+
viewContainerRef.clear();
|
|
38
|
+
const component = viewContainerRef.createComponent(
|
|
39
|
+
componentFactory,
|
|
40
|
+
undefined,
|
|
41
|
+
injector
|
|
42
|
+
);
|
|
43
|
+
this.setComponentDataInt(componentFactory, component, inputs);
|
|
44
|
+
this.fireComponentEvents(component.instance, inputs);
|
|
45
|
+
return component;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
setComponentData<TComponent>(
|
|
49
|
+
component: ComponentRef<TComponent>,
|
|
50
|
+
inputs: Partial<TComponent>
|
|
51
|
+
) {
|
|
52
|
+
const factory = this.componentFactoryResolver.resolveComponentFactory(
|
|
53
|
+
component.componentType
|
|
54
|
+
);
|
|
55
|
+
|
|
56
|
+
this.setComponentDataInt(factory, component, inputs);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
private unsubscribeComponentEvents<TComponent>(instance: TComponent) {
|
|
60
|
+
const subscriptionStoreKey = '__outputSubscriptions__';
|
|
61
|
+
const subscriptions = (instance as any)[subscriptionStoreKey] as Map<string, Subscription>;
|
|
62
|
+
|
|
63
|
+
if (subscriptions) {
|
|
64
|
+
subscriptions.forEach((sub) => sub.unsubscribe());
|
|
65
|
+
subscriptions.clear();
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
private fireComponentEvents<TComponent>(
|
|
70
|
+
instance: TComponent,
|
|
71
|
+
inputs: ExtendedComponent<TComponent>
|
|
72
|
+
) {
|
|
73
|
+
if (!instance || typeof instance !== 'object') return;
|
|
74
|
+
|
|
75
|
+
this.fireInputComponentEvents(instance, inputs);
|
|
76
|
+
this.fireOutputComponentEvents(instance, inputs);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
private setComponentDataInt<TComponent>(
|
|
80
|
+
factory: ComponentFactory<TComponent>,
|
|
81
|
+
component: ComponentRef<TComponent>,
|
|
82
|
+
inputs: Partial<TComponent>
|
|
83
|
+
) {
|
|
84
|
+
if (inputs) {
|
|
85
|
+
const propertyNames = factory.inputs.map((x) => x.propName);
|
|
86
|
+
const inputsHash = new Set(propertyNames);
|
|
87
|
+
Object.keys(inputs)
|
|
88
|
+
.filter((x) => inputsHash.has(x))
|
|
89
|
+
.forEach((x) => {
|
|
90
|
+
(<{ [key: string]: unknown }>component.instance)[x] = (<
|
|
91
|
+
{ [key: string]: unknown }
|
|
92
|
+
>inputs)[x];
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
private fireInputComponentEvents<TComponent>(
|
|
98
|
+
instance: TComponent,
|
|
99
|
+
inputs: ExtendedComponent<TComponent>
|
|
100
|
+
) {
|
|
101
|
+
const onChangeComponent = instance as unknown as OnChanges;
|
|
102
|
+
if (onChangeComponent.ngOnChanges && inputs) {
|
|
103
|
+
const changeEventArgs = Object.keys(inputs).reduce((changes: SimpleChanges, key: string) => {
|
|
104
|
+
const inputValue = (inputs as { [key: string]: unknown })[key];
|
|
105
|
+
changes[key] = new SimpleChange(undefined, inputValue, true);
|
|
106
|
+
return changes;
|
|
107
|
+
}, {} as SimpleChanges);
|
|
108
|
+
|
|
109
|
+
onChangeComponent.ngOnChanges(changeEventArgs);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
private fireOutputComponentEvents<TComponent>(
|
|
114
|
+
instance: TComponent & object,
|
|
115
|
+
inputs: ExtendedComponent<TComponent>
|
|
116
|
+
) {
|
|
117
|
+
const outputs = Object.keys(inputs).filter((key) => {
|
|
118
|
+
const emitter = (instance as Record<string, any>)[key];
|
|
119
|
+
return emitter instanceof EventEmitter;
|
|
120
|
+
});
|
|
121
|
+
|
|
122
|
+
const subscriptionStoreKey = '__outputSubscriptions__';
|
|
123
|
+
if (!(subscriptionStoreKey in instance)) {
|
|
124
|
+
(instance as any)[subscriptionStoreKey] = new Map<string, Subscription>();
|
|
125
|
+
}
|
|
126
|
+
const subscriptions = (instance as any)[subscriptionStoreKey] as Map<string, Subscription>;
|
|
127
|
+
|
|
128
|
+
for (const outputKey of outputs) {
|
|
129
|
+
const eventEmitter = (instance as Record<string, any>)[outputKey] as EventEmitter<any>;
|
|
130
|
+
const callback = inputs[outputKey] as (value: any) => void;
|
|
131
|
+
|
|
132
|
+
if (eventEmitter && typeof callback === 'function') {
|
|
133
|
+
if (subscriptions.has(outputKey)) {
|
|
134
|
+
subscriptions.get(outputKey)!.unsubscribe();
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
const subscription = eventEmitter.subscribe((value: any) => callback(value));
|
|
138
|
+
subscriptions.set(outputKey, subscription);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AfterViewInit,
|
|
3
|
+
ChangeDetectionStrategy,
|
|
4
|
+
ChangeDetectorRef,
|
|
5
|
+
Component,
|
|
6
|
+
inject,
|
|
7
|
+
Injector,
|
|
8
|
+
Input,
|
|
9
|
+
OnChanges,
|
|
10
|
+
Type,
|
|
11
|
+
ViewChild,
|
|
12
|
+
ViewContainerRef,
|
|
13
|
+
} from '@angular/core';
|
|
14
|
+
import { ExtendedComponent } from '@verisoft/ui-core';
|
|
15
|
+
import { DynamicComponentFactoryService } from './dynamic-component-factory.service';
|
|
16
|
+
|
|
17
|
+
@Component({
|
|
18
|
+
selector: 'v-dynamic-component',
|
|
19
|
+
standalone: true,
|
|
20
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
21
|
+
template: `<ng-container #dynamicContainer></ng-container>`,
|
|
22
|
+
})
|
|
23
|
+
export class DynamicComponent<TComponent> implements AfterViewInit, OnChanges {
|
|
24
|
+
@Input() componentType!: Type<TComponent>;
|
|
25
|
+
|
|
26
|
+
@Input() data!: ExtendedComponent<TComponent>;
|
|
27
|
+
|
|
28
|
+
@ViewChild('dynamicContainer', { read: ViewContainerRef, static: true })
|
|
29
|
+
container!: ViewContainerRef;
|
|
30
|
+
|
|
31
|
+
private factoryServices = inject(DynamicComponentFactoryService);
|
|
32
|
+
|
|
33
|
+
private changeDetectorRef = inject(ChangeDetectorRef);
|
|
34
|
+
|
|
35
|
+
private injector = inject(Injector);
|
|
36
|
+
|
|
37
|
+
ngOnChanges(): void {
|
|
38
|
+
this.createComponent();
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
ngAfterViewInit(): void {
|
|
42
|
+
this.createComponent();
|
|
43
|
+
this.changeDetectorRef.detectChanges();
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
private createComponent() {
|
|
47
|
+
if (this.container) {
|
|
48
|
+
this.factoryServices.createDynamicComponent(
|
|
49
|
+
this.componentType,
|
|
50
|
+
this.container,
|
|
51
|
+
this.data,
|
|
52
|
+
this.injector
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './dynamic-component-factory.service';
|
|
2
|
-
export * from './dynamic-component.component';
|
|
1
|
+
export * from './dynamic-component-factory.service';
|
|
2
|
+
export * from './dynamic-component.component';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Directive, Input } from '@angular/core';
|
|
2
|
+
import { GenericFieldType, GenericFieldTypeType, TableColumnDirective } from '@verisoft/ui-core';
|
|
3
|
+
import { FEATURE_LIST_COLUMN_PROVIDER, FeatureListColumnDefinition, FeatureListColumnProvider } from '../feature-list-page.model';
|
|
4
|
+
|
|
5
|
+
@Directive({
|
|
6
|
+
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
7
|
+
selector: 'v-feature-list-column',
|
|
8
|
+
standalone: true,
|
|
9
|
+
providers: [
|
|
10
|
+
{
|
|
11
|
+
provide: FEATURE_LIST_COLUMN_PROVIDER,
|
|
12
|
+
useExisting: FeatureListColumnDirective,
|
|
13
|
+
multi: true,
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
})
|
|
17
|
+
export class FeatureListColumnDirective<T>
|
|
18
|
+
extends TableColumnDirective<T>
|
|
19
|
+
implements FeatureListColumnProvider<T>
|
|
20
|
+
{
|
|
21
|
+
@Input() filter = false;
|
|
22
|
+
|
|
23
|
+
@Input() type: GenericFieldTypeType = GenericFieldType.text;
|
|
24
|
+
|
|
25
|
+
override getDefinition(): FeatureListColumnDefinition<T> {
|
|
26
|
+
const definition = super.getDefinition() as FeatureListColumnDefinition<T>;
|
|
27
|
+
definition.filter = this.filter;
|
|
28
|
+
definition.type = this.type;
|
|
29
|
+
definition.format = this.format;
|
|
30
|
+
return definition;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Directive } from '@angular/core';
|
|
2
|
+
import { FilterFieldDirective } from '../../filter';
|
|
3
|
+
@Directive({
|
|
4
|
+
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
5
|
+
selector: 'v-feature-list-filter-field',
|
|
6
|
+
standalone: true,
|
|
7
|
+
})
|
|
8
|
+
export class FeatureListFilterFieldDirective extends FilterFieldDirective {}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Pipe, PipeTransform } from "@angular/core";
|
|
2
|
+
import { GenericFieldDefinition, GenericFieldType } from "@verisoft/ui-core";
|
|
3
|
+
import { FeatureListColumnDefinition } from "./feature-list-page.model";
|
|
4
|
+
|
|
5
|
+
@Pipe({
|
|
6
|
+
name: 'featureListColumn',
|
|
7
|
+
standalone: true,
|
|
8
|
+
})
|
|
9
|
+
export class FeatureListFilterPipe<T> implements PipeTransform {
|
|
10
|
+
transform(value: FeatureListColumnDefinition<T>[] | undefined): GenericFieldDefinition[] | undefined {
|
|
11
|
+
if (!value){
|
|
12
|
+
return undefined;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
return value.filter(x => x.filter).map((x, index) => ({
|
|
16
|
+
name: x.id,
|
|
17
|
+
label: typeof x.headerName === 'function'? x.headerName(x.id, index) : x.headerName ?? '',
|
|
18
|
+
type: x.type as GenericFieldType,
|
|
19
|
+
}));
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import {
|
|
4
|
+
FEATURE_LIST_PAGE_CONFIG_PROPERTY,
|
|
5
|
+
FeatureListPageConfig,
|
|
6
|
+
} from './feature-list-page.model';
|
|
7
|
+
import { FeatureListComponent } from './feature-list.component';
|
|
8
|
+
|
|
9
|
+
@Component({
|
|
10
|
+
selector: 'v-feature-list-page',
|
|
11
|
+
standalone: true,
|
|
12
|
+
imports: [FeatureListComponent],
|
|
13
|
+
template: `
|
|
14
|
+
<v-feature-list
|
|
15
|
+
[title]="config.title"
|
|
16
|
+
[tableName]="config.tableName"
|
|
17
|
+
[showAdd]="config.showAdd ?? true"
|
|
18
|
+
[showDownload]="config.showDownload ?? true"
|
|
19
|
+
[showDelete]="config.showDelete ?? true"
|
|
20
|
+
>
|
|
21
|
+
</v-feature-list>
|
|
22
|
+
`,
|
|
23
|
+
})
|
|
24
|
+
export class FeatureListPageComponent {
|
|
25
|
+
config!: FeatureListPageConfig;
|
|
26
|
+
|
|
27
|
+
constructor(activatedRoute: ActivatedRoute) {
|
|
28
|
+
this.config =
|
|
29
|
+
activatedRoute.snapshot.data[FEATURE_LIST_PAGE_CONFIG_PROPERTY];
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { Route } from '@angular/router';
|
|
3
|
+
import { ColumnDefinition, GenericFieldTypeType } from '@verisoft/ui-core';
|
|
4
|
+
import { FeatureListPageComponent } from './feature-list-page.component';
|
|
5
|
+
|
|
6
|
+
export interface FeatureListPageConfig {
|
|
7
|
+
title: string;
|
|
8
|
+
datasource: string;
|
|
9
|
+
tableName: string;
|
|
10
|
+
showAdd?: boolean;
|
|
11
|
+
showDownload?: boolean;
|
|
12
|
+
showDelete?: boolean;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export const FEATURE_LIST_PAGE_CONFIG_PROPERTY = 'feature_list_config';
|
|
16
|
+
|
|
17
|
+
export function addFeatureListPage(
|
|
18
|
+
value: Partial<Route> & { config: FeatureListPageConfig }
|
|
19
|
+
): Route {
|
|
20
|
+
const { config, ...route } = value;
|
|
21
|
+
return {
|
|
22
|
+
component: FeatureListPageComponent,
|
|
23
|
+
...route,
|
|
24
|
+
data: {
|
|
25
|
+
[FEATURE_LIST_PAGE_CONFIG_PROPERTY]: config,
|
|
26
|
+
...(route.data ?? {}),
|
|
27
|
+
},
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export interface FeatureListColumnDefinition<T> extends ColumnDefinition<T> {
|
|
32
|
+
filter?: boolean;
|
|
33
|
+
type?: GenericFieldTypeType;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export const FEATURE_LIST_COLUMN_PROVIDER = new InjectionToken(
|
|
37
|
+
'FEATURE_LIST_COLUMN_PROVIDER'
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
export interface FeatureListColumnProvider<T> {
|
|
41
|
+
getDefinition: () => FeatureListColumnDefinition<T>;
|
|
42
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<div class="feature-list__container full-height-container">
|
|
2
|
+
<v-filter
|
|
3
|
+
#filter
|
|
4
|
+
[title]="title"
|
|
5
|
+
[fields]="columns | featureListColumn"
|
|
6
|
+
[filters]="filters"
|
|
7
|
+
[fulltextFieldName]="fulltextFieldName"
|
|
8
|
+
[showFulltext]="showFulltext"
|
|
9
|
+
[showFilters]="showExtendedFilter"
|
|
10
|
+
>
|
|
11
|
+
<v-action-button-group
|
|
12
|
+
[maxItems]="maxVisibleActions"
|
|
13
|
+
[maxItemsMobile]="maxVisibleMobileActions"
|
|
14
|
+
>
|
|
15
|
+
@if (showAdd) {
|
|
16
|
+
<v-action-button
|
|
17
|
+
[icon]="icons.add"
|
|
18
|
+
label="Add"
|
|
19
|
+
[disabled]="!canAdd"
|
|
20
|
+
(click)="addClick.emit()"
|
|
21
|
+
></v-action-button>
|
|
22
|
+
} @if (showDelete){
|
|
23
|
+
<v-action-button
|
|
24
|
+
[icon]="icons.delete"
|
|
25
|
+
label="Delete"
|
|
26
|
+
[disabled]="!canDelete || !selection.length"
|
|
27
|
+
(click)="startDeleteItems()"
|
|
28
|
+
></v-action-button>
|
|
29
|
+
} @if (showDownload){
|
|
30
|
+
<v-action-button
|
|
31
|
+
[icon]="icons.download"
|
|
32
|
+
label="Download"
|
|
33
|
+
[disabled]="!canDownload"
|
|
34
|
+
(click)="startDownload()"
|
|
35
|
+
></v-action-button>
|
|
36
|
+
}
|
|
37
|
+
</v-action-button-group>
|
|
38
|
+
</v-filter>
|
|
39
|
+
<div class="feature-list__table-container full-height-container">
|
|
40
|
+
<div class="full-height-container">
|
|
41
|
+
<v-table
|
|
42
|
+
useDatasource
|
|
43
|
+
useFilter
|
|
44
|
+
[filterComponent]="filter"
|
|
45
|
+
class="full-height-container"
|
|
46
|
+
[selectionMode]="selectionMode"
|
|
47
|
+
[tableName]="tableName"
|
|
48
|
+
[autoBind]="true"
|
|
49
|
+
[datasource]="datasource"
|
|
50
|
+
[columns]="columns"
|
|
51
|
+
[extraFilter]="extraFilter"
|
|
52
|
+
[maximumColumnLength]="maximumColumnLength"
|
|
53
|
+
[disableCustomClicks]="disableCustomClicks"
|
|
54
|
+
(selectionChange)="selectItems($event)"
|
|
55
|
+
>
|
|
56
|
+
</v-table>
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
</div>
|