@po-ui/ng-components 5.22.3 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -36
- package/esm2020/lib/components/components.module.mjs +270 -0
- package/esm2020/lib/components/index.mjs +38 -0
- package/esm2020/lib/components/po-accordion/index.mjs +4 -0
- package/esm2020/lib/components/po-accordion/po-accordion-base.component.mjs +29 -0
- package/esm2020/lib/components/po-accordion/po-accordion-item/po-accordion-item.component.mjs +78 -0
- package/esm2020/lib/components/po-accordion/po-accordion-item-body/po-accordion-item-body.component.mjs +44 -0
- package/esm2020/lib/components/po-accordion/po-accordion-item-header/po-accordion-item-header.component.mjs +41 -0
- package/esm2020/lib/components/po-accordion/po-accordion.component.mjs +106 -0
- package/esm2020/lib/components/po-accordion/po-accordion.module.mjs +61 -0
- package/esm2020/lib/components/po-accordion/services/po-accordion.service.mjs +30 -0
- package/esm2020/lib/components/po-avatar/index.mjs +3 -0
- package/esm2020/lib/components/po-avatar/po-avatar-base.component.mjs +77 -0
- package/esm2020/lib/components/po-avatar/po-avatar.component.mjs +73 -0
- package/esm2020/lib/components/po-avatar/po-avatar.module.mjs +24 -0
- package/esm2020/lib/components/po-badge/po-badge-base.component.mjs +94 -0
- package/esm2020/lib/components/po-badge/po-badge.component.mjs +27 -0
- package/esm2020/lib/components/po-badge/po-badge.module.mjs +24 -0
- package/esm2020/lib/components/po-breadcrumb/index.mjs +5 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-base.component.mjs +55 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-dropdown/po-breadcrumb-dropdown.component.mjs +40 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.component.mjs +113 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.service.mjs +49 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-item/po-breadcrumb-item.component.mjs +109 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb.component.mjs +219 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb.interface.mjs +2 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb.module.mjs +37 -0
- package/esm2020/lib/components/po-button/index.mjs +3 -0
- package/esm2020/lib/components/po-button/po-button-base.component.mjs +144 -0
- package/esm2020/lib/components/po-button/po-button.component.mjs +114 -0
- package/esm2020/lib/components/po-button/po-button.module.mjs +26 -0
- package/esm2020/lib/components/po-button-group/index.mjs +5 -0
- package/esm2020/lib/components/po-button-group/po-button-group-base.component.mjs +102 -0
- package/esm2020/lib/components/po-button-group/po-button-group-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-button-group/po-button-group-toggle.enum.mjs +17 -0
- package/esm2020/lib/components/po-button-group/po-button-group.component.mjs +62 -0
- package/esm2020/lib/components/po-button-group/po-button-group.module.mjs +26 -0
- package/esm2020/lib/components/po-calendar/index.mjs +4 -0
- package/esm2020/lib/components/po-calendar/po-calendar-base.component.mjs +183 -0
- package/esm2020/lib/components/po-calendar/po-calendar-header/po-calendar-header.component.mjs +57 -0
- package/esm2020/lib/components/po-calendar/po-calendar-mode.enum.mjs +13 -0
- package/esm2020/lib/components/po-calendar/po-calendar-wrapper/po-calendar-wrapper.component.mjs +469 -0
- package/esm2020/lib/components/po-calendar/po-calendar.component.mjs +257 -0
- package/esm2020/lib/components/po-calendar/po-calendar.module.mjs +25 -0
- package/esm2020/lib/components/po-calendar/services/po-calendar.lang.service.mjs +189 -0
- package/esm2020/lib/components/po-calendar/services/po-calendar.service.mjs +47 -0
- package/esm2020/lib/components/po-chart/directives/po-resize-observer.directive.mjs +46 -0
- package/esm2020/lib/components/po-chart/enums/po-chart-type.enum.mjs +38 -0
- package/esm2020/lib/components/po-chart/helpers/po-chart-default-values.constant.mjs +18 -0
- package/esm2020/lib/components/po-chart/index.mjs +7 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-axis-options.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-bar-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-container-size.interface.mjs +11 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-label-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-min-max-values.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-options.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-path-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-points-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-serie.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/po-chart-base.component.mjs +258 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-label/po-chart-axis-label.component.mjs +68 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-path/po-chart-axis-path.component.mjs +50 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis.component.mjs +310 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-base.component.mjs +103 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-path/po-chart-bar-path.component.mjs +61 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar.component.mjs +84 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-column/po-chart-column.component.mjs +85 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-label/po-chart-circular-label.component.mjs +47 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-circular-path.component.mjs +56 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-tooltip.directive.mjs +84 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular.component.mjs +161 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-donut/po-chart-donut.component.mjs +165 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-pie/po-chart-pie.component.mjs +107 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-container.component.mjs +243 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-area/po-chart-area.component.mjs +106 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line-base.component.mjs +172 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line.component.mjs +70 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-path/po-chart-path.component.mjs +87 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-series-point/po-chart-series-point.component.mjs +128 -0
- package/esm2020/lib/components/po-chart/po-chart-legend/po-chart-legend.component.mjs +48 -0
- package/esm2020/lib/components/po-chart/po-chart-types/po-chart-dynamic-type.component.mjs +52 -0
- package/esm2020/lib/components/po-chart/po-chart.component.mjs +254 -0
- package/esm2020/lib/components/po-chart/po-chart.module.mjs +81 -0
- package/esm2020/lib/components/po-chart/services/po-chart-maths.service.mjs +136 -0
- package/esm2020/lib/components/po-chart/services/po-chart-svg-container.service.mjs +58 -0
- package/esm2020/lib/components/po-container/index.mjs +3 -0
- package/esm2020/lib/components/po-container/po-container-base.component.mjs +97 -0
- package/esm2020/lib/components/po-container/po-container.component.mjs +42 -0
- package/esm2020/lib/components/po-container/po-container.module.mjs +24 -0
- package/esm2020/lib/components/po-disclaimer/index.mjs +4 -0
- package/esm2020/lib/components/po-disclaimer/po-disclaimer-base.component.mjs +90 -0
- package/esm2020/lib/components/po-disclaimer/po-disclaimer.component.mjs +60 -0
- package/esm2020/lib/components/po-disclaimer/po-disclaimer.interface.mjs +2 -0
- package/esm2020/lib/components/po-disclaimer/po-disclaimer.module.mjs +23 -0
- package/esm2020/lib/components/po-disclaimer-group/index.mjs +5 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group-base.component.mjs +206 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group-remove-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group.component.mjs +80 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group.interface.mjs +2 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group.module.mjs +26 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-remove/po-disclaimer-remove.component.mjs +40 -0
- package/esm2020/lib/components/po-divider/index.mjs +3 -0
- package/esm2020/lib/components/po-divider/po-divider-base.component.mjs +19 -0
- package/esm2020/lib/components/po-divider/po-divider.component.mjs +49 -0
- package/esm2020/lib/components/po-divider/po-divider.module.mjs +24 -0
- package/esm2020/lib/components/po-dropdown/index.mjs +4 -0
- package/esm2020/lib/components/po-dropdown/po-dropdown-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-dropdown/po-dropdown-base.component.mjs +78 -0
- package/esm2020/lib/components/po-dropdown/po-dropdown.component.mjs +130 -0
- package/esm2020/lib/components/po-dropdown/po-dropdown.module.mjs +24 -0
- package/esm2020/lib/components/po-dynamic/index.mjs +11 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-field-type.enum.mjs +25 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-field.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-base.component.mjs +121 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-field.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-field-internal.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields-base.component.mjs +221 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields.component.mjs +350 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.service.mjs +32 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-operation/po-dynamic-form-operation.mjs +20 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-response.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-changed.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-validation.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.service.mjs +39 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form.component.mjs +203 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-base.component.mjs +169 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-field.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.component.mjs +141 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.service.mjs +17 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic.module.mjs +53 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic.util.mjs +18 -0
- package/esm2020/lib/components/po-field/index.mjs +53 -0
- package/esm2020/lib/components/po-field/po-checkbox/po-checkbox-base.component.mjs +109 -0
- package/esm2020/lib/components/po-field/po-checkbox/po-checkbox.component.mjs +118 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option-view.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/po-checkbox-group-base.component.mjs +322 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/po-checkbox-group.component.mjs +150 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/po-checkbox-group.module.mjs +26 -0
- package/esm2020/lib/components/po-field/po-clean/index.mjs +2 -0
- package/esm2020/lib/components/po-field/po-clean/po-clean-base.component.mjs +49 -0
- package/esm2020/lib/components/po-field/po-clean/po-clean.component.mjs +45 -0
- package/esm2020/lib/components/po-field/po-clean/po-clean.module.mjs +24 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-group.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-option-group.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-response.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo-base.component.mjs +803 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo-filter-mode.enum.mjs +17 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo-filter.service.mjs +79 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo-option-template/po-combo-option-template.directive.mjs +82 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo.component.mjs +746 -0
- package/esm2020/lib/components/po-field/po-datepicker/enums/po-datepicker-iso-format.enum.mjs +17 -0
- package/esm2020/lib/components/po-field/po-datepicker/po-datepicker-base.component.mjs +428 -0
- package/esm2020/lib/components/po-field/po-datepicker/po-datepicker.component.mjs +439 -0
- package/esm2020/lib/components/po-field/po-datepicker/po-datepicker.module.mjs +28 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.mjs +506 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.mjs +528 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/po-datepicker-range.literals.mjs +27 -0
- package/esm2020/lib/components/po-field/po-decimal/po-decimal.component.mjs +667 -0
- package/esm2020/lib/components/po-field/po-email/po-email.component.mjs +150 -0
- package/esm2020/lib/components/po-field/po-field-container/index.mjs +4 -0
- package/esm2020/lib/components/po-field/po-field-container/po-field-container-bottom/po-field-container-bottom.component.mjs +47 -0
- package/esm2020/lib/components/po-field/po-field-container/po-field-container-literals.mjs +15 -0
- package/esm2020/lib/components/po-field/po-field-container/po-field-container.component.mjs +81 -0
- package/esm2020/lib/components/po-field/po-field-container/po-field-container.module.mjs +25 -0
- package/esm2020/lib/components/po-field/po-field-validate.model.mjs +74 -0
- package/esm2020/lib/components/po-field/po-field.model.mjs +90 -0
- package/esm2020/lib/components/po-field/po-field.module.mjs +268 -0
- package/esm2020/lib/components/po-field/po-input/po-input-base.component.mjs +397 -0
- package/esm2020/lib/components/po-field/po-input/po-input.component.mjs +111 -0
- package/esm2020/lib/components/po-field/po-input/po-mask.mjs +460 -0
- package/esm2020/lib/components/po-field/po-input-generic/po-input-generic.mjs +197 -0
- package/esm2020/lib/components/po-field/po-login/po-login.component.mjs +100 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-advanced-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-column.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-filtered-items-params.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-response-api.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/po-lookup-base.component.mjs +499 -0
- package/esm2020/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal-base.component.mjs +394 -0
- package/esm2020/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal.component.mjs +225 -0
- package/esm2020/lib/components/po-field/po-lookup/po-lookup.component.mjs +437 -0
- package/esm2020/lib/components/po-field/po-lookup/services/po-lookup-filter.service.mjs +59 -0
- package/esm2020/lib/components/po-field/po-lookup/services/po-lookup-modal.service.mjs +62 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-base.component.mjs +620 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-dropdown/po-multiselect-dropdown.component.mjs +261 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-filter-mode.enum.mjs +17 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-filter.service.mjs +50 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-item/po-multiselect-item.component.mjs +54 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-search/po-multiselect-search.component.mjs +84 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect.component.mjs +428 -0
- package/esm2020/lib/components/po-field/po-number/po-number-base.component.mjs +113 -0
- package/esm2020/lib/components/po-field/po-number/po-number.component.mjs +178 -0
- package/esm2020/lib/components/po-field/po-password/po-password.component.mjs +151 -0
- package/esm2020/lib/components/po-field/po-radio-group/po-radio-group-base.component.mjs +201 -0
- package/esm2020/lib/components/po-field/po-radio-group/po-radio-group-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-radio-group/po-radio-group.component.mjs +184 -0
- package/esm2020/lib/components/po-field/po-rich-text/interfaces/po-rich-text-toolbar-button-group-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-base.component.mjs +203 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-body/po-rich-text-body.component.mjs +342 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-image-modal/po-rich-text-image-modal.component.mjs +135 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-link-modal/po-rich-text-link-modal.component.mjs +177 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-literals.mjs +83 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-toolbar/po-rich-text-toolbar.component.mjs +254 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text.component.mjs +173 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text.service.mjs +20 -0
- package/esm2020/lib/components/po-field/po-select/po-select-option-template/po-select-option-template.directive.mjs +60 -0
- package/esm2020/lib/components/po-field/po-select/po-select-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-select/po-select.component.mjs +513 -0
- package/esm2020/lib/components/po-field/po-switch/po-switch-label-position.enum.mjs +15 -0
- package/esm2020/lib/components/po-field/po-switch/po-switch.component.mjs +236 -0
- package/esm2020/lib/components/po-field/po-textarea/po-textarea-base.component.mjs +299 -0
- package/esm2020/lib/components/po-field/po-textarea/po-textarea.component.mjs +159 -0
- package/esm2020/lib/components/po-field/po-upload/interfaces/po-upload-file-restriction.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-upload/interfaces/po-upload-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-base.component.mjs +634 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-base.service.mjs +89 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area/po-upload-drag-drop-area.component.mjs +95 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area-overlay/po-upload-drag-drop-area-overlay.component.mjs +61 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.component.mjs +101 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.directive.mjs +179 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-file-restrictions/po-upload-file-restrictions.component.mjs +151 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-file.mjs +39 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-status.enum.mjs +13 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload.component.mjs +450 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload.service.mjs +11 -0
- package/esm2020/lib/components/po-field/po-url/po-url.component.mjs +141 -0
- package/esm2020/lib/components/po-field/validators.mjs +41 -0
- package/esm2020/lib/components/po-gauge/index.mjs +4 -0
- package/esm2020/lib/components/po-gauge/interfaces/po-gauge-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-gauge/interfaces/po-gauge-ranges.interface.mjs +2 -0
- package/esm2020/lib/components/po-gauge/interfaces/po-gauge-svg-container.interface.mjs +2 -0
- package/esm2020/lib/components/po-gauge/po-gauge-base.component.mjs +154 -0
- package/esm2020/lib/components/po-gauge/po-gauge-default-values.constant.mjs +11 -0
- package/esm2020/lib/components/po-gauge/po-gauge-description/po-gauge-description.component.mjs +110 -0
- package/esm2020/lib/components/po-gauge/po-gauge-legend/po-gauge-legend.component.mjs +70 -0
- package/esm2020/lib/components/po-gauge/po-gauge-svg/po-gauge-path/po-gauge-path.component.mjs +43 -0
- package/esm2020/lib/components/po-gauge/po-gauge-svg/po-gauge-pointer/po-gauge-pointer.component.mjs +66 -0
- package/esm2020/lib/components/po-gauge/po-gauge-svg/po-gauge-svg.component.mjs +236 -0
- package/esm2020/lib/components/po-gauge/po-gauge-title/po-gauge-title.component.mjs +28 -0
- package/esm2020/lib/components/po-gauge/po-gauge.component.mjs +109 -0
- package/esm2020/lib/components/po-gauge/po-gauge.module.mjs +44 -0
- package/esm2020/lib/components/po-grid/index.mjs +4 -0
- package/esm2020/lib/components/po-grid/po-grid-cell/po-grid-cell.component.mjs +179 -0
- package/esm2020/lib/components/po-grid/po-grid-cell-action/po-grid-cell-action.component.mjs +40 -0
- package/esm2020/lib/components/po-grid/po-grid-head/po-grid-head.component.mjs +56 -0
- package/esm2020/lib/components/po-grid/po-grid-row-actions.interface.mjs +2 -0
- package/esm2020/lib/components/po-grid/po-grid.component.mjs +573 -0
- package/esm2020/lib/components/po-grid/po-grid.module.mjs +29 -0
- package/esm2020/lib/components/po-icon/index.mjs +3 -0
- package/esm2020/lib/components/po-icon/po-icon.component.mjs +77 -0
- package/esm2020/lib/components/po-icon/po-icon.module.mjs +24 -0
- package/esm2020/lib/components/po-info/index.mjs +4 -0
- package/esm2020/lib/components/po-info/po-info-base.component.mjs +73 -0
- package/esm2020/lib/components/po-info/po-info-orietation.enum.mjs +15 -0
- package/esm2020/lib/components/po-info/po-info.component.mjs +110 -0
- package/esm2020/lib/components/po-info/po-info.module.mjs +27 -0
- package/esm2020/lib/components/po-list-view/index.mjs +7 -0
- package/esm2020/lib/components/po-list-view/interfaces/po-list-view-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-list-view/interfaces/po-list-view-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-list-view/po-list-view-base.component.mjs +298 -0
- package/esm2020/lib/components/po-list-view/po-list-view-content-template/po-list-view-content-template.directive.mjs +102 -0
- package/esm2020/lib/components/po-list-view/po-list-view-detail-template/po-list-view-detail-template.directive.mjs +65 -0
- package/esm2020/lib/components/po-list-view/po-list-view.component.mjs +385 -0
- package/esm2020/lib/components/po-list-view/po-list-view.module.mjs +57 -0
- package/esm2020/lib/components/po-loading/index.mjs +5 -0
- package/esm2020/lib/components/po-loading/po-loading-base.component.mjs +27 -0
- package/esm2020/lib/components/po-loading/po-loading-icon/po-loading-icon.component.mjs +51 -0
- package/esm2020/lib/components/po-loading/po-loading-overlay/interfaces/po-loading-overlay-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-loading/po-loading-overlay/po-loading-overlay-base.component.mjs +93 -0
- package/esm2020/lib/components/po-loading/po-loading-overlay/po-loading-overlay.component.mjs +47 -0
- package/esm2020/lib/components/po-loading/po-loading.component.mjs +36 -0
- package/esm2020/lib/components/po-loading/po-loading.module.mjs +28 -0
- package/esm2020/lib/components/po-menu/index.mjs +9 -0
- package/esm2020/lib/components/po-menu/po-menu-base.component.mjs +312 -0
- package/esm2020/lib/components/po-menu/po-menu-filter/po-menu-filter-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu-filter/po-menu-filter.component.mjs +85 -0
- package/esm2020/lib/components/po-menu/po-menu-filter/po-menu-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu-header-template/po-menu-header-template.directive.mjs +52 -0
- package/esm2020/lib/components/po-menu/po-menu-item/po-menu-item-badge.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu-item/po-menu-item-filtered.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu-item/po-menu-item.component.mjs +362 -0
- package/esm2020/lib/components/po-menu/po-menu-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu.component.mjs +611 -0
- package/esm2020/lib/components/po-menu/po-menu.module.mjs +32 -0
- package/esm2020/lib/components/po-menu/services/po-menu-global.service.mjs +34 -0
- package/esm2020/lib/components/po-menu/services/po-menu-items.service.mjs +38 -0
- package/esm2020/lib/components/po-menu/services/po-menu.service.mjs +38 -0
- package/esm2020/lib/components/po-menu-panel/index.mjs +4 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel-base.component.mjs +81 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item-internal.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.component.mjs +120 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel.component.mjs +171 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel.module.mjs +30 -0
- package/esm2020/lib/components/po-menu-panel/services/po-menu-panel-items.service.mjs +38 -0
- package/esm2020/lib/components/po-modal/index.mjs +5 -0
- package/esm2020/lib/components/po-modal/po-modal-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-modal/po-modal-base.component.mjs +133 -0
- package/esm2020/lib/components/po-modal/po-modal-footer/po-modal-footer.component.mjs +52 -0
- package/esm2020/lib/components/po-modal/po-modal.component.mjs +207 -0
- package/esm2020/lib/components/po-modal/po-modal.literals.mjs +15 -0
- package/esm2020/lib/components/po-modal/po-modal.module.mjs +25 -0
- package/esm2020/lib/components/po-navbar/index.mjs +5 -0
- package/esm2020/lib/components/po-navbar/interfaces/po-navbar-icon-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-navbar/interfaces/po-navbar-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-navbar/interfaces/po-navbar-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-navbar/po-navbar-actions/po-navbar-action/po-navbar-action.component.mjs +56 -0
- package/esm2020/lib/components/po-navbar/po-navbar-actions/po-navbar-action-popup/po-navbar-action-popup.component.mjs +33 -0
- package/esm2020/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.component.mjs +36 -0
- package/esm2020/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.module.mjs +24 -0
- package/esm2020/lib/components/po-navbar/po-navbar-base.component.mjs +158 -0
- package/esm2020/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation-icon/po-navbar-item-navigation-icon.component.mjs +34 -0
- package/esm2020/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.component.mjs +35 -0
- package/esm2020/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.module.mjs +21 -0
- package/esm2020/lib/components/po-navbar/po-navbar-items/po-navbar-item/po-navbar-item.component.mjs +78 -0
- package/esm2020/lib/components/po-navbar/po-navbar-items/po-navbar-items.component.mjs +86 -0
- package/esm2020/lib/components/po-navbar/po-navbar-items/po-navbar-items.module.mjs +21 -0
- package/esm2020/lib/components/po-navbar/po-navbar-logo/po-navbar-logo.component.mjs +28 -0
- package/esm2020/lib/components/po-navbar/po-navbar.component.mjs +262 -0
- package/esm2020/lib/components/po-navbar/po-navbar.module.mjs +75 -0
- package/esm2020/lib/components/po-page/index.mjs +15 -0
- package/esm2020/lib/components/po-page/po-page-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-base.component.mjs +23 -0
- package/esm2020/lib/components/po-page/po-page-content/po-page-content-base.component.mjs +10 -0
- package/esm2020/lib/components/po-page/po-page-content/po-page-content.component.mjs +60 -0
- package/esm2020/lib/components/po-page/po-page-default/po-page-default-base.component.mjs +128 -0
- package/esm2020/lib/components/po-page/po-page-default/po-page-default-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-default/po-page-default.component.mjs +165 -0
- package/esm2020/lib/components/po-page/po-page-default/po-page-default.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-detail/po-page-detail-base.component.mjs +162 -0
- package/esm2020/lib/components/po-page/po-page-detail/po-page-detail-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-detail/po-page-detail.component.mjs +132 -0
- package/esm2020/lib/components/po-page/po-page-edit/po-page-edit-base.component.mjs +169 -0
- package/esm2020/lib/components/po-page/po-page-edit/po-page-edit-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-edit/po-page-edit.component.mjs +135 -0
- package/esm2020/lib/components/po-page/po-page-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-header/po-page-header-base.component.mjs +31 -0
- package/esm2020/lib/components/po-page/po-page-header/po-page-header.component.mjs +51 -0
- package/esm2020/lib/components/po-page/po-page-list/po-page-list-base.component.mjs +158 -0
- package/esm2020/lib/components/po-page/po-page-list/po-page-list-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-list/po-page-list.component.mjs +323 -0
- package/esm2020/lib/components/po-page/po-page-slide/po-page-slide-base.component.mjs +146 -0
- package/esm2020/lib/components/po-page/po-page-slide/po-page-slide.component.mjs +197 -0
- package/esm2020/lib/components/po-page/po-page.component.mjs +23 -0
- package/esm2020/lib/components/po-page/po-page.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page.module.mjs +97 -0
- package/esm2020/lib/components/po-popover/index.mjs +3 -0
- package/esm2020/lib/components/po-popover/po-popover-base.component.mjs +126 -0
- package/esm2020/lib/components/po-popover/po-popover.component.mjs +173 -0
- package/esm2020/lib/components/po-popover/po-popover.module.mjs +23 -0
- package/esm2020/lib/components/po-popup/index.mjs +4 -0
- package/esm2020/lib/components/po-popup/po-popup-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-popup/po-popup-base.component.mjs +199 -0
- package/esm2020/lib/components/po-popup/po-popup.component.mjs +232 -0
- package/esm2020/lib/components/po-popup/po-popup.module.mjs +27 -0
- package/esm2020/lib/components/po-progress/enums/po-progress-status.enum.mjs +17 -0
- package/esm2020/lib/components/po-progress/index.mjs +4 -0
- package/esm2020/lib/components/po-progress/po-progress-bar/po-progress-bar.component.mjs +29 -0
- package/esm2020/lib/components/po-progress/po-progress-base.component.mjs +124 -0
- package/esm2020/lib/components/po-progress/po-progress.component.mjs +140 -0
- package/esm2020/lib/components/po-progress/po-progress.module.mjs +25 -0
- package/esm2020/lib/components/po-slide/directives/po-slide-content-template.directive.mjs +60 -0
- package/esm2020/lib/components/po-slide/index.mjs +5 -0
- package/esm2020/lib/components/po-slide/interfaces/po-slide-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-slide/po-slide-base.component.mjs +113 -0
- package/esm2020/lib/components/po-slide/po-slide-circles/po-slide-circles.component.mjs +52 -0
- package/esm2020/lib/components/po-slide/po-slide-control/po-slide-control.component.mjs +39 -0
- package/esm2020/lib/components/po-slide/po-slide-item/po-slide-item.component.mjs +152 -0
- package/esm2020/lib/components/po-slide/po-slide.component.mjs +330 -0
- package/esm2020/lib/components/po-slide/po-slide.module.mjs +68 -0
- package/esm2020/lib/components/po-stepper/enums/po-stepper-orientation.enum.mjs +18 -0
- package/esm2020/lib/components/po-stepper/enums/po-stepper-status.enum.mjs +23 -0
- package/esm2020/lib/components/po-stepper/index.mjs +7 -0
- package/esm2020/lib/components/po-stepper/po-step/po-step.component.mjs +84 -0
- package/esm2020/lib/components/po-stepper/po-stepper-base.component.mjs +159 -0
- package/esm2020/lib/components/po-stepper/po-stepper-circle/po-stepper-circle.component.mjs +80 -0
- package/esm2020/lib/components/po-stepper/po-stepper-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-stepper/po-stepper-label/po-stepper-label.component.mjs +28 -0
- package/esm2020/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.mjs +165 -0
- package/esm2020/lib/components/po-stepper/po-stepper.component.mjs +256 -0
- package/esm2020/lib/components/po-stepper/po-stepper.module.mjs +37 -0
- package/esm2020/lib/components/po-table/enums/po-table-column-sort-type.enum.mjs +14 -0
- package/esm2020/lib/components/po-table/enums/po-table-row-template-arrow-direction.enum.mjs +14 -0
- package/esm2020/lib/components/po-table/index.mjs +18 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-boolean.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-column-sort.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-column.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-filtered-items-params.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-response-api.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-base.component.mjs +937 -0
- package/esm2020/lib/components/po-table/po-table-cell-template/po-table-cell-template.directive.mjs +83 -0
- package/esm2020/lib/components/po-table/po-table-column-icon/po-table-column-icon.component.mjs +92 -0
- package/esm2020/lib/components/po-table/po-table-column-icon/po-table-column-icon.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-column-label/po-table-column-label.component.mjs +43 -0
- package/esm2020/lib/components/po-table/po-table-column-label/po-table-column-label.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-column-link/po-table-column-link.component.mjs +105 -0
- package/esm2020/lib/components/po-table/po-table-column-manager/po-table-column-manager.component.mjs +317 -0
- package/esm2020/lib/components/po-table/po-table-column-template/po-table-column-template.directive.mjs +91 -0
- package/esm2020/lib/components/po-table/po-table-detail/po-table-detail-column.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-detail/po-table-detail.component.mjs +274 -0
- package/esm2020/lib/components/po-table/po-table-detail/po-table-detail.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-icon/po-table-icon.component.mjs +67 -0
- package/esm2020/lib/components/po-table/po-table-row-template/po-table-row-template.directive.mjs +131 -0
- package/esm2020/lib/components/po-table/po-table-show-subtitle/po-table-show-subtitle.component.mjs +61 -0
- package/esm2020/lib/components/po-table/po-table-subtitle-circle/po-table-subtitle-circle.component.mjs +49 -0
- package/esm2020/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-column.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-footer.component.mjs +102 -0
- package/esm2020/lib/components/po-table/po-table.component.mjs +1437 -0
- package/esm2020/lib/components/po-table/po-table.module.mjs +122 -0
- package/esm2020/lib/components/po-table/services/po-table.service.mjs +37 -0
- package/esm2020/lib/components/po-tabs/index.mjs +5 -0
- package/esm2020/lib/components/po-tabs/po-tab/po-tab-base.component.mjs +93 -0
- package/esm2020/lib/components/po-tabs/po-tab/po-tab.component.mjs +29 -0
- package/esm2020/lib/components/po-tabs/po-tab/po-tab.interface.mjs +2 -0
- package/esm2020/lib/components/po-tabs/po-tab-button/po-tab-button.component.mjs +101 -0
- package/esm2020/lib/components/po-tabs/po-tab-dropdown/po-tab-dropdown.component.mjs +109 -0
- package/esm2020/lib/components/po-tabs/po-tabs-base.component.mjs +52 -0
- package/esm2020/lib/components/po-tabs/po-tabs.component.mjs +188 -0
- package/esm2020/lib/components/po-tabs/po-tabs.module.mjs +27 -0
- package/esm2020/lib/components/po-tag/enums/po-tag-icon.enum.mjs +19 -0
- package/esm2020/lib/components/po-tag/enums/po-tag-orientation.enum.mjs +15 -0
- package/esm2020/lib/components/po-tag/enums/po-tag-type.enum.mjs +19 -0
- package/esm2020/lib/components/po-tag/index.mjs +5 -0
- package/esm2020/lib/components/po-tag/interfaces/po-tag-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-tag/po-tag-base.component.mjs +192 -0
- package/esm2020/lib/components/po-tag/po-tag.component.mjs +114 -0
- package/esm2020/lib/components/po-tag/po-tag.module.mjs +27 -0
- package/esm2020/lib/components/po-toolbar/index.mjs +5 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-actions/po-toolbar-actions.component.mjs +55 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-base.component.mjs +60 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-notification/po-toolbar-notification.component.mjs +66 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.component.mjs +78 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.interface.mjs +2 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar.component.mjs +85 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar.module.mjs +41 -0
- package/esm2020/lib/components/po-tree-view/index.mjs +4 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view-base.component.mjs +209 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.component.mjs +106 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view-item-header/po-tree-view-item-header.component.mjs +91 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view.component.mjs +82 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view.module.mjs +55 -0
- package/esm2020/lib/components/po-tree-view/services/po-tree-view.service.mjs +27 -0
- package/esm2020/lib/components/po-widget/index.mjs +3 -0
- package/esm2020/lib/components/po-widget/po-widget-base.component.mjs +247 -0
- package/esm2020/lib/components/po-widget/po-widget.component.mjs +245 -0
- package/esm2020/lib/components/po-widget/po-widget.module.mjs +25 -0
- package/esm2020/lib/decorators/index.mjs +3 -0
- package/esm2020/lib/decorators/input-boolean/input-boolean.decorator.mjs +18 -0
- package/esm2020/lib/decorators/input-required/input-required.decorator.mjs +34 -0
- package/esm2020/lib/decorators/property-decorator.interface.mjs +2 -0
- package/esm2020/lib/decorators/utils-decorators.mjs +64 -0
- package/esm2020/lib/directives/directives.module.mjs +20 -0
- package/esm2020/lib/directives/index.mjs +3 -0
- package/esm2020/lib/directives/po-tooltip/index.mjs +3 -0
- package/esm2020/lib/directives/po-tooltip/po-tooltip-base.directive.mjs +115 -0
- package/esm2020/lib/directives/po-tooltip/po-tooltip-control-position.service.mjs +11 -0
- package/esm2020/lib/directives/po-tooltip/po-tooltip.directive.mjs +151 -0
- package/esm2020/lib/directives/po-tooltip/po-tooltip.module.mjs +24 -0
- package/esm2020/lib/enums/po-color-palette.enum.mjs +35 -0
- package/esm2020/lib/enums/po-key-code.enum.mjs +31 -0
- package/esm2020/lib/guards/guards.module.mjs +18 -0
- package/esm2020/lib/guards/index.mjs +2 -0
- package/esm2020/lib/index.mjs +10 -0
- package/esm2020/lib/interceptors/index.mjs +4 -0
- package/esm2020/lib/interceptors/interceptors.module.mjs +21 -0
- package/esm2020/lib/interceptors/po-http-interceptor/index.mjs +3 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-base.service.mjs +252 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail-literals.interface.mjs +39 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.component.mjs +172 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.interface.mjs +2 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-literals.mjs +23 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor.module.mjs +42 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor.service.mjs +26 -0
- package/esm2020/lib/interceptors/po-http-request/index.mjs +3 -0
- package/esm2020/lib/interceptors/po-http-request/po-http-request-control-service.mjs +26 -0
- package/esm2020/lib/interceptors/po-http-request/po-http-request-interceptor.service.mjs +165 -0
- package/esm2020/lib/interceptors/po-http-request/po-http-request.module.mjs +39 -0
- package/esm2020/lib/interfaces/index.mjs +2 -0
- package/esm2020/lib/interfaces/po-http/po-response-api.interface.mjs +2 -0
- package/esm2020/lib/pipes/index.mjs +3 -0
- package/esm2020/lib/pipes/pipes.module.mjs +20 -0
- package/esm2020/lib/pipes/po-time/index.mjs +3 -0
- package/esm2020/lib/pipes/po-time/po-time.module.mjs +25 -0
- package/esm2020/lib/pipes/po-time/po-time.pipe.mjs +59 -0
- package/esm2020/lib/po.module.mjs +62 -0
- package/esm2020/lib/services/index.mjs +11 -0
- package/esm2020/lib/services/po-active-overlay/index.mjs +3 -0
- package/esm2020/lib/services/po-active-overlay/po-active-overlay.module.mjs +21 -0
- package/esm2020/lib/services/po-active-overlay/po-active-overlay.service.mjs +16 -0
- package/esm2020/lib/services/po-color/po-color.service.mjs +62 -0
- package/esm2020/lib/services/po-color/po-colors.constant.mjs +43 -0
- package/esm2020/lib/services/po-color-palette/index.mjs +3 -0
- package/esm2020/lib/services/po-color-palette/po-color-palette.module.mjs +21 -0
- package/esm2020/lib/services/po-color-palette/po-color-palette.service.mjs +28 -0
- package/esm2020/lib/services/po-component-injector/index.mjs +3 -0
- package/esm2020/lib/services/po-component-injector/po-component-injector.module.mjs +19 -0
- package/esm2020/lib/services/po-component-injector/po-component-injector.service.mjs +31 -0
- package/esm2020/lib/services/po-control-position/index.mjs +3 -0
- package/esm2020/lib/services/po-control-position/po-control-position.constants.mjs +16 -0
- package/esm2020/lib/services/po-control-position/po-control-position.module.mjs +20 -0
- package/esm2020/lib/services/po-control-position/po-control-position.service.mjs +364 -0
- package/esm2020/lib/services/po-date/index.mjs +3 -0
- package/esm2020/lib/services/po-date/po-date.module.mjs +21 -0
- package/esm2020/lib/services/po-date/po-date.service.mjs +203 -0
- package/esm2020/lib/services/po-dialog/index.mjs +8 -0
- package/esm2020/lib/services/po-dialog/interfaces/po-dialog-alert-literals.interface.mjs +2 -0
- package/esm2020/lib/services/po-dialog/interfaces/po-dialog-confirm-literals.interface.mjs +2 -0
- package/esm2020/lib/services/po-dialog/interfaces/po-dialog.interface.mjs +2 -0
- package/esm2020/lib/services/po-dialog/po-dialog-base.service.mjs +18 -0
- package/esm2020/lib/services/po-dialog/po-dialog.component.mjs +132 -0
- package/esm2020/lib/services/po-dialog/po-dialog.enum.mjs +16 -0
- package/esm2020/lib/services/po-dialog/po-dialog.module.mjs +21 -0
- package/esm2020/lib/services/po-dialog/po-dialog.service.mjs +42 -0
- package/esm2020/lib/services/po-i18n/index.mjs +8 -0
- package/esm2020/lib/services/po-i18n/interfaces/po-i18n-config-default.interface.mjs +2 -0
- package/esm2020/lib/services/po-i18n/interfaces/po-i18n-config.interface.mjs +2 -0
- package/esm2020/lib/services/po-i18n/interfaces/po-i18n-literals.interface.mjs +2 -0
- package/esm2020/lib/services/po-i18n/po-i18n-base.pipe.mjs +40 -0
- package/esm2020/lib/services/po-i18n/po-i18n-base.service.mjs +439 -0
- package/esm2020/lib/services/po-i18n/po-i18n-config-injection-token.mjs +3 -0
- package/esm2020/lib/services/po-i18n/po-i18n.module.mjs +194 -0
- package/esm2020/lib/services/po-i18n/po-i18n.pipe.mjs +25 -0
- package/esm2020/lib/services/po-i18n/po-i18n.service.mjs +19 -0
- package/esm2020/lib/services/po-language/index.mjs +5 -0
- package/esm2020/lib/services/po-language/po-language.constant.mjs +73 -0
- package/esm2020/lib/services/po-language/po-language.interface.mjs +2 -0
- package/esm2020/lib/services/po-language/po-language.module.mjs +20 -0
- package/esm2020/lib/services/po-language/po-language.service.mjs +136 -0
- package/esm2020/lib/services/po-notification/index.mjs +6 -0
- package/esm2020/lib/services/po-notification/po-notification-base.service.mjs +111 -0
- package/esm2020/lib/services/po-notification/po-notification.interface.mjs +2 -0
- package/esm2020/lib/services/po-notification/po-notification.module.mjs +21 -0
- package/esm2020/lib/services/po-notification/po-notification.service.mjs +90 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster-base.component.mjs +15 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster-orientation.enum.mjs +13 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster-type.enum.mjs +17 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster.component.mjs +168 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster.interface.mjs +2 -0
- package/esm2020/lib/services/services.module.mjs +75 -0
- package/esm2020/lib/utils/util.mjs +511 -0
- package/esm2020/po-ui-ng-components.mjs +5 -0
- package/esm2020/public-api.mjs +2 -0
- package/fesm2015/po-ui-ng-components.mjs +47803 -0
- package/fesm2015/po-ui-ng-components.mjs.map +1 -0
- package/fesm2020/po-ui-ng-components.mjs +45113 -0
- package/fesm2020/po-ui-ng-components.mjs.map +1 -0
- package/lib/components/components.module.d.ts +42 -2
- package/lib/components/index.d.ts +37 -37
- package/lib/components/po-accordion/index.d.ts +3 -3
- package/lib/components/po-accordion/po-accordion-base.component.d.ts +28 -28
- package/lib/components/po-accordion/po-accordion-item/po-accordion-item.component.d.ts +52 -49
- package/lib/components/po-accordion/po-accordion-item-body/po-accordion-item-body.component.d.ts +6 -3
- package/lib/components/po-accordion/po-accordion-item-header/po-accordion-item-header.component.d.ts +10 -7
- package/lib/components/po-accordion/po-accordion.component.d.ts +40 -37
- package/lib/components/po-accordion/po-accordion.module.d.ts +42 -33
- package/lib/components/po-accordion/services/po-accordion.service.d.ts +16 -13
- package/lib/components/po-avatar/index.d.ts +2 -2
- package/lib/components/po-avatar/po-avatar-base.component.d.ts +56 -53
- package/lib/components/po-avatar/po-avatar.component.d.ts +31 -28
- package/lib/components/po-avatar/po-avatar.module.d.ts +13 -7
- package/lib/components/po-badge/po-badge-base.component.d.ts +58 -55
- package/lib/components/po-badge/po-badge.component.d.ts +11 -8
- package/lib/components/po-badge/po-badge.module.d.ts +13 -7
- package/lib/components/po-breadcrumb/index.d.ts +4 -4
- package/lib/components/po-breadcrumb/po-breadcrumb-base.component.d.ts +107 -104
- package/lib/components/po-breadcrumb/po-breadcrumb-dropdown/po-breadcrumb-dropdown.component.d.ts +14 -11
- package/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.component.d.ts +32 -29
- package/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.service.d.ts +30 -27
- package/lib/components/po-breadcrumb/po-breadcrumb-item/po-breadcrumb-item.component.d.ts +16 -13
- package/lib/components/po-breadcrumb/po-breadcrumb-item.interface.d.ts +31 -31
- package/lib/components/po-breadcrumb/po-breadcrumb.component.d.ts +56 -53
- package/lib/components/po-breadcrumb/po-breadcrumb.interface.d.ts +42 -42
- package/lib/components/po-breadcrumb/po-breadcrumb.module.d.ts +18 -8
- package/lib/components/po-button/index.d.ts +2 -2
- package/lib/components/po-button/po-button-base.component.d.ts +123 -120
- package/lib/components/po-button/po-button.component.d.ts +52 -49
- package/lib/components/po-button/po-button.module.d.ts +15 -7
- package/lib/components/po-button-group/index.d.ts +4 -4
- package/lib/components/po-button-group/po-button-group-base.component.d.ts +56 -53
- package/lib/components/po-button-group/po-button-group-item.interface.d.ts +64 -64
- package/lib/components/po-button-group/po-button-group-toggle.enum.d.ts +15 -15
- package/lib/components/po-button-group/po-button-group.component.d.ts +34 -31
- package/lib/components/po-button-group/po-button-group.module.d.ts +15 -7
- package/lib/components/po-calendar/index.d.ts +3 -3
- package/lib/components/po-calendar/po-calendar-base.component.d.ts +132 -129
- package/lib/components/po-calendar/po-calendar-header/po-calendar-header.component.d.ts +11 -8
- package/lib/components/po-calendar/po-calendar-mode.enum.d.ts +11 -11
- package/lib/components/po-calendar/po-calendar-wrapper/po-calendar-wrapper.component.d.ts +80 -77
- package/lib/components/po-calendar/po-calendar.component.d.ts +56 -53
- package/lib/components/po-calendar/po-calendar.module.d.ts +14 -6
- package/lib/components/po-calendar/services/po-calendar.lang.service.d.ts +19 -16
- package/lib/components/po-calendar/services/po-calendar.service.d.ts +8 -5
- package/lib/components/po-chart/directives/po-resize-observer.directive.d.ts +15 -12
- package/lib/components/po-chart/enums/po-chart-type.enum.d.ts +36 -49
- package/lib/components/po-chart/helpers/po-chart-default-values.constant.d.ts +8 -8
- package/lib/components/po-chart/index.d.ts +6 -7
- package/lib/components/po-chart/interfaces/po-chart-axis-options.interface.d.ts +37 -37
- package/lib/components/po-chart/interfaces/po-chart-bar-coordinates.interface.d.ts +23 -23
- package/lib/components/po-chart/interfaces/po-chart-container-size.interface.d.ts +23 -23
- package/lib/components/po-chart/interfaces/po-chart-label-coordinates.interface.d.ts +19 -19
- package/lib/components/po-chart/interfaces/po-chart-min-max-values.interface.d.ts +19 -19
- package/lib/components/po-chart/interfaces/po-chart-options.interface.d.ts +20 -20
- package/lib/components/po-chart/interfaces/po-chart-path-coordinates.interface.d.ts +23 -23
- package/lib/components/po-chart/interfaces/po-chart-points-coordinates.interface.d.ts +26 -26
- package/lib/components/po-chart/interfaces/po-chart-serie.interface.d.ts +77 -101
- package/lib/components/po-chart/po-chart-base.component.d.ts +154 -152
- package/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-label/po-chart-axis-label.component.d.ts +13 -10
- package/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-path/po-chart-axis-path.component.d.ts +10 -7
- package/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis.component.d.ts +63 -60
- package/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-base.component.d.ts +34 -31
- package/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-path/po-chart-bar-path.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-column/po-chart-column.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-label/po-chart-circular-label.component.d.ts +14 -11
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-circular-path.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-tooltip.directive.d.ts +23 -20
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular.component.d.ts +45 -42
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-donut/po-chart-donut.component.d.ts +19 -16
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-pie/po-chart-pie.component.d.ts +11 -8
- package/lib/components/po-chart/po-chart-container/po-chart-container.component.d.ts +46 -43
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-area/po-chart-area.component.d.ts +23 -20
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line-base.component.d.ts +49 -46
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-path/po-chart-path.component.d.ts +22 -19
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-series-point/po-chart-series-point.component.d.ts +33 -30
- package/lib/components/po-chart/po-chart-legend/po-chart-legend.component.d.ts +10 -7
- package/lib/components/po-chart/po-chart-types/po-chart-dynamic-type.component.d.ts +37 -36
- package/lib/components/po-chart/po-chart.component.d.ts +69 -67
- package/lib/components/po-chart/po-chart.module.d.ts +32 -7
- package/lib/components/po-chart/services/po-chart-maths.service.d.ts +66 -63
- package/lib/components/po-chart/services/po-chart-svg-container.service.d.ts +24 -21
- package/lib/components/po-container/index.d.ts +2 -2
- package/lib/components/po-container/po-container-base.component.d.ts +62 -59
- package/lib/components/po-container/po-container.component.d.ts +27 -24
- package/lib/components/po-container/po-container.module.d.ts +13 -7
- package/lib/components/po-disclaimer/index.d.ts +3 -3
- package/lib/components/po-disclaimer/po-disclaimer-base.component.d.ts +59 -56
- package/lib/components/po-disclaimer/po-disclaimer.component.d.ts +19 -16
- package/lib/components/po-disclaimer/po-disclaimer.interface.d.ts +17 -17
- package/lib/components/po-disclaimer/po-disclaimer.module.d.ts +12 -6
- package/lib/components/po-disclaimer-group/index.d.ts +4 -4
- package/lib/components/po-disclaimer-group/po-disclaimer-group-base.component.d.ts +117 -114
- package/lib/components/po-disclaimer-group/po-disclaimer-group-remove-action.interface.d.ts +18 -18
- package/lib/components/po-disclaimer-group/po-disclaimer-group.component.d.ts +31 -28
- package/lib/components/po-disclaimer-group/po-disclaimer-group.interface.d.ts +78 -78
- package/lib/components/po-disclaimer-group/po-disclaimer-group.module.d.ts +15 -7
- package/lib/components/po-disclaimer-group/po-disclaimer-remove/po-disclaimer-remove.component.d.ts +19 -16
- package/lib/components/po-divider/index.d.ts +2 -2
- package/lib/components/po-divider/po-divider-base.component.d.ts +13 -10
- package/lib/components/po-divider/po-divider.component.d.ts +26 -23
- package/lib/components/po-divider/po-divider.module.d.ts +13 -7
- package/lib/components/po-dropdown/index.d.ts +3 -3
- package/lib/components/po-dropdown/po-dropdown-action.interface.d.ts +11 -11
- package/lib/components/po-dropdown/po-dropdown-base.component.d.ts +57 -54
- package/lib/components/po-dropdown/po-dropdown.component.d.ts +44 -41
- package/lib/components/po-dropdown/po-dropdown.module.d.ts +13 -6
- package/lib/components/po-dynamic/index.d.ts +10 -10
- package/lib/components/po-dynamic/po-dynamic-field-type.enum.d.ts +23 -23
- package/lib/components/po-dynamic/po-dynamic-field.interface.d.ts +130 -130
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-base.component.d.ts +218 -215
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-field.interface.d.ts +249 -249
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-field-internal.interface.d.ts +14 -14
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields-base.component.d.ts +47 -44
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields.component.d.ts +39 -36
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.interface.d.ts +20 -20
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.service.d.ts +11 -8
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-operation/po-dynamic-form-operation.d.ts +10 -10
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-response.interface.d.ts +29 -29
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-changed.interface.d.ts +13 -13
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-validation.interface.d.ts +21 -21
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.interface.d.ts +20 -20
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.service.d.ts +15 -12
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form.component.d.ts +86 -83
- package/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-base.component.d.ts +137 -134
- package/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-field.interface.d.ts +104 -104
- package/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.component.d.ts +39 -36
- package/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.service.d.ts +13 -10
- package/lib/components/po-dynamic/po-dynamic.module.d.ts +16 -2
- package/lib/components/po-dynamic/po-dynamic.util.d.ts +4 -4
- package/lib/components/po-field/index.d.ts +52 -50
- package/lib/components/po-field/po-checkbox/po-checkbox-base.component.d.ts +65 -62
- package/lib/components/po-field/po-checkbox/po-checkbox.component.d.ts +54 -51
- package/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option-view.interface.d.ts +14 -14
- package/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option.interface.d.ts +24 -24
- package/lib/components/po-field/po-checkbox-group/po-checkbox-group-base.component.d.ts +187 -184
- package/lib/components/po-field/po-checkbox-group/po-checkbox-group.component.d.ts +53 -50
- package/lib/components/po-field/po-checkbox-group/po-checkbox-group.module.d.ts +15 -7
- package/lib/components/po-field/po-clean/index.d.ts +1 -0
- package/lib/components/po-field/po-clean/po-clean-base.component.d.ts +33 -30
- package/lib/components/po-field/po-clean/po-clean.component.d.ts +20 -17
- package/lib/components/po-field/po-clean/po-clean.module.d.ts +13 -7
- package/lib/components/po-field/po-combo/interfaces/po-combo-filter.interface.d.ts +27 -27
- package/lib/components/po-field/po-combo/interfaces/po-combo-group.interface.d.ts +11 -11
- package/lib/components/po-field/po-combo/interfaces/po-combo-literals.interface.d.ts +11 -11
- package/lib/components/po-field/po-combo/interfaces/po-combo-option-group.interface.d.ts +14 -14
- package/lib/components/po-field/po-combo/interfaces/po-combo-option.interface.d.ts +21 -21
- package/lib/components/po-field/po-combo/interfaces/po-response.interface.d.ts +11 -11
- package/lib/components/po-field/po-combo/po-combo-base.component.d.ts +412 -409
- package/lib/components/po-field/po-combo/po-combo-filter-mode.enum.d.ts +15 -15
- package/lib/components/po-field/po-combo/po-combo-filter.service.d.ts +31 -28
- package/lib/components/po-field/po-combo/po-combo-option-template/po-combo-option-template.directive.d.ts +73 -70
- package/lib/components/po-field/po-combo/po-combo.component.d.ts +142 -139
- package/lib/components/po-field/po-datepicker/enums/po-datepicker-iso-format.enum.d.ts +15 -15
- package/lib/components/po-field/po-datepicker/po-datepicker-base.component.d.ts +226 -223
- package/lib/components/po-field/po-datepicker/po-datepicker.component.d.ts +104 -101
- package/lib/components/po-field/po-datepicker/po-datepicker.module.d.ts +17 -7
- package/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range-literals.interface.d.ts +17 -17
- package/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range.interface.d.ts +16 -16
- package/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.d.ts +272 -269
- package/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.d.ts +128 -125
- package/lib/components/po-field/po-datepicker-range/po-datepicker-range.literals.d.ts +7 -7
- package/lib/components/po-field/po-decimal/po-decimal.component.d.ts +183 -180
- package/lib/components/po-field/po-email/po-email.component.d.ts +45 -42
- package/lib/components/po-field/po-field-container/index.d.ts +3 -0
- package/lib/components/po-field/po-field-container/po-field-container-bottom/po-field-container-bottom.component.d.ts +18 -15
- package/lib/components/po-field/po-field-container/po-field-container-literals.d.ts +14 -14
- package/lib/components/po-field/po-field-container/po-field-container.component.d.ts +21 -18
- package/lib/components/po-field/po-field-container/po-field-container.module.d.ts +14 -7
- package/lib/components/po-field/po-field-validate.model.d.ts +41 -38
- package/lib/components/po-field/po-field.model.d.ts +54 -51
- package/lib/components/po-field/po-field.module.d.ts +69 -12
- package/lib/components/po-field/po-input/po-input-base.component.d.ts +268 -265
- package/lib/components/po-field/po-input/po-input.component.d.ts +32 -29
- package/lib/components/po-field/po-input/po-mask.d.ts +49 -49
- package/lib/components/po-field/po-input-generic/po-input-generic.d.ts +38 -35
- package/lib/components/po-field/po-login/po-login.component.d.ts +37 -34
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-advanced-filter.interface.d.ts +8 -8
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-column.interface.d.ts +44 -44
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-filter.interface.d.ts +29 -29
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-filtered-items-params.interface.d.ts +40 -40
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-literals.interface.d.ts +40 -40
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-response-api.interface.d.ts +8 -8
- package/lib/components/po-field/po-lookup/po-lookup-base.component.d.ts +390 -387
- package/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal-base.component.d.ts +122 -119
- package/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal.component.d.ts +44 -41
- package/lib/components/po-field/po-lookup/po-lookup.component.d.ts +117 -113
- package/lib/components/po-field/po-lookup/services/po-lookup-filter.service.d.ts +28 -25
- package/lib/components/po-field/po-lookup/services/po-lookup-modal.service.d.ts +47 -44
- package/lib/components/po-field/po-multiselect/po-multiselect-base.component.d.ts +348 -345
- package/lib/components/po-field/po-multiselect/po-multiselect-dropdown/po-multiselect-dropdown.component.d.ts +62 -57
- package/lib/components/po-field/po-multiselect/po-multiselect-filter-mode.enum.d.ts +15 -15
- package/lib/components/po-field/po-multiselect/po-multiselect-filter.interface.d.ts +28 -28
- package/lib/components/po-field/po-multiselect/po-multiselect-filter.service.d.ts +21 -18
- package/lib/components/po-field/po-multiselect/po-multiselect-item/po-multiselect-item.component.d.ts +20 -17
- package/lib/components/po-field/po-multiselect/po-multiselect-literals.interface.d.ts +15 -15
- package/lib/components/po-field/po-multiselect/po-multiselect-option.interface.d.ts +13 -13
- package/lib/components/po-field/po-multiselect/po-multiselect-search/po-multiselect-search.component.d.ts +39 -34
- package/lib/components/po-field/po-multiselect/po-multiselect.component.d.ts +110 -107
- package/lib/components/po-field/po-number/po-number-base.component.d.ts +21 -18
- package/lib/components/po-field/po-number/po-number.component.d.ts +62 -59
- package/lib/components/po-field/po-password/po-password.component.d.ts +51 -48
- package/lib/components/po-field/po-radio-group/po-radio-group-base.component.d.ts +122 -119
- package/lib/components/po-field/po-radio-group/po-radio-group-option.interface.d.ts +15 -15
- package/lib/components/po-field/po-radio-group/po-radio-group.component.d.ts +68 -64
- package/lib/components/po-field/po-rich-text/interfaces/po-rich-text-toolbar-button-group-item.interface.d.ts +4 -4
- package/lib/components/po-field/po-rich-text/po-rich-text-base.component.d.ts +147 -144
- package/lib/components/po-field/po-rich-text/po-rich-text-body/po-rich-text-body.component.d.ts +55 -52
- package/lib/components/po-field/po-rich-text/po-rich-text-image-modal/po-rich-text-image-modal.component.d.ts +37 -34
- package/lib/components/po-field/po-rich-text/po-rich-text-link-modal/po-rich-text-link-modal.component.d.ts +48 -45
- package/lib/components/po-field/po-rich-text/po-rich-text-literals.d.ts +82 -82
- package/lib/components/po-field/po-rich-text/po-rich-text-toolbar/po-rich-text-toolbar.component.d.ts +48 -45
- package/lib/components/po-field/po-rich-text/po-rich-text.component.d.ts +63 -60
- package/lib/components/po-field/po-rich-text/po-rich-text.service.d.ts +8 -5
- package/lib/components/po-field/po-select/po-select-option-template/po-select-option-template.directive.d.ts +51 -48
- package/lib/components/po-field/po-select/po-select-option.interface.d.ts +13 -13
- package/lib/components/po-field/po-select/po-select.component.d.ts +161 -158
- package/lib/components/po-field/po-switch/po-switch-label-position.enum.d.ts +13 -13
- package/lib/components/po-field/po-switch/po-switch.component.d.ts +105 -102
- package/lib/components/po-field/po-textarea/po-textarea-base.component.d.ts +181 -178
- package/lib/components/po-field/po-textarea/po-textarea.component.d.ts +62 -59
- package/lib/components/po-field/po-upload/interfaces/po-upload-file-restriction.interface.d.ts +37 -37
- package/lib/components/po-field/po-upload/interfaces/po-upload-literals.interface.d.ts +45 -45
- package/lib/components/po-field/po-upload/po-upload-base.component.d.ts +336 -333
- package/lib/components/po-field/po-upload/po-upload-base.service.d.ts +35 -32
- package/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area/po-upload-drag-drop-area.component.d.ts +17 -14
- package/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area-overlay/po-upload-drag-drop-area-overlay.component.d.ts +17 -14
- package/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.component.d.ts +27 -24
- package/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.directive.d.ts +35 -32
- package/lib/components/po-field/po-upload/po-upload-file-restrictions/po-upload-file-restrictions.component.d.ts +24 -21
- package/lib/components/po-field/po-upload/po-upload-file.d.ts +15 -15
- package/lib/components/po-field/po-upload/po-upload-status.enum.d.ts +6 -6
- package/lib/components/po-field/po-upload/po-upload.component.d.ts +110 -106
- package/lib/components/po-field/po-upload/po-upload.service.d.ts +6 -3
- package/lib/components/po-field/po-url/po-url.component.d.ts +44 -41
- package/lib/components/po-field/validators.d.ts +7 -7
- package/lib/components/po-gauge/index.d.ts +3 -3
- package/lib/components/po-gauge/interfaces/po-gauge-coordinates.interface.d.ts +19 -19
- package/lib/components/po-gauge/interfaces/po-gauge-ranges.interface.d.ts +44 -44
- package/lib/components/po-gauge/interfaces/po-gauge-svg-container.interface.d.ts +15 -15
- package/lib/components/po-gauge/po-gauge-base.component.d.ts +101 -98
- package/lib/components/po-gauge/po-gauge-default-values.constant.d.ts +5 -5
- package/lib/components/po-gauge/po-gauge-description/po-gauge-description.component.d.ts +14 -11
- package/lib/components/po-gauge/po-gauge-legend/po-gauge-legend.component.d.ts +12 -9
- package/lib/components/po-gauge/po-gauge-svg/po-gauge-path/po-gauge-path.component.d.ts +12 -9
- package/lib/components/po-gauge/po-gauge-svg/po-gauge-pointer/po-gauge-pointer.component.d.ts +18 -15
- package/lib/components/po-gauge/po-gauge-svg/po-gauge-svg.component.d.ts +35 -32
- package/lib/components/po-gauge/po-gauge-title/po-gauge-title.component.d.ts +6 -3
- package/lib/components/po-gauge/po-gauge.component.d.ts +40 -37
- package/lib/components/po-gauge/po-gauge.module.d.ts +19 -6
- package/lib/components/po-grid/index.d.ts +3 -3
- package/lib/components/po-grid/po-grid-cell/po-grid-cell.component.d.ts +30 -27
- package/lib/components/po-grid/po-grid-cell-action/po-grid-cell-action.component.d.ts +9 -6
- package/lib/components/po-grid/po-grid-head/po-grid-head.component.d.ts +13 -10
- package/lib/components/po-grid/po-grid-row-actions.interface.d.ts +86 -86
- package/lib/components/po-grid/po-grid.component.d.ts +83 -80
- package/lib/components/po-grid/po-grid.module.d.ts +18 -7
- package/lib/components/po-icon/index.d.ts +2 -2
- package/lib/components/po-icon/po-icon.component.d.ts +42 -39
- package/lib/components/po-icon/po-icon.module.d.ts +13 -7
- package/lib/components/po-info/index.d.ts +3 -3
- package/lib/components/po-info/po-info-base.component.d.ts +49 -46
- package/lib/components/po-info/po-info-orietation.enum.d.ts +13 -13
- package/lib/components/po-info/po-info.component.d.ts +27 -24
- package/lib/components/po-info/po-info.module.d.ts +14 -7
- package/lib/components/po-list-view/index.d.ts +6 -6
- package/lib/components/po-list-view/interfaces/po-list-view-action.interface.d.ts +15 -15
- package/lib/components/po-list-view/interfaces/po-list-view-literals.interface.d.ts +19 -19
- package/lib/components/po-list-view/po-list-view-base.component.d.ts +168 -165
- package/lib/components/po-list-view/po-list-view-content-template/po-list-view-content-template.directive.d.ts +100 -97
- package/lib/components/po-list-view/po-list-view-detail-template/po-list-view-detail-template.directive.d.ts +63 -60
- package/lib/components/po-list-view/po-list-view.component.d.ts +56 -53
- package/lib/components/po-list-view/po-list-view.module.d.ts +44 -33
- package/lib/components/po-loading/index.d.ts +4 -4
- package/lib/components/po-loading/po-loading-base.component.d.ts +17 -14
- package/lib/components/po-loading/po-loading-icon/po-loading-icon.component.d.ts +25 -22
- package/lib/components/po-loading/po-loading-overlay/interfaces/po-loading-overlay-literals.interface.d.ts +13 -13
- package/lib/components/po-loading/po-loading-overlay/po-loading-overlay-base.component.d.ts +62 -59
- package/lib/components/po-loading/po-loading-overlay/po-loading-overlay.component.d.ts +31 -28
- package/lib/components/po-loading/po-loading.component.d.ts +11 -8
- package/lib/components/po-loading/po-loading.module.d.ts +17 -8
- package/lib/components/po-menu/index.d.ts +8 -8
- package/lib/components/po-menu/po-menu-base.component.d.ts +185 -182
- package/lib/components/po-menu/po-menu-filter/po-menu-filter-literals.interface.d.ts +14 -14
- package/lib/components/po-menu/po-menu-filter/po-menu-filter.component.d.ts +28 -25
- package/lib/components/po-menu/po-menu-filter/po-menu-filter.interface.d.ts +19 -19
- package/lib/components/po-menu/po-menu-header-template/po-menu-header-template.directive.d.ts +43 -40
- package/lib/components/po-menu/po-menu-item/po-menu-item-badge.interface.d.ts +49 -49
- package/lib/components/po-menu/po-menu-item/po-menu-item-filtered.interface.d.ts +13 -13
- package/lib/components/po-menu/po-menu-item/po-menu-item.component.d.ts +57 -54
- package/lib/components/po-menu/po-menu-item.interface.d.ts +78 -78
- package/lib/components/po-menu/po-menu.component.d.ts +181 -178
- package/lib/components/po-menu/po-menu.module.d.ts +21 -7
- package/lib/components/po-menu/services/po-menu-global.service.d.ts +17 -14
- package/lib/components/po-menu/services/po-menu-items.service.d.ts +19 -16
- package/lib/components/po-menu/services/po-menu.service.d.ts +23 -20
- package/lib/components/po-menu-panel/index.d.ts +3 -3
- package/lib/components/po-menu-panel/po-menu-panel-base.component.d.ts +36 -33
- package/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item-internal.interface.d.ts +16 -16
- package/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.component.d.ts +26 -23
- package/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.interface.d.ts +18 -18
- package/lib/components/po-menu-panel/po-menu-panel.component.d.ts +94 -91
- package/lib/components/po-menu-panel/po-menu-panel.module.d.ts +17 -7
- package/lib/components/po-menu-panel/services/po-menu-panel-items.service.d.ts +19 -16
- package/lib/components/po-modal/index.d.ts +4 -4
- package/lib/components/po-modal/po-modal-action.interface.d.ts +23 -23
- package/lib/components/po-modal/po-modal-base.component.d.ts +82 -79
- package/lib/components/po-modal/po-modal-footer/po-modal-footer.component.d.ts +33 -30
- package/lib/components/po-modal/po-modal.component.d.ts +49 -46
- package/lib/components/po-modal/po-modal.literals.d.ts +14 -14
- package/lib/components/po-modal/po-modal.module.d.ts +14 -6
- package/lib/components/po-navbar/index.d.ts +4 -4
- package/lib/components/po-navbar/interfaces/po-navbar-icon-action.interface.d.ts +55 -55
- package/lib/components/po-navbar/interfaces/po-navbar-item.interface.d.ts +21 -21
- package/lib/components/po-navbar/interfaces/po-navbar-literals.interface.d.ts +11 -11
- package/lib/components/po-navbar/po-navbar-actions/po-navbar-action/po-navbar-action.component.d.ts +16 -13
- package/lib/components/po-navbar/po-navbar-actions/po-navbar-action-popup/po-navbar-action-popup.component.d.ts +8 -5
- package/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.component.d.ts +9 -6
- package/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.module.d.ts +13 -2
- package/lib/components/po-navbar/po-navbar-base.component.d.ts +102 -129
- package/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation-icon/po-navbar-item-navigation-icon.component.d.ts +9 -6
- package/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.component.d.ts +9 -6
- package/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.module.d.ts +10 -2
- package/lib/components/po-navbar/po-navbar-items/po-navbar-item/po-navbar-item.component.d.ts +14 -11
- package/lib/components/po-navbar/po-navbar-items/po-navbar-items.component.d.ts +20 -17
- package/lib/components/po-navbar/po-navbar-items/po-navbar-items.module.d.ts +10 -2
- package/lib/components/po-navbar/po-navbar-logo/po-navbar-logo.component.d.ts +6 -3
- package/lib/components/po-navbar/po-navbar.component.d.ts +60 -57
- package/lib/components/po-navbar/po-navbar.module.d.ts +45 -33
- package/lib/components/po-page/index.d.ts +14 -14
- package/lib/components/po-page/po-page-action.interface.d.ts +16 -16
- package/lib/components/po-page/po-page-base.component.d.ts +22 -22
- package/lib/components/po-page/po-page-content/po-page-content-base.component.d.ts +10 -10
- package/lib/components/po-page/po-page-content/po-page-content.component.d.ts +23 -20
- package/lib/components/po-page/po-page-default/po-page-default-base.component.d.ts +78 -75
- package/lib/components/po-page/po-page-default/po-page-default-literals.interface.d.ts +11 -11
- package/lib/components/po-page/po-page-default/po-page-default.component.d.ts +48 -45
- package/lib/components/po-page/po-page-default/po-page-default.interface.d.ts +13 -13
- package/lib/components/po-page/po-page-detail/po-page-detail-base.component.d.ts +103 -100
- package/lib/components/po-page/po-page-detail/po-page-detail-literals.interface.d.ts +15 -15
- package/lib/components/po-page/po-page-detail/po-page-detail.component.d.ts +31 -28
- package/lib/components/po-page/po-page-edit/po-page-edit-base.component.d.ts +109 -106
- package/lib/components/po-page/po-page-edit/po-page-edit-literals.interface.d.ts +15 -15
- package/lib/components/po-page/po-page-edit/po-page-edit.component.d.ts +32 -29
- package/lib/components/po-page/po-page-filter.interface.d.ts +26 -26
- package/lib/components/po-page/po-page-header/po-page-header-base.component.d.ts +20 -17
- package/lib/components/po-page/po-page-header/po-page-header.component.d.ts +10 -7
- package/lib/components/po-page/po-page-list/po-page-list-base.component.d.ts +111 -108
- package/lib/components/po-page/po-page-list/po-page-list-literals.interface.d.ts +11 -11
- package/lib/components/po-page/po-page-list/po-page-list.component.d.ts +74 -71
- package/lib/components/po-page/po-page-slide/po-page-slide-base.component.d.ts +114 -111
- package/lib/components/po-page/po-page-slide/po-page-slide.component.d.ts +45 -42
- package/lib/components/po-page/po-page.component.d.ts +11 -8
- package/lib/components/po-page/po-page.interface.d.ts +14 -14
- package/lib/components/po-page/po-page.module.d.ts +29 -7
- package/lib/components/po-popover/index.d.ts +2 -2
- package/lib/components/po-popover/po-popover-base.component.d.ts +134 -131
- package/lib/components/po-popover/po-popover.component.d.ts +50 -47
- package/lib/components/po-popover/po-popover.module.d.ts +12 -6
- package/lib/components/po-popup/index.d.ts +3 -3
- package/lib/components/po-popup/po-popup-action.interface.d.ts +91 -91
- package/lib/components/po-popup/po-popup-base.component.d.ts +154 -151
- package/lib/components/po-popup/po-popup.component.d.ts +72 -69
- package/lib/components/po-popup/po-popup.module.d.ts +14 -7
- package/lib/components/po-progress/enums/po-progress-status.enum.d.ts +15 -15
- package/lib/components/po-progress/index.d.ts +3 -3
- package/lib/components/po-progress/po-progress-bar/po-progress-bar.component.d.ts +8 -5
- package/lib/components/po-progress/po-progress-base.component.d.ts +106 -103
- package/lib/components/po-progress/po-progress.component.d.ts +31 -28
- package/lib/components/po-progress/po-progress.module.d.ts +14 -7
- package/lib/components/po-slide/directives/po-slide-content-template.directive.d.ts +51 -48
- package/lib/components/po-slide/index.d.ts +4 -4
- package/lib/components/po-slide/interfaces/po-slide-item.interface.d.ts +17 -17
- package/lib/components/po-slide/po-slide-base.component.d.ts +78 -75
- package/lib/components/po-slide/po-slide-circles/po-slide-circles.component.d.ts +19 -16
- package/lib/components/po-slide/po-slide-control/po-slide-control.component.d.ts +17 -14
- package/lib/components/po-slide/po-slide-item/po-slide-item.component.d.ts +31 -28
- package/lib/components/po-slide/po-slide.component.d.ts +113 -110
- package/lib/components/po-slide/po-slide.module.d.ts +45 -33
- package/lib/components/po-stepper/enums/po-stepper-orientation.enum.d.ts +16 -16
- package/lib/components/po-stepper/enums/po-stepper-status.enum.d.ts +21 -21
- package/lib/components/po-stepper/index.d.ts +6 -6
- package/lib/components/po-stepper/po-step/po-step.component.d.ts +79 -76
- package/lib/components/po-stepper/po-stepper-base.component.d.ts +135 -132
- package/lib/components/po-stepper/po-stepper-circle/po-stepper-circle.component.d.ts +23 -20
- package/lib/components/po-stepper/po-stepper-item.interface.d.ts +14 -14
- package/lib/components/po-stepper/po-stepper-label/po-stepper-label.component.d.ts +13 -10
- package/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.d.ts +40 -37
- package/lib/components/po-stepper/po-stepper.component.d.ts +83 -80
- package/lib/components/po-stepper/po-stepper.module.d.ts +16 -6
- package/lib/components/po-table/enums/po-table-column-sort-type.enum.d.ts +12 -12
- package/lib/components/po-table/enums/po-table-row-template-arrow-direction.enum.d.ts +12 -12
- package/lib/components/po-table/index.d.ts +17 -17
- package/lib/components/po-table/interfaces/po-table-action.interface.d.ts +8 -8
- package/lib/components/po-table/interfaces/po-table-boolean.interface.d.ts +13 -13
- package/lib/components/po-table/interfaces/po-table-column-sort.interface.d.ts +15 -15
- package/lib/components/po-table/interfaces/po-table-column.interface.d.ts +247 -242
- package/lib/components/po-table/interfaces/po-table-filter.interface.d.ts +16 -16
- package/lib/components/po-table/interfaces/po-table-filtered-items-params.interface.d.ts +33 -33
- package/lib/components/po-table/interfaces/po-table-literals.interface.d.ts +25 -25
- package/lib/components/po-table/interfaces/po-table-response-api.interface.d.ts +7 -7
- package/lib/components/po-table/po-table-base.component.d.ts +514 -501
- package/lib/components/po-table/po-table-cell-template/po-table-cell-template.directive.d.ts +74 -71
- package/lib/components/po-table/po-table-column-icon/po-table-column-icon.component.d.ts +29 -26
- package/lib/components/po-table/po-table-column-icon/po-table-column-icon.interface.d.ts +80 -80
- package/lib/components/po-table/po-table-column-label/po-table-column-label.component.d.ts +20 -17
- package/lib/components/po-table/po-table-column-label/po-table-column-label.interface.d.ts +42 -42
- package/lib/components/po-table/po-table-column-link/po-table-column-link.component.d.ts +18 -15
- package/lib/components/po-table/po-table-column-manager/po-table-column-manager.component.d.ts +77 -74
- package/lib/components/po-table/po-table-column-template/po-table-column-template.directive.d.ts +89 -86
- package/lib/components/po-table/po-table-detail/po-table-detail-column.interface.d.ts +61 -61
- package/lib/components/po-table/po-table-detail/po-table-detail.component.d.ts +47 -44
- package/lib/components/po-table/po-table-detail/po-table-detail.interface.d.ts +36 -36
- package/lib/components/po-table/po-table-icon/po-table-icon.component.d.ts +30 -27
- package/lib/components/po-table/po-table-row-template/po-table-row-template.directive.d.ts +123 -120
- package/lib/components/po-table/po-table-show-subtitle/po-table-show-subtitle.component.d.ts +17 -14
- package/lib/components/po-table/po-table-subtitle-circle/po-table-subtitle-circle.component.d.ts +22 -19
- package/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-column.interface.d.ts +39 -39
- package/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-footer.component.d.ts +34 -31
- package/lib/components/po-table/po-table.component.d.ts +233 -229
- package/lib/components/po-table/po-table.module.d.ts +36 -6
- package/lib/components/po-table/services/po-table.service.d.ts +17 -14
- package/lib/components/po-tabs/index.d.ts +4 -4
- package/lib/components/po-tabs/po-tab/po-tab-base.component.d.ts +60 -57
- package/lib/components/po-tabs/po-tab/po-tab.component.d.ts +14 -11
- package/lib/components/po-tabs/po-tab/po-tab.interface.d.ts +45 -45
- package/lib/components/po-tabs/po-tab-button/po-tab-button.component.d.ts +32 -29
- package/lib/components/po-tabs/po-tab-dropdown/po-tab-dropdown.component.d.ts +26 -23
- package/lib/components/po-tabs/po-tabs-base.component.d.ts +37 -34
- package/lib/components/po-tabs/po-tabs.component.d.ts +53 -50
- package/lib/components/po-tabs/po-tabs.module.d.ts +16 -6
- package/lib/components/po-tag/enums/po-tag-icon.enum.d.ts +17 -17
- package/lib/components/po-tag/enums/po-tag-orientation.enum.d.ts +13 -13
- package/lib/components/po-tag/enums/po-tag-type.enum.d.ts +17 -17
- package/lib/components/po-tag/index.d.ts +4 -4
- package/lib/components/po-tag/interfaces/po-tag-item.interface.d.ts +13 -13
- package/lib/components/po-tag/po-tag-base.component.d.ts +147 -144
- package/lib/components/po-tag/po-tag.component.d.ts +35 -32
- package/lib/components/po-tag/po-tag.module.d.ts +14 -7
- package/lib/components/po-toolbar/index.d.ts +4 -4
- package/lib/components/po-toolbar/po-toolbar-action.interface.d.ts +8 -8
- package/lib/components/po-toolbar/po-toolbar-actions/po-toolbar-actions.component.d.ts +22 -19
- package/lib/components/po-toolbar/po-toolbar-base.component.d.ts +78 -75
- package/lib/components/po-toolbar/po-toolbar-notification/po-toolbar-notification.component.d.ts +25 -22
- package/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.component.d.ts +21 -18
- package/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.interface.d.ts +15 -15
- package/lib/components/po-toolbar/po-toolbar.component.d.ts +32 -29
- package/lib/components/po-toolbar/po-toolbar.module.d.ts +20 -8
- package/lib/components/po-tree-view/index.d.ts +3 -3
- package/lib/components/po-tree-view/po-tree-view-base.component.d.ts +89 -86
- package/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.component.d.ts +15 -12
- package/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.interface.d.ts +24 -24
- package/lib/components/po-tree-view/po-tree-view-item-header/po-tree-view-item-header.component.d.ts +13 -10
- package/lib/components/po-tree-view/po-tree-view.component.d.ts +38 -35
- package/lib/components/po-tree-view/po-tree-view.module.d.ts +44 -33
- package/lib/components/po-tree-view/services/po-tree-view.service.d.ts +12 -9
- package/lib/components/po-widget/index.d.ts +2 -2
- package/lib/components/po-widget/po-widget-base.component.d.ts +165 -162
- package/lib/components/po-widget/po-widget.component.d.ts +44 -41
- package/lib/components/po-widget/po-widget.module.d.ts +14 -7
- package/lib/decorators/index.d.ts +2 -2
- package/lib/decorators/input-boolean/input-boolean.decorator.d.ts +10 -10
- package/lib/decorators/input-required/input-required.decorator.d.ts +22 -22
- package/lib/decorators/property-decorator.interface.d.ts +13 -13
- package/lib/decorators/utils-decorators.d.ts +27 -27
- package/lib/directives/directives.module.d.ts +7 -2
- package/lib/directives/index.d.ts +2 -2
- package/lib/directives/po-tooltip/index.d.ts +2 -2
- package/lib/directives/po-tooltip/po-tooltip-base.directive.d.ts +70 -67
- package/lib/directives/po-tooltip/po-tooltip-control-position.service.d.ts +6 -3
- package/lib/directives/po-tooltip/po-tooltip.directive.d.ts +55 -52
- package/lib/directives/po-tooltip/po-tooltip.module.d.ts +13 -7
- package/lib/enums/po-color-palette.enum.d.ts +33 -33
- package/lib/enums/po-key-code.enum.d.ts +29 -29
- package/lib/guards/guards.module.d.ts +6 -2
- package/lib/guards/index.d.ts +1 -1
- package/lib/index.d.ts +9 -9
- package/lib/interceptors/index.d.ts +3 -3
- package/lib/interceptors/interceptors.module.d.ts +8 -2
- package/lib/interceptors/po-http-interceptor/index.d.ts +2 -2
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-base.service.d.ts +154 -154
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail-literals.interface.d.ts +6 -6
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.component.d.ts +42 -39
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.interface.d.ts +23 -23
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-literals.d.ts +6 -6
- package/lib/interceptors/po-http-interceptor/po-http-interceptor.module.d.ts +12 -2
- package/lib/interceptors/po-http-interceptor/po-http-interceptor.service.d.ts +19 -16
- package/lib/interceptors/po-http-request/index.d.ts +2 -2
- package/lib/interceptors/po-http-request/po-http-request-control-service.d.ts +15 -12
- package/lib/interceptors/po-http-request/po-http-request-interceptor.service.d.ts +105 -102
- package/lib/interceptors/po-http-request/po-http-request.module.d.ts +7 -2
- package/lib/interfaces/index.d.ts +1 -1
- package/lib/interfaces/po-http/po-response-api.interface.d.ts +13 -13
- package/lib/pipes/index.d.ts +2 -2
- package/lib/pipes/pipes.module.d.ts +7 -2
- package/lib/pipes/po-time/index.d.ts +2 -2
- package/lib/pipes/po-time/po-time.module.d.ts +12 -7
- package/lib/pipes/po-time/po-time.pipe.d.ts +17 -14
- package/lib/po.module.d.ts +12 -2
- package/lib/services/index.d.ts +10 -10
- package/lib/services/po-active-overlay/index.d.ts +2 -2
- package/lib/services/po-active-overlay/po-active-overlay.module.d.ts +11 -7
- package/lib/services/po-active-overlay/po-active-overlay.service.d.ts +6 -3
- package/lib/services/po-color/po-color.service.d.ts +19 -16
- package/lib/services/po-color/po-colors.constant.d.ts +2 -2
- package/lib/services/po-color-palette/index.d.ts +2 -2
- package/lib/services/po-color-palette/po-color-palette.module.d.ts +11 -7
- package/lib/services/po-color-palette/po-color-palette.service.d.ts +10 -7
- package/lib/services/po-component-injector/index.d.ts +2 -2
- package/lib/services/po-component-injector/po-component-injector.module.d.ts +6 -2
- package/lib/services/po-component-injector/po-component-injector.service.d.ts +12 -9
- package/lib/services/po-control-position/index.d.ts +2 -2
- package/lib/services/po-control-position/po-control-position.constants.d.ts +1 -1
- package/lib/services/po-control-position/po-control-position.module.d.ts +11 -7
- package/lib/services/po-control-position/po-control-position.service.d.ts +59 -56
- package/lib/services/po-date/index.d.ts +2 -2
- package/lib/services/po-date/po-date.module.d.ts +11 -7
- package/lib/services/po-date/po-date.service.d.ts +97 -94
- package/lib/services/po-dialog/index.d.ts +7 -7
- package/lib/services/po-dialog/interfaces/po-dialog-alert-literals.interface.d.ts +11 -11
- package/lib/services/po-dialog/interfaces/po-dialog-confirm-literals.interface.d.ts +13 -13
- package/lib/services/po-dialog/interfaces/po-dialog.interface.d.ts +82 -82
- package/lib/services/po-dialog/po-dialog-base.service.d.ts +15 -15
- package/lib/services/po-dialog/po-dialog.component.d.ts +51 -48
- package/lib/services/po-dialog/po-dialog.enum.d.ts +12 -12
- package/lib/services/po-dialog/po-dialog.module.d.ts +8 -2
- package/lib/services/po-dialog/po-dialog.service.d.ts +32 -29
- package/lib/services/po-i18n/index.d.ts +7 -7
- package/lib/services/po-i18n/interfaces/po-i18n-config-default.interface.d.ts +35 -35
- package/lib/services/po-i18n/interfaces/po-i18n-config.interface.d.ts +78 -78
- package/lib/services/po-i18n/interfaces/po-i18n-literals.interface.d.ts +15 -15
- package/lib/services/po-i18n/po-i18n-base.pipe.d.ts +29 -29
- package/lib/services/po-i18n/po-i18n-base.service.d.ts +212 -212
- package/lib/services/po-i18n/po-i18n-config-injection-token.d.ts +3 -3
- package/lib/services/po-i18n/po-i18n.module.d.ts +156 -150
- package/lib/services/po-i18n/po-i18n.pipe.d.ts +18 -15
- package/lib/services/po-i18n/po-i18n.service.d.ts +13 -10
- package/lib/services/po-language/index.d.ts +4 -4
- package/lib/services/po-language/po-language.constant.d.ts +58 -58
- package/lib/services/po-language/po-language.interface.d.ts +43 -43
- package/lib/services/po-language/po-language.module.d.ts +11 -7
- package/lib/services/po-language/po-language.service.d.ts +98 -95
- package/lib/services/po-notification/index.d.ts +5 -5
- package/lib/services/po-notification/po-notification-base.service.d.ts +84 -84
- package/lib/services/po-notification/po-notification.interface.d.ts +33 -33
- package/lib/services/po-notification/po-notification.module.d.ts +8 -2
- package/lib/services/po-notification/po-notification.service.d.ts +34 -31
- package/lib/services/po-notification/po-toaster/po-toaster-base.component.d.ts +41 -41
- package/lib/services/po-notification/po-toaster/po-toaster-orientation.enum.d.ts +11 -11
- package/lib/services/po-notification/po-toaster/po-toaster-type.enum.d.ts +15 -15
- package/lib/services/po-notification/po-toaster/po-toaster.component.d.ts +36 -33
- package/lib/services/po-notification/po-toaster/po-toaster.interface.d.ts +15 -15
- package/lib/services/services.module.d.ts +15 -2
- package/lib/utils/util.d.ts +217 -217
- package/package.json +37 -22
- package/po-ui-ng-components-6.2.0.tgz +0 -0
- package/po-ui-ng-components.d.ts +5 -205
- package/public-api.d.ts +1 -1
- package/schematics/README.md +74 -74
- package/schematics/collection.json +40 -40
- package/schematics/migrations.json +30 -25
- package/schematics/ng-add/index.d.ts +8 -8
- package/schematics/ng-add/index.js +25 -25
- package/schematics/ng-add/index.js.map +1 -1
- package/schematics/ng-add/index.spec.d.ts +1 -1
- package/schematics/ng-add/index.spec.js +90 -91
- package/schematics/ng-add/index.spec.js.map +1 -1
- package/schematics/ng-add/schema.json +16 -16
- package/schematics/ng-add/setup-project.d.ts +8 -8
- package/schematics/ng-add/setup-project.js +55 -55
- package/schematics/ng-add/setup-project.js.map +1 -1
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__-routing.module.ts.template +14 -14
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__.component.html.template +3 -3
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__.component.spec.ts.template +32 -32
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__.component.ts.template +18 -18
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__.module.ts.template +19 -19
- package/schematics/ng-generate/po-page-default/index.d.ts +4 -4
- package/schematics/ng-generate/po-page-default/index.js +12 -12
- package/schematics/ng-generate/po-page-default/index.js.map +1 -1
- package/schematics/ng-generate/po-page-default/index.spec.d.ts +1 -1
- package/schematics/ng-generate/po-page-default/index.spec.js +120 -120
- package/schematics/ng-generate/po-page-default/index.spec.js.map +1 -1
- package/schematics/ng-generate/po-page-default/schema.d.ts +3 -3
- package/schematics/ng-generate/po-page-default/schema.js +2 -2
- package/schematics/ng-generate/po-page-default/schema.json +67 -67
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__-routing.module.ts.template +14 -14
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__.component.html.template +8 -8
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__.component.spec.ts.template +32 -32
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__.component.ts.template +26 -26
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__.module.ts.template +19 -19
- package/schematics/ng-generate/po-page-detail/index.d.ts +4 -4
- package/schematics/ng-generate/po-page-detail/index.js +12 -12
- package/schematics/ng-generate/po-page-detail/index.js.map +1 -1
- package/schematics/ng-generate/po-page-detail/index.spec.d.ts +1 -1
- package/schematics/ng-generate/po-page-detail/index.spec.js +120 -120
- package/schematics/ng-generate/po-page-detail/index.spec.js.map +1 -1
- package/schematics/ng-generate/po-page-detail/schema.d.ts +3 -3
- package/schematics/ng-generate/po-page-detail/schema.js +2 -2
- package/schematics/ng-generate/po-page-detail/schema.json +67 -67
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__-routing.module.ts.template +14 -14
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__.component.html.template +8 -8
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__.component.spec.ts.template +32 -32
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__.component.ts.template +26 -26
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__.module.ts.template +19 -19
- package/schematics/ng-generate/po-page-edit/index.d.ts +4 -4
- package/schematics/ng-generate/po-page-edit/index.js +12 -12
- package/schematics/ng-generate/po-page-edit/index.js.map +1 -1
- package/schematics/ng-generate/po-page-edit/index.spec.d.ts +1 -1
- package/schematics/ng-generate/po-page-edit/index.spec.js +120 -120
- package/schematics/ng-generate/po-page-edit/index.spec.js.map +1 -1
- package/schematics/ng-generate/po-page-edit/schema.d.ts +3 -3
- package/schematics/ng-generate/po-page-edit/schema.js +2 -2
- package/schematics/ng-generate/po-page-edit/schema.json +67 -67
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__-routing.module.ts.template +14 -14
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__.component.html.template +28 -28
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__.component.spec.ts.template +35 -35
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__.component.ts.template +33 -33
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__.module.ts.template +19 -19
- package/schematics/ng-generate/po-page-list/index.d.ts +7 -7
- package/schematics/ng-generate/po-page-list/index.js +15 -15
- package/schematics/ng-generate/po-page-list/index.js.map +1 -1
- package/schematics/ng-generate/po-page-list/index.spec.d.ts +1 -1
- package/schematics/ng-generate/po-page-list/index.spec.js +120 -120
- package/schematics/ng-generate/po-page-list/index.spec.js.map +1 -1
- package/schematics/ng-generate/po-page-list/schema.d.ts +5 -5
- package/schematics/ng-generate/po-page-list/schema.js +2 -2
- package/schematics/ng-generate/po-page-list/schema.json +78 -78
- package/schematics/ng-generate/sidemenu/files/app.component.html.template +9 -9
- package/schematics/ng-generate/sidemenu/files/app.component.spec.ts.template +30 -30
- package/schematics/ng-generate/sidemenu/files/app.component.ts.template +20 -20
- package/schematics/ng-generate/sidemenu/index.d.ts +8 -8
- package/schematics/ng-generate/sidemenu/index.js +51 -51
- package/schematics/ng-generate/sidemenu/index.js.map +1 -1
- package/schematics/ng-generate/sidemenu/index.spec.d.ts +1 -1
- package/schematics/ng-generate/sidemenu/index.spec.js +62 -62
- package/schematics/ng-generate/sidemenu/index.spec.js.map +1 -1
- package/schematics/ng-generate/sidemenu/schema.d.ts +13 -13
- package/schematics/ng-generate/sidemenu/schema.js +2 -2
- package/schematics/ng-generate/sidemenu/schema.json +32 -32
- package/schematics/ng-update/v2/changes.d.ts +19 -19
- package/schematics/ng-update/v2/changes.js +58 -58
- package/schematics/ng-update/v2/index.d.ts +1 -1
- package/schematics/ng-update/v2/index.js +145 -145
- package/schematics/ng-update/v2/index.js.map +1 -1
- package/schematics/ng-update/v3/changes.d.ts +4 -4
- package/schematics/ng-update/v3/changes.js +20 -20
- package/schematics/ng-update/v3/index.d.ts +1 -1
- package/schematics/ng-update/v3/index.js +66 -66
- package/schematics/ng-update/v3/index.js.map +1 -1
- package/schematics/ng-update/v4/changes.d.ts +4 -4
- package/schematics/ng-update/v4/changes.js +20 -20
- package/schematics/ng-update/v4/index.d.ts +1 -1
- package/schematics/ng-update/v4/index.js +65 -65
- package/schematics/ng-update/v4/index.js.map +1 -1
- package/schematics/ng-update/v5/changes.d.ts +4 -4
- package/schematics/ng-update/v5/changes.js +25 -25
- package/schematics/ng-update/v5/index.d.ts +1 -1
- package/schematics/ng-update/v5/index.js +65 -65
- package/schematics/ng-update/v5/index.js.map +1 -1
- package/schematics/ng-update/v6/changes.d.ts +2 -0
- package/schematics/ng-update/v6/changes.js +14 -0
- package/schematics/ng-update/v6/changes.js.map +1 -0
- package/schematics/ng-update/v6/index.d.ts +1 -0
- package/schematics/ng-update/v6/index.js +16 -0
- package/schematics/ng-update/v6/index.js.map +1 -0
- package/bundles/po-ui-ng-components.umd.js +0 -39421
- package/bundles/po-ui-ng-components.umd.js.map +0 -1
- package/esm2015/lib/components/components.module.js +0 -122
- package/esm2015/lib/components/index.js +0 -38
- package/esm2015/lib/components/po-accordion/index.js +0 -4
- package/esm2015/lib/components/po-accordion/po-accordion-base.component.js +0 -29
- package/esm2015/lib/components/po-accordion/po-accordion-item/po-accordion-item.component.js +0 -66
- package/esm2015/lib/components/po-accordion/po-accordion-item-body/po-accordion-item-body.component.js +0 -23
- package/esm2015/lib/components/po-accordion/po-accordion-item-header/po-accordion-item-header.component.js +0 -24
- package/esm2015/lib/components/po-accordion/po-accordion.component.js +0 -70
- package/esm2015/lib/components/po-accordion/po-accordion.module.js +0 -52
- package/esm2015/lib/components/po-accordion/services/po-accordion.service.js +0 -27
- package/esm2015/lib/components/po-avatar/index.js +0 -3
- package/esm2015/lib/components/po-avatar/po-avatar-base.component.js +0 -68
- package/esm2015/lib/components/po-avatar/po-avatar.component.js +0 -42
- package/esm2015/lib/components/po-avatar/po-avatar.module.js +0 -18
- package/esm2015/lib/components/po-badge/po-badge-base.component.js +0 -89
- package/esm2015/lib/components/po-badge/po-badge.component.js +0 -16
- package/esm2015/lib/components/po-badge/po-badge.module.js +0 -18
- package/esm2015/lib/components/po-breadcrumb/index.js +0 -5
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-base.component.js +0 -48
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-dropdown/po-breadcrumb-dropdown.component.js +0 -20
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.component.js +0 -77
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.service.js +0 -49
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-item/po-breadcrumb-item.component.js +0 -27
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-item.interface.js +0 -2
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb.component.js +0 -159
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb.interface.js +0 -2
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb.module.js +0 -28
- package/esm2015/lib/components/po-button/index.js +0 -3
- package/esm2015/lib/components/po-button/po-button-base.component.js +0 -127
- package/esm2015/lib/components/po-button/po-button.component.js +0 -69
- package/esm2015/lib/components/po-button/po-button.module.js +0 -20
- package/esm2015/lib/components/po-button-group/index.js +0 -5
- package/esm2015/lib/components/po-button-group/po-button-group-base.component.js +0 -95
- package/esm2015/lib/components/po-button-group/po-button-group-item.interface.js +0 -2
- package/esm2015/lib/components/po-button-group/po-button-group-toggle.enum.js +0 -17
- package/esm2015/lib/components/po-button-group/po-button-group.component.js +0 -43
- package/esm2015/lib/components/po-button-group/po-button-group.module.js +0 -20
- package/esm2015/lib/components/po-calendar/index.js +0 -4
- package/esm2015/lib/components/po-calendar/po-calendar-base.component.js +0 -176
- package/esm2015/lib/components/po-calendar/po-calendar-header/po-calendar-header.component.js +0 -24
- package/esm2015/lib/components/po-calendar/po-calendar-mode.enum.js +0 -13
- package/esm2015/lib/components/po-calendar/po-calendar-wrapper/po-calendar-wrapper.component.js +0 -251
- package/esm2015/lib/components/po-calendar/po-calendar.component.js +0 -199
- package/esm2015/lib/components/po-calendar/po-calendar.module.js +0 -19
- package/esm2015/lib/components/po-calendar/services/po-calendar.lang.service.js +0 -187
- package/esm2015/lib/components/po-calendar/services/po-calendar.service.js +0 -44
- package/esm2015/lib/components/po-chart/directives/po-resize-observer.directive.js +0 -44
- package/esm2015/lib/components/po-chart/enums/po-chart-type.enum.js +0 -51
- package/esm2015/lib/components/po-chart/helpers/po-chart-default-values.constant.js +0 -18
- package/esm2015/lib/components/po-chart/index.js +0 -8
- package/esm2015/lib/components/po-chart/interfaces/po-chart-axis-options.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-bar-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-container-size.interface.js +0 -11
- package/esm2015/lib/components/po-chart/interfaces/po-chart-label-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-min-max-values.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-options.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-path-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-points-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-serie.interface.js +0 -2
- package/esm2015/lib/components/po-chart/po-chart-base.component.js +0 -244
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-label/po-chart-axis-label.component.js +0 -23
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-path/po-chart-axis-path.component.js +0 -19
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis.component.js +0 -287
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-base.component.js +0 -94
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-path/po-chart-bar-path.component.js +0 -33
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar.component.js +0 -58
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-column/po-chart-column.component.js +0 -59
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-label/po-chart-circular-label.component.js +0 -29
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-circular-path.component.js +0 -35
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-tooltip.directive.js +0 -76
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular.component.js +0 -142
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-donut/po-chart-donut.component.js +0 -115
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-pie/po-chart-pie.component.js +0 -57
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-container.component.js +0 -119
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-area/po-chart-area.component.js +0 -77
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line-base.component.js +0 -151
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line.component.js +0 -41
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-path/po-chart-path.component.js +0 -65
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-series-point/po-chart-series-point.component.js +0 -95
- package/esm2015/lib/components/po-chart/po-chart-legend/po-chart-legend.component.js +0 -21
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-circular/po-chart-circular.constant.js +0 -11
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-circular/po-chart-circular.js +0 -374
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-dynamic-type.component.js +0 -45
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge-series.interface.js +0 -2
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge-text-content/po-chart-gauge-text-content.component.js +0 -75
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge.component.js +0 -85
- package/esm2015/lib/components/po-chart/po-chart.component.js +0 -203
- package/esm2015/lib/components/po-chart/po-chart.module.js +0 -61
- package/esm2015/lib/components/po-chart/services/po-chart-maths.service.js +0 -135
- package/esm2015/lib/components/po-chart/services/po-chart-svg-container.service.js +0 -57
- package/esm2015/lib/components/po-container/index.js +0 -3
- package/esm2015/lib/components/po-container/po-container-base.component.js +0 -88
- package/esm2015/lib/components/po-container/po-container.component.js +0 -32
- package/esm2015/lib/components/po-container/po-container.module.js +0 -18
- package/esm2015/lib/components/po-disclaimer/index.js +0 -4
- package/esm2015/lib/components/po-disclaimer/po-disclaimer-base.component.js +0 -77
- package/esm2015/lib/components/po-disclaimer/po-disclaimer.component.js +0 -29
- package/esm2015/lib/components/po-disclaimer/po-disclaimer.interface.js +0 -2
- package/esm2015/lib/components/po-disclaimer/po-disclaimer.module.js +0 -17
- package/esm2015/lib/components/po-disclaimer-group/index.js +0 -5
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group-base.component.js +0 -194
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group-remove-action.interface.js +0 -2
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group.component.js +0 -41
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group.interface.js +0 -2
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group.module.js +0 -20
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-remove/po-disclaimer-remove.component.js +0 -30
- package/esm2015/lib/components/po-divider/index.js +0 -3
- package/esm2015/lib/components/po-divider/po-divider-base.component.js +0 -16
- package/esm2015/lib/components/po-divider/po-divider.component.js +0 -32
- package/esm2015/lib/components/po-divider/po-divider.module.js +0 -18
- package/esm2015/lib/components/po-dropdown/index.js +0 -4
- package/esm2015/lib/components/po-dropdown/po-dropdown-action.interface.js +0 -2
- package/esm2015/lib/components/po-dropdown/po-dropdown-base.component.js +0 -71
- package/esm2015/lib/components/po-dropdown/po-dropdown.component.js +0 -97
- package/esm2015/lib/components/po-dropdown/po-dropdown.module.js +0 -18
- package/esm2015/lib/components/po-dynamic/index.js +0 -11
- package/esm2015/lib/components/po-dynamic/po-dynamic-field-type.enum.js +0 -25
- package/esm2015/lib/components/po-dynamic/po-dynamic-field.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-base.component.js +0 -104
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-field.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-field-internal.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields-base.component.js +0 -200
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields.component.js +0 -129
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.service.js +0 -32
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-operation/po-dynamic-form-operation.js +0 -20
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-response.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-changed.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-validation.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.service.js +0 -39
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form.component.js +0 -167
- package/esm2015/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-base.component.js +0 -163
- package/esm2015/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-field.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.component.js +0 -101
- package/esm2015/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.service.js +0 -17
- package/esm2015/lib/components/po-dynamic/po-dynamic.module.js +0 -35
- package/esm2015/lib/components/po-dynamic/po-dynamic.util.js +0 -18
- package/esm2015/lib/components/po-field/index.js +0 -51
- package/esm2015/lib/components/po-field/po-checkbox/po-checkbox-base.component.js +0 -98
- package/esm2015/lib/components/po-field/po-checkbox/po-checkbox.component.js +0 -94
- package/esm2015/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option-view.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-checkbox-group/po-checkbox-group-base.component.js +0 -297
- package/esm2015/lib/components/po-field/po-checkbox-group/po-checkbox-group.component.js +0 -98
- package/esm2015/lib/components/po-field/po-checkbox-group/po-checkbox-group.module.js +0 -20
- package/esm2015/lib/components/po-field/po-clean/po-clean-base.component.js +0 -42
- package/esm2015/lib/components/po-field/po-clean/po-clean.component.js +0 -33
- package/esm2015/lib/components/po-field/po-clean/po-clean.module.js +0 -18
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-filter.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-group.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-option-group.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-response.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/po-combo-base.component.js +0 -749
- package/esm2015/lib/components/po-field/po-combo/po-combo-filter-mode.enum.js +0 -17
- package/esm2015/lib/components/po-field/po-combo/po-combo-filter.service.js +0 -78
- package/esm2015/lib/components/po-field/po-combo/po-combo-option-template/po-combo-option-template.directive.js +0 -81
- package/esm2015/lib/components/po-field/po-combo/po-combo.component.js +0 -525
- package/esm2015/lib/components/po-field/po-datepicker/enums/po-datepicker-iso-format.enum.js +0 -17
- package/esm2015/lib/components/po-field/po-datepicker/po-datepicker-base.component.js +0 -396
- package/esm2015/lib/components/po-field/po-datepicker/po-datepicker.component.js +0 -345
- package/esm2015/lib/components/po-field/po-datepicker/po-datepicker.module.js +0 -22
- package/esm2015/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.js +0 -475
- package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.js +0 -443
- package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range.literals.js +0 -27
- package/esm2015/lib/components/po-field/po-decimal/po-decimal.component.js +0 -598
- package/esm2015/lib/components/po-field/po-email/po-email.component.js +0 -106
- package/esm2015/lib/components/po-field/po-field-container/po-field-container-bottom/po-field-container-bottom.component.js +0 -29
- package/esm2015/lib/components/po-field/po-field-container/po-field-container-literals.js +0 -15
- package/esm2015/lib/components/po-field/po-field-container/po-field-container.component.js +0 -39
- package/esm2015/lib/components/po-field/po-field-container/po-field-container.module.js +0 -19
- package/esm2015/lib/components/po-field/po-field-validate.model.js +0 -69
- package/esm2015/lib/components/po-field/po-field.model.js +0 -78
- package/esm2015/lib/components/po-field/po-field.module.js +0 -156
- package/esm2015/lib/components/po-field/po-input/po-input-base.component.js +0 -357
- package/esm2015/lib/components/po-field/po-input/po-input.component.js +0 -56
- package/esm2015/lib/components/po-field/po-input/po-mask.js +0 -460
- package/esm2015/lib/components/po-field/po-input-generic/po-input-generic.js +0 -187
- package/esm2015/lib/components/po-field/po-login/po-login.component.js +0 -65
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-advanced-filter.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-column.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-filter.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-filtered-items-params.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-response-api.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/po-lookup-base.component.js +0 -451
- package/esm2015/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal-base.component.js +0 -357
- package/esm2015/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal.component.js +0 -130
- package/esm2015/lib/components/po-field/po-lookup/po-lookup.component.js +0 -337
- package/esm2015/lib/components/po-field/po-lookup/services/po-lookup-filter.service.js +0 -59
- package/esm2015/lib/components/po-field/po-lookup/services/po-lookup-modal.service.js +0 -62
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-base.component.js +0 -576
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-dropdown/po-multiselect-dropdown.component.js +0 -139
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-filter-mode.enum.js +0 -17
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-filter.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-filter.service.js +0 -50
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-item/po-multiselect-item.component.js +0 -33
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-search/po-multiselect-search.component.js +0 -57
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect.component.js +0 -359
- package/esm2015/lib/components/po-field/po-number/po-number-base.component.js +0 -114
- package/esm2015/lib/components/po-field/po-number/po-number.component.js +0 -119
- package/esm2015/lib/components/po-field/po-password/po-password.component.js +0 -92
- package/esm2015/lib/components/po-field/po-radio-group/po-radio-group-base.component.js +0 -184
- package/esm2015/lib/components/po-field/po-radio-group/po-radio-group-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-radio-group/po-radio-group.component.js +0 -119
- package/esm2015/lib/components/po-field/po-rich-text/interfaces/po-rich-text-toolbar-button-group-item.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-base.component.js +0 -181
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-body/po-rich-text-body.component.js +0 -312
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-image-modal/po-rich-text-image-modal.component.js +0 -96
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-link-modal/po-rich-text-link-modal.component.js +0 -140
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-literals.js +0 -83
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-toolbar/po-rich-text-toolbar.component.js +0 -166
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text.component.js +0 -147
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text.service.js +0 -17
- package/esm2015/lib/components/po-field/po-select/po-select-option-template/po-select-option-template.directive.js +0 -59
- package/esm2015/lib/components/po-field/po-select/po-select-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-select/po-select.component.js +0 -366
- package/esm2015/lib/components/po-field/po-switch/po-switch-label-position.enum.js +0 -15
- package/esm2015/lib/components/po-field/po-switch/po-switch.component.js +0 -190
- package/esm2015/lib/components/po-field/po-textarea/po-textarea-base.component.js +0 -269
- package/esm2015/lib/components/po-field/po-textarea/po-textarea.component.js +0 -130
- package/esm2015/lib/components/po-field/po-upload/interfaces/po-upload-file-restriction.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-upload/interfaces/po-upload-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-upload/po-upload-base.component.js +0 -581
- package/esm2015/lib/components/po-field/po-upload/po-upload-base.service.js +0 -88
- package/esm2015/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area/po-upload-drag-drop-area.component.js +0 -30
- package/esm2015/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area-overlay/po-upload-drag-drop-area-overlay.component.js +0 -40
- package/esm2015/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.component.js +0 -60
- package/esm2015/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.directive.js +0 -165
- package/esm2015/lib/components/po-field/po-upload/po-upload-file-restrictions/po-upload-file-restrictions.component.js +0 -63
- package/esm2015/lib/components/po-field/po-upload/po-upload-file.js +0 -39
- package/esm2015/lib/components/po-field/po-upload/po-upload-status.enum.js +0 -13
- package/esm2015/lib/components/po-field/po-upload/po-upload.component.js +0 -326
- package/esm2015/lib/components/po-field/po-upload/po-upload.service.js +0 -8
- package/esm2015/lib/components/po-field/po-url/po-url.component.js +0 -86
- package/esm2015/lib/components/po-field/validators.js +0 -41
- package/esm2015/lib/components/po-gauge/index.js +0 -4
- package/esm2015/lib/components/po-gauge/interfaces/po-gauge-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-gauge/interfaces/po-gauge-ranges.interface.js +0 -2
- package/esm2015/lib/components/po-gauge/interfaces/po-gauge-svg-container.interface.js +0 -2
- package/esm2015/lib/components/po-gauge/po-gauge-base.component.js +0 -146
- package/esm2015/lib/components/po-gauge/po-gauge-default-values.constant.js +0 -11
- package/esm2015/lib/components/po-gauge/po-gauge-description/po-gauge-description.component.js +0 -27
- package/esm2015/lib/components/po-gauge/po-gauge-legend/po-gauge-legend.component.js +0 -27
- package/esm2015/lib/components/po-gauge/po-gauge-svg/po-gauge-path/po-gauge-path.component.js +0 -20
- package/esm2015/lib/components/po-gauge/po-gauge-svg/po-gauge-pointer/po-gauge-pointer.component.js +0 -50
- package/esm2015/lib/components/po-gauge/po-gauge-svg/po-gauge-svg.component.js +0 -204
- package/esm2015/lib/components/po-gauge/po-gauge-title/po-gauge-title.component.js +0 -13
- package/esm2015/lib/components/po-gauge/po-gauge.component.js +0 -72
- package/esm2015/lib/components/po-gauge/po-gauge.module.js +0 -32
- package/esm2015/lib/components/po-grid/index.js +0 -4
- package/esm2015/lib/components/po-grid/po-grid-cell/po-grid-cell.component.js +0 -111
- package/esm2015/lib/components/po-grid/po-grid-cell-action/po-grid-cell-action.component.js +0 -24
- package/esm2015/lib/components/po-grid/po-grid-head/po-grid-head.component.js +0 -30
- package/esm2015/lib/components/po-grid/po-grid-row-actions.interface.js +0 -2
- package/esm2015/lib/components/po-grid/po-grid.component.js +0 -314
- package/esm2015/lib/components/po-grid/po-grid.module.js +0 -23
- package/esm2015/lib/components/po-icon/index.js +0 -3
- package/esm2015/lib/components/po-icon/po-icon.component.js +0 -62
- package/esm2015/lib/components/po-icon/po-icon.module.js +0 -18
- package/esm2015/lib/components/po-info/index.js +0 -4
- package/esm2015/lib/components/po-info/po-info-base.component.js +0 -62
- package/esm2015/lib/components/po-info/po-info-orietation.enum.js +0 -15
- package/esm2015/lib/components/po-info/po-info.component.js +0 -36
- package/esm2015/lib/components/po-info/po-info.module.js +0 -21
- package/esm2015/lib/components/po-list-view/index.js +0 -7
- package/esm2015/lib/components/po-list-view/interfaces/po-list-view-action.interface.js +0 -2
- package/esm2015/lib/components/po-list-view/interfaces/po-list-view-literals.interface.js +0 -2
- package/esm2015/lib/components/po-list-view/po-list-view-base.component.js +0 -274
- package/esm2015/lib/components/po-list-view/po-list-view-content-template/po-list-view-content-template.directive.js +0 -101
- package/esm2015/lib/components/po-list-view/po-list-view-detail-template/po-list-view-detail-template.directive.js +0 -64
- package/esm2015/lib/components/po-list-view/po-list-view.component.js +0 -128
- package/esm2015/lib/components/po-list-view/po-list-view.module.js +0 -51
- package/esm2015/lib/components/po-loading/index.js +0 -5
- package/esm2015/lib/components/po-loading/po-loading-base.component.js +0 -24
- package/esm2015/lib/components/po-loading/po-loading-icon/po-loading-icon.component.js +0 -37
- package/esm2015/lib/components/po-loading/po-loading-overlay/interfaces/po-loading-overlay-literals.interface.js +0 -2
- package/esm2015/lib/components/po-loading/po-loading-overlay/po-loading-overlay-base.component.js +0 -91
- package/esm2015/lib/components/po-loading/po-loading-overlay/po-loading-overlay.component.js +0 -41
- package/esm2015/lib/components/po-loading/po-loading.component.js +0 -16
- package/esm2015/lib/components/po-loading/po-loading.module.js +0 -22
- package/esm2015/lib/components/po-menu/index.js +0 -9
- package/esm2015/lib/components/po-menu/po-menu-base.component.js +0 -299
- package/esm2015/lib/components/po-menu/po-menu-filter/po-menu-filter-literals.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu-filter/po-menu-filter.component.js +0 -40
- package/esm2015/lib/components/po-menu/po-menu-filter/po-menu-filter.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu-header-template/po-menu-header-template.directive.js +0 -51
- package/esm2015/lib/components/po-menu/po-menu-item/po-menu-item-badge.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu-item/po-menu-item-filtered.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu-item/po-menu-item.component.js +0 -173
- package/esm2015/lib/components/po-menu/po-menu-item.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu.component.js +0 -497
- package/esm2015/lib/components/po-menu/po-menu.module.js +0 -26
- package/esm2015/lib/components/po-menu/services/po-menu-global.service.js +0 -32
- package/esm2015/lib/components/po-menu/services/po-menu-items.service.js +0 -35
- package/esm2015/lib/components/po-menu/services/po-menu.service.js +0 -35
- package/esm2015/lib/components/po-menu-panel/index.js +0 -4
- package/esm2015/lib/components/po-menu-panel/po-menu-panel-base.component.js +0 -76
- package/esm2015/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item-internal.interface.js +0 -2
- package/esm2015/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.component.js +0 -54
- package/esm2015/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.interface.js +0 -2
- package/esm2015/lib/components/po-menu-panel/po-menu-panel.component.js +0 -145
- package/esm2015/lib/components/po-menu-panel/po-menu-panel.module.js +0 -24
- package/esm2015/lib/components/po-menu-panel/services/po-menu-panel-items.service.js +0 -35
- package/esm2015/lib/components/po-modal/index.js +0 -5
- package/esm2015/lib/components/po-modal/po-modal-action.interface.js +0 -2
- package/esm2015/lib/components/po-modal/po-modal-base.component.js +0 -121
- package/esm2015/lib/components/po-modal/po-modal-footer/po-modal-footer.component.js +0 -43
- package/esm2015/lib/components/po-modal/po-modal.component.js +0 -114
- package/esm2015/lib/components/po-modal/po-modal.literals.js +0 -15
- package/esm2015/lib/components/po-modal/po-modal.module.js +0 -19
- package/esm2015/lib/components/po-navbar/index.js +0 -5
- package/esm2015/lib/components/po-navbar/interfaces/po-navbar-icon-action.interface.js +0 -2
- package/esm2015/lib/components/po-navbar/interfaces/po-navbar-item.interface.js +0 -2
- package/esm2015/lib/components/po-navbar/interfaces/po-navbar-literals.interface.js +0 -2
- package/esm2015/lib/components/po-navbar/po-navbar-actions/po-navbar-action/po-navbar-action.component.js +0 -43
- package/esm2015/lib/components/po-navbar/po-navbar-actions/po-navbar-action-popup/po-navbar-action-popup.component.js +0 -18
- package/esm2015/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.component.js +0 -19
- package/esm2015/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.module.js +0 -18
- package/esm2015/lib/components/po-navbar/po-navbar-base.component.js +0 -147
- package/esm2015/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation-icon/po-navbar-item-navigation-icon.component.js +0 -18
- package/esm2015/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.component.js +0 -18
- package/esm2015/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.module.js +0 -15
- package/esm2015/lib/components/po-navbar/po-navbar-items/po-navbar-item/po-navbar-item.component.js +0 -30
- package/esm2015/lib/components/po-navbar/po-navbar-items/po-navbar-items.component.js +0 -53
- package/esm2015/lib/components/po-navbar/po-navbar-items/po-navbar-items.module.js +0 -15
- package/esm2015/lib/components/po-navbar/po-navbar-logo/po-navbar-logo.component.js +0 -13
- package/esm2015/lib/components/po-navbar/po-navbar.component.js +0 -213
- package/esm2015/lib/components/po-navbar/po-navbar.module.js +0 -57
- package/esm2015/lib/components/po-page/index.js +0 -15
- package/esm2015/lib/components/po-page/po-page-action.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-base.component.js +0 -23
- package/esm2015/lib/components/po-page/po-page-content/po-page-content-base.component.js +0 -10
- package/esm2015/lib/components/po-page/po-page-content/po-page-content.component.js +0 -54
- package/esm2015/lib/components/po-page/po-page-default/po-page-default-base.component.js +0 -111
- package/esm2015/lib/components/po-page/po-page-default/po-page-default-literals.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-default/po-page-default.component.js +0 -98
- package/esm2015/lib/components/po-page/po-page-default/po-page-default.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-detail/po-page-detail-base.component.js +0 -141
- package/esm2015/lib/components/po-page/po-page-detail/po-page-detail-literals.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-detail/po-page-detail.component.js +0 -62
- package/esm2015/lib/components/po-page/po-page-edit/po-page-edit-base.component.js +0 -146
- package/esm2015/lib/components/po-page/po-page-edit/po-page-edit-literals.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-edit/po-page-edit.component.js +0 -65
- package/esm2015/lib/components/po-page/po-page-filter.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-header/po-page-header-base.component.js +0 -26
- package/esm2015/lib/components/po-page/po-page-header/po-page-header.component.js +0 -15
- package/esm2015/lib/components/po-page/po-page-list/po-page-list-base.component.js +0 -137
- package/esm2015/lib/components/po-page/po-page-list/po-page-list-literals.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-list/po-page-list.component.js +0 -188
- package/esm2015/lib/components/po-page/po-page-slide/po-page-slide-base.component.js +0 -135
- package/esm2015/lib/components/po-page/po-page-slide/po-page-slide.component.js +0 -121
- package/esm2015/lib/components/po-page/po-page.component.js +0 -16
- package/esm2015/lib/components/po-page/po-page.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page.module.js +0 -60
- package/esm2015/lib/components/po-popover/index.js +0 -3
- package/esm2015/lib/components/po-popover/po-popover-base.component.js +0 -113
- package/esm2015/lib/components/po-popover/po-popover.component.js +0 -138
- package/esm2015/lib/components/po-popover/po-popover.module.js +0 -17
- package/esm2015/lib/components/po-popup/index.js +0 -4
- package/esm2015/lib/components/po-popup/po-popup-action.interface.js +0 -2
- package/esm2015/lib/components/po-popup/po-popup-base.component.js +0 -186
- package/esm2015/lib/components/po-popup/po-popup.component.js +0 -169
- package/esm2015/lib/components/po-popup/po-popup.module.js +0 -21
- package/esm2015/lib/components/po-progress/enums/po-progress-status.enum.js +0 -17
- package/esm2015/lib/components/po-progress/index.js +0 -4
- package/esm2015/lib/components/po-progress/po-progress-bar/po-progress-bar.component.js +0 -18
- package/esm2015/lib/components/po-progress/po-progress-base.component.js +0 -107
- package/esm2015/lib/components/po-progress/po-progress.component.js +0 -56
- package/esm2015/lib/components/po-progress/po-progress.module.js +0 -19
- package/esm2015/lib/components/po-slide/directives/po-slide-content-template.directive.js +0 -59
- package/esm2015/lib/components/po-slide/index.js +0 -5
- package/esm2015/lib/components/po-slide/interfaces/po-slide-item.interface.js +0 -2
- package/esm2015/lib/components/po-slide/po-slide-base.component.js +0 -104
- package/esm2015/lib/components/po-slide/po-slide-circles/po-slide-circles.component.js +0 -26
- package/esm2015/lib/components/po-slide/po-slide-control/po-slide-control.component.js +0 -25
- package/esm2015/lib/components/po-slide/po-slide-item/po-slide-item.component.js +0 -37
- package/esm2015/lib/components/po-slide/po-slide.component.js +0 -256
- package/esm2015/lib/components/po-slide/po-slide.module.js +0 -58
- package/esm2015/lib/components/po-stepper/enums/po-stepper-orientation.enum.js +0 -18
- package/esm2015/lib/components/po-stepper/enums/po-stepper-status.enum.js +0 -23
- package/esm2015/lib/components/po-stepper/index.js +0 -7
- package/esm2015/lib/components/po-stepper/po-step/po-step.component.js +0 -78
- package/esm2015/lib/components/po-stepper/po-stepper-base.component.js +0 -144
- package/esm2015/lib/components/po-stepper/po-stepper-circle/po-stepper-circle.component.js +0 -47
- package/esm2015/lib/components/po-stepper/po-stepper-item.interface.js +0 -2
- package/esm2015/lib/components/po-stepper/po-stepper-label/po-stepper-label.component.js +0 -20
- package/esm2015/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.js +0 -116
- package/esm2015/lib/components/po-stepper/po-stepper.component.js +0 -219
- package/esm2015/lib/components/po-stepper/po-stepper.module.js +0 -27
- package/esm2015/lib/components/po-table/enums/po-table-column-sort-type.enum.js +0 -14
- package/esm2015/lib/components/po-table/enums/po-table-row-template-arrow-direction.enum.js +0 -14
- package/esm2015/lib/components/po-table/index.js +0 -18
- package/esm2015/lib/components/po-table/interfaces/po-table-action.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-boolean.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-column-sort.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-column.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-filter.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-filtered-items-params.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-literals.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-response-api.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-base.component.js +0 -860
- package/esm2015/lib/components/po-table/po-table-cell-template/po-table-cell-template.directive.js +0 -82
- package/esm2015/lib/components/po-table/po-table-column-icon/po-table-column-icon.component.js +0 -72
- package/esm2015/lib/components/po-table/po-table-column-icon/po-table-column-icon.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-column-label/po-table-column-label.component.js +0 -38
- package/esm2015/lib/components/po-table/po-table-column-label/po-table-column-label.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-column-link/po-table-column-link.component.js +0 -38
- package/esm2015/lib/components/po-table/po-table-column-manager/po-table-column-manager.component.js +0 -250
- package/esm2015/lib/components/po-table/po-table-column-template/po-table-column-template.directive.js +0 -90
- package/esm2015/lib/components/po-table/po-table-detail/po-table-detail-column.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-detail/po-table-detail.component.js +0 -88
- package/esm2015/lib/components/po-table/po-table-detail/po-table-detail.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-icon/po-table-icon.component.js +0 -46
- package/esm2015/lib/components/po-table/po-table-row-template/po-table-row-template.directive.js +0 -128
- package/esm2015/lib/components/po-table/po-table-show-subtitle/po-table-show-subtitle.component.js +0 -21
- package/esm2015/lib/components/po-table/po-table-subtitle-circle/po-table-subtitle-circle.component.js +0 -41
- package/esm2015/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-column.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-footer.component.js +0 -70
- package/esm2015/lib/components/po-table/po-table.component.js +0 -542
- package/esm2015/lib/components/po-table/po-table.module.js +0 -75
- package/esm2015/lib/components/po-table/services/po-table.service.js +0 -38
- package/esm2015/lib/components/po-tabs/index.js +0 -5
- package/esm2015/lib/components/po-tabs/po-tab/po-tab-base.component.js +0 -82
- package/esm2015/lib/components/po-tabs/po-tab/po-tab.component.js +0 -27
- package/esm2015/lib/components/po-tabs/po-tab/po-tab.interface.js +0 -2
- package/esm2015/lib/components/po-tabs/po-tab-button/po-tab-button.component.js +0 -75
- package/esm2015/lib/components/po-tabs/po-tab-dropdown/po-tab-dropdown.component.js +0 -44
- package/esm2015/lib/components/po-tabs/po-tabs-base.component.js +0 -49
- package/esm2015/lib/components/po-tabs/po-tabs.component.js +0 -126
- package/esm2015/lib/components/po-tabs/po-tabs.module.js +0 -21
- package/esm2015/lib/components/po-tag/enums/po-tag-icon.enum.js +0 -19
- package/esm2015/lib/components/po-tag/enums/po-tag-orientation.enum.js +0 -15
- package/esm2015/lib/components/po-tag/enums/po-tag-type.enum.js +0 -19
- package/esm2015/lib/components/po-tag/index.js +0 -5
- package/esm2015/lib/components/po-tag/interfaces/po-tag-item.interface.js +0 -2
- package/esm2015/lib/components/po-tag/po-tag-base.component.js +0 -175
- package/esm2015/lib/components/po-tag/po-tag.component.js +0 -71
- package/esm2015/lib/components/po-tag/po-tag.module.js +0 -21
- package/esm2015/lib/components/po-toolbar/index.js +0 -5
- package/esm2015/lib/components/po-toolbar/po-toolbar-action.interface.js +0 -2
- package/esm2015/lib/components/po-toolbar/po-toolbar-actions/po-toolbar-actions.component.js +0 -35
- package/esm2015/lib/components/po-toolbar/po-toolbar-base.component.js +0 -43
- package/esm2015/lib/components/po-toolbar/po-toolbar-notification/po-toolbar-notification.component.js +0 -39
- package/esm2015/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.component.js +0 -28
- package/esm2015/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.interface.js +0 -2
- package/esm2015/lib/components/po-toolbar/po-toolbar.component.js +0 -46
- package/esm2015/lib/components/po-toolbar/po-toolbar.module.js +0 -32
- package/esm2015/lib/components/po-tree-view/index.js +0 -4
- package/esm2015/lib/components/po-tree-view/po-tree-view-base.component.js +0 -197
- package/esm2015/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.component.js +0 -58
- package/esm2015/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.interface.js +0 -2
- package/esm2015/lib/components/po-tree-view/po-tree-view-item-header/po-tree-view-item-header.component.js +0 -26
- package/esm2015/lib/components/po-tree-view/po-tree-view.component.js +0 -60
- package/esm2015/lib/components/po-tree-view/po-tree-view.module.js +0 -49
- package/esm2015/lib/components/po-tree-view/services/po-tree-view.service.js +0 -24
- package/esm2015/lib/components/po-widget/index.js +0 -3
- package/esm2015/lib/components/po-widget/po-widget-base.component.js +0 -216
- package/esm2015/lib/components/po-widget/po-widget.component.js +0 -114
- package/esm2015/lib/components/po-widget/po-widget.module.js +0 -19
- package/esm2015/lib/decorators/index.js +0 -3
- package/esm2015/lib/decorators/input-boolean/input-boolean.decorator.js +0 -18
- package/esm2015/lib/decorators/input-required/input-required.decorator.js +0 -34
- package/esm2015/lib/decorators/property-decorator.interface.js +0 -2
- package/esm2015/lib/decorators/utils-decorators.js +0 -64
- package/esm2015/lib/directives/directives.module.js +0 -14
- package/esm2015/lib/directives/index.js +0 -3
- package/esm2015/lib/directives/po-tooltip/index.js +0 -3
- package/esm2015/lib/directives/po-tooltip/po-tooltip-base.directive.js +0 -106
- package/esm2015/lib/directives/po-tooltip/po-tooltip-control-position.service.js +0 -8
- package/esm2015/lib/directives/po-tooltip/po-tooltip.directive.js +0 -147
- package/esm2015/lib/directives/po-tooltip/po-tooltip.module.js +0 -18
- package/esm2015/lib/enums/po-color-palette.enum.js +0 -35
- package/esm2015/lib/enums/po-key-code.enum.js +0 -31
- package/esm2015/lib/guards/guards.module.js +0 -13
- package/esm2015/lib/guards/index.js +0 -2
- package/esm2015/lib/index.js +0 -10
- package/esm2015/lib/interceptors/index.js +0 -4
- package/esm2015/lib/interceptors/interceptors.module.js +0 -15
- package/esm2015/lib/interceptors/po-http-interceptor/index.js +0 -3
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-base.service.js +0 -249
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail-literals.interface.js +0 -39
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.component.js +0 -83
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.interface.js +0 -2
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-literals.js +0 -23
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor.module.js +0 -28
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor.service.js +0 -28
- package/esm2015/lib/interceptors/po-http-request/index.js +0 -3
- package/esm2015/lib/interceptors/po-http-request/po-http-request-control-service.js +0 -23
- package/esm2015/lib/interceptors/po-http-request/po-http-request-interceptor.service.js +0 -169
- package/esm2015/lib/interceptors/po-http-request/po-http-request.module.js +0 -24
- package/esm2015/lib/interfaces/index.js +0 -2
- package/esm2015/lib/interfaces/po-http/po-response-api.interface.js +0 -2
- package/esm2015/lib/pipes/index.js +0 -3
- package/esm2015/lib/pipes/pipes.module.js +0 -14
- package/esm2015/lib/pipes/po-time/index.js +0 -3
- package/esm2015/lib/pipes/po-time/po-time.module.js +0 -19
- package/esm2015/lib/pipes/po-time/po-time.pipe.js +0 -55
- package/esm2015/lib/po.module.js +0 -34
- package/esm2015/lib/services/index.js +0 -11
- package/esm2015/lib/services/po-active-overlay/index.js +0 -3
- package/esm2015/lib/services/po-active-overlay/po-active-overlay.module.js +0 -16
- package/esm2015/lib/services/po-active-overlay/po-active-overlay.service.js +0 -14
- package/esm2015/lib/services/po-color/po-color.service.js +0 -60
- package/esm2015/lib/services/po-color/po-colors.constant.js +0 -43
- package/esm2015/lib/services/po-color-palette/index.js +0 -3
- package/esm2015/lib/services/po-color-palette/po-color-palette.module.js +0 -16
- package/esm2015/lib/services/po-color-palette/po-color-palette.service.js +0 -25
- package/esm2015/lib/services/po-component-injector/index.js +0 -3
- package/esm2015/lib/services/po-component-injector/po-component-injector.module.js +0 -14
- package/esm2015/lib/services/po-component-injector/po-component-injector.service.js +0 -34
- package/esm2015/lib/services/po-control-position/index.js +0 -3
- package/esm2015/lib/services/po-control-position/po-control-position.constants.js +0 -16
- package/esm2015/lib/services/po-control-position/po-control-position.module.js +0 -15
- package/esm2015/lib/services/po-control-position/po-control-position.service.js +0 -361
- package/esm2015/lib/services/po-date/index.js +0 -3
- package/esm2015/lib/services/po-date/po-date.module.js +0 -16
- package/esm2015/lib/services/po-date/po-date.service.js +0 -201
- package/esm2015/lib/services/po-dialog/index.js +0 -8
- package/esm2015/lib/services/po-dialog/interfaces/po-dialog-alert-literals.interface.js +0 -2
- package/esm2015/lib/services/po-dialog/interfaces/po-dialog-confirm-literals.interface.js +0 -2
- package/esm2015/lib/services/po-dialog/interfaces/po-dialog.interface.js +0 -2
- package/esm2015/lib/services/po-dialog/po-dialog-base.service.js +0 -18
- package/esm2015/lib/services/po-dialog/po-dialog.component.js +0 -115
- package/esm2015/lib/services/po-dialog/po-dialog.enum.js +0 -16
- package/esm2015/lib/services/po-dialog/po-dialog.module.js +0 -15
- package/esm2015/lib/services/po-dialog/po-dialog.service.js +0 -42
- package/esm2015/lib/services/po-i18n/index.js +0 -8
- package/esm2015/lib/services/po-i18n/interfaces/po-i18n-config-default.interface.js +0 -2
- package/esm2015/lib/services/po-i18n/interfaces/po-i18n-config.interface.js +0 -2
- package/esm2015/lib/services/po-i18n/interfaces/po-i18n-literals.interface.js +0 -2
- package/esm2015/lib/services/po-i18n/po-i18n-base.pipe.js +0 -40
- package/esm2015/lib/services/po-i18n/po-i18n-base.service.js +0 -439
- package/esm2015/lib/services/po-i18n/po-i18n-config-injection-token.js +0 -3
- package/esm2015/lib/services/po-i18n/po-i18n.module.js +0 -188
- package/esm2015/lib/services/po-i18n/po-i18n.pipe.js +0 -21
- package/esm2015/lib/services/po-i18n/po-i18n.service.js +0 -20
- package/esm2015/lib/services/po-language/index.js +0 -5
- package/esm2015/lib/services/po-language/po-language.constant.js +0 -75
- package/esm2015/lib/services/po-language/po-language.interface.js +0 -2
- package/esm2015/lib/services/po-language/po-language.module.js +0 -15
- package/esm2015/lib/services/po-language/po-language.service.js +0 -136
- package/esm2015/lib/services/po-notification/index.js +0 -6
- package/esm2015/lib/services/po-notification/po-notification-base.service.js +0 -111
- package/esm2015/lib/services/po-notification/po-notification.interface.js +0 -2
- package/esm2015/lib/services/po-notification/po-notification.module.js +0 -15
- package/esm2015/lib/services/po-notification/po-notification.service.js +0 -92
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster-base.component.js +0 -15
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster-orientation.enum.js +0 -13
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster-type.enum.js +0 -17
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster.component.js +0 -132
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster.interface.js +0 -2
- package/esm2015/lib/services/services.module.js +0 -40
- package/esm2015/lib/utils/util.js +0 -508
- package/esm2015/po-ui-ng-components.js +0 -206
- package/esm2015/public-api.js +0 -2
- package/fesm2015/po-ui-ng-components.js +0 -35544
- package/fesm2015/po-ui-ng-components.js.map +0 -1
- package/lib/components/po-chart/po-chart-types/po-chart-circular/po-chart-circular.constant.d.ts +0 -7
- package/lib/components/po-chart/po-chart-types/po-chart-circular/po-chart-circular.d.ts +0 -55
- package/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge-series.interface.d.ts +0 -39
- package/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge-text-content/po-chart-gauge-text-content.component.d.ts +0 -24
- package/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge.component.d.ts +0 -20
- package/po-ui-ng-components-5.22.3.tgz +0 -0
- package/po-ui-ng-components.metadata.json +0 -1
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import { capitalizeFirstLetter, isTypeof } from '../../../utils/util';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "../../../pipes/po-time/po-time.pipe";
|
|
6
|
+
function PoTableDetailComponent_thead_1_th_2_Template(rf, ctx) { if (rf & 1) {
|
|
7
|
+
i0.ɵɵelement(0, "th", 6);
|
|
8
|
+
} }
|
|
9
|
+
function PoTableDetailComponent_thead_1_th_4_Template(rf, ctx) { if (rf & 1) {
|
|
10
|
+
i0.ɵɵelementStart(0, "th", 7);
|
|
11
|
+
i0.ɵɵtext(1);
|
|
12
|
+
i0.ɵɵelementEnd();
|
|
13
|
+
} if (rf & 2) {
|
|
14
|
+
const detail_r4 = ctx.$implicit;
|
|
15
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
|
16
|
+
i0.ɵɵadvance(1);
|
|
17
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r3.getColumnTitleLabel(detail_r4), " ");
|
|
18
|
+
} }
|
|
19
|
+
function PoTableDetailComponent_thead_1_Template(rf, ctx) { if (rf & 1) {
|
|
20
|
+
i0.ɵɵelementStart(0, "thead");
|
|
21
|
+
i0.ɵɵelementStart(1, "tr");
|
|
22
|
+
i0.ɵɵtemplate(2, PoTableDetailComponent_thead_1_th_2_Template, 1, 0, "th", 3);
|
|
23
|
+
i0.ɵɵelement(3, "th", 4);
|
|
24
|
+
i0.ɵɵtemplate(4, PoTableDetailComponent_thead_1_th_4_Template, 2, 1, "th", 5);
|
|
25
|
+
i0.ɵɵelementEnd();
|
|
26
|
+
i0.ɵɵelementEnd();
|
|
27
|
+
} if (rf & 2) {
|
|
28
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
29
|
+
i0.ɵɵadvance(2);
|
|
30
|
+
i0.ɵɵproperty("ngIf", ctx_r0.isSelectable);
|
|
31
|
+
i0.ɵɵadvance(2);
|
|
32
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.detail.columns);
|
|
33
|
+
} }
|
|
34
|
+
function PoTableDetailComponent_tr_3_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
35
|
+
const _r12 = i0.ɵɵgetCurrentView();
|
|
36
|
+
i0.ɵɵelementContainerStart(0);
|
|
37
|
+
i0.ɵɵelement(1, "td", 12);
|
|
38
|
+
i0.ɵɵelementStart(2, "td", 13);
|
|
39
|
+
i0.ɵɵelement(3, "input", 14);
|
|
40
|
+
i0.ɵɵelementStart(4, "label", 15);
|
|
41
|
+
i0.ɵɵlistener("click", function PoTableDetailComponent_tr_3_ng_container_1_Template_label_click_4_listener() { i0.ɵɵrestoreView(_r12); const item_r5 = i0.ɵɵnextContext().$implicit; const ctx_r10 = i0.ɵɵnextContext(); return ctx_r10.onSelectRow(item_r5); });
|
|
42
|
+
i0.ɵɵelementEnd();
|
|
43
|
+
i0.ɵɵelementEnd();
|
|
44
|
+
i0.ɵɵelementContainerEnd();
|
|
45
|
+
} if (rf & 2) {
|
|
46
|
+
const item_r5 = i0.ɵɵnextContext().$implicit;
|
|
47
|
+
i0.ɵɵadvance(3);
|
|
48
|
+
i0.ɵɵclassProp("po-table-checkbox-checked", item_r5.$selected);
|
|
49
|
+
} }
|
|
50
|
+
function PoTableDetailComponent_tr_3_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
51
|
+
i0.ɵɵelement(0, "td", 16);
|
|
52
|
+
} }
|
|
53
|
+
function PoTableDetailComponent_tr_3_td_4_strong_1_Template(rf, ctx) { if (rf & 1) {
|
|
54
|
+
i0.ɵɵelementStart(0, "strong");
|
|
55
|
+
i0.ɵɵtext(1);
|
|
56
|
+
i0.ɵɵelementEnd();
|
|
57
|
+
} if (rf & 2) {
|
|
58
|
+
const detail_r14 = i0.ɵɵnextContext().$implicit;
|
|
59
|
+
const ctx_r15 = i0.ɵɵnextContext(2);
|
|
60
|
+
i0.ɵɵadvance(1);
|
|
61
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r15.getColumnTitleLabel(detail_r14), ": ");
|
|
62
|
+
} }
|
|
63
|
+
function PoTableDetailComponent_tr_3_td_4_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
64
|
+
i0.ɵɵelementStart(0, "span");
|
|
65
|
+
i0.ɵɵtext(1);
|
|
66
|
+
i0.ɵɵpipe(2, "currency");
|
|
67
|
+
i0.ɵɵelementEnd();
|
|
68
|
+
} if (rf & 2) {
|
|
69
|
+
const detail_r14 = i0.ɵɵnextContext().$implicit;
|
|
70
|
+
const item_r5 = i0.ɵɵnextContext().$implicit;
|
|
71
|
+
i0.ɵɵadvance(1);
|
|
72
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind4(2, 1, item_r5[detail_r14.property], detail_r14.format, "symbol", "1.2-2"));
|
|
73
|
+
} }
|
|
74
|
+
function PoTableDetailComponent_tr_3_td_4_span_4_Template(rf, ctx) { if (rf & 1) {
|
|
75
|
+
i0.ɵɵelementStart(0, "span");
|
|
76
|
+
i0.ɵɵtext(1);
|
|
77
|
+
i0.ɵɵpipe(2, "date");
|
|
78
|
+
i0.ɵɵelementEnd();
|
|
79
|
+
} if (rf & 2) {
|
|
80
|
+
const detail_r14 = i0.ɵɵnextContext().$implicit;
|
|
81
|
+
const item_r5 = i0.ɵɵnextContext().$implicit;
|
|
82
|
+
i0.ɵɵadvance(1);
|
|
83
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(2, 1, item_r5[detail_r14.property], detail_r14.format || "dd/MM/yyyy"));
|
|
84
|
+
} }
|
|
85
|
+
function PoTableDetailComponent_tr_3_td_4_span_5_Template(rf, ctx) { if (rf & 1) {
|
|
86
|
+
i0.ɵɵelementStart(0, "span");
|
|
87
|
+
i0.ɵɵtext(1);
|
|
88
|
+
i0.ɵɵpipe(2, "po_time");
|
|
89
|
+
i0.ɵɵelementEnd();
|
|
90
|
+
} if (rf & 2) {
|
|
91
|
+
const detail_r14 = i0.ɵɵnextContext().$implicit;
|
|
92
|
+
const item_r5 = i0.ɵɵnextContext().$implicit;
|
|
93
|
+
i0.ɵɵadvance(1);
|
|
94
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(2, 1, item_r5[detail_r14.property], detail_r14.format || "HH:mm:ss.ffffff"));
|
|
95
|
+
} }
|
|
96
|
+
function PoTableDetailComponent_tr_3_td_4_span_6_Template(rf, ctx) { if (rf & 1) {
|
|
97
|
+
i0.ɵɵelementStart(0, "span");
|
|
98
|
+
i0.ɵɵtext(1);
|
|
99
|
+
i0.ɵɵpipe(2, "date");
|
|
100
|
+
i0.ɵɵelementEnd();
|
|
101
|
+
} if (rf & 2) {
|
|
102
|
+
const detail_r14 = i0.ɵɵnextContext().$implicit;
|
|
103
|
+
const item_r5 = i0.ɵɵnextContext().$implicit;
|
|
104
|
+
i0.ɵɵadvance(1);
|
|
105
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind2(2, 1, item_r5[detail_r14.property], detail_r14.format || "dd/MM/yyyy HH:mm:ss"), " ");
|
|
106
|
+
} }
|
|
107
|
+
function PoTableDetailComponent_tr_3_td_4_span_7_Template(rf, ctx) { if (rf & 1) {
|
|
108
|
+
i0.ɵɵelementStart(0, "span");
|
|
109
|
+
i0.ɵɵtext(1);
|
|
110
|
+
i0.ɵɵelementEnd();
|
|
111
|
+
} if (rf & 2) {
|
|
112
|
+
const detail_r14 = i0.ɵɵnextContext().$implicit;
|
|
113
|
+
const item_r5 = i0.ɵɵnextContext().$implicit;
|
|
114
|
+
const ctx_r20 = i0.ɵɵnextContext();
|
|
115
|
+
i0.ɵɵadvance(1);
|
|
116
|
+
i0.ɵɵtextInterpolate(ctx_r20.formatNumberDetail(item_r5[detail_r14.property], detail_r14.format));
|
|
117
|
+
} }
|
|
118
|
+
function PoTableDetailComponent_tr_3_td_4_span_8_Template(rf, ctx) { if (rf & 1) {
|
|
119
|
+
i0.ɵɵelementStart(0, "span");
|
|
120
|
+
i0.ɵɵtext(1);
|
|
121
|
+
i0.ɵɵelementEnd();
|
|
122
|
+
} if (rf & 2) {
|
|
123
|
+
const detail_r14 = i0.ɵɵnextContext().$implicit;
|
|
124
|
+
const item_r5 = i0.ɵɵnextContext().$implicit;
|
|
125
|
+
i0.ɵɵadvance(1);
|
|
126
|
+
i0.ɵɵtextInterpolate(item_r5[detail_r14.property]);
|
|
127
|
+
} }
|
|
128
|
+
function PoTableDetailComponent_tr_3_td_4_Template(rf, ctx) { if (rf & 1) {
|
|
129
|
+
const _r36 = i0.ɵɵgetCurrentView();
|
|
130
|
+
i0.ɵɵelementStart(0, "td", 17);
|
|
131
|
+
i0.ɵɵlistener("click", function PoTableDetailComponent_tr_3_td_4_Template_td_click_0_listener() { i0.ɵɵrestoreView(_r36); const item_r5 = i0.ɵɵnextContext().$implicit; const ctx_r35 = i0.ɵɵnextContext(); return ctx_r35.isSelectable ? ctx_r35.onSelectRow(item_r5) : "javascript:;"; });
|
|
132
|
+
i0.ɵɵtemplate(1, PoTableDetailComponent_tr_3_td_4_strong_1_Template, 2, 1, "strong", 1);
|
|
133
|
+
i0.ɵɵelementContainerStart(2, 18);
|
|
134
|
+
i0.ɵɵtemplate(3, PoTableDetailComponent_tr_3_td_4_span_3_Template, 3, 6, "span", 19);
|
|
135
|
+
i0.ɵɵtemplate(4, PoTableDetailComponent_tr_3_td_4_span_4_Template, 3, 4, "span", 19);
|
|
136
|
+
i0.ɵɵtemplate(5, PoTableDetailComponent_tr_3_td_4_span_5_Template, 3, 4, "span", 19);
|
|
137
|
+
i0.ɵɵtemplate(6, PoTableDetailComponent_tr_3_td_4_span_6_Template, 3, 4, "span", 19);
|
|
138
|
+
i0.ɵɵtemplate(7, PoTableDetailComponent_tr_3_td_4_span_7_Template, 2, 1, "span", 19);
|
|
139
|
+
i0.ɵɵtemplate(8, PoTableDetailComponent_tr_3_td_4_span_8_Template, 2, 1, "span", 20);
|
|
140
|
+
i0.ɵɵelementContainerEnd();
|
|
141
|
+
i0.ɵɵelementEnd();
|
|
142
|
+
} if (rf & 2) {
|
|
143
|
+
const detail_r14 = ctx.$implicit;
|
|
144
|
+
const ctx_r9 = i0.ɵɵnextContext(2);
|
|
145
|
+
i0.ɵɵadvance(1);
|
|
146
|
+
i0.ɵɵproperty("ngIf", ctx_r9.typeHeaderInline);
|
|
147
|
+
i0.ɵɵadvance(1);
|
|
148
|
+
i0.ɵɵproperty("ngSwitch", detail_r14.type);
|
|
149
|
+
i0.ɵɵadvance(1);
|
|
150
|
+
i0.ɵɵproperty("ngSwitchCase", "currency");
|
|
151
|
+
i0.ɵɵadvance(1);
|
|
152
|
+
i0.ɵɵproperty("ngSwitchCase", "date");
|
|
153
|
+
i0.ɵɵadvance(1);
|
|
154
|
+
i0.ɵɵproperty("ngSwitchCase", "time");
|
|
155
|
+
i0.ɵɵadvance(1);
|
|
156
|
+
i0.ɵɵproperty("ngSwitchCase", "dateTime");
|
|
157
|
+
i0.ɵɵadvance(1);
|
|
158
|
+
i0.ɵɵproperty("ngSwitchCase", "number");
|
|
159
|
+
} }
|
|
160
|
+
function PoTableDetailComponent_tr_3_Template(rf, ctx) { if (rf & 1) {
|
|
161
|
+
i0.ɵɵelementStart(0, "tr", 8);
|
|
162
|
+
i0.ɵɵtemplate(1, PoTableDetailComponent_tr_3_ng_container_1_Template, 5, 2, "ng-container", 9);
|
|
163
|
+
i0.ɵɵtemplate(2, PoTableDetailComponent_tr_3_ng_template_2_Template, 1, 0, "ng-template", null, 10, i0.ɵɵtemplateRefExtractor);
|
|
164
|
+
i0.ɵɵtemplate(4, PoTableDetailComponent_tr_3_td_4_Template, 9, 7, "td", 11);
|
|
165
|
+
i0.ɵɵelementEnd();
|
|
166
|
+
} if (rf & 2) {
|
|
167
|
+
const item_r5 = ctx.$implicit;
|
|
168
|
+
const _r7 = i0.ɵɵreference(3);
|
|
169
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
170
|
+
i0.ɵɵclassProp("po-table-row-active", item_r5.$selected && ctx_r1.isSelectable);
|
|
171
|
+
i0.ɵɵadvance(1);
|
|
172
|
+
i0.ɵɵproperty("ngIf", ctx_r1.isSelectable)("ngIfElse", _r7);
|
|
173
|
+
i0.ɵɵadvance(3);
|
|
174
|
+
i0.ɵɵproperty("ngForOf", ctx_r1.detailColumns);
|
|
175
|
+
} }
|
|
176
|
+
/**
|
|
177
|
+
* @docsPrivate
|
|
178
|
+
*
|
|
179
|
+
* @description
|
|
180
|
+
*
|
|
181
|
+
* Componente responsável por apresentar o detalhe de cada linha da tabela.
|
|
182
|
+
*/
|
|
183
|
+
export class PoTableDetailComponent {
|
|
184
|
+
constructor(decimalPipe) {
|
|
185
|
+
this.decimalPipe = decimalPipe;
|
|
186
|
+
/**
|
|
187
|
+
* Define se a tabela possui a opção de `selectable` habilitada.
|
|
188
|
+
*/
|
|
189
|
+
this.isSelectable = false;
|
|
190
|
+
/**
|
|
191
|
+
* @optional
|
|
192
|
+
*
|
|
193
|
+
* @description
|
|
194
|
+
*
|
|
195
|
+
* Ação executada ao selecionar ou desmarcar a seleção de uma linha de detalhe do `po-table`.
|
|
196
|
+
*/
|
|
197
|
+
this.selectRow = new EventEmitter();
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* Configuração da linha de detalhes.
|
|
201
|
+
*/
|
|
202
|
+
set detail(value) {
|
|
203
|
+
this._detail = this.returnPoTableDetailObject(value);
|
|
204
|
+
}
|
|
205
|
+
get detail() {
|
|
206
|
+
return this._detail;
|
|
207
|
+
}
|
|
208
|
+
get detailColumns() {
|
|
209
|
+
return this.detail?.columns || [];
|
|
210
|
+
}
|
|
211
|
+
get typeHeaderInline() {
|
|
212
|
+
return (this.detail && !this.detail['typeHeader']) || this.detail['typeHeader'] === 'inline';
|
|
213
|
+
}
|
|
214
|
+
get typeHeaderTop() {
|
|
215
|
+
return this.detail && this.detail['typeHeader'] === 'top';
|
|
216
|
+
}
|
|
217
|
+
formatNumberDetail(value, format) {
|
|
218
|
+
if (!format) {
|
|
219
|
+
return value;
|
|
220
|
+
}
|
|
221
|
+
return this.decimalPipe.transform(value, format);
|
|
222
|
+
}
|
|
223
|
+
getColumnTitleLabel(detail) {
|
|
224
|
+
return detail.label || capitalizeFirstLetter(detail.property);
|
|
225
|
+
}
|
|
226
|
+
onSelectRow(item) {
|
|
227
|
+
item.$selected = !item.$selected;
|
|
228
|
+
this.selectRow.emit(item);
|
|
229
|
+
}
|
|
230
|
+
returnPoTableDetailObject(value) {
|
|
231
|
+
if (value && isTypeof(value, 'object')) {
|
|
232
|
+
if (value.columns) {
|
|
233
|
+
value.columns.forEach(column => (column.property = column.property || column.column));
|
|
234
|
+
}
|
|
235
|
+
if (Array.isArray(value)) {
|
|
236
|
+
return { columns: value };
|
|
237
|
+
}
|
|
238
|
+
if (value.columns) {
|
|
239
|
+
return value;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
PoTableDetailComponent.ɵfac = function PoTableDetailComponent_Factory(t) { return new (t || PoTableDetailComponent)(i0.ɵɵdirectiveInject(i1.DecimalPipe)); };
|
|
245
|
+
PoTableDetailComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PoTableDetailComponent, selectors: [["po-table-detail"]], inputs: { items: ["p-items", "items"], isSelectable: ["p-selectable", "isSelectable"], detail: ["p-detail", "detail"] }, outputs: { selectRow: "p-select-row" }, decls: 4, vars: 2, consts: [[1, "po-table-master-detail"], [4, "ngIf"], ["class", "po-table-detail-row", 3, "po-table-row-active", 4, "ngFor", "ngForOf"], ["class", "po-table-header po-table-column-selectable", 4, "ngIf"], [1, "po-table-header", "po-table-header-column", "po-table-header-master-detail"], ["class", "po-table-header po-table-header-ellipsis", 4, "ngFor", "ngForOf"], [1, "po-table-header", "po-table-column-selectable"], [1, "po-table-header", "po-table-header-ellipsis"], [1, "po-table-detail-row"], [4, "ngIf", "ngIfElse"], ["masterDetailSpace", ""], ["class", "po-table-column-master-detail po-table-master-detail-label", 3, "click", 4, "ngFor", "ngForOf"], [1, "po-table-column-master-detail-space-checkbox"], [1, "po-table-column", "po-table-column-selectable"], ["type", "checkbox", 1, "po-table-checkbox"], [1, "po-table-checkbox-label", "po-clickable", 3, "click"], [1, "po-table-column-master-detail-space"], [1, "po-table-column-master-detail", "po-table-master-detail-label", 3, "click"], [3, "ngSwitch"], [4, "ngSwitchCase"], [4, "ngSwitchDefault"]], template: function PoTableDetailComponent_Template(rf, ctx) { if (rf & 1) {
|
|
246
|
+
i0.ɵɵelementStart(0, "table", 0);
|
|
247
|
+
i0.ɵɵtemplate(1, PoTableDetailComponent_thead_1_Template, 5, 2, "thead", 1);
|
|
248
|
+
i0.ɵɵelementStart(2, "tbody");
|
|
249
|
+
i0.ɵɵtemplate(3, PoTableDetailComponent_tr_3_Template, 5, 5, "tr", 2);
|
|
250
|
+
i0.ɵɵelementEnd();
|
|
251
|
+
i0.ɵɵelementEnd();
|
|
252
|
+
} if (rf & 2) {
|
|
253
|
+
i0.ɵɵadvance(1);
|
|
254
|
+
i0.ɵɵproperty("ngIf", ctx.typeHeaderTop);
|
|
255
|
+
i0.ɵɵadvance(2);
|
|
256
|
+
i0.ɵɵproperty("ngForOf", ctx.items);
|
|
257
|
+
} }, directives: [i1.NgIf, i1.NgForOf, i1.NgSwitch, i1.NgSwitchCase, i1.NgSwitchDefault], pipes: [i1.CurrencyPipe, i1.DatePipe, i2.PoTimePipe], encapsulation: 2 });
|
|
258
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoTableDetailComponent, [{
|
|
259
|
+
type: Component,
|
|
260
|
+
args: [{ selector: 'po-table-detail', template: "<table class=\"po-table-master-detail\">\n <thead *ngIf=\"typeHeaderTop\">\n <tr>\n <th class=\"po-table-header po-table-column-selectable\" *ngIf=\"isSelectable\"></th>\n <th class=\"po-table-header po-table-header-column po-table-header-master-detail\"></th>\n <th class=\"po-table-header po-table-header-ellipsis\" *ngFor=\"let detail of detail.columns\">\n {{ getColumnTitleLabel(detail) }}\n </th>\n </tr>\n </thead>\n <tbody>\n <tr\n class=\"po-table-detail-row\"\n [class.po-table-row-active]=\"item.$selected && isSelectable\"\n *ngFor=\"let item of items\"\n >\n <ng-container *ngIf=\"isSelectable; else masterDetailSpace\">\n <td class=\"po-table-column-master-detail-space-checkbox\"></td>\n <td class=\"po-table-column po-table-column-selectable\">\n <input class=\"po-table-checkbox\" type=\"checkbox\" [class.po-table-checkbox-checked]=\"item.$selected\" />\n <label class=\"po-table-checkbox-label po-clickable\" (click)=\"onSelectRow(item)\"> </label>\n </td>\n </ng-container>\n\n <ng-template #masterDetailSpace>\n <td class=\"po-table-column-master-detail-space\"></td>\n </ng-template>\n\n <td\n class=\"po-table-column-master-detail po-table-master-detail-label\"\n (click)=\"isSelectable ? onSelectRow(item) : 'javascript:;'\"\n *ngFor=\"let detail of detailColumns\"\n >\n <strong *ngIf=\"typeHeaderInline\"> {{ getColumnTitleLabel(detail) }}: </strong>\n\n <ng-container [ngSwitch]=\"detail.type\">\n <span *ngSwitchCase=\"'currency'\">{{ item[detail.property] | currency: detail.format:'symbol':'1.2-2' }}</span>\n <span *ngSwitchCase=\"'date'\">{{ item[detail.property] | date: detail.format || 'dd/MM/yyyy' }}</span>\n <span *ngSwitchCase=\"'time'\">{{ item[detail.property] | po_time: detail.format || 'HH:mm:ss.ffffff' }}</span>\n <span *ngSwitchCase=\"'dateTime'\">\n {{ item[detail.property] | date: detail.format || 'dd/MM/yyyy HH:mm:ss' }}\n </span>\n <span *ngSwitchCase=\"'number'\">{{ formatNumberDetail(item[detail.property], detail.format) }}</span>\n <span *ngSwitchDefault>{{ item[detail.property] }}</span>\n </ng-container>\n </td>\n </tr>\n </tbody>\n</table>\n" }]
|
|
261
|
+
}], function () { return [{ type: i1.DecimalPipe }]; }, { items: [{
|
|
262
|
+
type: Input,
|
|
263
|
+
args: ['p-items']
|
|
264
|
+
}], isSelectable: [{
|
|
265
|
+
type: Input,
|
|
266
|
+
args: ['p-selectable']
|
|
267
|
+
}], selectRow: [{
|
|
268
|
+
type: Output,
|
|
269
|
+
args: ['p-select-row']
|
|
270
|
+
}], detail: [{
|
|
271
|
+
type: Input,
|
|
272
|
+
args: ['p-detail']
|
|
273
|
+
}] }); })();
|
|
274
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tdGFibGUtZGV0YWlsLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby10YWJsZS9wby10YWJsZS1kZXRhaWwvcG8tdGFibGUtZGV0YWlsLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby10YWJsZS9wby10YWJsZS1kZXRhaWwvcG8tdGFibGUtZGV0YWlsLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFHdkUsT0FBTyxFQUFFLHFCQUFxQixFQUFFLFFBQVEsRUFBRSxNQUFNLHFCQUFxQixDQUFDOzs7OztJQ0FoRSx3QkFBaUY7OztJQUVqRiw2QkFBMkY7SUFDekYsWUFDRjtJQUFBLGlCQUFLOzs7O0lBREgsZUFDRjtJQURFLHNFQUNGOzs7SUFOSiw2QkFBNkI7SUFDM0IsMEJBQUk7SUFDRiw2RUFBaUY7SUFDakYsd0JBQXNGO0lBQ3RGLDZFQUVLO0lBQ1AsaUJBQUs7SUFDUCxpQkFBUTs7O0lBTm9ELGVBQWtCO0lBQWxCLDBDQUFrQjtJQUVGLGVBQWlCO0lBQWpCLCtDQUFpQjs7OztJQVd6Riw2QkFBMkQ7SUFDekQseUJBQThEO0lBQzlELDhCQUF1RDtJQUNyRCw0QkFBc0c7SUFDdEcsaUNBQWdGO0lBQTVCLGdPQUFTLDRCQUFpQixJQUFDO0lBQUUsaUJBQVE7SUFDM0YsaUJBQUs7SUFDUCwwQkFBZTs7O0lBSHNDLGVBQWtEO0lBQWxELDhEQUFrRDs7O0lBTXJHLHlCQUFxRDs7O0lBUXJELDhCQUFpQztJQUFDLFlBQW1DO0lBQUEsaUJBQVM7Ozs7SUFBNUMsZUFBbUM7SUFBbkMseUVBQW1DOzs7SUFHbkUsNEJBQWlDO0lBQUEsWUFBc0U7O0lBQUEsaUJBQU87Ozs7SUFBN0UsZUFBc0U7SUFBdEUsOEdBQXNFOzs7SUFDdkcsNEJBQTZCO0lBQUEsWUFBaUU7O0lBQUEsaUJBQU87Ozs7SUFBeEUsZUFBaUU7SUFBakUsMkdBQWlFOzs7SUFDOUYsNEJBQTZCO0lBQUEsWUFBeUU7O0lBQUEsaUJBQU87Ozs7SUFBaEYsZUFBeUU7SUFBekUsZ0hBQXlFOzs7SUFDdEcsNEJBQWlDO0lBQy9CLFlBQ0Y7O0lBQUEsaUJBQU87Ozs7SUFETCxlQUNGO0lBREUsK0hBQ0Y7OztJQUNBLDRCQUErQjtJQUFBLFlBQThEO0lBQUEsaUJBQU87Ozs7O0lBQXJFLGVBQThEO0lBQTlELGlHQUE4RDs7O0lBQzdGLDRCQUF1QjtJQUFBLFlBQTJCO0lBQUEsaUJBQU87Ozs7SUFBbEMsZUFBMkI7SUFBM0Isa0RBQTJCOzs7O0lBZnRELDhCQUlDO0lBRkMsME9BQXdCLDRCQUFpQixHQUFHLGNBQWMsSUFBQztJQUczRCx1RkFBOEU7SUFFOUUsaUNBQXVDO0lBQ3JDLG9GQUE4RztJQUM5RyxvRkFBcUc7SUFDckcsb0ZBQTZHO0lBQzdHLG9GQUVPO0lBQ1Asb0ZBQW9HO0lBQ3BHLG9GQUF5RDtJQUMzRCwwQkFBZTtJQUNqQixpQkFBSzs7OztJQVpNLGVBQXNCO0lBQXRCLDhDQUFzQjtJQUVqQixlQUF3QjtJQUF4QiwwQ0FBd0I7SUFDN0IsZUFBd0I7SUFBeEIseUNBQXdCO0lBQ3hCLGVBQW9CO0lBQXBCLHFDQUFvQjtJQUNwQixlQUFvQjtJQUFwQixxQ0FBb0I7SUFDcEIsZUFBd0I7SUFBeEIseUNBQXdCO0lBR3hCLGVBQXNCO0lBQXRCLHVDQUFzQjs7O0lBL0JuQyw2QkFJQztJQUNDLDhGQU1lO0lBRWYsOEhBRWM7SUFFZCwyRUFpQks7SUFDUCxpQkFBSzs7Ozs7SUFqQ0gsK0VBQTREO0lBRzdDLGVBQW9CO0lBQXBCLDBDQUFvQixpQkFBQTtJQWVkLGVBQWdCO0lBQWhCLDhDQUFnQjs7QUR2QjNDOzs7Ozs7R0FNRztBQUtILE1BQU0sT0FBTyxzQkFBc0I7SUFpQ2pDLFlBQW9CLFdBQXdCO1FBQXhCLGdCQUFXLEdBQVgsV0FBVyxDQUFhO1FBM0I1Qzs7V0FFRztRQUNvQixpQkFBWSxHQUFhLEtBQUssQ0FBQztRQUV0RDs7Ozs7O1dBTUc7UUFDcUIsY0FBUyxHQUFzQixJQUFJLFlBQVksRUFBTyxDQUFDO0lBZWhDLENBQUM7SUFYaEQ7O09BRUc7SUFDSCxJQUF1QixNQUFNLENBQUMsS0FBb0I7UUFDaEQsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMseUJBQXlCLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDdkQsQ0FBQztJQUVELElBQUksTUFBTTtRQUNSLE9BQU8sSUFBSSxDQUFDLE9BQU8sQ0FBQztJQUN0QixDQUFDO0lBSUQsSUFBSSxhQUFhO1FBQ2YsT0FBTyxJQUFJLENBQUMsTUFBTSxFQUFFLE9BQU8sSUFBSSxFQUFFLENBQUM7SUFDcEMsQ0FBQztJQUVELElBQUksZ0JBQWdCO1FBQ2xCLE9BQU8sQ0FBQyxJQUFJLENBQUMsTUFBTSxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxZQUFZLENBQUMsQ0FBQyxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsWUFBWSxDQUFDLEtBQUssUUFBUSxDQUFDO0lBQy9GLENBQUM7SUFFRCxJQUFJLGFBQWE7UUFDZixPQUFPLElBQUksQ0FBQyxNQUFNLElBQUksSUFBSSxDQUFDLE1BQU0sQ0FBQyxZQUFZLENBQUMsS0FBSyxLQUFLLENBQUM7SUFDNUQsQ0FBQztJQUVELGtCQUFrQixDQUFDLEtBQVUsRUFBRSxNQUFjO1FBQzNDLElBQUksQ0FBQyxNQUFNLEVBQUU7WUFDWCxPQUFPLEtBQUssQ0FBQztTQUNkO1FBRUQsT0FBTyxJQUFJLENBQUMsV0FBVyxDQUFDLFNBQVMsQ0FBQyxLQUFLLEVBQUUsTUFBTSxDQUFDLENBQUM7SUFDbkQsQ0FBQztJQUVELG1CQUFtQixDQUFDLE1BQTJCO1FBQzdDLE9BQU8sTUFBTSxDQUFDLEtBQUssSUFBSSxxQkFBcUIsQ0FBQyxNQUFNLENBQUMsUUFBUSxDQUFDLENBQUM7SUFDaEUsQ0FBQztJQUVELFdBQVcsQ0FBQyxJQUFJO1FBQ2QsSUFBSSxDQUFDLFNBQVMsR0FBRyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUM7UUFDakMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDNUIsQ0FBQztJQUVPLHlCQUF5QixDQUFDLEtBQVU7UUFDMUMsSUFBSSxLQUFLLElBQUksUUFBUSxDQUFDLEtBQUssRUFBRSxRQUFRLENBQUMsRUFBRTtZQUN0QyxJQUFJLEtBQUssQ0FBQyxPQUFPLEVBQUU7Z0JBQ2pCLEtBQUssQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUMsQ0FBQyxNQUFNLENBQUMsUUFBUSxHQUFHLE1BQU0sQ0FBQyxRQUFRLElBQUksTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7YUFDdkY7WUFFRCxJQUFJLEtBQUssQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLEVBQUU7Z0JBQ3hCLE9BQU8sRUFBRSxPQUFPLEVBQUUsS0FBSyxFQUFFLENBQUM7YUFDM0I7WUFFRCxJQUFJLEtBQUssQ0FBQyxPQUFPLEVBQUU7Z0JBQ2pCLE9BQU8sS0FBSyxDQUFDO2FBQ2Q7U0FDRjtJQUNILENBQUM7OzRGQTlFVSxzQkFBc0I7eUVBQXRCLHNCQUFzQjtRQ25CbkMsZ0NBQXNDO1FBQ3BDLDJFQVFRO1FBQ1IsNkJBQU87UUFDTCxxRUFtQ0s7UUFDUCxpQkFBUTtRQUNWLGlCQUFROztRQS9DRSxlQUFtQjtRQUFuQix3Q0FBbUI7UUFhTixlQUFRO1FBQVIsbUNBQVE7O3VGREtsQixzQkFBc0I7Y0FKbEMsU0FBUzsyQkFDRSxpQkFBaUI7OERBT1QsS0FBSztrQkFBdEIsS0FBSzttQkFBQyxTQUFTO1lBS08sWUFBWTtrQkFBbEMsS0FBSzttQkFBQyxjQUFjO1lBU0csU0FBUztrQkFBaEMsTUFBTTttQkFBQyxjQUFjO1lBT0MsTUFBTTtrQkFBNUIsS0FBSzttQkFBQyxVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IERlY2ltYWxQaXBlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcblxuaW1wb3J0IHsgY2FwaXRhbGl6ZUZpcnN0TGV0dGVyLCBpc1R5cGVvZiB9IGZyb20gJy4uLy4uLy4uL3V0aWxzL3V0aWwnO1xuXG5pbXBvcnQgeyBQb1RhYmxlRGV0YWlsIH0gZnJvbSAnLi9wby10YWJsZS1kZXRhaWwuaW50ZXJmYWNlJztcbmltcG9ydCB7IFBvVGFibGVEZXRhaWxDb2x1bW4gfSBmcm9tICcuL3BvLXRhYmxlLWRldGFpbC1jb2x1bW4uaW50ZXJmYWNlJztcblxuLyoqXG4gKiBAZG9jc1ByaXZhdGVcbiAqXG4gKiBAZGVzY3JpcHRpb25cbiAqXG4gKiBDb21wb25lbnRlIHJlc3BvbnPDoXZlbCBwb3IgYXByZXNlbnRhciBvIGRldGFsaGUgZGUgY2FkYSBsaW5oYSBkYSB0YWJlbGEuXG4gKi9cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3BvLXRhYmxlLWRldGFpbCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9wby10YWJsZS1kZXRhaWwuY29tcG9uZW50Lmh0bWwnXG59KVxuZXhwb3J0IGNsYXNzIFBvVGFibGVEZXRhaWxDb21wb25lbnQge1xuICAvKipcbiAgICogTGlzdGEgZGUgaXRlbnMgZG8gX2RldGFpbF8gZGEgdGFiZWxhLlxuICAgKi9cbiAgQElucHV0KCdwLWl0ZW1zJykgaXRlbXM6IEFycmF5PGFueT47XG5cbiAgLyoqXG4gICAqIERlZmluZSBzZSBhIHRhYmVsYSBwb3NzdWkgYSBvcMOnw6NvIGRlIGBzZWxlY3RhYmxlYCBoYWJpbGl0YWRhLlxuICAgKi9cbiAgQElucHV0KCdwLXNlbGVjdGFibGUnKSBpc1NlbGVjdGFibGU/OiBib29sZWFuID0gZmFsc2U7XG5cbiAgLyoqXG4gICAqIEBvcHRpb25hbFxuICAgKlxuICAgKiBAZGVzY3JpcHRpb25cbiAgICpcbiAgICogQcOnw6NvIGV4ZWN1dGFkYSBhbyBzZWxlY2lvbmFyIG91IGRlc21hcmNhciBhIHNlbGXDp8OjbyBkZSB1bWEgbGluaGEgZGUgZGV0YWxoZSBkbyBgcG8tdGFibGVgLlxuICAgKi9cbiAgQE91dHB1dCgncC1zZWxlY3Qtcm93Jykgc2VsZWN0Um93OiBFdmVudEVtaXR0ZXI8YW55PiA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xuXG4gIHByaXZhdGUgX2RldGFpbDogUG9UYWJsZURldGFpbDtcblxuICAvKipcbiAgICogQ29uZmlndXJhw6fDo28gZGEgbGluaGEgZGUgZGV0YWxoZXMuXG4gICAqL1xuICBASW5wdXQoJ3AtZGV0YWlsJykgc2V0IGRldGFpbCh2YWx1ZTogUG9UYWJsZURldGFpbCkge1xuICAgIHRoaXMuX2RldGFpbCA9IHRoaXMucmV0dXJuUG9UYWJsZURldGFpbE9iamVjdCh2YWx1ZSk7XG4gIH1cblxuICBnZXQgZGV0YWlsKCkge1xuICAgIHJldHVybiB0aGlzLl9kZXRhaWw7XG4gIH1cblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGRlY2ltYWxQaXBlOiBEZWNpbWFsUGlwZSkge31cblxuICBnZXQgZGV0YWlsQ29sdW1ucygpOiBBcnJheTxQb1RhYmxlRGV0YWlsQ29sdW1uPiB7XG4gICAgcmV0dXJuIHRoaXMuZGV0YWlsPy5jb2x1bW5zIHx8IFtdO1xuICB9XG5cbiAgZ2V0IHR5cGVIZWFkZXJJbmxpbmUoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuICh0aGlzLmRldGFpbCAmJiAhdGhpcy5kZXRhaWxbJ3R5cGVIZWFkZXInXSkgfHwgdGhpcy5kZXRhaWxbJ3R5cGVIZWFkZXInXSA9PT0gJ2lubGluZSc7XG4gIH1cblxuICBnZXQgdHlwZUhlYWRlclRvcCgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5kZXRhaWwgJiYgdGhpcy5kZXRhaWxbJ3R5cGVIZWFkZXInXSA9PT0gJ3RvcCc7XG4gIH1cblxuICBmb3JtYXROdW1iZXJEZXRhaWwodmFsdWU6IGFueSwgZm9ybWF0OiBzdHJpbmcpIHtcbiAgICBpZiAoIWZvcm1hdCkge1xuICAgICAgcmV0dXJuIHZhbHVlO1xuICAgIH1cblxuICAgIHJldHVybiB0aGlzLmRlY2ltYWxQaXBlLnRyYW5zZm9ybSh2YWx1ZSwgZm9ybWF0KTtcbiAgfVxuXG4gIGdldENvbHVtblRpdGxlTGFiZWwoZGV0YWlsOiBQb1RhYmxlRGV0YWlsQ29sdW1uKSB7XG4gICAgcmV0dXJuIGRldGFpbC5sYWJlbCB8fCBjYXBpdGFsaXplRmlyc3RMZXR0ZXIoZGV0YWlsLnByb3BlcnR5KTtcbiAgfVxuXG4gIG9uU2VsZWN0Um93KGl0ZW0pIHtcbiAgICBpdGVtLiRzZWxlY3RlZCA9ICFpdGVtLiRzZWxlY3RlZDtcbiAgICB0aGlzLnNlbGVjdFJvdy5lbWl0KGl0ZW0pO1xuICB9XG5cbiAgcHJpdmF0ZSByZXR1cm5Qb1RhYmxlRGV0YWlsT2JqZWN0KHZhbHVlOiBhbnkpIHtcbiAgICBpZiAodmFsdWUgJiYgaXNUeXBlb2YodmFsdWUsICdvYmplY3QnKSkge1xuICAgICAgaWYgKHZhbHVlLmNvbHVtbnMpIHtcbiAgICAgICAgdmFsdWUuY29sdW1ucy5mb3JFYWNoKGNvbHVtbiA9PiAoY29sdW1uLnByb3BlcnR5ID0gY29sdW1uLnByb3BlcnR5IHx8IGNvbHVtbi5jb2x1bW4pKTtcbiAgICAgIH1cblxuICAgICAgaWYgKEFycmF5LmlzQXJyYXkodmFsdWUpKSB7XG4gICAgICAgIHJldHVybiB7IGNvbHVtbnM6IHZhbHVlIH07XG4gICAgICB9XG5cbiAgICAgIGlmICh2YWx1ZS5jb2x1bW5zKSB7XG4gICAgICAgIHJldHVybiB2YWx1ZTtcbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiIsIjx0YWJsZSBjbGFzcz1cInBvLXRhYmxlLW1hc3Rlci1kZXRhaWxcIj5cbiAgPHRoZWFkICpuZ0lmPVwidHlwZUhlYWRlclRvcFwiPlxuICAgIDx0cj5cbiAgICAgIDx0aCBjbGFzcz1cInBvLXRhYmxlLWhlYWRlciBwby10YWJsZS1jb2x1bW4tc2VsZWN0YWJsZVwiICpuZ0lmPVwiaXNTZWxlY3RhYmxlXCI+PC90aD5cbiAgICAgIDx0aCBjbGFzcz1cInBvLXRhYmxlLWhlYWRlciBwby10YWJsZS1oZWFkZXItY29sdW1uIHBvLXRhYmxlLWhlYWRlci1tYXN0ZXItZGV0YWlsXCI+PC90aD5cbiAgICAgIDx0aCBjbGFzcz1cInBvLXRhYmxlLWhlYWRlciBwby10YWJsZS1oZWFkZXItZWxsaXBzaXNcIiAqbmdGb3I9XCJsZXQgZGV0YWlsIG9mIGRldGFpbC5jb2x1bW5zXCI+XG4gICAgICAgIHt7IGdldENvbHVtblRpdGxlTGFiZWwoZGV0YWlsKSB9fVxuICAgICAgPC90aD5cbiAgICA8L3RyPlxuICA8L3RoZWFkPlxuICA8dGJvZHk+XG4gICAgPHRyXG4gICAgICBjbGFzcz1cInBvLXRhYmxlLWRldGFpbC1yb3dcIlxuICAgICAgW2NsYXNzLnBvLXRhYmxlLXJvdy1hY3RpdmVdPVwiaXRlbS4kc2VsZWN0ZWQgJiYgaXNTZWxlY3RhYmxlXCJcbiAgICAgICpuZ0Zvcj1cImxldCBpdGVtIG9mIGl0ZW1zXCJcbiAgICA+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNTZWxlY3RhYmxlOyBlbHNlIG1hc3RlckRldGFpbFNwYWNlXCI+XG4gICAgICAgIDx0ZCBjbGFzcz1cInBvLXRhYmxlLWNvbHVtbi1tYXN0ZXItZGV0YWlsLXNwYWNlLWNoZWNrYm94XCI+PC90ZD5cbiAgICAgICAgPHRkIGNsYXNzPVwicG8tdGFibGUtY29sdW1uIHBvLXRhYmxlLWNvbHVtbi1zZWxlY3RhYmxlXCI+XG4gICAgICAgICAgPGlucHV0IGNsYXNzPVwicG8tdGFibGUtY2hlY2tib3hcIiB0eXBlPVwiY2hlY2tib3hcIiBbY2xhc3MucG8tdGFibGUtY2hlY2tib3gtY2hlY2tlZF09XCJpdGVtLiRzZWxlY3RlZFwiIC8+XG4gICAgICAgICAgPGxhYmVsIGNsYXNzPVwicG8tdGFibGUtY2hlY2tib3gtbGFiZWwgcG8tY2xpY2thYmxlXCIgKGNsaWNrKT1cIm9uU2VsZWN0Um93KGl0ZW0pXCI+IDwvbGFiZWw+XG4gICAgICAgIDwvdGQ+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgICAgPG5nLXRlbXBsYXRlICNtYXN0ZXJEZXRhaWxTcGFjZT5cbiAgICAgICAgPHRkIGNsYXNzPVwicG8tdGFibGUtY29sdW1uLW1hc3Rlci1kZXRhaWwtc3BhY2VcIj48L3RkPlxuICAgICAgPC9uZy10ZW1wbGF0ZT5cblxuICAgICAgPHRkXG4gICAgICAgIGNsYXNzPVwicG8tdGFibGUtY29sdW1uLW1hc3Rlci1kZXRhaWwgcG8tdGFibGUtbWFzdGVyLWRldGFpbC1sYWJlbFwiXG4gICAgICAgIChjbGljayk9XCJpc1NlbGVjdGFibGUgPyBvblNlbGVjdFJvdyhpdGVtKSA6ICdqYXZhc2NyaXB0OjsnXCJcbiAgICAgICAgKm5nRm9yPVwibGV0IGRldGFpbCBvZiBkZXRhaWxDb2x1bW5zXCJcbiAgICAgID5cbiAgICAgICAgPHN0cm9uZyAqbmdJZj1cInR5cGVIZWFkZXJJbmxpbmVcIj4ge3sgZ2V0Q29sdW1uVGl0bGVMYWJlbChkZXRhaWwpIH19OiA8L3N0cm9uZz5cblxuICAgICAgICA8bmctY29udGFpbmVyIFtuZ1N3aXRjaF09XCJkZXRhaWwudHlwZVwiPlxuICAgICAgICAgIDxzcGFuICpuZ1N3aXRjaENhc2U9XCInY3VycmVuY3knXCI+e3sgaXRlbVtkZXRhaWwucHJvcGVydHldIHwgY3VycmVuY3k6IGRldGFpbC5mb3JtYXQ6J3N5bWJvbCc6JzEuMi0yJyB9fTwvc3Bhbj5cbiAgICAgICAgICA8c3BhbiAqbmdTd2l0Y2hDYXNlPVwiJ2RhdGUnXCI+e3sgaXRlbVtkZXRhaWwucHJvcGVydHldIHwgZGF0ZTogZGV0YWlsLmZvcm1hdCB8fCAnZGQvTU0veXl5eScgfX08L3NwYW4+XG4gICAgICAgICAgPHNwYW4gKm5nU3dpdGNoQ2FzZT1cIid0aW1lJ1wiPnt7IGl0ZW1bZGV0YWlsLnByb3BlcnR5XSB8IHBvX3RpbWU6IGRldGFpbC5mb3JtYXQgfHwgJ0hIOm1tOnNzLmZmZmZmZicgfX08L3NwYW4+XG4gICAgICAgICAgPHNwYW4gKm5nU3dpdGNoQ2FzZT1cIidkYXRlVGltZSdcIj5cbiAgICAgICAgICAgIHt7IGl0ZW1bZGV0YWlsLnByb3BlcnR5XSB8IGRhdGU6IGRldGFpbC5mb3JtYXQgfHwgJ2RkL01NL3l5eXkgSEg6bW06c3MnIH19XG4gICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgIDxzcGFuICpuZ1N3aXRjaENhc2U9XCInbnVtYmVyJ1wiPnt7IGZvcm1hdE51bWJlckRldGFpbChpdGVtW2RldGFpbC5wcm9wZXJ0eV0sIGRldGFpbC5mb3JtYXQpIH19PC9zcGFuPlxuICAgICAgICAgIDxzcGFuICpuZ1N3aXRjaERlZmF1bHQ+e3sgaXRlbVtkZXRhaWwucHJvcGVydHldIH19PC9zcGFuPlxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgIDwvdGQ+XG4gICAgPC90cj5cbiAgPC90Ym9keT5cbjwvdGFibGU+XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tdGFibGUtZGV0YWlsLmludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby10YWJsZS9wby10YWJsZS1kZXRhaWwvcG8tdGFibGUtZGV0YWlsLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUG9UYWJsZURldGFpbENvbHVtbiB9IGZyb20gJy4vcG8tdGFibGUtZGV0YWlsLWNvbHVtbi5pbnRlcmZhY2UnO1xuXG4vKipcbiAqIEB1c2VkQnkgUG9UYWJsZUNvbXBvbmVudFxuICpcbiAqIEBkZXNjcmlwdGlvblxuICpcbiAqIEludGVyZmFjZSBwYXJhIGNvbmZpZ3VyYcOnw6NvIGRvIF9kZXRhaWxfIGRvIGNvbXBvbmVudGUgYHBvLXRhYmxlYC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBQb1RhYmxlRGV0YWlsIHtcbiAgLyoqXG4gICAqIERlZmluZSB1bWEgbGlzdGEgZG8gdGlwbyBgUG9UYWJsZURldGFpbENvbHVtbmAgcGFyYSBhcyBjb2x1bmFzIGRvIG9iamV0ICpkZXRhaWwqLiBQb3IgZXhlbXBsbzpcbiAgICpcbiAgICogYGBgXG4gICAqICBbXG4gICAqICAgeyBwcm9wZXJ0eTogJ21pbGVzJywgbGFiZWw6ICdNaWxlcycsIHR5cGU6ICdudW1iZXInLCBmb3JtYXQ6ICcxLjAtNScgfSxcbiAgICogICB7IHByb3BlcnR5OiAnZGVwYXJ0dXJlJywgbGFiZWw6ICdEZXBhcnR1cmUgdGltZScsIHR5cGU6ICdkYXRlJywgZm9ybWF0OiAnZGQvTU0veXl5eScgfVxuICAgKiAgXVxuICAgKiBgYGBcbiAgICovXG4gIGNvbHVtbnM6IEFycmF5PFBvVGFibGVEZXRhaWxDb2x1bW4+O1xuXG4gIC8qKlxuICAgKlxuICAgKiBEZWZpbmUgc2UgbyBjaGVja2JveCBkZSBzZWxlw6fDo28gZG8gZGV0YWlsIHNlcsOhIGV4aWJpZG8uIFZhbG9yIHBhZHLDo28gJ2ZhbHNlJy5cbiAgICovXG4gIGhpZGVTZWxlY3Q/OiBib29sZWFuO1xuXG4gIC8qKlxuICAgKlxuICAgKiBEZWZpbmUgbyB0aXBvIGRlIGNhYmXDp2FsaG8gcGFyYSBvIGNvbnRlw7pkbyBkbyBfZGV0YWlsXyAuXG4gICAqXG4gICAqIFZhbG9yZXMgdsOhbGlkb3M6XG4gICAqIC0gYGlubGluZWA6IEF0cmlidWkgbyBjYWJlw6dhbGhvIG5hIG1lc21hIGxpbmhhIGRvIF9kZXRhaWxfLlxuICAgKiAtIGB0b3BgOiBBdHJpYnVpIG8gY2FiZcOnYWxobyBhY2ltYSBkbyBfZGV0YWlsXywgaWTDqm50aWNvIGFvIGBwby10YWJsZWAuXG4gICAqIC0gYG5vbmVgOiBSZW1vdmUgbyBjYWJlw6dhbGhvIGRvIF9kZXRhaWxfLlxuICAgKi9cbiAgdHlwZUhlYWRlcj86IHN0cmluZztcbn1cbiJdfQ==
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "../../po-icon/po-icon.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
5
|
+
import * as i3 from "../../../directives/po-tooltip/po-tooltip.directive";
|
|
6
|
+
const _c0 = function (a0, a1) { return { "po-clickable": a0, "po-table-icon-disabled": a1 }; };
|
|
7
|
+
/**
|
|
8
|
+
* @docsPrivate
|
|
9
|
+
*
|
|
10
|
+
* @description
|
|
11
|
+
*
|
|
12
|
+
* Componente responsável por exibir um ícone na tabela.
|
|
13
|
+
*/
|
|
14
|
+
export class PoTableIconComponent {
|
|
15
|
+
constructor() {
|
|
16
|
+
/** Output click. */
|
|
17
|
+
this.click = new EventEmitter();
|
|
18
|
+
}
|
|
19
|
+
get allowTooltip() {
|
|
20
|
+
return !this.disabled && this.iconTooltip;
|
|
21
|
+
}
|
|
22
|
+
onClick(event) {
|
|
23
|
+
if (this.clickable) {
|
|
24
|
+
this.click.emit(event);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
tooltipMouseEnter() {
|
|
28
|
+
if (this.allowTooltip) {
|
|
29
|
+
this.tooltip = this.iconTooltip;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
tooltipMouseLeave() {
|
|
33
|
+
this.tooltip = undefined;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
PoTableIconComponent.ɵfac = function PoTableIconComponent_Factory(t) { return new (t || PoTableIconComponent)(); };
|
|
37
|
+
PoTableIconComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PoTableIconComponent, selectors: [["po-table-icon"]], inputs: { clickable: ["p-clickable", "clickable"], color: ["p-color", "color"], disabled: ["p-disabled", "disabled"], icon: ["p-icon", "icon"], iconTooltip: ["p-icon-tooltip", "iconTooltip"] }, outputs: { click: "p-click" }, decls: 1, vars: 9, consts: [[3, "ngClass", "p-icon", "p-tooltip", "click", "mouseenter", "mouseleave"]], template: function PoTableIconComponent_Template(rf, ctx) { if (rf & 1) {
|
|
38
|
+
i0.ɵɵelementStart(0, "po-icon", 0);
|
|
39
|
+
i0.ɵɵlistener("click", function PoTableIconComponent_Template_po_icon_click_0_listener($event) { return ctx.onClick($event); })("mouseenter", function PoTableIconComponent_Template_po_icon_mouseenter_0_listener() { return ctx.tooltipMouseEnter(); })("mouseleave", function PoTableIconComponent_Template_po_icon_mouseleave_0_listener() { return ctx.tooltipMouseLeave(); });
|
|
40
|
+
i0.ɵɵelementEnd();
|
|
41
|
+
} if (rf & 2) {
|
|
42
|
+
i0.ɵɵclassMapInterpolate1("po-table-icon-content ", ctx.disabled ? "" : ctx.color, "");
|
|
43
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(6, _c0, ctx.clickable, ctx.disabled))("p-icon", ctx.icon)("p-tooltip", ctx.tooltip);
|
|
44
|
+
} }, directives: [i1.PoIconComponent, i2.NgClass, i3.PoTooltipDirective], encapsulation: 2, changeDetection: 0 });
|
|
45
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoTableIconComponent, [{
|
|
46
|
+
type: Component,
|
|
47
|
+
args: [{ selector: 'po-table-icon', changeDetection: ChangeDetectionStrategy.OnPush, template: "<po-icon\n class=\"po-table-icon-content {{ disabled ? '' : color }}\"\n [ngClass]=\"{ 'po-clickable': clickable, 'po-table-icon-disabled': disabled }\"\n [p-icon]=\"icon\"\n [p-tooltip]=\"tooltip\"\n (click)=\"onClick($event)\"\n (mouseenter)=\"tooltipMouseEnter()\"\n (mouseleave)=\"tooltipMouseLeave()\"\n></po-icon>\n" }]
|
|
48
|
+
}], null, { clickable: [{
|
|
49
|
+
type: Input,
|
|
50
|
+
args: ['p-clickable']
|
|
51
|
+
}], color: [{
|
|
52
|
+
type: Input,
|
|
53
|
+
args: ['p-color']
|
|
54
|
+
}], disabled: [{
|
|
55
|
+
type: Input,
|
|
56
|
+
args: ['p-disabled']
|
|
57
|
+
}], icon: [{
|
|
58
|
+
type: Input,
|
|
59
|
+
args: ['p-icon']
|
|
60
|
+
}], iconTooltip: [{
|
|
61
|
+
type: Input,
|
|
62
|
+
args: ['p-icon-tooltip']
|
|
63
|
+
}], click: [{
|
|
64
|
+
type: Output,
|
|
65
|
+
args: ['p-click']
|
|
66
|
+
}] }); })();
|
|
67
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tdGFibGUtaWNvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS9zcmMvbGliL2NvbXBvbmVudHMvcG8tdGFibGUvcG8tdGFibGUtaWNvbi9wby10YWJsZS1pY29uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby10YWJsZS9wby10YWJsZS1pY29uL3BvLXRhYmxlLWljb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBZSxNQUFNLGVBQWUsQ0FBQzs7Ozs7O0FBRTdHOzs7Ozs7R0FNRztBQU1ILE1BQU0sT0FBTyxvQkFBb0I7SUFMakM7UUFxQkUsb0JBQW9CO1FBQ0QsVUFBSyxHQUFzQixJQUFJLFlBQVksRUFBRSxDQUFDO0tBdUJsRTtJQW5CQyxJQUFZLFlBQVk7UUFDdEIsT0FBTyxDQUFDLElBQUksQ0FBQyxRQUFRLElBQUksSUFBSSxDQUFDLFdBQVcsQ0FBQztJQUM1QyxDQUFDO0lBRUQsT0FBTyxDQUFDLEtBQUs7UUFDWCxJQUFJLElBQUksQ0FBQyxTQUFTLEVBQUU7WUFDbEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7U0FDeEI7SUFDSCxDQUFDO0lBRUQsaUJBQWlCO1FBQ2YsSUFBSSxJQUFJLENBQUMsWUFBWSxFQUFFO1lBQ3JCLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQztTQUNqQztJQUNILENBQUM7SUFFRCxpQkFBaUI7UUFDZixJQUFJLENBQUMsT0FBTyxHQUFHLFNBQVMsQ0FBQztJQUMzQixDQUFDOzt3RkF2Q1Usb0JBQW9CO3VFQUFwQixvQkFBb0I7UUNkakMsa0NBUUM7UUFIQyx3R0FBUyxtQkFBZSxJQUFDLCtGQUNYLHVCQUFtQixJQURSLCtGQUVYLHVCQUFtQixJQUZSO1FBRzFCLGlCQUFVOztRQVBULHNGQUF5RDtRQUN6RCxpRkFBNkUsb0JBQUEsMEJBQUE7O3VGRFlsRSxvQkFBb0I7Y0FMaEMsU0FBUzsyQkFDRSxlQUFlLG1CQUVSLHVCQUF1QixDQUFDLE1BQU07Z0JBSXpCLFNBQVM7a0JBQTlCLEtBQUs7bUJBQUMsYUFBYTtZQUdGLEtBQUs7a0JBQXRCLEtBQUs7bUJBQUMsU0FBUztZQUdLLFFBQVE7a0JBQTVCLEtBQUs7bUJBQUMsWUFBWTtZQUdGLElBQUk7a0JBQXBCLEtBQUs7bUJBQUMsUUFBUTtZQUdVLFdBQVc7a0JBQW5DLEtBQUs7bUJBQUMsZ0JBQWdCO1lBR0osS0FBSztrQkFBdkIsTUFBTTttQkFBQyxTQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT3V0cHV0LCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG4vKipcbiAqIEBkb2NzUHJpdmF0ZVxuICpcbiAqIEBkZXNjcmlwdGlvblxuICpcbiAqIENvbXBvbmVudGUgcmVzcG9uc8OhdmVsIHBvciBleGliaXIgdW0gw61jb25lIG5hIHRhYmVsYS5cbiAqL1xuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAncG8tdGFibGUtaWNvbicsXG4gIHRlbXBsYXRlVXJsOiAnLi9wby10YWJsZS1pY29uLmNvbXBvbmVudC5odG1sJyxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2hcbn0pXG5leHBvcnQgY2xhc3MgUG9UYWJsZUljb25Db21wb25lbnQge1xuICAvKiogRGVmaW5lIHNlIG8gw61jb25lIMOpIGNsaWPDoXZlbC4gKi9cbiAgQElucHV0KCdwLWNsaWNrYWJsZScpIGNsaWNrYWJsZTogYm9vbGVhbjtcblxuICAvKiogQ29yIGRvIMOtY29uZS4gKi9cbiAgQElucHV0KCdwLWNvbG9yJykgY29sb3I6IHN0cmluZztcblxuICAvKiogRGVzYWJpbGl0YWRvLiAqL1xuICBASW5wdXQoJ3AtZGlzYWJsZWQnKSBkaXNhYmxlZDogYm9vbGVhbjtcblxuICAvKiogQ2xhc3NlIGNzcyBkbyDDrWNvbmUuICovXG4gIEBJbnB1dCgncC1pY29uJykgaWNvbjogc3RyaW5nIHwgVGVtcGxhdGVSZWY8dm9pZD47XG5cbiAgLyoqIFRleHRvIGRvIHRvb2x0aXAuICovXG4gIEBJbnB1dCgncC1pY29uLXRvb2x0aXAnKSBpY29uVG9vbHRpcDogc3RyaW5nO1xuXG4gIC8qKiBPdXRwdXQgY2xpY2suICovXG4gIEBPdXRwdXQoJ3AtY2xpY2snKSBjbGljazogRXZlbnRFbWl0dGVyPGFueT4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG5cbiAgdG9vbHRpcDogc3RyaW5nO1xuXG4gIHByaXZhdGUgZ2V0IGFsbG93VG9vbHRpcCgpIHtcbiAgICByZXR1cm4gIXRoaXMuZGlzYWJsZWQgJiYgdGhpcy5pY29uVG9vbHRpcDtcbiAgfVxuXG4gIG9uQ2xpY2soZXZlbnQpIHtcbiAgICBpZiAodGhpcy5jbGlja2FibGUpIHtcbiAgICAgIHRoaXMuY2xpY2suZW1pdChldmVudCk7XG4gICAgfVxuICB9XG5cbiAgdG9vbHRpcE1vdXNlRW50ZXIoKSB7XG4gICAgaWYgKHRoaXMuYWxsb3dUb29sdGlwKSB7XG4gICAgICB0aGlzLnRvb2x0aXAgPSB0aGlzLmljb25Ub29sdGlwO1xuICAgIH1cbiAgfVxuXG4gIHRvb2x0aXBNb3VzZUxlYXZlKCkge1xuICAgIHRoaXMudG9vbHRpcCA9IHVuZGVmaW5lZDtcbiAgfVxufVxuIiwiPHBvLWljb25cbiAgY2xhc3M9XCJwby10YWJsZS1pY29uLWNvbnRlbnQge3sgZGlzYWJsZWQgPyAnJyA6IGNvbG9yIH19XCJcbiAgW25nQ2xhc3NdPVwieyAncG8tY2xpY2thYmxlJzogY2xpY2thYmxlLCAncG8tdGFibGUtaWNvbi1kaXNhYmxlZCc6IGRpc2FibGVkIH1cIlxuICBbcC1pY29uXT1cImljb25cIlxuICBbcC10b29sdGlwXT1cInRvb2x0aXBcIlxuICAoY2xpY2spPVwib25DbGljaygkZXZlbnQpXCJcbiAgKG1vdXNlZW50ZXIpPVwidG9vbHRpcE1vdXNlRW50ZXIoKVwiXG4gIChtb3VzZWxlYXZlKT1cInRvb2x0aXBNb3VzZUxlYXZlKClcIlxuPjwvcG8taWNvbj5cbiJdfQ==
|
package/esm2020/lib/components/po-table/po-table-row-template/po-table-row-template.directive.mjs
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { Directive, Input } from '@angular/core';
|
|
2
|
+
import { PoTableRowTemplateArrowDirection } from '../enums/po-table-row-template-arrow-direction.enum';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* @usedBy PoTableComponent
|
|
6
|
+
*
|
|
7
|
+
* @description
|
|
8
|
+
*
|
|
9
|
+
* Esta diretiva permite que seja apresentada informações adicionais a respeito de uma determinada linha de
|
|
10
|
+
* dados, de forma que possam ser exibidas e ocultadas através do botão de acionamento.
|
|
11
|
+
*
|
|
12
|
+
* > Quando utilizada, sobrepõe as funcionalidade básicas do *master-detail*.
|
|
13
|
+
*
|
|
14
|
+
* Em seu uso, deve-se utilizar como parâmetro a referência da _linha_ e/ou _índice_, sendo por padrão linha. Caso não seja declarado,
|
|
15
|
+
* o componente não exibirá conteúdo.
|
|
16
|
+
* - Linha: `row` determina o item da linha corrente.
|
|
17
|
+
* - Índice: `rowIndex` determina o índice da linha corrente.
|
|
18
|
+
*
|
|
19
|
+
* Esta diretiva compõe-se de dois meios para uso, de forma explícita tal como em *syntax sugar*. Veja a seguir ambos, respectivamente:
|
|
20
|
+
*
|
|
21
|
+
* ```
|
|
22
|
+
* ...
|
|
23
|
+
* <po-table
|
|
24
|
+
* [p-columns]="columns"
|
|
25
|
+
* [p-items]="items">
|
|
26
|
+
* <ng-template p-table-row-template let-rowItem let-i="rowIndex" [p-table-row-template-show]="isShow">
|
|
27
|
+
* <detail-row [row]="rowItem"></detail-row>
|
|
28
|
+
* </ng-template>
|
|
29
|
+
* ...
|
|
30
|
+
* ```
|
|
31
|
+
*
|
|
32
|
+
* ```
|
|
33
|
+
* ...
|
|
34
|
+
* <po-table
|
|
35
|
+
* [p-columns]="columns"
|
|
36
|
+
* [p-items]="items">
|
|
37
|
+
* <div *p-table-row-template="let rowItem, let i=rowIndex">
|
|
38
|
+
* <detail-row [row]="rowItem"></detail-row>
|
|
39
|
+
* </div>
|
|
40
|
+
* ...
|
|
41
|
+
*
|
|
42
|
+
* ```
|
|
43
|
+
*
|
|
44
|
+
* A diretiva **p-table-row-template**, possibilita também que determinada linha apresente ou não seu _template_. Para isto,
|
|
45
|
+
* é necessário atribuir a referência da função que faz esta verificação, à propriedade `p-table-row-template-show`,
|
|
46
|
+
* a mesma deve retornar um valor do tipo *boolean*. Veja o exemplo a seguir:
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
* ...
|
|
50
|
+
* @Component({
|
|
51
|
+
* selector: 'app-root',
|
|
52
|
+
* templateUrl: `
|
|
53
|
+
* ...
|
|
54
|
+
* <po-table
|
|
55
|
+
* [p-columns]="columns"
|
|
56
|
+
* [p-items]="items">
|
|
57
|
+
* <ng-template p-table-row-template let-rowItem let-i="rowIndex" [p-table-row-template-show]="isUndelivered">
|
|
58
|
+
* <detail-row [row]="rowItem"> </detail-row>
|
|
59
|
+
* </div>
|
|
60
|
+
* ...
|
|
61
|
+
* `
|
|
62
|
+
* })
|
|
63
|
+
* export class AppComponent {
|
|
64
|
+
* public dataTable = [{
|
|
65
|
+
* code: 1200,
|
|
66
|
+
* product: 'Rice',
|
|
67
|
+
* costumer: 'Supermarket 1',
|
|
68
|
+
* quantity: 3,
|
|
69
|
+
* status: 'delivered',
|
|
70
|
+
* license_plate: 'MDJD9191',
|
|
71
|
+
* batch_product: 18041822,
|
|
72
|
+
* driver: 'José Oliveira'
|
|
73
|
+
* }, {
|
|
74
|
+
* code: 1355,
|
|
75
|
+
* product: 'Bean',
|
|
76
|
+
* costumer: 'Supermarket 2',
|
|
77
|
+
* quantity: 1,
|
|
78
|
+
* status: 'transport',
|
|
79
|
+
* license_plate: 'XXA5454',
|
|
80
|
+
* batch_product: 18041821,
|
|
81
|
+
* driver: 'Francisco Pereira'
|
|
82
|
+
* }];
|
|
83
|
+
*
|
|
84
|
+
* isUndelivered(row, index: number) {
|
|
85
|
+
* return row.status !== 'delivered';
|
|
86
|
+
* }
|
|
87
|
+
* }
|
|
88
|
+
* ```
|
|
89
|
+
* > No exemplo acima, somente será disponibilizado os detalhes de informações nas linhas cujo o valor de `status`
|
|
90
|
+
* não correspondam à *delivered*.
|
|
91
|
+
*/
|
|
92
|
+
export class PoTableRowTemplateDirective {
|
|
93
|
+
// Necessário manter templateRef para o funcionamento do row template.
|
|
94
|
+
constructor(templateRef) {
|
|
95
|
+
this.templateRef = templateRef;
|
|
96
|
+
this._tableRowTemplateArrowDirection = PoTableRowTemplateArrowDirection.Left;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* @optional
|
|
100
|
+
*
|
|
101
|
+
* @description
|
|
102
|
+
*
|
|
103
|
+
* Propriedade responsável por informar a posição do colapse que abrirá os detalhes da linha.
|
|
104
|
+
*
|
|
105
|
+
* @default `'LEFT'`
|
|
106
|
+
*/
|
|
107
|
+
set tableRowTemplateArrowDirection(value) {
|
|
108
|
+
value = value?.toUpperCase();
|
|
109
|
+
this._tableRowTemplateArrowDirection = Object.values(PoTableRowTemplateArrowDirection).includes(value)
|
|
110
|
+
? value
|
|
111
|
+
: PoTableRowTemplateArrowDirection.Left;
|
|
112
|
+
}
|
|
113
|
+
get tableRowTemplateArrowDirection() {
|
|
114
|
+
return this._tableRowTemplateArrowDirection;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
PoTableRowTemplateDirective.ɵfac = function PoTableRowTemplateDirective_Factory(t) { return new (t || PoTableRowTemplateDirective)(i0.ɵɵdirectiveInject(i0.TemplateRef)); };
|
|
118
|
+
PoTableRowTemplateDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: PoTableRowTemplateDirective, selectors: [["", "p-table-row-template", ""]], inputs: { poTableRowTemplateShow: ["p-table-row-template-show", "poTableRowTemplateShow"], tableRowTemplateArrowDirection: ["p-table-row-template-arrow-direction", "tableRowTemplateArrowDirection"] } });
|
|
119
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoTableRowTemplateDirective, [{
|
|
120
|
+
type: Directive,
|
|
121
|
+
args: [{
|
|
122
|
+
selector: '[p-table-row-template]'
|
|
123
|
+
}]
|
|
124
|
+
}], function () { return [{ type: i0.TemplateRef }]; }, { poTableRowTemplateShow: [{
|
|
125
|
+
type: Input,
|
|
126
|
+
args: ['p-table-row-template-show']
|
|
127
|
+
}], tableRowTemplateArrowDirection: [{
|
|
128
|
+
type: Input,
|
|
129
|
+
args: ['p-table-row-template-arrow-direction']
|
|
130
|
+
}] }); })();
|
|
131
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tdGFibGUtcm93LXRlbXBsYXRlLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby10YWJsZS9wby10YWJsZS1yb3ctdGVtcGxhdGUvcG8tdGFibGUtcm93LXRlbXBsYXRlLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBZSxNQUFNLGVBQWUsQ0FBQztBQUM5RCxPQUFPLEVBQUUsZ0NBQWdDLEVBQUUsTUFBTSxxREFBcUQsQ0FBQzs7QUFFdkc7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQXVGRztBQUlILE1BQU0sT0FBTywyQkFBMkI7SUF3Q3RDLHNFQUFzRTtJQUN0RSxZQUFtQixXQUE2QjtRQUE3QixnQkFBVyxHQUFYLFdBQVcsQ0FBa0I7UUF6QnhDLG9DQUErQixHQUFxQyxnQ0FBZ0MsQ0FBQyxJQUFJLENBQUM7SUF5Qi9ELENBQUM7SUF2QnBEOzs7Ozs7OztPQVFHO0lBQ0gsSUFBbUQsOEJBQThCLENBQy9FLEtBQXVDO1FBRXZDLEtBQUssR0FBRyxLQUFLLEVBQUUsV0FBVyxFQUFzQyxDQUFDO1FBQ2pFLElBQUksQ0FBQywrQkFBK0IsR0FBUyxNQUFPLENBQUMsTUFBTSxDQUFDLGdDQUFnQyxDQUFDLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQztZQUMzRyxDQUFDLENBQUMsS0FBSztZQUNQLENBQUMsQ0FBQyxnQ0FBZ0MsQ0FBQyxJQUFJLENBQUM7SUFDNUMsQ0FBQztJQUVELElBQUksOEJBQThCO1FBQ2hDLE9BQU8sSUFBSSxDQUFDLCtCQUErQixDQUFDO0lBQzlDLENBQUM7O3NHQXRDVSwyQkFBMkI7OEVBQTNCLDJCQUEyQjt1RkFBM0IsMkJBQTJCO2NBSHZDLFNBQVM7ZUFBQztnQkFDVCxRQUFRLEVBQUUsd0JBQXdCO2FBQ25DOzhEQWVxQyxzQkFBc0I7a0JBQXpELEtBQUs7bUJBQUMsMkJBQTJCO1lBYWlCLDhCQUE4QjtrQkFBaEYsS0FBSzttQkFBQyxzQ0FBc0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIElucHV0LCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUG9UYWJsZVJvd1RlbXBsYXRlQXJyb3dEaXJlY3Rpb24gfSBmcm9tICcuLi9lbnVtcy9wby10YWJsZS1yb3ctdGVtcGxhdGUtYXJyb3ctZGlyZWN0aW9uLmVudW0nO1xuXG4vKipcbiAqIEB1c2VkQnkgUG9UYWJsZUNvbXBvbmVudFxuICpcbiAqIEBkZXNjcmlwdGlvblxuICpcbiAqIEVzdGEgZGlyZXRpdmEgcGVybWl0ZSBxdWUgc2VqYSBhcHJlc2VudGFkYSBpbmZvcm1hw6fDtWVzIGFkaWNpb25haXMgYSByZXNwZWl0byBkZSB1bWEgZGV0ZXJtaW5hZGEgbGluaGEgZGVcbiAqIGRhZG9zLCBkZSBmb3JtYSBxdWUgcG9zc2FtIHNlciBleGliaWRhcyBlIG9jdWx0YWRhcyBhdHJhdsOpcyBkbyBib3TDo28gZGUgYWNpb25hbWVudG8uXG4gKlxuICogPiBRdWFuZG8gdXRpbGl6YWRhLCBzb2JyZXDDtWUgYXMgZnVuY2lvbmFsaWRhZGUgYsOhc2ljYXMgZG8gKm1hc3Rlci1kZXRhaWwqLlxuICpcbiAqIEVtIHNldSB1c28sIGRldmUtc2UgdXRpbGl6YXIgY29tbyBwYXLDom1ldHJvIGEgcmVmZXLDqm5jaWEgZGEgX2xpbmhhXyBlL291IF/DrW5kaWNlXywgc2VuZG8gcG9yIHBhZHLDo28gbGluaGEuIENhc28gbsOjbyBzZWphIGRlY2xhcmFkbyxcbiAqIG8gY29tcG9uZW50ZSBuw6NvIGV4aWJpcsOhIGNvbnRlw7pkby5cbiAqICAtIExpbmhhOiBgcm93YCBkZXRlcm1pbmEgbyBpdGVtIGRhIGxpbmhhIGNvcnJlbnRlLlxuICogIC0gw41uZGljZTogYHJvd0luZGV4YCBkZXRlcm1pbmEgbyDDrW5kaWNlIGRhIGxpbmhhIGNvcnJlbnRlLlxuICpcbiAqIEVzdGEgZGlyZXRpdmEgY29tcMO1ZS1zZSBkZSBkb2lzIG1laW9zIHBhcmEgdXNvLCBkZSBmb3JtYSBleHBsw61jaXRhIHRhbCBjb21vIGVtICpzeW50YXggc3VnYXIqLiBWZWphIGEgc2VndWlyIGFtYm9zLCByZXNwZWN0aXZhbWVudGU6XG4gKlxuICogYGBgXG4gKiAuLi5cbiAqIDxwby10YWJsZVxuICogICBbcC1jb2x1bW5zXT1cImNvbHVtbnNcIlxuICogICBbcC1pdGVtc109XCJpdGVtc1wiPlxuICogICAgIDxuZy10ZW1wbGF0ZSBwLXRhYmxlLXJvdy10ZW1wbGF0ZSBsZXQtcm93SXRlbSBsZXQtaT1cInJvd0luZGV4XCIgW3AtdGFibGUtcm93LXRlbXBsYXRlLXNob3ddPVwiaXNTaG93XCI+XG4gKiAgICAgICA8ZGV0YWlsLXJvdyBbcm93XT1cInJvd0l0ZW1cIj48L2RldGFpbC1yb3c+XG4gKiAgICAgPC9uZy10ZW1wbGF0ZT5cbiAqIC4uLlxuICogYGBgXG4gKlxuICogYGBgXG4gKiAuLi5cbiAqIDxwby10YWJsZVxuICogICBbcC1jb2x1bW5zXT1cImNvbHVtbnNcIlxuICogICBbcC1pdGVtc109XCJpdGVtc1wiPlxuICogICAgIDxkaXYgKnAtdGFibGUtcm93LXRlbXBsYXRlPVwibGV0IHJvd0l0ZW0sIGxldCBpPXJvd0luZGV4XCI+XG4gKiAgICAgICA8ZGV0YWlsLXJvdyBbcm93XT1cInJvd0l0ZW1cIj48L2RldGFpbC1yb3c+XG4gKiAgICAgPC9kaXY+XG4gKiAuLi5cbiAqXG4gKiBgYGBcbiAqXG4gKiBBIGRpcmV0aXZhICoqcC10YWJsZS1yb3ctdGVtcGxhdGUqKiwgcG9zc2liaWxpdGEgdGFtYsOpbSBxdWUgZGV0ZXJtaW5hZGEgbGluaGEgYXByZXNlbnRlIG91IG7Do28gc2V1IF90ZW1wbGF0ZV8uIFBhcmEgaXN0byxcbiAqIMOpIG5lY2Vzc8OhcmlvIGF0cmlidWlyIGEgcmVmZXLDqm5jaWEgZGEgZnVuw6fDo28gcXVlIGZheiBlc3RhIHZlcmlmaWNhw6fDo28sIMOgIHByb3ByaWVkYWRlIGBwLXRhYmxlLXJvdy10ZW1wbGF0ZS1zaG93YCxcbiAqIGEgbWVzbWEgZGV2ZSByZXRvcm5hciB1bSB2YWxvciBkbyB0aXBvICpib29sZWFuKi4gVmVqYSBvIGV4ZW1wbG8gYSBzZWd1aXI6XG4gKlxuICogYGBgXG4gKiAuLi5cbiAqIEBDb21wb25lbnQoe1xuICogICAgc2VsZWN0b3I6ICdhcHAtcm9vdCcsXG4gKiAgICB0ZW1wbGF0ZVVybDogYFxuICogICAgICAuLi5cbiAqICAgICAgPHBvLXRhYmxlXG4gKiAgICAgICAgW3AtY29sdW1uc109XCJjb2x1bW5zXCJcbiAqICAgICAgICBbcC1pdGVtc109XCJpdGVtc1wiPlxuICogICAgICAgICAgPG5nLXRlbXBsYXRlIHAtdGFibGUtcm93LXRlbXBsYXRlIGxldC1yb3dJdGVtIGxldC1pPVwicm93SW5kZXhcIiBbcC10YWJsZS1yb3ctdGVtcGxhdGUtc2hvd109XCJpc1VuZGVsaXZlcmVkXCI+XG4gKiAgICAgICAgICAgIDxkZXRhaWwtcm93IFtyb3ddPVwicm93SXRlbVwiPiA8L2RldGFpbC1yb3c+XG4gKiAgICAgICAgICA8L2Rpdj5cbiAqICAgICAgLi4uXG4gKiAgICBgXG4gKiB9KVxuICogZXhwb3J0IGNsYXNzIEFwcENvbXBvbmVudCB7XG4gKiAgICBwdWJsaWMgZGF0YVRhYmxlID0gW3tcbiAqICAgICAgY29kZTogMTIwMCxcbiAqICAgICAgcHJvZHVjdDogJ1JpY2UnLFxuICogICAgICBjb3N0dW1lcjogJ1N1cGVybWFya2V0IDEnLFxuICogICAgICBxdWFudGl0eTogMyxcbiAqICAgICAgc3RhdHVzOiAnZGVsaXZlcmVkJyxcbiAqICAgICAgbGljZW5zZV9wbGF0ZTogJ01ESkQ5MTkxJyxcbiAqICAgICAgYmF0Y2hfcHJvZHVjdDogMTgwNDE4MjIsXG4gKiAgICAgIGRyaXZlcjogJ0pvc8OpIE9saXZlaXJhJ1xuICogICAgfSwge1xuICogICAgICBjb2RlOiAxMzU1LFxuICogICAgICBwcm9kdWN0OiAnQmVhbicsXG4gKiAgICAgIGNvc3R1bWVyOiAnU3VwZXJtYXJrZXQgMicsXG4gKiAgICAgIHF1YW50aXR5OiAxLFxuICogICAgICBzdGF0dXM6ICd0cmFuc3BvcnQnLFxuICogICAgICBsaWNlbnNlX3BsYXRlOiAnWFhBNTQ1NCcsXG4gKiAgICAgIGJhdGNoX3Byb2R1Y3Q6IDE4MDQxODIxLFxuICogICAgICBkcml2ZXI6ICdGcmFuY2lzY28gUGVyZWlyYSdcbiAqICAgIH1dO1xuICpcbiAqICAgIGlzVW5kZWxpdmVyZWQocm93LCBpbmRleDogbnVtYmVyKSB7XG4gKiAgICAgIHJldHVybiByb3cuc3RhdHVzICE9PSAnZGVsaXZlcmVkJztcbiAqICAgIH1cbiAqIH1cbiAqIGBgYFxuICogPiBObyBleGVtcGxvIGFjaW1hLCBzb21lbnRlIHNlcsOhIGRpc3BvbmliaWxpemFkbyBvcyBkZXRhbGhlcyBkZSBpbmZvcm1hw6fDtWVzIG5hcyBsaW5oYXMgY3VqbyBvIHZhbG9yIGRlIGBzdGF0dXNgXG4gKiBuw6NvIGNvcnJlc3BvbmRhbSDDoCAqZGVsaXZlcmVkKi5cbiAqL1xuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW3AtdGFibGUtcm93LXRlbXBsYXRlXSdcbn0pXG5leHBvcnQgY2xhc3MgUG9UYWJsZVJvd1RlbXBsYXRlRGlyZWN0aXZlIHtcbiAgLyoqXG4gICAqIEBvcHRpb25hbFxuICAgKlxuICAgKiBAZGVzY3JpcHRpb25cbiAgICpcbiAgICogRnVuw6fDo28gcXVlIGRldmUgcmV0b3JuYXIgdW0gdmFsb3IgYm9vbGVhbm8sIGluZm9ybWFuZG8gc2UgYXByZXNlbnRhcsOhIG8gdGVtcGxhdGUgZGEgbGluaGEuXG4gICAqIFNlcsOjbyBwYXNzYWRvcyBvIG9iamV0byBkYSBsaW5oYSBlIG8gaW5kaWNlIGRhIG1lc21hIHBvciBwYXLDom1ldHJvLCBwYXJhIHF1ZSBzZWphIHBvc3PDrXZlbFxuICAgKiB0b21hciB1bWEgZGVjaXPDo28gYSBwYXJ0aXIgZG8gb2JqZXRvIGRhIGxpbmhhIGNvcnJlbnRlLlxuICAgKlxuICAgKiBDYXNvIG7Do28gc2VyIHV0aWxpemFkbyBlc3RhIHByb3ByaWVkYWRlLCBzZXLDo28gYXByZXNlbnRhZG9zIHRvZG9zIG9zIGRldGFsaGVzIGRhcyBsaW5oYXMuXG4gICAqXG4gICAqIEBkZWZhdWx0IGB0cnVlYFxuICAgKi9cbiAgQElucHV0KCdwLXRhYmxlLXJvdy10ZW1wbGF0ZS1zaG93JykgcG9UYWJsZVJvd1RlbXBsYXRlU2hvdzogKHJvdzogYW55LCBpbmRleDogbnVtYmVyKSA9PiBib29sZWFuO1xuXG4gIHByaXZhdGUgX3RhYmxlUm93VGVtcGxhdGVBcnJvd0RpcmVjdGlvbjogUG9UYWJsZVJvd1RlbXBsYXRlQXJyb3dEaXJlY3Rpb24gPSBQb1RhYmxlUm93VGVtcGxhdGVBcnJvd0RpcmVjdGlvbi5MZWZ0O1xuXG4gIC8qKlxuICAgKiBAb3B0aW9uYWxcbiAgICpcbiAgICogQGRlc2NyaXB0aW9uXG4gICAqXG4gICAqIFByb3ByaWVkYWRlIHJlc3BvbnPDoXZlbCBwb3IgaW5mb3JtYXIgYSBwb3Npw6fDo28gZG8gY29sYXBzZSBxdWUgYWJyaXLDoSBvcyBkZXRhbGhlcyBkYSBsaW5oYS5cbiAgICpcbiAgICogQGRlZmF1bHQgYCdMRUZUJ2BcbiAgICovXG4gIEBJbnB1dCgncC10YWJsZS1yb3ctdGVtcGxhdGUtYXJyb3ctZGlyZWN0aW9uJykgc2V0IHRhYmxlUm93VGVtcGxhdGVBcnJvd0RpcmVjdGlvbihcbiAgICB2YWx1ZTogUG9UYWJsZVJvd1RlbXBsYXRlQXJyb3dEaXJlY3Rpb25cbiAgKSB7XG4gICAgdmFsdWUgPSB2YWx1ZT8udG9VcHBlckNhc2UoKSBhcyBQb1RhYmxlUm93VGVtcGxhdGVBcnJvd0RpcmVjdGlvbjtcbiAgICB0aGlzLl90YWJsZVJvd1RlbXBsYXRlQXJyb3dEaXJlY3Rpb24gPSAoPGFueT5PYmplY3QpLnZhbHVlcyhQb1RhYmxlUm93VGVtcGxhdGVBcnJvd0RpcmVjdGlvbikuaW5jbHVkZXModmFsdWUpXG4gICAgICA/IHZhbHVlXG4gICAgICA6IFBvVGFibGVSb3dUZW1wbGF0ZUFycm93RGlyZWN0aW9uLkxlZnQ7XG4gIH1cblxuICBnZXQgdGFibGVSb3dUZW1wbGF0ZUFycm93RGlyZWN0aW9uKCkge1xuICAgIHJldHVybiB0aGlzLl90YWJsZVJvd1RlbXBsYXRlQXJyb3dEaXJlY3Rpb247XG4gIH1cblxuICAvLyBOZWNlc3PDoXJpbyBtYW50ZXIgdGVtcGxhdGVSZWYgcGFyYSBvIGZ1bmNpb25hbWVudG8gZG8gcm93IHRlbXBsYXRlLlxuICBjb25zdHJ1Y3RvcihwdWJsaWMgdGVtcGxhdGVSZWY6IFRlbXBsYXRlUmVmPGFueT4pIHt9XG59XG4iXX0=
|
package/esm2020/lib/components/po-table/po-table-show-subtitle/po-table-show-subtitle.component.mjs
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "../../po-modal/po-modal.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
5
|
+
import * as i3 from "../po-table-subtitle-circle/po-table-subtitle-circle.component";
|
|
6
|
+
function PoTableShowSubtitleComponent_div_6_Template(rf, ctx) { if (rf & 1) {
|
|
7
|
+
i0.ɵɵelementStart(0, "div", 6);
|
|
8
|
+
i0.ɵɵelement(1, "po-table-subtitle-circle", 7);
|
|
9
|
+
i0.ɵɵelementStart(2, "span", 8);
|
|
10
|
+
i0.ɵɵtext(3);
|
|
11
|
+
i0.ɵɵelementEnd();
|
|
12
|
+
i0.ɵɵelementEnd();
|
|
13
|
+
} if (rf & 2) {
|
|
14
|
+
const subtitle_r2 = ctx.$implicit;
|
|
15
|
+
i0.ɵɵadvance(1);
|
|
16
|
+
i0.ɵɵproperty("p-subtitle", subtitle_r2);
|
|
17
|
+
i0.ɵɵadvance(2);
|
|
18
|
+
i0.ɵɵtextInterpolate(subtitle_r2.label);
|
|
19
|
+
} }
|
|
20
|
+
/**
|
|
21
|
+
* @docsPrivate
|
|
22
|
+
*
|
|
23
|
+
* @description
|
|
24
|
+
*
|
|
25
|
+
* Componente para a criação de um botão e modal para visualização de todas as legendas.
|
|
26
|
+
*/
|
|
27
|
+
export class PoTableShowSubtitleComponent {
|
|
28
|
+
}
|
|
29
|
+
PoTableShowSubtitleComponent.ɵfac = function PoTableShowSubtitleComponent_Factory(t) { return new (t || PoTableShowSubtitleComponent)(); };
|
|
30
|
+
PoTableShowSubtitleComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PoTableShowSubtitleComponent, selectors: [["po-table-show-subtitle"]], inputs: { subtitles: ["p-subtitles", "subtitles"], literals: ["p-literals", "literals"] }, decls: 7, vars: 3, consts: [[1, "po-table-footer-show-subtitle", 3, "click"], [1, "po-table-footer-show-subtitle-container"], [1, "po-table-show-subtitle"], ["p-size", "sm", 3, "p-title"], ["modal", ""], ["class", "po-table-subtitle-footer-modal po-row", 4, "ngFor", "ngForOf"], [1, "po-table-subtitle-footer-modal", "po-row"], ["p-hide-title", "true", 3, "p-subtitle"], [1, "po-table-subtitle-text"]], template: function PoTableShowSubtitleComponent_Template(rf, ctx) { if (rf & 1) {
|
|
31
|
+
const _r3 = i0.ɵɵgetCurrentView();
|
|
32
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
33
|
+
i0.ɵɵlistener("click", function PoTableShowSubtitleComponent_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r3); const _r0 = i0.ɵɵreference(5); return _r0.open(); });
|
|
34
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
35
|
+
i0.ɵɵelementStart(2, "span", 2);
|
|
36
|
+
i0.ɵɵtext(3);
|
|
37
|
+
i0.ɵɵelementEnd();
|
|
38
|
+
i0.ɵɵelementEnd();
|
|
39
|
+
i0.ɵɵelementEnd();
|
|
40
|
+
i0.ɵɵelementStart(4, "po-modal", 3, 4);
|
|
41
|
+
i0.ɵɵtemplate(6, PoTableShowSubtitleComponent_div_6_Template, 4, 2, "div", 5);
|
|
42
|
+
i0.ɵɵelementEnd();
|
|
43
|
+
} if (rf & 2) {
|
|
44
|
+
i0.ɵɵadvance(3);
|
|
45
|
+
i0.ɵɵtextInterpolate(ctx.literals.seeCompleteSubtitle);
|
|
46
|
+
i0.ɵɵadvance(1);
|
|
47
|
+
i0.ɵɵproperty("p-title", ctx.literals.completeSubtitle);
|
|
48
|
+
i0.ɵɵadvance(2);
|
|
49
|
+
i0.ɵɵproperty("ngForOf", ctx.subtitles);
|
|
50
|
+
} }, directives: [i1.PoModalComponent, i2.NgForOf, i3.PoTableSubtitleCircleComponent], encapsulation: 2 });
|
|
51
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoTableShowSubtitleComponent, [{
|
|
52
|
+
type: Component,
|
|
53
|
+
args: [{ selector: 'po-table-show-subtitle', template: "<div class=\"po-table-footer-show-subtitle\" (click)=\"modal.open()\">\n <div class=\"po-table-footer-show-subtitle-container\">\n <span class=\"po-table-show-subtitle\">{{ literals.seeCompleteSubtitle }}</span>\n </div>\n</div>\n\n<po-modal #modal p-size=\"sm\" [p-title]=\"literals.completeSubtitle\">\n <div *ngFor=\"let subtitle of subtitles\" class=\"po-table-subtitle-footer-modal po-row\">\n <po-table-subtitle-circle p-hide-title=\"true\" [p-subtitle]=\"subtitle\"> </po-table-subtitle-circle>\n <span class=\"po-table-subtitle-text\">{{ subtitle.label }}</span>\n </div>\n</po-modal>\n" }]
|
|
54
|
+
}], null, { subtitles: [{
|
|
55
|
+
type: Input,
|
|
56
|
+
args: ['p-subtitles']
|
|
57
|
+
}], literals: [{
|
|
58
|
+
type: Input,
|
|
59
|
+
args: ['p-literals']
|
|
60
|
+
}] }); })();
|
|
61
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tdGFibGUtc2hvdy1zdWJ0aXRsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS9zcmMvbGliL2NvbXBvbmVudHMvcG8tdGFibGUvcG8tdGFibGUtc2hvdy1zdWJ0aXRsZS9wby10YWJsZS1zaG93LXN1YnRpdGxlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby10YWJsZS9wby10YWJsZS1zaG93LXN1YnRpdGxlL3BvLXRhYmxlLXNob3ctc3VidGl0bGUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7OztJQ08vQyw4QkFBc0Y7SUFDcEYsOENBQWtHO0lBQ2xHLCtCQUFxQztJQUFBLFlBQW9CO0lBQUEsaUJBQU87SUFDbEUsaUJBQU07OztJQUYwQyxlQUF1QjtJQUF2Qix3Q0FBdUI7SUFDaEMsZUFBb0I7SUFBcEIsdUNBQW9COztBREw3RDs7Ozs7O0dBTUc7QUFLSCxNQUFNLE9BQU8sNEJBQTRCOzt3R0FBNUIsNEJBQTRCOytFQUE1Qiw0QkFBNEI7O1FDZnpDLDhCQUFrRTtRQUF2Qiw0SkFBUyxVQUFZLElBQUM7UUFDL0QsOEJBQXFEO1FBQ25ELCtCQUFxQztRQUFBLFlBQWtDO1FBQUEsaUJBQU87UUFDaEYsaUJBQU07UUFDUixpQkFBTTtRQUVOLHNDQUFtRTtRQUNqRSw2RUFHTTtRQUNSLGlCQUFXOztRQVQ4QixlQUFrQztRQUFsQyxzREFBa0M7UUFJOUMsZUFBcUM7UUFBckMsdURBQXFDO1FBQ3RDLGVBQVk7UUFBWix1Q0FBWTs7dUZEUTNCLDRCQUE0QjtjQUp4QyxTQUFTOzJCQUNFLHdCQUF3QjtnQkFLWixTQUFTO2tCQUE5QixLQUFLO21CQUFDLGFBQWE7WUFHQyxRQUFRO2tCQUE1QixLQUFLO21CQUFDLFlBQVkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IFBvVGFibGVTdWJ0aXRsZUNvbHVtbiB9IGZyb20gJy4uL3BvLXRhYmxlLXN1YnRpdGxlLWZvb3Rlci9wby10YWJsZS1zdWJ0aXRsZS1jb2x1bW4uaW50ZXJmYWNlJztcblxuLyoqXG4gKiBAZG9jc1ByaXZhdGVcbiAqXG4gKiBAZGVzY3JpcHRpb25cbiAqXG4gKiBDb21wb25lbnRlIHBhcmEgYSBjcmlhw6fDo28gZGUgdW0gYm90w6NvIGUgbW9kYWwgcGFyYSB2aXN1YWxpemHDp8OjbyBkZSB0b2RhcyBhcyBsZWdlbmRhcy5cbiAqL1xuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAncG8tdGFibGUtc2hvdy1zdWJ0aXRsZScsXG4gIHRlbXBsYXRlVXJsOiAnLi9wby10YWJsZS1zaG93LXN1YnRpdGxlLmNvbXBvbmVudC5odG1sJ1xufSlcbmV4cG9ydCBjbGFzcyBQb1RhYmxlU2hvd1N1YnRpdGxlQ29tcG9uZW50IHtcbiAgLyoqIE9iamV0byBjb20gb3MgZGFkb3MgZGEgbGVnZW5kYS4gKi9cbiAgQElucHV0KCdwLXN1YnRpdGxlcycpIHN1YnRpdGxlczogQXJyYXk8UG9UYWJsZVN1YnRpdGxlQ29sdW1uPjtcblxuICAvKiogUHJvcHJpZWRhZGUgcXVlIHJlY2ViZSBhcyBsaXRlcmFpcyBkZWZpbmlkYXMgbm8gYHBvLXRhYmxlYC4gKi9cbiAgQElucHV0KCdwLWxpdGVyYWxzJykgbGl0ZXJhbHM7XG59XG4iLCI8ZGl2IGNsYXNzPVwicG8tdGFibGUtZm9vdGVyLXNob3ctc3VidGl0bGVcIiAoY2xpY2spPVwibW9kYWwub3BlbigpXCI+XG4gIDxkaXYgY2xhc3M9XCJwby10YWJsZS1mb290ZXItc2hvdy1zdWJ0aXRsZS1jb250YWluZXJcIj5cbiAgICA8c3BhbiBjbGFzcz1cInBvLXRhYmxlLXNob3ctc3VidGl0bGVcIj57eyBsaXRlcmFscy5zZWVDb21wbGV0ZVN1YnRpdGxlIH19PC9zcGFuPlxuICA8L2Rpdj5cbjwvZGl2PlxuXG48cG8tbW9kYWwgI21vZGFsIHAtc2l6ZT1cInNtXCIgW3AtdGl0bGVdPVwibGl0ZXJhbHMuY29tcGxldGVTdWJ0aXRsZVwiPlxuICA8ZGl2ICpuZ0Zvcj1cImxldCBzdWJ0aXRsZSBvZiBzdWJ0aXRsZXNcIiBjbGFzcz1cInBvLXRhYmxlLXN1YnRpdGxlLWZvb3Rlci1tb2RhbCBwby1yb3dcIj5cbiAgICA8cG8tdGFibGUtc3VidGl0bGUtY2lyY2xlIHAtaGlkZS10aXRsZT1cInRydWVcIiBbcC1zdWJ0aXRsZV09XCJzdWJ0aXRsZVwiPiA8L3BvLXRhYmxlLXN1YnRpdGxlLWNpcmNsZT5cbiAgICA8c3BhbiBjbGFzcz1cInBvLXRhYmxlLXN1YnRpdGxlLXRleHRcIj57eyBzdWJ0aXRsZS5sYWJlbCB9fTwvc3Bhbj5cbiAgPC9kaXY+XG48L3BvLW1vZGFsPlxuIl19
|