@verisoft/ui-primeng 18.7.0 → 18.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -57
- package/assets/icons/complex/v-logo.svg +4 -4
- package/assets/sass/base/_scrollbar.scss +18 -18
- package/assets/sass/base/_typography.scss +24 -24
- package/assets/sass/layout/_app.scss +26 -26
- package/assets/sass/layout/_button.scss +57 -57
- package/assets/sass/layout/_checkbox.scss +32 -32
- package/assets/sass/layout/_dialog.scss +12 -12
- package/assets/sass/layout/_dropdown.scss +8 -8
- package/assets/sass/layout/_formField.scss +4 -4
- package/assets/sass/layout/_header.scss +62 -62
- package/assets/sass/layout/_icons.scss +12 -12
- package/assets/sass/layout/_inputSwitch.scss +12 -12
- package/assets/sass/layout/_layout.scss +5 -5
- package/assets/sass/layout/_loader.scss +8 -8
- package/assets/sass/layout/_radiobutton.scss +21 -21
- package/assets/sass/layout/_sidemenu.scss +172 -172
- package/assets/sass/layout/_snackbar.scss +7 -7
- package/assets/sass/layout/_tables.scss +4 -4
- package/assets/sass/layout/_tree.scss +11 -11
- package/assets/sass/layout/_tristatecheckbox.scss +14 -14
- package/assets/sass/main.scss +28 -28
- package/assets/sass/themes/_verisoft_theme.scss +46 -46
- package/assets/sass/utils/_utils.scss +39 -39
- package/assets/sass/utils/_variables.scss +12 -12
- package/assets/sass/vendors/_bootstrap.scss +2 -2
- package/assets/sass/vendors/_primeng.scss +2 -2
- package/esm2022/index.mjs +30 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +31 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.pipe.mjs +17 -0
- package/esm2022/lib/components/breadcrumb/index.mjs +2 -0
- package/esm2022/lib/components/button/button.component.mjs +61 -0
- package/esm2022/lib/components/button/index.mjs +2 -0
- package/esm2022/lib/components/calendar/calendar.component.mjs +73 -0
- package/esm2022/lib/components/calendar/index.mjs +2 -0
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +47 -0
- package/esm2022/lib/components/checkbox/index.mjs +2 -0
- package/esm2022/lib/components/confirm-dialog/confirm-dialog.component.mjs +65 -0
- package/esm2022/lib/components/confirm-dialog/index.mjs +2 -0
- package/esm2022/lib/components/dropdown/dropdown.component.mjs +139 -0
- package/esm2022/lib/components/dropdown/index.mjs +2 -0
- package/esm2022/lib/components/errors/error.component.mjs +41 -0
- package/esm2022/lib/components/errors/index.mjs +2 -0
- package/esm2022/lib/components/form-field/form-field.component.mjs +41 -0
- package/esm2022/lib/components/form-field/index.mjs +2 -0
- package/esm2022/lib/components/header/header.component.mjs +58 -0
- package/esm2022/lib/components/header/index.mjs +3 -0
- package/esm2022/lib/components/header/services/header-provider.service.mjs +24 -0
- package/esm2022/lib/components/input-group/index.mjs +2 -0
- package/esm2022/lib/components/input-group/input-group.component.mjs +57 -0
- package/esm2022/lib/components/loader/index.mjs +2 -0
- package/esm2022/lib/components/loader/loader.component.mjs +19 -0
- package/esm2022/lib/components/multiselect/index.mjs +2 -0
- package/esm2022/lib/components/multiselect/multiselect.component.mjs +124 -0
- package/esm2022/lib/components/number-input/index.mjs +2 -0
- package/esm2022/lib/components/number-input/number-input.component.mjs +64 -0
- package/esm2022/lib/components/page-header/index.mjs +2 -0
- package/esm2022/lib/components/page-header/page-header.component.mjs +28 -0
- package/esm2022/lib/components/password/index.mjs +2 -0
- package/esm2022/lib/components/password/password.component.mjs +59 -0
- package/esm2022/lib/components/radiobutton/index.mjs +2 -0
- package/esm2022/lib/components/radiobutton/radiobutton.component.mjs +57 -0
- package/esm2022/lib/components/section/index.mjs +2 -0
- package/esm2022/lib/components/section/section.component.mjs +35 -0
- package/esm2022/lib/components/shared-components/action-button-group/action-button-group.component.mjs +92 -0
- package/esm2022/lib/components/shared-components/action-button-group/components/action-button/action-button.component.mjs +60 -0
- package/esm2022/lib/components/shared-components/action-button-group/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.mjs +90 -0
- package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component.component.mjs +41 -0
- package/esm2022/lib/components/shared-components/dynamic-component/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-column.directive.mjs +46 -0
- package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.mjs +16 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-filter.pipe.mjs +24 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-page.component.mjs +42 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-page.model.mjs +16 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list.component.mjs +275 -0
- package/esm2022/lib/components/shared-components/feature-list/index.mjs +6 -0
- package/esm2022/lib/components/shared-components/filter/directives/filter-field.directive.mjs +44 -0
- package/esm2022/lib/components/shared-components/filter/filter.component.mjs +190 -0
- package/esm2022/lib/components/shared-components/filter/filter.model.mjs +16 -0
- package/esm2022/lib/components/shared-components/filter/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/generic-field/generic-field.component.mjs +93 -0
- package/esm2022/lib/components/shared-components/generic-field/index.mjs +2 -0
- package/esm2022/lib/components/shared-components/generic-form/generic-form.component.mjs +40 -0
- package/esm2022/lib/components/shared-components/generic-form/generic-form.model.mjs +50 -0
- package/esm2022/lib/components/shared-components/generic-form/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/index.mjs +7 -0
- package/esm2022/lib/components/side-menu/index.mjs +3 -0
- package/esm2022/lib/components/side-menu/side-menu.component.mjs +92 -0
- package/esm2022/lib/components/side-menu/side-menu.module.mjs +74 -0
- package/esm2022/lib/components/slider/index.mjs +2 -0
- package/esm2022/lib/components/slider/slider.component.mjs +62 -0
- package/esm2022/lib/components/snackbar/index.mjs +3 -0
- package/esm2022/lib/components/snackbar/services/snackbar.service.mjs +50 -0
- package/esm2022/lib/components/snackbar/snackbar.component.mjs +33 -0
- package/esm2022/lib/components/stepper/index.mjs +2 -0
- package/esm2022/lib/components/stepper/stepper.component.mjs +48 -0
- package/esm2022/lib/components/switch/index.mjs +2 -0
- package/esm2022/lib/components/switch/switch.component.mjs +54 -0
- package/esm2022/lib/components/tab-view/index.mjs +4 -0
- package/esm2022/lib/components/tab-view/tab-menu.pipe.mjs +25 -0
- package/esm2022/lib/components/tab-view/tab-view-item.component.mjs +31 -0
- package/esm2022/lib/components/tab-view/tab-view.component.mjs +50 -0
- package/esm2022/lib/components/tab-view/tab-view.module.mjs +29 -0
- package/esm2022/lib/components/table/index.mjs +2 -0
- package/esm2022/lib/components/table/table-filter.pipe.mjs +49 -0
- package/esm2022/lib/components/table/table.component.mjs +220 -0
- package/esm2022/lib/components/table/table.models.mjs +17 -0
- package/esm2022/lib/components/textarea/index.mjs +2 -0
- package/esm2022/lib/components/textarea/textarea.component.mjs +65 -0
- package/esm2022/lib/components/textfield/index.mjs +2 -0
- package/esm2022/lib/components/textfield/textfield.component.mjs +65 -0
- package/esm2022/lib/components/tristatecheckbox/index.mjs +2 -0
- package/esm2022/lib/components/tristatecheckbox/tristatecheckbox.component.mjs +53 -0
- package/esm2022/lib/icons.mjs +35 -0
- package/esm2022/lib/interceptors/http-error-message.interceptor.mjs +31 -0
- package/esm2022/verisoft-ui-primeng.mjs +5 -0
- package/fesm2022/verisoft-ui-primeng.mjs +2909 -0
- package/fesm2022/verisoft-ui-primeng.mjs.map +1 -0
- package/{src/index.ts → index.d.ts} +29 -29
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +6 -0
- package/lib/components/breadcrumb/breadcrumb.pipe.d.ts +9 -0
- package/{src/lib/components/breadcrumb/index.ts → lib/components/breadcrumb/index.d.ts} +1 -1
- package/lib/components/button/button.component.d.ts +20 -0
- package/{src/lib/components/button/index.ts → lib/components/button/index.d.ts} +1 -1
- package/lib/components/calendar/calendar.component.d.ts +17 -0
- package/{src/lib/components/calendar/index.ts → lib/components/calendar/index.d.ts} +1 -1
- package/lib/components/checkbox/checkbox.component.d.ts +9 -0
- package/{src/lib/components/checkbox/index.ts → lib/components/checkbox/index.d.ts} +1 -1
- package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +15 -0
- package/{src/lib/components/confirm-dialog/index.ts → lib/components/confirm-dialog/index.d.ts} +1 -1
- package/lib/components/dropdown/dropdown.component.d.ts +38 -0
- package/{src/lib/components/dropdown/index.ts → lib/components/dropdown/index.d.ts} +1 -1
- package/lib/components/errors/error.component.d.ts +16 -0
- package/lib/components/errors/index.d.ts +1 -0
- package/lib/components/form-field/form-field.component.d.ts +12 -0
- package/{src/lib/components/form-field/index.ts → lib/components/form-field/index.d.ts} +1 -1
- package/lib/components/header/header.component.d.ts +23 -0
- package/{src/lib/components/header/index.ts → lib/components/header/index.d.ts} +2 -2
- package/lib/components/header/services/header-provider.service.d.ts +10 -0
- package/{src/lib/components/input-group/index.ts → lib/components/input-group/index.d.ts} +1 -1
- package/lib/components/input-group/input-group.component.d.ts +9 -0
- package/{src/lib/components/loader/index.ts → lib/components/loader/index.d.ts} +1 -1
- package/lib/components/loader/loader.component.d.ts +6 -0
- package/{src/lib/components/multiselect/index.ts → lib/components/multiselect/index.d.ts} +1 -1
- package/lib/components/multiselect/multiselect.component.d.ts +34 -0
- package/{src/lib/components/number-input/index.ts → lib/components/number-input/index.d.ts} +1 -1
- package/lib/components/number-input/number-input.component.d.ts +14 -0
- package/{src/lib/components/page-header/index.ts → lib/components/page-header/index.d.ts} +1 -1
- package/lib/components/page-header/page-header.component.d.ts +10 -0
- package/{src/lib/components/password/index.ts → lib/components/password/index.d.ts} +1 -1
- package/lib/components/password/password.component.d.ts +11 -0
- package/{src/lib/components/radiobutton/index.ts → lib/components/radiobutton/index.d.ts} +1 -1
- package/lib/components/radiobutton/radiobutton.component.d.ts +10 -0
- package/{src/lib/components/section/index.ts → lib/components/section/index.d.ts} +1 -1
- package/lib/components/section/section.component.d.ts +12 -0
- package/lib/components/shared-components/action-button-group/action-button-group.component.d.ts +29 -0
- package/lib/components/shared-components/action-button-group/components/action-button/action-button.component.d.ts +24 -0
- package/{src/lib/components/shared-components/action-button-group/index.ts → lib/components/shared-components/action-button-group/index.d.ts} +2 -2
- package/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.d.ts +17 -0
- package/lib/components/shared-components/dynamic-component/dynamic-component.component.d.ts +16 -0
- package/{src/lib/components/shared-components/dynamic-component/index.ts → lib/components/shared-components/dynamic-component/index.d.ts} +2 -2
- package/lib/components/shared-components/feature-list/directives/feature-list-column.directive.d.ts +10 -0
- package/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.d.ts +6 -0
- package/lib/components/shared-components/feature-list/feature-list-filter.pipe.d.ts +9 -0
- package/lib/components/shared-components/feature-list/feature-list-page.component.d.ts +9 -0
- package/lib/components/shared-components/feature-list/feature-list-page.model.d.ts +23 -0
- package/lib/components/shared-components/feature-list/feature-list.component.d.ts +62 -0
- package/{src/lib/components/shared-components/feature-list/index.ts → lib/components/shared-components/feature-list/index.d.ts} +5 -5
- package/lib/components/shared-components/filter/directives/filter-field.directive.d.ts +20 -0
- package/lib/components/shared-components/filter/filter.component.d.ts +53 -0
- package/lib/components/shared-components/filter/filter.model.d.ts +2 -0
- package/{src/lib/components/shared-components/filter/index.ts → lib/components/shared-components/filter/index.d.ts} +2 -2
- package/lib/components/shared-components/generic-field/generic-field.component.d.ts +28 -0
- package/{src/lib/components/shared-components/generic-field/index.ts → lib/components/shared-components/generic-field/index.d.ts} +1 -1
- package/lib/components/shared-components/generic-form/generic-form.component.d.ts +15 -0
- package/lib/components/shared-components/generic-form/generic-form.model.d.ts +4 -0
- package/{src/lib/components/shared-components/generic-form/index.ts → lib/components/shared-components/generic-form/index.d.ts} +2 -2
- package/{src/lib/components/shared-components/index.ts → lib/components/shared-components/index.d.ts} +6 -6
- package/{src/lib/components/side-menu/index.ts → lib/components/side-menu/index.d.ts} +2 -2
- package/lib/components/side-menu/side-menu.component.d.ts +27 -0
- package/lib/components/side-menu/side-menu.module.d.ts +13 -0
- package/{src/lib/components/slider/index.ts → lib/components/slider/index.d.ts} +1 -1
- package/lib/components/slider/slider.component.d.ts +12 -0
- package/{src/lib/components/snackbar/index.ts → lib/components/snackbar/index.d.ts} +2 -2
- package/lib/components/snackbar/services/snackbar.service.d.ts +12 -0
- package/lib/components/snackbar/snackbar.component.d.ts +9 -0
- package/{src/lib/components/stepper/index.ts → lib/components/stepper/index.d.ts} +1 -1
- package/lib/components/stepper/stepper.component.d.ts +17 -0
- package/{src/lib/components/switch/index.ts → lib/components/switch/index.d.ts} +1 -1
- package/lib/components/switch/switch.component.d.ts +9 -0
- package/{src/lib/components/tab-view/index.ts → lib/components/tab-view/index.d.ts} +3 -3
- package/lib/components/tab-view/tab-menu.pipe.d.ts +9 -0
- package/lib/components/tab-view/tab-view-item.component.d.ts +12 -0
- package/lib/components/tab-view/tab-view.component.d.ts +17 -0
- package/lib/components/tab-view/tab-view.module.d.ts +13 -0
- package/{src/lib/components/table/index.ts → lib/components/table/index.d.ts} +1 -1
- package/lib/components/table/table-filter.pipe.d.ts +13 -0
- package/lib/components/table/table.component.d.ts +67 -0
- package/lib/components/table/table.models.d.ts +4 -0
- package/{src/lib/components/textarea/index.ts → lib/components/textarea/index.d.ts} +1 -1
- package/lib/components/textarea/textarea.component.d.ts +12 -0
- package/{src/lib/components/textfield/index.ts → lib/components/textfield/index.d.ts} +1 -1
- package/lib/components/textfield/textfield.component.d.ts +12 -0
- package/{src/lib/components/tristatecheckbox/index.ts → lib/components/tristatecheckbox/index.d.ts} +1 -1
- package/lib/components/tristatecheckbox/tristatecheckbox.component.d.ts +9 -0
- package/lib/icons.d.ts +2 -0
- package/lib/interceptors/http-error-message.interceptor.d.ts +11 -0
- package/package.json +37 -22
- package/.eslintrc.json +0 -43
- package/assets/.gitkeep +0 -0
- package/jest.config.ts +0 -22
- package/ng-package.json +0 -15
- package/project.json +0 -36
- package/src/lib/components/breadcrumb/breadcrumb.component.html +0 -12
- package/src/lib/components/breadcrumb/breadcrumb.component.scss +0 -18
- package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +0 -21
- package/src/lib/components/breadcrumb/breadcrumb.component.stories.ts +0 -36
- package/src/lib/components/breadcrumb/breadcrumb.component.ts +0 -29
- package/src/lib/components/breadcrumb/breadcrumb.pipe.ts +0 -13
- package/src/lib/components/button/button.component.html +0 -20
- package/src/lib/components/button/button.component.scss +0 -0
- package/src/lib/components/button/button.component.spec.ts +0 -21
- package/src/lib/components/button/button.component.ts +0 -49
- package/src/lib/components/calendar/calendar.component.html +0 -53
- package/src/lib/components/calendar/calendar.component.scss +0 -0
- package/src/lib/components/calendar/calendar.component.spec.ts +0 -21
- package/src/lib/components/calendar/calendar.component.ts +0 -72
- package/src/lib/components/checkbox/checkbox.component.html +0 -19
- package/src/lib/components/checkbox/checkbox.component.scss +0 -15
- package/src/lib/components/checkbox/checkbox.component.spec.ts +0 -21
- package/src/lib/components/checkbox/checkbox.component.stories.ts +0 -72
- package/src/lib/components/checkbox/checkbox.component.ts +0 -45
- package/src/lib/components/confirm-dialog/confirm-dialog.component.html +0 -48
- package/src/lib/components/confirm-dialog/confirm-dialog.component.scss +0 -3
- package/src/lib/components/confirm-dialog/confirm-dialog.component.spec.ts +0 -21
- package/src/lib/components/confirm-dialog/confirm-dialog.component.stories.ts +0 -74
- package/src/lib/components/confirm-dialog/confirm-dialog.component.ts +0 -74
- package/src/lib/components/dropdown/dropdown.component.html +0 -96
- package/src/lib/components/dropdown/dropdown.component.scss +0 -16
- package/src/lib/components/dropdown/dropdown.component.spec.ts +0 -21
- package/src/lib/components/dropdown/dropdown.component.stories.ts +0 -90
- package/src/lib/components/dropdown/dropdown.component.ts +0 -144
- package/src/lib/components/errors/error.component.html +0 -6
- package/src/lib/components/errors/error.component.scss +0 -3
- package/src/lib/components/errors/error.component.ts +0 -35
- package/src/lib/components/errors/index.ts +0 -1
- package/src/lib/components/form-field/form-field.component.html +0 -36
- package/src/lib/components/form-field/form-field.component.scss +0 -0
- package/src/lib/components/form-field/form-field.component.spec.ts +0 -21
- package/src/lib/components/form-field/form-field.component.stories.ts +0 -69
- package/src/lib/components/form-field/form-field.component.ts +0 -38
- package/src/lib/components/header/header.component.html +0 -84
- package/src/lib/components/header/header.component.scss +0 -0
- package/src/lib/components/header/header.component.spec.ts +0 -21
- package/src/lib/components/header/header.component.stories.ts +0 -24
- package/src/lib/components/header/header.component.ts +0 -66
- package/src/lib/components/header/services/header-provider.service.ts +0 -15
- package/src/lib/components/input-group/input-group.component.html +0 -30
- package/src/lib/components/input-group/input-group.component.spec.ts +0 -21
- package/src/lib/components/input-group/input-group.component.ts +0 -60
- package/src/lib/components/loader/loader.component.html +0 -5
- package/src/lib/components/loader/loader.component.scss +0 -0
- package/src/lib/components/loader/loader.component.spec.ts +0 -21
- package/src/lib/components/loader/loader.component.ts +0 -17
- package/src/lib/components/multiselect/multiselect.component.html +0 -70
- package/src/lib/components/multiselect/multiselect.component.scss +0 -0
- package/src/lib/components/multiselect/multiselect.component.spec.ts +0 -21
- package/src/lib/components/multiselect/multiselect.component.ts +0 -122
- package/src/lib/components/number-input/number-input.component.html +0 -22
- package/src/lib/components/number-input/number-input.component.spec.ts +0 -21
- package/src/lib/components/number-input/number-input.component.ts +0 -57
- package/src/lib/components/page-header/page-header.component.html +0 -31
- package/src/lib/components/page-header/page-header.component.scss +0 -0
- package/src/lib/components/page-header/page-header.component.spec.ts +0 -21
- package/src/lib/components/page-header/page-header.component.ts +0 -32
- package/src/lib/components/password/password.component.html +0 -24
- package/src/lib/components/password/password.component.scss +0 -0
- package/src/lib/components/password/password.component.spec.ts +0 -21
- package/src/lib/components/password/password.component.ts +0 -58
- package/src/lib/components/radiobutton/radiobutton.component.html +0 -32
- package/src/lib/components/radiobutton/radiobutton.component.scss +0 -6
- package/src/lib/components/radiobutton/radiobutton.component.spec.ts +0 -21
- package/src/lib/components/radiobutton/radiobutton.component.stories.ts +0 -71
- package/src/lib/components/radiobutton/radiobutton.component.ts +0 -62
- package/src/lib/components/section/section.component.html +0 -23
- package/src/lib/components/section/section.component.scss +0 -0
- package/src/lib/components/section/section.component.spec.ts +0 -21
- package/src/lib/components/section/section.component.ts +0 -32
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.html +0 -27
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.scss +0 -0
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.spec.ts +0 -21
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.ts +0 -114
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.html +0 -11
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.scss +0 -0
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.spec.ts +0 -21
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.ts +0 -71
- package/src/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.ts +0 -142
- package/src/lib/components/shared-components/dynamic-component/dynamic-component.component.ts +0 -56
- package/src/lib/components/shared-components/feature-list/directives/feature-list-column.directive.ts +0 -32
- package/src/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.ts +0 -8
- package/src/lib/components/shared-components/feature-list/feature-list-filter.pipe.ts +0 -21
- package/src/lib/components/shared-components/feature-list/feature-list-page.component.ts +0 -31
- package/src/lib/components/shared-components/feature-list/feature-list-page.model.ts +0 -42
- package/src/lib/components/shared-components/feature-list/feature-list.component.html +0 -59
- package/src/lib/components/shared-components/feature-list/feature-list.component.scss +0 -10
- package/src/lib/components/shared-components/feature-list/feature-list.component.ts +0 -342
- package/src/lib/components/shared-components/filter/directives/filter-field.directive.ts +0 -35
- package/src/lib/components/shared-components/filter/filter.component.html +0 -68
- package/src/lib/components/shared-components/filter/filter.component.scss +0 -0
- package/src/lib/components/shared-components/filter/filter.component.spec.ts +0 -21
- package/src/lib/components/shared-components/filter/filter.component.stories.ts +0 -23
- package/src/lib/components/shared-components/filter/filter.component.ts +0 -284
- package/src/lib/components/shared-components/filter/filter.model.ts +0 -18
- package/src/lib/components/shared-components/generic-field/generic-field.component.html +0 -97
- package/src/lib/components/shared-components/generic-field/generic-field.component.spec.ts +0 -21
- package/src/lib/components/shared-components/generic-field/generic-field.component.ts +0 -94
- package/src/lib/components/shared-components/generic-form/generic-form.component.html +0 -46
- package/src/lib/components/shared-components/generic-form/generic-form.component.spec.ts +0 -21
- package/src/lib/components/shared-components/generic-form/generic-form.component.ts +0 -57
- package/src/lib/components/shared-components/generic-form/generic-form.model.spec.ts +0 -82
- package/src/lib/components/shared-components/generic-form/generic-form.model.ts +0 -68
- package/src/lib/components/side-menu/side-menu.component.html +0 -52
- package/src/lib/components/side-menu/side-menu.component.scss +0 -0
- package/src/lib/components/side-menu/side-menu.component.spec.ts +0 -21
- package/src/lib/components/side-menu/side-menu.component.ts +0 -98
- package/src/lib/components/side-menu/side-menu.module.ts +0 -66
- package/src/lib/components/slider/slider.component.html +0 -19
- package/src/lib/components/slider/slider.component.spec.ts +0 -21
- package/src/lib/components/slider/slider.component.ts +0 -58
- package/src/lib/components/snackbar/services/snackbar.service.ts +0 -45
- package/src/lib/components/snackbar/snackbar.component.html +0 -3
- package/src/lib/components/snackbar/snackbar.component.scss +0 -0
- package/src/lib/components/snackbar/snackbar.component.spec.ts +0 -21
- package/src/lib/components/snackbar/snackbar.component.stories.ts +0 -70
- package/src/lib/components/snackbar/snackbar.component.ts +0 -26
- package/src/lib/components/stepper/stepper.component.html +0 -43
- package/src/lib/components/stepper/stepper.component.spec.ts +0 -21
- package/src/lib/components/stepper/stepper.component.ts +0 -40
- package/src/lib/components/switch/switch.component.html +0 -18
- package/src/lib/components/switch/switch.component.scss +0 -0
- package/src/lib/components/switch/switch.component.spec.ts +0 -21
- package/src/lib/components/switch/switch.component.stories.ts +0 -65
- package/src/lib/components/switch/switch.component.ts +0 -54
- package/src/lib/components/tab-view/tab-menu.pipe.ts +0 -23
- package/src/lib/components/tab-view/tab-view-item.component.ts +0 -22
- package/src/lib/components/tab-view/tab-view.component.html +0 -23
- package/src/lib/components/tab-view/tab-view.component.ts +0 -55
- package/src/lib/components/tab-view/tab-view.module.ts +0 -19
- package/src/lib/components/table/table-filter.pipe.ts +0 -59
- package/src/lib/components/table/table.component.html +0 -123
- package/src/lib/components/table/table.component.scss +0 -11
- package/src/lib/components/table/table.component.spec.ts +0 -21
- package/src/lib/components/table/table.component.stories.ts +0 -55
- package/src/lib/components/table/table.component.ts +0 -289
- package/src/lib/components/table/table.models.ts +0 -26
- package/src/lib/components/textarea/textarea.component.html +0 -40
- package/src/lib/components/textarea/textarea.component.scss +0 -5
- package/src/lib/components/textarea/textarea.component.spec.ts +0 -21
- package/src/lib/components/textarea/textarea.component.stories.ts +0 -98
- package/src/lib/components/textarea/textarea.component.ts +0 -64
- package/src/lib/components/textfield/textfield.component.html +0 -83
- package/src/lib/components/textfield/textfield.component.scss +0 -23
- package/src/lib/components/textfield/textfield.component.spec.ts +0 -21
- package/src/lib/components/textfield/textfield.component.stories.ts +0 -85
- package/src/lib/components/textfield/textfield.component.ts +0 -69
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.html +0 -23
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.scss +0 -0
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.spec.ts +0 -21
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.stories.ts +0 -22
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.ts +0 -50
- package/src/lib/icons.ts +0 -36
- package/src/lib/interceptors/http-error-message.interceptor.ts +0 -35
- package/src/lib/pages/not-found-page/not-found-page.component.html +0 -26
- 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 +0 -21
- package/src/lib/pages/not-found-page/not-found-page.component.ts +0 -17
- package/src/tab-view.ts +0 -1
- package/src/test-setup.ts +0 -8
- package/tsconfig.json +0 -29
- package/tsconfig.lib.json +0 -18
- package/tsconfig.lib.prod.json +0 -9
- package/tsconfig.spec.json +0 -16
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
.w-025 {
|
|
2
|
-
width: 0.25rem;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.w-050 {
|
|
6
|
-
width: 0.5rem;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.w-1 {
|
|
10
|
-
width: 1rem;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.w-2 {
|
|
14
|
-
width: 2rem;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.w-3 {
|
|
18
|
-
width: 3rem;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.w-4 {
|
|
22
|
-
width: 4rem;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.w-5 {
|
|
26
|
-
width: 5rem;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.w-6 {
|
|
30
|
-
width: 6rem;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.w-7 {
|
|
34
|
-
width: 7rem;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.w-8 {
|
|
38
|
-
width: 8rem;
|
|
39
|
-
}
|
|
1
|
+
.w-025 {
|
|
2
|
+
width: 0.25rem;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.w-050 {
|
|
6
|
+
width: 0.5rem;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.w-1 {
|
|
10
|
+
width: 1rem;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.w-2 {
|
|
14
|
+
width: 2rem;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.w-3 {
|
|
18
|
+
width: 3rem;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.w-4 {
|
|
22
|
+
width: 4rem;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.w-5 {
|
|
26
|
+
width: 5rem;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.w-6 {
|
|
30
|
+
width: 6rem;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.w-7 {
|
|
34
|
+
width: 7rem;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.w-8 {
|
|
38
|
+
width: 8rem;
|
|
39
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--primary-color: #f7a711;
|
|
3
|
-
--primary-color-semitransparent:#f7a71180;
|
|
4
|
-
--secondary-color: #64748b;
|
|
5
|
-
--details-color: #ffeecd;
|
|
6
|
-
--success-color: #90cb8a;
|
|
7
|
-
--error-color: #e27575;
|
|
8
|
-
--soft-error-color: #ffeeed;
|
|
9
|
-
--bg-color: #ffffff;
|
|
10
|
-
--white-color: #ffffff;
|
|
11
|
-
--disabled-color: #646464;
|
|
12
|
-
}
|
|
1
|
+
:root {
|
|
2
|
+
--primary-color: #f7a711;
|
|
3
|
+
--primary-color-semitransparent:#f7a71180;
|
|
4
|
+
--secondary-color: #64748b;
|
|
5
|
+
--details-color: #ffeecd;
|
|
6
|
+
--success-color: #90cb8a;
|
|
7
|
+
--error-color: #e27575;
|
|
8
|
+
--soft-error-color: #ffeeed;
|
|
9
|
+
--bg-color: #ffffff;
|
|
10
|
+
--white-color: #ffffff;
|
|
11
|
+
--disabled-color: #646464;
|
|
12
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@import 'node_modules/bootstrap/scss/bootstrap-grid.scss';
|
|
2
|
-
@import 'node_modules/bootstrap/scss/bootstrap-utilities.scss';
|
|
1
|
+
@import 'node_modules/bootstrap/scss/bootstrap-grid.scss';
|
|
2
|
+
@import 'node_modules/bootstrap/scss/bootstrap-utilities.scss';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@import 'primeicons/primeicons.css';
|
|
2
|
-
@import 'primeng/resources/themes/saga-orange/theme.css';
|
|
1
|
+
@import 'primeicons/primeicons.css';
|
|
2
|
+
@import 'primeng/resources/themes/saga-orange/theme.css';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export * from './lib/components/input-group';
|
|
2
|
+
export * from './lib/components/textfield';
|
|
3
|
+
export * from './lib/components/breadcrumb';
|
|
4
|
+
export * from './lib/components/checkbox';
|
|
5
|
+
export * from './lib/components/tristatecheckbox';
|
|
6
|
+
export * from './lib/components/calendar';
|
|
7
|
+
export * from './lib/components/form-field';
|
|
8
|
+
export * from './lib/components/password';
|
|
9
|
+
export * from './lib/components/section';
|
|
10
|
+
export * from './lib/components/button/button.component';
|
|
11
|
+
export * from './lib/components/radiobutton';
|
|
12
|
+
export * from './lib/components/number-input';
|
|
13
|
+
export * from './lib/components/header';
|
|
14
|
+
export * from './lib/components/textarea';
|
|
15
|
+
export * from './lib/components/loader';
|
|
16
|
+
export * from './lib/components/snackbar';
|
|
17
|
+
export * from './lib/components/side-menu';
|
|
18
|
+
export * from './lib/components/table';
|
|
19
|
+
export * from './lib/components/page-header';
|
|
20
|
+
export * from './lib/components/stepper';
|
|
21
|
+
export * from './lib/components/dropdown';
|
|
22
|
+
export * from './lib/components/multiselect';
|
|
23
|
+
export * from './lib/components/slider';
|
|
24
|
+
export * from './lib/components/confirm-dialog';
|
|
25
|
+
export * from './lib/components/switch';
|
|
26
|
+
export * from './lib/interceptors/http-error-message.interceptor';
|
|
27
|
+
export * from './lib/components/tab-view';
|
|
28
|
+
export * from './lib/components/shared-components';
|
|
29
|
+
export * from './lib/icons';
|
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvbGlicy91aS1wcmltZW5nL3NyYy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLDBDQUEwQyxDQUFDO0FBQ3pELGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYywrQkFBK0IsQ0FBQztBQUM5QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyxpQ0FBaUMsQ0FBQztBQUNoRCxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsbURBQW1ELENBQUM7QUFDbEUsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLG9DQUFvQyxDQUFDO0FBQ25ELGNBQWMsYUFBYSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9pbnB1dC1ncm91cCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3RleHRmaWVsZCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2JyZWFkY3J1bWInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jaGVja2JveCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3RyaXN0YXRlY2hlY2tib3gnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYWxlbmRhcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2Zvcm0tZmllbGQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9wYXNzd29yZCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3NlY3Rpb24nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9idXR0b24vYnV0dG9uLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3JhZGlvYnV0dG9uJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvbnVtYmVyLWlucHV0JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvaGVhZGVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvdGV4dGFyZWEnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9sb2FkZXInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9zbmFja2Jhcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3NpZGUtbWVudSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3RhYmxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvcGFnZS1oZWFkZXInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9zdGVwcGVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZHJvcGRvd24nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9tdWx0aXNlbGVjdCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3NsaWRlcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NvbmZpcm0tZGlhbG9nJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvc3dpdGNoJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2ludGVyY2VwdG9ycy9odHRwLWVycm9yLW1lc3NhZ2UuaW50ZXJjZXB0b3InO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy90YWItdmlldyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3NoYXJlZC1jb21wb25lbnRzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2ljb25zJztcbiJdfQ==
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { Component, } from '@angular/core';
|
|
3
|
+
import { BREADCRUMB_COMPONENT_TOKEN, BreadcrumbCoreComponent, } from '@verisoft/ui-core';
|
|
4
|
+
import { BreadcrumbModule } from 'primeng/breadcrumb';
|
|
5
|
+
import { ConvertMenuItemPipe } from './breadcrumb.pipe';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@angular/common";
|
|
8
|
+
import * as i2 from "primeng/breadcrumb";
|
|
9
|
+
export class BreadcrumbComponent extends BreadcrumbCoreComponent {
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BreadcrumbComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
11
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BreadcrumbComponent, isStandalone: true, selector: "v-breadcrumb", providers: [
|
|
12
|
+
{
|
|
13
|
+
provide: BREADCRUMB_COMPONENT_TOKEN,
|
|
14
|
+
useExisting: BreadcrumbComponent
|
|
15
|
+
},
|
|
16
|
+
], usesInheritance: true, ngImport: i0, template: "<div class=\"v-breadcrumb card flex justify-content-center\">\n <ng-container *ngIf=\"useHomeRoute; else default\">\n <p-breadcrumb\n class=\"max-w-full\"\n [model]=\"items | menuItem\"\n [home]=\"home\"\n ></p-breadcrumb>\n </ng-container>\n <ng-template #default>\n <p-breadcrumb class=\"max-w-full\" [model]=\"items | menuItem\"></p-breadcrumb>\n </ng-template>\n</div>\n", styles: ["p-breadcrumb>nav{border:none}p-breadcrumb>nav>ol{align-items:stretch;font-weight:600;font-size:1rem}p-breadcrumb>nav a[aria-current=page]>span{color:var(--primary-color)!important}.p-menuitem-link{gap:.5rem;text-align:center}.p-menuitem-text{align-self:baseline}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: BreadcrumbModule }, { kind: "component", type: i2.Breadcrumb, selector: "p-breadcrumb", inputs: ["model", "style", "styleClass", "home", "homeAriaLabel"], outputs: ["onItemClick"] }, { kind: "pipe", type: ConvertMenuItemPipe, name: "menuItem" }] }); }
|
|
17
|
+
}
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BreadcrumbComponent, decorators: [{
|
|
19
|
+
type: Component,
|
|
20
|
+
args: [{ selector: 'v-breadcrumb', standalone: true, imports: [
|
|
21
|
+
CommonModule,
|
|
22
|
+
BreadcrumbModule,
|
|
23
|
+
ConvertMenuItemPipe,
|
|
24
|
+
], providers: [
|
|
25
|
+
{
|
|
26
|
+
provide: BREADCRUMB_COMPONENT_TOKEN,
|
|
27
|
+
useExisting: BreadcrumbComponent
|
|
28
|
+
},
|
|
29
|
+
], template: "<div class=\"v-breadcrumb card flex justify-content-center\">\n <ng-container *ngIf=\"useHomeRoute; else default\">\n <p-breadcrumb\n class=\"max-w-full\"\n [model]=\"items | menuItem\"\n [home]=\"home\"\n ></p-breadcrumb>\n </ng-container>\n <ng-template #default>\n <p-breadcrumb class=\"max-w-full\" [model]=\"items | menuItem\"></p-breadcrumb>\n </ng-template>\n</div>\n", styles: ["p-breadcrumb>nav{border:none}p-breadcrumb>nav>ol{align-items:stretch;font-weight:600;font-size:1rem}p-breadcrumb>nav a[aria-current=page]>span{color:var(--primary-color)!important}.p-menuitem-link{gap:.5rem;text-align:center}.p-menuitem-text{align-self:baseline}\n"] }]
|
|
30
|
+
}] });
|
|
31
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJlYWRjcnVtYi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvbGlicy91aS1wcmltZW5nL3NyYy9saWIvY29tcG9uZW50cy9icmVhZGNydW1iL2JyZWFkY3J1bWIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2xpYnMvdWktcHJpbWVuZy9zcmMvbGliL2NvbXBvbmVudHMvYnJlYWRjcnVtYi9icmVhZGNydW1iLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQ0wsU0FBUyxHQUNWLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFDTCwwQkFBMEIsRUFDMUIsdUJBQXVCLEdBQ3hCLE1BQU0sbUJBQW1CLENBQUM7QUFDM0IsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDdEQsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sbUJBQW1CLENBQUM7Ozs7QUFtQnhELE1BQU0sT0FBTyxtQkFBb0IsU0FBUSx1QkFBdUI7OEdBQW5ELG1CQUFtQjtrR0FBbkIsbUJBQW1CLDJEQVBuQjtZQUNUO2dCQUNFLE9BQU8sRUFBRSwwQkFBMEI7Z0JBQ25DLFdBQVcsRUFBRSxtQkFBbUI7YUFDakM7U0FDRixpREMxQkgsb1pBWUEsaVVER0ksWUFBWSxrSUFDWixnQkFBZ0IsNkxBQ2hCLG1CQUFtQjs7MkZBV1YsbUJBQW1CO2tCQWpCL0IsU0FBUzsrQkFDRSxjQUFjLGNBQ1osSUFBSSxXQUNQO3dCQUNQLFlBQVk7d0JBQ1osZ0JBQWdCO3dCQUNoQixtQkFBbUI7cUJBQ3BCLGFBR1U7d0JBQ1Q7NEJBQ0UsT0FBTyxFQUFFLDBCQUEwQjs0QkFDbkMsV0FBVyxxQkFBcUI7eUJBQ2pDO3FCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7XG4gIENvbXBvbmVudCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1xuICBCUkVBRENSVU1CX0NPTVBPTkVOVF9UT0tFTixcbiAgQnJlYWRjcnVtYkNvcmVDb21wb25lbnQsXG59IGZyb20gJ0B2ZXJpc29mdC91aS1jb3JlJztcbmltcG9ydCB7IEJyZWFkY3J1bWJNb2R1bGUgfSBmcm9tICdwcmltZW5nL2JyZWFkY3J1bWInO1xuaW1wb3J0IHsgQ29udmVydE1lbnVJdGVtUGlwZSB9IGZyb20gJy4vYnJlYWRjcnVtYi5waXBlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAndi1icmVhZGNydW1iJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBCcmVhZGNydW1iTW9kdWxlLFxuICAgIENvbnZlcnRNZW51SXRlbVBpcGUsXG4gIF0sXG4gIHRlbXBsYXRlVXJsOiAnLi9icmVhZGNydW1iLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmw6ICcuL2JyZWFkY3J1bWIuY29tcG9uZW50LnNjc3MnLFxuICBwcm92aWRlcnM6IFtcbiAgICB7IFxuICAgICAgcHJvdmlkZTogQlJFQURDUlVNQl9DT01QT05FTlRfVE9LRU4sXG4gICAgICB1c2VFeGlzdGluZzogQnJlYWRjcnVtYkNvbXBvbmVudFxuICAgIH0sXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIEJyZWFkY3J1bWJDb21wb25lbnQgZXh0ZW5kcyBCcmVhZGNydW1iQ29yZUNvbXBvbmVudCB7IH1cbiIsIjxkaXYgY2xhc3M9XCJ2LWJyZWFkY3J1bWIgY2FyZCBmbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXJcIj5cbiAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInVzZUhvbWVSb3V0ZTsgZWxzZSBkZWZhdWx0XCI+XG4gICAgPHAtYnJlYWRjcnVtYlxuICAgICAgY2xhc3M9XCJtYXgtdy1mdWxsXCJcbiAgICAgIFttb2RlbF09XCJpdGVtcyB8IG1lbnVJdGVtXCJcbiAgICAgIFtob21lXT1cImhvbWVcIlxuICAgID48L3AtYnJlYWRjcnVtYj5cbiAgPC9uZy1jb250YWluZXI+XG4gIDxuZy10ZW1wbGF0ZSAjZGVmYXVsdD5cbiAgICA8cC1icmVhZGNydW1iIGNsYXNzPVwibWF4LXctZnVsbFwiIFttb2RlbF09XCJpdGVtcyB8IG1lbnVJdGVtXCI+PC9wLWJyZWFkY3J1bWI+XG4gIDwvbmctdGVtcGxhdGU+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Pipe } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class ConvertMenuItemPipe {
|
|
4
|
+
transform(items) {
|
|
5
|
+
return items.map(i => i);
|
|
6
|
+
}
|
|
7
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ConvertMenuItemPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
8
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.8", ngImport: i0, type: ConvertMenuItemPipe, isStandalone: true, name: "menuItem" }); }
|
|
9
|
+
}
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ConvertMenuItemPipe, decorators: [{
|
|
11
|
+
type: Pipe,
|
|
12
|
+
args: [{
|
|
13
|
+
name: 'menuItem',
|
|
14
|
+
standalone: true,
|
|
15
|
+
}]
|
|
16
|
+
}] });
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJlYWRjcnVtYi5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2xpYnMvdWktcHJpbWVuZy9zcmMvbGliL2NvbXBvbmVudHMvYnJlYWRjcnVtYi9icmVhZGNydW1iLnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7O0FBUXBELE1BQU0sT0FBTyxtQkFBbUI7SUFDOUIsU0FBUyxDQUFDLEtBQXlCO1FBQ2pDLE9BQU8sS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQWtCLENBQUMsQ0FBQztJQUM1QyxDQUFDOzhHQUhVLG1CQUFtQjs0R0FBbkIsbUJBQW1COzsyRkFBbkIsbUJBQW1CO2tCQUovQixJQUFJO21CQUFDO29CQUNKLElBQUksRUFBRSxVQUFVO29CQUNoQixVQUFVLEVBQUUsSUFBSTtpQkFDakIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcbmltcG9ydCB7IE1lbnVJdGVtIGFzIFZlcmlzb2Z0TWVudUl0ZW0gfSBmcm9tIFwiQHZlcmlzb2Z0L3VpLWNvcmVcIjtcbmltcG9ydCB7IE1lbnVJdGVtIGFzIFByaW1lTWVudUl0ZW0gfSBmcm9tIFwicHJpbWVuZy9hcGlcIjtcblxuQFBpcGUoe1xuICBuYW1lOiAnbWVudUl0ZW0nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxufSlcbmV4cG9ydCBjbGFzcyBDb252ZXJ0TWVudUl0ZW1QaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gIHRyYW5zZm9ybShpdGVtczogVmVyaXNvZnRNZW51SXRlbVtdKTogUHJpbWVNZW51SXRlbVtdIHtcbiAgICByZXR1cm4gaXRlbXMubWFwKGkgPT4gaSBhcyBQcmltZU1lbnVJdGVtKTtcbiAgfVxufSJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './breadcrumb.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvbGlicy91aS1wcmltZW5nL3NyYy9saWIvY29tcG9uZW50cy9icmVhZGNydW1iL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsd0JBQXdCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2JyZWFkY3J1bWIuY29tcG9uZW50JztcbiJdfQ==
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
3
|
+
import { RouterModule } from '@angular/router';
|
|
4
|
+
import { BUTTON_COMPONENT_TOKEN, IconPosition, } from '@verisoft/ui-core';
|
|
5
|
+
import { ButtonModule } from 'primeng/button';
|
|
6
|
+
import { RippleModule } from 'primeng/ripple';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "primeng/button";
|
|
9
|
+
import * as i2 from "@angular/router";
|
|
10
|
+
export class ButtonComponent {
|
|
11
|
+
constructor() {
|
|
12
|
+
this.iconPos = IconPosition.right;
|
|
13
|
+
}
|
|
14
|
+
fireClick(event) {
|
|
15
|
+
if (this.disabled) {
|
|
16
|
+
event.stopPropagation();
|
|
17
|
+
event.stopImmediatePropagation();
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
21
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: ButtonComponent, isStandalone: true, selector: "v-button", inputs: { label: "label", icon: "icon", badge: "badge", iconPos: "iconPos", disabled: "disabled", rounded: "rounded", outlined: "outlined", raised: "raised", severity: "severity", routerLink: "routerLink", size: "size", queryParams: "queryParams" }, providers: [
|
|
22
|
+
{
|
|
23
|
+
provide: BUTTON_COMPONENT_TOKEN,
|
|
24
|
+
useExisting: ButtonComponent,
|
|
25
|
+
},
|
|
26
|
+
], ngImport: i0, template: "<div class=\"v-button d-inline-block\" \n(click)=\"fireClick($event)\">\n <a\n [routerLink]=\"routerLink ? routerLink : undefined\"\n [queryParams]=\"queryParams ? queryParams : undefined\"\n >\n <p-button\n [disabled]=\"disabled\"\n [icon]=\"icon\"\n [badge]=\"badge\"\n [outlined]=\"outlined\"\n [rounded]=\"rounded\"\n [raised]=\"raised\"\n [label]=\"label\"\n [size]=\"$any(size)\"\n [severity]=\"severity\"\n [iconPos]=\"iconPos\"\n />\n </a>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: ButtonModule }, { kind: "component", type: i1.Button, selector: "p-button", inputs: ["type", "iconPos", "icon", "badge", "label", "disabled", "loading", "loadingIcon", "raised", "rounded", "text", "plain", "severity", "outlined", "link", "tabindex", "size", "style", "styleClass", "badgeClass", "ariaLabel", "autofocus"], outputs: ["onClick", "onFocus", "onBlur"] }, { kind: "ngmodule", type: RippleModule }, { kind: "ngmodule", type: RouterModule }, { kind: "directive", type: i2.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
27
|
+
}
|
|
28
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ButtonComponent, decorators: [{
|
|
29
|
+
type: Component,
|
|
30
|
+
args: [{ selector: 'v-button', standalone: true, imports: [CommonModule, ButtonModule, RippleModule, RouterModule], changeDetection: ChangeDetectionStrategy.OnPush, providers: [
|
|
31
|
+
{
|
|
32
|
+
provide: BUTTON_COMPONENT_TOKEN,
|
|
33
|
+
useExisting: ButtonComponent,
|
|
34
|
+
},
|
|
35
|
+
], template: "<div class=\"v-button d-inline-block\" \n(click)=\"fireClick($event)\">\n <a\n [routerLink]=\"routerLink ? routerLink : undefined\"\n [queryParams]=\"queryParams ? queryParams : undefined\"\n >\n <p-button\n [disabled]=\"disabled\"\n [icon]=\"icon\"\n [badge]=\"badge\"\n [outlined]=\"outlined\"\n [rounded]=\"rounded\"\n [raised]=\"raised\"\n [label]=\"label\"\n [size]=\"$any(size)\"\n [severity]=\"severity\"\n [iconPos]=\"iconPos\"\n />\n </a>\n</div>\n" }]
|
|
36
|
+
}], propDecorators: { label: [{
|
|
37
|
+
type: Input
|
|
38
|
+
}], icon: [{
|
|
39
|
+
type: Input
|
|
40
|
+
}], badge: [{
|
|
41
|
+
type: Input
|
|
42
|
+
}], iconPos: [{
|
|
43
|
+
type: Input
|
|
44
|
+
}], disabled: [{
|
|
45
|
+
type: Input
|
|
46
|
+
}], rounded: [{
|
|
47
|
+
type: Input
|
|
48
|
+
}], outlined: [{
|
|
49
|
+
type: Input
|
|
50
|
+
}], raised: [{
|
|
51
|
+
type: Input
|
|
52
|
+
}], severity: [{
|
|
53
|
+
type: Input
|
|
54
|
+
}], routerLink: [{
|
|
55
|
+
type: Input
|
|
56
|
+
}], size: [{
|
|
57
|
+
type: Input
|
|
58
|
+
}], queryParams: [{
|
|
59
|
+
type: Input
|
|
60
|
+
}] } });
|
|
61
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9saWJzL3VpLXByaW1lbmcvc3JjL2xpYi9jb21wb25lbnRzL2J1dHRvbi9idXR0b24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2xpYnMvdWktcHJpbWVuZy9zcmMvbGliL2NvbXBvbmVudHMvYnV0dG9uL2J1dHRvbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUUsT0FBTyxFQUFVLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQ3ZELE9BQU8sRUFDTCxzQkFBc0IsRUFJdEIsWUFBWSxHQUViLE1BQU0sbUJBQW1CLENBQUM7QUFDM0IsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQzlDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7OztBQWdCOUMsTUFBTSxPQUFPLGVBQWU7SUFkNUI7UUFrQlcsWUFBTyxHQUFxQixZQUFZLENBQUMsS0FBSyxDQUFDO0tBZ0J6RDtJQU5DLFNBQVMsQ0FBQyxLQUFZO1FBQ3BCLElBQUksSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDO1lBQ2xCLEtBQUssQ0FBQyxlQUFlLEVBQUUsQ0FBQztZQUN4QixLQUFLLENBQUMsd0JBQXdCLEVBQUUsQ0FBQztRQUNuQyxDQUFDO0lBQ0gsQ0FBQzs4R0FuQlUsZUFBZTtrR0FBZixlQUFlLGlUQVBmO1lBQ1Q7Z0JBQ0UsT0FBTyxFQUFFLHNCQUFzQjtnQkFDL0IsV0FBVyxFQUFFLGVBQWU7YUFDN0I7U0FDRiwwQkMxQkgsNGdCQW9CQSx5RERIWSxZQUFZLDhCQUFFLFlBQVksNlhBQUUsWUFBWSw4QkFBRSxZQUFZOzsyRkFXckQsZUFBZTtrQkFkM0IsU0FBUzsrQkFDRSxVQUFVLGNBQ1IsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLFlBQVksRUFBRSxZQUFZLEVBQUUsWUFBWSxDQUFDLG1CQUdoRCx1QkFBdUIsQ0FBQyxNQUFNLGFBQ3BDO3dCQUNUOzRCQUNFLE9BQU8sRUFBRSxzQkFBc0I7NEJBQy9CLFdBQVcsaUJBQWlCO3lCQUM3QjtxQkFDRjs4QkFHUSxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxNQUFNO3NCQUFkLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLO2dCQUNHLElBQUk7c0JBQVosS0FBSztnQkFDRyxXQUFXO3NCQUFuQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBQYXJhbXMsIFJvdXRlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQge1xuICBCVVRUT05fQ09NUE9ORU5UX1RPS0VOLFxuICBCdXR0b25Db3JlLFxuICBDb250cm9sU2V2ZXJpdHlUeXBlLFxuICBGaWVsZFNpemVUeXBlLFxuICBJY29uUG9zaXRpb24sXG4gIEljb25Qb3NpdGlvblR5cGUsXG59IGZyb20gJ0B2ZXJpc29mdC91aS1jb3JlJztcbmltcG9ydCB7IEJ1dHRvbk1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvYnV0dG9uJztcbmltcG9ydCB7IFJpcHBsZU1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvcmlwcGxlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAndi1idXR0b24nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBCdXR0b25Nb2R1bGUsIFJpcHBsZU1vZHVsZSwgUm91dGVyTW9kdWxlXSxcbiAgdGVtcGxhdGVVcmw6ICcuL2J1dHRvbi5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsOiAnLi9idXR0b24uY29tcG9uZW50LnNjc3MnLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgcHJvdmlkZXJzOiBbXG4gICAge1xuICAgICAgcHJvdmlkZTogQlVUVE9OX0NPTVBPTkVOVF9UT0tFTixcbiAgICAgIHVzZUV4aXN0aW5nOiBCdXR0b25Db21wb25lbnQsXG4gICAgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQnV0dG9uQ29tcG9uZW50IGltcGxlbWVudHMgQnV0dG9uQ29yZSB7XG4gIEBJbnB1dCgpIGxhYmVsPzogc3RyaW5nO1xuICBASW5wdXQoKSBpY29uPzogc3RyaW5nO1xuICBASW5wdXQoKSBiYWRnZT86IHN0cmluZztcbiAgQElucHV0KCkgaWNvblBvczogSWNvblBvc2l0aW9uVHlwZSA9IEljb25Qb3NpdGlvbi5yaWdodDtcbiAgQElucHV0KCkgZGlzYWJsZWQhOiBib29sZWFuO1xuICBASW5wdXQoKSByb3VuZGVkITogYm9vbGVhbjtcbiAgQElucHV0KCkgb3V0bGluZWQhOiBib29sZWFuO1xuICBASW5wdXQoKSByYWlzZWQhOiBib29sZWFuO1xuICBASW5wdXQoKSBzZXZlcml0eT86IENvbnRyb2xTZXZlcml0eVR5cGU7XG4gIEBJbnB1dCgpIHJvdXRlckxpbmshOiBhbnlbXTtcbiAgQElucHV0KCkgc2l6ZTogRmllbGRTaXplVHlwZSB8IHVuZGVmaW5lZDtcbiAgQElucHV0KCkgcXVlcnlQYXJhbXM/OiBQYXJhbXM7XG5cbiAgZmlyZUNsaWNrKGV2ZW50OiBFdmVudCk6IHZvaWQge1xuICAgIGlmICh0aGlzLmRpc2FibGVkKSB7XG4gICAgICBldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcbiAgICAgIGV2ZW50LnN0b3BJbW1lZGlhdGVQcm9wYWdhdGlvbigpO1xuICAgIH1cbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cInYtYnV0dG9uIGQtaW5saW5lLWJsb2NrXCIgXG4oY2xpY2spPVwiZmlyZUNsaWNrKCRldmVudClcIj5cbiAgPGFcbiAgICBbcm91dGVyTGlua109XCJyb3V0ZXJMaW5rID8gcm91dGVyTGluayA6IHVuZGVmaW5lZFwiXG4gICAgW3F1ZXJ5UGFyYW1zXT1cInF1ZXJ5UGFyYW1zID8gcXVlcnlQYXJhbXMgOiB1bmRlZmluZWRcIlxuICA+XG4gICAgPHAtYnV0dG9uXG4gICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxuICAgICAgW2ljb25dPVwiaWNvblwiXG4gICAgICBbYmFkZ2VdPVwiYmFkZ2VcIlxuICAgICAgW291dGxpbmVkXT1cIm91dGxpbmVkXCJcbiAgICAgIFtyb3VuZGVkXT1cInJvdW5kZWRcIlxuICAgICAgW3JhaXNlZF09XCJyYWlzZWRcIlxuICAgICAgW2xhYmVsXT1cImxhYmVsXCJcbiAgICAgIFtzaXplXT1cIiRhbnkoc2l6ZSlcIlxuICAgICAgW3NldmVyaXR5XT1cInNldmVyaXR5XCJcbiAgICAgIFtpY29uUG9zXT1cImljb25Qb3NcIlxuICAgIC8+XG4gIDwvYT5cbjwvZGl2PlxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './button.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvbGlicy91aS1wcmltZW5nL3NyYy9saWIvY29tcG9uZW50cy9idXR0b24vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYnV0dG9uLmNvbXBvbmVudCc7XG4iXX0=
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, forwardRef, Input, Optional, Self, } from '@angular/core';
|
|
3
|
+
import { NgControl, ReactiveFormsModule, } from '@angular/forms';
|
|
4
|
+
import { BaseFormInputComponent, BaseInputControls, CALENDAR_COMPONENT_TOKEN, } from '@verisoft/ui-core';
|
|
5
|
+
import { CalendarModule } from 'primeng/calendar';
|
|
6
|
+
import { FloatLabelModule } from 'primeng/floatlabel';
|
|
7
|
+
import { Icons } from '../../icons';
|
|
8
|
+
import { ErrorComponent } from '../errors';
|
|
9
|
+
import { FormFieldComponent } from '../form-field';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
import * as i1 from "@angular/forms";
|
|
12
|
+
import * as i2 from "@angular/common";
|
|
13
|
+
import * as i3 from "primeng/calendar";
|
|
14
|
+
import * as i4 from "primeng/floatlabel";
|
|
15
|
+
export class CalendarComponent extends BaseFormInputComponent {
|
|
16
|
+
constructor(ngControl) {
|
|
17
|
+
super(ngControl);
|
|
18
|
+
this.icon = Icons.calendar;
|
|
19
|
+
this.selectionMode = 'single';
|
|
20
|
+
this.icons = Icons;
|
|
21
|
+
this.formDisplay = "block";
|
|
22
|
+
}
|
|
23
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: CalendarComponent, deps: [{ token: i1.NgControl, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
24
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: CalendarComponent, isStandalone: true, selector: "v-calendar", inputs: { maxDate: "maxDate", icon: "icon", minDate: "minDate", header: "header", footer: "footer", floatLabel: "floatLabel", selectionMode: "selectionMode" }, providers: [
|
|
25
|
+
{
|
|
26
|
+
provide: BaseInputControls,
|
|
27
|
+
useExisting: forwardRef(() => CalendarComponent),
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
provide: CALENDAR_COMPONENT_TOKEN,
|
|
31
|
+
useExisting: CalendarComponent,
|
|
32
|
+
},
|
|
33
|
+
], usesInheritance: true, ngImport: i0, template: "<div class=\"v-calendar w-100\">\n <ng-container *ngIf=\"label && !floatLabel\">\n <v-form-field\n class=\"w-100\"\n [label]=\"label\"\n [tooltip]=\"tooltip\"\n [required]=\"isRequired()\"\n [display]=\"formDisplay\"\n >\n <p-calendar\n appendTo=\"body\"\n [style]=\"{'width':'100%'}\"\n [inputStyle]=\"{'width':'100%'}\" \n [formControl]=\"formControl\"\n [showClear]=\"clearable\"\n [dataType]=\"'string'\"\n [selectionMode]=\"selectionMode\"\n [icon]=\"icon\"\n [maxDate]=\"maxDate\"\n [id]=\"inputId\"\n [showButtonBar]=\"true\"\n [placeholder]=\"placeholder\"\n [required]=\"isRequired()\"\n [minDate]=\"minDate\"\n [showIcon]=\"formControl && !formControl.value\"\n iconDisplay=\"input\"\n />\n </v-form-field>\n <v-validation-message [ngControl]=\"ngControl\"></v-validation-message>\n </ng-container>\n <ng-container *ngIf=\"floatLabel\">\n <p-floatLabel>\n <p-calendar\n appendTo=\"body\"\n [style]=\"{'width':'100%'}\"\n [inputStyle]=\"{'width':'100%'}\" \n [formControl]=\"formControl\"\n [showClear]=\"clearable\"\n [maxDate]=\"maxDate\"\n [id]=\"inputId\"\n [icon]=\"icon\"\n [selectionMode]=\"selectionMode\"\n [showButtonBar]=\"true\"\n [placeholder]=\"placeholder\"\n [required]=\"isRequired()\"\n [minDate]=\"minDate\"\n iconDisplay=\"input\"\n />\n <label [for]=\"inputId\" [innerHTML]=\"floatLabel\"></label>\n </p-floatLabel>\n </ng-container>\n</div>\n\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: CalendarModule }, { kind: "component", type: i3.Calendar, selector: "p-calendar", inputs: ["iconDisplay", "style", "styleClass", "inputStyle", "inputId", "name", "inputStyleClass", "placeholder", "ariaLabelledBy", "ariaLabel", "iconAriaLabel", "disabled", "dateFormat", "multipleSeparator", "rangeSeparator", "inline", "showOtherMonths", "selectOtherMonths", "showIcon", "icon", "appendTo", "readonlyInput", "shortYearCutoff", "monthNavigator", "yearNavigator", "hourFormat", "timeOnly", "stepYearPicker", "stepHour", "stepMinute", "stepSecond", "showSeconds", "required", "showOnFocus", "showWeek", "startWeekFromFirstDayOfYear", "showClear", "dataType", "selectionMode", "maxDateCount", "showButtonBar", "todayButtonStyleClass", "clearButtonStyleClass", "autofocus", "autoZIndex", "baseZIndex", "panelStyleClass", "panelStyle", "keepInvalid", "hideOnDateTimeSelect", "touchUI", "timeSeparator", "focusTrap", "showTransitionOptions", "hideTransitionOptions", "tabindex", "variant", "minDate", "maxDate", "disabledDates", "disabledDays", "yearRange", "showTime", "responsiveOptions", "numberOfMonths", "firstDayOfWeek", "locale", "view", "defaultDate"], outputs: ["onFocus", "onBlur", "onClose", "onSelect", "onClear", "onInput", "onTodayClick", "onClearClick", "onMonthChange", "onYearChange", "onClickOutside", "onShow"] }, { kind: "component", type: FormFieldComponent, selector: "v-form-field", inputs: ["display", "variant"] }, { kind: "ngmodule", type: FloatLabelModule }, { kind: "component", type: i4.FloatLabel, selector: "p-floatLabel" }, { kind: "component", type: ErrorComponent, selector: "v-validation-message", inputs: ["ngControl", "errorSlot", "messageSlot", "variant", "severity"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
34
|
+
}
|
|
35
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: CalendarComponent, decorators: [{
|
|
36
|
+
type: Component,
|
|
37
|
+
args: [{ selector: 'v-calendar', standalone: true, imports: [
|
|
38
|
+
CommonModule,
|
|
39
|
+
ReactiveFormsModule,
|
|
40
|
+
CalendarModule,
|
|
41
|
+
FormFieldComponent,
|
|
42
|
+
FloatLabelModule,
|
|
43
|
+
ErrorComponent,
|
|
44
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, providers: [
|
|
45
|
+
{
|
|
46
|
+
provide: BaseInputControls,
|
|
47
|
+
useExisting: forwardRef(() => CalendarComponent),
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
provide: CALENDAR_COMPONENT_TOKEN,
|
|
51
|
+
useExisting: CalendarComponent,
|
|
52
|
+
},
|
|
53
|
+
], template: "<div class=\"v-calendar w-100\">\n <ng-container *ngIf=\"label && !floatLabel\">\n <v-form-field\n class=\"w-100\"\n [label]=\"label\"\n [tooltip]=\"tooltip\"\n [required]=\"isRequired()\"\n [display]=\"formDisplay\"\n >\n <p-calendar\n appendTo=\"body\"\n [style]=\"{'width':'100%'}\"\n [inputStyle]=\"{'width':'100%'}\" \n [formControl]=\"formControl\"\n [showClear]=\"clearable\"\n [dataType]=\"'string'\"\n [selectionMode]=\"selectionMode\"\n [icon]=\"icon\"\n [maxDate]=\"maxDate\"\n [id]=\"inputId\"\n [showButtonBar]=\"true\"\n [placeholder]=\"placeholder\"\n [required]=\"isRequired()\"\n [minDate]=\"minDate\"\n [showIcon]=\"formControl && !formControl.value\"\n iconDisplay=\"input\"\n />\n </v-form-field>\n <v-validation-message [ngControl]=\"ngControl\"></v-validation-message>\n </ng-container>\n <ng-container *ngIf=\"floatLabel\">\n <p-floatLabel>\n <p-calendar\n appendTo=\"body\"\n [style]=\"{'width':'100%'}\"\n [inputStyle]=\"{'width':'100%'}\" \n [formControl]=\"formControl\"\n [showClear]=\"clearable\"\n [maxDate]=\"maxDate\"\n [id]=\"inputId\"\n [icon]=\"icon\"\n [selectionMode]=\"selectionMode\"\n [showButtonBar]=\"true\"\n [placeholder]=\"placeholder\"\n [required]=\"isRequired()\"\n [minDate]=\"minDate\"\n iconDisplay=\"input\"\n />\n <label [for]=\"inputId\" [innerHTML]=\"floatLabel\"></label>\n </p-floatLabel>\n </ng-container>\n</div>\n\n" }]
|
|
54
|
+
}], ctorParameters: () => [{ type: i1.NgControl, decorators: [{
|
|
55
|
+
type: Optional
|
|
56
|
+
}, {
|
|
57
|
+
type: Self
|
|
58
|
+
}] }], propDecorators: { maxDate: [{
|
|
59
|
+
type: Input
|
|
60
|
+
}], icon: [{
|
|
61
|
+
type: Input
|
|
62
|
+
}], minDate: [{
|
|
63
|
+
type: Input
|
|
64
|
+
}], header: [{
|
|
65
|
+
type: Input
|
|
66
|
+
}], footer: [{
|
|
67
|
+
type: Input
|
|
68
|
+
}], floatLabel: [{
|
|
69
|
+
type: Input
|
|
70
|
+
}], selectionMode: [{
|
|
71
|
+
type: Input
|
|
72
|
+
}] } });
|
|
73
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2xpYnMvdWktcHJpbWVuZy9zcmMvbGliL2NvbXBvbmVudHMvY2FsZW5kYXIvY2FsZW5kYXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2xpYnMvdWktcHJpbWVuZy9zcmMvbGliL2NvbXBvbmVudHMvY2FsZW5kYXIvY2FsZW5kYXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFVBQVUsRUFDVixLQUFLLEVBQ0wsUUFBUSxFQUNSLElBQUksR0FDTCxNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBRUwsU0FBUyxFQUNULG1CQUFtQixHQUNwQixNQUFNLGdCQUFnQixDQUFDO0FBQ3hCLE9BQU8sRUFDTCxzQkFBc0IsRUFDdEIsaUJBQWlCLEVBQ2pCLHdCQUF3QixHQUV6QixNQUFNLG1CQUFtQixDQUFDO0FBQzNCLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUNsRCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUN0RCxPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0sYUFBYSxDQUFDO0FBQ3BDLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxXQUFXLENBQUM7QUFDM0MsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sZUFBZSxDQUFDOzs7Ozs7QUEyQm5ELE1BQU0sT0FBTyxpQkFDWCxTQUFRLHNCQUFzQjtJQUc5QixZQUFnQyxTQUFvQjtRQUNsRCxLQUFLLENBQUMsU0FBUyxDQUFDLENBQUM7UUFJVixTQUFJLEdBQUcsS0FBSyxDQUFDLFFBQVEsQ0FBQztRQUt0QixrQkFBYSxHQUNwQixRQUFRLENBQUM7UUFFVCxVQUFLLEdBQUcsS0FBSyxDQUFDO1FBRVAsZ0JBQVcsR0FBcUIsT0FBTyxDQUFDO0lBYmpELENBQUM7OEdBTlUsaUJBQWlCO2tHQUFqQixpQkFBaUIseU5BWGpCO1lBQ1Q7Z0JBQ0UsT0FBTyxFQUFFLGlCQUFpQjtnQkFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxpQkFBaUIsQ0FBQzthQUNqRDtZQUNEO2dCQUNFLE9BQU8sRUFBRSx3QkFBd0I7Z0JBQ2pDLFdBQVcsRUFBRSxpQkFBaUI7YUFDL0I7U0FDRixpRENqREgsMm5EQXFEQSx5RER2QkksWUFBWSxrSUFDWixtQkFBbUIsc2hCQUNuQixjQUFjLDJ6Q0FDZCxrQkFBa0Isd0ZBQ2xCLGdCQUFnQixxR0FDaEIsY0FBYzs7MkZBZ0JMLGlCQUFpQjtrQkF6QjdCLFNBQVM7K0JBQ0UsWUFBWSxjQUNWLElBQUksV0FDUDt3QkFDUCxZQUFZO3dCQUNaLG1CQUFtQjt3QkFDbkIsY0FBYzt3QkFDZCxrQkFBa0I7d0JBQ2xCLGdCQUFnQjt3QkFDaEIsY0FBYztxQkFDZixtQkFHZ0IsdUJBQXVCLENBQUMsTUFBTSxhQUNwQzt3QkFDVDs0QkFDRSxPQUFPLEVBQUUsaUJBQWlCOzRCQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxrQkFBa0IsQ0FBQzt5QkFDakQ7d0JBQ0Q7NEJBQ0UsT0FBTyxFQUFFLHdCQUF3Qjs0QkFDakMsV0FBVyxtQkFBbUI7eUJBQy9CO3FCQUNGOzswQkFNWSxRQUFROzswQkFBSSxJQUFJO3lDQUlwQixPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxNQUFNO3NCQUFkLEtBQUs7Z0JBQ0csTUFBTTtzQkFBZCxLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBQ0csYUFBYTtzQkFBckIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBmb3J3YXJkUmVmLFxuICBJbnB1dCxcbiAgT3B0aW9uYWwsXG4gIFNlbGYsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtcbiAgQ29udHJvbFZhbHVlQWNjZXNzb3IsXG4gIE5nQ29udHJvbCxcbiAgUmVhY3RpdmVGb3Jtc01vZHVsZSxcbn0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHtcbiAgQmFzZUZvcm1JbnB1dENvbXBvbmVudCxcbiAgQmFzZUlucHV0Q29udHJvbHMsXG4gIENBTEVOREFSX0NPTVBPTkVOVF9UT0tFTixcbiAgQ2FsZW5kYXJDb3JlLFxufSBmcm9tICdAdmVyaXNvZnQvdWktY29yZSc7XG5pbXBvcnQgeyBDYWxlbmRhck1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvY2FsZW5kYXInO1xuaW1wb3J0IHsgRmxvYXRMYWJlbE1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvZmxvYXRsYWJlbCc7XG5pbXBvcnQgeyBJY29ucyB9IGZyb20gJy4uLy4uL2ljb25zJztcbmltcG9ydCB7IEVycm9yQ29tcG9uZW50IH0gZnJvbSAnLi4vZXJyb3JzJztcbmltcG9ydCB7IEZvcm1GaWVsZENvbXBvbmVudCB9IGZyb20gJy4uL2Zvcm0tZmllbGQnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICd2LWNhbGVuZGFyJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgIENhbGVuZGFyTW9kdWxlLFxuICAgIEZvcm1GaWVsZENvbXBvbmVudCxcbiAgICBGbG9hdExhYmVsTW9kdWxlLFxuICAgIEVycm9yQ29tcG9uZW50LFxuICBdLFxuICB0ZW1wbGF0ZVVybDogJy4vY2FsZW5kYXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybDogJy4vY2FsZW5kYXIuY29tcG9uZW50LnNjc3MnLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgcHJvdmlkZXJzOiBbXG4gICAge1xuICAgICAgcHJvdmlkZTogQmFzZUlucHV0Q29udHJvbHMsXG4gICAgICB1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBDYWxlbmRhckNvbXBvbmVudCksXG4gICAgfSxcbiAgICB7XG4gICAgICBwcm92aWRlOiBDQUxFTkRBUl9DT01QT05FTlRfVE9LRU4sXG4gICAgICB1c2VFeGlzdGluZzogQ2FsZW5kYXJDb21wb25lbnQsXG4gICAgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQ2FsZW5kYXJDb21wb25lbnRcbiAgZXh0ZW5kcyBCYXNlRm9ybUlucHV0Q29tcG9uZW50XG4gIGltcGxlbWVudHMgQ29udHJvbFZhbHVlQWNjZXNzb3IsIENhbGVuZGFyQ29yZVxue1xuICBjb25zdHJ1Y3RvcihAT3B0aW9uYWwoKSBAU2VsZigpIG5nQ29udHJvbDogTmdDb250cm9sKSB7XG4gICAgc3VwZXIobmdDb250cm9sKTtcbiAgfVxuXG4gIEBJbnB1dCgpIG1heERhdGUhOiBEYXRlO1xuICBASW5wdXQoKSBpY29uID0gSWNvbnMuY2FsZW5kYXI7XG4gIEBJbnB1dCgpIG1pbkRhdGUhOiBEYXRlO1xuICBASW5wdXQoKSBoZWFkZXIhOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGZvb3RlciE6IHN0cmluZztcbiAgQElucHV0KCkgZmxvYXRMYWJlbDogc3RyaW5nIHwgdW5kZWZpbmVkO1xuICBASW5wdXQoKSBzZWxlY3Rpb25Nb2RlOiAnc2luZ2xlJyB8ICdtdWx0aXBsZScgfCAncmFuZ2UnIHwgdW5kZWZpbmVkID1cbiAgICAnc2luZ2xlJztcblxuICAgIGljb25zID0gSWNvbnM7XG5cbiAgb3ZlcnJpZGUgZm9ybURpc3BsYXk6IFwiZmxleFwiIHwgXCJibG9ja1wiID0gXCJibG9ja1wiO1xufVxuIiwiPGRpdiBjbGFzcz1cInYtY2FsZW5kYXIgdy0xMDBcIj5cbiAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImxhYmVsICYmICFmbG9hdExhYmVsXCI+XG4gICAgPHYtZm9ybS1maWVsZFxuICAgICAgY2xhc3M9XCJ3LTEwMFwiXG4gICAgICBbbGFiZWxdPVwibGFiZWxcIlxuICAgICAgW3Rvb2x0aXBdPVwidG9vbHRpcFwiXG4gICAgICBbcmVxdWlyZWRdPVwiaXNSZXF1aXJlZCgpXCJcbiAgICAgIFtkaXNwbGF5XT1cImZvcm1EaXNwbGF5XCJcbiAgICA+XG4gICAgICA8cC1jYWxlbmRhclxuICAgICAgICBhcHBlbmRUbz1cImJvZHlcIlxuICAgICAgICBbc3R5bGVdPVwieyd3aWR0aCc6JzEwMCUnfVwiXG4gICAgICAgIFtpbnB1dFN0eWxlXT1cInsnd2lkdGgnOicxMDAlJ31cIiBcbiAgICAgICAgW2Zvcm1Db250cm9sXT1cImZvcm1Db250cm9sXCJcbiAgICAgICAgW3Nob3dDbGVhcl09XCJjbGVhcmFibGVcIlxuICAgICAgICBbZGF0YVR5cGVdPVwiJ3N0cmluZydcIlxuICAgICAgICBbc2VsZWN0aW9uTW9kZV09XCJzZWxlY3Rpb25Nb2RlXCJcbiAgICAgICAgW2ljb25dPVwiaWNvblwiXG4gICAgICAgIFttYXhEYXRlXT1cIm1heERhdGVcIlxuICAgICAgICBbaWRdPVwiaW5wdXRJZFwiXG4gICAgICAgIFtzaG93QnV0dG9uQmFyXT1cInRydWVcIlxuICAgICAgICBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIlxuICAgICAgICBbcmVxdWlyZWRdPVwiaXNSZXF1aXJlZCgpXCJcbiAgICAgICAgW21pbkRhdGVdPVwibWluRGF0ZVwiXG4gICAgICAgIFtzaG93SWNvbl09XCJmb3JtQ29udHJvbCAmJiAhZm9ybUNvbnRyb2wudmFsdWVcIlxuICAgICAgICBpY29uRGlzcGxheT1cImlucHV0XCJcbiAgICAgIC8+XG4gICAgPC92LWZvcm0tZmllbGQ+XG4gICAgPHYtdmFsaWRhdGlvbi1tZXNzYWdlIFtuZ0NvbnRyb2xdPVwibmdDb250cm9sXCI+PC92LXZhbGlkYXRpb24tbWVzc2FnZT5cbiAgPC9uZy1jb250YWluZXI+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJmbG9hdExhYmVsXCI+XG4gICAgPHAtZmxvYXRMYWJlbD5cbiAgICAgIDxwLWNhbGVuZGFyXG4gICAgICAgIGFwcGVuZFRvPVwiYm9keVwiXG4gICAgICAgIFtzdHlsZV09XCJ7J3dpZHRoJzonMTAwJSd9XCJcbiAgICAgICAgW2lucHV0U3R5bGVdPVwieyd3aWR0aCc6JzEwMCUnfVwiIFxuICAgICAgICBbZm9ybUNvbnRyb2xdPVwiZm9ybUNvbnRyb2xcIlxuICAgICAgICBbc2hvd0NsZWFyXT1cImNsZWFyYWJsZVwiXG4gICAgICAgIFttYXhEYXRlXT1cIm1heERhdGVcIlxuICAgICAgICBbaWRdPVwiaW5wdXRJZFwiXG4gICAgICAgIFtpY29uXT1cImljb25cIlxuICAgICAgICBbc2VsZWN0aW9uTW9kZV09XCJzZWxlY3Rpb25Nb2RlXCJcbiAgICAgICAgW3Nob3dCdXR0b25CYXJdPVwidHJ1ZVwiXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCJwbGFjZWhvbGRlclwiXG4gICAgICAgIFtyZXF1aXJlZF09XCJpc1JlcXVpcmVkKClcIlxuICAgICAgICBbbWluRGF0ZV09XCJtaW5EYXRlXCJcbiAgICAgICAgaWNvbkRpc3BsYXk9XCJpbnB1dFwiXG4gICAgICAvPlxuICAgICAgPGxhYmVsIFtmb3JdPVwiaW5wdXRJZFwiIFtpbm5lckhUTUxdPVwiZmxvYXRMYWJlbFwiPjwvbGFiZWw+XG4gICAgPC9wLWZsb2F0TGFiZWw+XG4gIDwvbmctY29udGFpbmVyPlxuPC9kaXY+XG5cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './calendar.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvbGlicy91aS1wcmltZW5nL3NyYy9saWIvY29tcG9uZW50cy9jYWxlbmRhci9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHNCQUFzQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jYWxlbmRhci5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, Optional, Self, } from '@angular/core';
|
|
3
|
+
import { NgControl, ReactiveFormsModule, } from '@angular/forms';
|
|
4
|
+
import { BaseFormInputComponent, BaseInputControls, CHECKBOX_COMPONENT_TOKEN } from '@verisoft/ui-core';
|
|
5
|
+
import { CheckboxModule } from 'primeng/checkbox';
|
|
6
|
+
import { Icons } from '../../icons';
|
|
7
|
+
import { ErrorComponent } from '../errors';
|
|
8
|
+
import { FormFieldComponent } from '../form-field';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
import * as i1 from "@angular/forms";
|
|
11
|
+
import * as i2 from "@angular/common";
|
|
12
|
+
import * as i3 from "primeng/checkbox";
|
|
13
|
+
export class CheckboxComponent extends BaseFormInputComponent {
|
|
14
|
+
constructor(ngControl) {
|
|
15
|
+
super(ngControl);
|
|
16
|
+
this.icon = Icons;
|
|
17
|
+
}
|
|
18
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: CheckboxComponent, deps: [{ token: i1.NgControl, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
19
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: CheckboxComponent, isStandalone: true, selector: "v-checkbox", providers: [
|
|
20
|
+
{
|
|
21
|
+
provide: BaseInputControls,
|
|
22
|
+
useExisting: CheckboxComponent,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
provide: CHECKBOX_COMPONENT_TOKEN,
|
|
26
|
+
useExisting: CheckboxComponent,
|
|
27
|
+
},
|
|
28
|
+
], usesInheritance: true, ngImport: i0, template: "<div class=\"v-checkbox d-flex align-items-center mt-2\">\n <v-form-field\n class=\"w-100\"\n [label]=\"label\"\n [tooltip]=\"tooltip\"\n [required]=\"isRequired()\"\n [testId]=\"testId\"\n [display]=\"formDisplay\"\n >\n <p-checkbox\n [ngClass]=\"{ 'checkbox-error': ngControl?.invalid && ngControl?.dirty && ngControl?.value === false }\"\n [formControl]=\"formControl\"\n [required]=\"required\"\n [binary]=\"true\"\n [readonly]=\"readonly\"\n />\n <v-validation-message [ngControl]=\"ngControl\"></v-validation-message>\n </v-form-field>\n</div>\n", styles: ["p-echeckbox.ng-dirty.ng-invalid .p-checkbox>.p-checkbox-box{border-color:var(--error-color)}p-echeckbox.ng-dirty.ng-invalid .p-checkbox-label{color:var(--error-color)}.checkbox-error .p-checkbox-box.p-highlight{background:var(--error-color)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: CheckboxModule }, { kind: "component", type: i3.Checkbox, selector: "p-checkbox", inputs: ["value", "name", "disabled", "binary", "label", "ariaLabelledBy", "ariaLabel", "tabindex", "inputId", "style", "styleClass", "labelStyleClass", "formControl", "checkboxIcon", "readonly", "required", "autofocus", "trueValue", "falseValue", "variant"], outputs: ["onChange", "onFocus", "onBlur"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: FormFieldComponent, selector: "v-form-field", inputs: ["display", "variant"] }, { kind: "component", type: ErrorComponent, selector: "v-validation-message", inputs: ["ngControl", "errorSlot", "messageSlot", "variant", "severity"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
29
|
+
}
|
|
30
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: CheckboxComponent, decorators: [{
|
|
31
|
+
type: Component,
|
|
32
|
+
args: [{ selector: 'v-checkbox', standalone: true, imports: [CommonModule, CheckboxModule, ReactiveFormsModule, FormFieldComponent, ErrorComponent], changeDetection: ChangeDetectionStrategy.OnPush, providers: [
|
|
33
|
+
{
|
|
34
|
+
provide: BaseInputControls,
|
|
35
|
+
useExisting: CheckboxComponent,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
provide: CHECKBOX_COMPONENT_TOKEN,
|
|
39
|
+
useExisting: CheckboxComponent,
|
|
40
|
+
},
|
|
41
|
+
], template: "<div class=\"v-checkbox d-flex align-items-center mt-2\">\n <v-form-field\n class=\"w-100\"\n [label]=\"label\"\n [tooltip]=\"tooltip\"\n [required]=\"isRequired()\"\n [testId]=\"testId\"\n [display]=\"formDisplay\"\n >\n <p-checkbox\n [ngClass]=\"{ 'checkbox-error': ngControl?.invalid && ngControl?.dirty && ngControl?.value === false }\"\n [formControl]=\"formControl\"\n [required]=\"required\"\n [binary]=\"true\"\n [readonly]=\"readonly\"\n />\n <v-validation-message [ngControl]=\"ngControl\"></v-validation-message>\n </v-form-field>\n</div>\n", styles: ["p-echeckbox.ng-dirty.ng-invalid .p-checkbox>.p-checkbox-box{border-color:var(--error-color)}p-echeckbox.ng-dirty.ng-invalid .p-checkbox-label{color:var(--error-color)}.checkbox-error .p-checkbox-box.p-highlight{background:var(--error-color)}\n"] }]
|
|
42
|
+
}], ctorParameters: () => [{ type: i1.NgControl, decorators: [{
|
|
43
|
+
type: Optional
|
|
44
|
+
}, {
|
|
45
|
+
type: Self
|
|
46
|
+
}] }] });
|
|
47
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3guY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2xpYnMvdWktcHJpbWVuZy9zcmMvbGliL2NvbXBvbmVudHMvY2hlY2tib3gvY2hlY2tib3guY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2xpYnMvdWktcHJpbWVuZy9zcmMvbGliL2NvbXBvbmVudHMvY2hlY2tib3gvY2hlY2tib3guY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFFBQVEsRUFDUixJQUFJLEdBQ0wsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUVMLFNBQVMsRUFDVCxtQkFBbUIsR0FDcEIsTUFBTSxnQkFBZ0IsQ0FBQztBQUN4QixPQUFPLEVBQUUsc0JBQXNCLEVBQUUsaUJBQWlCLEVBQUUsd0JBQXdCLEVBQWdCLE1BQU0sbUJBQW1CLENBQUM7QUFDdEgsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ2xELE9BQU8sRUFBRSxLQUFLLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFDcEMsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLFdBQVcsQ0FBQztBQUMzQyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7O0FBbUJuRCxNQUFNLE9BQU8saUJBQ1gsU0FBUSxzQkFBc0I7SUFLOUIsWUFBZ0MsU0FBb0I7UUFDbEQsS0FBSyxDQUFDLFNBQVMsQ0FBQyxDQUFDO1FBRm5CLFNBQUksR0FBRyxLQUFLLENBQUE7SUFHWixDQUFDOzhHQVJVLGlCQUFpQjtrR0FBakIsaUJBQWlCLHlEQVhqQjtZQUNUO2dCQUNFLE9BQU8sRUFBRSxpQkFBaUI7Z0JBQzFCLFdBQVcsRUFBRSxpQkFBaUI7YUFDL0I7WUFDRDtnQkFDRSxPQUFPLEVBQUUsd0JBQXdCO2dCQUNqQyxXQUFXLEVBQUUsaUJBQWlCO2FBQy9CO1NBQ0YsaURDakNILGdtQkFtQkEsNFNEQ1ksWUFBWSw0SEFBRSxjQUFjLGdaQUFFLG1CQUFtQix1aEJBQUUsa0JBQWtCLHlGQUFFLGNBQWM7OzJGQWVwRixpQkFBaUI7a0JBbEI3QixTQUFTOytCQUNFLFlBQVksY0FDVixJQUFJLFdBQ1AsQ0FBQyxZQUFZLEVBQUUsY0FBYyxFQUFFLG1CQUFtQixFQUFFLGtCQUFrQixFQUFFLGNBQWMsQ0FBQyxtQkFHL0UsdUJBQXVCLENBQUMsTUFBTSxhQUNwQzt3QkFDVDs0QkFDRSxPQUFPLEVBQUUsaUJBQWlCOzRCQUMxQixXQUFXLG1CQUFtQjt5QkFDL0I7d0JBQ0Q7NEJBQ0UsT0FBTyxFQUFFLHdCQUF3Qjs0QkFDakMsV0FBVyxtQkFBbUI7eUJBQy9CO3FCQUNGOzswQkFRWSxRQUFROzswQkFBSSxJQUFJIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIE9wdGlvbmFsLFxuICBTZWxmLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7XG4gIENvbnRyb2xWYWx1ZUFjY2Vzc29yLFxuICBOZ0NvbnRyb2wsXG4gIFJlYWN0aXZlRm9ybXNNb2R1bGUsXG59IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IEJhc2VGb3JtSW5wdXRDb21wb25lbnQsIEJhc2VJbnB1dENvbnRyb2xzLCBDSEVDS0JPWF9DT01QT05FTlRfVE9LRU4sIENoZWNrYm94Q29yZSB9IGZyb20gJ0B2ZXJpc29mdC91aS1jb3JlJztcbmltcG9ydCB7IENoZWNrYm94TW9kdWxlIH0gZnJvbSAncHJpbWVuZy9jaGVja2JveCc7XG5pbXBvcnQgeyBJY29ucyB9IGZyb20gJy4uLy4uL2ljb25zJztcbmltcG9ydCB7IEVycm9yQ29tcG9uZW50IH0gZnJvbSAnLi4vZXJyb3JzJztcbmltcG9ydCB7IEZvcm1GaWVsZENvbXBvbmVudCB9IGZyb20gJy4uL2Zvcm0tZmllbGQnO1xuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAndi1jaGVja2JveCcsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIENoZWNrYm94TW9kdWxlLCBSZWFjdGl2ZUZvcm1zTW9kdWxlLCBGb3JtRmllbGRDb21wb25lbnQsIEVycm9yQ29tcG9uZW50XSxcbiAgdGVtcGxhdGVVcmw6ICcuL2NoZWNrYm94LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmw6ICcuL2NoZWNrYm94LmNvbXBvbmVudC5zY3NzJyxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHByb3ZpZGVyczogW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IEJhc2VJbnB1dENvbnRyb2xzLFxuICAgICAgdXNlRXhpc3Rpbmc6IENoZWNrYm94Q29tcG9uZW50LFxuICAgIH0sXG4gICAge1xuICAgICAgcHJvdmlkZTogQ0hFQ0tCT1hfQ09NUE9ORU5UX1RPS0VOLFxuICAgICAgdXNlRXhpc3Rpbmc6IENoZWNrYm94Q29tcG9uZW50LFxuICAgIH0sXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIENoZWNrYm94Q29tcG9uZW50XG4gIGV4dGVuZHMgQmFzZUZvcm1JbnB1dENvbXBvbmVudFxuICBpbXBsZW1lbnRzIENvbnRyb2xWYWx1ZUFjY2Vzc29yLCBDaGVja2JveENvcmVcbntcblxuICBpY29uID0gSWNvbnNcbiAgY29uc3RydWN0b3IoQE9wdGlvbmFsKCkgQFNlbGYoKSBuZ0NvbnRyb2w6IE5nQ29udHJvbCkge1xuICAgIHN1cGVyKG5nQ29udHJvbCk7XG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJ2LWNoZWNrYm94IGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIgbXQtMlwiPlxuICA8di1mb3JtLWZpZWxkXG4gICAgY2xhc3M9XCJ3LTEwMFwiXG4gICAgW2xhYmVsXT1cImxhYmVsXCJcbiAgICBbdG9vbHRpcF09XCJ0b29sdGlwXCJcbiAgICBbcmVxdWlyZWRdPVwiaXNSZXF1aXJlZCgpXCJcbiAgICBbdGVzdElkXT1cInRlc3RJZFwiXG4gICAgW2Rpc3BsYXldPVwiZm9ybURpc3BsYXlcIlxuICA+XG4gICAgPHAtY2hlY2tib3hcbiAgICAgIFtuZ0NsYXNzXT1cInsgJ2NoZWNrYm94LWVycm9yJzogbmdDb250cm9sPy5pbnZhbGlkICYmIG5nQ29udHJvbD8uZGlydHkgJiYgbmdDb250cm9sPy52YWx1ZSA9PT0gZmFsc2UgfVwiXG4gICAgICBbZm9ybUNvbnRyb2xdPVwiZm9ybUNvbnRyb2xcIlxuICAgICAgW3JlcXVpcmVkXT1cInJlcXVpcmVkXCJcbiAgICAgIFtiaW5hcnldPVwidHJ1ZVwiXG4gICAgICBbcmVhZG9ubHldPVwicmVhZG9ubHlcIlxuICAgIC8+XG4gICAgPHYtdmFsaWRhdGlvbi1tZXNzYWdlIFtuZ0NvbnRyb2xdPVwibmdDb250cm9sXCI+PC92LXZhbGlkYXRpb24tbWVzc2FnZT5cbiAgPC92LWZvcm0tZmllbGQ+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './checkbox.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvbGlicy91aS1wcmltZW5nL3NyYy9saWIvY29tcG9uZW50cy9jaGVja2JveC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHNCQUFzQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jaGVja2JveC5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { ChangeDetectorRef, Component } from '@angular/core';
|
|
3
|
+
import { CONFIRM_DIALOG_COMPONENT_TOKEN, DialogService, UnsubscribeComponent, } from '@verisoft/ui-core';
|
|
4
|
+
import { AvatarModule } from 'primeng/avatar';
|
|
5
|
+
import { DialogModule } from 'primeng/dialog';
|
|
6
|
+
import { takeUntil } from 'rxjs';
|
|
7
|
+
import { ButtonComponent } from '../button';
|
|
8
|
+
import { DynamicComponent } from '../shared-components';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
import * as i1 from "@verisoft/ui-core";
|
|
11
|
+
import * as i2 from "@angular/common";
|
|
12
|
+
import * as i3 from "primeng/dialog";
|
|
13
|
+
import * as i4 from "primeng/api";
|
|
14
|
+
export class ConfirmDialogComponent extends UnsubscribeComponent {
|
|
15
|
+
constructor(dialogService, cdr) {
|
|
16
|
+
super();
|
|
17
|
+
this.dialogService = dialogService;
|
|
18
|
+
this.cdr = cdr;
|
|
19
|
+
this.visible = false;
|
|
20
|
+
this.closable = false;
|
|
21
|
+
}
|
|
22
|
+
ngOnInit() {
|
|
23
|
+
this.dialogService.showEvent
|
|
24
|
+
.pipe(takeUntil(this.destroyed$))
|
|
25
|
+
.subscribe((x) => {
|
|
26
|
+
this.data = x;
|
|
27
|
+
this.visible = true;
|
|
28
|
+
this.cdr.detectChanges();
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
dialogClick(confirm) {
|
|
32
|
+
const { confirmButtonFn, cancelButtonFn } = this.data;
|
|
33
|
+
if (confirm && confirmButtonFn) {
|
|
34
|
+
confirmButtonFn();
|
|
35
|
+
}
|
|
36
|
+
if (!confirm && cancelButtonFn) {
|
|
37
|
+
cancelButtonFn();
|
|
38
|
+
}
|
|
39
|
+
this.visible = false;
|
|
40
|
+
this.cdr.detectChanges();
|
|
41
|
+
}
|
|
42
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ConfirmDialogComponent, deps: [{ token: i1.DialogService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
43
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.8", type: ConfirmDialogComponent, isStandalone: true, selector: "v-confirm-dialog", providers: [
|
|
44
|
+
{
|
|
45
|
+
provide: CONFIRM_DIALOG_COMPONENT_TOKEN,
|
|
46
|
+
useExisting: ConfirmDialogComponent,
|
|
47
|
+
},
|
|
48
|
+
], usesInheritance: true, ngImport: i0, template: "<div class=\"v-dialog d-flex justify-content-center\" *ngIf=\"data\">\n <p-dialog\n [(visible)]=\"visible\"\n [modal]=\"true\"\n [closable]=\"closable\"\n [style]=\"{ width: '25rem' }\"\n >\n <ng-template pTemplate=\"header\">\n <div\n class=\"v-dialog-header w-100 align-items-center d-flex justify-content-center\"\n >\n <h1 class=\"text-center me-3\">{{ data.title }}</h1>\n <i class=\"{{ data.headerIcon }} text-{{ data.severity }}\"></i>\n </div>\n </ng-template>\n <div class=\"v-dialog-content w-100 align-items-center text-center\">\n @if (data.innerHTML) {\n <div [innerHTML]=\"data.innerHTML\"></div>\n } @else if (data.componentType) {\n <v-dynamic-component\n [componentType]=\"data.componentType\"\n [data]=\"$any(data.data)\"\n ></v-dynamic-component>\n }\n </div>\n <ng-template pTemplate=\"footer\">\n <div\n class=\"v-dialog-footer d-flex justify-content-center w-100 gap-3\"\n [ngClass]=\"{\n 'flex-row-reverse': data.buttonOrder === 'cancel-confirm'\n }\"\n >\n <v-button\n [label]=\"data.confirmButtonText ?? 'Yes'\"\n [severity]=\"data.severity\"\n (click)=\"data.confirmButtonFn ? dialogClick(true) : (visible = false)\"\n />\n <v-button\n *ngIf=\"data.showCancelButton && data.severity !== 'success'\"\n [label]=\"data.cancelButtonText ?? 'No'\"\n [outlined]=\"true\"\n [severity]=\"'secondary'\"\n (click)=\"data.cancelButtonFn ? dialogClick(false) : (visible = false)\"\n />\n </div>\n </ng-template>\n </p-dialog>\n</div>\n", styles: [".v-dialog-content *{line-height:1.5rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: DialogModule }, { kind: "component", type: i3.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "maskStyle", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "visible", "style", "position"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }, { kind: "directive", type: i4.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: ButtonComponent, selector: "v-button", inputs: ["label", "icon", "badge", "iconPos", "disabled", "rounded", "outlined", "raised", "severity", "routerLink", "size", "queryParams"] }, { kind: "ngmodule", type: AvatarModule }, { kind: "component", type: DynamicComponent, selector: "v-dynamic-component", inputs: ["componentType", "data"] }] }); }
|
|
49
|
+
}
|
|
50
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ConfirmDialogComponent, decorators: [{
|
|
51
|
+
type: Component,
|
|
52
|
+
args: [{ selector: 'v-confirm-dialog', standalone: true, imports: [
|
|
53
|
+
CommonModule,
|
|
54
|
+
DialogModule,
|
|
55
|
+
ButtonComponent,
|
|
56
|
+
AvatarModule,
|
|
57
|
+
DynamicComponent,
|
|
58
|
+
], providers: [
|
|
59
|
+
{
|
|
60
|
+
provide: CONFIRM_DIALOG_COMPONENT_TOKEN,
|
|
61
|
+
useExisting: ConfirmDialogComponent,
|
|
62
|
+
},
|
|
63
|
+
], template: "<div class=\"v-dialog d-flex justify-content-center\" *ngIf=\"data\">\n <p-dialog\n [(visible)]=\"visible\"\n [modal]=\"true\"\n [closable]=\"closable\"\n [style]=\"{ width: '25rem' }\"\n >\n <ng-template pTemplate=\"header\">\n <div\n class=\"v-dialog-header w-100 align-items-center d-flex justify-content-center\"\n >\n <h1 class=\"text-center me-3\">{{ data.title }}</h1>\n <i class=\"{{ data.headerIcon }} text-{{ data.severity }}\"></i>\n </div>\n </ng-template>\n <div class=\"v-dialog-content w-100 align-items-center text-center\">\n @if (data.innerHTML) {\n <div [innerHTML]=\"data.innerHTML\"></div>\n } @else if (data.componentType) {\n <v-dynamic-component\n [componentType]=\"data.componentType\"\n [data]=\"$any(data.data)\"\n ></v-dynamic-component>\n }\n </div>\n <ng-template pTemplate=\"footer\">\n <div\n class=\"v-dialog-footer d-flex justify-content-center w-100 gap-3\"\n [ngClass]=\"{\n 'flex-row-reverse': data.buttonOrder === 'cancel-confirm'\n }\"\n >\n <v-button\n [label]=\"data.confirmButtonText ?? 'Yes'\"\n [severity]=\"data.severity\"\n (click)=\"data.confirmButtonFn ? dialogClick(true) : (visible = false)\"\n />\n <v-button\n *ngIf=\"data.showCancelButton && data.severity !== 'success'\"\n [label]=\"data.cancelButtonText ?? 'No'\"\n [outlined]=\"true\"\n [severity]=\"'secondary'\"\n (click)=\"data.cancelButtonFn ? dialogClick(false) : (visible = false)\"\n />\n </div>\n </ng-template>\n </p-dialog>\n</div>\n", styles: [".v-dialog-content *{line-height:1.5rem}\n"] }]
|
|
64
|
+
}], ctorParameters: () => [{ type: i1.DialogService }, { type: i0.ChangeDetectorRef }] });
|
|
65
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uZmlybS1kaWFsb2cuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2xpYnMvdWktcHJpbWVuZy9zcmMvbGliL2NvbXBvbmVudHMvY29uZmlybS1kaWFsb2cvY29uZmlybS1kaWFsb2cuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2xpYnMvdWktcHJpbWVuZy9zcmMvbGliL2NvbXBvbmVudHMvY29uZmlybS1kaWFsb2cvY29uZmlybS1kaWFsb2cuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxTQUFTLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFDckUsT0FBTyxFQUNMLDhCQUE4QixFQUc5QixhQUFhLEVBQ2Isb0JBQW9CLEdBQ3JCLE1BQU0sbUJBQW1CLENBQUM7QUFDM0IsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQzlDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUM5QyxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ2pDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxXQUFXLENBQUM7QUFDNUMsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sc0JBQXNCLENBQUM7Ozs7OztBQXFCeEQsTUFBTSxPQUFPLHNCQUNYLFNBQVEsb0JBQW9CO0lBRzVCLFlBQ21CLGFBQTRCLEVBQzVCLEdBQXNCO1FBRXZDLEtBQUssRUFBRSxDQUFDO1FBSFMsa0JBQWEsR0FBYixhQUFhLENBQWU7UUFDNUIsUUFBRyxHQUFILEdBQUcsQ0FBbUI7UUFLekMsWUFBTyxHQUFHLEtBQUssQ0FBQztRQUNOLGFBQVEsR0FBRyxLQUFLLENBQUM7SUFIM0IsQ0FBQztJQU1ELFFBQVE7UUFDTixJQUFJLENBQUMsYUFBYSxDQUFDLFNBQVM7YUFDekIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUM7YUFDaEMsU0FBUyxDQUFDLENBQUMsQ0FBYSxFQUFFLEVBQUU7WUFDM0IsSUFBSSxDQUFDLElBQUksR0FBRyxDQUFDLENBQUM7WUFDZCxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQztZQUNwQixJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsRUFBRSxDQUFDO1FBQzNCLENBQUMsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQUVTLFdBQVcsQ0FBQyxPQUFnQjtRQUNwQyxNQUFNLEVBQUUsZUFBZSxFQUFFLGNBQWMsRUFBRSxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUM7UUFFdEQsSUFBSSxPQUFPLElBQUksZUFBZSxFQUFFLENBQUM7WUFDL0IsZUFBZSxFQUFFLENBQUM7UUFDcEIsQ0FBQztRQUVELElBQUksQ0FBQyxPQUFPLElBQUksY0FBYyxFQUFFLENBQUM7WUFDL0IsY0FBYyxFQUFFLENBQUM7UUFDbkIsQ0FBQztRQUVELElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDO1FBQ3JCLElBQUksQ0FBQyxHQUFHLENBQUMsYUFBYSxFQUFFLENBQUM7SUFDM0IsQ0FBQzs4R0F0Q1Usc0JBQXNCO2tHQUF0QixzQkFBc0IsK0RBUHRCO1lBQ1Q7Z0JBQ0UsT0FBTyxFQUFFLDhCQUE4QjtnQkFDdkMsV0FBVyxFQUFFLHNCQUFzQjthQUNwQztTQUNGLGlEQ2hDSCw2cURBZ0RBLGtHRDdCSSxZQUFZLGdPQUNaLFlBQVksKzBCQUNaLGVBQWUsaU1BQ2YsWUFBWSwrQkFDWixnQkFBZ0I7OzJGQVdQLHNCQUFzQjtrQkFuQmxDLFNBQVM7K0JBQ0Usa0JBQWtCLGNBQ2hCLElBQUksV0FDUDt3QkFDUCxZQUFZO3dCQUNaLFlBQVk7d0JBQ1osZUFBZTt3QkFDZixZQUFZO3dCQUNaLGdCQUFnQjtxQkFDakIsYUFHVTt3QkFDVDs0QkFDRSxPQUFPLEVBQUUsOEJBQThCOzRCQUN2QyxXQUFXLHdCQUF3Qjt5QkFDcEM7cUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0b3JSZWYsIENvbXBvbmVudCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1xuICBDT05GSVJNX0RJQUxPR19DT01QT05FTlRfVE9LRU4sXG4gIENvbmZpcm1EaWFsb2dDb3JlLFxuICBEaWFsb2dEYXRhLFxuICBEaWFsb2dTZXJ2aWNlLFxuICBVbnN1YnNjcmliZUNvbXBvbmVudCxcbn0gZnJvbSAnQHZlcmlzb2Z0L3VpLWNvcmUnO1xuaW1wb3J0IHsgQXZhdGFyTW9kdWxlIH0gZnJvbSAncHJpbWVuZy9hdmF0YXInO1xuaW1wb3J0IHsgRGlhbG9nTW9kdWxlIH0gZnJvbSAncHJpbWVuZy9kaWFsb2cnO1xuaW1wb3J0IHsgdGFrZVVudGlsIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBCdXR0b25Db21wb25lbnQgfSBmcm9tICcuLi9idXR0b24nO1xuaW1wb3J0IHsgRHluYW1pY0NvbXBvbmVudCB9IGZyb20gJy4uL3NoYXJlZC1jb21wb25lbnRzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAndi1jb25maXJtLWRpYWxvZycsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgRGlhbG9nTW9kdWxlLFxuICAgIEJ1dHRvbkNvbXBvbmVudCxcbiAgICBBdmF0YXJNb2R1bGUsXG4gICAgRHluYW1pY0NvbXBvbmVudCxcbiAgXSxcbiAgdGVtcGxhdGVVcmw6ICcuL2NvbmZpcm0tZGlhbG9nLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmw6ICcuL2NvbmZpcm0tZGlhbG9nLmNvbXBvbmVudC5zY3NzJyxcbiAgcHJvdmlkZXJzOiBbXG4gICAge1xuICAgICAgcHJvdmlkZTogQ09ORklSTV9ESUFMT0dfQ09NUE9ORU5UX1RPS0VOLFxuICAgICAgdXNlRXhpc3Rpbmc6IENvbmZpcm1EaWFsb2dDb21wb25lbnQsXG4gICAgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQ29uZmlybURpYWxvZ0NvbXBvbmVudFxuICBleHRlbmRzIFVuc3Vic2NyaWJlQ29tcG9uZW50XG4gIGltcGxlbWVudHMgT25Jbml0LCBDb25maXJtRGlhbG9nQ29yZVxue1xuICBjb25zdHJ1Y3RvcihcbiAgICBwcml2YXRlIHJlYWRvbmx5IGRpYWxvZ1NlcnZpY2U6IERpYWxvZ1NlcnZpY2UsXG4gICAgcHJpdmF0ZSByZWFkb25seSBjZHI6IENoYW5nZURldGVjdG9yUmVmXG4gICkge1xuICAgIHN1cGVyKCk7XG4gIH1cblxuICB2aXNpYmxlID0gZmFsc2U7XG4gIHByb3RlY3RlZCBjbG9zYWJsZSA9IGZhbHNlO1xuICBkYXRhITogRGlhbG9nRGF0YTtcblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmRpYWxvZ1NlcnZpY2Uuc2hvd0V2ZW50XG4gICAgICAucGlwZSh0YWtlVW50aWwodGhpcy5kZXN0cm95ZWQkKSlcbiAgICAgIC5zdWJzY3JpYmUoKHg6IERpYWxvZ0RhdGEpID0+IHtcbiAgICAgICAgdGhpcy5kYXRhID0geDtcbiAgICAgICAgdGhpcy52aXNpYmxlID0gdHJ1ZTtcbiAgICAgICAgdGhpcy5jZHIuZGV0ZWN0Q2hhbmdlcygpO1xuICAgICAgfSk7XG4gIH1cblxuICBwcm90ZWN0ZWQgZGlhbG9nQ2xpY2soY29uZmlybTogYm9vbGVhbikge1xuICAgIGNvbnN0IHsgY29uZmlybUJ1dHRvbkZuLCBjYW5jZWxCdXR0b25GbiB9ID0gdGhpcy5kYXRhO1xuXG4gICAgaWYgKGNvbmZpcm0gJiYgY29uZmlybUJ1dHRvbkZuKSB7XG4gICAgICBjb25maXJtQnV0dG9uRm4oKTtcbiAgICB9XG5cbiAgICBpZiAoIWNvbmZpcm0gJiYgY2FuY2VsQnV0dG9uRm4pIHtcbiAgICAgIGNhbmNlbEJ1dHRvbkZuKCk7XG4gICAgfVxuXG4gICAgdGhpcy52aXNpYmxlID0gZmFsc2U7XG4gICAgdGhpcy5jZHIuZGV0ZWN0Q2hhbmdlcygpO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwidi1kaWFsb2cgZC1mbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXJcIiAqbmdJZj1cImRhdGFcIj5cbiAgPHAtZGlhbG9nXG4gICAgWyh2aXNpYmxlKV09XCJ2aXNpYmxlXCJcbiAgICBbbW9kYWxdPVwidHJ1ZVwiXG4gICAgW2Nsb3NhYmxlXT1cImNsb3NhYmxlXCJcbiAgICBbc3R5bGVdPVwieyB3aWR0aDogJzI1cmVtJyB9XCJcbiAgPlxuICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJoZWFkZXJcIj5cbiAgICAgIDxkaXZcbiAgICAgICAgY2xhc3M9XCJ2LWRpYWxvZy1oZWFkZXIgdy0xMDAgYWxpZ24taXRlbXMtY2VudGVyIGQtZmxleCBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyXCJcbiAgICAgID5cbiAgICAgICAgPGgxIGNsYXNzPVwidGV4dC1jZW50ZXIgbWUtM1wiPnt7IGRhdGEudGl0bGUgfX08L2gxPlxuICAgICAgICA8aSBjbGFzcz1cInt7IGRhdGEuaGVhZGVySWNvbiB9fSB0ZXh0LXt7IGRhdGEuc2V2ZXJpdHkgfX1cIj48L2k+XG4gICAgICA8L2Rpdj5cbiAgICA8L25nLXRlbXBsYXRlPlxuICAgIDxkaXYgY2xhc3M9XCJ2LWRpYWxvZy1jb250ZW50IHctMTAwIGFsaWduLWl0ZW1zLWNlbnRlciB0ZXh0LWNlbnRlclwiPlxuICAgICAgQGlmIChkYXRhLmlubmVySFRNTCkge1xuICAgICAgPGRpdiBbaW5uZXJIVE1MXT1cImRhdGEuaW5uZXJIVE1MXCI+PC9kaXY+XG4gICAgICB9IEBlbHNlIGlmIChkYXRhLmNvbXBvbmVudFR5cGUpIHtcbiAgICAgIDx2LWR5bmFtaWMtY29tcG9uZW50XG4gICAgICAgIFtjb21wb25lbnRUeXBlXT1cImRhdGEuY29tcG9uZW50VHlwZVwiXG4gICAgICAgIFtkYXRhXT1cIiRhbnkoZGF0YS5kYXRhKVwiXG4gICAgICA+PC92LWR5bmFtaWMtY29tcG9uZW50PlxuICAgICAgfVxuICAgIDwvZGl2PlxuICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJmb290ZXJcIj5cbiAgICAgIDxkaXZcbiAgICAgICAgY2xhc3M9XCJ2LWRpYWxvZy1mb290ZXIgZC1mbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXIgdy0xMDAgZ2FwLTNcIlxuICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgJ2ZsZXgtcm93LXJldmVyc2UnOiBkYXRhLmJ1dHRvbk9yZGVyID09PSAnY2FuY2VsLWNvbmZpcm0nXG4gICAgICAgIH1cIlxuICAgICAgPlxuICAgICAgICA8di1idXR0b25cbiAgICAgICAgICBbbGFiZWxdPVwiZGF0YS5jb25maXJtQnV0dG9uVGV4dCA/PyAnWWVzJ1wiXG4gICAgICAgICAgW3NldmVyaXR5XT1cImRhdGEuc2V2ZXJpdHlcIlxuICAgICAgICAgIChjbGljayk9XCJkYXRhLmNvbmZpcm1CdXR0b25GbiA/IGRpYWxvZ0NsaWNrKHRydWUpIDogKHZpc2libGUgPSBmYWxzZSlcIlxuICAgICAgICAvPlxuICAgICAgICA8di1idXR0b25cbiAgICAgICAgICAqbmdJZj1cImRhdGEuc2hvd0NhbmNlbEJ1dHRvbiAmJiBkYXRhLnNldmVyaXR5ICE9PSAnc3VjY2VzcydcIlxuICAgICAgICAgIFtsYWJlbF09XCJkYXRhLmNhbmNlbEJ1dHRvblRleHQgPz8gJ05vJ1wiXG4gICAgICAgICAgW291dGxpbmVkXT1cInRydWVcIlxuICAgICAgICAgIFtzZXZlcml0eV09XCInc2Vjb25kYXJ5J1wiXG4gICAgICAgICAgKGNsaWNrKT1cImRhdGEuY2FuY2VsQnV0dG9uRm4gPyBkaWFsb2dDbGljayhmYWxzZSkgOiAodmlzaWJsZSA9IGZhbHNlKVwiXG4gICAgICAgIC8+XG4gICAgICA8L2Rpdj5cbiAgICA8L25nLXRlbXBsYXRlPlxuICA8L3AtZGlhbG9nPlxuPC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './confirm-dialog.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvbGlicy91aS1wcmltZW5nL3NyYy9saWIvY29tcG9uZW50cy9jb25maXJtLWRpYWxvZy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDRCQUE0QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb25maXJtLWRpYWxvZy5jb21wb25lbnQnO1xuIl19
|