@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
package/esm2020/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis.component.mjs
ADDED
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import { PoChartGridLines, PoChartPadding, PoChartPlotAreaPaddingTop } from '../../helpers/po-chart-default-values.constant';
|
|
3
|
+
import { PoChartType } from '../../enums/po-chart-type.enum';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "../../services/po-chart-maths.service";
|
|
6
|
+
import * as i2 from "./po-chart-axis-path/po-chart-axis-path.component";
|
|
7
|
+
import * as i3 from "./po-chart-axis-label/po-chart-axis-label.component";
|
|
8
|
+
const _c0 = ["po-chart-axis", ""];
|
|
9
|
+
export class PoChartAxisComponent {
|
|
10
|
+
constructor(mathsService) {
|
|
11
|
+
this.mathsService = mathsService;
|
|
12
|
+
this.alignByTheCorners = false;
|
|
13
|
+
this.categoriesCoordinates = new EventEmitter();
|
|
14
|
+
this.axisXLabels = [];
|
|
15
|
+
this.axisYLabels = [];
|
|
16
|
+
this.gridLines = PoChartGridLines;
|
|
17
|
+
this.seriesLength = 0;
|
|
18
|
+
this._categories = [];
|
|
19
|
+
this._containerSize = {};
|
|
20
|
+
this._series = [];
|
|
21
|
+
}
|
|
22
|
+
set series(seriesList) {
|
|
23
|
+
const seriesDataArrayFilter = seriesList.filter(serie => Array.isArray(serie.data));
|
|
24
|
+
if (seriesDataArrayFilter.length) {
|
|
25
|
+
this._series = seriesDataArrayFilter;
|
|
26
|
+
this.seriesLength = this.mathsService.seriesGreaterLength(this.series);
|
|
27
|
+
this.checkAxisOptions(this.axisOptions);
|
|
28
|
+
this.setAxisXCoordinates(this.gridLines, this.seriesLength, this.containerSize, this.range, this.type);
|
|
29
|
+
this.setAxisYCoordinates(this.gridLines, this.seriesLength, this.containerSize, this.range, this.type);
|
|
30
|
+
}
|
|
31
|
+
else {
|
|
32
|
+
this._series = [];
|
|
33
|
+
this.cleanUpCoordinates();
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
get series() {
|
|
37
|
+
return this._series;
|
|
38
|
+
}
|
|
39
|
+
set categories(value) {
|
|
40
|
+
this._categories = value;
|
|
41
|
+
if (this.type === PoChartType.Bar) {
|
|
42
|
+
this.setAxisXCoordinates(this.gridLines, this.seriesLength, this.containerSize, this.range, this.type);
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
this.setAxisYCoordinates(this.gridLines, this.seriesLength, this.containerSize, this.range, this.type);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
get categories() {
|
|
49
|
+
return this._categories;
|
|
50
|
+
}
|
|
51
|
+
set containerSize(value) {
|
|
52
|
+
this._containerSize = value;
|
|
53
|
+
this.checkAxisOptions(this.axisOptions);
|
|
54
|
+
this.setAxisXCoordinates(this.gridLines, this.seriesLength, this._containerSize, this.range, this.type);
|
|
55
|
+
this.setAxisYCoordinates(this.gridLines, this.seriesLength, this._containerSize, this.range, this.type);
|
|
56
|
+
}
|
|
57
|
+
get containerSize() {
|
|
58
|
+
return this._containerSize;
|
|
59
|
+
}
|
|
60
|
+
set axisOptions(value) {
|
|
61
|
+
this._axisOptions = value;
|
|
62
|
+
this.checkAxisOptions(this._axisOptions);
|
|
63
|
+
if (this.type === PoChartType.Bar) {
|
|
64
|
+
this.setAxisYCoordinates(this.gridLines, this.seriesLength, this.containerSize, this.range, this.type);
|
|
65
|
+
}
|
|
66
|
+
else {
|
|
67
|
+
this.setAxisXCoordinates(this.gridLines, this.seriesLength, this.containerSize, this.range, this.type);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
get axisOptions() {
|
|
71
|
+
return this._axisOptions;
|
|
72
|
+
}
|
|
73
|
+
setAxisXCoordinates(gridLines, seriesLength, containerSize, minMaxAxisValues, type) {
|
|
74
|
+
if (seriesLength) {
|
|
75
|
+
const amountOfAxisLabels = type === PoChartType.Bar ? seriesLength : gridLines;
|
|
76
|
+
this.calculateAxisXLabelCoordinates(amountOfAxisLabels, containerSize, minMaxAxisValues, type);
|
|
77
|
+
}
|
|
78
|
+
const amountOfAxisXLines = this.amountOfAxisXLines(seriesLength, gridLines, type);
|
|
79
|
+
this.calculateAxisXCoordinates(amountOfAxisXLines, containerSize, minMaxAxisValues);
|
|
80
|
+
}
|
|
81
|
+
amountOfAxisXLines(seriesLength, gridLines, type) {
|
|
82
|
+
if (type === PoChartType.Bar) {
|
|
83
|
+
return seriesLength <= 1 ? 2 : seriesLength + 1;
|
|
84
|
+
}
|
|
85
|
+
return gridLines === 0 ? 1 : gridLines;
|
|
86
|
+
}
|
|
87
|
+
setAxisYCoordinates(gridLines, seriesLength, containerSize, minMaxAxisValues, type) {
|
|
88
|
+
const amountOfAxisY = type === PoChartType.Bar ? gridLines : seriesLength;
|
|
89
|
+
if (seriesLength) {
|
|
90
|
+
this.calculateAxisYLabelCoordinates(amountOfAxisY, containerSize, minMaxAxisValues, type);
|
|
91
|
+
}
|
|
92
|
+
if (type === PoChartType.Area) {
|
|
93
|
+
this.getCategoriesRangeForMouseMove(amountOfAxisY, containerSize);
|
|
94
|
+
}
|
|
95
|
+
this.calculateAxisYCoordinates(amountOfAxisY, containerSize, type, minMaxAxisValues);
|
|
96
|
+
}
|
|
97
|
+
calculateAxisXCoordinates(amountOfAxisX, containerSize, range) {
|
|
98
|
+
const startX = containerSize.axisXLabelWidth;
|
|
99
|
+
const endX = containerSize.svgWidth;
|
|
100
|
+
let coordinatesReferedToZero;
|
|
101
|
+
let coordinatesList = [...Array(amountOfAxisX)].map((_, index) => {
|
|
102
|
+
const yCoordinate = this.calculateAxisXCoordinateY(amountOfAxisX, containerSize, index);
|
|
103
|
+
const coordinates = `M${startX} ${yCoordinate} L${endX}, ${yCoordinate}`;
|
|
104
|
+
return { coordinates };
|
|
105
|
+
});
|
|
106
|
+
// Avalia a necessidade de adicionar a linha referente ao valor zero em gráficos do tipo `column`, `area` e `line`.
|
|
107
|
+
if (this.type !== PoChartType.Bar && range.minValue < 0 && !this.axisXLabels.includes('0')) {
|
|
108
|
+
coordinatesReferedToZero = this.getCoordinatesRelatedToZero(containerSize, range, startX, endX);
|
|
109
|
+
coordinatesList = [...coordinatesList, coordinatesReferedToZero];
|
|
110
|
+
}
|
|
111
|
+
this.axisXCoordinates = coordinatesList;
|
|
112
|
+
}
|
|
113
|
+
getCoordinatesRelatedToZero(containerSize, range, start, end, isAxisY = false) {
|
|
114
|
+
const type = isAxisY ? PoChartType.Bar : PoChartType.Column;
|
|
115
|
+
const basePosition = this.axisCoordinatesForValueZero(range, 0, containerSize, isAxisY);
|
|
116
|
+
const coordinates = {
|
|
117
|
+
column: {
|
|
118
|
+
startX: start,
|
|
119
|
+
endX: end,
|
|
120
|
+
startY: basePosition,
|
|
121
|
+
endY: basePosition
|
|
122
|
+
},
|
|
123
|
+
bar: {
|
|
124
|
+
startX: basePosition,
|
|
125
|
+
endX: basePosition,
|
|
126
|
+
startY: start,
|
|
127
|
+
endY: end
|
|
128
|
+
}
|
|
129
|
+
};
|
|
130
|
+
return {
|
|
131
|
+
coordinates: `M${coordinates[type].startX} ${coordinates[type].startY} L${coordinates[type].endX} ${coordinates[type].endY}`
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
axisCoordinatesForValueZero(range, data, containerSize, isAxisY) {
|
|
135
|
+
const { axisXLabelWidth, svgWidth, svgPlottingAreaHeight } = containerSize;
|
|
136
|
+
const ratio = this.mathsService.getSeriePercentage(range, data);
|
|
137
|
+
return Math.floor(isAxisY
|
|
138
|
+
? axisXLabelWidth + (svgWidth - axisXLabelWidth) * ratio
|
|
139
|
+
: svgPlottingAreaHeight - svgPlottingAreaHeight * ratio + PoChartPlotAreaPaddingTop);
|
|
140
|
+
}
|
|
141
|
+
calculateAxisXLabelCoordinates(amountOfAxisX, containerSize, minMaxAxisValues, type) {
|
|
142
|
+
this.axisXLabels = this.getAxisXLabels(type, minMaxAxisValues, amountOfAxisX);
|
|
143
|
+
this.axisXLabelCoordinates = [...Array(amountOfAxisX)].map((_, index) => {
|
|
144
|
+
const label = this.axisXLabels[index];
|
|
145
|
+
const xCoordinate = this.calculateAxisXLabelXCoordinate(containerSize.axisXLabelWidth);
|
|
146
|
+
const yCoordinate = this.calculateAxisXLabelYCoordinate(amountOfAxisX, containerSize, type, index);
|
|
147
|
+
return { label, xCoordinate, yCoordinate };
|
|
148
|
+
});
|
|
149
|
+
}
|
|
150
|
+
calculateAxisYCoordinates(amountOfAxisY, containerSize, type, range) {
|
|
151
|
+
const startY = PoChartPlotAreaPaddingTop;
|
|
152
|
+
const endY = containerSize.svgPlottingAreaHeight + PoChartPlotAreaPaddingTop;
|
|
153
|
+
// tratamento necessário para criar uma linha a mais para fechar o gráfico
|
|
154
|
+
const length = amountOfAxisY === 0 || type === PoChartType.Bar ? amountOfAxisY : amountOfAxisY + 1;
|
|
155
|
+
let coordinatesReferedToZero;
|
|
156
|
+
let coordinatesList = [...Array(length)].map((_, index) => {
|
|
157
|
+
const xCoordinate = this.calculateAxisYCoordinateX(containerSize, amountOfAxisY, index);
|
|
158
|
+
const coordinates = `M${xCoordinate} ${startY} L${xCoordinate}, ${endY}`;
|
|
159
|
+
return { coordinates };
|
|
160
|
+
});
|
|
161
|
+
// Avalia a necessidade de adicionar a linha referente ao valor zero em gráficos do tipo `bar`.
|
|
162
|
+
if (type === PoChartType.Bar && range.minValue < 0 && !this.axisYLabels.includes('0')) {
|
|
163
|
+
coordinatesReferedToZero = this.getCoordinatesRelatedToZero(containerSize, range, startY, endY, true);
|
|
164
|
+
coordinatesList = [...coordinatesList, coordinatesReferedToZero];
|
|
165
|
+
}
|
|
166
|
+
this.axisYCoordinates = [...coordinatesList];
|
|
167
|
+
}
|
|
168
|
+
calculateAxisYLabelCoordinates(amountOfAxisY, containerSize, minMaxAxisValues, type) {
|
|
169
|
+
this.axisYLabels = this.getAxisYLabels(type, minMaxAxisValues, amountOfAxisY);
|
|
170
|
+
this.axisYLabelCoordinates = [...Array(amountOfAxisY)].map((_, index) => {
|
|
171
|
+
const label = this.axisYLabels[index];
|
|
172
|
+
const xCoordinate = this.getAxisXCoordinates(containerSize, amountOfAxisY, type, index);
|
|
173
|
+
const yCoordinate = this.calculateAxisYLabelYCoordinate(containerSize);
|
|
174
|
+
return { label, xCoordinate, yCoordinate };
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
calculateAxisXLabelXCoordinate(axisXLabelWidth) {
|
|
178
|
+
const labelPoChartPadding = PoChartPadding / 3;
|
|
179
|
+
return axisXLabelWidth - labelPoChartPadding;
|
|
180
|
+
}
|
|
181
|
+
calculateAxisXLabelYCoordinate(amountOfAxisX, containerSize, type, index) {
|
|
182
|
+
const amountOfLines = type === PoChartType.Bar ? amountOfAxisX : amountOfAxisX - 1;
|
|
183
|
+
const yRatio = index / amountOfLines;
|
|
184
|
+
if (type !== PoChartType.Bar) {
|
|
185
|
+
return (containerSize.svgPlottingAreaHeight - containerSize.svgPlottingAreaHeight * yRatio + PoChartPlotAreaPaddingTop);
|
|
186
|
+
}
|
|
187
|
+
const halfCategoryHeight = containerSize.svgPlottingAreaHeight / amountOfAxisX / 2;
|
|
188
|
+
return (containerSize.svgPlottingAreaHeight -
|
|
189
|
+
halfCategoryHeight -
|
|
190
|
+
containerSize.svgPlottingAreaHeight * yRatio +
|
|
191
|
+
PoChartPlotAreaPaddingTop);
|
|
192
|
+
}
|
|
193
|
+
calculateAxisXCoordinateY(amountOfAxisX, containerSize, index) {
|
|
194
|
+
const yRatio = index / (amountOfAxisX - 1);
|
|
195
|
+
return (containerSize.svgPlottingAreaHeight - containerSize.svgPlottingAreaHeight * yRatio + PoChartPlotAreaPaddingTop);
|
|
196
|
+
}
|
|
197
|
+
calculateAxisYLabelYCoordinate(containerSize) {
|
|
198
|
+
const textPoChartPadding = PoChartPadding / 3;
|
|
199
|
+
return containerSize.svgHeight - textPoChartPadding;
|
|
200
|
+
}
|
|
201
|
+
centeredInCategoryArea(containerSize, amountOfAxisY, type, index) {
|
|
202
|
+
const amountOfLines = type === PoChartType.Bar ? amountOfAxisY - 1 : amountOfAxisY;
|
|
203
|
+
const xRatio = index / amountOfLines;
|
|
204
|
+
if (type === PoChartType.Bar) {
|
|
205
|
+
return Math.round(containerSize.axisXLabelWidth + (containerSize.svgWidth - containerSize.axisXLabelWidth) * xRatio);
|
|
206
|
+
}
|
|
207
|
+
const halfCategoryWidth = (containerSize.svgWidth - containerSize.axisXLabelWidth) / amountOfAxisY / 2;
|
|
208
|
+
return Math.round(containerSize.axisXLabelWidth +
|
|
209
|
+
halfCategoryWidth +
|
|
210
|
+
(containerSize.svgWidth - containerSize.axisXLabelWidth) * xRatio);
|
|
211
|
+
}
|
|
212
|
+
calculateAxisYCoordinateX(containerSize, amountOfAxisY, index, subtractCategoryWidth = false) {
|
|
213
|
+
const amountOfLines = this.alignByTheCorners ? amountOfAxisY - 1 : amountOfAxisY;
|
|
214
|
+
const halfCategoryWidth = this.alignByTheCorners && subtractCategoryWidth
|
|
215
|
+
? (containerSize.svgWidth - containerSize.axisXLabelWidth) / (amountOfAxisY - 1) / 2
|
|
216
|
+
: 0;
|
|
217
|
+
const divideIndexByAmountOfLines = index / amountOfLines;
|
|
218
|
+
const xRatio = divideIndexByAmountOfLines === Infinity ? 0 : divideIndexByAmountOfLines;
|
|
219
|
+
return Math.round(containerSize.axisXLabelWidth +
|
|
220
|
+
(containerSize.svgWidth - containerSize.axisXLabelWidth) * xRatio -
|
|
221
|
+
halfCategoryWidth);
|
|
222
|
+
}
|
|
223
|
+
checkAxisOptions(options = {}) {
|
|
224
|
+
this.gridLines =
|
|
225
|
+
options.gridLines && this.isValidGridLinesLengthOption(options.gridLines) ? options.gridLines : PoChartGridLines;
|
|
226
|
+
}
|
|
227
|
+
cleanUpCoordinates() {
|
|
228
|
+
this.axisXCoordinates = [];
|
|
229
|
+
this.axisYCoordinates = [];
|
|
230
|
+
this.axisXLabelCoordinates = [];
|
|
231
|
+
this.axisYLabelCoordinates = [];
|
|
232
|
+
this.seriesLength = 0;
|
|
233
|
+
}
|
|
234
|
+
getAxisXCoordinates(containerSize, amountOfAxisY, type, index) {
|
|
235
|
+
return this.alignByTheCorners
|
|
236
|
+
? this.calculateAxisYCoordinateX(containerSize, amountOfAxisY, index)
|
|
237
|
+
: this.centeredInCategoryArea(containerSize, amountOfAxisY, type, index);
|
|
238
|
+
}
|
|
239
|
+
getCategoriesRangeForMouseMove(amountOfAxisY, containerSize) {
|
|
240
|
+
const categoriesCoordinates = [...Array(amountOfAxisY)].map((_, index) => this.calculateAxisYCoordinateX(containerSize, amountOfAxisY, index, true));
|
|
241
|
+
this.categoriesCoordinates.emit(categoriesCoordinates);
|
|
242
|
+
}
|
|
243
|
+
isValidGridLinesLengthOption(gridLines) {
|
|
244
|
+
return gridLines >= 2 && gridLines <= 10;
|
|
245
|
+
}
|
|
246
|
+
getAxisXLabels(type, minMaxAxisValues, amountOfAxisX) {
|
|
247
|
+
if (type === PoChartType.Bar) {
|
|
248
|
+
const axisXLabelsList = this.formatCategoriesLabels(amountOfAxisX, this.categories);
|
|
249
|
+
return axisXLabelsList.reverse();
|
|
250
|
+
}
|
|
251
|
+
return this.generateAverageOfLabels(minMaxAxisValues, amountOfAxisX);
|
|
252
|
+
}
|
|
253
|
+
getAxisYLabels(type, minMaxAxisValues, amountOfAxisX) {
|
|
254
|
+
return type === PoChartType.Bar
|
|
255
|
+
? this.generateAverageOfLabels(minMaxAxisValues, amountOfAxisX)
|
|
256
|
+
: this.formatCategoriesLabels(amountOfAxisX, this.categories);
|
|
257
|
+
}
|
|
258
|
+
formatCategoriesLabels(amountOfAxisX, categories = []) {
|
|
259
|
+
return [...Array(amountOfAxisX)].map((_, index) => categories[index] ?? '-');
|
|
260
|
+
}
|
|
261
|
+
generateAverageOfLabels(minMaxAxisValues, amountOfAxisLines) {
|
|
262
|
+
const averageLabelsList = this.mathsService.range(minMaxAxisValues, amountOfAxisLines);
|
|
263
|
+
return averageLabelsList.map(label => {
|
|
264
|
+
const formattedDigit = label.toFixed(label % 1 && 2);
|
|
265
|
+
// Remove dígitos com zero.
|
|
266
|
+
// Também trata caso quando o valor retornado era -0, substituindo-o por 0.
|
|
267
|
+
const removeZeroDigits = formattedDigit.replace(/\.00$/, '').replace(/\-0$/, 0);
|
|
268
|
+
return removeZeroDigits.toString();
|
|
269
|
+
});
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
PoChartAxisComponent.ɵfac = function PoChartAxisComponent_Factory(t) { return new (t || PoChartAxisComponent)(i0.ɵɵdirectiveInject(i1.PoChartMathsService)); };
|
|
273
|
+
PoChartAxisComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PoChartAxisComponent, selectors: [["", "po-chart-axis", ""]], inputs: { alignByTheCorners: ["p-align-by-the-corners", "alignByTheCorners"], type: ["p-type", "type"], range: ["p-range", "range"], series: ["p-series", "series"], categories: ["p-categories", "categories"], containerSize: ["p-container-size", "containerSize"], axisOptions: ["p-options", "axisOptions"] }, outputs: { categoriesCoordinates: "p-categories-coordinates" }, attrs: _c0, decls: 2, vars: 6, consts: [["po-chart-axis-path", "", 3, "p-axis-x-coordinates", "p-axis-y-coordinates"], ["po-chart-axis-label", "", 3, "p-align-by-the-corners", "p-axis-x-label-coordinates", "p-axis-y-label-coordinates", "p-type"]], template: function PoChartAxisComponent_Template(rf, ctx) { if (rf & 1) {
|
|
274
|
+
i0.ɵɵnamespaceSVG();
|
|
275
|
+
i0.ɵɵelement(0, "g", 0);
|
|
276
|
+
i0.ɵɵelement(1, "g", 1);
|
|
277
|
+
} if (rf & 2) {
|
|
278
|
+
i0.ɵɵproperty("p-axis-x-coordinates", ctx.axisXCoordinates)("p-axis-y-coordinates", ctx.axisYCoordinates);
|
|
279
|
+
i0.ɵɵadvance(1);
|
|
280
|
+
i0.ɵɵproperty("p-align-by-the-corners", ctx.alignByTheCorners)("p-axis-x-label-coordinates", ctx.axisXLabelCoordinates)("p-axis-y-label-coordinates", ctx.axisYLabelCoordinates)("p-type", ctx.type);
|
|
281
|
+
} }, directives: [i2.PoChartAxisPathComponent, i3.PoChartAxisLabelComponent], encapsulation: 2 });
|
|
282
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoChartAxisComponent, [{
|
|
283
|
+
type: Component,
|
|
284
|
+
args: [{ selector: '[po-chart-axis]', template: "<svg:g po-chart-axis-path [p-axis-x-coordinates]=\"axisXCoordinates\" [p-axis-y-coordinates]=\"axisYCoordinates\"></svg:g>\n\n<svg:g po-chart-axis-label \n [p-align-by-the-corners]=\"alignByTheCorners\" \n [p-axis-x-label-coordinates]=\"axisXLabelCoordinates\" \n [p-axis-y-label-coordinates]=\"axisYLabelCoordinates\" \n [p-type]=\"type\"\n >\n</svg:g>" }]
|
|
285
|
+
}], function () { return [{ type: i1.PoChartMathsService }]; }, { alignByTheCorners: [{
|
|
286
|
+
type: Input,
|
|
287
|
+
args: ['p-align-by-the-corners']
|
|
288
|
+
}], type: [{
|
|
289
|
+
type: Input,
|
|
290
|
+
args: ['p-type']
|
|
291
|
+
}], range: [{
|
|
292
|
+
type: Input,
|
|
293
|
+
args: ['p-range']
|
|
294
|
+
}], categoriesCoordinates: [{
|
|
295
|
+
type: Output,
|
|
296
|
+
args: ['p-categories-coordinates']
|
|
297
|
+
}], series: [{
|
|
298
|
+
type: Input,
|
|
299
|
+
args: ['p-series']
|
|
300
|
+
}], categories: [{
|
|
301
|
+
type: Input,
|
|
302
|
+
args: ['p-categories']
|
|
303
|
+
}], containerSize: [{
|
|
304
|
+
type: Input,
|
|
305
|
+
args: ['p-container-size']
|
|
306
|
+
}], axisOptions: [{
|
|
307
|
+
type: Input,
|
|
308
|
+
args: ['p-options']
|
|
309
|
+
}] }); })();
|
|
310
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tY2hhcnQtYXhpcy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS9zcmMvbGliL2NvbXBvbmVudHMvcG8tY2hhcnQvcG8tY2hhcnQtY29udGFpbmVyL3BvLWNoYXJ0LWF4aXMvcG8tY2hhcnQtYXhpcy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS9zcmMvbGliL2NvbXBvbmVudHMvcG8tY2hhcnQvcG8tY2hhcnQtY29udGFpbmVyL3BvLWNoYXJ0LWF4aXMvcG8tY2hhcnQtYXhpcy5jb21wb25lbnQuc3ZnIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFdkUsT0FBTyxFQUNMLGdCQUFnQixFQUNoQixjQUFjLEVBQ2QseUJBQXlCLEVBQzFCLE1BQU0sZ0RBQWdELENBQUM7QUFReEQsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdDQUFnQyxDQUFDOzs7Ozs7QUFNN0QsTUFBTSxPQUFPLG9CQUFvQjtJQXNGL0IsWUFBb0IsWUFBaUM7UUFBakMsaUJBQVksR0FBWixZQUFZLENBQXFCO1FBckZwQixzQkFBaUIsR0FBWSxLQUFLLENBQUM7UUFNaEMsMEJBQXFCLEdBQWdDLElBQUksWUFBWSxFQUFFLENBQUM7UUFPcEcsZ0JBQVcsR0FBa0IsRUFBRSxDQUFDO1FBQ2hDLGdCQUFXLEdBQWtCLEVBQUUsQ0FBQztRQUNoQyxjQUFTLEdBQVcsZ0JBQWdCLENBQUM7UUFDckMsaUJBQVksR0FBVyxDQUFDLENBQUM7UUFHekIsZ0JBQVcsR0FBa0IsRUFBRSxDQUFDO1FBQ2hDLG1CQUFjLEdBQXlCLEVBQUUsQ0FBQztRQUMxQyxZQUFPLEdBQWUsRUFBRSxDQUFDO0lBZ0V1QixDQUFDO0lBOUR6RCxJQUF1QixNQUFN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S0FBSzttQkFBQyxRQUFRO1lBRUcsS0FBSztrQkFBdEIsS0FBSzttQkFBQyxTQUFTO1lBRW9CLHFCQUFxQjtrQkFBeEQsTUFBTTttQkFBQywwQkFBMEI7WUFpQlgsTUFBTTtrQkFBNUIsS0FBSzttQkFBQyxVQUFVO1lBb0JVLFVBQVU7a0JBQXBDLEtBQUs7bUJBQUMsY0FBYztZQWNVLGFBQWE7a0JBQTNDLEtBQUs7bUJBQUMsa0JBQWtCO1lBWUQsV0FBVztrQkFBbEMsS0FBSzttQkFBQyxXQUFXIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHtcbiAgUG9DaGFydEdyaWRMaW5lcyxcbiAgUG9DaGFydFBhZGRpbmcsXG4gIFBvQ2hhcnRQbG90QXJlYVBhZGRpbmdUb3Bcbn0gZnJvbSAnLi4vLi4vaGVscGVycy9wby1jaGFydC1kZWZhdWx0LXZhbHVlcy5jb25zdGFudCc7XG5cbmltcG9ydCB7IFBvQ2hhcnRNYXRoc1NlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9wby1jaGFydC1tYXRocy5zZXJ2aWNlJztcbmltcG9ydCB7IFBvQ2hhcnRDb250YWluZXJTaXplIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlcy9wby1jaGFydC1jb250YWluZXItc2l6ZS5pbnRlcmZhY2UnO1xuaW1wb3J0IHsgUG9DaGFydE1pbk1heFZhbHVlcyB9IGZyb20gJy4uLy4uL2ludGVyZmFjZXMvcG8tY2hhcnQtbWluLW1heC12YWx1ZXMuaW50ZXJmYWNlJztcbmltcG9ydCB7IFBvQ2hhcnRQYXRoQ29vcmRpbmF0ZXMgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2VzL3BvLWNoYXJ0LXBhdGgtY29vcmRpbmF0ZXMuaW50ZXJmYWNlJztcbmltcG9ydCB7IFBvQ2hhcnRMYWJlbENvb3JkaW5hdGVzIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlcy9wby1jaGFydC1sYWJlbC1jb29yZGluYXRlcy5pbnRlcmZhY2UnO1xuaW1wb3J0IHsgUG9DaGFydEF4aXNPcHRpb25zIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlcy9wby1jaGFydC1heGlzLW9wdGlvbnMuaW50ZXJmYWNlJztcbmltcG9ydCB7IFBvQ2hhcnRUeXBlIH0gZnJvbSAnLi4vLi4vZW51bXMvcG8tY2hhcnQtdHlwZS5lbnVtJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnW3BvLWNoYXJ0LWF4aXNdJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3BvLWNoYXJ0LWF4aXMuY29tcG9uZW50LnN2Zydcbn0pXG5leHBvcnQgY2xhc3MgUG9DaGFydEF4aXNDb21wb25lbnQge1xuICBASW5wdXQoJ3AtYWxpZ24tYnktdGhlLWNvcm5lcnMnKSBhbGlnbkJ5VGhlQ29ybmVyczogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIEBJbnB1dCgncC10eXBlJykgdHlwZTogUG9DaGFydFR5cGU7XG5cbiAgQElucHV0KCdwLXJhbmdlJykgcmFuZ2U6IFBvQ2hhcnRNaW5NYXhWYWx1ZXM7XG5cbiAgQE91dHB1dCgncC1jYXRlZ29yaWVzLWNvb3JkaW5hdGVzJykgY2F0ZWdvcmllc0Nvb3JkaW5hdGVzOiBFdmVudEVtaXR0ZXI8QXJyYXk8bnVtYmVyPj4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG5cbiAgYXhpc1hDb29yZGluYXRlczogQXJyYXk8UG9DaGFydFBhdGhDb29yZGluYXRlcz47XG4gIGF4aXNYTGFiZWxDb29yZGluYXRlczogQXJyYXk8UG9DaGFydExhYmVsQ29vcmRpbmF0ZXM+O1xuICBheGlzWUNvb3JkaW5hdGVzOiBBcnJheTxQb0NoYXJ0UGF0aENvb3JkaW5hdGVzPjtcbiAgYXhpc1lMYWJlbENvb3JkaW5hdGVzOiBBcnJheTxQb0NoYXJ0TGFiZWxDb29yZGluYXRlcz47XG5cbiAgcHJpdmF0ZSBheGlzWExhYmVsczogQXJyYXk8c3RyaW5nPiA9IFtdO1xuICBwcml2YXRlIGF4aXNZTGFiZWxzOiBBcnJheTxzdHJpbmc+ID0gW107XG4gIHByaXZhdGUgZ3JpZExpbmVzOiBudW1iZXIgPSBQb0NoYXJ0R3JpZExpbmVzO1xuICBwcml2YXRlIHNlcmllc0xlbmd0aDogbnVtYmVyID0gMDtcblxuICBwcml2YXRlIF9heGlzT3B0aW9uczogUG9DaGFydEF4aXNPcHRpb25zO1xuICBwcml2YXRlIF9jYXRlZ29yaWVzOiBBcnJheTxzdHJpbmc+ID0gW107XG4gIHByaXZhdGUgX2NvbnRhaW5lclNpemU6IFBvQ2hhcnRDb250YWluZXJTaXplID0ge307XG4gIHByaXZhdGUgX3NlcmllczogQXJyYXk8YW55PiA9IFtdO1xuXG4gIEBJbnB1dCgncC1zZXJpZXMnKSBzZXQgc2VyaWVzKHNlcmllc0xpc3Q6IEFycmF5PGFueT4pIHtcbiAgICBjb25zdCBzZXJpZXNEYXRhQXJyYXlGaWx0ZXIgPSBzZXJpZXNMaXN0LmZpbHRlcihzZXJpZSA9PiBBcnJheS5pc0FycmF5KHNlcmllLmRhdGEpKTtcblxuICAgIGlmIChzZXJpZXNEYXRhQXJyYXlGaWx0ZXIubGVuZ3RoKSB7XG4gICAgICB0aGlzLl9zZXJpZXMgPSBzZXJpZXNEYXRhQXJyYXlGaWx0ZXI7XG5cbiAgICAgIHRoaXMuc2VyaWVzTGVuZ3RoID0gdGhpcy5tYXRoc1NlcnZpY2Uuc2VyaWVzR3JlYXRlckxlbmd0aCh0aGlzLnNlcmllcyk7XG4gICAgICB0aGlzLmNoZWNrQXhpc09wdGlvbnModGhpcy5heGlzT3B0aW9ucyk7XG4gICAgICB0aGlzLnNldEF4aXNYQ29vcmRpbmF0ZXModGhpcy5ncmlkTGluZXMsIHRoaXMuc2VyaWVzTGVuZ3RoLCB0aGlzLmNvbnRhaW5lclNpemUsIHRoaXMucmFuZ2UsIHRoaXMudHlwZSk7XG4gICAgICB0aGlzLnNldEF4aXNZQ29vcmRpbmF0ZXModGhpcy5ncmlkTGluZXMsIHRoaXMuc2VyaWVzTGVuZ3RoLCB0aGlzLmNvbnRhaW5lclNpemUsIHRoaXMucmFuZ2UsIHRoaXMudHlwZSk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuX3NlcmllcyA9IFtdO1xuICAgICAgdGhpcy5jbGVhblVwQ29vcmRpbmF0ZXMoKTtcbiAgICB9XG4gIH1cblxuICBnZXQgc2VyaWVzKCkge1xuICAgIHJldHVybiB0aGlzLl9zZXJpZXM7XG4gIH1cblxuICBASW5wdXQoJ3AtY2F0ZWdvcmllcycpIHNldCBjYXRlZ29yaWVzKHZhbHVlOiBBcnJheTxzdHJpbmc+KSB7XG4gICAgdGhpcy5fY2F0ZWdvcmllcyA9IHZhbHVlO1xuXG4gICAgaWYgKHRoaXMudHlwZSA9PT0gUG9DaGFydFR5cGUuQmFyKSB7XG4gICAgICB0aGlzLnNldEF4aXNYQ29vcmRpbmF0ZXModGhpcy5ncmlkTGluZXMsIHRoaXMuc2VyaWVzTGVuZ3RoLCB0aGlzLmNvbnRhaW5lclNpemUsIHRoaXMucmFuZ2UsIHRoaXMudHlwZSk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuc2V0QXhpc1lDb29yZGluYXRlcyh0aGlzLmdyaWRMaW5lcywgdGhpcy5zZXJpZXNMZW5ndGgsIHRoaXMuY29udGFpbmVyU2l6ZSwgdGhpcy5yYW5nZSwgdGhpcy50eXBlKTtcbiAgICB9XG4gIH1cblxuICBnZXQgY2F0ZWdvcmllcygpIHtcbiAgICByZXR1cm4gdGhpcy5fY2F0ZWdvcmllcztcbiAgfVxuXG4gIEBJbnB1dCgncC1jb250YWluZXItc2l6ZScpIHNldCBjb250YWluZXJTaXplKHZhbHVlOiBQb0NoYXJ0Q29udGFpbmVyU2l6ZSkge1xuICAgIHRoaXMuX2NvbnRhaW5lclNpemUgPSB2YWx1ZTtcblxuICAgIHRoaXMuY2hlY2tBeGlzT3B0aW9ucyh0aGlzLmF4aXNPcHRpb25zKTtcbiAgICB0aGlzLnNldEF4aXNYQ29vcmRpbmF0ZXModGhpcy5ncmlkTGluZXMsIHRoaXMuc2VyaWVzTGVuZ3RoLCB0aGlzLl9jb250YWluZXJTaXplLCB0aGlzLnJhbmdlLCB0aGlzLnR5cGUpO1xuICAgIHRoaXMuc2V0QXhpc1lDb29yZGluYXRlcyh0aGlzLmdyaWRMaW5lcywgdGhpcy5zZXJpZXNMZW5ndGgsIHRoaXMuX2NvbnRhaW5lclNpemUsIHRoaXMucmFuZ2UsIHRoaXMudHlwZSk7XG4gIH1cblxuICBnZXQgY29udGFpbmVyU2l6ZSgpIHtcbiAgICByZXR1cm4gdGhpcy5fY29udGFpbmVyU2l6ZTtcbiAgfVxuXG4gIEBJbnB1dCgncC1vcHRpb25zJykgc2V0IGF4aXNPcHRpb25zKHZhbHVlOiBQb0NoYXJ0QXhpc09wdGlvbnMpIHtcbiAgICB0aGlzLl9heGlzT3B0aW9ucyA9IHZhbHVlO1xuXG4gICAgdGhpcy5jaGVja0F4aXNPcHRpb25zKHRoaXMuX2F4aXNPcHRpb25zKTtcblxuICAgIGlmICh0aGlzLnR5cGUgPT09IFBvQ2hhcnRUeXBlLkJhcikge1xuICAgICAgdGhpcy5zZXRBeGlzWUNvb3JkaW5hdGVzKHRoaXMuZ3JpZExpbmVzLCB0aGlzLnNlcmllc0xlbmd0aCwgdGhpcy5jb250YWluZXJTaXplLCB0aGlzLnJhbmdlLCB0aGlzLnR5cGUpO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLnNldEF4aXNYQ29vcmRpbmF0ZXModGhpcy5ncmlkTGluZXMsIHRoaXMuc2VyaWVzTGVuZ3RoLCB0aGlzLmNvbnRhaW5lclNpemUsIHRoaXMucmFuZ2UsIHRoaXMudHlwZSk7XG4gICAgfVxuICB9XG5cbiAgZ2V0IGF4aXNPcHRpb25zKCkge1xuICAgIHJldHVybiB0aGlzLl9heGlzT3B0aW9ucztcbiAgfVxuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgbWF0aHNTZXJ2aWNlOiBQb0NoYXJ0TWF0aHNTZXJ2aWNlKSB7fVxuXG4gIHByaXZhdGUgc2V0QXhpc1hDb29yZGluYXRlcyhcbiAgICBncmlkTGluZXM6IG51bWJlcixcbiAgICBzZXJpZXNMZW5ndGg6IG51bWJlcixcbiAgICBjb250YWluZXJTaXplOiBQb0NoYXJ0Q29udGFpbmVyU2l6ZSxcbiAgICBtaW5NYXhBeGlzVmFsdWVzOiBQb0NoYXJ0TWluTWF4VmFsdWVzLFxuICAgIHR5cGU6IFBvQ2hhcnRUeXBlXG4gICkge1xuICAgIGlmIChzZXJpZXNMZW5ndGgpIHtcbiAgICAgIGNvbnN0IGFtb3VudE9mQXhpc0xhYmVscyA9IHR5cGUgPT09IFBvQ2hhcnRUeXBlLkJhciA/IHNlcmllc0xlbmd0aCA6IGdyaWRMaW5lcztcbiAgICAgIHRoaXMuY2FsY3VsYXRlQXhpc1hMYWJlbENvb3JkaW5hdGVzKGFtb3VudE9mQXhpc0xhYmVscywgY29udGFpbmVyU2l6ZSwgbWluTWF4QXhpc1ZhbHVlcywgdHlwZSk7XG4gICAgfVxuXG4gICAgY29uc3QgYW1vdW50T2ZBeGlzWExpbmVzID0gdGhpcy5hbW91bnRPZkF4aXNYTGluZXMoc2VyaWVzTGVuZ3RoLCBncmlkTGluZXMsIHR5cGUpO1xuICAgIHRoaXMuY2FsY3VsYXRlQXhpc1hDb29yZGluYXRlcyhhbW91bnRPZkF4aXNYTGluZXMsIGNvbnRhaW5lclNpemUsIG1pbk1heEF4aXNWYWx1ZXMpO1xuICB9XG5cbiAgcHJpdmF0ZSBhbW91bnRPZkF4aXNYTGluZXMoc2VyaWVzTGVuZ3RoOiBudW1iZXIsIGdyaWRMaW5lczogbnVtYmVyLCB0eXBlOiBQb0NoYXJ0VHlwZSk6IG51bWJlciB7XG4gICAgaWYgKHR5cGUgPT09IFBvQ2hhcnRUeXBlLkJhcikge1xuICAgICAgcmV0dXJuIHNlcmllc0xlbmd0aCA8PSAxID8gMiA6IHNlcmllc0xlbmd0aCArIDE7XG4gICAgfVxuICAgIHJldHVybiBncmlkTGluZXMgPT09IDAgPyAxIDogZ3JpZExpbmVzO1xuICB9XG5cbiAgcHJpdmF0ZSBzZXRBeGlzWUNvb3JkaW5hdGVzKFxuICAgIGdyaWRMaW5lczogbnVtYmVyLFxuICAgIHNlcmllc0xlbmd0aDogbnVtYmVyLFxuICAgIGNvbnRhaW5lclNpemU6IFBvQ2hhcnRDb250YWluZXJTaXplLFxuICAgIG1pbk1heEF4aXNWYWx1ZXM6IFBvQ2hhcnRNaW5NYXhWYWx1ZXMsXG4gICAgdHlwZTogUG9DaGFydFR5cGVcbiAgKSB7XG4gICAgY29uc3QgYW1vdW50T2ZBeGlzWSA9IHR5cGUgPT09IFBvQ2hhcnRUeXBlLkJhciA/IGdyaWRMaW5lcyA6IHNlcmllc0xlbmd0aDtcblxuICAgIGlmIChzZXJpZXNMZW5ndGgpIHtcbiAgICAgIHRoaXMuY2FsY3VsYXRlQXhpc1lMYWJlbENvb3JkaW5hdGVzKGFtb3VudE9mQXhpc1ksIGNvbnRhaW5lclNpemUsIG1pbk1heEF4aXNWYWx1ZXMsIHR5cGUpO1xuICAgIH1cblxuICAgIGlmICh0eXBlID09PSBQb0NoYXJ0VHlwZS5BcmVhKSB7XG4gICAgICB0aGlzLmdldENhdGVnb3JpZXNSYW5nZUZvck1vdXNlTW92ZShhbW91bnRPZkF4aXNZLCBjb250YWluZXJTaXplKTtcbiAgICB9XG5cbiAgICB0aGlzLmNhbGN1bGF0ZUF4aXNZQ29vcmRpbmF0ZXMoYW1vdW50T2ZBeGlzWSwgY29udGFpbmVyU2l6ZSwgdHlwZSwgbWluTWF4QXhpc1ZhbHVlcyk7XG4gIH1cblxuICBwcml2YXRlIGNhbGN1bGF0ZUF4aXNYQ29vcmRpbmF0ZXMoXG4gICAgYW1vdW50T2ZBeGlzWDogbnVtYmVyLFxuICAgIGNvbnRhaW5lclNpemU6IFBvQ2hhcnRDb250YWluZXJTaXplLFxuICAgIHJhbmdlOiBQb0NoYXJ0TWluTWF4VmFsdWVzXG4gICkge1xuICAgIGNvbnN0IHN0YXJ0WCA9IGNvbnRhaW5lclNpemUuYXhpc1hMYWJlbFdpZHRoO1xuICAgIGNvbnN0IGVuZFggPSBjb250YWluZXJTaXplLnN2Z1dpZHRoO1xuXG4gICAgbGV0IGNvb3JkaW5hdGVzUmVmZXJlZFRvWmVybztcbiAgICBsZXQgY29vcmRpbmF0ZXNMaXN0ID0gWy4uLkFycmF5KGFtb3VudE9mQXhpc1gpXS5tYXAoKF8sIGluZGV4OiBudW1iZXIpID0+IHtcbiAgICAgIGNvbnN0IHlDb29yZGluYXRlID0gdGhpcy5jYWxjdWxhdGVBeGlzWENvb3JkaW5hdGVZKGFtb3VudE9mQXhpc1gsIGNvbnRhaW5lclNpemUsIGluZGV4KTtcbiAgICAgIGNvbnN0IGNvb3JkaW5hdGVzID0gYE0ke3N0YXJ0WH0gJHt5Q29vcmRpbmF0ZX0gTCR7ZW5kWH0sICR7eUNvb3JkaW5hdGV9YDtcblxuICAgICAgcmV0dXJuIHsgY29vcmRpbmF0ZXMgfTtcbiAgICB9KTtcblxuICAgIC8vIEF2YWxpYSBhIG5lY2Vzc2lkYWRlIGRlIGFkaWNpb25hciBhIGxpbmhhIHJlZmVyZW50ZSBhbyB2YWxvciB6ZXJvIGVtIGdyw6FmaWNvcyBkbyB0aXBvIGBjb2x1bW5gLCBgYXJlYWAgZSBgbGluZWAuXG4gICAgaWYgKHRoaXMudHlwZSAhPT0gUG9DaGFydFR5cGUuQmFyICYmIHJhbmdlLm1pblZhbHVlIDwgMCAmJiAhdGhpcy5heGlzWExhYmVscy5pbmNsdWRlcygnMCcpKSB7XG4gICAgICBjb29yZGluYXRlc1JlZmVyZWRUb1plcm8gPSB0aGlzLmdldENvb3JkaW5hdGVzUmVsYXRlZFRvWmVybyhjb250YWluZXJTaXplLCByYW5nZSwgc3RhcnRYLCBlbmRYKTtcbiAgICAgIGNvb3JkaW5hdGVzTGlzdCA9IFsuLi5jb29yZGluYXRlc0xpc3QsIGNvb3JkaW5hdGVzUmVmZXJlZFRvWmVyb107XG4gICAgfVxuXG4gICAgdGhpcy5heGlzWENvb3JkaW5hdGVzID0gY29vcmRpbmF0ZXNMaXN0O1xuICB9XG5cbiAgcHJpdmF0ZSBnZXRDb29yZGluYXRlc1JlbGF0ZWRUb1plcm8oXG4gICAgY29udGFpbmVyU2l6ZTogUG9DaGFydENvbnRhaW5lclNpemUsXG4gICAgcmFuZ2U6IFBvQ2hhcnRNaW5NYXhWYWx1ZXMsXG4gICAgc3RhcnQ6IG51bWJlcixcbiAgICBlbmQ6IG51bWJlcixcbiAgICBpc0F4aXNZOiBib29sZWFuID0gZmFsc2VcbiAgKSB7XG4gICAgY29uc3QgdHlwZSA9IGlzQXhpc1kgPyBQb0NoYXJ0VHlwZS5CYXIgOiBQb0NoYXJ0VHlwZS5Db2x1bW47XG4gICAgY29uc3QgYmFzZVBvc2l0aW9uID0gdGhpcy5heGlzQ29vcmRpbmF0ZXNGb3JWYWx1ZVplcm8ocmFuZ2UsIDAsIGNvbnRhaW5lclNpemUsIGlzQXhpc1kpO1xuICAgIGNvbnN0IGNvb3JkaW5hdGVzID0ge1xuICAgICAgY29sdW1uOiB7XG4gICAgICAgIHN0YXJ0WDogc3RhcnQsXG4gICAgICAgIGVuZFg6IGVuZCxcbiAgICAgICAgc3RhcnRZOiBiYXNlUG9zaXRpb24sXG4gICAgICAgIGVuZFk6IGJhc2VQb3NpdGlvblxuICAgICAgfSxcbiAgICAgIGJhcjoge1xuICAgICAgICBzdGFydFg6IGJhc2VQb3NpdGlvbixcbiAgICAgICAgZW5kWDogYmFzZVBvc2l0aW9uLFxuICAgICAgICBzdGFydFk6IHN0YXJ0LFxuICAgICAgICBlbmRZOiBlbmRcbiAgICAgIH1cbiAgICB9O1xuXG4gICAgcmV0dXJuIHtcbiAgICAgIGNvb3JkaW5hdGVzOiBgTSR7Y29vcmRpbmF0ZXNbdHlwZV0uc3RhcnRYfSAke2Nvb3JkaW5hdGVzW3R5cGVdLnN0YXJ0WX0gTCR7Y29vcmRpbmF0ZXNbdHlwZV0uZW5kWH0gJHtjb29yZGluYXRlc1t0eXBlXS5lbmRZfWBcbiAgICB9O1xuICB9XG5cbiAgcHJpdmF0ZSBheGlzQ29vcmRpbmF0ZXNGb3JWYWx1ZVplcm8oXG4gICAgcmFuZ2U6IFBvQ2hhcnRNaW5NYXhWYWx1ZXMsXG4gICAgZGF0YTogbnVtYmVyLFxuICAgIGNvbnRhaW5lclNpemU6IFBvQ2hhcnRDb250YWluZXJTaXplLFxuICAgIGlzQXhpc1k6IGJvb2xlYW5cbiAgKSB7XG4gICAgY29uc3QgeyBheGlzWExhYmVsV2lkdGgsIHN2Z1dpZHRoLCBzdmdQbG90dGluZ0FyZWFIZWlnaHQgfSA9IGNvbnRhaW5lclNpemU7XG4gICAgY29uc3QgcmF0aW8gPSB0aGlzLm1hdGhzU2VydmljZS5nZXRTZXJpZVBlcmNlbnRhZ2UocmFuZ2UsIGRhdGEpO1xuXG4gICAgcmV0dXJuIE1hdGguZmxvb3IoXG4gICAgICBpc0F4aXNZXG4gICAgICAgID8gYXhpc1hMYWJlbFdpZHRoICsgKHN2Z1dpZHRoIC0gYXhpc1hMYWJlbFdpZHRoKSAqIHJhdGlvXG4gICAgICAgIDogc3ZnUGxvdHRpbmdBcmVhSGVpZ2h0IC0gc3ZnUGxvdHRpbmdBcmVhSGVpZ2h0ICogcmF0aW8gKyBQb0NoYXJ0UGxvdEFyZWFQYWRkaW5nVG9wXG4gICAgKTtcbiAgfVxuXG4gIHByaXZhdGUgY2FsY3VsYXRlQXhpc1hMYWJlbENvb3JkaW5hdGVzKFxuICAgIGFtb3VudE9mQXhpc1g6IG51bWJlcixcbiAgICBjb250YWluZXJTaXplOiBQb0NoYXJ0Q29udGFpbmVyU2l6ZSxcbiAgICBtaW5NYXhBeGlzVmFsdWVzOiBQb0NoYXJ0TWluTWF4VmFsdWVzLFxuICAgIHR5cGU6IFBvQ2hhcnRUeXBlXG4gICkge1xuICAgIHRoaXMuYXhpc1hMYWJlbHMgPSB0aGlzLmdldEF4aXNYTGFiZWxzKHR5cGUsIG1pbk1heEF4aXNWYWx1ZXMsIGFtb3VudE9mQXhpc1gpO1xuXG4gICAgdGhpcy5heGlzWExhYmVsQ29vcmRpbmF0ZXMgPSBbLi4uQXJyYXkoYW1vdW50T2ZBeGlzWCldLm1hcCgoXywgaW5kZXg6IG51bWJlcikgPT4ge1xuICAgICAgY29uc3QgbGFiZWwgPSB0aGlzLmF4aXNYTGFiZWxzW2luZGV4XTtcbiAgICAgIGNvbnN0IHhDb29yZGluYXRlID0gdGhpcy5jYWxjdWxhdGVBeGlzWExhYmVsWENvb3JkaW5hdGUoY29udGFpbmVyU2l6ZS5heGlzWExhYmVsV2lkdGgpO1xuICAgICAgY29uc3QgeUNvb3JkaW5hdGUgPSB0aGlzLmNhbGN1bGF0ZUF4aXNYTGFiZWxZQ29vcmRpbmF0ZShhbW91bnRPZkF4aXNYLCBjb250YWluZXJTaXplLCB0eXBlLCBpbmRleCk7XG5cbiAgICAgIHJldHVybiB7IGxhYmVsLCB4Q29vcmRpbmF0ZSwgeUNvb3JkaW5hdGUgfTtcbiAgICB9KTtcbiAgfVxuXG4gIHByaXZhdGUgY2FsY3VsYXRlQXhpc1lDb29yZGluYXRlcyhcbiAgICBhbW91bnRPZkF4aXNZOiBudW1iZXIsXG4gICAgY29udGFpbmVyU2l6ZTogUG9DaGFydENvbnRhaW5lclNpemUsXG4gICAgdHlwZTogUG9DaGFydFR5cGUsXG4gICAgcmFuZ2U6IFBvQ2hhcnRNaW5NYXhWYWx1ZXNcbiAgKSB7XG4gICAgY29uc3Qgc3RhcnRZID0gUG9DaGFydFBsb3RBcmVhUGFkZGluZ1RvcDtcbiAgICBjb25zdCBlbmRZID0gY29udGFpbmVyU2l6ZS5zdmdQbG90dGluZ0FyZWFIZWlnaHQgKyBQb0NoYXJ0UGxvdEFyZWFQYWRkaW5nVG9wO1xuXG4gICAgLy8gdHJhdGFtZW50byBuZWNlc3PDoXJpbyBwYXJhIGNyaWFyIHVtYSBsaW5oYSBhIG1haXMgcGFyYSBmZWNoYXIgbyBncsOhZmljb1xuICAgIGNvbnN0IGxlbmd0aCA9IGFtb3VudE9mQXhpc1kgPT09IDAgfHwgdHlwZSA9PT0gUG9DaGFydFR5cGUuQmFyID8gYW1vdW50T2ZBeGlzWSA6IGFtb3VudE9mQXhpc1kgKyAxO1xuXG4gICAgbGV0IGNvb3JkaW5hdGVzUmVmZXJlZFRvWmVybztcbiAgICBsZXQgY29vcmRpbmF0ZXNMaXN0ID0gWy4uLkFycmF5KGxlbmd0aCldLm1hcCgoXywgaW5kZXg6IG51bWJlcikgPT4ge1xuICAgICAgY29uc3QgeENvb3JkaW5hdGUgPSB0aGlzLmNhbGN1bGF0ZUF4aXNZQ29vcmRpbmF0ZVgoY29udGFpbmVyU2l6ZSwgYW1vdW50T2ZBeGlzWSwgaW5kZXgpO1xuICAgICAgY29uc3QgY29vcmRpbmF0ZXMgPSBgTSR7eENvb3JkaW5hdGV9ICR7c3RhcnRZfSBMJHt4Q29vcmRpbmF0ZX0sICR7ZW5kWX1gO1xuXG4gICAgICByZXR1cm4geyBjb29yZGluYXRlcyB9O1xuICAgIH0pO1xuXG4gICAgLy8gQXZhbGlhIGEgbmVjZXNzaWRhZGUgZGUgYWRpY2lvbmFyIGEgbGluaGEgcmVmZXJlbnRlIGFvIHZhbG9yIHplcm8gZW0gZ3LDoWZpY29zIGRvIHRpcG8gYGJhcmAuXG4gICAgaWYgKHR5cGUgPT09IFBvQ2hhcnRUeXBlLkJhciAmJiByYW5nZS5taW5WYWx1ZSA8IDAgJiYgIXRoaXMuYXhpc1lMYWJlbHMuaW5jbHVkZXMoJzAnKSkge1xuICAgICAgY29vcmRpbmF0ZXNSZWZlcmVkVG9aZXJvID0gdGhpcy5nZXRDb29yZGluYXRlc1JlbGF0ZWRUb1plcm8oY29udGFpbmVyU2l6ZSwgcmFuZ2UsIHN0YXJ0WSwgZW5kWSwgdHJ1ZSk7XG4gICAgICBjb29yZGluYXRlc0xpc3QgPSBbLi4uY29vcmRpbmF0ZXNMaXN0LCBjb29yZGluYXRlc1JlZmVyZWRUb1plcm9dO1xuICAgIH1cblxuICAgIHRoaXMuYXhpc1lDb29yZGluYXRlcyA9IFsuLi5jb29yZGluYXRlc0xpc3RdO1xuICB9XG5cbiAgcHJpdmF0ZSBjYWxjdWxhdGVBeGlzWUxhYmVsQ29vcmRpbmF0ZXMoXG4gICAgYW1vdW50T2ZBeGlzWTogbnVtYmVyLFxuICAgIGNvbnRhaW5lclNpemU6IFBvQ2hhcnRDb250YWluZXJTaXplLFxuICAgIG1pbk1heEF4aXNWYWx1ZXM6IFBvQ2hhcnRNaW5NYXhWYWx1ZXMsXG4gICAgdHlwZTogUG9DaGFydFR5cGVcbiAgKSB7XG4gICAgdGhpcy5heGlzWUxhYmVscyA9IHRoaXMuZ2V0QXhpc1lMYWJlbHModHlwZSwgbWluTWF4QXhpc1ZhbHVlcywgYW1vdW50T2ZBeGlzWSk7XG5cbiAgICB0aGlzLmF4aXNZTGFiZWxDb29yZGluYXRlcyA9IFsuLi5BcnJheShhbW91bnRPZkF4aXNZKV0ubWFwKChfLCBpbmRleDogbnVtYmVyKSA9PiB7XG4gICAgICBjb25zdCBsYWJlbCA9IHRoaXMuYXhpc1lMYWJlbHNbaW5kZXhdO1xuXG4gICAgICBjb25zdCB4Q29vcmRpbmF0ZSA9IHRoaXMuZ2V0QXhpc1hDb29yZGluYXRlcyhjb250YWluZXJTaXplLCBhbW91bnRPZkF4aXNZLCB0eXBlLCBpbmRleCk7XG4gICAgICBjb25zdCB5Q29vcmRpbmF0ZSA9IHRoaXMuY2FsY3VsYXRlQXhpc1lMYWJlbFlDb29yZGluYXRlKGNvbnRhaW5lclNpemUpO1xuXG4gICAgICByZXR1cm4geyBsYWJlbCwgeENvb3JkaW5hdGUsIHlDb29yZGluYXRlIH07XG4gICAgfSk7XG4gIH1cblxuICBwcml2YXRlIGNhbGN1bGF0ZUF4aXNYTGFiZWxYQ29vcmRpbmF0ZShheGlzWExhYmVsV2lkdGg6IG51bWJlcik6IG51bWJlciB7XG4gICAgY29uc3QgbGFiZWxQb0NoYXJ0UGFkZGluZyA9IFBvQ2hhcnRQYWRkaW5nIC8gMztcblxuICAgIHJldHVybiBheGlzWExhYmVsV2lkdGggLSBsYWJlbFBvQ2hhcnRQYWRkaW5nO1xuICB9XG5cbiAgcHJpdmF0ZSBjYWxjdWxhdGVBeGlzWExhYmVsWUNvb3JkaW5hdGUoXG4gICAgYW1vdW50T2ZBeGlzWDogbnVtYmVyLFxuICAgIGNvbnRhaW5lclNpemU6IFBvQ2hhcnRDb250YWluZXJTaXplLFxuICAgIHR5cGU6IFBvQ2hhcnRUeXBlLFxuICAgIGluZGV4OiBudW1iZXJcbiAgKTogbnVtYmVyIHtcbiAgICBjb25zdCBhbW91bnRPZkxpbmVzID0gdHlwZSA9PT0gUG9DaGFydFR5cGUuQmFyID8gYW1vdW50T2ZBeGlzWCA6IGFtb3VudE9mQXhpc1ggLSAxO1xuICAgIGNvbnN0IHlSYXRpbyA9IGluZGV4IC8gYW1vdW50T2ZMaW5lcztcblxuICAgIGlmICh0eXBlICE9PSBQb0NoYXJ0VHlwZS5CYXIpIHtcbiAgICAgIHJldHVybiAoXG4gICAgICAgIGNvbnRhaW5lclNpemUuc3ZnUGxvdHRpbmdBcmVhSGVpZ2h0IC0gY29udGFpbmVyU2l6ZS5zdmdQbG90dGluZ0FyZWFIZWlnaHQgKiB5UmF0aW8gKyBQb0NoYXJ0UGxvdEFyZWFQYWRkaW5nVG9wXG4gICAgICApO1xuICAgIH1cblxuICAgIGNvbnN0IGhhbGZDYXRlZ29yeUhlaWdodCA9IGNvbnRhaW5lclNpemUuc3ZnUGxvdHRpbmdBcmVhSGVpZ2h0IC8gYW1vdW50T2ZBeGlzWCAvIDI7XG4gICAgcmV0dXJuIChcbiAgICAgIGNvbnRhaW5lclNpemUuc3ZnUGxvdHRpbmdBcmVhSGVpZ2h0IC1cbiAgICAgIGhhbGZDYXRlZ29yeUhlaWdodCAtXG4gICAgICBjb250YWluZXJTaXplLnN2Z1Bsb3R0aW5nQXJlYUhlaWdodCAqIHlSYXRpbyArXG4gICAgICBQb0NoYXJ0UGxvdEFyZWFQYWRkaW5nVG9wXG4gICAgKTtcbiAgfVxuXG4gIHByaXZhdGUgY2FsY3VsYXRlQXhpc1hDb29yZGluYXRlWShhbW91bnRPZkF4aXNYOiBudW1iZXIsIGNvbnRhaW5lclNpemU6IFBvQ2hhcnRDb250YWluZXJTaXplLCBpbmRleDogbnVtYmVyKTogbnVtYmVyIHtcbiAgICBjb25zdCB5UmF0aW8gPSBpbmRleCAvIChhbW91bnRPZkF4aXNYIC0gMSk7XG5cbiAgICByZXR1cm4gKFxuICAgICAgY29udGFpbmVyU2l6ZS5zdmdQbG90dGluZ0FyZWFIZWlnaHQgLSBjb250YWluZXJTaXplLnN2Z1Bsb3R0aW5nQXJlYUhlaWdodCAqIHlSYXRpbyArIFBvQ2hhcnRQbG90QXJlYVBhZGRpbmdUb3BcbiAgICApO1xuICB9XG5cbiAgcHJpdmF0ZSBjYWxjdWxhdGVBeGlzWUxhYmVsWUNvb3JkaW5hdGUoY29udGFpbmVyU2l6ZTogUG9DaGFydENvbnRhaW5lclNpemUpOiBudW1iZXIge1xuICAgIGNvbnN0IHRleHRQb0NoYXJ0UGFkZGluZyA9IFBvQ2hhcnRQYWRkaW5nIC8gMztcblxuICAgIHJldHVybiBjb250YWluZXJTaXplLnN2Z0hlaWdodCAtIHRleHRQb0NoYXJ0UGFkZGluZztcbiAgfVxuXG4gIHByaXZhdGUgY2VudGVyZWRJbkNhdGVnb3J5QXJlYShcbiAgICBjb250YWluZXJTaXplOiBQb0NoYXJ0Q29udGFpbmVyU2l6ZSxcbiAgICBhbW91bnRPZkF4aXNZOiBudW1iZXIsXG4gICAgdHlwZTogUG9DaGFydFR5cGUsXG4gICAgaW5kZXg6IG51bWJlclxuICApOiBudW1iZXIge1xuICAgIGNvbnN0IGFtb3VudE9mTGluZXMgPSB0eXBlID09PSBQb0NoYXJ0VHlwZS5CYXIgPyBhbW91bnRPZkF4aXNZIC0gMSA6IGFtb3VudE9mQXhpc1k7XG4gICAgY29uc3QgeFJhdGlvID0gaW5kZXggLyBhbW91bnRPZkxpbmVzO1xuXG4gICAgaWYgKHR5cGUgPT09IFBvQ2hhcnRUeXBlLkJhcikge1xuICAgICAgcmV0dXJuIE1hdGgucm91bmQoXG4gICAgICAgIGNvbnRhaW5lclNpemUuYXhpc1hMYWJlbFdpZHRoICsgKGNvbnRhaW5lclNpemUuc3ZnV2lkdGggLSBjb250YWluZXJTaXplLmF4aXNYTGFiZWxXaWR0aCkgKiB4UmF0aW9cbiAgICAgICk7XG4gICAgfVxuXG4gICAgY29uc3QgaGFsZkNhdGVnb3J5V2lkdGggPSAoY29udGFpbmVyU2l6ZS5zdmdXaWR0aCAtIGNvbnRhaW5lclNpemUuYXhpc1hMYWJlbFdpZHRoKSAvIGFtb3VudE9mQXhpc1kgLyAyO1xuICAgIHJldHVybiBNYXRoLnJvdW5kKFxuICAgICAgY29udGFpbmVyU2l6ZS5heGlzWExhYmVsV2lkdGggK1xuICAgICAgICBoYWxmQ2F0ZWdvcnlXaWR0aCArXG4gICAgICAgIChjb250YWluZXJTaXplLnN2Z1dpZHRoIC0gY29udGFpbmVyU2l6ZS5heGlzWExhYmVsV2lkdGgpICogeFJhdGlvXG4gICAgKTtcbiAgfVxuXG4gIHByaXZhdGUgY2FsY3VsYXRlQXhpc1lDb29yZGluYXRlWChcbiAgICBjb250YWluZXJTaXplOiBQb0NoYXJ0Q29udGFpbmVyU2l6ZSxcbiAgICBhbW91bnRPZkF4aXNZOiBudW1iZXIsXG4gICAgaW5kZXg6IG51bWJlcixcbiAgICBzdWJ0cmFjdENhdGVnb3J5V2lkdGg6IGJvb2xlYW4gPSBmYWxzZVxuICApOiBudW1iZXIge1xuICAgIGNvbnN0IGFtb3VudE9mTGluZXMgPSB0aGlzLmFsaWduQnlUaGVDb3JuZXJzID8gYW1vdW50T2ZBeGlzWSAtIDEgOiBhbW91bnRPZkF4aXNZO1xuICAgIGNvbnN0IGhhbGZDYXRlZ29yeVdpZHRoID1cbiAgICAgIHRoaXMuYWxpZ25CeVRoZUNvcm5lcnMgJiYgc3VidHJhY3RDYXRlZ29yeVdpZHRoXG4gICAgICAgID8gKGNvbnRhaW5lclNpemUuc3ZnV2lkdGggLSBjb250YWluZXJTaXplLmF4aXNYTGFiZWxXaWR0aCkgLyAoYW1vdW50T2ZBeGlzWSAtIDEpIC8gMlxuICAgICAgICA6IDA7XG4gICAgY29uc3QgZGl2aWRlSW5kZXhCeUFtb3VudE9mTGluZXMgPSBpbmRleCAvIGFtb3VudE9mTGluZXM7XG4gICAgY29uc3QgeFJhdGlvID0gZGl2aWRlSW5kZXhCeUFtb3VudE9mTGluZXMgPT09IEluZmluaXR5ID8gMCA6IGRpdmlkZUluZGV4QnlBbW91bnRPZkxpbmVzO1xuXG4gICAgcmV0dXJuIE1hdGgucm91bmQoXG4gICAgICBjb250YWluZXJTaXplLmF4aXNYTGFiZWxXaWR0aCArXG4gICAgICAgIChjb250YWluZXJTaXplLnN2Z1dpZHRoIC0gY29udGFpbmVyU2l6ZS5heGlzWExhYmVsV2lkdGgpICogeFJhdGlvIC1cbiAgICAgICAgaGFsZkNhdGVnb3J5V2lkdGhcbiAgICApO1xuICB9XG5cbiAgcHJpdmF0ZSBjaGVja0F4aXNPcHRpb25zKG9wdGlvbnM6IFBvQ2hhcnRBeGlzT3B0aW9ucyA9IHt9KTogdm9pZCB7XG4gICAgdGhpcy5ncmlkTGluZXMgPVxuICAgICAgb3B0aW9ucy5ncmlkTGluZXMgJiYgdGhpcy5pc1ZhbGlkR3JpZExpbmVzTGVuZ3RoT3B0aW9uKG9wdGlvbnMuZ3JpZExpbmVzKSA/IG9wdGlvbnMuZ3JpZExpbmVzIDogUG9DaGFydEdyaWRMaW5lcztcbiAgfVxuXG4gIHByaXZhdGUgY2xlYW5VcENvb3JkaW5hdGVzKCkge1xuICAgIHRoaXMuYXhpc1hDb29yZGluYXRlcyA9IFtdO1xuICAgIHRoaXMuYXhpc1lDb29yZGluYXRlcyA9IFtdO1xuICAgIHRoaXMuYXhpc1hMYWJlbENvb3JkaW5hdGVzID0gW107XG4gICAgdGhpcy5heGlzWUxhYmVsQ29vcmRpbmF0ZXMgPSBbXTtcbiAgICB0aGlzLnNlcmllc0xlbmd0aCA9IDA7XG4gIH1cblxuICBwcml2YXRlIGdldEF4aXNYQ29vcmRpbmF0ZXMoXG4gICAgY29udGFpbmVyU2l6ZTogUG9DaGFydENvbnRhaW5lclNpemUsXG4gICAgYW1vdW50T2ZBeGlzWTogbnVtYmVyLFxuICAgIHR5cGU6IFBvQ2hhcnRUeXBlLFxuICAgIGluZGV4OiBudW1iZXJcbiAgKTogbnVtYmVyIHtcbiAgICByZXR1cm4gdGhpcy5hbGlnbkJ5VGhlQ29ybmVyc1xuICAgICAgPyB0aGlzLmNhbGN1bGF0ZUF4aXNZQ29vcmRpbmF0ZVgoY29udGFpbmVyU2l6ZSwgYW1vdW50T2ZBeGlzWSwgaW5kZXgpXG4gICAgICA6IHRoaXMuY2VudGVyZWRJbkNhdGVnb3J5QXJlYShjb250YWluZXJTaXplLCBhbW91bnRPZkF4aXNZLCB0eXBlLCBpbmRleCk7XG4gIH1cblxuICBwcml2YXRlIGdldENhdGVnb3JpZXNSYW5nZUZvck1vdXNlTW92ZShhbW91bnRPZkF4aXNZOiBudW1iZXIsIGNvbnRhaW5lclNpemU6IFBvQ2hhcnRDb250YWluZXJTaXplKSB7XG4gICAgY29uc3QgY2F0ZWdvcmllc0Nvb3JkaW5hdGVzID0gWy4uLkFycmF5KGFtb3VudE9mQXhpc1kpXS5tYXAoKF8sIGluZGV4OiBudW1iZXIpID0+XG4gICAgICB0aGlzLmNhbGN1bGF0ZUF4aXNZQ29vcmRpbmF0ZVgoY29udGFpbmVyU2l6ZSwgYW1vdW50T2ZBeGlzWSwgaW5kZXgsIHRydWUpXG4gICAgKTtcblxuICAgIHRoaXMuY2F0ZWdvcmllc0Nvb3JkaW5hdGVzLmVtaXQoY2F0ZWdvcmllc0Nvb3JkaW5hdGVzKTtcbiAgfVxuXG4gIHByaXZhdGUgaXNWYWxpZEdyaWRMaW5lc0xlbmd0aE9wdGlvbihncmlkTGluZXM6IG51bWJlcik6IGJvb2xlYW4ge1xuICAgIHJldHVybiBncmlkTGluZXMgPj0gMiAmJiBncmlkTGluZXMgPD0gMTA7XG4gIH1cblxuICBwcml2YXRlIGdldEF4aXNYTGFiZWxzKHR5cGU6IFBvQ2hhcnRUeXBlLCBtaW5NYXhBeGlzVmFsdWVzOiBQb0NoYXJ0TWluTWF4VmFsdWVzLCBhbW91bnRPZkF4aXNYOiBudW1iZXIpIHtcbiAgICBpZiAodHlwZSA9PT0gUG9DaGFydFR5cGUuQmFyKSB7XG4gICAgICBjb25zdCBheGlzWExhYmVsc0xpc3QgPSB0aGlzLmZvcm1hdENhdGVnb3JpZXNMYWJlbHMoYW1vdW50T2ZBeGlzWCwgdGhpcy5jYXRlZ29yaWVzKTtcbiAgICAgIHJldHVybiBheGlzWExhYmVsc0xpc3QucmV2ZXJzZSgpO1xuICAgIH1cblxuICAgIHJldHVybiB0aGlzLmdlbmVyYXRlQXZlcmFnZU9mTGFiZWxzKG1pbk1heEF4aXNWYWx1ZXMsIGFtb3VudE9mQXhpc1gpO1xuICB9XG5cbiAgcHJpdmF0ZSBnZXRBeGlzWUxhYmVscyh0eXBlOiBQb0NoYXJ0VHlwZSwgbWluTWF4QXhpc1ZhbHVlczogUG9DaGFydE1pbk1heFZhbHVlcywgYW1vdW50T2ZBeGlzWDogbnVtYmVyKSB7XG4gICAgcmV0dXJuIHR5cGUgPT09IFBvQ2hhcnRUeXBlLkJhclxuICAgICAgPyB0aGlzLmdlbmVyYXRlQXZlcmFnZU9mTGFiZWxzKG1pbk1heEF4aXNWYWx1ZXMsIGFtb3VudE9mQXhpc1gpXG4gICAgICA6IHRoaXMuZm9ybWF0Q2F0ZWdvcmllc0xhYmVscyhhbW91bnRPZkF4aXNYLCB0aGlzLmNhdGVnb3JpZXMpO1xuICB9XG5cbiAgcHJpdmF0ZSBmb3JtYXRDYXRlZ29yaWVzTGFiZWxzKGFtb3VudE9mQXhpc1g6IG51bWJlciwgY2F0ZWdvcmllczogQXJyYXk8c3RyaW5nPiA9IFtdKSB7XG4gICAgcmV0dXJuIFsuLi5BcnJheShhbW91bnRPZkF4aXNYKV0ubWFwKChfLCBpbmRleDogbnVtYmVyKSA9PiBjYXRlZ29yaWVzW2luZGV4XSA/PyAnLScpO1xuICB9XG5cbiAgcHJpdmF0ZSBnZW5lcmF0ZUF2ZXJhZ2VPZkxhYmVscyhtaW5NYXhBeGlzVmFsdWVzOiBQb0NoYXJ0TWluTWF4VmFsdWVzLCBhbW91bnRPZkF4aXNMaW5lczogbnVtYmVyKSB7XG4gICAgY29uc3QgYXZlcmFnZUxhYmVsc0xpc3QgPSB0aGlzLm1hdGhzU2VydmljZS5yYW5nZShtaW5NYXhBeGlzVmFsdWVzLCBhbW91bnRPZkF4aXNMaW5lcyk7XG5cbiAgICByZXR1cm4gYXZlcmFnZUxhYmVsc0xpc3QubWFwKGxhYmVsID0+IHtcbiAgICAgIGNvbnN0IGZvcm1hdHRlZERpZ2l0ID0gbGFiZWwudG9GaXhlZChsYWJlbCAlIDEgJiYgMik7XG4gICAgICAvLyBSZW1vdmUgZMOtZ2l0b3MgY29tIHplcm8uXG4gICAgICAvLyBUYW1iw6ltIHRyYXRhIGNhc28gcXVhbmRvIG8gdmFsb3IgcmV0b3JuYWRvIGVyYSAtMCwgc3Vic3RpdHVpbmRvLW8gcG9yIDAuXG4gICAgICBjb25zdCByZW1vdmVaZXJvRGlnaXRzID0gZm9ybWF0dGVkRGlnaXQucmVwbGFjZSgvXFwuMDAkLywgJycpLnJlcGxhY2UoL1xcLTAkLywgMCk7XG5cbiAgICAgIHJldHVybiByZW1vdmVaZXJvRGlnaXRzLnRvU3RyaW5nKCk7XG4gICAgfSk7XG4gIH1cbn1cbiIsIjxzdmc6ZyBwby1jaGFydC1heGlzLXBhdGggW3AtYXhpcy14LWNvb3JkaW5hdGVzXT1cImF4aXNYQ29vcmRpbmF0ZXNcIiBbcC1heGlzLXktY29vcmRpbmF0ZXNdPVwiYXhpc1lDb29yZGluYXRlc1wiPjwvc3ZnOmc+XG5cbjxzdmc6ZyBwby1jaGFydC1heGlzLWxhYmVsIFxuICBbcC1hbGlnbi1ieS10aGUtY29ybmVyc109XCJhbGlnbkJ5VGhlQ29ybmVyc1wiIFxuICBbcC1heGlzLXgtbGFiZWwtY29vcmRpbmF0ZXNdPVwiYXhpc1hMYWJlbENvb3JkaW5hdGVzXCIgXG4gIFtwLWF4aXMteS1sYWJlbC1jb29yZGluYXRlc109XCJheGlzWUxhYmVsQ29vcmRpbmF0ZXNcIiBcbiAgW3AtdHlwZV09XCJ0eXBlXCJcbiAgPlxuPC9zdmc6Zz4iXX0=
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { Directive, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "../../services/po-chart-maths.service";
|
|
4
|
+
export class PoChartBarBaseComponent {
|
|
5
|
+
constructor(mathsService) {
|
|
6
|
+
this.mathsService = mathsService;
|
|
7
|
+
this.barClick = new EventEmitter();
|
|
8
|
+
this.barHover = new EventEmitter();
|
|
9
|
+
this._containerSize = {};
|
|
10
|
+
this._range = {};
|
|
11
|
+
this._series = [];
|
|
12
|
+
}
|
|
13
|
+
set range(value) {
|
|
14
|
+
if (value instanceof Object && !(value instanceof Array)) {
|
|
15
|
+
this._range = value;
|
|
16
|
+
this.calculateSeriesPathsCoordinates(this.containerSize, this._series, this._range);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
get range() {
|
|
20
|
+
return this._range;
|
|
21
|
+
}
|
|
22
|
+
set containerSize(value) {
|
|
23
|
+
this._containerSize = value;
|
|
24
|
+
this.calculateSeriesPathsCoordinates(this._containerSize, this.series, this.range);
|
|
25
|
+
}
|
|
26
|
+
get containerSize() {
|
|
27
|
+
return this._containerSize;
|
|
28
|
+
}
|
|
29
|
+
set series(seriesList) {
|
|
30
|
+
const seriesDataArrayFilter = seriesList.filter(serie => Array.isArray(serie.data));
|
|
31
|
+
if (seriesDataArrayFilter.length) {
|
|
32
|
+
this._series = seriesDataArrayFilter;
|
|
33
|
+
this.seriesGreaterLength = this.mathsService.seriesGreaterLength(this.series);
|
|
34
|
+
this.calculateSeriesPathsCoordinates(this.containerSize, seriesDataArrayFilter, this.range);
|
|
35
|
+
}
|
|
36
|
+
else {
|
|
37
|
+
this._series = [];
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
get series() {
|
|
41
|
+
return this._series;
|
|
42
|
+
}
|
|
43
|
+
onSerieBarClick(selectedItem) {
|
|
44
|
+
this.barClick.emit(selectedItem);
|
|
45
|
+
}
|
|
46
|
+
onSerieBarHover(selectedItem) {
|
|
47
|
+
this.barHover.emit(selectedItem);
|
|
48
|
+
}
|
|
49
|
+
trackBy(index) {
|
|
50
|
+
return index;
|
|
51
|
+
}
|
|
52
|
+
calculateSeriesPathsCoordinates(containerSize, series, range) {
|
|
53
|
+
this.seriesPathsCoordinates = series.map((serie, seriesIndex) => {
|
|
54
|
+
if (Array.isArray(serie.data)) {
|
|
55
|
+
let pathCoordinates = [];
|
|
56
|
+
serie.data.forEach((data, serieDataIndex) => {
|
|
57
|
+
if (this.mathsService.verifyIfFloatOrInteger(data)) {
|
|
58
|
+
const coordinates = this.barCoordinates(seriesIndex, serieDataIndex, containerSize, range, data);
|
|
59
|
+
const category = this.serieCategory(serieDataIndex, this.categories);
|
|
60
|
+
const label = serie['label'];
|
|
61
|
+
const color = serie['color'];
|
|
62
|
+
const tooltip = serie['tooltip'];
|
|
63
|
+
const tooltipLabel = this.getTooltipLabel(data, label, tooltip);
|
|
64
|
+
pathCoordinates = [...pathCoordinates, { category, color, label, tooltipLabel, data, coordinates }];
|
|
65
|
+
}
|
|
66
|
+
});
|
|
67
|
+
return pathCoordinates;
|
|
68
|
+
}
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
getTooltipLabel(data, label, tooltipLabel) {
|
|
72
|
+
const dataLabel = label ? `${label}: ` : '';
|
|
73
|
+
const dataValue = data.toString();
|
|
74
|
+
return tooltipLabel || `${dataLabel}${dataValue}`;
|
|
75
|
+
}
|
|
76
|
+
serieCategory(index, categories = []) {
|
|
77
|
+
return categories[index] ?? undefined;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
PoChartBarBaseComponent.ɵfac = function PoChartBarBaseComponent_Factory(t) { return new (t || PoChartBarBaseComponent)(i0.ɵɵdirectiveInject(i1.PoChartMathsService)); };
|
|
81
|
+
PoChartBarBaseComponent.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: PoChartBarBaseComponent, inputs: { categories: ["p-categories", "categories"], range: ["p-range", "range"], containerSize: ["p-container-size", "containerSize"], series: ["p-series", "series"] }, outputs: { barClick: "p-bar-click", barHover: "p-bar-hover" } });
|
|
82
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoChartBarBaseComponent, [{
|
|
83
|
+
type: Directive
|
|
84
|
+
}], function () { return [{ type: i1.PoChartMathsService }]; }, { categories: [{
|
|
85
|
+
type: Input,
|
|
86
|
+
args: ['p-categories']
|
|
87
|
+
}], barClick: [{
|
|
88
|
+
type: Output,
|
|
89
|
+
args: ['p-bar-click']
|
|
90
|
+
}], barHover: [{
|
|
91
|
+
type: Output,
|
|
92
|
+
args: ['p-bar-hover']
|
|
93
|
+
}], range: [{
|
|
94
|
+
type: Input,
|
|
95
|
+
args: ['p-range']
|
|
96
|
+
}], containerSize: [{
|
|
97
|
+
type: Input,
|
|
98
|
+
args: ['p-container-size']
|
|
99
|
+
}], series: [{
|
|
100
|
+
type: Input,
|
|
101
|
+
args: ['p-series']
|
|
102
|
+
}] }); })();
|
|
103
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tY2hhcnQtYmFyLWJhc2UuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdWkvc3JjL2xpYi9jb21wb25lbnRzL3BvLWNoYXJ0L3BvLWNoYXJ0LWNvbnRhaW5lci9wby1jaGFydC1iYXIvcG8tY2hhcnQtYmFyLWJhc2UuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7OztBQVV2RSxNQUFNLE9BQWdCLHVCQUF1QjtJQXFEM0MsWUFBc0IsWUFBaUM7UUFBakMsaUJBQVksR0FBWixZQUFZLENBQXFCO1FBbERoQyxhQUFRLEdBQUcsSUFBSSxZQUFZLEVBQU8sQ0FBQztRQUVuQyxhQUFRLEdBQUcsSUFBSSxZQUFZLEVBQU8sQ0FBQztRQU1sRCxtQkFBYyxHQUF5QixFQUFFLENBQUM7UUFDMUMsV0FBTSxHQUF3QixFQUFFLENBQUM7UUFDakMsWUFBTyxHQUF3QixFQUFFLENBQUM7SUF3Q2dCLENBQUM7SUF0QzNELElBQXNCLEtBQUssQ0FBQyxLQUEwQjtRQUNwRCxJQUFJLEtBQUssWUFBWSxNQUFNLElBQUksQ0FBQyxDQUFDLEtBQUssWUFBWSxLQUFLLENBQUMsRUFBRTtZQUN4RCxJQUFJLENBQUMsTUFBTSxHQUFHLEtBQUssQ0FBQztZQUVwQixJQUFJLENBQUMsK0JBQStCLENBQUMsSUFBSSxDQUFDLGFBQWEsRUFBRSxJQUFJLENBQUMsT0FBTyxFQUFFLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztTQUNyRjtJQUNILENBQUM7SUFFRCxJQUFJLEtBQUs7UUFDUCxPQUFPLElBQUksQ0FBQyxNQUFNLENBQUM7SUFDckIsQ0FBQztJQUVELElBQStCLGFBQWEsQ0FBQyxLQUEyQjtRQUN0RSxJQUFJLENBQUMsY0FBYyxHQUFHLEtBQUssQ0FB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Q0wsQ0FBQztJQUVPLGVBQWUsQ0FBQyxJQUFZLEVBQUUsS0FBYSxFQUFFLFlBQW9CO1FBQ3ZFLE1BQU0sU0FBUyxHQUFHLEtBQUssQ0FBQyxDQUFDLENBQUMsR0FBRyxLQUFLLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1FBQzVDLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUVsQyxPQUFPLFlBQVksSUFBSSxHQUFHLFNBQVMsR0FBRyxTQUFTLEVBQUUsQ0FBQztJQUNwRCxDQUFDO0lBRU8sYUFBYSxDQUFDLEtBQWEsRUFBRSxhQUE0QixFQUFFO1FBQ2pFLE9BQU8sVUFBVSxDQUFDLEtBQUssQ0FBQyxJQUFJLFNBQVMsQ0FBQztJQUN4QyxDQUFDOzs4RkF4R21CLHVCQUF1QjswRUFBdkIsdUJBQXVCO3VGQUF2Qix1QkFBdUI7Y0FENUMsU0FBUztzRUFFZSxVQUFVO2tCQUFoQyxLQUFLO21CQUFDLGNBQWM7WUFFRSxRQUFRO2tCQUE5QixNQUFNO21CQUFDLGFBQWE7WUFFRSxRQUFRO2tCQUE5QixNQUFNO21CQUFDLGFBQWE7WUFVQyxLQUFLO2tCQUExQixLQUFLO21CQUFDLFNBQVM7WUFZZSxhQUFhO2tCQUEzQyxLQUFLO21CQUFDLGtCQUFrQjtZQVVGLE1BQU07a0JBQTVCLEtBQUs7bUJBQUMsVUFBVSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IFBvQ2hhcnRNYXRoc1NlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9wby1jaGFydC1tYXRocy5zZXJ2aWNlJztcblxuaW1wb3J0IHsgUG9DaGFydENvbnRhaW5lclNpemUgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2VzL3BvLWNoYXJ0LWNvbnRhaW5lci1zaXplLmludGVyZmFjZSc7XG5pbXBvcnQgeyBQb0NoYXJ0TWluTWF4VmFsdWVzIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlcy9wby1jaGFydC1taW4tbWF4LXZhbHVlcy5pbnRlcmZhY2UnO1xuaW1wb3J0IHsgUG9DaGFydEJhckNvb3JkaW5hdGVzIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlcy9wby1jaGFydC1iYXItY29vcmRpbmF0ZXMuaW50ZXJmYWNlJztcbmltcG9ydCB7IFBvQ2hhcnRTZXJpZSB9IGZyb20gJy4uLy4uL2ludGVyZmFjZXMvcG8tY2hhcnQtc2VyaWUuaW50ZXJmYWNlJztcblxuQERpcmVjdGl2ZSgpXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgUG9DaGFydEJhckJhc2VDb21wb25lbnQge1xuICBASW5wdXQoJ3AtY2F0ZWdvcmllcycpIGNhdGVnb3JpZXM6IEFycmF5PHN0cmluZz47XG5cbiAgQE91dHB1dCgncC1iYXItY2xpY2snKSBiYXJDbGljayA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xuXG4gIEBPdXRwdXQoJ3AtYmFyLWhvdmVyJykgYmFySG92ZXIgPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcblxuICBzZXJpZXNQYXRoc0Nvb3JkaW5hdGVzOiBBcnJheTxBcnJheTxQb0NoYXJ0QmFyQ29vcmRpbmF0ZXM+PjtcblxuICBwcm90ZWN0ZWQgc2VyaWVzR3JlYXRlckxlbmd0aDogbnVtYmVyO1xuXG4gIHByaXZhdGUgX2NvbnRhaW5lclNpemU6IFBvQ2hhcnRDb250YWluZXJTaXplID0ge307XG4gIHByaXZhdGUgX3JhbmdlOiBQb0NoYXJ0TWluTWF4VmFsdWVzID0ge307XG4gIHByaXZhdGUgX3NlcmllczogQXJyYXk8UG9DaGFydFNlcmllPiA9IFtdO1xuXG4gIEBJbnB1dCgncC1yYW5nZScpIHNldCByYW5nZSh2YWx1ZTogUG9DaGFydE1pbk1heFZhbHVlcykge1xuICAgIGlmICh2YWx1ZSBpbnN0YW5jZW9mIE9iamVjdCAmJiAhKHZhbHVlIGluc3RhbmNlb2YgQXJyYXkpKSB7XG4gICAgICB0aGlzLl9yYW5nZSA9IHZhbHVlO1xuXG4gICAgICB0aGlzLmNhbGN1bGF0ZVNlcmllc1BhdGhzQ29vcmRpbmF0ZXModGhpcy5jb250YWluZXJTaXplLCB0aGlzLl9zZXJpZXMsIHRoaXMuX3JhbmdlKTtcbiAgICB9XG4gIH1cblxuICBnZXQgcmFuZ2UoKSB7XG4gICAgcmV0dXJuIHRoaXMuX3JhbmdlO1xuICB9XG5cbiAgQElucHV0KCdwLWNvbnRhaW5lci1zaXplJykgc2V0IGNvbnRhaW5lclNpemUodmFsdWU6IFBvQ2hhcnRDb250YWluZXJTaXplKSB7XG4gICAgdGhpcy5fY29udGFpbmVyU2l6ZSA9IHZhbHVlO1xuXG4gICAgdGhpcy5jYWxjdWxhdGVTZXJpZXNQYXRoc0Nvb3JkaW5hdGVzKHRoaXMuX2NvbnRhaW5lclNpemUsIHRoaXMuc2VyaWVzLCB0aGlzLnJhbmdlKTtcbiAgfVxuXG4gIGdldCBjb250YWluZXJTaXplKCkge1xuICAgIHJldHVybiB0aGlzLl9jb250YWluZXJTaXplO1xuICB9XG5cbiAgQElucHV0KCdwLXNlcmllcycpIHNldCBzZXJpZXMoc2VyaWVzTGlzdDogQXJyYXk8UG9DaGFydFNlcmllPikge1xuICAgIGNvbnN0IHNlcmllc0RhdGFBcnJheUZpbHRlciA9IHNlcmllc0xpc3QuZmlsdGVyKHNlcmllID0+IEFycmF5LmlzQXJyYXkoc2VyaWUuZGF0YSkpO1xuXG4gICAgaWYgKHNlcmllc0RhdGFBcnJheUZpbHRlci5sZW5ndGgpIHtcbiAgICAgIHRoaXMuX3NlcmllcyA9IHNlcmllc0RhdGFBcnJheUZpbHRlcjtcbiAgICAgIHRoaXMuc2VyaWVzR3JlYXRlckxlbmd0aCA9IHRoaXMubWF0aHNTZXJ2aWNlLnNlcmllc0dyZWF0ZXJMZW5ndGgodGhpcy5zZXJpZXMpO1xuICAgICAgdGhpcy5jYWxjdWxhdGVTZXJpZXNQYXRoc0Nvb3JkaW5hdGVzKHRoaXMuY29udGFpbmVyU2l6ZSwgc2VyaWVzRGF0YUFycmF5RmlsdGVyLCB0aGlzLnJhbmdlKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5fc2VyaWVzID0gW107XG4gICAgfVxuICB9XG5cbiAgZ2V0IHNlcmllcygpIHtcbiAgICByZXR1cm4gdGhpcy5fc2VyaWVzO1xuICB9XG5cbiAgY29uc3RydWN0b3IocHJvdGVjdGVkIG1hdGhzU2VydmljZTogUG9DaGFydE1hdGhzU2VydmljZSkge31cblxuICBvblNlcmllQmFyQ2xpY2soc2VsZWN0ZWRJdGVtOiBhbnkpIHtcbiAgICB0aGlzLmJhckNsaWNrLmVtaXQoc2VsZWN0ZWRJdGVtKTtcbiAgfVxuXG4gIG9uU2VyaWVCYXJIb3ZlcihzZWxlY3RlZEl0ZW06IGFueSkge1xuICAgIHRoaXMuYmFySG92ZXIuZW1pdChzZWxlY3RlZEl0ZW0pO1xuICB9XG5cbiAgdHJhY2tCeShpbmRleCkge1xuICAgIHJldHVybiBpbmRleDtcbiAgfVxuXG4gIHByaXZhdGUgY2FsY3VsYXRlU2VyaWVzUGF0aHNDb29yZGluYXRlcyhcbiAgICBjb250YWluZXJTaXplOiBQb0NoYXJ0Q29udGFpbmVyU2l6ZSxcbiAgICBzZXJpZXM6IEFycmF5PFBvQ2hhcnRTZXJpZT4sXG4gICAgcmFuZ2U6IFBvQ2hhcnRNaW5NYXhWYWx1ZXNcbiAgKSB7XG4gICAgdGhpcy5zZXJpZXNQYXRoc0Nvb3JkaW5hdGVzID0gc2VyaWVzLm1hcCgoc2VyaWU6IFBvQ2hhcnRTZXJpZSwgc2VyaWVzSW5kZXgpID0+IHtcbiAgICAgIGlmIChBcnJheS5pc0FycmF5KHNlcmllLmRhdGEpKSB7XG4gICAgICAgIGxldCBwYXRoQ29vcmRpbmF0ZXM6IEFycmF5PFBvQ2hhcnRCYXJDb29yZGluYXRlcz4gPSBbXTtcblxuICAgICAgICBzZXJpZS5kYXRhLmZvckVhY2goKGRhdGEsIHNlcmllRGF0YUluZGV4KSA9PiB7XG4gICAgICAgICAgaWYgKHRoaXMubWF0aHNTZXJ2aWNlLnZlcmlmeUlmRmxvYXRPckludGVnZXIoZGF0YSkpIHtcbiAgICAgICAgICAgIGNvbnN0IGNvb3JkaW5hdGVzID0gdGhpcy5iYXJDb29yZGluYXRlcyhzZXJpZXNJbmRleCwgc2VyaWVEYXRhSW5kZXgsIGNvbnRhaW5lclNpemUsIHJhbmdlLCBkYXRhKTtcblxuICAgICAgICAgICAgY29uc3QgY2F0ZWdvcnkgPSB0aGlzLnNlcmllQ2F0ZWdvcnkoc2VyaWVEYXRhSW5kZXgsIHRoaXMuY2F0ZWdvcmllcyk7XG4gICAgICAgICAgICBjb25zdCBsYWJlbCA9IHNlcmllWydsYWJlbCddO1xuICAgICAgICAgICAgY29uc3QgY29sb3IgPSBzZXJpZVsnY29sb3InXTtcbiAgICAgICAgICAgIGNvbnN0IHRvb2x0aXAgPSBzZXJpZVsndG9vbHRpcCddO1xuICAgICAgICAgICAgY29uc3QgdG9vbHRpcExhYmVsID0gdGhpcy5nZXRUb29sdGlwTGFiZWwoZGF0YSwgbGFiZWwsIHRvb2x0aXApO1xuXG4gICAgICAgICAgICBwYXRoQ29vcmRpbmF0ZXMgPSBbLi4ucGF0aENvb3JkaW5hdGVzLCB7IGNhdGVnb3J5LCBjb2xvciwgbGFiZWwsIHRvb2x0aXBMYWJlbCwgZGF0YSwgY29vcmRpbmF0ZXMgfV07XG4gICAgICAgICAgfVxuICAgICAgICB9KTtcblxuICAgICAgICByZXR1cm4gcGF0aENvb3JkaW5hdGVzO1xuICAgICAgfVxuICAgIH0pO1xuICB9XG5cbiAgcHJpdmF0ZSBnZXRUb29sdGlwTGFiZWwoZGF0YTogbnVtYmVyLCBsYWJlbDogc3RyaW5nLCB0b29sdGlwTGFiZWw6IHN0cmluZykge1xuICAgIGNvbnN0IGRhdGFMYWJlbCA9IGxhYmVsID8gYCR7bGFiZWx9OiBgIDogJyc7XG4gICAgY29uc3QgZGF0YVZhbHVlID0gZGF0YS50b1N0cmluZygpO1xuXG4gICAgcmV0dXJuIHRvb2x0aXBMYWJlbCB8fCBgJHtkYXRhTGFiZWx9JHtkYXRhVmFsdWV9YDtcbiAgfVxuXG4gIHByaXZhdGUgc2VyaWVDYXRlZ29yeShpbmRleDogbnVtYmVyLCBjYXRlZ29yaWVzOiBBcnJheTxzdHJpbmc+ID0gW10pIHtcbiAgICByZXR1cm4gY2F0ZWdvcmllc1tpbmRleF0gPz8gdW5kZWZpbmVkO1xuICB9XG5cbiAgcHJvdGVjdGVkIGFic3RyYWN0IGJhckNvb3JkaW5hdGVzKFxuICAgIHNlcmllc0luZGV4OiBudW1iZXIsXG4gICAgc2VyaWVEYXRhSW5kZXg6IG51bWJlcixcbiAgICBjb250YWluZXJTaXplOiBQb0NoYXJ0Q29udGFpbmVyU2l6ZSxcbiAgICByYW5nZTogUG9DaGFydE1pbk1heFZhbHVlcyxcbiAgICBzZXJpZVZhbHVlOiBudW1iZXJcbiAgKTtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "../../../../../directives/po-tooltip/po-tooltip.directive";
|
|
5
|
+
const _c0 = ["po-chart-bar-path", ""];
|
|
6
|
+
function PoChartBarPathComponent__svg_path_0_Template(rf, ctx) { if (rf & 1) {
|
|
7
|
+
const _r3 = i0.ɵɵgetCurrentView();
|
|
8
|
+
i0.ɵɵnamespaceSVG();
|
|
9
|
+
i0.ɵɵelementStart(0, "path", 1);
|
|
10
|
+
i0.ɵɵlistener("mouseenter", function PoChartBarPathComponent__svg_path_0_Template__svg_path_mouseenter_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r3); const item_r1 = restoredCtx.$implicit; const ctx_r2 = i0.ɵɵnextContext(); return ctx_r2.onMouseEnter(item_r1); })("click", function PoChartBarPathComponent__svg_path_0_Template__svg_path_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r3); const item_r1 = restoredCtx.$implicit; const ctx_r4 = i0.ɵɵnextContext(); return ctx_r4.onClick(item_r1); });
|
|
11
|
+
i0.ɵɵelementEnd();
|
|
12
|
+
} if (rf & 2) {
|
|
13
|
+
const item_r1 = ctx.$implicit;
|
|
14
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
15
|
+
i0.ɵɵclassMap((ctx_r0.color == null ? null : ctx_r0.color.includes("po-color")) ? ctx_r0.color : "");
|
|
16
|
+
i0.ɵɵproperty("p-tooltip", item_r1.tooltipLabel)("p-tooltip-position", ctx_r0.tooltipPosition)("p-append-in-body", true);
|
|
17
|
+
i0.ɵɵattribute("fill", ctx_r0.color)("d", item_r1.coordinates);
|
|
18
|
+
} }
|
|
19
|
+
export class PoChartBarPathComponent {
|
|
20
|
+
constructor() {
|
|
21
|
+
this.barClick = new EventEmitter();
|
|
22
|
+
this.barHover = new EventEmitter();
|
|
23
|
+
}
|
|
24
|
+
trackBy(index) {
|
|
25
|
+
return index;
|
|
26
|
+
}
|
|
27
|
+
onClick(item) {
|
|
28
|
+
const selectedItem = { label: item.label, data: item.data, category: item.category };
|
|
29
|
+
this.barClick.emit(selectedItem);
|
|
30
|
+
}
|
|
31
|
+
onMouseEnter(item) {
|
|
32
|
+
const selectedItem = { label: item.label, data: item.data, category: item.category };
|
|
33
|
+
this.barHover.emit(selectedItem);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
PoChartBarPathComponent.ɵfac = function PoChartBarPathComponent_Factory(t) { return new (t || PoChartBarPathComponent)(); };
|
|
37
|
+
PoChartBarPathComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PoChartBarPathComponent, selectors: [["", "po-chart-bar-path", ""]], inputs: { color: ["p-color", "color"], coordinates: ["p-coordinates", "coordinates"], tooltipPosition: ["p-tooltip-position", "tooltipPosition"] }, outputs: { barClick: "p-bar-click", barHover: "p-bar-hover" }, attrs: _c0, decls: 1, vars: 2, consts: [["class", "po-chart-bar-path", 3, "p-tooltip", "p-tooltip-position", "p-append-in-body", "class", "mouseenter", "click", 4, "ngFor", "ngForOf", "ngForTrackBy"], [1, "po-chart-bar-path", 3, "p-tooltip", "p-tooltip-position", "p-append-in-body", "mouseenter", "click"]], template: function PoChartBarPathComponent_Template(rf, ctx) { if (rf & 1) {
|
|
38
|
+
i0.ɵɵtemplate(0, PoChartBarPathComponent__svg_path_0_Template, 1, 7, "path", 0);
|
|
39
|
+
} if (rf & 2) {
|
|
40
|
+
i0.ɵɵproperty("ngForOf", ctx.coordinates)("ngForTrackBy", ctx.trackBy);
|
|
41
|
+
} }, directives: [i1.NgForOf, i2.PoTooltipDirective], encapsulation: 2 });
|
|
42
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoChartBarPathComponent, [{
|
|
43
|
+
type: Component,
|
|
44
|
+
args: [{ selector: '[po-chart-bar-path]', template: "<svg:path *ngFor=\"let item of coordinates; trackBy: trackBy\"\n [p-tooltip]=\"item.tooltipLabel\"\n [p-tooltip-position]=\"tooltipPosition\"\n [p-append-in-body]='true'\n class=\"po-chart-bar-path\"\n [class]=\"color?.includes('po-color') ? color : ''\"\n [attr.fill]=\"color\"\n [attr.d]=\"item.coordinates\"\n (mouseenter)=\"onMouseEnter(item)\"\n (click)=\"onClick(item)\">\n</svg:path> \n" }]
|
|
45
|
+
}], function () { return []; }, { color: [{
|
|
46
|
+
type: Input,
|
|
47
|
+
args: ['p-color']
|
|
48
|
+
}], coordinates: [{
|
|
49
|
+
type: Input,
|
|
50
|
+
args: ['p-coordinates']
|
|
51
|
+
}], tooltipPosition: [{
|
|
52
|
+
type: Input,
|
|
53
|
+
args: ['p-tooltip-position']
|
|
54
|
+
}], barClick: [{
|
|
55
|
+
type: Output,
|
|
56
|
+
args: ['p-bar-click']
|
|
57
|
+
}], barHover: [{
|
|
58
|
+
type: Output,
|
|
59
|
+
args: ['p-bar-hover']
|
|
60
|
+
}] }); })();
|
|
61
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tY2hhcnQtYmFyLXBhdGguY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdWkvc3JjL2xpYi9jb21wb25lbnRzL3BvLWNoYXJ0L3BvLWNoYXJ0LWNvbnRhaW5lci9wby1jaGFydC1iYXIvcG8tY2hhcnQtYmFyLXBhdGgvcG8tY2hhcnQtYmFyLXBhdGguY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdWkvc3JjL2xpYi9jb21wb25lbnRzL3BvLWNoYXJ0L3BvLWNoYXJ0LWNvbnRhaW5lci9wby1jaGFydC1iYXIvcG8tY2hhcnQtYmFyLXBhdGgvcG8tY2hhcnQtYmFyLXBhdGguY29tcG9uZW50LnN2ZyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7Ozs7O0lDQXZFLG1CQVMwQjtJQVQxQiwrQkFTMEI7SUFEeEIsa1BBQWMsNEJBQWtCLElBQUMsMk5BQ3hCLHVCQUFhLElBRFc7SUFFbkMsaUJBQVc7Ozs7SUFMVCxvR0FBa0Q7SUFKbEQsZ0RBQStCLDhDQUFBLDBCQUFBO0lBSy9CLG9DQUFtQiwwQkFBQTs7QURFckIsTUFBTSxPQUFPLHVCQUF1QjtJQVdsQztRQUp1QixhQUFRLEdBQUcsSUFBSSxZQUFZLEVBQU8sQ0FBQztRQUVuQyxhQUFRLEdBQUcsSUFBSSxZQUFZLEVBQU8sQ0FBQztJQUUzQyxDQUFDO0lBRWhCLE9BQU8sQ0FBQyxLQUFLO1FBQ1gsT0FBTyxLQUFLLENBQUM7SUFDZixDQUFDO0lBRUQsT0FBTyxDQUFDLElBQTJCO1FBQ2pDLE1BQU0sWUFBWSxHQUFHLEVBQUUsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLLEVBQUUsSUFBSSxFQUFFLElBQUksQ0FBQyxJQUFJLEVBQUUsUUFBUSxFQUFFLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUVyRixJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQztJQUNuQyxDQUFDO0lBRUQsWUFBWSxDQUFDLElBQTJCO1FBQ3RDLE1BQU0sWUFBWSxHQUFHLEVBQUUsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLLEVBQUUsSUFBSSxFQUFFLElBQUksQ0FBQyxJQUFJLEVBQUUsUUFBUSxFQUFFLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUVyRixJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQztJQUNuQyxDQUFDOzs4RkEzQlUsdUJBQXVCOzBFQUF2Qix1QkFBdUI7UUNScEMsK0VBVVc7O1FBVmdCLHlDQUFnQiw2QkFBQTs7dUZEUTlCLHVCQUF1QjtjQUpuQyxTQUFTOzJCQUNFLHFCQUFxQjtzQ0FJYixLQUFLO2tCQUF0QixLQUFLO21CQUFDLFNBQVM7WUFFUSxXQUFXO2tCQUFsQyxLQUFLO21CQUFDLGVBQWU7WUFFTyxlQUFlO2tCQUEzQyxLQUFLO21CQUFDLG9CQUFvQjtZQUVKLFFBQVE7a0JBQTlCLE1BQU07bUJBQUMsYUFBYTtZQUVFLFFBQVE7a0JBQTlCLE1BQU07bUJBQUMsYUFBYSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IFBvQ2hhcnRCYXJDb29yZGluYXRlcyB9IGZyb20gJy4uLy4uLy4uL2ludGVyZmFjZXMvcG8tY2hhcnQtYmFyLWNvb3JkaW5hdGVzLmludGVyZmFjZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ1twby1jaGFydC1iYXItcGF0aF0nLFxuICB0ZW1wbGF0ZVVybDogJy4vcG8tY2hhcnQtYmFyLXBhdGguY29tcG9uZW50LnN2Zydcbn0pXG5leHBvcnQgY2xhc3MgUG9DaGFydEJhclBhdGhDb21wb25lbnQge1xuICBASW5wdXQoJ3AtY29sb3InKSBjb2xvcj86IHN0cmluZztcblxuICBASW5wdXQoJ3AtY29vcmRpbmF0ZXMnKSBjb29yZGluYXRlczogQXJyYXk8UG9DaGFydEJhckNvb3JkaW5hdGVzPjtcblxuICBASW5wdXQoJ3AtdG9vbHRpcC1wb3NpdGlvbicpIHRvb2x0aXBQb3NpdGlvbjogc3RyaW5nO1xuXG4gIEBPdXRwdXQoJ3AtYmFyLWNsaWNrJykgYmFyQ2xpY2sgPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcblxuICBAT3V0cHV0KCdwLWJhci1ob3ZlcicpIGJhckhvdmVyID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XG5cbiAgY29uc3RydWN0b3IoKSB7fVxuXG4gIHRyYWNrQnkoaW5kZXgpIHtcbiAgICByZXR1cm4gaW5kZXg7XG4gIH1cblxuICBvbkNsaWNrKGl0ZW06IFBvQ2hhcnRCYXJDb29yZGluYXRlcykge1xuICAgIGNvbnN0IHNlbGVjdGVkSXRlbSA9IHsgbGFiZWw6IGl0ZW0ubGFiZWwsIGRhdGE6IGl0ZW0uZGF0YSwgY2F0ZWdvcnk6IGl0ZW0uY2F0ZWdvcnkgfTtcblxuICAgIHRoaXMuYmFyQ2xpY2suZW1pdChzZWxlY3RlZEl0ZW0pO1xuICB9XG5cbiAgb25Nb3VzZUVudGVyKGl0ZW06IFBvQ2hhcnRCYXJDb29yZGluYXRlcykge1xuICAgIGNvbnN0IHNlbGVjdGVkSXRlbSA9IHsgbGFiZWw6IGl0ZW0ubGFiZWwsIGRhdGE6IGl0ZW0uZGF0YSwgY2F0ZWdvcnk6IGl0ZW0uY2F0ZWdvcnkgfTtcblxuICAgIHRoaXMuYmFySG92ZXIuZW1pdChzZWxlY3RlZEl0ZW0pO1xuICB9XG59XG4iLCI8c3ZnOnBhdGggKm5nRm9yPVwibGV0IGl0ZW0gb2YgY29vcmRpbmF0ZXM7IHRyYWNrQnk6IHRyYWNrQnlcIlxuICBbcC10b29sdGlwXT1cIml0ZW0udG9vbHRpcExhYmVsXCJcbiAgW3AtdG9vbHRpcC1wb3NpdGlvbl09XCJ0b29sdGlwUG9zaXRpb25cIlxuICBbcC1hcHBlbmQtaW4tYm9keV09J3RydWUnXG4gIGNsYXNzPVwicG8tY2hhcnQtYmFyLXBhdGhcIlxuICBbY2xhc3NdPVwiY29sb3I/LmluY2x1ZGVzKCdwby1jb2xvcicpID8gY29sb3IgOiAnJ1wiXG4gIFthdHRyLmZpbGxdPVwiY29sb3JcIlxuICBbYXR0ci5kXT1cIml0ZW0uY29vcmRpbmF0ZXNcIlxuICAobW91c2VlbnRlcik9XCJvbk1vdXNlRW50ZXIoaXRlbSlcIlxuICAoY2xpY2spPVwib25DbGljayhpdGVtKVwiPlxuPC9zdmc6cGF0aD4gXG4iXX0=
|