@pepperi-addons/ngx-lib 0.4.2-storybook.1 → 0.5.0-ng15.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 +1 -1
- package/attachment/attachment.component.d.ts +2 -1
- package/bread-crumbs/bread-crumbs.component.d.ts +1 -1
- package/bread-crumbs/bread-crumbs.model.d.ts +1 -1
- package/button/button.component.d.ts +1 -1
- package/carousel/carousel-item.directive.d.ts +1 -1
- package/carousel/carousel.component.d.ts +1 -1
- package/checkbox/checkbox.component.d.ts +2 -1
- package/chips/chips.component.d.ts +4 -5
- package/chips/chips.component.theme.scss +15 -5
- package/chips/chips.model.d.ts +2 -2
- package/chips/chips.service.d.ts +0 -3
- package/color/color-picker.component.d.ts +1 -1
- package/color/color-picker.component.theme.scss +2 -1
- package/color/color.component.d.ts +1 -1
- package/color/color.model.d.ts +1 -1
- package/core/clipboard/clipboard.directive.d.ts +1 -1
- package/core/common/directives/auto-width.directive.d.ts +1 -1
- package/core/common/directives/base-destroyer.directive.d.ts +10 -0
- package/core/common/directives/button-blur.directive.d.ts +1 -1
- package/core/common/directives/button-loader.directive.d.ts +1 -1
- package/core/common/directives/data-qa.directive.d.ts +1 -1
- package/core/common/directives/div-loader.directive.d.ts +1 -1
- package/core/common/directives/menu-blur.directive.d.ts +1 -1
- package/core/common/directives/prevent-multi-click.directive.d.ts +1 -1
- package/core/common/directives/print.directive.d.ts +1 -1
- package/core/common/directives/public-api.d.ts +1 -0
- package/core/common/pipes/common-pipes.d.ts +5 -2
- package/core/common/services/addon.service.d.ts +6 -4
- package/core/common/services/file.service.d.ts +1 -1
- package/core/common/services/utilities.service.d.ts +4 -4
- package/core/customization/customization.model.d.ts +15 -12
- package/core/customization/customization.service.d.ts +4 -0
- package/core/layout/layout.service.d.ts +1 -1
- package/core/layout/rtl.directive.d.ts +2 -2
- package/core/portal/attach.directive.d.ts +1 -1
- package/core/portal/target.directive.d.ts +1 -1
- package/date/date.component.d.ts +4 -2
- package/dialog/default-dialog.component.d.ts +1 -1
- package/dialog/dialog.component.d.ts +1 -1
- package/dialog/dialog.model.d.ts +2 -2
- package/draggable-items/draggable-item/draggable-item.component.d.ts +16 -2
- package/draggable-items/draggable-items.component.d.ts +4 -7
- package/draggable-items/draggable-items.model.d.ts +2 -2
- package/draggable-items/draggable-items.module.d.ts +4 -3
- package/esm2020/address/address.component.mjs +16 -16
- package/esm2020/address/address.module.mjs +5 -5
- package/esm2020/attachment/attachment.component.mjs +58 -49
- package/esm2020/attachment/attachment.module.mjs +5 -5
- package/esm2020/bread-crumbs/bread-crumbs.component.mjs +15 -15
- package/esm2020/bread-crumbs/bread-crumbs.module.mjs +5 -5
- package/esm2020/button/button.component.mjs +23 -23
- package/esm2020/button/button.module.mjs +5 -5
- package/esm2020/carousel/carousel-item.directive.mjs +9 -9
- package/esm2020/carousel/carousel.component.mjs +52 -52
- package/esm2020/carousel/carousel.module.mjs +5 -5
- package/esm2020/checkbox/checkbox.component.mjs +40 -31
- package/esm2020/checkbox/checkbox.module.mjs +5 -5
- package/esm2020/chips/chips.component.mjs +26 -28
- package/esm2020/chips/chips.module.mjs +5 -5
- package/esm2020/chips/chips.service.mjs +5 -14
- package/esm2020/color/color-picker.component.mjs +5 -5
- package/esm2020/color/color.component.mjs +5 -5
- package/esm2020/color/color.module.mjs +5 -5
- package/esm2020/core/clipboard/clipboard.directive.mjs +4 -4
- package/esm2020/core/clipboard/clipboard.service.mjs +4 -4
- package/esm2020/core/common/directives/auto-width.directive.mjs +4 -4
- package/esm2020/core/common/directives/base-destroyer.directive.mjs +22 -0
- package/esm2020/core/common/directives/button-blur.directive.mjs +4 -4
- package/esm2020/core/common/directives/button-loader.directive.mjs +10 -10
- package/esm2020/core/common/directives/data-qa.directive.mjs +4 -4
- package/esm2020/core/common/directives/div-loader.directive.mjs +4 -4
- package/esm2020/core/common/directives/menu-blur.directive.mjs +4 -4
- package/esm2020/core/common/directives/prevent-multi-click.directive.mjs +4 -4
- package/esm2020/core/common/directives/print.directive.mjs +4 -4
- package/esm2020/core/common/directives/public-api.mjs +2 -1
- package/esm2020/core/common/pipes/common-pipes.mjs +47 -37
- package/esm2020/core/common/pipes/date-ago.pipe.mjs +4 -4
- package/esm2020/core/common/services/addon.service.mjs +36 -12
- package/esm2020/core/common/services/color.service.mjs +4 -4
- package/esm2020/core/common/services/cookie.service.mjs +4 -4
- package/esm2020/core/common/services/data-convertor.service.mjs +6 -6
- package/esm2020/core/common/services/file.service.mjs +4 -4
- package/esm2020/core/common/services/jwt-helper.service.mjs +4 -4
- package/esm2020/core/common/services/session.service.mjs +4 -4
- package/esm2020/core/common/services/translate.service.mjs +4 -4
- package/esm2020/core/common/services/utilities.service.mjs +10 -10
- package/esm2020/core/common/services/validator.service.mjs +4 -4
- package/esm2020/core/common/services/window-scrolling.service.mjs +4 -4
- package/esm2020/core/customization/customization.model.mjs +40 -5
- package/esm2020/core/customization/customization.service.mjs +23 -4
- package/esm2020/core/http/interceptors/error.interceptor.mjs +4 -4
- package/esm2020/core/http/interceptors/loader.interceptor.mjs +4 -4
- package/esm2020/core/http/interceptors/profiler.interceptor.mjs +4 -4
- package/esm2020/core/http/services/http.service.mjs +4 -4
- package/esm2020/core/http/services/loader.service.mjs +10 -10
- package/esm2020/core/layout/layout.service.mjs +12 -12
- package/esm2020/core/layout/rtl.directive.mjs +7 -7
- package/esm2020/core/portal/attach.directive.mjs +4 -4
- package/esm2020/core/portal/portal.service.mjs +4 -4
- package/esm2020/core/portal/target.directive.mjs +4 -4
- package/esm2020/core/scroll-to/scroll-to.service.mjs +4 -4
- package/esm2020/date/date.component.mjs +81 -59
- package/esm2020/date/date.model.mjs +7 -7
- package/esm2020/date/date.module.mjs +5 -5
- package/esm2020/dialog/default-dialog.component.mjs +4 -4
- package/esm2020/dialog/dialog.component.mjs +4 -4
- package/esm2020/dialog/dialog.module.mjs +5 -5
- package/esm2020/dialog/dialog.service.mjs +4 -4
- package/esm2020/draggable-items/draggable-item/draggable-item.component.mjs +46 -6
- package/esm2020/draggable-items/draggable-items.component.mjs +21 -29
- package/esm2020/draggable-items/draggable-items.module.mjs +9 -5
- package/esm2020/field-title/field-title.component.mjs +8 -5
- package/esm2020/field-title/field-title.module.mjs +5 -5
- package/esm2020/files-uploader/files-uploader.component.mjs +12 -12
- package/esm2020/files-uploader/files-uploader.module.mjs +5 -5
- package/esm2020/form/field-generator.component.mjs +5 -5
- package/esm2020/form/form.component.mjs +30 -28
- package/esm2020/form/form.module.mjs +5 -5
- package/esm2020/form/indicators.component.mjs +4 -4
- package/esm2020/form/internal-button.component.mjs +17 -17
- package/esm2020/form/internal-carusel.component.mjs +24 -20
- package/esm2020/form/internal-carusel.service.mjs +4 -4
- package/esm2020/form/internal-field-generator.component.mjs +5 -5
- package/esm2020/form/internal-form.component.mjs +30 -28
- package/esm2020/form/internal-list.component.mjs +7 -7
- package/esm2020/form/internal-menu.component.mjs +6 -8
- package/esm2020/form/internal-page.component.mjs +4 -4
- package/esm2020/form/internal-page.service.mjs +4 -4
- package/esm2020/group-buttons/group-buttons.component.mjs +5 -5
- package/esm2020/group-buttons/group-buttons.module.mjs +5 -5
- package/esm2020/icon/icon-registry.service.mjs +4 -4
- package/esm2020/icon/icon.component.mjs +11 -11
- package/esm2020/icon/icon.module.mjs +5 -5
- package/esm2020/icon/icon.service.mjs +4 -4
- package/esm2020/image/image.component.mjs +52 -43
- package/esm2020/image/image.module.mjs +5 -5
- package/esm2020/image/image.service.mjs +4 -4
- package/esm2020/images-filmstrip/images-filmstrip.component.mjs +26 -25
- package/esm2020/images-filmstrip/images-filmstrip.module.mjs +5 -5
- package/esm2020/link/link.component.mjs +65 -50
- package/esm2020/link/link.module.mjs +5 -5
- package/esm2020/link/link.pipes.mjs +4 -4
- package/esm2020/list/list-actions.component.mjs +6 -6
- package/esm2020/list/list-carousel.component.mjs +20 -20
- package/esm2020/list/list-chooser.component.mjs +6 -6
- package/esm2020/list/list-pager.component.mjs +12 -12
- package/esm2020/list/list-sorting.component.mjs +6 -6
- package/esm2020/list/list-total.component.mjs +9 -6
- package/esm2020/list/list-views.component.mjs +6 -6
- package/esm2020/list/list.component.mjs +151 -72
- package/esm2020/list/list.module.mjs +5 -5
- package/esm2020/list/list.pipes.mjs +7 -7
- package/esm2020/list/virtual-scroller.mjs +58 -58
- package/esm2020/menu/menu-item.component.mjs +5 -5
- package/esm2020/menu/menu.component.mjs +15 -12
- package/esm2020/menu/menu.model.mjs +2 -1
- package/esm2020/menu/menu.module.mjs +5 -5
- package/esm2020/ngx-lib.module.mjs +5 -5
- package/esm2020/page-layout/page-layout.component.mjs +4 -4
- package/esm2020/page-layout/page-layout.module.mjs +5 -5
- package/esm2020/profile-data-views-list/profile-data-view/profile-data-view.component.mjs +4 -4
- package/esm2020/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.mjs +27 -11
- package/esm2020/profile-data-views-list/profile-data-views-list.component.mjs +70 -38
- package/esm2020/profile-data-views-list/profile-data-views-list.model.mjs +1 -1
- package/esm2020/profile-data-views-list/profile-data-views-list.module.mjs +5 -5
- package/esm2020/quantity-selector/quantity-selector-validation.directive.mjs +4 -4
- package/esm2020/quantity-selector/quantity-selector.component.mjs +102 -89
- package/esm2020/quantity-selector/quantity-selector.module.mjs +5 -5
- package/esm2020/quantity-selector/quantity-selector.pipes.mjs +4 -4
- package/esm2020/query-builder/common/model/legacy.mjs +1 -1
- package/esm2020/query-builder/common/model/operator.mjs +72 -62
- package/esm2020/query-builder/common/services/output-query.service.mjs +8 -6
- package/esm2020/query-builder/common/services/query-structure.service.mjs +37 -5
- package/esm2020/query-builder/common/services/type-convertor.service.mjs +10 -10
- package/esm2020/query-builder/query-builder-item/query-builder-item.component.mjs +25 -23
- package/esm2020/query-builder/query-builder-section/query-builder-section.component.mjs +5 -5
- package/esm2020/query-builder/query-builder.component.mjs +19 -19
- package/esm2020/query-builder/query-builder.module.mjs +17 -6
- package/esm2020/query-builder/query-builder.service.mjs +5 -5
- package/esm2020/remote-loader/addon-block-loader.component.mjs +45 -35
- package/esm2020/remote-loader/addon-block-loader.service.mjs +8 -5
- package/esm2020/remote-loader/remote-loader-element.component.mjs +81 -26
- package/esm2020/remote-loader/remote-loader.component.mjs +13 -13
- package/esm2020/remote-loader/remote-loader.model.mjs +1 -1
- package/esm2020/remote-loader/remote-loader.module.mjs +5 -5
- package/esm2020/remote-loader/remote-loader.service.mjs +38 -15
- package/esm2020/rich-html-textarea/rich-html-textarea.component.mjs +52 -36
- package/esm2020/rich-html-textarea/rich-html-textarea.module.mjs +5 -5
- package/esm2020/search/search.component.mjs +35 -35
- package/esm2020/search/search.module.mjs +5 -5
- package/esm2020/select/select.component.mjs +89 -45
- package/esm2020/select/select.module.mjs +5 -5
- package/esm2020/select-panel/select-panel.component.mjs +26 -28
- package/esm2020/select-panel/select-panel.module.mjs +5 -5
- package/esm2020/separator/separator.component.mjs +16 -16
- package/esm2020/separator/separator.module.mjs +5 -5
- package/esm2020/side-bar/side-bar.component.mjs +29 -15
- package/esm2020/side-bar/side-bar.module.mjs +5 -5
- package/esm2020/signature/signature-dialog.component.mjs +4 -4
- package/esm2020/signature/signature.component.mjs +41 -32
- package/esm2020/signature/signature.module.mjs +5 -5
- package/esm2020/size-detector/size-detector.component.mjs +15 -13
- package/esm2020/size-detector/size-detector.module.mjs +5 -5
- package/esm2020/skeleton-loader/public-api.mjs +2 -2
- package/esm2020/skeleton-loader/skeleton-loader.component.mjs +5 -5
- package/esm2020/skeleton-loader/skeleton-loader.module.mjs +5 -5
- package/esm2020/slider/slider.component.mjs +21 -21
- package/esm2020/slider/slider.module.mjs +5 -5
- package/esm2020/smart-filters/boolean-filter/boolean-filter.component.mjs +4 -4
- package/esm2020/smart-filters/common/filter-actions.component.mjs +4 -4
- package/esm2020/smart-filters/common/model/base-filter-component.mjs +28 -34
- package/esm2020/smart-filters/common/model/field.mjs +7 -7
- package/esm2020/smart-filters/common/model/operator.mjs +15 -6
- package/esm2020/smart-filters/common/model/type.mjs +1 -1
- package/esm2020/smart-filters/date-filter/date-filter.component.mjs +4 -4
- package/esm2020/smart-filters/multi-select-filter/multi-select-filter.component.mjs +5 -5
- package/esm2020/smart-filters/number-filter/number-filter.component.mjs +4 -4
- package/esm2020/smart-filters/smart-filters.component.mjs +19 -19
- package/esm2020/smart-filters/smart-filters.module.mjs +5 -5
- package/esm2020/smart-filters/text-filter/text-filter.component.mjs +29 -9
- package/esm2020/snack-bar/default-snack-bar.component.mjs +4 -4
- package/esm2020/snack-bar/snack-bar.component.mjs +4 -4
- package/esm2020/snack-bar/snack-bar.module.mjs +5 -5
- package/esm2020/snack-bar/snack-bar.service.mjs +4 -4
- package/esm2020/textarea/textarea.component.mjs +40 -31
- package/esm2020/textarea/textarea.module.mjs +5 -5
- package/esm2020/textbox/textbox-validation.directive.mjs +5 -5
- package/esm2020/textbox/textbox.component.mjs +171 -115
- package/esm2020/textbox/textbox.module.mjs +5 -5
- package/esm2020/textbox-icon/textbox-icon.component.mjs +4 -4
- package/esm2020/textbox-icon/textbox-icon.module.mjs +5 -5
- package/esm2020/top-bar/top-bar.component.mjs +5 -5
- package/esm2020/top-bar/top-bar.module.mjs +5 -5
- package/fesm2015/pepperi-addons-ngx-lib-address.mjs +19 -19
- package/fesm2015/pepperi-addons-ngx-lib-address.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs +61 -52
- package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.mjs +18 -18
- package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-button.mjs +26 -26
- package/fesm2015/pepperi-addons-ngx-lib-button.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs +63 -63
- package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs +43 -34
- package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-chips.mjs +33 -44
- package/fesm2015/pepperi-addons-ngx-lib-chips.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-color.mjs +12 -12
- package/fesm2015/pepperi-addons-ngx-lib-color.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-date.mjs +91 -68
- package/fesm2015/pepperi-addons-ngx-lib-date.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs +13 -13
- package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs +75 -40
- package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs +11 -8
- package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs +15 -15
- package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-form.mjs +132 -126
- package/fesm2015/pepperi-addons-ngx-lib-form.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs +8 -8
- package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-icon.mjs +20 -20
- package/fesm2015/pepperi-addons-ngx-lib-icon.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-image.mjs +58 -49
- package/fesm2015/pepperi-addons-ngx-lib-image.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs +29 -28
- package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-link.mjs +71 -56
- package/fesm2015/pepperi-addons-ngx-lib-link.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs +276 -192
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-menu.mjs +23 -19
- package/fesm2015/pepperi-addons-ngx-lib-menu.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-page-layout.mjs +7 -7
- package/fesm2015/pepperi-addons-ngx-lib-page-layout.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs +102 -54
- package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.mjs +110 -97
- package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs +191 -132
- package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs +197 -108
- package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs +55 -39
- package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-search.mjs +38 -38
- package/fesm2015/pepperi-addons-ngx-lib-search.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-select-panel.mjs +29 -31
- package/fesm2015/pepperi-addons-ngx-lib-select-panel.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-select.mjs +92 -48
- package/fesm2015/pepperi-addons-ngx-lib-select.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-separator.mjs +19 -19
- package/fesm2015/pepperi-addons-ngx-lib-separator.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs +32 -18
- package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-signature.mjs +48 -38
- package/fesm2015/pepperi-addons-ngx-lib-signature.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs +18 -16
- package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-skeleton-loader.mjs +9 -9
- package/fesm2015/pepperi-addons-ngx-lib-skeleton-loader.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-slider.mjs +24 -24
- package/fesm2015/pepperi-addons-ngx-lib-slider.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs +114 -91
- package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs +13 -13
- package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-textarea.mjs +43 -34
- package/fesm2015/pepperi-addons-ngx-lib-textarea.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs +7 -7
- package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs +181 -123
- package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs +8 -8
- package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib.mjs +760 -653
- package/fesm2015/pepperi-addons-ngx-lib.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-address.mjs +19 -19
- package/fesm2020/pepperi-addons-ngx-lib-address.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-attachment.mjs +61 -52
- package/fesm2020/pepperi-addons-ngx-lib-attachment.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-bread-crumbs.mjs +18 -18
- package/fesm2020/pepperi-addons-ngx-lib-bread-crumbs.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-button.mjs +26 -26
- package/fesm2020/pepperi-addons-ngx-lib-button.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-carousel.mjs +63 -63
- package/fesm2020/pepperi-addons-ngx-lib-carousel.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-checkbox.mjs +43 -34
- package/fesm2020/pepperi-addons-ngx-lib-checkbox.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-chips.mjs +33 -44
- package/fesm2020/pepperi-addons-ngx-lib-chips.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-color.mjs +12 -12
- package/fesm2020/pepperi-addons-ngx-lib-color.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-date.mjs +90 -68
- package/fesm2020/pepperi-addons-ngx-lib-date.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-dialog.mjs +13 -13
- package/fesm2020/pepperi-addons-ngx-lib-dialog.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-draggable-items.mjs +74 -39
- package/fesm2020/pepperi-addons-ngx-lib-draggable-items.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-field-title.mjs +11 -8
- package/fesm2020/pepperi-addons-ngx-lib-field-title.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-files-uploader.mjs +15 -15
- package/fesm2020/pepperi-addons-ngx-lib-files-uploader.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-form.mjs +132 -126
- package/fesm2020/pepperi-addons-ngx-lib-form.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-group-buttons.mjs +8 -8
- package/fesm2020/pepperi-addons-ngx-lib-group-buttons.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-icon.mjs +20 -20
- package/fesm2020/pepperi-addons-ngx-lib-icon.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-image.mjs +58 -49
- package/fesm2020/pepperi-addons-ngx-lib-image.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-images-filmstrip.mjs +29 -28
- package/fesm2020/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-link.mjs +71 -56
- package/fesm2020/pepperi-addons-ngx-lib-link.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs +274 -192
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-menu.mjs +23 -19
- package/fesm2020/pepperi-addons-ngx-lib-menu.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-page-layout.mjs +7 -7
- package/fesm2020/pepperi-addons-ngx-lib-page-layout.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-profile-data-views-list.mjs +102 -54
- package/fesm2020/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-quantity-selector.mjs +110 -97
- package/fesm2020/pepperi-addons-ngx-lib-quantity-selector.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-query-builder.mjs +187 -131
- package/fesm2020/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-remote-loader.mjs +184 -93
- package/fesm2020/pepperi-addons-ngx-lib-remote-loader.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-rich-html-textarea.mjs +55 -39
- package/fesm2020/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-search.mjs +38 -38
- package/fesm2020/pepperi-addons-ngx-lib-search.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-select-panel.mjs +29 -31
- package/fesm2020/pepperi-addons-ngx-lib-select-panel.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-select.mjs +92 -48
- package/fesm2020/pepperi-addons-ngx-lib-select.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-separator.mjs +19 -19
- package/fesm2020/pepperi-addons-ngx-lib-separator.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-side-bar.mjs +32 -18
- package/fesm2020/pepperi-addons-ngx-lib-side-bar.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-signature.mjs +47 -38
- package/fesm2020/pepperi-addons-ngx-lib-signature.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs +18 -16
- package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-skeleton-loader.mjs +9 -9
- package/fesm2020/pepperi-addons-ngx-lib-skeleton-loader.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-slider.mjs +24 -24
- package/fesm2020/pepperi-addons-ngx-lib-slider.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-smart-filters.mjs +114 -91
- package/fesm2020/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-snack-bar.mjs +13 -13
- package/fesm2020/pepperi-addons-ngx-lib-snack-bar.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-textarea.mjs +43 -34
- package/fesm2020/pepperi-addons-ngx-lib-textarea.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-textbox-icon.mjs +7 -7
- package/fesm2020/pepperi-addons-ngx-lib-textbox-icon.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-textbox.mjs +179 -123
- package/fesm2020/pepperi-addons-ngx-lib-textbox.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-top-bar.mjs +8 -8
- package/fesm2020/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib.mjs +780 -674
- package/fesm2020/pepperi-addons-ngx-lib.mjs.map +1 -1
- package/field-title/field-title.component.d.ts +2 -1
- package/files-uploader/files-uploader.component.d.ts +1 -1
- package/form/field-generator.component.d.ts +1 -1
- package/form/form.component.d.ts +1 -1
- package/form/indicators.component.d.ts +1 -1
- package/form/internal-button.component.d.ts +1 -1
- package/form/internal-carusel.component.d.ts +2 -1
- package/form/internal-field-generator.component.d.ts +1 -1
- package/form/internal-form.component.d.ts +1 -1
- package/form/internal-list.component.d.ts +2 -2
- package/form/internal-menu.component.d.ts +1 -2
- package/form/internal-page.component.d.ts +1 -1
- package/group-buttons/group-buttons.component.d.ts +2 -2
- package/icon/icon-generated.model.d.ts +2 -2
- package/icon/icon.component.d.ts +1 -1
- package/image/image.component.d.ts +2 -1
- package/image/image.component.theme.scss +4 -2
- package/images-filmstrip/images-filmstrip.component.d.ts +1 -1
- package/link/link.component.d.ts +4 -1
- package/list/list-actions.component.d.ts +1 -1
- package/list/list-carousel.component.d.ts +2 -2
- package/list/list-chooser.component.d.ts +1 -1
- package/list/list-pager.component.d.ts +1 -1
- package/list/list-sorting.component.d.ts +1 -1
- package/list/list-total.component.d.ts +2 -1
- package/list/list-views.component.d.ts +2 -2
- package/list/list.component.d.ts +9 -3
- package/list/list.model.d.ts +6 -6
- package/list/virtual-scroller.d.ts +2 -2
- package/menu/menu-item.component.d.ts +1 -1
- package/menu/menu.component.d.ts +2 -1
- package/menu/menu.model.d.ts +4 -3
- package/package.json +11 -11
- package/page-layout/page-layout.component.d.ts +1 -1
- package/profile-data-views-list/profile-data-view/profile-data-view.component.d.ts +4 -4
- package/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.d.ts +5 -4
- package/profile-data-views-list/profile-data-views-list.component.d.ts +13 -10
- package/profile-data-views-list/profile-data-views-list.model.d.ts +8 -0
- package/quantity-selector/quantity-selector-validation.directive.d.ts +1 -1
- package/quantity-selector/quantity-selector.component.d.ts +8 -9
- package/quantity-selector/quantity-selector.component.theme.scss +12 -6
- package/query-builder/common/model/legacy.d.ts +2 -0
- package/query-builder/common/model/operator.d.ts +11 -1
- package/query-builder/common/services/query-structure.service.d.ts +1 -0
- package/query-builder/query-builder-item/query-builder-item.component.d.ts +4 -2
- package/query-builder/query-builder-section/query-builder-section.component.d.ts +1 -1
- package/query-builder/query-builder.component.d.ts +1 -1
- package/query-builder/query-builder.module.d.ts +7 -3
- package/remote-loader/addon-block-loader.component.d.ts +4 -2
- package/remote-loader/remote-loader-element.component.d.ts +9 -2
- package/remote-loader/remote-loader.component.d.ts +1 -1
- package/remote-loader/remote-loader.model.d.ts +3 -2
- package/remote-loader/remote-loader.service.d.ts +2 -0
- package/rich-html-textarea/rich-html-textarea.component.d.ts +4 -1
- package/rich-html-textarea/rich-html-textarea.component.theme.scss +8 -5
- package/search/search.component.d.ts +1 -1
- package/search/search.model.d.ts +4 -4
- package/select/select.component.d.ts +9 -1
- package/select/select.component.theme.scss +22 -11
- package/select-panel/select-panel.component.d.ts +1 -2
- package/select-panel/select-panel.component.theme.scss +0 -2
- package/separator/separator.component.d.ts +1 -1
- package/side-bar/side-bar.component.d.ts +4 -1
- package/side-bar/side-bar.model.d.ts +1 -1
- package/signature/signature-dialog.component.d.ts +2 -2
- package/signature/signature.component.d.ts +2 -1
- package/size-detector/size-detector.component.d.ts +1 -1
- package/skeleton-loader/skeleton-loader.component.d.ts +4 -4
- package/slider/slider.component.d.ts +1 -1
- package/slider/slider.component.theme.scss +15 -5
- package/smart-filters/boolean-filter/boolean-filter.component.d.ts +4 -1
- package/smart-filters/common/filter-actions.component.d.ts +1 -1
- package/smart-filters/common/model/base-filter-component.d.ts +3 -5
- package/smart-filters/common/model/operator.d.ts +3 -0
- package/smart-filters/common/model/type.d.ts +4 -4
- package/smart-filters/date-filter/date-filter.component.d.ts +4 -1
- package/smart-filters/multi-select-filter/multi-select-filter.component.d.ts +4 -1
- package/smart-filters/number-filter/number-filter.component.d.ts +4 -1
- package/smart-filters/smart-filters.component.d.ts +1 -1
- package/smart-filters/text-filter/text-filter.component.d.ts +5 -1
- package/snack-bar/default-snack-bar.component.d.ts +1 -1
- package/snack-bar/snack-bar.component.d.ts +1 -1
- package/src/assets/i18n/ar.ngx-lib.json +180 -0
- package/src/assets/i18n/de.ngx-lib.json +106 -4
- package/src/assets/i18n/en.ngx-lib.json +10 -3
- package/src/assets/i18n/es.ngx-lib.json +113 -11
- package/src/assets/i18n/fr.ngx-lib.json +105 -4
- package/src/assets/i18n/he.ngx-lib.json +105 -4
- package/src/assets/i18n/it.ngx-lib.json +114 -13
- package/src/assets/i18n/ja.ngx-lib.json +105 -4
- package/src/assets/i18n/pl.ngx-lib.json +105 -4
- package/src/assets/i18n/pt.ngx-lib.json +105 -4
- package/src/assets/i18n/sr.ngx-lib.json +180 -0
- package/src/assets/i18n/zh.ngx-lib.json +105 -2
- package/src/core/style/abstracts/mixins.scss +157 -37
- package/src/core/style/abstracts/variables.scss +10 -1
- package/src/core/style/base/Spacing.stories.mdx +22 -22
- package/src/core/style/base/base.scss +219 -117
- package/src/core/style/base/typography.scss +2 -1
- package/src/core/style/components/button.scss +52 -19
- package/src/core/style/components/checkbox.scss +132 -128
- package/src/core/style/components/file.scss +13 -9
- package/src/core/style/components/general.scss +149 -65
- package/src/core/style/components/radio-button.scss +50 -23
- package/src/core/style/components/textarea.scss +69 -30
- package/textarea/textarea.component.d.ts +2 -1
- package/textbox/textbox-validation.directive.d.ts +1 -1
- package/textbox/textbox.component.d.ts +4 -1
- package/textbox-icon/textbox-icon.component.d.ts +1 -1
- package/theming-offline.scss +2 -1
- package/theming.scss +7 -2
- package/top-bar/top-bar.component.d.ts +1 -1
- package/top-bar/top-bar.model.d.ts +1 -1
- package/src/assets/images/sail-away.jpg +0 -0
|
@@ -15,6 +15,32 @@ import * as i11 from "@pepperi-addons/ngx-lib/field-title";
|
|
|
15
15
|
import * as i12 from "@pepperi-addons/ngx-lib/textbox-icon";
|
|
16
16
|
import * as i13 from "@ngx-translate/core";
|
|
17
17
|
export class PepTextareaComponent {
|
|
18
|
+
set rowSpan(value) {
|
|
19
|
+
this._rowSpan = value;
|
|
20
|
+
this.setFieldHeight();
|
|
21
|
+
}
|
|
22
|
+
get rowSpan() {
|
|
23
|
+
return this._rowSpan;
|
|
24
|
+
}
|
|
25
|
+
set visible(visible) {
|
|
26
|
+
this._visible = visible;
|
|
27
|
+
if (visible) {
|
|
28
|
+
this.renderer.removeClass(this.element.nativeElement, 'hidden-element');
|
|
29
|
+
}
|
|
30
|
+
else {
|
|
31
|
+
this.renderer.addClass(this.element.nativeElement, 'hidden-element');
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
get visible() {
|
|
35
|
+
return this._visible;
|
|
36
|
+
}
|
|
37
|
+
set layoutType(value) {
|
|
38
|
+
this._layoutType = value;
|
|
39
|
+
this.setFieldHeight();
|
|
40
|
+
}
|
|
41
|
+
get layoutType() {
|
|
42
|
+
return this._layoutType;
|
|
43
|
+
}
|
|
18
44
|
constructor(dialogService, customizationService, renderer, element) {
|
|
19
45
|
this.dialogService = dialogService;
|
|
20
46
|
this.customizationService = customizationService;
|
|
@@ -39,36 +65,11 @@ export class PepTextareaComponent {
|
|
|
39
65
|
this._layoutType = 'form';
|
|
40
66
|
this.valueChange = new EventEmitter();
|
|
41
67
|
this.keyup = new EventEmitter();
|
|
68
|
+
this.validationChange = new EventEmitter();
|
|
42
69
|
this.fieldHeight = '';
|
|
43
70
|
this.standAlone = false;
|
|
44
71
|
this.isInEditMode = false;
|
|
45
72
|
}
|
|
46
|
-
set rowSpan(value) {
|
|
47
|
-
this._rowSpan = value;
|
|
48
|
-
this.setFieldHeight();
|
|
49
|
-
}
|
|
50
|
-
get rowSpan() {
|
|
51
|
-
return this._rowSpan;
|
|
52
|
-
}
|
|
53
|
-
set visible(visible) {
|
|
54
|
-
this._visible = visible;
|
|
55
|
-
if (visible) {
|
|
56
|
-
this.renderer.removeClass(this.element.nativeElement, 'hidden-element');
|
|
57
|
-
}
|
|
58
|
-
else {
|
|
59
|
-
this.renderer.addClass(this.element.nativeElement, 'hidden-element');
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
get visible() {
|
|
63
|
-
return this._visible;
|
|
64
|
-
}
|
|
65
|
-
set layoutType(value) {
|
|
66
|
-
this._layoutType = value;
|
|
67
|
-
this.setFieldHeight();
|
|
68
|
-
}
|
|
69
|
-
get layoutType() {
|
|
70
|
-
return this._layoutType;
|
|
71
|
-
}
|
|
72
73
|
setFieldHeight() {
|
|
73
74
|
this.fieldHeight = this.customizationService.calculateFieldHeight(this.layoutType, this.rowSpan, this.standAlone);
|
|
74
75
|
}
|
|
@@ -118,6 +119,12 @@ export class PepTextareaComponent {
|
|
|
118
119
|
if (value !== this.value) {
|
|
119
120
|
this.value = value;
|
|
120
121
|
this.customizationService.updateFormFieldValue(this.form, this.key, value);
|
|
122
|
+
// Raise this only for stand alone fields, If false then the usage for this field is inside a form.
|
|
123
|
+
// Then the form will take care of raising the (onFormValidationChanged) event
|
|
124
|
+
if (this.standAlone) {
|
|
125
|
+
const isValid = (this.disabled || this.readonly) ? true : this.form.valid;
|
|
126
|
+
this.validationChange.emit(isValid);
|
|
127
|
+
}
|
|
121
128
|
this.valueChange.emit(value);
|
|
122
129
|
}
|
|
123
130
|
}
|
|
@@ -140,11 +147,11 @@ export class PepTextareaComponent {
|
|
|
140
147
|
this.dialogRef?.close(data);
|
|
141
148
|
}
|
|
142
149
|
}
|
|
143
|
-
PepTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
144
|
-
PepTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.2", 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", keyup: "keyup" }, 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 (keyup)=\"onKeyup($event)\">\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 <textarea #dialogTextarea [readonly]=\"disabled || readonly\" class=\"body-sm\" matInput\n title=\"{{ value }}\" [value]=\"value\"\n maxlength=\"{{ maxFieldCharacters > 0 ? maxFieldCharacters : 99999 }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [formControlName]=\"key\" >\n </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:100%;max-width:unset;overflow-y:scroll;box-sizing:content-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 .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.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:100%;max-width:unset;overflow-y:scroll;box-sizing:content-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 .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.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: i10.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", "fontBodyType"] }, { 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 });
|
|
145
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
150
|
+
PepTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepTextareaComponent, deps: [{ token: i1.PepDialogService }, { token: i2.PepCustomizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
151
|
+
PepTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", 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", keyup: "keyup", validationChange: "validationChange" }, 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', 'icon-left': xAlignment === 'left' || xAlignment === 'center', 'icon-right': xAlignment === 'right' }\">\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 (keyup)=\"onKeyup($event)\">\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 [formGroup]=\"form\">\n <!-- <textarea #dialogTextarea [readonly]=\"disabled || readonly\">{{ value }}</textarea> -->\n <textarea #dialogTextarea [readonly]=\"disabled || readonly\" class=\"body-sm\" matInput\n title=\"{{ value }}\" [value]=\"value\"\n maxlength=\"{{ maxFieldCharacters > 0 ? maxFieldCharacters : 99999 }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [formControlName]=\"key\" >\n </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,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-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-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-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-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:100%;max-width:unset;overflow-y:scroll;box-sizing:content-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-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,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-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-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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-mdc-form-field-prefix,.pep-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-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-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,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-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,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-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.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-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 .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-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-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-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,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-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-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-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,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-mdc-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-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}.pep-textarea-container ::ng-deep .icon-left .mat-form-field-suffix,.pep-textarea-container ::ng-deep .icon-left .mat-mdc-form-field-suffix{position:absolute;right:1rem!important;bottom:.5rem}.pep-textarea-container ::ng-deep .icon-right .mat-form-field-suffix,.pep-textarea-container ::ng-deep .icon-right .mat-mdc-form-field-suffix{position:absolute;right:calc(100% - 2.5rem)!important;bottom:.5rem}\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,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-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-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-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-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:100%;max-width:unset;overflow-y:scroll;box-sizing:content-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-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,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-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-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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-mdc-form-field-prefix,.pep-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-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-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,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-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,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-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.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-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 .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-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-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-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,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-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-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-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,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-mdc-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding:0}.pepperi-report-textarea ::ng-deep .mat-form-field-flex,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-flex,.pep-report-textarea ::ng-deep .mat-form-field-flex,.pep-report-textarea ::ng-deep .mat-mdc-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-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i7.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i7.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i7.MatPrefix, selector: "[matPrefix], [matIconPrefix], [matTextPrefix]", inputs: ["matTextPrefix"] }, { kind: "directive", type: i7.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { 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: i10.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", "fontBodyType", "multiLine"] }, { 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 });
|
|
152
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepTextareaComponent, decorators: [{
|
|
146
153
|
type: Component,
|
|
147
|
-
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 (keyup)=\"onKeyup($event)\">\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 <textarea #dialogTextarea [readonly]=\"disabled || readonly\" class=\"body-sm\" matInput\n title=\"{{ value }}\" [value]=\"value\"\n maxlength=\"{{ maxFieldCharacters > 0 ? maxFieldCharacters : 99999 }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [formControlName]=\"key\" >\n </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:100%;max-width:unset;overflow-y:scroll;box-sizing:content-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 .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.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:100%;max-width:unset;overflow-y:scroll;box-sizing:content-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 .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.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"] }]
|
|
154
|
+
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', 'icon-left': xAlignment === 'left' || xAlignment === 'center', 'icon-right': xAlignment === 'right' }\">\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 (keyup)=\"onKeyup($event)\">\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 [formGroup]=\"form\">\n <!-- <textarea #dialogTextarea [readonly]=\"disabled || readonly\">{{ value }}</textarea> -->\n <textarea #dialogTextarea [readonly]=\"disabled || readonly\" class=\"body-sm\" matInput\n title=\"{{ value }}\" [value]=\"value\"\n maxlength=\"{{ maxFieldCharacters > 0 ? maxFieldCharacters : 99999 }}\"\n [ngStyle]=\"{ color: textColor, 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [formControlName]=\"key\" >\n </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,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-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-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-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-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:100%;max-width:unset;overflow-y:scroll;box-sizing:content-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-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,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-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-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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-mdc-form-field-prefix,.pep-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-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-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,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-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,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-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.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-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 .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-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-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-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,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-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-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-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,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-mdc-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-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}.pep-textarea-container ::ng-deep .icon-left .mat-form-field-suffix,.pep-textarea-container ::ng-deep .icon-left .mat-mdc-form-field-suffix{position:absolute;right:1rem!important;bottom:.5rem}.pep-textarea-container ::ng-deep .icon-right .mat-form-field-suffix,.pep-textarea-container ::ng-deep .icon-right .mat-mdc-form-field-suffix{position:absolute;right:calc(100% - 2.5rem)!important;bottom:.5rem}\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,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-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-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-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-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:100%;max-width:unset;overflow-y:scroll;box-sizing:content-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-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,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-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-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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-mdc-form-field-prefix,.pep-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-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-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,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-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,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-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.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-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 .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-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-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-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,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-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-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-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,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-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,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-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-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-mdc-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding:0}.pepperi-report-textarea ::ng-deep .mat-form-field-flex,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-flex,.pep-report-textarea ::ng-deep .mat-form-field-flex,.pep-report-textarea ::ng-deep .mat-mdc-form-field-flex{background:transparent!important}\n"] }]
|
|
148
155
|
}], ctorParameters: function () { return [{ type: i1.PepDialogService }, { type: i2.PepCustomizationService }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { key: [{
|
|
149
156
|
type: Input
|
|
150
157
|
}], value: [{
|
|
@@ -181,8 +188,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImpor
|
|
|
181
188
|
type: Output
|
|
182
189
|
}], keyup: [{
|
|
183
190
|
type: Output
|
|
191
|
+
}], validationChange: [{
|
|
192
|
+
type: Output
|
|
184
193
|
}], textAreaDialogTemplate: [{
|
|
185
194
|
type: ViewChild,
|
|
186
195
|
args: ['textAreaDialogTemplate', { read: TemplateRef }]
|
|
187
196
|
}] } });
|
|
188
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGFyZWEuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LWxpYi90ZXh0YXJlYS90ZXh0YXJlYS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtbGliL3RleHRhcmVhL3RleHRhcmVhLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDSCxTQUFTLEVBR1QsS0FBSyxFQUNMLE1BQU0sRUFDTixZQUFZLEVBQ1osdUJBQXVCLEVBRXZCLFNBQVMsRUFHVCxXQUFXLEdBQ2QsTUFBTSxlQUFlLENBQUM7QUFHdkIsT0FBTyxFQUVILHVCQUF1QixFQUV2Qiw0QkFBNEIsRUFDNUIsZ0JBQWdCLEdBQ25CLE1BQU0seUJBQXlCLENBQUM7Ozs7Ozs7Ozs7Ozs7OztBQVNqQyxNQUFNLE9BQU8sb0JBQW9CO0lBNEU3QixZQUNZLGFBQStCLEVBQy9CLG9CQUE2QyxFQUM3QyxRQUFtQixFQUNuQixPQUFtQjtRQUhuQixrQkFBYSxHQUFiLGFBQWEsQ0FBa0I7UUFDL0IseUJBQW9CLEdBQXBCLG9CQUFvQixDQUF5QjtRQUM3QyxhQUFRLEdBQVIsUUFBUSxDQUFXO1FBQ25CLFlBQU8sR0FBUCxPQUFPLENBQVk7UUEvRXRCLFFBQUcsR0FBRyxFQUFFLENBQUM7UUFDVCxVQUFLLEdBQUcsRUFBRSxDQUFDO1FBQ1gsVUFBSyxHQUFHLEVBQUUsQ0FBQztRQUNYLGNBQVMsR0FBRyxLQUFLLENBQUM7UUFDbEIsYUFBUSxHQUFHLEtBQUssQ0FBQztRQUNqQixhQUFRLEdBQUcsS0FBSyxDQUFDO1FBRWpCLGNBQVMsR0FBRyxFQUFFLENBQUM7UUFDZixlQUFVLEdBQTJCLDRCQUE0QixDQUFDO1FBRW5FLGFBQVEsR0FBRyxDQUFDLENBQUM7UUFVYixhQUFRLEdBQUcsSUFBSSxDQUFDO1FBb0J4QixnQ0FBZ0M7UUFFaEMsZ0JBQVcsR0FBRyxVQUFVLENBQUM7UUFFaEIsU0FBSSxHQUFjLElBQUksQ0FBQztRQUN2QixhQUFRLEdBQUcsS0FBSyxDQUFDO1FBQ2pCLGNBQVMsR0FBRyxJQUFJLENBQUM7UUFDakIsZ0JBQVcsR0FBRyxJQUFJLENBQUM7UUFFcEIsZ0JBQVcsR0FBa0IsTUFBTSxDQUFDO1FBVzVDLGdCQUFXLEdBQXlCLElBQUksWUFBWSxFQUFVLENBQUM7UUFHL0QsVUFBSyxHQUFzQixJQUFJLFlBQVksRUFBTyxDQUFDO1FBTW5ELGdCQUFXLEdBQUcsRUFBRSxDQUFDO1FBQ2pCLGVBQVUsR0FBRyxLQUFLLENBQUM7UUFDbkIsaUJBQVksR0FBRyxLQUFLLENBQUM7SUFTakIsQ0FBQztJQXJFTCxJQUNJLE9BQU8sQ0FBQyxLQUFLO1FBQ2IsSUFBSSxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUM7UUFDdEIsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO0lBQzFCLENBQUM7SUFDRCxJQUFJLE9BQU87UUFDUCxPQUFPLElBQUksQ0FBQyxRQUFRLENBQUM7SUFDekIsQ0FBQztJQUdELElBQ0ksT0FBTyxDQUFDLE9BQWdCO1FBQ3hCLElBQUksQ0FBQyxRQUFRLEdBQUcsT0FBTyxDQUFDO1FBQ3hCLElBQUksT0FBTyxFQUFFO1lBQ1QsSUFBSSxDQUFDLFFBQVEsQ0FBQyxXQUFXLENBQ3JCLElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxFQUMxQixnQkFBZ0IsQ0FDbkIsQ0FBQztTQUNMO2FBQU07WUFDSCxJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FDbEIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxhQUFhLEVBQzFCLGdCQUFnQixDQUNuQixDQUFDO1NBQ0w7SUFDTCxDQUFDO0lBQ0QsSUFBSSxPQUFPO1FBQ1AsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDO0lBQ3pCLENBQUM7SUFZRCxJQUNJLFVBQVUsQ0FBQyxLQUFvQjtRQUMvQixJQUFJLENBQUMsV0FBVyxHQUFHLEtBQUssQ0FBQztRQUN6QixJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDMUIsQ0FBQztJQUNELElBQUksVUFBVTtRQUNWLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQztJQUM1QixDQUFDO0lBeUJPLGNBQWM7UUFDbEIsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsb0JBQW9CLENBQUMsb0JBQW9CLENBQzdELElBQUksQ0FBQyxVQUFVLEVBQ2YsSUFBSSxDQUFDLE9BQU8sRUFDWixJQUFJLENBQUMsVUFBVSxDQUNsQixDQUFDO0lBQ04sQ0FBQztJQUVPLGNBQWM7UUFDbEIsTUFBTSxRQUFRLEdBQUcsSUFBSSxnQkFBZ0IsQ0FBQztZQUNsQyxHQUFHLEVBQUUsSUFBSSxDQUFDLEdBQUc7WUFDYixLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUs7WUFDakIsU0FBUyxFQUFFLElBQUksQ0FBQyxTQUFTO1lBQ3pCLFFBQVEsRUFBRSxJQUFJLENBQUMsUUFBUTtZQUN2QixRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVE7WUFDdkIsa0JBQWtCLEVBQUUsSUFBSSxDQUFDLGtCQUFrQjtTQUM5QyxDQUFDLENBQUM7UUFDSCxJQUFJLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxtQkFBbUIsQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUN4RSxDQUFDO0lBRUQsUUFBUTtRQUNKLElBQUksSUFBSSxDQUFDLElBQUksS0FBSyxJQUFJLEVBQUU7WUFDcEIsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUM7WUFDdkIsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO1lBQ3RCLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztZQUV0QixJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FDbEIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxhQUFhLEVBQzFCLHVCQUF1QixDQUFDLDRCQUE0QixDQUN2RCxDQUFDO1lBRUYsSUFBSSxDQUFDLElBQUksQ0FBQyxXQUFXLEVBQUU7Z0JBQ25CLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUNsQixJQUFJLENBQUMsT0FBTyxDQUFDLGFBQWEsRUFDMUIsdUJBQXVCLENBQUMsdUNBQXVDLENBQ2xFLENBQUM7YUFDTDtTQUNKO0lBQ0wsQ0FBQztJQUVELFdBQVcsQ0FBQyxPQUFZO1FBQ3BCLElBQUksSUFBSSxDQUFDLFVBQVUsRUFBRTtZQUNqQixJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7U0FDekI7SUFDTCxDQUFDO0lBRUQsV0FBVztRQUNQLEVBQUU7SUFDTixDQUFDO0lBRUQsT0FBTyxDQUFDLEtBQUs7UUFDVCxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMzQixDQUFDO0lBRUQsTUFBTSxDQUFDLEtBQVU7UUFDYixNQUFNLEtBQUssR0FBRyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDO1FBQ3hELElBQUksQ0FBQyxXQUFXLENBQUMsS0FBSyxDQUFDLENBQUM7UUFFeEIsVUFBVSxDQUFDLEdBQUcsRUFBRTtZQUNaLElBQUksSUFBSSxDQUFDLFlBQVksRUFBRTtnQkFDbkIsSUFBSSxDQUFDLFlBQVksR0FBRyxLQUFLLENBQUM7YUFDN0I7UUFDTCxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDVixDQUFDO0lBRUQsV0FBVyxDQUFDLEtBQVU7UUFDbEIsSUFBSSxLQUFLLEtBQUssSUFBSSxDQUFDLEtBQUssRUFBRTtZQUN0QixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztZQUNuQixJQUFJLENBQUMsb0JBQW9CLENBQUMsb0JBQW9CLENBQzFDLElBQUksQ0FBQyxJQUFJLEVBQ1QsSUFBSSxDQUFDLEdBQUcsRUFDUixLQUFLLENBQ1IsQ0FBQztZQUNGLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQ2hDO0lBQ0wsQ0FBQztJQUVELG1CQUFtQixDQUFDLEtBQVU7UUFDMUIsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO0lBQ3RCLENBQUM7SUFFRCxVQUFVO1FBQ04sTUFBTSxNQUFNLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxlQUFlLENBQzdDO1FBQ0ksb0JBQW9CO1FBQ3BCLG9CQUFvQjtTQUN2QixFQUNELFNBQVMsQ0FDWixDQUFDO1FBRUYsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLFVBQVUsQ0FDMUMsSUFBSSxDQUFDLHNCQUFzQixFQUMzQixFQUFFLEVBQ0YsTUFBTSxDQUNULENBQUM7UUFFRixJQUFJLENBQUMsU0FBUyxDQUFDLFdBQVcsRUFBRSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFO1lBQzdDLElBQUksS0FBSyxLQUFLLFNBQVMsSUFBSSxLQUFLLEtBQUssSUFBSSxFQUFFO2dCQUN2QyxJQUFJLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxDQUFDO2FBQzNCO1FBQ0wsQ0FBQyxDQUFDLENBQUM7SUFDUCxDQUFDO0lBRUQsV0FBVyxDQUFDLE9BQVksSUFBSTtRQUN4QixJQUFJLENBQUMsU0FBUyxFQUFFLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNoQyxDQUFDOztpSEE1TFEsb0JBQW9CO3FHQUFwQixvQkFBb0IsNGtCQW1FZ0IsV0FBVyxrRENsRzVELGdwUUE2SGM7MkZEOUZELG9CQUFvQjtrQkFOaEMsU0FBUzsrQkFDSSxjQUFjLG1CQUdQLHVCQUF1QixDQUFDLE1BQU07OExBR3RDLEdBQUc7c0JBQVgsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLGtCQUFrQjtzQkFBMUIsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBSUYsT0FBTztzQkFEVixLQUFLO2dCQVdGLE9BQU87c0JBRFYsS0FBSztnQkF1QkcsSUFBSTtzQkFBWixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csU0FBUztzQkFBakIsS0FBSztnQkFDRyxXQUFXO3NCQUFuQixLQUFLO2dCQUlGLFVBQVU7c0JBRGIsS0FBSztnQkFVTixXQUFXO3NCQURWLE1BQU07Z0JBSVAsS0FBSztzQkFESixNQUFNO2dCQUtQLHNCQUFzQjtzQkFEckIsU0FBUzt1QkFBQyx3QkFBd0IsRUFBRSxFQUFFLElBQUksRUFBRSxXQUFXLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIENvbXBvbmVudCxcbiAgICBPbkluaXQsXG4gICAgT25DaGFuZ2VzLFxuICAgIElucHV0LFxuICAgIE91dHB1dCxcbiAgICBFdmVudEVtaXR0ZXIsXG4gICAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gICAgRWxlbWVudFJlZixcbiAgICBWaWV3Q2hpbGQsXG4gICAgT25EZXN0cm95LFxuICAgIFJlbmRlcmVyMixcbiAgICBUZW1wbGF0ZVJlZixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtR3JvdXAgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBNYXREaWFsb2dSZWYgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xuaW1wb3J0IHtcbiAgICBQZXBMYXlvdXRUeXBlLFxuICAgIFBlcEN1c3RvbWl6YXRpb25TZXJ2aWNlLFxuICAgIFBlcEhvcml6b250YWxBbGlnbm1lbnQsXG4gICAgREVGQVVMVF9IT1JJWk9OVEFMX0FMSUdOTUVOVCxcbiAgICBQZXBUZXh0YXJlYUZpZWxkLFxufSBmcm9tICdAcGVwcGVyaS1hZGRvbnMvbmd4LWxpYic7XG5pbXBvcnQgeyBQZXBEaWFsb2dTZXJ2aWNlIH0gZnJvbSAnQHBlcHBlcmktYWRkb25zL25neC1saWIvZGlhbG9nJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdwZXAtdGV4dGFyZWEnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi90ZXh0YXJlYS5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vdGV4dGFyZWEuY29tcG9uZW50LnNjc3MnLCAnLi90ZXh0YXJlYS5jb21wb25lbnQudGhlbWUuc2NzcyddLFxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBQZXBUZXh0YXJlYUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uQ2hhbmdlcywgT25Jbml0LCBPbkRlc3Ryb3kge1xuICAgIEBJbnB1dCgpIGtleSA9ICcnO1xuICAgIEBJbnB1dCgpIHZhbHVlID0gJyc7XG4gICAgQElucHV0KCkgbGFiZWwgPSAnJztcbiAgICBASW5wdXQoKSBtYW5kYXRvcnkgPSBmYWxzZTtcbiAgICBASW5wdXQoKSBkaXNhYmxlZCA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIHJlYWRvbmx5ID0gZmFsc2U7XG4gICAgQElucHV0KCkgbWF4RmllbGRDaGFyYWN0ZXJzOiBudW1iZXI7XG4gICAgQElucHV0KCkgdGV4dENvbG9yID0gJyc7XG4gICAgQElucHV0KCkgeEFsaWdubWVudDogUGVwSG9yaXpvbnRhbEFsaWdubWVudCA9IERFRkFVTFRfSE9SSVpPTlRBTF9BTElHTk1FTlQ7XG5cbiAgICBwcml2YXRlIF9yb3dTcGFuID0gMTtcbiAgICBASW5wdXQoKVxuICAgIHNldCByb3dTcGFuKHZhbHVlKSB7XG4gICAgICAgIHRoaXMuX3Jvd1NwYW4gPSB2YWx1ZTtcbiAgICAgICAgdGhpcy5zZXRGaWVsZEhlaWdodCgpO1xuICAgIH1cbiAgICBnZXQgcm93U3BhbigpOiBudW1iZXIge1xuICAgICAgICByZXR1cm4gdGhpcy5fcm93U3BhbjtcbiAgICB9XG5cbiAgICBwcml2YXRlIF92aXNpYmxlID0gdHJ1ZTtcbiAgICBASW5wdXQoKVxuICAgIHNldCB2aXNpYmxlKHZpc2libGU6IGJvb2xlYW4pIHtcbiAgICAgICAgdGhpcy5fdmlzaWJsZSA9IHZpc2libGU7XG4gICAgICAgIGlmICh2aXNpYmxlKSB7XG4gICAgICAgICAgICB0aGlzLnJlbmRlcmVyLnJlbW92ZUNsYXNzKFxuICAgICAgICAgICAgICAgIHRoaXMuZWxlbWVudC5uYXRpdmVFbGVtZW50LFxuICAgICAgICAgICAgICAgICdoaWRkZW4tZWxlbWVudCdcbiAgICAgICAgICAgICk7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICB0aGlzLnJlbmRlcmVyLmFkZENsYXNzKFxuICAgICAgICAgICAgICAgIHRoaXMuZWxlbWVudC5uYXRpdmVFbGVtZW50LFxuICAgICAgICAgICAgICAgICdoaWRkZW4tZWxlbWVudCdcbiAgICAgICAgICAgICk7XG4gICAgICAgIH1cbiAgICB9XG4gICAgZ2V0IHZpc2libGUoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLl92aXNpYmxlO1xuICAgIH1cblxuICAgIC8vIEBJbnB1dCgpIGxhc3RGb2N1c0ZpZWxkOiBhbnk7XG5cbiAgICBjb250cm9sVHlwZSA9ICd0ZXh0YXJlYSc7XG5cbiAgICBASW5wdXQoKSBmb3JtOiBGb3JtR3JvdXAgPSBudWxsO1xuICAgIEBJbnB1dCgpIGlzQWN0aXZlID0gZmFsc2U7XG4gICAgQElucHV0KCkgc2hvd1RpdGxlID0gdHJ1ZTtcbiAgICBASW5wdXQoKSByZW5kZXJUaXRsZSA9IHRydWU7XG5cbiAgICBwcml2YXRlIF9sYXlvdXRUeXBlOiBQZXBMYXlvdXRUeXBlID0gJ2Zvcm0nO1xuICAgIEBJbnB1dCgpXG4gICAgc2V0IGxheW91dFR5cGUodmFsdWU6IFBlcExheW91dFR5cGUpIHtcbiAgICAgICAgdGhpcy5fbGF5b3V0VHlwZSA9IHZhbHVlO1xuICAgICAgICB0aGlzLnNldEZpZWxkSGVpZ2h0KCk7XG4gICAgfVxuICAgIGdldCBsYXlvdXRUeXBlKCk6IFBlcExheW91dFR5cGUge1xuICAgICAgICByZXR1cm4gdGhpcy5fbGF5b3V0VHlwZTtcbiAgICB9XG5cbiAgICBAT3V0cHV0KClcbiAgICB2YWx1ZUNoYW5nZTogRXZlbnRFbWl0dGVyPHN0cmluZz4gPSBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcblxuICAgIEBPdXRwdXQoKVxuICAgIGtleXVwOiBFdmVudEVtaXR0ZXI8YW55PiA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xuXG4gICAgLy8gQFZpZXdDaGlsZCgnaW5wdXQnKSBpbnB1dDogRWxlbWVudFJlZjtcbiAgICBAVmlld0NoaWxkKCd0ZXh0QXJlYURpYWxvZ1RlbXBsYXRlJywgeyByZWFkOiBUZW1wbGF0ZVJlZiB9KVxuICAgIHRleHRBcmVhRGlhbG9nVGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT47XG5cbiAgICBmaWVsZEhlaWdodCA9ICcnO1xuICAgIHN0YW5kQWxvbmUgPSBmYWxzZTtcbiAgICBpc0luRWRpdE1vZGUgPSBmYWxzZTtcblxuICAgIGRpYWxvZ1JlZjogTWF0RGlhbG9nUmVmPGFueT47XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgcHJpdmF0ZSBkaWFsb2dTZXJ2aWNlOiBQZXBEaWFsb2dTZXJ2aWNlLFxuICAgICAgICBwcml2YXRlIGN1c3RvbWl6YXRpb25TZXJ2aWNlOiBQZXBDdXN0b21pemF0aW9uU2VydmljZSxcbiAgICAgICAgcHJpdmF0ZSByZW5kZXJlcjogUmVuZGVyZXIyLFxuICAgICAgICBwcml2YXRlIGVsZW1lbnQ6IEVsZW1lbnRSZWZcbiAgICApIHsgfVxuXG4gICAgcHJpdmF0ZSBzZXRGaWVsZEhlaWdodCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5maWVsZEhlaWdodCA9IHRoaXMuY3VzdG9taXphdGlvblNlcnZpY2UuY2FsY3VsYXRlRmllbGRIZWlnaHQoXG4gICAgICAgICAgICB0aGlzLmxheW91dFR5cGUsXG4gICAgICAgICAgICB0aGlzLnJvd1NwYW4sXG4gICAgICAgICAgICB0aGlzLnN0YW5kQWxvbmVcbiAgICAgICAgKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIHNldERlZmF1bHRGb3JtKCk6IHZvaWQge1xuICAgICAgICBjb25zdCBwZXBGaWVsZCA9IG5ldyBQZXBUZXh0YXJlYUZpZWxkKHtcbiAgICAgICAgICAgIGtleTogdGhpcy5rZXksXG4gICAgICAgICAgICB2YWx1ZTogdGhpcy52YWx1ZSxcbiAgICAgICAgICAgIG1hbmRhdG9yeTogdGhpcy5tYW5kYXRvcnksXG4gICAgICAgICAgICByZWFkb25seTogdGhpcy5yZWFkb25seSxcbiAgICAgICAgICAgIGRpc2FibGVkOiB0aGlzLmRpc2FibGVkLFxuICAgICAgICAgICAgbWF4RmllbGRDaGFyYWN0ZXJzOiB0aGlzLm1heEZpZWxkQ2hhcmFjdGVycyxcbiAgICAgICAgfSk7XG4gICAgICAgIHRoaXMuZm9ybSA9IHRoaXMuY3VzdG9taXphdGlvblNlcnZpY2UuZ2V0RGVmYXVsdEZyb21Hcm91cChwZXBGaWVsZCk7XG4gICAgfVxuXG4gICAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLmZvcm0gPT09IG51bGwpIHtcbiAgICAgICAgICAgIHRoaXMuc3RhbmRBbG9uZSA9IHRydWU7XG4gICAgICAgICAgICB0aGlzLnNldEZpZWxkSGVpZ2h0KCk7XG4gICAgICAgICAgICB0aGlzLnNldERlZmF1bHRGb3JtKCk7XG5cbiAgICAgICAgICAgIHRoaXMucmVuZGVyZXIuYWRkQ2xhc3MoXG4gICAgICAgICAgICAgICAgdGhpcy5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQsXG4gICAgICAgICAgICAgICAgUGVwQ3VzdG9taXphdGlvblNlcnZpY2UuU1RBTkRfQUxPTkVfRklFTERfQ0xBU1NfTkFNRVxuICAgICAgICAgICAgKTtcblxuICAgICAgICAgICAgaWYgKCF0aGlzLnJlbmRlclRpdGxlKSB7XG4gICAgICAgICAgICAgICAgdGhpcy5yZW5kZXJlci5hZGRDbGFzcyhcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQsXG4gICAgICAgICAgICAgICAgICAgIFBlcEN1c3RvbWl6YXRpb25TZXJ2aWNlLlNUQU5EX0FMT05FX0ZJRUxEX05PX1NQQUNJTkdfQ0xBU1NfTkFNRVxuICAgICAgICAgICAgICAgICk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBhbnkpOiB2b2lkIHtcbiAgICAgICAgaWYgKHRoaXMuc3RhbmRBbG9uZSkge1xuICAgICAgICAgICAgdGhpcy5zZXREZWZhdWx0Rm9ybSgpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XG4gICAgICAgIC8vXG4gICAgfVxuXG4gICAgb25LZXl1cChldmVudCk6IGFueSB7XG4gICAgICAgIHRoaXMua2V5dXAuZW1pdChldmVudCk7XG4gICAgfVxuXG4gICAgb25CbHVyKGV2ZW50OiBhbnkpOiB2b2lkIHtcbiAgICAgICAgY29uc3QgdmFsdWUgPSBldmVudC50YXJnZXQgPyBldmVudC50YXJnZXQudmFsdWUgOiBldmVudDtcbiAgICAgICAgdGhpcy5jaGFuZ2VWYWx1ZSh2YWx1ZSk7XG5cbiAgICAgICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICBpZiAodGhpcy5pc0luRWRpdE1vZGUpIHtcbiAgICAgICAgICAgICAgICB0aGlzLmlzSW5FZGl0TW9kZSA9IGZhbHNlO1xuICAgICAgICAgICAgfVxuICAgICAgICB9LCAwKTtcbiAgICB9XG5cbiAgICBjaGFuZ2VWYWx1ZSh2YWx1ZTogYW55KTogdm9pZCB7XG4gICAgICAgIGlmICh2YWx1ZSAhPT0gdGhpcy52YWx1ZSkge1xuICAgICAgICAgICAgdGhpcy52YWx1ZSA9IHZhbHVlO1xuICAgICAgICAgICAgdGhpcy5jdXN0b21pemF0aW9uU2VydmljZS51cGRhdGVGb3JtRmllbGRWYWx1ZShcbiAgICAgICAgICAgICAgICB0aGlzLmZvcm0sXG4gICAgICAgICAgICAgICAgdGhpcy5rZXksXG4gICAgICAgICAgICAgICAgdmFsdWVcbiAgICAgICAgICAgICk7XG4gICAgICAgICAgICB0aGlzLnZhbHVlQ2hhbmdlLmVtaXQodmFsdWUpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgY2FyZFRlbXBsYXRlQ2xpY2tlZChldmVudDogYW55KTogdm9pZCB7XG4gICAgICAgIHRoaXMub3BlbkRpYWxvZygpO1xuICAgIH1cblxuICAgIG9wZW5EaWFsb2coKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IGNvbmZpZyA9IHRoaXMuZGlhbG9nU2VydmljZS5nZXREaWFsb2dDb25maWcoXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgLy8gbWF4V2lkdGg6ICc5MHZ3JyxcbiAgICAgICAgICAgICAgICAvLyBtYXhIZWlnaHQ6ICc5MHZoJ1xuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICdyZWd1bGFyJ1xuICAgICAgICApO1xuXG4gICAgICAgIHRoaXMuZGlhbG9nUmVmID0gdGhpcy5kaWFsb2dTZXJ2aWNlLm9wZW5EaWFsb2coXG4gICAgICAgICAgICB0aGlzLnRleHRBcmVhRGlhbG9nVGVtcGxhdGUsXG4gICAgICAgICAgICB7fSxcbiAgICAgICAgICAgIGNvbmZpZ1xuICAgICAgICApO1xuXG4gICAgICAgIHRoaXMuZGlhbG9nUmVmLmFmdGVyQ2xvc2VkKCkuc3Vic2NyaWJlKCh2YWx1ZSkgPT4ge1xuICAgICAgICAgICAgaWYgKHZhbHVlICE9PSB1bmRlZmluZWQgJiYgdmFsdWUgIT09IG51bGwpIHtcbiAgICAgICAgICAgICAgICB0aGlzLmNoYW5nZVZhbHVlKHZhbHVlKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgY2xvc2VEaWFsb2coZGF0YTogYW55ID0gbnVsbCk6IHZvaWQge1xuICAgICAgICB0aGlzLmRpYWxvZ1JlZj8uY2xvc2UoZGF0YSk7XG4gICAgfVxufVxuIiwiPG5nLWNvbnRhaW5lciBbZm9ybUdyb3VwXT1cImZvcm1cIj5cbiAgICA8bmctdGVtcGxhdGUgI3BlcFRlbXBsYXRlIGxldC1pc0Zvcm1WaWV3PVwiaXNGb3JtVmlld1wiPlxuICAgICAgICA8ZGl2IGNsYXNzPVwicGVwLXRleHRhcmVhLWNvbnRhaW5lclwiIFtuZ0NsYXNzXT1cInsgJ3N0YW5kLWFsb25lJzogc3RhbmRBbG9uZSxcbiAgICAgICAgICAgICdyaWdodC1hbGlnbm1lbnQnOiB4QWxpZ25tZW50ID09ICdyaWdodCcsICdvbmUtcm93Jzogcm93U3BhbiA9PT0gMSxcbiAgICAgICAgICAgICdwZXAtdGV4dGFyZWEtY2FyZC1jb250YWluZXInOiBsYXlvdXRUeXBlID09PSAnY2FyZCd9XCI+XG4gICAgICAgICAgICA8cGVwLWZpZWxkLXRpdGxlICpuZ0lmPVwicmVuZGVyVGl0bGUgJiYgaXNGb3JtVmlld1wiIFtsYWJlbF09XCJsYWJlbFwiIFttYW5kYXRvcnldPVwibWFuZGF0b3J5XCJcbiAgICAgICAgICAgICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIiBbbWF4RmllbGRDaGFyYWN0ZXJzXT1cImRpc2FibGVkIHx8IHJlYWRvbmx5ID8gMCA6IG1heEZpZWxkQ2hhcmFjdGVyc1wiXG4gICAgICAgICAgICAgICAgW3hBbGlnbm1lbnRdPVwieEFsaWdubWVudFwiIFtzaG93VGl0bGVdPVwic2hvd1RpdGxlXCIgW2lucHV0TGVuZ3RoXT1cImlucHV0LnZhbHVlPy5sZW5ndGhcIj5cbiAgICAgICAgICAgIDwvcGVwLWZpZWxkLXRpdGxlPlxuICAgICAgICAgICAgPG1hdC1mb3JtLWZpZWxkIGFwcGVhcmFuY2U9XCJvdXRsaW5lXCIgZGlyPVwie3sgeEFsaWdubWVudCA9PSAncmlnaHQnID8gJ3J0bCcgOiAnbHRyJyB9fVwiXG4gICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwieyAncGVwLXRhYmxlLXRleHRhcmVhJzogbGF5b3V0VHlwZSA9PT0gJ3RhYmxlJyB9XCI+XG4gICAgICAgICAgICAgICAgPHRleHRhcmVhICNpbnB1dCBbaGlkZGVuXT1cInJlYWRvbmx5XCIgW2lkXT1cImtleVwiIGNsYXNzPVwiYm9keS1zbVwiIG1hdElucHV0IChibHVyKT1cIm9uQmx1cigkZXZlbnQpXCJcbiAgICAgICAgICAgICAgICAgICAgdGl0bGU9XCJ7eyB2YWx1ZSB9fVwiIFt2YWx1ZV09XCJ2YWx1ZVwiXG4gICAgICAgICAgICAgICAgICAgIG1heGxlbmd0aD1cInt7IG1heEZpZWxkQ2hhcmFjdGVycyA+IDAgPyBtYXhGaWVsZENoYXJhY3RlcnMgOiA5OTk5OSB9fVwiXG4gICAgICAgICAgICAgICAgICAgIFtuZ1N0eWxlXT1cInsgY29sb3I6IHRleHRDb2xvciwgJ3RleHQtYWxpZ24nOiB4QWxpZ25tZW50ID09ICdyaWdodCcgPyAncmlnaHQnIDogJ2xlZnQnIH1cIlxuICAgICAgICAgICAgICAgICAgICBbZm9ybUNvbnRyb2xOYW1lXT1cImtleVwiIFtzdHlsZS5oZWlnaHRdPVwiZmllbGRIZWlnaHRcIlxuICAgICAgICAgICAgICAgICAgICAoa2V5dXApPVwib25LZXl1cCgkZXZlbnQpXCI+XG4gICAgICAgICAgICAgICAgPC90ZXh0YXJlYT5cbiAgICAgICAgICAgICAgICA8ZGl2ICpuZ0lmPVwicmVhZG9ubHlcIiBjbGFzcz1cImJvZHktc20gZGlzYWJsZS10ZXh0LWRpdlwiIHRpdGxlPVwie3sgdmFsdWUgfX1cIlxuICAgICAgICAgICAgICAgICAgICBbbmdTdHlsZV09XCJ7IGNvbG9yOiB0ZXh0Q29sb3IsICd0ZXh0LWFsaWduJzogeEFsaWdubWVudCA9PSAncmlnaHQnID8gJ3JpZ2h0JyA6ICdsZWZ0JyB9XCJcbiAgICAgICAgICAgICAgICAgICAgW2lubmVySHRtbF09XCJ2YWx1ZSB8IHBlcFNhZmVIdG1sXCIgW3N0eWxlLmhlaWdodF09XCJmaWVsZEhlaWdodFwiPlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgIDwhLS0gPHBlcC10ZXh0Ym94LWljb24gKm5nSWY9XCJ4QWxpZ25tZW50ID09ICdyaWdodCdcIiBtYXRQcmVmaXggW3ZhbHVlXT1cInZhbHVlXCIgW2xhYmVsXT1cImxhYmVsXCIgW3R5cGVdPVwiY29udHJvbFR5cGVcIiBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxuICAgICAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7ICdjYXJkLW9uZS1yb3ctaWNvbic6IGxheW91dFR5cGUgPT09ICdjYXJkJyAmJiByb3dTcGFuID09PSAxIH1cIiAoaWNvbkNsaWNrKT1cIm9wZW5EaWFsb2coKVwiPlxuICAgICAgICAgICAgICAgIDwvcGVwLXRleHRib3gtaWNvbj4gLS0+XG4gICAgICAgICAgICAgICAgPHBlcC10ZXh0Ym94LWljb24gbWF0U3VmZml4IFt2YWx1ZV09XCJ2YWx1ZVwiIFtsYWJlbF09XCJsYWJlbFwiIFt0eXBlXT1cImNvbnRyb2xUeXBlXCJcbiAgICAgICAgICAgICAgICAgICAgW2Rpc2FibGVkXT1cImRpc2FibGVkIHx8IHJlYWRvbmx5XCJcbiAgICAgICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwieyAnY2FyZC1vbmUtcm93LWljb24nOiBsYXlvdXRUeXBlID09PSAnY2FyZCcgJiYgcm93U3BhbiA9PT0gMSB9XCJcbiAgICAgICAgICAgICAgICAgICAgKGljb25DbGljayk9XCJvcGVuRGlhbG9nKClcIj5cbiAgICAgICAgICAgICAgICA8L3BlcC10ZXh0Ym94LWljb24+XG4gICAgICAgICAgICAgICAgPG1hdC1lcnJvcj5cbiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJib2R5LXhzXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFt0aXRsZV09XCJtYW5kYXRvcnkgJiYgdmFsdWUubGVuZ3RoID09IDAgPyAoJ01FU1NBR0VTLkVSUk9SX0lTX1JFUVVJUkVEJyB8IHRyYW5zbGF0ZTogeyBmaWVsZDogbGFiZWwgfSkgOiAoJ01FU1NBR0VTLkVSUk9SX0lTX05PVF9WQUxJRCcgfCB0cmFuc2xhdGU6IHsgZmllbGQ6IGxhYmVsIH0pXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtpbm5lclRleHRdPVwibWFuZGF0b3J5ICYmIHZhbHVlLmxlbmd0aCA9PSAwID8gKCdNRVNTQUdFUy5FUlJPUl9JU19SRVFVSVJFRCcgfCB0cmFuc2xhdGU6IHsgZmllbGQ6IGxhYmVsIH0pIDogKCdNRVNTQUdFUy5FUlJPUl9JU19OT1RfVkFMSUQnIHwgdHJhbnNsYXRlOiB7IGZpZWxkOiBsYWJlbCB9KVwiPjwvc3Bhbj5cbiAgICAgICAgICAgICAgICA8L21hdC1lcnJvcj5cbiAgICAgICAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XG4gICAgICAgIDwvZGl2PlxuICAgIDwvbmctdGVtcGxhdGU+XG5cbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwibGF5b3V0VHlwZSA9PT0gJ2Zvcm0nXCI+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJwZXBUZW1wbGF0ZTsgY29udGV4dDogeyBpc0Zvcm1WaWV3OiB0cnVlIH1cIj48L25nLWNvbnRhaW5lcj5cbiAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJsYXlvdXRUeXBlID09PSAnY2FyZCdcIj5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImlzSW5FZGl0TW9kZTsgdGhlbiBlZGl0QmxvY2s7IGVsc2UgcmVhZE9ubHlCbG9ja1wiPjwvbmctY29udGFpbmVyPlxuICAgICAgICA8bmctdGVtcGxhdGUgI2VkaXRCbG9jaz5cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJwZXBUZW1wbGF0ZTsgY29udGV4dDogeyBpc0Zvcm1WaWV3OiBmYWxzZSB9XCI+PC9uZy1jb250YWluZXI+XG4gICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgIDxuZy10ZW1wbGF0ZSAjcmVhZE9ubHlCbG9jaz5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJwZXAtdGV4dGFyZWEtY2FyZC1jb250YWluZXIgY2FyZC1mbGV4LWNvbnRhaW5lclwiXG4gICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwieydvbmUtcm93Jzogcm93U3BhbiA9PT0gMSwgJ3BlcC1idXR0b24gd2Vhayc6IGlzQWN0aXZlICYmICFkaXNhYmxlZH1cIlxuICAgICAgICAgICAgICAgIFtuZ1N0eWxlXT1cInsgY29sb3I6IHRleHRDb2xvciwgJy13ZWJraXQtbGluZS1jbGFtcCc6IHJvd1NwYW4gfVwiIFtjbGFzc109XCIndGV4dC1hbGlnbi0nICsgeEFsaWdubWVudFwiXG4gICAgICAgICAgICAgICAgKGNsaWNrKT1cIiFkaXNhYmxlZCA/IGNhcmRUZW1wbGF0ZUNsaWNrZWQoJGV2ZW50KSA6ICcnXCIgW3N0eWxlLmhlaWdodF09XCJmaWVsZEhlaWdodFwiPlxuICAgICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiIHNob3dUaXRsZSAmJiBsYWJlbCAhPScnXCIgY2xhc3M9XCIgYm9keS14cyB0aXRsZSBuby1zaHJpbmtcIiB0aXRsZT1cInt7IGxhYmVsIH19XCI+e3sgbGFiZWxcbiAgICAgICAgICAgICAgICAgICAgfX0mbmJzcDs8L3NwYW4+XG4gICAgICAgICAgICAgICAgPHNwYW4gW2lkXT1cImtleVwiIHRpdGxlPVwie3sgdmFsdWUgfX1cIiBjbGFzcz1cImJvZHktc20gdmFsdWUgd3JhcFwiPnt7IHZhbHVlIH19PC9zcGFuPlxuICAgICAgICAgICAgICAgIDxidXR0b24gKm5nSWY9XCJpc0FjdGl2ZSAmJiAhZGlzYWJsZWRcIiBjbGFzcz1cInBlcC1idXR0b24gd2VhayBjYXJkLWVkaXQtYnV0dG9uIHNlbGYtc3RhcnRcIlxuICAgICAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7J3NlbGYtZW5kJyA6IHZhbHVlICYmIHZhbHVlICE9PSAnJ31cIiBtYXQtYnV0dG9uPlxuICAgICAgICAgICAgICAgICAgICA8bWF0LWljb24+XG4gICAgICAgICAgICAgICAgICAgICAgICA8cGVwLWljb24gbmFtZT1cInN5c3RlbV9lZGl0XCI+XG4gICAgICAgICAgICAgICAgICAgICAgICA8L3BlcC1pY29uPlxuICAgICAgICAgICAgICAgICAgICA8L21hdC1pY29uPlxuICAgICAgICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgPC9uZy1jb250YWluZXI+XG5cbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwibGF5b3V0VHlwZSA9PT0gJ3RhYmxlJ1wiPlxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNBY3RpdmUgJiYgIWRpc2FibGVkOyB0aGVuIHNlbGVjdGVkQmxvY2s7IGVsc2Ugbm90U2VsZWN0ZWRCbG9ja1wiPjwvbmctY29udGFpbmVyPlxuICAgICAgICA8bmctdGVtcGxhdGUgI3NlbGVjdGVkQmxvY2s+XG4gICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwicGVwVGVtcGxhdGU7IGNvbnRleHQ6IHsgaXNGb3JtVmlldzogZmFsc2UgfVwiPjwvbmctY29udGFpbmVyPlxuICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICA8bmctdGVtcGxhdGUgI25vdFNlbGVjdGVkQmxvY2s+XG4gICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwidmFsdWU/Lmxlbmd0aCA+IDA7IHRoZW4gbm90RW1wdHlCbG9jazsgZWxzZSBlbXB0eUJsb2NrXCI+PC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICA8bmctdGVtcGxhdGUgI25vdEVtcHR5QmxvY2s+XG4gICAgICAgICAgICAgICAgPG1hdC1mb3JtLWZpZWxkIGFwcGVhcmFuY2U9XCJvdXRsaW5lXCIgZGlyPVwie3sgeEFsaWdubWVudCA9PSAncmlnaHQnID8gJ3J0bCcgOiAnbHRyJyB9fVwiXG4gICAgICAgICAgICAgICAgICAgIGNsYXNzPVwicGVwLXJlcG9ydC10ZXh0YXJlYVwiIFtuZ0NsYXNzXT1cInsgcmVhZG9ubHk6IGRpc2FibGVkIH1cIj5cbiAgICAgICAgICAgICAgICAgICAgPGlucHV0IG1hdElucHV0IFtpZF09XCJrZXlcIiBjbGFzcz1cImJvZHktc20gcGVwLXJlcG9ydC1pbnB1dFwiIFtuZ0NsYXNzXT1cInsgcmVhZG9ubHk6IGRpc2FibGVkfVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBbbmdTdHlsZV09XCJ7IGNvbG9yOiB0ZXh0Q29sb3IsICd0ZXh0LWFsaWduJzogeEFsaWdubWVudCA9PSAnY2VudGVyJyA/ICdjZW50ZXInIDogeEFsaWdubWVudCA9PSAncmlnaHQnID8gJ3JpZ2h0JyA6ICdsZWZ0JyB9XCJcbiAgICAgICAgICAgICAgICAgICAgICAgIHRpdGxlPVwie3sgdmFsdWUgfX1cIiBbZm9ybUNvbnRyb2xOYW1lXT1cImtleVwiIHR5cGU9XCJ0ZXh0XCIgW3ZhbHVlXT1cInZhbHVlXCIgW2Rpc2FibGVkXT1cInRydWVcIiAvPlxuICAgICAgICAgICAgICAgICAgICA8cGVwLXRleHRib3gtaWNvbiAqbmdJZj1cImRpc2FibGVkICYmIHhBbGlnbm1lbnQgPT0gJ3JpZ2h0J1wiIG1hdFByZWZpeCBbdmFsdWVdPVwidmFsdWVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgW2xhYmVsXT1cImxhYmVsXCIgW3R5cGVdPVwiY29udHJvbFR5cGVcIiBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIiAoaWNvbkNsaWNrKT1cIm9wZW5EaWFsb2coKVwiPlxuICAgICAgICAgICAgICAgICAgICA8L3BlcC10ZXh0Ym94LWljb24+XG4gICAgICAgICAgICAgICAgICAgIDxwZXAtdGV4dGJveC1pY29uICpuZ0lmPVwiZGlzYWJsZWQgJiYgKHhBbGlnbm1lbnQgPT0gJ2xlZnQnKVwiIG1hdFN1ZmZpeCBbdmFsdWVdPVwidmFsdWVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgW2xhYmVsXT1cImxhYmVsXCIgW3R5cGVdPVwiY29udHJvbFR5cGVcIiBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIiAoaWNvbkNsaWNrKT1cIm9wZW5EaWFsb2coKVwiPlxuICAgICAgICAgICAgICAgICAgICA8L3BlcC10ZXh0Ym94LWljb24+XG4gICAgICAgICAgICAgICAgPC9tYXQtZm9ybS1maWVsZD5cbiAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgICAgICA8bmctdGVtcGxhdGUgI2VtcHR5QmxvY2s+XG4gICAgICAgICAgICAgICAgPHNwYW4+Jm5ic3A7PC9zcGFuPlxuICAgICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICA8L25nLWNvbnRhaW5lcj5cbjwvbmctY29udGFpbmVyPlxuXG48bmctdGVtcGxhdGUgI3RleHRBcmVhRGlhbG9nVGVtcGxhdGU+XG4gICAgPHBlcC1kaWFsb2cgY2xhc3M9XCJkaWFsb2ctdGV4dGFyZWEtY29udGFpbmVyXCIgW3RpdGxlXT1cImxhYmVsXCIgKGNsb3NlKT1cImNsb3NlRGlhbG9nKCRldmVudClcIj5cbiAgICAgICAgPG5nLWNvbnRhaW5lciBwZXAtZGlhbG9nLWNvbnRlbnQ+XG4gICAgICAgICAgICA8IS0tIDx0ZXh0YXJlYSAjZGlhbG9nVGV4dGFyZWEgW3JlYWRvbmx5XT1cImRpc2FibGVkIHx8IHJlYWRvbmx5XCI+e3sgdmFsdWUgfX08L3RleHRhcmVhPiAtLT5cbiAgICAgICAgICAgIDx0ZXh0YXJlYSAjZGlhbG9nVGV4dGFyZWEgW3JlYWRvbmx5XT1cImRpc2FibGVkIHx8IHJlYWRvbmx5XCIgY2xhc3M9XCJib2R5LXNtXCIgbWF0SW5wdXRcbiAgICAgICAgICAgICAgICB0aXRsZT1cInt7IHZhbHVlIH19XCIgW3ZhbHVlXT1cInZhbHVlXCJcbiAgICAgICAgICAgICAgICBtYXhsZW5ndGg9XCJ7eyBtYXhGaWVsZENoYXJhY3RlcnMgPiAwID8gbWF4RmllbGRDaGFyYWN0ZXJzIDogOTk5OTkgfX1cIlxuICAgICAgICAgICAgICAgIFtuZ1N0eWxlXT1cInsgY29sb3I6IHRleHRDb2xvciwgJ3RleHQtYWxpZ24nOiB4QWxpZ25tZW50ID09ICdyaWdodCcgPyAncmlnaHQnIDogJ2xlZnQnIH1cIlxuICAgICAgICAgICAgICAgIFtmb3JtQ29udHJvbE5hbWVdPVwia2V5XCIgPlxuICAgICAgICAgICAgPC90ZXh0YXJlYT5cbiAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgIDxkaXYgcGVwLWRpYWxvZy1hY3Rpb25zIGNsYXNzPVwicGVwLXNwYWNpbmctZWxlbWVudC1uZWdhdGl2ZVwiPlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImRpc2FibGVkIHx8IHJlYWRvbmx5OyB0aGVuIG5vdEVkaXRhYmxlQmxvY2s7IGVsc2UgZWRpdGFibGVCbG9ja1wiPlxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICA8bmctdGVtcGxhdGUgI2VkaXRhYmxlQmxvY2s+XG4gICAgICAgICAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uIChjbGljayk9XCJjbG9zZURpYWxvZygpXCIgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gbWQgd2Vha1wiPlxuICAgICAgICAgICAgICAgICAgICB7eyAnQUNUSU9OUy5DQU5DRUwnIHwgdHJhbnNsYXRlIH19XG4gICAgICAgICAgICAgICAgPC9idXR0b24+XG4gICAgICAgICAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uIGNsYXNzPVwicGVwLXNwYWNpbmctZWxlbWVudCBwZXAtYnV0dG9uIG1kIHN0cm9uZ1wiXG4gICAgICAgICAgICAgICAgICAgIChjbGljayk9XCJjbG9zZURpYWxvZyhkaWFsb2dUZXh0YXJlYS52YWx1ZSlcIj5cbiAgICAgICAgICAgICAgICAgICAge3sgJ0FDVElPTlMuU0FWRScgfCB0cmFuc2xhdGUgfX1cbiAgICAgICAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgICAgICA8bmctdGVtcGxhdGUgI25vdEVkaXRhYmxlQmxvY2s+XG4gICAgICAgICAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uIChjbGljayk9XCJjbG9zZURpYWxvZygpXCIgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gbWQgd2Vha1wiPlxuICAgICAgICAgICAgICAgICAgICB7eyAnQUNUSU9OUy5DTE9TRScgfCB0cmFuc2xhdGUgfX1cbiAgICAgICAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgIDwvZGl2PlxuICAgIDwvcGVwLWRpYWxvZz5cbjwvbmctdGVtcGxhdGU+Il19
|
|
197
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGFyZWEuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LWxpYi90ZXh0YXJlYS90ZXh0YXJlYS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtbGliL3RleHRhcmVhL3RleHRhcmVhLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDSCxTQUFTLEVBR1QsS0FBSyxFQUNMLE1BQU0sRUFDTixZQUFZLEVBQ1osdUJBQXVCLEVBRXZCLFNBQVMsRUFHVCxXQUFXLEdBQ2QsTUFBTSxlQUFlLENBQUM7QUFHdkIsT0FBTyxFQUVILHVCQUF1QixFQUV2Qiw0QkFBNEIsRUFDNUIsZ0JBQWdCLEdBQ25CLE1BQU0seUJBQXlCLENBQUM7Ozs7Ozs7Ozs7Ozs7OztBQVNqQyxNQUFNLE9BQU8sb0JBQW9CO0lBWTdCLElBQ0ksT0FBTyxDQUFDLEtBQUs7UUFDYixJQUFJLENBQUMsUUFBUSxHQUFHLEtBQUssQ0FBQztRQUN0QixJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDMUIsQ0FBQztJQUNELElBQUksT0FBTztRQUNQLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQztJQUN6QixDQUFDO0lBR0QsSUFDSSxPQUFPLENBQUMsT0FBZ0I7UUFDeEIsSUFBSSxDQUFDLFFBQVEsR0FBRyxPQUFPLENBQUM7UUFDeEIsSUFBSSxPQUFPLEVBQUU7WUFDVCxJQUFJLENBQUMsUUFBUSxDQUFDLFdBQVcsQ0FDckIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxhQUFhLEVBQzFCLGdCQUFnQixDQUNuQixDQUFDO1NBQ0w7YUFBTTtZQUNILElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUNsQixJQUFJLENBQUMsT0FBTyxDQUFDLGFBQWEsRUFDMUIsZ0JBQWdCLENBQ25CLENBQUM7U0FDTDtJQUNMLENBQUM7SUFDRCxJQUFJLE9BQU87UUFDUCxPQUFPLElBQUksQ0FBQyxRQUFRLENBQUM7SUFDekIsQ0FBQztJQVlELElBQ0ksVUFBVSxDQUFDLEtBQW9CO1FBQy9CLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDO1FBQ3pCLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUMxQixDQUFDO0lBQ0QsSUFBSSxVQUFVO1FBQ1YsT0FBTyxJQUFJLENBQUMsV0FBVyxDQUFDO0lBQzVCLENBQUM7SUFxQkQsWUFDWSxhQUErQixFQUMvQixvQkFBNkMsRUFDN0MsUUFBbUIsRUFDbkIsT0FBbUI7UUFIbkIsa0JBQWEsR0FBYixhQUFhLENBQWtCO1FBQy9CLHlCQUFvQixHQUFwQixvQkFBb0IsQ0FBeUI7UUFDN0MsYUFBUSxHQUFSLFFBQVEsQ0FBVztRQUNuQixZQUFPLEdBQVAsT0FBTyxDQUFZO1FBbEZ0QixRQUFHLEdBQUcsRUFBRSxDQUFDO1FBQ1QsVUFBSyxHQUFHLEVBQUUsQ0FBQztRQUNYLFVBQUssR0FBRyxFQUFFLENBQUM7UUFDWCxjQUFTLEdBQUcsS0FBSyxDQUFDO1FBQ2xCLGFBQVEsR0FBRyxLQUFLLENBQUM7UUFDakIsYUFBUSxHQUFHLEtBQUssQ0FBQztRQUVqQixjQUFTLEdBQUcsRUFBRSxDQUFDO1FBQ2YsZUFBVSxHQUEyQiw0QkFBNEIsQ0FBQztRQUVuRSxhQUFRLEdBQUcsQ0FBQyxDQUFDO1FBVWIsYUFBUSxHQUFHLElBQUksQ0FBQztRQW9CeEIsZ0NBQWdDO1FBRWhDLGdCQUFXLEdBQUcsVUFBVSxDQUFDO1FBRWhCLFNBQUksR0FBYyxJQUFJLENBQUM7UUFDdkIsYUFBUSxHQUFHLEtBQUssQ0FBQztRQUNqQixjQUFTLEdBQUcsSUFBSSxDQUFDO1FBQ2pCLGdCQUFXLEdBQUcsSUFBSSxDQUFDO1FBRXBCLGdCQUFXLEdBQWtCLE1BQU0sQ0FBQztRQVc1QyxnQkFBVyxHQUF5QixJQUFJLFlBQVksRUFBVSxDQUFDO1FBRy9ELFVBQUssR0FBc0IsSUFBSSxZQUFZLEVBQU8sQ0FBQztRQUduRCxxQkFBZ0IsR0FBMEIsSUFBSSxZQUFZLEVBQVcsQ0FBQztRQU10RSxnQkFBVyxHQUFHLEVBQUUsQ0FBQztRQUNqQixlQUFVLEdBQUcsS0FBSyxDQUFDO1FBQ25CLGlCQUFZLEdBQUcsS0FBSyxDQUFDO0lBU2pCLENBQUM7SUFFRyxjQUFjO1FBQ2xCLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLG9CQUFvQixDQUFDLG9CQUFvQixDQUM3RCxJQUFJLENBQUMsVUFBVSxFQUNmLElBQUksQ0FBQyxPQUFPLEVBQ1osSUFBSSxDQUFDLFVBQVUsQ0FDbEIsQ0FBQztJQUNOLENBQUM7SUFFTyxjQUFjO1FBQ2xCLE1BQU0sUUFBUSxHQUFHLElBQUksZ0JBQWdCLENBQUM7WUFDbEMsR0FBRyxFQUFFLElBQUksQ0FBQyxHQUFHO1lBQ2IsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLO1lBQ2pCLFNBQVMsRUFBRSxJQUFJLENBQUMsU0FBUztZQUN6QixRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVE7WUFDdkIsUUFBUSxFQUFFLElBQUksQ0FBQyxRQUFRO1lBQ3ZCLGtCQUFrQixFQUFFLElBQUksQ0FBQyxrQkFBa0I7U0FDOUMsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUMsb0JBQW9CLENBQUMsbUJBQW1CLENBQUMsUUFBUSxDQUFDLENBQUM7SUFDeEUsQ0FBQztJQUVELFFBQVE7UUFDSixJQUFJLElBQUksQ0FBQyxJQUFJLEtBQUssSUFBSSxFQUFFO1lBQ3BCLElBQUksQ0FBQyxVQUFVLEdBQUcsSUFBSSxDQUFDO1lBQ3ZCLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztZQUN0QixJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7WUFFdEIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQ2xCLElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxFQUMxQix1QkFBdUIsQ0FBQyw0QkFBNEIsQ0FDdkQsQ0FBQztZQUVGLElBQUksQ0FBQyxJQUFJLENBQUMsV0FBVyxFQUFFO2dCQUNuQixJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FDbEIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxhQUFhLEVBQzFCLHVCQUF1QixDQUFDLHVDQUF1QyxDQUNsRSxDQUFDO2FBQ0w7U0FDSjtJQUNMLENBQUM7SUFFRCxXQUFXLENBQUMsT0FBWTtRQUNwQixJQUFJLElBQUksQ0FBQyxVQUFVLEVBQUU7WUFDakIsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO1NBQ3pCO0lBQ0wsQ0FBQztJQUVELFdBQVc7UUFDUCxFQUFFO0lBQ04sQ0FBQztJQUVELE9BQU8sQ0FBQyxLQUFLO1FBQ1QsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDM0IsQ0FBQztJQUVELE1BQU0sQ0FBQyxLQUFVO1FBQ2IsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQztRQUN4RCxJQUFJLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBRXhCLFVBQVUsQ0FBQyxHQUFHLEVBQUU7WUFDWixJQUFJLElBQUksQ0FBQyxZQUFZLEVBQUU7Z0JBQ25CLElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDO2FBQzdCO1FBQ0wsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDO0lBQ1YsQ0FBQztJQUVELFdBQVcsQ0FBQyxLQUFVO1FBQ2xCLElBQUksS0FBSyxLQUFLLElBQUksQ0FBQyxLQUFLLEVBQUU7WUFDdEIsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7WUFDbkIsSUFBSSxDQUFDLG9CQUFvQixDQUFDLG9CQUFvQixDQUMxQyxJQUFJLENBQUMsSUFBSSxFQUNULElBQUksQ0FBQyxHQUFHLEVBQ1IsS0FBSyxDQUNSLENBQUM7WUFFRixvR0FBb0c7WUFDcEcsOEVBQThFO1lBQzlFLElBQUksSUFBSSxDQUFDLFVBQVUsRUFBRTtnQkFDakIsTUFBTSxPQUFPLEdBQUcsQ0FBQyxJQUFJLENBQUMsUUFBUSxJQUFJLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQztnQkFDMUUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQzthQUN2QztZQUVELElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQ2hDO0lBQ0wsQ0FBQztJQUVELG1CQUFtQixDQUFDLEtBQVU7UUFDMUIsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO0lBQ3RCLENBQUM7SUFFRCxVQUFVO1FBQ04sTUFBTSxNQUFNLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxlQUFlLENBQzdDO1FBQ0ksb0JBQW9CO1FBQ3BCLG9CQUFvQjtTQUN2QixFQUNELFNBQVMsQ0FDWixDQUFDO1FBRUYsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLFVBQVUsQ0FDMUMsSUFBSSxDQUFDLHNCQUFzQixFQUMzQixFQUFFLEVBQ0YsTUFBTSxDQUNULENBQUM7UUFFRixJQUFJLENBQUMsU0FBUyxDQUFDLFdBQVcsRUFBRSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFO1lBQzdDLElBQUksS0FBSyxLQUFLLFNBQVMsSUFBSSxLQUFLLEtBQUssSUFBSSxFQUFFO2dCQUN2QyxJQUFJLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxDQUFDO2FBQzNCO1FBQ0wsQ0FBQyxDQUFDLENBQUM7SUFDUCxDQUFDO0lBRUQsV0FBVyxDQUFDLE9BQVksSUFBSTtRQUN4QixJQUFJLENBQUMsU0FBUyxFQUFFLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNoQyxDQUFDOztrSEF2TVEsb0JBQW9CO3NHQUFwQixvQkFBb0Isa25CQXNFZ0IsV0FBVyxrRENyRzVELDB3UUE2SGM7NEZEOUZELG9CQUFvQjtrQkFOaEMsU0FBUzsrQkFDSSxjQUFjLG1CQUdQLHVCQUF1QixDQUFDLE1BQU07OExBR3RDLEdBQUc7c0JBQVgsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLGtCQUFrQjtzQkFBMUIsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBSUYsT0FBTztzQkFEVixLQUFLO2dCQVdGLE9BQU87c0JBRFYsS0FBSztnQkF1QkcsSUFBSTtzQkFBWixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csU0FBUztzQkFBakIsS0FBSztnQkFDRyxXQUFXO3NCQUFuQixLQUFLO2dCQUlGLFVBQVU7c0JBRGIsS0FBSztnQkFVTixXQUFXO3NCQURWLE1BQU07Z0JBSVAsS0FBSztzQkFESixNQUFNO2dCQUlQLGdCQUFnQjtzQkFEZixNQUFNO2dCQUtQLHNCQUFzQjtzQkFEckIsU0FBUzt1QkFBQyx3QkFBd0IsRUFBRSxFQUFFLElBQUksRUFBRSxXQUFXLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIENvbXBvbmVudCxcbiAgICBPbkluaXQsXG4gICAgT25DaGFuZ2VzLFxuICAgIElucHV0LFxuICAgIE91dHB1dCxcbiAgICBFdmVudEVtaXR0ZXIsXG4gICAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gICAgRWxlbWVudFJlZixcbiAgICBWaWV3Q2hpbGQsXG4gICAgT25EZXN0cm95LFxuICAgIFJlbmRlcmVyMixcbiAgICBUZW1wbGF0ZVJlZixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtR3JvdXAgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBNYXREaWFsb2dSZWYgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xuaW1wb3J0IHtcbiAgICBQZXBMYXlvdXRUeXBlLFxuICAgIFBlcEN1c3RvbWl6YXRpb25TZXJ2aWNlLFxuICAgIFBlcEhvcml6b250YWxBbGlnbm1lbnQsXG4gICAgREVGQVVMVF9IT1JJWk9OVEFMX0FMSUdOTUVOVCxcbiAgICBQZXBUZXh0YXJlYUZpZWxkLFxufSBmcm9tICdAcGVwcGVyaS1hZGRvbnMvbmd4LWxpYic7XG5pbXBvcnQgeyBQZXBEaWFsb2dTZXJ2aWNlIH0gZnJvbSAnQHBlcHBlcmktYWRkb25zL25neC1saWIvZGlhbG9nJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdwZXAtdGV4dGFyZWEnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi90ZXh0YXJlYS5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vdGV4dGFyZWEuY29tcG9uZW50LnNjc3MnLCAnLi90ZXh0YXJlYS5jb21wb25lbnQudGhlbWUuc2NzcyddLFxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBQZXBUZXh0YXJlYUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uQ2hhbmdlcywgT25Jbml0LCBPbkRlc3Ryb3kge1xuICAgIEBJbnB1dCgpIGtleSA9ICcnO1xuICAgIEBJbnB1dCgpIHZhbHVlID0gJyc7XG4gICAgQElucHV0KCkgbGFiZWwgPSAnJztcbiAgICBASW5wdXQoKSBtYW5kYXRvcnkgPSBmYWxzZTtcbiAgICBASW5wdXQoKSBkaXNhYmxlZCA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIHJlYWRvbmx5ID0gZmFsc2U7XG4gICAgQElucHV0KCkgbWF4RmllbGRDaGFyYWN0ZXJzOiBudW1iZXI7XG4gICAgQElucHV0KCkgdGV4dENvbG9yID0gJyc7XG4gICAgQElucHV0KCkgeEFsaWdubWVudDogUGVwSG9yaXpvbnRhbEFsaWdubWVudCA9IERFRkFVTFRfSE9SSVpPTlRBTF9BTElHTk1FTlQ7XG5cbiAgICBwcml2YXRlIF9yb3dTcGFuID0gMTtcbiAgICBASW5wdXQoKVxuICAgIHNldCByb3dTcGFuKHZhbHVlKSB7XG4gICAgICAgIHRoaXMuX3Jvd1NwYW4gPSB2YWx1ZTtcbiAgICAgICAgdGhpcy5zZXRGaWVsZEhlaWdodCgpO1xuICAgIH1cbiAgICBnZXQgcm93U3BhbigpOiBudW1iZXIge1xuICAgICAgICByZXR1cm4gdGhpcy5fcm93U3BhbjtcbiAgICB9XG5cbiAgICBwcml2YXRlIF92aXNpYmxlID0gdHJ1ZTtcbiAgICBASW5wdXQoKVxuICAgIHNldCB2aXNpYmxlKHZpc2libGU6IGJvb2xlYW4pIHtcbiAgICAgICAgdGhpcy5fdmlzaWJsZSA9IHZpc2libGU7XG4gICAgICAgIGlmICh2aXNpYmxlKSB7XG4gICAgICAgICAgICB0aGlzLnJlbmRlcmVyLnJlbW92ZUNsYXNzKFxuICAgICAgICAgICAgICAgIHRoaXMuZWxlbWVudC5uYXRpdmVFbGVtZW50LFxuICAgICAgICAgICAgICAgICdoaWRkZW4tZWxlbWVudCdcbiAgICAgICAgICAgICk7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICB0aGlzLnJlbmRlcmVyLmFkZENsYXNzKFxuICAgICAgICAgICAgICAgIHRoaXMuZWxlbWVudC5uYXRpdmVFbGVtZW50LFxuICAgICAgICAgICAgICAgICdoaWRkZW4tZWxlbWVudCdcbiAgICAgICAgICAgICk7XG4gICAgICAgIH1cbiAgICB9XG4gICAgZ2V0IHZpc2libGUoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLl92aXNpYmxlO1xuICAgIH1cblxuICAgIC8vIEBJbnB1dCgpIGxhc3RGb2N1c0ZpZWxkOiBhbnk7XG5cbiAgICBjb250cm9sVHlwZSA9ICd0ZXh0YXJlYSc7XG5cbiAgICBASW5wdXQoKSBmb3JtOiBGb3JtR3JvdXAgPSBudWxsO1xuICAgIEBJbnB1dCgpIGlzQWN0aXZlID0gZmFsc2U7XG4gICAgQElucHV0KCkgc2hvd1RpdGxlID0gdHJ1ZTtcbiAgICBASW5wdXQoKSByZW5kZXJUaXRsZSA9IHRydWU7XG5cbiAgICBwcml2YXRlIF9sYXlvdXRUeXBlOiBQZXBMYXlvdXRUeXBlID0gJ2Zvcm0nO1xuICAgIEBJbnB1dCgpXG4gICAgc2V0IGxheW91dFR5cGUodmFsdWU6IFBlcExheW91dFR5cGUpIHtcbiAgICAgICAgdGhpcy5fbGF5b3V0VHlwZSA9IHZhbHVlO1xuICAgICAgICB0aGlzLnNldEZpZWxkSGVpZ2h0KCk7XG4gICAgfVxuICAgIGdldCBsYXlvdXRUeXBlKCk6IFBlcExheW91dFR5cGUge1xuICAgICAgICByZXR1cm4gdGhpcy5fbGF5b3V0VHlwZTtcbiAgICB9XG5cbiAgICBAT3V0cHV0KClcbiAgICB2YWx1ZUNoYW5nZTogRXZlbnRFbWl0dGVyPHN0cmluZz4gPSBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcblxuICAgIEBPdXRwdXQoKVxuICAgIGtleXVwOiBFdmVudEVtaXR0ZXI8YW55PiA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xuXG4gICAgQE91dHB1dCgpXG4gICAgdmFsaWRhdGlvbkNoYW5nZTogRXZlbnRFbWl0dGVyPGJvb2xlYW4+ID0gbmV3IEV2ZW50RW1pdHRlcjxib29sZWFuPigpO1xuXG4gICAgLy8gQFZpZXdDaGlsZCgnaW5wdXQnKSBpbnB1dDogRWxlbWVudFJlZjtcbiAgICBAVmlld0NoaWxkKCd0ZXh0QXJlYURpYWxvZ1RlbXBsYXRlJywgeyByZWFkOiBUZW1wbGF0ZVJlZiB9KVxuICAgIHRleHRBcmVhRGlhbG9nVGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT47XG5cbiAgICBmaWVsZEhlaWdodCA9ICcnO1xuICAgIHN0YW5kQWxvbmUgPSBmYWxzZTtcbiAgICBpc0luRWRpdE1vZGUgPSBmYWxzZTtcblxuICAgIGRpYWxvZ1JlZjogTWF0RGlhbG9nUmVmPGFueT47XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgcHJpdmF0ZSBkaWFsb2dTZXJ2aWNlOiBQZXBEaWFsb2dTZXJ2aWNlLFxuICAgICAgICBwcml2YXRlIGN1c3RvbWl6YXRpb25TZXJ2aWNlOiBQZXBDdXN0b21pemF0aW9uU2VydmljZSxcbiAgICAgICAgcHJpdmF0ZSByZW5kZXJlcjogUmVuZGVyZXIyLFxuICAgICAgICBwcml2YXRlIGVsZW1lbnQ6IEVsZW1lbnRSZWZcbiAgICApIHsgfVxuXG4gICAgcHJpdmF0ZSBzZXRGaWVsZEhlaWdodCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5maWVsZEhlaWdodCA9IHRoaXMuY3VzdG9taXphdGlvblNlcnZpY2UuY2FsY3VsYXRlRmllbGRIZWlnaHQoXG4gICAgICAgICAgICB0aGlzLmxheW91dFR5cGUsXG4gICAgICAgICAgICB0aGlzLnJvd1NwYW4sXG4gICAgICAgICAgICB0aGlzLnN0YW5kQWxvbmVcbiAgICAgICAgKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIHNldERlZmF1bHRGb3JtKCk6IHZvaWQge1xuICAgICAgICBjb25zdCBwZXBGaWVsZCA9IG5ldyBQZXBUZXh0YXJlYUZpZWxkKHtcbiAgICAgICAgICAgIGtleTogdGhpcy5rZXksXG4gICAgICAgICAgICB2YWx1ZTogdGhpcy52YWx1ZSxcbiAgICAgICAgICAgIG1hbmRhdG9yeTogdGhpcy5tYW5kYXRvcnksXG4gICAgICAgICAgICByZWFkb25seTogdGhpcy5yZWFkb25seSxcbiAgICAgICAgICAgIGRpc2FibGVkOiB0aGlzLmRpc2FibGVkLFxuICAgICAgICAgICAgbWF4RmllbGRDaGFyYWN0ZXJzOiB0aGlzLm1heEZpZWxkQ2hhcmFjdGVycyxcbiAgICAgICAgfSk7XG4gICAgICAgIHRoaXMuZm9ybSA9IHRoaXMuY3VzdG9taXphdGlvblNlcnZpY2UuZ2V0RGVmYXVsdEZyb21Hcm91cChwZXBGaWVsZCk7XG4gICAgfVxuXG4gICAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLmZvcm0gPT09IG51bGwpIHtcbiAgICAgICAgICAgIHRoaXMuc3RhbmRBbG9uZSA9IHRydWU7XG4gICAgICAgICAgICB0aGlzLnNldEZpZWxkSGVpZ2h0KCk7XG4gICAgICAgICAgICB0aGlzLnNldERlZmF1bHRGb3JtKCk7XG5cbiAgICAgICAgICAgIHRoaXMucmVuZGVyZXIuYWRkQ2xhc3MoXG4gICAgICAgICAgICAgICAgdGhpcy5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQsXG4gICAgICAgICAgICAgICAgUGVwQ3VzdG9taXphdGlvblNlcnZpY2UuU1RBTkRfQUxPTkVfRklFTERfQ0xBU1NfTkFNRVxuICAgICAgICAgICAgKTtcblxuICAgICAgICAgICAgaWYgKCF0aGlzLnJlbmRlclRpdGxlKSB7XG4gICAgICAgICAgICAgICAgdGhpcy5yZW5kZXJlci5hZGRDbGFzcyhcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQsXG4gICAgICAgICAgICAgICAgICAgIFBlcEN1c3RvbWl6YXRpb25TZXJ2aWNlLlNUQU5EX0FMT05FX0ZJRUxEX05PX1NQQUNJTkdfQ0xBU1NfTkFNRVxuICAgICAgICAgICAgICAgICk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBhbnkpOiB2b2lkIHtcbiAgICAgICAgaWYgKHRoaXMuc3RhbmRBbG9uZSkge1xuICAgICAgICAgICAgdGhpcy5zZXREZWZhdWx0Rm9ybSgpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XG4gICAgICAgIC8vXG4gICAgfVxuXG4gICAgb25LZXl1cChldmVudCk6IGFueSB7XG4gICAgICAgIHRoaXMua2V5dXAuZW1pdChldmVudCk7XG4gICAgfVxuXG4gICAgb25CbHVyKGV2ZW50OiBhbnkpOiB2b2lkIHtcbiAgICAgICAgY29uc3QgdmFsdWUgPSBldmVudC50YXJnZXQgPyBldmVudC50YXJnZXQudmFsdWUgOiBldmVudDtcbiAgICAgICAgdGhpcy5jaGFuZ2VWYWx1ZSh2YWx1ZSk7XG5cbiAgICAgICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICBpZiAodGhpcy5pc0luRWRpdE1vZGUpIHtcbiAgICAgICAgICAgICAgICB0aGlzLmlzSW5FZGl0TW9kZSA9IGZhbHNlO1xuICAgICAgICAgICAgfVxuICAgICAgICB9LCAwKTtcbiAgICB9XG5cbiAgICBjaGFuZ2VWYWx1ZSh2YWx1ZTogYW55KTogdm9pZCB7XG4gICAgICAgIGlmICh2YWx1ZSAhPT0gdGhpcy52YWx1ZSkge1xuICAgICAgICAgICAgdGhpcy52YWx1ZSA9IHZhbHVlO1xuICAgICAgICAgICAgdGhpcy5jdXN0b21pemF0aW9uU2VydmljZS51cGRhdGVGb3JtRmllbGRWYWx1ZShcbiAgICAgICAgICAgICAgICB0aGlzLmZvcm0sXG4gICAgICAgICAgICAgICAgdGhpcy5rZXksXG4gICAgICAgICAgICAgICAgdmFsdWVcbiAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgIC8vIFJhaXNlIHRoaXMgb25seSBmb3Igc3RhbmQgYWxvbmUgZmllbGRzLCBJZiBmYWxzZSB0aGVuIHRoZSB1c2FnZSBmb3IgdGhpcyBmaWVsZCBpcyBpbnNpZGUgYSBmb3JtLiBcbiAgICAgICAgICAgIC8vIFRoZW4gdGhlIGZvcm0gd2lsbCB0YWtlIGNhcmUgb2YgcmFpc2luZyB0aGUgKG9uRm9ybVZhbGlkYXRpb25DaGFuZ2VkKSBldmVudFxuICAgICAgICAgICAgaWYgKHRoaXMuc3RhbmRBbG9uZSkge1xuICAgICAgICAgICAgICAgIGNvbnN0IGlzVmFsaWQgPSAodGhpcy5kaXNhYmxlZCB8fCB0aGlzLnJlYWRvbmx5KSA/IHRydWUgOiB0aGlzLmZvcm0udmFsaWQ7IFxuICAgICAgICAgICAgICAgIHRoaXMudmFsaWRhdGlvbkNoYW5nZS5lbWl0KGlzVmFsaWQpO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICB0aGlzLnZhbHVlQ2hhbmdlLmVtaXQodmFsdWUpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgY2FyZFRlbXBsYXRlQ2xpY2tlZChldmVudDogYW55KTogdm9pZCB7XG4gICAgICAgIHRoaXMub3BlbkRpYWxvZygpO1xuICAgIH1cblxuICAgIG9wZW5EaWFsb2coKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IGNvbmZpZyA9IHRoaXMuZGlhbG9nU2VydmljZS5nZXREaWFsb2dDb25maWcoXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgLy8gbWF4V2lkdGg6ICc5MHZ3JyxcbiAgICAgICAgICAgICAgICAvLyBtYXhIZWlnaHQ6ICc5MHZoJ1xuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICdyZWd1bGFyJ1xuICAgICAgICApO1xuXG4gICAgICAgIHRoaXMuZGlhbG9nUmVmID0gdGhpcy5kaWFsb2dTZXJ2aWNlLm9wZW5EaWFsb2coXG4gICAgICAgICAgICB0aGlzLnRleHRBcmVhRGlhbG9nVGVtcGxhdGUsXG4gICAgICAgICAgICB7fSxcbiAgICAgICAgICAgIGNvbmZpZ1xuICAgICAgICApO1xuXG4gICAgICAgIHRoaXMuZGlhbG9nUmVmLmFmdGVyQ2xvc2VkKCkuc3Vic2NyaWJlKCh2YWx1ZSkgPT4ge1xuICAgICAgICAgICAgaWYgKHZhbHVlICE9PSB1bmRlZmluZWQgJiYgdmFsdWUgIT09IG51bGwpIHtcbiAgICAgICAgICAgICAgICB0aGlzLmNoYW5nZVZhbHVlKHZhbHVlKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgY2xvc2VEaWFsb2coZGF0YTogYW55ID0gbnVsbCk6IHZvaWQge1xuICAgICAgICB0aGlzLmRpYWxvZ1JlZj8uY2xvc2UoZGF0YSk7XG4gICAgfVxufVxuIiwiPG5nLWNvbnRhaW5lciBbZm9ybUdyb3VwXT1cImZvcm1cIj5cbiAgICA8bmctdGVtcGxhdGUgI3BlcFRlbXBsYXRlIGxldC1pc0Zvcm1WaWV3PVwiaXNGb3JtVmlld1wiPlxuICAgICAgICA8ZGl2IGNsYXNzPVwicGVwLXRleHRhcmVhLWNvbnRhaW5lclwiIFtuZ0NsYXNzXT1cInsgJ3N0YW5kLWFsb25lJzogc3RhbmRBbG9uZSxcbiAgICAgICAgICAgICdyaWdodC1hbGlnbm1lbnQnOiB4QWxpZ25tZW50ID09ICdyaWdodCcsICdvbmUtcm93Jzogcm93U3BhbiA9PT0gMSxcbiAgICAgICAgICAgICdwZXAtdGV4dGFyZWEtY2FyZC1jb250YWluZXInOiBsYXlvdXRUeXBlID09PSAnY2FyZCd9XCI+XG4gICAgICAgICAgICA8cGVwLWZpZWxkLXRpdGxlICpuZ0lmPVwicmVuZGVyVGl0bGUgJiYgaXNGb3JtVmlld1wiIFtsYWJlbF09XCJsYWJlbFwiIFttYW5kYXRvcnldPVwibWFuZGF0b3J5XCJcbiAgICAgICAgICAgICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIiBbbWF4RmllbGRDaGFyYWN0ZXJzXT1cImRpc2FibGVkIHx8IHJlYWRvbmx5ID8gMCA6IG1heEZpZWxkQ2hhcmFjdGVyc1wiXG4gICAgICAgICAgICAgICAgW3hBbGlnbm1lbnRdPVwieEFsaWdubWVudFwiIFtzaG93VGl0bGVdPVwic2hvd1RpdGxlXCIgW2lucHV0TGVuZ3RoXT1cImlucHV0LnZhbHVlPy5sZW5ndGhcIj5cbiAgICAgICAgICAgIDwvcGVwLWZpZWxkLXRpdGxlPlxuICAgICAgICAgICAgPG1hdC1mb3JtLWZpZWxkIGFwcGVhcmFuY2U9XCJvdXRsaW5lXCIgZGlyPVwie3sgeEFsaWdubWVudCA9PSAncmlnaHQnID8gJ3J0bCcgOiAnbHRyJyB9fVwiXG4gICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwieyAncGVwLXRhYmxlLXRleHRhcmVhJzogbGF5b3V0VHlwZSA9PT0gJ3RhYmxlJywgJ2ljb24tbGVmdCc6IHhBbGlnbm1lbnQgPT09ICdsZWZ0JyB8fCB4QWxpZ25tZW50ID09PSAnY2VudGVyJywgJ2ljb24tcmlnaHQnOiB4QWxpZ25tZW50ID09PSAncmlnaHQnIH1cIj5cbiAgICAgICAgICAgICAgICA8dGV4dGFyZWEgI2lucHV0IFtoaWRkZW5dPVwicmVhZG9ubHlcIiBbaWRdPVwia2V5XCIgY2xhc3M9XCJib2R5LXNtXCIgbWF0SW5wdXQgKGJsdXIpPVwib25CbHVyKCRldmVudClcIlxuICAgICAgICAgICAgICAgICAgICB0aXRsZT1cInt7IHZhbHVlIH19XCIgW3ZhbHVlXT1cInZhbHVlXCJcbiAgICAgICAgICAgICAgICAgICAgbWF4bGVuZ3RoPVwie3sgbWF4RmllbGRDaGFyYWN0ZXJzID4gMCA/IG1heEZpZWxkQ2hhcmFjdGVycyA6IDk5OTk5IH19XCJcbiAgICAgICAgICAgICAgICAgICAgW25nU3R5bGVdPVwieyBjb2xvcjogdGV4dENvbG9yLCAndGV4dC1hbGlnbic6IHhBbGlnbm1lbnQgPT0gJ3JpZ2h0JyA/ICdyaWdodCcgOiAnbGVmdCcgfVwiXG4gICAgICAgICAgICAgICAgICAgIFtmb3JtQ29udHJvbE5hbWVdPVwia2V5XCIgW3N0eWxlLmhlaWdodF09XCJmaWVsZEhlaWdodFwiXG4gICAgICAgICAgICAgICAgICAgIChrZXl1cCk9XCJvbktleXVwKCRldmVudClcIj5cbiAgICAgICAgICAgICAgICA8L3RleHRhcmVhPlxuICAgICAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJyZWFkb25seVwiIGNsYXNzPVwiYm9keS1zbSBkaXNhYmxlLXRleHQtZGl2XCIgdGl0bGU9XCJ7eyB2YWx1ZSB9fVwiXG4gICAgICAgICAgICAgICAgICAgIFtuZ1N0eWxlXT1cInsgY29sb3I6IHRleHRDb2xvciwgJ3RleHQtYWxpZ24nOiB4QWxpZ25tZW50ID09ICdyaWdodCcgPyAncmlnaHQnIDogJ2xlZnQnIH1cIlxuICAgICAgICAgICAgICAgICAgICBbaW5uZXJIdG1sXT1cInZhbHVlIHwgcGVwU2FmZUh0bWxcIiBbc3R5bGUuaGVpZ2h0XT1cImZpZWxkSGVpZ2h0XCI+XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgPCEtLSA8cGVwLXRleHRib3gtaWNvbiAqbmdJZj1cInhBbGlnbm1lbnQgPT0gJ3JpZ2h0J1wiIG1hdFByZWZpeCBbdmFsdWVdPVwidmFsdWVcIiBbbGFiZWxdPVwibGFiZWxcIiBbdHlwZV09XCJjb250cm9sVHlwZVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiXG4gICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgJ2NhcmQtb25lLXJvdy1pY29uJzogbGF5b3V0VHlwZSA9PT0gJ2NhcmQnICYmIHJvd1NwYW4gPT09IDEgfVwiIChpY29uQ2xpY2spPVwib3BlbkRpYWxvZygpXCI+XG4gICAgICAgICAgICAgICAgPC9wZXAtdGV4dGJveC1pY29uPiAtLT5cbiAgICAgICAgICAgICAgICA8cGVwLXRleHRib3gtaWNvbiBtYXRTdWZmaXggW3ZhbHVlXT1cInZhbHVlXCIgW2xhYmVsXT1cImxhYmVsXCIgW3R5cGVdPVwiY29udHJvbFR5cGVcIlxuICAgICAgICAgICAgICAgICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWQgfHwgcmVhZG9ubHlcIlxuICAgICAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7ICdjYXJkLW9uZS1yb3ctaWNvbic6IGxheW91dFR5cGUgPT09ICdjYXJkJyAmJiByb3dTcGFuID09PSAxIH1cIlxuICAgICAgICAgICAgICAgICAgICAoaWNvbkNsaWNrKT1cIm9wZW5EaWFsb2coKVwiPlxuICAgICAgICAgICAgICAgIDwvcGVwLXRleHRib3gtaWNvbj5cbiAgICAgICAgICAgICAgICA8bWF0LWVycm9yPlxuICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImJvZHkteHNcIlxuICAgICAgICAgICAgICAgICAgICAgICAgW3RpdGxlXT1cIm1hbmRhdG9yeSAmJiB2YWx1ZS5sZW5ndGggPT0gMCA/ICgnTUVTU0FHRVMuRVJST1JfSVNfUkVRVUlSRUQnIHwgdHJhbnNsYXRlOiB7IGZpZWxkOiBsYWJlbCB9KSA6ICgnTUVTU0FHRVMuRVJST1JfSVNfTk9UX1ZBTElEJyB8IHRyYW5zbGF0ZTogeyBmaWVsZDogbGFiZWwgfSlcIlxuICAgICAgICAgICAgICAgICAgICAgICAgW2lubmVyVGV4dF09XCJtYW5kYXRvcnkgJiYgdmFsdWUubGVuZ3RoID09IDAgPyAoJ01FU1NBR0VTLkVSUk9SX0lTX1JFUVVJUkVEJyB8IHRyYW5zbGF0ZTogeyBmaWVsZDogbGFiZWwgfSkgOiAoJ01FU1NBR0VTLkVSUk9SX0lTX05PVF9WQUxJRCcgfCB0cmFuc2xhdGU6IHsgZmllbGQ6IGxhYmVsIH0pXCI+PC9zcGFuPlxuICAgICAgICAgICAgICAgIDwvbWF0LWVycm9yPlxuICAgICAgICAgICAgPC9tYXQtZm9ybS1maWVsZD5cbiAgICAgICAgPC9kaXY+XG4gICAgPC9uZy10ZW1wbGF0ZT5cblxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJsYXlvdXRUeXBlID09PSAnZm9ybSdcIj5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cInBlcFRlbXBsYXRlOyBjb250ZXh0OiB7IGlzRm9ybVZpZXc6IHRydWUgfVwiPjwvbmctY29udGFpbmVyPlxuICAgIDwvbmctY29udGFpbmVyPlxuXG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImxheW91dFR5cGUgPT09ICdjYXJkJ1wiPlxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNJbkVkaXRNb2RlOyB0aGVuIGVkaXRCbG9jazsgZWxzZSByZWFkT25seUJsb2NrXCI+PC9uZy1jb250YWluZXI+XG4gICAgICAgIDxuZy10ZW1wbGF0ZSAjZWRpdEJsb2NrPlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cInBlcFRlbXBsYXRlOyBjb250ZXh0OiB7IGlzRm9ybVZpZXc6IGZhbHNlIH1cIj48L25nLWNvbnRhaW5lcj5cbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgICAgPG5nLXRlbXBsYXRlICNyZWFkT25seUJsb2NrPlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInBlcC10ZXh0YXJlYS1jYXJkLWNvbnRhaW5lciBjYXJkLWZsZXgtY29udGFpbmVyXCJcbiAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7J29uZS1yb3cnOiByb3dTcGFuID09PSAxLCAncGVwLWJ1dHRvbiB3ZWFrJzogaXNBY3RpdmUgJiYgIWRpc2FibGVkfVwiXG4gICAgICAgICAgICAgICAgW25nU3R5bGVdPVwieyBjb2xvcjogdGV4dENvbG9yLCAnLXdlYmtpdC1saW5lLWNsYW1wJzogcm93U3BhbiB9XCIgW2NsYXNzXT1cIid0ZXh0LWFsaWduLScgKyB4QWxpZ25tZW50XCJcbiAgICAgICAgICAgICAgICAoY2xpY2spPVwiIWRpc2FibGVkID8gY2FyZFRlbXBsYXRlQ2xpY2tlZCgkZXZlbnQpIDogJydcIiBbc3R5bGUuaGVpZ2h0XT1cImZpZWxkSGVpZ2h0XCI+XG4gICAgICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCIgc2hvd1RpdGxlICYmIGxhYmVsICE9JydcIiBjbGFzcz1cIiBib2R5LXhzIHRpdGxlIG5vLXNocmlua1wiIHRpdGxlPVwie3sgbGFiZWwgfX1cIj57eyBsYWJlbFxuICAgICAgICAgICAgICAgICAgICB9fSZuYnNwOzwvc3Bhbj5cbiAgICAgICAgICAgICAgICA8c3BhbiBbaWRdPVwia2V5XCIgdGl0bGU9XCJ7eyB2YWx1ZSB9fVwiIGNsYXNzPVwiYm9keS1zbSB2YWx1ZSB3cmFwXCI+e3sgdmFsdWUgfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgPGJ1dHRvbiAqbmdJZj1cImlzQWN0aXZlICYmICFkaXNhYmxlZFwiIGNsYXNzPVwicGVwLWJ1dHRvbiB3ZWFrIGNhcmQtZWRpdC1idXR0b24gc2VsZi1zdGFydFwiXG4gICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsnc2VsZi1lbmQnIDogdmFsdWUgJiYgdmFsdWUgIT09ICcnfVwiIG1hdC1idXR0b24+XG4gICAgICAgICAgICAgICAgICAgIDxtYXQtaWNvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxwZXAtaWNvbiBuYW1lPVwic3lzdGVtX2VkaXRcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvcGVwLWljb24+XG4gICAgICAgICAgICAgICAgICAgIDwvbWF0LWljb24+XG4gICAgICAgICAgICAgICAgPC9idXR0b24+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJsYXlvdXRUeXBlID09PSAndGFibGUnXCI+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc0FjdGl2ZSAmJiAhZGlzYWJsZWQ7IHRoZW4gc2VsZWN0ZWRCbG9jazsgZWxzZSBub3RTZWxlY3RlZEJsb2NrXCI+PC9uZy1jb250YWluZXI+XG4gICAgICAgIDxuZy10ZW1wbGF0ZSAjc2VsZWN0ZWRCbG9jaz5cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJwZXBUZW1wbGF0ZTsgY29udGV4dDogeyBpc0Zvcm1WaWV3OiBmYWxzZSB9XCI+PC9uZy1jb250YWluZXI+XG4gICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgIDxuZy10ZW1wbGF0ZSAjbm90U2VsZWN0ZWRCbG9jaz5cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJ2YWx1ZT8ubGVuZ3RoID4gMDsgdGhlbiBub3RFbXB0eUJsb2NrOyBlbHNlIGVtcHR5QmxvY2tcIj48L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjbm90RW1wdHlCbG9jaz5cbiAgICAgICAgICAgICAgICA8bWF0LWZvcm0tZmllbGQgYXBwZWFyYW5jZT1cIm91dGxpbmVcIiBkaXI9XCJ7eyB4QWxpZ25tZW50ID09ICdyaWdodCcgPyAncnRsJyA6ICdsdHInIH19XCJcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtcmVwb3J0LXRleHRhcmVhXCIgW25nQ2xhc3NdPVwieyByZWFkb25seTogZGlzYWJsZWQgfVwiPlxuICAgICAgICAgICAgICAgICAgICA8aW5wdXQgbWF0SW5wdXQgW2lkXT1cImtleVwiIGNsYXNzPVwiYm9keS1zbSBwZXAtcmVwb3J0LWlucHV0XCIgW25nQ2xhc3NdPVwieyByZWFkb25seTogZGlzYWJsZWR9XCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtuZ1N0eWxlXT1cInsgY29sb3I6IHRleHRDb2xvciwgJ3RleHQtYWxpZ24nOiB4QWxpZ25tZW50ID09ICdjZW50ZXInID8gJ2NlbnRlcicgOiB4QWxpZ25tZW50ID09ICdyaWdodCcgPyAncmlnaHQnIDogJ2xlZnQnIH1cIlxuICAgICAgICAgICAgICAgICAgICAgICAgdGl0bGU9XCJ7eyB2YWx1ZSB9fVwiIFtmb3JtQ29udHJvbE5hbWVdPVwia2V5XCIgdHlwZT1cInRleHRcIiBbdmFsdWVdPVwidmFsdWVcIiBbZGlzYWJsZWRdPVwidHJ1ZVwiIC8+XG4gICAgICAgICAgICAgICAgICAgIDxwZXAtdGV4dGJveC1pY29uICpuZ0lmPVwiZGlzYWJsZWQgJiYgeEFsaWdubWVudCA9PSAncmlnaHQnXCIgbWF0UHJlZml4IFt2YWx1ZV09XCJ2YWx1ZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBbbGFiZWxdPVwibGFiZWxcIiBbdHlwZV09XCJjb250cm9sVHlwZVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiIChpY29uQ2xpY2spPVwib3BlbkRpYWxvZygpXCI+XG4gICAgICAgICAgICAgICAgICAgIDwvcGVwLXRleHRib3gtaWNvbj5cbiAgICAgICAgICAgICAgICAgICAgPHBlcC10ZXh0Ym94LWljb24gKm5nSWY9XCJkaXNhYmxlZCAmJiAoeEFsaWdubWVudCA9PSAnbGVmdCcpXCIgbWF0U3VmZml4IFt2YWx1ZV09XCJ2YWx1ZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBbbGFiZWxdPVwibGFiZWxcIiBbdHlwZV09XCJjb250cm9sVHlwZVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiIChpY29uQ2xpY2spPVwib3BlbkRpYWxvZygpXCI+XG4gICAgICAgICAgICAgICAgICAgIDwvcGVwLXRleHRib3gtaWNvbj5cbiAgICAgICAgICAgICAgICA8L21hdC1mb3JtLWZpZWxkPlxuICAgICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjZW1wdHlCbG9jaz5cbiAgICAgICAgICAgICAgICA8c3Bhbj4mbmJzcDs8L3NwYW4+XG4gICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgIDwvbmctY29udGFpbmVyPlxuPC9uZy1jb250YWluZXI+XG5cbjxuZy10ZW1wbGF0ZSAjdGV4dEFyZWFEaWFsb2dUZW1wbGF0ZT5cbiAgICA8cGVwLWRpYWxvZyBjbGFzcz1cImRpYWxvZy10ZXh0YXJlYS1jb250YWluZXJcIiBbdGl0bGVdPVwibGFiZWxcIiAoY2xvc2UpPVwiY2xvc2VEaWFsb2coJGV2ZW50KVwiPlxuICAgICAgICA8bmctY29udGFpbmVyIHBlcC1kaWFsb2ctY29udGVudCBbZm9ybUdyb3VwXT1cImZvcm1cIj5cbiAgICAgICAgICAgIDwhLS0gPHRleHRhcmVhICNkaWFsb2dUZXh0YXJlYSBbcmVhZG9ubHldPVwiZGlzYWJsZWQgfHwgcmVhZG9ubHlcIj57eyB2YWx1ZSB9fTwvdGV4dGFyZWE+IC0tPlxuICAgICAgICAgICAgPHRleHRhcmVhICNkaWFsb2dUZXh0YXJlYSBbcmVhZG9ubHldPVwiZGlzYWJsZWQgfHwgcmVhZG9ubHlcIiBjbGFzcz1cImJvZHktc21cIiBtYXRJbnB1dFxuICAgICAgICAgICAgICAgIHRpdGxlPVwie3sgdmFsdWUgfX1cIiBbdmFsdWVdPVwidmFsdWVcIlxuICAgICAgICAgICAgICAgIG1heGxlbmd0aD1cInt7IG1heEZpZWxkQ2hhcmFjdGVycyA+IDAgPyBtYXhGaWVsZENoYXJhY3RlcnMgOiA5OTk5OSB9fVwiXG4gICAgICAgICAgICAgICAgW25nU3R5bGVdPVwieyBjb2xvcjogdGV4dENvbG9yLCAndGV4dC1hbGlnbic6IHhBbGlnbm1lbnQgPT0gJ3JpZ2h0JyA/ICdyaWdodCcgOiAnbGVmdCcgfVwiXG4gICAgICAgICAgICAgICAgW2Zvcm1Db250cm9sTmFtZV09XCJrZXlcIiA+XG4gICAgICAgICAgICA8L3RleHRhcmVhPlxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgPGRpdiBwZXAtZGlhbG9nLWFjdGlvbnMgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50LW5lZ2F0aXZlXCI+XG4gICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiZGlzYWJsZWQgfHwgcmVhZG9ubHk7IHRoZW4gbm90RWRpdGFibGVCbG9jazsgZWxzZSBlZGl0YWJsZUJsb2NrXCI+XG4gICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjZWRpdGFibGVCbG9jaz5cbiAgICAgICAgICAgICAgICA8YnV0dG9uIG1hdC1idXR0b24gKGNsaWNrKT1cImNsb3NlRGlhbG9nKClcIiBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQgcGVwLWJ1dHRvbiBtZCB3ZWFrXCI+XG4gICAgICAgICAgICAgICAgICAgIHt7ICdBQ1RJT05TLkNBTkNFTCcgfCB0cmFuc2xhdGUgfX1cbiAgICAgICAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICAgICAgICA8YnV0dG9uIG1hdC1idXR0b24gY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gbWQgc3Ryb25nXCJcbiAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cImNsb3NlRGlhbG9nKGRpYWxvZ1RleHRhcmVhLnZhbHVlKVwiPlxuICAgICAgICAgICAgICAgICAgICB7eyAnQUNUSU9OUy5TQVZFJyB8IHRyYW5zbGF0ZSB9fVxuICAgICAgICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjbm90RWRpdGFibGVCbG9jaz5cbiAgICAgICAgICAgICAgICA8YnV0dG9uIG1hdC1idXR0b24gKGNsaWNrKT1cImNsb3NlRGlhbG9nKClcIiBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQgcGVwLWJ1dHRvbiBtZCB3ZWFrXCI+XG4gICAgICAgICAgICAgICAgICAgIHt7ICdBQ1RJT05TLkNMT1NFJyB8IHRyYW5zbGF0ZSB9fVxuICAgICAgICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgICAgPC9kaXY+XG4gICAgPC9wZXAtZGlhbG9nPlxuPC9uZy10ZW1wbGF0ZT4iXX0=
|