@po-ui/ng-components 5.22.3 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -36
- package/esm2020/lib/components/components.module.mjs +270 -0
- package/esm2020/lib/components/index.mjs +38 -0
- package/esm2020/lib/components/po-accordion/index.mjs +4 -0
- package/esm2020/lib/components/po-accordion/po-accordion-base.component.mjs +29 -0
- package/esm2020/lib/components/po-accordion/po-accordion-item/po-accordion-item.component.mjs +78 -0
- package/esm2020/lib/components/po-accordion/po-accordion-item-body/po-accordion-item-body.component.mjs +44 -0
- package/esm2020/lib/components/po-accordion/po-accordion-item-header/po-accordion-item-header.component.mjs +41 -0
- package/esm2020/lib/components/po-accordion/po-accordion.component.mjs +106 -0
- package/esm2020/lib/components/po-accordion/po-accordion.module.mjs +61 -0
- package/esm2020/lib/components/po-accordion/services/po-accordion.service.mjs +30 -0
- package/esm2020/lib/components/po-avatar/index.mjs +3 -0
- package/esm2020/lib/components/po-avatar/po-avatar-base.component.mjs +77 -0
- package/esm2020/lib/components/po-avatar/po-avatar.component.mjs +73 -0
- package/esm2020/lib/components/po-avatar/po-avatar.module.mjs +24 -0
- package/esm2020/lib/components/po-badge/po-badge-base.component.mjs +94 -0
- package/esm2020/lib/components/po-badge/po-badge.component.mjs +27 -0
- package/esm2020/lib/components/po-badge/po-badge.module.mjs +24 -0
- package/esm2020/lib/components/po-breadcrumb/index.mjs +5 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-base.component.mjs +55 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-dropdown/po-breadcrumb-dropdown.component.mjs +40 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.component.mjs +113 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.service.mjs +49 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-item/po-breadcrumb-item.component.mjs +109 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb.component.mjs +219 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb.interface.mjs +2 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb.module.mjs +37 -0
- package/esm2020/lib/components/po-button/index.mjs +3 -0
- package/esm2020/lib/components/po-button/po-button-base.component.mjs +144 -0
- package/esm2020/lib/components/po-button/po-button.component.mjs +114 -0
- package/esm2020/lib/components/po-button/po-button.module.mjs +26 -0
- package/esm2020/lib/components/po-button-group/index.mjs +5 -0
- package/esm2020/lib/components/po-button-group/po-button-group-base.component.mjs +102 -0
- package/esm2020/lib/components/po-button-group/po-button-group-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-button-group/po-button-group-toggle.enum.mjs +17 -0
- package/esm2020/lib/components/po-button-group/po-button-group.component.mjs +62 -0
- package/esm2020/lib/components/po-button-group/po-button-group.module.mjs +26 -0
- package/esm2020/lib/components/po-calendar/index.mjs +4 -0
- package/esm2020/lib/components/po-calendar/po-calendar-base.component.mjs +183 -0
- package/esm2020/lib/components/po-calendar/po-calendar-header/po-calendar-header.component.mjs +57 -0
- package/esm2020/lib/components/po-calendar/po-calendar-mode.enum.mjs +13 -0
- package/esm2020/lib/components/po-calendar/po-calendar-wrapper/po-calendar-wrapper.component.mjs +469 -0
- package/esm2020/lib/components/po-calendar/po-calendar.component.mjs +257 -0
- package/esm2020/lib/components/po-calendar/po-calendar.module.mjs +25 -0
- package/esm2020/lib/components/po-calendar/services/po-calendar.lang.service.mjs +189 -0
- package/esm2020/lib/components/po-calendar/services/po-calendar.service.mjs +47 -0
- package/esm2020/lib/components/po-chart/directives/po-resize-observer.directive.mjs +46 -0
- package/esm2020/lib/components/po-chart/enums/po-chart-type.enum.mjs +38 -0
- package/esm2020/lib/components/po-chart/helpers/po-chart-default-values.constant.mjs +18 -0
- package/esm2020/lib/components/po-chart/index.mjs +7 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-axis-options.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-bar-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-container-size.interface.mjs +11 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-label-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-min-max-values.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-options.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-path-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-points-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-serie.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/po-chart-base.component.mjs +258 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-label/po-chart-axis-label.component.mjs +68 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-path/po-chart-axis-path.component.mjs +50 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis.component.mjs +310 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-base.component.mjs +103 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-path/po-chart-bar-path.component.mjs +61 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar.component.mjs +84 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-column/po-chart-column.component.mjs +85 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-label/po-chart-circular-label.component.mjs +47 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-circular-path.component.mjs +56 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-tooltip.directive.mjs +84 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular.component.mjs +161 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-donut/po-chart-donut.component.mjs +165 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-pie/po-chart-pie.component.mjs +107 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-container.component.mjs +243 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-area/po-chart-area.component.mjs +106 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line-base.component.mjs +172 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line.component.mjs +70 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-path/po-chart-path.component.mjs +87 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-series-point/po-chart-series-point.component.mjs +128 -0
- package/esm2020/lib/components/po-chart/po-chart-legend/po-chart-legend.component.mjs +48 -0
- package/esm2020/lib/components/po-chart/po-chart-types/po-chart-dynamic-type.component.mjs +52 -0
- package/esm2020/lib/components/po-chart/po-chart.component.mjs +254 -0
- package/esm2020/lib/components/po-chart/po-chart.module.mjs +81 -0
- package/esm2020/lib/components/po-chart/services/po-chart-maths.service.mjs +136 -0
- package/esm2020/lib/components/po-chart/services/po-chart-svg-container.service.mjs +58 -0
- package/esm2020/lib/components/po-container/index.mjs +3 -0
- package/esm2020/lib/components/po-container/po-container-base.component.mjs +97 -0
- package/esm2020/lib/components/po-container/po-container.component.mjs +42 -0
- package/esm2020/lib/components/po-container/po-container.module.mjs +24 -0
- package/esm2020/lib/components/po-disclaimer/index.mjs +4 -0
- package/esm2020/lib/components/po-disclaimer/po-disclaimer-base.component.mjs +90 -0
- package/esm2020/lib/components/po-disclaimer/po-disclaimer.component.mjs +60 -0
- package/esm2020/lib/components/po-disclaimer/po-disclaimer.interface.mjs +2 -0
- package/esm2020/lib/components/po-disclaimer/po-disclaimer.module.mjs +23 -0
- package/esm2020/lib/components/po-disclaimer-group/index.mjs +5 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group-base.component.mjs +206 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group-remove-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group.component.mjs +80 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group.interface.mjs +2 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group.module.mjs +26 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-remove/po-disclaimer-remove.component.mjs +40 -0
- package/esm2020/lib/components/po-divider/index.mjs +3 -0
- package/esm2020/lib/components/po-divider/po-divider-base.component.mjs +19 -0
- package/esm2020/lib/components/po-divider/po-divider.component.mjs +49 -0
- package/esm2020/lib/components/po-divider/po-divider.module.mjs +24 -0
- package/esm2020/lib/components/po-dropdown/index.mjs +4 -0
- package/esm2020/lib/components/po-dropdown/po-dropdown-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-dropdown/po-dropdown-base.component.mjs +78 -0
- package/esm2020/lib/components/po-dropdown/po-dropdown.component.mjs +130 -0
- package/esm2020/lib/components/po-dropdown/po-dropdown.module.mjs +24 -0
- package/esm2020/lib/components/po-dynamic/index.mjs +11 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-field-type.enum.mjs +25 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-field.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-base.component.mjs +121 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-field.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-field-internal.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields-base.component.mjs +221 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields.component.mjs +350 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.service.mjs +32 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-operation/po-dynamic-form-operation.mjs +20 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-response.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-changed.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-validation.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.service.mjs +39 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form.component.mjs +203 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-base.component.mjs +169 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-field.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.component.mjs +141 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.service.mjs +17 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic.module.mjs +53 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic.util.mjs +18 -0
- package/esm2020/lib/components/po-field/index.mjs +53 -0
- package/esm2020/lib/components/po-field/po-checkbox/po-checkbox-base.component.mjs +109 -0
- package/esm2020/lib/components/po-field/po-checkbox/po-checkbox.component.mjs +118 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option-view.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/po-checkbox-group-base.component.mjs +322 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/po-checkbox-group.component.mjs +150 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/po-checkbox-group.module.mjs +26 -0
- package/esm2020/lib/components/po-field/po-clean/index.mjs +2 -0
- package/esm2020/lib/components/po-field/po-clean/po-clean-base.component.mjs +49 -0
- package/esm2020/lib/components/po-field/po-clean/po-clean.component.mjs +45 -0
- package/esm2020/lib/components/po-field/po-clean/po-clean.module.mjs +24 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-group.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-option-group.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-response.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo-base.component.mjs +803 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo-filter-mode.enum.mjs +17 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo-filter.service.mjs +79 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo-option-template/po-combo-option-template.directive.mjs +82 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo.component.mjs +746 -0
- package/esm2020/lib/components/po-field/po-datepicker/enums/po-datepicker-iso-format.enum.mjs +17 -0
- package/esm2020/lib/components/po-field/po-datepicker/po-datepicker-base.component.mjs +428 -0
- package/esm2020/lib/components/po-field/po-datepicker/po-datepicker.component.mjs +439 -0
- package/esm2020/lib/components/po-field/po-datepicker/po-datepicker.module.mjs +28 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.mjs +506 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.mjs +528 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/po-datepicker-range.literals.mjs +27 -0
- package/esm2020/lib/components/po-field/po-decimal/po-decimal.component.mjs +667 -0
- package/esm2020/lib/components/po-field/po-email/po-email.component.mjs +150 -0
- package/esm2020/lib/components/po-field/po-field-container/index.mjs +4 -0
- package/esm2020/lib/components/po-field/po-field-container/po-field-container-bottom/po-field-container-bottom.component.mjs +47 -0
- package/esm2020/lib/components/po-field/po-field-container/po-field-container-literals.mjs +15 -0
- package/esm2020/lib/components/po-field/po-field-container/po-field-container.component.mjs +81 -0
- package/esm2020/lib/components/po-field/po-field-container/po-field-container.module.mjs +25 -0
- package/esm2020/lib/components/po-field/po-field-validate.model.mjs +74 -0
- package/esm2020/lib/components/po-field/po-field.model.mjs +90 -0
- package/esm2020/lib/components/po-field/po-field.module.mjs +268 -0
- package/esm2020/lib/components/po-field/po-input/po-input-base.component.mjs +397 -0
- package/esm2020/lib/components/po-field/po-input/po-input.component.mjs +111 -0
- package/esm2020/lib/components/po-field/po-input/po-mask.mjs +460 -0
- package/esm2020/lib/components/po-field/po-input-generic/po-input-generic.mjs +197 -0
- package/esm2020/lib/components/po-field/po-login/po-login.component.mjs +100 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-advanced-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-column.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-filtered-items-params.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-response-api.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/po-lookup-base.component.mjs +499 -0
- package/esm2020/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal-base.component.mjs +394 -0
- package/esm2020/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal.component.mjs +225 -0
- package/esm2020/lib/components/po-field/po-lookup/po-lookup.component.mjs +437 -0
- package/esm2020/lib/components/po-field/po-lookup/services/po-lookup-filter.service.mjs +59 -0
- package/esm2020/lib/components/po-field/po-lookup/services/po-lookup-modal.service.mjs +62 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-base.component.mjs +620 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-dropdown/po-multiselect-dropdown.component.mjs +261 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-filter-mode.enum.mjs +17 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-filter.service.mjs +50 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-item/po-multiselect-item.component.mjs +54 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-search/po-multiselect-search.component.mjs +84 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect.component.mjs +428 -0
- package/esm2020/lib/components/po-field/po-number/po-number-base.component.mjs +113 -0
- package/esm2020/lib/components/po-field/po-number/po-number.component.mjs +178 -0
- package/esm2020/lib/components/po-field/po-password/po-password.component.mjs +151 -0
- package/esm2020/lib/components/po-field/po-radio-group/po-radio-group-base.component.mjs +201 -0
- package/esm2020/lib/components/po-field/po-radio-group/po-radio-group-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-radio-group/po-radio-group.component.mjs +184 -0
- package/esm2020/lib/components/po-field/po-rich-text/interfaces/po-rich-text-toolbar-button-group-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-base.component.mjs +203 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-body/po-rich-text-body.component.mjs +342 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-image-modal/po-rich-text-image-modal.component.mjs +135 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-link-modal/po-rich-text-link-modal.component.mjs +177 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-literals.mjs +83 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-toolbar/po-rich-text-toolbar.component.mjs +254 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text.component.mjs +173 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text.service.mjs +20 -0
- package/esm2020/lib/components/po-field/po-select/po-select-option-template/po-select-option-template.directive.mjs +60 -0
- package/esm2020/lib/components/po-field/po-select/po-select-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-select/po-select.component.mjs +513 -0
- package/esm2020/lib/components/po-field/po-switch/po-switch-label-position.enum.mjs +15 -0
- package/esm2020/lib/components/po-field/po-switch/po-switch.component.mjs +236 -0
- package/esm2020/lib/components/po-field/po-textarea/po-textarea-base.component.mjs +299 -0
- package/esm2020/lib/components/po-field/po-textarea/po-textarea.component.mjs +159 -0
- package/esm2020/lib/components/po-field/po-upload/interfaces/po-upload-file-restriction.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-upload/interfaces/po-upload-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-base.component.mjs +634 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-base.service.mjs +89 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area/po-upload-drag-drop-area.component.mjs +95 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area-overlay/po-upload-drag-drop-area-overlay.component.mjs +61 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.component.mjs +101 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.directive.mjs +179 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-file-restrictions/po-upload-file-restrictions.component.mjs +151 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-file.mjs +39 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-status.enum.mjs +13 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload.component.mjs +450 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload.service.mjs +11 -0
- package/esm2020/lib/components/po-field/po-url/po-url.component.mjs +141 -0
- package/esm2020/lib/components/po-field/validators.mjs +41 -0
- package/esm2020/lib/components/po-gauge/index.mjs +4 -0
- package/esm2020/lib/components/po-gauge/interfaces/po-gauge-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-gauge/interfaces/po-gauge-ranges.interface.mjs +2 -0
- package/esm2020/lib/components/po-gauge/interfaces/po-gauge-svg-container.interface.mjs +2 -0
- package/esm2020/lib/components/po-gauge/po-gauge-base.component.mjs +154 -0
- package/esm2020/lib/components/po-gauge/po-gauge-default-values.constant.mjs +11 -0
- package/esm2020/lib/components/po-gauge/po-gauge-description/po-gauge-description.component.mjs +110 -0
- package/esm2020/lib/components/po-gauge/po-gauge-legend/po-gauge-legend.component.mjs +70 -0
- package/esm2020/lib/components/po-gauge/po-gauge-svg/po-gauge-path/po-gauge-path.component.mjs +43 -0
- package/esm2020/lib/components/po-gauge/po-gauge-svg/po-gauge-pointer/po-gauge-pointer.component.mjs +66 -0
- package/esm2020/lib/components/po-gauge/po-gauge-svg/po-gauge-svg.component.mjs +236 -0
- package/esm2020/lib/components/po-gauge/po-gauge-title/po-gauge-title.component.mjs +28 -0
- package/esm2020/lib/components/po-gauge/po-gauge.component.mjs +109 -0
- package/esm2020/lib/components/po-gauge/po-gauge.module.mjs +44 -0
- package/esm2020/lib/components/po-grid/index.mjs +4 -0
- package/esm2020/lib/components/po-grid/po-grid-cell/po-grid-cell.component.mjs +179 -0
- package/esm2020/lib/components/po-grid/po-grid-cell-action/po-grid-cell-action.component.mjs +40 -0
- package/esm2020/lib/components/po-grid/po-grid-head/po-grid-head.component.mjs +56 -0
- package/esm2020/lib/components/po-grid/po-grid-row-actions.interface.mjs +2 -0
- package/esm2020/lib/components/po-grid/po-grid.component.mjs +573 -0
- package/esm2020/lib/components/po-grid/po-grid.module.mjs +29 -0
- package/esm2020/lib/components/po-icon/index.mjs +3 -0
- package/esm2020/lib/components/po-icon/po-icon.component.mjs +77 -0
- package/esm2020/lib/components/po-icon/po-icon.module.mjs +24 -0
- package/esm2020/lib/components/po-info/index.mjs +4 -0
- package/esm2020/lib/components/po-info/po-info-base.component.mjs +73 -0
- package/esm2020/lib/components/po-info/po-info-orietation.enum.mjs +15 -0
- package/esm2020/lib/components/po-info/po-info.component.mjs +110 -0
- package/esm2020/lib/components/po-info/po-info.module.mjs +27 -0
- package/esm2020/lib/components/po-list-view/index.mjs +7 -0
- package/esm2020/lib/components/po-list-view/interfaces/po-list-view-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-list-view/interfaces/po-list-view-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-list-view/po-list-view-base.component.mjs +298 -0
- package/esm2020/lib/components/po-list-view/po-list-view-content-template/po-list-view-content-template.directive.mjs +102 -0
- package/esm2020/lib/components/po-list-view/po-list-view-detail-template/po-list-view-detail-template.directive.mjs +65 -0
- package/esm2020/lib/components/po-list-view/po-list-view.component.mjs +385 -0
- package/esm2020/lib/components/po-list-view/po-list-view.module.mjs +57 -0
- package/esm2020/lib/components/po-loading/index.mjs +5 -0
- package/esm2020/lib/components/po-loading/po-loading-base.component.mjs +27 -0
- package/esm2020/lib/components/po-loading/po-loading-icon/po-loading-icon.component.mjs +51 -0
- package/esm2020/lib/components/po-loading/po-loading-overlay/interfaces/po-loading-overlay-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-loading/po-loading-overlay/po-loading-overlay-base.component.mjs +93 -0
- package/esm2020/lib/components/po-loading/po-loading-overlay/po-loading-overlay.component.mjs +47 -0
- package/esm2020/lib/components/po-loading/po-loading.component.mjs +36 -0
- package/esm2020/lib/components/po-loading/po-loading.module.mjs +28 -0
- package/esm2020/lib/components/po-menu/index.mjs +9 -0
- package/esm2020/lib/components/po-menu/po-menu-base.component.mjs +312 -0
- package/esm2020/lib/components/po-menu/po-menu-filter/po-menu-filter-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu-filter/po-menu-filter.component.mjs +85 -0
- package/esm2020/lib/components/po-menu/po-menu-filter/po-menu-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu-header-template/po-menu-header-template.directive.mjs +52 -0
- package/esm2020/lib/components/po-menu/po-menu-item/po-menu-item-badge.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu-item/po-menu-item-filtered.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu-item/po-menu-item.component.mjs +362 -0
- package/esm2020/lib/components/po-menu/po-menu-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu.component.mjs +611 -0
- package/esm2020/lib/components/po-menu/po-menu.module.mjs +32 -0
- package/esm2020/lib/components/po-menu/services/po-menu-global.service.mjs +34 -0
- package/esm2020/lib/components/po-menu/services/po-menu-items.service.mjs +38 -0
- package/esm2020/lib/components/po-menu/services/po-menu.service.mjs +38 -0
- package/esm2020/lib/components/po-menu-panel/index.mjs +4 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel-base.component.mjs +81 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item-internal.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.component.mjs +120 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel.component.mjs +171 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel.module.mjs +30 -0
- package/esm2020/lib/components/po-menu-panel/services/po-menu-panel-items.service.mjs +38 -0
- package/esm2020/lib/components/po-modal/index.mjs +5 -0
- package/esm2020/lib/components/po-modal/po-modal-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-modal/po-modal-base.component.mjs +133 -0
- package/esm2020/lib/components/po-modal/po-modal-footer/po-modal-footer.component.mjs +52 -0
- package/esm2020/lib/components/po-modal/po-modal.component.mjs +207 -0
- package/esm2020/lib/components/po-modal/po-modal.literals.mjs +15 -0
- package/esm2020/lib/components/po-modal/po-modal.module.mjs +25 -0
- package/esm2020/lib/components/po-navbar/index.mjs +5 -0
- package/esm2020/lib/components/po-navbar/interfaces/po-navbar-icon-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-navbar/interfaces/po-navbar-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-navbar/interfaces/po-navbar-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-navbar/po-navbar-actions/po-navbar-action/po-navbar-action.component.mjs +56 -0
- package/esm2020/lib/components/po-navbar/po-navbar-actions/po-navbar-action-popup/po-navbar-action-popup.component.mjs +33 -0
- package/esm2020/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.component.mjs +36 -0
- package/esm2020/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.module.mjs +24 -0
- package/esm2020/lib/components/po-navbar/po-navbar-base.component.mjs +158 -0
- package/esm2020/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation-icon/po-navbar-item-navigation-icon.component.mjs +34 -0
- package/esm2020/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.component.mjs +35 -0
- package/esm2020/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.module.mjs +21 -0
- package/esm2020/lib/components/po-navbar/po-navbar-items/po-navbar-item/po-navbar-item.component.mjs +78 -0
- package/esm2020/lib/components/po-navbar/po-navbar-items/po-navbar-items.component.mjs +86 -0
- package/esm2020/lib/components/po-navbar/po-navbar-items/po-navbar-items.module.mjs +21 -0
- package/esm2020/lib/components/po-navbar/po-navbar-logo/po-navbar-logo.component.mjs +28 -0
- package/esm2020/lib/components/po-navbar/po-navbar.component.mjs +262 -0
- package/esm2020/lib/components/po-navbar/po-navbar.module.mjs +75 -0
- package/esm2020/lib/components/po-page/index.mjs +15 -0
- package/esm2020/lib/components/po-page/po-page-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-base.component.mjs +23 -0
- package/esm2020/lib/components/po-page/po-page-content/po-page-content-base.component.mjs +10 -0
- package/esm2020/lib/components/po-page/po-page-content/po-page-content.component.mjs +60 -0
- package/esm2020/lib/components/po-page/po-page-default/po-page-default-base.component.mjs +128 -0
- package/esm2020/lib/components/po-page/po-page-default/po-page-default-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-default/po-page-default.component.mjs +165 -0
- package/esm2020/lib/components/po-page/po-page-default/po-page-default.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-detail/po-page-detail-base.component.mjs +162 -0
- package/esm2020/lib/components/po-page/po-page-detail/po-page-detail-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-detail/po-page-detail.component.mjs +132 -0
- package/esm2020/lib/components/po-page/po-page-edit/po-page-edit-base.component.mjs +169 -0
- package/esm2020/lib/components/po-page/po-page-edit/po-page-edit-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-edit/po-page-edit.component.mjs +135 -0
- package/esm2020/lib/components/po-page/po-page-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-header/po-page-header-base.component.mjs +31 -0
- package/esm2020/lib/components/po-page/po-page-header/po-page-header.component.mjs +51 -0
- package/esm2020/lib/components/po-page/po-page-list/po-page-list-base.component.mjs +158 -0
- package/esm2020/lib/components/po-page/po-page-list/po-page-list-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-list/po-page-list.component.mjs +323 -0
- package/esm2020/lib/components/po-page/po-page-slide/po-page-slide-base.component.mjs +146 -0
- package/esm2020/lib/components/po-page/po-page-slide/po-page-slide.component.mjs +197 -0
- package/esm2020/lib/components/po-page/po-page.component.mjs +23 -0
- package/esm2020/lib/components/po-page/po-page.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page.module.mjs +97 -0
- package/esm2020/lib/components/po-popover/index.mjs +3 -0
- package/esm2020/lib/components/po-popover/po-popover-base.component.mjs +126 -0
- package/esm2020/lib/components/po-popover/po-popover.component.mjs +173 -0
- package/esm2020/lib/components/po-popover/po-popover.module.mjs +23 -0
- package/esm2020/lib/components/po-popup/index.mjs +4 -0
- package/esm2020/lib/components/po-popup/po-popup-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-popup/po-popup-base.component.mjs +199 -0
- package/esm2020/lib/components/po-popup/po-popup.component.mjs +232 -0
- package/esm2020/lib/components/po-popup/po-popup.module.mjs +27 -0
- package/esm2020/lib/components/po-progress/enums/po-progress-status.enum.mjs +17 -0
- package/esm2020/lib/components/po-progress/index.mjs +4 -0
- package/esm2020/lib/components/po-progress/po-progress-bar/po-progress-bar.component.mjs +29 -0
- package/esm2020/lib/components/po-progress/po-progress-base.component.mjs +124 -0
- package/esm2020/lib/components/po-progress/po-progress.component.mjs +140 -0
- package/esm2020/lib/components/po-progress/po-progress.module.mjs +25 -0
- package/esm2020/lib/components/po-slide/directives/po-slide-content-template.directive.mjs +60 -0
- package/esm2020/lib/components/po-slide/index.mjs +5 -0
- package/esm2020/lib/components/po-slide/interfaces/po-slide-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-slide/po-slide-base.component.mjs +113 -0
- package/esm2020/lib/components/po-slide/po-slide-circles/po-slide-circles.component.mjs +52 -0
- package/esm2020/lib/components/po-slide/po-slide-control/po-slide-control.component.mjs +39 -0
- package/esm2020/lib/components/po-slide/po-slide-item/po-slide-item.component.mjs +152 -0
- package/esm2020/lib/components/po-slide/po-slide.component.mjs +330 -0
- package/esm2020/lib/components/po-slide/po-slide.module.mjs +68 -0
- package/esm2020/lib/components/po-stepper/enums/po-stepper-orientation.enum.mjs +18 -0
- package/esm2020/lib/components/po-stepper/enums/po-stepper-status.enum.mjs +23 -0
- package/esm2020/lib/components/po-stepper/index.mjs +7 -0
- package/esm2020/lib/components/po-stepper/po-step/po-step.component.mjs +84 -0
- package/esm2020/lib/components/po-stepper/po-stepper-base.component.mjs +159 -0
- package/esm2020/lib/components/po-stepper/po-stepper-circle/po-stepper-circle.component.mjs +80 -0
- package/esm2020/lib/components/po-stepper/po-stepper-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-stepper/po-stepper-label/po-stepper-label.component.mjs +28 -0
- package/esm2020/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.mjs +165 -0
- package/esm2020/lib/components/po-stepper/po-stepper.component.mjs +256 -0
- package/esm2020/lib/components/po-stepper/po-stepper.module.mjs +37 -0
- package/esm2020/lib/components/po-table/enums/po-table-column-sort-type.enum.mjs +14 -0
- package/esm2020/lib/components/po-table/enums/po-table-row-template-arrow-direction.enum.mjs +14 -0
- package/esm2020/lib/components/po-table/index.mjs +18 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-boolean.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-column-sort.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-column.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-filtered-items-params.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-response-api.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-base.component.mjs +937 -0
- package/esm2020/lib/components/po-table/po-table-cell-template/po-table-cell-template.directive.mjs +83 -0
- package/esm2020/lib/components/po-table/po-table-column-icon/po-table-column-icon.component.mjs +92 -0
- package/esm2020/lib/components/po-table/po-table-column-icon/po-table-column-icon.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-column-label/po-table-column-label.component.mjs +43 -0
- package/esm2020/lib/components/po-table/po-table-column-label/po-table-column-label.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-column-link/po-table-column-link.component.mjs +105 -0
- package/esm2020/lib/components/po-table/po-table-column-manager/po-table-column-manager.component.mjs +317 -0
- package/esm2020/lib/components/po-table/po-table-column-template/po-table-column-template.directive.mjs +91 -0
- package/esm2020/lib/components/po-table/po-table-detail/po-table-detail-column.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-detail/po-table-detail.component.mjs +274 -0
- package/esm2020/lib/components/po-table/po-table-detail/po-table-detail.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-icon/po-table-icon.component.mjs +67 -0
- package/esm2020/lib/components/po-table/po-table-row-template/po-table-row-template.directive.mjs +131 -0
- package/esm2020/lib/components/po-table/po-table-show-subtitle/po-table-show-subtitle.component.mjs +61 -0
- package/esm2020/lib/components/po-table/po-table-subtitle-circle/po-table-subtitle-circle.component.mjs +49 -0
- package/esm2020/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-column.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-footer.component.mjs +102 -0
- package/esm2020/lib/components/po-table/po-table.component.mjs +1437 -0
- package/esm2020/lib/components/po-table/po-table.module.mjs +122 -0
- package/esm2020/lib/components/po-table/services/po-table.service.mjs +37 -0
- package/esm2020/lib/components/po-tabs/index.mjs +5 -0
- package/esm2020/lib/components/po-tabs/po-tab/po-tab-base.component.mjs +93 -0
- package/esm2020/lib/components/po-tabs/po-tab/po-tab.component.mjs +29 -0
- package/esm2020/lib/components/po-tabs/po-tab/po-tab.interface.mjs +2 -0
- package/esm2020/lib/components/po-tabs/po-tab-button/po-tab-button.component.mjs +101 -0
- package/esm2020/lib/components/po-tabs/po-tab-dropdown/po-tab-dropdown.component.mjs +109 -0
- package/esm2020/lib/components/po-tabs/po-tabs-base.component.mjs +52 -0
- package/esm2020/lib/components/po-tabs/po-tabs.component.mjs +188 -0
- package/esm2020/lib/components/po-tabs/po-tabs.module.mjs +27 -0
- package/esm2020/lib/components/po-tag/enums/po-tag-icon.enum.mjs +19 -0
- package/esm2020/lib/components/po-tag/enums/po-tag-orientation.enum.mjs +15 -0
- package/esm2020/lib/components/po-tag/enums/po-tag-type.enum.mjs +19 -0
- package/esm2020/lib/components/po-tag/index.mjs +5 -0
- package/esm2020/lib/components/po-tag/interfaces/po-tag-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-tag/po-tag-base.component.mjs +192 -0
- package/esm2020/lib/components/po-tag/po-tag.component.mjs +114 -0
- package/esm2020/lib/components/po-tag/po-tag.module.mjs +27 -0
- package/esm2020/lib/components/po-toolbar/index.mjs +5 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-actions/po-toolbar-actions.component.mjs +55 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-base.component.mjs +60 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-notification/po-toolbar-notification.component.mjs +66 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.component.mjs +78 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.interface.mjs +2 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar.component.mjs +85 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar.module.mjs +41 -0
- package/esm2020/lib/components/po-tree-view/index.mjs +4 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view-base.component.mjs +209 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.component.mjs +106 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view-item-header/po-tree-view-item-header.component.mjs +91 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view.component.mjs +82 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view.module.mjs +55 -0
- package/esm2020/lib/components/po-tree-view/services/po-tree-view.service.mjs +27 -0
- package/esm2020/lib/components/po-widget/index.mjs +3 -0
- package/esm2020/lib/components/po-widget/po-widget-base.component.mjs +247 -0
- package/esm2020/lib/components/po-widget/po-widget.component.mjs +245 -0
- package/esm2020/lib/components/po-widget/po-widget.module.mjs +25 -0
- package/esm2020/lib/decorators/index.mjs +3 -0
- package/esm2020/lib/decorators/input-boolean/input-boolean.decorator.mjs +18 -0
- package/esm2020/lib/decorators/input-required/input-required.decorator.mjs +34 -0
- package/esm2020/lib/decorators/property-decorator.interface.mjs +2 -0
- package/esm2020/lib/decorators/utils-decorators.mjs +64 -0
- package/esm2020/lib/directives/directives.module.mjs +20 -0
- package/esm2020/lib/directives/index.mjs +3 -0
- package/esm2020/lib/directives/po-tooltip/index.mjs +3 -0
- package/esm2020/lib/directives/po-tooltip/po-tooltip-base.directive.mjs +115 -0
- package/esm2020/lib/directives/po-tooltip/po-tooltip-control-position.service.mjs +11 -0
- package/esm2020/lib/directives/po-tooltip/po-tooltip.directive.mjs +151 -0
- package/esm2020/lib/directives/po-tooltip/po-tooltip.module.mjs +24 -0
- package/esm2020/lib/enums/po-color-palette.enum.mjs +35 -0
- package/esm2020/lib/enums/po-key-code.enum.mjs +31 -0
- package/esm2020/lib/guards/guards.module.mjs +18 -0
- package/esm2020/lib/guards/index.mjs +2 -0
- package/esm2020/lib/index.mjs +10 -0
- package/esm2020/lib/interceptors/index.mjs +4 -0
- package/esm2020/lib/interceptors/interceptors.module.mjs +21 -0
- package/esm2020/lib/interceptors/po-http-interceptor/index.mjs +3 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-base.service.mjs +252 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail-literals.interface.mjs +39 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.component.mjs +172 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.interface.mjs +2 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-literals.mjs +23 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor.module.mjs +42 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor.service.mjs +26 -0
- package/esm2020/lib/interceptors/po-http-request/index.mjs +3 -0
- package/esm2020/lib/interceptors/po-http-request/po-http-request-control-service.mjs +26 -0
- package/esm2020/lib/interceptors/po-http-request/po-http-request-interceptor.service.mjs +165 -0
- package/esm2020/lib/interceptors/po-http-request/po-http-request.module.mjs +39 -0
- package/esm2020/lib/interfaces/index.mjs +2 -0
- package/esm2020/lib/interfaces/po-http/po-response-api.interface.mjs +2 -0
- package/esm2020/lib/pipes/index.mjs +3 -0
- package/esm2020/lib/pipes/pipes.module.mjs +20 -0
- package/esm2020/lib/pipes/po-time/index.mjs +3 -0
- package/esm2020/lib/pipes/po-time/po-time.module.mjs +25 -0
- package/esm2020/lib/pipes/po-time/po-time.pipe.mjs +59 -0
- package/esm2020/lib/po.module.mjs +62 -0
- package/esm2020/lib/services/index.mjs +11 -0
- package/esm2020/lib/services/po-active-overlay/index.mjs +3 -0
- package/esm2020/lib/services/po-active-overlay/po-active-overlay.module.mjs +21 -0
- package/esm2020/lib/services/po-active-overlay/po-active-overlay.service.mjs +16 -0
- package/esm2020/lib/services/po-color/po-color.service.mjs +62 -0
- package/esm2020/lib/services/po-color/po-colors.constant.mjs +43 -0
- package/esm2020/lib/services/po-color-palette/index.mjs +3 -0
- package/esm2020/lib/services/po-color-palette/po-color-palette.module.mjs +21 -0
- package/esm2020/lib/services/po-color-palette/po-color-palette.service.mjs +28 -0
- package/esm2020/lib/services/po-component-injector/index.mjs +3 -0
- package/esm2020/lib/services/po-component-injector/po-component-injector.module.mjs +19 -0
- package/esm2020/lib/services/po-component-injector/po-component-injector.service.mjs +31 -0
- package/esm2020/lib/services/po-control-position/index.mjs +3 -0
- package/esm2020/lib/services/po-control-position/po-control-position.constants.mjs +16 -0
- package/esm2020/lib/services/po-control-position/po-control-position.module.mjs +20 -0
- package/esm2020/lib/services/po-control-position/po-control-position.service.mjs +364 -0
- package/esm2020/lib/services/po-date/index.mjs +3 -0
- package/esm2020/lib/services/po-date/po-date.module.mjs +21 -0
- package/esm2020/lib/services/po-date/po-date.service.mjs +203 -0
- package/esm2020/lib/services/po-dialog/index.mjs +8 -0
- package/esm2020/lib/services/po-dialog/interfaces/po-dialog-alert-literals.interface.mjs +2 -0
- package/esm2020/lib/services/po-dialog/interfaces/po-dialog-confirm-literals.interface.mjs +2 -0
- package/esm2020/lib/services/po-dialog/interfaces/po-dialog.interface.mjs +2 -0
- package/esm2020/lib/services/po-dialog/po-dialog-base.service.mjs +18 -0
- package/esm2020/lib/services/po-dialog/po-dialog.component.mjs +132 -0
- package/esm2020/lib/services/po-dialog/po-dialog.enum.mjs +16 -0
- package/esm2020/lib/services/po-dialog/po-dialog.module.mjs +21 -0
- package/esm2020/lib/services/po-dialog/po-dialog.service.mjs +42 -0
- package/esm2020/lib/services/po-i18n/index.mjs +8 -0
- package/esm2020/lib/services/po-i18n/interfaces/po-i18n-config-default.interface.mjs +2 -0
- package/esm2020/lib/services/po-i18n/interfaces/po-i18n-config.interface.mjs +2 -0
- package/esm2020/lib/services/po-i18n/interfaces/po-i18n-literals.interface.mjs +2 -0
- package/esm2020/lib/services/po-i18n/po-i18n-base.pipe.mjs +40 -0
- package/esm2020/lib/services/po-i18n/po-i18n-base.service.mjs +439 -0
- package/esm2020/lib/services/po-i18n/po-i18n-config-injection-token.mjs +3 -0
- package/esm2020/lib/services/po-i18n/po-i18n.module.mjs +194 -0
- package/esm2020/lib/services/po-i18n/po-i18n.pipe.mjs +25 -0
- package/esm2020/lib/services/po-i18n/po-i18n.service.mjs +19 -0
- package/esm2020/lib/services/po-language/index.mjs +5 -0
- package/esm2020/lib/services/po-language/po-language.constant.mjs +73 -0
- package/esm2020/lib/services/po-language/po-language.interface.mjs +2 -0
- package/esm2020/lib/services/po-language/po-language.module.mjs +20 -0
- package/esm2020/lib/services/po-language/po-language.service.mjs +136 -0
- package/esm2020/lib/services/po-notification/index.mjs +6 -0
- package/esm2020/lib/services/po-notification/po-notification-base.service.mjs +111 -0
- package/esm2020/lib/services/po-notification/po-notification.interface.mjs +2 -0
- package/esm2020/lib/services/po-notification/po-notification.module.mjs +21 -0
- package/esm2020/lib/services/po-notification/po-notification.service.mjs +90 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster-base.component.mjs +15 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster-orientation.enum.mjs +13 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster-type.enum.mjs +17 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster.component.mjs +168 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster.interface.mjs +2 -0
- package/esm2020/lib/services/services.module.mjs +75 -0
- package/esm2020/lib/utils/util.mjs +511 -0
- package/esm2020/po-ui-ng-components.mjs +5 -0
- package/esm2020/public-api.mjs +2 -0
- package/fesm2015/po-ui-ng-components.mjs +47803 -0
- package/fesm2015/po-ui-ng-components.mjs.map +1 -0
- package/fesm2020/po-ui-ng-components.mjs +45113 -0
- package/fesm2020/po-ui-ng-components.mjs.map +1 -0
- package/lib/components/components.module.d.ts +42 -2
- package/lib/components/index.d.ts +37 -37
- package/lib/components/po-accordion/index.d.ts +3 -3
- package/lib/components/po-accordion/po-accordion-base.component.d.ts +28 -28
- package/lib/components/po-accordion/po-accordion-item/po-accordion-item.component.d.ts +52 -49
- package/lib/components/po-accordion/po-accordion-item-body/po-accordion-item-body.component.d.ts +6 -3
- package/lib/components/po-accordion/po-accordion-item-header/po-accordion-item-header.component.d.ts +10 -7
- package/lib/components/po-accordion/po-accordion.component.d.ts +40 -37
- package/lib/components/po-accordion/po-accordion.module.d.ts +42 -33
- package/lib/components/po-accordion/services/po-accordion.service.d.ts +16 -13
- package/lib/components/po-avatar/index.d.ts +2 -2
- package/lib/components/po-avatar/po-avatar-base.component.d.ts +56 -53
- package/lib/components/po-avatar/po-avatar.component.d.ts +31 -28
- package/lib/components/po-avatar/po-avatar.module.d.ts +13 -7
- package/lib/components/po-badge/po-badge-base.component.d.ts +58 -55
- package/lib/components/po-badge/po-badge.component.d.ts +11 -8
- package/lib/components/po-badge/po-badge.module.d.ts +13 -7
- package/lib/components/po-breadcrumb/index.d.ts +4 -4
- package/lib/components/po-breadcrumb/po-breadcrumb-base.component.d.ts +107 -104
- package/lib/components/po-breadcrumb/po-breadcrumb-dropdown/po-breadcrumb-dropdown.component.d.ts +14 -11
- package/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.component.d.ts +32 -29
- package/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.service.d.ts +30 -27
- package/lib/components/po-breadcrumb/po-breadcrumb-item/po-breadcrumb-item.component.d.ts +16 -13
- package/lib/components/po-breadcrumb/po-breadcrumb-item.interface.d.ts +31 -31
- package/lib/components/po-breadcrumb/po-breadcrumb.component.d.ts +56 -53
- package/lib/components/po-breadcrumb/po-breadcrumb.interface.d.ts +42 -42
- package/lib/components/po-breadcrumb/po-breadcrumb.module.d.ts +18 -8
- package/lib/components/po-button/index.d.ts +2 -2
- package/lib/components/po-button/po-button-base.component.d.ts +123 -120
- package/lib/components/po-button/po-button.component.d.ts +52 -49
- package/lib/components/po-button/po-button.module.d.ts +15 -7
- package/lib/components/po-button-group/index.d.ts +4 -4
- package/lib/components/po-button-group/po-button-group-base.component.d.ts +56 -53
- package/lib/components/po-button-group/po-button-group-item.interface.d.ts +64 -64
- package/lib/components/po-button-group/po-button-group-toggle.enum.d.ts +15 -15
- package/lib/components/po-button-group/po-button-group.component.d.ts +34 -31
- package/lib/components/po-button-group/po-button-group.module.d.ts +15 -7
- package/lib/components/po-calendar/index.d.ts +3 -3
- package/lib/components/po-calendar/po-calendar-base.component.d.ts +132 -129
- package/lib/components/po-calendar/po-calendar-header/po-calendar-header.component.d.ts +11 -8
- package/lib/components/po-calendar/po-calendar-mode.enum.d.ts +11 -11
- package/lib/components/po-calendar/po-calendar-wrapper/po-calendar-wrapper.component.d.ts +80 -77
- package/lib/components/po-calendar/po-calendar.component.d.ts +56 -53
- package/lib/components/po-calendar/po-calendar.module.d.ts +14 -6
- package/lib/components/po-calendar/services/po-calendar.lang.service.d.ts +19 -16
- package/lib/components/po-calendar/services/po-calendar.service.d.ts +8 -5
- package/lib/components/po-chart/directives/po-resize-observer.directive.d.ts +15 -12
- package/lib/components/po-chart/enums/po-chart-type.enum.d.ts +36 -49
- package/lib/components/po-chart/helpers/po-chart-default-values.constant.d.ts +8 -8
- package/lib/components/po-chart/index.d.ts +6 -7
- package/lib/components/po-chart/interfaces/po-chart-axis-options.interface.d.ts +37 -37
- package/lib/components/po-chart/interfaces/po-chart-bar-coordinates.interface.d.ts +23 -23
- package/lib/components/po-chart/interfaces/po-chart-container-size.interface.d.ts +23 -23
- package/lib/components/po-chart/interfaces/po-chart-label-coordinates.interface.d.ts +19 -19
- package/lib/components/po-chart/interfaces/po-chart-min-max-values.interface.d.ts +19 -19
- package/lib/components/po-chart/interfaces/po-chart-options.interface.d.ts +20 -20
- package/lib/components/po-chart/interfaces/po-chart-path-coordinates.interface.d.ts +23 -23
- package/lib/components/po-chart/interfaces/po-chart-points-coordinates.interface.d.ts +26 -26
- package/lib/components/po-chart/interfaces/po-chart-serie.interface.d.ts +77 -101
- package/lib/components/po-chart/po-chart-base.component.d.ts +154 -152
- package/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-label/po-chart-axis-label.component.d.ts +13 -10
- package/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-path/po-chart-axis-path.component.d.ts +10 -7
- package/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis.component.d.ts +63 -60
- package/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-base.component.d.ts +34 -31
- package/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-path/po-chart-bar-path.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-column/po-chart-column.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-label/po-chart-circular-label.component.d.ts +14 -11
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-circular-path.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-tooltip.directive.d.ts +23 -20
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular.component.d.ts +45 -42
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-donut/po-chart-donut.component.d.ts +19 -16
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-pie/po-chart-pie.component.d.ts +11 -8
- package/lib/components/po-chart/po-chart-container/po-chart-container.component.d.ts +46 -43
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-area/po-chart-area.component.d.ts +23 -20
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line-base.component.d.ts +49 -46
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-path/po-chart-path.component.d.ts +22 -19
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-series-point/po-chart-series-point.component.d.ts +33 -30
- package/lib/components/po-chart/po-chart-legend/po-chart-legend.component.d.ts +10 -7
- package/lib/components/po-chart/po-chart-types/po-chart-dynamic-type.component.d.ts +37 -36
- package/lib/components/po-chart/po-chart.component.d.ts +69 -67
- package/lib/components/po-chart/po-chart.module.d.ts +32 -7
- package/lib/components/po-chart/services/po-chart-maths.service.d.ts +66 -63
- package/lib/components/po-chart/services/po-chart-svg-container.service.d.ts +24 -21
- package/lib/components/po-container/index.d.ts +2 -2
- package/lib/components/po-container/po-container-base.component.d.ts +62 -59
- package/lib/components/po-container/po-container.component.d.ts +27 -24
- package/lib/components/po-container/po-container.module.d.ts +13 -7
- package/lib/components/po-disclaimer/index.d.ts +3 -3
- package/lib/components/po-disclaimer/po-disclaimer-base.component.d.ts +59 -56
- package/lib/components/po-disclaimer/po-disclaimer.component.d.ts +19 -16
- package/lib/components/po-disclaimer/po-disclaimer.interface.d.ts +17 -17
- package/lib/components/po-disclaimer/po-disclaimer.module.d.ts +12 -6
- package/lib/components/po-disclaimer-group/index.d.ts +4 -4
- package/lib/components/po-disclaimer-group/po-disclaimer-group-base.component.d.ts +117 -114
- package/lib/components/po-disclaimer-group/po-disclaimer-group-remove-action.interface.d.ts +18 -18
- package/lib/components/po-disclaimer-group/po-disclaimer-group.component.d.ts +31 -28
- package/lib/components/po-disclaimer-group/po-disclaimer-group.interface.d.ts +78 -78
- package/lib/components/po-disclaimer-group/po-disclaimer-group.module.d.ts +15 -7
- package/lib/components/po-disclaimer-group/po-disclaimer-remove/po-disclaimer-remove.component.d.ts +19 -16
- package/lib/components/po-divider/index.d.ts +2 -2
- package/lib/components/po-divider/po-divider-base.component.d.ts +13 -10
- package/lib/components/po-divider/po-divider.component.d.ts +26 -23
- package/lib/components/po-divider/po-divider.module.d.ts +13 -7
- package/lib/components/po-dropdown/index.d.ts +3 -3
- package/lib/components/po-dropdown/po-dropdown-action.interface.d.ts +11 -11
- package/lib/components/po-dropdown/po-dropdown-base.component.d.ts +57 -54
- package/lib/components/po-dropdown/po-dropdown.component.d.ts +44 -41
- package/lib/components/po-dropdown/po-dropdown.module.d.ts +13 -6
- package/lib/components/po-dynamic/index.d.ts +10 -10
- package/lib/components/po-dynamic/po-dynamic-field-type.enum.d.ts +23 -23
- package/lib/components/po-dynamic/po-dynamic-field.interface.d.ts +130 -130
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-base.component.d.ts +218 -215
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-field.interface.d.ts +249 -249
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-field-internal.interface.d.ts +14 -14
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields-base.component.d.ts +47 -44
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields.component.d.ts +39 -36
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.interface.d.ts +20 -20
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.service.d.ts +11 -8
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-operation/po-dynamic-form-operation.d.ts +10 -10
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-response.interface.d.ts +29 -29
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-changed.interface.d.ts +13 -13
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-validation.interface.d.ts +21 -21
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.interface.d.ts +20 -20
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.service.d.ts +15 -12
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form.component.d.ts +86 -83
- package/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-base.component.d.ts +137 -134
- package/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-field.interface.d.ts +104 -104
- package/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.component.d.ts +39 -36
- package/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.service.d.ts +13 -10
- package/lib/components/po-dynamic/po-dynamic.module.d.ts +16 -2
- package/lib/components/po-dynamic/po-dynamic.util.d.ts +4 -4
- package/lib/components/po-field/index.d.ts +52 -50
- package/lib/components/po-field/po-checkbox/po-checkbox-base.component.d.ts +65 -62
- package/lib/components/po-field/po-checkbox/po-checkbox.component.d.ts +54 -51
- package/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option-view.interface.d.ts +14 -14
- package/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option.interface.d.ts +24 -24
- package/lib/components/po-field/po-checkbox-group/po-checkbox-group-base.component.d.ts +187 -184
- package/lib/components/po-field/po-checkbox-group/po-checkbox-group.component.d.ts +53 -50
- package/lib/components/po-field/po-checkbox-group/po-checkbox-group.module.d.ts +15 -7
- package/lib/components/po-field/po-clean/index.d.ts +1 -0
- package/lib/components/po-field/po-clean/po-clean-base.component.d.ts +33 -30
- package/lib/components/po-field/po-clean/po-clean.component.d.ts +20 -17
- package/lib/components/po-field/po-clean/po-clean.module.d.ts +13 -7
- package/lib/components/po-field/po-combo/interfaces/po-combo-filter.interface.d.ts +27 -27
- package/lib/components/po-field/po-combo/interfaces/po-combo-group.interface.d.ts +11 -11
- package/lib/components/po-field/po-combo/interfaces/po-combo-literals.interface.d.ts +11 -11
- package/lib/components/po-field/po-combo/interfaces/po-combo-option-group.interface.d.ts +14 -14
- package/lib/components/po-field/po-combo/interfaces/po-combo-option.interface.d.ts +21 -21
- package/lib/components/po-field/po-combo/interfaces/po-response.interface.d.ts +11 -11
- package/lib/components/po-field/po-combo/po-combo-base.component.d.ts +412 -409
- package/lib/components/po-field/po-combo/po-combo-filter-mode.enum.d.ts +15 -15
- package/lib/components/po-field/po-combo/po-combo-filter.service.d.ts +31 -28
- package/lib/components/po-field/po-combo/po-combo-option-template/po-combo-option-template.directive.d.ts +73 -70
- package/lib/components/po-field/po-combo/po-combo.component.d.ts +142 -139
- package/lib/components/po-field/po-datepicker/enums/po-datepicker-iso-format.enum.d.ts +15 -15
- package/lib/components/po-field/po-datepicker/po-datepicker-base.component.d.ts +226 -223
- package/lib/components/po-field/po-datepicker/po-datepicker.component.d.ts +104 -101
- package/lib/components/po-field/po-datepicker/po-datepicker.module.d.ts +17 -7
- package/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range-literals.interface.d.ts +17 -17
- package/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range.interface.d.ts +16 -16
- package/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.d.ts +272 -269
- package/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.d.ts +128 -125
- package/lib/components/po-field/po-datepicker-range/po-datepicker-range.literals.d.ts +7 -7
- package/lib/components/po-field/po-decimal/po-decimal.component.d.ts +183 -180
- package/lib/components/po-field/po-email/po-email.component.d.ts +45 -42
- package/lib/components/po-field/po-field-container/index.d.ts +3 -0
- package/lib/components/po-field/po-field-container/po-field-container-bottom/po-field-container-bottom.component.d.ts +18 -15
- package/lib/components/po-field/po-field-container/po-field-container-literals.d.ts +14 -14
- package/lib/components/po-field/po-field-container/po-field-container.component.d.ts +21 -18
- package/lib/components/po-field/po-field-container/po-field-container.module.d.ts +14 -7
- package/lib/components/po-field/po-field-validate.model.d.ts +41 -38
- package/lib/components/po-field/po-field.model.d.ts +54 -51
- package/lib/components/po-field/po-field.module.d.ts +69 -12
- package/lib/components/po-field/po-input/po-input-base.component.d.ts +268 -265
- package/lib/components/po-field/po-input/po-input.component.d.ts +32 -29
- package/lib/components/po-field/po-input/po-mask.d.ts +49 -49
- package/lib/components/po-field/po-input-generic/po-input-generic.d.ts +38 -35
- package/lib/components/po-field/po-login/po-login.component.d.ts +37 -34
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-advanced-filter.interface.d.ts +8 -8
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-column.interface.d.ts +44 -44
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-filter.interface.d.ts +29 -29
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-filtered-items-params.interface.d.ts +40 -40
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-literals.interface.d.ts +40 -40
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-response-api.interface.d.ts +8 -8
- package/lib/components/po-field/po-lookup/po-lookup-base.component.d.ts +390 -387
- package/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal-base.component.d.ts +122 -119
- package/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal.component.d.ts +44 -41
- package/lib/components/po-field/po-lookup/po-lookup.component.d.ts +117 -113
- package/lib/components/po-field/po-lookup/services/po-lookup-filter.service.d.ts +28 -25
- package/lib/components/po-field/po-lookup/services/po-lookup-modal.service.d.ts +47 -44
- package/lib/components/po-field/po-multiselect/po-multiselect-base.component.d.ts +348 -345
- package/lib/components/po-field/po-multiselect/po-multiselect-dropdown/po-multiselect-dropdown.component.d.ts +62 -57
- package/lib/components/po-field/po-multiselect/po-multiselect-filter-mode.enum.d.ts +15 -15
- package/lib/components/po-field/po-multiselect/po-multiselect-filter.interface.d.ts +28 -28
- package/lib/components/po-field/po-multiselect/po-multiselect-filter.service.d.ts +21 -18
- package/lib/components/po-field/po-multiselect/po-multiselect-item/po-multiselect-item.component.d.ts +20 -17
- package/lib/components/po-field/po-multiselect/po-multiselect-literals.interface.d.ts +15 -15
- package/lib/components/po-field/po-multiselect/po-multiselect-option.interface.d.ts +13 -13
- package/lib/components/po-field/po-multiselect/po-multiselect-search/po-multiselect-search.component.d.ts +39 -34
- package/lib/components/po-field/po-multiselect/po-multiselect.component.d.ts +110 -107
- package/lib/components/po-field/po-number/po-number-base.component.d.ts +21 -18
- package/lib/components/po-field/po-number/po-number.component.d.ts +62 -59
- package/lib/components/po-field/po-password/po-password.component.d.ts +51 -48
- package/lib/components/po-field/po-radio-group/po-radio-group-base.component.d.ts +122 -119
- package/lib/components/po-field/po-radio-group/po-radio-group-option.interface.d.ts +15 -15
- package/lib/components/po-field/po-radio-group/po-radio-group.component.d.ts +68 -64
- package/lib/components/po-field/po-rich-text/interfaces/po-rich-text-toolbar-button-group-item.interface.d.ts +4 -4
- package/lib/components/po-field/po-rich-text/po-rich-text-base.component.d.ts +147 -144
- package/lib/components/po-field/po-rich-text/po-rich-text-body/po-rich-text-body.component.d.ts +55 -52
- package/lib/components/po-field/po-rich-text/po-rich-text-image-modal/po-rich-text-image-modal.component.d.ts +37 -34
- package/lib/components/po-field/po-rich-text/po-rich-text-link-modal/po-rich-text-link-modal.component.d.ts +48 -45
- package/lib/components/po-field/po-rich-text/po-rich-text-literals.d.ts +82 -82
- package/lib/components/po-field/po-rich-text/po-rich-text-toolbar/po-rich-text-toolbar.component.d.ts +48 -45
- package/lib/components/po-field/po-rich-text/po-rich-text.component.d.ts +63 -60
- package/lib/components/po-field/po-rich-text/po-rich-text.service.d.ts +8 -5
- package/lib/components/po-field/po-select/po-select-option-template/po-select-option-template.directive.d.ts +51 -48
- package/lib/components/po-field/po-select/po-select-option.interface.d.ts +13 -13
- package/lib/components/po-field/po-select/po-select.component.d.ts +161 -158
- package/lib/components/po-field/po-switch/po-switch-label-position.enum.d.ts +13 -13
- package/lib/components/po-field/po-switch/po-switch.component.d.ts +105 -102
- package/lib/components/po-field/po-textarea/po-textarea-base.component.d.ts +181 -178
- package/lib/components/po-field/po-textarea/po-textarea.component.d.ts +62 -59
- package/lib/components/po-field/po-upload/interfaces/po-upload-file-restriction.interface.d.ts +37 -37
- package/lib/components/po-field/po-upload/interfaces/po-upload-literals.interface.d.ts +45 -45
- package/lib/components/po-field/po-upload/po-upload-base.component.d.ts +336 -333
- package/lib/components/po-field/po-upload/po-upload-base.service.d.ts +35 -32
- package/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area/po-upload-drag-drop-area.component.d.ts +17 -14
- package/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area-overlay/po-upload-drag-drop-area-overlay.component.d.ts +17 -14
- package/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.component.d.ts +27 -24
- package/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.directive.d.ts +35 -32
- package/lib/components/po-field/po-upload/po-upload-file-restrictions/po-upload-file-restrictions.component.d.ts +24 -21
- package/lib/components/po-field/po-upload/po-upload-file.d.ts +15 -15
- package/lib/components/po-field/po-upload/po-upload-status.enum.d.ts +6 -6
- package/lib/components/po-field/po-upload/po-upload.component.d.ts +110 -106
- package/lib/components/po-field/po-upload/po-upload.service.d.ts +6 -3
- package/lib/components/po-field/po-url/po-url.component.d.ts +44 -41
- package/lib/components/po-field/validators.d.ts +7 -7
- package/lib/components/po-gauge/index.d.ts +3 -3
- package/lib/components/po-gauge/interfaces/po-gauge-coordinates.interface.d.ts +19 -19
- package/lib/components/po-gauge/interfaces/po-gauge-ranges.interface.d.ts +44 -44
- package/lib/components/po-gauge/interfaces/po-gauge-svg-container.interface.d.ts +15 -15
- package/lib/components/po-gauge/po-gauge-base.component.d.ts +101 -98
- package/lib/components/po-gauge/po-gauge-default-values.constant.d.ts +5 -5
- package/lib/components/po-gauge/po-gauge-description/po-gauge-description.component.d.ts +14 -11
- package/lib/components/po-gauge/po-gauge-legend/po-gauge-legend.component.d.ts +12 -9
- package/lib/components/po-gauge/po-gauge-svg/po-gauge-path/po-gauge-path.component.d.ts +12 -9
- package/lib/components/po-gauge/po-gauge-svg/po-gauge-pointer/po-gauge-pointer.component.d.ts +18 -15
- package/lib/components/po-gauge/po-gauge-svg/po-gauge-svg.component.d.ts +35 -32
- package/lib/components/po-gauge/po-gauge-title/po-gauge-title.component.d.ts +6 -3
- package/lib/components/po-gauge/po-gauge.component.d.ts +40 -37
- package/lib/components/po-gauge/po-gauge.module.d.ts +19 -6
- package/lib/components/po-grid/index.d.ts +3 -3
- package/lib/components/po-grid/po-grid-cell/po-grid-cell.component.d.ts +30 -27
- package/lib/components/po-grid/po-grid-cell-action/po-grid-cell-action.component.d.ts +9 -6
- package/lib/components/po-grid/po-grid-head/po-grid-head.component.d.ts +13 -10
- package/lib/components/po-grid/po-grid-row-actions.interface.d.ts +86 -86
- package/lib/components/po-grid/po-grid.component.d.ts +83 -80
- package/lib/components/po-grid/po-grid.module.d.ts +18 -7
- package/lib/components/po-icon/index.d.ts +2 -2
- package/lib/components/po-icon/po-icon.component.d.ts +42 -39
- package/lib/components/po-icon/po-icon.module.d.ts +13 -7
- package/lib/components/po-info/index.d.ts +3 -3
- package/lib/components/po-info/po-info-base.component.d.ts +49 -46
- package/lib/components/po-info/po-info-orietation.enum.d.ts +13 -13
- package/lib/components/po-info/po-info.component.d.ts +27 -24
- package/lib/components/po-info/po-info.module.d.ts +14 -7
- package/lib/components/po-list-view/index.d.ts +6 -6
- package/lib/components/po-list-view/interfaces/po-list-view-action.interface.d.ts +15 -15
- package/lib/components/po-list-view/interfaces/po-list-view-literals.interface.d.ts +19 -19
- package/lib/components/po-list-view/po-list-view-base.component.d.ts +168 -165
- package/lib/components/po-list-view/po-list-view-content-template/po-list-view-content-template.directive.d.ts +100 -97
- package/lib/components/po-list-view/po-list-view-detail-template/po-list-view-detail-template.directive.d.ts +63 -60
- package/lib/components/po-list-view/po-list-view.component.d.ts +56 -53
- package/lib/components/po-list-view/po-list-view.module.d.ts +44 -33
- package/lib/components/po-loading/index.d.ts +4 -4
- package/lib/components/po-loading/po-loading-base.component.d.ts +17 -14
- package/lib/components/po-loading/po-loading-icon/po-loading-icon.component.d.ts +25 -22
- package/lib/components/po-loading/po-loading-overlay/interfaces/po-loading-overlay-literals.interface.d.ts +13 -13
- package/lib/components/po-loading/po-loading-overlay/po-loading-overlay-base.component.d.ts +62 -59
- package/lib/components/po-loading/po-loading-overlay/po-loading-overlay.component.d.ts +31 -28
- package/lib/components/po-loading/po-loading.component.d.ts +11 -8
- package/lib/components/po-loading/po-loading.module.d.ts +17 -8
- package/lib/components/po-menu/index.d.ts +8 -8
- package/lib/components/po-menu/po-menu-base.component.d.ts +185 -182
- package/lib/components/po-menu/po-menu-filter/po-menu-filter-literals.interface.d.ts +14 -14
- package/lib/components/po-menu/po-menu-filter/po-menu-filter.component.d.ts +28 -25
- package/lib/components/po-menu/po-menu-filter/po-menu-filter.interface.d.ts +19 -19
- package/lib/components/po-menu/po-menu-header-template/po-menu-header-template.directive.d.ts +43 -40
- package/lib/components/po-menu/po-menu-item/po-menu-item-badge.interface.d.ts +49 -49
- package/lib/components/po-menu/po-menu-item/po-menu-item-filtered.interface.d.ts +13 -13
- package/lib/components/po-menu/po-menu-item/po-menu-item.component.d.ts +57 -54
- package/lib/components/po-menu/po-menu-item.interface.d.ts +78 -78
- package/lib/components/po-menu/po-menu.component.d.ts +181 -178
- package/lib/components/po-menu/po-menu.module.d.ts +21 -7
- package/lib/components/po-menu/services/po-menu-global.service.d.ts +17 -14
- package/lib/components/po-menu/services/po-menu-items.service.d.ts +19 -16
- package/lib/components/po-menu/services/po-menu.service.d.ts +23 -20
- package/lib/components/po-menu-panel/index.d.ts +3 -3
- package/lib/components/po-menu-panel/po-menu-panel-base.component.d.ts +36 -33
- package/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item-internal.interface.d.ts +16 -16
- package/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.component.d.ts +26 -23
- package/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.interface.d.ts +18 -18
- package/lib/components/po-menu-panel/po-menu-panel.component.d.ts +94 -91
- package/lib/components/po-menu-panel/po-menu-panel.module.d.ts +17 -7
- package/lib/components/po-menu-panel/services/po-menu-panel-items.service.d.ts +19 -16
- package/lib/components/po-modal/index.d.ts +4 -4
- package/lib/components/po-modal/po-modal-action.interface.d.ts +23 -23
- package/lib/components/po-modal/po-modal-base.component.d.ts +82 -79
- package/lib/components/po-modal/po-modal-footer/po-modal-footer.component.d.ts +33 -30
- package/lib/components/po-modal/po-modal.component.d.ts +49 -46
- package/lib/components/po-modal/po-modal.literals.d.ts +14 -14
- package/lib/components/po-modal/po-modal.module.d.ts +14 -6
- package/lib/components/po-navbar/index.d.ts +4 -4
- package/lib/components/po-navbar/interfaces/po-navbar-icon-action.interface.d.ts +55 -55
- package/lib/components/po-navbar/interfaces/po-navbar-item.interface.d.ts +21 -21
- package/lib/components/po-navbar/interfaces/po-navbar-literals.interface.d.ts +11 -11
- package/lib/components/po-navbar/po-navbar-actions/po-navbar-action/po-navbar-action.component.d.ts +16 -13
- package/lib/components/po-navbar/po-navbar-actions/po-navbar-action-popup/po-navbar-action-popup.component.d.ts +8 -5
- package/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.component.d.ts +9 -6
- package/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.module.d.ts +13 -2
- package/lib/components/po-navbar/po-navbar-base.component.d.ts +102 -129
- package/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation-icon/po-navbar-item-navigation-icon.component.d.ts +9 -6
- package/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.component.d.ts +9 -6
- package/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.module.d.ts +10 -2
- package/lib/components/po-navbar/po-navbar-items/po-navbar-item/po-navbar-item.component.d.ts +14 -11
- package/lib/components/po-navbar/po-navbar-items/po-navbar-items.component.d.ts +20 -17
- package/lib/components/po-navbar/po-navbar-items/po-navbar-items.module.d.ts +10 -2
- package/lib/components/po-navbar/po-navbar-logo/po-navbar-logo.component.d.ts +6 -3
- package/lib/components/po-navbar/po-navbar.component.d.ts +60 -57
- package/lib/components/po-navbar/po-navbar.module.d.ts +45 -33
- package/lib/components/po-page/index.d.ts +14 -14
- package/lib/components/po-page/po-page-action.interface.d.ts +16 -16
- package/lib/components/po-page/po-page-base.component.d.ts +22 -22
- package/lib/components/po-page/po-page-content/po-page-content-base.component.d.ts +10 -10
- package/lib/components/po-page/po-page-content/po-page-content.component.d.ts +23 -20
- package/lib/components/po-page/po-page-default/po-page-default-base.component.d.ts +78 -75
- package/lib/components/po-page/po-page-default/po-page-default-literals.interface.d.ts +11 -11
- package/lib/components/po-page/po-page-default/po-page-default.component.d.ts +48 -45
- package/lib/components/po-page/po-page-default/po-page-default.interface.d.ts +13 -13
- package/lib/components/po-page/po-page-detail/po-page-detail-base.component.d.ts +103 -100
- package/lib/components/po-page/po-page-detail/po-page-detail-literals.interface.d.ts +15 -15
- package/lib/components/po-page/po-page-detail/po-page-detail.component.d.ts +31 -28
- package/lib/components/po-page/po-page-edit/po-page-edit-base.component.d.ts +109 -106
- package/lib/components/po-page/po-page-edit/po-page-edit-literals.interface.d.ts +15 -15
- package/lib/components/po-page/po-page-edit/po-page-edit.component.d.ts +32 -29
- package/lib/components/po-page/po-page-filter.interface.d.ts +26 -26
- package/lib/components/po-page/po-page-header/po-page-header-base.component.d.ts +20 -17
- package/lib/components/po-page/po-page-header/po-page-header.component.d.ts +10 -7
- package/lib/components/po-page/po-page-list/po-page-list-base.component.d.ts +111 -108
- package/lib/components/po-page/po-page-list/po-page-list-literals.interface.d.ts +11 -11
- package/lib/components/po-page/po-page-list/po-page-list.component.d.ts +74 -71
- package/lib/components/po-page/po-page-slide/po-page-slide-base.component.d.ts +114 -111
- package/lib/components/po-page/po-page-slide/po-page-slide.component.d.ts +45 -42
- package/lib/components/po-page/po-page.component.d.ts +11 -8
- package/lib/components/po-page/po-page.interface.d.ts +14 -14
- package/lib/components/po-page/po-page.module.d.ts +29 -7
- package/lib/components/po-popover/index.d.ts +2 -2
- package/lib/components/po-popover/po-popover-base.component.d.ts +134 -131
- package/lib/components/po-popover/po-popover.component.d.ts +50 -47
- package/lib/components/po-popover/po-popover.module.d.ts +12 -6
- package/lib/components/po-popup/index.d.ts +3 -3
- package/lib/components/po-popup/po-popup-action.interface.d.ts +91 -91
- package/lib/components/po-popup/po-popup-base.component.d.ts +154 -151
- package/lib/components/po-popup/po-popup.component.d.ts +72 -69
- package/lib/components/po-popup/po-popup.module.d.ts +14 -7
- package/lib/components/po-progress/enums/po-progress-status.enum.d.ts +15 -15
- package/lib/components/po-progress/index.d.ts +3 -3
- package/lib/components/po-progress/po-progress-bar/po-progress-bar.component.d.ts +8 -5
- package/lib/components/po-progress/po-progress-base.component.d.ts +106 -103
- package/lib/components/po-progress/po-progress.component.d.ts +31 -28
- package/lib/components/po-progress/po-progress.module.d.ts +14 -7
- package/lib/components/po-slide/directives/po-slide-content-template.directive.d.ts +51 -48
- package/lib/components/po-slide/index.d.ts +4 -4
- package/lib/components/po-slide/interfaces/po-slide-item.interface.d.ts +17 -17
- package/lib/components/po-slide/po-slide-base.component.d.ts +78 -75
- package/lib/components/po-slide/po-slide-circles/po-slide-circles.component.d.ts +19 -16
- package/lib/components/po-slide/po-slide-control/po-slide-control.component.d.ts +17 -14
- package/lib/components/po-slide/po-slide-item/po-slide-item.component.d.ts +31 -28
- package/lib/components/po-slide/po-slide.component.d.ts +113 -110
- package/lib/components/po-slide/po-slide.module.d.ts +45 -33
- package/lib/components/po-stepper/enums/po-stepper-orientation.enum.d.ts +16 -16
- package/lib/components/po-stepper/enums/po-stepper-status.enum.d.ts +21 -21
- package/lib/components/po-stepper/index.d.ts +6 -6
- package/lib/components/po-stepper/po-step/po-step.component.d.ts +79 -76
- package/lib/components/po-stepper/po-stepper-base.component.d.ts +135 -132
- package/lib/components/po-stepper/po-stepper-circle/po-stepper-circle.component.d.ts +23 -20
- package/lib/components/po-stepper/po-stepper-item.interface.d.ts +14 -14
- package/lib/components/po-stepper/po-stepper-label/po-stepper-label.component.d.ts +13 -10
- package/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.d.ts +40 -37
- package/lib/components/po-stepper/po-stepper.component.d.ts +83 -80
- package/lib/components/po-stepper/po-stepper.module.d.ts +16 -6
- package/lib/components/po-table/enums/po-table-column-sort-type.enum.d.ts +12 -12
- package/lib/components/po-table/enums/po-table-row-template-arrow-direction.enum.d.ts +12 -12
- package/lib/components/po-table/index.d.ts +17 -17
- package/lib/components/po-table/interfaces/po-table-action.interface.d.ts +8 -8
- package/lib/components/po-table/interfaces/po-table-boolean.interface.d.ts +13 -13
- package/lib/components/po-table/interfaces/po-table-column-sort.interface.d.ts +15 -15
- package/lib/components/po-table/interfaces/po-table-column.interface.d.ts +247 -242
- package/lib/components/po-table/interfaces/po-table-filter.interface.d.ts +16 -16
- package/lib/components/po-table/interfaces/po-table-filtered-items-params.interface.d.ts +33 -33
- package/lib/components/po-table/interfaces/po-table-literals.interface.d.ts +25 -25
- package/lib/components/po-table/interfaces/po-table-response-api.interface.d.ts +7 -7
- package/lib/components/po-table/po-table-base.component.d.ts +514 -501
- package/lib/components/po-table/po-table-cell-template/po-table-cell-template.directive.d.ts +74 -71
- package/lib/components/po-table/po-table-column-icon/po-table-column-icon.component.d.ts +29 -26
- package/lib/components/po-table/po-table-column-icon/po-table-column-icon.interface.d.ts +80 -80
- package/lib/components/po-table/po-table-column-label/po-table-column-label.component.d.ts +20 -17
- package/lib/components/po-table/po-table-column-label/po-table-column-label.interface.d.ts +42 -42
- package/lib/components/po-table/po-table-column-link/po-table-column-link.component.d.ts +18 -15
- package/lib/components/po-table/po-table-column-manager/po-table-column-manager.component.d.ts +77 -74
- package/lib/components/po-table/po-table-column-template/po-table-column-template.directive.d.ts +89 -86
- package/lib/components/po-table/po-table-detail/po-table-detail-column.interface.d.ts +61 -61
- package/lib/components/po-table/po-table-detail/po-table-detail.component.d.ts +47 -44
- package/lib/components/po-table/po-table-detail/po-table-detail.interface.d.ts +36 -36
- package/lib/components/po-table/po-table-icon/po-table-icon.component.d.ts +30 -27
- package/lib/components/po-table/po-table-row-template/po-table-row-template.directive.d.ts +123 -120
- package/lib/components/po-table/po-table-show-subtitle/po-table-show-subtitle.component.d.ts +17 -14
- package/lib/components/po-table/po-table-subtitle-circle/po-table-subtitle-circle.component.d.ts +22 -19
- package/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-column.interface.d.ts +39 -39
- package/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-footer.component.d.ts +34 -31
- package/lib/components/po-table/po-table.component.d.ts +233 -229
- package/lib/components/po-table/po-table.module.d.ts +36 -6
- package/lib/components/po-table/services/po-table.service.d.ts +17 -14
- package/lib/components/po-tabs/index.d.ts +4 -4
- package/lib/components/po-tabs/po-tab/po-tab-base.component.d.ts +60 -57
- package/lib/components/po-tabs/po-tab/po-tab.component.d.ts +14 -11
- package/lib/components/po-tabs/po-tab/po-tab.interface.d.ts +45 -45
- package/lib/components/po-tabs/po-tab-button/po-tab-button.component.d.ts +32 -29
- package/lib/components/po-tabs/po-tab-dropdown/po-tab-dropdown.component.d.ts +26 -23
- package/lib/components/po-tabs/po-tabs-base.component.d.ts +37 -34
- package/lib/components/po-tabs/po-tabs.component.d.ts +53 -50
- package/lib/components/po-tabs/po-tabs.module.d.ts +16 -6
- package/lib/components/po-tag/enums/po-tag-icon.enum.d.ts +17 -17
- package/lib/components/po-tag/enums/po-tag-orientation.enum.d.ts +13 -13
- package/lib/components/po-tag/enums/po-tag-type.enum.d.ts +17 -17
- package/lib/components/po-tag/index.d.ts +4 -4
- package/lib/components/po-tag/interfaces/po-tag-item.interface.d.ts +13 -13
- package/lib/components/po-tag/po-tag-base.component.d.ts +147 -144
- package/lib/components/po-tag/po-tag.component.d.ts +35 -32
- package/lib/components/po-tag/po-tag.module.d.ts +14 -7
- package/lib/components/po-toolbar/index.d.ts +4 -4
- package/lib/components/po-toolbar/po-toolbar-action.interface.d.ts +8 -8
- package/lib/components/po-toolbar/po-toolbar-actions/po-toolbar-actions.component.d.ts +22 -19
- package/lib/components/po-toolbar/po-toolbar-base.component.d.ts +78 -75
- package/lib/components/po-toolbar/po-toolbar-notification/po-toolbar-notification.component.d.ts +25 -22
- package/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.component.d.ts +21 -18
- package/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.interface.d.ts +15 -15
- package/lib/components/po-toolbar/po-toolbar.component.d.ts +32 -29
- package/lib/components/po-toolbar/po-toolbar.module.d.ts +20 -8
- package/lib/components/po-tree-view/index.d.ts +3 -3
- package/lib/components/po-tree-view/po-tree-view-base.component.d.ts +89 -86
- package/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.component.d.ts +15 -12
- package/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.interface.d.ts +24 -24
- package/lib/components/po-tree-view/po-tree-view-item-header/po-tree-view-item-header.component.d.ts +13 -10
- package/lib/components/po-tree-view/po-tree-view.component.d.ts +38 -35
- package/lib/components/po-tree-view/po-tree-view.module.d.ts +44 -33
- package/lib/components/po-tree-view/services/po-tree-view.service.d.ts +12 -9
- package/lib/components/po-widget/index.d.ts +2 -2
- package/lib/components/po-widget/po-widget-base.component.d.ts +165 -162
- package/lib/components/po-widget/po-widget.component.d.ts +44 -41
- package/lib/components/po-widget/po-widget.module.d.ts +14 -7
- package/lib/decorators/index.d.ts +2 -2
- package/lib/decorators/input-boolean/input-boolean.decorator.d.ts +10 -10
- package/lib/decorators/input-required/input-required.decorator.d.ts +22 -22
- package/lib/decorators/property-decorator.interface.d.ts +13 -13
- package/lib/decorators/utils-decorators.d.ts +27 -27
- package/lib/directives/directives.module.d.ts +7 -2
- package/lib/directives/index.d.ts +2 -2
- package/lib/directives/po-tooltip/index.d.ts +2 -2
- package/lib/directives/po-tooltip/po-tooltip-base.directive.d.ts +70 -67
- package/lib/directives/po-tooltip/po-tooltip-control-position.service.d.ts +6 -3
- package/lib/directives/po-tooltip/po-tooltip.directive.d.ts +55 -52
- package/lib/directives/po-tooltip/po-tooltip.module.d.ts +13 -7
- package/lib/enums/po-color-palette.enum.d.ts +33 -33
- package/lib/enums/po-key-code.enum.d.ts +29 -29
- package/lib/guards/guards.module.d.ts +6 -2
- package/lib/guards/index.d.ts +1 -1
- package/lib/index.d.ts +9 -9
- package/lib/interceptors/index.d.ts +3 -3
- package/lib/interceptors/interceptors.module.d.ts +8 -2
- package/lib/interceptors/po-http-interceptor/index.d.ts +2 -2
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-base.service.d.ts +154 -154
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail-literals.interface.d.ts +6 -6
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.component.d.ts +42 -39
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.interface.d.ts +23 -23
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-literals.d.ts +6 -6
- package/lib/interceptors/po-http-interceptor/po-http-interceptor.module.d.ts +12 -2
- package/lib/interceptors/po-http-interceptor/po-http-interceptor.service.d.ts +19 -16
- package/lib/interceptors/po-http-request/index.d.ts +2 -2
- package/lib/interceptors/po-http-request/po-http-request-control-service.d.ts +15 -12
- package/lib/interceptors/po-http-request/po-http-request-interceptor.service.d.ts +105 -102
- package/lib/interceptors/po-http-request/po-http-request.module.d.ts +7 -2
- package/lib/interfaces/index.d.ts +1 -1
- package/lib/interfaces/po-http/po-response-api.interface.d.ts +13 -13
- package/lib/pipes/index.d.ts +2 -2
- package/lib/pipes/pipes.module.d.ts +7 -2
- package/lib/pipes/po-time/index.d.ts +2 -2
- package/lib/pipes/po-time/po-time.module.d.ts +12 -7
- package/lib/pipes/po-time/po-time.pipe.d.ts +17 -14
- package/lib/po.module.d.ts +12 -2
- package/lib/services/index.d.ts +10 -10
- package/lib/services/po-active-overlay/index.d.ts +2 -2
- package/lib/services/po-active-overlay/po-active-overlay.module.d.ts +11 -7
- package/lib/services/po-active-overlay/po-active-overlay.service.d.ts +6 -3
- package/lib/services/po-color/po-color.service.d.ts +19 -16
- package/lib/services/po-color/po-colors.constant.d.ts +2 -2
- package/lib/services/po-color-palette/index.d.ts +2 -2
- package/lib/services/po-color-palette/po-color-palette.module.d.ts +11 -7
- package/lib/services/po-color-palette/po-color-palette.service.d.ts +10 -7
- package/lib/services/po-component-injector/index.d.ts +2 -2
- package/lib/services/po-component-injector/po-component-injector.module.d.ts +6 -2
- package/lib/services/po-component-injector/po-component-injector.service.d.ts +12 -9
- package/lib/services/po-control-position/index.d.ts +2 -2
- package/lib/services/po-control-position/po-control-position.constants.d.ts +1 -1
- package/lib/services/po-control-position/po-control-position.module.d.ts +11 -7
- package/lib/services/po-control-position/po-control-position.service.d.ts +59 -56
- package/lib/services/po-date/index.d.ts +2 -2
- package/lib/services/po-date/po-date.module.d.ts +11 -7
- package/lib/services/po-date/po-date.service.d.ts +97 -94
- package/lib/services/po-dialog/index.d.ts +7 -7
- package/lib/services/po-dialog/interfaces/po-dialog-alert-literals.interface.d.ts +11 -11
- package/lib/services/po-dialog/interfaces/po-dialog-confirm-literals.interface.d.ts +13 -13
- package/lib/services/po-dialog/interfaces/po-dialog.interface.d.ts +82 -82
- package/lib/services/po-dialog/po-dialog-base.service.d.ts +15 -15
- package/lib/services/po-dialog/po-dialog.component.d.ts +51 -48
- package/lib/services/po-dialog/po-dialog.enum.d.ts +12 -12
- package/lib/services/po-dialog/po-dialog.module.d.ts +8 -2
- package/lib/services/po-dialog/po-dialog.service.d.ts +32 -29
- package/lib/services/po-i18n/index.d.ts +7 -7
- package/lib/services/po-i18n/interfaces/po-i18n-config-default.interface.d.ts +35 -35
- package/lib/services/po-i18n/interfaces/po-i18n-config.interface.d.ts +78 -78
- package/lib/services/po-i18n/interfaces/po-i18n-literals.interface.d.ts +15 -15
- package/lib/services/po-i18n/po-i18n-base.pipe.d.ts +29 -29
- package/lib/services/po-i18n/po-i18n-base.service.d.ts +212 -212
- package/lib/services/po-i18n/po-i18n-config-injection-token.d.ts +3 -3
- package/lib/services/po-i18n/po-i18n.module.d.ts +156 -150
- package/lib/services/po-i18n/po-i18n.pipe.d.ts +18 -15
- package/lib/services/po-i18n/po-i18n.service.d.ts +13 -10
- package/lib/services/po-language/index.d.ts +4 -4
- package/lib/services/po-language/po-language.constant.d.ts +58 -58
- package/lib/services/po-language/po-language.interface.d.ts +43 -43
- package/lib/services/po-language/po-language.module.d.ts +11 -7
- package/lib/services/po-language/po-language.service.d.ts +98 -95
- package/lib/services/po-notification/index.d.ts +5 -5
- package/lib/services/po-notification/po-notification-base.service.d.ts +84 -84
- package/lib/services/po-notification/po-notification.interface.d.ts +33 -33
- package/lib/services/po-notification/po-notification.module.d.ts +8 -2
- package/lib/services/po-notification/po-notification.service.d.ts +34 -31
- package/lib/services/po-notification/po-toaster/po-toaster-base.component.d.ts +41 -41
- package/lib/services/po-notification/po-toaster/po-toaster-orientation.enum.d.ts +11 -11
- package/lib/services/po-notification/po-toaster/po-toaster-type.enum.d.ts +15 -15
- package/lib/services/po-notification/po-toaster/po-toaster.component.d.ts +36 -33
- package/lib/services/po-notification/po-toaster/po-toaster.interface.d.ts +15 -15
- package/lib/services/services.module.d.ts +15 -2
- package/lib/utils/util.d.ts +217 -217
- package/package.json +37 -22
- package/po-ui-ng-components-6.2.0.tgz +0 -0
- package/po-ui-ng-components.d.ts +5 -205
- package/public-api.d.ts +1 -1
- package/schematics/README.md +74 -74
- package/schematics/collection.json +40 -40
- package/schematics/migrations.json +30 -25
- package/schematics/ng-add/index.d.ts +8 -8
- package/schematics/ng-add/index.js +25 -25
- package/schematics/ng-add/index.js.map +1 -1
- package/schematics/ng-add/index.spec.d.ts +1 -1
- package/schematics/ng-add/index.spec.js +90 -91
- package/schematics/ng-add/index.spec.js.map +1 -1
- package/schematics/ng-add/schema.json +16 -16
- package/schematics/ng-add/setup-project.d.ts +8 -8
- package/schematics/ng-add/setup-project.js +55 -55
- package/schematics/ng-add/setup-project.js.map +1 -1
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__-routing.module.ts.template +14 -14
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__.component.html.template +3 -3
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__.component.spec.ts.template +32 -32
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__.component.ts.template +18 -18
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__.module.ts.template +19 -19
- package/schematics/ng-generate/po-page-default/index.d.ts +4 -4
- package/schematics/ng-generate/po-page-default/index.js +12 -12
- package/schematics/ng-generate/po-page-default/index.js.map +1 -1
- package/schematics/ng-generate/po-page-default/index.spec.d.ts +1 -1
- package/schematics/ng-generate/po-page-default/index.spec.js +120 -120
- package/schematics/ng-generate/po-page-default/index.spec.js.map +1 -1
- package/schematics/ng-generate/po-page-default/schema.d.ts +3 -3
- package/schematics/ng-generate/po-page-default/schema.js +2 -2
- package/schematics/ng-generate/po-page-default/schema.json +67 -67
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__-routing.module.ts.template +14 -14
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__.component.html.template +8 -8
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__.component.spec.ts.template +32 -32
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__.component.ts.template +26 -26
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__.module.ts.template +19 -19
- package/schematics/ng-generate/po-page-detail/index.d.ts +4 -4
- package/schematics/ng-generate/po-page-detail/index.js +12 -12
- package/schematics/ng-generate/po-page-detail/index.js.map +1 -1
- package/schematics/ng-generate/po-page-detail/index.spec.d.ts +1 -1
- package/schematics/ng-generate/po-page-detail/index.spec.js +120 -120
- package/schematics/ng-generate/po-page-detail/index.spec.js.map +1 -1
- package/schematics/ng-generate/po-page-detail/schema.d.ts +3 -3
- package/schematics/ng-generate/po-page-detail/schema.js +2 -2
- package/schematics/ng-generate/po-page-detail/schema.json +67 -67
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__-routing.module.ts.template +14 -14
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__.component.html.template +8 -8
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__.component.spec.ts.template +32 -32
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__.component.ts.template +26 -26
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__.module.ts.template +19 -19
- package/schematics/ng-generate/po-page-edit/index.d.ts +4 -4
- package/schematics/ng-generate/po-page-edit/index.js +12 -12
- package/schematics/ng-generate/po-page-edit/index.js.map +1 -1
- package/schematics/ng-generate/po-page-edit/index.spec.d.ts +1 -1
- package/schematics/ng-generate/po-page-edit/index.spec.js +120 -120
- package/schematics/ng-generate/po-page-edit/index.spec.js.map +1 -1
- package/schematics/ng-generate/po-page-edit/schema.d.ts +3 -3
- package/schematics/ng-generate/po-page-edit/schema.js +2 -2
- package/schematics/ng-generate/po-page-edit/schema.json +67 -67
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__-routing.module.ts.template +14 -14
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__.component.html.template +28 -28
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__.component.spec.ts.template +35 -35
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__.component.ts.template +33 -33
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__.module.ts.template +19 -19
- package/schematics/ng-generate/po-page-list/index.d.ts +7 -7
- package/schematics/ng-generate/po-page-list/index.js +15 -15
- package/schematics/ng-generate/po-page-list/index.js.map +1 -1
- package/schematics/ng-generate/po-page-list/index.spec.d.ts +1 -1
- package/schematics/ng-generate/po-page-list/index.spec.js +120 -120
- package/schematics/ng-generate/po-page-list/index.spec.js.map +1 -1
- package/schematics/ng-generate/po-page-list/schema.d.ts +5 -5
- package/schematics/ng-generate/po-page-list/schema.js +2 -2
- package/schematics/ng-generate/po-page-list/schema.json +78 -78
- package/schematics/ng-generate/sidemenu/files/app.component.html.template +9 -9
- package/schematics/ng-generate/sidemenu/files/app.component.spec.ts.template +30 -30
- package/schematics/ng-generate/sidemenu/files/app.component.ts.template +20 -20
- package/schematics/ng-generate/sidemenu/index.d.ts +8 -8
- package/schematics/ng-generate/sidemenu/index.js +51 -51
- package/schematics/ng-generate/sidemenu/index.js.map +1 -1
- package/schematics/ng-generate/sidemenu/index.spec.d.ts +1 -1
- package/schematics/ng-generate/sidemenu/index.spec.js +62 -62
- package/schematics/ng-generate/sidemenu/index.spec.js.map +1 -1
- package/schematics/ng-generate/sidemenu/schema.d.ts +13 -13
- package/schematics/ng-generate/sidemenu/schema.js +2 -2
- package/schematics/ng-generate/sidemenu/schema.json +32 -32
- package/schematics/ng-update/v2/changes.d.ts +19 -19
- package/schematics/ng-update/v2/changes.js +58 -58
- package/schematics/ng-update/v2/index.d.ts +1 -1
- package/schematics/ng-update/v2/index.js +145 -145
- package/schematics/ng-update/v2/index.js.map +1 -1
- package/schematics/ng-update/v3/changes.d.ts +4 -4
- package/schematics/ng-update/v3/changes.js +20 -20
- package/schematics/ng-update/v3/index.d.ts +1 -1
- package/schematics/ng-update/v3/index.js +66 -66
- package/schematics/ng-update/v3/index.js.map +1 -1
- package/schematics/ng-update/v4/changes.d.ts +4 -4
- package/schematics/ng-update/v4/changes.js +20 -20
- package/schematics/ng-update/v4/index.d.ts +1 -1
- package/schematics/ng-update/v4/index.js +65 -65
- package/schematics/ng-update/v4/index.js.map +1 -1
- package/schematics/ng-update/v5/changes.d.ts +4 -4
- package/schematics/ng-update/v5/changes.js +25 -25
- package/schematics/ng-update/v5/index.d.ts +1 -1
- package/schematics/ng-update/v5/index.js +65 -65
- package/schematics/ng-update/v5/index.js.map +1 -1
- package/schematics/ng-update/v6/changes.d.ts +2 -0
- package/schematics/ng-update/v6/changes.js +14 -0
- package/schematics/ng-update/v6/changes.js.map +1 -0
- package/schematics/ng-update/v6/index.d.ts +1 -0
- package/schematics/ng-update/v6/index.js +16 -0
- package/schematics/ng-update/v6/index.js.map +1 -0
- package/bundles/po-ui-ng-components.umd.js +0 -39421
- package/bundles/po-ui-ng-components.umd.js.map +0 -1
- package/esm2015/lib/components/components.module.js +0 -122
- package/esm2015/lib/components/index.js +0 -38
- package/esm2015/lib/components/po-accordion/index.js +0 -4
- package/esm2015/lib/components/po-accordion/po-accordion-base.component.js +0 -29
- package/esm2015/lib/components/po-accordion/po-accordion-item/po-accordion-item.component.js +0 -66
- package/esm2015/lib/components/po-accordion/po-accordion-item-body/po-accordion-item-body.component.js +0 -23
- package/esm2015/lib/components/po-accordion/po-accordion-item-header/po-accordion-item-header.component.js +0 -24
- package/esm2015/lib/components/po-accordion/po-accordion.component.js +0 -70
- package/esm2015/lib/components/po-accordion/po-accordion.module.js +0 -52
- package/esm2015/lib/components/po-accordion/services/po-accordion.service.js +0 -27
- package/esm2015/lib/components/po-avatar/index.js +0 -3
- package/esm2015/lib/components/po-avatar/po-avatar-base.component.js +0 -68
- package/esm2015/lib/components/po-avatar/po-avatar.component.js +0 -42
- package/esm2015/lib/components/po-avatar/po-avatar.module.js +0 -18
- package/esm2015/lib/components/po-badge/po-badge-base.component.js +0 -89
- package/esm2015/lib/components/po-badge/po-badge.component.js +0 -16
- package/esm2015/lib/components/po-badge/po-badge.module.js +0 -18
- package/esm2015/lib/components/po-breadcrumb/index.js +0 -5
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-base.component.js +0 -48
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-dropdown/po-breadcrumb-dropdown.component.js +0 -20
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.component.js +0 -77
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.service.js +0 -49
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-item/po-breadcrumb-item.component.js +0 -27
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-item.interface.js +0 -2
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb.component.js +0 -159
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb.interface.js +0 -2
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb.module.js +0 -28
- package/esm2015/lib/components/po-button/index.js +0 -3
- package/esm2015/lib/components/po-button/po-button-base.component.js +0 -127
- package/esm2015/lib/components/po-button/po-button.component.js +0 -69
- package/esm2015/lib/components/po-button/po-button.module.js +0 -20
- package/esm2015/lib/components/po-button-group/index.js +0 -5
- package/esm2015/lib/components/po-button-group/po-button-group-base.component.js +0 -95
- package/esm2015/lib/components/po-button-group/po-button-group-item.interface.js +0 -2
- package/esm2015/lib/components/po-button-group/po-button-group-toggle.enum.js +0 -17
- package/esm2015/lib/components/po-button-group/po-button-group.component.js +0 -43
- package/esm2015/lib/components/po-button-group/po-button-group.module.js +0 -20
- package/esm2015/lib/components/po-calendar/index.js +0 -4
- package/esm2015/lib/components/po-calendar/po-calendar-base.component.js +0 -176
- package/esm2015/lib/components/po-calendar/po-calendar-header/po-calendar-header.component.js +0 -24
- package/esm2015/lib/components/po-calendar/po-calendar-mode.enum.js +0 -13
- package/esm2015/lib/components/po-calendar/po-calendar-wrapper/po-calendar-wrapper.component.js +0 -251
- package/esm2015/lib/components/po-calendar/po-calendar.component.js +0 -199
- package/esm2015/lib/components/po-calendar/po-calendar.module.js +0 -19
- package/esm2015/lib/components/po-calendar/services/po-calendar.lang.service.js +0 -187
- package/esm2015/lib/components/po-calendar/services/po-calendar.service.js +0 -44
- package/esm2015/lib/components/po-chart/directives/po-resize-observer.directive.js +0 -44
- package/esm2015/lib/components/po-chart/enums/po-chart-type.enum.js +0 -51
- package/esm2015/lib/components/po-chart/helpers/po-chart-default-values.constant.js +0 -18
- package/esm2015/lib/components/po-chart/index.js +0 -8
- package/esm2015/lib/components/po-chart/interfaces/po-chart-axis-options.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-bar-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-container-size.interface.js +0 -11
- package/esm2015/lib/components/po-chart/interfaces/po-chart-label-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-min-max-values.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-options.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-path-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-points-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-serie.interface.js +0 -2
- package/esm2015/lib/components/po-chart/po-chart-base.component.js +0 -244
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-label/po-chart-axis-label.component.js +0 -23
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-path/po-chart-axis-path.component.js +0 -19
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis.component.js +0 -287
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-base.component.js +0 -94
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-path/po-chart-bar-path.component.js +0 -33
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar.component.js +0 -58
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-column/po-chart-column.component.js +0 -59
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-label/po-chart-circular-label.component.js +0 -29
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-circular-path.component.js +0 -35
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-tooltip.directive.js +0 -76
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular.component.js +0 -142
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-donut/po-chart-donut.component.js +0 -115
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-pie/po-chart-pie.component.js +0 -57
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-container.component.js +0 -119
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-area/po-chart-area.component.js +0 -77
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line-base.component.js +0 -151
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line.component.js +0 -41
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-path/po-chart-path.component.js +0 -65
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-series-point/po-chart-series-point.component.js +0 -95
- package/esm2015/lib/components/po-chart/po-chart-legend/po-chart-legend.component.js +0 -21
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-circular/po-chart-circular.constant.js +0 -11
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-circular/po-chart-circular.js +0 -374
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-dynamic-type.component.js +0 -45
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge-series.interface.js +0 -2
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge-text-content/po-chart-gauge-text-content.component.js +0 -75
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge.component.js +0 -85
- package/esm2015/lib/components/po-chart/po-chart.component.js +0 -203
- package/esm2015/lib/components/po-chart/po-chart.module.js +0 -61
- package/esm2015/lib/components/po-chart/services/po-chart-maths.service.js +0 -135
- package/esm2015/lib/components/po-chart/services/po-chart-svg-container.service.js +0 -57
- package/esm2015/lib/components/po-container/index.js +0 -3
- package/esm2015/lib/components/po-container/po-container-base.component.js +0 -88
- package/esm2015/lib/components/po-container/po-container.component.js +0 -32
- package/esm2015/lib/components/po-container/po-container.module.js +0 -18
- package/esm2015/lib/components/po-disclaimer/index.js +0 -4
- package/esm2015/lib/components/po-disclaimer/po-disclaimer-base.component.js +0 -77
- package/esm2015/lib/components/po-disclaimer/po-disclaimer.component.js +0 -29
- package/esm2015/lib/components/po-disclaimer/po-disclaimer.interface.js +0 -2
- package/esm2015/lib/components/po-disclaimer/po-disclaimer.module.js +0 -17
- package/esm2015/lib/components/po-disclaimer-group/index.js +0 -5
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group-base.component.js +0 -194
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group-remove-action.interface.js +0 -2
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group.component.js +0 -41
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group.interface.js +0 -2
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group.module.js +0 -20
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-remove/po-disclaimer-remove.component.js +0 -30
- package/esm2015/lib/components/po-divider/index.js +0 -3
- package/esm2015/lib/components/po-divider/po-divider-base.component.js +0 -16
- package/esm2015/lib/components/po-divider/po-divider.component.js +0 -32
- package/esm2015/lib/components/po-divider/po-divider.module.js +0 -18
- package/esm2015/lib/components/po-dropdown/index.js +0 -4
- package/esm2015/lib/components/po-dropdown/po-dropdown-action.interface.js +0 -2
- package/esm2015/lib/components/po-dropdown/po-dropdown-base.component.js +0 -71
- package/esm2015/lib/components/po-dropdown/po-dropdown.component.js +0 -97
- package/esm2015/lib/components/po-dropdown/po-dropdown.module.js +0 -18
- package/esm2015/lib/components/po-dynamic/index.js +0 -11
- package/esm2015/lib/components/po-dynamic/po-dynamic-field-type.enum.js +0 -25
- package/esm2015/lib/components/po-dynamic/po-dynamic-field.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-base.component.js +0 -104
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-field.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-field-internal.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields-base.component.js +0 -200
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields.component.js +0 -129
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.service.js +0 -32
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-operation/po-dynamic-form-operation.js +0 -20
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-response.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-changed.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-validation.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.service.js +0 -39
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form.component.js +0 -167
- package/esm2015/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-base.component.js +0 -163
- package/esm2015/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-field.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.component.js +0 -101
- package/esm2015/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.service.js +0 -17
- package/esm2015/lib/components/po-dynamic/po-dynamic.module.js +0 -35
- package/esm2015/lib/components/po-dynamic/po-dynamic.util.js +0 -18
- package/esm2015/lib/components/po-field/index.js +0 -51
- package/esm2015/lib/components/po-field/po-checkbox/po-checkbox-base.component.js +0 -98
- package/esm2015/lib/components/po-field/po-checkbox/po-checkbox.component.js +0 -94
- package/esm2015/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option-view.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-checkbox-group/po-checkbox-group-base.component.js +0 -297
- package/esm2015/lib/components/po-field/po-checkbox-group/po-checkbox-group.component.js +0 -98
- package/esm2015/lib/components/po-field/po-checkbox-group/po-checkbox-group.module.js +0 -20
- package/esm2015/lib/components/po-field/po-clean/po-clean-base.component.js +0 -42
- package/esm2015/lib/components/po-field/po-clean/po-clean.component.js +0 -33
- package/esm2015/lib/components/po-field/po-clean/po-clean.module.js +0 -18
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-filter.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-group.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-option-group.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-response.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/po-combo-base.component.js +0 -749
- package/esm2015/lib/components/po-field/po-combo/po-combo-filter-mode.enum.js +0 -17
- package/esm2015/lib/components/po-field/po-combo/po-combo-filter.service.js +0 -78
- package/esm2015/lib/components/po-field/po-combo/po-combo-option-template/po-combo-option-template.directive.js +0 -81
- package/esm2015/lib/components/po-field/po-combo/po-combo.component.js +0 -525
- package/esm2015/lib/components/po-field/po-datepicker/enums/po-datepicker-iso-format.enum.js +0 -17
- package/esm2015/lib/components/po-field/po-datepicker/po-datepicker-base.component.js +0 -396
- package/esm2015/lib/components/po-field/po-datepicker/po-datepicker.component.js +0 -345
- package/esm2015/lib/components/po-field/po-datepicker/po-datepicker.module.js +0 -22
- package/esm2015/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.js +0 -475
- package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.js +0 -443
- package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range.literals.js +0 -27
- package/esm2015/lib/components/po-field/po-decimal/po-decimal.component.js +0 -598
- package/esm2015/lib/components/po-field/po-email/po-email.component.js +0 -106
- package/esm2015/lib/components/po-field/po-field-container/po-field-container-bottom/po-field-container-bottom.component.js +0 -29
- package/esm2015/lib/components/po-field/po-field-container/po-field-container-literals.js +0 -15
- package/esm2015/lib/components/po-field/po-field-container/po-field-container.component.js +0 -39
- package/esm2015/lib/components/po-field/po-field-container/po-field-container.module.js +0 -19
- package/esm2015/lib/components/po-field/po-field-validate.model.js +0 -69
- package/esm2015/lib/components/po-field/po-field.model.js +0 -78
- package/esm2015/lib/components/po-field/po-field.module.js +0 -156
- package/esm2015/lib/components/po-field/po-input/po-input-base.component.js +0 -357
- package/esm2015/lib/components/po-field/po-input/po-input.component.js +0 -56
- package/esm2015/lib/components/po-field/po-input/po-mask.js +0 -460
- package/esm2015/lib/components/po-field/po-input-generic/po-input-generic.js +0 -187
- package/esm2015/lib/components/po-field/po-login/po-login.component.js +0 -65
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-advanced-filter.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-column.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-filter.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-filtered-items-params.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-response-api.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/po-lookup-base.component.js +0 -451
- package/esm2015/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal-base.component.js +0 -357
- package/esm2015/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal.component.js +0 -130
- package/esm2015/lib/components/po-field/po-lookup/po-lookup.component.js +0 -337
- package/esm2015/lib/components/po-field/po-lookup/services/po-lookup-filter.service.js +0 -59
- package/esm2015/lib/components/po-field/po-lookup/services/po-lookup-modal.service.js +0 -62
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-base.component.js +0 -576
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-dropdown/po-multiselect-dropdown.component.js +0 -139
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-filter-mode.enum.js +0 -17
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-filter.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-filter.service.js +0 -50
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-item/po-multiselect-item.component.js +0 -33
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-search/po-multiselect-search.component.js +0 -57
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect.component.js +0 -359
- package/esm2015/lib/components/po-field/po-number/po-number-base.component.js +0 -114
- package/esm2015/lib/components/po-field/po-number/po-number.component.js +0 -119
- package/esm2015/lib/components/po-field/po-password/po-password.component.js +0 -92
- package/esm2015/lib/components/po-field/po-radio-group/po-radio-group-base.component.js +0 -184
- package/esm2015/lib/components/po-field/po-radio-group/po-radio-group-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-radio-group/po-radio-group.component.js +0 -119
- package/esm2015/lib/components/po-field/po-rich-text/interfaces/po-rich-text-toolbar-button-group-item.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-base.component.js +0 -181
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-body/po-rich-text-body.component.js +0 -312
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-image-modal/po-rich-text-image-modal.component.js +0 -96
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-link-modal/po-rich-text-link-modal.component.js +0 -140
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-literals.js +0 -83
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-toolbar/po-rich-text-toolbar.component.js +0 -166
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text.component.js +0 -147
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text.service.js +0 -17
- package/esm2015/lib/components/po-field/po-select/po-select-option-template/po-select-option-template.directive.js +0 -59
- package/esm2015/lib/components/po-field/po-select/po-select-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-select/po-select.component.js +0 -366
- package/esm2015/lib/components/po-field/po-switch/po-switch-label-position.enum.js +0 -15
- package/esm2015/lib/components/po-field/po-switch/po-switch.component.js +0 -190
- package/esm2015/lib/components/po-field/po-textarea/po-textarea-base.component.js +0 -269
- package/esm2015/lib/components/po-field/po-textarea/po-textarea.component.js +0 -130
- package/esm2015/lib/components/po-field/po-upload/interfaces/po-upload-file-restriction.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-upload/interfaces/po-upload-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-upload/po-upload-base.component.js +0 -581
- package/esm2015/lib/components/po-field/po-upload/po-upload-base.service.js +0 -88
- package/esm2015/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area/po-upload-drag-drop-area.component.js +0 -30
- package/esm2015/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area-overlay/po-upload-drag-drop-area-overlay.component.js +0 -40
- package/esm2015/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.component.js +0 -60
- package/esm2015/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.directive.js +0 -165
- package/esm2015/lib/components/po-field/po-upload/po-upload-file-restrictions/po-upload-file-restrictions.component.js +0 -63
- package/esm2015/lib/components/po-field/po-upload/po-upload-file.js +0 -39
- package/esm2015/lib/components/po-field/po-upload/po-upload-status.enum.js +0 -13
- package/esm2015/lib/components/po-field/po-upload/po-upload.component.js +0 -326
- package/esm2015/lib/components/po-field/po-upload/po-upload.service.js +0 -8
- package/esm2015/lib/components/po-field/po-url/po-url.component.js +0 -86
- package/esm2015/lib/components/po-field/validators.js +0 -41
- package/esm2015/lib/components/po-gauge/index.js +0 -4
- package/esm2015/lib/components/po-gauge/interfaces/po-gauge-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-gauge/interfaces/po-gauge-ranges.interface.js +0 -2
- package/esm2015/lib/components/po-gauge/interfaces/po-gauge-svg-container.interface.js +0 -2
- package/esm2015/lib/components/po-gauge/po-gauge-base.component.js +0 -146
- package/esm2015/lib/components/po-gauge/po-gauge-default-values.constant.js +0 -11
- package/esm2015/lib/components/po-gauge/po-gauge-description/po-gauge-description.component.js +0 -27
- package/esm2015/lib/components/po-gauge/po-gauge-legend/po-gauge-legend.component.js +0 -27
- package/esm2015/lib/components/po-gauge/po-gauge-svg/po-gauge-path/po-gauge-path.component.js +0 -20
- package/esm2015/lib/components/po-gauge/po-gauge-svg/po-gauge-pointer/po-gauge-pointer.component.js +0 -50
- package/esm2015/lib/components/po-gauge/po-gauge-svg/po-gauge-svg.component.js +0 -204
- package/esm2015/lib/components/po-gauge/po-gauge-title/po-gauge-title.component.js +0 -13
- package/esm2015/lib/components/po-gauge/po-gauge.component.js +0 -72
- package/esm2015/lib/components/po-gauge/po-gauge.module.js +0 -32
- package/esm2015/lib/components/po-grid/index.js +0 -4
- package/esm2015/lib/components/po-grid/po-grid-cell/po-grid-cell.component.js +0 -111
- package/esm2015/lib/components/po-grid/po-grid-cell-action/po-grid-cell-action.component.js +0 -24
- package/esm2015/lib/components/po-grid/po-grid-head/po-grid-head.component.js +0 -30
- package/esm2015/lib/components/po-grid/po-grid-row-actions.interface.js +0 -2
- package/esm2015/lib/components/po-grid/po-grid.component.js +0 -314
- package/esm2015/lib/components/po-grid/po-grid.module.js +0 -23
- package/esm2015/lib/components/po-icon/index.js +0 -3
- package/esm2015/lib/components/po-icon/po-icon.component.js +0 -62
- package/esm2015/lib/components/po-icon/po-icon.module.js +0 -18
- package/esm2015/lib/components/po-info/index.js +0 -4
- package/esm2015/lib/components/po-info/po-info-base.component.js +0 -62
- package/esm2015/lib/components/po-info/po-info-orietation.enum.js +0 -15
- package/esm2015/lib/components/po-info/po-info.component.js +0 -36
- package/esm2015/lib/components/po-info/po-info.module.js +0 -21
- package/esm2015/lib/components/po-list-view/index.js +0 -7
- package/esm2015/lib/components/po-list-view/interfaces/po-list-view-action.interface.js +0 -2
- package/esm2015/lib/components/po-list-view/interfaces/po-list-view-literals.interface.js +0 -2
- package/esm2015/lib/components/po-list-view/po-list-view-base.component.js +0 -274
- package/esm2015/lib/components/po-list-view/po-list-view-content-template/po-list-view-content-template.directive.js +0 -101
- package/esm2015/lib/components/po-list-view/po-list-view-detail-template/po-list-view-detail-template.directive.js +0 -64
- package/esm2015/lib/components/po-list-view/po-list-view.component.js +0 -128
- package/esm2015/lib/components/po-list-view/po-list-view.module.js +0 -51
- package/esm2015/lib/components/po-loading/index.js +0 -5
- package/esm2015/lib/components/po-loading/po-loading-base.component.js +0 -24
- package/esm2015/lib/components/po-loading/po-loading-icon/po-loading-icon.component.js +0 -37
- package/esm2015/lib/components/po-loading/po-loading-overlay/interfaces/po-loading-overlay-literals.interface.js +0 -2
- package/esm2015/lib/components/po-loading/po-loading-overlay/po-loading-overlay-base.component.js +0 -91
- package/esm2015/lib/components/po-loading/po-loading-overlay/po-loading-overlay.component.js +0 -41
- package/esm2015/lib/components/po-loading/po-loading.component.js +0 -16
- package/esm2015/lib/components/po-loading/po-loading.module.js +0 -22
- package/esm2015/lib/components/po-menu/index.js +0 -9
- package/esm2015/lib/components/po-menu/po-menu-base.component.js +0 -299
- package/esm2015/lib/components/po-menu/po-menu-filter/po-menu-filter-literals.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu-filter/po-menu-filter.component.js +0 -40
- package/esm2015/lib/components/po-menu/po-menu-filter/po-menu-filter.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu-header-template/po-menu-header-template.directive.js +0 -51
- package/esm2015/lib/components/po-menu/po-menu-item/po-menu-item-badge.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu-item/po-menu-item-filtered.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu-item/po-menu-item.component.js +0 -173
- package/esm2015/lib/components/po-menu/po-menu-item.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu.component.js +0 -497
- package/esm2015/lib/components/po-menu/po-menu.module.js +0 -26
- package/esm2015/lib/components/po-menu/services/po-menu-global.service.js +0 -32
- package/esm2015/lib/components/po-menu/services/po-menu-items.service.js +0 -35
- package/esm2015/lib/components/po-menu/services/po-menu.service.js +0 -35
- package/esm2015/lib/components/po-menu-panel/index.js +0 -4
- package/esm2015/lib/components/po-menu-panel/po-menu-panel-base.component.js +0 -76
- package/esm2015/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item-internal.interface.js +0 -2
- package/esm2015/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.component.js +0 -54
- package/esm2015/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.interface.js +0 -2
- package/esm2015/lib/components/po-menu-panel/po-menu-panel.component.js +0 -145
- package/esm2015/lib/components/po-menu-panel/po-menu-panel.module.js +0 -24
- package/esm2015/lib/components/po-menu-panel/services/po-menu-panel-items.service.js +0 -35
- package/esm2015/lib/components/po-modal/index.js +0 -5
- package/esm2015/lib/components/po-modal/po-modal-action.interface.js +0 -2
- package/esm2015/lib/components/po-modal/po-modal-base.component.js +0 -121
- package/esm2015/lib/components/po-modal/po-modal-footer/po-modal-footer.component.js +0 -43
- package/esm2015/lib/components/po-modal/po-modal.component.js +0 -114
- package/esm2015/lib/components/po-modal/po-modal.literals.js +0 -15
- package/esm2015/lib/components/po-modal/po-modal.module.js +0 -19
- package/esm2015/lib/components/po-navbar/index.js +0 -5
- package/esm2015/lib/components/po-navbar/interfaces/po-navbar-icon-action.interface.js +0 -2
- package/esm2015/lib/components/po-navbar/interfaces/po-navbar-item.interface.js +0 -2
- package/esm2015/lib/components/po-navbar/interfaces/po-navbar-literals.interface.js +0 -2
- package/esm2015/lib/components/po-navbar/po-navbar-actions/po-navbar-action/po-navbar-action.component.js +0 -43
- package/esm2015/lib/components/po-navbar/po-navbar-actions/po-navbar-action-popup/po-navbar-action-popup.component.js +0 -18
- package/esm2015/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.component.js +0 -19
- package/esm2015/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.module.js +0 -18
- package/esm2015/lib/components/po-navbar/po-navbar-base.component.js +0 -147
- package/esm2015/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation-icon/po-navbar-item-navigation-icon.component.js +0 -18
- package/esm2015/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.component.js +0 -18
- package/esm2015/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.module.js +0 -15
- package/esm2015/lib/components/po-navbar/po-navbar-items/po-navbar-item/po-navbar-item.component.js +0 -30
- package/esm2015/lib/components/po-navbar/po-navbar-items/po-navbar-items.component.js +0 -53
- package/esm2015/lib/components/po-navbar/po-navbar-items/po-navbar-items.module.js +0 -15
- package/esm2015/lib/components/po-navbar/po-navbar-logo/po-navbar-logo.component.js +0 -13
- package/esm2015/lib/components/po-navbar/po-navbar.component.js +0 -213
- package/esm2015/lib/components/po-navbar/po-navbar.module.js +0 -57
- package/esm2015/lib/components/po-page/index.js +0 -15
- package/esm2015/lib/components/po-page/po-page-action.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-base.component.js +0 -23
- package/esm2015/lib/components/po-page/po-page-content/po-page-content-base.component.js +0 -10
- package/esm2015/lib/components/po-page/po-page-content/po-page-content.component.js +0 -54
- package/esm2015/lib/components/po-page/po-page-default/po-page-default-base.component.js +0 -111
- package/esm2015/lib/components/po-page/po-page-default/po-page-default-literals.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-default/po-page-default.component.js +0 -98
- package/esm2015/lib/components/po-page/po-page-default/po-page-default.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-detail/po-page-detail-base.component.js +0 -141
- package/esm2015/lib/components/po-page/po-page-detail/po-page-detail-literals.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-detail/po-page-detail.component.js +0 -62
- package/esm2015/lib/components/po-page/po-page-edit/po-page-edit-base.component.js +0 -146
- package/esm2015/lib/components/po-page/po-page-edit/po-page-edit-literals.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-edit/po-page-edit.component.js +0 -65
- package/esm2015/lib/components/po-page/po-page-filter.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-header/po-page-header-base.component.js +0 -26
- package/esm2015/lib/components/po-page/po-page-header/po-page-header.component.js +0 -15
- package/esm2015/lib/components/po-page/po-page-list/po-page-list-base.component.js +0 -137
- package/esm2015/lib/components/po-page/po-page-list/po-page-list-literals.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-list/po-page-list.component.js +0 -188
- package/esm2015/lib/components/po-page/po-page-slide/po-page-slide-base.component.js +0 -135
- package/esm2015/lib/components/po-page/po-page-slide/po-page-slide.component.js +0 -121
- package/esm2015/lib/components/po-page/po-page.component.js +0 -16
- package/esm2015/lib/components/po-page/po-page.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page.module.js +0 -60
- package/esm2015/lib/components/po-popover/index.js +0 -3
- package/esm2015/lib/components/po-popover/po-popover-base.component.js +0 -113
- package/esm2015/lib/components/po-popover/po-popover.component.js +0 -138
- package/esm2015/lib/components/po-popover/po-popover.module.js +0 -17
- package/esm2015/lib/components/po-popup/index.js +0 -4
- package/esm2015/lib/components/po-popup/po-popup-action.interface.js +0 -2
- package/esm2015/lib/components/po-popup/po-popup-base.component.js +0 -186
- package/esm2015/lib/components/po-popup/po-popup.component.js +0 -169
- package/esm2015/lib/components/po-popup/po-popup.module.js +0 -21
- package/esm2015/lib/components/po-progress/enums/po-progress-status.enum.js +0 -17
- package/esm2015/lib/components/po-progress/index.js +0 -4
- package/esm2015/lib/components/po-progress/po-progress-bar/po-progress-bar.component.js +0 -18
- package/esm2015/lib/components/po-progress/po-progress-base.component.js +0 -107
- package/esm2015/lib/components/po-progress/po-progress.component.js +0 -56
- package/esm2015/lib/components/po-progress/po-progress.module.js +0 -19
- package/esm2015/lib/components/po-slide/directives/po-slide-content-template.directive.js +0 -59
- package/esm2015/lib/components/po-slide/index.js +0 -5
- package/esm2015/lib/components/po-slide/interfaces/po-slide-item.interface.js +0 -2
- package/esm2015/lib/components/po-slide/po-slide-base.component.js +0 -104
- package/esm2015/lib/components/po-slide/po-slide-circles/po-slide-circles.component.js +0 -26
- package/esm2015/lib/components/po-slide/po-slide-control/po-slide-control.component.js +0 -25
- package/esm2015/lib/components/po-slide/po-slide-item/po-slide-item.component.js +0 -37
- package/esm2015/lib/components/po-slide/po-slide.component.js +0 -256
- package/esm2015/lib/components/po-slide/po-slide.module.js +0 -58
- package/esm2015/lib/components/po-stepper/enums/po-stepper-orientation.enum.js +0 -18
- package/esm2015/lib/components/po-stepper/enums/po-stepper-status.enum.js +0 -23
- package/esm2015/lib/components/po-stepper/index.js +0 -7
- package/esm2015/lib/components/po-stepper/po-step/po-step.component.js +0 -78
- package/esm2015/lib/components/po-stepper/po-stepper-base.component.js +0 -144
- package/esm2015/lib/components/po-stepper/po-stepper-circle/po-stepper-circle.component.js +0 -47
- package/esm2015/lib/components/po-stepper/po-stepper-item.interface.js +0 -2
- package/esm2015/lib/components/po-stepper/po-stepper-label/po-stepper-label.component.js +0 -20
- package/esm2015/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.js +0 -116
- package/esm2015/lib/components/po-stepper/po-stepper.component.js +0 -219
- package/esm2015/lib/components/po-stepper/po-stepper.module.js +0 -27
- package/esm2015/lib/components/po-table/enums/po-table-column-sort-type.enum.js +0 -14
- package/esm2015/lib/components/po-table/enums/po-table-row-template-arrow-direction.enum.js +0 -14
- package/esm2015/lib/components/po-table/index.js +0 -18
- package/esm2015/lib/components/po-table/interfaces/po-table-action.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-boolean.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-column-sort.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-column.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-filter.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-filtered-items-params.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-literals.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-response-api.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-base.component.js +0 -860
- package/esm2015/lib/components/po-table/po-table-cell-template/po-table-cell-template.directive.js +0 -82
- package/esm2015/lib/components/po-table/po-table-column-icon/po-table-column-icon.component.js +0 -72
- package/esm2015/lib/components/po-table/po-table-column-icon/po-table-column-icon.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-column-label/po-table-column-label.component.js +0 -38
- package/esm2015/lib/components/po-table/po-table-column-label/po-table-column-label.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-column-link/po-table-column-link.component.js +0 -38
- package/esm2015/lib/components/po-table/po-table-column-manager/po-table-column-manager.component.js +0 -250
- package/esm2015/lib/components/po-table/po-table-column-template/po-table-column-template.directive.js +0 -90
- package/esm2015/lib/components/po-table/po-table-detail/po-table-detail-column.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-detail/po-table-detail.component.js +0 -88
- package/esm2015/lib/components/po-table/po-table-detail/po-table-detail.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-icon/po-table-icon.component.js +0 -46
- package/esm2015/lib/components/po-table/po-table-row-template/po-table-row-template.directive.js +0 -128
- package/esm2015/lib/components/po-table/po-table-show-subtitle/po-table-show-subtitle.component.js +0 -21
- package/esm2015/lib/components/po-table/po-table-subtitle-circle/po-table-subtitle-circle.component.js +0 -41
- package/esm2015/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-column.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-footer.component.js +0 -70
- package/esm2015/lib/components/po-table/po-table.component.js +0 -542
- package/esm2015/lib/components/po-table/po-table.module.js +0 -75
- package/esm2015/lib/components/po-table/services/po-table.service.js +0 -38
- package/esm2015/lib/components/po-tabs/index.js +0 -5
- package/esm2015/lib/components/po-tabs/po-tab/po-tab-base.component.js +0 -82
- package/esm2015/lib/components/po-tabs/po-tab/po-tab.component.js +0 -27
- package/esm2015/lib/components/po-tabs/po-tab/po-tab.interface.js +0 -2
- package/esm2015/lib/components/po-tabs/po-tab-button/po-tab-button.component.js +0 -75
- package/esm2015/lib/components/po-tabs/po-tab-dropdown/po-tab-dropdown.component.js +0 -44
- package/esm2015/lib/components/po-tabs/po-tabs-base.component.js +0 -49
- package/esm2015/lib/components/po-tabs/po-tabs.component.js +0 -126
- package/esm2015/lib/components/po-tabs/po-tabs.module.js +0 -21
- package/esm2015/lib/components/po-tag/enums/po-tag-icon.enum.js +0 -19
- package/esm2015/lib/components/po-tag/enums/po-tag-orientation.enum.js +0 -15
- package/esm2015/lib/components/po-tag/enums/po-tag-type.enum.js +0 -19
- package/esm2015/lib/components/po-tag/index.js +0 -5
- package/esm2015/lib/components/po-tag/interfaces/po-tag-item.interface.js +0 -2
- package/esm2015/lib/components/po-tag/po-tag-base.component.js +0 -175
- package/esm2015/lib/components/po-tag/po-tag.component.js +0 -71
- package/esm2015/lib/components/po-tag/po-tag.module.js +0 -21
- package/esm2015/lib/components/po-toolbar/index.js +0 -5
- package/esm2015/lib/components/po-toolbar/po-toolbar-action.interface.js +0 -2
- package/esm2015/lib/components/po-toolbar/po-toolbar-actions/po-toolbar-actions.component.js +0 -35
- package/esm2015/lib/components/po-toolbar/po-toolbar-base.component.js +0 -43
- package/esm2015/lib/components/po-toolbar/po-toolbar-notification/po-toolbar-notification.component.js +0 -39
- package/esm2015/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.component.js +0 -28
- package/esm2015/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.interface.js +0 -2
- package/esm2015/lib/components/po-toolbar/po-toolbar.component.js +0 -46
- package/esm2015/lib/components/po-toolbar/po-toolbar.module.js +0 -32
- package/esm2015/lib/components/po-tree-view/index.js +0 -4
- package/esm2015/lib/components/po-tree-view/po-tree-view-base.component.js +0 -197
- package/esm2015/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.component.js +0 -58
- package/esm2015/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.interface.js +0 -2
- package/esm2015/lib/components/po-tree-view/po-tree-view-item-header/po-tree-view-item-header.component.js +0 -26
- package/esm2015/lib/components/po-tree-view/po-tree-view.component.js +0 -60
- package/esm2015/lib/components/po-tree-view/po-tree-view.module.js +0 -49
- package/esm2015/lib/components/po-tree-view/services/po-tree-view.service.js +0 -24
- package/esm2015/lib/components/po-widget/index.js +0 -3
- package/esm2015/lib/components/po-widget/po-widget-base.component.js +0 -216
- package/esm2015/lib/components/po-widget/po-widget.component.js +0 -114
- package/esm2015/lib/components/po-widget/po-widget.module.js +0 -19
- package/esm2015/lib/decorators/index.js +0 -3
- package/esm2015/lib/decorators/input-boolean/input-boolean.decorator.js +0 -18
- package/esm2015/lib/decorators/input-required/input-required.decorator.js +0 -34
- package/esm2015/lib/decorators/property-decorator.interface.js +0 -2
- package/esm2015/lib/decorators/utils-decorators.js +0 -64
- package/esm2015/lib/directives/directives.module.js +0 -14
- package/esm2015/lib/directives/index.js +0 -3
- package/esm2015/lib/directives/po-tooltip/index.js +0 -3
- package/esm2015/lib/directives/po-tooltip/po-tooltip-base.directive.js +0 -106
- package/esm2015/lib/directives/po-tooltip/po-tooltip-control-position.service.js +0 -8
- package/esm2015/lib/directives/po-tooltip/po-tooltip.directive.js +0 -147
- package/esm2015/lib/directives/po-tooltip/po-tooltip.module.js +0 -18
- package/esm2015/lib/enums/po-color-palette.enum.js +0 -35
- package/esm2015/lib/enums/po-key-code.enum.js +0 -31
- package/esm2015/lib/guards/guards.module.js +0 -13
- package/esm2015/lib/guards/index.js +0 -2
- package/esm2015/lib/index.js +0 -10
- package/esm2015/lib/interceptors/index.js +0 -4
- package/esm2015/lib/interceptors/interceptors.module.js +0 -15
- package/esm2015/lib/interceptors/po-http-interceptor/index.js +0 -3
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-base.service.js +0 -249
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail-literals.interface.js +0 -39
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.component.js +0 -83
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.interface.js +0 -2
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-literals.js +0 -23
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor.module.js +0 -28
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor.service.js +0 -28
- package/esm2015/lib/interceptors/po-http-request/index.js +0 -3
- package/esm2015/lib/interceptors/po-http-request/po-http-request-control-service.js +0 -23
- package/esm2015/lib/interceptors/po-http-request/po-http-request-interceptor.service.js +0 -169
- package/esm2015/lib/interceptors/po-http-request/po-http-request.module.js +0 -24
- package/esm2015/lib/interfaces/index.js +0 -2
- package/esm2015/lib/interfaces/po-http/po-response-api.interface.js +0 -2
- package/esm2015/lib/pipes/index.js +0 -3
- package/esm2015/lib/pipes/pipes.module.js +0 -14
- package/esm2015/lib/pipes/po-time/index.js +0 -3
- package/esm2015/lib/pipes/po-time/po-time.module.js +0 -19
- package/esm2015/lib/pipes/po-time/po-time.pipe.js +0 -55
- package/esm2015/lib/po.module.js +0 -34
- package/esm2015/lib/services/index.js +0 -11
- package/esm2015/lib/services/po-active-overlay/index.js +0 -3
- package/esm2015/lib/services/po-active-overlay/po-active-overlay.module.js +0 -16
- package/esm2015/lib/services/po-active-overlay/po-active-overlay.service.js +0 -14
- package/esm2015/lib/services/po-color/po-color.service.js +0 -60
- package/esm2015/lib/services/po-color/po-colors.constant.js +0 -43
- package/esm2015/lib/services/po-color-palette/index.js +0 -3
- package/esm2015/lib/services/po-color-palette/po-color-palette.module.js +0 -16
- package/esm2015/lib/services/po-color-palette/po-color-palette.service.js +0 -25
- package/esm2015/lib/services/po-component-injector/index.js +0 -3
- package/esm2015/lib/services/po-component-injector/po-component-injector.module.js +0 -14
- package/esm2015/lib/services/po-component-injector/po-component-injector.service.js +0 -34
- package/esm2015/lib/services/po-control-position/index.js +0 -3
- package/esm2015/lib/services/po-control-position/po-control-position.constants.js +0 -16
- package/esm2015/lib/services/po-control-position/po-control-position.module.js +0 -15
- package/esm2015/lib/services/po-control-position/po-control-position.service.js +0 -361
- package/esm2015/lib/services/po-date/index.js +0 -3
- package/esm2015/lib/services/po-date/po-date.module.js +0 -16
- package/esm2015/lib/services/po-date/po-date.service.js +0 -201
- package/esm2015/lib/services/po-dialog/index.js +0 -8
- package/esm2015/lib/services/po-dialog/interfaces/po-dialog-alert-literals.interface.js +0 -2
- package/esm2015/lib/services/po-dialog/interfaces/po-dialog-confirm-literals.interface.js +0 -2
- package/esm2015/lib/services/po-dialog/interfaces/po-dialog.interface.js +0 -2
- package/esm2015/lib/services/po-dialog/po-dialog-base.service.js +0 -18
- package/esm2015/lib/services/po-dialog/po-dialog.component.js +0 -115
- package/esm2015/lib/services/po-dialog/po-dialog.enum.js +0 -16
- package/esm2015/lib/services/po-dialog/po-dialog.module.js +0 -15
- package/esm2015/lib/services/po-dialog/po-dialog.service.js +0 -42
- package/esm2015/lib/services/po-i18n/index.js +0 -8
- package/esm2015/lib/services/po-i18n/interfaces/po-i18n-config-default.interface.js +0 -2
- package/esm2015/lib/services/po-i18n/interfaces/po-i18n-config.interface.js +0 -2
- package/esm2015/lib/services/po-i18n/interfaces/po-i18n-literals.interface.js +0 -2
- package/esm2015/lib/services/po-i18n/po-i18n-base.pipe.js +0 -40
- package/esm2015/lib/services/po-i18n/po-i18n-base.service.js +0 -439
- package/esm2015/lib/services/po-i18n/po-i18n-config-injection-token.js +0 -3
- package/esm2015/lib/services/po-i18n/po-i18n.module.js +0 -188
- package/esm2015/lib/services/po-i18n/po-i18n.pipe.js +0 -21
- package/esm2015/lib/services/po-i18n/po-i18n.service.js +0 -20
- package/esm2015/lib/services/po-language/index.js +0 -5
- package/esm2015/lib/services/po-language/po-language.constant.js +0 -75
- package/esm2015/lib/services/po-language/po-language.interface.js +0 -2
- package/esm2015/lib/services/po-language/po-language.module.js +0 -15
- package/esm2015/lib/services/po-language/po-language.service.js +0 -136
- package/esm2015/lib/services/po-notification/index.js +0 -6
- package/esm2015/lib/services/po-notification/po-notification-base.service.js +0 -111
- package/esm2015/lib/services/po-notification/po-notification.interface.js +0 -2
- package/esm2015/lib/services/po-notification/po-notification.module.js +0 -15
- package/esm2015/lib/services/po-notification/po-notification.service.js +0 -92
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster-base.component.js +0 -15
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster-orientation.enum.js +0 -13
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster-type.enum.js +0 -17
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster.component.js +0 -132
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster.interface.js +0 -2
- package/esm2015/lib/services/services.module.js +0 -40
- package/esm2015/lib/utils/util.js +0 -508
- package/esm2015/po-ui-ng-components.js +0 -206
- package/esm2015/public-api.js +0 -2
- package/fesm2015/po-ui-ng-components.js +0 -35544
- package/fesm2015/po-ui-ng-components.js.map +0 -1
- package/lib/components/po-chart/po-chart-types/po-chart-circular/po-chart-circular.constant.d.ts +0 -7
- package/lib/components/po-chart/po-chart-types/po-chart-circular/po-chart-circular.d.ts +0 -55
- package/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge-series.interface.d.ts +0 -39
- package/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge-text-content/po-chart-gauge-text-content.component.d.ts +0 -24
- package/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge.component.d.ts +0 -20
- package/po-ui-ng-components-5.22.3.tgz +0 -0
- package/po-ui-ng-components.metadata.json +0 -1
|
@@ -0,0 +1,611 @@
|
|
|
1
|
+
import { Component, ContentChild } from '@angular/core';
|
|
2
|
+
import { NavigationCancel, NavigationEnd } from '@angular/router';
|
|
3
|
+
import { map } from 'rxjs/operators';
|
|
4
|
+
import { getFormattedLink, isMobile, openExternalLink, uuid } from '../../utils/util';
|
|
5
|
+
import { PoMenuBaseComponent } from './po-menu-base.component';
|
|
6
|
+
import { PoMenuHeaderTemplateDirective } from './po-menu-header-template/po-menu-header-template.directive';
|
|
7
|
+
import { PoMenuItemsService } from './services/po-menu-items.service';
|
|
8
|
+
import { PoMenuService } from './services/po-menu.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
import * as i1 from "@angular/router";
|
|
11
|
+
import * as i2 from "./services/po-menu-items.service";
|
|
12
|
+
import * as i3 from "./services/po-menu-global.service";
|
|
13
|
+
import * as i4 from "./services/po-menu.service";
|
|
14
|
+
import * as i5 from "../../services/po-language/po-language.service";
|
|
15
|
+
import * as i6 from "@angular/common";
|
|
16
|
+
import * as i7 from "./po-menu-filter/po-menu-filter.component";
|
|
17
|
+
import * as i8 from "../po-icon/po-icon.component";
|
|
18
|
+
import * as i9 from "./po-menu-item/po-menu-item.component";
|
|
19
|
+
function PoMenuComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
20
|
+
const _r8 = i0.ɵɵgetCurrentView();
|
|
21
|
+
i0.ɵɵelementStart(0, "div", 14);
|
|
22
|
+
i0.ɵɵlistener("click", function PoMenuComponent_div_0_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r8); const ctx_r7 = i0.ɵɵnextContext(); return ctx_r7.toggleMenuMobile(); });
|
|
23
|
+
i0.ɵɵelementEnd();
|
|
24
|
+
} }
|
|
25
|
+
function PoMenuComponent_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
26
|
+
i0.ɵɵelementStart(0, "div", 15);
|
|
27
|
+
i0.ɵɵelementStart(1, "a", 16);
|
|
28
|
+
i0.ɵɵelement(2, "img", 17);
|
|
29
|
+
i0.ɵɵelementEnd();
|
|
30
|
+
i0.ɵɵelementEnd();
|
|
31
|
+
} if (rf & 2) {
|
|
32
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
33
|
+
i0.ɵɵadvance(2);
|
|
34
|
+
i0.ɵɵproperty("ngClass", ctx_r1.enableCollapse ? "po-menu-short-logo" : "po-menu-logo")("src", ctx_r1.enableCollapse ? ctx_r1.shortLogo || ctx_r1.logo : ctx_r1.logo, i0.ɵɵsanitizeUrl);
|
|
35
|
+
} }
|
|
36
|
+
function PoMenuComponent_div_6_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
37
|
+
i0.ɵɵelementContainer(0);
|
|
38
|
+
} }
|
|
39
|
+
function PoMenuComponent_div_6_Template(rf, ctx) { if (rf & 1) {
|
|
40
|
+
i0.ɵɵelementStart(0, "div", 18);
|
|
41
|
+
i0.ɵɵtemplate(1, PoMenuComponent_div_6_ng_container_1_Template, 1, 0, "ng-container", 19);
|
|
42
|
+
i0.ɵɵelementEnd();
|
|
43
|
+
} if (rf & 2) {
|
|
44
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
45
|
+
i0.ɵɵadvance(1);
|
|
46
|
+
i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.menuHeaderTemplate.templateRef);
|
|
47
|
+
} }
|
|
48
|
+
function PoMenuComponent_po_menu_filter_7_Template(rf, ctx) { if (rf & 1) {
|
|
49
|
+
const _r11 = i0.ɵɵgetCurrentView();
|
|
50
|
+
i0.ɵɵelementStart(0, "po-menu-filter", 20);
|
|
51
|
+
i0.ɵɵlistener("p-filter", function PoMenuComponent_po_menu_filter_7_Template_po_menu_filter_p_filter_0_listener($event) { i0.ɵɵrestoreView(_r11); const ctx_r10 = i0.ɵɵnextContext(); return ctx_r10.debounceFilter($event); });
|
|
52
|
+
i0.ɵɵelementEnd();
|
|
53
|
+
} if (rf & 2) {
|
|
54
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
55
|
+
i0.ɵɵproperty("p-loading", ctx_r3.filterLoading);
|
|
56
|
+
} }
|
|
57
|
+
function PoMenuComponent_div_11_Template(rf, ctx) { if (rf & 1) {
|
|
58
|
+
i0.ɵɵelementStart(0, "div", 21);
|
|
59
|
+
i0.ɵɵelementStart(1, "div", 22);
|
|
60
|
+
i0.ɵɵelementStart(2, "div", 23);
|
|
61
|
+
i0.ɵɵelement(3, "po-icon", 24);
|
|
62
|
+
i0.ɵɵelementStart(4, "div", 25);
|
|
63
|
+
i0.ɵɵtext(5);
|
|
64
|
+
i0.ɵɵelementEnd();
|
|
65
|
+
i0.ɵɵelementEnd();
|
|
66
|
+
i0.ɵɵelementEnd();
|
|
67
|
+
i0.ɵɵelementEnd();
|
|
68
|
+
} if (rf & 2) {
|
|
69
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
|
70
|
+
i0.ɵɵadvance(5);
|
|
71
|
+
i0.ɵɵtextInterpolate(ctx_r4.literals.itemNotFound);
|
|
72
|
+
} }
|
|
73
|
+
function PoMenuComponent_div_12_Template(rf, ctx) { if (rf & 1) {
|
|
74
|
+
i0.ɵɵelementStart(0, "div", 21);
|
|
75
|
+
i0.ɵɵelement(1, "po-menu-item", 26);
|
|
76
|
+
i0.ɵɵelementEnd();
|
|
77
|
+
} if (rf & 2) {
|
|
78
|
+
const menu_r12 = ctx.$implicit;
|
|
79
|
+
const menuIndex_r13 = ctx.index;
|
|
80
|
+
const ctx_r5 = i0.ɵɵnextContext();
|
|
81
|
+
i0.ɵɵadvance(1);
|
|
82
|
+
i0.ɵɵclassProp("po-menu-item-first", menuIndex_r13 === 0);
|
|
83
|
+
i0.ɵɵproperty("p-action", menu_r12.action)("p-badge-alert", menu_r12.badgeAlert)("p-badge-color", menu_r12.badge ? menu_r12.badge.color : undefined)("p-badge-value", menu_r12.badge ? menu_r12.badge.value : undefined)("p-collapsed-menu", ctx_r5.enableCollapse)("p-icon", ctx_r5.allowIcons ? menu_r12.icon : null)("p-id", menu_r12.id)("p-label", menu_r12.label)("p-level", menu_r12.level)("p-link", menu_r12.link)("p-short-label", menu_r12.shortLabel)("p-sub-items", menu_r12.subItems)("p-type", menu_r12.type);
|
|
84
|
+
} }
|
|
85
|
+
function PoMenuComponent_div_13_Template(rf, ctx) { if (rf & 1) {
|
|
86
|
+
const _r15 = i0.ɵɵgetCurrentView();
|
|
87
|
+
i0.ɵɵelementStart(0, "div", 27);
|
|
88
|
+
i0.ɵɵelementStart(1, "a", 28);
|
|
89
|
+
i0.ɵɵlistener("click", function PoMenuComponent_div_13_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r15); const ctx_r14 = i0.ɵɵnextContext(); return ctx_r14.toggle(); });
|
|
90
|
+
i0.ɵɵelement(2, "span", 29);
|
|
91
|
+
i0.ɵɵelementEnd();
|
|
92
|
+
i0.ɵɵelementEnd();
|
|
93
|
+
} if (rf & 2) {
|
|
94
|
+
const ctx_r6 = i0.ɵɵnextContext();
|
|
95
|
+
i0.ɵɵadvance(2);
|
|
96
|
+
i0.ɵɵclassProp("po-icon-menu-close", ctx_r6.enableCollapseButton)("po-icon-menu-open", ctx_r6.enableCollapse);
|
|
97
|
+
} }
|
|
98
|
+
const _c0 = function (a0) { return { "po-menu-animation": a0 }; };
|
|
99
|
+
const poMenuDebounceTime = 400;
|
|
100
|
+
const poMenuMinLength = 3;
|
|
101
|
+
const poMenuRootLevel = 1;
|
|
102
|
+
/**
|
|
103
|
+
* @docsExtends PoMenuBaseComponent
|
|
104
|
+
*
|
|
105
|
+
* @description
|
|
106
|
+
*
|
|
107
|
+
* Aparece completo em telas com largura maior que 1200px, caso contrário o menu é escondido e chamado por meio de um botão.
|
|
108
|
+
*
|
|
109
|
+
* O menu também pode ser colapsado. Essa opção é habilitada quando todos os itens de primeiro nível possuírem ícones e textos curtos.
|
|
110
|
+
* Se colapsado, somente os itens de primeiro nível serão exibidos e, caso o item selecionado possua sub-níveis,
|
|
111
|
+
* então o menu alternará novamente para o estado aberto.
|
|
112
|
+
*
|
|
113
|
+
* Existe a possibilidade de customizar a logomarca, que é exibida na parte superior do componente.
|
|
114
|
+
*
|
|
115
|
+
* E para adicionar um conteúdo personalizado entre a logomarca e o campo de filtro,
|
|
116
|
+
* basta adicionar este conteúdo com a diretiva [**p-menu-header-template**](/documentation/po-menu-header-template).
|
|
117
|
+
*
|
|
118
|
+
* Caso utilizar o filtro de menus, é possível realizar buscas em serviço, apenas informando a URL do serviço ou a instância de
|
|
119
|
+
* um serviço customizado implementando a interface `PoMenuFilter`.
|
|
120
|
+
*
|
|
121
|
+
* Para o menu funcionar corretamente é necessário importar o `RouterModule` e `Routes` do módulo principal de
|
|
122
|
+
* sua aplicação:
|
|
123
|
+
*
|
|
124
|
+
* ````
|
|
125
|
+
* import { RouterModule, Routes } from '@angular/router';
|
|
126
|
+
*
|
|
127
|
+
* ...
|
|
128
|
+
*
|
|
129
|
+
* @NgModule({
|
|
130
|
+
* imports: [
|
|
131
|
+
* RouterModule,
|
|
132
|
+
* Routes,
|
|
133
|
+
* ...
|
|
134
|
+
* PoModule,
|
|
135
|
+
* ...
|
|
136
|
+
* ],
|
|
137
|
+
* declarations: [
|
|
138
|
+
* AppComponent
|
|
139
|
+
* ],
|
|
140
|
+
* providers: [],
|
|
141
|
+
* bootstrap: [AppComponent]
|
|
142
|
+
* })
|
|
143
|
+
* export class AppModule { }
|
|
144
|
+
* ```
|
|
145
|
+
*
|
|
146
|
+
* Além disso é necessário criar um módulo configurando as rotas da aplicação.
|
|
147
|
+
*
|
|
148
|
+
* ```
|
|
149
|
+
* import { NgModule } from '@angular/core';
|
|
150
|
+
*
|
|
151
|
+
* import { RouterModule, Routes } from '@angular/router';
|
|
152
|
+
*
|
|
153
|
+
* import { HelloWorldComponent } from './hello-world/hello-world.component';
|
|
154
|
+
*
|
|
155
|
+
* const routes: Routes = [
|
|
156
|
+
* {path: 'hello-world', component: HelloWorldComponent}
|
|
157
|
+
* ];
|
|
158
|
+
*
|
|
159
|
+
* @NgModule({
|
|
160
|
+
* imports: [RouterModule.forRoot(routes, {useHash: true})],
|
|
161
|
+
* exports: [RouterModule]
|
|
162
|
+
* })
|
|
163
|
+
* export class AppRoutingModule {}
|
|
164
|
+
* ```
|
|
165
|
+
*
|
|
166
|
+
* @example
|
|
167
|
+
*
|
|
168
|
+
* <example name="po-menu-basic" title="PO Menu Basic">
|
|
169
|
+
* <file name="sample-po-menu-basic/sample-po-menu-basic.component.html"> </file>
|
|
170
|
+
* <file name="sample-po-menu-basic/sample-po-menu-basic.component.ts"> </file>
|
|
171
|
+
* </example>
|
|
172
|
+
*
|
|
173
|
+
* <example name="po-menu-labs" title="PO Menu Labs">
|
|
174
|
+
* <file name="sample-po-menu-labs/sample-po-menu-labs.component.html"> </file>
|
|
175
|
+
* <file name="sample-po-menu-labs/sample-po-menu-labs.component.ts"> </file>
|
|
176
|
+
* </example>
|
|
177
|
+
*
|
|
178
|
+
* <example name="po-menu-human-resources" title="PO Menu - Human Resources">
|
|
179
|
+
* <file name="sample-po-menu-human-resources/sample-po-menu-human-resources.component.html"> </file>
|
|
180
|
+
* <file name="sample-po-menu-human-resources/sample-po-menu-human-resources.component.ts"> </file>
|
|
181
|
+
* <file name="sample-po-menu-human-resources/sample-po-menu-human-resources.service.ts"> </file>
|
|
182
|
+
* </example>
|
|
183
|
+
*/
|
|
184
|
+
export class PoMenuComponent extends PoMenuBaseComponent {
|
|
185
|
+
constructor(changeDetector, element, renderer, router, menuItemsService, menuGlobalService, menuService, languageService) {
|
|
186
|
+
super(menuGlobalService, menuService, languageService);
|
|
187
|
+
this.changeDetector = changeDetector;
|
|
188
|
+
this.element = element;
|
|
189
|
+
this.renderer = renderer;
|
|
190
|
+
this.router = router;
|
|
191
|
+
this.menuItemsService = menuItemsService;
|
|
192
|
+
this.filterLoading = false;
|
|
193
|
+
this.id = uuid();
|
|
194
|
+
this.mobileOpened = false;
|
|
195
|
+
this.noData = false;
|
|
196
|
+
this.filteringItems = false;
|
|
197
|
+
this.menuInitialized = false;
|
|
198
|
+
this.menuPrevious = null;
|
|
199
|
+
}
|
|
200
|
+
get isActiveItemMenuSubMenu() {
|
|
201
|
+
return this.activeMenuItem['level'] > this.groupedMenuItem['level'];
|
|
202
|
+
}
|
|
203
|
+
get enableCollapse() {
|
|
204
|
+
return this.isCollapsed && !this.collapsedMobile;
|
|
205
|
+
}
|
|
206
|
+
get enableCollapseButton() {
|
|
207
|
+
return this.allowCollapseMenu && !this.collapsed && !this.mobileOpened;
|
|
208
|
+
}
|
|
209
|
+
get hasFooter() {
|
|
210
|
+
return this.enableCollapseButton || this.enableCollapse;
|
|
211
|
+
}
|
|
212
|
+
get isCollapsed() {
|
|
213
|
+
return this.allowCollapseMenu && this.collapsed;
|
|
214
|
+
}
|
|
215
|
+
ngDoCheck() {
|
|
216
|
+
if (this.filteringItems && this.filter) {
|
|
217
|
+
return;
|
|
218
|
+
}
|
|
219
|
+
const menuCurrent = this.stringify(this.menus);
|
|
220
|
+
if (this.menuPrevious !== menuCurrent || !this.menuInitialized) {
|
|
221
|
+
this.updateMenu();
|
|
222
|
+
this.validateCollapseClass();
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
ngOnDestroy() {
|
|
226
|
+
this.itemSubscription.unsubscribe();
|
|
227
|
+
this.routeSubscription.unsubscribe();
|
|
228
|
+
if (this.resizeListener) {
|
|
229
|
+
this.resizeListener();
|
|
230
|
+
}
|
|
231
|
+
this.menuGlobalService.sendRemovedApplicationMenu(this.id);
|
|
232
|
+
}
|
|
233
|
+
ngOnInit() {
|
|
234
|
+
this.subscribeToMenuItem();
|
|
235
|
+
this.subscribeToRoute();
|
|
236
|
+
}
|
|
237
|
+
ngAfterViewInit() {
|
|
238
|
+
this.menuGlobalService.sendApplicationMenu(this);
|
|
239
|
+
}
|
|
240
|
+
activateMenuByUrl(urlPath, menus) {
|
|
241
|
+
if (menus) {
|
|
242
|
+
const urlPathWithoutLastFragment = urlPath.substr(0, urlPath.lastIndexOf('/'));
|
|
243
|
+
return menus.some(menu => {
|
|
244
|
+
const formattedMenuLink = getFormattedLink(menu.link);
|
|
245
|
+
const menuLinkPath = `${urlPathWithoutLastFragment}${formattedMenuLink.substr(formattedMenuLink.lastIndexOf('/'))}`;
|
|
246
|
+
if (menuLinkPath === urlPath && menuLinkPath === formattedMenuLink) {
|
|
247
|
+
this.linkActive = formattedMenuLink;
|
|
248
|
+
this.activateMenuItem(menu);
|
|
249
|
+
return true;
|
|
250
|
+
}
|
|
251
|
+
else {
|
|
252
|
+
return this.activateMenuByUrl(urlPath, menu.subItems);
|
|
253
|
+
}
|
|
254
|
+
});
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
checkActiveMenuByUrl(urlPath) {
|
|
258
|
+
if (!this.linkActive || this.linkActive !== urlPath) {
|
|
259
|
+
this.activateMenuByUrl(urlPath, this.menus);
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* <a id="colapseMethod"></a>
|
|
264
|
+
*
|
|
265
|
+
* *Método para colapsar (retrair) o menu.
|
|
266
|
+
*/
|
|
267
|
+
collapse() {
|
|
268
|
+
this.validateToggleMenu(true);
|
|
269
|
+
}
|
|
270
|
+
debounceFilter(filter) {
|
|
271
|
+
clearTimeout(this.timeoutFilter);
|
|
272
|
+
this.timeoutFilter = setTimeout(() => {
|
|
273
|
+
this.filterProcess(filter);
|
|
274
|
+
}, poMenuDebounceTime);
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* <a id="expandMethod"></a>
|
|
278
|
+
*
|
|
279
|
+
* *Método para expandir (aumentar) o menu.
|
|
280
|
+
*/
|
|
281
|
+
expand() {
|
|
282
|
+
this.validateToggleMenu(false);
|
|
283
|
+
}
|
|
284
|
+
subscribeToMenuItem() {
|
|
285
|
+
this.itemSubscription = this.menuItemsService.receiveFromChildMenuClicked().subscribe((menu) => {
|
|
286
|
+
this.clickMenuItem(menu);
|
|
287
|
+
});
|
|
288
|
+
}
|
|
289
|
+
subscribeToRoute() {
|
|
290
|
+
this.routeSubscription = this.router.events.subscribe(val => {
|
|
291
|
+
if (val instanceof NavigationEnd || val instanceof NavigationCancel) {
|
|
292
|
+
const urlRouter = this.checkingRouterChildrenFragments();
|
|
293
|
+
this.checkActiveMenuByUrl(urlRouter);
|
|
294
|
+
}
|
|
295
|
+
});
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* <a id="toggleMethod"></a>
|
|
299
|
+
* *Método que colapsa e expande o menu alternadamente.
|
|
300
|
+
*
|
|
301
|
+
* > *Os métodos apenas vão colapsar/expandir o menu se:
|
|
302
|
+
* - Todos os itens de menu tiverem valor nas propriedades `icon` e `shortLabel`.
|
|
303
|
+
*/
|
|
304
|
+
toggle() {
|
|
305
|
+
this.validateToggleMenu(!this.collapsed);
|
|
306
|
+
}
|
|
307
|
+
toggleMenuMobile() {
|
|
308
|
+
this.mobileOpened = !this.mobileOpened;
|
|
309
|
+
this.collapsedMobile = this.collapsed && this.mobileOpened;
|
|
310
|
+
this.validateCollapseClass(this.collapsedMobile);
|
|
311
|
+
if (isMobile()) {
|
|
312
|
+
return;
|
|
313
|
+
}
|
|
314
|
+
if (this.mobileOpened) {
|
|
315
|
+
this.createResizeListener();
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
checkingRouterChildrenFragments() {
|
|
319
|
+
const childrenPrimary = this.router.parseUrl(this.router.url).root.children['primary'];
|
|
320
|
+
return childrenPrimary ? `/${childrenPrimary.segments.map(it => it.path).join('/')}` : '';
|
|
321
|
+
}
|
|
322
|
+
validateCollapseClass(collapsedMobile = false) {
|
|
323
|
+
const wrapper = this.element.nativeElement.parentNode;
|
|
324
|
+
this.renderer[this.isCollapsed && !collapsedMobile ? 'addClass' : 'removeClass'](wrapper, 'po-collapsed-menu');
|
|
325
|
+
}
|
|
326
|
+
activateCollapseSubMenuItem() {
|
|
327
|
+
this.clearGroupMenuIfFirstLevel(this.activeMenuItem);
|
|
328
|
+
if (!this.collapsed && this.activeMenuItem['level'] > poMenuRootLevel && this.isActiveItemMenuSubMenu) {
|
|
329
|
+
this.openParentMenu(this.activeMenuItem);
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
activateMenuItem(menu) {
|
|
333
|
+
this.activeMenuItem = menu;
|
|
334
|
+
this.linkActive = menu.link;
|
|
335
|
+
if (this.activeMenuItem['level'] > poMenuRootLevel) {
|
|
336
|
+
this.openParentMenu(this.activeMenuItem);
|
|
337
|
+
}
|
|
338
|
+
else {
|
|
339
|
+
this.groupedMenuItem = null;
|
|
340
|
+
}
|
|
341
|
+
this.menuItemsService.sendToChildMenuClicked({
|
|
342
|
+
active: this.activeMenuItem,
|
|
343
|
+
grouped: this.groupedMenuItem,
|
|
344
|
+
activatedByRoute: true
|
|
345
|
+
});
|
|
346
|
+
}
|
|
347
|
+
areSubMenus(menus) {
|
|
348
|
+
return menus.every(menu => menu['level'] > poMenuRootLevel);
|
|
349
|
+
}
|
|
350
|
+
clearGroupMenuIfFirstLevel(activeMenuItem) {
|
|
351
|
+
if (activeMenuItem['level'] === poMenuRootLevel) {
|
|
352
|
+
this.groupedMenuItem = undefined;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
clickMenuItem(menu) {
|
|
356
|
+
if (menu.action) {
|
|
357
|
+
this.executeMenuAction(menu);
|
|
358
|
+
}
|
|
359
|
+
if (menu['type'] === 'externalLink') {
|
|
360
|
+
openExternalLink(menu.link);
|
|
361
|
+
}
|
|
362
|
+
else if (menu['type'] === 'internalLink') {
|
|
363
|
+
this.activateMenuItem(menu);
|
|
364
|
+
}
|
|
365
|
+
else if (menu['type'] === 'subItems') {
|
|
366
|
+
if (this.filteringItems) {
|
|
367
|
+
this.filteringItems = false;
|
|
368
|
+
}
|
|
369
|
+
this.groupMenuItem(menu);
|
|
370
|
+
}
|
|
371
|
+
if (menu['type'] !== 'subItems') {
|
|
372
|
+
this.mobileOpened = false;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
convertToMenuItemFiltered(menuItem = { label: '', link: '' }) {
|
|
376
|
+
const { label, link } = menuItem;
|
|
377
|
+
const menuItemFiltered = { label, link };
|
|
378
|
+
this.setMenuItemProperties(menuItemFiltered);
|
|
379
|
+
return menuItemFiltered;
|
|
380
|
+
}
|
|
381
|
+
createResizeListener() {
|
|
382
|
+
this.resizeListener = this.renderer.listen('window', 'resize', () => {
|
|
383
|
+
this.toggleResize();
|
|
384
|
+
this.resizeListener();
|
|
385
|
+
});
|
|
386
|
+
}
|
|
387
|
+
executeMenuAction(menu) {
|
|
388
|
+
menu.action(menu);
|
|
389
|
+
}
|
|
390
|
+
async filterItems(filter) {
|
|
391
|
+
const trimFilter = filter && filter.trim();
|
|
392
|
+
if (trimFilter) {
|
|
393
|
+
this.filteredItems = [];
|
|
394
|
+
this.filteredItems = this.filterService
|
|
395
|
+
? await this.filterOnService(trimFilter)
|
|
396
|
+
: this.filterLocalItems(trimFilter);
|
|
397
|
+
this.filteringItems = true;
|
|
398
|
+
}
|
|
399
|
+
else {
|
|
400
|
+
this.filteredItems = [...this.menus];
|
|
401
|
+
this.filteringItems = false;
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
filterLocalItems(filter) {
|
|
405
|
+
const filteredItems = [];
|
|
406
|
+
this.findItems(this.menus, filter.toLowerCase(), filteredItems);
|
|
407
|
+
return filteredItems;
|
|
408
|
+
}
|
|
409
|
+
filterProcess(filter) {
|
|
410
|
+
this.filterLoading = true;
|
|
411
|
+
this.filterItems(filter)
|
|
412
|
+
.then(() => {
|
|
413
|
+
this.filterLoading = false;
|
|
414
|
+
this.showNoData();
|
|
415
|
+
this.changeDetector.detectChanges();
|
|
416
|
+
this.menuItemsService.sendToChildMenuClicked({ active: this.activeMenuItem, grouped: this.groupedMenuItem });
|
|
417
|
+
})
|
|
418
|
+
.catch(error => {
|
|
419
|
+
this.filterLoading = false;
|
|
420
|
+
Promise.reject(error);
|
|
421
|
+
});
|
|
422
|
+
}
|
|
423
|
+
async filterOnService(search = '') {
|
|
424
|
+
if (search.length >= poMenuMinLength) {
|
|
425
|
+
return await this.filterService
|
|
426
|
+
.getFilteredData(search, this.params)
|
|
427
|
+
.pipe(map(menuItemsFiltered => menuItemsFiltered.map(menuItem => this.convertToMenuItemFiltered(menuItem))))
|
|
428
|
+
.toPromise();
|
|
429
|
+
}
|
|
430
|
+
else {
|
|
431
|
+
return this.filteredItems;
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
findItems(menus, filter, filteredItems) {
|
|
435
|
+
menus.forEach(menu => {
|
|
436
|
+
const hasAction = menu.action || menu.link;
|
|
437
|
+
const labelHasFilter = menu.label.toLowerCase().includes(filter);
|
|
438
|
+
if (labelHasFilter && hasAction) {
|
|
439
|
+
const newMenu = { ...menu };
|
|
440
|
+
if (newMenu.subItems?.length) {
|
|
441
|
+
delete newMenu.subItems;
|
|
442
|
+
newMenu['type'] = this.setMenuType(newMenu);
|
|
443
|
+
}
|
|
444
|
+
filteredItems.push(newMenu);
|
|
445
|
+
}
|
|
446
|
+
if (menu.subItems) {
|
|
447
|
+
this.findItems(menu.subItems, filter, filteredItems);
|
|
448
|
+
}
|
|
449
|
+
});
|
|
450
|
+
}
|
|
451
|
+
findParent(menus, menuItem) {
|
|
452
|
+
const getParent = function (menuItems, id) {
|
|
453
|
+
if (menuItems) {
|
|
454
|
+
for (let index = 0; index < menuItems.length; index++) {
|
|
455
|
+
const menu = menuItems[index];
|
|
456
|
+
if (menu.subItems && menu.subItems.find(subItem => subItem['id'] === id)) {
|
|
457
|
+
return menu;
|
|
458
|
+
}
|
|
459
|
+
const found = getParent(menu.subItems, id);
|
|
460
|
+
if (found) {
|
|
461
|
+
return found;
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
};
|
|
466
|
+
return getParent(menus, menuItem['id']);
|
|
467
|
+
}
|
|
468
|
+
findRootParent(menus, menu) {
|
|
469
|
+
const findParent = this.findParent;
|
|
470
|
+
const getRootParent = function (menuItems, menuItem) {
|
|
471
|
+
let parent = findParent(menuItems, menuItem);
|
|
472
|
+
if (parent['level'] !== poMenuRootLevel) {
|
|
473
|
+
parent = getRootParent(menuItems, parent);
|
|
474
|
+
}
|
|
475
|
+
return parent;
|
|
476
|
+
};
|
|
477
|
+
return getRootParent(menus, menu);
|
|
478
|
+
}
|
|
479
|
+
getActiveMenuParent(menus, activeMenuItem, groupedMenuItem) {
|
|
480
|
+
if (this.areSubMenus([groupedMenuItem, activeMenuItem])) {
|
|
481
|
+
return this.findRootParent(menus, activeMenuItem);
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
groupMenuItem(menu) {
|
|
485
|
+
if (this.collapsed) {
|
|
486
|
+
this.toggleMenuCollapse();
|
|
487
|
+
}
|
|
488
|
+
menu['isOpened'] = !menu['isOpened'];
|
|
489
|
+
this.groupedMenuItem = menu;
|
|
490
|
+
if (this.activeMenuItem &&
|
|
491
|
+
menu['isOpened'] &&
|
|
492
|
+
this.isActiveItemMenuSubMenu &&
|
|
493
|
+
this.isRootMenuEqualGroupedMenu(this.menus, this.activeMenuItem, menu)) {
|
|
494
|
+
this.activateMenuItem(this.activeMenuItem);
|
|
495
|
+
}
|
|
496
|
+
this.menuItemsService.sendToChildMenuClicked({ active: this.activeMenuItem, grouped: this.groupedMenuItem });
|
|
497
|
+
}
|
|
498
|
+
isRootMenuEqualGroupedMenu(menus, activeMenuItem, groupedMenuItem) {
|
|
499
|
+
const activeMenuRootParent = this.findRootParent(menus, activeMenuItem);
|
|
500
|
+
return activeMenuRootParent['id'] === groupedMenuItem['id'];
|
|
501
|
+
}
|
|
502
|
+
openParentMenu(childMenu) {
|
|
503
|
+
const parent = this.findParent(this.menus, childMenu);
|
|
504
|
+
parent['isOpened'] = true;
|
|
505
|
+
this.groupedMenuItem = parent;
|
|
506
|
+
}
|
|
507
|
+
showNoData() {
|
|
508
|
+
this.noData = this.filteredItems.length === 0;
|
|
509
|
+
}
|
|
510
|
+
stringify(menus) {
|
|
511
|
+
// não faz o stringify da propriedade icon, pois pode conter objeto complexo e disparar um erro.
|
|
512
|
+
return JSON.stringify(this.menus, (key, value) => {
|
|
513
|
+
if (key !== 'icon') {
|
|
514
|
+
return value;
|
|
515
|
+
}
|
|
516
|
+
});
|
|
517
|
+
}
|
|
518
|
+
toggleGroupedMenuItem() {
|
|
519
|
+
this.groupedMenuItem['isOpened'] = !this.collapsed && this.allowCollapseMenu;
|
|
520
|
+
}
|
|
521
|
+
toggleMenuCollapse(collapsed = false) {
|
|
522
|
+
this.collapsed = collapsed;
|
|
523
|
+
if (this.groupedMenuItem && this.activeMenuItem) {
|
|
524
|
+
this.groupedMenuItem =
|
|
525
|
+
this.getActiveMenuParent(this.menus, this.activeMenuItem, this.groupedMenuItem) || this.groupedMenuItem;
|
|
526
|
+
this.toggleGroupedMenuItem();
|
|
527
|
+
}
|
|
528
|
+
if (this.activeMenuItem) {
|
|
529
|
+
this.activateCollapseSubMenuItem();
|
|
530
|
+
this.menuItemsService.sendToChildMenuClicked({
|
|
531
|
+
active: this.activeMenuItem,
|
|
532
|
+
grouped: this.groupedMenuItem,
|
|
533
|
+
activatedByRoute: true
|
|
534
|
+
});
|
|
535
|
+
}
|
|
536
|
+
this.updateMenu();
|
|
537
|
+
}
|
|
538
|
+
toggleResize() {
|
|
539
|
+
if (this.mobileOpened) {
|
|
540
|
+
this.mobileOpened = false;
|
|
541
|
+
this.collapsedMobile = false;
|
|
542
|
+
this.validateCollapseClass(this.collapsedMobile);
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
validateToggleMenu(collapsed) {
|
|
546
|
+
if (!this.allowCollapseMenu) {
|
|
547
|
+
return;
|
|
548
|
+
}
|
|
549
|
+
this.toggleMenuCollapse(collapsed);
|
|
550
|
+
}
|
|
551
|
+
updateMenu() {
|
|
552
|
+
this.menuInitialized = true;
|
|
553
|
+
this.setMenuExtraProperties();
|
|
554
|
+
this.filteredItems = [...this.menus];
|
|
555
|
+
this.menuPrevious = this.stringify(this.menus);
|
|
556
|
+
this.validateMenus(this.menus);
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
PoMenuComponent.ɵfac = function PoMenuComponent_Factory(t) { return new (t || PoMenuComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i1.Router), i0.ɵɵdirectiveInject(i2.PoMenuItemsService), i0.ɵɵdirectiveInject(i3.PoMenuGlobalService), i0.ɵɵdirectiveInject(i4.PoMenuService), i0.ɵɵdirectiveInject(i5.PoLanguageService)); };
|
|
560
|
+
PoMenuComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PoMenuComponent, selectors: [["po-menu"]], contentQueries: function PoMenuComponent_ContentQueries(rf, ctx, dirIndex) { if (rf & 1) {
|
|
561
|
+
i0.ɵɵcontentQuery(dirIndex, PoMenuHeaderTemplateDirective, 7);
|
|
562
|
+
} if (rf & 2) {
|
|
563
|
+
let _t;
|
|
564
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.menuHeaderTemplate = _t.first);
|
|
565
|
+
} }, features: [i0.ɵɵProvidersFeature([PoMenuItemsService, PoMenuService]), i0.ɵɵInheritDefinitionFeature], decls: 14, vars: 10, consts: [["class", "po-menu-overlay", 3, "click", 4, "ngIf"], [1, "po-menu-mobile", "po-clickable", 3, "click"], [1, "po-icon", "po-icon-menu"], [1, "po-menu", 3, "ngClass"], [1, "po-menu-header"], ["class", "po-menu-header-container-logo", 4, "ngIf"], ["class", "po-menu-header-template", 4, "ngIf"], [3, "p-loading", "p-filter", 4, "ngIf"], [1, "po-menu-body"], [1, "po-menu-outer"], [1, "po-menu-inner"], ["class", "po-menu-item-wrapper", 4, "ngIf"], ["class", "po-menu-item-wrapper", 4, "ngFor", "ngForOf"], ["class", "po-menu-footer", 4, "ngIf"], [1, "po-menu-overlay", 3, "click"], [1, "po-menu-header-container-logo"], ["href", "./"], [3, "ngClass", "src"], [1, "po-menu-header-template"], [4, "ngTemplateOutlet"], [3, "p-loading", "p-filter"], [1, "po-menu-item-wrapper"], [1, "po-menu-item-first"], [1, "po-menu-icon-container", "po-menu-item-no-data"], [1, "po-icon", "po-icon-info", "po-menu-icon-item", "po-lg-2"], [1, "po-lg-10", "po-menu-icon-label"], [3, "p-action", "p-badge-alert", "p-badge-color", "p-badge-value", "p-collapsed-menu", "p-icon", "p-id", "p-label", "p-level", "p-link", "p-short-label", "p-sub-items", "p-type"], [1, "po-menu-footer"], [1, "po-menu-collapse-button-icon", "po-clickable", 3, "click"], [1, "po-icon"]], template: function PoMenuComponent_Template(rf, ctx) { if (rf & 1) {
|
|
566
|
+
i0.ɵɵtemplate(0, PoMenuComponent_div_0_Template, 1, 0, "div", 0);
|
|
567
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
568
|
+
i0.ɵɵlistener("click", function PoMenuComponent_Template_div_click_1_listener() { return ctx.toggleMenuMobile(); });
|
|
569
|
+
i0.ɵɵelement(2, "span", 2);
|
|
570
|
+
i0.ɵɵelementEnd();
|
|
571
|
+
i0.ɵɵelementStart(3, "div", 3);
|
|
572
|
+
i0.ɵɵelementStart(4, "div", 4);
|
|
573
|
+
i0.ɵɵtemplate(5, PoMenuComponent_div_5_Template, 3, 2, "div", 5);
|
|
574
|
+
i0.ɵɵtemplate(6, PoMenuComponent_div_6_Template, 2, 1, "div", 6);
|
|
575
|
+
i0.ɵɵtemplate(7, PoMenuComponent_po_menu_filter_7_Template, 1, 1, "po-menu-filter", 7);
|
|
576
|
+
i0.ɵɵelementEnd();
|
|
577
|
+
i0.ɵɵelementStart(8, "nav", 8);
|
|
578
|
+
i0.ɵɵelementStart(9, "div", 9);
|
|
579
|
+
i0.ɵɵelementStart(10, "div", 10);
|
|
580
|
+
i0.ɵɵtemplate(11, PoMenuComponent_div_11_Template, 6, 1, "div", 11);
|
|
581
|
+
i0.ɵɵtemplate(12, PoMenuComponent_div_12_Template, 2, 15, "div", 12);
|
|
582
|
+
i0.ɵɵelementEnd();
|
|
583
|
+
i0.ɵɵelementEnd();
|
|
584
|
+
i0.ɵɵelementEnd();
|
|
585
|
+
i0.ɵɵtemplate(13, PoMenuComponent_div_13_Template, 3, 4, "div", 13);
|
|
586
|
+
i0.ɵɵelementEnd();
|
|
587
|
+
} if (rf & 2) {
|
|
588
|
+
i0.ɵɵproperty("ngIf", ctx.mobileOpened);
|
|
589
|
+
i0.ɵɵadvance(3);
|
|
590
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c0, ctx.mobileOpened));
|
|
591
|
+
i0.ɵɵadvance(2);
|
|
592
|
+
i0.ɵɵproperty("ngIf", ctx.logo || ctx.shortLogo && ctx.enableCollapse);
|
|
593
|
+
i0.ɵɵadvance(1);
|
|
594
|
+
i0.ɵɵproperty("ngIf", !ctx.enableCollapse && ctx.menuHeaderTemplate);
|
|
595
|
+
i0.ɵɵadvance(1);
|
|
596
|
+
i0.ɵɵproperty("ngIf", ctx.filter && !ctx.enableCollapse);
|
|
597
|
+
i0.ɵɵadvance(4);
|
|
598
|
+
i0.ɵɵproperty("ngIf", ctx.noData);
|
|
599
|
+
i0.ɵɵadvance(1);
|
|
600
|
+
i0.ɵɵproperty("ngForOf", ctx.filteredItems);
|
|
601
|
+
i0.ɵɵadvance(1);
|
|
602
|
+
i0.ɵɵproperty("ngIf", ctx.hasFooter);
|
|
603
|
+
} }, directives: [i6.NgIf, i6.NgClass, i6.NgTemplateOutlet, i7.PoMenuFilterComponent, i8.PoIconComponent, i6.NgForOf, i9.PoMenuItemComponent], encapsulation: 2 });
|
|
604
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoMenuComponent, [{
|
|
605
|
+
type: Component,
|
|
606
|
+
args: [{ selector: 'po-menu', providers: [PoMenuItemsService, PoMenuService], template: "<div *ngIf=\"mobileOpened\" class=\"po-menu-overlay\" (click)=\"toggleMenuMobile()\"></div>\n<div class=\"po-menu-mobile po-clickable\" (click)=\"toggleMenuMobile()\">\n <span class=\"po-icon po-icon-menu\"></span>\n</div>\n\n<div class=\"po-menu\" [ngClass]=\"{ 'po-menu-animation': mobileOpened }\">\n <div class=\"po-menu-header\">\n <div *ngIf=\"logo || (shortLogo && enableCollapse)\" class=\"po-menu-header-container-logo\">\n <a href=\"./\">\n <img\n [ngClass]=\"enableCollapse ? 'po-menu-short-logo' : 'po-menu-logo'\"\n [src]=\"enableCollapse ? shortLogo || logo : logo\"\n />\n </a>\n </div>\n\n <div *ngIf=\"!enableCollapse && menuHeaderTemplate\" class=\"po-menu-header-template\">\n <ng-container *ngTemplateOutlet=\"menuHeaderTemplate.templateRef\"></ng-container>\n </div>\n\n <po-menu-filter *ngIf=\"filter && !enableCollapse\" [p-loading]=\"filterLoading\" (p-filter)=\"debounceFilter($event)\">\n </po-menu-filter>\n </div>\n\n <nav class=\"po-menu-body\">\n <!-- Inner e outer para esconder scroll -->\n <div class=\"po-menu-outer\">\n <div class=\"po-menu-inner\">\n <div *ngIf=\"noData\" class=\"po-menu-item-wrapper\">\n <div class=\"po-menu-item-first\">\n <div class=\"po-menu-icon-container po-menu-item-no-data\">\n <po-icon class=\"po-icon po-icon-info po-menu-icon-item po-lg-2\"></po-icon>\n <div class=\"po-lg-10 po-menu-icon-label\">{{ literals.itemNotFound }}</div>\n </div>\n </div>\n </div>\n\n <div *ngFor=\"let menu of filteredItems; let menuIndex = index\" class=\"po-menu-item-wrapper\">\n <po-menu-item\n [class.po-menu-item-first]=\"menuIndex === 0\"\n [p-action]=\"menu.action\"\n [p-badge-alert]=\"menu.badgeAlert\"\n [p-badge-color]=\"menu.badge ? menu.badge.color : undefined\"\n [p-badge-value]=\"menu.badge ? menu.badge.value : undefined\"\n [p-collapsed-menu]=\"enableCollapse\"\n [p-icon]=\"allowIcons ? menu.icon : null\"\n [p-id]=\"menu.id\"\n [p-label]=\"menu.label\"\n [p-level]=\"menu.level\"\n [p-link]=\"menu.link\"\n [p-short-label]=\"menu.shortLabel\"\n [p-sub-items]=\"menu.subItems\"\n [p-type]=\"menu.type\"\n >\n </po-menu-item>\n </div>\n </div>\n </div>\n </nav>\n\n <div *ngIf=\"hasFooter\" class=\"po-menu-footer\">\n <a class=\"po-menu-collapse-button-icon po-clickable\" (click)=\"toggle()\">\n <span\n class=\"po-icon\"\n [class.po-icon-menu-close]=\"enableCollapseButton\"\n [class.po-icon-menu-open]=\"enableCollapse\"\n >\n </span>\n </a>\n </div>\n</div>\n" }]
|
|
607
|
+
}], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.Router }, { type: i2.PoMenuItemsService }, { type: i3.PoMenuGlobalService }, { type: i4.PoMenuService }, { type: i5.PoLanguageService }]; }, { menuHeaderTemplate: [{
|
|
608
|
+
type: ContentChild,
|
|
609
|
+
args: [PoMenuHeaderTemplateDirective, { static: true }]
|
|
610
|
+
}] }); })();
|
|
611
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tbWVudS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS9zcmMvbGliL2NvbXBvbmVudHMvcG8tbWVudS9wby1tZW51LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby1tZW51L3BvLW1lbnUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUdMLFNBQVMsRUFDVCxZQUFZLEVBTWIsTUFBTSxlQUFlLENBQUM7QUFFdkIsT0FBTyxFQUFFLGdCQUFnQixFQUFFLGFBQWEsRUFBVSxNQUFNLGlCQUFpQixDQUFDO0FBRTFFLE9BQU8sRUFBRSxHQUFHLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUdyQyxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsUUFBUSxFQUFFLGdCQUFnQixFQUFFLElBQUksRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBRXRGLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQy9ELE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLDZEQUE2RCxDQUFDO0FBRzVHLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGtDQUFrQyxDQUFDO0FBRXRFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQzs7Ozs7Ozs7Ozs7OztJQ3pCM0QsK0JBQStFO0lBQTdCLHlKQUFTLHlCQUFrQixJQUFDO0lBQUMsaUJBQU07OztJQU9qRiwrQkFBeUY7SUFDdkYsNkJBQWE7SUFDWCwwQkFHRTtJQUNKLGlCQUFJO0lBQ04saUJBQU07OztJQUpBLGVBQWtFO0lBQWxFLHVGQUFrRSxnR0FBQTs7O0lBT3RFLHdCQUFnRjs7O0lBRGxGLCtCQUFtRjtJQUNqRix5RkFBZ0Y7SUFDbEYsaUJBQU07OztJQURXLGVBQWdEO0lBQWhELHdFQUFnRDs7OztJQUdq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QUFFLGFBQWEsQ0FBQztRQ3JIaEQsZ0VBQXFGO1FBQ3JGLDhCQUFzRTtRQUE3Qix5RkFBUyxzQkFBa0IsSUFBQztRQUNuRSwwQkFBMEM7UUFDNUMsaUJBQU07UUFFTiw4QkFBdUU7UUFDckUsOEJBQTRCO1FBQzFCLGdFQU9NO1FBRU4sZ0VBRU07UUFFTixzRkFDaUI7UUFDbkIsaUJBQU07UUFFTiw4QkFBMEI7UUFFeEIsOEJBQTJCO1FBQ3pCLGdDQUEyQjtRQUN6QixtRUFPTTtRQUVOLG9FQWtCTTtRQUNSLGlCQUFNO1FBQ1IsaUJBQU07UUFDUixpQkFBTTtRQUVOLG1FQVNNO1FBQ1IsaUJBQU07O1FBdEVBLHVDQUFrQjtRQUtILGVBQWlEO1FBQWpELHNFQUFpRDtRQUU1RCxlQUEyQztRQUEzQyxzRUFBMkM7UUFTM0MsZUFBMkM7UUFBM0Msb0VBQTJDO1FBSWhDLGVBQStCO1FBQS9CLHdEQUErQjtRQVF0QyxlQUFZO1FBQVosaUNBQVk7UUFTSSxlQUFrQjtRQUFsQiwyQ0FBa0I7UUF1QnhDLGVBQWU7UUFBZixvQ0FBZTs7dUZEMkRWLGVBQWU7Y0FMM0IsU0FBUzsyQkFDRSxTQUFTLGFBRVIsQ0FBQyxrQkFBa0IsRUFBRSxhQUFhLENBQUM7eVFBR2lCLGtCQUFrQjtrQkFBaEYsWUFBWTttQkFBQyw2QkFBNkIsRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBBZnRlclZpZXdJbml0LFxuICBDaGFuZ2VEZXRlY3RvclJlZixcbiAgQ29tcG9uZW50LFxuICBDb250ZW50Q2hpbGQsXG4gIERvQ2hlY2ssXG4gIEVsZW1lbnRSZWYsXG4gIE9uRGVzdHJveSxcbiAgT25Jbml0LFxuICBSZW5kZXJlcjJcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IE5hdmlnYXRpb25DYW5jZWwsIE5hdmlnYXRpb25FbmQsIFJvdXRlciB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5cbmltcG9ydCB7IG1hcCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcbmltcG9ydCB7IFN1YnNjcmlwdGlvbiB9IGZyb20gJ3J4anMnO1xuXG5pbXBvcnQgeyBnZXRGb3JtYXR0ZWRMaW5rLCBpc01vYmlsZSwgb3BlbkV4dGVybmFsTGluaywgdXVpZCB9IGZyb20gJy4uLy4uL3V0aWxzL3V0aWwnO1xuXG5pbXBvcnQgeyBQb01lbnVCYXNlQ29tcG9uZW50IH0gZnJvbSAnLi9wby1tZW51LWJhc2UuY29tcG9uZW50JztcbmltcG9ydCB7IFBvTWVudUhlYWRlclRlbXBsYXRlRGlyZWN0aXZlIH0gZnJvbSAnLi9wby1tZW51LWhlYWRlci10ZW1wbGF0ZS9wby1tZW51LWhlYWRlci10ZW1wbGF0ZS5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgUG9NZW51SXRlbSB9IGZyb20gJy4vcG8tbWVudS1pdGVtLmludGVyZmFjZSc7XG5pbXBvcnQgeyBQb01lbnVJdGVtRmlsdGVyZWQgfSBmcm9tICcuL3BvLW1lbnUtaXRlbS9wby1tZW51LWl0ZW0tZmlsdGVyZWQuaW50ZXJmYWNlJztcbmltcG9ydCB7IFBvTWVudUl0ZW1zU2VydmljZSB9IGZyb20gJy4vc2VydmljZXMvcG8tbWVudS1pdGVtcy5zZXJ2aWNlJztcbmltcG9ydCB7IFBvTWVudUdsb2JhbFNlcnZpY2UgfSBmcm9tICcuL3NlcnZpY2VzL3BvLW1lbnUtZ2xvYmFsLnNlcnZpY2UnO1xuaW1wb3J0IHsgUG9NZW51U2VydmljZSB9IGZyb20gJy4vc2VydmljZXMvcG8tbWVudS5zZXJ2aWNlJztcbmltcG9ydCB7IFBvTGFuZ3VhZ2VTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvcG8tbGFuZ3VhZ2UvcG8tbGFuZ3VhZ2Uuc2VydmljZSc7XG5cbmNvbnN0IHBvTWVudURlYm91bmNlVGltZSA9IDQwMDtcbmNvbnN0IHBvTWVudU1pbkxlbmd0aCA9IDM7XG5jb25zdCBwb01lbnVSb290TGV2ZWwgPSAxO1xuXG4vKipcbiAqIEBkb2NzRXh0ZW5kcyBQb01lbnVCYXNlQ29tcG9uZW50XG4gKlxuICogQGRlc2NyaXB0aW9uXG4gKlxuICogQXBhcmVjZSBjb21wbGV0byBlbSB0ZWxhcyBjb20gbGFyZ3VyYSBtYWlvciBxdWUgMTIwMHB4LCBjYXNvIGNvbnRyw6FyaW8gbyBtZW51IMOpIGVzY29uZGlkbyBlIGNoYW1hZG8gcG9yIG1laW8gZGUgdW0gYm90w6NvLlxuICpcbiAqIE8gbWVudSB0YW1iw6ltIHBvZGUgc2VyIGNvbGFwc2Fkby4gRXNzYSBvcMOnw6NvIMOpIGhhYmlsaXRhZGEgcXVhbmRvIHRvZG9zIG9zIGl0ZW5zIGRlIHByaW1laXJvIG7DrXZlbCBwb3NzdcOtcmVtIMOtY29uZXMgZSB0ZXh0b3MgY3VydG9zLlxuICogU2UgY29sYXBzYWRvLCBzb21lbnRlIG9zIGl0ZW5zIGRlIHByaW1laXJvIG7DrXZlbCBzZXLDo28gZXhpYmlkb3MgZSwgY2FzbyBvIGl0ZW0gc2VsZWNpb25hZG8gcG9zc3VhIHN1Yi1uw612ZWlzLFxuICogZW50w6NvIG8gbWVudSBhbHRlcm5hcsOhIG5vdmFtZW50ZSBwYXJhIG8gZXN0YWRvIGFiZXJ0by5cbiAqXG4gKiBFeGlzdGUgYSBwb3NzaWJpbGlkYWRlIGRlIGN1c3RvbWl6YXIgYSBsb2dvbWFyY2EsIHF1ZSDDqSBleGliaWRhIG5hIHBhcnRlIHN1cGVyaW9yIGRvIGNvbXBvbmVudGUuXG4gKlxuICogRSBwYXJhIGFkaWNpb25hciB1bSBjb250ZcO6ZG8gcGVyc29uYWxpemFkbyBlbnRyZSBhIGxvZ29tYXJjYSBlIG8gY2FtcG8gZGUgZmlsdHJvLFxuICogYmFzdGEgYWRpY2lvbmFyIGVzdGUgY29udGXDumRvIGNvbSBhIGRpcmV0aXZhIFsqKnAtbWVudS1oZWFkZXItdGVtcGxhdGUqKl0oL2RvY3VtZW50YXRpb24vcG8tbWVudS1oZWFkZXItdGVtcGxhdGUpLlxuICpcbiAqIENhc28gdXRpbGl6YXIgbyBmaWx0cm8gZGUgbWVudXMsIMOpIHBvc3PDrXZlbCByZWFsaXphciBidXNjYXMgZW0gc2VydmnDp28sIGFwZW5hcyBpbmZvcm1hbmRvIGEgVVJMIGRvIHNlcnZpw6dvIG91IGEgaW5zdMOibmNpYSBkZVxuICogdW0gc2VydmnDp28gY3VzdG9taXphZG8gaW1wbGVtZW50YW5kbyBhIGludGVyZmFjZSBgUG9NZW51RmlsdGVyYC5cbiAqXG4gKiBQYXJhIG8gbWVudSBmdW5jaW9uYXIgY29ycmV0YW1lbnRlIMOpIG5lY2Vzc8OhcmlvIGltcG9ydGFyIG8gYFJvdXRlck1vZHVsZWAgZSBgUm91dGVzYCBkbyBtw7NkdWxvIHByaW5jaXBhbCBkZVxuICogIHN1YSBhcGxpY2HDp8OjbzpcbiAqXG4gKiBgYGBgXG4gKiBpbXBvcnQgeyBSb3V0ZXJNb2R1bGUsIFJvdXRlcyB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG4gKlxuICogLi4uXG4gKlxuICogQE5nTW9kdWxlKHtcbiAqICAgaW1wb3J0czogW1xuICogICAgIFJvdXRlck1vZHVsZSxcbiAqICAgICBSb3V0ZXMsXG4gKiAgICAgLi4uXG4gKiAgICAgUG9Nb2R1bGUsXG4gKiAgICAgLi4uXG4gKiAgIF0sXG4gKiAgIGRlY2xhcmF0aW9uczogW1xuICogICAgIEFwcENvbXBvbmVudFxuICogICBdLFxuICogICBwcm92aWRlcnM6IFtdLFxuICogICBib290c3RyYXA6IFtBcHBDb21wb25lbnRdXG4gKiB9KVxuICogZXhwb3J0IGNsYXNzIEFwcE1vZHVsZSB7IH1cbiAqIGBgYFxuICpcbiAqIEFsw6ltIGRpc3NvIMOpIG5lY2Vzc8OhcmlvIGNyaWFyIHVtIG3Ds2R1bG8gY29uZmlndXJhbmRvIGFzIHJvdGFzIGRhIGFwbGljYcOnw6NvLlxuICpcbiAqIGBgYFxuICogaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbiAqXG4gKiBpbXBvcnQgeyBSb3V0ZXJNb2R1bGUsIFJvdXRlcyB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG4gKlxuICogaW1wb3J0IHsgSGVsbG9Xb3JsZENvbXBvbmVudCB9IGZyb20gJy4vaGVsbG8td29ybGQvaGVsbG8td29ybGQuY29tcG9uZW50JztcbiAqXG4gKiBjb25zdCByb3V0ZXM6IFJvdXRlcyA9IFtcbiAqICAge3BhdGg6ICdoZWxsby13b3JsZCcsIGNvbXBvbmVudDogSGVsbG9Xb3JsZENvbXBvbmVudH1cbiAqIF07XG4gKlxuICogQE5nTW9kdWxlKHtcbiAqICAgaW1wb3J0czogW1JvdXRlck1vZHVsZS5mb3JSb290KHJvdXRlcywge3VzZUhhc2g6IHRydWV9KV0sXG4gKiAgIGV4cG9ydHM6IFtSb3V0ZXJNb2R1bGVdXG4gKiB9KVxuICogZXhwb3J0IGNsYXNzIEFwcFJvdXRpbmdNb2R1bGUge31cbiAqIGBgYFxuICpcbiAqIEBleGFtcGxlXG4gKlxuICogPGV4YW1wbGUgbmFtZT1cInBvLW1lbnUtYmFzaWNcIiB0aXRsZT1cIlBPIE1lbnUgQmFzaWNcIj5cbiAqICAgPGZpbGUgbmFtZT1cInNhbXBsZS1wby1tZW51LWJhc2ljL3NhbXBsZS1wby1tZW51LWJhc2ljLmNvbXBvbmVudC5odG1sXCI+IDwvZmlsZT5cbiAqICAgPGZpbGUgbmFtZT1cInNhbXBsZS1wby1tZW51LWJhc2ljL3NhbXBsZS1wby1tZW51LWJhc2ljLmNvbXBvbmVudC50c1wiPiA8L2ZpbGU+XG4gKiA8L2V4YW1wbGU+XG4gKlxuICogPGV4YW1wbGUgbmFtZT1cInBvLW1lbnUtbGFic1wiIHRpdGxlPVwiUE8gTWVudSBMYWJzXCI+XG4gKiAgIDxmaWxlIG5hbWU9XCJzYW1wbGUtcG8tbWVudS1sYWJzL3NhbXBsZS1wby1tZW51LWxhYnMuY29tcG9uZW50Lmh0bWxcIj4gPC9maWxlPlxuICogICA8ZmlsZSBuYW1lPVwic2FtcGxlLXBvLW1lbnUtbGFicy9zYW1wbGUtcG8tbWVudS1sYWJzLmNvbXBvbmVudC50c1wiPiA8L2ZpbGU+XG4gKiA8L2V4YW1wbGU+XG4gKlxuICogPGV4YW1wbGUgbmFtZT1cInBvLW1lbnUtaHVtYW4tcmVzb3VyY2VzXCIgdGl0bGU9XCJQTyBNZW51IC0gSHVtYW4gUmVzb3VyY2VzXCI+XG4gKiAgIDxmaWxlIG5hbWU9XCJzYW1wbGUtcG8tbWVudS1odW1hbi1yZXNvdXJjZXMvc2FtcGxlLXBvLW1lbnUtaHVtYW4tcmVzb3VyY2VzLmNvbXBvbmVudC5odG1sXCI+IDwvZmlsZT5cbiAqICAgPGZpbGUgbmFtZT1cInNhbXBsZS1wby1tZW51LWh1bWFuLXJlc291cmNlcy9zYW1wbGUtcG8tbWVudS1odW1hbi1yZXNvdXJjZXMuY29tcG9uZW50LnRzXCI+IDwvZmlsZT5cbiAqICAgPGZpbGUgbmFtZT1cInNhbXBsZS1wby1tZW51LWh1bWFuLXJlc291cmNlcy9zYW1wbGUtcG8tbWVudS1odW1hbi1yZXNvdXJjZXMuc2VydmljZS50c1wiPiA8L2ZpbGU+XG4gKiA8L2V4YW1wbGU+XG4gKi9cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3BvLW1lbnUnLFxuICB0ZW1wbGF0ZVVybDogJy4vcG8tbWVudS5jb21wb25lbnQuaHRtbCcsXG4gIHByb3ZpZGVyczogW1BvTWVudUl0ZW1zU2VydmljZSwgUG9NZW51U2VydmljZV1cbn0pXG5leHBvcnQgY2xhc3MgUG9NZW51Q29tcG9uZW50IGV4dGVuZHMgUG9NZW51QmFzZUNvbXBvbmVudCBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQsIE9uRGVzdHJveSwgT25Jbml0LCBEb0NoZWNrIHtcbiAgQENvbnRlbnRDaGlsZChQb01lbnVIZWFkZXJUZW1wbGF0ZURpcmVjdGl2ZSwgeyBzdGF0aWM6IHRydWUgfSkgbWVudUhlYWRlclRlbXBsYXRlOiBQb01lbnVIZWFkZXJUZW1wbGF0ZURpcmVjdGl2ZTtcblxuICBhY3RpdmVNZW51SXRlbTogUG9NZW51SXRlbTtcbiAgY29sbGFwc2VkTW9iaWxlOiBib29sZWFuO1xuICBmaWx0ZXJMb2FkaW5nID0gZmFsc2U7XG4gIGdyb3VwZWRNZW51SXRlbTogUG9NZW51SXRlbTtcbiAgaWQgPSB1dWlkKCk7XG4gIGxpbmtBY3RpdmU6IHN0cmluZztcbiAgbW9iaWxlT3BlbmVkOiBib29sZWFuID0gZmFsc2U7XG4gIG5vRGF0YTogYm9vbGVhbiA9IGZhbHNlO1xuICB0aW1lb3V0RmlsdGVyOiBhbnk7XG5cbiAgcHJpdmF0ZSBmaWx0ZXJpbmdJdGVtczogYm9vbGVhbiA9IGZhbHNlO1xuICBwcml2YXRlIG1lbnVJbml0aWFsaXplZDogYm9vbGVhbiA9IGZhbHNlO1xuICBwcml2YXRlIG1lbnVQcmV2aW91cyA9IG51bGw7XG4gIHByaXZhdGUgcmVzaXplTGlzdGVuZXI6ICgpID0+IHZvaWQ7XG5cbiAgcHJpdmF0ZSBpdGVtU3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb247XG4gIHByaXZhdGUgcm91dGVTdWJzY3JpcHRpb246IFN1YnNjcmlwdGlvbjtcblxuICBjb25zdHJ1Y3RvcihcbiAgICBwdWJsaWMgY2hhbmdlRGV0ZWN0b3I6IENoYW5nZURldGVjdG9yUmVmLFxuICAgIHByaXZhdGUgZWxlbWVudDogRWxlbWVudFJlZixcbiAgICBwcml2YXRlIHJlbmRlcmVyOiBSZW5kZXJlcjIsXG4gICAgcHJpdmF0ZSByb3V0ZXI6IFJvdXRlcixcbiAgICBwcml2YXRlIG1lbnVJdGVtc1NlcnZpY2U6IFBvTWVudUl0ZW1zU2VydmljZSxcbiAgICBtZW51R2xvYmFsU2VydmljZTogUG9NZW51R2xvYmFsU2VydmljZSxcbiAgICBtZW51U2VydmljZTogUG9NZW51U2VydmljZSxcbiAgICBsYW5ndWFnZVNlcnZpY2U6IFBvTGFuZ3VhZ2VTZXJ2aWNlXG4gICkge1xuICAgIHN1cGVyKG1lbnVHbG9iYWxTZXJ2aWNlLCBtZW51U2VydmljZSwgbGFuZ3VhZ2VTZXJ2aWNlKTtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0IGlzQWN0aXZlSXRlbU1lbnVTdWJNZW51KCkge1xuICAgIHJldHVybiB0aGlzLmFjdGl2ZU1lbnVJdGVtWydsZXZlbCddID4gdGhpcy5ncm91cGVkTWVudUl0ZW1bJ2xldmVsJ107XG4gIH1cblxuICBnZXQgZW5hYmxlQ29sbGFwc2UoKSB7XG4gICAgcmV0dXJuIHRoaXMuaXNDb2xsYXBzZWQgJiYgIXRoaXMuY29sbGFwc2VkTW9iaWxlO1xuICB9XG5cbiAgZ2V0IGVuYWJsZUNvbGxhcHNlQnV0dG9uKCkge1xuICAgIHJldHVybiB0aGlzLmFsbG93Q29sbGFwc2VNZW51ICYmICF0aGlzLmNvbGxhcHNlZCAmJiAhdGhpcy5tb2JpbGVPcGVuZWQ7XG4gIH1cblxuICBnZXQgaGFzRm9vdGVyKCkge1xuICAgIHJldHVybiB0aGlzLmVuYWJsZUNvbGxhcHNlQnV0dG9uIHx8IHRoaXMuZW5hYmxlQ29sbGFwc2U7XG4gIH1cblxuICBnZXQgaXNDb2xsYXBzZWQoKSB7XG4gICAgcmV0dXJuIHRoaXMuYWxsb3dDb2xsYXBzZU1lbnUgJiYgdGhpcy5jb2xsYXBzZWQ7XG4gIH1cblxuICBuZ0RvQ2hlY2soKSB7XG4gICAgaWYgKHRoaXMuZmlsdGVyaW5nSXRlbXMgJiYgdGhpcy5maWx0ZXIpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICBjb25zdCBtZW51Q3VycmVudCA9IHRoaXMuc3RyaW5naWZ5KHRoaXMubWVudXMpO1xuXG4gICAgaWYgKHRoaXMubWVudVByZXZpb3VzICE9PSBtZW51Q3VycmVudCB8fCAhdGhpcy5tZW51SW5pdGlhbGl6ZWQpIHtcbiAgICAgIHRoaXMudXBkYXRlTWVudSgpO1xuICAgICAgdGhpcy52YWxpZGF0ZUNvbGxhcHNlQ2xhc3MoKTtcbiAgICB9XG4gIH1cblxuICBuZ09uRGVzdHJveSgpIHtcbiAgICB0aGlzLml0ZW1TdWJzY3JpcHRpb24udW5zdWJzY3JpYmUoKTtcbiAgICB0aGlzLnJvdXRlU3Vic2NyaXB0aW9uLnVuc3Vic2NyaWJlKCk7XG5cbiAgICBpZiAodGhpcy5yZXNpemVMaXN0ZW5lcikge1xuICAgICAgdGhpcy5yZXNpemVMaXN0ZW5lcigpO1xuICAgIH1cblxuICAgIHRoaXMubWVudUdsb2JhbFNlcnZpY2Uuc2VuZFJlbW92ZWRBcHBsaWNhdGlvbk1lbnUodGhpcy5pZCk7XG4gIH1cblxuICBuZ09uSW5pdCgpIHtcbiAgICB0aGlzLnN1YnNjcmliZVRvTWVudUl0ZW0oKTtcbiAgICB0aGlzLnN1YnNjcmliZVRvUm91dGUoKTtcbiAgfVxuXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpIHtcbiAgICB0aGlzLm1lbnVHbG9iYWxTZXJ2aWNlLnNlbmRBcHBsaWNhdGlvbk1lbnUodGhpcyk7XG4gIH1cblxuICBhY3RpdmF0ZU1lbnVCeVVybCh1cmxQYXRoOiBzdHJpbmcsIG1lbnVzOiBBcnJheTxQb01lbnVJdGVtPikge1xuICAgIGlmIChtZW51cykge1xuICAgICAgY29uc3QgdXJsUGF0aFdpdGhvdXRMYXN0RnJhZ21lbnQgPSB1cmxQYXRoLnN1YnN0cigwLCB1cmxQYXRoLmxhc3RJbmRleE9mKCcvJykpO1xuICAgICAgcmV0dXJuIG1lbnVzLnNvbWUobWVudSA9PiB7XG4gICAgICAgIGNvbnN0IGZvcm1hdHRlZE1lbnVMaW5rID0gZ2V0Rm9ybWF0dGVkTGluayhtZW51LmxpbmspO1xuICAgICAgICBjb25zdCBtZW51TGlua1BhdGggPSBgJHt1cmxQYXRoV2l0aG91dExhc3RGcmFnbWVudH0ke2Zvcm1hdHRlZE1lbnVMaW5rLnN1YnN0cihcbiAgICAgICAgICBmb3JtYXR0ZWRNZW51TGluay5sYXN0SW5kZXhPZignLycpXG4gICAgICAgICl9YDtcblxuICAgICAgICBpZiAobWVudUxpbmtQYXRoID09PSB1cmxQYXRoICYmIG1lbnVMaW5rUGF0aCA9PT0gZm9ybWF0dGVkTWVudUxpbmspIHtcbiAgICAgICAgICB0aGlzLmxpbmtBY3RpdmUgPSBmb3JtYXR0ZWRNZW51TGluaztcbiAgICAgICAgICB0aGlzLmFjdGl2YXRlTWVudUl0ZW0obWVudSk7XG4gICAgICAgICAgcmV0dXJuIHRydWU7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgcmV0dXJuIHRoaXMuYWN0aXZhdGVNZW51QnlVcmwodXJsUGF0aCwgbWVudS5zdWJJdGVtcyk7XG4gICAgICAgIH1cbiAgICAgIH0pO1xuICAgIH1cbiAgfVxuXG4gIGNoZWNrQWN0aXZlTWVudUJ5VXJsKHVybFBhdGg6IHN0cmluZyk6IHZvaWQge1xuICAgIGlmICghdGhpcy5saW5rQWN0aXZlIHx8IHRoaXMubGlua0FjdGl2ZSAhPT0gdXJsUGF0aCkge1xuICAgICAgdGhpcy5hY3RpdmF0ZU1lbnVCeVVybCh1cmxQYXRoLCB0aGlzLm1lbnVzKTtcbiAgICB9XG4gIH1cblxuICAvKipcbiAgICogPGEgaWQ9XCJjb2xhcHNlTWV0aG9kXCI+PC9hPlxuICAgKlxuICAgKiAqTcOpdG9kbyBwYXJhIGNvbGFwc2FyIChyZXRyYWlyKSBvIG1lbnUuXG4gICAqL1xuICBjb2xsYXBzZSgpIHtcbiAgICB0aGlzLnZhbGlkYXRlVG9nZ2xlTWVudSh0cnVlKTtcbiAgfVxuXG4gIGRlYm91bmNlRmlsdGVyKGZpbHRlcjogc3RyaW5nKSB7XG4gICAgY2xlYXJUaW1lb3V0KHRoaXMudGltZW91dEZpbHRlcik7XG5cbiAgICB0aGlzLnRpbWVvdXRGaWx0ZXIgPSBzZXRUaW1lb3V0KCgpID0+IHtcbiAgICAgIHRoaXMuZmlsdGVyUHJvY2VzcyhmaWx0ZXIpO1xuICAgIH0sIHBvTWVudURlYm91bmNlVGltZSk7XG4gIH1cblxuICAvKipcbiAgICogPGEgaWQ9XCJleHBhbmRNZXRob2RcIj48L2E+XG4gICAqXG4gICAqICpNw6l0b2RvIHBhcmEgZXhwYW5kaXIgKGF1bWVudGFyKSBvIG1lbnUuXG4gICAqL1xuICBleHBhbmQoKSB7XG4gICAgdGhpcy52YWxpZGF0ZVRvZ2dsZU1lbnUoZmFsc2UpO1xuICB9XG5cbiAgc3Vic2NyaWJlVG9NZW51SXRlbSgpIHtcbiAgICB0aGlzLml0ZW1TdWJzY3JpcHRpb24gPSB0aGlzLm1lbnVJdGVtc1NlcnZpY2UucmVjZWl2ZUZyb21DaGlsZE1lbnVDbGlja2VkKCkuc3Vic2NyaWJlKChtZW51OiBQb01lbnVJdGVtKSA9PiB7XG4gICAgICB0aGlzLmNsaWNrTWVudUl0ZW0obWVudSk7XG4gICAgfSk7XG4gIH1cblxuICBzdWJzY3JpYmVUb1JvdXRlKCkge1xuICAgIHRoaXMucm91dGVTdWJzY3JpcHRpb24gPSB0aGlzLnJvdXRlci5ldmVudHMuc3Vic2NyaWJlKHZhbCA9PiB7XG4gICAgICBpZiAodmFsIGluc3RhbmNlb2YgTmF2aWdhdGlvbkVuZCB8fCB2YWwgaW5zdGFuY2VvZiBOYXZpZ2F0aW9uQ2FuY2VsKSB7XG4gICAgICAgIGNvbnN0IHVybFJvdXRlciA9IHRoaXMuY2hlY2tpbmdSb3V0ZXJDaGlsZHJlbkZyYWdtZW50cygpO1xuICAgICAgICB0aGlzLmNoZWNrQWN0aXZlTWVudUJ5VXJsKHVybFJvdXRlcik7XG4gICAgICB9XG4gICAgfSk7XG4gIH1cblxuICAvKipcbiAgICogPGEgaWQ9XCJ0b2dnbGVNZXRob2RcIj48L2E+XG4gICAqICpNw6l0b2RvIHF1ZSBjb2xhcHNhIGUgZXhwYW5kZSBvIG1lbnUgYWx0ZXJuYWRhbWVudGUuXG4gICAqXG4gICAqID4gKk9zIG3DqXRvZG9zIGFwZW5hcyB2w6NvIGNvbGFwc2FyL2V4cGFuZGlyIG8gbWVudSBzZTpcbiAgICogIC0gVG9kb3Mgb3MgaXRlbnMgZGUgbWVudSB0aXZlcmVtIHZhbG9yIG5hcyBwcm9wcmllZGFkZXMgYGljb25gIGUgYHNob3J0TGFiZWxgLlxuICAgKi9cbiAgdG9nZ2xlKCkge1xuICAgIHRoaXMudmFsaWRhdGVUb2dnbGVNZW51KCF0aGlzLmNvbGxhcHNlZCk7XG4gIH1cblxuICB0b2dnbGVNZW51TW9iaWxlKCk6IHZvaWQge1xuICAgIHRoaXMubW9iaWxlT3BlbmVkID0gIXRoaXMubW9iaWxlT3BlbmVkO1xuICAgIHRoaXMuY29sbGFwc2VkTW9iaWxlID0gdGhpcy5jb2xsYXBzZWQgJiYgdGhpcy5tb2JpbGVPcGVuZWQ7XG5cbiAgICB0aGlzLnZhbGlkYXRlQ29sbGFwc2VDbGFzcyh0aGlzLmNvbGxhcHNlZE1vYmlsZSk7XG5cbiAgICBpZiAoaXNNb2JpbGUoKSkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIGlmICh0aGlzLm1vYmlsZU9wZW5lZCkge1xuICAgICAgdGhpcy5jcmVhdGVSZXNpemVMaXN0ZW5lcigpO1xuICAgIH1cbiAgfVxuXG4gIHByb3RlY3RlZCBjaGVja2luZ1JvdXRlckNoaWxkcmVuRnJhZ21lbnRzKCkge1xuICAgIGNvbnN0IGNoaWxkcmVuUHJpbWFyeSA9IHRoaXMucm91dGVyLnBhcnNlVXJsKHRoaXMucm91dGVyLnVybCkucm9vdC5jaGlsZHJlblsncHJpbWFyeSddO1xuXG4gICAgcmV0dXJuIGNoaWxkcmVuUHJpbWFyeSA/IGAvJHtjaGlsZHJlblByaW1hcnkuc2VnbWVudHMubWFwKGl0ID0+IGl0LnBhdGgpLmpvaW4oJy8nKX1gIDogJyc7XG4gIH1cblxuICBwcm90ZWN0ZWQgdmFsaWRhdGVDb2xsYXBzZUNsYXNzKGNvbGxhcHNlZE1vYmlsZTogYm9vbGVhbiA9IGZhbHNlKSB7XG4gICAgY29uc3Qgd3JhcHBlciA9IHRoaXMuZWxlbWVudC5uYXRpdmVFbGVtZW50LnBhcmVudE5vZGU7XG4gICAgdGhpcy5yZW5kZXJlclt0aGlzLmlzQ29sbGFwc2VkICYmICFjb2xsYXBzZWRNb2JpbGUgPyAnYWRkQ2xhc3MnIDogJ3JlbW92ZUNsYXNzJ10od3JhcHBlciwgJ3BvLWNvbGxhcHNlZC1tZW51Jyk7XG4gIH1cblxuICBwcml2YXRlIGFjdGl2YXRlQ29sbGFwc2VTdWJNZW51SXRlbSgpIHtcbiAgICB0aGlzLmNsZWFyR3JvdXBNZW51SWZGaXJzdExldmVsKHRoaXMuYWN0aXZlTWVudUl0ZW0pO1xuXG4gICAgaWYgKCF0aGlzLmNvbGxhcHNlZCAmJiB0aGlzLmFjdGl2ZU1lbnVJdGVtWydsZXZlbCddID4gcG9NZW51Um9vdExldmVsICYmIHRoaXMuaXNBY3RpdmVJdGVtTWVudVN1Yk1lbnUpIHtcbiAgICAgIHRoaXMub3BlblBhcmVudE1lbnUodGhpcy5hY3RpdmVNZW51SXRlbSk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBhY3RpdmF0ZU1lbnVJdGVtKG1lbnU6IFBvTWVudUl0ZW0pOiB2b2lkIHtcbiAgICB0aGlzLmFjdGl2ZU1lbnVJdGVtID0gbWVudTtcbiAgICB0aGlzLmxpbmtBY3RpdmUgPSBtZW51Lmxpbms7XG4gICAgaWYgKHRoaXMuYWN0aXZlTWVudUl0ZW1bJ2xldmVsJ10gPiBwb01lbnVSb290TGV2ZWwpIHtcbiAgICAgIHRoaXMub3BlblBhcmVudE1lbnUodGhpcy5hY3RpdmVNZW51SXRlbSk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuZ3JvdXBlZE1lbnVJdGVtID0gbnVsbDtcbiAgICB9XG4gICAgdGhpcy5tZW51SXRlbXNTZXJ2aWNlLnNlbmRUb0NoaWxkTWVudUNsaWNrZWQoe1xuICAgICAgYWN0aXZlOiB0aGlzLmFjdGl2ZU1lbnVJdGVtLFxuICAgICAgZ3JvdXBlZDogdGhpcy5ncm91cGVkTWVudUl0ZW0sXG4gICAgICBhY3RpdmF0ZWRCeVJvdXRlOiB0cnVlXG4gICAgfSk7XG4gIH1cblxuICBwcml2YXRlIGFyZVN1Yk1lbnVzKG1lbnVzOiBBcnJheTxQb01lbnVJdGVtPikge1xuICAgIHJldHVybiBtZW51cy5ldmVyeShtZW51ID0+IG1lbnVbJ2xldmVsJ10gPiBwb01lbnVSb290TGV2ZWwpO1xuICB9XG5cbiAgcHJpdmF0ZSBjbGVhckdyb3VwTWVudUlmRmlyc3RMZXZlbChhY3RpdmVNZW51SXRlbTogUG9NZW51SXRlbSkge1xuICAgIGlmIChhY3RpdmVNZW51SXRlbVsnbGV2ZWwnXSA9PT0gcG9NZW51Um9vdExldmVsKSB7XG4gICAgICB0aGlzLmdyb3VwZWRNZW51SXRlbSA9IHVuZGVmaW5lZDtcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGNsaWNrTWVudUl0ZW0obWVudTogUG9NZW51SXRlbSkge1xuICAgIGlmIChtZW51LmFjdGlvbikge1xuICAgICAgdGhpcy5leGVjdXRlTWVudUFjdGlvbihtZW51KTtcbiAgICB9XG5cbiAgICBpZiAobWVudVsndHlwZSddID09PSAnZXh0ZXJuYWxMaW5rJykge1xuICAgICAgb3BlbkV4dGVybmFsTGluayhtZW51LmxpbmspO1xuICAgIH0gZWxzZSBpZiAobWVudVsndHlwZSddID09PSAnaW50ZXJuYWxMaW5rJykge1xuICAgICAgdGhpcy5hY3RpdmF0ZU1lbnVJdGVtKG1lbnUpO1xuICAgIH0gZWxzZSBpZiAobWVudVsndHlwZSddID09PSAnc3ViSXRlbXMnKSB7XG4gICAgICBpZiAodGhpcy5maWx0ZXJpbmdJdGVtcykge1xuICAgICAgICB0aGlzLmZpbHRlcmluZ0l0ZW1zID0gZmFsc2U7XG4gICAgICB9XG5cbiAgICAgIHRoaXMuZ3JvdXBNZW51SXRlbShtZW51KTtcbiAgICB9XG5cbiAgICBpZiAobWVudVsndHlwZSddICE9PSAnc3ViSXRlbXMnKSB7XG4gICAgICB0aGlzLm1vYmlsZU9wZW5lZCA9IGZhbHNlO1xuICAgIH1cbiAgfVxuXG4gIHByaXZhdGUgY29udmVydFRvTWVudUl0ZW1GaWx0ZXJlZChtZW51SXRlbTogYW55ID0geyBsYWJlbDogJycsIGxpbms6ICcnIH0pOiBQb01lbnVJdGVtRmlsdGVyZWQge1xuICAgIGNvbnN0IHsgbGFiZWwsIGxpbmsgfSA9IG1lbnVJdGVtO1xuXG4gICAgY29uc3QgbWVudUl0ZW1GaWx0ZXJlZDogUG9NZW51SXRlbUZpbHRlcmVkID0geyBsYWJlbCwgbGluayB9O1xuXG4gICAgdGhpcy5zZXRNZW51SXRlbVByb3BlcnRpZXMobWVudUl0ZW1GaWx0ZXJlZCk7XG5cbiAgICByZXR1cm4gbWVudUl0ZW1GaWx0ZXJlZDtcbiAgfVxuXG4gIHByaXZhdGUgY3JlYXRlUmVzaXplTGlzdGVuZXIoKSB7XG4gICAgdGhpcy5yZXNpemVMaXN0ZW5lciA9IHRoaXMucmVuZGVyZXIubGlzdGVuKCd3aW5kb3cnLCAncmVzaXplJywgKCkgPT4ge1xuICAgICAgdGhpcy50b2dnbGVSZXNpemUoKTtcbiAgICAgIHRoaXMucmVzaXplTGlzdGVuZXIoKTtcbiAgICB9KTtcbiAgfVxuXG4gIHByaXZhdGUgZXhlY3V0ZU1lbnVBY3Rpb24obWVudTogUG9NZW51SXRlbSk6IHZvaWQge1xuICAgIG1lbnUuYWN0aW9uKG1lbnUpO1xuICB9XG5cbiAgcHJpdmF0ZSBhc3luYyBmaWx0ZXJJdGVtcyhmaWx0ZXI6IHN0cmluZykge1xuICAgIGNvbnN0IHRyaW1GaWx0ZXIgPSBmaWx0ZXIgJiYgZmlsdGVyLnRyaW0oKTtcblxuICAgIGlmICh0cmltRmlsdGVyKSB7XG4gICAgICB0aGlzLmZpbHRlcmVkSXRlbXMgPSBbXTtcbiAgICAgIHRoaXMuZmlsdGVyZWRJdGVtcyA9IHRoaXMuZmlsdGVyU2VydmljZVxuICAgICAgICA/IGF3YWl0IHRoaXMuZmlsdGVyT25TZXJ2aWNlKHRyaW1GaWx0ZXIpXG4gICAgICAgIDogdGhpcy5maWx0ZXJMb2NhbEl0ZW1zKHRyaW1GaWx0ZXIpO1xuICAgICAgdGhpcy5maWx0ZXJpbmdJdGVtcyA9IHRydWU7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuZmlsdGVyZWRJdGVtcyA9IFsuLi50aGlzLm1lbnVzXTtcbiAgICAgIHRoaXMuZmlsdGVyaW5nSXRlbXMgPSBmYWxzZTtcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGZpbHRlckxvY2FsSXRlbXMoZmlsdGVyOiBzdHJpbmcpIHtcbiAgICBjb25zdCBmaWx0ZXJlZEl0ZW1zID0gW107XG5cbiAgICB0aGlzLmZpbmRJdGVtcyh0aGlzLm1lbnVzLCBmaWx0ZXIudG9Mb3dlckNhc2UoKSwgZmlsdGVyZWRJdGVtcyk7XG5cbiAgICByZXR1cm4gZmlsdGVyZWRJdGVtcztcbiAgfVxuXG4gIHByaXZhdGUgZmlsdGVyUHJvY2VzcyhmaWx0ZXI6IHN0cmluZykge1xuICAgIHRoaXMuZmlsdGVyTG9hZGluZyA9IHRydWU7XG5cbiAgICB0aGlzLmZpbHRlckl0ZW1zKGZpbHRlcilcbiAgICAgIC50aGVuKCgpID0+IHtcbiAgICAgICAgdGhpcy5maWx0ZXJMb2FkaW5nID0gZmFsc2U7XG5cbiAgICAgICAgdGhpcy5zaG93Tm9EYXRhKCk7XG4gICAgICAgIHRoaXMuY2hhbmdlRGV0ZWN0b3IuZGV0ZWN0Q2hhbmdlcygpO1xuICAgICAgICB0aGlzLm1lbnVJdGVtc1NlcnZpY2Uuc2VuZFRvQ2hpbGRNZW51Q2xpY2tlZCh7IGFjdGl2ZTogdGhpcy5hY3RpdmVNZW51SXRlbSwgZ3JvdXBlZDogdGhpcy5ncm91cGVkTWVudUl0ZW0gfSk7XG4gICAgICB9KVxuICAgICAgLmNhdGNoKGVycm9yID0+IHtcbiAgICAgICAgdGhpcy5maWx0ZXJMb2FkaW5nID0gZmFsc2U7XG4gICAgICAgIFByb21pc2UucmVqZWN0KGVycm9yKTtcbiAgICAgIH0pO1xuICB9XG5cbiAgcHJpdmF0ZSBhc3luYyBmaWx0ZXJPblNlcnZpY2Uoc2VhcmNoOiBzdHJpbmcgPSAnJykge1xuICAgIGlmIChzZWFyY2gubGVuZ3RoID49IHBvTWVudU1pbkxlbmd0aCkge1xuICAgICAgcmV0dXJuIGF3YWl0IHRoaXMuZmlsdGVyU2VydmljZVxuICAgICAgICAuZ2V0RmlsdGVyZWREYXRhKHNlYXJjaCwgdGhpcy5wYXJhbXMpXG4gICAgICAgIC5waXBlKG1hcChtZW51SXRlbXNGaWx0ZXJlZCA9PiBtZW51SXRlbXNGaWx0ZXJlZC5tYXAobWVudUl0ZW0gPT4gdGhpcy5jb252ZXJ0VG9NZW51SXRlbUZpbHRlcmVkKG1lbnVJdGVtKSkpKVxuICAgICAgICAudG9Qcm9taXNlKCk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiB0aGlzLmZpbHRlcmVkSXRlbXM7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBmaW5kSXRlbXMobWVudXM6IEFycmF5PFBvTWVudUl0ZW0+LCBmaWx0ZXI6IHN0cmluZywgZmlsdGVyZWRJdGVtczogQXJyYXk8YW55Pikge1xuICAgIG1lbnVzLmZvckVhY2gobWVudSA9PiB7XG4gICAgICBjb25zdCBoYXNBY3Rpb24gPSBtZW51LmFjdGlvbiB8fCBtZW51Lmxpbms7XG4gICAgICBjb25zdCBsYWJlbEhhc0ZpbHRlciA9IG1lbnUubGFiZWwudG9Mb3dlckNhc2UoKS5pbmNsdWRlcyhmaWx0ZXIpO1xuXG4gICAgICBpZiAobGFiZWxIYXNGaWx0ZXIgJiYgaGFzQWN0aW9uKSB7XG4gICAgICAgIGNvbnN0IG5ld01lbnUgPSB7IC4uLm1lbnUgfTtcblxuICAgICAgICBpZiAobmV3TWVudS5zdWJJdGVtcz8ubGVuZ3RoKSB7XG4gICAgICAgICAgZGVsZXRlIG5ld01lbnUuc3ViSXRlbXM7XG4gICAgICAgICAgbmV3TWVudVsndHlwZSddID0gdGhpcy5zZXRNZW51VHlwZShuZXdNZW51KTtcbiAgICAgICAgfVxuXG4gICAgICAgIGZpbHRlcmVkSXRlbXMucHVzaChuZXdNZW51KTtcbiAgICAgIH1cblxuICAgICAgaWYgKG1lbnUuc3ViSXRlbXMpIHtcbiAgICAgICAgdGhpcy5maW5kSXRlbXMobWVudS5zdWJJdGVtcywgZmlsdGVyLCBmaWx0ZXJlZEl0ZW1zKTtcbiAgICAgIH1cbiAgICB9KTtcbiAgfVxuXG4gIHByaXZhdGUgZmluZFBhcmVudChtZW51czogQXJyYXk8UG9NZW51SXRlbT4sIG1lbnVJdGVtOiBQb01lbnVJdGVtKTogUG9NZW51SXRlbSB7XG4gICAgY29uc3QgZ2V0UGFyZW50ID0gZnVuY3Rpb24gKG1lbnVJdGVtczogQXJyYXk8UG9NZW51SXRlbT4sIGlkKSB7XG4gICAgICBpZiAobWVudUl0ZW1zKSB7XG4gICAgICAgIGZvciAobGV0IGluZGV4ID0gMDsgaW5kZXggPCBtZW51SXRlbXMubGVuZ3RoOyBpbmRleCsrKSB7XG4gICAgICAgICAgY29uc3QgbWVudSA9IG1lbnVJdGVtc1tpbmRleF07XG4gICAgICAgICAgaWYgKG1lbnUuc3ViSXRlbXMgJiYgbWVudS5zdWJJdGVtcy5maW5kKHN1Ykl0ZW0gPT4gc3ViSXRlbVsnaWQnXSA9PT0gaWQpKSB7XG4gICAgICAgICAgICByZXR1cm4gbWVudTtcbiAgICAgICAgICB9XG4gICAgICAgICAgY29uc3QgZm91bmQgPSBnZXRQYXJlbnQobWVudS5zdWJJdGVtcywgaWQpO1xuICAgICAgICAgIGlmIChmb3VuZCkge1xuICAgICAgICAgICAgcmV0dXJuIGZvdW5kO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuICAgIH07XG4gICAgcmV0dXJuIGdldFBhcmVudChtZW51cywgbWVudUl0ZW1bJ2lkJ10pO1xuICB9XG5cbiAgcHJpdmF0ZSBmaW5kUm9vdFBhcmVudChtZW51czogQXJyYXk8UG9NZW51SXRlbT4sIG1lbnU6IFBvTWVudUl0ZW0pOiBQb01lbnVJdGVtIHtcbiAgICBjb25zdCBmaW5kUGFyZW50ID0gdGhpcy5maW5kUGFyZW50O1xuXG4gICAgY29uc3QgZ2V0Um9vdFBhcmVudCA9IGZ1bmN0aW9uIChtZW51SXRlbXM6IEFycmF5PFBvTWVudUl0ZW0+LCBtZW51SXRlbSk6IFBvTWVudUl0ZW0ge1xuICAgICAgbGV0IHBhcmVudCA9IGZpbmRQYXJlbnQobWVudUl0ZW1zLCBtZW51SXRlbSk7XG5cbiAgICAgIGlmIChwYXJlbnRbJ2xldmVsJ10gIT09IHBvTWVudVJvb3RMZXZlbCkge1xuICAgICAgICBwYXJlbnQgPSBnZXRSb290UGFyZW50KG1lbnVJdGVtcywgcGFyZW50KTtcbiAgICAgIH1cbiAgICAgIHJldHVybiBwYXJlbnQ7XG4gICAgfTtcbiAgICByZXR1cm4gZ2V0Um9vdFBhcmVudChtZW51cywgbWVudSk7XG4gIH1cblxuICBwcml2YXRlIGdldEFjdGl2ZU1lbnVQYXJlbnQobWVudXM6IEFycmF5PFBvTWVudUl0ZW0+LCBhY3RpdmVNZW51SXRlbTogUG9NZW51SXRlbSwgZ3JvdXBlZE1lbnVJdGVtOiBQb01lbnVJdGVtKSB7XG4gICAgaWYgKHRoaXMuYXJlU3ViTWVudXMoW2dyb3VwZWRNZW51SXRlbSwgYWN0aXZlTWVudUl0ZW1dKSkge1xuICAgICAgcmV0dXJuIHRoaXMuZmluZFJvb3RQYXJlbnQobWVudXMsIGFjdGl2ZU1lbnVJdGVtKTtcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGdyb3VwTWVudUl0ZW0obWVudTogUG9NZW51SXRlbSk6IHZvaWQge1xuICAgIGlmICh0aGlzLmNvbGxhcHNlZCkge1xuICAgICAgdGhpcy50b2dnbGVNZW51Q29sbGFwc2UoKTtcbiAgICB9XG5cbiAgICBtZW51Wydpc09wZW5lZCddID0gIW1lbnVbJ2lzT3BlbmVkJ107XG4gICAgdGhpcy5ncm91cGVkTWVudUl0ZW0gPSBtZW51O1xuXG4gICAgaWYgKFxuICAgICAgdGhpcy5hY3RpdmVNZW51SXRlbSAmJlxuICAgICAgbWVudVsnaXNPcGVuZWQnXSAmJlxuICAgICAgdGhpcy5pc0FjdGl2ZUl0ZW1NZW51U3ViTWVudSAmJlxuICAgICAgdGhpcy5pc1Jvb3RNZW51RXF1YWxHcm91cGVkTWVudSh0aGlzLm1lbnVzLCB0aGlzLmFjdGl2ZU1lbnVJdGVtLCBtZW51KVxuICAgICkge1xuICAgICAgdGhpcy5hY3RpdmF0ZU1lbnVJdGVtKHRoaXMuYWN0aXZlTWVudUl0ZW0pO1xuICAgIH1cblxuICAgIHRoaXMubWVudUl0ZW1zU2VydmljZS5zZW5kVG9DaGlsZE1lbnVDbGlja2VkKHsgYWN0aXZlOiB0aGlzLmFjdGl2ZU1lbnVJdGVtLCBncm91cGVkOiB0aGlzLmdyb3VwZWRNZW51SXRlbSB9KTtcbiAgfVxuXG4gIHByaXZhdGUgaXNSb290TWVudUVxdWFsR3JvdXBlZE1lbnUoXG4gICAgbWVudXM6IEFycmF5PFBvTWVudUl0ZW0+LFxuICAgIGFjdGl2ZU1lbnVJdGVtOiBQb01lbnVJdGVtLFxuICAgIGdyb3VwZWRNZW51SXRlbTogUG9NZW51SXRlbVxuICApIHtcbiAgICBjb25zdCBhY3RpdmVNZW51Um9vdFBhcmVudCA9IHRoaXMuZmluZFJvb3RQYXJlbnQobWVudXMsIGFjdGl2ZU1lbnVJdGVtKTtcbiAgICByZXR1cm4gYWN0aXZlTWVudVJvb3RQYXJlbnRbJ2lkJ10gPT09IGdyb3VwZWRNZW51SXRlbVsnaWQnXTtcbiAgfVxuXG4gIHByaXZhdGUgb3BlblBhcmVudE1lbnUoY2hpbGRNZW51OiBQb01lbnVJdGVtKTogdm9pZCB7XG4gICAgY29uc3QgcGFyZW50ID0gdGhpcy5maW5kUGFyZW50KHRoaXMubWVudXMsIGNoaWxkTWVudSk7XG4gICAgcGFyZW50Wydpc09wZW5lZCddID0gdHJ1ZTtcbiAgICB0aGlzLmdyb3VwZWRNZW51SXRlbSA9IHBhcmVudDtcbiAgfVxuXG4gIHByaXZhdGUgc2hvd05vRGF0YSgpIHtcbiAgICB0aGlzLm5vRGF0YSA9IHRoaXMuZmlsdGVyZWRJdGVtcy5sZW5ndGggPT09IDA7XG4gIH1cblxuICBwcml2YXRlIHN0cmluZ2lmeShtZW51czogQXJyYXk8UG9NZW51SXRlbT4pOiBzdHJpbmcge1xuICAgIC8vIG7Do28gZmF6IG8gc3RyaW5naWZ5IGRhIHByb3ByaWVkYWRlIGljb24sIHBvaXMgcG9kZSBjb250ZXIgb2JqZXRvIGNvbXBsZXhvIGUgZGlzcGFyYXIgdW0gZXJyby5cbiAgICByZXR1cm4gSlNPTi5zdHJpbmdpZnkodGhpcy5tZW51cywgKGtleSwgdmFsdWUpID0+IHtcbiAgICAgIGlmIChrZXkgIT09ICdpY29uJykge1xuICAgICAgICByZXR1cm4gdmFsdWU7XG4gICAgICB9XG4gICAgfSk7XG4gIH1cblxuICBwcml2YXRlIHRvZ2dsZUdyb3VwZWRNZW51SXRlbSgpIHtcbiAgICB0aGlzLmdyb3VwZWRNZW51SXRlbVsnaXNPcGVuZWQnXSA9ICF0aGlzLmNvbGxhcHNlZCAmJiB0aGlzLmFsbG93Q29sbGFwc2VNZW51O1xuICB9XG5cbiAgcHJpdmF0ZSB0b2dnbGVNZW51Q29sbGFwc2UoY29sbGFwc2VkOiBib29sZWFuID0gZmFsc2UpIHtcbiAgICB0aGlzLmNvbGxhcHNlZCA9IGNvbGxhcHNlZDtcblxuICAgIGlmICh0aGlzLmdyb3VwZWRNZW51SXRlbSAmJiB0aGlzLmFjdGl2ZU1lbnVJdGVtKSB7XG4gICAgICB0aGlzLmdyb3VwZWRNZW51SXRlbSA9XG4gICAgICAgIHRoaXMuZ2V0QWN0aXZlTWVudVBhcmVudCh0aGlzLm1lbnVzLCB0aGlzLmFjdGl2ZU1lbnVJdGVtLCB0aGlzLmdyb3VwZWRNZW51SXRlbSkgfHwgdGhpcy5ncm91cGVkTWVudUl0ZW07XG4gICAgICB0aGlzLnRvZ2dsZUdyb3VwZWRNZW51SXRlbSgpO1xuICAgIH1cblxuICAgIGlmICh0aGlzLmFjdGl2ZU1lbnVJdGVtKSB7XG4gICAgICB0aGlzLmFjdGl2YXRlQ29sbGFwc2VTdWJNZW51SXRlbSgpO1xuICAgICAgdGhpcy5tZW51SXRlbXNTZXJ2aWNlLnNlbmRUb0NoaWxkTWVudUNsaWNrZWQoe1xuICAgICAgICBhY3RpdmU6IHRoaXMuYWN0aXZlTWVudUl0ZW0sXG4gICAgICAgIGdyb3VwZWQ6IHRoaXMuZ3JvdXBlZE1lbnVJdGVtLFxuICAgICAgICBhY3RpdmF0ZWRCeVJvdXRlOiB0cnVlXG4gICAgICB9KTtcbiAgICB9XG5cbiAgICB0aGlzLnVwZGF0ZU1lbnUoKTtcbiAgfVxuXG4gIHByaXZhdGUgdG9nZ2xlUmVzaXplKCkge1xuICAgIGlmICh0aGlzLm1vYmlsZU9wZW5lZCkge1xuICAgICAgdGhpcy5tb2JpbGVPcGVuZWQgPSBmYWxzZTtcbiAgICAgIHRoaXMuY29sbGFwc2VkTW9iaWxlID0gZmFsc2U7XG4gICAgICB0aGlzLnZhbGlkYXRlQ29sbGFwc2VDbGFzcyh0aGlzLmNvbGxhcHNlZE1vYmlsZSk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSB2YWxpZGF0ZVRvZ2dsZU1lbnUoY29sbGFwc2VkOiBib29sZWFuKSB7XG4gICAgaWYgKCF0aGlzLmFsbG93Q29sbGFwc2VNZW51KSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgdGhpcy50b2dnbGVNZW51Q29sbGFwc2UoY29sbGFwc2VkKTtcbiAgfVxuXG4gIHByaXZhdGUgdXBkYXRlTWVudSgpIHtcbiAgICB0aGlzLm1lbnVJbml0aWFsaXplZCA9IHRydWU7XG4gICAgdGhpcy5zZXRNZW51RXh0cmFQcm9wZXJ0aWVzKCk7XG4gICAgdGhpcy5maWx0ZXJlZEl0ZW1zID0gWy4uLnRoaXMubWVudXNdO1xuICAgIHRoaXMubWVudVByZXZpb3VzID0gdGhpcy5zdHJpbmdpZnkodGhpcy5tZW51cyk7XG4gICAgdGhpcy52YWxpZGF0ZU1lbnVzKHRoaXMubWVudXMpO1xuICB9XG59XG4iLCI8ZGl2ICpuZ0lmPVwibW9iaWxlT3BlbmVkXCIgY2xhc3M9XCJwby1tZW51LW92ZXJsYXlcIiAoY2xpY2spPVwidG9nZ2xlTWVudU1vYmlsZSgpXCI+PC9kaXY+XG48ZGl2IGNsYXNzPVwicG8tbWVudS1tb2JpbGUgcG8tY2xpY2thYmxlXCIgKGNsaWNrKT1cInRvZ2dsZU1lbnVNb2JpbGUoKVwiPlxuICA8c3BhbiBjbGFzcz1cInBvLWljb24gcG8taWNvbi1tZW51XCI+PC9zcGFuPlxuPC9kaXY+XG5cbjxkaXYgY2xhc3M9XCJwby1tZW51XCIgW25nQ2xhc3NdPVwieyAncG8tbWVudS1hbmltYXRpb24nOiBtb2JpbGVPcGVuZWQgfVwiPlxuICA8ZGl2IGNsYXNzPVwicG8tbWVudS1oZWFkZXJcIj5cbiAgICA8ZGl2ICpuZ0lmPVwibG9nbyB8fCAoc2hvcnRMb2dvICYmIGVuYWJsZUNvbGxhcHNlKVwiIGNsYXNzPVwicG8tbWVudS1oZWFkZXItY29udGFpbmVyLWxvZ29cIj5cbiAgICAgIDxhIGhyZWY9XCIuL1wiPlxuICAgICAgICA8aW1nXG4gICAgICAgICAgW25nQ2xhc3NdPVwiZW5hYmxlQ29sbGFwc2UgPyAncG8tbWVudS1zaG9ydC1sb2dvJyA6ICdwby1tZW51LWxvZ28nXCJcbiAgICAgICAgICBbc3JjXT1cImVuYWJsZUNvbGxhcHNlID8gc2hvcnRMb2dvIHx8IGxvZ28gOiBsb2dvXCJcbiAgICAgICAgLz5cbiAgICAgIDwvYT5cbiAgICA8L2Rpdj5cblxuICAgIDxkaXYgKm5nSWY9XCIhZW5hYmxlQ29sbGFwc2UgJiYgbWVudUhlYWRlclRlbXBsYXRlXCIgY2xhc3M9XCJwby1tZW51LWhlYWRlci10ZW1wbGF0ZVwiPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cIm1lbnVIZWFkZXJUZW1wbGF0ZS50ZW1wbGF0ZVJlZlwiPjwvbmctY29udGFpbmVyPlxuICAgIDwvZGl2PlxuXG4gICAgPHBvLW1lbnUtZmlsdGVyICpuZ0lmPVwiZmlsdGVyICYmICFlbmFibGVDb2xsYXBzZVwiIFtwLWxvYWRpbmddPVwiZmlsdGVyTG9hZGluZ1wiIChwLWZpbHRlcik9XCJkZWJvdW5jZUZpbHRlcigkZXZlbnQpXCI+XG4gICAgPC9wby1tZW51LWZpbHRlcj5cbiAgPC9kaXY+XG5cbiAgPG5hdiBjbGFzcz1cInBvLW1lbnUtYm9keVwiPlxuICAgIDwhLS0gSW5uZXIgZSBvdXRlciBwYXJhIGVzY29uZGVyIHNjcm9sbCAtLT5cbiAgICA8ZGl2IGNsYXNzPVwicG8tbWVudS1vdXRlclwiPlxuICAgICAgPGRpdiBjbGFzcz1cInBvLW1lbnUtaW5uZXJcIj5cbiAgICAgICAgPGRpdiAqbmdJZj1cIm5vRGF0YVwiIGNsYXNzPVwicG8tbWVudS1pdGVtLXdyYXBwZXJcIj5cbiAgICAgICAgICA8ZGl2IGNsYXNzPVwicG8tbWVudS1pdGVtLWZpcnN0XCI+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwicG8tbWVudS1pY29uLWNvbnRhaW5lciBwby1tZW51LWl0ZW0tbm8tZGF0YVwiPlxuICAgICAgICAgICAgICA8cG8taWNvbiBjbGFzcz1cInBvLWljb24gcG8taWNvbi1pbmZvIHBvLW1lbnUtaWNvbi1pdGVtIHBvLWxnLTJcIj48L3BvLWljb24+XG4gICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJwby1sZy0xMCBwby1tZW51LWljb24tbGFiZWxcIj57eyBsaXRlcmFscy5pdGVtTm90Rm91bmQgfX08L2Rpdj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cblxuICAgICAgICA8ZGl2ICpuZ0Zvcj1cImxldCBtZW51IG9mIGZpbHRlcmVkSXRlbXM7IGxldCBtZW51SW5kZXggPSBpbmRleFwiIGNsYXNzPVwicG8tbWVudS1pdGVtLXdyYXBwZXJcIj5cbiAgICAgICAgICA8cG8tbWVudS1pdGVtXG4gICAgICAgICAgICBbY2xhc3MucG8tbWVudS1pdGVtLWZpcnN0XT1cIm1lbnVJbmRleCA9PT0gMFwiXG4gICAgICAgICAgICBbcC1hY3Rpb25dPVwibWVudS5hY3Rpb25cIlxuICAgICAgICAgICAgW3AtYmFkZ2UtYWxlcnRdPVwibWVudS5iYWRnZUFsZXJ0XCJcbiAgICAgICAgICAgIFtwLWJhZGdlLWNvbG9yXT1cIm1lbnUuYmFkZ2UgPyBtZW51LmJhZGdlLmNvbG9yIDogdW5kZWZpbmVkXCJcbiAgICAgICAgICAgIFtwLWJhZGdlLXZhbHVlXT1cIm1lbnUuYmFkZ2UgPyBtZW51LmJhZGdlLnZhbHVlIDogdW5kZWZpbmVkXCJcbiAgICAgICAgICAgIFtwLWNvbGxhcHNlZC1tZW51XT1cImVuYWJsZUNvbGxhcHNlXCJcbiAgICAgICAgICAgIFtwLWljb25dPVwiYWxsb3dJY29ucyA/IG1lbnUuaWNvbiA6IG51bGxcIlxuICAgICAgICAgICAgW3AtaWRdPVwibWVudS5pZFwiXG4gICAgICAgICAgICBbcC1sYWJlbF09XCJtZW51LmxhYmVsXCJcbiAgICAgICAgICAgIFtwLWxldmVsXT1cIm1lbnUubGV2ZWxcIlxuICAgICAgICAgICAgW3AtbGlua109XCJtZW51LmxpbmtcIlxuICAgICAgICAgICAgW3Atc2hvcnQtbGFiZWxdPVwibWVudS5zaG9ydExhYmVsXCJcbiAgICAgICAgICAgIFtwLXN1Yi1pdGVtc109XCJtZW51LnN1Ykl0ZW1zXCJcbiAgICAgICAgICAgIFtwLXR5cGVdPVwibWVudS50eXBlXCJcbiAgICAgICAgICA+XG4gICAgICAgICAgPC9wby1tZW51LWl0ZW0+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9kaXY+XG4gICAgPC9kaXY+XG4gIDwvbmF2PlxuXG4gIDxkaXYgKm5nSWY9XCJoYXNGb290ZXJcIiBjbGFzcz1cInBvLW1lbnUtZm9vdGVyXCI+XG4gICAgPGEgY2xhc3M9XCJwby1tZW51LWNvbGxhcHNlLWJ1dHRvbi1pY29uIHBvLWNsaWNrYWJsZVwiIChjbGljayk9XCJ0b2dnbGUoKVwiPlxuICAgICAgPHNwYW5cbiAgICAgICAgY2xhc3M9XCJwby1pY29uXCJcbiAgICAgICAgW2NsYXNzLnBvLWljb24tbWVudS1jbG9zZV09XCJlbmFibGVDb2xsYXBzZUJ1dHRvblwiXG4gICAgICAgIFtjbGFzcy5wby1pY29uLW1lbnUtb3Blbl09XCJlbmFibGVDb2xsYXBzZVwiXG4gICAgICA+XG4gICAgICA8L3NwYW4+XG4gICAgPC9hPlxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
|