aril 1.1.71 → 1.1.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +41 -0
- package/README.md +62 -62
- package/boot/config/api/ng-package.json +6 -0
- package/boot/config/api/src/api.sample.json +8 -0
- package/boot/config/api/src/api.service.ts +91 -0
- package/boot/config/api/src/interfaces.ts +65 -0
- package/boot/config/apps/ng-package.json +6 -0
- package/boot/config/apps/src/apps.service.ts +62 -0
- package/boot/config/apps/src/auth.guard.ts +22 -0
- package/boot/config/apps/src/interfaces.ts +58 -0
- package/boot/config/apps/src/reuse-strategy.ts +10 -0
- package/boot/config/apps/src/showdowDOMWrapper.ts +28 -0
- package/boot/config/plugins/ng-package.json +6 -0
- package/boot/config/plugins/src/getNgZone.ts +7 -0
- package/boot/config/plugins/src/interfaces.ts +75 -0
- package/boot/config/plugins/src/plugins.service.ts +110 -0
- package/boot/config/translate/constants.ts +4 -0
- package/boot/config/translate/ng-package.json +6 -0
- package/boot/config/translate/primeng/i18n/tr.ts +59 -0
- package/boot/host/ng-package.json +6 -0
- package/boot/host/src/app.component.ts +51 -0
- package/boot/host/src/bootstrap.ts +87 -0
- package/boot/index.ts +1 -0
- package/boot/mfe/ng-package.json +6 -0
- package/boot/mfe/src/app.component.ts +63 -0
- package/boot/mfe/src/appComponentLoader.ts +4 -0
- package/boot/mfe/src/bootstrap.ts +97 -0
- package/boot/mfe/src/loadStyles.ts +42 -0
- package/boot/mfe/src/monaco.config.ts +266 -0
- package/boot/ng-package.json +6 -0
- package/http/index.ts +13 -0
- package/http/lib/enums.ts +31 -0
- package/http/lib/interfaces.ts +46 -0
- package/http/ng-package.json +6 -0
- package/http/src/httpBackend.ts +12 -0
- package/http/src/httpClient.ts +20 -0
- package/http/src/interceptor/accept-language.interceptor.ts +32 -0
- package/http/src/serviceBase.ts +175 -0
- package/http/src/serviceMockBase.ts +12 -0
- package/http/src/serviceRequest.ts +28 -0
- package/http/src/serviceStateMethods.ts +211 -0
- package/i18n/ng-package.json +6 -0
- package/i18n/src/folder-name-token.ts +3 -0
- package/i18n/src/i18n.module.ts +11 -0
- package/i18n/src/loader.ts +13 -0
- package/i18n/src/provideI18n.ts +18 -0
- package/i18n/src/provideScope.ts +20 -0
- package/keycloak/index.ts +1 -0
- package/keycloak/ng-package.json +6 -0
- package/keycloak/src/auth.interceptor.ts +103 -0
- package/ng-package.json +16 -0
- package/package.json +43 -534
- package/project.json +39 -0
- package/provider/ng-package.json +6 -0
- package/provider/src/index.ts +5 -0
- package/provider/src/prodiveHost.ts +15 -0
- package/provider/src/prodiveHostRouter.ts +21 -0
- package/provider/src/provideHostKeycloak.ts +34 -0
- package/provider/src/provideLocaleId.ts +22 -0
- package/theme/index.ts +1 -1
- package/theme/layout/app/breadcrumb/app.breadcrumb.component.html +8 -8
- package/theme/layout/app/breadcrumb/app.breadcrumb.component.ts +126 -126
- package/theme/layout/app/chatbot/app.chatbot.component.html +108 -108
- package/theme/layout/app/chatbot/app.chatbot.component.scss +34 -34
- package/theme/layout/app/chatbot/app.chatbot.component.ts +151 -151
- package/theme/layout/app/config/app.config.component.html +146 -146
- package/theme/layout/app/config/app.config.component.ts +143 -143
- package/theme/layout/app/expandableMenu/expandable-menu.component.html +89 -89
- package/theme/layout/app/expandableMenu/expandable-menu.component.ts +295 -295
- package/theme/layout/app/favorite-pages/favorite-pages-sidebar.component.html +110 -110
- package/theme/layout/app/favorite-pages/favorite-pages-sidebar.component.scss +181 -181
- package/theme/layout/app/favorite-pages/favorite-pages-sidebar.component.ts +260 -260
- package/theme/layout/app/favorite-pages/favorite-pages.service.ts +95 -95
- package/theme/layout/app/favorite-pages/modals/add-edit-favorite-modal/add-edit-favorite-modal.component.html +27 -27
- package/theme/layout/app/favorite-pages/modals/add-edit-favorite-modal/add-edit-favorite-modal.component.ts +165 -165
- package/theme/layout/app/general-search/general-search.component.html +57 -57
- package/theme/layout/app/general-search/general-search.component.scss +27 -27
- package/theme/layout/app/general-search/general-search.component.ts +93 -93
- package/theme/layout/app/general-search/helpers.spec.ts +527 -527
- package/theme/layout/app/general-search/helpers.ts +106 -106
- package/theme/layout/app/general-search/models.ts +142 -142
- package/theme/layout/app/history/history-sidebar.component.html +87 -87
- package/theme/layout/app/history/history-sidebar.component.scss +182 -182
- package/theme/layout/app/history/history-sidebar.component.ts +143 -143
- package/theme/layout/app/history/history.service.ts +154 -154
- package/theme/layout/app/layout/app.layout.component.html +27 -27
- package/theme/layout/app/layout/app.layout.component.ts +171 -171
- package/theme/layout/app/layout/mfe.layout.component.ts +59 -59
- package/theme/layout/app/notifications/notifications-sidebar.component.html +104 -104
- package/theme/layout/app/notifications/notifications-sidebar.component.scss +237 -237
- package/theme/layout/app/notifications/notifications-sidebar.component.ts +221 -221
- package/theme/layout/app/profileSidebar/app.profilesidebar.component.html +122 -122
- package/theme/layout/app/profileSidebar/app.profilesidebar.component.scss +151 -151
- package/theme/layout/app/profileSidebar/app.profilesidebar.component.ts +141 -141
- package/theme/layout/app/profileSidebar/modals/change-password-modal/change-password-modal.component.html +48 -48
- package/theme/layout/app/profileSidebar/modals/change-password-modal/change-password-modal.component.scss +27 -27
- package/theme/layout/app/profileSidebar/modals/change-password-modal/change-password-modal.component.ts +178 -178
- package/theme/layout/app/profileSidebar/modals/edit-profile-modal/edit-profile-modal.component.html +71 -71
- package/theme/layout/app/profileSidebar/modals/edit-profile-modal/edit-profile-modal.component.ts +251 -251
- package/theme/layout/app/profileSidebar/profile.service.ts +116 -116
- package/theme/layout/app/site-map/site-map-sidebar.component.html +121 -121
- package/theme/layout/app/site-map/site-map-sidebar.component.scss +178 -178
- package/theme/layout/app/site-map/site-map-sidebar.component.ts +193 -193
- package/theme/layout/app/static-sidebar/static-sidebar.component.html +123 -123
- package/theme/layout/app/static-sidebar/static-sidebar.component.scss +411 -408
- package/theme/layout/app/static-sidebar/static-sidebar.component.ts +276 -276
- package/theme/layout/app/topbar/app.topbar.component.html +85 -85
- package/theme/layout/app/topbar/app.topbar.component.scss +193 -193
- package/theme/layout/app/topbar/app.topbar.component.ts +172 -172
- package/theme/layout/index.ts +7 -7
- package/theme/layout/ng-package.json +6 -6
- package/theme/layout/service/app.layout.service.ts +307 -307
- package/theme/layout/service/app.menu.service.ts +53 -53
- package/theme/layout/service/breadcrumb.service.ts +14 -14
- package/theme/layout/service/interfaces/enum.ts +13 -13
- package/theme/layout/service/interfaces/interfaces.ts +150 -150
- package/theme/layout/service/menuchangeevent.ts +4 -4
- package/theme/layout/service/notifications.service.ts +26 -26
- package/theme/layout/service/search.service.ts +22 -22
- package/theme/layout/service/selection-group.service.ts +73 -73
- package/theme/ng-package.json +6 -6
- package/theme/styles/layout/_animation.scss +53 -53
- package/theme/styles/layout/_breadcrumb.scss +31 -31
- package/theme/styles/layout/_config.scss +42 -42
- package/theme/styles/layout/_content.scss +61 -61
- package/theme/styles/layout/_expanded_sidebar.scss +486 -486
- package/theme/styles/layout/_fonts.scss +93 -93
- package/theme/styles/layout/_layout_dark.scss +5 -5
- package/theme/styles/layout/_layout_dim.scss +5 -5
- package/theme/styles/layout/_layout_light.scss +5 -5
- package/theme/styles/layout/_main.scss +28 -28
- package/theme/styles/layout/_profile.scss +10 -10
- package/theme/styles/layout/_responsive.scss +153 -153
- package/theme/styles/layout/_sidebar_drawer.scss +234 -234
- package/theme/styles/layout/_sidebar_horizontal.scss +163 -163
- package/theme/styles/layout/_sidebar_reveal.scss +201 -201
- package/theme/styles/layout/_sidebar_slim.scss +144 -144
- package/theme/styles/layout/_sidebar_slim_plus.scss +168 -168
- package/theme/styles/layout/_sidebar_vertical.scss +156 -156
- package/theme/styles/layout/_topbar.scss +140 -140
- package/theme/styles/layout/_typography.scss +68 -68
- package/theme/styles/layout/_utils.scss +24 -24
- package/theme/styles/layout/layout.scss +25 -25
- package/theme/styles/layout/menutheme/_colorscheme.scss +11 -11
- package/theme/styles/layout/menutheme/_menutheme.scss +3 -3
- package/theme/styles/layout/menutheme/_primarycolor.scss +16 -16
- package/theme/styles/layout/menutheme/_transparent.scss +26 -26
- package/theme/styles/layout/preloading.scss +84 -84
- package/theme/styles/theme/base/_colors.scss +17 -17
- package/theme/styles/theme/base/_common.scss +89 -89
- package/theme/styles/theme/base/_components.scss +108 -108
- package/theme/styles/theme/base/_mixins.scss +337 -337
- package/theme/styles/theme/base/components/button/_button.scss +576 -576
- package/theme/styles/theme/base/components/button/_speeddial.scss +96 -96
- package/theme/styles/theme/base/components/button/_splitbutton.scss +348 -348
- package/theme/styles/theme/base/components/data/_carousel.scss +37 -37
- package/theme/styles/theme/base/components/data/_datatable.scss +338 -338
- package/theme/styles/theme/base/components/data/_dataview.scss +46 -46
- package/theme/styles/theme/base/components/data/_filter.scss +137 -137
- package/theme/styles/theme/base/components/data/_orderlist.scss +114 -114
- package/theme/styles/theme/base/components/data/_organizationchart.scss +50 -50
- package/theme/styles/theme/base/components/data/_paginator.scss +92 -92
- package/theme/styles/theme/base/components/data/_picklist.scss +114 -114
- package/theme/styles/theme/base/components/data/_table.scss +16 -16
- package/theme/styles/theme/base/components/data/_timeline.scss +35 -35
- package/theme/styles/theme/base/components/data/_tree.scss +150 -150
- package/theme/styles/theme/base/components/data/_treetable.scss +255 -255
- package/theme/styles/theme/base/components/data/_virtualscroller.scss +28 -28
- package/theme/styles/theme/base/components/file/_fileupload.scss +64 -64
- package/theme/styles/theme/base/components/input/_autocomplete.scss +141 -141
- package/theme/styles/theme/base/components/input/_calendar.scss +267 -267
- package/theme/styles/theme/base/components/input/_cascadeselect.scss +135 -135
- package/theme/styles/theme/base/components/input/_checkbox.scss +99 -99
- package/theme/styles/theme/base/components/input/_chips.scss +67 -67
- package/theme/styles/theme/base/components/input/_colorpicker.scss +19 -19
- package/theme/styles/theme/base/components/input/_dropdown.scss +151 -151
- package/theme/styles/theme/base/components/input/_editor.scss +122 -122
- package/theme/styles/theme/base/components/input/_inputgroup.scss +75 -75
- package/theme/styles/theme/base/components/input/_inputmask.scss +16 -16
- package/theme/styles/theme/base/components/input/_inputnumber.scss +28 -28
- package/theme/styles/theme/base/components/input/_inputswitch.scss +60 -60
- package/theme/styles/theme/base/components/input/_inputtext.scss +100 -100
- package/theme/styles/theme/base/components/input/_listbox.scss +97 -97
- package/theme/styles/theme/base/components/input/_multiselect.scss +177 -177
- package/theme/styles/theme/base/components/input/_password.scss +52 -52
- package/theme/styles/theme/base/components/input/_radiobutton.scss +78 -78
- package/theme/styles/theme/base/components/input/_rating.scss +60 -60
- package/theme/styles/theme/base/components/input/_selectbutton.scss +50 -50
- package/theme/styles/theme/base/components/input/_slider.scss +75 -75
- package/theme/styles/theme/base/components/input/_togglebutton.scss +48 -48
- package/theme/styles/theme/base/components/input/_treeselect.scss +139 -139
- package/theme/styles/theme/base/components/menu/_breadcrumb.scss +43 -43
- package/theme/styles/theme/base/components/menu/_contextmenu.scss +39 -39
- package/theme/styles/theme/base/components/menu/_dock.scss +95 -95
- package/theme/styles/theme/base/components/menu/_megamenu.scss +55 -55
- package/theme/styles/theme/base/components/menu/_menu.scss +37 -37
- package/theme/styles/theme/base/components/menu/_menubar.scss +140 -140
- package/theme/styles/theme/base/components/menu/_panelmenu.scss +153 -153
- package/theme/styles/theme/base/components/menu/_slidemenu.scss +59 -59
- package/theme/styles/theme/base/components/menu/_steps.scss +56 -56
- package/theme/styles/theme/base/components/menu/_tabmenu.scss +73 -73
- package/theme/styles/theme/base/components/menu/_tieredmenu.scss +43 -43
- package/theme/styles/theme/base/components/messages/_inlinemessage.scss +69 -69
- package/theme/styles/theme/base/components/messages/_message.scss +107 -107
- package/theme/styles/theme/base/components/messages/_toast.scss +99 -99
- package/theme/styles/theme/base/components/misc/_avatar.scss +30 -30
- package/theme/styles/theme/base/components/misc/_badge.scss +48 -48
- package/theme/styles/theme/base/components/misc/_chip.scss +42 -42
- package/theme/styles/theme/base/components/misc/_inplace.scss +16 -16
- package/theme/styles/theme/base/components/misc/_progressbar.scss +17 -17
- package/theme/styles/theme/base/components/misc/_scrolltop.scss +25 -25
- package/theme/styles/theme/base/components/misc/_skeleton.scss +8 -8
- package/theme/styles/theme/base/components/misc/_tag.scss +45 -45
- package/theme/styles/theme/base/components/misc/_terminal.scss +12 -12
- package/theme/styles/theme/base/components/multimedia/_galleria.scss +155 -155
- package/theme/styles/theme/base/components/multimedia/_image.scss +49 -49
- package/theme/styles/theme/base/components/overlay/_confirmpopup.scss +70 -70
- package/theme/styles/theme/base/components/overlay/_dialog.scss +69 -69
- package/theme/styles/theme/base/components/overlay/_overlaypanel.scss +62 -62
- package/theme/styles/theme/base/components/overlay/_sidebar.scss +28 -28
- package/theme/styles/theme/base/components/overlay/_tooltip.scss +33 -33
- package/theme/styles/theme/base/components/panel/_accordion.scss +119 -119
- package/theme/styles/theme/base/components/panel/_card.scss +30 -30
- package/theme/styles/theme/base/components/panel/_divider.scss +31 -31
- package/theme/styles/theme/base/components/panel/_fieldset.scss +47 -47
- package/theme/styles/theme/base/components/panel/_panel.scss +77 -77
- package/theme/styles/theme/base/components/panel/_scrollpanel.scss +6 -6
- package/theme/styles/theme/base/components/panel/_splitter.scss +19 -19
- package/theme/styles/theme/base/components/panel/_stepper.scss +200 -200
- package/theme/styles/theme/base/components/panel/_tabview.scss +91 -91
- package/theme/styles/theme/base/components/panel/_toolbar.scss +11 -11
- package/theme/styles/theme/dark/_extensions.scss +134 -134
- package/theme/styles/theme/dark/_variables.scss +933 -933
- package/theme/styles/theme/dark/indigo/theme.scss +14 -14
- package/theme/styles/theme/light/_extensions.scss +116 -116
- package/theme/styles/theme/light/_variables.scss +940 -940
- package/theme/styles/theme/light/custom/theme.scss +16 -16
- package/theme/styles/theme/light/indigo/theme.scss +14 -14
- package/tsconfig.lib.json +12 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +9 -0
- package/ui/autoComplete/ng-package.json +6 -0
- package/ui/autoComplete/src/auto-complete.component.html +14 -0
- package/ui/autoComplete/src/auto-complete.component.ts +130 -0
- package/ui/autoComplete/src/interfaces.ts +35 -0
- package/ui/badge/ng-package.json +6 -0
- package/ui/badge/src/badge.component.html +11 -0
- package/ui/badge/src/badge.component.ts +63 -0
- package/ui/button/ng-package.json +6 -0
- package/ui/button/src/button.component.html +12 -0
- package/ui/button/src/button.component.ts +47 -0
- package/ui/button/src/split-button.component.html +2 -0
- package/ui/button/src/split-button.component.ts +17 -0
- package/ui/calendar/ng-package.json +6 -0
- package/ui/calendar/src/calendar.component.html +48 -0
- package/ui/calendar/src/calendar.component.ts +257 -0
- package/ui/charts/index.ts +13 -0
- package/ui/charts/ng-package.json +6 -0
- package/ui/charts/src/amCharts/column/column-chart.component.ts +144 -0
- package/ui/charts/src/amCharts/line/line-chart.component.ts +194 -0
- package/ui/charts/src/amCharts/pie/pie-chart.component.ts +132 -0
- package/ui/charts/src/highCharts/area/area-chart.component.ts +112 -0
- package/ui/charts/src/highCharts/bar/bar-chart.component.ts +100 -0
- package/ui/charts/src/highCharts/bar/bar-chart.components.scss +50 -0
- package/ui/charts/src/highCharts/column/column-chart.component copy.ts +50 -0
- package/ui/charts/src/highCharts/column/column-chart.component.ts +125 -0
- package/ui/charts/src/highCharts/column/column-chart.components.scss +50 -0
- package/ui/charts/src/highCharts/gauge/solid-gauge.component.ts +199 -0
- package/ui/charts/src/highCharts/heatmap/heatMap-chart.component.ts +279 -0
- package/ui/charts/src/highCharts/line/line-chart-datetime-axis.component.ts +185 -0
- package/ui/charts/src/highCharts/line/line-chart-series.component.ts +92 -0
- package/ui/charts/src/highCharts/line/line-chart.component.ts +85 -0
- package/ui/charts/src/highCharts/pie/pie-chart.component.ts +139 -0
- package/ui/charts/src/theme/theme.ts +55 -0
- package/ui/checkbox/ng-package.json +6 -0
- package/ui/checkbox/src/check-box.component.html +15 -0
- package/ui/checkbox/src/check-box.component.ts +24 -0
- package/ui/checkbox/src/tri-state-checkbox.component.html +7 -0
- package/ui/checkbox/src/tri-state-checkbox.component.ts +20 -0
- package/ui/chip/index.ts +1 -0
- package/ui/chip/ng-package.json +6 -0
- package/ui/chip/src/chip.component.html +33 -0
- package/ui/chip/src/chip.component.ts +144 -0
- package/ui/collapse-reorder-list/index.ts +1 -0
- package/ui/collapse-reorder-list/ng-package.json +6 -0
- package/ui/collapse-reorder-list/src/collapse-reorder-list.component.html +42 -0
- package/ui/collapse-reorder-list/src/collapse-reorder-list.component.scss +24 -0
- package/ui/collapse-reorder-list/src/collapse-reorder-list.component.ts +56 -0
- package/ui/dxEditor/ng-package.json +6 -0
- package/ui/dxEditor/src/dx-editor.component.html +67 -0
- package/ui/dxEditor/src/dx-editor.component.ts +19 -0
- package/ui/dxField/ng-package.json +6 -0
- package/ui/dxField/src/dx-field.component.html +15 -0
- package/ui/dxField/src/dx-field.component.ts +17 -0
- package/ui/editor/ng-package.json +6 -0
- package/ui/editor/src/aril-editor.component.html +16 -0
- package/ui/editor/src/aril-editor.component.scss +18 -0
- package/ui/editor/src/aril-editor.component.ts +176 -0
- package/ui/editor/src/types.ts +24 -0
- package/ui/field/ng-package.json +6 -0
- package/ui/field/src/field.component.html +27 -0
- package/ui/field/src/field.component.ts +53 -0
- package/ui/fileUpload/ng-package.json +6 -0
- package/ui/fileUpload/src/file-upload.component.html +76 -0
- package/ui/fileUpload/src/file-upload.component.ts +90 -0
- package/ui/form/index.ts +18 -0
- package/ui/form/ng-package.json +6 -0
- package/ui/form/src/form-submit-button.component.html +12 -0
- package/ui/form/src/form-submit-button.component.ts +36 -0
- package/ui/form/src/form.component.ts +20 -0
- package/ui/img-viewer/index.ts +2 -0
- package/ui/img-viewer/ng-package.json +6 -0
- package/ui/img-viewer/src/img-viewer.component.html +12 -0
- package/ui/img-viewer/src/img-viewer.component.scss +8 -0
- package/ui/img-viewer/src/img-viewer.component.ts +59 -0
- package/ui/index.ts +1 -0
- package/ui/json-diff-comparison/ng-package.json +6 -0
- package/ui/json-diff-comparison/src/json-diff.component.html +5 -0
- package/ui/json-diff-comparison/src/json-diff.component.ts +45 -0
- package/ui/lib/index.ts +17 -0
- package/ui/lib/ng-package.json +6 -0
- package/ui/lib/src/form/form-error-message.component.ts +25 -0
- package/ui/lib/src/form/form-error-message.directive.ts +32 -0
- package/ui/lib/src/form/form-field-builder.ts +31 -0
- package/ui/lib/src/form/form-validation.ts +14 -0
- package/ui/lib/src/grid/enum-color-picker.pipe.ts +33 -0
- package/ui/lib/src/grid/flex-grid.directive.ts +10 -0
- package/ui/lib/src/input/baseInput.ts +30 -0
- package/ui/lib/src/input/common-input-validators.service.ts +57 -0
- package/ui/lib/src/input/dx-input-error-message.pipe.ts +16 -0
- package/ui/lib/src/input/input-disabled.directive.ts +15 -0
- package/ui/lib/src/input/input-error-message.pipe.ts +71 -0
- package/ui/lib/src/input/input-transforms.ts +11 -0
- package/ui/lib/src/input/value-accessor.directive.ts +31 -0
- package/ui/loader/ng-package.json +6 -0
- package/ui/loader/src/loader.component.html +7 -0
- package/ui/loader/src/loader.component.scss +6 -0
- package/ui/loader/src/loader.component.ts +14 -0
- package/ui/mask/ng-package.json +6 -0
- package/ui/mask/src/mask.component.css +23 -0
- package/ui/mask/src/mask.component.html +17 -0
- package/ui/mask/src/mask.component.ts +34 -0
- package/ui/multiSelect/ng-package.json +6 -0
- package/ui/multiSelect/src/interfaces.ts +41 -0
- package/ui/multiSelect/src/multi-select.component.html +14 -0
- package/ui/multiSelect/src/multi-select.component.ts +66 -0
- package/ui/ng-package.json +6 -0
- package/ui/number/ng-package.json +6 -0
- package/ui/number/src/number.component.html +26 -0
- package/ui/number/src/number.component.ts +36 -0
- package/ui/operation-types-dialog/ng-package.json +6 -0
- package/ui/operation-types-dialog/src/operation-types-dialog.component.ts +98 -0
- package/ui/overlayPanel/ng-package.json +6 -0
- package/ui/overlayPanel/src/overlay-panel.component.html +5 -0
- package/ui/overlayPanel/src/overlay-panel.component.ts +16 -0
- package/ui/panel/ng-package.json +6 -0
- package/ui/panel/src/panel.component.css +38 -0
- package/ui/panel/src/panel.component.html +44 -0
- package/ui/panel/src/panel.component.ts +31 -0
- package/ui/password/ng-package.json +6 -0
- package/ui/password/src/password.component.html +25 -0
- package/ui/password/src/password.component.ts +22 -0
- package/ui/pdf-viewer/ng-package.json +6 -0
- package/ui/pdf-viewer/src/pdf-viewer.component.html +16 -0
- package/ui/pdf-viewer/src/pdf-viewer.component.scss +8 -0
- package/ui/pdf-viewer/src/pdf-viewer.component.ts +28 -0
- package/ui/progressbar/dist/index.js +13 -0
- package/ui/progressbar/ng-package.json +6 -0
- package/ui/progressbar/src/dist/progressbar.component.js +28 -0
- package/ui/progressbar/src/progressbar.component.html +1 -0
- package/ui/progressbar/src/progressbar.component.ts +18 -0
- package/ui/radioButton/ng-package.json +6 -0
- package/ui/radioButton/src/radio-button.component.html +23 -0
- package/ui/radioButton/src/radio-button.component.scss +17 -0
- package/ui/radioButton/src/radio-button.component.ts +39 -0
- package/ui/relativeDateSelector/index.ts +1 -0
- package/ui/relativeDateSelector/ng-package.json +6 -0
- package/ui/relativeDateSelector/src/enum.ts +29 -0
- package/ui/relativeDateSelector/src/relative-date-selector.component.html +118 -0
- package/ui/relativeDateSelector/src/relative-date-selector.component.scss +154 -0
- package/ui/relativeDateSelector/src/relative-date-selector.component.ts +291 -0
- package/ui/selectBox/ng-package.json +6 -0
- package/ui/selectBox/src/interfaces.ts +41 -0
- package/ui/selectBox/src/select-box.component.html +19 -0
- package/ui/selectBox/src/select-box.component.ts +79 -0
- package/ui/styles/ui.common.scss +42 -0
- package/ui/switch/ng-package.json +6 -0
- package/ui/switch/src/switch.component.html +7 -0
- package/ui/switch/src/switch.component.ts +18 -0
- package/ui/table/index.ts +76 -0
- package/ui/table/ng-package.json +6 -0
- package/ui/table/src/export-overlay-panel.component.ts +330 -0
- package/ui/table/src/interfaces.ts +162 -0
- package/ui/table/src/table-column.component.ts +22 -0
- package/ui/table/src/table.component.html +404 -0
- package/ui/table/src/table.component.scss +15 -0
- package/ui/table/src/table.component.ts +368 -0
- package/ui/table-expand/index.ts +41 -0
- package/ui/table-expand/ng-package.json +6 -0
- package/ui/table-expand/src/table-column.component.ts +32 -0
- package/ui/table-expand/src/table-expand-area.component.ts +18 -0
- package/ui/table-expand/src/table.component.html +101 -0
- package/ui/table-expand/src/table.component.ts +92 -0
- package/ui/tag/index.ts +1 -0
- package/ui/tag/ng-package.json +6 -0
- package/ui/tag/src/interface.ts +1 -0
- package/ui/tag/src/tag.component.html +9 -0
- package/ui/tag/src/tag.component.ts +17 -0
- package/ui/tagBox/ng-package.json +6 -0
- package/ui/tagBox/src/tag-box.component.html +26 -0
- package/ui/tagBox/src/tag-box.component.ts +56 -0
- package/ui/text/ng-package.json +6 -0
- package/ui/text/src/text.component.html +21 -0
- package/ui/text/src/text.component.ts +55 -0
- package/ui/textArea/ng-package.json +6 -0
- package/ui/textArea/src/text-area.component.html +12 -0
- package/ui/textArea/src/text-area.component.ts +22 -0
- package/ui/toggle-button/index.ts +1 -0
- package/ui/toggle-button/ng-package.json +6 -0
- package/ui/toggle-button/src/toggle-button.component.html +13 -0
- package/ui/toggle-button/src/toggle-button.component.scss +19 -0
- package/ui/toggle-button/src/toggle-button.component.ts +22 -0
- package/ui/tooltip/ng-package.json +6 -0
- package/ui/tooltip/src/tooltip-component.html +10 -0
- package/ui/tooltip/src/tooltip-component.ts +20 -0
- package/ui/translate-input/ng-package.json +6 -0
- package/ui/translate-input/src/aril-lang-modal/aril-lang-modal.component.html +46 -0
- package/ui/translate-input/src/aril-lang-modal/aril-lang-modal.component.scss +9 -0
- package/ui/translate-input/src/aril-lang-modal/aril-lang-modal.component.ts +74 -0
- package/ui/translate-input/src/aril-lang-modal/constants.ts +16 -0
- package/ui/translate-input/src/aril-translate-input.component.ts +152 -0
- package/ui/translate-input/src/interface.ts +14 -0
- package/ui/tree/ng-package.json +6 -0
- package/ui/tree/src/tree.component.html +17 -0
- package/ui/tree/src/tree.component.ts +65 -0
- package/ui/treeSelect/ng-package.json +6 -0
- package/ui/treeSelect/src/treeSelect.component.html +18 -0
- package/ui/treeSelect/src/treeSelect.component.ts +43 -0
- package/ui/treeTable/ng-package.json +6 -0
- package/ui/treeTable/src/tree-table.component.html +88 -0
- package/ui/treeTable/src/tree-table.component.ts +57 -0
- package/ui/value/ng-package.json +6 -0
- package/ui/value/src/value.component.html +94 -0
- package/ui/value/src/value.component.scss +6 -0
- package/ui/value/src/value.component.ts +268 -0
- package/ui-business/assetPicker/index.ts +1 -0
- package/ui-business/assetPicker/ng-package.json +6 -0
- package/ui-business/assetPicker/src/asset-picker.component.html +29 -0
- package/ui-business/assetPicker/src/asset-picker.component.ts +259 -0
- package/ui-business/assetPicker/src/interface.ts +83 -0
- package/ui-business/detailed-overlay-panel/ng-package.json +6 -0
- package/ui-business/detailed-overlay-panel/src/detailed-overlay-panel.component.html +52 -0
- package/ui-business/detailed-overlay-panel/src/detailed-overlay-panel.component.scss +19 -0
- package/ui-business/detailed-overlay-panel/src/detailed-overlay-panel.component.ts +66 -0
- package/ui-business/detailed-overlay-panel/src/interface.ts +62 -0
- package/ui-business/enumPicker/index.ts +1 -0
- package/ui-business/enumPicker/ng-package.json +6 -0
- package/ui-business/enumPicker/src/enum-picker.component.html +39 -0
- package/ui-business/enumPicker/src/enum-picker.component.ts +147 -0
- package/ui-business/enumPicker/src/interface.ts +44 -0
- package/ui-business/image-viewer/index.ts +1 -0
- package/ui-business/image-viewer/ng-package.json +6 -0
- package/ui-business/image-viewer/src/aril-image-viewer.component.ts +92 -0
- package/ui-business/index.ts +1 -0
- package/ui-business/multiple-ref-value/ng-package.json +6 -0
- package/ui-business/multiple-ref-value/src/multiple-ref-value.component.html +26 -0
- package/ui-business/multiple-ref-value/src/multiple-ref-value.component.ts +21 -0
- package/ui-business/ng-package.json +6 -0
- package/ui-business/notification-templates-dialog/ng-package.json +6 -0
- package/ui-business/notification-templates-dialog/src/interface.ts +18 -0
- package/ui-business/notification-templates-dialog/src/notification-templates-dialog.component.html +31 -0
- package/ui-business/notification-templates-dialog/src/notification-templates-dialog.component.ts +69 -0
- package/ui-business/operation-types-dialog/ng-package.json +6 -0
- package/ui-business/operation-types-dialog/src/operation-types-dialog.component.ts +78 -0
- package/ui-business/ref-value/ng-package.json +6 -0
- package/ui-business/ref-value/src/ref-value.component.html +29 -0
- package/ui-business/ref-value/src/ref-value.component.ts +41 -0
- package/ui-business/rolePicker/ng-package.json +6 -0
- package/ui-business/rolePicker/src/interface.ts +56 -0
- package/ui-business/rolePicker/src/role-picker.component.html +21 -0
- package/ui-business/rolePicker/src/role-picker.component.ts +88 -0
- package/ui-business/userPicker/index.ts +1 -0
- package/ui-business/userPicker/ng-package.json +6 -0
- package/ui-business/userPicker/src/interface.ts +27 -0
- package/ui-business/userPicker/src/user-picker.component.html +20 -0
- package/ui-business/userPicker/src/user-picker.component.ts +52 -0
- package/util/block/ng-package.json +6 -0
- package/util/block/src/block.ts +65 -0
- package/util/block/src/blockui.css +56 -0
- package/util/block/src/blockui.min.js +7 -0
- package/util/custom_pages/ng-package.json +6 -0
- package/util/custom_pages/src/notFound.component.ts +34 -0
- package/util/directives/ng-package.json +6 -0
- package/util/directives/src/detail-page-customization/detail-page-customization.directive.md +199 -0
- package/util/directives/src/detail-page-customization/detail-page-customization.directive.ts +343 -0
- package/util/directives/src/detail-page-customization/index.ts +2 -0
- package/util/directives/src/detail-page-customization/models.ts +61 -0
- package/util/directives/src/dialog-component/plugin-dialog.component.ts +22 -0
- package/util/directives/src/dialog-service/plugin-dialog.service.ts +12 -0
- package/util/index.ts +1 -0
- package/util/lib/ng-package.json +6 -0
- package/util/lib/src/interfaces.ts +44 -0
- package/util/lib/src/module-router.ts +9 -0
- package/util/lib/src/types.ts +61 -0
- package/util/lib/src/validators/iban.validator.ts +202 -0
- package/util/lib/src/validators/max-array-length.validator.ts +18 -0
- package/util/lib/src/validators/min-array-length.validator.ts +18 -0
- package/util/lib/src/validators/tckn.validator.ts +55 -0
- package/util/lib/src/validators/validators.ts +21 -0
- package/util/loaders/index.ts +1 -0
- package/util/loaders/ng-package.json +6 -0
- package/util/loaders/style/style.loader.service.ts +69 -0
- package/util/ng-package.json +6 -0
- package/util/pipes/ng-package.json +6 -0
- package/util/pipes/src/distance-to-now.pipe.ts +37 -0
- package/util/pipes/src/get-column-by-field.pipe.ts +11 -0
- package/util/pipes/src/parse.pipe.ts +15 -0
- package/util/pipes/src/round-number.pipe.ts +75 -0
- package/util/pipes/src/safe.pipe.ts +27 -0
- package/util/pipes/src/translate-json/index.ts +1 -0
- package/util/pipes/src/translate-json/translate-json.pipe.ts +34 -0
- package/util/primitive-extensions/ng-package.json +6 -0
- package/util/primitive-extensions/src/date.extensions.ts +135 -0
- package/util/primitive-extensions/src/number.extensions.ts +57 -0
- package/util/primitive-extensions/src/string.extensions.ts +39 -0
- package/util/pub-sub/ng-package.json +6 -0
- package/util/pub-sub/src/pub-sub.service.ts +35 -0
- package/util/sync-active-tab-route/ng-package.json +6 -0
- package/util/sync-active-tab-route/src/sync-active-tab-route.directive.ts +47 -0
- package/util/unwrap/ng-package.json +6 -0
- package/util/unwrap/src/unwrap-tag.directive.ts +18 -0
- package/boot/config/api/src/api.service.d.ts +0 -12
- package/boot/config/api/src/interfaces.d.ts +0 -39
- package/boot/config/api.sample.json +0 -8
- package/boot/config/apps/src/apps.service.d.ts +0 -13
- package/boot/config/apps/src/auth.guard.d.ts +0 -9
- package/boot/config/apps/src/interfaces.d.ts +0 -50
- package/boot/config/apps/src/reuse-strategy.d.ts +0 -4
- package/boot/config/apps/src/showdowDOMWrapper.d.ts +0 -10
- package/boot/config/plugins/src/getNgZone.d.ts +0 -5
- package/boot/config/plugins/src/interfaces.d.ts +0 -55
- package/boot/config/plugins/src/plugins.service.d.ts +0 -5
- package/boot/config/translate/constants.d.ts +0 -4
- package/boot/config/translate/primeng/i18n/tr.d.ts +0 -46
- package/boot/host/src/app.component.d.ts +0 -10
- package/boot/host/src/bootstrap.d.ts +0 -4
- package/boot/index.d.ts +0 -1
- package/boot/mfe/src/app.component.d.ts +0 -17
- package/boot/mfe/src/appComponentLoader.d.ts +0 -1
- package/boot/mfe/src/bootstrap.d.ts +0 -5
- package/boot/mfe/src/loadStyles.d.ts +0 -3
- package/boot/mfe/src/monaco.config.d.ts +0 -7
- package/esm2022/aril.mjs +0 -5
- package/esm2022/boot/aril-boot.mjs +0 -5
- package/esm2022/boot/config/api/aril-boot-config-api.mjs +0 -5
- package/esm2022/boot/config/api/index.mjs +0 -2
- package/esm2022/boot/config/api/src/api.service.mjs +0 -59
- package/esm2022/boot/config/api/src/interfaces.mjs +0 -61
- package/esm2022/boot/config/apps/aril-boot-config-apps.mjs +0 -5
- package/esm2022/boot/config/apps/index.mjs +0 -4
- package/esm2022/boot/config/apps/src/apps.service.mjs +0 -53
- package/esm2022/boot/config/apps/src/auth.guard.mjs +0 -22
- package/esm2022/boot/config/apps/src/interfaces.mjs +0 -21
- package/esm2022/boot/config/apps/src/reuse-strategy.mjs +0 -9
- package/esm2022/boot/config/apps/src/showdowDOMWrapper.mjs +0 -35
- package/esm2022/boot/config/plugins/aril-boot-config-plugins.mjs +0 -5
- package/esm2022/boot/config/plugins/index.mjs +0 -3
- package/esm2022/boot/config/plugins/src/getNgZone.mjs +0 -9
- package/esm2022/boot/config/plugins/src/interfaces.mjs +0 -62
- package/esm2022/boot/config/plugins/src/plugins.service.mjs +0 -84
- package/esm2022/boot/config/translate/aril-boot-config-translate.mjs +0 -5
- package/esm2022/boot/config/translate/constants.mjs +0 -6
- package/esm2022/boot/config/translate/index.mjs +0 -3
- package/esm2022/boot/config/translate/primeng/i18n/tr.mjs +0 -60
- package/esm2022/boot/host/aril-boot-host.mjs +0 -5
- package/esm2022/boot/host/index.mjs +0 -2
- package/esm2022/boot/host/src/app.component.mjs +0 -49
- package/esm2022/boot/host/src/bootstrap.mjs +0 -55
- package/esm2022/boot/index.mjs +0 -2
- package/esm2022/boot/mfe/aril-boot-mfe.mjs +0 -5
- package/esm2022/boot/mfe/index.mjs +0 -2
- package/esm2022/boot/mfe/src/app.component.mjs +0 -63
- package/esm2022/boot/mfe/src/appComponentLoader.mjs +0 -5
- package/esm2022/boot/mfe/src/bootstrap.mjs +0 -76
- package/esm2022/boot/mfe/src/loadStyles.mjs +0 -37
- package/esm2022/boot/mfe/src/monaco.config.mjs +0 -247
- package/esm2022/http/aril-http.mjs +0 -5
- package/esm2022/http/index.mjs +0 -12
- package/esm2022/http/lib/enums.mjs +0 -35
- package/esm2022/http/lib/interfaces.mjs +0 -16
- package/esm2022/http/src/httpBackend.mjs +0 -17
- package/esm2022/http/src/httpClient.mjs +0 -16
- package/esm2022/http/src/interceptor/accept-language.interceptor.mjs +0 -21
- package/esm2022/http/src/serviceBase.mjs +0 -140
- package/esm2022/http/src/serviceMockBase.mjs +0 -4
- package/esm2022/http/src/serviceRequest.mjs +0 -23
- package/esm2022/http/src/serviceStateMethods.mjs +0 -167
- package/esm2022/i18n/aril-i18n.mjs +0 -5
- package/esm2022/i18n/index.mjs +0 -6
- package/esm2022/i18n/src/folder-name-token.mjs +0 -3
- package/esm2022/i18n/src/i18n.module.mjs +0 -17
- package/esm2022/i18n/src/loader.mjs +0 -18
- package/esm2022/i18n/src/provideI18n.mjs +0 -16
- package/esm2022/i18n/src/provideScope.mjs +0 -18
- package/esm2022/keycloak/aril-keycloak.mjs +0 -5
- package/esm2022/keycloak/index.mjs +0 -2
- package/esm2022/keycloak/src/auth.interceptor.mjs +0 -92
- package/esm2022/provider/aril-provider.mjs +0 -5
- package/esm2022/provider/index.mjs +0 -2
- package/esm2022/provider/src/index.mjs +0 -5
- package/esm2022/provider/src/prodiveHost.mjs +0 -9
- package/esm2022/provider/src/prodiveHostRouter.mjs +0 -12
- package/esm2022/provider/src/provideHostKeycloak.mjs +0 -28
- package/esm2022/provider/src/provideLocaleId.mjs +0 -20
- package/esm2022/public-api.mjs +0 -3
- package/esm2022/theme/aril-theme.mjs +0 -5
- package/esm2022/theme/index.mjs +0 -2
- package/esm2022/theme/layout/app/breadcrumb/app.breadcrumb.component.mjs +0 -106
- package/esm2022/theme/layout/app/chatbot/app.chatbot.component.mjs +0 -140
- package/esm2022/theme/layout/app/expandableMenu/expandable-menu.component.mjs +0 -250
- package/esm2022/theme/layout/app/favorite-pages/favorite-pages-sidebar.component.mjs +0 -217
- package/esm2022/theme/layout/app/favorite-pages/favorite-pages.service.mjs +0 -60
- package/esm2022/theme/layout/app/favorite-pages/modals/add-edit-favorite-modal/add-edit-favorite-modal.component.mjs +0 -129
- package/esm2022/theme/layout/app/general-search/general-search.component.mjs +0 -75
- package/esm2022/theme/layout/app/general-search/helpers.mjs +0 -92
- package/esm2022/theme/layout/app/general-search/models.mjs +0 -50
- package/esm2022/theme/layout/app/history/history-sidebar.component.mjs +0 -133
- package/esm2022/theme/layout/app/history/history.service.mjs +0 -131
- package/esm2022/theme/layout/app/layout/app.layout.component.mjs +0 -160
- package/esm2022/theme/layout/app/layout/mfe.layout.component.mjs +0 -64
- package/esm2022/theme/layout/app/notifications/notifications-sidebar.component.mjs +0 -191
- package/esm2022/theme/layout/app/profileSidebar/app.profilesidebar.component.mjs +0 -122
- package/esm2022/theme/layout/app/profileSidebar/modals/change-password-modal/change-password-modal.component.mjs +0 -142
- package/esm2022/theme/layout/app/profileSidebar/modals/edit-profile-modal/edit-profile-modal.component.mjs +0 -202
- package/esm2022/theme/layout/app/profileSidebar/profile.service.mjs +0 -66
- package/esm2022/theme/layout/app/site-map/site-map-sidebar.component.mjs +0 -166
- package/esm2022/theme/layout/app/static-sidebar/static-sidebar.component.mjs +0 -228
- package/esm2022/theme/layout/app/topbar/app.topbar.component.mjs +0 -155
- package/esm2022/theme/layout/aril-theme-layout.mjs +0 -5
- package/esm2022/theme/layout/index.mjs +0 -8
- package/esm2022/theme/layout/service/app.layout.service.mjs +0 -231
- package/esm2022/theme/layout/service/app.menu.service.mjs +0 -46
- package/esm2022/theme/layout/service/breadcrumb.service.mjs +0 -20
- package/esm2022/theme/layout/service/interfaces/enum.mjs +0 -16
- package/esm2022/theme/layout/service/interfaces/interfaces.mjs +0 -2
- package/esm2022/theme/layout/service/menuchangeevent.mjs +0 -2
- package/esm2022/theme/layout/service/notifications.service.mjs +0 -30
- package/esm2022/theme/layout/service/search.service.mjs +0 -25
- package/esm2022/theme/layout/service/selection-group.service.mjs +0 -65
- package/esm2022/ui/aril-ui.mjs +0 -5
- package/esm2022/ui/autoComplete/aril-ui-autoComplete.mjs +0 -5
- package/esm2022/ui/autoComplete/index.mjs +0 -2
- package/esm2022/ui/autoComplete/src/auto-complete.component.mjs +0 -109
- package/esm2022/ui/autoComplete/src/interfaces.mjs +0 -2
- package/esm2022/ui/badge/aril-ui-badge.mjs +0 -5
- package/esm2022/ui/badge/index.mjs +0 -2
- package/esm2022/ui/badge/src/badge.component.mjs +0 -59
- package/esm2022/ui/button/aril-ui-button.mjs +0 -5
- package/esm2022/ui/button/index.mjs +0 -3
- package/esm2022/ui/button/src/button.component.mjs +0 -40
- package/esm2022/ui/button/src/split-button.component.mjs +0 -18
- package/esm2022/ui/calendar/aril-ui-calendar.mjs +0 -5
- package/esm2022/ui/calendar/index.mjs +0 -2
- package/esm2022/ui/calendar/src/calendar.component.mjs +0 -224
- package/esm2022/ui/charts/aril-ui-charts.mjs +0 -5
- package/esm2022/ui/charts/index.mjs +0 -13
- package/esm2022/ui/charts/src/amCharts/column/column-chart.component.mjs +0 -124
- package/esm2022/ui/charts/src/amCharts/line/line-chart.component.mjs +0 -164
- package/esm2022/ui/charts/src/amCharts/pie/pie-chart.component.mjs +0 -116
- package/esm2022/ui/charts/src/highCharts/area/area-chart.component.mjs +0 -114
- package/esm2022/ui/charts/src/highCharts/bar/bar-chart.component.mjs +0 -100
- package/esm2022/ui/charts/src/highCharts/column/column-chart.component.mjs +0 -117
- package/esm2022/ui/charts/src/highCharts/gauge/solid-gauge.component.mjs +0 -180
- package/esm2022/ui/charts/src/highCharts/heatmap/heatMap-chart.component.mjs +0 -252
- package/esm2022/ui/charts/src/highCharts/line/line-chart-datetime-axis.component.mjs +0 -187
- package/esm2022/ui/charts/src/highCharts/line/line-chart-series.component.mjs +0 -89
- package/esm2022/ui/charts/src/highCharts/line/line-chart.component.mjs +0 -82
- package/esm2022/ui/charts/src/highCharts/pie/pie-chart.component.mjs +0 -137
- package/esm2022/ui/charts/src/theme/theme.mjs +0 -54
- package/esm2022/ui/checkbox/aril-ui-checkbox.mjs +0 -5
- package/esm2022/ui/checkbox/index.mjs +0 -3
- package/esm2022/ui/checkbox/src/check-box.component.mjs +0 -27
- package/esm2022/ui/checkbox/src/tri-state-checkbox.component.mjs +0 -24
- package/esm2022/ui/chip/aril-ui-chip.mjs +0 -5
- package/esm2022/ui/chip/index.mjs +0 -2
- package/esm2022/ui/chip/src/chip.component.mjs +0 -129
- package/esm2022/ui/collapse-reorder-list/aril-ui-collapse-reorder-list.mjs +0 -5
- package/esm2022/ui/collapse-reorder-list/index.mjs +0 -2
- package/esm2022/ui/collapse-reorder-list/src/collapse-reorder-list.component.mjs +0 -53
- package/esm2022/ui/dxEditor/aril-ui-dxEditor.mjs +0 -5
- package/esm2022/ui/dxEditor/index.mjs +0 -2
- package/esm2022/ui/dxEditor/src/dx-editor.component.mjs +0 -26
- package/esm2022/ui/dxField/aril-ui-dxField.mjs +0 -5
- package/esm2022/ui/dxField/index.mjs +0 -2
- package/esm2022/ui/dxField/src/dx-field.component.mjs +0 -19
- package/esm2022/ui/editor/aril-ui-editor.mjs +0 -5
- package/esm2022/ui/editor/index.mjs +0 -3
- package/esm2022/ui/editor/src/aril-editor.component.mjs +0 -171
- package/esm2022/ui/editor/src/types.mjs +0 -26
- package/esm2022/ui/field/aril-ui-field.mjs +0 -5
- package/esm2022/ui/field/index.mjs +0 -2
- package/esm2022/ui/field/src/field.component.mjs +0 -45
- package/esm2022/ui/fileUpload/aril-ui-fileUpload.mjs +0 -5
- package/esm2022/ui/fileUpload/index.mjs +0 -2
- package/esm2022/ui/fileUpload/src/file-upload.component.mjs +0 -73
- package/esm2022/ui/form/aril-ui-form.mjs +0 -5
- package/esm2022/ui/form/index.mjs +0 -22
- package/esm2022/ui/form/src/form-submit-button.component.mjs +0 -40
- package/esm2022/ui/form/src/form.component.mjs +0 -27
- package/esm2022/ui/img-viewer/aril-ui-img-viewer.mjs +0 -5
- package/esm2022/ui/img-viewer/index.mjs +0 -2
- package/esm2022/ui/img-viewer/src/img-viewer.component.mjs +0 -57
- package/esm2022/ui/index.mjs +0 -2
- package/esm2022/ui/json-diff-comparison/aril-ui-json-diff-comparison.mjs +0 -5
- package/esm2022/ui/json-diff-comparison/index.mjs +0 -2
- package/esm2022/ui/json-diff-comparison/src/json-diff.component.mjs +0 -49
- package/esm2022/ui/lib/aril-ui-lib.mjs +0 -5
- package/esm2022/ui/lib/index.mjs +0 -16
- package/esm2022/ui/lib/src/form/form-error-message.component.mjs +0 -33
- package/esm2022/ui/lib/src/form/form-error-message.directive.mjs +0 -34
- package/esm2022/ui/lib/src/form/form-field-builder.mjs +0 -23
- package/esm2022/ui/lib/src/form/form-validation.mjs +0 -14
- package/esm2022/ui/lib/src/grid/enum-color-picker.pipe.mjs +0 -35
- package/esm2022/ui/lib/src/grid/flex-grid.directive.mjs +0 -21
- package/esm2022/ui/lib/src/input/baseInput.mjs +0 -24
- package/esm2022/ui/lib/src/input/common-input-validators.service.mjs +0 -49
- package/esm2022/ui/lib/src/input/dx-input-error-message.pipe.mjs +0 -22
- package/esm2022/ui/lib/src/input/input-disabled.directive.mjs +0 -25
- package/esm2022/ui/lib/src/input/input-error-message.pipe.mjs +0 -63
- package/esm2022/ui/lib/src/input/input-transforms.mjs +0 -8
- package/esm2022/ui/lib/src/input/value-accessor.directive.mjs +0 -38
- package/esm2022/ui/loader/aril-ui-loader.mjs +0 -5
- package/esm2022/ui/loader/index.mjs +0 -2
- package/esm2022/ui/loader/src/loader.component.mjs +0 -14
- package/esm2022/ui/mask/aril-ui-mask.mjs +0 -5
- package/esm2022/ui/mask/index.mjs +0 -2
- package/esm2022/ui/mask/src/mask.component.mjs +0 -35
- package/esm2022/ui/multiSelect/aril-ui-multiSelect.mjs +0 -5
- package/esm2022/ui/multiSelect/index.mjs +0 -2
- package/esm2022/ui/multiSelect/src/interfaces.mjs +0 -2
- package/esm2022/ui/multiSelect/src/multi-select.component.mjs +0 -57
- package/esm2022/ui/number/aril-ui-number.mjs +0 -5
- package/esm2022/ui/number/index.mjs +0 -2
- package/esm2022/ui/number/src/number.component.mjs +0 -38
- package/esm2022/ui/operation-types-dialog/aril-ui-operation-types-dialog.mjs +0 -5
- package/esm2022/ui/operation-types-dialog/index.mjs +0 -2
- package/esm2022/ui/operation-types-dialog/src/operation-types-dialog.component.mjs +0 -91
- package/esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs +0 -5
- package/esm2022/ui/overlayPanel/index.mjs +0 -2
- package/esm2022/ui/overlayPanel/src/overlay-panel.component.mjs +0 -20
- package/esm2022/ui/panel/aril-ui-panel.mjs +0 -5
- package/esm2022/ui/panel/index.mjs +0 -2
- package/esm2022/ui/panel/src/panel.component.mjs +0 -33
- package/esm2022/ui/password/aril-ui-password.mjs +0 -5
- package/esm2022/ui/password/index.mjs +0 -2
- package/esm2022/ui/password/src/password.component.mjs +0 -29
- package/esm2022/ui/pdf-viewer/aril-ui-pdf-viewer.mjs +0 -5
- package/esm2022/ui/pdf-viewer/index.mjs +0 -2
- package/esm2022/ui/pdf-viewer/src/pdf-viewer.component.mjs +0 -27
- package/esm2022/ui/progressbar/aril-ui-progressbar.mjs +0 -5
- package/esm2022/ui/progressbar/index.mjs +0 -2
- package/esm2022/ui/progressbar/src/progressbar.component.mjs +0 -18
- package/esm2022/ui/radioButton/aril-ui-radioButton.mjs +0 -5
- package/esm2022/ui/radioButton/index.mjs +0 -2
- package/esm2022/ui/radioButton/src/radio-button.component.mjs +0 -30
- package/esm2022/ui/relativeDateSelector/aril-ui-relativeDateSelector.mjs +0 -5
- package/esm2022/ui/relativeDateSelector/index.mjs +0 -2
- package/esm2022/ui/relativeDateSelector/src/enum.mjs +0 -31
- package/esm2022/ui/relativeDateSelector/src/relative-date-selector.component.mjs +0 -248
- package/esm2022/ui/selectBox/aril-ui-selectBox.mjs +0 -5
- package/esm2022/ui/selectBox/index.mjs +0 -2
- package/esm2022/ui/selectBox/src/interfaces.mjs +0 -2
- package/esm2022/ui/selectBox/src/select-box.component.mjs +0 -67
- package/esm2022/ui/switch/aril-ui-switch.mjs +0 -5
- package/esm2022/ui/switch/index.mjs +0 -2
- package/esm2022/ui/switch/src/switch.component.mjs +0 -23
- package/esm2022/ui/table/aril-ui-table.mjs +0 -5
- package/esm2022/ui/table/index.mjs +0 -131
- package/esm2022/ui/table/src/export-overlay-panel.component.mjs +0 -321
- package/esm2022/ui/table/src/interfaces.mjs +0 -44
- package/esm2022/ui/table/src/table-column.component.mjs +0 -31
- package/esm2022/ui/table/src/table.component.mjs +0 -334
- package/esm2022/ui/table-expand/aril-ui-table-expand.mjs +0 -5
- package/esm2022/ui/table-expand/index.mjs +0 -61
- package/esm2022/ui/table-expand/src/table-column.component.mjs +0 -25
- package/esm2022/ui/table-expand/src/table-expand-area.component.mjs +0 -17
- package/esm2022/ui/table-expand/src/table.component.mjs +0 -99
- package/esm2022/ui/tag/aril-ui-tag.mjs +0 -5
- package/esm2022/ui/tag/index.mjs +0 -2
- package/esm2022/ui/tag/src/interface.mjs +0 -2
- package/esm2022/ui/tag/src/tag.component.mjs +0 -20
- package/esm2022/ui/tagBox/aril-ui-tagBox.mjs +0 -5
- package/esm2022/ui/tagBox/index.mjs +0 -2
- package/esm2022/ui/tagBox/src/tag-box.component.mjs +0 -55
- package/esm2022/ui/text/aril-ui-text.mjs +0 -5
- package/esm2022/ui/text/index.mjs +0 -2
- package/esm2022/ui/text/src/text.component.mjs +0 -47
- package/esm2022/ui/textArea/aril-ui-textArea.mjs +0 -5
- package/esm2022/ui/textArea/index.mjs +0 -2
- package/esm2022/ui/textArea/src/text-area.component.mjs +0 -27
- package/esm2022/ui/toggle-button/aril-ui-toggle-button.mjs +0 -5
- package/esm2022/ui/toggle-button/index.mjs +0 -2
- package/esm2022/ui/toggle-button/src/toggle-button.component.mjs +0 -25
- package/esm2022/ui/tooltip/aril-ui-tooltip.mjs +0 -5
- package/esm2022/ui/tooltip/index.mjs +0 -2
- package/esm2022/ui/tooltip/src/tooltip-component.mjs +0 -23
- package/esm2022/ui/translate-input/aril-ui-translate-input.mjs +0 -5
- package/esm2022/ui/translate-input/index.mjs +0 -2
- package/esm2022/ui/translate-input/src/aril-lang-modal/aril-lang-modal.component.mjs +0 -64
- package/esm2022/ui/translate-input/src/aril-lang-modal/constants.mjs +0 -15
- package/esm2022/ui/translate-input/src/aril-translate-input.component.mjs +0 -128
- package/esm2022/ui/translate-input/src/interface.mjs +0 -2
- package/esm2022/ui/tree/aril-ui-tree.mjs +0 -5
- package/esm2022/ui/tree/index.mjs +0 -2
- package/esm2022/ui/tree/src/tree.component.mjs +0 -53
- package/esm2022/ui/treeSelect/aril-ui-treeSelect.mjs +0 -5
- package/esm2022/ui/treeSelect/index.mjs +0 -2
- package/esm2022/ui/treeSelect/src/treeSelect.component.mjs +0 -41
- package/esm2022/ui/treeTable/aril-ui-treeTable.mjs +0 -5
- package/esm2022/ui/treeTable/index.mjs +0 -2
- package/esm2022/ui/treeTable/src/tree-table.component.mjs +0 -55
- package/esm2022/ui/value/aril-ui-value.mjs +0 -5
- package/esm2022/ui/value/index.mjs +0 -2
- package/esm2022/ui/value/src/value.component.mjs +0 -207
- package/esm2022/ui-business/aril-ui-business.mjs +0 -5
- package/esm2022/ui-business/assetPicker/aril-ui-business-assetPicker.mjs +0 -5
- package/esm2022/ui-business/assetPicker/index.mjs +0 -2
- package/esm2022/ui-business/assetPicker/src/asset-picker.component.mjs +0 -182
- package/esm2022/ui-business/assetPicker/src/interface.mjs +0 -2
- package/esm2022/ui-business/detailed-overlay-panel/aril-ui-business-detailed-overlay-panel.mjs +0 -5
- package/esm2022/ui-business/detailed-overlay-panel/index.mjs +0 -2
- package/esm2022/ui-business/detailed-overlay-panel/src/detailed-overlay-panel.component.mjs +0 -61
- package/esm2022/ui-business/detailed-overlay-panel/src/interface.mjs +0 -19
- package/esm2022/ui-business/enumPicker/aril-ui-business-enumPicker.mjs +0 -5
- package/esm2022/ui-business/enumPicker/index.mjs +0 -2
- package/esm2022/ui-business/enumPicker/src/enum-picker.component.mjs +0 -124
- package/esm2022/ui-business/enumPicker/src/interface.mjs +0 -2
- package/esm2022/ui-business/image-viewer/aril-ui-business-image-viewer.mjs +0 -5
- package/esm2022/ui-business/image-viewer/index.mjs +0 -2
- package/esm2022/ui-business/image-viewer/src/aril-image-viewer.component.mjs +0 -111
- package/esm2022/ui-business/index.mjs +0 -2
- package/esm2022/ui-business/multiple-ref-value/aril-ui-business-multiple-ref-value.mjs +0 -5
- package/esm2022/ui-business/multiple-ref-value/index.mjs +0 -2
- package/esm2022/ui-business/multiple-ref-value/src/multiple-ref-value.component.mjs +0 -23
- package/esm2022/ui-business/notification-templates-dialog/aril-ui-business-notification-templates-dialog.mjs +0 -5
- package/esm2022/ui-business/notification-templates-dialog/index.mjs +0 -2
- package/esm2022/ui-business/notification-templates-dialog/src/interface.mjs +0 -8
- package/esm2022/ui-business/notification-templates-dialog/src/notification-templates-dialog.component.mjs +0 -56
- package/esm2022/ui-business/operation-types-dialog/aril-ui-business-operation-types-dialog.mjs +0 -5
- package/esm2022/ui-business/operation-types-dialog/index.mjs +0 -2
- package/esm2022/ui-business/operation-types-dialog/src/operation-types-dialog.component.mjs +0 -76
- package/esm2022/ui-business/ref-value/aril-ui-business-ref-value.mjs +0 -5
- package/esm2022/ui-business/ref-value/index.mjs +0 -2
- package/esm2022/ui-business/ref-value/src/ref-value.component.mjs +0 -39
- package/esm2022/ui-business/rolePicker/aril-ui-business-rolePicker.mjs +0 -5
- package/esm2022/ui-business/rolePicker/index.mjs +0 -2
- package/esm2022/ui-business/rolePicker/src/interface.mjs +0 -2
- package/esm2022/ui-business/rolePicker/src/role-picker.component.mjs +0 -71
- package/esm2022/ui-business/userPicker/aril-ui-business-userPicker.mjs +0 -5
- package/esm2022/ui-business/userPicker/index.mjs +0 -2
- package/esm2022/ui-business/userPicker/src/interface.mjs +0 -2
- package/esm2022/ui-business/userPicker/src/user-picker.component.mjs +0 -43
- package/esm2022/util/aril-util.mjs +0 -5
- package/esm2022/util/block/aril-util-block.mjs +0 -5
- package/esm2022/util/block/index.mjs +0 -2
- package/esm2022/util/block/src/block.mjs +0 -64
- package/esm2022/util/custom_pages/aril-util-custom_pages.mjs +0 -5
- package/esm2022/util/custom_pages/index.mjs +0 -2
- package/esm2022/util/custom_pages/src/notFound.component.mjs +0 -65
- package/esm2022/util/directives/aril-util-directives.mjs +0 -5
- package/esm2022/util/directives/index.mjs +0 -4
- package/esm2022/util/directives/src/detail-page-customization/detail-page-customization.directive.mjs +0 -298
- package/esm2022/util/directives/src/detail-page-customization/index.mjs +0 -3
- package/esm2022/util/directives/src/detail-page-customization/models.mjs +0 -4
- package/esm2022/util/directives/src/dialog-component/plugin-dialog.component.mjs +0 -26
- package/esm2022/util/directives/src/dialog-service/plugin-dialog.service.mjs +0 -16
- package/esm2022/util/index.mjs +0 -2
- package/esm2022/util/init-event/aril-util-init-event.mjs +0 -5
- package/esm2022/util/init-event/index.mjs +0 -2
- package/esm2022/util/init-event/src/init-event.directive.mjs +0 -22
- package/esm2022/util/lib/aril-util-lib.mjs +0 -5
- package/esm2022/util/lib/index.mjs +0 -5
- package/esm2022/util/lib/src/interfaces.mjs +0 -4
- package/esm2022/util/lib/src/module-router.mjs +0 -16
- package/esm2022/util/lib/src/types.mjs +0 -6
- package/esm2022/util/lib/src/validators/iban.validator.mjs +0 -189
- package/esm2022/util/lib/src/validators/index.mjs +0 -5
- package/esm2022/util/lib/src/validators/max-array-length.validator.mjs +0 -16
- package/esm2022/util/lib/src/validators/min-array-length.validator.mjs +0 -16
- package/esm2022/util/lib/src/validators/tckn.validator.mjs +0 -39
- package/esm2022/util/lib/src/validators/validators.mjs +0 -16
- package/esm2022/util/loaders/aril-util-loaders.mjs +0 -5
- package/esm2022/util/loaders/index.mjs +0 -3
- package/esm2022/util/loaders/script/script.loader.service.mjs +0 -61
- package/esm2022/util/loaders/style/style.loader.service.mjs +0 -61
- package/esm2022/util/pipes/aril-util-pipes.mjs +0 -5
- package/esm2022/util/pipes/index.mjs +0 -7
- package/esm2022/util/pipes/src/distance-to-now.pipe.mjs +0 -38
- package/esm2022/util/pipes/src/get-column-by-field.pipe.mjs +0 -17
- package/esm2022/util/pipes/src/parse.pipe.mjs +0 -22
- package/esm2022/util/pipes/src/round-number.pipe.mjs +0 -65
- package/esm2022/util/pipes/src/safe.pipe.mjs +0 -34
- package/esm2022/util/pipes/src/translate-json/index.mjs +0 -2
- package/esm2022/util/pipes/src/translate-json/translate-json.pipe.mjs +0 -41
- package/esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs +0 -5
- package/esm2022/util/primitive-extensions/index.mjs +0 -5
- package/esm2022/util/primitive-extensions/src/boolean.extensions.mjs +0 -2
- package/esm2022/util/primitive-extensions/src/date.extensions.mjs +0 -116
- package/esm2022/util/primitive-extensions/src/number.extensions.mjs +0 -39
- package/esm2022/util/primitive-extensions/src/string.extensions.mjs +0 -23
- package/esm2022/util/pub-sub/aril-util-pub-sub.mjs +0 -5
- package/esm2022/util/pub-sub/index.mjs +0 -2
- package/esm2022/util/pub-sub/src/pub-sub.service.mjs +0 -30
- package/esm2022/util/sync-active-tab-route/aril-util-sync-active-tab-route.mjs +0 -5
- package/esm2022/util/sync-active-tab-route/index.mjs +0 -2
- package/esm2022/util/sync-active-tab-route/src/sync-active-tab-route.directive.mjs +0 -45
- package/esm2022/util/unwrap/aril-util-unwrap.mjs +0 -5
- package/esm2022/util/unwrap/index.mjs +0 -2
- package/esm2022/util/unwrap/src/unwrap-tag.directive.mjs +0 -24
- package/fesm2022/aril-app.component-hxaLgwmC.mjs +0 -81
- package/fesm2022/aril-app.component-hxaLgwmC.mjs.map +0 -1
- package/fesm2022/aril-boot-config-api.mjs +0 -126
- package/fesm2022/aril-boot-config-api.mjs.map +0 -1
- package/fesm2022/aril-boot-config-apps.mjs +0 -138
- package/fesm2022/aril-boot-config-apps.mjs.map +0 -1
- package/fesm2022/aril-boot-config-plugins.mjs +0 -159
- package/fesm2022/aril-boot-config-plugins.mjs.map +0 -1
- package/fesm2022/aril-boot-config-translate.mjs +0 -72
- package/fesm2022/aril-boot-config-translate.mjs.map +0 -1
- package/fesm2022/aril-boot-host.mjs +0 -108
- package/fesm2022/aril-boot-host.mjs.map +0 -1
- package/fesm2022/aril-boot-mfe-app.component-s1a-tkOD.mjs +0 -80
- package/fesm2022/aril-boot-mfe-app.component-s1a-tkOD.mjs.map +0 -1
- package/fesm2022/aril-boot-mfe-aril-boot-mfe-wLTqwDtz.mjs +0 -369
- package/fesm2022/aril-boot-mfe-aril-boot-mfe-wLTqwDtz.mjs.map +0 -1
- package/fesm2022/aril-boot-mfe.mjs +0 -19
- package/fesm2022/aril-boot-mfe.mjs.map +0 -1
- package/fesm2022/aril-boot.mjs +0 -8
- package/fesm2022/aril-boot.mjs.map +0 -1
- package/fesm2022/aril-http.mjs +0 -437
- package/fesm2022/aril-http.mjs.map +0 -1
- package/fesm2022/aril-i18n.mjs +0 -71
- package/fesm2022/aril-i18n.mjs.map +0 -1
- package/fesm2022/aril-keycloak.mjs +0 -99
- package/fesm2022/aril-keycloak.mjs.map +0 -1
- package/fesm2022/aril-provider.mjs +0 -74
- package/fesm2022/aril-provider.mjs.map +0 -1
- package/fesm2022/aril-theme-layout.mjs +0 -3015
- package/fesm2022/aril-theme-layout.mjs.map +0 -1
- package/fesm2022/aril-theme.mjs +0 -8
- package/fesm2022/aril-theme.mjs.map +0 -1
- package/fesm2022/aril-ui-autoComplete.mjs +0 -116
- package/fesm2022/aril-ui-autoComplete.mjs.map +0 -1
- package/fesm2022/aril-ui-badge.mjs +0 -66
- package/fesm2022/aril-ui-badge.mjs.map +0 -1
- package/fesm2022/aril-ui-business-assetPicker.mjs +0 -189
- package/fesm2022/aril-ui-business-assetPicker.mjs.map +0 -1
- package/fesm2022/aril-ui-business-detailed-overlay-panel.mjs +0 -68
- package/fesm2022/aril-ui-business-detailed-overlay-panel.mjs.map +0 -1
- package/fesm2022/aril-ui-business-enumPicker.mjs +0 -131
- package/fesm2022/aril-ui-business-enumPicker.mjs.map +0 -1
- package/fesm2022/aril-ui-business-image-viewer.mjs +0 -118
- package/fesm2022/aril-ui-business-image-viewer.mjs.map +0 -1
- package/fesm2022/aril-ui-business-multiple-ref-value.mjs +0 -30
- package/fesm2022/aril-ui-business-multiple-ref-value.mjs.map +0 -1
- package/fesm2022/aril-ui-business-notification-templates-dialog.mjs +0 -70
- package/fesm2022/aril-ui-business-notification-templates-dialog.mjs.map +0 -1
- package/fesm2022/aril-ui-business-operation-types-dialog.mjs +0 -83
- package/fesm2022/aril-ui-business-operation-types-dialog.mjs.map +0 -1
- package/fesm2022/aril-ui-business-ref-value.mjs +0 -46
- package/fesm2022/aril-ui-business-ref-value.mjs.map +0 -1
- package/fesm2022/aril-ui-business-rolePicker.mjs +0 -78
- package/fesm2022/aril-ui-business-rolePicker.mjs.map +0 -1
- package/fesm2022/aril-ui-business-userPicker.mjs +0 -50
- package/fesm2022/aril-ui-business-userPicker.mjs.map +0 -1
- package/fesm2022/aril-ui-business.mjs +0 -8
- package/fesm2022/aril-ui-business.mjs.map +0 -1
- package/fesm2022/aril-ui-button.mjs +0 -62
- package/fesm2022/aril-ui-button.mjs.map +0 -1
- package/fesm2022/aril-ui-calendar.mjs +0 -231
- package/fesm2022/aril-ui-calendar.mjs.map +0 -1
- package/fesm2022/aril-ui-charts.mjs +0 -1666
- package/fesm2022/aril-ui-charts.mjs.map +0 -1
- package/fesm2022/aril-ui-checkbox.mjs +0 -50
- package/fesm2022/aril-ui-checkbox.mjs.map +0 -1
- package/fesm2022/aril-ui-chip.mjs +0 -136
- package/fesm2022/aril-ui-chip.mjs.map +0 -1
- package/fesm2022/aril-ui-collapse-reorder-list.mjs +0 -60
- package/fesm2022/aril-ui-collapse-reorder-list.mjs.map +0 -1
- package/fesm2022/aril-ui-dxEditor.mjs +0 -33
- package/fesm2022/aril-ui-dxEditor.mjs.map +0 -1
- package/fesm2022/aril-ui-dxField.mjs +0 -26
- package/fesm2022/aril-ui-dxField.mjs.map +0 -1
- package/fesm2022/aril-ui-editor.mjs +0 -203
- package/fesm2022/aril-ui-editor.mjs.map +0 -1
- package/fesm2022/aril-ui-field.mjs +0 -52
- package/fesm2022/aril-ui-field.mjs.map +0 -1
- package/fesm2022/aril-ui-fileUpload.mjs +0 -80
- package/fesm2022/aril-ui-fileUpload.mjs.map +0 -1
- package/fesm2022/aril-ui-form.mjs +0 -86
- package/fesm2022/aril-ui-form.mjs.map +0 -1
- package/fesm2022/aril-ui-img-viewer.mjs +0 -64
- package/fesm2022/aril-ui-img-viewer.mjs.map +0 -1
- package/fesm2022/aril-ui-json-diff-comparison.mjs +0 -56
- package/fesm2022/aril-ui-json-diff-comparison.mjs.map +0 -1
- package/fesm2022/aril-ui-lib.mjs +0 -376
- package/fesm2022/aril-ui-lib.mjs.map +0 -1
- package/fesm2022/aril-ui-loader.mjs +0 -21
- package/fesm2022/aril-ui-loader.mjs.map +0 -1
- package/fesm2022/aril-ui-mask.mjs +0 -42
- package/fesm2022/aril-ui-mask.mjs.map +0 -1
- package/fesm2022/aril-ui-multiSelect.mjs +0 -64
- package/fesm2022/aril-ui-multiSelect.mjs.map +0 -1
- package/fesm2022/aril-ui-number.mjs +0 -45
- package/fesm2022/aril-ui-number.mjs.map +0 -1
- package/fesm2022/aril-ui-operation-types-dialog.mjs +0 -98
- package/fesm2022/aril-ui-operation-types-dialog.mjs.map +0 -1
- package/fesm2022/aril-ui-overlayPanel.mjs +0 -27
- package/fesm2022/aril-ui-overlayPanel.mjs.map +0 -1
- package/fesm2022/aril-ui-panel.mjs +0 -40
- package/fesm2022/aril-ui-panel.mjs.map +0 -1
- package/fesm2022/aril-ui-password.mjs +0 -36
- package/fesm2022/aril-ui-password.mjs.map +0 -1
- package/fesm2022/aril-ui-pdf-viewer.mjs +0 -34
- package/fesm2022/aril-ui-pdf-viewer.mjs.map +0 -1
- package/fesm2022/aril-ui-progressbar.mjs +0 -25
- package/fesm2022/aril-ui-progressbar.mjs.map +0 -1
- package/fesm2022/aril-ui-radioButton.mjs +0 -37
- package/fesm2022/aril-ui-radioButton.mjs.map +0 -1
- package/fesm2022/aril-ui-relativeDateSelector.mjs +0 -285
- package/fesm2022/aril-ui-relativeDateSelector.mjs.map +0 -1
- package/fesm2022/aril-ui-selectBox.mjs +0 -74
- package/fesm2022/aril-ui-selectBox.mjs.map +0 -1
- package/fesm2022/aril-ui-switch.mjs +0 -30
- package/fesm2022/aril-ui-switch.mjs.map +0 -1
- package/fesm2022/aril-ui-table-expand.mjs +0 -194
- package/fesm2022/aril-ui-table-expand.mjs.map +0 -1
- package/fesm2022/aril-ui-table.mjs +0 -833
- package/fesm2022/aril-ui-table.mjs.map +0 -1
- package/fesm2022/aril-ui-tag.mjs +0 -27
- package/fesm2022/aril-ui-tag.mjs.map +0 -1
- package/fesm2022/aril-ui-tagBox.mjs +0 -62
- package/fesm2022/aril-ui-tagBox.mjs.map +0 -1
- package/fesm2022/aril-ui-text.mjs +0 -54
- package/fesm2022/aril-ui-text.mjs.map +0 -1
- package/fesm2022/aril-ui-textArea.mjs +0 -34
- package/fesm2022/aril-ui-textArea.mjs.map +0 -1
- package/fesm2022/aril-ui-toggle-button.mjs +0 -32
- package/fesm2022/aril-ui-toggle-button.mjs.map +0 -1
- package/fesm2022/aril-ui-tooltip.mjs +0 -30
- package/fesm2022/aril-ui-tooltip.mjs.map +0 -1
- package/fesm2022/aril-ui-translate-input.mjs +0 -207
- package/fesm2022/aril-ui-translate-input.mjs.map +0 -1
- package/fesm2022/aril-ui-tree.mjs +0 -60
- package/fesm2022/aril-ui-tree.mjs.map +0 -1
- package/fesm2022/aril-ui-treeSelect.mjs +0 -48
- package/fesm2022/aril-ui-treeSelect.mjs.map +0 -1
- package/fesm2022/aril-ui-treeTable.mjs +0 -62
- package/fesm2022/aril-ui-treeTable.mjs.map +0 -1
- package/fesm2022/aril-ui-value.mjs +0 -214
- package/fesm2022/aril-ui-value.mjs.map +0 -1
- package/fesm2022/aril-ui.mjs +0 -8
- package/fesm2022/aril-ui.mjs.map +0 -1
- package/fesm2022/aril-util-block.mjs +0 -71
- package/fesm2022/aril-util-block.mjs.map +0 -1
- package/fesm2022/aril-util-custom_pages.mjs +0 -72
- package/fesm2022/aril-util-custom_pages.mjs.map +0 -1
- package/fesm2022/aril-util-directives.mjs +0 -344
- package/fesm2022/aril-util-directives.mjs.map +0 -1
- package/fesm2022/aril-util-init-event.mjs +0 -29
- package/fesm2022/aril-util-init-event.mjs.map +0 -1
- package/fesm2022/aril-util-lib.mjs +0 -307
- package/fesm2022/aril-util-lib.mjs.map +0 -1
- package/fesm2022/aril-util-loaders.mjs +0 -126
- package/fesm2022/aril-util-loaders.mjs.map +0 -1
- package/fesm2022/aril-util-pipes.mjs +0 -213
- package/fesm2022/aril-util-pipes.mjs.map +0 -1
- package/fesm2022/aril-util-primitive-extensions.mjs +0 -179
- package/fesm2022/aril-util-primitive-extensions.mjs.map +0 -1
- package/fesm2022/aril-util-pub-sub.mjs +0 -37
- package/fesm2022/aril-util-pub-sub.mjs.map +0 -1
- package/fesm2022/aril-util-sync-active-tab-route.mjs +0 -52
- package/fesm2022/aril-util-sync-active-tab-route.mjs.map +0 -1
- package/fesm2022/aril-util-unwrap.mjs +0 -31
- package/fesm2022/aril-util-unwrap.mjs.map +0 -1
- package/fesm2022/aril-util.mjs +0 -8
- package/fesm2022/aril-util.mjs.map +0 -1
- package/fesm2022/aril.mjs +0 -456
- package/fesm2022/aril.mjs.map +0 -1
- package/http/index.d.ts +0 -8
- package/http/lib/enums.d.ts +0 -31
- package/http/lib/interfaces.d.ts +0 -27
- package/http/src/httpBackend.d.ts +0 -8
- package/http/src/httpClient.d.ts +0 -9
- package/http/src/interceptor/accept-language.interceptor.d.ts +0 -2
- package/http/src/serviceBase.d.ts +0 -8
- package/http/src/serviceMockBase.d.ts +0 -6
- package/http/src/serviceRequest.d.ts +0 -4
- package/http/src/serviceStateMethods.d.ts +0 -17
- package/i18n/src/folder-name-token.d.ts +0 -2
- package/i18n/src/i18n.module.d.ts +0 -7
- package/i18n/src/loader.d.ts +0 -8
- package/i18n/src/provideI18n.d.ts +0 -2
- package/i18n/src/provideScope.d.ts +0 -5
- package/index.d.ts +0 -5
- package/keycloak/index.d.ts +0 -1
- package/keycloak/src/auth.interceptor.d.ts +0 -3
- package/provider/src/index.d.ts +0 -4
- package/provider/src/prodiveHost.d.ts +0 -3
- package/provider/src/prodiveHostRouter.d.ts +0 -2
- package/provider/src/provideHostKeycloak.d.ts +0 -5
- package/provider/src/provideLocaleId.d.ts +0 -2
- package/scripts/util/blockui.min.js +0 -7
- package/styles/ui/ui.common.scss +0 -42
- package/styles/util/blockui.css +0 -56
- package/theme/index.d.ts +0 -1
- package/theme/layout/app/breadcrumb/app.breadcrumb.component.d.ts +0 -25
- package/theme/layout/app/chatbot/app.chatbot.component.d.ts +0 -35
- package/theme/layout/app/expandableMenu/expandable-menu.component.d.ts +0 -72
- package/theme/layout/app/favorite-pages/favorite-pages-sidebar.component.d.ts +0 -2031
- package/theme/layout/app/favorite-pages/favorite-pages.service.d.ts +0 -56
- package/theme/layout/app/favorite-pages/modals/add-edit-favorite-modal/add-edit-favorite-modal.component.d.ts +0 -36
- package/theme/layout/app/general-search/general-search.component.d.ts +0 -22
- package/theme/layout/app/general-search/helpers.d.ts +0 -7
- package/theme/layout/app/general-search/models.d.ts +0 -131
- package/theme/layout/app/history/history-sidebar.component.d.ts +0 -2018
- package/theme/layout/app/history/history.service.d.ts +0 -36
- package/theme/layout/app/layout/app.layout.component.d.ts +0 -47
- package/theme/layout/app/layout/mfe.layout.component.d.ts +0 -10
- package/theme/layout/app/menu/app.menu.component.html +0 -14
- package/theme/layout/app/menu/app.menu.component.ts +0 -350
- package/theme/layout/app/notifications/notifications-sidebar.component.d.ts +0 -2306
- package/theme/layout/app/profileSidebar/app.profilesidebar.component.d.ts +0 -29
- package/theme/layout/app/profileSidebar/modals/change-password-modal/change-password-modal.component.d.ts +0 -30
- package/theme/layout/app/profileSidebar/modals/edit-profile-modal/edit-profile-modal.component.d.ts +0 -52
- package/theme/layout/app/profileSidebar/profile.service.d.ts +0 -72
- package/theme/layout/app/sidebar/app.sidebar.component.html +0 -24
- package/theme/layout/app/sidebar/app.sidebar.component.ts +0 -44
- package/theme/layout/app/site-map/site-map-sidebar.component.d.ts +0 -2025
- package/theme/layout/app/static-sidebar/static-sidebar.component.d.ts +0 -57
- package/theme/layout/app/topbar/app.topbar.component.d.ts +0 -35
- package/theme/layout/index.d.ts +0 -7
- package/theme/layout/service/app.layout.service.d.ts +0 -69
- package/theme/layout/service/app.menu.service.d.ts +0 -22
- package/theme/layout/service/breadcrumb.service.d.ts +0 -10
- package/theme/layout/service/interfaces/enum.d.ts +0 -12
- package/theme/layout/service/interfaces/interfaces.d.ts +0 -131
- package/theme/layout/service/menuchangeevent.d.ts +0 -4
- package/theme/layout/service/notifications.service.d.ts +0 -12
- package/theme/layout/service/search.service.d.ts +0 -11
- package/theme/layout/service/selection-group.service.d.ts +0 -17
- package/theme/styles/theme/dark/blue/theme.scss +0 -14
- package/theme/styles/theme/dark/lena/theme.scss +0 -14
- package/theme/styles/theme/dark/orange/theme.scss +0 -14
- package/theme/styles/theme/dark/thor/theme.scss +0 -14
- package/theme/styles/theme/dark/yeap/theme.scss +0 -14
- package/theme/styles/theme/light/blue/theme.scss +0 -14
- package/theme/styles/theme/light/lena/theme.scss +0 -14
- package/theme/styles/theme/light/orange/theme.scss +0 -14
- package/theme/styles/theme/light/thor/theme.scss +0 -15
- package/theme/styles/theme/light/yeap/theme.scss +0 -14
- package/ui/autoComplete/src/auto-complete.component.d.ts +0 -31
- package/ui/autoComplete/src/interfaces.d.ts +0 -28
- package/ui/badge/src/badge.component.d.ts +0 -32
- package/ui/button/src/button.component.d.ts +0 -28
- package/ui/button/src/split-button.component.d.ts +0 -8
- package/ui/calendar/src/calendar.component.d.ts +0 -63
- package/ui/charts/index.d.ts +0 -12
- package/ui/charts/src/amCharts/column/column-chart.component.d.ts +0 -25
- package/ui/charts/src/amCharts/line/line-chart.component.d.ts +0 -26
- package/ui/charts/src/amCharts/pie/pie-chart.component.d.ts +0 -24
- package/ui/charts/src/highCharts/area/area-chart.component.d.ts +0 -20
- package/ui/charts/src/highCharts/bar/bar-chart.component.d.ts +0 -26
- package/ui/charts/src/highCharts/column/column-chart.component.d.ts +0 -28
- package/ui/charts/src/highCharts/gauge/solid-gauge.component.d.ts +0 -38
- package/ui/charts/src/highCharts/heatmap/heatMap-chart.component.d.ts +0 -32
- package/ui/charts/src/highCharts/line/line-chart-datetime-axis.component.d.ts +0 -24
- package/ui/charts/src/highCharts/line/line-chart-series.component.d.ts +0 -21
- package/ui/charts/src/highCharts/line/line-chart.component.d.ts +0 -21
- package/ui/charts/src/highCharts/pie/pie-chart.component.d.ts +0 -27
- package/ui/charts/src/theme/theme.d.ts +0 -5
- package/ui/checkbox/src/check-box.component.d.ts +0 -12
- package/ui/checkbox/src/tri-state-checkbox.component.d.ts +0 -9
- package/ui/chip/index.d.ts +0 -1
- package/ui/chip/src/chip.component.d.ts +0 -34
- package/ui/collapse-reorder-list/index.d.ts +0 -1
- package/ui/collapse-reorder-list/src/collapse-reorder-list.component.d.ts +0 -21
- package/ui/dxEditor/src/dx-editor.component.d.ts +0 -11
- package/ui/dxField/src/dx-field.component.d.ts +0 -10
- package/ui/editor/src/aril-editor.component.d.ts +0 -28
- package/ui/editor/src/types.d.ts +0 -23
- package/ui/field/src/field.component.d.ts +0 -30
- package/ui/fileUpload/src/file-upload.component.d.ts +0 -49
- package/ui/form/index.d.ts +0 -11
- package/ui/form/src/form-submit-button.component.d.ts +0 -14
- package/ui/form/src/form.component.d.ts +0 -8
- package/ui/img-viewer/index.d.ts +0 -1
- package/ui/img-viewer/src/img-viewer.component.d.ts +0 -13
- package/ui/index.d.ts +0 -1
- package/ui/json-diff-comparison/src/json-diff.component.d.ts +0 -13
- package/ui/lib/index.d.ts +0 -12
- package/ui/lib/src/form/form-error-message.component.d.ts +0 -9
- package/ui/lib/src/form/form-error-message.directive.d.ts +0 -14
- package/ui/lib/src/form/form-field-builder.d.ts +0 -8
- package/ui/lib/src/form/form-validation.d.ts +0 -2
- package/ui/lib/src/grid/enum-color-picker.pipe.d.ts +0 -9
- package/ui/lib/src/grid/flex-grid.directive.d.ts +0 -6
- package/ui/lib/src/input/baseInput.d.ts +0 -7
- package/ui/lib/src/input/common-input-validators.service.d.ts +0 -20
- package/ui/lib/src/input/dx-input-error-message.pipe.d.ts +0 -11
- package/ui/lib/src/input/input-disabled.directive.d.ts +0 -9
- package/ui/lib/src/input/input-error-message.pipe.d.ts +0 -10
- package/ui/lib/src/input/input-transforms.d.ts +0 -5
- package/ui/lib/src/input/value-accessor.directive.d.ts +0 -9
- package/ui/loader/src/loader.component.d.ts +0 -5
- package/ui/mask/src/mask.component.d.ts +0 -21
- package/ui/multiSelect/src/interfaces.d.ts +0 -32
- package/ui/multiSelect/src/multi-select.component.d.ts +0 -28
- package/ui/number/src/number.component.d.ts +0 -29
- package/ui/operation-types-dialog/src/operation-types-dialog.component.d.ts +0 -33
- package/ui/overlayPanel/src/overlay-panel.component.d.ts +0 -8
- package/ui/panel/src/panel.component.d.ts +0 -14
- package/ui/password/src/password.component.d.ts +0 -11
- package/ui/pdf-viewer/src/pdf-viewer.component.d.ts +0 -19
- package/ui/progressbar/src/progressbar.component.d.ts +0 -8
- package/ui/radioButton/src/radio-button.component.d.ts +0 -22
- package/ui/relativeDateSelector/index.d.ts +0 -1
- package/ui/relativeDateSelector/src/enum.d.ts +0 -26
- package/ui/relativeDateSelector/src/relative-date-selector.component.d.ts +0 -61
- package/ui/selectBox/src/interfaces.d.ts +0 -32
- package/ui/selectBox/src/select-box.component.d.ts +0 -30
- package/ui/switch/src/switch.component.d.ts +0 -8
- package/ui/table/index.d.ts +0 -35
- package/ui/table/src/export-overlay-panel.component.d.ts +0 -39
- package/ui/table/src/interfaces.d.ts +0 -145
- package/ui/table/src/table-column.component.d.ts +0 -19
- package/ui/table/src/table.component.d.ts +0 -107
- package/ui/table-expand/index.d.ts +0 -20
- package/ui/table-expand/src/table-column.component.d.ts +0 -28
- package/ui/table-expand/src/table-expand-area.component.d.ts +0 -14
- package/ui/table-expand/src/table.component.d.ts +0 -47
- package/ui/tag/index.d.ts +0 -1
- package/ui/tag/src/interface.d.ts +0 -1
- package/ui/tag/src/tag.component.d.ts +0 -15
- package/ui/tagBox/src/tag-box.component.d.ts +0 -17
- package/ui/text/src/text.component.d.ts +0 -18
- package/ui/textArea/src/text-area.component.d.ts +0 -12
- package/ui/toggle-button/index.d.ts +0 -1
- package/ui/toggle-button/src/toggle-button.component.d.ts +0 -10
- package/ui/tooltip/src/tooltip-component.d.ts +0 -14
- package/ui/translate-input/src/aril-lang-modal/aril-lang-modal.component.d.ts +0 -21
- package/ui/translate-input/src/aril-lang-modal/constants.d.ts +0 -2
- package/ui/translate-input/src/aril-translate-input.component.d.ts +0 -26
- package/ui/translate-input/src/interface.d.ts +0 -12
- package/ui/tree/src/tree.component.d.ts +0 -23
- package/ui/treeSelect/src/treeSelect.component.d.ts +0 -23
- package/ui/treeTable/src/tree-table.component.d.ts +0 -21
- package/ui/value/src/value.component.d.ts +0 -43
- package/ui-business/assetPicker/index.d.ts +0 -1
- package/ui-business/assetPicker/src/asset-picker.component.d.ts +0 -48
- package/ui-business/assetPicker/src/interface.d.ts +0 -74
- package/ui-business/detailed-overlay-panel/src/detailed-overlay-panel.component.d.ts +0 -31
- package/ui-business/detailed-overlay-panel/src/interface.d.ts +0 -54
- package/ui-business/enumPicker/index.d.ts +0 -1
- package/ui-business/enumPicker/src/enum-picker.component.d.ts +0 -47
- package/ui-business/enumPicker/src/interface.d.ts +0 -34
- package/ui-business/image-viewer/index.d.ts +0 -1
- package/ui-business/image-viewer/src/aril-image-viewer.component.d.ts +0 -20
- package/ui-business/index.d.ts +0 -1
- package/ui-business/multiple-ref-value/src/multiple-ref-value.component.d.ts +0 -16
- package/ui-business/notification-templates-dialog/src/interface.d.ts +0 -17
- package/ui-business/notification-templates-dialog/src/notification-templates-dialog.component.d.ts +0 -18
- package/ui-business/operation-types-dialog/src/operation-types-dialog.component.d.ts +0 -28
- package/ui-business/ref-value/src/ref-value.component.d.ts +0 -20
- package/ui-business/rolePicker/src/interface.d.ts +0 -44
- package/ui-business/rolePicker/src/role-picker.component.d.ts +0 -25
- package/ui-business/userPicker/index.d.ts +0 -1
- package/ui-business/userPicker/src/interface.d.ts +0 -25
- package/ui-business/userPicker/src/user-picker.component.d.ts +0 -18
- package/util/block/src/block.d.ts +0 -28
- package/util/custom_pages/src/notFound.component.d.ts +0 -5
- package/util/directives/src/detail-page-customization/detail-page-customization.directive.d.ts +0 -26
- package/util/directives/src/detail-page-customization/index.d.ts +0 -2
- package/util/directives/src/detail-page-customization/models.d.ts +0 -53
- package/util/directives/src/dialog-component/plugin-dialog.component.d.ts +0 -11
- package/util/directives/src/dialog-service/plugin-dialog.service.d.ts +0 -7
- package/util/index.d.ts +0 -1
- package/util/init-event/index.d.ts +0 -1
- package/util/init-event/src/init-event.directive.d.ts +0 -8
- package/util/lib/src/interfaces.d.ts +0 -41
- package/util/lib/src/module-router.d.ts +0 -5
- package/util/lib/src/types.d.ts +0 -2290
- package/util/lib/src/validators/iban.validator.d.ts +0 -7
- package/util/lib/src/validators/max-array-length.validator.d.ts +0 -7
- package/util/lib/src/validators/min-array-length.validator.d.ts +0 -7
- package/util/lib/src/validators/tckn.validator.d.ts +0 -7
- package/util/lib/src/validators/validators.d.ts +0 -7
- package/util/loaders/index.d.ts +0 -2
- package/util/loaders/script/script.loader.service.d.ts +0 -13
- package/util/loaders/style/style.loader.service.d.ts +0 -13
- package/util/pipes/src/distance-to-now.pipe.d.ts +0 -11
- package/util/pipes/src/get-column-by-field.pipe.d.ts +0 -11
- package/util/pipes/src/parse.pipe.d.ts +0 -7
- package/util/pipes/src/round-number.pipe.d.ts +0 -11
- package/util/pipes/src/safe.pipe.d.ts +0 -10
- package/util/pipes/src/translate-json/index.d.ts +0 -1
- package/util/pipes/src/translate-json/translate-json.pipe.d.ts +0 -10
- package/util/primitive-extensions/src/date.extensions.d.ts +0 -8
- package/util/primitive-extensions/src/number.extensions.d.ts +0 -12
- package/util/primitive-extensions/src/string.extensions.d.ts +0 -11
- package/util/pub-sub/src/pub-sub.service.d.ts +0 -21
- package/util/sync-active-tab-route/src/sync-active-tab-route.directive.d.ts +0 -17
- package/util/unwrap/src/unwrap-tag.directive.d.ts +0 -9
- /package/boot/config/api/{index.d.ts → index.ts} +0 -0
- /package/boot/config/apps/{index.d.ts → index.ts} +0 -0
- /package/boot/config/plugins/{index.d.ts → index.ts} +0 -0
- /package/boot/config/translate/{index.d.ts → index.ts} +0 -0
- /package/boot/host/{index.d.ts → index.ts} +0 -0
- /package/boot/mfe/{index.d.ts → index.ts} +0 -0
- /package/i18n/{index.d.ts → index.ts} +0 -0
- /package/provider/{index.d.ts → index.ts} +0 -0
- /package/{public-api.d.ts → public-api.ts} +0 -0
- /package/ui/autoComplete/{index.d.ts → index.ts} +0 -0
- /package/ui/badge/{index.d.ts → index.ts} +0 -0
- /package/ui/button/{index.d.ts → index.ts} +0 -0
- /package/ui/calendar/{index.d.ts → index.ts} +0 -0
- /package/ui/checkbox/{index.d.ts → index.ts} +0 -0
- /package/ui/dxEditor/{index.d.ts → index.ts} +0 -0
- /package/ui/dxField/{index.d.ts → index.ts} +0 -0
- /package/ui/editor/{index.d.ts → index.ts} +0 -0
- /package/ui/field/{index.d.ts → index.ts} +0 -0
- /package/ui/fileUpload/{index.d.ts → index.ts} +0 -0
- /package/ui/json-diff-comparison/{index.d.ts → index.ts} +0 -0
- /package/ui/loader/{index.d.ts → index.ts} +0 -0
- /package/ui/mask/{index.d.ts → index.ts} +0 -0
- /package/ui/multiSelect/{index.d.ts → index.ts} +0 -0
- /package/ui/number/{index.d.ts → index.ts} +0 -0
- /package/ui/operation-types-dialog/{index.d.ts → index.ts} +0 -0
- /package/ui/overlayPanel/{index.d.ts → index.ts} +0 -0
- /package/ui/panel/{index.d.ts → index.ts} +0 -0
- /package/ui/password/{index.d.ts → index.ts} +0 -0
- /package/ui/pdf-viewer/{index.d.ts → index.ts} +0 -0
- /package/ui/progressbar/{index.d.ts → index.ts} +0 -0
- /package/ui/radioButton/{index.d.ts → index.ts} +0 -0
- /package/ui/selectBox/{index.d.ts → index.ts} +0 -0
- /package/ui/switch/{index.d.ts → index.ts} +0 -0
- /package/ui/tagBox/{index.d.ts → index.ts} +0 -0
- /package/ui/text/{index.d.ts → index.ts} +0 -0
- /package/ui/textArea/{index.d.ts → index.ts} +0 -0
- /package/ui/tooltip/{index.d.ts → index.ts} +0 -0
- /package/ui/translate-input/{index.d.ts → index.ts} +0 -0
- /package/ui/tree/{index.d.ts → index.ts} +0 -0
- /package/ui/treeSelect/{index.d.ts → index.ts} +0 -0
- /package/ui/treeTable/{index.d.ts → index.ts} +0 -0
- /package/ui/value/{index.d.ts → index.ts} +0 -0
- /package/ui-business/detailed-overlay-panel/{index.d.ts → index.ts} +0 -0
- /package/ui-business/multiple-ref-value/{index.d.ts → index.ts} +0 -0
- /package/ui-business/notification-templates-dialog/{index.d.ts → index.ts} +0 -0
- /package/ui-business/operation-types-dialog/{index.d.ts → index.ts} +0 -0
- /package/ui-business/ref-value/{index.d.ts → index.ts} +0 -0
- /package/ui-business/rolePicker/{index.d.ts → index.ts} +0 -0
- /package/util/block/{index.d.ts → index.ts} +0 -0
- /package/util/custom_pages/{index.d.ts → index.ts} +0 -0
- /package/util/directives/{index.d.ts → index.ts} +0 -0
- /package/util/lib/{index.d.ts → index.ts} +0 -0
- /package/util/lib/src/validators/{index.d.ts → index.ts} +0 -0
- /package/util/pipes/{index.d.ts → index.ts} +0 -0
- /package/util/primitive-extensions/{index.d.ts → index.ts} +0 -0
- /package/util/primitive-extensions/src/{boolean.extensions.d.ts → boolean.extensions.ts} +0 -0
- /package/util/pub-sub/{index.d.ts → index.ts} +0 -0
- /package/util/sync-active-tab-route/{index.d.ts → index.ts} +0 -0
- /package/util/unwrap/{index.d.ts → index.ts} +0 -0
|
@@ -1,833 +0,0 @@
|
|
|
1
|
-
import * as i10 from '@angular/common';
|
|
2
|
-
import { JsonPipe, KeyValuePipe, NgFor, NgForOf, NgStyle, NgTemplateOutlet, SlicePipe } from '@angular/common';
|
|
3
|
-
import * as i0 from '@angular/core';
|
|
4
|
-
import { input, signal, effect, Component, ViewChild, TemplateRef, ContentChild, EventEmitter, Output, ContentChildren, Input, NgModule } from '@angular/core';
|
|
5
|
-
import * as i2 from '@angular/forms';
|
|
6
|
-
import { Validators, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
7
|
-
import { ButtonModule } from 'primeng/button';
|
|
8
|
-
import * as i7$1 from 'primeng/dropdown';
|
|
9
|
-
import { DropdownModule } from 'primeng/dropdown';
|
|
10
|
-
import * as i6$1 from 'primeng/icons/check';
|
|
11
|
-
import { CheckIcon } from 'primeng/icons/check';
|
|
12
|
-
import { MenuModule } from 'primeng/menu';
|
|
13
|
-
import * as i7 from 'primeng/orderlist';
|
|
14
|
-
import { OrderListModule } from 'primeng/orderlist';
|
|
15
|
-
import * as i8 from 'primeng/overlaypanel';
|
|
16
|
-
import { OverlayPanel, OverlayPanelModule } from 'primeng/overlaypanel';
|
|
17
|
-
import * as i12 from 'primeng/sidebar';
|
|
18
|
-
import { SidebarModule } from 'primeng/sidebar';
|
|
19
|
-
import * as i13 from 'primeng/table';
|
|
20
|
-
import { Table, TableModule } from 'primeng/table';
|
|
21
|
-
import * as i14 from 'primeng/toast';
|
|
22
|
-
import { ToastModule } from 'primeng/toast';
|
|
23
|
-
import * as i9 from 'primeng/tooltip';
|
|
24
|
-
import { TooltipModule } from 'primeng/tooltip';
|
|
25
|
-
import * as i3$1 from 'aril/ui/button';
|
|
26
|
-
import { ButtonComponent } from 'aril/ui/button';
|
|
27
|
-
import * as i5$1 from 'aril/ui/calendar';
|
|
28
|
-
import { CalendarComponent } from 'aril/ui/calendar';
|
|
29
|
-
import { CheckboxComponent } from 'aril/ui/checkbox';
|
|
30
|
-
import { FieldComponent } from 'aril/ui/field';
|
|
31
|
-
import * as i6 from 'aril/ui/form';
|
|
32
|
-
import { ARiLFormModule } from 'aril/ui/form';
|
|
33
|
-
import * as i11 from 'aril/ui/number';
|
|
34
|
-
import { NumberComponent } from 'aril/ui/number';
|
|
35
|
-
import { RadioButtonComponent } from 'aril/ui/radioButton';
|
|
36
|
-
import { TextComponent } from 'aril/ui/text';
|
|
37
|
-
import * as i15 from 'aril/ui/value';
|
|
38
|
-
import { ValueComponent } from 'aril/ui/value';
|
|
39
|
-
import * as i17 from 'aril/util/pipes';
|
|
40
|
-
import { GetColumnByFieldPipe, ParsePipe, SafePipe } from 'aril/util/pipes';
|
|
41
|
-
import { saveAs } from 'file-saver';
|
|
42
|
-
import { firstValueFrom, from, concatMap, interval, filter, take, map, toArray, finalize, switchMap, catchError, throwError } from 'rxjs';
|
|
43
|
-
import { API_CONFIGS } from 'aril/boot/config/api';
|
|
44
|
-
import * as i1 from '@angular/common/http';
|
|
45
|
-
import * as i3 from 'primeng/api';
|
|
46
|
-
import * as i4 from '@ngneat/transloco';
|
|
47
|
-
import * as i5 from 'aril/theme/layout';
|
|
48
|
-
import { ProxyTypes } from 'aril/http';
|
|
49
|
-
|
|
50
|
-
var DateFormat;
|
|
51
|
-
(function (DateFormat) {
|
|
52
|
-
DateFormat["Hour"] = "HH:mm";
|
|
53
|
-
DateFormat["Time"] = "dd/MMMM/yyyy HH:mm";
|
|
54
|
-
DateFormat["Second"] = "dd/MMMM/yyyy HH:mm:ss";
|
|
55
|
-
DateFormat["Minute"] = "dd/MMMM/yyyy HH:mm";
|
|
56
|
-
DateFormat["Day"] = "dd/MMMM/yyyy";
|
|
57
|
-
DateFormat["OnlyDay"] = "dd";
|
|
58
|
-
DateFormat["Month"] = "MMMM/yyyy";
|
|
59
|
-
DateFormat["MonthInt"] = "MM/yyyy";
|
|
60
|
-
DateFormat["OnlyMonth"] = "MMMM";
|
|
61
|
-
DateFormat["Year"] = "yyyy";
|
|
62
|
-
})(DateFormat || (DateFormat = {}));
|
|
63
|
-
var ExportType;
|
|
64
|
-
(function (ExportType) {
|
|
65
|
-
ExportType["Csv"] = "CSV";
|
|
66
|
-
ExportType["Excel"] = "EXCEL";
|
|
67
|
-
})(ExportType || (ExportType = {}));
|
|
68
|
-
var FilterOperand;
|
|
69
|
-
(function (FilterOperand) {
|
|
70
|
-
FilterOperand["EQ"] = "EQ";
|
|
71
|
-
FilterOperand["NOT_EQ"] = "NOT_EQ";
|
|
72
|
-
FilterOperand["IS_NULL"] = "IS_NULL";
|
|
73
|
-
FilterOperand["IS_NOT_NULL"] = "IS_NOT_NULL";
|
|
74
|
-
FilterOperand["IN"] = "IN";
|
|
75
|
-
FilterOperand["NOT_IN"] = "NOT_IN";
|
|
76
|
-
FilterOperand["LT"] = "LT";
|
|
77
|
-
FilterOperand["GT"] = "GT";
|
|
78
|
-
FilterOperand["LTE"] = "LTE";
|
|
79
|
-
FilterOperand["GTE"] = "GTE";
|
|
80
|
-
FilterOperand["STARTS"] = "STARTS";
|
|
81
|
-
FilterOperand["ENDS"] = "ENDS";
|
|
82
|
-
FilterOperand["LIKE"] = "LIKE";
|
|
83
|
-
FilterOperand["NOT_LIKE"] = "NOT_LIKE";
|
|
84
|
-
})(FilterOperand || (FilterOperand = {}));
|
|
85
|
-
var ColumnFilterTypeEnum;
|
|
86
|
-
(function (ColumnFilterTypeEnum) {
|
|
87
|
-
ColumnFilterTypeEnum["TEXT"] = "text";
|
|
88
|
-
ColumnFilterTypeEnum["NUMERIC"] = "numeric";
|
|
89
|
-
ColumnFilterTypeEnum["DATE"] = "date";
|
|
90
|
-
ColumnFilterTypeEnum["BOOLEAN"] = "boolean";
|
|
91
|
-
ColumnFilterTypeEnum["ENUM"] = "enum";
|
|
92
|
-
})(ColumnFilterTypeEnum || (ColumnFilterTypeEnum = {}));
|
|
93
|
-
|
|
94
|
-
class ExportOverlayPanelComponent {
|
|
95
|
-
constructor(http, fb, messageService, translocoService, selectionGroupService) {
|
|
96
|
-
this.http = http;
|
|
97
|
-
this.fb = fb;
|
|
98
|
-
this.messageService = messageService;
|
|
99
|
-
this.translocoService = translocoService;
|
|
100
|
-
this.selectionGroupService = selectionGroupService;
|
|
101
|
-
/**
|
|
102
|
-
* @see {@link ExportOptions}
|
|
103
|
-
*/
|
|
104
|
-
this.exportConfig = input.required();
|
|
105
|
-
this.columns = input();
|
|
106
|
-
this.exportTypeOptions = [
|
|
107
|
-
{ key: ExportType.Excel, label: 'Excel', fileExtension: '.xlsx' },
|
|
108
|
-
{ key: ExportType.Csv, label: 'Csv', fileExtension: '.csv' }
|
|
109
|
-
];
|
|
110
|
-
this.isLoadingForExport = signal(false);
|
|
111
|
-
this.isAllSelected = true;
|
|
112
|
-
this.toggleExport = (event) => this.op.toggle(event);
|
|
113
|
-
effect(() => {
|
|
114
|
-
if (this.exportConfig()) {
|
|
115
|
-
this.createExportForm();
|
|
116
|
-
}
|
|
117
|
-
});
|
|
118
|
-
}
|
|
119
|
-
createExportForm() {
|
|
120
|
-
const { exportLabel } = this.exportConfig();
|
|
121
|
-
this.exportForm = this.fb.group({
|
|
122
|
-
exportType: this.fb.control(ExportType.Excel, Validators.required),
|
|
123
|
-
exportLabel: this.fb.control(exportLabel, Validators.required),
|
|
124
|
-
columns: this.fb.array([])
|
|
125
|
-
});
|
|
126
|
-
this.columns()
|
|
127
|
-
?._results.filter((col) => col.type() !== 'operations')
|
|
128
|
-
.filter((col) => {
|
|
129
|
-
const exportConfig = this.exportConfig();
|
|
130
|
-
const excludedFields = exportConfig?.excludedFields ?? [];
|
|
131
|
-
return !excludedFields.includes(col.field());
|
|
132
|
-
})
|
|
133
|
-
.forEach((col) => {
|
|
134
|
-
const colGroup = this.fb.group({
|
|
135
|
-
checked: this.fb.control(true),
|
|
136
|
-
title: this.fb.control(col.header()),
|
|
137
|
-
dataKey: this.fb.control(col.field())
|
|
138
|
-
});
|
|
139
|
-
this.exportForm.controls.columns.push(colGroup);
|
|
140
|
-
});
|
|
141
|
-
this.exportForm.controls.columns.valueChanges.subscribe((t) => (this.isAllSelected = t.every((a) => a.checked)));
|
|
142
|
-
}
|
|
143
|
-
get hostUrl() {
|
|
144
|
-
return `${globalThis.location.protocol}//${globalThis.location.host}`;
|
|
145
|
-
}
|
|
146
|
-
get currentPageReportText() {
|
|
147
|
-
const total = this.translocoService.translate('table.total');
|
|
148
|
-
const record = this.translocoService.translate('table.records');
|
|
149
|
-
const page = this.translocoService.translate('table.page');
|
|
150
|
-
return `${total} : {totalRecords} ${record} | ${page} : {currentPage} / {totalPages}`;
|
|
151
|
-
}
|
|
152
|
-
async export() {
|
|
153
|
-
const { exportType, exportLabel, columns } = this.exportForm.value;
|
|
154
|
-
const { route, params, pageSize, columnFieldValueMap, dateColumnFormatMap, computedColumnMap, customReqUrl, numberColumnScaleMap, treeChildName, headerNames, outputFields } = this.exportConfig();
|
|
155
|
-
const checkedColumns = columns.filter((t) => t.checked);
|
|
156
|
-
const fileExtension = this.exportTypeOptions.find((t) => t.key === exportType)?.fileExtension;
|
|
157
|
-
let columnFieldValueMapObj;
|
|
158
|
-
this.isLoadingForExport.set(true);
|
|
159
|
-
this.exportForm.disable();
|
|
160
|
-
this.messageService.add({
|
|
161
|
-
severity: 'success',
|
|
162
|
-
key: 'export-toast',
|
|
163
|
-
summary: this.translocoService.translate('messages.exporting'),
|
|
164
|
-
detail: this.translocoService.translate('messages.exportingDetail', {
|
|
165
|
-
url: `${this.hostUrl}/#/mng/control-management/export-requests`
|
|
166
|
-
}),
|
|
167
|
-
life: 10 * 1000
|
|
168
|
-
});
|
|
169
|
-
this.op?.hide();
|
|
170
|
-
if (columnFieldValueMap) {
|
|
171
|
-
const tempObj = {};
|
|
172
|
-
await firstValueFrom(from(Object.entries(columnFieldValueMap)).pipe(concatMap(([fieldName, value]) => {
|
|
173
|
-
if (!this.selectionGroupService.selectionGroups()[`${value.groupName}~${value.parentSelectionKey ?? 'ALL'}`]) {
|
|
174
|
-
this.selectionGroupService.fetchEnum(value.groupName, value.parentSelectionKey);
|
|
175
|
-
}
|
|
176
|
-
const key = value.groupName + '~' + (value.parentSelectionKey ?? 'ALL');
|
|
177
|
-
return interval(10).pipe(filter(() => !this.selectionGroupService.isLoading(key)), take(1), map(() => {
|
|
178
|
-
const selectionGroup = this.selectionGroupService.selectionGroups()[key];
|
|
179
|
-
if (selectionGroup) {
|
|
180
|
-
tempObj[fieldName] = selectionGroup.selectionItems.reduce((acc, item) => {
|
|
181
|
-
acc[item.selectionKey] = item.selectionDisplay;
|
|
182
|
-
return acc;
|
|
183
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
184
|
-
}, {});
|
|
185
|
-
}
|
|
186
|
-
}));
|
|
187
|
-
}), toArray(), finalize(() => {
|
|
188
|
-
columnFieldValueMapObj = tempObj;
|
|
189
|
-
})));
|
|
190
|
-
}
|
|
191
|
-
const request = {
|
|
192
|
-
route: route,
|
|
193
|
-
params: params,
|
|
194
|
-
pageSize: pageSize,
|
|
195
|
-
exportType: exportType,
|
|
196
|
-
exportLabel: exportLabel,
|
|
197
|
-
computedColumnMap: computedColumnMap,
|
|
198
|
-
dateColumnFormatMap: dateColumnFormatMap,
|
|
199
|
-
columnFieldValueMap: columnFieldValueMapObj,
|
|
200
|
-
numberColumnScaleMap: numberColumnScaleMap ?? {},
|
|
201
|
-
headerNames: headerNames ?? checkedColumns.map((col) => col.title),
|
|
202
|
-
outputFields: outputFields ?? checkedColumns.map((col) => col.dataKey),
|
|
203
|
-
treeChildName: treeChildName
|
|
204
|
-
};
|
|
205
|
-
const apiUrl = customReqUrl ? API_CONFIGS.api.replace(/\/[^\/]+\/v1$/, `/${customReqUrl}/v1`) : API_CONFIGS.api;
|
|
206
|
-
const response = await firstValueFrom(this.http.post(`${apiUrl}/batch-exporters/export`, request).pipe(switchMap((res) => this.http.get(`${apiUrl}/bucket-objects/download`, {
|
|
207
|
-
params: { url: res.url },
|
|
208
|
-
responseType: 'blob'
|
|
209
|
-
})), catchError((error) => {
|
|
210
|
-
this.isLoadingForExport.set(false);
|
|
211
|
-
this.exportForm.enable();
|
|
212
|
-
if (error?.status === 400 || error?.status === 500) {
|
|
213
|
-
this.messageService.add({
|
|
214
|
-
severity: 'error',
|
|
215
|
-
summary: this.translocoService.translate('messages.exportUrlNotFound'),
|
|
216
|
-
key: 'toast-root'
|
|
217
|
-
});
|
|
218
|
-
}
|
|
219
|
-
return throwError(() => error);
|
|
220
|
-
})));
|
|
221
|
-
saveAs(response, `${exportLabel}-${new Date().getTime()}${fileExtension}`);
|
|
222
|
-
this.isLoadingForExport.set(false);
|
|
223
|
-
this.exportForm.enable();
|
|
224
|
-
this.exportForm.reset();
|
|
225
|
-
}
|
|
226
|
-
onSelectAll(value) {
|
|
227
|
-
for (let i = 0; i < this.exportForm.controls.columns.length; i++) {
|
|
228
|
-
const formGroup = this.exportForm.controls.columns.at(i);
|
|
229
|
-
formGroup.controls.checked.setValue(value);
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
nativateToExportRequests() {
|
|
233
|
-
window.location.href = `${this.hostUrl}/#/mng/control-management/export-requests`;
|
|
234
|
-
}
|
|
235
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ExportOverlayPanelComponent, deps: [{ token: i1.HttpClient }, { token: i2.NonNullableFormBuilder }, { token: i3.MessageService }, { token: i4.TranslocoService }, { token: i5.SelectionGroupService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
236
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: ExportOverlayPanelComponent, isStandalone: true, selector: "aril-export-overlay-panel", inputs: { exportConfig: { classPropertyName: "exportConfig", publicName: "exportConfig", isSignal: true, isRequired: true, transformFunction: null }, columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "op", first: true, predicate: OverlayPanel, descendants: true }], ngImport: i0, template: `
|
|
237
|
-
<p-overlayPanel styleClass="export-overlay-panel" [baseZIndex]="1101">
|
|
238
|
-
@if (exportForm) {
|
|
239
|
-
<aril-form [formGroup]="exportForm" class="w-20rem">
|
|
240
|
-
<aril-field [label]="'Dosya Tipi'" [cols]="{ default: 12 }">
|
|
241
|
-
<aril-radio-button formControlName="exportType" [options]="exportTypeOptions" />
|
|
242
|
-
</aril-field>
|
|
243
|
-
|
|
244
|
-
<aril-field [label]="'Dosya İsmi'" [cols]="{ default: 12 }">
|
|
245
|
-
<aril-text class="w-full" formControlName="exportLabel" />
|
|
246
|
-
</aril-field>
|
|
247
|
-
|
|
248
|
-
@if (exportForm.controls.columns.length) {
|
|
249
|
-
<ng-container formArrayName="columns">
|
|
250
|
-
<p-orderList
|
|
251
|
-
#orderListRef
|
|
252
|
-
class="col-12"
|
|
253
|
-
[value]="exportForm.controls.columns.controls"
|
|
254
|
-
[listStyle]="{ 'max-height': '20rem' }"
|
|
255
|
-
filterBy="value.title"
|
|
256
|
-
[disabled]="isLoadingForExport()">
|
|
257
|
-
<ng-template pTemplate="filter">
|
|
258
|
-
<div class="flex align-items-center gap-3">
|
|
259
|
-
<aril-checkbox
|
|
260
|
-
[label]="''"
|
|
261
|
-
[ngModel]="isAllSelected"
|
|
262
|
-
[ngModelOptions]="{ standalone: true }"
|
|
263
|
-
(ngModelChange)="onSelectAll($event)"
|
|
264
|
-
[disabled]="isLoadingForExport()" />
|
|
265
|
-
|
|
266
|
-
<div class="p-orderlist-filter" [attr.data-pc-section]="'filter'">
|
|
267
|
-
<input
|
|
268
|
-
#filter
|
|
269
|
-
type="text"
|
|
270
|
-
role="textbox"
|
|
271
|
-
(keyup)="orderListRef.onFilterKeyup($event)"
|
|
272
|
-
[disabled]="orderListRef.disabled"
|
|
273
|
-
class="p-orderlist-filter-input p-inputtext p-component" />
|
|
274
|
-
</div>
|
|
275
|
-
</div>
|
|
276
|
-
</ng-template>
|
|
277
|
-
<ng-template let-col pTemplate="item">
|
|
278
|
-
<aril-checkbox [label]="col.value.title" [formControl]="col.controls.checked" />
|
|
279
|
-
</ng-template>
|
|
280
|
-
</p-orderList>
|
|
281
|
-
</ng-container>
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
<aril-button
|
|
285
|
-
class="col-12"
|
|
286
|
-
[label]="translocoService.translate('navigateToExportRequests')"
|
|
287
|
-
color="secondary"
|
|
288
|
-
(clickEvent)="nativateToExportRequests()" />
|
|
289
|
-
|
|
290
|
-
<aril-button
|
|
291
|
-
class="col-12"
|
|
292
|
-
[label]="translocoService.translate('messages.export')"
|
|
293
|
-
color="primary"
|
|
294
|
-
(clickEvent)="export()"
|
|
295
|
-
[disabled]="isLoadingForExport()" />
|
|
296
|
-
</aril-form>
|
|
297
|
-
}
|
|
298
|
-
</p-overlayPanel>
|
|
299
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: ARiLFormModule }, { kind: "component", type: i6.FormComponent, selector: "aril-form", inputs: ["formGroup"] }, { kind: "component", type: ButtonComponent, selector: "aril-button:not([click])", inputs: ["label", "loading", "disabled", "raised", "rounded", "text", "outlined", "badge", "size", "icon", "iconPos", "color"], outputs: ["clickEvent"] }, { kind: "component", type: CheckboxComponent, selector: "aril-checkbox[ngModel], aril-checkbox[formControl], aril-checkbox[formControlName]", inputs: ["label", "labelAsYesNo", "tabindex"] }, { kind: "component", type: FieldComponent, selector: "aril-field", inputs: ["label", "color", "labelWidth", "valueWidth", "labelPos", "markAsRequired", "cols", "infoData", "infoDataOverlayPanel"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: OrderListModule }, { kind: "component", type: i7.OrderList, selector: "p-orderList", inputs: ["header", "style", "styleClass", "tabindex", "ariaLabel", "ariaLabelledBy", "listStyle", "responsive", "filterBy", "filterPlaceholder", "filterLocale", "metaKeySelection", "dragdrop", "controlsPosition", "ariaFilterLabel", "filterMatchMode", "breakpoint", "stripedRows", "disabled", "trackBy", "selection", "value"], outputs: ["selectionChange", "onReorder", "onSelectionChange", "onFilterEvent", "onFocus", "onBlur"] }, { kind: "directive", type: i3.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "ngmodule", type: OverlayPanelModule }, { kind: "component", type: i8.OverlayPanel, selector: "p-overlayPanel", inputs: ["ariaLabel", "ariaLabelledBy", "dismissable", "showCloseIcon", "style", "styleClass", "appendTo", "autoZIndex", "ariaCloseLabel", "baseZIndex", "focusOnShow", "showTransitionOptions", "hideTransitionOptions"], outputs: ["onShow", "onHide"] }, { kind: "component", type: RadioButtonComponent, selector: "aril-radio-button[ngModel], aril-radio-button[formControl], aril-radio-button[formControlName]", inputs: ["options", "tabindex", "align"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i2.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { kind: "component", type: TextComponent, selector: "aril-text[ngModel], aril-text[formControl], aril-text[formControlName]", inputs: ["placeholder", "tabindex", "icon", "iconPos", "size"] }, { kind: "ngmodule", type: ToastModule }, { kind: "ngmodule", type: TooltipModule }] }); }
|
|
300
|
-
}
|
|
301
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ExportOverlayPanelComponent, decorators: [{
|
|
302
|
-
type: Component,
|
|
303
|
-
args: [{
|
|
304
|
-
standalone: true,
|
|
305
|
-
selector: 'aril-export-overlay-panel',
|
|
306
|
-
imports: [
|
|
307
|
-
ARiLFormModule,
|
|
308
|
-
ButtonComponent,
|
|
309
|
-
CheckboxComponent,
|
|
310
|
-
FieldComponent,
|
|
311
|
-
FormsModule,
|
|
312
|
-
OrderListModule,
|
|
313
|
-
OverlayPanelModule,
|
|
314
|
-
RadioButtonComponent,
|
|
315
|
-
ReactiveFormsModule,
|
|
316
|
-
TextComponent,
|
|
317
|
-
ToastModule,
|
|
318
|
-
TooltipModule
|
|
319
|
-
],
|
|
320
|
-
template: `
|
|
321
|
-
<p-overlayPanel styleClass="export-overlay-panel" [baseZIndex]="1101">
|
|
322
|
-
@if (exportForm) {
|
|
323
|
-
<aril-form [formGroup]="exportForm" class="w-20rem">
|
|
324
|
-
<aril-field [label]="'Dosya Tipi'" [cols]="{ default: 12 }">
|
|
325
|
-
<aril-radio-button formControlName="exportType" [options]="exportTypeOptions" />
|
|
326
|
-
</aril-field>
|
|
327
|
-
|
|
328
|
-
<aril-field [label]="'Dosya İsmi'" [cols]="{ default: 12 }">
|
|
329
|
-
<aril-text class="w-full" formControlName="exportLabel" />
|
|
330
|
-
</aril-field>
|
|
331
|
-
|
|
332
|
-
@if (exportForm.controls.columns.length) {
|
|
333
|
-
<ng-container formArrayName="columns">
|
|
334
|
-
<p-orderList
|
|
335
|
-
#orderListRef
|
|
336
|
-
class="col-12"
|
|
337
|
-
[value]="exportForm.controls.columns.controls"
|
|
338
|
-
[listStyle]="{ 'max-height': '20rem' }"
|
|
339
|
-
filterBy="value.title"
|
|
340
|
-
[disabled]="isLoadingForExport()">
|
|
341
|
-
<ng-template pTemplate="filter">
|
|
342
|
-
<div class="flex align-items-center gap-3">
|
|
343
|
-
<aril-checkbox
|
|
344
|
-
[label]="''"
|
|
345
|
-
[ngModel]="isAllSelected"
|
|
346
|
-
[ngModelOptions]="{ standalone: true }"
|
|
347
|
-
(ngModelChange)="onSelectAll($event)"
|
|
348
|
-
[disabled]="isLoadingForExport()" />
|
|
349
|
-
|
|
350
|
-
<div class="p-orderlist-filter" [attr.data-pc-section]="'filter'">
|
|
351
|
-
<input
|
|
352
|
-
#filter
|
|
353
|
-
type="text"
|
|
354
|
-
role="textbox"
|
|
355
|
-
(keyup)="orderListRef.onFilterKeyup($event)"
|
|
356
|
-
[disabled]="orderListRef.disabled"
|
|
357
|
-
class="p-orderlist-filter-input p-inputtext p-component" />
|
|
358
|
-
</div>
|
|
359
|
-
</div>
|
|
360
|
-
</ng-template>
|
|
361
|
-
<ng-template let-col pTemplate="item">
|
|
362
|
-
<aril-checkbox [label]="col.value.title" [formControl]="col.controls.checked" />
|
|
363
|
-
</ng-template>
|
|
364
|
-
</p-orderList>
|
|
365
|
-
</ng-container>
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
<aril-button
|
|
369
|
-
class="col-12"
|
|
370
|
-
[label]="translocoService.translate('navigateToExportRequests')"
|
|
371
|
-
color="secondary"
|
|
372
|
-
(clickEvent)="nativateToExportRequests()" />
|
|
373
|
-
|
|
374
|
-
<aril-button
|
|
375
|
-
class="col-12"
|
|
376
|
-
[label]="translocoService.translate('messages.export')"
|
|
377
|
-
color="primary"
|
|
378
|
-
(clickEvent)="export()"
|
|
379
|
-
[disabled]="isLoadingForExport()" />
|
|
380
|
-
</aril-form>
|
|
381
|
-
}
|
|
382
|
-
</p-overlayPanel>
|
|
383
|
-
`
|
|
384
|
-
}]
|
|
385
|
-
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: i2.NonNullableFormBuilder }, { type: i3.MessageService }, { type: i4.TranslocoService }, { type: i5.SelectionGroupService }], propDecorators: { op: [{
|
|
386
|
-
type: ViewChild,
|
|
387
|
-
args: [OverlayPanel]
|
|
388
|
-
}] } });
|
|
389
|
-
|
|
390
|
-
class TableColumnComponent {
|
|
391
|
-
constructor() {
|
|
392
|
-
this.type = input('text');
|
|
393
|
-
this.field = input.required();
|
|
394
|
-
this.header = input.required();
|
|
395
|
-
this.tAlign = input();
|
|
396
|
-
this.isShowHeaderTooltip = input(false);
|
|
397
|
-
this.tooltipTemplate = input();
|
|
398
|
-
this.width = input();
|
|
399
|
-
this.showFilter = input(false);
|
|
400
|
-
this.filterType = input(ColumnFilterTypeEnum.TEXT);
|
|
401
|
-
this.showTimeInDateFilters = input(false);
|
|
402
|
-
this.enumGroupName = input('');
|
|
403
|
-
}
|
|
404
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: TableColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
405
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "17.1.2", type: TableColumnComponent, selector: "aril-table-column", inputs: { type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, field: { classPropertyName: "field", publicName: "field", isSignal: true, isRequired: true, transformFunction: null }, header: { classPropertyName: "header", publicName: "header", isSignal: true, isRequired: true, transformFunction: null }, tAlign: { classPropertyName: "tAlign", publicName: "tAlign", isSignal: true, isRequired: false, transformFunction: null }, isShowHeaderTooltip: { classPropertyName: "isShowHeaderTooltip", publicName: "isShowHeaderTooltip", isSignal: true, isRequired: false, transformFunction: null }, tooltipTemplate: { classPropertyName: "tooltipTemplate", publicName: "tooltipTemplate", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, showFilter: { classPropertyName: "showFilter", publicName: "showFilter", isSignal: true, isRequired: false, transformFunction: null }, filterType: { classPropertyName: "filterType", publicName: "filterType", isSignal: true, isRequired: false, transformFunction: null }, showTimeInDateFilters: { classPropertyName: "showTimeInDateFilters", publicName: "showTimeInDateFilters", isSignal: true, isRequired: false, transformFunction: null }, enumGroupName: { classPropertyName: "enumGroupName", publicName: "enumGroupName", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: `<ng-content />`, isInline: true }); }
|
|
406
|
-
}
|
|
407
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: TableColumnComponent, decorators: [{
|
|
408
|
-
type: Component,
|
|
409
|
-
args: [{
|
|
410
|
-
selector: 'aril-table-column',
|
|
411
|
-
template: `<ng-content />`
|
|
412
|
-
}]
|
|
413
|
-
}], propDecorators: { template: [{
|
|
414
|
-
type: ContentChild,
|
|
415
|
-
args: [TemplateRef]
|
|
416
|
-
}] } });
|
|
417
|
-
|
|
418
|
-
/* TODO :
|
|
419
|
-
* server-side-proxy (ProxyTypes.ServerSide)
|
|
420
|
-
* search & colum filter & sort
|
|
421
|
-
* pagination operation
|
|
422
|
-
* Query Signals
|
|
423
|
-
*/
|
|
424
|
-
const pageOptions = [5, 10, 20, 50, 100];
|
|
425
|
-
class TableComponent {
|
|
426
|
-
constructor(translocoService, selectionGroupService) {
|
|
427
|
-
this.translocoService = translocoService;
|
|
428
|
-
this.selectionGroupService = selectionGroupService;
|
|
429
|
-
this.onPageEvent = new EventEmitter();
|
|
430
|
-
this.selectionEvent = new EventEmitter();
|
|
431
|
-
this.lazyLoadEvent = new EventEmitter();
|
|
432
|
-
this.rowReorderEvent = new EventEmitter();
|
|
433
|
-
this.kebabMenuItems = [];
|
|
434
|
-
this.data = input.required();
|
|
435
|
-
this.checkboxSelection = input();
|
|
436
|
-
this.radioButtonSelection = input();
|
|
437
|
-
this.headerCheckboxSelection = input();
|
|
438
|
-
this.pageSize = input(10);
|
|
439
|
-
this.proxy = input(ProxyTypes.Native);
|
|
440
|
-
this.showFooter = input(false);
|
|
441
|
-
this.tAlign = input('left');
|
|
442
|
-
this.selectionMode = input('single');
|
|
443
|
-
this.showSearchTool = input(true);
|
|
444
|
-
this.showExportTool = input(true);
|
|
445
|
-
this.exportFileName = input('');
|
|
446
|
-
this.noDataFoundLabel = input('No Data Found');
|
|
447
|
-
this.tableHeader = input('');
|
|
448
|
-
this.showTableHeader = input(false);
|
|
449
|
-
this.isFirstRowSelected = input(false);
|
|
450
|
-
this.dataKey = input('');
|
|
451
|
-
this.selectedRowsInput = input([]);
|
|
452
|
-
this.isLazy = input(true);
|
|
453
|
-
this.totalRecords = input(0);
|
|
454
|
-
this.paginator = input(true);
|
|
455
|
-
this.paginatorDropdownAppendTo = input('body'); // 'body'| 'myDiv'
|
|
456
|
-
this.isColumnExpandMode = input(false);
|
|
457
|
-
this.isResizableColumns = input(false);
|
|
458
|
-
this.isSortable = input(false);
|
|
459
|
-
this.handledSelectionMode = 'single';
|
|
460
|
-
this.scrollable = input(true);
|
|
461
|
-
this.scrollHeight = input('460px');
|
|
462
|
-
this.sortMode = input('multiple');
|
|
463
|
-
this.showFirstLastIcon = input(true);
|
|
464
|
-
this.rowSelectable = input(() => true);
|
|
465
|
-
this.isShowNoDataFoundMessage = input(true);
|
|
466
|
-
this.reorderableColumns = input(false);
|
|
467
|
-
this.reorderField = input();
|
|
468
|
-
this.showColumnFilters = input(false);
|
|
469
|
-
this.selectionPageOnly = input(false);
|
|
470
|
-
this.openSelectionOnSidebar = input(false);
|
|
471
|
-
// Keeps last clicked sort field and its cycles to enable ASC -> DESC -> NONE
|
|
472
|
-
this.lastSortedField = null;
|
|
473
|
-
this.lastSortOrder = 0; // 1: asc, -1: desc, 0: none / we send 2 for desc to backend but primeng keeps -1
|
|
474
|
-
/**
|
|
475
|
-
* @see {@link ExportOptions}
|
|
476
|
-
*/
|
|
477
|
-
this.exportConfig = input();
|
|
478
|
-
this.isAllSelected = true;
|
|
479
|
-
this.pageOptions = pageOptions;
|
|
480
|
-
this.exportColumns = [];
|
|
481
|
-
this.filterValues = {};
|
|
482
|
-
this.requestedEnumKeys = new Set();
|
|
483
|
-
this.ColumnFilterTypeEnum = ColumnFilterTypeEnum;
|
|
484
|
-
this.sidebarVisible = false;
|
|
485
|
-
this.isInitialLoad = true;
|
|
486
|
-
this.toggleExport = (event) => this.exportOp.op.toggle(event);
|
|
487
|
-
effect(() => {
|
|
488
|
-
if (this.isFirstRowSelected() && this.data()) {
|
|
489
|
-
this.selectedRows = this.data()[0];
|
|
490
|
-
this.selectionEvent.emit(this.selectedRows);
|
|
491
|
-
}
|
|
492
|
-
});
|
|
493
|
-
effect(() => {
|
|
494
|
-
if (this.selectedRowsInput()) {
|
|
495
|
-
this.selectedRows = this.selectedRowsInput();
|
|
496
|
-
}
|
|
497
|
-
});
|
|
498
|
-
effect(() => {
|
|
499
|
-
if (this.checkboxSelection() || this.radioButtonSelection())
|
|
500
|
-
this.handledSelectionMode = null;
|
|
501
|
-
else
|
|
502
|
-
this.handledSelectionMode = this.selectionMode();
|
|
503
|
-
});
|
|
504
|
-
effect(() => {
|
|
505
|
-
if (this.data()?.length == 10)
|
|
506
|
-
this.tableRef.rows = 10;
|
|
507
|
-
});
|
|
508
|
-
}
|
|
509
|
-
ngOnChanges(changes) {
|
|
510
|
-
if (changes['data'] && changes['data'].currentValue !== changes['data'].previousValue) {
|
|
511
|
-
if (this.isInitialLoad) {
|
|
512
|
-
this.isInitialLoad = false;
|
|
513
|
-
return;
|
|
514
|
-
}
|
|
515
|
-
}
|
|
516
|
-
}
|
|
517
|
-
get currentPageReportText() {
|
|
518
|
-
const total = this.translocoService.translate('table.total');
|
|
519
|
-
const record = this.translocoService.translate('table.records');
|
|
520
|
-
const page = this.translocoService.translate('table.page');
|
|
521
|
-
return `${total} : {totalRecords} ${record} | ${page} : {currentPage} / {totalPages}`;
|
|
522
|
-
}
|
|
523
|
-
handleLazyLoadEvent(event) {
|
|
524
|
-
const sortField = event.multiSortMeta?.length ? event.multiSortMeta[0] : null;
|
|
525
|
-
const arilFilters = this.convertPrimeNgFiltersToStandard(event.filters);
|
|
526
|
-
const newEventData = {
|
|
527
|
-
pager: {
|
|
528
|
-
pageSize: event.rows,
|
|
529
|
-
pageNumber: event.first / event.rows + 1
|
|
530
|
-
},
|
|
531
|
-
sort: sortField?.field ?
|
|
532
|
-
{
|
|
533
|
-
fieldId: sortField?.field,
|
|
534
|
-
direction: sortField?.order === 1 ? 1 : 2 // 1 for asc, 2 for desc
|
|
535
|
-
}
|
|
536
|
-
: null,
|
|
537
|
-
filters: arilFilters
|
|
538
|
-
};
|
|
539
|
-
this.lazyLoadEvent.emit(newEventData);
|
|
540
|
-
}
|
|
541
|
-
clear() {
|
|
542
|
-
this.tableRef.value = [];
|
|
543
|
-
this.tableRef.clear();
|
|
544
|
-
this.exportOp.op?.hide();
|
|
545
|
-
}
|
|
546
|
-
rowReorder(event) {
|
|
547
|
-
if (!this.reorderField()) {
|
|
548
|
-
console.error('Reorder field is not defined. Please set the reorderField input.');
|
|
549
|
-
return;
|
|
550
|
-
}
|
|
551
|
-
else if (!(this.reorderField() in this.data()[0])) {
|
|
552
|
-
console.error(`Reorder field "${this.reorderField()}" does not exist in the data items.`);
|
|
553
|
-
return;
|
|
554
|
-
}
|
|
555
|
-
this.data().forEach((item, index) => {
|
|
556
|
-
item[this.reorderField()] = index + 1;
|
|
557
|
-
});
|
|
558
|
-
this.rowReorderEvent.emit(event);
|
|
559
|
-
}
|
|
560
|
-
getFilterValue(field) {
|
|
561
|
-
return this.filterValues[field] || null;
|
|
562
|
-
}
|
|
563
|
-
onFilterChange(value, _filterCallback, field) {
|
|
564
|
-
this.filterValues[field] = value;
|
|
565
|
-
}
|
|
566
|
-
applyFilter(filterCallback, field) {
|
|
567
|
-
const value = this.filterValues[field];
|
|
568
|
-
filterCallback(value);
|
|
569
|
-
}
|
|
570
|
-
clearFilter(filterCallback, field) {
|
|
571
|
-
this.filterValues[field] = null;
|
|
572
|
-
filterCallback(null);
|
|
573
|
-
}
|
|
574
|
-
getEnumOptions(groupName, parentSelectionKey = 'ALL') {
|
|
575
|
-
const key = `${groupName}~${parentSelectionKey}`;
|
|
576
|
-
const group = this.selectionGroupService.selectionGroups()[key];
|
|
577
|
-
if (!group && !this.selectionGroupService.isLoading(key) && !this.requestedEnumKeys.has(key)) {
|
|
578
|
-
this.requestedEnumKeys.add(key);
|
|
579
|
-
this.selectionGroupService.fetchEnum(groupName, parentSelectionKey);
|
|
580
|
-
}
|
|
581
|
-
return (group?.selectionItems?.map((item) => ({
|
|
582
|
-
label: item.selectionDisplay,
|
|
583
|
-
value: item.selectionKey
|
|
584
|
-
})) ?? []);
|
|
585
|
-
}
|
|
586
|
-
convertPrimeNgFiltersToStandard(primeNgFilters) {
|
|
587
|
-
const filters = [];
|
|
588
|
-
if (!primeNgFilters) {
|
|
589
|
-
return filters;
|
|
590
|
-
}
|
|
591
|
-
Object.keys(primeNgFilters).forEach((fieldId) => {
|
|
592
|
-
const fieldFilters = primeNgFilters[fieldId];
|
|
593
|
-
if (Array.isArray(fieldFilters) && fieldFilters.length > 0) {
|
|
594
|
-
fieldFilters.forEach((filter) => {
|
|
595
|
-
if (this.isValidFilterValue(filter.value)) {
|
|
596
|
-
const operand = this.mapMatchModeToOperand(filter.matchMode);
|
|
597
|
-
if (operand) {
|
|
598
|
-
// Handle multiple values for IN/NOT_IN operations
|
|
599
|
-
const processedValue = this.processFilterValue(filter.value, operand);
|
|
600
|
-
filters.push({
|
|
601
|
-
fieldId: isNaN(parseInt(fieldId)) ? fieldId : parseInt(fieldId),
|
|
602
|
-
operand: operand,
|
|
603
|
-
value: processedValue
|
|
604
|
-
});
|
|
605
|
-
}
|
|
606
|
-
}
|
|
607
|
-
});
|
|
608
|
-
}
|
|
609
|
-
});
|
|
610
|
-
return filters;
|
|
611
|
-
}
|
|
612
|
-
isValidFilterValue(value) {
|
|
613
|
-
if (value === null || value === undefined) {
|
|
614
|
-
return false;
|
|
615
|
-
}
|
|
616
|
-
if (Array.isArray(value)) {
|
|
617
|
-
return value.length > 0 && value.some((item) => item !== null && item !== undefined && item !== '');
|
|
618
|
-
}
|
|
619
|
-
if (typeof value === 'string') {
|
|
620
|
-
return value.trim() !== '';
|
|
621
|
-
}
|
|
622
|
-
return true;
|
|
623
|
-
}
|
|
624
|
-
mapMatchModeToOperand(matchMode) {
|
|
625
|
-
const modeMap = {
|
|
626
|
-
equals: FilterOperand.EQ,
|
|
627
|
-
notEquals: FilterOperand.NOT_EQ,
|
|
628
|
-
contains: FilterOperand.LIKE,
|
|
629
|
-
notContains: FilterOperand.NOT_LIKE,
|
|
630
|
-
startsWith: FilterOperand.STARTS,
|
|
631
|
-
endsWith: FilterOperand.ENDS,
|
|
632
|
-
lt: FilterOperand.LT,
|
|
633
|
-
lte: FilterOperand.LTE,
|
|
634
|
-
gt: FilterOperand.GT,
|
|
635
|
-
gte: FilterOperand.GTE,
|
|
636
|
-
in: FilterOperand.IN,
|
|
637
|
-
notIn: FilterOperand.NOT_IN,
|
|
638
|
-
is: FilterOperand.EQ,
|
|
639
|
-
isNot: FilterOperand.NOT_EQ,
|
|
640
|
-
before: FilterOperand.LT,
|
|
641
|
-
after: FilterOperand.GT,
|
|
642
|
-
dateIs: FilterOperand.EQ,
|
|
643
|
-
dateIsNot: FilterOperand.NOT_EQ,
|
|
644
|
-
dateBefore: FilterOperand.LT,
|
|
645
|
-
dateAfter: FilterOperand.GT
|
|
646
|
-
};
|
|
647
|
-
return modeMap[matchMode] || null;
|
|
648
|
-
}
|
|
649
|
-
processFilterValue(value, operand) {
|
|
650
|
-
if (operand === FilterOperand.IN || operand === FilterOperand.NOT_IN) {
|
|
651
|
-
if (!Array.isArray(value)) {
|
|
652
|
-
return [value];
|
|
653
|
-
}
|
|
654
|
-
return value;
|
|
655
|
-
}
|
|
656
|
-
return value;
|
|
657
|
-
}
|
|
658
|
-
onTableSort(event) {
|
|
659
|
-
const field = event?.field ?? event?.multisortmeta?.[0]?.field;
|
|
660
|
-
const order = event?.order ?? event?.multisortmeta?.[0]?.order;
|
|
661
|
-
if (!field || (order !== 1 && order !== -1))
|
|
662
|
-
return;
|
|
663
|
-
if (this.lastSortedField === field && this.lastSortOrder === -1 && order === 1) {
|
|
664
|
-
this.clearSort();
|
|
665
|
-
return;
|
|
666
|
-
}
|
|
667
|
-
this.lastSortedField = field;
|
|
668
|
-
this.lastSortOrder = order;
|
|
669
|
-
}
|
|
670
|
-
clearSort() {
|
|
671
|
-
if (!this.tableRef)
|
|
672
|
-
return;
|
|
673
|
-
this.tableRef.sortField = null;
|
|
674
|
-
this.tableRef.sortOrder = 1;
|
|
675
|
-
this.tableRef.multiSortMeta = [];
|
|
676
|
-
if (this.isLazy()) {
|
|
677
|
-
const meta = this.tableRef.createLazyLoadMetadata();
|
|
678
|
-
meta.multiSortMeta = [];
|
|
679
|
-
meta.sortField = null;
|
|
680
|
-
this.tableRef.onLazyLoad.emit(meta);
|
|
681
|
-
}
|
|
682
|
-
this.lastSortedField = null;
|
|
683
|
-
this.lastSortOrder = 0;
|
|
684
|
-
}
|
|
685
|
-
nextRecord() {
|
|
686
|
-
const idx = this.data().indexOf(this.selectedRows);
|
|
687
|
-
const nextRecord = this.data()[idx + 1];
|
|
688
|
-
if (nextRecord) {
|
|
689
|
-
this.selectedRows = nextRecord;
|
|
690
|
-
}
|
|
691
|
-
}
|
|
692
|
-
prevRecord() {
|
|
693
|
-
const idx = this.data().indexOf(this.selectedRows);
|
|
694
|
-
const prevRecord = this.data()[idx - 1];
|
|
695
|
-
if (prevRecord) {
|
|
696
|
-
this.selectedRows = prevRecord;
|
|
697
|
-
}
|
|
698
|
-
}
|
|
699
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: TableComponent, deps: [{ token: i4.TranslocoService }, { token: i5.SelectionGroupService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
700
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: TableComponent, selector: "aril-table", inputs: { kebabMenuItems: { classPropertyName: "kebabMenuItems", publicName: "kebabMenuItems", isSignal: false, isRequired: false, transformFunction: null }, expandableFields: { classPropertyName: "expandableFields", publicName: "expandableFields", isSignal: false, isRequired: false, transformFunction: null }, data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired: true, transformFunction: null }, checkboxSelection: { classPropertyName: "checkboxSelection", publicName: "checkboxSelection", isSignal: true, isRequired: false, transformFunction: null }, radioButtonSelection: { classPropertyName: "radioButtonSelection", publicName: "radioButtonSelection", isSignal: true, isRequired: false, transformFunction: null }, headerCheckboxSelection: { classPropertyName: "headerCheckboxSelection", publicName: "headerCheckboxSelection", isSignal: true, isRequired: false, transformFunction: null }, pageSize: { classPropertyName: "pageSize", publicName: "pageSize", isSignal: true, isRequired: false, transformFunction: null }, proxy: { classPropertyName: "proxy", publicName: "proxy", isSignal: true, isRequired: false, transformFunction: null }, showFooter: { classPropertyName: "showFooter", publicName: "showFooter", isSignal: true, isRequired: false, transformFunction: null }, tAlign: { classPropertyName: "tAlign", publicName: "tAlign", isSignal: true, isRequired: false, transformFunction: null }, selectionMode: { classPropertyName: "selectionMode", publicName: "selectionMode", isSignal: true, isRequired: false, transformFunction: null }, showSearchTool: { classPropertyName: "showSearchTool", publicName: "showSearchTool", isSignal: true, isRequired: false, transformFunction: null }, showExportTool: { classPropertyName: "showExportTool", publicName: "showExportTool", isSignal: true, isRequired: false, transformFunction: null }, exportFileName: { classPropertyName: "exportFileName", publicName: "exportFileName", isSignal: true, isRequired: false, transformFunction: null }, noDataFoundLabel: { classPropertyName: "noDataFoundLabel", publicName: "noDataFoundLabel", isSignal: true, isRequired: false, transformFunction: null }, tableHeader: { classPropertyName: "tableHeader", publicName: "tableHeader", isSignal: true, isRequired: false, transformFunction: null }, showTableHeader: { classPropertyName: "showTableHeader", publicName: "showTableHeader", isSignal: true, isRequired: false, transformFunction: null }, isFirstRowSelected: { classPropertyName: "isFirstRowSelected", publicName: "isFirstRowSelected", isSignal: true, isRequired: false, transformFunction: null }, dataKey: { classPropertyName: "dataKey", publicName: "dataKey", isSignal: true, isRequired: false, transformFunction: null }, selectedRowsInput: { classPropertyName: "selectedRowsInput", publicName: "selectedRowsInput", isSignal: true, isRequired: false, transformFunction: null }, isLazy: { classPropertyName: "isLazy", publicName: "isLazy", isSignal: true, isRequired: false, transformFunction: null }, totalRecords: { classPropertyName: "totalRecords", publicName: "totalRecords", isSignal: true, isRequired: false, transformFunction: null }, paginator: { classPropertyName: "paginator", publicName: "paginator", isSignal: true, isRequired: false, transformFunction: null }, paginatorDropdownAppendTo: { classPropertyName: "paginatorDropdownAppendTo", publicName: "paginatorDropdownAppendTo", isSignal: true, isRequired: false, transformFunction: null }, isColumnExpandMode: { classPropertyName: "isColumnExpandMode", publicName: "isColumnExpandMode", isSignal: true, isRequired: false, transformFunction: null }, isResizableColumns: { classPropertyName: "isResizableColumns", publicName: "isResizableColumns", isSignal: true, isRequired: false, transformFunction: null }, isSortable: { classPropertyName: "isSortable", publicName: "isSortable", isSignal: true, isRequired: false, transformFunction: null }, scrollable: { classPropertyName: "scrollable", publicName: "scrollable", isSignal: true, isRequired: false, transformFunction: null }, scrollHeight: { classPropertyName: "scrollHeight", publicName: "scrollHeight", isSignal: true, isRequired: false, transformFunction: null }, sortMode: { classPropertyName: "sortMode", publicName: "sortMode", isSignal: true, isRequired: false, transformFunction: null }, showFirstLastIcon: { classPropertyName: "showFirstLastIcon", publicName: "showFirstLastIcon", isSignal: true, isRequired: false, transformFunction: null }, rowSelectable: { classPropertyName: "rowSelectable", publicName: "rowSelectable", isSignal: true, isRequired: false, transformFunction: null }, isShowNoDataFoundMessage: { classPropertyName: "isShowNoDataFoundMessage", publicName: "isShowNoDataFoundMessage", isSignal: true, isRequired: false, transformFunction: null }, reorderableColumns: { classPropertyName: "reorderableColumns", publicName: "reorderableColumns", isSignal: true, isRequired: false, transformFunction: null }, reorderField: { classPropertyName: "reorderField", publicName: "reorderField", isSignal: true, isRequired: false, transformFunction: null }, showColumnFilters: { classPropertyName: "showColumnFilters", publicName: "showColumnFilters", isSignal: true, isRequired: false, transformFunction: null }, selectionPageOnly: { classPropertyName: "selectionPageOnly", publicName: "selectionPageOnly", isSignal: true, isRequired: false, transformFunction: null }, openSelectionOnSidebar: { classPropertyName: "openSelectionOnSidebar", publicName: "openSelectionOnSidebar", isSignal: true, isRequired: false, transformFunction: null }, exportConfig: { classPropertyName: "exportConfig", publicName: "exportConfig", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onPageEvent: "onPageEvent", selectionEvent: "selectionEvent", lazyLoadEvent: "lazyLoadEvent", rowReorderEvent: "rowReorderEvent" }, queries: [{ propertyName: "columns", predicate: TableColumnComponent }], viewQueries: [{ propertyName: "exportOp", first: true, predicate: ExportOverlayPanelComponent, descendants: true }, { propertyName: "tableRef", first: true, predicate: Table, descendants: true }], usesOnChanges: true, ngImport: i0, template: "<p-table\r\n\t#ref\r\n\t[value]=\"data()\"\r\n\t[dataKey]=\"dataKey()\"\r\n\t[columns]=\"columns._results\"\r\n\t[rows]=\"pageSize()\"\r\n\t[rowHover]=\"true\"\r\n\t[paginator]=\"!this.isLazy() || this.totalRecords() > 10 ? this.paginator() : false\"\r\n\t[lazy]=\"isLazy()\"\r\n\t[lazyLoadOnInit]=\"false\"\r\n\t[totalRecords]=\"totalRecords()\"\r\n\t[rowsPerPageOptions]=\"[5, 10, 20, 50, 100]\"\r\n\t[rowSelectable]=\"rowSelectable()\"\r\n\t[filterDelay]=\"0\"\r\n\t[sortMode]=\"sortMode()\"\r\n\t[(selection)]=\"selectedRows\"\r\n\t(onPage)=\"onPageEvent.emit($event)\"\r\n\t(onSort)=\"onTableSort($event)\"\r\n\t(onLazyLoad)=\"handleLazyLoadEvent($event)\"\r\n\t(selectionChange)=\"selectionEvent.emit(selectedRows)\"\r\n\t(onRowSelect)=\"sidebarVisible = true\"\r\n\t(onRowUnselect)=\"sidebarVisible = false\"\r\n\t[showCurrentPageReport]=\"true\"\r\n\t[selectionMode]=\"selectionMode()\"\r\n\t[selectionPageOnly]=\"selectionPageOnly()\"\r\n\t[columnResizeMode]=\"isColumnExpandMode() ? 'expand' : ''\"\r\n\t[resizableColumns]=\"isResizableColumns()\"\r\n\t[currentPageReportTemplate]=\"currentPageReportText\"\r\n\tstyleClass=\"p-datatable-sm\"\r\n\t[paginatorDropdownAppendTo]=\"paginatorDropdownAppendTo()\"\r\n\t[scrollable]=\"scrollable()\"\r\n\t[scrollHeight]=\"scrollHeight()\"\r\n\t[showFirstLastIcon]=\"showFirstLastIcon()\"\r\n\t[reorderableColumns]=\"reorderableColumns()\"\r\n\t(onRowReorder)=\"rowReorder($event)\">\r\n\t<ng-template pTemplate=\"groupheader\" let-item let-rowIndex=\"rowIndex\" let-expanded=\"expanded\">\r\n\t\t<tr pRowGroupHeader style=\"background-color: #f8fafc\">\r\n\t\t\t<td [attr.colspan]=\"columns._results.length\">\r\n\t\t\t\t<span class=\"font-bold ml-2\" style=\"color: #6b7280\">{{ item.groupName }}</span>\r\n\t\t\t</td>\r\n\t\t</tr>\r\n\t</ng-template>\r\n\r\n\t<ng-template pTemplate=\"header\" let-columns>\r\n\t\t<tr>\r\n\t\t\t@if (reorderableColumns() || radioButtonSelection()) {\r\n\t\t\t\t<th style=\"width: 3rem !important\"></th>\r\n\t\t\t}\r\n\r\n\t\t\t@if (checkboxSelection()) {\r\n\t\t\t\t<th>\r\n\t\t\t\t\t@if (headerCheckboxSelection()) {\r\n\t\t\t\t\t\t<p-tableHeaderCheckbox></p-tableHeaderCheckbox>\r\n\t\t\t\t\t}\r\n\t\t\t\t</th>\r\n\t\t\t}\r\n\t\t\t@for (column of columns; track $index) {\r\n\t\t\t\t@if (column.type() === 'operations') {\r\n\t\t\t\t\t<th>\r\n\t\t\t\t\t\t<div class=\"flex justify-content-center\">\u0130\u015Flemler</div>\r\n\t\t\t\t\t</th>\r\n\t\t\t\t} @else {\r\n\t\t\t\t\t@if (isResizableColumns()) {\r\n\t\t\t\t\t\t<th [ngStyle]=\"{ width: column.width() ? column.width() : 'auto' }\" pResizableColumn>\r\n\t\t\t\t\t\t\t<div class=\"flex justify-content-between align-items-center gap-2\">\r\n\t\t\t\t\t\t\t\t<span \r\n\t\t\t\t\t\t\t\t\tclass=\"no-wrap-word\"\r\n\t\t\t\t\t\t\t\t\t[pTooltip]=\"column.header().length > 50 ? column.header() : ''\"\r\n\t\t\t\t\t\t\t\t\ttooltipPosition=\"top\">\r\n\t\t\t\t\t\t\t\t\t{{ column.header().length > 50 ? (column.header() | slice:0:50) + '...' : column.header() }}\r\n\t\t\t\t\t\t\t\t </span>\r\n\t\t\t\t\t\t\t\t<div class=\"flex\">\r\n\t\t\t\t\t\t\t\t\t@if (column.isShowHeaderTooltip()) {\r\n\t\t\t\t\t\t\t\t\t\t<i\r\n\t\t\t\t\t\t\t\t\t\t\tstyle=\"color: green; padding-top: 4px; padding-left: 4px\"\r\n\t\t\t\t\t\t\t\t\t\t\tclass=\"pi pi-info-circle\"\r\n\t\t\t\t\t\t\t\t\t\t\t[pTooltip]=\"column.tooltipTemplate()\"\r\n\t\t\t\t\t\t\t\t\t\t\ttooltipPosition=\"top\"></i>\r\n\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</th>\r\n\t\t\t\t\t} @else {\r\n\t\t\t\t\t\t@if (isLazy() && isSortable()) {\r\n\t\t\t\t\t\t\t<th\r\n\t\t\t\t\t\t\t\t[pSortableColumn]=\"column.field()\"\r\n\t\t\t\t\t\t\t\t[ngStyle]=\"{ width: column.width() ? column.width() : 'auto' }\"\r\n\t\t\t\t\t\t\t\tstyle=\"min-width: 170px\">\r\n\t\t\t\t\t\t\t\t<div class=\"flex justify-content-between align-items-center gap-2\">\r\n\t\t\t\t\t\t\t\t\t<span \r\n\t\t\t\t\t\t\t\t\t\tclass=\"no-wrap-word\"\r\n\t\t\t\t\t\t\t\t\t\t[pTooltip]=\"column.header().length > 50 ? column.header() : ''\"\r\n\t\t\t\t\t\t\t\t\t\ttooltipPosition=\"top\">\r\n\t\t\t\t\t\t\t\t\t\t{{ column.header().length > 50 ? (column.header() | slice:0:50) + '...' : column.header() }}\r\n\t\t\t\t\t\t\t\t </span>\r\n\t\t\t\t\t\t\t\t\t<div class=\"flex justify-content-center align-items-center\">\r\n\t\t\t\t\t\t\t\t\t\t@if (column.type() !== 'operations') {\r\n\t\t\t\t\t\t\t\t\t\t\t<p-sortIcon [field]=\"column.field()\"></p-sortIcon>\r\n\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t@if (showColumnFilters() && column.showFilter() && column.type() !== 'operations') {\r\n\t\t\t\t\t\t\t\t\t\t\t@switch (column.filterType()) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t@case (ColumnFilterTypeEnum.TEXT) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p-columnFilter\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype=\"text\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[field]=\"column.field()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisplay=\"menu\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[maxConstraints]=\"1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"mt-2\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\t\t@case (ColumnFilterTypeEnum.NUMERIC) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p-columnFilter\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype=\"numeric\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[field]=\"column.field()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisplay=\"menu\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showApplyButton]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showClearButton]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[maxConstraints]=\"1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"mt-2\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ng-template pTemplate=\"filter\" let-filter=\"filterCallback\" let-value>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-number\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[maxDigits]=\"6\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[ngModel]=\"getFilterValue(column.field())\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(ngModelChange)=\"onFilterChange($event, filter, column.field())\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"w-full\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"flex justify-content-between align-items-end mt-5\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-button\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor=\"secondary\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[label]=\"'Temizle'\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(clickEvent)=\"clearFilter(filter, column.field())\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-button\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor=\"primary\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[label]=\"'Uygula'\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(clickEvent)=\"applyFilter(filter, column.field())\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ng-template>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t</p-columnFilter>\r\n\t\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\t\t@case (ColumnFilterTypeEnum.DATE) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t@if (column.showTimeInDateFilters()) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p-columnFilter\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[field]=\"column.field()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype=\"date\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisplay=\"menu\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[maxConstraints]=\"1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showApplyButton]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showClearButton]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"mt-2\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ng-template pTemplate=\"filter\" let-filter=\"filterCallback\" let-value>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-calendar\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[ngModel]=\"getFilterValue(column.field())\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(ngModelChange)=\"onFilterChange($event, filter, column.field())\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"w-6\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showTime]=\"true\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[appendTo]=\"null\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"flex justify-content-between align-items-end mt-5\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-button\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor=\"secondary\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[label]=\"'Temizle'\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(clickEvent)=\"clearFilter(filter, column.field())\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-button\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor=\"primary\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[label]=\"'Uygula'\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(clickEvent)=\"applyFilter(filter, column.field())\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ng-template>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</p-columnFilter>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t} @else {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p-columnFilter\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype=\"date\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[field]=\"column.field()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisplay=\"menu\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[maxConstraints]=\"1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"mt-2\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ng-template pTemplate=\"filter\" let-filter=\"filterCallback\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-calendar [(ngModel)]=\"filter.value\" class=\"w-6\" [appendTo]=\"null\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ng-template>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</p-columnFilter>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\t\t@case (ColumnFilterTypeEnum.BOOLEAN) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p-columnFilter [field]=\"column.field()\" type=\"boolean\" display=\"menu\" class=\"mt-2\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\t\t@case (ColumnFilterTypeEnum.ENUM) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p-columnFilter\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[field]=\"column.field()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype=\"text\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisplay=\"menu\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showClearButton]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showApplyButton]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[maxConstraints]=\"1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[matchModeOptions]=\"[\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{ label: 'E\u015Fittir', value: 'equals' },\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{ label: 'E\u015Fit De\u011Fildir', value: 'notEquals' },\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{ label: '\u0130\u00E7erir', value: 'contains' },\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{ label: '\u0130\u00E7ermez', value: 'notContains' }\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t]\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"mt-2\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ng-template pTemplate=\"filter\" let-filter=\"filterCallback\" let-value>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p-dropdown\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[options]=\"getEnumOptions(column.enumGroupName(), 'ALL')\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[ngModel]=\"getFilterValue(column.field())\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(onChange)=\"onFilterChange($event.value, filter, column.field())\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tappendTo=\"self\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showClear]=\"true\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tstyleClass=\"w-full\"></p-dropdown>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"flex justify-content-between align-items-end mt-5\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-button\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor=\"secondary\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[label]=\"'Temizle'\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(clickEvent)=\"clearFilter(filter, column.field())\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-button\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor=\"primary\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[label]=\"'Uygula'\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(clickEvent)=\"applyFilter(filter, column.field())\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ng-template>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t</p-columnFilter>\r\n\t\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t@if (column.isShowHeaderTooltip()) {\r\n\t\t\t\t\t\t\t\t\t\t\t<i\r\n\t\t\t\t\t\t\t\t\t\t\t\tstyle=\"color: green\"\r\n\t\t\t\t\t\t\t\t\t\t\t\tclass=\"pi pi-info-circle mt-1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t[pTooltip]=\"column.tooltipTemplate()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\ttooltipPosition=\"top\"></i>\r\n\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</th>\r\n\t\t\t\t\t\t} @else {\r\n\t\t\t\t\t\t\t<th [ngStyle]=\"{ width: column.width() ? column.width() : 'auto' }\" style=\"min-width: 170px\">\r\n\t\t\t\t\t\t\t\t<div class=\"flex justify-content-between align-items-center gap-2\">\r\n\t\t\t\t\t\t\t\t\t<span \r\n\t\t\t\t\t\t\t\t\t\tclass=\"no-wrap-word\"\r\n\t\t\t\t\t\t\t\t\t\t[pTooltip]=\"column.header().length > 50 ? column.header() : ''\"\r\n\t\t\t\t\t\t\t\t\t\ttooltipPosition=\"top\">\r\n\t\t\t\t\t\t\t\t\t\t{{ column.header().length > 50 ? (column.header() | slice:0:50) + '...' : column.header() }}\r\n\t\t\t\t\t\t\t\t </span>\r\n\t\t\t\t\t\t\t\t\t<div class=\"flex justify-content-center align-items-center\">\r\n\t\t\t\t\t\t\t\t\t\t@if (column.isShowHeaderTooltip()) {\r\n\t\t\t\t\t\t\t\t\t\t\t<i\r\n\t\t\t\t\t\t\t\t\t\t\t\tstyle=\"color: green\"\r\n\t\t\t\t\t\t\t\t\t\t\t\tclass=\"pi pi-info-circle mt-1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t[pTooltip]=\"column.tooltipTemplate()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\ttooltipPosition=\"top\"></i>\r\n\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</th>\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t</tr>\r\n\t</ng-template>\r\n\r\n\t<ng-template pTemplate=\"body\" let-item let-columns=\"columns\" let-index=\"rowIndex\">\r\n\t\t@if (handledSelectionMode) {\r\n\t\t\t<tr\r\n\t\t\t\t[pSelectableRow]=\"item\"\r\n\t\t\t\t[ngStyle]=\"{ 'background-color': item?.rowColor ? item?.rowColor : null }\"\r\n\t\t\t\t[pReorderableRow]=\"index\">\r\n\t\t\t\t@if (reorderableColumns()) {\r\n\t\t\t\t\t<td>\r\n\t\t\t\t\t\t<span class=\"pi pi-bars\" pReorderableRowHandle></span>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\r\n\t\t\t\t@if (radioButtonSelection()) {\r\n\t\t\t\t\t<td>\r\n\t\t\t\t\t\t<p-tableRadioButton [value]=\"item\"></p-tableRadioButton>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\r\n\t\t\t\t@for (column of columns; track $index) {\r\n\t\t\t\t\t<td [ngStyle]=\"{ 'text-align': column.type() === 'operations' ? 'center' : column.tAlign() || tAlign() }\">\r\n\t\t\t\t\t\t<ng-template ngFor [ngForOf]=\"[item]\" [ngForTemplate]=\"column.template\"></ng-template>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\t\t\t</tr>\r\n\t\t} @else {\r\n\t\t\t<tr [ngStyle]=\"{ 'background-color': item?.rowColor ? item?.rowColor : null }\" [pReorderableRow]=\"index\">\r\n\t\t\t\t@if (reorderableColumns()) {\r\n\t\t\t\t\t<td>\r\n\t\t\t\t\t\t<span class=\"pi pi-bars\" pReorderableRowHandle></span>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\t\t\t\t@if (checkboxSelection()) {\r\n\t\t\t\t\t<td>\r\n\t\t\t\t\t\t<p-tableCheckbox [value]=\"item\"></p-tableCheckbox>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\r\n\t\t\t\t@if (radioButtonSelection()) {\r\n\t\t\t\t\t<td>\r\n\t\t\t\t\t\t<p-tableRadioButton [value]=\"item\"></p-tableRadioButton>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\r\n\t\t\t\t@for (column of columns; track $index) {\r\n\t\t\t\t\t<td [ngStyle]=\"{ 'text-align': column.type() === 'operations' ? 'center' : column.tAlign() || tAlign() }\">\r\n\t\t\t\t\t\t<ng-template ngFor [ngForOf]=\"[item]\" [ngForTemplate]=\"column.template\"></ng-template>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\t\t\t</tr>\r\n\t\t}\r\n\t</ng-template>\r\n\r\n\t@if (showFooter()) {\r\n\t\t<ng-template pTemplate=\"summary\">\r\n\t\t\t<ng-content select=\"[footer]\"></ng-content>\r\n\t\t</ng-template>\r\n\t}\r\n\r\n\t<ng-template pTemplate=\"emptymessage\">\r\n\t\t<tr>\r\n\t\t\t<td [attr.colspan]=\"columns._results.length\">{{ noDataFoundLabel() }}</td>\r\n\t\t</tr>\r\n\t</ng-template>\r\n</p-table>\r\n\r\n<aril-export-overlay-panel [exportConfig]=\"exportConfig()!\" [columns]=\"columns\" />\r\n\r\n<p-toast key=\"export-toast\">\r\n\t<ng-template let-message pTemplate=\"message\">\r\n\t\t<span class=\"p-toast-message-icon\">\r\n\t\t\t<CheckIcon />\r\n\t\t</span>\r\n\t\t<div class=\"p-toast-message-text\">\r\n\t\t\t<div class=\"p-toast-summary\">{{ message.summary }}</div>\r\n\t\t\t<div class=\"p-toast-detail\" [innerHTML]=\"message.detail | safe: 'html'\"></div>\r\n\t\t</div>\r\n\t</ng-template>\r\n</p-toast>\r\n\r\n@if (openSelectionOnSidebar() && selectionMode() === 'single') {\r\n\t<p-sidebar\r\n\t\t[(visible)]=\"sidebarVisible\"\r\n\t\tposition=\"right\"\r\n\t\t[style]=\"{ 'max-width': '800px', width: '100%' }\"\r\n\t\t(onHide)=\"selectedRows = undefined\"\r\n\t\t[modal]=\"false\">\r\n\t\t<ng-template pTemplate=\"header\">\r\n\t\t\t<span class=\"font-semibold text-xl\">{{ translocoService.translate('table.sidebarDetailHeader') }}</span>\r\n\t\t</ng-template>\r\n\r\n\t\t@if (sidebarVisible) {\r\n\t\t\t<p-table [value]=\"selectedRows | keyvalue\" [paginator]=\"false\" styleClass=\"p-datatable-sm\">\r\n\t\t\t\t<ng-template pTemplate=\"header\">\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<th>{{ translocoService.translate('table.field') }}</th>\r\n\t\t\t\t\t\t<th>{{ translocoService.translate('table.value') }}</th>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</ng-template>\r\n\r\n\t\t\t\t<ng-template pTemplate=\"body\" let-item let-index=\"rowIndex\">\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t@if (columns | getColumnByField: item.key; as column) {\r\n\t\t\t\t\t\t\t<td [width]=\"'120px'\">{{ column.header() }}</td>\r\n\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t@if (column.type() === 'json' && item.value) {\r\n\t\t\t\t\t\t\t\t\t<div [ngStyle]=\"{ display: 'grid' }\">\r\n\t\t\t\t\t\t\t\t\t\t<pre\r\n\t\t\t\t\t\t\t\t\t\t\tclass=\"overflow-y-auto max-h-30rem border-300 border-1 border-round my-2 p-3\"><code>{{item.value | parse | json}}</code></pre>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t} @else if (column.type() === 'long-text' && item.value) {\r\n\t\t\t\t\t\t\t\t\t<aril-value type=\"text\" [model]=\"item.value\" />\r\n\t\t\t\t\t\t\t\t} @else {\r\n\t\t\t\t\t\t\t\t\t<ng-template ngFor [ngForOf]=\"[selectedRows]\" [ngForTemplate]=\"column.template\" />\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</ng-template>\r\n\t\t\t</p-table>\r\n\t\t}\r\n\r\n\t\t<ng-template pTemplate=\"footer\">\r\n\t\t\t<div class=\"flex align-items-center justify-content-between\">\r\n\t\t\t\t<aril-button\r\n\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\ticon=\"ARROW_LEFT\"\r\n\t\t\t\t\tcolor=\"primary\"\r\n\t\t\t\t\t[label]=\"translocoService.translate('table.prevRecord')\"\r\n\t\t\t\t\t(clickEvent)=\"prevRecord()\" />\r\n\r\n\t\t\t\t<aril-button\r\n\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\ticon=\"ARROW_RIGHT\"\r\n\t\t\t\t\ticonPos=\"right\"\r\n\t\t\t\t\tcolor=\"primary\"\r\n\t\t\t\t\t[label]=\"translocoService.translate('table.nextRecord')\"\r\n\t\t\t\t\t(clickEvent)=\"nextRecord()\" />\r\n\t\t\t</div>\r\n\t\t</ng-template>\r\n\t</p-sidebar>\r\n}\r\n", styles: ["::ng-deep aril-table th{min-width:0px!important}::ng-deep .p-datatable .p-datatable-tbody>tr.p-highlight{background-color:#e3f2fd!important;color:#475569!important}.no-wrap-word{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}\n"], dependencies: [{ kind: "component", type: i3$1.ButtonComponent, selector: "aril-button:not([click])", inputs: ["label", "loading", "disabled", "raised", "rounded", "text", "outlined", "badge", "size", "icon", "iconPos", "color"], outputs: ["clickEvent"] }, { kind: "directive", type: i3.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i5$1.CalendarComponent, selector: "aril-calendar[ngModel], aril-calendar[formControl], aril-calendar[formControlName]", inputs: ["minDate", "maxDate", "inputStyle", "inputStyleClass", "autoZIndex", "inline", "showIcon", "showTime", "showWeek", "showSeconds", "disabledDates", "numberOfMonthToShow", "appendTo", "dataType", "placeholder", "view", "selectionMode", "rangeConfig", "tabindex", "showOnFocus", "timeOnly", "keepInvalid"] }, { kind: "component", type: i6$1.CheckIcon, selector: "CheckIcon" }, { kind: "component", type: i7$1.Dropdown, selector: "p-dropdown", inputs: ["id", "scrollHeight", "filter", "name", "style", "panelStyle", "styleClass", "panelStyleClass", "readonly", "required", "editable", "appendTo", "tabindex", "placeholder", "loadingIcon", "filterPlaceholder", "filterLocale", "variant", "inputId", "dataKey", "filterBy", "filterFields", "autofocus", "resetFilterOnHide", "checkmark", "dropdownIcon", "loading", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "autoDisplayFirst", "group", "showClear", "emptyFilterMessage", "emptyMessage", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "ariaLabel", "ariaLabelledBy", "filterMatchMode", "maxlength", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "focusOnHover", "selectOnFocus", "autoOptionFocus", "autofocusFilter", "disabled", "itemSize", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "filterValue", "options"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onShow", "onHide", "onClear", "onLazyLoad"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i9.Tooltip, selector: "[pTooltip]", inputs: ["tooltipPosition", "tooltipEvent", "appendTo", "positionStyle", "tooltipStyleClass", "tooltipZIndex", "escape", "showDelay", "hideDelay", "life", "positionTop", "positionLeft", "autoHide", "fitContent", "hideOnEscape", "pTooltip", "tooltipDisabled", "tooltipOptions"] }, { kind: "directive", type: i10.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i10.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i11.NumberComponent, selector: "aril-number[ngModel], aril-number[formControl], aril-number[formControlName]", inputs: ["min", "max", "showButtons", "placeholder", "prefix", "locale", "suffix", "maxlength", "showClear", "useGrouping", "maxDigits", "minDigits", "tabindex", "inputStyle", "buttonLayout"] }, { kind: "component", type: i12.Sidebar, selector: "p-sidebar", inputs: ["appendTo", "blockScroll", "style", "styleClass", "ariaCloseLabel", "autoZIndex", "baseZIndex", "modal", "dismissible", "showCloseIcon", "closeOnEscape", "transitionOptions", "visible", "position", "fullScreen"], outputs: ["onShow", "onHide", "visibleChange"] }, { kind: "component", type: i13.Table, selector: "p-table", inputs: ["frozenColumns", "frozenValue", "style", "styleClass", "tableStyle", "tableStyleClass", "paginator", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorStyleClass", "paginatorDropdownAppendTo", "paginatorDropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showJumpToPageInput", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "selectionMode", "selectionPageOnly", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "rowSelectable", "rowTrackBy", "lazy", "lazyLoadOnInit", "compareSelectionBy", "csvSeparator", "exportFilename", "filters", "globalFilterFields", "filterDelay", "filterLocale", "expandedRowKeys", "editingRowKeys", "rowExpandMode", "scrollable", "scrollDirection", "rowGroupMode", "scrollHeight", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "virtualScrollDelay", "frozenWidth", "responsive", "contextMenu", "resizableColumns", "columnResizeMode", "reorderableColumns", "loading", "loadingIcon", "showLoader", "rowHover", "customSort", "showInitialSortBadge", "autoLayout", "exportFunction", "exportHeader", "stateKey", "stateStorage", "editMode", "groupRowsBy", "groupRowsByOrder", "responsiveLayout", "breakpoint", "paginatorLocale", "value", "columns", "first", "rows", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "selectAll", "virtualRowHeight"], outputs: ["contextMenuSelectionChange", "selectAllChange", "selectionChange", "onRowSelect", "onRowUnselect", "onPage", "onSort", "onFilter", "onLazyLoad", "onRowExpand", "onRowCollapse", "onContextMenuSelect", "onColResize", "onColReorder", "onRowReorder", "onEditInit", "onEditComplete", "onEditCancel", "onHeaderCheckboxToggle", "sortFunction", "firstChange", "rowsChange", "onStateSave", "onStateRestore"] }, { kind: "directive", type: i13.SortableColumn, selector: "[pSortableColumn]", inputs: ["pSortableColumn", "pSortableColumnDisabled"] }, { kind: "directive", type: i13.RowGroupHeader, selector: "[pRowGroupHeader]" }, { kind: "directive", type: i13.SelectableRow, selector: "[pSelectableRow]", inputs: ["pSelectableRow", "pSelectableRowIndex", "pSelectableRowDisabled"] }, { kind: "directive", type: i13.ResizableColumn, selector: "[pResizableColumn]", inputs: ["pResizableColumnDisabled"] }, { kind: "component", type: i13.SortIcon, selector: "p-sortIcon", inputs: ["field"] }, { kind: "component", type: i13.TableRadioButton, selector: "p-tableRadioButton", inputs: ["disabled", "value", "index", "inputId", "name", "ariaLabel"] }, { kind: "component", type: i13.TableCheckbox, selector: "p-tableCheckbox", inputs: ["disabled", "value", "index", "inputId", "name", "required", "ariaLabel"] }, { kind: "component", type: i13.TableHeaderCheckbox, selector: "p-tableHeaderCheckbox", inputs: ["disabled", "inputId", "name", "ariaLabel"] }, { kind: "directive", type: i13.ReorderableRowHandle, selector: "[pReorderableRowHandle]" }, { kind: "directive", type: i13.ReorderableRow, selector: "[pReorderableRow]", inputs: ["pReorderableRow", "pReorderableRowDisabled"] }, { kind: "component", type: i13.ColumnFilter, selector: "p-columnFilter", inputs: ["field", "type", "display", "showMenu", "matchMode", "operator", "showOperator", "showClearButton", "showApplyButton", "showMatchModes", "showAddButton", "hideOnClear", "placeholder", "matchModeOptions", "maxConstraints", "minFractionDigits", "maxFractionDigits", "prefix", "suffix", "locale", "localeMatcher", "currency", "currencyDisplay", "useGrouping", "showButtons", "ariaLabel"], outputs: ["onShow", "onHide"] }, { kind: "component", type: i14.Toast, selector: "p-toast", inputs: ["key", "autoZIndex", "baseZIndex", "life", "style", "styleClass", "position", "preventOpenDuplicates", "preventDuplicates", "showTransformOptions", "hideTransformOptions", "showTransitionOptions", "hideTransitionOptions", "breakpoints"], outputs: ["onClose"] }, { kind: "component", type: i15.ValueComponent, selector: "aril-value", inputs: ["model", "type", "format", "isClickable", "groupName", "parentSelectionKey", "isTextClamp", "textClampCharacters", "style", "copyable", "shouldShowCopyForClampedText", "arrayTypeDisplayName", "arrayTypeMaxBadgeCount", "bigDecimalRoundingMode", "bigDecimalScale"] }, { kind: "component", type: ExportOverlayPanelComponent, selector: "aril-export-overlay-panel", inputs: ["exportConfig", "columns"] }, { kind: "pipe", type: i17.GetColumnByFieldPipe, name: "getColumnByField" }, { kind: "pipe", type: i10.JsonPipe, name: "json" }, { kind: "pipe", type: i10.KeyValuePipe, name: "keyvalue" }, { kind: "pipe", type: i17.ParsePipe, name: "parse" }, { kind: "pipe", type: i17.SafePipe, name: "safe" }, { kind: "pipe", type: i10.SlicePipe, name: "slice" }] }); }
|
|
701
|
-
}
|
|
702
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: TableComponent, decorators: [{
|
|
703
|
-
type: Component,
|
|
704
|
-
args: [{ selector: 'aril-table', template: "<p-table\r\n\t#ref\r\n\t[value]=\"data()\"\r\n\t[dataKey]=\"dataKey()\"\r\n\t[columns]=\"columns._results\"\r\n\t[rows]=\"pageSize()\"\r\n\t[rowHover]=\"true\"\r\n\t[paginator]=\"!this.isLazy() || this.totalRecords() > 10 ? this.paginator() : false\"\r\n\t[lazy]=\"isLazy()\"\r\n\t[lazyLoadOnInit]=\"false\"\r\n\t[totalRecords]=\"totalRecords()\"\r\n\t[rowsPerPageOptions]=\"[5, 10, 20, 50, 100]\"\r\n\t[rowSelectable]=\"rowSelectable()\"\r\n\t[filterDelay]=\"0\"\r\n\t[sortMode]=\"sortMode()\"\r\n\t[(selection)]=\"selectedRows\"\r\n\t(onPage)=\"onPageEvent.emit($event)\"\r\n\t(onSort)=\"onTableSort($event)\"\r\n\t(onLazyLoad)=\"handleLazyLoadEvent($event)\"\r\n\t(selectionChange)=\"selectionEvent.emit(selectedRows)\"\r\n\t(onRowSelect)=\"sidebarVisible = true\"\r\n\t(onRowUnselect)=\"sidebarVisible = false\"\r\n\t[showCurrentPageReport]=\"true\"\r\n\t[selectionMode]=\"selectionMode()\"\r\n\t[selectionPageOnly]=\"selectionPageOnly()\"\r\n\t[columnResizeMode]=\"isColumnExpandMode() ? 'expand' : ''\"\r\n\t[resizableColumns]=\"isResizableColumns()\"\r\n\t[currentPageReportTemplate]=\"currentPageReportText\"\r\n\tstyleClass=\"p-datatable-sm\"\r\n\t[paginatorDropdownAppendTo]=\"paginatorDropdownAppendTo()\"\r\n\t[scrollable]=\"scrollable()\"\r\n\t[scrollHeight]=\"scrollHeight()\"\r\n\t[showFirstLastIcon]=\"showFirstLastIcon()\"\r\n\t[reorderableColumns]=\"reorderableColumns()\"\r\n\t(onRowReorder)=\"rowReorder($event)\">\r\n\t<ng-template pTemplate=\"groupheader\" let-item let-rowIndex=\"rowIndex\" let-expanded=\"expanded\">\r\n\t\t<tr pRowGroupHeader style=\"background-color: #f8fafc\">\r\n\t\t\t<td [attr.colspan]=\"columns._results.length\">\r\n\t\t\t\t<span class=\"font-bold ml-2\" style=\"color: #6b7280\">{{ item.groupName }}</span>\r\n\t\t\t</td>\r\n\t\t</tr>\r\n\t</ng-template>\r\n\r\n\t<ng-template pTemplate=\"header\" let-columns>\r\n\t\t<tr>\r\n\t\t\t@if (reorderableColumns() || radioButtonSelection()) {\r\n\t\t\t\t<th style=\"width: 3rem !important\"></th>\r\n\t\t\t}\r\n\r\n\t\t\t@if (checkboxSelection()) {\r\n\t\t\t\t<th>\r\n\t\t\t\t\t@if (headerCheckboxSelection()) {\r\n\t\t\t\t\t\t<p-tableHeaderCheckbox></p-tableHeaderCheckbox>\r\n\t\t\t\t\t}\r\n\t\t\t\t</th>\r\n\t\t\t}\r\n\t\t\t@for (column of columns; track $index) {\r\n\t\t\t\t@if (column.type() === 'operations') {\r\n\t\t\t\t\t<th>\r\n\t\t\t\t\t\t<div class=\"flex justify-content-center\">\u0130\u015Flemler</div>\r\n\t\t\t\t\t</th>\r\n\t\t\t\t} @else {\r\n\t\t\t\t\t@if (isResizableColumns()) {\r\n\t\t\t\t\t\t<th [ngStyle]=\"{ width: column.width() ? column.width() : 'auto' }\" pResizableColumn>\r\n\t\t\t\t\t\t\t<div class=\"flex justify-content-between align-items-center gap-2\">\r\n\t\t\t\t\t\t\t\t<span \r\n\t\t\t\t\t\t\t\t\tclass=\"no-wrap-word\"\r\n\t\t\t\t\t\t\t\t\t[pTooltip]=\"column.header().length > 50 ? column.header() : ''\"\r\n\t\t\t\t\t\t\t\t\ttooltipPosition=\"top\">\r\n\t\t\t\t\t\t\t\t\t{{ column.header().length > 50 ? (column.header() | slice:0:50) + '...' : column.header() }}\r\n\t\t\t\t\t\t\t\t </span>\r\n\t\t\t\t\t\t\t\t<div class=\"flex\">\r\n\t\t\t\t\t\t\t\t\t@if (column.isShowHeaderTooltip()) {\r\n\t\t\t\t\t\t\t\t\t\t<i\r\n\t\t\t\t\t\t\t\t\t\t\tstyle=\"color: green; padding-top: 4px; padding-left: 4px\"\r\n\t\t\t\t\t\t\t\t\t\t\tclass=\"pi pi-info-circle\"\r\n\t\t\t\t\t\t\t\t\t\t\t[pTooltip]=\"column.tooltipTemplate()\"\r\n\t\t\t\t\t\t\t\t\t\t\ttooltipPosition=\"top\"></i>\r\n\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</th>\r\n\t\t\t\t\t} @else {\r\n\t\t\t\t\t\t@if (isLazy() && isSortable()) {\r\n\t\t\t\t\t\t\t<th\r\n\t\t\t\t\t\t\t\t[pSortableColumn]=\"column.field()\"\r\n\t\t\t\t\t\t\t\t[ngStyle]=\"{ width: column.width() ? column.width() : 'auto' }\"\r\n\t\t\t\t\t\t\t\tstyle=\"min-width: 170px\">\r\n\t\t\t\t\t\t\t\t<div class=\"flex justify-content-between align-items-center gap-2\">\r\n\t\t\t\t\t\t\t\t\t<span \r\n\t\t\t\t\t\t\t\t\t\tclass=\"no-wrap-word\"\r\n\t\t\t\t\t\t\t\t\t\t[pTooltip]=\"column.header().length > 50 ? column.header() : ''\"\r\n\t\t\t\t\t\t\t\t\t\ttooltipPosition=\"top\">\r\n\t\t\t\t\t\t\t\t\t\t{{ column.header().length > 50 ? (column.header() | slice:0:50) + '...' : column.header() }}\r\n\t\t\t\t\t\t\t\t </span>\r\n\t\t\t\t\t\t\t\t\t<div class=\"flex justify-content-center align-items-center\">\r\n\t\t\t\t\t\t\t\t\t\t@if (column.type() !== 'operations') {\r\n\t\t\t\t\t\t\t\t\t\t\t<p-sortIcon [field]=\"column.field()\"></p-sortIcon>\r\n\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t@if (showColumnFilters() && column.showFilter() && column.type() !== 'operations') {\r\n\t\t\t\t\t\t\t\t\t\t\t@switch (column.filterType()) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t@case (ColumnFilterTypeEnum.TEXT) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p-columnFilter\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype=\"text\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[field]=\"column.field()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisplay=\"menu\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[maxConstraints]=\"1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"mt-2\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\t\t@case (ColumnFilterTypeEnum.NUMERIC) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p-columnFilter\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype=\"numeric\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[field]=\"column.field()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisplay=\"menu\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showApplyButton]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showClearButton]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[maxConstraints]=\"1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"mt-2\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ng-template pTemplate=\"filter\" let-filter=\"filterCallback\" let-value>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-number\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[maxDigits]=\"6\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[ngModel]=\"getFilterValue(column.field())\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(ngModelChange)=\"onFilterChange($event, filter, column.field())\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"w-full\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"flex justify-content-between align-items-end mt-5\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-button\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor=\"secondary\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[label]=\"'Temizle'\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(clickEvent)=\"clearFilter(filter, column.field())\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-button\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor=\"primary\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[label]=\"'Uygula'\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(clickEvent)=\"applyFilter(filter, column.field())\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ng-template>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t</p-columnFilter>\r\n\t\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\t\t@case (ColumnFilterTypeEnum.DATE) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t@if (column.showTimeInDateFilters()) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p-columnFilter\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[field]=\"column.field()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype=\"date\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisplay=\"menu\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[maxConstraints]=\"1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showApplyButton]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showClearButton]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"mt-2\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ng-template pTemplate=\"filter\" let-filter=\"filterCallback\" let-value>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-calendar\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[ngModel]=\"getFilterValue(column.field())\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(ngModelChange)=\"onFilterChange($event, filter, column.field())\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"w-6\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showTime]=\"true\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[appendTo]=\"null\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"flex justify-content-between align-items-end mt-5\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-button\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor=\"secondary\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[label]=\"'Temizle'\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(clickEvent)=\"clearFilter(filter, column.field())\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-button\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor=\"primary\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[label]=\"'Uygula'\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(clickEvent)=\"applyFilter(filter, column.field())\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ng-template>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</p-columnFilter>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t} @else {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p-columnFilter\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype=\"date\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[field]=\"column.field()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisplay=\"menu\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[maxConstraints]=\"1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"mt-2\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ng-template pTemplate=\"filter\" let-filter=\"filterCallback\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-calendar [(ngModel)]=\"filter.value\" class=\"w-6\" [appendTo]=\"null\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ng-template>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</p-columnFilter>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\t\t@case (ColumnFilterTypeEnum.BOOLEAN) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p-columnFilter [field]=\"column.field()\" type=\"boolean\" display=\"menu\" class=\"mt-2\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\t\t@case (ColumnFilterTypeEnum.ENUM) {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p-columnFilter\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[field]=\"column.field()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype=\"text\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisplay=\"menu\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showClearButton]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showApplyButton]=\"false\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[maxConstraints]=\"1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[matchModeOptions]=\"[\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{ label: 'E\u015Fittir', value: 'equals' },\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{ label: 'E\u015Fit De\u011Fildir', value: 'notEquals' },\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{ label: '\u0130\u00E7erir', value: 'contains' },\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{ label: '\u0130\u00E7ermez', value: 'notContains' }\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t]\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tclass=\"mt-2\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ng-template pTemplate=\"filter\" let-filter=\"filterCallback\" let-value>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p-dropdown\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[options]=\"getEnumOptions(column.enumGroupName(), 'ALL')\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[ngModel]=\"getFilterValue(column.field())\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(onChange)=\"onFilterChange($event.value, filter, column.field())\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tappendTo=\"self\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[showClear]=\"true\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tstyleClass=\"w-full\"></p-dropdown>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"flex justify-content-between align-items-end mt-5\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-button\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor=\"secondary\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[label]=\"'Temizle'\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(clickEvent)=\"clearFilter(filter, column.field())\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<aril-button\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor=\"primary\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[label]=\"'Uygula'\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(clickEvent)=\"applyFilter(filter, column.field())\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ng-template>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t</p-columnFilter>\r\n\t\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t@if (column.isShowHeaderTooltip()) {\r\n\t\t\t\t\t\t\t\t\t\t\t<i\r\n\t\t\t\t\t\t\t\t\t\t\t\tstyle=\"color: green\"\r\n\t\t\t\t\t\t\t\t\t\t\t\tclass=\"pi pi-info-circle mt-1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t[pTooltip]=\"column.tooltipTemplate()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\ttooltipPosition=\"top\"></i>\r\n\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</th>\r\n\t\t\t\t\t\t} @else {\r\n\t\t\t\t\t\t\t<th [ngStyle]=\"{ width: column.width() ? column.width() : 'auto' }\" style=\"min-width: 170px\">\r\n\t\t\t\t\t\t\t\t<div class=\"flex justify-content-between align-items-center gap-2\">\r\n\t\t\t\t\t\t\t\t\t<span \r\n\t\t\t\t\t\t\t\t\t\tclass=\"no-wrap-word\"\r\n\t\t\t\t\t\t\t\t\t\t[pTooltip]=\"column.header().length > 50 ? column.header() : ''\"\r\n\t\t\t\t\t\t\t\t\t\ttooltipPosition=\"top\">\r\n\t\t\t\t\t\t\t\t\t\t{{ column.header().length > 50 ? (column.header() | slice:0:50) + '...' : column.header() }}\r\n\t\t\t\t\t\t\t\t </span>\r\n\t\t\t\t\t\t\t\t\t<div class=\"flex justify-content-center align-items-center\">\r\n\t\t\t\t\t\t\t\t\t\t@if (column.isShowHeaderTooltip()) {\r\n\t\t\t\t\t\t\t\t\t\t\t<i\r\n\t\t\t\t\t\t\t\t\t\t\t\tstyle=\"color: green\"\r\n\t\t\t\t\t\t\t\t\t\t\t\tclass=\"pi pi-info-circle mt-1\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t[pTooltip]=\"column.tooltipTemplate()\"\r\n\t\t\t\t\t\t\t\t\t\t\t\ttooltipPosition=\"top\"></i>\r\n\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</th>\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t</tr>\r\n\t</ng-template>\r\n\r\n\t<ng-template pTemplate=\"body\" let-item let-columns=\"columns\" let-index=\"rowIndex\">\r\n\t\t@if (handledSelectionMode) {\r\n\t\t\t<tr\r\n\t\t\t\t[pSelectableRow]=\"item\"\r\n\t\t\t\t[ngStyle]=\"{ 'background-color': item?.rowColor ? item?.rowColor : null }\"\r\n\t\t\t\t[pReorderableRow]=\"index\">\r\n\t\t\t\t@if (reorderableColumns()) {\r\n\t\t\t\t\t<td>\r\n\t\t\t\t\t\t<span class=\"pi pi-bars\" pReorderableRowHandle></span>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\r\n\t\t\t\t@if (radioButtonSelection()) {\r\n\t\t\t\t\t<td>\r\n\t\t\t\t\t\t<p-tableRadioButton [value]=\"item\"></p-tableRadioButton>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\r\n\t\t\t\t@for (column of columns; track $index) {\r\n\t\t\t\t\t<td [ngStyle]=\"{ 'text-align': column.type() === 'operations' ? 'center' : column.tAlign() || tAlign() }\">\r\n\t\t\t\t\t\t<ng-template ngFor [ngForOf]=\"[item]\" [ngForTemplate]=\"column.template\"></ng-template>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\t\t\t</tr>\r\n\t\t} @else {\r\n\t\t\t<tr [ngStyle]=\"{ 'background-color': item?.rowColor ? item?.rowColor : null }\" [pReorderableRow]=\"index\">\r\n\t\t\t\t@if (reorderableColumns()) {\r\n\t\t\t\t\t<td>\r\n\t\t\t\t\t\t<span class=\"pi pi-bars\" pReorderableRowHandle></span>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\t\t\t\t@if (checkboxSelection()) {\r\n\t\t\t\t\t<td>\r\n\t\t\t\t\t\t<p-tableCheckbox [value]=\"item\"></p-tableCheckbox>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\r\n\t\t\t\t@if (radioButtonSelection()) {\r\n\t\t\t\t\t<td>\r\n\t\t\t\t\t\t<p-tableRadioButton [value]=\"item\"></p-tableRadioButton>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\r\n\t\t\t\t@for (column of columns; track $index) {\r\n\t\t\t\t\t<td [ngStyle]=\"{ 'text-align': column.type() === 'operations' ? 'center' : column.tAlign() || tAlign() }\">\r\n\t\t\t\t\t\t<ng-template ngFor [ngForOf]=\"[item]\" [ngForTemplate]=\"column.template\"></ng-template>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\t\t\t</tr>\r\n\t\t}\r\n\t</ng-template>\r\n\r\n\t@if (showFooter()) {\r\n\t\t<ng-template pTemplate=\"summary\">\r\n\t\t\t<ng-content select=\"[footer]\"></ng-content>\r\n\t\t</ng-template>\r\n\t}\r\n\r\n\t<ng-template pTemplate=\"emptymessage\">\r\n\t\t<tr>\r\n\t\t\t<td [attr.colspan]=\"columns._results.length\">{{ noDataFoundLabel() }}</td>\r\n\t\t</tr>\r\n\t</ng-template>\r\n</p-table>\r\n\r\n<aril-export-overlay-panel [exportConfig]=\"exportConfig()!\" [columns]=\"columns\" />\r\n\r\n<p-toast key=\"export-toast\">\r\n\t<ng-template let-message pTemplate=\"message\">\r\n\t\t<span class=\"p-toast-message-icon\">\r\n\t\t\t<CheckIcon />\r\n\t\t</span>\r\n\t\t<div class=\"p-toast-message-text\">\r\n\t\t\t<div class=\"p-toast-summary\">{{ message.summary }}</div>\r\n\t\t\t<div class=\"p-toast-detail\" [innerHTML]=\"message.detail | safe: 'html'\"></div>\r\n\t\t</div>\r\n\t</ng-template>\r\n</p-toast>\r\n\r\n@if (openSelectionOnSidebar() && selectionMode() === 'single') {\r\n\t<p-sidebar\r\n\t\t[(visible)]=\"sidebarVisible\"\r\n\t\tposition=\"right\"\r\n\t\t[style]=\"{ 'max-width': '800px', width: '100%' }\"\r\n\t\t(onHide)=\"selectedRows = undefined\"\r\n\t\t[modal]=\"false\">\r\n\t\t<ng-template pTemplate=\"header\">\r\n\t\t\t<span class=\"font-semibold text-xl\">{{ translocoService.translate('table.sidebarDetailHeader') }}</span>\r\n\t\t</ng-template>\r\n\r\n\t\t@if (sidebarVisible) {\r\n\t\t\t<p-table [value]=\"selectedRows | keyvalue\" [paginator]=\"false\" styleClass=\"p-datatable-sm\">\r\n\t\t\t\t<ng-template pTemplate=\"header\">\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<th>{{ translocoService.translate('table.field') }}</th>\r\n\t\t\t\t\t\t<th>{{ translocoService.translate('table.value') }}</th>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</ng-template>\r\n\r\n\t\t\t\t<ng-template pTemplate=\"body\" let-item let-index=\"rowIndex\">\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t@if (columns | getColumnByField: item.key; as column) {\r\n\t\t\t\t\t\t\t<td [width]=\"'120px'\">{{ column.header() }}</td>\r\n\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t@if (column.type() === 'json' && item.value) {\r\n\t\t\t\t\t\t\t\t\t<div [ngStyle]=\"{ display: 'grid' }\">\r\n\t\t\t\t\t\t\t\t\t\t<pre\r\n\t\t\t\t\t\t\t\t\t\t\tclass=\"overflow-y-auto max-h-30rem border-300 border-1 border-round my-2 p-3\"><code>{{item.value | parse | json}}</code></pre>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t} @else if (column.type() === 'long-text' && item.value) {\r\n\t\t\t\t\t\t\t\t\t<aril-value type=\"text\" [model]=\"item.value\" />\r\n\t\t\t\t\t\t\t\t} @else {\r\n\t\t\t\t\t\t\t\t\t<ng-template ngFor [ngForOf]=\"[selectedRows]\" [ngForTemplate]=\"column.template\" />\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</ng-template>\r\n\t\t\t</p-table>\r\n\t\t}\r\n\r\n\t\t<ng-template pTemplate=\"footer\">\r\n\t\t\t<div class=\"flex align-items-center justify-content-between\">\r\n\t\t\t\t<aril-button\r\n\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\ticon=\"ARROW_LEFT\"\r\n\t\t\t\t\tcolor=\"primary\"\r\n\t\t\t\t\t[label]=\"translocoService.translate('table.prevRecord')\"\r\n\t\t\t\t\t(clickEvent)=\"prevRecord()\" />\r\n\r\n\t\t\t\t<aril-button\r\n\t\t\t\t\tsize=\"sm\"\r\n\t\t\t\t\ticon=\"ARROW_RIGHT\"\r\n\t\t\t\t\ticonPos=\"right\"\r\n\t\t\t\t\tcolor=\"primary\"\r\n\t\t\t\t\t[label]=\"translocoService.translate('table.nextRecord')\"\r\n\t\t\t\t\t(clickEvent)=\"nextRecord()\" />\r\n\t\t\t</div>\r\n\t\t</ng-template>\r\n\t</p-sidebar>\r\n}\r\n", styles: ["::ng-deep aril-table th{min-width:0px!important}::ng-deep .p-datatable .p-datatable-tbody>tr.p-highlight{background-color:#e3f2fd!important;color:#475569!important}.no-wrap-word{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}\n"] }]
|
|
705
|
-
}], ctorParameters: () => [{ type: i4.TranslocoService }, { type: i5.SelectionGroupService }], propDecorators: { onPageEvent: [{
|
|
706
|
-
type: Output
|
|
707
|
-
}], selectionEvent: [{
|
|
708
|
-
type: Output
|
|
709
|
-
}], lazyLoadEvent: [{
|
|
710
|
-
type: Output
|
|
711
|
-
}], rowReorderEvent: [{
|
|
712
|
-
type: Output
|
|
713
|
-
}], columns: [{
|
|
714
|
-
type: ContentChildren,
|
|
715
|
-
args: [TableColumnComponent]
|
|
716
|
-
}], exportOp: [{
|
|
717
|
-
type: ViewChild,
|
|
718
|
-
args: [ExportOverlayPanelComponent]
|
|
719
|
-
}], tableRef: [{
|
|
720
|
-
type: ViewChild,
|
|
721
|
-
args: [Table]
|
|
722
|
-
}], kebabMenuItems: [{
|
|
723
|
-
type: Input
|
|
724
|
-
}], expandableFields: [{
|
|
725
|
-
type: Input
|
|
726
|
-
}] } });
|
|
727
|
-
|
|
728
|
-
const components = [TableComponent, TableColumnComponent];
|
|
729
|
-
class ARiLTableModule {
|
|
730
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ARiLTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
731
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: ARiLTableModule, declarations: [TableComponent, TableColumnComponent], imports: [ARiLFormModule,
|
|
732
|
-
ButtonComponent,
|
|
733
|
-
ButtonModule,
|
|
734
|
-
CalendarComponent,
|
|
735
|
-
CheckboxComponent,
|
|
736
|
-
CheckIcon,
|
|
737
|
-
DropdownModule,
|
|
738
|
-
FieldComponent,
|
|
739
|
-
FormsModule,
|
|
740
|
-
GetColumnByFieldPipe,
|
|
741
|
-
JsonPipe,
|
|
742
|
-
KeyValuePipe,
|
|
743
|
-
MenuModule,
|
|
744
|
-
NgFor,
|
|
745
|
-
NgForOf,
|
|
746
|
-
NgStyle,
|
|
747
|
-
NgTemplateOutlet,
|
|
748
|
-
NumberComponent,
|
|
749
|
-
OrderListModule,
|
|
750
|
-
OverlayPanelModule,
|
|
751
|
-
ParsePipe,
|
|
752
|
-
RadioButtonComponent,
|
|
753
|
-
ReactiveFormsModule,
|
|
754
|
-
SafePipe,
|
|
755
|
-
SidebarModule,
|
|
756
|
-
TableModule,
|
|
757
|
-
TextComponent,
|
|
758
|
-
ToastModule,
|
|
759
|
-
TooltipModule,
|
|
760
|
-
ValueComponent,
|
|
761
|
-
ExportOverlayPanelComponent,
|
|
762
|
-
SlicePipe], exports: [TableComponent, TableColumnComponent] }); }
|
|
763
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ARiLTableModule, imports: [ARiLFormModule,
|
|
764
|
-
ButtonComponent,
|
|
765
|
-
ButtonModule,
|
|
766
|
-
CalendarComponent,
|
|
767
|
-
CheckboxComponent,
|
|
768
|
-
CheckIcon,
|
|
769
|
-
DropdownModule,
|
|
770
|
-
FieldComponent,
|
|
771
|
-
FormsModule,
|
|
772
|
-
MenuModule,
|
|
773
|
-
NumberComponent,
|
|
774
|
-
OrderListModule,
|
|
775
|
-
OverlayPanelModule,
|
|
776
|
-
RadioButtonComponent,
|
|
777
|
-
ReactiveFormsModule,
|
|
778
|
-
SidebarModule,
|
|
779
|
-
TableModule,
|
|
780
|
-
TextComponent,
|
|
781
|
-
ToastModule,
|
|
782
|
-
TooltipModule,
|
|
783
|
-
ValueComponent,
|
|
784
|
-
ExportOverlayPanelComponent] }); }
|
|
785
|
-
}
|
|
786
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ARiLTableModule, decorators: [{
|
|
787
|
-
type: NgModule,
|
|
788
|
-
args: [{
|
|
789
|
-
imports: [
|
|
790
|
-
ARiLFormModule,
|
|
791
|
-
ButtonComponent,
|
|
792
|
-
ButtonModule,
|
|
793
|
-
CalendarComponent,
|
|
794
|
-
CheckboxComponent,
|
|
795
|
-
CheckIcon,
|
|
796
|
-
DropdownModule,
|
|
797
|
-
FieldComponent,
|
|
798
|
-
FormsModule,
|
|
799
|
-
GetColumnByFieldPipe,
|
|
800
|
-
JsonPipe,
|
|
801
|
-
KeyValuePipe,
|
|
802
|
-
MenuModule,
|
|
803
|
-
NgFor,
|
|
804
|
-
NgForOf,
|
|
805
|
-
NgStyle,
|
|
806
|
-
NgTemplateOutlet,
|
|
807
|
-
NumberComponent,
|
|
808
|
-
OrderListModule,
|
|
809
|
-
OverlayPanelModule,
|
|
810
|
-
ParsePipe,
|
|
811
|
-
RadioButtonComponent,
|
|
812
|
-
ReactiveFormsModule,
|
|
813
|
-
SafePipe,
|
|
814
|
-
SidebarModule,
|
|
815
|
-
TableModule,
|
|
816
|
-
TextComponent,
|
|
817
|
-
ToastModule,
|
|
818
|
-
TooltipModule,
|
|
819
|
-
ValueComponent,
|
|
820
|
-
ExportOverlayPanelComponent,
|
|
821
|
-
SlicePipe
|
|
822
|
-
],
|
|
823
|
-
exports: [components],
|
|
824
|
-
declarations: [components]
|
|
825
|
-
}]
|
|
826
|
-
}] });
|
|
827
|
-
|
|
828
|
-
/**
|
|
829
|
-
* Generated bundle index. Do not edit.
|
|
830
|
-
*/
|
|
831
|
-
|
|
832
|
-
export { ARiLTableModule, ColumnFilterTypeEnum, DateFormat, ExportOverlayPanelComponent, ExportType, FilterOperand, TableColumnComponent, TableComponent };
|
|
833
|
-
//# sourceMappingURL=aril-ui-table.mjs.map
|