@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,32 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { RouterModule } from '@angular/router';
|
|
4
|
+
import { PoBadgeModule } from '../po-badge/po-badge.module';
|
|
5
|
+
import { PoFieldModule } from '../po-field/po-field.module';
|
|
6
|
+
import { PoLoadingModule } from '../po-loading/po-loading.module';
|
|
7
|
+
import { PoMenuComponent } from './po-menu.component';
|
|
8
|
+
import { PoMenuFilterComponent } from './po-menu-filter/po-menu-filter.component';
|
|
9
|
+
import { PoMenuHeaderTemplateDirective } from './po-menu-header-template/po-menu-header-template.directive';
|
|
10
|
+
import { PoMenuItemComponent } from './po-menu-item/po-menu-item.component';
|
|
11
|
+
import { PoIconModule } from '../po-icon/po-icon.module';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
/**
|
|
14
|
+
* @description
|
|
15
|
+
*
|
|
16
|
+
* Módulo do componente po-menu.
|
|
17
|
+
*/
|
|
18
|
+
export class PoMenuModule {
|
|
19
|
+
}
|
|
20
|
+
PoMenuModule.ɵfac = function PoMenuModule_Factory(t) { return new (t || PoMenuModule)(); };
|
|
21
|
+
PoMenuModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: PoMenuModule });
|
|
22
|
+
PoMenuModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [[CommonModule, RouterModule, PoBadgeModule, PoFieldModule, PoLoadingModule, PoIconModule]] });
|
|
23
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoMenuModule, [{
|
|
24
|
+
type: NgModule,
|
|
25
|
+
args: [{
|
|
26
|
+
imports: [CommonModule, RouterModule, PoBadgeModule, PoFieldModule, PoLoadingModule, PoIconModule],
|
|
27
|
+
declarations: [PoMenuComponent, PoMenuFilterComponent, PoMenuHeaderTemplateDirective, PoMenuItemComponent],
|
|
28
|
+
exports: [PoMenuComponent, PoMenuHeaderTemplateDirective]
|
|
29
|
+
}]
|
|
30
|
+
}], null, null); })();
|
|
31
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(PoMenuModule, { declarations: [PoMenuComponent, PoMenuFilterComponent, PoMenuHeaderTemplateDirective, PoMenuItemComponent], imports: [CommonModule, RouterModule, PoBadgeModule, PoFieldModule, PoLoadingModule, PoIconModule], exports: [PoMenuComponent, PoMenuHeaderTemplateDirective] }); })();
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tbWVudS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS9zcmMvbGliL2NvbXBvbmVudHMvcG8tbWVudS9wby1tZW51Lm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFFL0MsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQzVELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUM1RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFFbEUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ3RELE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLDJDQUEyQyxDQUFDO0FBQ2xGLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLDZEQUE2RCxDQUFDO0FBQzVHLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBQzVFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQzs7QUFFekQ7Ozs7R0FJRztBQU1ILE1BQU0sT0FBTyxZQUFZOzt3RUFBWixZQUFZOzhEQUFaLFlBQVk7a0VBSmQsQ0FBQyxZQUFZLEVBQUUsWUFBWSxFQUFFLGFBQWEsRUFBRSxhQUFhLEVBQUUsZUFBZSxFQUFFLFlBQVksQ0FBQzt1RkFJdkYsWUFBWTtjQUx4QixRQUFRO2VBQUM7Z0JBQ1IsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLFlBQVksRUFBRSxhQUFhLEVBQUUsYUFBYSxFQUFFLGVBQWUsRUFBRSxZQUFZLENBQUM7Z0JBQ2xHLFlBQVksRUFBRSxDQUFDLGVBQWUsRUFBRSxxQkFBcUIsRUFBRSw2QkFBNkIsRUFBRSxtQkFBbUIsQ0FBQztnQkFDMUcsT0FBTyxFQUFFLENBQUMsZUFBZSxFQUFFLDZCQUE2QixDQUFDO2FBQzFEOzt3RkFDWSxZQUFZLG1CQUhSLGVBQWUsRUFBRSxxQkFBcUIsRUFBRSw2QkFBNkIsRUFBRSxtQkFBbUIsYUFEL0YsWUFBWSxFQUFFLFlBQVksRUFBRSxhQUFhLEVBQUUsYUFBYSxFQUFFLGVBQWUsRUFBRSxZQUFZLGFBRXZGLGVBQWUsRUFBRSw2QkFBNkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFJvdXRlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5cbmltcG9ydCB7IFBvQmFkZ2VNb2R1bGUgfSBmcm9tICcuLi9wby1iYWRnZS9wby1iYWRnZS5tb2R1bGUnO1xuaW1wb3J0IHsgUG9GaWVsZE1vZHVsZSB9IGZyb20gJy4uL3BvLWZpZWxkL3BvLWZpZWxkLm1vZHVsZSc7XG5pbXBvcnQgeyBQb0xvYWRpbmdNb2R1bGUgfSBmcm9tICcuLi9wby1sb2FkaW5nL3BvLWxvYWRpbmcubW9kdWxlJztcblxuaW1wb3J0IHsgUG9NZW51Q29tcG9uZW50IH0gZnJvbSAnLi9wby1tZW51LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBQb01lbnVGaWx0ZXJDb21wb25lbnQgfSBmcm9tICcuL3BvLW1lbnUtZmlsdGVyL3BvLW1lbnUtZmlsdGVyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBQb01lbnVIZWFkZXJUZW1wbGF0ZURpcmVjdGl2ZSB9IGZyb20gJy4vcG8tbWVudS1oZWFkZXItdGVtcGxhdGUvcG8tbWVudS1oZWFkZXItdGVtcGxhdGUuZGlyZWN0aXZlJztcbmltcG9ydCB7IFBvTWVudUl0ZW1Db21wb25lbnQgfSBmcm9tICcuL3BvLW1lbnUtaXRlbS9wby1tZW51LWl0ZW0uY29tcG9uZW50JztcbmltcG9ydCB7IFBvSWNvbk1vZHVsZSB9IGZyb20gJy4uL3BvLWljb24vcG8taWNvbi5tb2R1bGUnO1xuXG4vKipcbiAqIEBkZXNjcmlwdGlvblxuICpcbiAqIE3Ds2R1bG8gZG8gY29tcG9uZW50ZSBwby1tZW51LlxuICovXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBSb3V0ZXJNb2R1bGUsIFBvQmFkZ2VNb2R1bGUsIFBvRmllbGRNb2R1bGUsIFBvTG9hZGluZ01vZHVsZSwgUG9JY29uTW9kdWxlXSxcbiAgZGVjbGFyYXRpb25zOiBbUG9NZW51Q29tcG9uZW50LCBQb01lbnVGaWx0ZXJDb21wb25lbnQsIFBvTWVudUhlYWRlclRlbXBsYXRlRGlyZWN0aXZlLCBQb01lbnVJdGVtQ29tcG9uZW50XSxcbiAgZXhwb3J0czogW1BvTWVudUNvbXBvbmVudCwgUG9NZW51SGVhZGVyVGVtcGxhdGVEaXJlY3RpdmVdXG59KVxuZXhwb3J0IGNsYXNzIFBvTWVudU1vZHVsZSB7fVxuIl19
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import { Subject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class PoMenuGlobalService {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.applicationMenu = new Subject();
|
|
7
|
+
this.menus = new Subject();
|
|
8
|
+
this.removedApplicationMenu = new Subject();
|
|
9
|
+
// eslint-disable-next-line @typescript-eslint/member-ordering
|
|
10
|
+
this.receiveApplicationMenu$ = this.applicationMenu.asObservable();
|
|
11
|
+
// eslint-disable-next-line @typescript-eslint/member-ordering
|
|
12
|
+
this.receiveMenus$ = this.menus.asObservable();
|
|
13
|
+
// eslint-disable-next-line @typescript-eslint/member-ordering
|
|
14
|
+
this.receiveRemovedApplicationMenu$ = this.removedApplicationMenu.asObservable();
|
|
15
|
+
}
|
|
16
|
+
sendApplicationMenu(menu) {
|
|
17
|
+
this.applicationMenu.next(menu);
|
|
18
|
+
}
|
|
19
|
+
sendMenus(menus) {
|
|
20
|
+
this.menus.next(menus);
|
|
21
|
+
}
|
|
22
|
+
sendRemovedApplicationMenu(id) {
|
|
23
|
+
this.removedApplicationMenu.next(id);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
PoMenuGlobalService.ɵfac = function PoMenuGlobalService_Factory(t) { return new (t || PoMenuGlobalService)(); };
|
|
27
|
+
PoMenuGlobalService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: PoMenuGlobalService, factory: PoMenuGlobalService.ɵfac, providedIn: 'root' });
|
|
28
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoMenuGlobalService, [{
|
|
29
|
+
type: Injectable,
|
|
30
|
+
args: [{
|
|
31
|
+
providedIn: 'root'
|
|
32
|
+
}]
|
|
33
|
+
}], null, null); })();
|
|
34
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tbWVudS1nbG9iYWwuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby1tZW51L3NlcnZpY2VzL3BvLW1lbnUtZ2xvYmFsLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUUzQyxPQUFPLEVBQWMsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDOztBQVEzQyxNQUFNLE9BQU8sbUJBQW1CO0lBSGhDO1FBSVUsb0JBQWUsR0FBRyxJQUFJLE9BQU8sRUFBbUIsQ0FBQztRQUNqRCxVQUFLLEdBQUcsSUFBSSxPQUFPLEVBQXFCLENBQUM7UUFDekMsMkJBQXNCLEdBQUcsSUFBSSxPQUFPLEVBQVUsQ0FBQztRQUV2RCw4REFBOEQ7UUFDOUQsNEJBQXVCLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxZQUFZLEVBQUUsQ0FBQztRQUU5RCw4REFBOEQ7UUFDOUQsa0JBQWEsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLFlBQVksRUFBRSxDQUFDO1FBRTFDLDhEQUE4RDtRQUM5RCxtQ0FBOEIsR0FBRyxJQUFJLENBQUMsc0JBQXNCLENBQUMsWUFBWSxFQUFFLENBQUM7S0FhN0U7SUFYQyxtQkFBbUIsQ0FBQyxJQUFxQjtRQUN2QyxJQUFJLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNsQyxDQUFDO0lBRUQsU0FBUyxDQUFDLEtBQXdCO1FBQ2hDLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ3pCLENBQUM7SUFFRCwwQkFBMEIsQ0FBQyxFQUFVO1FBQ25DLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUM7SUFDdkMsQ0FBQzs7c0ZBeEJVLG1CQUFtQjt5RUFBbkIsbUJBQW1CLFdBQW5CLG1CQUFtQixtQkFGbEIsTUFBTTt1RkFFUCxtQkFBbUI7Y0FIL0IsVUFBVTtlQUFDO2dCQUNWLFVBQVUsRUFBRSxNQUFNO2FBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBPYnNlcnZhYmxlLCBTdWJqZWN0IH0gZnJvbSAncnhqcyc7XG5cbmltcG9ydCB7IFBvTWVudUNvbXBvbmVudCB9IGZyb20gJy4uL3BvLW1lbnUuY29tcG9uZW50JztcbmltcG9ydCB7IFBvTWVudUl0ZW0gfSBmcm9tICcuLi9wby1tZW51LWl0ZW0uaW50ZXJmYWNlJztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCdcbn0pXG5leHBvcnQgY2xhc3MgUG9NZW51R2xvYmFsU2VydmljZSB7XG4gIHByaXZhdGUgYXBwbGljYXRpb25NZW51ID0gbmV3IFN1YmplY3Q8UG9NZW51Q29tcG9uZW50PigpO1xuICBwcml2YXRlIG1lbnVzID0gbmV3IFN1YmplY3Q8QXJyYXk8UG9NZW51SXRlbT4+KCk7XG4gIHByaXZhdGUgcmVtb3ZlZEFwcGxpY2F0aW9uTWVudSA9IG5ldyBTdWJqZWN0PHN0cmluZz4oKTtcblxuICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQHR5cGVzY3JpcHQtZXNsaW50L21lbWJlci1vcmRlcmluZ1xuICByZWNlaXZlQXBwbGljYXRpb25NZW51JCA9IHRoaXMuYXBwbGljYXRpb25NZW51LmFzT2JzZXJ2YWJsZSgpO1xuXG4gIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAdHlwZXNjcmlwdC1lc2xpbnQvbWVtYmVyLW9yZGVyaW5nXG4gIHJlY2VpdmVNZW51cyQgPSB0aGlzLm1lbnVzLmFzT2JzZXJ2YWJsZSgpO1xuXG4gIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAdHlwZXNjcmlwdC1lc2xpbnQvbWVtYmVyLW9yZGVyaW5nXG4gIHJlY2VpdmVSZW1vdmVkQXBwbGljYXRpb25NZW51JCA9IHRoaXMucmVtb3ZlZEFwcGxpY2F0aW9uTWVudS5hc09ic2VydmFibGUoKTtcblxuICBzZW5kQXBwbGljYXRpb25NZW51KG1lbnU6IFBvTWVudUNvbXBvbmVudCkge1xuICAgIHRoaXMuYXBwbGljYXRpb25NZW51Lm5leHQobWVudSk7XG4gIH1cblxuICBzZW5kTWVudXMobWVudXM6IEFycmF5PFBvTWVudUl0ZW0+KSB7XG4gICAgdGhpcy5tZW51cy5uZXh0KG1lbnVzKTtcbiAgfVxuXG4gIHNlbmRSZW1vdmVkQXBwbGljYXRpb25NZW51KGlkOiBzdHJpbmcpIHtcbiAgICB0aGlzLnJlbW92ZWRBcHBsaWNhdGlvbk1lbnUubmV4dChpZCk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import { Subject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* @docsPrivate
|
|
6
|
+
*
|
|
7
|
+
* @description
|
|
8
|
+
*
|
|
9
|
+
* Serviço que implementa a comunicação entre os items do po-menu.
|
|
10
|
+
*/
|
|
11
|
+
export class PoMenuItemsService {
|
|
12
|
+
constructor() {
|
|
13
|
+
this.subjectParent = new Subject();
|
|
14
|
+
this.subjectChild = new Subject();
|
|
15
|
+
}
|
|
16
|
+
// Envia informações do click do po-menu-item para o po-menu
|
|
17
|
+
sendToParentMenuClicked(menu) {
|
|
18
|
+
this.subjectChild.next(menu);
|
|
19
|
+
}
|
|
20
|
+
// Recebe do po-menu-item sua informação de click.
|
|
21
|
+
receiveFromChildMenuClicked() {
|
|
22
|
+
return this.subjectChild.asObservable();
|
|
23
|
+
}
|
|
24
|
+
// Envia para os po-menu-item a resposta do processamento de click de um po-menu-item.
|
|
25
|
+
sendToChildMenuClicked(menu) {
|
|
26
|
+
this.subjectParent.next(menu);
|
|
27
|
+
}
|
|
28
|
+
// Recebe do po-menu as informações processadas do click de um po-menu-item.
|
|
29
|
+
receiveFromParentMenuClicked() {
|
|
30
|
+
return this.subjectParent.asObservable();
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
PoMenuItemsService.ɵfac = function PoMenuItemsService_Factory(t) { return new (t || PoMenuItemsService)(); };
|
|
34
|
+
PoMenuItemsService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: PoMenuItemsService, factory: PoMenuItemsService.ɵfac });
|
|
35
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoMenuItemsService, [{
|
|
36
|
+
type: Injectable
|
|
37
|
+
}], null, null); })();
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tbWVudS1pdGVtcy5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdWkvc3JjL2xpYi9jb21wb25lbnRzL3BvLW1lbnUvc2VydmljZXMvcG8tbWVudS1pdGVtcy5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFM0MsT0FBTyxFQUFjLE9BQU8sRUFBRSxNQUFNLE1BQU0sQ0FBQzs7QUFFM0M7Ozs7OztHQU1HO0FBRUgsTUFBTSxPQUFPLGtCQUFrQjtJQUQvQjtRQUVVLGtCQUFhLEdBQUcsSUFBSSxPQUFPLEVBQU8sQ0FBQztRQUNuQyxpQkFBWSxHQUFHLElBQUksT0FBTyxFQUFPLENBQUM7S0FxQjNDO0lBbkJDLDREQUE0RDtJQUM1RCx1QkFBdUIsQ0FBQyxJQUFZO1FBQ2xDLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQy9CLENBQUM7SUFFRCxrREFBa0Q7SUFDbEQsMkJBQTJCO1FBQ3pCLE9BQU8sSUFBSSxDQUFDLFlBQVksQ0FBQyxZQUFZLEVBQUUsQ0FBQztJQUMxQyxDQUFDO0lBRUQsc0ZBQXNGO0lBQ3RGLHNCQUFzQixDQUFDLElBQVk7UUFDakMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDaEMsQ0FBQztJQUVELDRFQUE0RTtJQUM1RSw0QkFBNEI7UUFDMUIsT0FBTyxJQUFJLENBQUMsYUFBYSxDQUFDLFlBQVksRUFBRSxDQUFDO0lBQzNDLENBQUM7O29GQXRCVSxrQkFBa0I7d0VBQWxCLGtCQUFrQixXQUFsQixrQkFBa0I7dUZBQWxCLGtCQUFrQjtjQUQ5QixVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBPYnNlcnZhYmxlLCBTdWJqZWN0IH0gZnJvbSAncnhqcyc7XG5cbi8qKlxuICogQGRvY3NQcml2YXRlXG4gKlxuICogQGRlc2NyaXB0aW9uXG4gKlxuICogU2VydmnDp28gcXVlIGltcGxlbWVudGEgYSBjb211bmljYcOnw6NvIGVudHJlIG9zIGl0ZW1zIGRvIHBvLW1lbnUuXG4gKi9cbkBJbmplY3RhYmxlKClcbmV4cG9ydCBjbGFzcyBQb01lbnVJdGVtc1NlcnZpY2Uge1xuICBwcml2YXRlIHN1YmplY3RQYXJlbnQgPSBuZXcgU3ViamVjdDxhbnk+KCk7XG4gIHByaXZhdGUgc3ViamVjdENoaWxkID0gbmV3IFN1YmplY3Q8YW55PigpO1xuXG4gIC8vIEVudmlhIGluZm9ybWHDp8O1ZXMgZG8gY2xpY2sgZG8gcG8tbWVudS1pdGVtIHBhcmEgbyBwby1tZW51XG4gIHNlbmRUb1BhcmVudE1lbnVDbGlja2VkKG1lbnU6IG9iamVjdCkge1xuICAgIHRoaXMuc3ViamVjdENoaWxkLm5leHQobWVudSk7XG4gIH1cblxuICAvLyBSZWNlYmUgZG8gcG8tbWVudS1pdGVtIHN1YSBpbmZvcm1hw6fDo28gZGUgY2xpY2suXG4gIHJlY2VpdmVGcm9tQ2hpbGRNZW51Q2xpY2tlZCgpIHtcbiAgICByZXR1cm4gdGhpcy5zdWJqZWN0Q2hpbGQuYXNPYnNlcnZhYmxlKCk7XG4gIH1cblxuICAvLyBFbnZpYSBwYXJhIG9zIHBvLW1lbnUtaXRlbSBhIHJlc3Bvc3RhIGRvIHByb2Nlc3NhbWVudG8gZGUgY2xpY2sgZGUgdW0gcG8tbWVudS1pdGVtLlxuICBzZW5kVG9DaGlsZE1lbnVDbGlja2VkKG1lbnU6IG9iamVjdCkge1xuICAgIHRoaXMuc3ViamVjdFBhcmVudC5uZXh0KG1lbnUpO1xuICB9XG5cbiAgLy8gUmVjZWJlIGRvIHBvLW1lbnUgYXMgaW5mb3JtYcOnw7VlcyBwcm9jZXNzYWRhcyBkbyBjbGljayBkZSB1bSBwby1tZW51LWl0ZW0uXG4gIHJlY2VpdmVGcm9tUGFyZW50TWVudUNsaWNrZWQoKTogT2JzZXJ2YWJsZTxhbnk+IHtcbiAgICByZXR1cm4gdGhpcy5zdWJqZWN0UGFyZW50LmFzT2JzZXJ2YWJsZSgpO1xuICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import { map } from 'rxjs/operators';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common/http";
|
|
5
|
+
/**
|
|
6
|
+
* @docsPrivate
|
|
7
|
+
*
|
|
8
|
+
* @description
|
|
9
|
+
*
|
|
10
|
+
* Serviço que implementa a interface `PoMenuFilter`, utilizado para fazer requisições ao serviço informado pelo usuário,
|
|
11
|
+
* caso for uma URL, no componente `po-menu`.
|
|
12
|
+
*/
|
|
13
|
+
export class PoMenuService {
|
|
14
|
+
constructor(http) {
|
|
15
|
+
this.http = http;
|
|
16
|
+
}
|
|
17
|
+
get url() {
|
|
18
|
+
return this._url;
|
|
19
|
+
}
|
|
20
|
+
configProperties(url) {
|
|
21
|
+
this._url = url;
|
|
22
|
+
}
|
|
23
|
+
getFilteredData(search, params) {
|
|
24
|
+
const filterParams = {
|
|
25
|
+
search,
|
|
26
|
+
...params
|
|
27
|
+
};
|
|
28
|
+
return this.http
|
|
29
|
+
.get(this.url, { params: filterParams })
|
|
30
|
+
.pipe(map((response) => response && response.items));
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
PoMenuService.ɵfac = function PoMenuService_Factory(t) { return new (t || PoMenuService)(i0.ɵɵinject(i1.HttpClient)); };
|
|
34
|
+
PoMenuService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: PoMenuService, factory: PoMenuService.ɵfac });
|
|
35
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoMenuService, [{
|
|
36
|
+
type: Injectable
|
|
37
|
+
}], function () { return [{ type: i1.HttpClient }]; }, null); })();
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tbWVudS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdWkvc3JjL2xpYi9jb21wb25lbnRzL3BvLW1lbnUvc2VydmljZXMvcG8tbWVudS5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFM0MsT0FBTyxFQUFFLEdBQUcsRUFBRSxNQUFNLGdCQUFnQixDQUFDOzs7QUFNckM7Ozs7Ozs7R0FPRztBQUVILE1BQU0sT0FBTyxhQUFhO0lBT3hCLFlBQW9CLElBQWdCO1FBQWhCLFNBQUksR0FBSixJQUFJLENBQVk7SUFBRyxDQUFDO0lBSnhDLElBQUksR0FBRztRQUNMLE9BQU8sSUFBSSxDQUFDLElBQUksQ0FBQztJQUNuQixDQUFDO0lBSUQsZ0JBQWdCLENBQUMsR0FBVztRQUMxQixJQUFJLENBQUMsSUFBSSxHQUFHLEdBQUcsQ0FBQztJQUNsQixDQUFDO0lBRUQsZUFBZSxDQUFDLE1BQWMsRUFBRSxNQUFZO1FBQzFDLE1BQU0sWUFBWSxHQUFHO1lBQ25CLE1BQU07WUFDTixHQUFHLE1BQU07U0FDVixDQUFDO1FBRUYsT0FBTyxJQUFJLENBQUMsSUFBSTthQUNiLEdBQUcsQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFLEVBQUUsTUFBTSxFQUFFLFlBQVksRUFBRSxDQUFDO2FBQ3ZDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxRQUE4QyxFQUFFLEVBQUUsQ0FBQyxRQUFRLElBQUksUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUM7SUFDL0YsQ0FBQzs7MEVBdEJVLGFBQWE7bUVBQWIsYUFBYSxXQUFiLGFBQWE7dUZBQWIsYUFBYTtjQUR6QixVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSHR0cENsaWVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbi9odHRwJztcbmltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgbWFwIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuaW1wb3J0IHsgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xuXG5pbXBvcnQgeyBQb01lbnVJdGVtRmlsdGVyZWQgfSBmcm9tICcuLi9wby1tZW51LWl0ZW0vcG8tbWVudS1pdGVtLWZpbHRlcmVkLmludGVyZmFjZSc7XG5pbXBvcnQgeyBQb01lbnVGaWx0ZXIgfSBmcm9tICcuLi9wby1tZW51LWZpbHRlci9wby1tZW51LWZpbHRlci5pbnRlcmZhY2UnO1xuXG4vKipcbiAqIEBkb2NzUHJpdmF0ZVxuICpcbiAqIEBkZXNjcmlwdGlvblxuICpcbiAqIFNlcnZpw6dvIHF1ZSBpbXBsZW1lbnRhIGEgaW50ZXJmYWNlIGBQb01lbnVGaWx0ZXJgLCB1dGlsaXphZG8gcGFyYSBmYXplciByZXF1aXNpw6fDtWVzIGFvIHNlcnZpw6dvIGluZm9ybWFkbyBwZWxvIHVzdcOhcmlvLFxuICogY2FzbyBmb3IgdW1hIFVSTCwgbm8gY29tcG9uZW50ZSBgcG8tbWVudWAuXG4gKi9cbkBJbmplY3RhYmxlKClcbmV4cG9ydCBjbGFzcyBQb01lbnVTZXJ2aWNlIGltcGxlbWVudHMgUG9NZW51RmlsdGVyIHtcbiAgcHJpdmF0ZSBfdXJsOiBzdHJpbmc7XG5cbiAgZ2V0IHVybCgpOiBzdHJpbmcge1xuICAgIHJldHVybiB0aGlzLl91cmw7XG4gIH1cblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGh0dHA6IEh0dHBDbGllbnQpIHt9XG5cbiAgY29uZmlnUHJvcGVydGllcyh1cmw6IHN0cmluZykge1xuICAgIHRoaXMuX3VybCA9IHVybDtcbiAgfVxuXG4gIGdldEZpbHRlcmVkRGF0YShzZWFyY2g6IHN0cmluZywgcGFyYW1zPzogYW55KTogT2JzZXJ2YWJsZTxBcnJheTxQb01lbnVJdGVtRmlsdGVyZWQ+PiB7XG4gICAgY29uc3QgZmlsdGVyUGFyYW1zID0ge1xuICAgICAgc2VhcmNoLFxuICAgICAgLi4ucGFyYW1zXG4gICAgfTtcblxuICAgIHJldHVybiB0aGlzLmh0dHBcbiAgICAgIC5nZXQodGhpcy51cmwsIHsgcGFyYW1zOiBmaWx0ZXJQYXJhbXMgfSlcbiAgICAgIC5waXBlKG1hcCgocmVzcG9uc2U6IHsgaXRlbXM6IEFycmF5PFBvTWVudUl0ZW1GaWx0ZXJlZD4gfSkgPT4gcmVzcG9uc2UgJiYgcmVzcG9uc2UuaXRlbXMpKTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './po-menu-panel-item/po-menu-panel-item.interface';
|
|
2
|
+
export * from './po-menu-panel.component';
|
|
3
|
+
export * from './po-menu-panel.module';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS9zcmMvbGliL2NvbXBvbmVudHMvcG8tbWVudS1wYW5lbC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1EQUFtRCxDQUFDO0FBQ2xFLGNBQWMsMkJBQTJCLENBQUM7QUFFMUMsY0FBYyx3QkFBd0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcG8tbWVudS1wYW5lbC1pdGVtL3BvLW1lbnUtcGFuZWwtaXRlbS5pbnRlcmZhY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9wby1tZW51LXBhbmVsLmNvbXBvbmVudCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vcG8tbWVudS1wYW5lbC5tb2R1bGUnO1xuIl19
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { Input, Directive } from '@angular/core';
|
|
2
|
+
import { isExternalLink, uuid } from '../../utils/util';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
const poDefaultLogo = 'https://po-ui.io/assets/po-logos/po_black.svg';
|
|
5
|
+
/**
|
|
6
|
+
* @description
|
|
7
|
+
*
|
|
8
|
+
* Este é um componente de menu lateral composto apenas por ícones e com um nível, utilizado para navegação
|
|
9
|
+
* em páginas internas, externas da aplicação ou aciona uma ação.
|
|
10
|
+
*
|
|
11
|
+
* O componente `po-menu-panel` recebe uma lista de objetos do tipo `MenuPanelItem` com as informações dos
|
|
12
|
+
* itens de menu como textos, links para redirecionamento, ações e ícones.
|
|
13
|
+
*/
|
|
14
|
+
export class PoMenuPanelBaseComponent {
|
|
15
|
+
constructor() {
|
|
16
|
+
this._logo = poDefaultLogo;
|
|
17
|
+
}
|
|
18
|
+
/** Lista dos itens do `po-menu-panel`. Se o valor estiver indefinido ou inválido, será inicializado como um array vazio. */
|
|
19
|
+
set menus(menus) {
|
|
20
|
+
this._menus = Array.isArray(menus) ? menus : [];
|
|
21
|
+
this.setMenuExtraProperties(this._menus);
|
|
22
|
+
this.validateMenus(this._menus);
|
|
23
|
+
}
|
|
24
|
+
get menus() {
|
|
25
|
+
return this._menus;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* @optional
|
|
29
|
+
*
|
|
30
|
+
* @description
|
|
31
|
+
*
|
|
32
|
+
* Caminho para a logomarca localizada na parte superior do menu.
|
|
33
|
+
*
|
|
34
|
+
* > Caso seja indefinida será aplicada a imagem default do PO UI.
|
|
35
|
+
*/
|
|
36
|
+
set logo(src) {
|
|
37
|
+
this._logo = src ?? poDefaultLogo;
|
|
38
|
+
}
|
|
39
|
+
get logo() {
|
|
40
|
+
return this._logo;
|
|
41
|
+
}
|
|
42
|
+
setMenuExtraProperties(menus) {
|
|
43
|
+
menus.forEach(menuItem => this.setMenuItemProperties(menuItem));
|
|
44
|
+
}
|
|
45
|
+
setMenuItemProperties(menuItem) {
|
|
46
|
+
menuItem.id = menuItem.id || uuid();
|
|
47
|
+
menuItem.type = this.setMenuType(menuItem);
|
|
48
|
+
}
|
|
49
|
+
setMenuType(menuItem) {
|
|
50
|
+
if (!menuItem.link) {
|
|
51
|
+
return 'noLink';
|
|
52
|
+
}
|
|
53
|
+
if (isExternalLink(menuItem.link)) {
|
|
54
|
+
return 'externalLink';
|
|
55
|
+
}
|
|
56
|
+
return 'internalLink';
|
|
57
|
+
}
|
|
58
|
+
validateMenu(menuItem) {
|
|
59
|
+
if (!menuItem.label) {
|
|
60
|
+
throw new Error('O atributo PoMenuPanelItem.label não pode ser vazio.');
|
|
61
|
+
}
|
|
62
|
+
if (!menuItem.icon) {
|
|
63
|
+
throw new Error('O atributo PoMenuPanelItem.icon não pode ser vazio.');
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
validateMenus(menus) {
|
|
67
|
+
menus.forEach(menu => this.validateMenu(menu));
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
PoMenuPanelBaseComponent.ɵfac = function PoMenuPanelBaseComponent_Factory(t) { return new (t || PoMenuPanelBaseComponent)(); };
|
|
71
|
+
PoMenuPanelBaseComponent.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: PoMenuPanelBaseComponent, inputs: { menus: ["p-menus", "menus"], logo: ["p-logo", "logo"] } });
|
|
72
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoMenuPanelBaseComponent, [{
|
|
73
|
+
type: Directive
|
|
74
|
+
}], null, { menus: [{
|
|
75
|
+
type: Input,
|
|
76
|
+
args: ['p-menus']
|
|
77
|
+
}], logo: [{
|
|
78
|
+
type: Input,
|
|
79
|
+
args: ['p-logo']
|
|
80
|
+
}] }); })();
|
|
81
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tbWVudS1wYW5lbC1iYXNlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby1tZW51LXBhbmVsL3BvLW1lbnUtcGFuZWwtYmFzZS5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLEtBQUssRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFakQsT0FBTyxFQUFFLGNBQWMsRUFBRSxJQUFJLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7QUFLeEQsTUFBTSxhQUFhLEdBQUcsK0NBQStDLENBQUM7QUFFdEU7Ozs7Ozs7O0dBUUc7QUFFSCxNQUFNLE9BQU8sd0JBQXdCO0lBRHJDO1FBR1UsVUFBSyxHQUFXLGFBQWEsQ0FBQztLQWlFdkM7SUEvREMsNEhBQTRIO0lBQzVILElBQXNCLEtBQUssQ0FBQyxLQUE2QjtRQUN2RCxJQUFJLENBQUMsTUFBTSxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1FBRWhELElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDekMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDbEMsQ0FBQztJQUVELElBQUksS0FBSztRQUNQLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQztJQUNyQixDQUFDO0lBRUQ7Ozs7Ozs7O09BUUc7SUFDSCxJQUFxQixJQUFJLENBQUMsR0FBVztRQUNuQyxJQUFJLENBQUMsS0FBSyxHQUFHLEdBQUcsSUFBSSxhQUFhLENBQUM7SUFDcEMsQ0FBQztJQUVELElBQUksSUFBSTtRQUNOLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQztJQUNwQixDQUFDO0lBRU8sc0JBQXNCLENBQUMsS0FBNkI7UUFDMUQsS0FBSyxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBMEIsUUFBUSxDQUFDLENBQUMsQ0FBQztJQUMzRixDQUFDO0lBRU8scUJBQXFCLENBQUMsUUFBaUM7UUFDN0QsUUFBUSxDQUFDLEVBQUUsR0FBRyxRQUFRLENBQUMsRUFBRSxJQUFJLElBQUksRUFBRSxDQUFDO1FBQ3BDLFFBQVEsQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUM3QyxDQUFDO0lBRU8sV0FBVyxDQUFDLFFBQXlCO1FBQzNDLElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFO1lBQ2xCLE9BQU8sUUFBUSxDQUFDO1NBQ2pCO1FBRUQsSUFBSSxjQUFjLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxFQUFFO1lBQ2pDLE9BQU8sY0FBYyxDQUFDO1NBQ3ZCO1FBRUQsT0FBTyxjQUFjLENBQUM7SUFDeEIsQ0FBQztJQUVPLFlBQVksQ0FBQyxRQUF5QjtRQUM1QyxJQUFJLENBQUMsUUFBUSxDQUFDLEtBQUssRUFBRTtZQUNuQixNQUFNLElBQUksS0FBSyxDQUFDLHNEQUFzRCxDQUFDLENBQUM7U0FDekU7UUFFRCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksRUFBRTtZQUNsQixNQUFNLElBQUksS0FBSyxDQUFDLHFEQUFxRCxDQUFDLENBQUM7U0FDeEU7SUFDSCxDQUFDO0lBRU8sYUFBYSxDQUFDLEtBQUs7UUFDekIsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztJQUNqRCxDQUFDOztnR0FsRVUsd0JBQXdCOzJFQUF4Qix3QkFBd0I7dUZBQXhCLHdCQUF3QjtjQURwQyxTQUFTO2dCQU1jLEtBQUs7a0JBQTFCLEtBQUs7bUJBQUMsU0FBUztZQW9CSyxJQUFJO2tCQUF4QixLQUFLO21CQUFDLFFBQVEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbnB1dCwgRGlyZWN0aXZlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IGlzRXh0ZXJuYWxMaW5rLCB1dWlkIH0gZnJvbSAnLi4vLi4vdXRpbHMvdXRpbCc7XG5cbmltcG9ydCB7IFBvTWVudVBhbmVsSXRlbSB9IGZyb20gJy4vcG8tbWVudS1wYW5lbC1pdGVtL3BvLW1lbnUtcGFuZWwtaXRlbS5pbnRlcmZhY2UnO1xuaW1wb3J0IHsgUG9NZW51UGFuZWxJdGVtSW50ZXJuYWwgfSBmcm9tICcuL3BvLW1lbnUtcGFuZWwtaXRlbS9wby1tZW51LXBhbmVsLWl0ZW0taW50ZXJuYWwuaW50ZXJmYWNlJztcblxuY29uc3QgcG9EZWZhdWx0TG9nbyA9ICdodHRwczovL3BvLXVpLmlvL2Fzc2V0cy9wby1sb2dvcy9wb19ibGFjay5zdmcnO1xuXG4vKipcbiAqIEBkZXNjcmlwdGlvblxuICpcbiAqIEVzdGUgw6kgdW0gY29tcG9uZW50ZSBkZSBtZW51IGxhdGVyYWwgY29tcG9zdG8gYXBlbmFzIHBvciDDrWNvbmVzIGUgY29tIHVtIG7DrXZlbCwgdXRpbGl6YWRvIHBhcmEgbmF2ZWdhw6fDo29cbiAqIGVtIHDDoWdpbmFzIGludGVybmFzLCBleHRlcm5hcyBkYSBhcGxpY2HDp8OjbyBvdSBhY2lvbmEgdW1hIGHDp8Ojby5cbiAqXG4gKiBPIGNvbXBvbmVudGUgYHBvLW1lbnUtcGFuZWxgIHJlY2ViZSB1bWEgbGlzdGEgZGUgb2JqZXRvcyBkbyB0aXBvIGBNZW51UGFuZWxJdGVtYCBjb20gYXMgaW5mb3JtYcOnw7VlcyBkb3NcbiAqIGl0ZW5zIGRlIG1lbnUgY29tbyB0ZXh0b3MsIGxpbmtzIHBhcmEgcmVkaXJlY2lvbmFtZW50bywgYcOnw7VlcyBlIMOtY29uZXMuXG4gKi9cbkBEaXJlY3RpdmUoKVxuZXhwb3J0IGNsYXNzIFBvTWVudVBhbmVsQmFzZUNvbXBvbmVudCB7XG4gIHByaXZhdGUgX21lbnVzO1xuICBwcml2YXRlIF9sb2dvOiBzdHJpbmcgPSBwb0RlZmF1bHRMb2dvO1xuXG4gIC8qKiBMaXN0YSBkb3MgaXRlbnMgZG8gYHBvLW1lbnUtcGFuZWxgLiBTZSBvIHZhbG9yIGVzdGl2ZXIgaW5kZWZpbmlkbyBvdSBpbnbDoWxpZG8sIHNlcsOhIGluaWNpYWxpemFkbyBjb21vIHVtIGFycmF5IHZhemlvLiAqL1xuICBASW5wdXQoJ3AtbWVudXMnKSBzZXQgbWVudXMobWVudXM6IEFycmF5PFBvTWVudVBhbmVsSXRlbT4pIHtcbiAgICB0aGlzLl9tZW51cyA9IEFycmF5LmlzQXJyYXkobWVudXMpID8gbWVudXMgOiBbXTtcblxuICAgIHRoaXMuc2V0TWVudUV4dHJhUHJvcGVydGllcyh0aGlzLl9tZW51cyk7XG4gICAgdGhpcy52YWxpZGF0ZU1lbnVzKHRoaXMuX21lbnVzKTtcbiAgfVxuXG4gIGdldCBtZW51cygpIHtcbiAgICByZXR1cm4gdGhpcy5fbWVudXM7XG4gIH1cblxuICAvKipcbiAgICogQG9wdGlvbmFsXG4gICAqXG4gICAqIEBkZXNjcmlwdGlvblxuICAgKlxuICAgKiBDYW1pbmhvIHBhcmEgYSBsb2dvbWFyY2EgbG9jYWxpemFkYSBuYSBwYXJ0ZSBzdXBlcmlvciBkbyBtZW51LlxuICAgKlxuICAgKiA+IENhc28gc2VqYSBpbmRlZmluaWRhIHNlcsOhIGFwbGljYWRhIGEgaW1hZ2VtIGRlZmF1bHQgZG8gUE8gVUkuXG4gICAqL1xuICBASW5wdXQoJ3AtbG9nbycpIHNldCBsb2dvKHNyYzogc3RyaW5nKSB7XG4gICAgdGhpcy5fbG9nbyA9IHNyYyA/PyBwb0RlZmF1bHRMb2dvO1xuICB9XG5cbiAgZ2V0IGxvZ28oKSB7XG4gICAgcmV0dXJuIHRoaXMuX2xvZ287XG4gIH1cblxuICBwcml2YXRlIHNldE1lbnVFeHRyYVByb3BlcnRpZXMobWVudXM6IEFycmF5PFBvTWVudVBhbmVsSXRlbT4pIHtcbiAgICBtZW51cy5mb3JFYWNoKG1lbnVJdGVtID0+IHRoaXMuc2V0TWVudUl0ZW1Qcm9wZXJ0aWVzKDxQb01lbnVQYW5lbEl0ZW1JbnRlcm5hbD5tZW51SXRlbSkpO1xuICB9XG5cbiAgcHJpdmF0ZSBzZXRNZW51SXRlbVByb3BlcnRpZXMobWVudUl0ZW06IFBvTWVudVBhbmVsSXRlbUludGVybmFsKSB7XG4gICAgbWVudUl0ZW0uaWQgPSBtZW51SXRlbS5pZCB8fCB1dWlkKCk7XG4gICAgbWVudUl0ZW0udHlwZSA9IHRoaXMuc2V0TWVudVR5cGUobWVudUl0ZW0pO1xuICB9XG5cbiAgcHJpdmF0ZSBzZXRNZW51VHlwZShtZW51SXRlbTogUG9NZW51UGFuZWxJdGVtKTogc3RyaW5nIHtcbiAgICBpZiAoIW1lbnVJdGVtLmxpbmspIHtcbiAgICAgIHJldHVybiAnbm9MaW5rJztcbiAgICB9XG5cbiAgICBpZiAoaXNFeHRlcm5hbExpbmsobWVudUl0ZW0ubGluaykpIHtcbiAgICAgIHJldHVybiAnZXh0ZXJuYWxMaW5rJztcbiAgICB9XG5cbiAgICByZXR1cm4gJ2ludGVybmFsTGluayc7XG4gIH1cblxuICBwcml2YXRlIHZhbGlkYXRlTWVudShtZW51SXRlbTogUG9NZW51UGFuZWxJdGVtKSB7XG4gICAgaWYgKCFtZW51SXRlbS5sYWJlbCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdPIGF0cmlidXRvIFBvTWVudVBhbmVsSXRlbS5sYWJlbCBuw6NvIHBvZGUgc2VyIHZhemlvLicpO1xuICAgIH1cblxuICAgIGlmICghbWVudUl0ZW0uaWNvbikge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdPIGF0cmlidXRvIFBvTWVudVBhbmVsSXRlbS5pY29uIG7Do28gcG9kZSBzZXIgdmF6aW8uJyk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSB2YWxpZGF0ZU1lbnVzKG1lbnVzKTogdm9pZCB7XG4gICAgbWVudXMuZm9yRWFjaChtZW51ID0+IHRoaXMudmFsaWRhdGVNZW51KG1lbnUpKTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tbWVudS1wYW5lbC1pdGVtLWludGVybmFsLmludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby1tZW51LXBhbmVsL3BvLW1lbnUtcGFuZWwtaXRlbS9wby1tZW51LXBhbmVsLWl0ZW0taW50ZXJuYWwuaW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQb01lbnVQYW5lbEl0ZW0gfSBmcm9tICcuL3BvLW1lbnUtcGFuZWwtaXRlbS5pbnRlcmZhY2UnO1xuXG4vKipcbiAqIEBkb2NzUHJpdmF0ZVxuICpcbiAqIEB1c2VkQnkgUG9NZW51UGFuZWxJdGVtXG4gKlxuICogQGRlc2NyaXB0aW9uXG4gKlxuICogSW50ZXJmYWNlIHBhcmEgb3MgaXRlbnMgZGUgbWVudSBpbnRlcm5vcyBkbyBjb21wb25lbnRlIGBwby1tZW51LXBhbmVsYC5cbiAqXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgUG9NZW51UGFuZWxJdGVtSW50ZXJuYWwgZXh0ZW5kcyBQb01lbnVQYW5lbEl0ZW0ge1xuICAvLyBJZGVudGlmaWNhZG9yIGRvIGl0ZW0uXG4gIGlkOiBzdHJpbmc7XG5cbiAgLy8gSW5kaWNhIG8gdGlwbyBkZSBpdGVtLCBjb21vICdpbnRlcm5hbExpbmsnLCAnbm9MaW5rJyBlICdleHRlcm5hbExpbmsnLlxuICB0eXBlOiBzdHJpbmc7XG5cbiAgLy8gSW5kaWNhIHNlIG8gaXRlbSBlc3TDoSBzZWxlY2lvbmFkby5cbiAgaXNTZWxlY3RlZD86IGJvb2xlYW47XG59XG4iXX0=
|
package/esm2020/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.component.mjs
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "../services/po-menu-panel-items.service";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
5
|
+
import * as i3 from "@angular/router";
|
|
6
|
+
import * as i4 from "../../../directives/po-tooltip/po-tooltip.directive";
|
|
7
|
+
function PoMenuPanelItemComponent_a_0_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
8
|
+
i0.ɵɵelementContainer(0);
|
|
9
|
+
} }
|
|
10
|
+
function PoMenuPanelItemComponent_a_0_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
i0.ɵɵelementStart(0, "a", 4);
|
|
12
|
+
i0.ɵɵtemplate(1, PoMenuPanelItemComponent_a_0_ng_container_1_Template, 1, 0, "ng-container", 5);
|
|
13
|
+
i0.ɵɵelementEnd();
|
|
14
|
+
} if (rf & 2) {
|
|
15
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
16
|
+
const _r3 = i0.ɵɵreference(4);
|
|
17
|
+
i0.ɵɵproperty("routerLink", ctx_r0.menuItemInternal.link);
|
|
18
|
+
i0.ɵɵadvance(1);
|
|
19
|
+
i0.ɵɵproperty("ngTemplateOutlet", _r3);
|
|
20
|
+
} }
|
|
21
|
+
function PoMenuPanelItemComponent_a_1_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
i0.ɵɵelementContainer(0);
|
|
23
|
+
} }
|
|
24
|
+
function PoMenuPanelItemComponent_a_1_Template(rf, ctx) { if (rf & 1) {
|
|
25
|
+
i0.ɵɵelementStart(0, "a", 6);
|
|
26
|
+
i0.ɵɵtemplate(1, PoMenuPanelItemComponent_a_1_ng_container_1_Template, 1, 0, "ng-container", 5);
|
|
27
|
+
i0.ɵɵelementEnd();
|
|
28
|
+
} if (rf & 2) {
|
|
29
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
30
|
+
const _r3 = i0.ɵɵreference(4);
|
|
31
|
+
i0.ɵɵproperty("href", ctx_r1.menuItemInternal.link, i0.ɵɵsanitizeUrl);
|
|
32
|
+
i0.ɵɵadvance(1);
|
|
33
|
+
i0.ɵɵproperty("ngTemplateOutlet", _r3);
|
|
34
|
+
} }
|
|
35
|
+
function PoMenuPanelItemComponent_a_2_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
36
|
+
i0.ɵɵelementContainer(0);
|
|
37
|
+
} }
|
|
38
|
+
function PoMenuPanelItemComponent_a_2_Template(rf, ctx) { if (rf & 1) {
|
|
39
|
+
i0.ɵɵelementStart(0, "a", 7);
|
|
40
|
+
i0.ɵɵtemplate(1, PoMenuPanelItemComponent_a_2_ng_container_1_Template, 1, 0, "ng-container", 5);
|
|
41
|
+
i0.ɵɵelementEnd();
|
|
42
|
+
} if (rf & 2) {
|
|
43
|
+
i0.ɵɵnextContext();
|
|
44
|
+
const _r3 = i0.ɵɵreference(4);
|
|
45
|
+
i0.ɵɵadvance(1);
|
|
46
|
+
i0.ɵɵproperty("ngTemplateOutlet", _r3);
|
|
47
|
+
} }
|
|
48
|
+
function PoMenuPanelItemComponent_ng_template_3_Template(rf, ctx) { if (rf & 1) {
|
|
49
|
+
const _r9 = i0.ɵɵgetCurrentView();
|
|
50
|
+
i0.ɵɵelementStart(0, "div", 8);
|
|
51
|
+
i0.ɵɵlistener("click", function PoMenuPanelItemComponent_ng_template_3_Template_div_click_0_listener($event) { i0.ɵɵrestoreView(_r9); const ctx_r8 = i0.ɵɵnextContext(); return ctx_r8.clickMenuItem($event); });
|
|
52
|
+
i0.ɵɵelement(1, "span");
|
|
53
|
+
i0.ɵɵelementEnd();
|
|
54
|
+
} if (rf & 2) {
|
|
55
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
|
56
|
+
i0.ɵɵclassProp("po-menu-panel-item-selected", ctx_r4.menuItemInternal.isSelected);
|
|
57
|
+
i0.ɵɵproperty("p-tooltip", ctx_r4.menuItemInternal.label);
|
|
58
|
+
i0.ɵɵadvance(1);
|
|
59
|
+
i0.ɵɵclassMapInterpolate1("po-icon ", ctx_r4.menuItemInternal.icon, "");
|
|
60
|
+
} }
|
|
61
|
+
/**
|
|
62
|
+
* @docsPrivate
|
|
63
|
+
*
|
|
64
|
+
* @description
|
|
65
|
+
*
|
|
66
|
+
* Componente que implementa cada item do po-menu-panel.
|
|
67
|
+
*/
|
|
68
|
+
export class PoMenuPanelItemComponent {
|
|
69
|
+
constructor(menuItemsService) {
|
|
70
|
+
this.menuItemsService = menuItemsService;
|
|
71
|
+
}
|
|
72
|
+
ngOnDestroy() {
|
|
73
|
+
this.itemsSubscription.unsubscribe();
|
|
74
|
+
}
|
|
75
|
+
ngOnInit() {
|
|
76
|
+
// subscribe to menu component messages
|
|
77
|
+
this.subscribeMenuClickedFromParent();
|
|
78
|
+
}
|
|
79
|
+
clickMenuItem(event) {
|
|
80
|
+
if (!(event.ctrlKey || event.metaKey)) {
|
|
81
|
+
event.preventDefault();
|
|
82
|
+
// Emmit to parent
|
|
83
|
+
this.menuItemsService.sendToParentMenuClicked(this.menuItemInternal);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
activateMenu(menu) {
|
|
87
|
+
this.menuItemInternal.isSelected = this.menuItemInternal.id === menu.id;
|
|
88
|
+
}
|
|
89
|
+
processMenuItem(menu) {
|
|
90
|
+
if (this.menuItemInternal.type === 'internalLink') {
|
|
91
|
+
this.activateMenu(menu.active);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
subscribeMenuClickedFromParent() {
|
|
95
|
+
this.itemsSubscription = this.menuItemsService.receiveFromParentMenuClicked().subscribe(menu => {
|
|
96
|
+
this.processMenuItem(menu);
|
|
97
|
+
});
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
PoMenuPanelItemComponent.ɵfac = function PoMenuPanelItemComponent_Factory(t) { return new (t || PoMenuPanelItemComponent)(i0.ɵɵdirectiveInject(i1.PoMenuPanelItemsService)); };
|
|
101
|
+
PoMenuPanelItemComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PoMenuPanelItemComponent, selectors: [["po-menu-panel-item"]], inputs: { menuItemInternal: ["p-menu-item-internal", "menuItemInternal"] }, decls: 5, vars: 3, consts: [[3, "routerLink", 4, "ngIf"], [3, "href", 4, "ngIf"], ["href", "javascript:;", 4, "ngIf"], ["menuItemTemplate", ""], [3, "routerLink"], [4, "ngTemplateOutlet"], [3, "href"], ["href", "javascript:;"], ["p-tooltip-position", "right", 1, "po-menu-panel-item", 3, "p-tooltip", "click"]], template: function PoMenuPanelItemComponent_Template(rf, ctx) { if (rf & 1) {
|
|
102
|
+
i0.ɵɵtemplate(0, PoMenuPanelItemComponent_a_0_Template, 2, 2, "a", 0);
|
|
103
|
+
i0.ɵɵtemplate(1, PoMenuPanelItemComponent_a_1_Template, 2, 2, "a", 1);
|
|
104
|
+
i0.ɵɵtemplate(2, PoMenuPanelItemComponent_a_2_Template, 2, 1, "a", 2);
|
|
105
|
+
i0.ɵɵtemplate(3, PoMenuPanelItemComponent_ng_template_3_Template, 2, 6, "ng-template", null, 3, i0.ɵɵtemplateRefExtractor);
|
|
106
|
+
} if (rf & 2) {
|
|
107
|
+
i0.ɵɵproperty("ngIf", ctx.menuItemInternal.type === "internalLink");
|
|
108
|
+
i0.ɵɵadvance(1);
|
|
109
|
+
i0.ɵɵproperty("ngIf", ctx.menuItemInternal.type === "externalLink");
|
|
110
|
+
i0.ɵɵadvance(1);
|
|
111
|
+
i0.ɵɵproperty("ngIf", ctx.menuItemInternal.type === "noLink");
|
|
112
|
+
} }, directives: [i2.NgIf, i3.RouterLinkWithHref, i2.NgTemplateOutlet, i4.PoTooltipDirective], encapsulation: 2 });
|
|
113
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoMenuPanelItemComponent, [{
|
|
114
|
+
type: Component,
|
|
115
|
+
args: [{ selector: 'po-menu-panel-item', template: "<!-- menu com link interno -->\n<a *ngIf=\"menuItemInternal.type === 'internalLink'\" [routerLink]=\"menuItemInternal.link\">\n <ng-container *ngTemplateOutlet=\"menuItemTemplate\"></ng-container>\n</a>\n\n<!-- menu com link externo -->\n<a *ngIf=\"menuItemInternal.type === 'externalLink'\" [href]=\"menuItemInternal.link\">\n <ng-container *ngTemplateOutlet=\"menuItemTemplate\"></ng-container>\n</a>\n\n<!-- menu sem link -->\n<a *ngIf=\"menuItemInternal.type === 'noLink'\" href=\"javascript:;\">\n <ng-container *ngTemplateOutlet=\"menuItemTemplate\"></ng-container>\n</a>\n\n<ng-template #menuItemTemplate>\n <div\n class=\"po-menu-panel-item\"\n p-tooltip-position=\"right\"\n [class.po-menu-panel-item-selected]=\"menuItemInternal.isSelected\"\n [p-tooltip]=\"menuItemInternal.label\"\n (click)=\"clickMenuItem($event)\"\n >\n <span class=\"po-icon {{ menuItemInternal.icon }}\"></span>\n </div>\n</ng-template>\n" }]
|
|
116
|
+
}], function () { return [{ type: i1.PoMenuPanelItemsService }]; }, { menuItemInternal: [{
|
|
117
|
+
type: Input,
|
|
118
|
+
args: ['p-menu-item-internal']
|
|
119
|
+
}] }); })();
|
|
120
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tbWVudS1wYW5lbC1pdGVtLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby1tZW51LXBhbmVsL3BvLW1lbnUtcGFuZWwtaXRlbS9wby1tZW51LXBhbmVsLWl0ZW0uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdWkvc3JjL2xpYi9jb21wb25lbnRzL3BvLW1lbnUtcGFuZWwvcG8tbWVudS1wYW5lbC1pdGVtL3BvLW1lbnUtcGFuZWwtaXRlbS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBcUIsTUFBTSxlQUFlLENBQUM7Ozs7Ozs7SUNFbEUsd0JBQWtFOzs7SUFEcEUsNEJBQXlGO0lBQ3ZGLCtGQUFrRTtJQUNwRSxpQkFBSTs7OztJQUZnRCx5REFBb0M7SUFDdkUsZUFBa0M7SUFBbEMsc0NBQWtDOzs7SUFLakQsd0JBQWtFOzs7SUFEcEUsNEJBQW1GO0lBQ2pGLCtGQUFrRTtJQUNwRSxpQkFBSTs7OztJQUZnRCxxRUFBOEI7SUFDakUsZUFBa0M7SUFBbEMsc0NBQWtDOzs7SUFLakQsd0JBQWtFOzs7SUFEcEUsNEJBQWtFO0lBQ2hFLCtGQUFrRTtJQUNwRSxpQkFBSTs7OztJQURhLGVBQWtDO0lBQWxDLHNDQUFrQzs7OztJQUlqRCw4QkFNQztJQURDLGdMQUFTLDRCQUFxQixJQUFDO0lBRS9CLHVCQUF5RDtJQUMzRCxpQkFBTTs7O0lBTEosaUZBQWlFO0lBQ2pFLHlEQUFvQztJQUc5QixlQUEyQztJQUEzQyx1RUFBMkM7O0FEaEJyRDs7Ozs7O0dBTUc7QUFLSCxNQUFNLE9BQU8sd0JBQXdCO0lBS25DLFlBQW9CLGdCQUF5QztRQUF6QyxxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQXlCO0lBQUcsQ0FBQztJQUVqRSxXQUFXO1FBQ1QsSUFBSSxDQUFDLGlCQUFpQixDQUFDLFdBQVcsRUFBRSxDQUFDO0lBQ3ZDLENBQUM7SUFFRCxRQUFRO1FBQ04sdUNBQXVDO1FBQ3ZDLElBQUksQ0FBQyw4QkFBOEIsRUFBRSxDQUFDO0lBQ3hDLENBQUM7SUFFRCxhQUFhLENBQUMsS0FBSztRQUNqQixJQUFJLENBQUMsQ0FBQyxLQUFLLENBQUMsT0FBTyxJQUFJLEtBQUssQ0FBQyxPQUFPLENBQUMsRUFBRTtZQUNyQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7WUFFdkIsa0JBQWtCO1lBQ2xCLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyx1QkFBdUIsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztTQUN0RTtJQUNILENBQUM7SUFFTyxZQUFZLENBQUMsSUFBNkI7UUFDaEQsSUFBSSxDQUFDLGdCQUFnQixDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsRUFBRSxLQUFLLElBQUksQ0FBQyxFQUFFLENBQUM7SUFDMUUsQ0FBQztJQUVPLGVBQWUsQ0FBQyxJQUFJO1FBQzFCLElBQUksSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksS0FBSyxjQUFjLEVBQUU7WUFDakQsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7U0FDaEM7SUFDSCxDQUFDO0lBRU8sOEJBQThCO1FBQ3BDLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsNEJBQTRCLEVBQUUsQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLEVBQUU7WUFDN0YsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUM3QixDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7O2dHQXZDVSx3QkFBd0I7MkVBQXhCLHdCQUF3QjtRQ2pCckMscUVBRUk7UUFHSixxRUFFSTtRQUdKLHFFQUVJO1FBRUosMEhBVWM7O1FBeEJWLG1FQUE4QztRQUs5QyxlQUE4QztRQUE5QyxtRUFBOEM7UUFLOUMsZUFBd0M7UUFBeEMsNkRBQXdDOzt1RkRPL0Isd0JBQXdCO2NBSnBDLFNBQVM7MkJBQ0Usb0JBQW9COzBFQUlDLGdCQUFnQjtrQkFBOUMsS0FBSzttQkFBQyxzQkFBc0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkRlc3Ryb3ksIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBTdWJzY3JpcHRpb24gfSBmcm9tICdyeGpzJztcblxuaW1wb3J0IHsgUG9NZW51UGFuZWxJdGVtSW50ZXJuYWwgfSBmcm9tICcuL3BvLW1lbnUtcGFuZWwtaXRlbS1pbnRlcm5hbC5pbnRlcmZhY2UnO1xuaW1wb3J0IHsgUG9NZW51UGFuZWxJdGVtc1NlcnZpY2UgfSBmcm9tICcuLi9zZXJ2aWNlcy9wby1tZW51LXBhbmVsLWl0ZW1zLnNlcnZpY2UnO1xuXG4vKipcbiAqIEBkb2NzUHJpdmF0ZVxuICpcbiAqIEBkZXNjcmlwdGlvblxuICpcbiAqIENvbXBvbmVudGUgcXVlIGltcGxlbWVudGEgY2FkYSBpdGVtIGRvIHBvLW1lbnUtcGFuZWwuXG4gKi9cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3BvLW1lbnUtcGFuZWwtaXRlbScsXG4gIHRlbXBsYXRlVXJsOiAnLi9wby1tZW51LXBhbmVsLWl0ZW0uY29tcG9uZW50Lmh0bWwnXG59KVxuZXhwb3J0IGNsYXNzIFBvTWVudVBhbmVsSXRlbUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uRGVzdHJveSwgT25Jbml0IHtcbiAgQElucHV0KCdwLW1lbnUtaXRlbS1pbnRlcm5hbCcpIG1lbnVJdGVtSW50ZXJuYWw6IFBvTWVudVBhbmVsSXRlbUludGVybmFsO1xuXG4gIGl0ZW1zU3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb247XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBtZW51SXRlbXNTZXJ2aWNlOiBQb01lbnVQYW5lbEl0ZW1zU2VydmljZSkge31cblxuICBuZ09uRGVzdHJveSgpIHtcbiAgICB0aGlzLml0ZW1zU3Vic2NyaXB0aW9uLnVuc3Vic2NyaWJlKCk7XG4gIH1cblxuICBuZ09uSW5pdCgpIHtcbiAgICAvLyBzdWJzY3JpYmUgdG8gbWVudSBjb21wb25lbnQgbWVzc2FnZXNcbiAgICB0aGlzLnN1YnNjcmliZU1lbnVDbGlja2VkRnJvbVBhcmVudCgpO1xuICB9XG5cbiAgY2xpY2tNZW51SXRlbShldmVudCkge1xuICAgIGlmICghKGV2ZW50LmN0cmxLZXkgfHwgZXZlbnQubWV0YUtleSkpIHtcbiAgICAgIGV2ZW50LnByZXZlbnREZWZhdWx0KCk7XG5cbiAgICAgIC8vIEVtbWl0IHRvIHBhcmVudFxuICAgICAgdGhpcy5tZW51SXRlbXNTZXJ2aWNlLnNlbmRUb1BhcmVudE1lbnVDbGlja2VkKHRoaXMubWVudUl0ZW1JbnRlcm5hbCk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBhY3RpdmF0ZU1lbnUobWVudTogUG9NZW51UGFuZWxJdGVtSW50ZXJuYWwpIHtcbiAgICB0aGlzLm1lbnVJdGVtSW50ZXJuYWwuaXNTZWxlY3RlZCA9IHRoaXMubWVudUl0ZW1JbnRlcm5hbC5pZCA9PT0gbWVudS5pZDtcbiAgfVxuXG4gIHByaXZhdGUgcHJvY2Vzc01lbnVJdGVtKG1lbnUpIHtcbiAgICBpZiAodGhpcy5tZW51SXRlbUludGVybmFsLnR5cGUgPT09ICdpbnRlcm5hbExpbmsnKSB7XG4gICAgICB0aGlzLmFjdGl2YXRlTWVudShtZW51LmFjdGl2ZSk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBzdWJzY3JpYmVNZW51Q2xpY2tlZEZyb21QYXJlbnQoKSB7XG4gICAgdGhpcy5pdGVtc1N1YnNjcmlwdGlvbiA9IHRoaXMubWVudUl0ZW1zU2VydmljZS5yZWNlaXZlRnJvbVBhcmVudE1lbnVDbGlja2VkKCkuc3Vic2NyaWJlKG1lbnUgPT4ge1xuICAgICAgdGhpcy5wcm9jZXNzTWVudUl0ZW0obWVudSk7XG4gICAgfSk7XG4gIH1cbn1cbiIsIjwhLS0gbWVudSBjb20gbGluayBpbnRlcm5vIC0tPlxuPGEgKm5nSWY9XCJtZW51SXRlbUludGVybmFsLnR5cGUgPT09ICdpbnRlcm5hbExpbmsnXCIgW3JvdXRlckxpbmtdPVwibWVudUl0ZW1JbnRlcm5hbC5saW5rXCI+XG4gIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJtZW51SXRlbVRlbXBsYXRlXCI+PC9uZy1jb250YWluZXI+XG48L2E+XG5cbjwhLS0gbWVudSBjb20gbGluayBleHRlcm5vIC0tPlxuPGEgKm5nSWY9XCJtZW51SXRlbUludGVybmFsLnR5cGUgPT09ICdleHRlcm5hbExpbmsnXCIgW2hyZWZdPVwibWVudUl0ZW1JbnRlcm5hbC5saW5rXCI+XG4gIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJtZW51SXRlbVRlbXBsYXRlXCI+PC9uZy1jb250YWluZXI+XG48L2E+XG5cbjwhLS0gbWVudSBzZW0gbGluayAtLT5cbjxhICpuZ0lmPVwibWVudUl0ZW1JbnRlcm5hbC50eXBlID09PSAnbm9MaW5rJ1wiIGhyZWY9XCJqYXZhc2NyaXB0OjtcIj5cbiAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cIm1lbnVJdGVtVGVtcGxhdGVcIj48L25nLWNvbnRhaW5lcj5cbjwvYT5cblxuPG5nLXRlbXBsYXRlICNtZW51SXRlbVRlbXBsYXRlPlxuICA8ZGl2XG4gICAgY2xhc3M9XCJwby1tZW51LXBhbmVsLWl0ZW1cIlxuICAgIHAtdG9vbHRpcC1wb3NpdGlvbj1cInJpZ2h0XCJcbiAgICBbY2xhc3MucG8tbWVudS1wYW5lbC1pdGVtLXNlbGVjdGVkXT1cIm1lbnVJdGVtSW50ZXJuYWwuaXNTZWxlY3RlZFwiXG4gICAgW3AtdG9vbHRpcF09XCJtZW51SXRlbUludGVybmFsLmxhYmVsXCJcbiAgICAoY2xpY2spPVwiY2xpY2tNZW51SXRlbSgkZXZlbnQpXCJcbiAgPlxuICAgIDxzcGFuIGNsYXNzPVwicG8taWNvbiB7eyBtZW51SXRlbUludGVybmFsLmljb24gfX1cIj48L3NwYW4+XG4gIDwvZGl2PlxuPC9uZy10ZW1wbGF0ZT5cbiJdfQ==
|
package/esm2020/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.interface.mjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tbWVudS1wYW5lbC1pdGVtLmludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby1tZW51LXBhbmVsL3BvLW1lbnUtcGFuZWwtaXRlbS9wby1tZW51LXBhbmVsLWl0ZW0uaW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEB1c2VkQnkgUG9NZW51UGFuZWxDb21wb25lbnRcbiAqXG4gKiBAZGVzY3JpcHRpb25cbiAqXG4gKiBJbnRlcmZhY2UgcGFyYSBvcyBpdGVucyBkZSBtZW51IGRvIGNvbXBvbmVudGUgYHBvLW1lbnUtcGFuZWxgLlxuICpcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBQb01lbnVQYW5lbEl0ZW0ge1xuICAvKiogQcOnw6NvIHBlcnNvbmFsaXphZGEgcGFyYSBjbGlxdWUgZG8gaXRlbSBkZSBtZW51LiAqL1xuICBhY3Rpb24/OiBGdW5jdGlvbjtcblxuICAvKiogIMONY29uZSBwYXJhIG8gaXRlbSBkZSBtZW51LCBvcyBbw61jb25lcyBhY2VpdG9zXSgvZ3VpZGVzL2ljb25zKSBzw6NvIG9zIGRlZmluaWRvcyBubyBndWlhIGRlIGVzdGlsbyBkYSBQTy4gKi9cbiAgaWNvbjogc3RyaW5nO1xuXG4gIC8qKiBUZXh0byBkbyBpdGVtIGRlIG1lbnUuICovXG4gIGxhYmVsOiBzdHJpbmc7XG5cbiAgLyoqIExpbmsgcGFyYSByZWRpcmVjaW9uYW1lbnRvIG5vIGNsaWNrIGRvIGl0ZW0gZG8gbWVudSwgcG9kZW5kbyBzZXIgdW0gbGluayBpbnRlcm5vIG91IGV4dGVybm8uICovXG4gIGxpbms/OiBzdHJpbmc7XG59XG4iXX0=
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { NavigationEnd } from '@angular/router';
|
|
3
|
+
import { getFormattedLink, openExternalLink } from '../../utils/util';
|
|
4
|
+
import { PoMenuPanelBaseComponent } from './po-menu-panel-base.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@angular/common";
|
|
7
|
+
import * as i2 from "./services/po-menu-panel-items.service";
|
|
8
|
+
import * as i3 from "@angular/router";
|
|
9
|
+
import * as i4 from "./po-menu-panel-item/po-menu-panel-item.component";
|
|
10
|
+
function PoMenuPanelComponent_div_6_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
i0.ɵɵelementStart(0, "div", 7);
|
|
12
|
+
i0.ɵɵelement(1, "po-menu-panel-item", 8);
|
|
13
|
+
i0.ɵɵelementEnd();
|
|
14
|
+
} if (rf & 2) {
|
|
15
|
+
const menu_r1 = ctx.$implicit;
|
|
16
|
+
const menuIndex_r2 = ctx.index;
|
|
17
|
+
i0.ɵɵadvance(1);
|
|
18
|
+
i0.ɵɵclassProp("po-menu-panel-item-first", menuIndex_r2 === 0);
|
|
19
|
+
i0.ɵɵproperty("p-menu-item-internal", menu_r1);
|
|
20
|
+
} }
|
|
21
|
+
/**
|
|
22
|
+
* @docsExtends PoMenuPanelBaseComponent
|
|
23
|
+
*
|
|
24
|
+
* @description
|
|
25
|
+
*
|
|
26
|
+
* Para o menu funcionar corretamente é necessário importar o `RouterModule` e `Routes` do módulo principal de
|
|
27
|
+
* sua aplicação:
|
|
28
|
+
*
|
|
29
|
+
* ````
|
|
30
|
+
* import { RouterModule, Routes } from '@angular/router';
|
|
31
|
+
*
|
|
32
|
+
* ...
|
|
33
|
+
*
|
|
34
|
+
* @NgModule({
|
|
35
|
+
* imports: [
|
|
36
|
+
* RouterModule,
|
|
37
|
+
* Routes,
|
|
38
|
+
* ...
|
|
39
|
+
* PoModule,
|
|
40
|
+
* ...
|
|
41
|
+
* ],
|
|
42
|
+
* declarations: [
|
|
43
|
+
* AppComponent
|
|
44
|
+
* ],
|
|
45
|
+
* providers: [],
|
|
46
|
+
* bootstrap: [AppComponent]
|
|
47
|
+
* })
|
|
48
|
+
* export class AppModule { }
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* Além disso é necessário criar um módulo configurando as rotas da aplicação.
|
|
52
|
+
*
|
|
53
|
+
* ```
|
|
54
|
+
* import { NgModule } from '@angular/core';
|
|
55
|
+
*
|
|
56
|
+
* import { RouterModule, Routes } from '@angular/router';
|
|
57
|
+
*
|
|
58
|
+
* import { HelloWorldComponent } from './hello-world/hello-world.component';
|
|
59
|
+
*
|
|
60
|
+
* const routes: Routes = [
|
|
61
|
+
* {path: 'hello-world', component: HelloWorldComponent}
|
|
62
|
+
* ];
|
|
63
|
+
*
|
|
64
|
+
* @NgModule({
|
|
65
|
+
* imports: [RouterModule.forRoot(routes, {useHash: true})],
|
|
66
|
+
* exports: [RouterModule]
|
|
67
|
+
* })
|
|
68
|
+
* export class AppRoutingModule {}
|
|
69
|
+
* ```
|
|
70
|
+
*
|
|
71
|
+
* @example
|
|
72
|
+
*
|
|
73
|
+
* <example name="po-menu-panel-basic" title="PO Menu Panel Basic">
|
|
74
|
+
* <file name="sample-po-menu-panel-basic/sample-po-menu-panel-basic.component.html"> </file>
|
|
75
|
+
* <file name="sample-po-menu-panel-basic/sample-po-menu-panel-basic.component.ts"> </file>
|
|
76
|
+
* </example>
|
|
77
|
+
*
|
|
78
|
+
* <example name="po-menu-panel-labs" title="PO Menu Panel Labs">
|
|
79
|
+
* <file name="sample-po-menu-panel-labs/sample-po-menu-panel-labs.component.html"> </file>
|
|
80
|
+
* <file name="sample-po-menu-panel-labs/sample-po-menu-panel-labs.component.ts"> </file>
|
|
81
|
+
* </example>
|
|
82
|
+
*
|
|
83
|
+
* <example name="po-menu-panel-customer" title="PO Menu Panel - Customers">
|
|
84
|
+
* <file name="sample-po-menu-panel-customer/sample-po-menu-panel-customer.component.html"> </file>
|
|
85
|
+
* <file name="sample-po-menu-panel-customer/sample-po-menu-panel-customer.component.ts"> </file>
|
|
86
|
+
* </example>
|
|
87
|
+
*/
|
|
88
|
+
export class PoMenuPanelComponent extends PoMenuPanelBaseComponent {
|
|
89
|
+
constructor(viewRef, location, menuItemsService, router) {
|
|
90
|
+
super();
|
|
91
|
+
this.location = location;
|
|
92
|
+
this.menuItemsService = menuItemsService;
|
|
93
|
+
this.router = router;
|
|
94
|
+
}
|
|
95
|
+
ngOnDestroy() {
|
|
96
|
+
this.itemSubscription.unsubscribe();
|
|
97
|
+
this.routeSubscription.unsubscribe();
|
|
98
|
+
}
|
|
99
|
+
ngOnInit() {
|
|
100
|
+
this.subscribeToMenuItem();
|
|
101
|
+
this.subscribeToRoute();
|
|
102
|
+
}
|
|
103
|
+
activateMenuByUrl(urlPath, menus) {
|
|
104
|
+
if (menus) {
|
|
105
|
+
return menus.some(menu => {
|
|
106
|
+
if (getFormattedLink(menu.link) === urlPath) {
|
|
107
|
+
this.activateMenuItem(menu);
|
|
108
|
+
return true;
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
activateMenuItem(menu) {
|
|
114
|
+
this.activeMenuItem = menu;
|
|
115
|
+
this.linkActive = getFormattedLink(menu.link);
|
|
116
|
+
this.menuItemsService.sendToChildMenuClicked({ active: this.activeMenuItem, activatedByRoute: true });
|
|
117
|
+
}
|
|
118
|
+
checkActiveMenuByUrl(urlPath) {
|
|
119
|
+
if (!this.linkActive || this.linkActive !== urlPath) {
|
|
120
|
+
this.activateMenuByUrl(urlPath, this.menus);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
clickMenuItem(menu) {
|
|
124
|
+
if (menu.action) {
|
|
125
|
+
menu.action(menu);
|
|
126
|
+
}
|
|
127
|
+
if (menu.type === 'externalLink') {
|
|
128
|
+
openExternalLink(menu.link);
|
|
129
|
+
}
|
|
130
|
+
else if (menu.type === 'internalLink') {
|
|
131
|
+
this.activateMenuItem(menu);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
subscribeToRoute() {
|
|
135
|
+
this.routeSubscription = this.router.events.subscribe(rounterEvent => {
|
|
136
|
+
if (rounterEvent instanceof NavigationEnd) {
|
|
137
|
+
this.checkActiveMenuByUrl(this.location.path());
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
}
|
|
141
|
+
subscribeToMenuItem() {
|
|
142
|
+
this.itemSubscription = this.menuItemsService
|
|
143
|
+
.receiveFromChildMenuClicked()
|
|
144
|
+
.subscribe((menu) => this.clickMenuItem(menu));
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
PoMenuPanelComponent.ɵfac = function PoMenuPanelComponent_Factory(t) { return new (t || PoMenuPanelComponent)(i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i1.Location), i0.ɵɵdirectiveInject(i2.PoMenuPanelItemsService), i0.ɵɵdirectiveInject(i3.Router)); };
|
|
148
|
+
PoMenuPanelComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PoMenuPanelComponent, selectors: [["po-menu-panel"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 7, vars: 2, consts: [[1, "po-menu-panel"], [1, "po-menu-panel-logo-container"], ["href", "./"], ["alt", "main-logo", 1, "po-menu-panel-logo", 3, "src"], [1, "po-menu-panel-container"], [1, "po-menu-panel-inner"], ["class", "po-menu-panel-item-wrapper", 4, "ngFor", "ngForOf"], [1, "po-menu-panel-item-wrapper"], [3, "p-menu-item-internal"]], template: function PoMenuPanelComponent_Template(rf, ctx) { if (rf & 1) {
|
|
149
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
150
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
151
|
+
i0.ɵɵelementStart(2, "a", 2);
|
|
152
|
+
i0.ɵɵelement(3, "img", 3);
|
|
153
|
+
i0.ɵɵelementEnd();
|
|
154
|
+
i0.ɵɵelementEnd();
|
|
155
|
+
i0.ɵɵelementStart(4, "nav", 4);
|
|
156
|
+
i0.ɵɵelementStart(5, "div", 5);
|
|
157
|
+
i0.ɵɵtemplate(6, PoMenuPanelComponent_div_6_Template, 2, 3, "div", 6);
|
|
158
|
+
i0.ɵɵelementEnd();
|
|
159
|
+
i0.ɵɵelementEnd();
|
|
160
|
+
i0.ɵɵelementEnd();
|
|
161
|
+
} if (rf & 2) {
|
|
162
|
+
i0.ɵɵadvance(3);
|
|
163
|
+
i0.ɵɵproperty("src", ctx.logo, i0.ɵɵsanitizeUrl);
|
|
164
|
+
i0.ɵɵadvance(3);
|
|
165
|
+
i0.ɵɵproperty("ngForOf", ctx.menus);
|
|
166
|
+
} }, directives: [i1.NgForOf, i4.PoMenuPanelItemComponent], encapsulation: 2 });
|
|
167
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoMenuPanelComponent, [{
|
|
168
|
+
type: Component,
|
|
169
|
+
args: [{ selector: 'po-menu-panel', template: "<div class=\"po-menu-panel\">\n <div class=\"po-menu-panel-logo-container\">\n <a href=\"./\">\n <img class=\"po-menu-panel-logo\" alt=\"main-logo\" [src]=\"logo\" />\n </a>\n </div>\n\n <nav class=\"po-menu-panel-container\">\n <div class=\"po-menu-panel-inner\">\n <div *ngFor=\"let menu of menus; let menuIndex = index\" class=\"po-menu-panel-item-wrapper\">\n <po-menu-panel-item [class.po-menu-panel-item-first]=\"menuIndex === 0\" [p-menu-item-internal]=\"menu\">\n </po-menu-panel-item>\n </div>\n </div>\n </nav>\n</div>\n" }]
|
|
170
|
+
}], function () { return [{ type: i0.ViewContainerRef }, { type: i1.Location }, { type: i2.PoMenuPanelItemsService }, { type: i3.Router }]; }, null); })();
|
|
171
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tbWVudS1wYW5lbC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS9zcmMvbGliL2NvbXBvbmVudHMvcG8tbWVudS1wYW5lbC9wby1tZW51LXBhbmVsLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby1tZW51LXBhbmVsL3BvLW1lbnUtcGFuZWwuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBdUMsTUFBTSxlQUFlLENBQUM7QUFFL0UsT0FBTyxFQUFFLGFBQWEsRUFBVSxNQUFNLGlCQUFpQixDQUFDO0FBSXhELE9BQU8sRUFBZ0IsZ0JBQWdCLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUVwRixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQzs7Ozs7OztJQ0NwRSw4QkFBMEY7SUFDeEYsd0NBQ3FCO0lBQ3ZCLGlCQUFNOzs7O0lBRmdCLGVBQWtEO0lBQWxELDhEQUFrRDtJQUFDLDhDQUE2Qjs7QURHNUc7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQWtFRztBQU1ILE1BQU0sT0FBTyxvQkFBcUIsU0FBUSx3QkFBd0I7SUFPaEUsWUFDRSxPQUF5QixFQUNqQixRQUFrQixFQUNsQixnQkFBeUMsRUFDekMsTUFBYztRQUV0QixLQUFLLEVBQUUsQ0FBQztRQUpBLGFBQVEsR0FBUixRQUFRLENBQVU7UUFDbEIscUJBQWdCLEdBQWhCLGdCQUFnQixDQUF5QjtRQUN6QyxXQUFNLEdBQU4sTUFBTSxDQUFRO0lBR3hCLENBQUM7SUFFRCxXQUFXO1FBQ1QsSUFBSSxDQUFDLGdCQUFnQixDQUFDLFdBQVcsRUFBRSxDQUFDO1FBQ3BDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxXQUFXLEVBQUUsQ0FBQztJQUN2QyxDQUFDO0lBRUQsUUFBUTtRQUNOLElBQUksQ0FBQyxtQkFBbUIsRUFBRSxDQUFDO1FBQzNCLElBQUksQ0FBQyxnQkFBZ0IsRUFBRSxDQUFDO0lBQzFCLENBQUM7SUFFTyxpQkFBaUIsQ0FBQyxPQUFlLEVBQUUsS0FBNkI7UUFDdEUsSUFBSSxLQUFLLEVBQUU7WUFDVCxPQUFPLEtBQUssQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUU7Z0JBQ3ZCLElBQUksZ0JBQWdCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLE9BQU8sRUFBRTtvQkFDM0MsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxDQUFDO29CQUM1QixPQUFPLElBQUksQ0FBQztpQkFDYjtZQUNILENBQUMsQ0FBQyxDQUFDO1NBQ0o7SUFDSCxDQUFDO0lBRU8sZ0JBQWdCLENBQUMsSUFBcUI7UUFDNUMsSUFBSSxDQUFDLGNBQWMsR0FBRyxJQUFJLENBQUM7UUFDM0IsSUFBSSxDQUFDLFVBQVUsR0FBRyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDOUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLHNCQUFzQixDQUFDLEVBQUUsTUFBTSxFQUFFLElBQUksQ0FBQyxjQUFjLEVBQUUsZ0JBQWdCLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN4RyxDQUFDO0lBRU8sb0JBQW9CLENBQUMsT0FBZTtRQUMxQyxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsSUFBSSxJQUFJLENBQUMsVUFBVSxLQUFLLE9BQU8sRUFBRTtZQUNuRCxJQUFJLENBQUMsaUJBQWlCLENBQUMsT0FBTyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztTQUM3QztJQUNILENBQUM7SUFFTyxhQUFhLENBQUMsSUFBNkI7UUFDakQsSUFBSSxJQUFJLENBQUMsTUFBTSxFQUFFO1lBQ2YsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQztTQUNuQjtRQUVELElBQUksSUFBSSxDQUFDLElBQUksS0FBSyxjQUFjLEVBQUU7WUFDaEMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1NBQzdCO2FBQU0sSUFBSSxJQUFJLENBQUMsSUFBSSxLQUFLLGNBQWMsRUFBRTtZQUN2QyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLENBQUM7U0FDN0I7SUFDSCxDQUFDO0lBRU8sZ0JBQWdCO1FBQ3RCLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsWUFBWSxDQUFDLEVBQUU7WUFDbkUsSUFBSSxZQUFZLFlBQVksYUFBYSxFQUFFO2dCQUN6QyxJQUFJLENBQUMsb0JBQW9CLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDO2FBQ2pEO1FBQ0gsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRU8sbUJBQW1CO1FBQ3pCLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxJQUFJLENBQUMsZ0JBQWdCO2FBQzFDLDJCQUEyQixFQUFFO2FBQzdCLFNBQVMsQ0FBQyxDQUFDLElBQTZCLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztJQUM1RSxDQUFDOzt3RkF6RVUsb0JBQW9CO3VFQUFwQixvQkFBb0I7UUNyRmpDLDhCQUEyQjtRQUN6Qiw4QkFBMEM7UUFDeEMsNEJBQWE7UUFDWCx5QkFBK0Q7UUFDakUsaUJBQUk7UUFDTixpQkFBTTtRQUVOLDhCQUFxQztRQUNuQyw4QkFBaUM7UUFDL0IscUVBR007UUFDUixpQkFBTTtRQUNSLGlCQUFNO1FBQ1IsaUJBQU07O1FBWmdELGVBQVk7UUFBWixnREFBWTtRQU10QyxlQUFVO1FBQVYsbUNBQVU7O3VGRDRFekIsb0JBQW9CO2NBSmhDLFNBQVM7MkJBQ0UsZUFBZSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25EZXN0cm95LCBPbkluaXQsIFZpZXdDb250YWluZXJSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IExvY2F0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE5hdmlnYXRpb25FbmQsIFJvdXRlciB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5cbmltcG9ydCB7IFN1YnNjcmlwdGlvbiB9IGZyb20gJ3J4anMnO1xuXG5pbXBvcnQgeyBjYWxsRnVuY3Rpb24sIGdldEZvcm1hdHRlZExpbmssIG9wZW5FeHRlcm5hbExpbmsgfSBmcm9tICcuLi8uLi91dGlscy91dGlsJztcblxuaW1wb3J0IHsgUG9NZW51UGFuZWxCYXNlQ29tcG9uZW50IH0gZnJvbSAnLi9wby1tZW51LXBhbmVsLWJhc2UuY29tcG9uZW50JztcbmltcG9ydCB7IFBvTWVudVBhbmVsSXRlbSB9IGZyb20gJy4vcG8tbWVudS1wYW5lbC1pdGVtL3BvLW1lbnUtcGFuZWwtaXRlbS5pbnRlcmZhY2UnO1xuaW1wb3J0IHsgUG9NZW51UGFuZWxJdGVtSW50ZXJuYWwgfSBmcm9tICcuL3BvLW1lbnUtcGFuZWwtaXRlbS9wby1tZW51LXBhbmVsLWl0ZW0taW50ZXJuYWwuaW50ZXJmYWNlJztcbmltcG9ydCB7IFBvTWVudVBhbmVsSXRlbXNTZXJ2aWNlIH0gZnJvbSAnLi9zZXJ2aWNlcy9wby1tZW51LXBhbmVsLWl0ZW1zLnNlcnZpY2UnO1xuXG4vKipcbiAqIEBkb2NzRXh0ZW5kcyBQb01lbnVQYW5lbEJhc2VDb21wb25lbnRcbiAqXG4gKiBAZGVzY3JpcHRpb25cbiAqXG4gKiBQYXJhIG8gbWVudSBmdW5jaW9uYXIgY29ycmV0YW1lbnRlIMOpIG5lY2Vzc8OhcmlvIGltcG9ydGFyIG8gYFJvdXRlck1vZHVsZWAgZSBgUm91dGVzYCBkbyBtw7NkdWxvIHByaW5jaXBhbCBkZVxuICogIHN1YSBhcGxpY2HDp8OjbzpcbiAqXG4gKiBgYGBgXG4gKiBpbXBvcnQgeyBSb3V0ZXJNb2R1bGUsIFJvdXRlcyB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG4gKlxuICogLi4uXG4gKlxuICogQE5nTW9kdWxlKHtcbiAqICAgaW1wb3J0czogW1xuICogICAgIFJvdXRlck1vZHVsZSxcbiAqICAgICBSb3V0ZXMsXG4gKiAgICAgLi4uXG4gKiAgICAgUG9Nb2R1bGUsXG4gKiAgICAgLi4uXG4gKiAgIF0sXG4gKiAgIGRlY2xhcmF0aW9uczogW1xuICogICAgIEFwcENvbXBvbmVudFxuICogICBdLFxuICogICBwcm92aWRlcnM6IFtdLFxuICogICBib290c3RyYXA6IFtBcHBDb21wb25lbnRdXG4gKiB9KVxuICogZXhwb3J0IGNsYXNzIEFwcE1vZHVsZSB7IH1cbiAqIGBgYFxuICpcbiAqIEFsw6ltIGRpc3NvIMOpIG5lY2Vzc8OhcmlvIGNyaWFyIHVtIG3Ds2R1bG8gY29uZmlndXJhbmRvIGFzIHJvdGFzIGRhIGFwbGljYcOnw6NvLlxuICpcbiAqIGBgYFxuICogaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbiAqXG4gKiBpbXBvcnQgeyBSb3V0ZXJNb2R1bGUsIFJvdXRlcyB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG4gKlxuICogaW1wb3J0IHsgSGVsbG9Xb3JsZENvbXBvbmVudCB9IGZyb20gJy4vaGVsbG8td29ybGQvaGVsbG8td29ybGQuY29tcG9uZW50JztcbiAqXG4gKiBjb25zdCByb3V0ZXM6IFJvdXRlcyA9IFtcbiAqICAge3BhdGg6ICdoZWxsby13b3JsZCcsIGNvbXBvbmVudDogSGVsbG9Xb3JsZENvbXBvbmVudH1cbiAqIF07XG4gKlxuICogQE5nTW9kdWxlKHtcbiAqICAgaW1wb3J0czogW1JvdXRlck1vZHVsZS5mb3JSb290KHJvdXRlcywge3VzZUhhc2g6IHRydWV9KV0sXG4gKiAgIGV4cG9ydHM6IFtSb3V0ZXJNb2R1bGVdXG4gKiB9KVxuICogZXhwb3J0IGNsYXNzIEFwcFJvdXRpbmdNb2R1bGUge31cbiAqIGBgYFxuICpcbiAqIEBleGFtcGxlXG4gKlxuICogPGV4YW1wbGUgbmFtZT1cInBvLW1lbnUtcGFuZWwtYmFzaWNcIiB0aXRsZT1cIlBPIE1lbnUgUGFuZWwgQmFzaWNcIj5cbiAqICAgPGZpbGUgbmFtZT1cInNhbXBsZS1wby1tZW51LXBhbmVsLWJhc2ljL3NhbXBsZS1wby1tZW51LXBhbmVsLWJhc2ljLmNvbXBvbmVudC5odG1sXCI+IDwvZmlsZT5cbiAqICAgPGZpbGUgbmFtZT1cInNhbXBsZS1wby1tZW51LXBhbmVsLWJhc2ljL3NhbXBsZS1wby1tZW51LXBhbmVsLWJhc2ljLmNvbXBvbmVudC50c1wiPiA8L2ZpbGU+XG4gKiA8L2V4YW1wbGU+XG4gKlxuICogPGV4YW1wbGUgbmFtZT1cInBvLW1lbnUtcGFuZWwtbGFic1wiIHRpdGxlPVwiUE8gTWVudSBQYW5lbCBMYWJzXCI+XG4gKiAgIDxmaWxlIG5hbWU9XCJzYW1wbGUtcG8tbWVudS1wYW5lbC1sYWJzL3NhbXBsZS1wby1tZW51LXBhbmVsLWxhYnMuY29tcG9uZW50Lmh0bWxcIj4gPC9maWxlPlxuICogICA8ZmlsZSBuYW1lPVwic2FtcGxlLXBvLW1lbnUtcGFuZWwtbGFicy9zYW1wbGUtcG8tbWVudS1wYW5lbC1sYWJzLmNvbXBvbmVudC50c1wiPiA8L2ZpbGU+XG4gKiA8L2V4YW1wbGU+XG4gKlxuICogPGV4YW1wbGUgbmFtZT1cInBvLW1lbnUtcGFuZWwtY3VzdG9tZXJcIiB0aXRsZT1cIlBPIE1lbnUgUGFuZWwgLSBDdXN0b21lcnNcIj5cbiAqICAgPGZpbGUgbmFtZT1cInNhbXBsZS1wby1tZW51LXBhbmVsLWN1c3RvbWVyL3NhbXBsZS1wby1tZW51LXBhbmVsLWN1c3RvbWVyLmNvbXBvbmVudC5odG1sXCI+IDwvZmlsZT5cbiAqICAgPGZpbGUgbmFtZT1cInNhbXBsZS1wby1tZW51LXBhbmVsLWN1c3RvbWVyL3NhbXBsZS1wby1tZW51LXBhbmVsLWN1c3RvbWVyLmNvbXBvbmVudC50c1wiPiA8L2ZpbGU+XG4gKiA8L2V4YW1wbGU+XG4gKi9cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAncG8tbWVudS1wYW5lbCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9wby1tZW51LXBhbmVsLmNvbXBvbmVudC5odG1sJ1xufSlcbmV4cG9ydCBjbGFzcyBQb01lbnVQYW5lbENvbXBvbmVudCBleHRlbmRzIFBvTWVudVBhbmVsQmFzZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uRGVzdHJveSwgT25Jbml0IHtcbiAgYWN0aXZlTWVudUl0ZW06IFBvTWVudVBhbmVsSXRlbTtcbiAgbGlua0FjdGl2ZTogc3RyaW5nO1xuXG4gIHByaXZhdGUgcm91dGVTdWJzY3JpcHRpb246IFN1YnNjcmlwdGlvbjtcbiAgcHJpdmF0ZSBpdGVtU3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb247XG5cbiAgY29uc3RydWN0b3IoXG4gICAgdmlld1JlZjogVmlld0NvbnRhaW5lclJlZixcbiAgICBwcml2YXRlIGxvY2F0aW9uOiBMb2NhdGlvbixcbiAgICBwcml2YXRlIG1lbnVJdGVtc1NlcnZpY2U6IFBvTWVudVBhbmVsSXRlbXNTZXJ2aWNlLFxuICAgIHByaXZhdGUgcm91dGVyOiBSb3V0ZXJcbiAgKSB7XG4gICAgc3VwZXIoKTtcbiAgfVxuXG4gIG5nT25EZXN0cm95KCkge1xuICAgIHRoaXMuaXRlbVN1YnNjcmlwdGlvbi51bnN1YnNjcmliZSgpO1xuICAgIHRoaXMucm91dGVTdWJzY3JpcHRpb24udW5zdWJzY3JpYmUoKTtcbiAgfVxuXG4gIG5nT25Jbml0KCkge1xuICAgIHRoaXMuc3Vic2NyaWJlVG9NZW51SXRlbSgpO1xuICAgIHRoaXMuc3Vic2NyaWJlVG9Sb3V0ZSgpO1xuICB9XG5cbiAgcHJpdmF0ZSBhY3RpdmF0ZU1lbnVCeVVybCh1cmxQYXRoOiBzdHJpbmcsIG1lbnVzOiBBcnJheTxQb01lbnVQYW5lbEl0ZW0+KSB7XG4gICAgaWYgKG1lbnVzKSB7XG4gICAgICByZXR1cm4gbWVudXMuc29tZShtZW51ID0+IHtcbiAgICAgICAgaWYgKGdldEZvcm1hdHRlZExpbmsobWVudS5saW5rKSA9PT0gdXJsUGF0aCkge1xuICAgICAgICAgIHRoaXMuYWN0aXZhdGVNZW51SXRlbShtZW51KTtcbiAgICAgICAgICByZXR1cm4gdHJ1ZTtcbiAgICAgICAgfVxuICAgICAgfSk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBhY3RpdmF0ZU1lbnVJdGVtKG1lbnU6IFBvTWVudVBhbmVsSXRlbSk6IHZvaWQge1xuICAgIHRoaXMuYWN0aXZlTWVudUl0ZW0gPSBtZW51O1xuICAgIHRoaXMubGlua0FjdGl2ZSA9IGdldEZvcm1hdHRlZExpbmsobWVudS5saW5rKTtcbiAgICB0aGlzLm1lbnVJdGVtc1NlcnZpY2Uuc2VuZFRvQ2hpbGRNZW51Q2xpY2tlZCh7IGFjdGl2ZTogdGhpcy5hY3RpdmVNZW51SXRlbSwgYWN0aXZhdGVkQnlSb3V0ZTogdHJ1ZSB9KTtcbiAgfVxuXG4gIHByaXZhdGUgY2hlY2tBY3RpdmVNZW51QnlVcmwodXJsUGF0aDogc3RyaW5nKTogdm9pZCB7XG4gICAgaWYgKCF0aGlzLmxpbmtBY3RpdmUgfHwgdGhpcy5saW5rQWN0aXZlICE9PSB1cmxQYXRoKSB7XG4gICAgICB0aGlzLmFjdGl2YXRlTWVudUJ5VXJsKHVybFBhdGgsIHRoaXMubWVudXMpO1xuICAgIH1cbiAgfVxuXG4gIHByaXZhdGUgY2xpY2tNZW51SXRlbShtZW51OiBQb01lbnVQYW5lbEl0ZW1JbnRlcm5hbCkge1xuICAgIGlmIChtZW51LmFjdGlvbikge1xuICAgICAgbWVudS5hY3Rpb24obWVudSk7XG4gICAgfVxuXG4gICAgaWYgKG1lbnUudHlwZSA9PT0gJ2V4dGVybmFsTGluaycpIHtcbiAgICAgIG9wZW5FeHRlcm5hbExpbmsobWVudS5saW5rKTtcbiAgICB9IGVsc2UgaWYgKG1lbnUudHlwZSA9PT0gJ2ludGVybmFsTGluaycpIHtcbiAgICAgIHRoaXMuYWN0aXZhdGVNZW51SXRlbShtZW51KTtcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIHN1YnNjcmliZVRvUm91dGUoKSB7XG4gICAgdGhpcy5yb3V0ZVN1YnNjcmlwdGlvbiA9IHRoaXMucm91dGVyLmV2ZW50cy5zdWJzY3JpYmUocm91bnRlckV2ZW50ID0+IHtcbiAgICAgIGlmIChyb3VudGVyRXZlbnQgaW5zdGFuY2VvZiBOYXZpZ2F0aW9uRW5kKSB7XG4gICAgICAgIHRoaXMuY2hlY2tBY3RpdmVNZW51QnlVcmwodGhpcy5sb2NhdGlvbi5wYXRoKCkpO1xuICAgICAgfVxuICAgIH0pO1xuICB9XG5cbiAgcHJpdmF0ZSBzdWJzY3JpYmVUb01lbnVJdGVtKCkge1xuICAgIHRoaXMuaXRlbVN1YnNjcmlwdGlvbiA9IHRoaXMubWVudUl0ZW1zU2VydmljZVxuICAgICAgLnJlY2VpdmVGcm9tQ2hpbGRNZW51Q2xpY2tlZCgpXG4gICAgICAuc3Vic2NyaWJlKChtZW51OiBQb01lbnVQYW5lbEl0ZW1JbnRlcm5hbCkgPT4gdGhpcy5jbGlja01lbnVJdGVtKG1lbnUpKTtcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cInBvLW1lbnUtcGFuZWxcIj5cbiAgPGRpdiBjbGFzcz1cInBvLW1lbnUtcGFuZWwtbG9nby1jb250YWluZXJcIj5cbiAgICA8YSBocmVmPVwiLi9cIj5cbiAgICAgIDxpbWcgY2xhc3M9XCJwby1tZW51LXBhbmVsLWxvZ29cIiBhbHQ9XCJtYWluLWxvZ29cIiBbc3JjXT1cImxvZ29cIiAvPlxuICAgIDwvYT5cbiAgPC9kaXY+XG5cbiAgPG5hdiBjbGFzcz1cInBvLW1lbnUtcGFuZWwtY29udGFpbmVyXCI+XG4gICAgPGRpdiBjbGFzcz1cInBvLW1lbnUtcGFuZWwtaW5uZXJcIj5cbiAgICAgIDxkaXYgKm5nRm9yPVwibGV0IG1lbnUgb2YgbWVudXM7IGxldCBtZW51SW5kZXggPSBpbmRleFwiIGNsYXNzPVwicG8tbWVudS1wYW5lbC1pdGVtLXdyYXBwZXJcIj5cbiAgICAgICAgPHBvLW1lbnUtcGFuZWwtaXRlbSBbY2xhc3MucG8tbWVudS1wYW5lbC1pdGVtLWZpcnN0XT1cIm1lbnVJbmRleCA9PT0gMFwiIFtwLW1lbnUtaXRlbS1pbnRlcm5hbF09XCJtZW51XCI+XG4gICAgICAgIDwvcG8tbWVudS1wYW5lbC1pdGVtPlxuICAgICAgPC9kaXY+XG4gICAgPC9kaXY+XG4gIDwvbmF2PlxuPC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { RouterModule } from '@angular/router';
|
|
4
|
+
import { PoFieldModule } from '../po-field/po-field.module';
|
|
5
|
+
import { PoMenuPanelComponent } from './po-menu-panel.component';
|
|
6
|
+
import { PoMenuPanelItemComponent } from './po-menu-panel-item/po-menu-panel-item.component';
|
|
7
|
+
import { PoMenuPanelItemsService } from './services/po-menu-panel-items.service';
|
|
8
|
+
import { PoTooltipModule } from '../../directives/po-tooltip/index';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
/**
|
|
11
|
+
* @description
|
|
12
|
+
*
|
|
13
|
+
* Módulo do componente po-menu-panel.
|
|
14
|
+
*/
|
|
15
|
+
export class PoMenuPanelModule {
|
|
16
|
+
}
|
|
17
|
+
PoMenuPanelModule.ɵfac = function PoMenuPanelModule_Factory(t) { return new (t || PoMenuPanelModule)(); };
|
|
18
|
+
PoMenuPanelModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: PoMenuPanelModule });
|
|
19
|
+
PoMenuPanelModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [PoMenuPanelItemsService], imports: [[CommonModule, RouterModule, PoFieldModule, PoTooltipModule]] });
|
|
20
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoMenuPanelModule, [{
|
|
21
|
+
type: NgModule,
|
|
22
|
+
args: [{
|
|
23
|
+
imports: [CommonModule, RouterModule, PoFieldModule, PoTooltipModule],
|
|
24
|
+
declarations: [PoMenuPanelComponent, PoMenuPanelItemComponent],
|
|
25
|
+
exports: [PoMenuPanelComponent],
|
|
26
|
+
providers: [PoMenuPanelItemsService]
|
|
27
|
+
}]
|
|
28
|
+
}], null, null); })();
|
|
29
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(PoMenuPanelModule, { declarations: [PoMenuPanelComponent, PoMenuPanelItemComponent], imports: [CommonModule, RouterModule, PoFieldModule, PoTooltipModule], exports: [PoMenuPanelComponent] }); })();
|
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tbWVudS1wYW5lbC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS9zcmMvbGliL2NvbXBvbmVudHMvcG8tbWVudS1wYW5lbC9wby1tZW51LXBhbmVsLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFFL0MsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQzVELE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQ2pFLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLG1EQUFtRCxDQUFDO0FBQzdGLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdDQUF3QyxDQUFDO0FBQ2pGLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQzs7QUFFcEU7Ozs7R0FJRztBQU9ILE1BQU0sT0FBTyxpQkFBaUI7O2tGQUFqQixpQkFBaUI7bUVBQWpCLGlCQUFpQjt3RUFGakIsQ0FBQyx1QkFBdUIsQ0FBQyxZQUgzQixDQUFDLFlBQVksRUFBRSxZQUFZLEVBQUUsYUFBYSxFQUFFLGVBQWUsQ0FBQzt1RkFLMUQsaUJBQWlCO2NBTjdCLFFBQVE7ZUFBQztnQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsWUFBWSxFQUFFLGFBQWEsRUFBRSxlQUFlLENBQUM7Z0JBQ3JFLFlBQVksRUFBRSxDQUFDLG9CQUFvQixFQUFFLHdCQUF3QixDQUFDO2dCQUM5RCxPQUFPLEVBQUUsQ0FBQyxvQkFBb0IsQ0FBQztnQkFDL0IsU0FBUyxFQUFFLENBQUMsdUJBQXVCLENBQUM7YUFDckM7O3dGQUNZLGlCQUFpQixtQkFKYixvQkFBb0IsRUFBRSx3QkFBd0IsYUFEbkQsWUFBWSxFQUFFLFlBQVksRUFBRSxhQUFhLEVBQUUsZUFBZSxhQUUxRCxvQkFBb0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFJvdXRlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5cbmltcG9ydCB7IFBvRmllbGRNb2R1bGUgfSBmcm9tICcuLi9wby1maWVsZC9wby1maWVsZC5tb2R1bGUnO1xuaW1wb3J0IHsgUG9NZW51UGFuZWxDb21wb25lbnQgfSBmcm9tICcuL3BvLW1lbnUtcGFuZWwuY29tcG9uZW50JztcbmltcG9ydCB7IFBvTWVudVBhbmVsSXRlbUNvbXBvbmVudCB9IGZyb20gJy4vcG8tbWVudS1wYW5lbC1pdGVtL3BvLW1lbnUtcGFuZWwtaXRlbS5jb21wb25lbnQnO1xuaW1wb3J0IHsgUG9NZW51UGFuZWxJdGVtc1NlcnZpY2UgfSBmcm9tICcuL3NlcnZpY2VzL3BvLW1lbnUtcGFuZWwtaXRlbXMuc2VydmljZSc7XG5pbXBvcnQgeyBQb1Rvb2x0aXBNb2R1bGUgfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzL3BvLXRvb2x0aXAvaW5kZXgnO1xuXG4vKipcbiAqIEBkZXNjcmlwdGlvblxuICpcbiAqIE3Ds2R1bG8gZG8gY29tcG9uZW50ZSBwby1tZW51LXBhbmVsLlxuICovXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBSb3V0ZXJNb2R1bGUsIFBvRmllbGRNb2R1bGUsIFBvVG9vbHRpcE1vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW1BvTWVudVBhbmVsQ29tcG9uZW50LCBQb01lbnVQYW5lbEl0ZW1Db21wb25lbnRdLFxuICBleHBvcnRzOiBbUG9NZW51UGFuZWxDb21wb25lbnRdLFxuICBwcm92aWRlcnM6IFtQb01lbnVQYW5lbEl0ZW1zU2VydmljZV1cbn0pXG5leHBvcnQgY2xhc3MgUG9NZW51UGFuZWxNb2R1bGUge31cbiJdfQ==
|