@pepperi-addons/ngx-lib 0.3.15-beta.8 → 0.4.0-angular14.2
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/address/address.component.d.ts +3 -0
- package/address/address.module.d.ts +13 -0
- package/address/index.d.ts +5 -0
- package/attachment/attachment.component.d.ts +3 -0
- package/attachment/attachment.module.d.ts +12 -0
- package/attachment/index.d.ts +5 -0
- package/bread-crumbs/bread-crumbs.component.d.ts +4 -0
- package/bread-crumbs/bread-crumbs.component.theme.scss +7 -7
- package/bread-crumbs/bread-crumbs.module.d.ts +10 -0
- package/bread-crumbs/index.d.ts +5 -0
- package/button/button.component.d.ts +3 -0
- package/button/button.module.d.ts +11 -0
- package/button/index.d.ts +5 -0
- package/carousel/carousel-item.directive.d.ts +3 -0
- package/carousel/carousel.component.d.ts +3 -0
- package/carousel/carousel.module.d.ts +6 -0
- package/carousel/index.d.ts +5 -0
- package/checkbox/checkbox.component.d.ts +3 -0
- package/checkbox/checkbox.module.d.ts +14 -0
- package/checkbox/index.d.ts +5 -0
- package/color/color-picker.component.d.ts +4 -0
- package/color/color.component.d.ts +4 -0
- package/color/color.module.d.ts +21 -0
- package/color/index.d.ts +5 -0
- package/core/clipboard/clipboard.directive.d.ts +3 -0
- package/core/clipboard/clipboard.service.d.ts +3 -0
- package/core/common/directives/auto-width.directive.d.ts +3 -0
- package/core/common/directives/button-blur.directive.d.ts +3 -0
- package/core/common/directives/button-loader.directive.d.ts +3 -0
- package/core/common/directives/data-qa.directive.d.ts +3 -0
- package/core/common/directives/menu-blur.directive.d.ts +3 -0
- package/core/common/directives/prevent-multi-click.directive.d.ts +3 -0
- package/core/common/directives/print.directive.d.ts +3 -0
- package/core/common/pipes/common-pipes.d.ts +21 -0
- package/core/common/pipes/date-ago.pipe.d.ts +11 -0
- package/core/common/pipes/public-api.d.ts +1 -0
- package/core/common/services/addon.service.d.ts +3 -0
- package/core/common/services/color.service.d.ts +3 -0
- package/core/common/services/cookie.service.d.ts +3 -0
- package/core/common/services/data-convertor.service.d.ts +3 -0
- package/core/common/services/file.service.d.ts +3 -0
- package/core/common/services/jwt-helper.service.d.ts +3 -0
- package/core/common/services/session.service.d.ts +3 -0
- package/core/common/services/translate.service.d.ts +3 -0
- package/core/common/services/utilities.service.d.ts +20 -1
- package/core/common/services/validator.service.d.ts +3 -0
- package/core/common/services/window-scrolling.service.d.ts +3 -0
- package/core/customization/customization.service.d.ts +4 -0
- package/core/http/interceptors/error.interceptor.d.ts +3 -0
- package/core/http/interceptors/loader.interceptor.d.ts +3 -0
- package/core/http/interceptors/profiler.interceptor.d.ts +3 -0
- package/core/http/services/http.service.d.ts +3 -0
- package/core/http/services/loader.service.d.ts +3 -0
- package/core/layout/layout.service.d.ts +3 -0
- package/core/layout/rtl.directive.d.ts +5 -0
- package/core/portal/attach.directive.d.ts +3 -0
- package/core/portal/portal.service.d.ts +3 -0
- package/core/portal/target.directive.d.ts +3 -0
- package/core/scroll-to/scroll-to.service.d.ts +3 -0
- package/date/date.component.d.ts +3 -0
- package/date/date.model.d.ts +5 -0
- package/date/date.module.d.ts +18 -0
- package/date/index.d.ts +5 -0
- package/dialog/default-dialog.component.d.ts +3 -0
- package/dialog/dialog.component.d.ts +3 -0
- package/dialog/dialog.model.d.ts +4 -0
- package/dialog/dialog.module.d.ts +13 -0
- package/dialog/dialog.service.d.ts +3 -0
- package/dialog/index.d.ts +5 -0
- package/draggable-items/draggable-item/draggable-item.component.d.ts +3 -0
- package/draggable-items/draggable-items.component.d.ts +4 -1
- package/draggable-items/draggable-items.model.d.ts +5 -1
- package/draggable-items/draggable-items.module.d.ts +13 -0
- package/draggable-items/index.d.ts +5 -0
- package/esm2020/address/address.component.mjs +109 -0
- package/esm2020/address/address.module.mjs +54 -0
- package/{esm2015/address/pepperi-addons-ngx-lib-address.js → esm2020/address/pepperi-addons-ngx-lib-address.mjs} +0 -0
- package/{esm2015/address/public-api.js → esm2020/address/public-api.mjs} +0 -0
- package/esm2020/attachment/attachment.component.mjs +220 -0
- package/esm2020/attachment/attachment.module.mjs +50 -0
- package/{esm2015/attachment/pepperi-addons-ngx-lib-attachment.js → esm2020/attachment/pepperi-addons-ngx-lib-attachment.mjs} +0 -0
- package/{esm2015/attachment/public-api.js → esm2020/attachment/public-api.mjs} +0 -0
- package/esm2020/bread-crumbs/bread-crumbs.component.mjs +85 -0
- package/{esm2015/bread-crumbs/bread-crumbs.model.js → esm2020/bread-crumbs/bread-crumbs.model.mjs} +0 -0
- package/esm2020/bread-crumbs/bread-crumbs.module.mjs +50 -0
- package/{esm2015/bread-crumbs/pepperi-addons-ngx-lib-bread-crumbs.js → esm2020/bread-crumbs/pepperi-addons-ngx-lib-bread-crumbs.mjs} +0 -0
- package/{esm2015/bread-crumbs/public-api.js → esm2020/bread-crumbs/public-api.mjs} +0 -0
- package/esm2020/button/button.component.mjs +138 -0
- package/{esm2015/button/button.model.js → esm2020/button/button.model.mjs} +0 -0
- package/esm2020/button/button.module.mjs +46 -0
- package/{esm2015/button/pepperi-addons-ngx-lib-button.js → esm2020/button/pepperi-addons-ngx-lib-button.mjs} +0 -0
- package/{esm2015/button/public-api.js → esm2020/button/public-api.mjs} +0 -0
- package/esm2020/carousel/carousel-item.directive.mjs +33 -0
- package/esm2020/carousel/carousel.component.mjs +745 -0
- package/esm2020/carousel/carousel.module.mjs +17 -0
- package/{esm2015/carousel/pepperi-addons-ngx-lib-carousel.js → esm2020/carousel/pepperi-addons-ngx-lib-carousel.mjs} +0 -0
- package/{esm2015/carousel/public-api.js → esm2020/carousel/public-api.mjs} +0 -0
- package/esm2020/checkbox/checkbox.component.mjs +168 -0
- package/esm2020/checkbox/checkbox.module.mjs +63 -0
- package/{esm2015/checkbox/pepperi-addons-ngx-lib-checkbox.js → esm2020/checkbox/pepperi-addons-ngx-lib-checkbox.mjs} +0 -0
- package/{esm2015/checkbox/public-api.js → esm2020/checkbox/public-api.mjs} +0 -0
- package/esm2020/color/color-picker.component.mjs +224 -0
- package/esm2020/color/color.component.mjs +90 -0
- package/{esm2015/color/color.model.js → esm2020/color/color.model.mjs} +0 -0
- package/esm2020/color/color.module.mjs +93 -0
- package/esm2020/color/pepperi-addons-ngx-lib-color.mjs +5 -0
- package/{esm2015/color/public-api.js → esm2020/color/public-api.mjs} +0 -0
- package/esm2020/core/clipboard/clipboard.directive.mjs +24 -0
- package/esm2020/core/clipboard/clipboard.service.mjs +14 -0
- package/{esm2015/core/clipboard/index.js → esm2020/core/clipboard/index.mjs} +0 -0
- package/{esm2015/core/clipboard/public-api.js → esm2020/core/clipboard/public-api.mjs} +0 -0
- package/esm2020/core/common/directives/auto-width.directive.mjs +77 -0
- package/esm2020/core/common/directives/button-blur.directive.mjs +24 -0
- package/esm2020/core/common/directives/button-loader.directive.mjs +112 -0
- package/esm2020/core/common/directives/data-qa.directive.mjs +23 -0
- package/{esm2015/core/common/directives/index.js → esm2020/core/common/directives/index.mjs} +0 -0
- package/esm2020/core/common/directives/menu-blur.directive.mjs +32 -0
- package/esm2020/core/common/directives/prevent-multi-click.directive.mjs +27 -0
- package/esm2020/core/common/directives/print.directive.mjs +170 -0
- package/{esm2015/core/common/directives/public-api.js → esm2020/core/common/directives/public-api.mjs} +0 -0
- package/{esm2015/core/common/index.js → esm2020/core/common/index.mjs} +0 -0
- package/{esm2015/core/common/model/index.js → esm2020/core/common/model/index.mjs} +0 -0
- package/{esm2015/core/common/model/papi.model.js → esm2020/core/common/model/papi.model.mjs} +0 -0
- package/{esm2015/core/common/model/public-api.js → esm2020/core/common/model/public-api.mjs} +0 -0
- package/{esm2015/core/common/model/utilities.model.js → esm2020/core/common/model/utilities.model.mjs} +0 -0
- package/{esm2015/core/common/model/wapi.model.js → esm2020/core/common/model/wapi.model.mjs} +0 -0
- package/esm2020/core/common/pipes/common-pipes.mjs +167 -0
- package/esm2020/core/common/pipes/date-ago.pipe.mjs +46 -0
- package/{esm2015/core/common/pipes/index.js → esm2020/core/common/pipes/index.mjs} +0 -0
- package/esm2020/core/common/pipes/public-api.mjs +6 -0
- package/{esm2015/core/common/public-api.js → esm2020/core/common/public-api.mjs} +0 -0
- package/esm2020/core/common/services/addon.service.mjs +148 -0
- package/esm2020/core/common/services/color.service.mjs +359 -0
- package/esm2020/core/common/services/cookie.service.mjs +153 -0
- package/esm2020/core/common/services/data-convertor.service.mjs +119 -0
- package/esm2020/core/common/services/file.service.mjs +213 -0
- package/{esm2015/core/common/services/index.js → esm2020/core/common/services/index.mjs} +0 -0
- package/esm2020/core/common/services/jwt-helper.service.mjs +106 -0
- package/{esm2015/core/common/services/public-api.js → esm2020/core/common/services/public-api.mjs} +0 -0
- package/esm2020/core/common/services/session.service.mjs +71 -0
- package/esm2020/core/common/services/translate.service.mjs +46 -0
- package/esm2020/core/common/services/utilities.service.mjs +210 -0
- package/esm2020/core/common/services/validator.service.mjs +272 -0
- package/esm2020/core/common/services/window-scrolling.service.mjs +36 -0
- package/esm2020/core/customization/customization.model.mjs +289 -0
- package/esm2020/core/customization/customization.service.mjs +771 -0
- package/{esm2015/core/customization/index.js → esm2020/core/customization/index.mjs} +0 -0
- package/{esm2015/core/customization/public-api.js → esm2020/core/customization/public-api.mjs} +0 -0
- package/{esm2015/core/http/index.js → esm2020/core/http/index.mjs} +0 -0
- package/esm2020/core/http/interceptors/error.interceptor.mjs +27 -0
- package/{esm2015/core/http/interceptors/index.js → esm2020/core/http/interceptors/index.mjs} +0 -0
- package/esm2020/core/http/interceptors/loader.interceptor.mjs +33 -0
- package/esm2020/core/http/interceptors/profiler.interceptor.mjs +32 -0
- package/{esm2015/core/http/public-api.js → esm2020/core/http/public-api.mjs} +0 -0
- package/esm2020/core/http/services/http.service.mjs +155 -0
- package/esm2020/core/http/services/loader.service.mjs +50 -0
- package/{esm2015/core/index.js → esm2020/core/index.mjs} +0 -0
- package/{esm2015/core/layout/index.js → esm2020/core/layout/index.mjs} +0 -0
- package/esm2020/core/layout/layout.service.mjs +168 -0
- package/{esm2015/core/layout/public-api.js → esm2020/core/layout/public-api.mjs} +0 -0
- package/esm2020/core/layout/rtl.directive.mjs +44 -0
- package/esm2020/core/portal/attach.directive.mjs +27 -0
- package/{esm2015/core/portal/index.js → esm2020/core/portal/index.mjs} +0 -0
- package/esm2020/core/portal/portal.service.mjs +36 -0
- package/{esm2015/core/portal/public-api.js → esm2020/core/portal/public-api.mjs} +0 -0
- package/esm2020/core/portal/target.directive.mjs +24 -0
- package/{esm2015/core/public-api.js → esm2020/core/public-api.mjs} +0 -0
- package/{esm2015/core/scroll-to/index.js → esm2020/core/scroll-to/index.mjs} +0 -0
- package/{esm2015/core/scroll-to/public-api.js → esm2020/core/scroll-to/public-api.mjs} +0 -0
- package/esm2020/core/scroll-to/scroll-to.service.mjs +84 -0
- package/esm2020/date/date.component.mjs +295 -0
- package/esm2020/date/date.model.mjs +54 -0
- package/esm2020/date/date.module.mjs +88 -0
- package/esm2020/date/pepperi-addons-ngx-lib-date.mjs +5 -0
- package/{esm2015/date/public-api.js → esm2020/date/public-api.mjs} +0 -0
- package/esm2020/dialog/default-dialog.component.mjs +37 -0
- package/esm2020/dialog/dialog.component.mjs +36 -0
- package/esm2020/dialog/dialog.model.mjs +33 -0
- package/esm2020/dialog/dialog.module.mjs +59 -0
- package/esm2020/dialog/dialog.service.mjs +82 -0
- package/esm2020/dialog/pepperi-addons-ngx-lib-dialog.mjs +5 -0
- package/{esm2015/dialog/public-api.js → esm2020/dialog/public-api.mjs} +0 -0
- package/esm2020/draggable-items/draggable-item/draggable-item.component.mjs +27 -0
- package/esm2020/draggable-items/draggable-items.component.mjs +102 -0
- package/esm2020/draggable-items/draggable-items.model.mjs +2 -0
- package/esm2020/draggable-items/draggable-items.module.mjs +60 -0
- package/{esm2015/draggable-items/pepperi-addons-ngx-lib-draggable-items.js → esm2020/draggable-items/pepperi-addons-ngx-lib-draggable-items.mjs} +0 -0
- package/{esm2015/draggable-items/public-api.js → esm2020/draggable-items/public-api.mjs} +0 -0
- package/esm2020/field-title/field-title.component.mjs +42 -0
- package/esm2020/field-title/field-title.module.mjs +47 -0
- package/{esm2015/field-title/pepperi-addons-ngx-lib-field-title.js → esm2020/field-title/pepperi-addons-ngx-lib-field-title.mjs} +0 -0
- package/{esm2015/field-title/public-api.js → esm2020/field-title/public-api.mjs} +0 -0
- package/esm2020/files-uploader/files-uploader.component.mjs +241 -0
- package/esm2020/files-uploader/files-uploader.module.mjs +79 -0
- package/{esm2015/files-uploader/pepperi-addons-ngx-lib-files-uploader.js → esm2020/files-uploader/pepperi-addons-ngx-lib-files-uploader.mjs} +0 -0
- package/{esm2015/files-uploader/public-api.js → esm2020/files-uploader/public-api.mjs} +0 -0
- package/esm2020/form/field-generator.component.mjs +153 -0
- package/esm2020/form/form.component.mjs +1218 -0
- package/{esm2015/form/form.model.js → esm2020/form/form.model.mjs} +0 -0
- package/esm2020/form/form.module.mjs +171 -0
- package/esm2020/form/indicators.component.mjs +23 -0
- package/esm2020/form/internal-button.component.mjs +184 -0
- package/esm2020/form/internal-carusel.component.mjs +119 -0
- package/esm2020/form/internal-carusel.service.mjs +32 -0
- package/esm2020/form/internal-field-generator.component.mjs +147 -0
- package/esm2020/form/internal-form.component.mjs +1214 -0
- package/esm2020/form/internal-list.component.mjs +510 -0
- package/esm2020/form/internal-menu.component.mjs +66 -0
- package/esm2020/form/internal-page.component.mjs +365 -0
- package/esm2020/form/internal-page.service.mjs +120 -0
- package/esm2020/form/pepperi-addons-ngx-lib-form.mjs +5 -0
- package/{esm2015/form/public-api.js → esm2020/form/public-api.mjs} +0 -0
- package/esm2020/group-buttons/group-buttons.component.mjs +67 -0
- package/esm2020/group-buttons/group-buttons.module.mjs +59 -0
- package/{esm2015/group-buttons/pepperi-addons-ngx-lib-group-buttons.js → esm2020/group-buttons/pepperi-addons-ngx-lib-group-buttons.mjs} +0 -0
- package/{esm2015/group-buttons/public-api.js → esm2020/group-buttons/public-api.mjs} +0 -0
- package/{esm2015/icon/icon-generated-all.model.js → esm2020/icon/icon-generated-all.model.mjs} +0 -0
- package/{esm2015/icon/icon-generated.model.js → esm2020/icon/icon-generated.model.mjs} +0 -0
- package/esm2020/icon/icon-registry.service.mjs +26 -0
- package/esm2020/icon/icon.component.mjs +91 -0
- package/esm2020/icon/icon.module.mjs +20 -0
- package/esm2020/icon/icon.service.mjs +31 -0
- package/{esm2015/icon/pepperi-addons-ngx-lib-icon.js → esm2020/icon/pepperi-addons-ngx-lib-icon.mjs} +0 -0
- package/{esm2015/icon/public-api.js → esm2020/icon/public-api.mjs} +0 -0
- package/esm2020/image/image.component.mjs +247 -0
- package/esm2020/image/image.module.mjs +74 -0
- package/esm2020/image/image.service.mjs +52 -0
- package/{esm2015/image/pepperi-addons-ngx-lib-image.js → esm2020/image/pepperi-addons-ngx-lib-image.mjs} +0 -0
- package/{esm2015/image/public-api.js → esm2020/image/public-api.mjs} +0 -0
- package/esm2020/images-filmstrip/images-filmstrip.component.mjs +425 -0
- package/esm2020/images-filmstrip/images-filmstrip.module.mjs +138 -0
- package/{esm2015/images-filmstrip/pepperi-addons-ngx-lib-images-filmstrip.js → esm2020/images-filmstrip/pepperi-addons-ngx-lib-images-filmstrip.mjs} +0 -0
- package/{esm2015/images-filmstrip/public-api.js → esm2020/images-filmstrip/public-api.mjs} +0 -0
- package/esm2020/link/link.component.mjs +340 -0
- package/esm2020/link/link.module.mjs +80 -0
- package/esm2020/link/link.pipes.mjs +18 -0
- package/esm2020/link/pepperi-addons-ngx-lib-link.mjs +5 -0
- package/{esm2015/link/public-api.js → esm2020/link/public-api.mjs} +0 -0
- package/esm2020/list/list-actions.component.mjs +44 -0
- package/esm2020/list/list-carousel.component.mjs +107 -0
- package/esm2020/list/list-chooser.component.mjs +64 -0
- package/esm2020/list/list-pager.component.mjs +120 -0
- package/esm2020/list/list-sorting.component.mjs +61 -0
- package/esm2020/list/list-total.component.mjs +30 -0
- package/esm2020/list/list-views.component.mjs +85 -0
- package/esm2020/list/list.component.mjs +1160 -0
- package/{esm2015/list/list.model.js → esm2020/list/list.model.mjs} +0 -0
- package/esm2020/list/list.module.mjs +144 -0
- package/esm2020/list/list.pipes.mjs +47 -0
- package/esm2020/list/pepperi-addons-ngx-lib-list.mjs +5 -0
- package/{esm2015/list/public-api.js → esm2020/list/public-api.mjs} +0 -0
- package/esm2020/list/virtual-scroller.mjs +1071 -0
- package/esm2020/menu/menu-item.component.mjs +115 -0
- package/esm2020/menu/menu.component.mjs +205 -0
- package/{esm2015/menu/menu.model.js → esm2020/menu/menu.model.mjs} +0 -0
- package/esm2020/menu/menu.module.mjs +59 -0
- package/esm2020/menu/pepperi-addons-ngx-lib-menu.mjs +5 -0
- package/{esm2015/menu/public-api.js → esm2020/menu/public-api.mjs} +0 -0
- package/esm2020/ngx-lib.module.mjs +156 -0
- package/esm2020/page-layout/page-layout.component.mjs +35 -0
- package/esm2020/page-layout/page-layout.module.mjs +34 -0
- package/{esm2015/page-layout/pepperi-addons-ngx-lib-page-layout.js → esm2020/page-layout/pepperi-addons-ngx-lib-page-layout.mjs} +0 -0
- package/{esm2015/page-layout/public-api.js → esm2020/page-layout/public-api.mjs} +0 -0
- package/esm2020/pepperi-addons-ngx-lib.mjs +5 -0
- package/{esm2015/profile-data-views-list/pepperi-addons-ngx-lib-profile-data-views-list.js → esm2020/profile-data-views-list/pepperi-addons-ngx-lib-profile-data-views-list.mjs} +0 -0
- package/esm2020/profile-data-views-list/profile-data-view/profile-data-view.component.mjs +45 -0
- package/esm2020/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.mjs +65 -0
- package/esm2020/profile-data-views-list/profile-data-views-list.component.mjs +95 -0
- package/{esm2015/profile-data-views-list/profile-data-views-list.model.js → esm2020/profile-data-views-list/profile-data-views-list.model.mjs} +0 -0
- package/esm2020/profile-data-views-list/profile-data-views-list.module.mjs +88 -0
- package/{esm2015/profile-data-views-list/public-api.js → esm2020/profile-data-views-list/public-api.mjs} +0 -0
- package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
- package/esm2020/quantity-selector/pepperi-addons-ngx-lib-quantity-selector.mjs +5 -0
- package/{esm2015/quantity-selector/public-api.js → esm2020/quantity-selector/public-api.mjs} +0 -0
- package/esm2020/quantity-selector/quantity-selector-validation.directive.mjs +47 -0
- package/esm2020/quantity-selector/quantity-selector.component.mjs +511 -0
- package/esm2020/quantity-selector/quantity-selector.module.mjs +82 -0
- package/esm2020/quantity-selector/quantity-selector.pipes.mjs +23 -0
- package/{esm2015/query-builder/common/model/field.js → esm2020/query-builder/common/model/field.mjs} +0 -0
- package/{esm2015/query-builder/common/model/filter.js → esm2020/query-builder/common/model/filter.mjs} +0 -0
- package/esm2020/query-builder/common/model/legacy.mjs +2 -0
- package/esm2020/query-builder/common/model/operator-unit.mjs +42 -0
- package/esm2020/query-builder/common/model/operator.mjs +266 -0
- package/{esm2015/query-builder/common/model/structure.js → esm2020/query-builder/common/model/structure.mjs} +0 -0
- package/esm2020/query-builder/common/model/type-map.mjs +27 -0
- package/{esm2015/query-builder/common/model/type.js → esm2020/query-builder/common/model/type.mjs} +0 -0
- package/esm2020/query-builder/common/services/output-query.service.mjs +114 -0
- package/esm2020/query-builder/common/services/query-structure.service.mjs +224 -0
- package/esm2020/query-builder/common/services/type-convertor.service.mjs +42 -0
- package/esm2020/query-builder/pepperi-addons-ngx-lib-query-builder.mjs +5 -0
- package/{esm2015/query-builder/public-api.js → esm2020/query-builder/public-api.mjs} +0 -0
- package/esm2020/query-builder/query-builder-item/query-builder-item.component.mjs +125 -0
- package/esm2020/query-builder/query-builder-section/query-builder-section.component.mjs +71 -0
- package/esm2020/query-builder/query-builder.component.mjs +110 -0
- package/esm2020/query-builder/query-builder.module.mjs +54 -0
- package/esm2020/query-builder/query-builder.service.mjs +102 -0
- package/esm2020/remote-loader/addon-block-loader.component.mjs +84 -0
- package/esm2020/remote-loader/addon-block-loader.service.mjs +61 -0
- package/{esm2015/remote-loader/pepperi-addons-ngx-lib-remote-loader.js → esm2020/remote-loader/pepperi-addons-ngx-lib-remote-loader.mjs} +0 -0
- package/esm2020/remote-loader/public-api.mjs +10 -0
- package/esm2020/remote-loader/remote-loader.component.mjs +124 -0
- package/esm2020/remote-loader/remote-loader.model.mjs +2 -0
- package/esm2020/remote-loader/remote-loader.module.mjs +60 -0
- package/esm2020/remote-loader/remote-loader.service.mjs +57 -0
- package/{esm2015/rich-html-textarea/pepperi-addons-ngx-lib-rich-html-textarea.js → esm2020/rich-html-textarea/pepperi-addons-ngx-lib-rich-html-textarea.mjs} +0 -0
- package/{esm2015/rich-html-textarea/public-api.js → esm2020/rich-html-textarea/public-api.mjs} +0 -0
- package/esm2020/rich-html-textarea/rich-html-textarea.component.mjs +245 -0
- package/esm2020/rich-html-textarea/rich-html-textarea.module.mjs +95 -0
- package/{esm2015/search/pepperi-addons-ngx-lib-search.js → esm2020/search/pepperi-addons-ngx-lib-search.mjs} +0 -0
- package/{esm2015/search/public-api.js → esm2020/search/public-api.mjs} +0 -0
- package/esm2020/search/search.component.mjs +317 -0
- package/{esm2015/search/search.model.js → esm2020/search/search.model.mjs} +0 -0
- package/esm2020/search/search.module.mjs +70 -0
- package/{esm2015/select/pepperi-addons-ngx-lib-select.js → esm2020/select/pepperi-addons-ngx-lib-select.mjs} +0 -0
- package/{esm2015/select/public-api.js → esm2020/select/public-api.mjs} +0 -0
- package/esm2020/select/select.component.mjs +238 -0
- package/esm2020/select/select.module.mjs +70 -0
- package/{esm2015/separator/pepperi-addons-ngx-lib-separator.js → esm2020/separator/pepperi-addons-ngx-lib-separator.mjs} +0 -0
- package/{esm2015/separator/public-api.js → esm2020/separator/public-api.mjs} +0 -0
- package/esm2020/separator/separator.component.mjs +63 -0
- package/esm2020/separator/separator.module.mjs +18 -0
- package/{esm2015/side-bar/pepperi-addons-ngx-lib-side-bar.js → esm2020/side-bar/pepperi-addons-ngx-lib-side-bar.mjs} +0 -0
- package/{esm2015/side-bar/public-api.js → esm2020/side-bar/public-api.mjs} +0 -0
- package/esm2020/side-bar/side-bar.component.mjs +138 -0
- package/{esm2015/side-bar/side-bar.model.js → esm2020/side-bar/side-bar.model.mjs} +0 -0
- package/esm2020/side-bar/side-bar.module.mjs +51 -0
- package/{esm2015/signature/pepperi-addons-ngx-lib-signature.js → esm2020/signature/pepperi-addons-ngx-lib-signature.mjs} +0 -0
- package/{esm2015/signature/public-api.js → esm2020/signature/public-api.mjs} +0 -0
- package/esm2020/signature/signature.component.mjs +254 -0
- package/esm2020/signature/signature.module.mjs +90 -0
- package/{esm2015/size-detector/pepperi-addons-ngx-lib-size-detector.js → esm2020/size-detector/pepperi-addons-ngx-lib-size-detector.mjs} +0 -0
- package/{esm2015/size-detector/public-api.js → esm2020/size-detector/public-api.mjs} +0 -0
- package/esm2020/size-detector/size-detector.component.mjs +92 -0
- package/esm2020/size-detector/size-detector.module.mjs +35 -0
- package/{esm2015/slider/pepperi-addons-ngx-lib-slider.js → esm2020/slider/pepperi-addons-ngx-lib-slider.mjs} +0 -0
- package/{esm2015/slider/public-api.js → esm2020/slider/public-api.mjs} +0 -0
- package/esm2020/slider/slider.component.mjs +101 -0
- package/esm2020/slider/slider.module.mjs +42 -0
- package/esm2020/smart-filters/boolean-filter/boolean-filter.component.mjs +75 -0
- package/esm2020/smart-filters/common/filter-actions.component.mjs +29 -0
- package/esm2020/smart-filters/common/model/base-filter-component.mjs +295 -0
- package/{esm2015/smart-filters/common/model/creator.js → esm2020/smart-filters/common/model/creator.mjs} +0 -0
- package/{esm2015/smart-filters/common/model/field.js → esm2020/smart-filters/common/model/field.mjs} +0 -0
- package/{esm2015/smart-filters/common/model/filter.js → esm2020/smart-filters/common/model/filter.mjs} +0 -0
- package/esm2020/smart-filters/common/model/operator.mjs +271 -0
- package/esm2020/smart-filters/common/model/type.mjs +2 -0
- package/esm2020/smart-filters/date-filter/date-filter.component.mjs +172 -0
- package/esm2020/smart-filters/multi-select-filter/multi-select-filter.component.mjs +200 -0
- package/esm2020/smart-filters/number-filter/number-filter.component.mjs +116 -0
- package/{esm2015/smart-filters/pepperi-addons-ngx-lib-smart-filters.js → esm2020/smart-filters/pepperi-addons-ngx-lib-smart-filters.mjs} +0 -0
- package/{esm2015/smart-filters/public-api.js → esm2020/smart-filters/public-api.mjs} +0 -0
- package/esm2020/smart-filters/smart-filters.component.mjs +141 -0
- package/esm2020/smart-filters/smart-filters.module.mjs +153 -0
- package/esm2020/smart-filters/text-filter/text-filter.component.mjs +92 -0
- package/esm2020/snack-bar/default-snack-bar.component.mjs +29 -0
- package/esm2020/snack-bar/pepperi-addons-ngx-lib-snack-bar.mjs +5 -0
- package/{esm2015/snack-bar/public-api.js → esm2020/snack-bar/public-api.mjs} +0 -0
- package/esm2020/snack-bar/snack-bar.component.mjs +26 -0
- package/{esm2015/snack-bar/snack-bar.model.js → esm2020/snack-bar/snack-bar.model.mjs} +0 -0
- package/esm2020/snack-bar/snack-bar.module.mjs +63 -0
- package/esm2020/snack-bar/snack-bar.service.mjs +60 -0
- package/{esm2015/textarea/pepperi-addons-ngx-lib-textarea.js → esm2020/textarea/pepperi-addons-ngx-lib-textarea.mjs} +0 -0
- package/{esm2015/textarea/public-api.js → esm2020/textarea/public-api.mjs} +0 -0
- package/esm2020/textarea/textarea.component.mjs +182 -0
- package/esm2020/textarea/textarea.module.mjs +82 -0
- package/esm2020/textbox/pepperi-addons-ngx-lib-textbox.mjs +5 -0
- package/{esm2015/textbox/public-api.js → esm2020/textbox/public-api.mjs} +0 -0
- package/esm2020/textbox/textbox-validation.directive.mjs +89 -0
- package/esm2020/textbox/textbox.component.mjs +443 -0
- package/esm2020/textbox/textbox.module.mjs +72 -0
- package/{esm2015/textbox-icon/pepperi-addons-ngx-lib-textbox-icon.js → esm2020/textbox-icon/pepperi-addons-ngx-lib-textbox-icon.mjs} +0 -0
- package/{esm2015/textbox-icon/public-api.js → esm2020/textbox-icon/public-api.mjs} +0 -0
- package/esm2020/textbox-icon/textbox-icon.component.mjs +48 -0
- package/esm2020/textbox-icon/textbox-icon.module.mjs +64 -0
- package/{esm2015/top-bar/pepperi-addons-ngx-lib-top-bar.js → esm2020/top-bar/pepperi-addons-ngx-lib-top-bar.mjs} +0 -0
- package/{esm2015/top-bar/public-api.js → esm2020/top-bar/public-api.mjs} +0 -0
- package/esm2020/top-bar/top-bar.component.mjs +112 -0
- package/{esm2015/top-bar/top-bar.model.js → esm2020/top-bar/top-bar.model.mjs} +0 -0
- package/esm2020/top-bar/top-bar.module.mjs +62 -0
- package/fesm2015/pepperi-addons-ngx-lib-address.mjs +170 -0
- package/fesm2015/pepperi-addons-ngx-lib-address.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs +277 -0
- package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.mjs +147 -0
- package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-button.mjs +197 -0
- package/fesm2015/pepperi-addons-ngx-lib-button.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs +804 -0
- package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs +237 -0
- package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-color.mjs +404 -0
- package/fesm2015/pepperi-addons-ngx-lib-color.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-date.mjs +441 -0
- package/fesm2015/pepperi-addons-ngx-lib-date.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs +242 -0
- package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs +192 -0
- package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs +96 -0
- package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs +326 -0
- package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-form.mjs +4202 -0
- package/fesm2015/pepperi-addons-ngx-lib-form.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs +132 -0
- package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-icon.mjs +661 -0
- package/fesm2015/pepperi-addons-ngx-lib-icon.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-image.mjs +374 -0
- package/fesm2015/pepperi-addons-ngx-lib-image.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs +552 -0
- package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-link.mjs +439 -0
- package/fesm2015/pepperi-addons-ngx-lib-link.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs +2896 -0
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-menu.mjs +391 -0
- package/fesm2015/pepperi-addons-ngx-lib-menu.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-page-layout.mjs +77 -0
- package/fesm2015/pepperi-addons-ngx-lib-page-layout.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs +289 -0
- package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.mjs +662 -0
- package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs +1160 -0
- package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs +391 -0
- package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs +344 -0
- package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-search.mjs +393 -0
- package/fesm2015/pepperi-addons-ngx-lib-search.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-select.mjs +314 -0
- package/fesm2015/pepperi-addons-ngx-lib-select.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-separator.mjs +89 -0
- package/fesm2015/pepperi-addons-ngx-lib-separator.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs +194 -0
- package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-signature.mjs +350 -0
- package/fesm2015/pepperi-addons-ngx-lib-signature.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs +134 -0
- package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-slider.mjs +151 -0
- package/fesm2015/pepperi-addons-ngx-lib-slider.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs +1671 -0
- package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs +183 -0
- package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-textarea.mjs +271 -0
- package/fesm2015/pepperi-addons-ngx-lib-textarea.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs +118 -0
- package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs +605 -0
- package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs +180 -0
- package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-lib.mjs +4577 -0
- package/fesm2015/pepperi-addons-ngx-lib.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-address.mjs +170 -0
- package/fesm2020/pepperi-addons-ngx-lib-address.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-attachment.mjs +277 -0
- package/fesm2020/pepperi-addons-ngx-lib-attachment.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-bread-crumbs.mjs +147 -0
- package/fesm2020/pepperi-addons-ngx-lib-bread-crumbs.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-button.mjs +197 -0
- package/fesm2020/pepperi-addons-ngx-lib-button.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-carousel.mjs +800 -0
- package/fesm2020/pepperi-addons-ngx-lib-carousel.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-checkbox.mjs +237 -0
- package/fesm2020/pepperi-addons-ngx-lib-checkbox.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-color.mjs +401 -0
- package/fesm2020/pepperi-addons-ngx-lib-color.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-date.mjs +437 -0
- package/fesm2020/pepperi-addons-ngx-lib-date.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-dialog.mjs +237 -0
- package/fesm2020/pepperi-addons-ngx-lib-dialog.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-draggable-items.mjs +191 -0
- package/fesm2020/pepperi-addons-ngx-lib-draggable-items.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-field-title.mjs +96 -0
- package/fesm2020/pepperi-addons-ngx-lib-field-title.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-files-uploader.mjs +323 -0
- package/fesm2020/pepperi-addons-ngx-lib-files-uploader.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-form.mjs +4198 -0
- package/fesm2020/pepperi-addons-ngx-lib-form.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-group-buttons.mjs +132 -0
- package/fesm2020/pepperi-addons-ngx-lib-group-buttons.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-icon.mjs +659 -0
- package/fesm2020/pepperi-addons-ngx-lib-icon.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-image.mjs +372 -0
- package/fesm2020/pepperi-addons-ngx-lib-image.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-images-filmstrip.mjs +549 -0
- package/fesm2020/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-link.mjs +439 -0
- package/fesm2020/pepperi-addons-ngx-lib-link.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs +2882 -0
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-menu.mjs +391 -0
- package/fesm2020/pepperi-addons-ngx-lib-menu.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-page-layout.mjs +77 -0
- package/fesm2020/pepperi-addons-ngx-lib-page-layout.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-profile-data-views-list.mjs +288 -0
- package/fesm2020/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-quantity-selector.mjs +661 -0
- package/fesm2020/pepperi-addons-ngx-lib-quantity-selector.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-query-builder.mjs +1149 -0
- package/fesm2020/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-remote-loader.mjs +380 -0
- package/fesm2020/pepperi-addons-ngx-lib-remote-loader.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-rich-html-textarea.mjs +344 -0
- package/fesm2020/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-search.mjs +392 -0
- package/fesm2020/pepperi-addons-ngx-lib-search.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-select.mjs +314 -0
- package/fesm2020/pepperi-addons-ngx-lib-select.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-separator.mjs +89 -0
- package/fesm2020/pepperi-addons-ngx-lib-separator.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-side-bar.mjs +194 -0
- package/fesm2020/pepperi-addons-ngx-lib-side-bar.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-signature.mjs +350 -0
- package/fesm2020/pepperi-addons-ngx-lib-signature.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs +134 -0
- package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-slider.mjs +150 -0
- package/fesm2020/pepperi-addons-ngx-lib-slider.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-smart-filters.mjs +1664 -0
- package/fesm2020/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-snack-bar.mjs +180 -0
- package/fesm2020/pepperi-addons-ngx-lib-snack-bar.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-textarea.mjs +270 -0
- package/fesm2020/pepperi-addons-ngx-lib-textarea.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-textbox-icon.mjs +118 -0
- package/fesm2020/pepperi-addons-ngx-lib-textbox-icon.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-textbox.mjs +605 -0
- package/fesm2020/pepperi-addons-ngx-lib-textbox.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib-top-bar.mjs +179 -0
- package/fesm2020/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-lib.mjs +4559 -0
- package/fesm2020/pepperi-addons-ngx-lib.mjs.map +1 -0
- package/field-title/field-title.component.d.ts +3 -0
- package/field-title/field-title.module.d.ts +10 -0
- package/field-title/index.d.ts +5 -0
- package/files-uploader/files-uploader.component.d.ts +4 -0
- package/files-uploader/files-uploader.module.d.ts +16 -0
- package/files-uploader/index.d.ts +5 -0
- package/form/field-generator.component.d.ts +3 -0
- package/form/form.component.d.ts +3 -0
- package/form/form.module.d.ts +44 -0
- package/form/index.d.ts +5 -0
- package/form/indicators.component.d.ts +3 -0
- package/form/internal-button.component.d.ts +3 -0
- package/form/internal-carusel.component.d.ts +3 -0
- package/form/internal-carusel.service.d.ts +3 -0
- package/form/internal-field-generator.component.d.ts +35 -0
- package/form/internal-form.component.d.ts +89 -0
- package/form/internal-list.component.d.ts +3 -0
- package/form/internal-menu.component.d.ts +3 -0
- package/form/internal-page.component.d.ts +3 -0
- package/form/internal-page.service.d.ts +3 -0
- package/group-buttons/group-buttons.component.d.ts +3 -0
- package/group-buttons/group-buttons.module.d.ts +13 -0
- package/group-buttons/index.d.ts +5 -0
- package/icon/icon-registry.service.d.ts +3 -0
- package/icon/icon.component.d.ts +3 -0
- package/icon/icon.module.d.ts +5 -0
- package/icon/icon.service.d.ts +3 -0
- package/icon/index.d.ts +5 -0
- package/image/image.component.d.ts +3 -0
- package/image/image.module.d.ts +15 -0
- package/image/image.service.d.ts +3 -0
- package/image/index.d.ts +5 -0
- package/images-filmstrip/images-filmstrip.component.d.ts +6 -3
- package/images-filmstrip/images-filmstrip.module.d.ts +17 -0
- package/images-filmstrip/index.d.ts +5 -0
- package/index.d.ts +5 -0
- package/link/index.d.ts +5 -0
- package/link/link.component.d.ts +3 -0
- package/link/link.module.d.ts +17 -0
- package/link/link.pipes.d.ts +3 -0
- package/list/index.d.ts +5 -0
- package/list/list-actions.component.d.ts +4 -0
- package/list/list-carousel.component.d.ts +4 -0
- package/list/list-chooser.component.d.ts +4 -0
- package/list/list-pager.component.d.ts +4 -0
- package/list/list-sorting.component.d.ts +4 -0
- package/list/list-total.component.d.ts +4 -0
- package/list/list-total.component.theme.scss +7 -7
- package/list/list-views.component.d.ts +4 -0
- package/list/list.component.d.ts +3 -0
- package/list/list.module.d.ts +29 -0
- package/list/list.pipes.d.ts +5 -0
- package/list/virtual-scroller.d.ts +8 -1
- package/menu/index.d.ts +5 -0
- package/menu/menu-item.component.d.ts +3 -0
- package/menu/menu.component.d.ts +3 -0
- package/menu/menu.module.d.ts +13 -0
- package/ngx-lib.module.d.ts +21 -0
- package/package.json +345 -20
- package/page-layout/index.d.ts +5 -0
- package/page-layout/page-layout.component.d.ts +3 -0
- package/page-layout/page-layout.module.d.ts +8 -0
- package/profile-data-views-list/index.d.ts +5 -0
- package/profile-data-views-list/profile-data-view/profile-data-view.component.d.ts +3 -0
- package/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.d.ts +3 -0
- package/profile-data-views-list/profile-data-views-list.component.d.ts +3 -0
- package/profile-data-views-list/profile-data-views-list.module.d.ts +18 -0
- package/quantity-selector/index.d.ts +5 -0
- package/quantity-selector/quantity-selector-validation.directive.d.ts +3 -0
- package/quantity-selector/quantity-selector.component.d.ts +3 -0
- package/quantity-selector/quantity-selector.module.d.ts +18 -0
- package/quantity-selector/quantity-selector.pipes.d.ts +3 -0
- package/query-builder/common/model/legacy.d.ts +1 -1
- package/query-builder/common/model/operator-unit.d.ts +1 -1
- package/query-builder/common/model/type-map.d.ts +3 -3
- package/query-builder/common/services/output-query.service.d.ts +3 -0
- package/query-builder/common/services/query-structure.service.d.ts +9 -1
- package/query-builder/common/services/type-convertor.service.d.ts +3 -0
- package/query-builder/index.d.ts +5 -0
- package/query-builder/query-builder-item/query-builder-item.component.d.ts +6 -2
- package/query-builder/query-builder-section/query-builder-section.component.d.ts +4 -1
- package/query-builder/query-builder.component.d.ts +4 -0
- package/query-builder/query-builder.module.d.ts +14 -0
- package/query-builder/query-builder.service.d.ts +3 -0
- package/remote-loader/addon-block-loader.component.d.ts +11 -3
- package/remote-loader/addon-block-loader.service.d.ts +16 -0
- package/remote-loader/index.d.ts +5 -0
- package/remote-loader/public-api.d.ts +1 -0
- package/remote-loader/remote-loader.component.d.ts +3 -0
- package/remote-loader/remote-loader.model.d.ts +4 -2
- package/remote-loader/remote-loader.module.d.ts +11 -0
- package/remote-loader/remote-loader.service.d.ts +7 -13
- package/rich-html-textarea/index.d.ts +5 -0
- package/rich-html-textarea/rich-html-textarea.component.d.ts +3 -0
- package/rich-html-textarea/rich-html-textarea.module.d.ts +20 -0
- package/search/index.d.ts +5 -0
- package/search/search.component.d.ts +4 -0
- package/search/search.module.d.ts +15 -0
- package/select/index.d.ts +5 -0
- package/select/select.component.d.ts +3 -0
- package/select/select.module.d.ts +15 -0
- package/separator/index.d.ts +5 -0
- package/separator/separator.component.d.ts +3 -0
- package/separator/separator.module.d.ts +6 -0
- package/side-bar/index.d.ts +5 -0
- package/side-bar/side-bar.component.d.ts +4 -0
- package/side-bar/side-bar.module.d.ts +11 -0
- package/signature/index.d.ts +5 -0
- package/signature/signature.component.d.ts +3 -0
- package/signature/signature.module.d.ts +19 -0
- package/size-detector/index.d.ts +5 -0
- package/size-detector/size-detector.component.d.ts +3 -0
- package/size-detector/size-detector.module.d.ts +9 -0
- package/slider/index.d.ts +5 -0
- package/slider/slider.component.d.ts +3 -0
- package/slider/slider.module.d.ts +10 -0
- package/smart-filters/boolean-filter/boolean-filter.component.d.ts +16 -0
- package/smart-filters/common/filter-actions.component.d.ts +3 -0
- package/smart-filters/common/model/base-filter-component.d.ts +7 -1
- package/smart-filters/common/model/operator.d.ts +13 -0
- package/smart-filters/common/model/type.d.ts +1 -1
- package/smart-filters/date-filter/date-filter.component.d.ts +18 -0
- package/smart-filters/index.d.ts +5 -0
- package/smart-filters/multi-select-filter/multi-select-filter.component.d.ts +18 -1
- package/smart-filters/number-filter/number-filter.component.d.ts +13 -0
- package/smart-filters/smart-filters.component.d.ts +3 -0
- package/smart-filters/smart-filters.module.d.ts +32 -0
- package/smart-filters/text-filter/text-filter.component.d.ts +11 -0
- package/snack-bar/default-snack-bar.component.d.ts +3 -0
- package/snack-bar/index.d.ts +5 -0
- package/snack-bar/snack-bar.component.d.ts +3 -0
- package/snack-bar/snack-bar.module.d.ts +14 -0
- package/snack-bar/snack-bar.service.d.ts +3 -0
- package/src/assets/i18n/en.ngx-lib.json +25 -2
- package/src/assets/i18n/hu.ngx-lib.json +1 -1
- package/src/assets/i18n/nl.ngx-lib.json +1 -1
- package/src/assets/i18n/pl.ngx-lib.json +1 -1
- package/src/assets/i18n/ru.ngx-lib.json +1 -1
- package/src/core/style/abstracts/mixins.scss +1 -1
- package/src/core/style/abstracts/variables.scss +5 -1
- package/src/core/style/base/base.scss +19 -0
- package/src/core/style/components/general.scss +1 -0
- package/src/core/style/themes/black-theme.scss +1 -1
- package/src/core/style/themes/default-theme.scss +1 -1
- package/src/core/style/themes/light-theme.scss +1 -1
- package/src/core/style/themes/nature-theme.scss +1 -1
- package/textarea/index.d.ts +5 -0
- package/textarea/textarea.component.d.ts +3 -0
- package/textarea/textarea.module.d.ts +18 -0
- package/textbox/index.d.ts +5 -0
- package/textbox/textbox-validation.directive.d.ts +3 -0
- package/textbox/textbox.component.d.ts +10 -0
- package/textbox/textbox.module.d.ts +17 -0
- package/textbox-icon/index.d.ts +5 -0
- package/textbox-icon/textbox-icon.component.d.ts +3 -0
- package/textbox-icon/textbox-icon.module.d.ts +11 -0
- package/theming.scss +1 -1
- package/top-bar/index.d.ts +5 -0
- package/top-bar/top-bar.component.d.ts +3 -0
- package/top-bar/top-bar.module.d.ts +13 -0
- package/address/package.json +0 -11
- package/address/pepperi-addons-ngx-lib-address.d.ts +0 -4
- package/address/pepperi-addons-ngx-lib-address.metadata.json +0 -1
- package/attachment/package.json +0 -11
- package/attachment/pepperi-addons-ngx-lib-attachment.d.ts +0 -4
- package/attachment/pepperi-addons-ngx-lib-attachment.metadata.json +0 -1
- package/bread-crumbs/package.json +0 -11
- package/bread-crumbs/pepperi-addons-ngx-lib-bread-crumbs.d.ts +0 -4
- package/bread-crumbs/pepperi-addons-ngx-lib-bread-crumbs.metadata.json +0 -1
- package/bundles/pepperi-addons-ngx-lib-address.umd.js +0 -145
- package/bundles/pepperi-addons-ngx-lib-address.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-attachment.umd.js +0 -268
- package/bundles/pepperi-addons-ngx-lib-attachment.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-bread-crumbs.umd.js +0 -145
- package/bundles/pepperi-addons-ngx-lib-bread-crumbs.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-button.umd.js +0 -182
- package/bundles/pepperi-addons-ngx-lib-button.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-carousel.umd.js +0 -812
- package/bundles/pepperi-addons-ngx-lib-carousel.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-checkbox.umd.js +0 -213
- package/bundles/pepperi-addons-ngx-lib-checkbox.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-color.umd.js +0 -323
- package/bundles/pepperi-addons-ngx-lib-color.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-date.umd.js +0 -698
- package/bundles/pepperi-addons-ngx-lib-date.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-dialog.umd.js +0 -239
- package/bundles/pepperi-addons-ngx-lib-dialog.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-draggable-items.umd.js +0 -175
- package/bundles/pepperi-addons-ngx-lib-draggable-items.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-field-title.umd.js +0 -78
- package/bundles/pepperi-addons-ngx-lib-field-title.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-files-uploader.umd.js +0 -281
- package/bundles/pepperi-addons-ngx-lib-files-uploader.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-form.umd.js +0 -3299
- package/bundles/pepperi-addons-ngx-lib-form.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-group-buttons.umd.js +0 -108
- package/bundles/pepperi-addons-ngx-lib-group-buttons.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-icon.umd.js +0 -834
- package/bundles/pepperi-addons-ngx-lib-icon.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-image.umd.js +0 -370
- package/bundles/pepperi-addons-ngx-lib-image.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-images-filmstrip.umd.js +0 -444
- package/bundles/pepperi-addons-ngx-lib-images-filmstrip.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-link.umd.js +0 -411
- package/bundles/pepperi-addons-ngx-lib-link.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-list.umd.js +0 -3274
- package/bundles/pepperi-addons-ngx-lib-list.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-menu.umd.js +0 -676
- package/bundles/pepperi-addons-ngx-lib-menu.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-page-layout.umd.js +0 -81
- package/bundles/pepperi-addons-ngx-lib-page-layout.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-profile-data-views-list.umd.js +0 -572
- package/bundles/pepperi-addons-ngx-lib-profile-data-views-list.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-quantity-selector.umd.js +0 -952
- package/bundles/pepperi-addons-ngx-lib-quantity-selector.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-query-builder.umd.js +0 -1143
- package/bundles/pepperi-addons-ngx-lib-query-builder.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-remote-loader.umd.js +0 -697
- package/bundles/pepperi-addons-ngx-lib-remote-loader.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-rich-html-textarea.umd.js +0 -296
- package/bundles/pepperi-addons-ngx-lib-rich-html-textarea.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-search.umd.js +0 -347
- package/bundles/pepperi-addons-ngx-lib-search.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-select.umd.js +0 -598
- package/bundles/pepperi-addons-ngx-lib-select.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-separator.umd.js +0 -100
- package/bundles/pepperi-addons-ngx-lib-separator.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-side-bar.umd.js +0 -184
- package/bundles/pepperi-addons-ngx-lib-side-bar.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-signature.umd.js +0 -307
- package/bundles/pepperi-addons-ngx-lib-signature.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-size-detector.umd.js +0 -134
- package/bundles/pepperi-addons-ngx-lib-size-detector.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-slider.umd.js +0 -145
- package/bundles/pepperi-addons-ngx-lib-slider.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-smart-filters.umd.js +0 -1848
- package/bundles/pepperi-addons-ngx-lib-smart-filters.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-snack-bar.umd.js +0 -202
- package/bundles/pepperi-addons-ngx-lib-snack-bar.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-textarea.umd.js +0 -232
- package/bundles/pepperi-addons-ngx-lib-textarea.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-textbox-icon.umd.js +0 -101
- package/bundles/pepperi-addons-ngx-lib-textbox-icon.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-textbox.umd.js +0 -554
- package/bundles/pepperi-addons-ngx-lib-textbox.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib-top-bar.umd.js +0 -150
- package/bundles/pepperi-addons-ngx-lib-top-bar.umd.js.map +0 -1
- package/bundles/pepperi-addons-ngx-lib.umd.js +0 -5022
- package/bundles/pepperi-addons-ngx-lib.umd.js.map +0 -1
- package/button/package.json +0 -11
- package/button/pepperi-addons-ngx-lib-button.d.ts +0 -4
- package/button/pepperi-addons-ngx-lib-button.metadata.json +0 -1
- package/carousel/package.json +0 -11
- package/carousel/pepperi-addons-ngx-lib-carousel.d.ts +0 -4
- package/carousel/pepperi-addons-ngx-lib-carousel.metadata.json +0 -1
- package/checkbox/package.json +0 -14
- package/checkbox/pepperi-addons-ngx-lib-checkbox.d.ts +0 -4
- package/checkbox/pepperi-addons-ngx-lib-checkbox.metadata.json +0 -1
- package/color/package.json +0 -14
- package/color/pepperi-addons-ngx-lib-color.d.ts +0 -5
- package/color/pepperi-addons-ngx-lib-color.metadata.json +0 -1
- package/date/package.json +0 -18
- package/date/pepperi-addons-ngx-lib-date.d.ts +0 -5
- package/date/pepperi-addons-ngx-lib-date.metadata.json +0 -1
- package/dialog/package.json +0 -15
- package/dialog/pepperi-addons-ngx-lib-dialog.d.ts +0 -5
- package/dialog/pepperi-addons-ngx-lib-dialog.metadata.json +0 -1
- package/draggable-items/package.json +0 -14
- package/draggable-items/pepperi-addons-ngx-lib-draggable-items.d.ts +0 -4
- package/draggable-items/pepperi-addons-ngx-lib-draggable-items.metadata.json +0 -1
- package/esm2015/address/address.component.js +0 -97
- package/esm2015/address/address.module.js +0 -31
- package/esm2015/attachment/attachment.component.js +0 -209
- package/esm2015/attachment/attachment.module.js +0 -29
- package/esm2015/bread-crumbs/bread-crumbs.component.js +0 -79
- package/esm2015/bread-crumbs/bread-crumbs.module.js +0 -35
- package/esm2015/button/button.component.js +0 -128
- package/esm2015/button/button.module.js +0 -27
- package/esm2015/carousel/carousel-item.directive.js +0 -27
- package/esm2015/carousel/carousel.component.js +0 -714
- package/esm2015/carousel/carousel.module.js +0 -12
- package/esm2015/checkbox/checkbox.component.js +0 -152
- package/esm2015/checkbox/checkbox.module.js +0 -40
- package/esm2015/color/color-picker.component.js +0 -224
- package/esm2015/color/color.component.js +0 -75
- package/esm2015/color/color.module.js +0 -58
- package/esm2015/color/pepperi-addons-ngx-lib-color.js +0 -6
- package/esm2015/core/clipboard/clipboard.directive.js +0 -20
- package/esm2015/core/clipboard/clipboard.service.js +0 -12
- package/esm2015/core/common/directives/auto-width.directive.js +0 -78
- package/esm2015/core/common/directives/button-blur.directive.js +0 -23
- package/esm2015/core/common/directives/button-loader.directive.js +0 -103
- package/esm2015/core/common/directives/data-qa.directive.js +0 -23
- package/esm2015/core/common/directives/menu-blur.directive.js +0 -29
- package/esm2015/core/common/directives/prevent-multi-click.directive.js +0 -22
- package/esm2015/core/common/directives/print.directive.js +0 -160
- package/esm2015/core/common/pipes/common-pipes.js +0 -142
- package/esm2015/core/common/pipes/public-api.js +0 -5
- package/esm2015/core/common/services/addon.service.js +0 -161
- package/esm2015/core/common/services/color.service.js +0 -357
- package/esm2015/core/common/services/cookie.service.js +0 -148
- package/esm2015/core/common/services/data-convertor.service.js +0 -118
- package/esm2015/core/common/services/file.service.js +0 -212
- package/esm2015/core/common/services/jwt-helper.service.js +0 -104
- package/esm2015/core/common/services/session.service.js +0 -73
- package/esm2015/core/common/services/translate.service.js +0 -48
- package/esm2015/core/common/services/utilities.service.js +0 -126
- package/esm2015/core/common/services/validator.service.js +0 -273
- package/esm2015/core/common/services/window-scrolling.service.js +0 -35
- package/esm2015/core/customization/customization.model.js +0 -290
- package/esm2015/core/customization/customization.service.js +0 -775
- package/esm2015/core/http/interceptors/error.interceptor.js +0 -24
- package/esm2015/core/http/interceptors/loader.interceptor.js +0 -33
- package/esm2015/core/http/interceptors/profiler.interceptor.js +0 -29
- package/esm2015/core/http/services/http.service.js +0 -161
- package/esm2015/core/http/services/loader.service.js +0 -49
- package/esm2015/core/layout/layout.service.js +0 -169
- package/esm2015/core/layout/rtl.directive.js +0 -47
- package/esm2015/core/portal/attach.directive.js +0 -27
- package/esm2015/core/portal/portal.service.js +0 -35
- package/esm2015/core/portal/target.directive.js +0 -24
- package/esm2015/core/scroll-to/scroll-to.service.js +0 -82
- package/esm2015/date/date.component.js +0 -252
- package/esm2015/date/date.model.js +0 -45
- package/esm2015/date/date.module.js +0 -51
- package/esm2015/date/pepperi-addons-ngx-lib-date.js +0 -6
- package/esm2015/dialog/default-dialog.component.js +0 -32
- package/esm2015/dialog/dialog.component.js +0 -28
- package/esm2015/dialog/dialog.model.js +0 -22
- package/esm2015/dialog/dialog.module.js +0 -40
- package/esm2015/dialog/dialog.service.js +0 -77
- package/esm2015/dialog/pepperi-addons-ngx-lib-dialog.js +0 -6
- package/esm2015/draggable-items/draggable-item/draggable-item.component.js +0 -25
- package/esm2015/draggable-items/draggable-items.component.js +0 -92
- package/esm2015/draggable-items/draggable-items.model.js +0 -2
- package/esm2015/draggable-items/draggable-items.module.js +0 -43
- package/esm2015/field-title/field-title.component.js +0 -32
- package/esm2015/field-title/field-title.module.js +0 -32
- package/esm2015/files-uploader/files-uploader.component.js +0 -221
- package/esm2015/files-uploader/files-uploader.module.js +0 -50
- package/esm2015/form/field-generator.component.js +0 -122
- package/esm2015/form/form.component.js +0 -1197
- package/esm2015/form/form.module.js +0 -108
- package/esm2015/form/indicators.component.js +0 -21
- package/esm2015/form/internal-button.component.js +0 -166
- package/esm2015/form/internal-carusel.component.js +0 -116
- package/esm2015/form/internal-carusel.service.js +0 -32
- package/esm2015/form/internal-list.component.js +0 -495
- package/esm2015/form/internal-menu.component.js +0 -55
- package/esm2015/form/internal-page.component.js +0 -351
- package/esm2015/form/internal-page.service.js +0 -121
- package/esm2015/form/pepperi-addons-ngx-lib-form.js +0 -14
- package/esm2015/group-buttons/group-buttons.component.js +0 -58
- package/esm2015/group-buttons/group-buttons.module.js +0 -38
- package/esm2015/icon/icon-registry.service.js +0 -24
- package/esm2015/icon/icon.component.js +0 -125
- package/esm2015/icon/icon.module.js +0 -15
- package/esm2015/icon/icon.service.js +0 -32
- package/esm2015/image/image.component.js +0 -229
- package/esm2015/image/image.module.js +0 -49
- package/esm2015/image/image.service.js +0 -55
- package/esm2015/images-filmstrip/images-filmstrip.component.js +0 -373
- package/esm2015/images-filmstrip/images-filmstrip.module.js +0 -71
- package/esm2015/link/link.component.js +0 -316
- package/esm2015/link/link.module.js +0 -51
- package/esm2015/link/link.pipes.js +0 -13
- package/esm2015/link/pepperi-addons-ngx-lib-link.js +0 -6
- package/esm2015/list/list-actions.component.js +0 -36
- package/esm2015/list/list-carousel.component.js +0 -95
- package/esm2015/list/list-chooser.component.js +0 -58
- package/esm2015/list/list-pager.component.js +0 -113
- package/esm2015/list/list-sorting.component.js +0 -55
- package/esm2015/list/list-total.component.js +0 -24
- package/esm2015/list/list-views.component.js +0 -72
- package/esm2015/list/list.component.js +0 -1128
- package/esm2015/list/list.module.js +0 -88
- package/esm2015/list/list.pipes.js +0 -40
- package/esm2015/list/pepperi-addons-ngx-lib-list.js +0 -7
- package/esm2015/list/virtual-scroller.js +0 -1079
- package/esm2015/menu/menu-item.component.js +0 -103
- package/esm2015/menu/menu.component.js +0 -174
- package/esm2015/menu/menu.module.js +0 -40
- package/esm2015/menu/pepperi-addons-ngx-lib-menu.js +0 -6
- package/esm2015/ngx-lib.module.js +0 -77
- package/esm2015/page-layout/page-layout.component.js +0 -42
- package/esm2015/page-layout/page-layout.module.js +0 -21
- package/esm2015/pepperi-addons-ngx-lib.js +0 -9
- package/esm2015/profile-data-views-list/profile-data-view/profile-data-view.component.js +0 -39
- package/esm2015/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.js +0 -60
- package/esm2015/profile-data-views-list/profile-data-views-list.component.js +0 -87
- package/esm2015/profile-data-views-list/profile-data-views-list.module.js +0 -57
- package/esm2015/quantity-selector/pepperi-addons-ngx-lib-quantity-selector.js +0 -7
- package/esm2015/quantity-selector/quantity-selector-validation.directive.js +0 -44
- package/esm2015/quantity-selector/quantity-selector.component.js +0 -466
- package/esm2015/quantity-selector/quantity-selector.module.js +0 -53
- package/esm2015/quantity-selector/quantity-selector.pipes.js +0 -19
- package/esm2015/query-builder/common/model/legacy.js +0 -2
- package/esm2015/query-builder/common/model/operator-unit.js +0 -42
- package/esm2015/query-builder/common/model/operator.js +0 -207
- package/esm2015/query-builder/common/model/type-map.js +0 -27
- package/esm2015/query-builder/common/services/output-query.service.js +0 -111
- package/esm2015/query-builder/common/services/query-structure.service.js +0 -199
- package/esm2015/query-builder/common/services/type-convertor.service.js +0 -40
- package/esm2015/query-builder/pepperi-addons-ngx-lib-query-builder.js +0 -10
- package/esm2015/query-builder/query-builder-item/query-builder-item.component.js +0 -116
- package/esm2015/query-builder/query-builder-section/query-builder-section.component.js +0 -64
- package/esm2015/query-builder/query-builder.component.js +0 -104
- package/esm2015/query-builder/query-builder.module.js +0 -35
- package/esm2015/query-builder/query-builder.service.js +0 -101
- package/esm2015/remote-loader/addon-block-loader.component.js +0 -62
- package/esm2015/remote-loader/public-api.js +0 -9
- package/esm2015/remote-loader/remote-loader.component.js +0 -121
- package/esm2015/remote-loader/remote-loader.model.js +0 -2
- package/esm2015/remote-loader/remote-loader.module.js +0 -36
- package/esm2015/remote-loader/remote-loader.service.js +0 -107
- package/esm2015/rich-html-textarea/rich-html-textarea.component.js +0 -220
- package/esm2015/rich-html-textarea/rich-html-textarea.module.js +0 -57
- package/esm2015/search/search.component.js +0 -274
- package/esm2015/search/search.module.js +0 -45
- package/esm2015/select/select.component.js +0 -212
- package/esm2015/select/select.module.js +0 -43
- package/esm2015/separator/separator.component.js +0 -63
- package/esm2015/separator/separator.module.js +0 -13
- package/esm2015/side-bar/side-bar.component.js +0 -131
- package/esm2015/side-bar/side-bar.module.js +0 -34
- package/esm2015/signature/signature.component.js +0 -234
- package/esm2015/signature/signature.module.js +0 -55
- package/esm2015/size-detector/size-detector.component.js +0 -89
- package/esm2015/size-detector/size-detector.module.js +0 -22
- package/esm2015/slider/slider.component.js +0 -96
- package/esm2015/slider/slider.module.js +0 -25
- package/esm2015/smart-filters/boolean-filter/boolean-filter.component.js +0 -42
- package/esm2015/smart-filters/common/filter-actions.component.js +0 -26
- package/esm2015/smart-filters/common/model/base-filter-component.js +0 -260
- package/esm2015/smart-filters/common/model/operator.js +0 -216
- package/esm2015/smart-filters/common/model/type.js +0 -2
- package/esm2015/smart-filters/date-filter/date-filter.component.js +0 -144
- package/esm2015/smart-filters/multi-select-filter/multi-select-filter.component.js +0 -153
- package/esm2015/smart-filters/number-filter/number-filter.component.js +0 -103
- package/esm2015/smart-filters/smart-filters.component.js +0 -130
- package/esm2015/smart-filters/smart-filters.module.js +0 -91
- package/esm2015/smart-filters/text-filter/text-filter.component.js +0 -79
- package/esm2015/snack-bar/default-snack-bar.component.js +0 -28
- package/esm2015/snack-bar/pepperi-addons-ngx-lib-snack-bar.js +0 -6
- package/esm2015/snack-bar/snack-bar.component.js +0 -26
- package/esm2015/snack-bar/snack-bar.module.js +0 -42
- package/esm2015/snack-bar/snack-bar.service.js +0 -63
- package/esm2015/textarea/textarea.component.js +0 -161
- package/esm2015/textarea/textarea.module.js +0 -51
- package/esm2015/textbox/pepperi-addons-ngx-lib-textbox.js +0 -6
- package/esm2015/textbox/textbox-validation.directive.js +0 -86
- package/esm2015/textbox/textbox.component.js +0 -389
- package/esm2015/textbox/textbox.module.js +0 -45
- package/esm2015/textbox-icon/textbox-icon.component.js +0 -41
- package/esm2015/textbox-icon/textbox-icon.module.js +0 -47
- package/esm2015/top-bar/top-bar.component.js +0 -99
- package/esm2015/top-bar/top-bar.module.js +0 -41
- package/fesm2015/pepperi-addons-ngx-lib-address.js +0 -136
- package/fesm2015/pepperi-addons-ngx-lib-address.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-attachment.js +0 -246
- package/fesm2015/pepperi-addons-ngx-lib-attachment.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.js +0 -128
- package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-button.js +0 -169
- package/fesm2015/pepperi-addons-ngx-lib-button.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-carousel.js +0 -760
- package/fesm2015/pepperi-addons-ngx-lib-carousel.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-checkbox.js +0 -200
- package/fesm2015/pepperi-addons-ngx-lib-checkbox.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-color.js +0 -350
- package/fesm2015/pepperi-addons-ngx-lib-color.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-date.js +0 -350
- package/fesm2015/pepperi-addons-ngx-lib-date.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-dialog.js +0 -199
- package/fesm2015/pepperi-addons-ngx-lib-dialog.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-draggable-items.js +0 -166
- package/fesm2015/pepperi-addons-ngx-lib-draggable-items.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-field-title.js +0 -73
- package/fesm2015/pepperi-addons-ngx-lib-field-title.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-files-uploader.js +0 -276
- package/fesm2015/pepperi-addons-ngx-lib-files-uploader.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-form.js +0 -2756
- package/fesm2015/pepperi-addons-ngx-lib-form.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-group-buttons.js +0 -104
- package/fesm2015/pepperi-addons-ngx-lib-group-buttons.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-icon.js +0 -688
- package/fesm2015/pepperi-addons-ngx-lib-icon.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-image.js +0 -335
- package/fesm2015/pepperi-addons-ngx-lib-image.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.js +0 -436
- package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-link.js +0 -383
- package/fesm2015/pepperi-addons-ngx-lib-link.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-list.js +0 -2770
- package/fesm2015/pepperi-addons-ngx-lib-list.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-menu.js +0 -338
- package/fesm2015/pepperi-addons-ngx-lib-menu.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-page-layout.js +0 -70
- package/fesm2015/pepperi-addons-ngx-lib-page-layout.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.js +0 -247
- package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.js +0 -585
- package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-query-builder.js +0 -1030
- package/fesm2015/pepperi-addons-ngx-lib-query-builder.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-remote-loader.js +0 -325
- package/fesm2015/pepperi-addons-ngx-lib-remote-loader.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.js +0 -284
- package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-search.js +0 -326
- package/fesm2015/pepperi-addons-ngx-lib-search.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-select.js +0 -263
- package/fesm2015/pepperi-addons-ngx-lib-select.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-separator.js +0 -85
- package/fesm2015/pepperi-addons-ngx-lib-separator.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-side-bar.js +0 -172
- package/fesm2015/pepperi-addons-ngx-lib-side-bar.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-signature.js +0 -296
- package/fesm2015/pepperi-addons-ngx-lib-signature.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-size-detector.js +0 -119
- package/fesm2015/pepperi-addons-ngx-lib-size-detector.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-slider.js +0 -129
- package/fesm2015/pepperi-addons-ngx-lib-slider.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-smart-filters.js +0 -1407
- package/fesm2015/pepperi-addons-ngx-lib-smart-filters.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-snack-bar.js +0 -166
- package/fesm2015/pepperi-addons-ngx-lib-snack-bar.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-textarea.js +0 -219
- package/fesm2015/pepperi-addons-ngx-lib-textarea.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.js +0 -96
- package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-textbox.js +0 -524
- package/fesm2015/pepperi-addons-ngx-lib-textbox.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib-top-bar.js +0 -146
- package/fesm2015/pepperi-addons-ngx-lib-top-bar.js.map +0 -1
- package/fesm2015/pepperi-addons-ngx-lib.js +0 -4309
- package/fesm2015/pepperi-addons-ngx-lib.js.map +0 -1
- package/field-title/package.json +0 -11
- package/field-title/pepperi-addons-ngx-lib-field-title.d.ts +0 -4
- package/field-title/pepperi-addons-ngx-lib-field-title.metadata.json +0 -1
- package/files-uploader/package.json +0 -15
- package/files-uploader/pepperi-addons-ngx-lib-files-uploader.d.ts +0 -4
- package/files-uploader/pepperi-addons-ngx-lib-files-uploader.metadata.json +0 -1
- package/form/package.json +0 -15
- package/form/pepperi-addons-ngx-lib-form.d.ts +0 -13
- package/form/pepperi-addons-ngx-lib-form.metadata.json +0 -1
- package/group-buttons/package.json +0 -11
- package/group-buttons/pepperi-addons-ngx-lib-group-buttons.d.ts +0 -4
- package/group-buttons/pepperi-addons-ngx-lib-group-buttons.metadata.json +0 -1
- package/icon/package.json +0 -11
- package/icon/pepperi-addons-ngx-lib-icon.d.ts +0 -4
- package/icon/pepperi-addons-ngx-lib-icon.metadata.json +0 -1
- package/image/package.json +0 -14
- package/image/pepperi-addons-ngx-lib-image.d.ts +0 -4
- package/image/pepperi-addons-ngx-lib-image.metadata.json +0 -1
- package/images-filmstrip/package.json +0 -17
- package/images-filmstrip/pepperi-addons-ngx-lib-images-filmstrip.d.ts +0 -4
- package/images-filmstrip/pepperi-addons-ngx-lib-images-filmstrip.metadata.json +0 -1
- package/link/package.json +0 -14
- package/link/pepperi-addons-ngx-lib-link.d.ts +0 -5
- package/link/pepperi-addons-ngx-lib-link.metadata.json +0 -1
- package/list/package.json +0 -15
- package/list/pepperi-addons-ngx-lib-list.d.ts +0 -6
- package/list/pepperi-addons-ngx-lib-list.metadata.json +0 -1
- package/menu/package.json +0 -11
- package/menu/pepperi-addons-ngx-lib-menu.d.ts +0 -5
- package/menu/pepperi-addons-ngx-lib-menu.metadata.json +0 -1
- package/page-layout/package.json +0 -11
- package/page-layout/pepperi-addons-ngx-lib-page-layout.d.ts +0 -4
- package/page-layout/pepperi-addons-ngx-lib-page-layout.metadata.json +0 -1
- package/pepperi-addons-ngx-lib.d.ts +0 -8
- package/pepperi-addons-ngx-lib.metadata.json +0 -1
- package/profile-data-views-list/package.json +0 -15
- package/profile-data-views-list/pepperi-addons-ngx-lib-profile-data-views-list.d.ts +0 -4
- package/profile-data-views-list/pepperi-addons-ngx-lib-profile-data-views-list.metadata.json +0 -1
- package/quantity-selector/package.json +0 -15
- package/quantity-selector/pepperi-addons-ngx-lib-quantity-selector.d.ts +0 -6
- package/quantity-selector/pepperi-addons-ngx-lib-quantity-selector.metadata.json +0 -1
- package/query-builder/package.json +0 -14
- package/query-builder/pepperi-addons-ngx-lib-query-builder.d.ts +0 -9
- package/query-builder/pepperi-addons-ngx-lib-query-builder.metadata.json +0 -1
- package/remote-loader/package.json +0 -14
- package/remote-loader/pepperi-addons-ngx-lib-remote-loader.d.ts +0 -4
- package/remote-loader/pepperi-addons-ngx-lib-remote-loader.metadata.json +0 -1
- package/rich-html-textarea/package.json +0 -15
- package/rich-html-textarea/pepperi-addons-ngx-lib-rich-html-textarea.d.ts +0 -4
- package/rich-html-textarea/pepperi-addons-ngx-lib-rich-html-textarea.metadata.json +0 -1
- package/search/package.json +0 -14
- package/search/pepperi-addons-ngx-lib-search.d.ts +0 -4
- package/search/pepperi-addons-ngx-lib-search.metadata.json +0 -1
- package/select/package.json +0 -14
- package/select/pepperi-addons-ngx-lib-select.d.ts +0 -4
- package/select/pepperi-addons-ngx-lib-select.metadata.json +0 -1
- package/separator/package.json +0 -11
- package/separator/pepperi-addons-ngx-lib-separator.d.ts +0 -4
- package/separator/pepperi-addons-ngx-lib-separator.metadata.json +0 -1
- package/side-bar/package.json +0 -11
- package/side-bar/pepperi-addons-ngx-lib-side-bar.d.ts +0 -4
- package/side-bar/pepperi-addons-ngx-lib-side-bar.metadata.json +0 -1
- package/signature/package.json +0 -15
- package/signature/pepperi-addons-ngx-lib-signature.d.ts +0 -4
- package/signature/pepperi-addons-ngx-lib-signature.metadata.json +0 -1
- package/size-detector/package.json +0 -14
- package/size-detector/pepperi-addons-ngx-lib-size-detector.d.ts +0 -4
- package/size-detector/pepperi-addons-ngx-lib-size-detector.metadata.json +0 -1
- package/slider/package.json +0 -11
- package/slider/pepperi-addons-ngx-lib-slider.d.ts +0 -4
- package/slider/pepperi-addons-ngx-lib-slider.metadata.json +0 -1
- package/smart-filters/package.json +0 -20
- package/smart-filters/pepperi-addons-ngx-lib-smart-filters.d.ts +0 -4
- package/smart-filters/pepperi-addons-ngx-lib-smart-filters.metadata.json +0 -1
- package/snack-bar/package.json +0 -15
- package/snack-bar/pepperi-addons-ngx-lib-snack-bar.d.ts +0 -5
- package/snack-bar/pepperi-addons-ngx-lib-snack-bar.metadata.json +0 -1
- package/textarea/package.json +0 -14
- package/textarea/pepperi-addons-ngx-lib-textarea.d.ts +0 -4
- package/textarea/pepperi-addons-ngx-lib-textarea.metadata.json +0 -1
- package/textbox/package.json +0 -14
- package/textbox/pepperi-addons-ngx-lib-textbox.d.ts +0 -5
- package/textbox/pepperi-addons-ngx-lib-textbox.metadata.json +0 -1
- package/textbox-icon/package.json +0 -11
- package/textbox-icon/pepperi-addons-ngx-lib-textbox-icon.d.ts +0 -4
- package/textbox-icon/pepperi-addons-ngx-lib-textbox-icon.metadata.json +0 -1
- package/top-bar/package.json +0 -11
- package/top-bar/pepperi-addons-ngx-lib-top-bar.d.ts +0 -4
- package/top-bar/pepperi-addons-ngx-lib-top-bar.metadata.json +0 -1
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { EventEmitter, TemplateRef, Component, ChangeDetectionStrategy, Input, Output, ViewChild, NgModule } from '@angular/core';
|
|
3
|
+
import * as i3 from '@angular/common';
|
|
4
|
+
import { CommonModule } from '@angular/common';
|
|
5
|
+
import * as i4 from '@angular/forms';
|
|
6
|
+
import { ReactiveFormsModule } from '@angular/forms';
|
|
7
|
+
import { MatCommonModule } from '@angular/material/core';
|
|
8
|
+
import * as i6 from '@angular/material/button';
|
|
9
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
10
|
+
import * as i7 from '@angular/material/form-field';
|
|
11
|
+
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
12
|
+
import * as i8 from '@angular/material/input';
|
|
13
|
+
import { MatInputModule } from '@angular/material/input';
|
|
14
|
+
import * as i9 from '@angular/material/icon';
|
|
15
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
16
|
+
import { MatDialogModule } from '@angular/material/dialog';
|
|
17
|
+
import * as i2 from '@pepperi-addons/ngx-lib';
|
|
18
|
+
import { DEFAULT_HORIZONTAL_ALIGNMENT, PepTextareaField, PepCustomizationService, PepNgxLibModule } from '@pepperi-addons/ngx-lib';
|
|
19
|
+
import * as i1$1 from '@pepperi-addons/ngx-lib/icon';
|
|
20
|
+
import { pepIconSystemEdit, pepIconSystemClose, PepIconModule } from '@pepperi-addons/ngx-lib/icon';
|
|
21
|
+
import * as i12 from '@pepperi-addons/ngx-lib/textbox-icon';
|
|
22
|
+
import { PepTextboxIconModule } from '@pepperi-addons/ngx-lib/textbox-icon';
|
|
23
|
+
import * as i11 from '@pepperi-addons/ngx-lib/field-title';
|
|
24
|
+
import { PepFieldTitleModule } from '@pepperi-addons/ngx-lib/field-title';
|
|
25
|
+
import * as i1 from '@pepperi-addons/ngx-lib/dialog';
|
|
26
|
+
import { PepDialogModule } from '@pepperi-addons/ngx-lib/dialog';
|
|
27
|
+
import * as i5 from '@angular/cdk/bidi';
|
|
28
|
+
import * as i13 from '@ngx-translate/core';
|
|
29
|
+
|
|
30
|
+
class PepTextareaComponent {
|
|
31
|
+
constructor(dialogService, customizationService, renderer, element) {
|
|
32
|
+
this.dialogService = dialogService;
|
|
33
|
+
this.customizationService = customizationService;
|
|
34
|
+
this.renderer = renderer;
|
|
35
|
+
this.element = element;
|
|
36
|
+
this.key = '';
|
|
37
|
+
this.value = '';
|
|
38
|
+
this.label = '';
|
|
39
|
+
this.mandatory = false;
|
|
40
|
+
this.disabled = false;
|
|
41
|
+
this.readonly = false;
|
|
42
|
+
this.textColor = '';
|
|
43
|
+
this.xAlignment = DEFAULT_HORIZONTAL_ALIGNMENT;
|
|
44
|
+
this._rowSpan = 1;
|
|
45
|
+
this._visible = true;
|
|
46
|
+
// @Input() lastFocusField: any;
|
|
47
|
+
this.controlType = 'textarea';
|
|
48
|
+
this.form = null;
|
|
49
|
+
this.isActive = false;
|
|
50
|
+
this.showTitle = true;
|
|
51
|
+
this.renderTitle = true;
|
|
52
|
+
this._layoutType = 'form';
|
|
53
|
+
this.valueChange = new EventEmitter();
|
|
54
|
+
this.fieldHeight = '';
|
|
55
|
+
this.standAlone = false;
|
|
56
|
+
this.isInEditMode = false;
|
|
57
|
+
}
|
|
58
|
+
set rowSpan(value) {
|
|
59
|
+
this._rowSpan = value;
|
|
60
|
+
this.setFieldHeight();
|
|
61
|
+
}
|
|
62
|
+
get rowSpan() {
|
|
63
|
+
return this._rowSpan;
|
|
64
|
+
}
|
|
65
|
+
set visible(visible) {
|
|
66
|
+
this._visible = visible;
|
|
67
|
+
if (visible) {
|
|
68
|
+
this.renderer.removeClass(this.element.nativeElement, 'hidden-element');
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
this.renderer.addClass(this.element.nativeElement, 'hidden-element');
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
get visible() {
|
|
75
|
+
return this._visible;
|
|
76
|
+
}
|
|
77
|
+
set layoutType(value) {
|
|
78
|
+
this._layoutType = value;
|
|
79
|
+
this.setFieldHeight();
|
|
80
|
+
}
|
|
81
|
+
get layoutType() {
|
|
82
|
+
return this._layoutType;
|
|
83
|
+
}
|
|
84
|
+
setFieldHeight() {
|
|
85
|
+
this.fieldHeight = this.customizationService.calculateFieldHeight(this.layoutType, this.rowSpan, this.standAlone);
|
|
86
|
+
}
|
|
87
|
+
setDefaultForm() {
|
|
88
|
+
const pepField = new PepTextareaField({
|
|
89
|
+
key: this.key,
|
|
90
|
+
value: this.value,
|
|
91
|
+
mandatory: this.mandatory,
|
|
92
|
+
readonly: this.readonly,
|
|
93
|
+
disabled: this.disabled,
|
|
94
|
+
maxFieldCharacters: this.maxFieldCharacters,
|
|
95
|
+
});
|
|
96
|
+
this.form = this.customizationService.getDefaultFromGroup(pepField);
|
|
97
|
+
}
|
|
98
|
+
ngOnInit() {
|
|
99
|
+
if (this.form === null) {
|
|
100
|
+
this.standAlone = true;
|
|
101
|
+
this.setFieldHeight();
|
|
102
|
+
this.setDefaultForm();
|
|
103
|
+
this.renderer.addClass(this.element.nativeElement, PepCustomizationService.STAND_ALONE_FIELD_CLASS_NAME);
|
|
104
|
+
if (!this.renderTitle) {
|
|
105
|
+
this.renderer.addClass(this.element.nativeElement, PepCustomizationService.STAND_ALONE_FIELD_NO_SPACING_CLASS_NAME);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
ngOnChanges(changes) {
|
|
110
|
+
if (this.standAlone) {
|
|
111
|
+
this.setDefaultForm();
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
ngOnDestroy() {
|
|
115
|
+
//
|
|
116
|
+
}
|
|
117
|
+
onBlur(event) {
|
|
118
|
+
const value = event.target ? event.target.value : event;
|
|
119
|
+
this.changeValue(value);
|
|
120
|
+
setTimeout(() => {
|
|
121
|
+
if (this.isInEditMode) {
|
|
122
|
+
this.isInEditMode = false;
|
|
123
|
+
}
|
|
124
|
+
}, 0);
|
|
125
|
+
}
|
|
126
|
+
changeValue(value) {
|
|
127
|
+
if (value !== this.value) {
|
|
128
|
+
this.value = value;
|
|
129
|
+
this.customizationService.updateFormFieldValue(this.form, this.key, value);
|
|
130
|
+
this.valueChange.emit(value);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
cardTemplateClicked(event) {
|
|
134
|
+
this.openDialog();
|
|
135
|
+
}
|
|
136
|
+
openDialog() {
|
|
137
|
+
const config = this.dialogService.getDialogConfig({
|
|
138
|
+
// maxWidth: '90vw',
|
|
139
|
+
// maxHeight: '90vh'
|
|
140
|
+
}, 'regular');
|
|
141
|
+
this.dialogRef = this.dialogService.openDialog(this.textAreaDialogTemplate, {}, config);
|
|
142
|
+
this.dialogRef.afterClosed().subscribe((value) => {
|
|
143
|
+
if (value !== undefined && value !== null) {
|
|
144
|
+
this.changeValue(value);
|
|
145
|
+
}
|
|
146
|
+
});
|
|
147
|
+
}
|
|
148
|
+
closeDialog(data = null) {
|
|
149
|
+
var _a;
|
|
150
|
+
(_a = this.dialogRef) === null || _a === void 0 ? void 0 : _a.close(data);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
PepTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextareaComponent, deps: [{ token: i1.PepDialogService }, { token: i2.PepCustomizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
154
|
+
PepTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.1", type: PepTextareaComponent, selector: "pep-textarea", inputs: { key: "key", value: "value", label: "label", mandatory: "mandatory", disabled: "disabled", readonly: "readonly", maxFieldCharacters: "maxFieldCharacters", textColor: "textColor", xAlignment: "xAlignment", rowSpan: "rowSpan", visible: "visible", form: "form", isActive: "isActive", showTitle: "showTitle", renderTitle: "renderTitle", layoutType: "layoutType" }, outputs: { valueChange: "valueChange" }, viewQueries: [{ propertyName: "textAreaDialogTemplate", first: true, predicate: ["textAreaDialogTemplate"], descendants: true, read: TemplateRef }], usesOnChanges: true, ngImport: i0, template: "<ng-container [formGroup]=\"form\">\n <ng-template #pepTemplate let-isFormView=\"isFormView\">\n <div class=\"pep-textarea-container\" [ngClass]=\"{ 'stand-alone': standAlone,\n 'right-alignment': xAlignment == 'right', 'one-row': rowSpan === 1,\n 'pep-textarea-card-container': layoutType === 'card'}\">\n <pep-field-title *ngIf=\"renderTitle && isFormView\" [label]=\"label\" [mandatory]=\"mandatory\"\n [disabled]=\"disabled\" [maxFieldCharacters]=\"disabled || readonly ? 0 : maxFieldCharacters\"\n [xAlignment]=\"xAlignment\" [showTitle]=\"showTitle\" [inputLength]=\"input.value?.length\">\n </pep-field-title>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n [ngClass]=\"{ 'pep-table-textarea': layoutType === 'table' }\">\n <textarea #input [hidden]=\"readonly\" [id]=\"key\" class=\"body-sm\" matInput (blur)=\"onBlur($event)\"\n title=\"{{ value }}\" [value]=\"value\"\n maxlength=\"{{ maxFieldCharacters > 0 ? maxFieldCharacters : 99999 }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [formControlName]=\"key\" [style.height]=\"fieldHeight\">\n </textarea>\n <div *ngIf=\"readonly\" class=\"body-sm disable-text-div\" title=\"{{ value }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [innerHtml]=\"value | pepSafeHtml\" [style.height]=\"fieldHeight\">\n </div>\n <!-- <pep-textbox-icon *ngIf=\"xAlignment == 'right'\" matPrefix [value]=\"value\" [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon> -->\n <pep-textbox-icon matSuffix [value]=\"value\" [label]=\"label\" [type]=\"controlType\"\n [disabled]=\"disabled || readonly\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\"\n (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <mat-error>\n <span class=\"body-xs\"\n [title]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"\n [innerText]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"></span>\n </mat-error>\n </mat-form-field>\n </div>\n </ng-template>\n\n <ng-container *ngIf=\"layoutType === 'form'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: true }\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'card'\">\n <ng-container *ngIf=\"isInEditMode; then editBlock; else readOnlyBlock\"></ng-container>\n <ng-template #editBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #readOnlyBlock>\n <div class=\"pep-textarea-card-container card-flex-container\"\n [ngClass]=\"{'one-row': rowSpan === 1, 'pep-button weak': isActive && !disabled}\"\n [ngStyle]=\"{ color: textColor, '-webkit-line-clamp': rowSpan }\" [class]=\"'text-align-' + xAlignment\"\n (click)=\"!disabled ? cardTemplateClicked($event) : ''\" [style.height]=\"fieldHeight\">\n <span *ngIf=\" showTitle && label !=''\" class=\" body-xs title no-shrink\" title=\"{{ label }}\">{{ label\n }} </span>\n <span [id]=\"key\" title=\"{{ value }}\" class=\"body-sm value wrap\">{{ value }}</span>\n <button *ngIf=\"isActive && !disabled\" class=\"pep-button weak card-edit-button self-start\"\n [ngClass]=\"{'self-end' : value && value !== ''}\" mat-button>\n <mat-icon>\n <pep-icon name=\"system_edit\">\n </pep-icon>\n </mat-icon>\n </button>\n </div>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'table'\">\n <ng-container *ngIf=\"isActive && !disabled; then selectedBlock; else notSelectedBlock\"></ng-container>\n <ng-template #selectedBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #notSelectedBlock>\n <ng-container *ngIf=\"value?.length > 0; then notEmptyBlock; else emptyBlock\"></ng-container>\n <ng-template #notEmptyBlock>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n class=\"pep-report-textarea\" [ngClass]=\"{ readonly: disabled }\">\n <input matInput [id]=\"key\" class=\"body-sm pep-report-input\" [ngClass]=\"{ readonly: disabled}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'center' ? 'center' : xAlignment == 'right' ? 'right' : 'left' }\"\n title=\"{{ value }}\" [formControlName]=\"key\" type=\"text\" [value]=\"value\" [disabled]=\"true\" />\n <pep-textbox-icon *ngIf=\"disabled && xAlignment == 'right'\" matPrefix [value]=\"value\"\n [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <pep-textbox-icon *ngIf=\"disabled && (xAlignment == 'left')\" matSuffix [value]=\"value\"\n [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n </mat-form-field>\n </ng-template>\n <ng-template #emptyBlock>\n <span> </span>\n </ng-template>\n </ng-template>\n </ng-container>\n</ng-container>\n\n<ng-template #textAreaDialogTemplate>\n <pep-dialog class=\"dialog-textarea-container\" [title]=\"label\" (close)=\"closeDialog($event)\">\n <ng-container pep-dialog-content>\n <textarea #dialogTextarea [readonly]=\"disabled || readonly\">{{ value }}</textarea>\n </ng-container>\n <div pep-dialog-actions class=\"pep-spacing-element-negative\">\n <ng-container *ngIf=\"disabled || readonly; then notEditableBlock; else editableBlock\">\n </ng-container>\n <ng-template #editableBlock>\n <button mat-button (click)=\"closeDialog()\" class=\"pep-spacing-element pep-button md weak\">\n {{ 'ACTIONS.CANCEL' | translate }}\n </button>\n <button mat-button class=\"pep-spacing-element pep-button md strong\"\n (click)=\"closeDialog(dialogTextarea.value)\">\n {{ 'ACTIONS.SAVE' | translate }}\n </button>\n </ng-template>\n <ng-template #notEditableBlock>\n <button mat-button (click)=\"closeDialog()\" class=\"pep-spacing-element pep-button md weak\">\n {{ 'ACTIONS.CLOSE' | translate }}\n </button>\n </ng-template>\n </div>\n </pep-dialog>\n</ng-template>", styles: [".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding:0}:host{height:inherit;display:grid}:host>*{align-self:center}.disable-text-div{display:inline-block;vertical-align:middle;margin:0;padding:.5rem 1.5rem .5rem 0;overflow-y:hidden;white-space:pre-wrap}.right-alignment .disable-text-div{padding:.5rem 0 .5rem 1.5rem}.dialog-textarea-container textarea{border:none;resize:none;width:25rem;height:13rem}.dialog-textarea-container textarea:focus{outline:none}\n", ".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding:0}.pepperi-report-textarea ::ng-deep .mat-form-field-flex,.pep-report-textarea ::ng-deep .mat-form-field-flex{background:transparent!important}\n"], dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i4.MaxLengthValidator, selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", inputs: ["maxlength"] }, { kind: "directive", type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i5.Dir, selector: "[dir]", inputs: ["dir"], outputs: ["dirChange"], exportAs: ["dir"] }, { kind: "component", type: i6.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i7.MatError, selector: "mat-error", inputs: ["id"] }, { kind: "component", type: i7.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i7.MatPrefix, selector: "[matPrefix]" }, { kind: "directive", type: i7.MatSuffix, selector: "[matSuffix]" }, { kind: "directive", type: i8.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i9.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i1$1.PepIconComponent, selector: "pep-icon", inputs: ["spin", "name", "fill"] }, { kind: "component", type: i11.PepFieldTitleComponent, selector: "pep-field-title", inputs: ["label", "mandatory", "disabled", "maxFieldCharacters", "hint", "xAlignment", "showTitle", "inputLength"] }, { kind: "component", type: i12.PepTextboxIconComponent, selector: "pep-textbox-icon", inputs: ["value", "label", "type", "disabled"], outputs: ["iconClick"] }, { kind: "component", type: i1.PepDialogComponent, selector: "pep-dialog", inputs: ["title", "showClose", "showHeader", "showFooter"], outputs: ["close"] }, { kind: "pipe", type: i2.PepSafeHtmlPipe, name: "pepSafeHtml" }, { kind: "pipe", type: i13.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
155
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextareaComponent, decorators: [{
|
|
156
|
+
type: Component,
|
|
157
|
+
args: [{ selector: 'pep-textarea', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container [formGroup]=\"form\">\n <ng-template #pepTemplate let-isFormView=\"isFormView\">\n <div class=\"pep-textarea-container\" [ngClass]=\"{ 'stand-alone': standAlone,\n 'right-alignment': xAlignment == 'right', 'one-row': rowSpan === 1,\n 'pep-textarea-card-container': layoutType === 'card'}\">\n <pep-field-title *ngIf=\"renderTitle && isFormView\" [label]=\"label\" [mandatory]=\"mandatory\"\n [disabled]=\"disabled\" [maxFieldCharacters]=\"disabled || readonly ? 0 : maxFieldCharacters\"\n [xAlignment]=\"xAlignment\" [showTitle]=\"showTitle\" [inputLength]=\"input.value?.length\">\n </pep-field-title>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n [ngClass]=\"{ 'pep-table-textarea': layoutType === 'table' }\">\n <textarea #input [hidden]=\"readonly\" [id]=\"key\" class=\"body-sm\" matInput (blur)=\"onBlur($event)\"\n title=\"{{ value }}\" [value]=\"value\"\n maxlength=\"{{ maxFieldCharacters > 0 ? maxFieldCharacters : 99999 }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [formControlName]=\"key\" [style.height]=\"fieldHeight\">\n </textarea>\n <div *ngIf=\"readonly\" class=\"body-sm disable-text-div\" title=\"{{ value }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [innerHtml]=\"value | pepSafeHtml\" [style.height]=\"fieldHeight\">\n </div>\n <!-- <pep-textbox-icon *ngIf=\"xAlignment == 'right'\" matPrefix [value]=\"value\" [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon> -->\n <pep-textbox-icon matSuffix [value]=\"value\" [label]=\"label\" [type]=\"controlType\"\n [disabled]=\"disabled || readonly\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\"\n (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <mat-error>\n <span class=\"body-xs\"\n [title]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"\n [innerText]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"></span>\n </mat-error>\n </mat-form-field>\n </div>\n </ng-template>\n\n <ng-container *ngIf=\"layoutType === 'form'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: true }\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'card'\">\n <ng-container *ngIf=\"isInEditMode; then editBlock; else readOnlyBlock\"></ng-container>\n <ng-template #editBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #readOnlyBlock>\n <div class=\"pep-textarea-card-container card-flex-container\"\n [ngClass]=\"{'one-row': rowSpan === 1, 'pep-button weak': isActive && !disabled}\"\n [ngStyle]=\"{ color: textColor, '-webkit-line-clamp': rowSpan }\" [class]=\"'text-align-' + xAlignment\"\n (click)=\"!disabled ? cardTemplateClicked($event) : ''\" [style.height]=\"fieldHeight\">\n <span *ngIf=\" showTitle && label !=''\" class=\" body-xs title no-shrink\" title=\"{{ label }}\">{{ label\n }} </span>\n <span [id]=\"key\" title=\"{{ value }}\" class=\"body-sm value wrap\">{{ value }}</span>\n <button *ngIf=\"isActive && !disabled\" class=\"pep-button weak card-edit-button self-start\"\n [ngClass]=\"{'self-end' : value && value !== ''}\" mat-button>\n <mat-icon>\n <pep-icon name=\"system_edit\">\n </pep-icon>\n </mat-icon>\n </button>\n </div>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'table'\">\n <ng-container *ngIf=\"isActive && !disabled; then selectedBlock; else notSelectedBlock\"></ng-container>\n <ng-template #selectedBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #notSelectedBlock>\n <ng-container *ngIf=\"value?.length > 0; then notEmptyBlock; else emptyBlock\"></ng-container>\n <ng-template #notEmptyBlock>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n class=\"pep-report-textarea\" [ngClass]=\"{ readonly: disabled }\">\n <input matInput [id]=\"key\" class=\"body-sm pep-report-input\" [ngClass]=\"{ readonly: disabled}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'center' ? 'center' : xAlignment == 'right' ? 'right' : 'left' }\"\n title=\"{{ value }}\" [formControlName]=\"key\" type=\"text\" [value]=\"value\" [disabled]=\"true\" />\n <pep-textbox-icon *ngIf=\"disabled && xAlignment == 'right'\" matPrefix [value]=\"value\"\n [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <pep-textbox-icon *ngIf=\"disabled && (xAlignment == 'left')\" matSuffix [value]=\"value\"\n [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n </mat-form-field>\n </ng-template>\n <ng-template #emptyBlock>\n <span> </span>\n </ng-template>\n </ng-template>\n </ng-container>\n</ng-container>\n\n<ng-template #textAreaDialogTemplate>\n <pep-dialog class=\"dialog-textarea-container\" [title]=\"label\" (close)=\"closeDialog($event)\">\n <ng-container pep-dialog-content>\n <textarea #dialogTextarea [readonly]=\"disabled || readonly\">{{ value }}</textarea>\n </ng-container>\n <div pep-dialog-actions class=\"pep-spacing-element-negative\">\n <ng-container *ngIf=\"disabled || readonly; then notEditableBlock; else editableBlock\">\n </ng-container>\n <ng-template #editableBlock>\n <button mat-button (click)=\"closeDialog()\" class=\"pep-spacing-element pep-button md weak\">\n {{ 'ACTIONS.CANCEL' | translate }}\n </button>\n <button mat-button class=\"pep-spacing-element pep-button md strong\"\n (click)=\"closeDialog(dialogTextarea.value)\">\n {{ 'ACTIONS.SAVE' | translate }}\n </button>\n </ng-template>\n <ng-template #notEditableBlock>\n <button mat-button (click)=\"closeDialog()\" class=\"pep-spacing-element pep-button md weak\">\n {{ 'ACTIONS.CLOSE' | translate }}\n </button>\n </ng-template>\n </div>\n </pep-dialog>\n</ng-template>", styles: [".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding:0}:host{height:inherit;display:grid}:host>*{align-self:center}.disable-text-div{display:inline-block;vertical-align:middle;margin:0;padding:.5rem 1.5rem .5rem 0;overflow-y:hidden;white-space:pre-wrap}.right-alignment .disable-text-div{padding:.5rem 0 .5rem 1.5rem}.dialog-textarea-container textarea{border:none;resize:none;width:25rem;height:13rem}.dialog-textarea-container textarea:focus{outline:none}\n", ".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex{padding:0}.pepperi-report-textarea ::ng-deep .mat-form-field-flex,.pep-report-textarea ::ng-deep .mat-form-field-flex{background:transparent!important}\n"] }]
|
|
158
|
+
}], ctorParameters: function () { return [{ type: i1.PepDialogService }, { type: i2.PepCustomizationService }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { key: [{
|
|
159
|
+
type: Input
|
|
160
|
+
}], value: [{
|
|
161
|
+
type: Input
|
|
162
|
+
}], label: [{
|
|
163
|
+
type: Input
|
|
164
|
+
}], mandatory: [{
|
|
165
|
+
type: Input
|
|
166
|
+
}], disabled: [{
|
|
167
|
+
type: Input
|
|
168
|
+
}], readonly: [{
|
|
169
|
+
type: Input
|
|
170
|
+
}], maxFieldCharacters: [{
|
|
171
|
+
type: Input
|
|
172
|
+
}], textColor: [{
|
|
173
|
+
type: Input
|
|
174
|
+
}], xAlignment: [{
|
|
175
|
+
type: Input
|
|
176
|
+
}], rowSpan: [{
|
|
177
|
+
type: Input
|
|
178
|
+
}], visible: [{
|
|
179
|
+
type: Input
|
|
180
|
+
}], form: [{
|
|
181
|
+
type: Input
|
|
182
|
+
}], isActive: [{
|
|
183
|
+
type: Input
|
|
184
|
+
}], showTitle: [{
|
|
185
|
+
type: Input
|
|
186
|
+
}], renderTitle: [{
|
|
187
|
+
type: Input
|
|
188
|
+
}], layoutType: [{
|
|
189
|
+
type: Input
|
|
190
|
+
}], valueChange: [{
|
|
191
|
+
type: Output
|
|
192
|
+
}], textAreaDialogTemplate: [{
|
|
193
|
+
type: ViewChild,
|
|
194
|
+
args: ['textAreaDialogTemplate', { read: TemplateRef }]
|
|
195
|
+
}] } });
|
|
196
|
+
|
|
197
|
+
class PepTextareaModule {
|
|
198
|
+
constructor(pepIconRegistry) {
|
|
199
|
+
this.pepIconRegistry = pepIconRegistry;
|
|
200
|
+
this.pepIconRegistry.registerIcons([
|
|
201
|
+
pepIconSystemEdit,
|
|
202
|
+
pepIconSystemClose,
|
|
203
|
+
]);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
PepTextareaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextareaModule, deps: [{ token: i1$1.PepIconRegistry }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
207
|
+
PepTextareaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.1", ngImport: i0, type: PepTextareaModule, declarations: [PepTextareaComponent], imports: [CommonModule,
|
|
208
|
+
ReactiveFormsModule,
|
|
209
|
+
// Material modules,
|
|
210
|
+
MatCommonModule,
|
|
211
|
+
MatButtonModule,
|
|
212
|
+
MatFormFieldModule,
|
|
213
|
+
MatInputModule,
|
|
214
|
+
MatIconModule,
|
|
215
|
+
MatDialogModule,
|
|
216
|
+
// ngx-lib modules
|
|
217
|
+
PepNgxLibModule,
|
|
218
|
+
PepIconModule,
|
|
219
|
+
PepFieldTitleModule,
|
|
220
|
+
PepTextboxIconModule,
|
|
221
|
+
PepDialogModule], exports: [PepTextareaComponent] });
|
|
222
|
+
PepTextareaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextareaModule, imports: [CommonModule,
|
|
223
|
+
ReactiveFormsModule,
|
|
224
|
+
// Material modules,
|
|
225
|
+
MatCommonModule,
|
|
226
|
+
MatButtonModule,
|
|
227
|
+
MatFormFieldModule,
|
|
228
|
+
MatInputModule,
|
|
229
|
+
MatIconModule,
|
|
230
|
+
MatDialogModule,
|
|
231
|
+
// ngx-lib modules
|
|
232
|
+
PepNgxLibModule,
|
|
233
|
+
PepIconModule,
|
|
234
|
+
PepFieldTitleModule,
|
|
235
|
+
PepTextboxIconModule,
|
|
236
|
+
PepDialogModule] });
|
|
237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextareaModule, decorators: [{
|
|
238
|
+
type: NgModule,
|
|
239
|
+
args: [{
|
|
240
|
+
imports: [
|
|
241
|
+
CommonModule,
|
|
242
|
+
ReactiveFormsModule,
|
|
243
|
+
// Material modules,
|
|
244
|
+
MatCommonModule,
|
|
245
|
+
MatButtonModule,
|
|
246
|
+
MatFormFieldModule,
|
|
247
|
+
MatInputModule,
|
|
248
|
+
MatIconModule,
|
|
249
|
+
MatDialogModule,
|
|
250
|
+
// ngx-lib modules
|
|
251
|
+
PepNgxLibModule,
|
|
252
|
+
PepIconModule,
|
|
253
|
+
PepFieldTitleModule,
|
|
254
|
+
PepTextboxIconModule,
|
|
255
|
+
PepDialogModule,
|
|
256
|
+
],
|
|
257
|
+
exports: [PepTextareaComponent],
|
|
258
|
+
declarations: [PepTextareaComponent],
|
|
259
|
+
}]
|
|
260
|
+
}], ctorParameters: function () { return [{ type: i1$1.PepIconRegistry }]; } });
|
|
261
|
+
|
|
262
|
+
/*
|
|
263
|
+
* Public API Surface of ngx-lib/textarea
|
|
264
|
+
*/
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* Generated bundle index. Do not edit.
|
|
268
|
+
*/
|
|
269
|
+
|
|
270
|
+
export { PepTextareaComponent, PepTextareaModule };
|
|
271
|
+
//# sourceMappingURL=pepperi-addons-ngx-lib-textarea.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pepperi-addons-ngx-lib-textarea.mjs","sources":["../../../projects/ngx-lib/textarea/textarea.component.ts","../../../projects/ngx-lib/textarea/textarea.component.html","../../../projects/ngx-lib/textarea/textarea.module.ts","../../../projects/ngx-lib/textarea/public-api.ts","../../../projects/ngx-lib/textarea/pepperi-addons-ngx-lib-textarea.ts"],"sourcesContent":["import {\n Component,\n OnInit,\n OnChanges,\n Input,\n Output,\n EventEmitter,\n ChangeDetectionStrategy,\n ElementRef,\n ViewChild,\n OnDestroy,\n Renderer2,\n TemplateRef,\n} from '@angular/core';\nimport { FormGroup } from '@angular/forms';\nimport { MatDialogRef } from '@angular/material/dialog';\nimport {\n PepLayoutType,\n PepCustomizationService,\n PepHorizontalAlignment,\n DEFAULT_HORIZONTAL_ALIGNMENT,\n PepTextareaField,\n} from '@pepperi-addons/ngx-lib';\nimport { PepDialogService } from '@pepperi-addons/ngx-lib/dialog';\n\n@Component({\n selector: 'pep-textarea',\n templateUrl: './textarea.component.html',\n styleUrls: ['./textarea.component.scss', './textarea.component.theme.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class PepTextareaComponent implements OnChanges, OnInit, OnDestroy {\n @Input() key = '';\n @Input() value = '';\n @Input() label = '';\n @Input() mandatory = false;\n @Input() disabled = false;\n @Input() readonly = false;\n @Input() maxFieldCharacters: number;\n @Input() textColor = '';\n @Input() xAlignment: PepHorizontalAlignment = DEFAULT_HORIZONTAL_ALIGNMENT;\n\n private _rowSpan = 1;\n @Input()\n set rowSpan(value) {\n this._rowSpan = value;\n this.setFieldHeight();\n }\n get rowSpan(): number {\n return this._rowSpan;\n }\n\n private _visible = true;\n @Input()\n set visible(visible: boolean) {\n this._visible = visible;\n if (visible) {\n this.renderer.removeClass(\n this.element.nativeElement,\n 'hidden-element'\n );\n } else {\n this.renderer.addClass(\n this.element.nativeElement,\n 'hidden-element'\n );\n }\n }\n get visible(): boolean {\n return this._visible;\n }\n\n // @Input() lastFocusField: any;\n\n controlType = 'textarea';\n\n @Input() form: FormGroup = null;\n @Input() isActive = false;\n @Input() showTitle = true;\n @Input() renderTitle = true;\n\n private _layoutType: PepLayoutType = 'form';\n @Input()\n set layoutType(value: PepLayoutType) {\n this._layoutType = value;\n this.setFieldHeight();\n }\n get layoutType(): PepLayoutType {\n return this._layoutType;\n }\n\n @Output()\n valueChange: EventEmitter<string> = new EventEmitter<string>();\n\n // @ViewChild('input') input: ElementRef;\n @ViewChild('textAreaDialogTemplate', { read: TemplateRef })\n textAreaDialogTemplate: TemplateRef<any>;\n\n fieldHeight = '';\n standAlone = false;\n isInEditMode = false;\n\n dialogRef: MatDialogRef<any>;\n\n constructor(\n private dialogService: PepDialogService,\n private customizationService: PepCustomizationService,\n private renderer: Renderer2,\n private element: ElementRef\n ) { }\n\n private setFieldHeight(): void {\n this.fieldHeight = this.customizationService.calculateFieldHeight(\n this.layoutType,\n this.rowSpan,\n this.standAlone\n );\n }\n\n private setDefaultForm(): void {\n const pepField = new PepTextareaField({\n key: this.key,\n value: this.value,\n mandatory: this.mandatory,\n readonly: this.readonly,\n disabled: this.disabled,\n maxFieldCharacters: this.maxFieldCharacters,\n });\n this.form = this.customizationService.getDefaultFromGroup(pepField);\n }\n\n ngOnInit(): void {\n if (this.form === null) {\n this.standAlone = true;\n this.setFieldHeight();\n this.setDefaultForm();\n\n this.renderer.addClass(\n this.element.nativeElement,\n PepCustomizationService.STAND_ALONE_FIELD_CLASS_NAME\n );\n\n if (!this.renderTitle) {\n this.renderer.addClass(\n this.element.nativeElement,\n PepCustomizationService.STAND_ALONE_FIELD_NO_SPACING_CLASS_NAME\n );\n }\n }\n }\n\n ngOnChanges(changes: any): void {\n if (this.standAlone) {\n this.setDefaultForm();\n }\n }\n\n ngOnDestroy(): void {\n //\n }\n\n onBlur(event: any): void {\n const value = event.target ? event.target.value : event;\n this.changeValue(value);\n\n setTimeout(() => {\n if (this.isInEditMode) {\n this.isInEditMode = false;\n }\n }, 0);\n }\n\n changeValue(value: any): void {\n if (value !== this.value) {\n this.value = value;\n this.customizationService.updateFormFieldValue(\n this.form,\n this.key,\n value\n );\n this.valueChange.emit(value);\n }\n }\n\n cardTemplateClicked(event: any): void {\n this.openDialog();\n }\n\n openDialog(): void {\n const config = this.dialogService.getDialogConfig(\n {\n // maxWidth: '90vw',\n // maxHeight: '90vh'\n },\n 'regular'\n );\n\n this.dialogRef = this.dialogService.openDialog(\n this.textAreaDialogTemplate,\n {},\n config\n );\n\n this.dialogRef.afterClosed().subscribe((value) => {\n if (value !== undefined && value !== null) {\n this.changeValue(value);\n }\n });\n }\n\n closeDialog(data: any = null): void {\n this.dialogRef?.close(data);\n }\n}\n","<ng-container [formGroup]=\"form\">\n <ng-template #pepTemplate let-isFormView=\"isFormView\">\n <div class=\"pep-textarea-container\" [ngClass]=\"{ 'stand-alone': standAlone,\n 'right-alignment': xAlignment == 'right', 'one-row': rowSpan === 1,\n 'pep-textarea-card-container': layoutType === 'card'}\">\n <pep-field-title *ngIf=\"renderTitle && isFormView\" [label]=\"label\" [mandatory]=\"mandatory\"\n [disabled]=\"disabled\" [maxFieldCharacters]=\"disabled || readonly ? 0 : maxFieldCharacters\"\n [xAlignment]=\"xAlignment\" [showTitle]=\"showTitle\" [inputLength]=\"input.value?.length\">\n </pep-field-title>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n [ngClass]=\"{ 'pep-table-textarea': layoutType === 'table' }\">\n <textarea #input [hidden]=\"readonly\" [id]=\"key\" class=\"body-sm\" matInput (blur)=\"onBlur($event)\"\n title=\"{{ value }}\" [value]=\"value\"\n maxlength=\"{{ maxFieldCharacters > 0 ? maxFieldCharacters : 99999 }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [formControlName]=\"key\" [style.height]=\"fieldHeight\">\n </textarea>\n <div *ngIf=\"readonly\" class=\"body-sm disable-text-div\" title=\"{{ value }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [innerHtml]=\"value | pepSafeHtml\" [style.height]=\"fieldHeight\">\n </div>\n <!-- <pep-textbox-icon *ngIf=\"xAlignment == 'right'\" matPrefix [value]=\"value\" [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon> -->\n <pep-textbox-icon matSuffix [value]=\"value\" [label]=\"label\" [type]=\"controlType\"\n [disabled]=\"disabled || readonly\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\"\n (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <mat-error>\n <span class=\"body-xs\"\n [title]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"\n [innerText]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"></span>\n </mat-error>\n </mat-form-field>\n </div>\n </ng-template>\n\n <ng-container *ngIf=\"layoutType === 'form'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: true }\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'card'\">\n <ng-container *ngIf=\"isInEditMode; then editBlock; else readOnlyBlock\"></ng-container>\n <ng-template #editBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #readOnlyBlock>\n <div class=\"pep-textarea-card-container card-flex-container\"\n [ngClass]=\"{'one-row': rowSpan === 1, 'pep-button weak': isActive && !disabled}\"\n [ngStyle]=\"{ color: textColor, '-webkit-line-clamp': rowSpan }\" [class]=\"'text-align-' + xAlignment\"\n (click)=\"!disabled ? cardTemplateClicked($event) : ''\" [style.height]=\"fieldHeight\">\n <span *ngIf=\" showTitle && label !=''\" class=\" body-xs title no-shrink\" title=\"{{ label }}\">{{ label\n }} </span>\n <span [id]=\"key\" title=\"{{ value }}\" class=\"body-sm value wrap\">{{ value }}</span>\n <button *ngIf=\"isActive && !disabled\" class=\"pep-button weak card-edit-button self-start\"\n [ngClass]=\"{'self-end' : value && value !== ''}\" mat-button>\n <mat-icon>\n <pep-icon name=\"system_edit\">\n </pep-icon>\n </mat-icon>\n </button>\n </div>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'table'\">\n <ng-container *ngIf=\"isActive && !disabled; then selectedBlock; else notSelectedBlock\"></ng-container>\n <ng-template #selectedBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #notSelectedBlock>\n <ng-container *ngIf=\"value?.length > 0; then notEmptyBlock; else emptyBlock\"></ng-container>\n <ng-template #notEmptyBlock>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n class=\"pep-report-textarea\" [ngClass]=\"{ readonly: disabled }\">\n <input matInput [id]=\"key\" class=\"body-sm pep-report-input\" [ngClass]=\"{ readonly: disabled}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'center' ? 'center' : xAlignment == 'right' ? 'right' : 'left' }\"\n title=\"{{ value }}\" [formControlName]=\"key\" type=\"text\" [value]=\"value\" [disabled]=\"true\" />\n <pep-textbox-icon *ngIf=\"disabled && xAlignment == 'right'\" matPrefix [value]=\"value\"\n [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <pep-textbox-icon *ngIf=\"disabled && (xAlignment == 'left')\" matSuffix [value]=\"value\"\n [label]=\"label\" [type]=\"controlType\" [disabled]=\"disabled\" (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n </mat-form-field>\n </ng-template>\n <ng-template #emptyBlock>\n <span> </span>\n </ng-template>\n </ng-template>\n </ng-container>\n</ng-container>\n\n<ng-template #textAreaDialogTemplate>\n <pep-dialog class=\"dialog-textarea-container\" [title]=\"label\" (close)=\"closeDialog($event)\">\n <ng-container pep-dialog-content>\n <textarea #dialogTextarea [readonly]=\"disabled || readonly\">{{ value }}</textarea>\n </ng-container>\n <div pep-dialog-actions class=\"pep-spacing-element-negative\">\n <ng-container *ngIf=\"disabled || readonly; then notEditableBlock; else editableBlock\">\n </ng-container>\n <ng-template #editableBlock>\n <button mat-button (click)=\"closeDialog()\" class=\"pep-spacing-element pep-button md weak\">\n {{ 'ACTIONS.CANCEL' | translate }}\n </button>\n <button mat-button class=\"pep-spacing-element pep-button md strong\"\n (click)=\"closeDialog(dialogTextarea.value)\">\n {{ 'ACTIONS.SAVE' | translate }}\n </button>\n </ng-template>\n <ng-template #notEditableBlock>\n <button mat-button (click)=\"closeDialog()\" class=\"pep-spacing-element pep-button md weak\">\n {{ 'ACTIONS.CLOSE' | translate }}\n </button>\n </ng-template>\n </div>\n </pep-dialog>\n</ng-template>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ReactiveFormsModule } from '@angular/forms';\n\nimport { MatCommonModule } from '@angular/material/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatDialogModule } from '@angular/material/dialog';\n\nimport { PepNgxLibModule } from '@pepperi-addons/ngx-lib';\nimport {\n PepIconModule,\n PepIconRegistry,\n pepIconSystemEdit,\n pepIconSystemClose,\n} from '@pepperi-addons/ngx-lib/icon';\nimport { PepTextboxIconModule } from '@pepperi-addons/ngx-lib/textbox-icon';\nimport { PepFieldTitleModule } from '@pepperi-addons/ngx-lib/field-title';\nimport { PepDialogModule } from '@pepperi-addons/ngx-lib/dialog';\n\nimport { PepTextareaComponent } from './textarea.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n // Material modules,\n MatCommonModule,\n MatButtonModule,\n MatFormFieldModule,\n MatInputModule,\n MatIconModule,\n MatDialogModule,\n // ngx-lib modules\n PepNgxLibModule,\n PepIconModule,\n PepFieldTitleModule,\n PepTextboxIconModule,\n PepDialogModule,\n ],\n exports: [PepTextareaComponent],\n declarations: [PepTextareaComponent],\n})\nexport class PepTextareaModule {\n constructor(private pepIconRegistry: PepIconRegistry) {\n this.pepIconRegistry.registerIcons([\n pepIconSystemEdit,\n pepIconSystemClose,\n ]);\n }\n}\n","/*\n * Public API Surface of ngx-lib/textarea\n */\nexport * from './textarea.module';\nexport * from './textarea.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i10","i1"],"mappings":"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"}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { EventEmitter, Component, Input, Output, NgModule } from '@angular/core';
|
|
3
|
+
import * as i1 from '@angular/common';
|
|
4
|
+
import { CommonModule } from '@angular/common';
|
|
5
|
+
import { MatCommonModule } from '@angular/material/core';
|
|
6
|
+
import * as i2 from '@angular/material/button';
|
|
7
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
8
|
+
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
9
|
+
import * as i3 from '@angular/material/icon';
|
|
10
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
11
|
+
import * as i1$1 from '@pepperi-addons/ngx-lib/icon';
|
|
12
|
+
import { pepIconNumberCoins, pepIconNumberPercent, pepIconNumberNumber, pepIconNumberDecimal, pepIconSystemPhone, pepIconSystemEmail, pepIconSystemLink, pepIconSystemFullScreen, pepIconSystemEdit, pepIconTimeDatetime, pepIconTimeCal, PepIconModule } from '@pepperi-addons/ngx-lib/icon';
|
|
13
|
+
|
|
14
|
+
class PepTextboxIconComponent {
|
|
15
|
+
constructor() {
|
|
16
|
+
this.test = true;
|
|
17
|
+
this.iconClick = new EventEmitter();
|
|
18
|
+
}
|
|
19
|
+
iconButtonClicked() {
|
|
20
|
+
const currentValue = this.value;
|
|
21
|
+
if (currentValue.toString().trim().length > 0) {
|
|
22
|
+
switch (this.type) {
|
|
23
|
+
case 'email':
|
|
24
|
+
window.open('mailto:' + currentValue, 'email');
|
|
25
|
+
break;
|
|
26
|
+
case 'phone':
|
|
27
|
+
window.open('tel:' + currentValue, 'tel');
|
|
28
|
+
break;
|
|
29
|
+
case 'link':
|
|
30
|
+
window.open(currentValue);
|
|
31
|
+
break;
|
|
32
|
+
default:
|
|
33
|
+
break;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
this.iconClick.emit();
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
PepTextboxIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextboxIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
40
|
+
PepTextboxIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.1", type: PepTextboxIconComponent, selector: "pep-textbox-icon", inputs: { value: "value", label: "label", type: "type", disabled: "disabled" }, outputs: { iconClick: "iconClick" }, ngImport: i0, template: "<mat-icon *ngIf=\"type === 'currency'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_coins\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'percentage'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_percent\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'int'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_number\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'real'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_decimal\">\n </pep-icon>\n</mat-icon>\n<button *ngIf=\"type === 'phone'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_phone\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'email'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_email\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'link'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_link\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'textarea'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"system_full_screen\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'richhtmltextarea'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"{{ disabled ? 'system_full_screen' : 'system_edit'}}\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<button *ngIf=\"!disabled && type === 'datetime'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"time_datetime\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<button *ngIf=\"!disabled && type === 'date'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"time_cal\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<!-- <span class=\"pep-text-icon\" *ngIf=\"type === 'percentage'\">%</span> -->\n<!-- <mat-icon matSuffix>sentiment_very_satisfied</mat-icon> -->\n<!-- <mat-icon matPrefix>sentiment_very_satisfied</mat-icon> -->\n<!-- <mat-hint>Hint</mat-hint> -->", styles: [":host{display:flex}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i1$1.PepIconComponent, selector: "pep-icon", inputs: ["spin", "name", "fill"] }] });
|
|
41
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextboxIconComponent, decorators: [{
|
|
42
|
+
type: Component,
|
|
43
|
+
args: [{ selector: 'pep-textbox-icon', template: "<mat-icon *ngIf=\"type === 'currency'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_coins\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'percentage'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_percent\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'int'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_number\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'real'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_decimal\">\n </pep-icon>\n</mat-icon>\n<button *ngIf=\"type === 'phone'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_phone\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'email'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_email\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'link'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_link\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'textarea'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"system_full_screen\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'richhtmltextarea'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"{{ disabled ? 'system_full_screen' : 'system_edit'}}\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<button *ngIf=\"!disabled && type === 'datetime'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"time_datetime\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<button *ngIf=\"!disabled && type === 'date'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"time_cal\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<!-- <span class=\"pep-text-icon\" *ngIf=\"type === 'percentage'\">%</span> -->\n<!-- <mat-icon matSuffix>sentiment_very_satisfied</mat-icon> -->\n<!-- <mat-icon matPrefix>sentiment_very_satisfied</mat-icon> -->\n<!-- <mat-hint>Hint</mat-hint> -->", styles: [":host{display:flex}\n"] }]
|
|
44
|
+
}], propDecorators: { value: [{
|
|
45
|
+
type: Input
|
|
46
|
+
}], label: [{
|
|
47
|
+
type: Input
|
|
48
|
+
}], type: [{
|
|
49
|
+
type: Input
|
|
50
|
+
}], disabled: [{
|
|
51
|
+
type: Input
|
|
52
|
+
}], iconClick: [{
|
|
53
|
+
type: Output
|
|
54
|
+
}] } });
|
|
55
|
+
|
|
56
|
+
class PepTextboxIconModule {
|
|
57
|
+
constructor(pepIconRegistry) {
|
|
58
|
+
this.pepIconRegistry = pepIconRegistry;
|
|
59
|
+
this.pepIconRegistry.registerIcons([
|
|
60
|
+
pepIconNumberCoins,
|
|
61
|
+
pepIconNumberPercent,
|
|
62
|
+
pepIconNumberNumber,
|
|
63
|
+
pepIconNumberDecimal,
|
|
64
|
+
pepIconSystemPhone,
|
|
65
|
+
pepIconSystemEmail,
|
|
66
|
+
pepIconSystemLink,
|
|
67
|
+
pepIconSystemFullScreen,
|
|
68
|
+
pepIconSystemEdit,
|
|
69
|
+
pepIconTimeDatetime,
|
|
70
|
+
pepIconTimeCal,
|
|
71
|
+
]);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
PepTextboxIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextboxIconModule, deps: [{ token: i1$1.PepIconRegistry }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
75
|
+
PepTextboxIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.1", ngImport: i0, type: PepTextboxIconModule, declarations: [PepTextboxIconComponent], imports: [CommonModule,
|
|
76
|
+
// Material modules,
|
|
77
|
+
MatCommonModule,
|
|
78
|
+
MatButtonModule,
|
|
79
|
+
MatFormFieldModule,
|
|
80
|
+
MatIconModule,
|
|
81
|
+
// ngx-lib modules
|
|
82
|
+
PepIconModule], exports: [PepTextboxIconComponent] });
|
|
83
|
+
PepTextboxIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextboxIconModule, imports: [CommonModule,
|
|
84
|
+
// Material modules,
|
|
85
|
+
MatCommonModule,
|
|
86
|
+
MatButtonModule,
|
|
87
|
+
MatFormFieldModule,
|
|
88
|
+
MatIconModule,
|
|
89
|
+
// ngx-lib modules
|
|
90
|
+
PepIconModule] });
|
|
91
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.1", ngImport: i0, type: PepTextboxIconModule, decorators: [{
|
|
92
|
+
type: NgModule,
|
|
93
|
+
args: [{
|
|
94
|
+
imports: [
|
|
95
|
+
CommonModule,
|
|
96
|
+
// Material modules,
|
|
97
|
+
MatCommonModule,
|
|
98
|
+
MatButtonModule,
|
|
99
|
+
MatFormFieldModule,
|
|
100
|
+
MatIconModule,
|
|
101
|
+
// ngx-lib modules
|
|
102
|
+
PepIconModule,
|
|
103
|
+
],
|
|
104
|
+
exports: [PepTextboxIconComponent],
|
|
105
|
+
declarations: [PepTextboxIconComponent],
|
|
106
|
+
}]
|
|
107
|
+
}], ctorParameters: function () { return [{ type: i1$1.PepIconRegistry }]; } });
|
|
108
|
+
|
|
109
|
+
/*
|
|
110
|
+
* Public API Surface of ngx-lib/textbox-icon
|
|
111
|
+
*/
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Generated bundle index. Do not edit.
|
|
115
|
+
*/
|
|
116
|
+
|
|
117
|
+
export { PepTextboxIconComponent, PepTextboxIconModule };
|
|
118
|
+
//# sourceMappingURL=pepperi-addons-ngx-lib-textbox-icon.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pepperi-addons-ngx-lib-textbox-icon.mjs","sources":["../../../projects/ngx-lib/textbox-icon/textbox-icon.component.ts","../../../projects/ngx-lib/textbox-icon/textbox-icon.component.html","../../../projects/ngx-lib/textbox-icon/textbox-icon.module.ts","../../../projects/ngx-lib/textbox-icon/public-api.ts","../../../projects/ngx-lib/textbox-icon/pepperi-addons-ngx-lib-textbox-icon.ts"],"sourcesContent":["import { Component, Input, Output, EventEmitter } from '@angular/core';\n\n@Component({\n selector: 'pep-textbox-icon',\n templateUrl: './textbox-icon.component.html',\n styleUrls: ['./textbox-icon.component.scss'],\n})\nexport class PepTextboxIconComponent {\n @Input() value: string;\n @Input() label: string;\n @Input() type?: string;\n @Input() disabled: boolean;\n\n test = true;\n @Output() iconClick: EventEmitter<void> = new EventEmitter<void>();\n\n iconButtonClicked(): void {\n const currentValue = this.value;\n if (currentValue.toString().trim().length > 0) {\n switch (this.type) {\n case 'email':\n window.open('mailto:' + currentValue, 'email');\n break;\n case 'phone':\n window.open('tel:' + currentValue, 'tel');\n break;\n case 'link':\n window.open(currentValue);\n break;\n default:\n break;\n }\n }\n\n this.iconClick.emit();\n }\n}\n","<mat-icon *ngIf=\"type === 'currency'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_coins\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'percentage'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_percent\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'int'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_number\">\n </pep-icon>\n</mat-icon>\n<mat-icon *ngIf=\"type === 'real'\" class=\"pep-text-icon\">\n <pep-icon name=\"number_decimal\">\n </pep-icon>\n</mat-icon>\n<button *ngIf=\"type === 'phone'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_phone\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'email'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_email\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'link'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\"\n [disabled]=\"value.length === 0\" [ngClass]=\"{ disabled: value.length === 0 }\">\n <mat-icon>\n <pep-icon name=\"system_link\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'textarea'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"system_full_screen\">\n </pep-icon>\n </mat-icon>\n</button>\n<button *ngIf=\"type === 'richhtmltextarea'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"{{ disabled ? 'system_full_screen' : 'system_edit'}}\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<button *ngIf=\"!disabled && type === 'datetime'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"time_datetime\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<button *ngIf=\"!disabled && type === 'date'\" class=\"pep-button md regular\" mat-button (click)=\"iconButtonClicked()\">\n <mat-icon>\n <pep-icon name=\"time_cal\">\n </pep-icon>\n </mat-icon>\n</button>\n\n<!-- <span class=\"pep-text-icon\" *ngIf=\"type === 'percentage'\">%</span> -->\n<!-- <mat-icon matSuffix>sentiment_very_satisfied</mat-icon> -->\n<!-- <mat-icon matPrefix>sentiment_very_satisfied</mat-icon> -->\n<!-- <mat-hint>Hint</mat-hint> -->","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { MatCommonModule } from '@angular/material/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatIconModule } from '@angular/material/icon';\n\n// import { PepNgxLibModule } from '@pepperi-addons/ngx-lib';\nimport {\n PepIconModule,\n PepIconRegistry,\n pepIconNumberCoins,\n pepIconNumberPercent,\n pepIconNumberNumber,\n pepIconNumberDecimal,\n pepIconSystemPhone,\n pepIconSystemEmail,\n pepIconSystemLink,\n pepIconSystemFullScreen,\n pepIconSystemEdit,\n pepIconTimeDatetime,\n pepIconTimeCal,\n} from '@pepperi-addons/ngx-lib/icon';\n\nimport { PepTextboxIconComponent } from './textbox-icon.component';\n\n@NgModule({\n imports: [\n CommonModule,\n // Material modules,\n MatCommonModule,\n MatButtonModule,\n MatFormFieldModule,\n MatIconModule,\n // ngx-lib modules\n PepIconModule,\n ],\n exports: [PepTextboxIconComponent],\n declarations: [PepTextboxIconComponent],\n})\nexport class PepTextboxIconModule {\n constructor(private pepIconRegistry: PepIconRegistry) {\n this.pepIconRegistry.registerIcons([\n pepIconNumberCoins,\n pepIconNumberPercent,\n pepIconNumberNumber,\n pepIconNumberDecimal,\n pepIconSystemPhone,\n pepIconSystemEmail,\n pepIconSystemLink,\n pepIconSystemFullScreen,\n pepIconSystemEdit,\n pepIconTimeDatetime,\n pepIconTimeCal,\n ]);\n }\n}\n","/*\n * Public API Surface of ngx-lib/textbox-icon\n */\nexport * from './textbox-icon.module';\nexport * from './textbox-icon.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i4","i1"],"mappings":"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"}
|