@po-ui/ng-components 5.22.3 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -36
- package/esm2020/lib/components/components.module.mjs +270 -0
- package/esm2020/lib/components/index.mjs +38 -0
- package/esm2020/lib/components/po-accordion/index.mjs +4 -0
- package/esm2020/lib/components/po-accordion/po-accordion-base.component.mjs +29 -0
- package/esm2020/lib/components/po-accordion/po-accordion-item/po-accordion-item.component.mjs +78 -0
- package/esm2020/lib/components/po-accordion/po-accordion-item-body/po-accordion-item-body.component.mjs +44 -0
- package/esm2020/lib/components/po-accordion/po-accordion-item-header/po-accordion-item-header.component.mjs +41 -0
- package/esm2020/lib/components/po-accordion/po-accordion.component.mjs +106 -0
- package/esm2020/lib/components/po-accordion/po-accordion.module.mjs +61 -0
- package/esm2020/lib/components/po-accordion/services/po-accordion.service.mjs +30 -0
- package/esm2020/lib/components/po-avatar/index.mjs +3 -0
- package/esm2020/lib/components/po-avatar/po-avatar-base.component.mjs +77 -0
- package/esm2020/lib/components/po-avatar/po-avatar.component.mjs +73 -0
- package/esm2020/lib/components/po-avatar/po-avatar.module.mjs +24 -0
- package/esm2020/lib/components/po-badge/po-badge-base.component.mjs +94 -0
- package/esm2020/lib/components/po-badge/po-badge.component.mjs +27 -0
- package/esm2020/lib/components/po-badge/po-badge.module.mjs +24 -0
- package/esm2020/lib/components/po-breadcrumb/index.mjs +5 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-base.component.mjs +55 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-dropdown/po-breadcrumb-dropdown.component.mjs +40 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.component.mjs +113 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.service.mjs +49 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-item/po-breadcrumb-item.component.mjs +109 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb.component.mjs +219 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb.interface.mjs +2 -0
- package/esm2020/lib/components/po-breadcrumb/po-breadcrumb.module.mjs +37 -0
- package/esm2020/lib/components/po-button/index.mjs +3 -0
- package/esm2020/lib/components/po-button/po-button-base.component.mjs +144 -0
- package/esm2020/lib/components/po-button/po-button.component.mjs +114 -0
- package/esm2020/lib/components/po-button/po-button.module.mjs +26 -0
- package/esm2020/lib/components/po-button-group/index.mjs +5 -0
- package/esm2020/lib/components/po-button-group/po-button-group-base.component.mjs +102 -0
- package/esm2020/lib/components/po-button-group/po-button-group-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-button-group/po-button-group-toggle.enum.mjs +17 -0
- package/esm2020/lib/components/po-button-group/po-button-group.component.mjs +62 -0
- package/esm2020/lib/components/po-button-group/po-button-group.module.mjs +26 -0
- package/esm2020/lib/components/po-calendar/index.mjs +4 -0
- package/esm2020/lib/components/po-calendar/po-calendar-base.component.mjs +183 -0
- package/esm2020/lib/components/po-calendar/po-calendar-header/po-calendar-header.component.mjs +57 -0
- package/esm2020/lib/components/po-calendar/po-calendar-mode.enum.mjs +13 -0
- package/esm2020/lib/components/po-calendar/po-calendar-wrapper/po-calendar-wrapper.component.mjs +469 -0
- package/esm2020/lib/components/po-calendar/po-calendar.component.mjs +257 -0
- package/esm2020/lib/components/po-calendar/po-calendar.module.mjs +25 -0
- package/esm2020/lib/components/po-calendar/services/po-calendar.lang.service.mjs +189 -0
- package/esm2020/lib/components/po-calendar/services/po-calendar.service.mjs +47 -0
- package/esm2020/lib/components/po-chart/directives/po-resize-observer.directive.mjs +46 -0
- package/esm2020/lib/components/po-chart/enums/po-chart-type.enum.mjs +38 -0
- package/esm2020/lib/components/po-chart/helpers/po-chart-default-values.constant.mjs +18 -0
- package/esm2020/lib/components/po-chart/index.mjs +7 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-axis-options.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-bar-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-container-size.interface.mjs +11 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-label-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-min-max-values.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-options.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-path-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-points-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/interfaces/po-chart-serie.interface.mjs +2 -0
- package/esm2020/lib/components/po-chart/po-chart-base.component.mjs +258 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-label/po-chart-axis-label.component.mjs +68 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-path/po-chart-axis-path.component.mjs +50 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis.component.mjs +310 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-base.component.mjs +103 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-path/po-chart-bar-path.component.mjs +61 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar.component.mjs +84 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-column/po-chart-column.component.mjs +85 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-label/po-chart-circular-label.component.mjs +47 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-circular-path.component.mjs +56 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-tooltip.directive.mjs +84 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular.component.mjs +161 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-donut/po-chart-donut.component.mjs +165 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-pie/po-chart-pie.component.mjs +107 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-container.component.mjs +243 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-area/po-chart-area.component.mjs +106 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line-base.component.mjs +172 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line.component.mjs +70 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-path/po-chart-path.component.mjs +87 -0
- package/esm2020/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-series-point/po-chart-series-point.component.mjs +128 -0
- package/esm2020/lib/components/po-chart/po-chart-legend/po-chart-legend.component.mjs +48 -0
- package/esm2020/lib/components/po-chart/po-chart-types/po-chart-dynamic-type.component.mjs +52 -0
- package/esm2020/lib/components/po-chart/po-chart.component.mjs +254 -0
- package/esm2020/lib/components/po-chart/po-chart.module.mjs +81 -0
- package/esm2020/lib/components/po-chart/services/po-chart-maths.service.mjs +136 -0
- package/esm2020/lib/components/po-chart/services/po-chart-svg-container.service.mjs +58 -0
- package/esm2020/lib/components/po-container/index.mjs +3 -0
- package/esm2020/lib/components/po-container/po-container-base.component.mjs +97 -0
- package/esm2020/lib/components/po-container/po-container.component.mjs +42 -0
- package/esm2020/lib/components/po-container/po-container.module.mjs +24 -0
- package/esm2020/lib/components/po-disclaimer/index.mjs +4 -0
- package/esm2020/lib/components/po-disclaimer/po-disclaimer-base.component.mjs +90 -0
- package/esm2020/lib/components/po-disclaimer/po-disclaimer.component.mjs +60 -0
- package/esm2020/lib/components/po-disclaimer/po-disclaimer.interface.mjs +2 -0
- package/esm2020/lib/components/po-disclaimer/po-disclaimer.module.mjs +23 -0
- package/esm2020/lib/components/po-disclaimer-group/index.mjs +5 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group-base.component.mjs +206 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group-remove-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group.component.mjs +80 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group.interface.mjs +2 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-group.module.mjs +26 -0
- package/esm2020/lib/components/po-disclaimer-group/po-disclaimer-remove/po-disclaimer-remove.component.mjs +40 -0
- package/esm2020/lib/components/po-divider/index.mjs +3 -0
- package/esm2020/lib/components/po-divider/po-divider-base.component.mjs +19 -0
- package/esm2020/lib/components/po-divider/po-divider.component.mjs +49 -0
- package/esm2020/lib/components/po-divider/po-divider.module.mjs +24 -0
- package/esm2020/lib/components/po-dropdown/index.mjs +4 -0
- package/esm2020/lib/components/po-dropdown/po-dropdown-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-dropdown/po-dropdown-base.component.mjs +78 -0
- package/esm2020/lib/components/po-dropdown/po-dropdown.component.mjs +130 -0
- package/esm2020/lib/components/po-dropdown/po-dropdown.module.mjs +24 -0
- package/esm2020/lib/components/po-dynamic/index.mjs +11 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-field-type.enum.mjs +25 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-field.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-base.component.mjs +121 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-field.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-field-internal.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields-base.component.mjs +221 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields.component.mjs +350 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.service.mjs +32 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-operation/po-dynamic-form-operation.mjs +20 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-response.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-changed.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-validation.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.service.mjs +39 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form.component.mjs +203 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-base.component.mjs +169 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-field.interface.mjs +2 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.component.mjs +141 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.service.mjs +17 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic.module.mjs +53 -0
- package/esm2020/lib/components/po-dynamic/po-dynamic.util.mjs +18 -0
- package/esm2020/lib/components/po-field/index.mjs +53 -0
- package/esm2020/lib/components/po-field/po-checkbox/po-checkbox-base.component.mjs +109 -0
- package/esm2020/lib/components/po-field/po-checkbox/po-checkbox.component.mjs +118 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option-view.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/po-checkbox-group-base.component.mjs +322 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/po-checkbox-group.component.mjs +150 -0
- package/esm2020/lib/components/po-field/po-checkbox-group/po-checkbox-group.module.mjs +26 -0
- package/esm2020/lib/components/po-field/po-clean/index.mjs +2 -0
- package/esm2020/lib/components/po-field/po-clean/po-clean-base.component.mjs +49 -0
- package/esm2020/lib/components/po-field/po-clean/po-clean.component.mjs +45 -0
- package/esm2020/lib/components/po-field/po-clean/po-clean.module.mjs +24 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-group.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-option-group.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-combo-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/interfaces/po-response.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo-base.component.mjs +803 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo-filter-mode.enum.mjs +17 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo-filter.service.mjs +79 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo-option-template/po-combo-option-template.directive.mjs +82 -0
- package/esm2020/lib/components/po-field/po-combo/po-combo.component.mjs +746 -0
- package/esm2020/lib/components/po-field/po-datepicker/enums/po-datepicker-iso-format.enum.mjs +17 -0
- package/esm2020/lib/components/po-field/po-datepicker/po-datepicker-base.component.mjs +428 -0
- package/esm2020/lib/components/po-field/po-datepicker/po-datepicker.component.mjs +439 -0
- package/esm2020/lib/components/po-field/po-datepicker/po-datepicker.module.mjs +28 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.mjs +506 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.mjs +528 -0
- package/esm2020/lib/components/po-field/po-datepicker-range/po-datepicker-range.literals.mjs +27 -0
- package/esm2020/lib/components/po-field/po-decimal/po-decimal.component.mjs +667 -0
- package/esm2020/lib/components/po-field/po-email/po-email.component.mjs +150 -0
- package/esm2020/lib/components/po-field/po-field-container/index.mjs +4 -0
- package/esm2020/lib/components/po-field/po-field-container/po-field-container-bottom/po-field-container-bottom.component.mjs +47 -0
- package/esm2020/lib/components/po-field/po-field-container/po-field-container-literals.mjs +15 -0
- package/esm2020/lib/components/po-field/po-field-container/po-field-container.component.mjs +81 -0
- package/esm2020/lib/components/po-field/po-field-container/po-field-container.module.mjs +25 -0
- package/esm2020/lib/components/po-field/po-field-validate.model.mjs +74 -0
- package/esm2020/lib/components/po-field/po-field.model.mjs +90 -0
- package/esm2020/lib/components/po-field/po-field.module.mjs +268 -0
- package/esm2020/lib/components/po-field/po-input/po-input-base.component.mjs +397 -0
- package/esm2020/lib/components/po-field/po-input/po-input.component.mjs +111 -0
- package/esm2020/lib/components/po-field/po-input/po-mask.mjs +460 -0
- package/esm2020/lib/components/po-field/po-input-generic/po-input-generic.mjs +197 -0
- package/esm2020/lib/components/po-field/po-login/po-login.component.mjs +100 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-advanced-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-column.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-filtered-items-params.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/interfaces/po-lookup-response-api.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-lookup/po-lookup-base.component.mjs +499 -0
- package/esm2020/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal-base.component.mjs +394 -0
- package/esm2020/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal.component.mjs +225 -0
- package/esm2020/lib/components/po-field/po-lookup/po-lookup.component.mjs +437 -0
- package/esm2020/lib/components/po-field/po-lookup/services/po-lookup-filter.service.mjs +59 -0
- package/esm2020/lib/components/po-field/po-lookup/services/po-lookup-modal.service.mjs +62 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-base.component.mjs +620 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-dropdown/po-multiselect-dropdown.component.mjs +261 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-filter-mode.enum.mjs +17 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-filter.service.mjs +50 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-item/po-multiselect-item.component.mjs +54 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect-search/po-multiselect-search.component.mjs +84 -0
- package/esm2020/lib/components/po-field/po-multiselect/po-multiselect.component.mjs +428 -0
- package/esm2020/lib/components/po-field/po-number/po-number-base.component.mjs +113 -0
- package/esm2020/lib/components/po-field/po-number/po-number.component.mjs +178 -0
- package/esm2020/lib/components/po-field/po-password/po-password.component.mjs +151 -0
- package/esm2020/lib/components/po-field/po-radio-group/po-radio-group-base.component.mjs +201 -0
- package/esm2020/lib/components/po-field/po-radio-group/po-radio-group-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-radio-group/po-radio-group.component.mjs +184 -0
- package/esm2020/lib/components/po-field/po-rich-text/interfaces/po-rich-text-toolbar-button-group-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-base.component.mjs +203 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-body/po-rich-text-body.component.mjs +342 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-image-modal/po-rich-text-image-modal.component.mjs +135 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-link-modal/po-rich-text-link-modal.component.mjs +177 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-literals.mjs +83 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text-toolbar/po-rich-text-toolbar.component.mjs +254 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text.component.mjs +173 -0
- package/esm2020/lib/components/po-field/po-rich-text/po-rich-text.service.mjs +20 -0
- package/esm2020/lib/components/po-field/po-select/po-select-option-template/po-select-option-template.directive.mjs +60 -0
- package/esm2020/lib/components/po-field/po-select/po-select-option.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-select/po-select.component.mjs +513 -0
- package/esm2020/lib/components/po-field/po-switch/po-switch-label-position.enum.mjs +15 -0
- package/esm2020/lib/components/po-field/po-switch/po-switch.component.mjs +236 -0
- package/esm2020/lib/components/po-field/po-textarea/po-textarea-base.component.mjs +299 -0
- package/esm2020/lib/components/po-field/po-textarea/po-textarea.component.mjs +159 -0
- package/esm2020/lib/components/po-field/po-upload/interfaces/po-upload-file-restriction.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-upload/interfaces/po-upload-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-base.component.mjs +634 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-base.service.mjs +89 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area/po-upload-drag-drop-area.component.mjs +95 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area-overlay/po-upload-drag-drop-area-overlay.component.mjs +61 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.component.mjs +101 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.directive.mjs +179 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-file-restrictions/po-upload-file-restrictions.component.mjs +151 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-file.mjs +39 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload-status.enum.mjs +13 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload.component.mjs +450 -0
- package/esm2020/lib/components/po-field/po-upload/po-upload.service.mjs +11 -0
- package/esm2020/lib/components/po-field/po-url/po-url.component.mjs +141 -0
- package/esm2020/lib/components/po-field/validators.mjs +41 -0
- package/esm2020/lib/components/po-gauge/index.mjs +4 -0
- package/esm2020/lib/components/po-gauge/interfaces/po-gauge-coordinates.interface.mjs +2 -0
- package/esm2020/lib/components/po-gauge/interfaces/po-gauge-ranges.interface.mjs +2 -0
- package/esm2020/lib/components/po-gauge/interfaces/po-gauge-svg-container.interface.mjs +2 -0
- package/esm2020/lib/components/po-gauge/po-gauge-base.component.mjs +154 -0
- package/esm2020/lib/components/po-gauge/po-gauge-default-values.constant.mjs +11 -0
- package/esm2020/lib/components/po-gauge/po-gauge-description/po-gauge-description.component.mjs +110 -0
- package/esm2020/lib/components/po-gauge/po-gauge-legend/po-gauge-legend.component.mjs +70 -0
- package/esm2020/lib/components/po-gauge/po-gauge-svg/po-gauge-path/po-gauge-path.component.mjs +43 -0
- package/esm2020/lib/components/po-gauge/po-gauge-svg/po-gauge-pointer/po-gauge-pointer.component.mjs +66 -0
- package/esm2020/lib/components/po-gauge/po-gauge-svg/po-gauge-svg.component.mjs +236 -0
- package/esm2020/lib/components/po-gauge/po-gauge-title/po-gauge-title.component.mjs +28 -0
- package/esm2020/lib/components/po-gauge/po-gauge.component.mjs +109 -0
- package/esm2020/lib/components/po-gauge/po-gauge.module.mjs +44 -0
- package/esm2020/lib/components/po-grid/index.mjs +4 -0
- package/esm2020/lib/components/po-grid/po-grid-cell/po-grid-cell.component.mjs +179 -0
- package/esm2020/lib/components/po-grid/po-grid-cell-action/po-grid-cell-action.component.mjs +40 -0
- package/esm2020/lib/components/po-grid/po-grid-head/po-grid-head.component.mjs +56 -0
- package/esm2020/lib/components/po-grid/po-grid-row-actions.interface.mjs +2 -0
- package/esm2020/lib/components/po-grid/po-grid.component.mjs +573 -0
- package/esm2020/lib/components/po-grid/po-grid.module.mjs +29 -0
- package/esm2020/lib/components/po-icon/index.mjs +3 -0
- package/esm2020/lib/components/po-icon/po-icon.component.mjs +77 -0
- package/esm2020/lib/components/po-icon/po-icon.module.mjs +24 -0
- package/esm2020/lib/components/po-info/index.mjs +4 -0
- package/esm2020/lib/components/po-info/po-info-base.component.mjs +73 -0
- package/esm2020/lib/components/po-info/po-info-orietation.enum.mjs +15 -0
- package/esm2020/lib/components/po-info/po-info.component.mjs +110 -0
- package/esm2020/lib/components/po-info/po-info.module.mjs +27 -0
- package/esm2020/lib/components/po-list-view/index.mjs +7 -0
- package/esm2020/lib/components/po-list-view/interfaces/po-list-view-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-list-view/interfaces/po-list-view-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-list-view/po-list-view-base.component.mjs +298 -0
- package/esm2020/lib/components/po-list-view/po-list-view-content-template/po-list-view-content-template.directive.mjs +102 -0
- package/esm2020/lib/components/po-list-view/po-list-view-detail-template/po-list-view-detail-template.directive.mjs +65 -0
- package/esm2020/lib/components/po-list-view/po-list-view.component.mjs +385 -0
- package/esm2020/lib/components/po-list-view/po-list-view.module.mjs +57 -0
- package/esm2020/lib/components/po-loading/index.mjs +5 -0
- package/esm2020/lib/components/po-loading/po-loading-base.component.mjs +27 -0
- package/esm2020/lib/components/po-loading/po-loading-icon/po-loading-icon.component.mjs +51 -0
- package/esm2020/lib/components/po-loading/po-loading-overlay/interfaces/po-loading-overlay-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-loading/po-loading-overlay/po-loading-overlay-base.component.mjs +93 -0
- package/esm2020/lib/components/po-loading/po-loading-overlay/po-loading-overlay.component.mjs +47 -0
- package/esm2020/lib/components/po-loading/po-loading.component.mjs +36 -0
- package/esm2020/lib/components/po-loading/po-loading.module.mjs +28 -0
- package/esm2020/lib/components/po-menu/index.mjs +9 -0
- package/esm2020/lib/components/po-menu/po-menu-base.component.mjs +312 -0
- package/esm2020/lib/components/po-menu/po-menu-filter/po-menu-filter-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu-filter/po-menu-filter.component.mjs +85 -0
- package/esm2020/lib/components/po-menu/po-menu-filter/po-menu-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu-header-template/po-menu-header-template.directive.mjs +52 -0
- package/esm2020/lib/components/po-menu/po-menu-item/po-menu-item-badge.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu-item/po-menu-item-filtered.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu-item/po-menu-item.component.mjs +362 -0
- package/esm2020/lib/components/po-menu/po-menu-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu/po-menu.component.mjs +611 -0
- package/esm2020/lib/components/po-menu/po-menu.module.mjs +32 -0
- package/esm2020/lib/components/po-menu/services/po-menu-global.service.mjs +34 -0
- package/esm2020/lib/components/po-menu/services/po-menu-items.service.mjs +38 -0
- package/esm2020/lib/components/po-menu/services/po-menu.service.mjs +38 -0
- package/esm2020/lib/components/po-menu-panel/index.mjs +4 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel-base.component.mjs +81 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item-internal.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.component.mjs +120 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel.component.mjs +171 -0
- package/esm2020/lib/components/po-menu-panel/po-menu-panel.module.mjs +30 -0
- package/esm2020/lib/components/po-menu-panel/services/po-menu-panel-items.service.mjs +38 -0
- package/esm2020/lib/components/po-modal/index.mjs +5 -0
- package/esm2020/lib/components/po-modal/po-modal-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-modal/po-modal-base.component.mjs +133 -0
- package/esm2020/lib/components/po-modal/po-modal-footer/po-modal-footer.component.mjs +52 -0
- package/esm2020/lib/components/po-modal/po-modal.component.mjs +207 -0
- package/esm2020/lib/components/po-modal/po-modal.literals.mjs +15 -0
- package/esm2020/lib/components/po-modal/po-modal.module.mjs +25 -0
- package/esm2020/lib/components/po-navbar/index.mjs +5 -0
- package/esm2020/lib/components/po-navbar/interfaces/po-navbar-icon-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-navbar/interfaces/po-navbar-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-navbar/interfaces/po-navbar-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-navbar/po-navbar-actions/po-navbar-action/po-navbar-action.component.mjs +56 -0
- package/esm2020/lib/components/po-navbar/po-navbar-actions/po-navbar-action-popup/po-navbar-action-popup.component.mjs +33 -0
- package/esm2020/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.component.mjs +36 -0
- package/esm2020/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.module.mjs +24 -0
- package/esm2020/lib/components/po-navbar/po-navbar-base.component.mjs +158 -0
- package/esm2020/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation-icon/po-navbar-item-navigation-icon.component.mjs +34 -0
- package/esm2020/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.component.mjs +35 -0
- package/esm2020/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.module.mjs +21 -0
- package/esm2020/lib/components/po-navbar/po-navbar-items/po-navbar-item/po-navbar-item.component.mjs +78 -0
- package/esm2020/lib/components/po-navbar/po-navbar-items/po-navbar-items.component.mjs +86 -0
- package/esm2020/lib/components/po-navbar/po-navbar-items/po-navbar-items.module.mjs +21 -0
- package/esm2020/lib/components/po-navbar/po-navbar-logo/po-navbar-logo.component.mjs +28 -0
- package/esm2020/lib/components/po-navbar/po-navbar.component.mjs +262 -0
- package/esm2020/lib/components/po-navbar/po-navbar.module.mjs +75 -0
- package/esm2020/lib/components/po-page/index.mjs +15 -0
- package/esm2020/lib/components/po-page/po-page-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-base.component.mjs +23 -0
- package/esm2020/lib/components/po-page/po-page-content/po-page-content-base.component.mjs +10 -0
- package/esm2020/lib/components/po-page/po-page-content/po-page-content.component.mjs +60 -0
- package/esm2020/lib/components/po-page/po-page-default/po-page-default-base.component.mjs +128 -0
- package/esm2020/lib/components/po-page/po-page-default/po-page-default-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-default/po-page-default.component.mjs +165 -0
- package/esm2020/lib/components/po-page/po-page-default/po-page-default.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-detail/po-page-detail-base.component.mjs +162 -0
- package/esm2020/lib/components/po-page/po-page-detail/po-page-detail-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-detail/po-page-detail.component.mjs +132 -0
- package/esm2020/lib/components/po-page/po-page-edit/po-page-edit-base.component.mjs +169 -0
- package/esm2020/lib/components/po-page/po-page-edit/po-page-edit-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-edit/po-page-edit.component.mjs +135 -0
- package/esm2020/lib/components/po-page/po-page-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-header/po-page-header-base.component.mjs +31 -0
- package/esm2020/lib/components/po-page/po-page-header/po-page-header.component.mjs +51 -0
- package/esm2020/lib/components/po-page/po-page-list/po-page-list-base.component.mjs +158 -0
- package/esm2020/lib/components/po-page/po-page-list/po-page-list-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page-list/po-page-list.component.mjs +323 -0
- package/esm2020/lib/components/po-page/po-page-slide/po-page-slide-base.component.mjs +146 -0
- package/esm2020/lib/components/po-page/po-page-slide/po-page-slide.component.mjs +197 -0
- package/esm2020/lib/components/po-page/po-page.component.mjs +23 -0
- package/esm2020/lib/components/po-page/po-page.interface.mjs +2 -0
- package/esm2020/lib/components/po-page/po-page.module.mjs +97 -0
- package/esm2020/lib/components/po-popover/index.mjs +3 -0
- package/esm2020/lib/components/po-popover/po-popover-base.component.mjs +126 -0
- package/esm2020/lib/components/po-popover/po-popover.component.mjs +173 -0
- package/esm2020/lib/components/po-popover/po-popover.module.mjs +23 -0
- package/esm2020/lib/components/po-popup/index.mjs +4 -0
- package/esm2020/lib/components/po-popup/po-popup-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-popup/po-popup-base.component.mjs +199 -0
- package/esm2020/lib/components/po-popup/po-popup.component.mjs +232 -0
- package/esm2020/lib/components/po-popup/po-popup.module.mjs +27 -0
- package/esm2020/lib/components/po-progress/enums/po-progress-status.enum.mjs +17 -0
- package/esm2020/lib/components/po-progress/index.mjs +4 -0
- package/esm2020/lib/components/po-progress/po-progress-bar/po-progress-bar.component.mjs +29 -0
- package/esm2020/lib/components/po-progress/po-progress-base.component.mjs +124 -0
- package/esm2020/lib/components/po-progress/po-progress.component.mjs +140 -0
- package/esm2020/lib/components/po-progress/po-progress.module.mjs +25 -0
- package/esm2020/lib/components/po-slide/directives/po-slide-content-template.directive.mjs +60 -0
- package/esm2020/lib/components/po-slide/index.mjs +5 -0
- package/esm2020/lib/components/po-slide/interfaces/po-slide-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-slide/po-slide-base.component.mjs +113 -0
- package/esm2020/lib/components/po-slide/po-slide-circles/po-slide-circles.component.mjs +52 -0
- package/esm2020/lib/components/po-slide/po-slide-control/po-slide-control.component.mjs +39 -0
- package/esm2020/lib/components/po-slide/po-slide-item/po-slide-item.component.mjs +152 -0
- package/esm2020/lib/components/po-slide/po-slide.component.mjs +330 -0
- package/esm2020/lib/components/po-slide/po-slide.module.mjs +68 -0
- package/esm2020/lib/components/po-stepper/enums/po-stepper-orientation.enum.mjs +18 -0
- package/esm2020/lib/components/po-stepper/enums/po-stepper-status.enum.mjs +23 -0
- package/esm2020/lib/components/po-stepper/index.mjs +7 -0
- package/esm2020/lib/components/po-stepper/po-step/po-step.component.mjs +84 -0
- package/esm2020/lib/components/po-stepper/po-stepper-base.component.mjs +159 -0
- package/esm2020/lib/components/po-stepper/po-stepper-circle/po-stepper-circle.component.mjs +80 -0
- package/esm2020/lib/components/po-stepper/po-stepper-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-stepper/po-stepper-label/po-stepper-label.component.mjs +28 -0
- package/esm2020/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.mjs +165 -0
- package/esm2020/lib/components/po-stepper/po-stepper.component.mjs +256 -0
- package/esm2020/lib/components/po-stepper/po-stepper.module.mjs +37 -0
- package/esm2020/lib/components/po-table/enums/po-table-column-sort-type.enum.mjs +14 -0
- package/esm2020/lib/components/po-table/enums/po-table-row-template-arrow-direction.enum.mjs +14 -0
- package/esm2020/lib/components/po-table/index.mjs +18 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-boolean.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-column-sort.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-column.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-filter.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-filtered-items-params.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-literals.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/interfaces/po-table-response-api.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-base.component.mjs +937 -0
- package/esm2020/lib/components/po-table/po-table-cell-template/po-table-cell-template.directive.mjs +83 -0
- package/esm2020/lib/components/po-table/po-table-column-icon/po-table-column-icon.component.mjs +92 -0
- package/esm2020/lib/components/po-table/po-table-column-icon/po-table-column-icon.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-column-label/po-table-column-label.component.mjs +43 -0
- package/esm2020/lib/components/po-table/po-table-column-label/po-table-column-label.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-column-link/po-table-column-link.component.mjs +105 -0
- package/esm2020/lib/components/po-table/po-table-column-manager/po-table-column-manager.component.mjs +317 -0
- package/esm2020/lib/components/po-table/po-table-column-template/po-table-column-template.directive.mjs +91 -0
- package/esm2020/lib/components/po-table/po-table-detail/po-table-detail-column.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-detail/po-table-detail.component.mjs +274 -0
- package/esm2020/lib/components/po-table/po-table-detail/po-table-detail.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-icon/po-table-icon.component.mjs +67 -0
- package/esm2020/lib/components/po-table/po-table-row-template/po-table-row-template.directive.mjs +131 -0
- package/esm2020/lib/components/po-table/po-table-show-subtitle/po-table-show-subtitle.component.mjs +61 -0
- package/esm2020/lib/components/po-table/po-table-subtitle-circle/po-table-subtitle-circle.component.mjs +49 -0
- package/esm2020/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-column.interface.mjs +2 -0
- package/esm2020/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-footer.component.mjs +102 -0
- package/esm2020/lib/components/po-table/po-table.component.mjs +1437 -0
- package/esm2020/lib/components/po-table/po-table.module.mjs +122 -0
- package/esm2020/lib/components/po-table/services/po-table.service.mjs +37 -0
- package/esm2020/lib/components/po-tabs/index.mjs +5 -0
- package/esm2020/lib/components/po-tabs/po-tab/po-tab-base.component.mjs +93 -0
- package/esm2020/lib/components/po-tabs/po-tab/po-tab.component.mjs +29 -0
- package/esm2020/lib/components/po-tabs/po-tab/po-tab.interface.mjs +2 -0
- package/esm2020/lib/components/po-tabs/po-tab-button/po-tab-button.component.mjs +101 -0
- package/esm2020/lib/components/po-tabs/po-tab-dropdown/po-tab-dropdown.component.mjs +109 -0
- package/esm2020/lib/components/po-tabs/po-tabs-base.component.mjs +52 -0
- package/esm2020/lib/components/po-tabs/po-tabs.component.mjs +188 -0
- package/esm2020/lib/components/po-tabs/po-tabs.module.mjs +27 -0
- package/esm2020/lib/components/po-tag/enums/po-tag-icon.enum.mjs +19 -0
- package/esm2020/lib/components/po-tag/enums/po-tag-orientation.enum.mjs +15 -0
- package/esm2020/lib/components/po-tag/enums/po-tag-type.enum.mjs +19 -0
- package/esm2020/lib/components/po-tag/index.mjs +5 -0
- package/esm2020/lib/components/po-tag/interfaces/po-tag-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-tag/po-tag-base.component.mjs +192 -0
- package/esm2020/lib/components/po-tag/po-tag.component.mjs +114 -0
- package/esm2020/lib/components/po-tag/po-tag.module.mjs +27 -0
- package/esm2020/lib/components/po-toolbar/index.mjs +5 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-action.interface.mjs +2 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-actions/po-toolbar-actions.component.mjs +55 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-base.component.mjs +60 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-notification/po-toolbar-notification.component.mjs +66 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.component.mjs +78 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.interface.mjs +2 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar.component.mjs +85 -0
- package/esm2020/lib/components/po-toolbar/po-toolbar.module.mjs +41 -0
- package/esm2020/lib/components/po-tree-view/index.mjs +4 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view-base.component.mjs +209 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.component.mjs +106 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.interface.mjs +2 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view-item-header/po-tree-view-item-header.component.mjs +91 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view.component.mjs +82 -0
- package/esm2020/lib/components/po-tree-view/po-tree-view.module.mjs +55 -0
- package/esm2020/lib/components/po-tree-view/services/po-tree-view.service.mjs +27 -0
- package/esm2020/lib/components/po-widget/index.mjs +3 -0
- package/esm2020/lib/components/po-widget/po-widget-base.component.mjs +247 -0
- package/esm2020/lib/components/po-widget/po-widget.component.mjs +245 -0
- package/esm2020/lib/components/po-widget/po-widget.module.mjs +25 -0
- package/esm2020/lib/decorators/index.mjs +3 -0
- package/esm2020/lib/decorators/input-boolean/input-boolean.decorator.mjs +18 -0
- package/esm2020/lib/decorators/input-required/input-required.decorator.mjs +34 -0
- package/esm2020/lib/decorators/property-decorator.interface.mjs +2 -0
- package/esm2020/lib/decorators/utils-decorators.mjs +64 -0
- package/esm2020/lib/directives/directives.module.mjs +20 -0
- package/esm2020/lib/directives/index.mjs +3 -0
- package/esm2020/lib/directives/po-tooltip/index.mjs +3 -0
- package/esm2020/lib/directives/po-tooltip/po-tooltip-base.directive.mjs +115 -0
- package/esm2020/lib/directives/po-tooltip/po-tooltip-control-position.service.mjs +11 -0
- package/esm2020/lib/directives/po-tooltip/po-tooltip.directive.mjs +151 -0
- package/esm2020/lib/directives/po-tooltip/po-tooltip.module.mjs +24 -0
- package/esm2020/lib/enums/po-color-palette.enum.mjs +35 -0
- package/esm2020/lib/enums/po-key-code.enum.mjs +31 -0
- package/esm2020/lib/guards/guards.module.mjs +18 -0
- package/esm2020/lib/guards/index.mjs +2 -0
- package/esm2020/lib/index.mjs +10 -0
- package/esm2020/lib/interceptors/index.mjs +4 -0
- package/esm2020/lib/interceptors/interceptors.module.mjs +21 -0
- package/esm2020/lib/interceptors/po-http-interceptor/index.mjs +3 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-base.service.mjs +252 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail-literals.interface.mjs +39 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.component.mjs +172 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.interface.mjs +2 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor-literals.mjs +23 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor.module.mjs +42 -0
- package/esm2020/lib/interceptors/po-http-interceptor/po-http-interceptor.service.mjs +26 -0
- package/esm2020/lib/interceptors/po-http-request/index.mjs +3 -0
- package/esm2020/lib/interceptors/po-http-request/po-http-request-control-service.mjs +26 -0
- package/esm2020/lib/interceptors/po-http-request/po-http-request-interceptor.service.mjs +165 -0
- package/esm2020/lib/interceptors/po-http-request/po-http-request.module.mjs +39 -0
- package/esm2020/lib/interfaces/index.mjs +2 -0
- package/esm2020/lib/interfaces/po-http/po-response-api.interface.mjs +2 -0
- package/esm2020/lib/pipes/index.mjs +3 -0
- package/esm2020/lib/pipes/pipes.module.mjs +20 -0
- package/esm2020/lib/pipes/po-time/index.mjs +3 -0
- package/esm2020/lib/pipes/po-time/po-time.module.mjs +25 -0
- package/esm2020/lib/pipes/po-time/po-time.pipe.mjs +59 -0
- package/esm2020/lib/po.module.mjs +62 -0
- package/esm2020/lib/services/index.mjs +11 -0
- package/esm2020/lib/services/po-active-overlay/index.mjs +3 -0
- package/esm2020/lib/services/po-active-overlay/po-active-overlay.module.mjs +21 -0
- package/esm2020/lib/services/po-active-overlay/po-active-overlay.service.mjs +16 -0
- package/esm2020/lib/services/po-color/po-color.service.mjs +62 -0
- package/esm2020/lib/services/po-color/po-colors.constant.mjs +43 -0
- package/esm2020/lib/services/po-color-palette/index.mjs +3 -0
- package/esm2020/lib/services/po-color-palette/po-color-palette.module.mjs +21 -0
- package/esm2020/lib/services/po-color-palette/po-color-palette.service.mjs +28 -0
- package/esm2020/lib/services/po-component-injector/index.mjs +3 -0
- package/esm2020/lib/services/po-component-injector/po-component-injector.module.mjs +19 -0
- package/esm2020/lib/services/po-component-injector/po-component-injector.service.mjs +31 -0
- package/esm2020/lib/services/po-control-position/index.mjs +3 -0
- package/esm2020/lib/services/po-control-position/po-control-position.constants.mjs +16 -0
- package/esm2020/lib/services/po-control-position/po-control-position.module.mjs +20 -0
- package/esm2020/lib/services/po-control-position/po-control-position.service.mjs +364 -0
- package/esm2020/lib/services/po-date/index.mjs +3 -0
- package/esm2020/lib/services/po-date/po-date.module.mjs +21 -0
- package/esm2020/lib/services/po-date/po-date.service.mjs +203 -0
- package/esm2020/lib/services/po-dialog/index.mjs +8 -0
- package/esm2020/lib/services/po-dialog/interfaces/po-dialog-alert-literals.interface.mjs +2 -0
- package/esm2020/lib/services/po-dialog/interfaces/po-dialog-confirm-literals.interface.mjs +2 -0
- package/esm2020/lib/services/po-dialog/interfaces/po-dialog.interface.mjs +2 -0
- package/esm2020/lib/services/po-dialog/po-dialog-base.service.mjs +18 -0
- package/esm2020/lib/services/po-dialog/po-dialog.component.mjs +132 -0
- package/esm2020/lib/services/po-dialog/po-dialog.enum.mjs +16 -0
- package/esm2020/lib/services/po-dialog/po-dialog.module.mjs +21 -0
- package/esm2020/lib/services/po-dialog/po-dialog.service.mjs +42 -0
- package/esm2020/lib/services/po-i18n/index.mjs +8 -0
- package/esm2020/lib/services/po-i18n/interfaces/po-i18n-config-default.interface.mjs +2 -0
- package/esm2020/lib/services/po-i18n/interfaces/po-i18n-config.interface.mjs +2 -0
- package/esm2020/lib/services/po-i18n/interfaces/po-i18n-literals.interface.mjs +2 -0
- package/esm2020/lib/services/po-i18n/po-i18n-base.pipe.mjs +40 -0
- package/esm2020/lib/services/po-i18n/po-i18n-base.service.mjs +439 -0
- package/esm2020/lib/services/po-i18n/po-i18n-config-injection-token.mjs +3 -0
- package/esm2020/lib/services/po-i18n/po-i18n.module.mjs +194 -0
- package/esm2020/lib/services/po-i18n/po-i18n.pipe.mjs +25 -0
- package/esm2020/lib/services/po-i18n/po-i18n.service.mjs +19 -0
- package/esm2020/lib/services/po-language/index.mjs +5 -0
- package/esm2020/lib/services/po-language/po-language.constant.mjs +73 -0
- package/esm2020/lib/services/po-language/po-language.interface.mjs +2 -0
- package/esm2020/lib/services/po-language/po-language.module.mjs +20 -0
- package/esm2020/lib/services/po-language/po-language.service.mjs +136 -0
- package/esm2020/lib/services/po-notification/index.mjs +6 -0
- package/esm2020/lib/services/po-notification/po-notification-base.service.mjs +111 -0
- package/esm2020/lib/services/po-notification/po-notification.interface.mjs +2 -0
- package/esm2020/lib/services/po-notification/po-notification.module.mjs +21 -0
- package/esm2020/lib/services/po-notification/po-notification.service.mjs +90 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster-base.component.mjs +15 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster-orientation.enum.mjs +13 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster-type.enum.mjs +17 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster.component.mjs +168 -0
- package/esm2020/lib/services/po-notification/po-toaster/po-toaster.interface.mjs +2 -0
- package/esm2020/lib/services/services.module.mjs +75 -0
- package/esm2020/lib/utils/util.mjs +511 -0
- package/esm2020/po-ui-ng-components.mjs +5 -0
- package/esm2020/public-api.mjs +2 -0
- package/fesm2015/po-ui-ng-components.mjs +47803 -0
- package/fesm2015/po-ui-ng-components.mjs.map +1 -0
- package/fesm2020/po-ui-ng-components.mjs +45113 -0
- package/fesm2020/po-ui-ng-components.mjs.map +1 -0
- package/lib/components/components.module.d.ts +42 -2
- package/lib/components/index.d.ts +37 -37
- package/lib/components/po-accordion/index.d.ts +3 -3
- package/lib/components/po-accordion/po-accordion-base.component.d.ts +28 -28
- package/lib/components/po-accordion/po-accordion-item/po-accordion-item.component.d.ts +52 -49
- package/lib/components/po-accordion/po-accordion-item-body/po-accordion-item-body.component.d.ts +6 -3
- package/lib/components/po-accordion/po-accordion-item-header/po-accordion-item-header.component.d.ts +10 -7
- package/lib/components/po-accordion/po-accordion.component.d.ts +40 -37
- package/lib/components/po-accordion/po-accordion.module.d.ts +42 -33
- package/lib/components/po-accordion/services/po-accordion.service.d.ts +16 -13
- package/lib/components/po-avatar/index.d.ts +2 -2
- package/lib/components/po-avatar/po-avatar-base.component.d.ts +56 -53
- package/lib/components/po-avatar/po-avatar.component.d.ts +31 -28
- package/lib/components/po-avatar/po-avatar.module.d.ts +13 -7
- package/lib/components/po-badge/po-badge-base.component.d.ts +58 -55
- package/lib/components/po-badge/po-badge.component.d.ts +11 -8
- package/lib/components/po-badge/po-badge.module.d.ts +13 -7
- package/lib/components/po-breadcrumb/index.d.ts +4 -4
- package/lib/components/po-breadcrumb/po-breadcrumb-base.component.d.ts +107 -104
- package/lib/components/po-breadcrumb/po-breadcrumb-dropdown/po-breadcrumb-dropdown.component.d.ts +14 -11
- package/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.component.d.ts +32 -29
- package/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.service.d.ts +30 -27
- package/lib/components/po-breadcrumb/po-breadcrumb-item/po-breadcrumb-item.component.d.ts +16 -13
- package/lib/components/po-breadcrumb/po-breadcrumb-item.interface.d.ts +31 -31
- package/lib/components/po-breadcrumb/po-breadcrumb.component.d.ts +56 -53
- package/lib/components/po-breadcrumb/po-breadcrumb.interface.d.ts +42 -42
- package/lib/components/po-breadcrumb/po-breadcrumb.module.d.ts +18 -8
- package/lib/components/po-button/index.d.ts +2 -2
- package/lib/components/po-button/po-button-base.component.d.ts +123 -120
- package/lib/components/po-button/po-button.component.d.ts +52 -49
- package/lib/components/po-button/po-button.module.d.ts +15 -7
- package/lib/components/po-button-group/index.d.ts +4 -4
- package/lib/components/po-button-group/po-button-group-base.component.d.ts +56 -53
- package/lib/components/po-button-group/po-button-group-item.interface.d.ts +64 -64
- package/lib/components/po-button-group/po-button-group-toggle.enum.d.ts +15 -15
- package/lib/components/po-button-group/po-button-group.component.d.ts +34 -31
- package/lib/components/po-button-group/po-button-group.module.d.ts +15 -7
- package/lib/components/po-calendar/index.d.ts +3 -3
- package/lib/components/po-calendar/po-calendar-base.component.d.ts +132 -129
- package/lib/components/po-calendar/po-calendar-header/po-calendar-header.component.d.ts +11 -8
- package/lib/components/po-calendar/po-calendar-mode.enum.d.ts +11 -11
- package/lib/components/po-calendar/po-calendar-wrapper/po-calendar-wrapper.component.d.ts +80 -77
- package/lib/components/po-calendar/po-calendar.component.d.ts +56 -53
- package/lib/components/po-calendar/po-calendar.module.d.ts +14 -6
- package/lib/components/po-calendar/services/po-calendar.lang.service.d.ts +19 -16
- package/lib/components/po-calendar/services/po-calendar.service.d.ts +8 -5
- package/lib/components/po-chart/directives/po-resize-observer.directive.d.ts +15 -12
- package/lib/components/po-chart/enums/po-chart-type.enum.d.ts +36 -49
- package/lib/components/po-chart/helpers/po-chart-default-values.constant.d.ts +8 -8
- package/lib/components/po-chart/index.d.ts +6 -7
- package/lib/components/po-chart/interfaces/po-chart-axis-options.interface.d.ts +37 -37
- package/lib/components/po-chart/interfaces/po-chart-bar-coordinates.interface.d.ts +23 -23
- package/lib/components/po-chart/interfaces/po-chart-container-size.interface.d.ts +23 -23
- package/lib/components/po-chart/interfaces/po-chart-label-coordinates.interface.d.ts +19 -19
- package/lib/components/po-chart/interfaces/po-chart-min-max-values.interface.d.ts +19 -19
- package/lib/components/po-chart/interfaces/po-chart-options.interface.d.ts +20 -20
- package/lib/components/po-chart/interfaces/po-chart-path-coordinates.interface.d.ts +23 -23
- package/lib/components/po-chart/interfaces/po-chart-points-coordinates.interface.d.ts +26 -26
- package/lib/components/po-chart/interfaces/po-chart-serie.interface.d.ts +77 -101
- package/lib/components/po-chart/po-chart-base.component.d.ts +154 -152
- package/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-label/po-chart-axis-label.component.d.ts +13 -10
- package/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-path/po-chart-axis-path.component.d.ts +10 -7
- package/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis.component.d.ts +63 -60
- package/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-base.component.d.ts +34 -31
- package/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-path/po-chart-bar-path.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-column/po-chart-column.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-label/po-chart-circular-label.component.d.ts +14 -11
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-circular-path.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-tooltip.directive.d.ts +23 -20
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular.component.d.ts +45 -42
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-donut/po-chart-donut.component.d.ts +19 -16
- package/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-pie/po-chart-pie.component.d.ts +11 -8
- package/lib/components/po-chart/po-chart-container/po-chart-container.component.d.ts +46 -43
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-area/po-chart-area.component.d.ts +23 -20
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line-base.component.d.ts +49 -46
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line.component.d.ts +16 -13
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-path/po-chart-path.component.d.ts +22 -19
- package/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-series-point/po-chart-series-point.component.d.ts +33 -30
- package/lib/components/po-chart/po-chart-legend/po-chart-legend.component.d.ts +10 -7
- package/lib/components/po-chart/po-chart-types/po-chart-dynamic-type.component.d.ts +37 -36
- package/lib/components/po-chart/po-chart.component.d.ts +69 -67
- package/lib/components/po-chart/po-chart.module.d.ts +32 -7
- package/lib/components/po-chart/services/po-chart-maths.service.d.ts +66 -63
- package/lib/components/po-chart/services/po-chart-svg-container.service.d.ts +24 -21
- package/lib/components/po-container/index.d.ts +2 -2
- package/lib/components/po-container/po-container-base.component.d.ts +62 -59
- package/lib/components/po-container/po-container.component.d.ts +27 -24
- package/lib/components/po-container/po-container.module.d.ts +13 -7
- package/lib/components/po-disclaimer/index.d.ts +3 -3
- package/lib/components/po-disclaimer/po-disclaimer-base.component.d.ts +59 -56
- package/lib/components/po-disclaimer/po-disclaimer.component.d.ts +19 -16
- package/lib/components/po-disclaimer/po-disclaimer.interface.d.ts +17 -17
- package/lib/components/po-disclaimer/po-disclaimer.module.d.ts +12 -6
- package/lib/components/po-disclaimer-group/index.d.ts +4 -4
- package/lib/components/po-disclaimer-group/po-disclaimer-group-base.component.d.ts +117 -114
- package/lib/components/po-disclaimer-group/po-disclaimer-group-remove-action.interface.d.ts +18 -18
- package/lib/components/po-disclaimer-group/po-disclaimer-group.component.d.ts +31 -28
- package/lib/components/po-disclaimer-group/po-disclaimer-group.interface.d.ts +78 -78
- package/lib/components/po-disclaimer-group/po-disclaimer-group.module.d.ts +15 -7
- package/lib/components/po-disclaimer-group/po-disclaimer-remove/po-disclaimer-remove.component.d.ts +19 -16
- package/lib/components/po-divider/index.d.ts +2 -2
- package/lib/components/po-divider/po-divider-base.component.d.ts +13 -10
- package/lib/components/po-divider/po-divider.component.d.ts +26 -23
- package/lib/components/po-divider/po-divider.module.d.ts +13 -7
- package/lib/components/po-dropdown/index.d.ts +3 -3
- package/lib/components/po-dropdown/po-dropdown-action.interface.d.ts +11 -11
- package/lib/components/po-dropdown/po-dropdown-base.component.d.ts +57 -54
- package/lib/components/po-dropdown/po-dropdown.component.d.ts +44 -41
- package/lib/components/po-dropdown/po-dropdown.module.d.ts +13 -6
- package/lib/components/po-dynamic/index.d.ts +10 -10
- package/lib/components/po-dynamic/po-dynamic-field-type.enum.d.ts +23 -23
- package/lib/components/po-dynamic/po-dynamic-field.interface.d.ts +130 -130
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-base.component.d.ts +218 -215
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-field.interface.d.ts +249 -249
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-field-internal.interface.d.ts +14 -14
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields-base.component.d.ts +47 -44
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields.component.d.ts +39 -36
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.interface.d.ts +20 -20
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.service.d.ts +11 -8
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-operation/po-dynamic-form-operation.d.ts +10 -10
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-response.interface.d.ts +29 -29
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-changed.interface.d.ts +13 -13
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-validation.interface.d.ts +21 -21
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.interface.d.ts +20 -20
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.service.d.ts +15 -12
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form.component.d.ts +86 -83
- package/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-base.component.d.ts +137 -134
- package/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-field.interface.d.ts +104 -104
- package/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.component.d.ts +39 -36
- package/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.service.d.ts +13 -10
- package/lib/components/po-dynamic/po-dynamic.module.d.ts +16 -2
- package/lib/components/po-dynamic/po-dynamic.util.d.ts +4 -4
- package/lib/components/po-field/index.d.ts +52 -50
- package/lib/components/po-field/po-checkbox/po-checkbox-base.component.d.ts +65 -62
- package/lib/components/po-field/po-checkbox/po-checkbox.component.d.ts +54 -51
- package/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option-view.interface.d.ts +14 -14
- package/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option.interface.d.ts +24 -24
- package/lib/components/po-field/po-checkbox-group/po-checkbox-group-base.component.d.ts +187 -184
- package/lib/components/po-field/po-checkbox-group/po-checkbox-group.component.d.ts +53 -50
- package/lib/components/po-field/po-checkbox-group/po-checkbox-group.module.d.ts +15 -7
- package/lib/components/po-field/po-clean/index.d.ts +1 -0
- package/lib/components/po-field/po-clean/po-clean-base.component.d.ts +33 -30
- package/lib/components/po-field/po-clean/po-clean.component.d.ts +20 -17
- package/lib/components/po-field/po-clean/po-clean.module.d.ts +13 -7
- package/lib/components/po-field/po-combo/interfaces/po-combo-filter.interface.d.ts +27 -27
- package/lib/components/po-field/po-combo/interfaces/po-combo-group.interface.d.ts +11 -11
- package/lib/components/po-field/po-combo/interfaces/po-combo-literals.interface.d.ts +11 -11
- package/lib/components/po-field/po-combo/interfaces/po-combo-option-group.interface.d.ts +14 -14
- package/lib/components/po-field/po-combo/interfaces/po-combo-option.interface.d.ts +21 -21
- package/lib/components/po-field/po-combo/interfaces/po-response.interface.d.ts +11 -11
- package/lib/components/po-field/po-combo/po-combo-base.component.d.ts +412 -409
- package/lib/components/po-field/po-combo/po-combo-filter-mode.enum.d.ts +15 -15
- package/lib/components/po-field/po-combo/po-combo-filter.service.d.ts +31 -28
- package/lib/components/po-field/po-combo/po-combo-option-template/po-combo-option-template.directive.d.ts +73 -70
- package/lib/components/po-field/po-combo/po-combo.component.d.ts +142 -139
- package/lib/components/po-field/po-datepicker/enums/po-datepicker-iso-format.enum.d.ts +15 -15
- package/lib/components/po-field/po-datepicker/po-datepicker-base.component.d.ts +226 -223
- package/lib/components/po-field/po-datepicker/po-datepicker.component.d.ts +104 -101
- package/lib/components/po-field/po-datepicker/po-datepicker.module.d.ts +17 -7
- package/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range-literals.interface.d.ts +17 -17
- package/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range.interface.d.ts +16 -16
- package/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.d.ts +272 -269
- package/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.d.ts +128 -125
- package/lib/components/po-field/po-datepicker-range/po-datepicker-range.literals.d.ts +7 -7
- package/lib/components/po-field/po-decimal/po-decimal.component.d.ts +183 -180
- package/lib/components/po-field/po-email/po-email.component.d.ts +45 -42
- package/lib/components/po-field/po-field-container/index.d.ts +3 -0
- package/lib/components/po-field/po-field-container/po-field-container-bottom/po-field-container-bottom.component.d.ts +18 -15
- package/lib/components/po-field/po-field-container/po-field-container-literals.d.ts +14 -14
- package/lib/components/po-field/po-field-container/po-field-container.component.d.ts +21 -18
- package/lib/components/po-field/po-field-container/po-field-container.module.d.ts +14 -7
- package/lib/components/po-field/po-field-validate.model.d.ts +41 -38
- package/lib/components/po-field/po-field.model.d.ts +54 -51
- package/lib/components/po-field/po-field.module.d.ts +69 -12
- package/lib/components/po-field/po-input/po-input-base.component.d.ts +268 -265
- package/lib/components/po-field/po-input/po-input.component.d.ts +32 -29
- package/lib/components/po-field/po-input/po-mask.d.ts +49 -49
- package/lib/components/po-field/po-input-generic/po-input-generic.d.ts +38 -35
- package/lib/components/po-field/po-login/po-login.component.d.ts +37 -34
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-advanced-filter.interface.d.ts +8 -8
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-column.interface.d.ts +44 -44
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-filter.interface.d.ts +29 -29
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-filtered-items-params.interface.d.ts +40 -40
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-literals.interface.d.ts +40 -40
- package/lib/components/po-field/po-lookup/interfaces/po-lookup-response-api.interface.d.ts +8 -8
- package/lib/components/po-field/po-lookup/po-lookup-base.component.d.ts +390 -387
- package/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal-base.component.d.ts +122 -119
- package/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal.component.d.ts +44 -41
- package/lib/components/po-field/po-lookup/po-lookup.component.d.ts +117 -113
- package/lib/components/po-field/po-lookup/services/po-lookup-filter.service.d.ts +28 -25
- package/lib/components/po-field/po-lookup/services/po-lookup-modal.service.d.ts +47 -44
- package/lib/components/po-field/po-multiselect/po-multiselect-base.component.d.ts +348 -345
- package/lib/components/po-field/po-multiselect/po-multiselect-dropdown/po-multiselect-dropdown.component.d.ts +62 -57
- package/lib/components/po-field/po-multiselect/po-multiselect-filter-mode.enum.d.ts +15 -15
- package/lib/components/po-field/po-multiselect/po-multiselect-filter.interface.d.ts +28 -28
- package/lib/components/po-field/po-multiselect/po-multiselect-filter.service.d.ts +21 -18
- package/lib/components/po-field/po-multiselect/po-multiselect-item/po-multiselect-item.component.d.ts +20 -17
- package/lib/components/po-field/po-multiselect/po-multiselect-literals.interface.d.ts +15 -15
- package/lib/components/po-field/po-multiselect/po-multiselect-option.interface.d.ts +13 -13
- package/lib/components/po-field/po-multiselect/po-multiselect-search/po-multiselect-search.component.d.ts +39 -34
- package/lib/components/po-field/po-multiselect/po-multiselect.component.d.ts +110 -107
- package/lib/components/po-field/po-number/po-number-base.component.d.ts +21 -18
- package/lib/components/po-field/po-number/po-number.component.d.ts +62 -59
- package/lib/components/po-field/po-password/po-password.component.d.ts +51 -48
- package/lib/components/po-field/po-radio-group/po-radio-group-base.component.d.ts +122 -119
- package/lib/components/po-field/po-radio-group/po-radio-group-option.interface.d.ts +15 -15
- package/lib/components/po-field/po-radio-group/po-radio-group.component.d.ts +68 -64
- package/lib/components/po-field/po-rich-text/interfaces/po-rich-text-toolbar-button-group-item.interface.d.ts +4 -4
- package/lib/components/po-field/po-rich-text/po-rich-text-base.component.d.ts +147 -144
- package/lib/components/po-field/po-rich-text/po-rich-text-body/po-rich-text-body.component.d.ts +55 -52
- package/lib/components/po-field/po-rich-text/po-rich-text-image-modal/po-rich-text-image-modal.component.d.ts +37 -34
- package/lib/components/po-field/po-rich-text/po-rich-text-link-modal/po-rich-text-link-modal.component.d.ts +48 -45
- package/lib/components/po-field/po-rich-text/po-rich-text-literals.d.ts +82 -82
- package/lib/components/po-field/po-rich-text/po-rich-text-toolbar/po-rich-text-toolbar.component.d.ts +48 -45
- package/lib/components/po-field/po-rich-text/po-rich-text.component.d.ts +63 -60
- package/lib/components/po-field/po-rich-text/po-rich-text.service.d.ts +8 -5
- package/lib/components/po-field/po-select/po-select-option-template/po-select-option-template.directive.d.ts +51 -48
- package/lib/components/po-field/po-select/po-select-option.interface.d.ts +13 -13
- package/lib/components/po-field/po-select/po-select.component.d.ts +161 -158
- package/lib/components/po-field/po-switch/po-switch-label-position.enum.d.ts +13 -13
- package/lib/components/po-field/po-switch/po-switch.component.d.ts +105 -102
- package/lib/components/po-field/po-textarea/po-textarea-base.component.d.ts +181 -178
- package/lib/components/po-field/po-textarea/po-textarea.component.d.ts +62 -59
- package/lib/components/po-field/po-upload/interfaces/po-upload-file-restriction.interface.d.ts +37 -37
- package/lib/components/po-field/po-upload/interfaces/po-upload-literals.interface.d.ts +45 -45
- package/lib/components/po-field/po-upload/po-upload-base.component.d.ts +336 -333
- package/lib/components/po-field/po-upload/po-upload-base.service.d.ts +35 -32
- package/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area/po-upload-drag-drop-area.component.d.ts +17 -14
- package/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area-overlay/po-upload-drag-drop-area-overlay.component.d.ts +17 -14
- package/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.component.d.ts +27 -24
- package/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.directive.d.ts +35 -32
- package/lib/components/po-field/po-upload/po-upload-file-restrictions/po-upload-file-restrictions.component.d.ts +24 -21
- package/lib/components/po-field/po-upload/po-upload-file.d.ts +15 -15
- package/lib/components/po-field/po-upload/po-upload-status.enum.d.ts +6 -6
- package/lib/components/po-field/po-upload/po-upload.component.d.ts +110 -106
- package/lib/components/po-field/po-upload/po-upload.service.d.ts +6 -3
- package/lib/components/po-field/po-url/po-url.component.d.ts +44 -41
- package/lib/components/po-field/validators.d.ts +7 -7
- package/lib/components/po-gauge/index.d.ts +3 -3
- package/lib/components/po-gauge/interfaces/po-gauge-coordinates.interface.d.ts +19 -19
- package/lib/components/po-gauge/interfaces/po-gauge-ranges.interface.d.ts +44 -44
- package/lib/components/po-gauge/interfaces/po-gauge-svg-container.interface.d.ts +15 -15
- package/lib/components/po-gauge/po-gauge-base.component.d.ts +101 -98
- package/lib/components/po-gauge/po-gauge-default-values.constant.d.ts +5 -5
- package/lib/components/po-gauge/po-gauge-description/po-gauge-description.component.d.ts +14 -11
- package/lib/components/po-gauge/po-gauge-legend/po-gauge-legend.component.d.ts +12 -9
- package/lib/components/po-gauge/po-gauge-svg/po-gauge-path/po-gauge-path.component.d.ts +12 -9
- package/lib/components/po-gauge/po-gauge-svg/po-gauge-pointer/po-gauge-pointer.component.d.ts +18 -15
- package/lib/components/po-gauge/po-gauge-svg/po-gauge-svg.component.d.ts +35 -32
- package/lib/components/po-gauge/po-gauge-title/po-gauge-title.component.d.ts +6 -3
- package/lib/components/po-gauge/po-gauge.component.d.ts +40 -37
- package/lib/components/po-gauge/po-gauge.module.d.ts +19 -6
- package/lib/components/po-grid/index.d.ts +3 -3
- package/lib/components/po-grid/po-grid-cell/po-grid-cell.component.d.ts +30 -27
- package/lib/components/po-grid/po-grid-cell-action/po-grid-cell-action.component.d.ts +9 -6
- package/lib/components/po-grid/po-grid-head/po-grid-head.component.d.ts +13 -10
- package/lib/components/po-grid/po-grid-row-actions.interface.d.ts +86 -86
- package/lib/components/po-grid/po-grid.component.d.ts +83 -80
- package/lib/components/po-grid/po-grid.module.d.ts +18 -7
- package/lib/components/po-icon/index.d.ts +2 -2
- package/lib/components/po-icon/po-icon.component.d.ts +42 -39
- package/lib/components/po-icon/po-icon.module.d.ts +13 -7
- package/lib/components/po-info/index.d.ts +3 -3
- package/lib/components/po-info/po-info-base.component.d.ts +49 -46
- package/lib/components/po-info/po-info-orietation.enum.d.ts +13 -13
- package/lib/components/po-info/po-info.component.d.ts +27 -24
- package/lib/components/po-info/po-info.module.d.ts +14 -7
- package/lib/components/po-list-view/index.d.ts +6 -6
- package/lib/components/po-list-view/interfaces/po-list-view-action.interface.d.ts +15 -15
- package/lib/components/po-list-view/interfaces/po-list-view-literals.interface.d.ts +19 -19
- package/lib/components/po-list-view/po-list-view-base.component.d.ts +168 -165
- package/lib/components/po-list-view/po-list-view-content-template/po-list-view-content-template.directive.d.ts +100 -97
- package/lib/components/po-list-view/po-list-view-detail-template/po-list-view-detail-template.directive.d.ts +63 -60
- package/lib/components/po-list-view/po-list-view.component.d.ts +56 -53
- package/lib/components/po-list-view/po-list-view.module.d.ts +44 -33
- package/lib/components/po-loading/index.d.ts +4 -4
- package/lib/components/po-loading/po-loading-base.component.d.ts +17 -14
- package/lib/components/po-loading/po-loading-icon/po-loading-icon.component.d.ts +25 -22
- package/lib/components/po-loading/po-loading-overlay/interfaces/po-loading-overlay-literals.interface.d.ts +13 -13
- package/lib/components/po-loading/po-loading-overlay/po-loading-overlay-base.component.d.ts +62 -59
- package/lib/components/po-loading/po-loading-overlay/po-loading-overlay.component.d.ts +31 -28
- package/lib/components/po-loading/po-loading.component.d.ts +11 -8
- package/lib/components/po-loading/po-loading.module.d.ts +17 -8
- package/lib/components/po-menu/index.d.ts +8 -8
- package/lib/components/po-menu/po-menu-base.component.d.ts +185 -182
- package/lib/components/po-menu/po-menu-filter/po-menu-filter-literals.interface.d.ts +14 -14
- package/lib/components/po-menu/po-menu-filter/po-menu-filter.component.d.ts +28 -25
- package/lib/components/po-menu/po-menu-filter/po-menu-filter.interface.d.ts +19 -19
- package/lib/components/po-menu/po-menu-header-template/po-menu-header-template.directive.d.ts +43 -40
- package/lib/components/po-menu/po-menu-item/po-menu-item-badge.interface.d.ts +49 -49
- package/lib/components/po-menu/po-menu-item/po-menu-item-filtered.interface.d.ts +13 -13
- package/lib/components/po-menu/po-menu-item/po-menu-item.component.d.ts +57 -54
- package/lib/components/po-menu/po-menu-item.interface.d.ts +78 -78
- package/lib/components/po-menu/po-menu.component.d.ts +181 -178
- package/lib/components/po-menu/po-menu.module.d.ts +21 -7
- package/lib/components/po-menu/services/po-menu-global.service.d.ts +17 -14
- package/lib/components/po-menu/services/po-menu-items.service.d.ts +19 -16
- package/lib/components/po-menu/services/po-menu.service.d.ts +23 -20
- package/lib/components/po-menu-panel/index.d.ts +3 -3
- package/lib/components/po-menu-panel/po-menu-panel-base.component.d.ts +36 -33
- package/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item-internal.interface.d.ts +16 -16
- package/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.component.d.ts +26 -23
- package/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.interface.d.ts +18 -18
- package/lib/components/po-menu-panel/po-menu-panel.component.d.ts +94 -91
- package/lib/components/po-menu-panel/po-menu-panel.module.d.ts +17 -7
- package/lib/components/po-menu-panel/services/po-menu-panel-items.service.d.ts +19 -16
- package/lib/components/po-modal/index.d.ts +4 -4
- package/lib/components/po-modal/po-modal-action.interface.d.ts +23 -23
- package/lib/components/po-modal/po-modal-base.component.d.ts +82 -79
- package/lib/components/po-modal/po-modal-footer/po-modal-footer.component.d.ts +33 -30
- package/lib/components/po-modal/po-modal.component.d.ts +49 -46
- package/lib/components/po-modal/po-modal.literals.d.ts +14 -14
- package/lib/components/po-modal/po-modal.module.d.ts +14 -6
- package/lib/components/po-navbar/index.d.ts +4 -4
- package/lib/components/po-navbar/interfaces/po-navbar-icon-action.interface.d.ts +55 -55
- package/lib/components/po-navbar/interfaces/po-navbar-item.interface.d.ts +21 -21
- package/lib/components/po-navbar/interfaces/po-navbar-literals.interface.d.ts +11 -11
- package/lib/components/po-navbar/po-navbar-actions/po-navbar-action/po-navbar-action.component.d.ts +16 -13
- package/lib/components/po-navbar/po-navbar-actions/po-navbar-action-popup/po-navbar-action-popup.component.d.ts +8 -5
- package/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.component.d.ts +9 -6
- package/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.module.d.ts +13 -2
- package/lib/components/po-navbar/po-navbar-base.component.d.ts +102 -129
- package/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation-icon/po-navbar-item-navigation-icon.component.d.ts +9 -6
- package/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.component.d.ts +9 -6
- package/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.module.d.ts +10 -2
- package/lib/components/po-navbar/po-navbar-items/po-navbar-item/po-navbar-item.component.d.ts +14 -11
- package/lib/components/po-navbar/po-navbar-items/po-navbar-items.component.d.ts +20 -17
- package/lib/components/po-navbar/po-navbar-items/po-navbar-items.module.d.ts +10 -2
- package/lib/components/po-navbar/po-navbar-logo/po-navbar-logo.component.d.ts +6 -3
- package/lib/components/po-navbar/po-navbar.component.d.ts +60 -57
- package/lib/components/po-navbar/po-navbar.module.d.ts +45 -33
- package/lib/components/po-page/index.d.ts +14 -14
- package/lib/components/po-page/po-page-action.interface.d.ts +16 -16
- package/lib/components/po-page/po-page-base.component.d.ts +22 -22
- package/lib/components/po-page/po-page-content/po-page-content-base.component.d.ts +10 -10
- package/lib/components/po-page/po-page-content/po-page-content.component.d.ts +23 -20
- package/lib/components/po-page/po-page-default/po-page-default-base.component.d.ts +78 -75
- package/lib/components/po-page/po-page-default/po-page-default-literals.interface.d.ts +11 -11
- package/lib/components/po-page/po-page-default/po-page-default.component.d.ts +48 -45
- package/lib/components/po-page/po-page-default/po-page-default.interface.d.ts +13 -13
- package/lib/components/po-page/po-page-detail/po-page-detail-base.component.d.ts +103 -100
- package/lib/components/po-page/po-page-detail/po-page-detail-literals.interface.d.ts +15 -15
- package/lib/components/po-page/po-page-detail/po-page-detail.component.d.ts +31 -28
- package/lib/components/po-page/po-page-edit/po-page-edit-base.component.d.ts +109 -106
- package/lib/components/po-page/po-page-edit/po-page-edit-literals.interface.d.ts +15 -15
- package/lib/components/po-page/po-page-edit/po-page-edit.component.d.ts +32 -29
- package/lib/components/po-page/po-page-filter.interface.d.ts +26 -26
- package/lib/components/po-page/po-page-header/po-page-header-base.component.d.ts +20 -17
- package/lib/components/po-page/po-page-header/po-page-header.component.d.ts +10 -7
- package/lib/components/po-page/po-page-list/po-page-list-base.component.d.ts +111 -108
- package/lib/components/po-page/po-page-list/po-page-list-literals.interface.d.ts +11 -11
- package/lib/components/po-page/po-page-list/po-page-list.component.d.ts +74 -71
- package/lib/components/po-page/po-page-slide/po-page-slide-base.component.d.ts +114 -111
- package/lib/components/po-page/po-page-slide/po-page-slide.component.d.ts +45 -42
- package/lib/components/po-page/po-page.component.d.ts +11 -8
- package/lib/components/po-page/po-page.interface.d.ts +14 -14
- package/lib/components/po-page/po-page.module.d.ts +29 -7
- package/lib/components/po-popover/index.d.ts +2 -2
- package/lib/components/po-popover/po-popover-base.component.d.ts +134 -131
- package/lib/components/po-popover/po-popover.component.d.ts +50 -47
- package/lib/components/po-popover/po-popover.module.d.ts +12 -6
- package/lib/components/po-popup/index.d.ts +3 -3
- package/lib/components/po-popup/po-popup-action.interface.d.ts +91 -91
- package/lib/components/po-popup/po-popup-base.component.d.ts +154 -151
- package/lib/components/po-popup/po-popup.component.d.ts +72 -69
- package/lib/components/po-popup/po-popup.module.d.ts +14 -7
- package/lib/components/po-progress/enums/po-progress-status.enum.d.ts +15 -15
- package/lib/components/po-progress/index.d.ts +3 -3
- package/lib/components/po-progress/po-progress-bar/po-progress-bar.component.d.ts +8 -5
- package/lib/components/po-progress/po-progress-base.component.d.ts +106 -103
- package/lib/components/po-progress/po-progress.component.d.ts +31 -28
- package/lib/components/po-progress/po-progress.module.d.ts +14 -7
- package/lib/components/po-slide/directives/po-slide-content-template.directive.d.ts +51 -48
- package/lib/components/po-slide/index.d.ts +4 -4
- package/lib/components/po-slide/interfaces/po-slide-item.interface.d.ts +17 -17
- package/lib/components/po-slide/po-slide-base.component.d.ts +78 -75
- package/lib/components/po-slide/po-slide-circles/po-slide-circles.component.d.ts +19 -16
- package/lib/components/po-slide/po-slide-control/po-slide-control.component.d.ts +17 -14
- package/lib/components/po-slide/po-slide-item/po-slide-item.component.d.ts +31 -28
- package/lib/components/po-slide/po-slide.component.d.ts +113 -110
- package/lib/components/po-slide/po-slide.module.d.ts +45 -33
- package/lib/components/po-stepper/enums/po-stepper-orientation.enum.d.ts +16 -16
- package/lib/components/po-stepper/enums/po-stepper-status.enum.d.ts +21 -21
- package/lib/components/po-stepper/index.d.ts +6 -6
- package/lib/components/po-stepper/po-step/po-step.component.d.ts +79 -76
- package/lib/components/po-stepper/po-stepper-base.component.d.ts +135 -132
- package/lib/components/po-stepper/po-stepper-circle/po-stepper-circle.component.d.ts +23 -20
- package/lib/components/po-stepper/po-stepper-item.interface.d.ts +14 -14
- package/lib/components/po-stepper/po-stepper-label/po-stepper-label.component.d.ts +13 -10
- package/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.d.ts +40 -37
- package/lib/components/po-stepper/po-stepper.component.d.ts +83 -80
- package/lib/components/po-stepper/po-stepper.module.d.ts +16 -6
- package/lib/components/po-table/enums/po-table-column-sort-type.enum.d.ts +12 -12
- package/lib/components/po-table/enums/po-table-row-template-arrow-direction.enum.d.ts +12 -12
- package/lib/components/po-table/index.d.ts +17 -17
- package/lib/components/po-table/interfaces/po-table-action.interface.d.ts +8 -8
- package/lib/components/po-table/interfaces/po-table-boolean.interface.d.ts +13 -13
- package/lib/components/po-table/interfaces/po-table-column-sort.interface.d.ts +15 -15
- package/lib/components/po-table/interfaces/po-table-column.interface.d.ts +247 -242
- package/lib/components/po-table/interfaces/po-table-filter.interface.d.ts +16 -16
- package/lib/components/po-table/interfaces/po-table-filtered-items-params.interface.d.ts +33 -33
- package/lib/components/po-table/interfaces/po-table-literals.interface.d.ts +25 -25
- package/lib/components/po-table/interfaces/po-table-response-api.interface.d.ts +7 -7
- package/lib/components/po-table/po-table-base.component.d.ts +514 -501
- package/lib/components/po-table/po-table-cell-template/po-table-cell-template.directive.d.ts +74 -71
- package/lib/components/po-table/po-table-column-icon/po-table-column-icon.component.d.ts +29 -26
- package/lib/components/po-table/po-table-column-icon/po-table-column-icon.interface.d.ts +80 -80
- package/lib/components/po-table/po-table-column-label/po-table-column-label.component.d.ts +20 -17
- package/lib/components/po-table/po-table-column-label/po-table-column-label.interface.d.ts +42 -42
- package/lib/components/po-table/po-table-column-link/po-table-column-link.component.d.ts +18 -15
- package/lib/components/po-table/po-table-column-manager/po-table-column-manager.component.d.ts +77 -74
- package/lib/components/po-table/po-table-column-template/po-table-column-template.directive.d.ts +89 -86
- package/lib/components/po-table/po-table-detail/po-table-detail-column.interface.d.ts +61 -61
- package/lib/components/po-table/po-table-detail/po-table-detail.component.d.ts +47 -44
- package/lib/components/po-table/po-table-detail/po-table-detail.interface.d.ts +36 -36
- package/lib/components/po-table/po-table-icon/po-table-icon.component.d.ts +30 -27
- package/lib/components/po-table/po-table-row-template/po-table-row-template.directive.d.ts +123 -120
- package/lib/components/po-table/po-table-show-subtitle/po-table-show-subtitle.component.d.ts +17 -14
- package/lib/components/po-table/po-table-subtitle-circle/po-table-subtitle-circle.component.d.ts +22 -19
- package/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-column.interface.d.ts +39 -39
- package/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-footer.component.d.ts +34 -31
- package/lib/components/po-table/po-table.component.d.ts +233 -229
- package/lib/components/po-table/po-table.module.d.ts +36 -6
- package/lib/components/po-table/services/po-table.service.d.ts +17 -14
- package/lib/components/po-tabs/index.d.ts +4 -4
- package/lib/components/po-tabs/po-tab/po-tab-base.component.d.ts +60 -57
- package/lib/components/po-tabs/po-tab/po-tab.component.d.ts +14 -11
- package/lib/components/po-tabs/po-tab/po-tab.interface.d.ts +45 -45
- package/lib/components/po-tabs/po-tab-button/po-tab-button.component.d.ts +32 -29
- package/lib/components/po-tabs/po-tab-dropdown/po-tab-dropdown.component.d.ts +26 -23
- package/lib/components/po-tabs/po-tabs-base.component.d.ts +37 -34
- package/lib/components/po-tabs/po-tabs.component.d.ts +53 -50
- package/lib/components/po-tabs/po-tabs.module.d.ts +16 -6
- package/lib/components/po-tag/enums/po-tag-icon.enum.d.ts +17 -17
- package/lib/components/po-tag/enums/po-tag-orientation.enum.d.ts +13 -13
- package/lib/components/po-tag/enums/po-tag-type.enum.d.ts +17 -17
- package/lib/components/po-tag/index.d.ts +4 -4
- package/lib/components/po-tag/interfaces/po-tag-item.interface.d.ts +13 -13
- package/lib/components/po-tag/po-tag-base.component.d.ts +147 -144
- package/lib/components/po-tag/po-tag.component.d.ts +35 -32
- package/lib/components/po-tag/po-tag.module.d.ts +14 -7
- package/lib/components/po-toolbar/index.d.ts +4 -4
- package/lib/components/po-toolbar/po-toolbar-action.interface.d.ts +8 -8
- package/lib/components/po-toolbar/po-toolbar-actions/po-toolbar-actions.component.d.ts +22 -19
- package/lib/components/po-toolbar/po-toolbar-base.component.d.ts +78 -75
- package/lib/components/po-toolbar/po-toolbar-notification/po-toolbar-notification.component.d.ts +25 -22
- package/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.component.d.ts +21 -18
- package/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.interface.d.ts +15 -15
- package/lib/components/po-toolbar/po-toolbar.component.d.ts +32 -29
- package/lib/components/po-toolbar/po-toolbar.module.d.ts +20 -8
- package/lib/components/po-tree-view/index.d.ts +3 -3
- package/lib/components/po-tree-view/po-tree-view-base.component.d.ts +89 -86
- package/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.component.d.ts +15 -12
- package/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.interface.d.ts +24 -24
- package/lib/components/po-tree-view/po-tree-view-item-header/po-tree-view-item-header.component.d.ts +13 -10
- package/lib/components/po-tree-view/po-tree-view.component.d.ts +38 -35
- package/lib/components/po-tree-view/po-tree-view.module.d.ts +44 -33
- package/lib/components/po-tree-view/services/po-tree-view.service.d.ts +12 -9
- package/lib/components/po-widget/index.d.ts +2 -2
- package/lib/components/po-widget/po-widget-base.component.d.ts +165 -162
- package/lib/components/po-widget/po-widget.component.d.ts +44 -41
- package/lib/components/po-widget/po-widget.module.d.ts +14 -7
- package/lib/decorators/index.d.ts +2 -2
- package/lib/decorators/input-boolean/input-boolean.decorator.d.ts +10 -10
- package/lib/decorators/input-required/input-required.decorator.d.ts +22 -22
- package/lib/decorators/property-decorator.interface.d.ts +13 -13
- package/lib/decorators/utils-decorators.d.ts +27 -27
- package/lib/directives/directives.module.d.ts +7 -2
- package/lib/directives/index.d.ts +2 -2
- package/lib/directives/po-tooltip/index.d.ts +2 -2
- package/lib/directives/po-tooltip/po-tooltip-base.directive.d.ts +70 -67
- package/lib/directives/po-tooltip/po-tooltip-control-position.service.d.ts +6 -3
- package/lib/directives/po-tooltip/po-tooltip.directive.d.ts +55 -52
- package/lib/directives/po-tooltip/po-tooltip.module.d.ts +13 -7
- package/lib/enums/po-color-palette.enum.d.ts +33 -33
- package/lib/enums/po-key-code.enum.d.ts +29 -29
- package/lib/guards/guards.module.d.ts +6 -2
- package/lib/guards/index.d.ts +1 -1
- package/lib/index.d.ts +9 -9
- package/lib/interceptors/index.d.ts +3 -3
- package/lib/interceptors/interceptors.module.d.ts +8 -2
- package/lib/interceptors/po-http-interceptor/index.d.ts +2 -2
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-base.service.d.ts +154 -154
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail-literals.interface.d.ts +6 -6
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.component.d.ts +42 -39
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.interface.d.ts +23 -23
- package/lib/interceptors/po-http-interceptor/po-http-interceptor-literals.d.ts +6 -6
- package/lib/interceptors/po-http-interceptor/po-http-interceptor.module.d.ts +12 -2
- package/lib/interceptors/po-http-interceptor/po-http-interceptor.service.d.ts +19 -16
- package/lib/interceptors/po-http-request/index.d.ts +2 -2
- package/lib/interceptors/po-http-request/po-http-request-control-service.d.ts +15 -12
- package/lib/interceptors/po-http-request/po-http-request-interceptor.service.d.ts +105 -102
- package/lib/interceptors/po-http-request/po-http-request.module.d.ts +7 -2
- package/lib/interfaces/index.d.ts +1 -1
- package/lib/interfaces/po-http/po-response-api.interface.d.ts +13 -13
- package/lib/pipes/index.d.ts +2 -2
- package/lib/pipes/pipes.module.d.ts +7 -2
- package/lib/pipes/po-time/index.d.ts +2 -2
- package/lib/pipes/po-time/po-time.module.d.ts +12 -7
- package/lib/pipes/po-time/po-time.pipe.d.ts +17 -14
- package/lib/po.module.d.ts +12 -2
- package/lib/services/index.d.ts +10 -10
- package/lib/services/po-active-overlay/index.d.ts +2 -2
- package/lib/services/po-active-overlay/po-active-overlay.module.d.ts +11 -7
- package/lib/services/po-active-overlay/po-active-overlay.service.d.ts +6 -3
- package/lib/services/po-color/po-color.service.d.ts +19 -16
- package/lib/services/po-color/po-colors.constant.d.ts +2 -2
- package/lib/services/po-color-palette/index.d.ts +2 -2
- package/lib/services/po-color-palette/po-color-palette.module.d.ts +11 -7
- package/lib/services/po-color-palette/po-color-palette.service.d.ts +10 -7
- package/lib/services/po-component-injector/index.d.ts +2 -2
- package/lib/services/po-component-injector/po-component-injector.module.d.ts +6 -2
- package/lib/services/po-component-injector/po-component-injector.service.d.ts +12 -9
- package/lib/services/po-control-position/index.d.ts +2 -2
- package/lib/services/po-control-position/po-control-position.constants.d.ts +1 -1
- package/lib/services/po-control-position/po-control-position.module.d.ts +11 -7
- package/lib/services/po-control-position/po-control-position.service.d.ts +59 -56
- package/lib/services/po-date/index.d.ts +2 -2
- package/lib/services/po-date/po-date.module.d.ts +11 -7
- package/lib/services/po-date/po-date.service.d.ts +97 -94
- package/lib/services/po-dialog/index.d.ts +7 -7
- package/lib/services/po-dialog/interfaces/po-dialog-alert-literals.interface.d.ts +11 -11
- package/lib/services/po-dialog/interfaces/po-dialog-confirm-literals.interface.d.ts +13 -13
- package/lib/services/po-dialog/interfaces/po-dialog.interface.d.ts +82 -82
- package/lib/services/po-dialog/po-dialog-base.service.d.ts +15 -15
- package/lib/services/po-dialog/po-dialog.component.d.ts +51 -48
- package/lib/services/po-dialog/po-dialog.enum.d.ts +12 -12
- package/lib/services/po-dialog/po-dialog.module.d.ts +8 -2
- package/lib/services/po-dialog/po-dialog.service.d.ts +32 -29
- package/lib/services/po-i18n/index.d.ts +7 -7
- package/lib/services/po-i18n/interfaces/po-i18n-config-default.interface.d.ts +35 -35
- package/lib/services/po-i18n/interfaces/po-i18n-config.interface.d.ts +78 -78
- package/lib/services/po-i18n/interfaces/po-i18n-literals.interface.d.ts +15 -15
- package/lib/services/po-i18n/po-i18n-base.pipe.d.ts +29 -29
- package/lib/services/po-i18n/po-i18n-base.service.d.ts +212 -212
- package/lib/services/po-i18n/po-i18n-config-injection-token.d.ts +3 -3
- package/lib/services/po-i18n/po-i18n.module.d.ts +156 -150
- package/lib/services/po-i18n/po-i18n.pipe.d.ts +18 -15
- package/lib/services/po-i18n/po-i18n.service.d.ts +13 -10
- package/lib/services/po-language/index.d.ts +4 -4
- package/lib/services/po-language/po-language.constant.d.ts +58 -58
- package/lib/services/po-language/po-language.interface.d.ts +43 -43
- package/lib/services/po-language/po-language.module.d.ts +11 -7
- package/lib/services/po-language/po-language.service.d.ts +98 -95
- package/lib/services/po-notification/index.d.ts +5 -5
- package/lib/services/po-notification/po-notification-base.service.d.ts +84 -84
- package/lib/services/po-notification/po-notification.interface.d.ts +33 -33
- package/lib/services/po-notification/po-notification.module.d.ts +8 -2
- package/lib/services/po-notification/po-notification.service.d.ts +34 -31
- package/lib/services/po-notification/po-toaster/po-toaster-base.component.d.ts +41 -41
- package/lib/services/po-notification/po-toaster/po-toaster-orientation.enum.d.ts +11 -11
- package/lib/services/po-notification/po-toaster/po-toaster-type.enum.d.ts +15 -15
- package/lib/services/po-notification/po-toaster/po-toaster.component.d.ts +36 -33
- package/lib/services/po-notification/po-toaster/po-toaster.interface.d.ts +15 -15
- package/lib/services/services.module.d.ts +15 -2
- package/lib/utils/util.d.ts +217 -217
- package/package.json +37 -22
- package/po-ui-ng-components-6.2.0.tgz +0 -0
- package/po-ui-ng-components.d.ts +5 -205
- package/public-api.d.ts +1 -1
- package/schematics/README.md +74 -74
- package/schematics/collection.json +40 -40
- package/schematics/migrations.json +30 -25
- package/schematics/ng-add/index.d.ts +8 -8
- package/schematics/ng-add/index.js +25 -25
- package/schematics/ng-add/index.js.map +1 -1
- package/schematics/ng-add/index.spec.d.ts +1 -1
- package/schematics/ng-add/index.spec.js +90 -91
- package/schematics/ng-add/index.spec.js.map +1 -1
- package/schematics/ng-add/schema.json +16 -16
- package/schematics/ng-add/setup-project.d.ts +8 -8
- package/schematics/ng-add/setup-project.js +55 -55
- package/schematics/ng-add/setup-project.js.map +1 -1
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__-routing.module.ts.template +14 -14
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__.component.html.template +3 -3
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__.component.spec.ts.template +32 -32
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__.component.ts.template +18 -18
- package/schematics/ng-generate/po-page-default/files/__path__/__name@dasherize__/__name@dasherize__.module.ts.template +19 -19
- package/schematics/ng-generate/po-page-default/index.d.ts +4 -4
- package/schematics/ng-generate/po-page-default/index.js +12 -12
- package/schematics/ng-generate/po-page-default/index.js.map +1 -1
- package/schematics/ng-generate/po-page-default/index.spec.d.ts +1 -1
- package/schematics/ng-generate/po-page-default/index.spec.js +120 -120
- package/schematics/ng-generate/po-page-default/index.spec.js.map +1 -1
- package/schematics/ng-generate/po-page-default/schema.d.ts +3 -3
- package/schematics/ng-generate/po-page-default/schema.js +2 -2
- package/schematics/ng-generate/po-page-default/schema.json +67 -67
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__-routing.module.ts.template +14 -14
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__.component.html.template +8 -8
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__.component.spec.ts.template +32 -32
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__.component.ts.template +26 -26
- package/schematics/ng-generate/po-page-detail/files/__path__/__name@dasherize__/__name@dasherize__.module.ts.template +19 -19
- package/schematics/ng-generate/po-page-detail/index.d.ts +4 -4
- package/schematics/ng-generate/po-page-detail/index.js +12 -12
- package/schematics/ng-generate/po-page-detail/index.js.map +1 -1
- package/schematics/ng-generate/po-page-detail/index.spec.d.ts +1 -1
- package/schematics/ng-generate/po-page-detail/index.spec.js +120 -120
- package/schematics/ng-generate/po-page-detail/index.spec.js.map +1 -1
- package/schematics/ng-generate/po-page-detail/schema.d.ts +3 -3
- package/schematics/ng-generate/po-page-detail/schema.js +2 -2
- package/schematics/ng-generate/po-page-detail/schema.json +67 -67
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__-routing.module.ts.template +14 -14
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__.component.html.template +8 -8
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__.component.spec.ts.template +32 -32
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__.component.ts.template +26 -26
- package/schematics/ng-generate/po-page-edit/files/__path__/__name@dasherize__/__name@dasherize__.module.ts.template +19 -19
- package/schematics/ng-generate/po-page-edit/index.d.ts +4 -4
- package/schematics/ng-generate/po-page-edit/index.js +12 -12
- package/schematics/ng-generate/po-page-edit/index.js.map +1 -1
- package/schematics/ng-generate/po-page-edit/index.spec.d.ts +1 -1
- package/schematics/ng-generate/po-page-edit/index.spec.js +120 -120
- package/schematics/ng-generate/po-page-edit/index.spec.js.map +1 -1
- package/schematics/ng-generate/po-page-edit/schema.d.ts +3 -3
- package/schematics/ng-generate/po-page-edit/schema.js +2 -2
- package/schematics/ng-generate/po-page-edit/schema.json +67 -67
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__-routing.module.ts.template +14 -14
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__.component.html.template +28 -28
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__.component.spec.ts.template +35 -35
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__.component.ts.template +33 -33
- package/schematics/ng-generate/po-page-list/files/__path__/__name@dasherize__/__name@dasherize__.module.ts.template +19 -19
- package/schematics/ng-generate/po-page-list/index.d.ts +7 -7
- package/schematics/ng-generate/po-page-list/index.js +15 -15
- package/schematics/ng-generate/po-page-list/index.js.map +1 -1
- package/schematics/ng-generate/po-page-list/index.spec.d.ts +1 -1
- package/schematics/ng-generate/po-page-list/index.spec.js +120 -120
- package/schematics/ng-generate/po-page-list/index.spec.js.map +1 -1
- package/schematics/ng-generate/po-page-list/schema.d.ts +5 -5
- package/schematics/ng-generate/po-page-list/schema.js +2 -2
- package/schematics/ng-generate/po-page-list/schema.json +78 -78
- package/schematics/ng-generate/sidemenu/files/app.component.html.template +9 -9
- package/schematics/ng-generate/sidemenu/files/app.component.spec.ts.template +30 -30
- package/schematics/ng-generate/sidemenu/files/app.component.ts.template +20 -20
- package/schematics/ng-generate/sidemenu/index.d.ts +8 -8
- package/schematics/ng-generate/sidemenu/index.js +51 -51
- package/schematics/ng-generate/sidemenu/index.js.map +1 -1
- package/schematics/ng-generate/sidemenu/index.spec.d.ts +1 -1
- package/schematics/ng-generate/sidemenu/index.spec.js +62 -62
- package/schematics/ng-generate/sidemenu/index.spec.js.map +1 -1
- package/schematics/ng-generate/sidemenu/schema.d.ts +13 -13
- package/schematics/ng-generate/sidemenu/schema.js +2 -2
- package/schematics/ng-generate/sidemenu/schema.json +32 -32
- package/schematics/ng-update/v2/changes.d.ts +19 -19
- package/schematics/ng-update/v2/changes.js +58 -58
- package/schematics/ng-update/v2/index.d.ts +1 -1
- package/schematics/ng-update/v2/index.js +145 -145
- package/schematics/ng-update/v2/index.js.map +1 -1
- package/schematics/ng-update/v3/changes.d.ts +4 -4
- package/schematics/ng-update/v3/changes.js +20 -20
- package/schematics/ng-update/v3/index.d.ts +1 -1
- package/schematics/ng-update/v3/index.js +66 -66
- package/schematics/ng-update/v3/index.js.map +1 -1
- package/schematics/ng-update/v4/changes.d.ts +4 -4
- package/schematics/ng-update/v4/changes.js +20 -20
- package/schematics/ng-update/v4/index.d.ts +1 -1
- package/schematics/ng-update/v4/index.js +65 -65
- package/schematics/ng-update/v4/index.js.map +1 -1
- package/schematics/ng-update/v5/changes.d.ts +4 -4
- package/schematics/ng-update/v5/changes.js +25 -25
- package/schematics/ng-update/v5/index.d.ts +1 -1
- package/schematics/ng-update/v5/index.js +65 -65
- package/schematics/ng-update/v5/index.js.map +1 -1
- package/schematics/ng-update/v6/changes.d.ts +2 -0
- package/schematics/ng-update/v6/changes.js +14 -0
- package/schematics/ng-update/v6/changes.js.map +1 -0
- package/schematics/ng-update/v6/index.d.ts +1 -0
- package/schematics/ng-update/v6/index.js +16 -0
- package/schematics/ng-update/v6/index.js.map +1 -0
- package/bundles/po-ui-ng-components.umd.js +0 -39421
- package/bundles/po-ui-ng-components.umd.js.map +0 -1
- package/esm2015/lib/components/components.module.js +0 -122
- package/esm2015/lib/components/index.js +0 -38
- package/esm2015/lib/components/po-accordion/index.js +0 -4
- package/esm2015/lib/components/po-accordion/po-accordion-base.component.js +0 -29
- package/esm2015/lib/components/po-accordion/po-accordion-item/po-accordion-item.component.js +0 -66
- package/esm2015/lib/components/po-accordion/po-accordion-item-body/po-accordion-item-body.component.js +0 -23
- package/esm2015/lib/components/po-accordion/po-accordion-item-header/po-accordion-item-header.component.js +0 -24
- package/esm2015/lib/components/po-accordion/po-accordion.component.js +0 -70
- package/esm2015/lib/components/po-accordion/po-accordion.module.js +0 -52
- package/esm2015/lib/components/po-accordion/services/po-accordion.service.js +0 -27
- package/esm2015/lib/components/po-avatar/index.js +0 -3
- package/esm2015/lib/components/po-avatar/po-avatar-base.component.js +0 -68
- package/esm2015/lib/components/po-avatar/po-avatar.component.js +0 -42
- package/esm2015/lib/components/po-avatar/po-avatar.module.js +0 -18
- package/esm2015/lib/components/po-badge/po-badge-base.component.js +0 -89
- package/esm2015/lib/components/po-badge/po-badge.component.js +0 -16
- package/esm2015/lib/components/po-badge/po-badge.module.js +0 -18
- package/esm2015/lib/components/po-breadcrumb/index.js +0 -5
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-base.component.js +0 -48
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-dropdown/po-breadcrumb-dropdown.component.js +0 -20
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.component.js +0 -77
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.service.js +0 -49
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-item/po-breadcrumb-item.component.js +0 -27
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb-item.interface.js +0 -2
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb.component.js +0 -159
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb.interface.js +0 -2
- package/esm2015/lib/components/po-breadcrumb/po-breadcrumb.module.js +0 -28
- package/esm2015/lib/components/po-button/index.js +0 -3
- package/esm2015/lib/components/po-button/po-button-base.component.js +0 -127
- package/esm2015/lib/components/po-button/po-button.component.js +0 -69
- package/esm2015/lib/components/po-button/po-button.module.js +0 -20
- package/esm2015/lib/components/po-button-group/index.js +0 -5
- package/esm2015/lib/components/po-button-group/po-button-group-base.component.js +0 -95
- package/esm2015/lib/components/po-button-group/po-button-group-item.interface.js +0 -2
- package/esm2015/lib/components/po-button-group/po-button-group-toggle.enum.js +0 -17
- package/esm2015/lib/components/po-button-group/po-button-group.component.js +0 -43
- package/esm2015/lib/components/po-button-group/po-button-group.module.js +0 -20
- package/esm2015/lib/components/po-calendar/index.js +0 -4
- package/esm2015/lib/components/po-calendar/po-calendar-base.component.js +0 -176
- package/esm2015/lib/components/po-calendar/po-calendar-header/po-calendar-header.component.js +0 -24
- package/esm2015/lib/components/po-calendar/po-calendar-mode.enum.js +0 -13
- package/esm2015/lib/components/po-calendar/po-calendar-wrapper/po-calendar-wrapper.component.js +0 -251
- package/esm2015/lib/components/po-calendar/po-calendar.component.js +0 -199
- package/esm2015/lib/components/po-calendar/po-calendar.module.js +0 -19
- package/esm2015/lib/components/po-calendar/services/po-calendar.lang.service.js +0 -187
- package/esm2015/lib/components/po-calendar/services/po-calendar.service.js +0 -44
- package/esm2015/lib/components/po-chart/directives/po-resize-observer.directive.js +0 -44
- package/esm2015/lib/components/po-chart/enums/po-chart-type.enum.js +0 -51
- package/esm2015/lib/components/po-chart/helpers/po-chart-default-values.constant.js +0 -18
- package/esm2015/lib/components/po-chart/index.js +0 -8
- package/esm2015/lib/components/po-chart/interfaces/po-chart-axis-options.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-bar-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-container-size.interface.js +0 -11
- package/esm2015/lib/components/po-chart/interfaces/po-chart-label-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-min-max-values.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-options.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-path-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-points-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-chart/interfaces/po-chart-serie.interface.js +0 -2
- package/esm2015/lib/components/po-chart/po-chart-base.component.js +0 -244
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-label/po-chart-axis-label.component.js +0 -23
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis-path/po-chart-axis-path.component.js +0 -19
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-axis/po-chart-axis.component.js +0 -287
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-base.component.js +0 -94
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar-path/po-chart-bar-path.component.js +0 -33
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-bar.component.js +0 -58
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-bar/po-chart-column/po-chart-column.component.js +0 -59
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-label/po-chart-circular-label.component.js +0 -29
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-circular-path.component.js +0 -35
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular-path/po-chart-tooltip.directive.js +0 -76
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-circular.component.js +0 -142
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-donut/po-chart-donut.component.js +0 -115
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-circular/po-chart-pie/po-chart-pie.component.js +0 -57
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-container.component.js +0 -119
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-area/po-chart-area.component.js +0 -77
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line-base.component.js +0 -151
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-line.component.js +0 -41
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-path/po-chart-path.component.js +0 -65
- package/esm2015/lib/components/po-chart/po-chart-container/po-chart-line/po-chart-series-point/po-chart-series-point.component.js +0 -95
- package/esm2015/lib/components/po-chart/po-chart-legend/po-chart-legend.component.js +0 -21
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-circular/po-chart-circular.constant.js +0 -11
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-circular/po-chart-circular.js +0 -374
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-dynamic-type.component.js +0 -45
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge-series.interface.js +0 -2
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge-text-content/po-chart-gauge-text-content.component.js +0 -75
- package/esm2015/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge.component.js +0 -85
- package/esm2015/lib/components/po-chart/po-chart.component.js +0 -203
- package/esm2015/lib/components/po-chart/po-chart.module.js +0 -61
- package/esm2015/lib/components/po-chart/services/po-chart-maths.service.js +0 -135
- package/esm2015/lib/components/po-chart/services/po-chart-svg-container.service.js +0 -57
- package/esm2015/lib/components/po-container/index.js +0 -3
- package/esm2015/lib/components/po-container/po-container-base.component.js +0 -88
- package/esm2015/lib/components/po-container/po-container.component.js +0 -32
- package/esm2015/lib/components/po-container/po-container.module.js +0 -18
- package/esm2015/lib/components/po-disclaimer/index.js +0 -4
- package/esm2015/lib/components/po-disclaimer/po-disclaimer-base.component.js +0 -77
- package/esm2015/lib/components/po-disclaimer/po-disclaimer.component.js +0 -29
- package/esm2015/lib/components/po-disclaimer/po-disclaimer.interface.js +0 -2
- package/esm2015/lib/components/po-disclaimer/po-disclaimer.module.js +0 -17
- package/esm2015/lib/components/po-disclaimer-group/index.js +0 -5
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group-base.component.js +0 -194
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group-remove-action.interface.js +0 -2
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group.component.js +0 -41
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group.interface.js +0 -2
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-group.module.js +0 -20
- package/esm2015/lib/components/po-disclaimer-group/po-disclaimer-remove/po-disclaimer-remove.component.js +0 -30
- package/esm2015/lib/components/po-divider/index.js +0 -3
- package/esm2015/lib/components/po-divider/po-divider-base.component.js +0 -16
- package/esm2015/lib/components/po-divider/po-divider.component.js +0 -32
- package/esm2015/lib/components/po-divider/po-divider.module.js +0 -18
- package/esm2015/lib/components/po-dropdown/index.js +0 -4
- package/esm2015/lib/components/po-dropdown/po-dropdown-action.interface.js +0 -2
- package/esm2015/lib/components/po-dropdown/po-dropdown-base.component.js +0 -71
- package/esm2015/lib/components/po-dropdown/po-dropdown.component.js +0 -97
- package/esm2015/lib/components/po-dropdown/po-dropdown.module.js +0 -18
- package/esm2015/lib/components/po-dynamic/index.js +0 -11
- package/esm2015/lib/components/po-dynamic/po-dynamic-field-type.enum.js +0 -25
- package/esm2015/lib/components/po-dynamic/po-dynamic-field.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-base.component.js +0 -104
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-field.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-field-internal.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields-base.component.js +0 -200
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields.component.js +0 -129
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-load/po-dynamic-form-load.service.js +0 -32
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-operation/po-dynamic-form-operation.js +0 -20
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-response.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-changed.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-field-validation.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-validation/po-dynamic-form-validation.service.js +0 -39
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form.component.js +0 -167
- package/esm2015/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-base.component.js +0 -163
- package/esm2015/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view-field.interface.js +0 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.component.js +0 -101
- package/esm2015/lib/components/po-dynamic/po-dynamic-view/po-dynamic-view.service.js +0 -17
- package/esm2015/lib/components/po-dynamic/po-dynamic.module.js +0 -35
- package/esm2015/lib/components/po-dynamic/po-dynamic.util.js +0 -18
- package/esm2015/lib/components/po-field/index.js +0 -51
- package/esm2015/lib/components/po-field/po-checkbox/po-checkbox-base.component.js +0 -98
- package/esm2015/lib/components/po-field/po-checkbox/po-checkbox.component.js +0 -94
- package/esm2015/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option-view.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-checkbox-group/interfaces/po-checkbox-group-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-checkbox-group/po-checkbox-group-base.component.js +0 -297
- package/esm2015/lib/components/po-field/po-checkbox-group/po-checkbox-group.component.js +0 -98
- package/esm2015/lib/components/po-field/po-checkbox-group/po-checkbox-group.module.js +0 -20
- package/esm2015/lib/components/po-field/po-clean/po-clean-base.component.js +0 -42
- package/esm2015/lib/components/po-field/po-clean/po-clean.component.js +0 -33
- package/esm2015/lib/components/po-field/po-clean/po-clean.module.js +0 -18
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-filter.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-group.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-option-group.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-combo-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/interfaces/po-response.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-combo/po-combo-base.component.js +0 -749
- package/esm2015/lib/components/po-field/po-combo/po-combo-filter-mode.enum.js +0 -17
- package/esm2015/lib/components/po-field/po-combo/po-combo-filter.service.js +0 -78
- package/esm2015/lib/components/po-field/po-combo/po-combo-option-template/po-combo-option-template.directive.js +0 -81
- package/esm2015/lib/components/po-field/po-combo/po-combo.component.js +0 -525
- package/esm2015/lib/components/po-field/po-datepicker/enums/po-datepicker-iso-format.enum.js +0 -17
- package/esm2015/lib/components/po-field/po-datepicker/po-datepicker-base.component.js +0 -396
- package/esm2015/lib/components/po-field/po-datepicker/po-datepicker.component.js +0 -345
- package/esm2015/lib/components/po-field/po-datepicker/po-datepicker.module.js +0 -22
- package/esm2015/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-datepicker-range/interfaces/po-datepicker-range.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.js +0 -475
- package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.js +0 -443
- package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range.literals.js +0 -27
- package/esm2015/lib/components/po-field/po-decimal/po-decimal.component.js +0 -598
- package/esm2015/lib/components/po-field/po-email/po-email.component.js +0 -106
- package/esm2015/lib/components/po-field/po-field-container/po-field-container-bottom/po-field-container-bottom.component.js +0 -29
- package/esm2015/lib/components/po-field/po-field-container/po-field-container-literals.js +0 -15
- package/esm2015/lib/components/po-field/po-field-container/po-field-container.component.js +0 -39
- package/esm2015/lib/components/po-field/po-field-container/po-field-container.module.js +0 -19
- package/esm2015/lib/components/po-field/po-field-validate.model.js +0 -69
- package/esm2015/lib/components/po-field/po-field.model.js +0 -78
- package/esm2015/lib/components/po-field/po-field.module.js +0 -156
- package/esm2015/lib/components/po-field/po-input/po-input-base.component.js +0 -357
- package/esm2015/lib/components/po-field/po-input/po-input.component.js +0 -56
- package/esm2015/lib/components/po-field/po-input/po-mask.js +0 -460
- package/esm2015/lib/components/po-field/po-input-generic/po-input-generic.js +0 -187
- package/esm2015/lib/components/po-field/po-login/po-login.component.js +0 -65
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-advanced-filter.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-column.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-filter.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-filtered-items-params.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/interfaces/po-lookup-response-api.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-lookup/po-lookup-base.component.js +0 -451
- package/esm2015/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal-base.component.js +0 -357
- package/esm2015/lib/components/po-field/po-lookup/po-lookup-modal/po-lookup-modal.component.js +0 -130
- package/esm2015/lib/components/po-field/po-lookup/po-lookup.component.js +0 -337
- package/esm2015/lib/components/po-field/po-lookup/services/po-lookup-filter.service.js +0 -59
- package/esm2015/lib/components/po-field/po-lookup/services/po-lookup-modal.service.js +0 -62
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-base.component.js +0 -576
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-dropdown/po-multiselect-dropdown.component.js +0 -139
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-filter-mode.enum.js +0 -17
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-filter.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-filter.service.js +0 -50
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-item/po-multiselect-item.component.js +0 -33
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-search/po-multiselect-search.component.js +0 -57
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect.component.js +0 -359
- package/esm2015/lib/components/po-field/po-number/po-number-base.component.js +0 -114
- package/esm2015/lib/components/po-field/po-number/po-number.component.js +0 -119
- package/esm2015/lib/components/po-field/po-password/po-password.component.js +0 -92
- package/esm2015/lib/components/po-field/po-radio-group/po-radio-group-base.component.js +0 -184
- package/esm2015/lib/components/po-field/po-radio-group/po-radio-group-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-radio-group/po-radio-group.component.js +0 -119
- package/esm2015/lib/components/po-field/po-rich-text/interfaces/po-rich-text-toolbar-button-group-item.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-base.component.js +0 -181
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-body/po-rich-text-body.component.js +0 -312
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-image-modal/po-rich-text-image-modal.component.js +0 -96
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-link-modal/po-rich-text-link-modal.component.js +0 -140
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-literals.js +0 -83
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text-toolbar/po-rich-text-toolbar.component.js +0 -166
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text.component.js +0 -147
- package/esm2015/lib/components/po-field/po-rich-text/po-rich-text.service.js +0 -17
- package/esm2015/lib/components/po-field/po-select/po-select-option-template/po-select-option-template.directive.js +0 -59
- package/esm2015/lib/components/po-field/po-select/po-select-option.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-select/po-select.component.js +0 -366
- package/esm2015/lib/components/po-field/po-switch/po-switch-label-position.enum.js +0 -15
- package/esm2015/lib/components/po-field/po-switch/po-switch.component.js +0 -190
- package/esm2015/lib/components/po-field/po-textarea/po-textarea-base.component.js +0 -269
- package/esm2015/lib/components/po-field/po-textarea/po-textarea.component.js +0 -130
- package/esm2015/lib/components/po-field/po-upload/interfaces/po-upload-file-restriction.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-upload/interfaces/po-upload-literals.interface.js +0 -2
- package/esm2015/lib/components/po-field/po-upload/po-upload-base.component.js +0 -581
- package/esm2015/lib/components/po-field/po-upload/po-upload-base.service.js +0 -88
- package/esm2015/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area/po-upload-drag-drop-area.component.js +0 -30
- package/esm2015/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop-area-overlay/po-upload-drag-drop-area-overlay.component.js +0 -40
- package/esm2015/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.component.js +0 -60
- package/esm2015/lib/components/po-field/po-upload/po-upload-drag-drop/po-upload-drag-drop.directive.js +0 -165
- package/esm2015/lib/components/po-field/po-upload/po-upload-file-restrictions/po-upload-file-restrictions.component.js +0 -63
- package/esm2015/lib/components/po-field/po-upload/po-upload-file.js +0 -39
- package/esm2015/lib/components/po-field/po-upload/po-upload-status.enum.js +0 -13
- package/esm2015/lib/components/po-field/po-upload/po-upload.component.js +0 -326
- package/esm2015/lib/components/po-field/po-upload/po-upload.service.js +0 -8
- package/esm2015/lib/components/po-field/po-url/po-url.component.js +0 -86
- package/esm2015/lib/components/po-field/validators.js +0 -41
- package/esm2015/lib/components/po-gauge/index.js +0 -4
- package/esm2015/lib/components/po-gauge/interfaces/po-gauge-coordinates.interface.js +0 -2
- package/esm2015/lib/components/po-gauge/interfaces/po-gauge-ranges.interface.js +0 -2
- package/esm2015/lib/components/po-gauge/interfaces/po-gauge-svg-container.interface.js +0 -2
- package/esm2015/lib/components/po-gauge/po-gauge-base.component.js +0 -146
- package/esm2015/lib/components/po-gauge/po-gauge-default-values.constant.js +0 -11
- package/esm2015/lib/components/po-gauge/po-gauge-description/po-gauge-description.component.js +0 -27
- package/esm2015/lib/components/po-gauge/po-gauge-legend/po-gauge-legend.component.js +0 -27
- package/esm2015/lib/components/po-gauge/po-gauge-svg/po-gauge-path/po-gauge-path.component.js +0 -20
- package/esm2015/lib/components/po-gauge/po-gauge-svg/po-gauge-pointer/po-gauge-pointer.component.js +0 -50
- package/esm2015/lib/components/po-gauge/po-gauge-svg/po-gauge-svg.component.js +0 -204
- package/esm2015/lib/components/po-gauge/po-gauge-title/po-gauge-title.component.js +0 -13
- package/esm2015/lib/components/po-gauge/po-gauge.component.js +0 -72
- package/esm2015/lib/components/po-gauge/po-gauge.module.js +0 -32
- package/esm2015/lib/components/po-grid/index.js +0 -4
- package/esm2015/lib/components/po-grid/po-grid-cell/po-grid-cell.component.js +0 -111
- package/esm2015/lib/components/po-grid/po-grid-cell-action/po-grid-cell-action.component.js +0 -24
- package/esm2015/lib/components/po-grid/po-grid-head/po-grid-head.component.js +0 -30
- package/esm2015/lib/components/po-grid/po-grid-row-actions.interface.js +0 -2
- package/esm2015/lib/components/po-grid/po-grid.component.js +0 -314
- package/esm2015/lib/components/po-grid/po-grid.module.js +0 -23
- package/esm2015/lib/components/po-icon/index.js +0 -3
- package/esm2015/lib/components/po-icon/po-icon.component.js +0 -62
- package/esm2015/lib/components/po-icon/po-icon.module.js +0 -18
- package/esm2015/lib/components/po-info/index.js +0 -4
- package/esm2015/lib/components/po-info/po-info-base.component.js +0 -62
- package/esm2015/lib/components/po-info/po-info-orietation.enum.js +0 -15
- package/esm2015/lib/components/po-info/po-info.component.js +0 -36
- package/esm2015/lib/components/po-info/po-info.module.js +0 -21
- package/esm2015/lib/components/po-list-view/index.js +0 -7
- package/esm2015/lib/components/po-list-view/interfaces/po-list-view-action.interface.js +0 -2
- package/esm2015/lib/components/po-list-view/interfaces/po-list-view-literals.interface.js +0 -2
- package/esm2015/lib/components/po-list-view/po-list-view-base.component.js +0 -274
- package/esm2015/lib/components/po-list-view/po-list-view-content-template/po-list-view-content-template.directive.js +0 -101
- package/esm2015/lib/components/po-list-view/po-list-view-detail-template/po-list-view-detail-template.directive.js +0 -64
- package/esm2015/lib/components/po-list-view/po-list-view.component.js +0 -128
- package/esm2015/lib/components/po-list-view/po-list-view.module.js +0 -51
- package/esm2015/lib/components/po-loading/index.js +0 -5
- package/esm2015/lib/components/po-loading/po-loading-base.component.js +0 -24
- package/esm2015/lib/components/po-loading/po-loading-icon/po-loading-icon.component.js +0 -37
- package/esm2015/lib/components/po-loading/po-loading-overlay/interfaces/po-loading-overlay-literals.interface.js +0 -2
- package/esm2015/lib/components/po-loading/po-loading-overlay/po-loading-overlay-base.component.js +0 -91
- package/esm2015/lib/components/po-loading/po-loading-overlay/po-loading-overlay.component.js +0 -41
- package/esm2015/lib/components/po-loading/po-loading.component.js +0 -16
- package/esm2015/lib/components/po-loading/po-loading.module.js +0 -22
- package/esm2015/lib/components/po-menu/index.js +0 -9
- package/esm2015/lib/components/po-menu/po-menu-base.component.js +0 -299
- package/esm2015/lib/components/po-menu/po-menu-filter/po-menu-filter-literals.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu-filter/po-menu-filter.component.js +0 -40
- package/esm2015/lib/components/po-menu/po-menu-filter/po-menu-filter.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu-header-template/po-menu-header-template.directive.js +0 -51
- package/esm2015/lib/components/po-menu/po-menu-item/po-menu-item-badge.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu-item/po-menu-item-filtered.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu-item/po-menu-item.component.js +0 -173
- package/esm2015/lib/components/po-menu/po-menu-item.interface.js +0 -2
- package/esm2015/lib/components/po-menu/po-menu.component.js +0 -497
- package/esm2015/lib/components/po-menu/po-menu.module.js +0 -26
- package/esm2015/lib/components/po-menu/services/po-menu-global.service.js +0 -32
- package/esm2015/lib/components/po-menu/services/po-menu-items.service.js +0 -35
- package/esm2015/lib/components/po-menu/services/po-menu.service.js +0 -35
- package/esm2015/lib/components/po-menu-panel/index.js +0 -4
- package/esm2015/lib/components/po-menu-panel/po-menu-panel-base.component.js +0 -76
- package/esm2015/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item-internal.interface.js +0 -2
- package/esm2015/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.component.js +0 -54
- package/esm2015/lib/components/po-menu-panel/po-menu-panel-item/po-menu-panel-item.interface.js +0 -2
- package/esm2015/lib/components/po-menu-panel/po-menu-panel.component.js +0 -145
- package/esm2015/lib/components/po-menu-panel/po-menu-panel.module.js +0 -24
- package/esm2015/lib/components/po-menu-panel/services/po-menu-panel-items.service.js +0 -35
- package/esm2015/lib/components/po-modal/index.js +0 -5
- package/esm2015/lib/components/po-modal/po-modal-action.interface.js +0 -2
- package/esm2015/lib/components/po-modal/po-modal-base.component.js +0 -121
- package/esm2015/lib/components/po-modal/po-modal-footer/po-modal-footer.component.js +0 -43
- package/esm2015/lib/components/po-modal/po-modal.component.js +0 -114
- package/esm2015/lib/components/po-modal/po-modal.literals.js +0 -15
- package/esm2015/lib/components/po-modal/po-modal.module.js +0 -19
- package/esm2015/lib/components/po-navbar/index.js +0 -5
- package/esm2015/lib/components/po-navbar/interfaces/po-navbar-icon-action.interface.js +0 -2
- package/esm2015/lib/components/po-navbar/interfaces/po-navbar-item.interface.js +0 -2
- package/esm2015/lib/components/po-navbar/interfaces/po-navbar-literals.interface.js +0 -2
- package/esm2015/lib/components/po-navbar/po-navbar-actions/po-navbar-action/po-navbar-action.component.js +0 -43
- package/esm2015/lib/components/po-navbar/po-navbar-actions/po-navbar-action-popup/po-navbar-action-popup.component.js +0 -18
- package/esm2015/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.component.js +0 -19
- package/esm2015/lib/components/po-navbar/po-navbar-actions/po-navbar-actions.module.js +0 -18
- package/esm2015/lib/components/po-navbar/po-navbar-base.component.js +0 -147
- package/esm2015/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation-icon/po-navbar-item-navigation-icon.component.js +0 -18
- package/esm2015/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.component.js +0 -18
- package/esm2015/lib/components/po-navbar/po-navbar-item-navigation/po-navbar-item-navigation.module.js +0 -15
- package/esm2015/lib/components/po-navbar/po-navbar-items/po-navbar-item/po-navbar-item.component.js +0 -30
- package/esm2015/lib/components/po-navbar/po-navbar-items/po-navbar-items.component.js +0 -53
- package/esm2015/lib/components/po-navbar/po-navbar-items/po-navbar-items.module.js +0 -15
- package/esm2015/lib/components/po-navbar/po-navbar-logo/po-navbar-logo.component.js +0 -13
- package/esm2015/lib/components/po-navbar/po-navbar.component.js +0 -213
- package/esm2015/lib/components/po-navbar/po-navbar.module.js +0 -57
- package/esm2015/lib/components/po-page/index.js +0 -15
- package/esm2015/lib/components/po-page/po-page-action.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-base.component.js +0 -23
- package/esm2015/lib/components/po-page/po-page-content/po-page-content-base.component.js +0 -10
- package/esm2015/lib/components/po-page/po-page-content/po-page-content.component.js +0 -54
- package/esm2015/lib/components/po-page/po-page-default/po-page-default-base.component.js +0 -111
- package/esm2015/lib/components/po-page/po-page-default/po-page-default-literals.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-default/po-page-default.component.js +0 -98
- package/esm2015/lib/components/po-page/po-page-default/po-page-default.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-detail/po-page-detail-base.component.js +0 -141
- package/esm2015/lib/components/po-page/po-page-detail/po-page-detail-literals.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-detail/po-page-detail.component.js +0 -62
- package/esm2015/lib/components/po-page/po-page-edit/po-page-edit-base.component.js +0 -146
- package/esm2015/lib/components/po-page/po-page-edit/po-page-edit-literals.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-edit/po-page-edit.component.js +0 -65
- package/esm2015/lib/components/po-page/po-page-filter.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-header/po-page-header-base.component.js +0 -26
- package/esm2015/lib/components/po-page/po-page-header/po-page-header.component.js +0 -15
- package/esm2015/lib/components/po-page/po-page-list/po-page-list-base.component.js +0 -137
- package/esm2015/lib/components/po-page/po-page-list/po-page-list-literals.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page-list/po-page-list.component.js +0 -188
- package/esm2015/lib/components/po-page/po-page-slide/po-page-slide-base.component.js +0 -135
- package/esm2015/lib/components/po-page/po-page-slide/po-page-slide.component.js +0 -121
- package/esm2015/lib/components/po-page/po-page.component.js +0 -16
- package/esm2015/lib/components/po-page/po-page.interface.js +0 -2
- package/esm2015/lib/components/po-page/po-page.module.js +0 -60
- package/esm2015/lib/components/po-popover/index.js +0 -3
- package/esm2015/lib/components/po-popover/po-popover-base.component.js +0 -113
- package/esm2015/lib/components/po-popover/po-popover.component.js +0 -138
- package/esm2015/lib/components/po-popover/po-popover.module.js +0 -17
- package/esm2015/lib/components/po-popup/index.js +0 -4
- package/esm2015/lib/components/po-popup/po-popup-action.interface.js +0 -2
- package/esm2015/lib/components/po-popup/po-popup-base.component.js +0 -186
- package/esm2015/lib/components/po-popup/po-popup.component.js +0 -169
- package/esm2015/lib/components/po-popup/po-popup.module.js +0 -21
- package/esm2015/lib/components/po-progress/enums/po-progress-status.enum.js +0 -17
- package/esm2015/lib/components/po-progress/index.js +0 -4
- package/esm2015/lib/components/po-progress/po-progress-bar/po-progress-bar.component.js +0 -18
- package/esm2015/lib/components/po-progress/po-progress-base.component.js +0 -107
- package/esm2015/lib/components/po-progress/po-progress.component.js +0 -56
- package/esm2015/lib/components/po-progress/po-progress.module.js +0 -19
- package/esm2015/lib/components/po-slide/directives/po-slide-content-template.directive.js +0 -59
- package/esm2015/lib/components/po-slide/index.js +0 -5
- package/esm2015/lib/components/po-slide/interfaces/po-slide-item.interface.js +0 -2
- package/esm2015/lib/components/po-slide/po-slide-base.component.js +0 -104
- package/esm2015/lib/components/po-slide/po-slide-circles/po-slide-circles.component.js +0 -26
- package/esm2015/lib/components/po-slide/po-slide-control/po-slide-control.component.js +0 -25
- package/esm2015/lib/components/po-slide/po-slide-item/po-slide-item.component.js +0 -37
- package/esm2015/lib/components/po-slide/po-slide.component.js +0 -256
- package/esm2015/lib/components/po-slide/po-slide.module.js +0 -58
- package/esm2015/lib/components/po-stepper/enums/po-stepper-orientation.enum.js +0 -18
- package/esm2015/lib/components/po-stepper/enums/po-stepper-status.enum.js +0 -23
- package/esm2015/lib/components/po-stepper/index.js +0 -7
- package/esm2015/lib/components/po-stepper/po-step/po-step.component.js +0 -78
- package/esm2015/lib/components/po-stepper/po-stepper-base.component.js +0 -144
- package/esm2015/lib/components/po-stepper/po-stepper-circle/po-stepper-circle.component.js +0 -47
- package/esm2015/lib/components/po-stepper/po-stepper-item.interface.js +0 -2
- package/esm2015/lib/components/po-stepper/po-stepper-label/po-stepper-label.component.js +0 -20
- package/esm2015/lib/components/po-stepper/po-stepper-step/po-stepper-step.component.js +0 -116
- package/esm2015/lib/components/po-stepper/po-stepper.component.js +0 -219
- package/esm2015/lib/components/po-stepper/po-stepper.module.js +0 -27
- package/esm2015/lib/components/po-table/enums/po-table-column-sort-type.enum.js +0 -14
- package/esm2015/lib/components/po-table/enums/po-table-row-template-arrow-direction.enum.js +0 -14
- package/esm2015/lib/components/po-table/index.js +0 -18
- package/esm2015/lib/components/po-table/interfaces/po-table-action.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-boolean.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-column-sort.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-column.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-filter.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-filtered-items-params.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-literals.interface.js +0 -2
- package/esm2015/lib/components/po-table/interfaces/po-table-response-api.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-base.component.js +0 -860
- package/esm2015/lib/components/po-table/po-table-cell-template/po-table-cell-template.directive.js +0 -82
- package/esm2015/lib/components/po-table/po-table-column-icon/po-table-column-icon.component.js +0 -72
- package/esm2015/lib/components/po-table/po-table-column-icon/po-table-column-icon.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-column-label/po-table-column-label.component.js +0 -38
- package/esm2015/lib/components/po-table/po-table-column-label/po-table-column-label.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-column-link/po-table-column-link.component.js +0 -38
- package/esm2015/lib/components/po-table/po-table-column-manager/po-table-column-manager.component.js +0 -250
- package/esm2015/lib/components/po-table/po-table-column-template/po-table-column-template.directive.js +0 -90
- package/esm2015/lib/components/po-table/po-table-detail/po-table-detail-column.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-detail/po-table-detail.component.js +0 -88
- package/esm2015/lib/components/po-table/po-table-detail/po-table-detail.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-icon/po-table-icon.component.js +0 -46
- package/esm2015/lib/components/po-table/po-table-row-template/po-table-row-template.directive.js +0 -128
- package/esm2015/lib/components/po-table/po-table-show-subtitle/po-table-show-subtitle.component.js +0 -21
- package/esm2015/lib/components/po-table/po-table-subtitle-circle/po-table-subtitle-circle.component.js +0 -41
- package/esm2015/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-column.interface.js +0 -2
- package/esm2015/lib/components/po-table/po-table-subtitle-footer/po-table-subtitle-footer.component.js +0 -70
- package/esm2015/lib/components/po-table/po-table.component.js +0 -542
- package/esm2015/lib/components/po-table/po-table.module.js +0 -75
- package/esm2015/lib/components/po-table/services/po-table.service.js +0 -38
- package/esm2015/lib/components/po-tabs/index.js +0 -5
- package/esm2015/lib/components/po-tabs/po-tab/po-tab-base.component.js +0 -82
- package/esm2015/lib/components/po-tabs/po-tab/po-tab.component.js +0 -27
- package/esm2015/lib/components/po-tabs/po-tab/po-tab.interface.js +0 -2
- package/esm2015/lib/components/po-tabs/po-tab-button/po-tab-button.component.js +0 -75
- package/esm2015/lib/components/po-tabs/po-tab-dropdown/po-tab-dropdown.component.js +0 -44
- package/esm2015/lib/components/po-tabs/po-tabs-base.component.js +0 -49
- package/esm2015/lib/components/po-tabs/po-tabs.component.js +0 -126
- package/esm2015/lib/components/po-tabs/po-tabs.module.js +0 -21
- package/esm2015/lib/components/po-tag/enums/po-tag-icon.enum.js +0 -19
- package/esm2015/lib/components/po-tag/enums/po-tag-orientation.enum.js +0 -15
- package/esm2015/lib/components/po-tag/enums/po-tag-type.enum.js +0 -19
- package/esm2015/lib/components/po-tag/index.js +0 -5
- package/esm2015/lib/components/po-tag/interfaces/po-tag-item.interface.js +0 -2
- package/esm2015/lib/components/po-tag/po-tag-base.component.js +0 -175
- package/esm2015/lib/components/po-tag/po-tag.component.js +0 -71
- package/esm2015/lib/components/po-tag/po-tag.module.js +0 -21
- package/esm2015/lib/components/po-toolbar/index.js +0 -5
- package/esm2015/lib/components/po-toolbar/po-toolbar-action.interface.js +0 -2
- package/esm2015/lib/components/po-toolbar/po-toolbar-actions/po-toolbar-actions.component.js +0 -35
- package/esm2015/lib/components/po-toolbar/po-toolbar-base.component.js +0 -43
- package/esm2015/lib/components/po-toolbar/po-toolbar-notification/po-toolbar-notification.component.js +0 -39
- package/esm2015/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.component.js +0 -28
- package/esm2015/lib/components/po-toolbar/po-toolbar-profile/po-toolbar-profile.interface.js +0 -2
- package/esm2015/lib/components/po-toolbar/po-toolbar.component.js +0 -46
- package/esm2015/lib/components/po-toolbar/po-toolbar.module.js +0 -32
- package/esm2015/lib/components/po-tree-view/index.js +0 -4
- package/esm2015/lib/components/po-tree-view/po-tree-view-base.component.js +0 -197
- package/esm2015/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.component.js +0 -58
- package/esm2015/lib/components/po-tree-view/po-tree-view-item/po-tree-view-item.interface.js +0 -2
- package/esm2015/lib/components/po-tree-view/po-tree-view-item-header/po-tree-view-item-header.component.js +0 -26
- package/esm2015/lib/components/po-tree-view/po-tree-view.component.js +0 -60
- package/esm2015/lib/components/po-tree-view/po-tree-view.module.js +0 -49
- package/esm2015/lib/components/po-tree-view/services/po-tree-view.service.js +0 -24
- package/esm2015/lib/components/po-widget/index.js +0 -3
- package/esm2015/lib/components/po-widget/po-widget-base.component.js +0 -216
- package/esm2015/lib/components/po-widget/po-widget.component.js +0 -114
- package/esm2015/lib/components/po-widget/po-widget.module.js +0 -19
- package/esm2015/lib/decorators/index.js +0 -3
- package/esm2015/lib/decorators/input-boolean/input-boolean.decorator.js +0 -18
- package/esm2015/lib/decorators/input-required/input-required.decorator.js +0 -34
- package/esm2015/lib/decorators/property-decorator.interface.js +0 -2
- package/esm2015/lib/decorators/utils-decorators.js +0 -64
- package/esm2015/lib/directives/directives.module.js +0 -14
- package/esm2015/lib/directives/index.js +0 -3
- package/esm2015/lib/directives/po-tooltip/index.js +0 -3
- package/esm2015/lib/directives/po-tooltip/po-tooltip-base.directive.js +0 -106
- package/esm2015/lib/directives/po-tooltip/po-tooltip-control-position.service.js +0 -8
- package/esm2015/lib/directives/po-tooltip/po-tooltip.directive.js +0 -147
- package/esm2015/lib/directives/po-tooltip/po-tooltip.module.js +0 -18
- package/esm2015/lib/enums/po-color-palette.enum.js +0 -35
- package/esm2015/lib/enums/po-key-code.enum.js +0 -31
- package/esm2015/lib/guards/guards.module.js +0 -13
- package/esm2015/lib/guards/index.js +0 -2
- package/esm2015/lib/index.js +0 -10
- package/esm2015/lib/interceptors/index.js +0 -4
- package/esm2015/lib/interceptors/interceptors.module.js +0 -15
- package/esm2015/lib/interceptors/po-http-interceptor/index.js +0 -3
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-base.service.js +0 -249
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail-literals.interface.js +0 -39
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.component.js +0 -83
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-detail/po-http-interceptor-detail.interface.js +0 -2
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor-literals.js +0 -23
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor.module.js +0 -28
- package/esm2015/lib/interceptors/po-http-interceptor/po-http-interceptor.service.js +0 -28
- package/esm2015/lib/interceptors/po-http-request/index.js +0 -3
- package/esm2015/lib/interceptors/po-http-request/po-http-request-control-service.js +0 -23
- package/esm2015/lib/interceptors/po-http-request/po-http-request-interceptor.service.js +0 -169
- package/esm2015/lib/interceptors/po-http-request/po-http-request.module.js +0 -24
- package/esm2015/lib/interfaces/index.js +0 -2
- package/esm2015/lib/interfaces/po-http/po-response-api.interface.js +0 -2
- package/esm2015/lib/pipes/index.js +0 -3
- package/esm2015/lib/pipes/pipes.module.js +0 -14
- package/esm2015/lib/pipes/po-time/index.js +0 -3
- package/esm2015/lib/pipes/po-time/po-time.module.js +0 -19
- package/esm2015/lib/pipes/po-time/po-time.pipe.js +0 -55
- package/esm2015/lib/po.module.js +0 -34
- package/esm2015/lib/services/index.js +0 -11
- package/esm2015/lib/services/po-active-overlay/index.js +0 -3
- package/esm2015/lib/services/po-active-overlay/po-active-overlay.module.js +0 -16
- package/esm2015/lib/services/po-active-overlay/po-active-overlay.service.js +0 -14
- package/esm2015/lib/services/po-color/po-color.service.js +0 -60
- package/esm2015/lib/services/po-color/po-colors.constant.js +0 -43
- package/esm2015/lib/services/po-color-palette/index.js +0 -3
- package/esm2015/lib/services/po-color-palette/po-color-palette.module.js +0 -16
- package/esm2015/lib/services/po-color-palette/po-color-palette.service.js +0 -25
- package/esm2015/lib/services/po-component-injector/index.js +0 -3
- package/esm2015/lib/services/po-component-injector/po-component-injector.module.js +0 -14
- package/esm2015/lib/services/po-component-injector/po-component-injector.service.js +0 -34
- package/esm2015/lib/services/po-control-position/index.js +0 -3
- package/esm2015/lib/services/po-control-position/po-control-position.constants.js +0 -16
- package/esm2015/lib/services/po-control-position/po-control-position.module.js +0 -15
- package/esm2015/lib/services/po-control-position/po-control-position.service.js +0 -361
- package/esm2015/lib/services/po-date/index.js +0 -3
- package/esm2015/lib/services/po-date/po-date.module.js +0 -16
- package/esm2015/lib/services/po-date/po-date.service.js +0 -201
- package/esm2015/lib/services/po-dialog/index.js +0 -8
- package/esm2015/lib/services/po-dialog/interfaces/po-dialog-alert-literals.interface.js +0 -2
- package/esm2015/lib/services/po-dialog/interfaces/po-dialog-confirm-literals.interface.js +0 -2
- package/esm2015/lib/services/po-dialog/interfaces/po-dialog.interface.js +0 -2
- package/esm2015/lib/services/po-dialog/po-dialog-base.service.js +0 -18
- package/esm2015/lib/services/po-dialog/po-dialog.component.js +0 -115
- package/esm2015/lib/services/po-dialog/po-dialog.enum.js +0 -16
- package/esm2015/lib/services/po-dialog/po-dialog.module.js +0 -15
- package/esm2015/lib/services/po-dialog/po-dialog.service.js +0 -42
- package/esm2015/lib/services/po-i18n/index.js +0 -8
- package/esm2015/lib/services/po-i18n/interfaces/po-i18n-config-default.interface.js +0 -2
- package/esm2015/lib/services/po-i18n/interfaces/po-i18n-config.interface.js +0 -2
- package/esm2015/lib/services/po-i18n/interfaces/po-i18n-literals.interface.js +0 -2
- package/esm2015/lib/services/po-i18n/po-i18n-base.pipe.js +0 -40
- package/esm2015/lib/services/po-i18n/po-i18n-base.service.js +0 -439
- package/esm2015/lib/services/po-i18n/po-i18n-config-injection-token.js +0 -3
- package/esm2015/lib/services/po-i18n/po-i18n.module.js +0 -188
- package/esm2015/lib/services/po-i18n/po-i18n.pipe.js +0 -21
- package/esm2015/lib/services/po-i18n/po-i18n.service.js +0 -20
- package/esm2015/lib/services/po-language/index.js +0 -5
- package/esm2015/lib/services/po-language/po-language.constant.js +0 -75
- package/esm2015/lib/services/po-language/po-language.interface.js +0 -2
- package/esm2015/lib/services/po-language/po-language.module.js +0 -15
- package/esm2015/lib/services/po-language/po-language.service.js +0 -136
- package/esm2015/lib/services/po-notification/index.js +0 -6
- package/esm2015/lib/services/po-notification/po-notification-base.service.js +0 -111
- package/esm2015/lib/services/po-notification/po-notification.interface.js +0 -2
- package/esm2015/lib/services/po-notification/po-notification.module.js +0 -15
- package/esm2015/lib/services/po-notification/po-notification.service.js +0 -92
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster-base.component.js +0 -15
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster-orientation.enum.js +0 -13
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster-type.enum.js +0 -17
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster.component.js +0 -132
- package/esm2015/lib/services/po-notification/po-toaster/po-toaster.interface.js +0 -2
- package/esm2015/lib/services/services.module.js +0 -40
- package/esm2015/lib/utils/util.js +0 -508
- package/esm2015/po-ui-ng-components.js +0 -206
- package/esm2015/public-api.js +0 -2
- package/fesm2015/po-ui-ng-components.js +0 -35544
- package/fesm2015/po-ui-ng-components.js.map +0 -1
- package/lib/components/po-chart/po-chart-types/po-chart-circular/po-chart-circular.constant.d.ts +0 -7
- package/lib/components/po-chart/po-chart-types/po-chart-circular/po-chart-circular.d.ts +0 -55
- package/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge-series.interface.d.ts +0 -39
- package/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge-text-content/po-chart-gauge-text-content.component.d.ts +0 -24
- package/lib/components/po-chart/po-chart-types/po-chart-gauge/po-chart-gauge.component.d.ts +0 -20
- package/po-ui-ng-components-5.22.3.tgz +0 -0
- package/po-ui-ng-components.metadata.json +0 -1
package/esm2020/lib/components/po-calendar/po-calendar-wrapper/po-calendar-wrapper.component.mjs
ADDED
|
@@ -0,0 +1,469 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, Input, Output, EventEmitter } from '@angular/core';
|
|
2
|
+
import { Subject } from 'rxjs';
|
|
3
|
+
import { debounceTime } from 'rxjs/operators';
|
|
4
|
+
import { PoCalendarService } from '../services/po-calendar.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "../services/po-calendar.service";
|
|
7
|
+
import * as i2 from "../services/po-calendar.lang.service";
|
|
8
|
+
import * as i3 from "../../../services/po-date/po-date.service";
|
|
9
|
+
import * as i4 from "@angular/common";
|
|
10
|
+
import * as i5 from "../po-calendar-header/po-calendar-header.component";
|
|
11
|
+
function PoCalendarWrapperComponent_ng_container_1_div_8_Template(rf, ctx) { if (rf & 1) {
|
|
12
|
+
i0.ɵɵelementStart(0, "div", 10);
|
|
13
|
+
i0.ɵɵtext(1);
|
|
14
|
+
i0.ɵɵelementEnd();
|
|
15
|
+
} if (rf & 2) {
|
|
16
|
+
const weekDay_r6 = ctx.$implicit;
|
|
17
|
+
i0.ɵɵadvance(1);
|
|
18
|
+
i0.ɵɵtextInterpolate1(" ", weekDay_r6, " ");
|
|
19
|
+
} }
|
|
20
|
+
function PoCalendarWrapperComponent_ng_container_1_div_10_span_1_Template(rf, ctx) { if (rf & 1) {
|
|
21
|
+
i0.ɵɵelementStart(0, "span", 13);
|
|
22
|
+
i0.ɵɵtext(1);
|
|
23
|
+
i0.ɵɵelementEnd();
|
|
24
|
+
} if (rf & 2) {
|
|
25
|
+
const day_r7 = i0.ɵɵnextContext().$implicit;
|
|
26
|
+
const ctx_r8 = i0.ɵɵnextContext(2);
|
|
27
|
+
i0.ɵɵproperty("ngClass", ctx_r8.getDayForegroundColor(day_r7));
|
|
28
|
+
i0.ɵɵadvance(1);
|
|
29
|
+
i0.ɵɵtextInterpolate1(" ", day_r7.getDate(), " ");
|
|
30
|
+
} }
|
|
31
|
+
function PoCalendarWrapperComponent_ng_container_1_div_10_Template(rf, ctx) { if (rf & 1) {
|
|
32
|
+
const _r11 = i0.ɵɵgetCurrentView();
|
|
33
|
+
i0.ɵɵelementStart(0, "div", 11);
|
|
34
|
+
i0.ɵɵlistener("click", function PoCalendarWrapperComponent_ng_container_1_div_10_Template_div_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r11); const day_r7 = restoredCtx.$implicit; const ctx_r10 = i0.ɵɵnextContext(2); return ctx_r10.onSelectDate(day_r7); })("mouseenter", function PoCalendarWrapperComponent_ng_container_1_div_10_Template_div_mouseenter_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r11); const day_r7 = restoredCtx.$implicit; const ctx_r12 = i0.ɵɵnextContext(2); return ctx_r12.onMouseEnter(day_r7); })("mouseleave", function PoCalendarWrapperComponent_ng_container_1_div_10_Template_div_mouseleave_0_listener() { i0.ɵɵrestoreView(_r11); const ctx_r13 = i0.ɵɵnextContext(2); return ctx_r13.onMouseLeave(); });
|
|
35
|
+
i0.ɵɵtemplate(1, PoCalendarWrapperComponent_ng_container_1_div_10_span_1_Template, 2, 2, "span", 12);
|
|
36
|
+
i0.ɵɵelementEnd();
|
|
37
|
+
} if (rf & 2) {
|
|
38
|
+
const day_r7 = ctx.$implicit;
|
|
39
|
+
const ctx_r5 = i0.ɵɵnextContext(2);
|
|
40
|
+
i0.ɵɵproperty("ngClass", ctx_r5.getDayBackgroundColor(day_r7));
|
|
41
|
+
i0.ɵɵadvance(1);
|
|
42
|
+
i0.ɵɵproperty("ngIf", day_r7 !== 0);
|
|
43
|
+
} }
|
|
44
|
+
function PoCalendarWrapperComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
45
|
+
const _r15 = i0.ɵɵgetCurrentView();
|
|
46
|
+
i0.ɵɵelementContainerStart(0);
|
|
47
|
+
i0.ɵɵelementStart(1, "po-calendar-header", 2);
|
|
48
|
+
i0.ɵɵlistener("p-previous", function PoCalendarWrapperComponent_ng_container_1_Template_po_calendar_header_p_previous_1_listener() { i0.ɵɵrestoreView(_r15); const ctx_r14 = i0.ɵɵnextContext(); return ctx_r14.onPreviousMonth(); })("p-next", function PoCalendarWrapperComponent_ng_container_1_Template_po_calendar_header_p_next_1_listener() { i0.ɵɵrestoreView(_r15); const ctx_r16 = i0.ɵɵnextContext(); return ctx_r16.onNextMonth(); });
|
|
49
|
+
i0.ɵɵelementStart(2, "span", 3);
|
|
50
|
+
i0.ɵɵlistener("click", function PoCalendarWrapperComponent_ng_container_1_Template_span_click_2_listener() { i0.ɵɵrestoreView(_r15); const ctx_r17 = i0.ɵɵnextContext(); return ctx_r17.selectDisplayMode("month"); });
|
|
51
|
+
i0.ɵɵtext(3);
|
|
52
|
+
i0.ɵɵelementEnd();
|
|
53
|
+
i0.ɵɵelementStart(4, "span", 4);
|
|
54
|
+
i0.ɵɵlistener("click", function PoCalendarWrapperComponent_ng_container_1_Template_span_click_4_listener() { i0.ɵɵrestoreView(_r15); const ctx_r18 = i0.ɵɵnextContext(); return ctx_r18.selectDisplayMode("year"); });
|
|
55
|
+
i0.ɵɵtext(5);
|
|
56
|
+
i0.ɵɵelementEnd();
|
|
57
|
+
i0.ɵɵelementEnd();
|
|
58
|
+
i0.ɵɵelementStart(6, "div", 5);
|
|
59
|
+
i0.ɵɵelementStart(7, "div", 6);
|
|
60
|
+
i0.ɵɵtemplate(8, PoCalendarWrapperComponent_ng_container_1_div_8_Template, 2, 1, "div", 7);
|
|
61
|
+
i0.ɵɵelementEnd();
|
|
62
|
+
i0.ɵɵelementStart(9, "div", 8);
|
|
63
|
+
i0.ɵɵtemplate(10, PoCalendarWrapperComponent_ng_container_1_div_10_Template, 2, 2, "div", 9);
|
|
64
|
+
i0.ɵɵelementEnd();
|
|
65
|
+
i0.ɵɵelementEnd();
|
|
66
|
+
i0.ɵɵelementContainerEnd();
|
|
67
|
+
} if (rf & 2) {
|
|
68
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
69
|
+
i0.ɵɵadvance(1);
|
|
70
|
+
i0.ɵɵproperty("p-hide-previous", ctx_r0.isEndPart)("p-hide-next", ctx_r0.isStartPart && !ctx_r0.responsive);
|
|
71
|
+
i0.ɵɵadvance(2);
|
|
72
|
+
i0.ɵɵtextInterpolate(ctx_r0.displayMonth);
|
|
73
|
+
i0.ɵɵadvance(2);
|
|
74
|
+
i0.ɵɵtextInterpolate(ctx_r0.displayYear);
|
|
75
|
+
i0.ɵɵadvance(3);
|
|
76
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.displayWeekDays);
|
|
77
|
+
i0.ɵɵadvance(2);
|
|
78
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.displayDays);
|
|
79
|
+
} }
|
|
80
|
+
function PoCalendarWrapperComponent_ng_container_2_div_9_Template(rf, ctx) { if (rf & 1) {
|
|
81
|
+
const _r23 = i0.ɵɵgetCurrentView();
|
|
82
|
+
i0.ɵɵelementStart(0, "div", 17);
|
|
83
|
+
i0.ɵɵlistener("click", function PoCalendarWrapperComponent_ng_container_2_div_9_Template_div_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r23); const i_r21 = restoredCtx.index; const ctx_r22 = i0.ɵɵnextContext(2); return ctx_r22.onSelectMonth(ctx_r22.displayYear, i_r21); });
|
|
84
|
+
i0.ɵɵelementStart(1, "span", 13);
|
|
85
|
+
i0.ɵɵtext(2);
|
|
86
|
+
i0.ɵɵelementEnd();
|
|
87
|
+
i0.ɵɵelementEnd();
|
|
88
|
+
} if (rf & 2) {
|
|
89
|
+
const month_r20 = ctx.$implicit;
|
|
90
|
+
const i_r21 = ctx.index;
|
|
91
|
+
const ctx_r19 = i0.ɵɵnextContext(2);
|
|
92
|
+
i0.ɵɵproperty("ngClass", ctx_r19.getBackgroundColor(i_r21, ctx_r19.displayMonthNumber));
|
|
93
|
+
i0.ɵɵadvance(1);
|
|
94
|
+
i0.ɵɵproperty("ngClass", ctx_r19.getForegroundColor(i_r21, ctx_r19.displayMonthNumber));
|
|
95
|
+
i0.ɵɵadvance(1);
|
|
96
|
+
i0.ɵɵtextInterpolate1(" ", month_r20, " ");
|
|
97
|
+
} }
|
|
98
|
+
function PoCalendarWrapperComponent_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
99
|
+
const _r25 = i0.ɵɵgetCurrentView();
|
|
100
|
+
i0.ɵɵelementContainerStart(0);
|
|
101
|
+
i0.ɵɵelementStart(1, "po-calendar-header", 14);
|
|
102
|
+
i0.ɵɵlistener("p-previous", function PoCalendarWrapperComponent_ng_container_2_Template_po_calendar_header_p_previous_1_listener() { i0.ɵɵrestoreView(_r25); const ctx_r24 = i0.ɵɵnextContext(); return ctx_r24.updateYear(-1); })("p-next", function PoCalendarWrapperComponent_ng_container_2_Template_po_calendar_header_p_next_1_listener() { i0.ɵɵrestoreView(_r25); const ctx_r26 = i0.ɵɵnextContext(); return ctx_r26.updateYear(1); });
|
|
103
|
+
i0.ɵɵelementStart(2, "span", 4);
|
|
104
|
+
i0.ɵɵlistener("click", function PoCalendarWrapperComponent_ng_container_2_Template_span_click_2_listener() { i0.ɵɵrestoreView(_r25); const ctx_r27 = i0.ɵɵnextContext(); return ctx_r27.selectDisplayMode("year"); });
|
|
105
|
+
i0.ɵɵtext(3);
|
|
106
|
+
i0.ɵɵelementEnd();
|
|
107
|
+
i0.ɵɵelementEnd();
|
|
108
|
+
i0.ɵɵelementStart(4, "div", 5);
|
|
109
|
+
i0.ɵɵelementStart(5, "div", 6);
|
|
110
|
+
i0.ɵɵelementStart(6, "div", 10);
|
|
111
|
+
i0.ɵɵtext(7);
|
|
112
|
+
i0.ɵɵelementEnd();
|
|
113
|
+
i0.ɵɵelementEnd();
|
|
114
|
+
i0.ɵɵelementStart(8, "div", 15);
|
|
115
|
+
i0.ɵɵtemplate(9, PoCalendarWrapperComponent_ng_container_2_div_9_Template, 3, 3, "div", 16);
|
|
116
|
+
i0.ɵɵelementEnd();
|
|
117
|
+
i0.ɵɵelementEnd();
|
|
118
|
+
i0.ɵɵelementContainerEnd();
|
|
119
|
+
} if (rf & 2) {
|
|
120
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
121
|
+
i0.ɵɵadvance(3);
|
|
122
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r1.displayYear, " ");
|
|
123
|
+
i0.ɵɵadvance(4);
|
|
124
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r1.monthLabel, " ");
|
|
125
|
+
i0.ɵɵadvance(2);
|
|
126
|
+
i0.ɵɵproperty("ngForOf", ctx_r1.displayMonths);
|
|
127
|
+
} }
|
|
128
|
+
function PoCalendarWrapperComponent_ng_container_3_div_8_Template(rf, ctx) { if (rf & 1) {
|
|
129
|
+
const _r32 = i0.ɵɵgetCurrentView();
|
|
130
|
+
i0.ɵɵelementStart(0, "div", 20);
|
|
131
|
+
i0.ɵɵlistener("click", function PoCalendarWrapperComponent_ng_container_3_div_8_Template_div_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r32); const year_r29 = restoredCtx.$implicit; const ctx_r31 = i0.ɵɵnextContext(2); return ctx_r31.onSelectYear(year_r29, ctx_r31.displayMonthNumber); });
|
|
132
|
+
i0.ɵɵelementStart(1, "span", 13);
|
|
133
|
+
i0.ɵɵtext(2);
|
|
134
|
+
i0.ɵɵelementEnd();
|
|
135
|
+
i0.ɵɵelementEnd();
|
|
136
|
+
} if (rf & 2) {
|
|
137
|
+
const year_r29 = ctx.$implicit;
|
|
138
|
+
const ctx_r28 = i0.ɵɵnextContext(2);
|
|
139
|
+
i0.ɵɵproperty("ngClass", ctx_r28.getBackgroundColor(year_r29, ctx_r28.currentYear));
|
|
140
|
+
i0.ɵɵadvance(1);
|
|
141
|
+
i0.ɵɵproperty("ngClass", ctx_r28.getForegroundColor(year_r29, ctx_r28.currentYear));
|
|
142
|
+
i0.ɵɵadvance(1);
|
|
143
|
+
i0.ɵɵtextInterpolate1(" ", year_r29, " ");
|
|
144
|
+
} }
|
|
145
|
+
function PoCalendarWrapperComponent_ng_container_3_Template(rf, ctx) { if (rf & 1) {
|
|
146
|
+
const _r34 = i0.ɵɵgetCurrentView();
|
|
147
|
+
i0.ɵɵelementContainerStart(0);
|
|
148
|
+
i0.ɵɵelementStart(1, "po-calendar-header", 14);
|
|
149
|
+
i0.ɵɵlistener("p-previous", function PoCalendarWrapperComponent_ng_container_3_Template_po_calendar_header_p_previous_1_listener() { i0.ɵɵrestoreView(_r34); const ctx_r33 = i0.ɵɵnextContext(); return ctx_r33.updateYear(-10); })("p-next", function PoCalendarWrapperComponent_ng_container_3_Template_po_calendar_header_p_next_1_listener() { i0.ɵɵrestoreView(_r34); const ctx_r35 = i0.ɵɵnextContext(); return ctx_r35.updateYear(10); });
|
|
150
|
+
i0.ɵɵtext(2);
|
|
151
|
+
i0.ɵɵelementEnd();
|
|
152
|
+
i0.ɵɵelementStart(3, "div", 5);
|
|
153
|
+
i0.ɵɵelementStart(4, "div", 6);
|
|
154
|
+
i0.ɵɵelementStart(5, "div", 10);
|
|
155
|
+
i0.ɵɵtext(6);
|
|
156
|
+
i0.ɵɵelementEnd();
|
|
157
|
+
i0.ɵɵelementEnd();
|
|
158
|
+
i0.ɵɵelementStart(7, "div", 18);
|
|
159
|
+
i0.ɵɵtemplate(8, PoCalendarWrapperComponent_ng_container_3_div_8_Template, 3, 3, "div", 19);
|
|
160
|
+
i0.ɵɵelementEnd();
|
|
161
|
+
i0.ɵɵelementEnd();
|
|
162
|
+
i0.ɵɵelementContainerEnd();
|
|
163
|
+
} if (rf & 2) {
|
|
164
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
165
|
+
i0.ɵɵadvance(2);
|
|
166
|
+
i0.ɵɵtextInterpolate2(" ", ctx_r2.displayStartDecade, " - ", ctx_r2.displayFinalDecade, " ");
|
|
167
|
+
i0.ɵɵadvance(4);
|
|
168
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r2.yearLabel, " ");
|
|
169
|
+
i0.ɵɵadvance(2);
|
|
170
|
+
i0.ɵɵproperty("ngForOf", ctx_r2.displayDecade);
|
|
171
|
+
} }
|
|
172
|
+
function PoCalendarWrapperComponent_ng_container_4_Template(rf, ctx) { if (rf & 1) {
|
|
173
|
+
const _r37 = i0.ɵɵgetCurrentView();
|
|
174
|
+
i0.ɵɵelementContainerStart(0);
|
|
175
|
+
i0.ɵɵelementStart(1, "div", 21);
|
|
176
|
+
i0.ɵɵelementStart(2, "div", 22);
|
|
177
|
+
i0.ɵɵelementStart(3, "button", 23);
|
|
178
|
+
i0.ɵɵlistener("click", function PoCalendarWrapperComponent_ng_container_4_Template_button_click_3_listener() { i0.ɵɵrestoreView(_r37); const ctx_r36 = i0.ɵɵnextContext(); return ctx_r36.onSelectDate(ctx_r36.today); });
|
|
179
|
+
i0.ɵɵtext(4);
|
|
180
|
+
i0.ɵɵelementEnd();
|
|
181
|
+
i0.ɵɵelementEnd();
|
|
182
|
+
i0.ɵɵelementEnd();
|
|
183
|
+
i0.ɵɵelementContainerEnd();
|
|
184
|
+
} if (rf & 2) {
|
|
185
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
186
|
+
i0.ɵɵadvance(3);
|
|
187
|
+
i0.ɵɵproperty("disabled", ctx_r3.isTodayUnavailable());
|
|
188
|
+
i0.ɵɵadvance(1);
|
|
189
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r3.displayToday, " ");
|
|
190
|
+
} }
|
|
191
|
+
export class PoCalendarWrapperComponent {
|
|
192
|
+
constructor(poCalendarService, poCalendarLangService, poDate) {
|
|
193
|
+
this.poCalendarService = poCalendarService;
|
|
194
|
+
this.poCalendarLangService = poCalendarLangService;
|
|
195
|
+
this.poDate = poDate;
|
|
196
|
+
this.mode = 'day';
|
|
197
|
+
this.responsive = false;
|
|
198
|
+
this.range = false;
|
|
199
|
+
this.activateDate = new Date();
|
|
200
|
+
this.headerChange = new EventEmitter();
|
|
201
|
+
this.selectDate = new EventEmitter();
|
|
202
|
+
this.hoverDate = new Subject().pipe(debounceTime(100));
|
|
203
|
+
this.displayMonths = Array();
|
|
204
|
+
this.displayWeekDays = Array();
|
|
205
|
+
this.today = new Date();
|
|
206
|
+
}
|
|
207
|
+
set locale(value) {
|
|
208
|
+
this._locale = value;
|
|
209
|
+
this.initializeLanguage();
|
|
210
|
+
}
|
|
211
|
+
get locale() {
|
|
212
|
+
return this._locale;
|
|
213
|
+
}
|
|
214
|
+
get monthLabel() {
|
|
215
|
+
return this.poCalendarLangService.getMonthLabel();
|
|
216
|
+
}
|
|
217
|
+
get yearLabel() {
|
|
218
|
+
return this.poCalendarLangService.getYearLabel();
|
|
219
|
+
}
|
|
220
|
+
get isDayVisible() {
|
|
221
|
+
return this.mode === 'day';
|
|
222
|
+
}
|
|
223
|
+
get isMonthVisible() {
|
|
224
|
+
return this.mode === 'month';
|
|
225
|
+
}
|
|
226
|
+
get isYearVisible() {
|
|
227
|
+
return this.mode === 'year';
|
|
228
|
+
}
|
|
229
|
+
get isStartPart() {
|
|
230
|
+
return this.partType === 'start';
|
|
231
|
+
}
|
|
232
|
+
get isEndPart() {
|
|
233
|
+
return this.partType === 'end';
|
|
234
|
+
}
|
|
235
|
+
ngOnInit() {
|
|
236
|
+
this.init();
|
|
237
|
+
}
|
|
238
|
+
ngOnChanges(changes) {
|
|
239
|
+
const { activateDate } = changes;
|
|
240
|
+
if (activateDate) {
|
|
241
|
+
this.updateDate(activateDate.currentValue);
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
getBackgroundColor(displayValue, propertyValue) {
|
|
245
|
+
return displayValue === propertyValue ? 'po-calendar-box-background-selected' : 'po-calendar-box-background';
|
|
246
|
+
}
|
|
247
|
+
getDayBackgroundColor(date) {
|
|
248
|
+
return this.getDayColor(date, 'background');
|
|
249
|
+
}
|
|
250
|
+
getDayForegroundColor(date) {
|
|
251
|
+
return this.getDayColor(date, 'foreground');
|
|
252
|
+
}
|
|
253
|
+
getForegroundColor(displayValue, propertyValue) {
|
|
254
|
+
return displayValue === propertyValue ? 'po-calendar-box-foreground-selected' : 'po-calendar-box-foreground';
|
|
255
|
+
}
|
|
256
|
+
isTodayUnavailable() {
|
|
257
|
+
return this.minDate > this.today || this.maxDate < this.today;
|
|
258
|
+
}
|
|
259
|
+
onNextMonth() {
|
|
260
|
+
this.displayMonthNumber < 11
|
|
261
|
+
? this.updateDisplay(this.displayYear, this.displayMonthNumber + 1)
|
|
262
|
+
: this.updateDisplay(this.displayYear + 1, 0);
|
|
263
|
+
this.headerChange.emit({ month: this.displayMonthNumber, year: this.displayYear });
|
|
264
|
+
}
|
|
265
|
+
onPreviousMonth() {
|
|
266
|
+
if (this.displayMonthNumber > 0) {
|
|
267
|
+
this.updateDisplay(this.displayYear, this.displayMonthNumber - 1);
|
|
268
|
+
}
|
|
269
|
+
else {
|
|
270
|
+
this.updateDisplay(this.displayYear - 1, 11);
|
|
271
|
+
}
|
|
272
|
+
this.headerChange.emit({ month: this.displayMonthNumber, year: this.displayYear });
|
|
273
|
+
}
|
|
274
|
+
onMouseEnter(day) {
|
|
275
|
+
this.hoverDate.next(day);
|
|
276
|
+
}
|
|
277
|
+
onMouseLeave() {
|
|
278
|
+
this.hoverDate.next(null);
|
|
279
|
+
}
|
|
280
|
+
// Ao selecionar uma data
|
|
281
|
+
onSelectDate(date) {
|
|
282
|
+
this.selectDate.emit(date);
|
|
283
|
+
}
|
|
284
|
+
// Ao selecionar um mês
|
|
285
|
+
onSelectMonth(year, month) {
|
|
286
|
+
this.selectDisplayMode('day');
|
|
287
|
+
this.updateDisplay(year, month);
|
|
288
|
+
this.headerChange.emit({ month, year });
|
|
289
|
+
}
|
|
290
|
+
// Ao selecionar um ano
|
|
291
|
+
onSelectYear(year, month) {
|
|
292
|
+
// Se veio da tela de seleção de mês
|
|
293
|
+
this.selectDisplayMode(this.lastDisplay === 'month' ? 'month' : 'day');
|
|
294
|
+
this.currentYear = year;
|
|
295
|
+
this.updateDisplay(year, month);
|
|
296
|
+
this.headerChange.emit({ month, year });
|
|
297
|
+
}
|
|
298
|
+
selectDisplayMode(mode) {
|
|
299
|
+
this.lastDisplay = this.mode;
|
|
300
|
+
this.mode = mode;
|
|
301
|
+
}
|
|
302
|
+
updateYear(value) {
|
|
303
|
+
this.updateDisplay(this.displayYear + value, this.displayMonthNumber);
|
|
304
|
+
}
|
|
305
|
+
addAllYearsInDecade(year) {
|
|
306
|
+
let i;
|
|
307
|
+
for (i = year; i < year + 10; i++) {
|
|
308
|
+
this.displayDecade.push(i);
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
equalsDate(date1, date2) {
|
|
312
|
+
try {
|
|
313
|
+
return (date1.getFullYear() === date2.getFullYear() &&
|
|
314
|
+
date1.getMonth() === date2.getMonth() &&
|
|
315
|
+
date1.getDate() === date2.getDate());
|
|
316
|
+
}
|
|
317
|
+
catch (error) {
|
|
318
|
+
return false;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
// Obtém um array de todos os anos desta década
|
|
322
|
+
getDecadeArray(year) {
|
|
323
|
+
this.displayDecade = Array();
|
|
324
|
+
if (year % 10 !== 0) {
|
|
325
|
+
while (year % 10 !== 0) {
|
|
326
|
+
year--;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
this.updateDecade(year);
|
|
330
|
+
}
|
|
331
|
+
getColorForDate(date, local) {
|
|
332
|
+
return this.poDate.validateDateRange(date, this.minDate, this.maxDate)
|
|
333
|
+
? `po-calendar-box-${local}-selected`
|
|
334
|
+
: `po-calendar-box-${local}-selected-disabled`;
|
|
335
|
+
}
|
|
336
|
+
getColorForDefaultDate(date, local) {
|
|
337
|
+
return this.poDate.validateDateRange(date, this.minDate, this.maxDate)
|
|
338
|
+
? `po-calendar-box-${local}`
|
|
339
|
+
: `po-calendar-box-${local}-disabled`;
|
|
340
|
+
}
|
|
341
|
+
getColorForToday(date, local) {
|
|
342
|
+
return this.poDate.validateDateRange(date, this.minDate, this.maxDate)
|
|
343
|
+
? `po-calendar-box-${local}-today`
|
|
344
|
+
: `po-calendar-box-${local}-today-disabled`;
|
|
345
|
+
}
|
|
346
|
+
getColorForDateRange(date, local) {
|
|
347
|
+
return this.poDate.validateDateRange(date, this.minDate, this.maxDate)
|
|
348
|
+
? `po-calendar-box-${local}-in-range`
|
|
349
|
+
: `po-calendar-box-${local}-in-range-disabled`;
|
|
350
|
+
}
|
|
351
|
+
getDayColor(date, local) {
|
|
352
|
+
const start = this.selectedValue?.start;
|
|
353
|
+
const end = this.selectedValue?.end;
|
|
354
|
+
if (this.range && (this.equalsDate(date, start) || this.equalsDate(date, end))) {
|
|
355
|
+
return this.getColorForDate(date, local);
|
|
356
|
+
}
|
|
357
|
+
else if (this.range && start && end && date > start && date < end) {
|
|
358
|
+
return this.getColorForDateRange(date, local);
|
|
359
|
+
}
|
|
360
|
+
else if (this.range && start && !end && date > start && date < this.hoverValue) {
|
|
361
|
+
return `po-calendar-box-${local}-hover`;
|
|
362
|
+
}
|
|
363
|
+
else if (!this.range && this.equalsDate(date, this.value)) {
|
|
364
|
+
return this.getColorForDate(date, local);
|
|
365
|
+
}
|
|
366
|
+
else if (this.equalsDate(date, this.today)) {
|
|
367
|
+
return this.getColorForToday(date, local);
|
|
368
|
+
}
|
|
369
|
+
else {
|
|
370
|
+
return this.getColorForDefaultDate(date, local);
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
init() {
|
|
374
|
+
this.updateDate(this.activateDate);
|
|
375
|
+
this.initializeLanguage();
|
|
376
|
+
this.selectDisplayMode('day');
|
|
377
|
+
}
|
|
378
|
+
initializeLanguage() {
|
|
379
|
+
this.poCalendarLangService.setLanguage(this.locale);
|
|
380
|
+
this.displayWeekDays = this.poCalendarLangService.getWeekDaysArray();
|
|
381
|
+
this.displayMonths = this.poCalendarLangService.getMonthsArray();
|
|
382
|
+
this.displayMonth = this.displayMonths[this.displayMonthNumber];
|
|
383
|
+
this.displayToday = this.poCalendarLangService.getTodayLabel();
|
|
384
|
+
}
|
|
385
|
+
updateDate(value = new Date()) {
|
|
386
|
+
const date = new Date(value);
|
|
387
|
+
this.currentMonthNumber = date.getMonth();
|
|
388
|
+
this.currentYear = date.getFullYear();
|
|
389
|
+
this.updateDisplay(this.currentYear, this.currentMonthNumber);
|
|
390
|
+
}
|
|
391
|
+
updateDecade(year) {
|
|
392
|
+
this.addAllYearsInDecade(year);
|
|
393
|
+
this.displayStartDecade = year;
|
|
394
|
+
this.displayFinalDecade = year + 9;
|
|
395
|
+
}
|
|
396
|
+
updateDisplay(year, month) {
|
|
397
|
+
const calendarArray = this.poCalendarService.monthDays(year, month);
|
|
398
|
+
this.displayDays = [].concat.apply([], calendarArray);
|
|
399
|
+
this.displayMonthNumber = month;
|
|
400
|
+
this.displayMonth = this.displayMonths[month];
|
|
401
|
+
this.displayYear = year;
|
|
402
|
+
this.getDecadeArray(year);
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
PoCalendarWrapperComponent.ɵfac = function PoCalendarWrapperComponent_Factory(t) { return new (t || PoCalendarWrapperComponent)(i0.ɵɵdirectiveInject(i1.PoCalendarService), i0.ɵɵdirectiveInject(i2.PoCalendarLangService), i0.ɵɵdirectiveInject(i3.PoDateService)); };
|
|
406
|
+
PoCalendarWrapperComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PoCalendarWrapperComponent, selectors: [["po-calendar-wrapper"]], inputs: { value: ["p-value", "value"], mode: ["p-mode", "mode"], responsive: ["p-responsive", "responsive"], partType: ["p-part-type", "partType"], range: ["p-range", "range"], activateDate: ["p-activate-date", "activateDate"], selectedValue: ["p-selected-value", "selectedValue"], minDate: ["p-min-date", "minDate"], maxDate: ["p-max-date", "maxDate"], hoverValue: ["p-hover-value", "hoverValue"], locale: ["p-locale", "locale"] }, outputs: { headerChange: "p-header-change", selectDate: "p-select-date", hoverDate: "p-hover-date" }, features: [i0.ɵɵProvidersFeature([PoCalendarService]), i0.ɵɵNgOnChangesFeature], decls: 5, vars: 4, consts: [[1, "po-calendar-wrapper"], [4, "ngIf"], [3, "p-hide-previous", "p-hide-next", "p-previous", "p-next"], [1, "po-clickable", "po-mr-1", 3, "click"], [1, "po-clickable", 3, "click"], [1, "po-calendar-content"], [1, "po-calendar-labels"], ["class", "po-calendar-label", 4, "ngFor", "ngForOf"], [1, "po-calendar-content-list-day"], ["class", "po-calendar-day", "attr-calendar", "", 3, "ngClass", "click", "mouseenter", "mouseleave", 4, "ngFor", "ngForOf"], [1, "po-calendar-label"], ["attr-calendar", "", 1, "po-calendar-day", 3, "ngClass", "click", "mouseenter", "mouseleave"], [3, "ngClass", 4, "ngIf"], [3, "ngClass"], [3, "p-previous", "p-next"], [1, "po-calendar-content-list-month"], ["class", "po-calendar-month", "attr-calendar", "", 3, "ngClass", "click", 4, "ngFor", "ngForOf"], ["attr-calendar", "", 1, "po-calendar-month", 3, "ngClass", "click"], [1, "po-calendar-content-list-year"], ["class", "po-calendar-year", "attr-calendar", "", 3, "ngClass", "click", 4, "ngFor", "ngForOf"], ["attr-calendar", "", 1, "po-calendar-year", 3, "ngClass", "click"], [1, "po-calendar-footer"], [1, "po-calendar-footer-today"], [1, "po-calendar-footer-today-button", 3, "disabled", "click"]], template: function PoCalendarWrapperComponent_Template(rf, ctx) { if (rf & 1) {
|
|
407
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
408
|
+
i0.ɵɵtemplate(1, PoCalendarWrapperComponent_ng_container_1_Template, 11, 6, "ng-container", 1);
|
|
409
|
+
i0.ɵɵtemplate(2, PoCalendarWrapperComponent_ng_container_2_Template, 10, 3, "ng-container", 1);
|
|
410
|
+
i0.ɵɵtemplate(3, PoCalendarWrapperComponent_ng_container_3_Template, 9, 4, "ng-container", 1);
|
|
411
|
+
i0.ɵɵtemplate(4, PoCalendarWrapperComponent_ng_container_4_Template, 5, 2, "ng-container", 1);
|
|
412
|
+
i0.ɵɵelementEnd();
|
|
413
|
+
} if (rf & 2) {
|
|
414
|
+
i0.ɵɵadvance(1);
|
|
415
|
+
i0.ɵɵproperty("ngIf", ctx.isDayVisible);
|
|
416
|
+
i0.ɵɵadvance(1);
|
|
417
|
+
i0.ɵɵproperty("ngIf", ctx.isMonthVisible);
|
|
418
|
+
i0.ɵɵadvance(1);
|
|
419
|
+
i0.ɵɵproperty("ngIf", ctx.isYearVisible);
|
|
420
|
+
i0.ɵɵadvance(1);
|
|
421
|
+
i0.ɵɵproperty("ngIf", !ctx.range);
|
|
422
|
+
} }, directives: [i4.NgIf, i5.PoCalendarHeaderComponent, i4.NgForOf, i4.NgClass], encapsulation: 2, changeDetection: 0 });
|
|
423
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PoCalendarWrapperComponent, [{
|
|
424
|
+
type: Component,
|
|
425
|
+
args: [{ selector: 'po-calendar-wrapper', providers: [PoCalendarService], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"po-calendar-wrapper\">\n <ng-container *ngIf=\"isDayVisible\">\n <po-calendar-header\n [p-hide-previous]=\"isEndPart\"\n [p-hide-next]=\"isStartPart && !responsive\"\n (p-previous)=\"onPreviousMonth()\"\n (p-next)=\"onNextMonth()\"\n >\n <span class=\"po-clickable po-mr-1\" (click)=\"selectDisplayMode('month')\">{{ displayMonth }}</span>\n <span class=\"po-clickable\" (click)=\"selectDisplayMode('year')\">{{ displayYear }}</span>\n </po-calendar-header>\n\n <div class=\"po-calendar-content\">\n <div class=\"po-calendar-labels\">\n <div class=\"po-calendar-label\" *ngFor=\"let weekDay of displayWeekDays\">\n {{ weekDay }}\n </div>\n </div>\n\n <div class=\"po-calendar-content-list-day\">\n <div\n *ngFor=\"let day of displayDays\"\n class=\"po-calendar-day\"\n [ngClass]=\"getDayBackgroundColor(day)\"\n (click)=\"onSelectDate(day)\"\n (mouseenter)=\"onMouseEnter(day)\"\n (mouseleave)=\"onMouseLeave()\"\n attr-calendar\n >\n <span *ngIf=\"day !== 0\" [ngClass]=\"getDayForegroundColor(day)\">\n {{ day.getDate() }}\n </span>\n </div>\n </div>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"isMonthVisible\">\n <po-calendar-header (p-previous)=\"updateYear(-1)\" (p-next)=\"updateYear(1)\">\n <span class=\"po-clickable\" (click)=\"selectDisplayMode('year')\">\n {{ displayYear }}\n </span>\n </po-calendar-header>\n\n <div class=\"po-calendar-content\">\n <div class=\"po-calendar-labels\">\n <div class=\"po-calendar-label\">\n {{ monthLabel }}\n </div>\n </div>\n <div class=\"po-calendar-content-list-month\">\n <div\n *ngFor=\"let month of displayMonths; let i = index\"\n class=\"po-calendar-month\"\n [ngClass]=\"getBackgroundColor(i, displayMonthNumber)\"\n (click)=\"onSelectMonth(displayYear, i)\"\n attr-calendar\n >\n <span [ngClass]=\"getForegroundColor(i, displayMonthNumber)\">\n {{ month }}\n </span>\n </div>\n </div>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"isYearVisible\">\n <po-calendar-header (p-previous)=\"updateYear(-10)\" (p-next)=\"updateYear(10)\">\n {{ displayStartDecade }} - {{ displayFinalDecade }}\n </po-calendar-header>\n\n <div class=\"po-calendar-content\">\n <div class=\"po-calendar-labels\">\n <div class=\"po-calendar-label\">\n {{ yearLabel }}\n </div>\n </div>\n\n <div class=\"po-calendar-content-list-year\">\n <div\n *ngFor=\"let year of displayDecade; let i = index\"\n class=\"po-calendar-year\"\n [ngClass]=\"getBackgroundColor(year, currentYear)\"\n (click)=\"onSelectYear(year, displayMonthNumber)\"\n attr-calendar\n >\n <span [ngClass]=\"getForegroundColor(year, currentYear)\">\n {{ year }}\n </span>\n </div>\n </div>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"!range\">\n <div class=\"po-calendar-footer\">\n <div class=\"po-calendar-footer-today\">\n <button class=\"po-calendar-footer-today-button\" (click)=\"onSelectDate(today)\" [disabled]=\"isTodayUnavailable()\">\n {{ displayToday }}\n </button>\n </div>\n </div>\n </ng-container>\n</div>\n" }]
|
|
426
|
+
}], function () { return [{ type: i1.PoCalendarService }, { type: i2.PoCalendarLangService }, { type: i3.PoDateService }]; }, { value: [{
|
|
427
|
+
type: Input,
|
|
428
|
+
args: ['p-value']
|
|
429
|
+
}], mode: [{
|
|
430
|
+
type: Input,
|
|
431
|
+
args: ['p-mode']
|
|
432
|
+
}], responsive: [{
|
|
433
|
+
type: Input,
|
|
434
|
+
args: ['p-responsive']
|
|
435
|
+
}], partType: [{
|
|
436
|
+
type: Input,
|
|
437
|
+
args: ['p-part-type']
|
|
438
|
+
}], range: [{
|
|
439
|
+
type: Input,
|
|
440
|
+
args: ['p-range']
|
|
441
|
+
}], activateDate: [{
|
|
442
|
+
type: Input,
|
|
443
|
+
args: ['p-activate-date']
|
|
444
|
+
}], selectedValue: [{
|
|
445
|
+
type: Input,
|
|
446
|
+
args: ['p-selected-value']
|
|
447
|
+
}], minDate: [{
|
|
448
|
+
type: Input,
|
|
449
|
+
args: ['p-min-date']
|
|
450
|
+
}], maxDate: [{
|
|
451
|
+
type: Input,
|
|
452
|
+
args: ['p-max-date']
|
|
453
|
+
}], hoverValue: [{
|
|
454
|
+
type: Input,
|
|
455
|
+
args: ['p-hover-value']
|
|
456
|
+
}], headerChange: [{
|
|
457
|
+
type: Output,
|
|
458
|
+
args: ['p-header-change']
|
|
459
|
+
}], selectDate: [{
|
|
460
|
+
type: Output,
|
|
461
|
+
args: ['p-select-date']
|
|
462
|
+
}], hoverDate: [{
|
|
463
|
+
type: Output,
|
|
464
|
+
args: ['p-hover-date']
|
|
465
|
+
}], locale: [{
|
|
466
|
+
type: Input,
|
|
467
|
+
args: ['p-locale']
|
|
468
|
+
}] }); })();
|
|
469
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG8tY2FsZW5kYXItd3JhcHBlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS9zcmMvbGliL2NvbXBvbmVudHMvcG8tY2FsZW5kYXIvcG8tY2FsZW5kYXItd3JhcHBlci9wby1jYWxlbmRhci13cmFwcGVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpL3NyYy9saWIvY29tcG9uZW50cy9wby1jYWxlbmRhci9wby1jYWxlbmRhci13cmFwcGVyL3BvLWNhbGVuZGFyLXdyYXBwZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQXFCLE1BQU0sRUFBRSxZQUFZLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFbkgsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUMvQixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFHOUMsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0saUNBQWlDLENBQUM7Ozs7Ozs7O0lDUTVELCtCQUF1RTtJQUNyRSxZQUNGO0lBQUEsaUJBQU07OztJQURKLGVBQ0Y7SUFERSwyQ0FDRjs7O0lBYUUsZ0NBQStEO0lBQzdELFlBQ0Y7SUFBQSxpQkFBTzs7OztJQUZpQiw4REFBc0M7SUFDNUQsZUFDRjtJQURFLGlEQUNGOzs7O0lBWEYsK0JBUUM7SUFKQyxpUEFBUyw0QkFBaUIsSUFBQyw4T0FDYiw0QkFBaUIsSUFESixvTEFFYixzQkFBYyxJQUZEO0lBSzNCLG9HQUVPO0lBQ1QsaUJBQU07Ozs7SUFUSiw4REFBc0M7SUFNL0IsZUFBZTtJQUFmLG1DQUFlOzs7O0lBNUI5Qiw2QkFBbUM7SUFDakMsNkNBS0M7SUFGQyx3TUFBYyx5QkFBaUIsSUFBQyxtTEFDdEIscUJBQWEsSUFEUztJ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QUEwQixnbUJBSDFCLENBQUMsaUJBQWlCLENBQUM7UUNaaEMsOEJBQWlDO1FBQy9CLDhGQWtDZTtRQUVmLDhGQTJCZTtRQUVmLDZGQTBCZTtRQUVmLDZGQVFlO1FBQ2pCLGlCQUFNOztRQXRHVyxlQUFrQjtRQUFsQix1Q0FBa0I7UUFvQ2xCLGVBQW9CO1FBQXBCLHlDQUFvQjtRQTZCcEIsZUFBbUI7UUFBbkIsd0NBQW1CO1FBNEJuQixlQUFZO1FBQVosaUNBQVk7O3VGRC9FaEIsMEJBQTBCO2NBTnRDLFNBQVM7MkJBQ0UscUJBQXFCLGFBRXBCLENBQUMsaUJBQWlCLENBQUMsbUJBQ2IsdUJBQXVCLENBQUMsTUFBTTtvSUFHN0IsS0FBSztrQkFBdEIsS0FBSzttQkFBQyxTQUFTO1lBRUMsSUFBSTtrQkFBcEIsS0FBSzttQkFBQyxRQUFRO1lBRVEsVUFBVTtrQkFBaEMsS0FBSzttQkFBQyxjQUFjO1lBRUMsUUFBUTtrQkFBN0IsS0FBSzttQkFBQyxhQUFhO1lBRUYsS0FBSztrQkFBdEIsS0FBSzttQkFBQyxTQUFTO1lBRVUsWUFBWTtrQkFBckMsS0FBSzttQkFBQyxpQkFBaUI7WUFFRyxhQUFhO2tCQUF2QyxLQUFLO21CQUFDLGtCQUFrQjtZQUVKLE9BQU87a0JBQTNCLEtBQUs7bUJBQUMsWUFBWTtZQUVFLE9BQU87a0JBQTNCLEtBQUs7bUJBQUMsWUFBWTtZQUVLLFVBQVU7a0JBQWpDLEtBQUs7bUJBQUMsZUFBZTtZQUVLLFlBQVk7a0JBQXRDLE1BQU07bUJBQUMsaUJBQWlCO1lBRUEsVUFBVTtrQkFBbEMsTUFBTTttQkFBQyxlQUFlO1lBRUMsU0FBUztrQkFBaEMsTUFBTTttQkFBQyxjQUFjO1lBcUJDLE1BQU07a0JBQTVCLEtBQUs7bUJBQUMsVUFBVSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0LCBPbkNoYW5nZXMsIE9uSW5pdCwgT3V0cHV0LCBFdmVudEVtaXR0ZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgZGVib3VuY2VUaW1lIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuXG5pbXBvcnQgeyBQb0NhbGVuZGFyTGFuZ1NlcnZpY2UgfSBmcm9tICcuLi9zZXJ2aWNlcy9wby1jYWxlbmRhci5sYW5nLnNlcnZpY2UnO1xuaW1wb3J0IHsgUG9DYWxlbmRhclNlcnZpY2UgfSBmcm9tICcuLi9zZXJ2aWNlcy9wby1jYWxlbmRhci5zZXJ2aWNlJztcbmltcG9ydCB7IFBvRGF0ZVNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi9zZXJ2aWNlcy9wby1kYXRlL3BvLWRhdGUuc2VydmljZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3BvLWNhbGVuZGFyLXdyYXBwZXInLFxuICB0ZW1wbGF0ZVVybDogJy4vcG8tY2FsZW5kYXItd3JhcHBlci5jb21wb25lbnQuaHRtbCcsXG4gIHByb3ZpZGVyczogW1BvQ2FsZW5kYXJTZXJ2aWNlXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2hcbn0pXG5leHBvcnQgY2xhc3MgUG9DYWxlbmRhcldyYXBwZXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIE9uQ2hhbmdlcyB7XG4gIEBJbnB1dCgncC12YWx1ZScpIHZhbHVlO1xuXG4gIEBJbnB1dCgncC1tb2RlJykgbW9kZTogJ2RheScgfCAnbW9udGgnIHwgJ3llYXInID0gJ2RheSc7XG5cbiAgQElucHV0KCdwLXJlc3BvbnNpdmUnKSByZXNwb25zaXZlOiBib29sZWFuID0gZmFsc2U7XG5cbiAgQElucHV0KCdwLXBhcnQtdHlwZScpIHBhcnRUeXBlOiAnc3RhcnQnIHwgJ2VuZCc7XG5cbiAgQElucHV0KCdwLXJhbmdlJykgcmFuZ2U6IGJvb2xlYW4gPSBmYWxzZTtcblxuICBASW5wdXQoJ3AtYWN0aXZhdGUtZGF0ZScpIGFjdGl2YXRlRGF0ZSA9IG5ldyBEYXRlKCk7XG5cbiAgQElucHV0KCdwLXNlbGVjdGVkLXZhbHVlJykgc2VsZWN0ZWRWYWx1ZTtcblxuICBASW5wdXQoJ3AtbWluLWRhdGUnKSBtaW5EYXRlO1xuXG4gIEBJbnB1dCgncC1tYXgtZGF0ZScpIG1heERhdGU7XG5cbiAgQElucHV0KCdwLWhvdmVyLXZhbHVlJykgaG92ZXJWYWx1ZTogRGF0ZTtcblxuICBAT3V0cHV0KCdwLWhlYWRlci1jaGFuZ2UnKSBoZWFkZXJDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcblxuICBAT3V0cHV0KCdwLXNlbGVjdC1kYXRlJykgc2VsZWN0RGF0ZSA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xuXG4gIEBPdXRwdXQoJ3AtaG92ZXItZGF0ZScpIGhvdmVyRGF0ZSA9IG5ldyBTdWJqZWN0PERhdGU+KCkucGlwZShkZWJvdW5jZVRpbWUoMTAwKSk7XG5cbiAgY3VycmVudFllYXI6IG51bWJlcjtcbiAgZGlzcGxheURheXM6IEFycmF5PG51bWJlcj47XG4gIGRpc3BsYXlEZWNhZGU6IEFycmF5PG51bWJlcj47XG4gIGRpc3BsYXlGaW5hbERlY2FkZTogbnVtYmVyO1xuICBkaXNwbGF5TW9udGg6IGFueTtcbiAgZGlzcGxheU1vbnRoTnVtYmVyOiBudW1iZXI7XG4gIGRpc3BsYXlNb250aHM6IEFycmF5PGFueT4gPSBBcnJheSgpO1xuICBkaXNwbGF5U3RhcnREZWNhZGU6IG51bWJlcjtcbiAgZGlzcGxheVdlZWtEYXlzOiBBcnJheTxhbnk+ID0gQXJyYXkoKTtcbiAgZGlzcGxheVllYXI6IG51bWJlcjtcbiAgZGlzcGxheVRvZGF5OiBzdHJpbmc7XG4gIHRvZGF5OiBEYXRlID0gbmV3IERhdGUoKTtcblxuICBwcm90ZWN0ZWQgY3VycmVudE1vbnRoTnVtYmVyOiBudW1iZXI7XG4gIHByb3RlY3RlZCBkYXRlOiBEYXRlO1xuICBwcm90ZWN0ZWQgbGFzdERpc3BsYXk6IHN0cmluZztcblxuICBwcml2YXRlIF9sb2NhbGU6IHN0cmluZztcblxuICBASW5wdXQoJ3AtbG9jYWxlJykgc2V0IGxvY2FsZSh2YWx1ZTogc3RyaW5nKSB7XG4gICAgdGhpcy5fbG9jYWxlID0gdmFsdWU7XG4gICAgdGhpcy5pbml0aWFsaXplTGFuZ3VhZ2UoKTtcbiAgfVxuXG4gIGdldCBsb2NhbGUoKSB7XG4gICAgcmV0dXJuIHRoaXMuX2xvY2FsZTtcbiAgfVxuXG4gIGdldCBtb250aExhYmVsKCkge1xuICAgIHJldHVybiB0aGlzLnBvQ2FsZW5kYXJMYW5nU2VydmljZS5nZXRNb250aExhYmVsKCk7XG4gIH1cblxuICBnZXQgeWVhckxhYmVsKCkge1xuICAgIHJldHVybiB0aGlzLnBvQ2FsZW5kYXJMYW5nU2VydmljZS5nZXRZZWFyTGFiZWwoKTtcbiAgfVxuXG4gIGdldCBpc0RheVZpc2libGUoKSB7XG4gICAgcmV0dXJuIHRoaXMubW9kZSA9PT0gJ2RheSc7XG4gIH1cblxuICBnZXQgaXNNb250aFZpc2libGUoKSB7XG4gICAgcmV0dXJuIHRoaXMubW9kZSA9PT0gJ21vbnRoJztcbiAgfVxuXG4gIGdldCBpc1llYXJWaXNpYmxlKCkge1xuICAgIHJldHVybiB0aGlzLm1vZGUgPT09ICd5ZWFyJztcbiAgfVxuXG4gIGdldCBpc1N0YXJ0UGFydCgpIHtcbiAgICByZXR1cm4gdGhpcy5wYXJ0VHlwZSA9PT0gJ3N0YXJ0JztcbiAgfVxuXG4gIGdldCBpc0VuZFBhcnQoKSB7XG4gICAgcmV0dXJuIHRoaXMucGFydFR5cGUgPT09ICdlbmQnO1xuICB9XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHJpdmF0ZSBwb0NhbGVuZGFyU2VydmljZTogUG9DYWxlbmRhclNlcnZpY2UsXG4gICAgcHJpdmF0ZSBwb0NhbGVuZGFyTGFuZ1NlcnZpY2U6IFBvQ2FsZW5kYXJMYW5nU2VydmljZSxcbiAgICBwcml2YXRlIHBvRGF0ZTogUG9EYXRlU2VydmljZVxuICApIHt9XG5cbiAgbmdPbkluaXQoKSB7XG4gICAgdGhpcy5pbml0KCk7XG4gIH1cblxuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzKSB7XG4gICAgY29uc3QgeyBhY3RpdmF0ZURhdGUgfSA9IGNoYW5nZXM7XG5cbiAgICBpZiAoYWN0aXZhdGVEYXRlKSB7XG4gICAgICB0aGlzLnVwZGF0ZURhdGUoYWN0aXZhdGVEYXRlLmN1cnJlbnRWYWx1ZSk7XG4gICAgfVxuICB9XG5cbiAgZ2V0QmFja2dyb3VuZENvbG9yKGRpc3BsYXlWYWx1ZTogbnVtYmVyLCBwcm9wZXJ0eVZhbHVlOiBudW1iZXIpIHtcbiAgICByZXR1cm4gZGlzcGxheVZhbHVlID09PSBwcm9wZXJ0eVZhbHVlID8gJ3BvLWNhbGVuZGFyLWJveC1iYWNrZ3JvdW5kLXNlbGVjdGVkJyA6ICdwby1jYWxlbmRhci1ib3gtYmFja2dyb3VuZCc7XG4gIH1cblxuICBnZXREYXlCYWNrZ3JvdW5kQ29sb3IoZGF0ZTogRGF0ZSkge1xuICAgIHJldHVybiB0aGlzLmdldERheUNvbG9yKGRhdGUsICdiYWNrZ3JvdW5kJyk7XG4gIH1cblxuICBnZXREYXlGb3JlZ3JvdW5kQ29sb3IoZGF0ZTogRGF0ZSkge1xuICAgIHJldHVybiB0aGlzLmdldERheUNvbG9yKGRhdGUsICdmb3JlZ3JvdW5kJyk7XG4gIH1cblxuICBnZXRGb3JlZ3JvdW5kQ29sb3IoZGlzcGxheVZhbHVlOiBudW1iZXIsIHByb3BlcnR5VmFsdWU6IG51bWJlcikge1xuICAgIHJldHVybiBkaXNwbGF5VmFsdWUgPT09IHByb3BlcnR5VmFsdWUgPyAncG8tY2FsZW5kYXItYm94LWZvcmVncm91bmQtc2VsZWN0ZWQnIDogJ3BvLWNhbGVuZGFyLWJveC1mb3JlZ3JvdW5kJztcbiAgfVxuXG4gIGlzVG9kYXlVbmF2YWlsYWJsZSgpIHtcbiAgICByZXR1cm4gdGhpcy5taW5EYXRlID4gdGhpcy50b2RheSB8fCB0aGlzLm1heERhdGUgPCB0aGlzLnRvZGF5O1xuICB9XG5cbiAgb25OZXh0TW9udGgoKSB7XG4gICAgdGhpcy5kaXNwbGF5TW9udGhOdW1iZXIgPCAxMVxuICAgICAgPyB0aGlzLnVwZGF0ZURpc3BsYXkodGhpcy5kaXNwbGF5WWVhciwgdGhpcy5kaXNwbGF5TW9udGhOdW1iZXIgKyAxKVxuICAgICAgOiB0aGlzLnVwZGF0ZURpc3BsYXkodGhpcy5kaXNwbGF5WWVhciArIDEsIDApO1xuXG4gICAgdGhpcy5oZWFkZXJDaGFuZ2UuZW1pdCh7IG1vbnRoOiB0aGlzLmRpc3BsYXlNb250aE51bWJlciwgeWVhcjogdGhpcy5kaXNwbGF5WWVhciB9KTtcbiAgfVxuXG4gIG9uUHJldmlvdXNNb250aCgpIHtcbiAgICBpZiAodGhpcy5kaXNwbGF5TW9udGhOdW1iZXIgPiAwKSB7XG4gICAgICB0aGlzLnVwZGF0ZURpc3BsYXkodGhpcy5kaXNwbGF5WWVhciwgdGhpcy5kaXNwbGF5TW9udGhOdW1iZXIgLSAxKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy51cGRhdGVEaXNwbGF5KHRoaXMuZGlzcGxheVllYXIgLSAxLCAxMSk7XG4gICAgfVxuXG4gICAgdGhpcy5oZWFkZXJDaGFuZ2UuZW1pdCh7IG1vbnRoOiB0aGlzLmRpc3BsYXlNb250aE51bWJlciwgeWVhcjogdGhpcy5kaXNwbGF5WWVhciB9KTtcbiAgfVxuXG4gIG9uTW91c2VFbnRlcihkYXkpIHtcbiAgICAoPFN1YmplY3Q8RGF0ZT4+dGhpcy5ob3ZlckRhdGUpLm5leHQoZGF5KTtcbiAgfVxuXG4gIG9uTW91c2VMZWF2ZSgpIHtcbiAgICAoPFN1YmplY3Q8RGF0ZT4+dGhpcy5ob3ZlckRhdGUpLm5leHQobnVsbCk7XG4gIH1cblxuICAvLyBBbyBzZWxlY2lvbmFyIHVtYSBkYXRhXG4gIG9uU2VsZWN0RGF0ZShkYXRlOiBEYXRlKSB7XG4gICAgdGhpcy5zZWxlY3REYXRlLmVtaXQoZGF0ZSk7XG4gIH1cblxuICAvLyBBbyBzZWxlY2lvbmFyIHVtIG3DqnNcbiAgb25TZWxlY3RNb250aCh5ZWFyOiBudW1iZXIsIG1vbnRoOiBudW1iZXIpIHtcbiAgICB0aGlzLnNlbGVjdERpc3BsYXlNb2RlKCdkYXknKTtcbiAgICB0aGlzLnVwZGF0ZURpc3BsYXkoeWVhciwgbW9udGgpO1xuXG4gICAgdGhpcy5oZWFkZXJDaGFuZ2UuZW1pdCh7IG1vbnRoLCB5ZWFyIH0pO1xuICB9XG5cbiAgLy8gQW8gc2VsZWNpb25hciB1bSBhbm9cbiAgb25TZWxlY3RZZWFyKHllYXI6IG51bWJlciwgbW9udGg6IG51bWJlcikge1xuICAgIC8vIFNlIHZlaW8gZGEgdGVsYSBkZSBzZWxlw6fDo28gZGUgbcOqc1xuICAgIHRoaXMuc2VsZWN0RGlzcGxheU1vZGUodGhpcy5sYXN0RGlzcGxheSA9PT0gJ21vbnRoJyA/ICdtb250aCcgOiAnZGF5Jyk7XG5cbiAgICB0aGlzLmN1cnJlbnRZZWFyID0geWVhcjtcbiAgICB0aGlzLnVwZGF0ZURpc3BsYXkoeWVhciwgbW9udGgpO1xuXG4gICAgdGhpcy5oZWFkZXJDaGFuZ2UuZW1pdCh7IG1vbnRoLCB5ZWFyIH0pO1xuICB9XG5cbiAgc2VsZWN0RGlzcGxheU1vZGUobW9kZTogJ21vbnRoJyB8ICdkYXknIHwgJ3llYXInKSB7XG4gICAgdGhpcy5sYXN0RGlzcGxheSA9IHRoaXMubW9kZTtcbiAgICB0aGlzLm1vZGUgPSBtb2RlO1xuICB9XG5cbiAgdXBkYXRlWWVhcih2YWx1ZTogbnVtYmVyKSB7XG4gICAgdGhpcy51cGRhdGVEaXNwbGF5KHRoaXMuZGlzcGxheVllYXIgKyB2YWx1ZSwgdGhpcy5kaXNwbGF5TW9udGhOdW1iZXIpO1xuICB9XG5cbiAgcHJpdmF0ZSBhZGRBbGxZZWFyc0luRGVjYWRlKHllYXI6IG51bWJlcikge1xuICAgIGxldCBpO1xuICAgIGZvciAoaSA9IHllYXI7IGkgPCB5ZWFyICsgMTA7IGkrKykge1xuICAgICAgdGhpcy5kaXNwbGF5RGVjYWRlLnB1c2goaSk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBlcXVhbHNEYXRlKGRhdGUxOiBEYXRlLCBkYXRlMjogRGF0ZSk6IGJvb2xlYW4ge1xuICAgIHRyeSB7XG4gICAgICByZXR1cm4gKFxuICAgICAgICBkYXRlMS5nZXRGdWxsWWVhcigpID09PSBkYXRlMi5nZXRGdWxsWWVhcigpICYmXG4gICAgICAgIGRhdGUxLmdldE1vbnRoKCkgPT09IGRhdGUyLmdldE1vbnRoKCkgJiZcbiAgICAgICAgZGF0ZTEuZ2V0RGF0ZSgpID09PSBkYXRlMi5nZXREYXRlKClcbiAgICAgICk7XG4gICAgfSBjYXRjaCAoZXJyb3IpIHtcbiAgICAgIHJldHVybiBmYWxzZTtcbiAgICB9XG4gIH1cblxuICAvLyBPYnTDqW0gdW0gYXJyYXkgZGUgdG9kb3Mgb3MgYW5vcyBkZXN0YSBkw6ljYWRhXG4gIHByaXZhdGUgZ2V0RGVjYWRlQXJyYXkoeWVhcikge1xuICAgIHRoaXMuZGlzcGxheURlY2FkZSA9IEFycmF5KCk7XG5cbiAgICBpZiAoeWVhciAlIDEwICE9PSAwKSB7XG4gICAgICB3aGlsZSAoeWVhciAlIDEwICE9PSAwKSB7XG4gICAgICAgIHllYXItLTtcbiAgICAgIH1cbiAgICB9XG4gICAgdGhpcy51cGRhdGVEZWNhZGUoeWVhcik7XG4gIH1cblxuICBwcml2YXRlIGdldENvbG9yRm9yRGF0ZShkYXRlOiBEYXRlLCBsb2NhbDogc3RyaW5nKSB7XG4gICAgcmV0dXJuIHRoaXMucG9EYXRlLnZhbGlkYXRlRGF0ZVJhbmdlKGRhdGUsIHRoaXMubWluRGF0ZSwgdGhpcy5tYXhEYXRlKVxuICAgICAgPyBgcG8tY2FsZW5kYXItYm94LSR7bG9jYWx9LXNlbGVjdGVkYFxuICAgICAgOiBgcG8tY2FsZW5kYXItYm94LSR7bG9jYWx9LXNlbGVjdGVkLWRpc2FibGVkYDtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0Q29sb3JGb3JEZWZhdWx0RGF0ZShkYXRlOiBEYXRlLCBsb2NhbDogc3RyaW5nKSB7XG4gICAgcmV0dXJuIHRoaXMucG9EYXRlLnZhbGlkYXRlRGF0ZVJhbmdlKGRhdGUsIHRoaXMubWluRGF0ZSwgdGhpcy5tYXhEYXRlKVxuICAgICAgPyBgcG8tY2FsZW5kYXItYm94LSR7bG9jYWx9YFxuICAgICAgOiBgcG8tY2FsZW5kYXItYm94LSR7bG9jYWx9LWRpc2FibGVkYDtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0Q29sb3JGb3JUb2RheShkYXRlOiBEYXRlLCBsb2NhbDogc3RyaW5nKSB7XG4gICAgcmV0dXJuIHRoaXMucG9EYXRlLnZhbGlkYXRlRGF0ZVJhbmdlKGRhdGUsIHRoaXMubWluRGF0ZSwgdGhpcy5tYXhEYXRlKVxuICAgICAgPyBgcG8tY2FsZW5kYXItYm94LSR7bG9jYWx9LXRvZGF5YFxuICAgICAgOiBgcG8tY2FsZW5kYXItYm94LSR7bG9jYWx9LXRvZGF5LWRpc2FibGVkYDtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0Q29sb3JGb3JEYXRlUmFuZ2UoZGF0ZTogRGF0ZSwgbG9jYWw6IHN0cmluZykge1xuICAgIHJldHVybiB0aGlzLnBvRGF0ZS52YWxpZGF0ZURhdGVSYW5nZShkYXRlLCB0aGlzLm1pbkRhdGUsIHRoaXMubWF4RGF0ZSlcbiAgICAgID8gYHBvLWNhbGVuZGFyLWJveC0ke2xvY2FsfS1pbi1yYW5nZWBcbiAgICAgIDogYHBvLWNhbGVuZGFyLWJveC0ke2xvY2FsfS1pbi1yYW5nZS1kaXNhYmxlZGA7XG4gIH1cblxuICBwcml2YXRlIGdldERheUNvbG9yKGRhdGU6IERhdGUsIGxvY2FsOiBzdHJpbmcpIHtcbiAgICBjb25zdCBzdGFydCA9IHRoaXMuc2VsZWN0ZWRWYWx1ZT8uc3RhcnQ7XG4gICAgY29uc3QgZW5kID0gdGhpcy5zZWxlY3RlZFZhbHVlPy5lbmQ7XG5cbiAgICBpZiAodGhpcy5yYW5nZSAmJiAodGhpcy5lcXVhbHNEYXRlKGRhdGUsIHN0YXJ0KSB8fCB0aGlzLmVxdWFsc0RhdGUoZGF0ZSwgZW5kKSkpIHtcbiAgICAgIHJldHVybiB0aGlzLmdldENvbG9yRm9yRGF0ZShkYXRlLCBsb2NhbCk7XG4gICAgfSBlbHNlIGlmICh0aGlzLnJhbmdlICYmIHN0YXJ0ICYmIGVuZCAmJiBkYXRlID4gc3RhcnQgJiYgZGF0ZSA8IGVuZCkge1xuICAgICAgcmV0dXJuIHRoaXMuZ2V0Q29sb3JGb3JEYXRlUmFuZ2UoZGF0ZSwgbG9jYWwpO1xuICAgIH0gZWxzZSBpZiAodGhpcy5yYW5nZSAmJiBzdGFydCAmJiAhZW5kICYmIGRhdGUgPiBzdGFydCAmJiBkYXRlIDwgdGhpcy5ob3ZlclZhbHVlKSB7XG4gICAgICByZXR1cm4gYHBvLWNhbGVuZGFyLWJveC0ke2xvY2FsfS1ob3ZlcmA7XG4gICAgfSBlbHNlIGlmICghdGhpcy5yYW5nZSAmJiB0aGlzLmVxdWFsc0RhdGUoZGF0ZSwgdGhpcy52YWx1ZSkpIHtcbiAgICAgIHJldHVybiB0aGlzLmdldENvbG9yRm9yRGF0ZShkYXRlLCBsb2NhbCk7XG4gICAgfSBlbHNlIGlmICh0aGlzLmVxdWFsc0RhdGUoZGF0ZSwgdGhpcy50b2RheSkpIHtcbiAgICAgIHJldHVybiB0aGlzLmdldENvbG9yRm9yVG9kYXkoZGF0ZSwgbG9jYWwpO1xuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4gdGhpcy5nZXRDb2xvckZvckRlZmF1bHREYXRlKGRhdGUsIGxvY2FsKTtcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGluaXQoKSB7XG4gICAgdGhpcy51cGRhdGVEYXRlKHRoaXMuYWN0aXZhdGVEYXRlKTtcbiAgICB0aGlzLmluaXRpYWxpemVMYW5ndWFnZSgpO1xuICAgIHRoaXMuc2VsZWN0RGlzcGxheU1vZGUoJ2RheScpO1xuICB9XG5cbiAgcHJpdmF0ZSBpbml0aWFsaXplTGFuZ3VhZ2UoKSB7XG4gICAgdGhpcy5wb0NhbGVuZGFyTGFuZ1NlcnZpY2Uuc2V0TGFuZ3VhZ2UodGhpcy5sb2NhbGUpO1xuICAgIHRoaXMuZGlzcGxheVdlZWtEYXlzID0gdGhpcy5wb0NhbGVuZGFyTGFuZ1NlcnZpY2UuZ2V0V2Vla0RheXNBcnJheSgpO1xuICAgIHRoaXMuZGlzcGxheU1vbnRocyA9IHRoaXMucG9DYWxlbmRhckxhbmdTZXJ2aWNlLmdldE1vbnRoc0FycmF5KCk7XG4gICAgdGhpcy5kaXNwbGF5TW9udGggPSB0aGlzLmRpc3BsYXlNb250aHNbdGhpcy5kaXNwbGF5TW9udGhOdW1iZXJdO1xuICAgIHRoaXMuZGlzcGxheVRvZGF5ID0gdGhpcy5wb0NhbGVuZGFyTGFuZ1NlcnZpY2UuZ2V0VG9kYXlMYWJlbCgpO1xuICB9XG5cbiAgcHJpdmF0ZSB1cGRhdGVEYXRlKHZhbHVlOiBEYXRlID0gbmV3IERhdGUoKSkge1xuICAgIGNvbnN0IGRhdGUgPSBuZXcgRGF0ZSh2YWx1ZSk7XG5cbiAgICB0aGlzLmN1cnJlbnRNb250aE51bWJlciA9IGRhdGUuZ2V0TW9udGgoKTtcbiAgICB0aGlzLmN1cnJlbnRZZWFyID0gZGF0ZS5nZXRGdWxsWWVhcigpO1xuICAgIHRoaXMudXBkYXRlRGlzcGxheSh0aGlzLmN1cnJlbnRZZWFyLCB0aGlzLmN1cnJlbnRNb250aE51bWJlcik7XG4gIH1cblxuICBwcml2YXRlIHVwZGF0ZURlY2FkZSh5ZWFyOiBudW1iZXIpIHtcbiAgICB0aGlzLmFkZEFsbFllYXJzSW5EZWNhZGUoeWVhcik7XG4gICAgdGhpcy5kaXNwbGF5U3RhcnREZWNhZGUgPSB5ZWFyO1xuICAgIHRoaXMuZGlzcGxheUZpbmFsRGVjYWRlID0geWVhciArIDk7XG4gIH1cblxuICBwcml2YXRlIHVwZGF0ZURpc3BsYXkoeWVhcjogbnVtYmVyLCBtb250aDogbnVtYmVyKSB7XG4gICAgY29uc3QgY2FsZW5kYXJBcnJheSA9IHRoaXMucG9DYWxlbmRhclNlcnZpY2UubW9udGhEYXlzKHllYXIsIG1vbnRoKTtcbiAgICB0aGlzLmRpc3BsYXlEYXlzID0gW10uY29uY2F0LmFwcGx5KFtdLCBjYWxlbmRhckFycmF5KTtcbiAgICB0aGlzLmRpc3BsYXlNb250aE51bWJlciA9IG1vbnRoO1xuICAgIHRoaXMuZGlzcGxheU1vbnRoID0gdGhpcy5kaXNwbGF5TW9udGhzW21vbnRoXTtcbiAgICB0aGlzLmRpc3BsYXlZZWFyID0geWVhcjtcbiAgICB0aGlzLmdldERlY2FkZUFycmF5KHllYXIpO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwicG8tY2FsZW5kYXItd3JhcHBlclwiPlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNEYXlWaXNpYmxlXCI+XG4gICAgPHBvLWNhbGVuZGFyLWhlYWRlclxuICAgICAgW3AtaGlkZS1wcmV2aW91c109XCJpc0VuZFBhcnRcIlxuICAgICAgW3AtaGlkZS1uZXh0XT1cImlzU3RhcnRQYXJ0ICYmICFyZXNwb25zaXZlXCJcbiAgICAgIChwLXByZXZpb3VzKT1cIm9uUHJldmlvdXNNb250aCgpXCJcbiAgICAgIChwLW5leHQpPVwib25OZXh0TW9udGgoKVwiXG4gICAgPlxuICAgICAgPHNwYW4gY2xhc3M9XCJwby1jbGlja2FibGUgcG8tbXItMVwiIChjbGljayk9XCJzZWxlY3REaXNwbGF5TW9kZSgnbW9udGgnKVwiPnt7IGRpc3BsYXlNb250aCB9fTwvc3Bhbj5cbiAgICAgIDxzcGFuIGNsYXNzPVwicG8tY2xpY2thYmxlXCIgKGNsaWNrKT1cInNlbGVjdERpc3BsYXlNb2RlKCd5ZWFyJylcIj57eyBkaXNwbGF5WWVhciB9fTwvc3Bhbj5cbiAgICA8L3BvLWNhbGVuZGFyLWhlYWRlcj5cblxuICAgIDxkaXYgY2xhc3M9XCJwby1jYWxlbmRhci1jb250ZW50XCI+XG4gICAgICA8ZGl2IGNsYXNzPVwicG8tY2FsZW5kYXItbGFiZWxzXCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJwby1jYWxlbmRhci1sYWJlbFwiICpuZ0Zvcj1cImxldCB3ZWVrRGF5IG9mIGRpc3BsYXlXZWVrRGF5c1wiPlxuICAgICAgICAgIHt7IHdlZWtEYXkgfX1cbiAgICAgICAgPC9kaXY+XG4gICAgICA8L2Rpdj5cblxuICAgICAgPGRpdiBjbGFzcz1cInBvLWNhbGVuZGFyLWNvbnRlbnQtbGlzdC1kYXlcIj5cbiAgICAgICAgPGRpdlxuICAgICAgICAgICpuZ0Zvcj1cImxldCBkYXkgb2YgZGlzcGxheURheXNcIlxuICAgICAgICAgIGNsYXNzPVwicG8tY2FsZW5kYXItZGF5XCJcbiAgICAgICAgICBbbmdDbGFzc109XCJnZXREYXlCYWNrZ3JvdW5kQ29sb3IoZGF5KVwiXG4gICAgICAgICAgKGNsaWNrKT1cIm9uU2VsZWN0RGF0ZShkYXkpXCJcbiAgICAgICAgICAobW91c2VlbnRlcik9XCJvbk1vdXNlRW50ZXIoZGF5KVwiXG4gICAgICAgICAgKG1vdXNlbGVhdmUpPVwib25Nb3VzZUxlYXZlKClcIlxuICAgICAgICAgIGF0dHItY2FsZW5kYXJcbiAgICAgICAgPlxuICAgICAgICAgIDxzcGFuICpuZ0lmPVwiZGF5ICE9PSAwXCIgW25nQ2xhc3NdPVwiZ2V0RGF5Rm9yZWdyb3VuZENvbG9yKGRheSlcIj5cbiAgICAgICAgICAgIHt7IGRheS5nZXREYXRlKCkgfX1cbiAgICAgICAgICA8L3NwYW4+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9kaXY+XG4gICAgPC9kaXY+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc01vbnRoVmlzaWJsZVwiPlxuICAgIDxwby1jYWxlbmRhci1oZWFkZXIgKHAtcHJldmlvdXMpPVwidXBkYXRlWWVhcigtMSlcIiAocC1uZXh0KT1cInVwZGF0ZVllYXIoMSlcIj5cbiAgICAgIDxzcGFuIGNsYXNzPVwicG8tY2xpY2thYmxlXCIgKGNsaWNrKT1cInNlbGVjdERpc3BsYXlNb2RlKCd5ZWFyJylcIj5cbiAgICAgICAge3sgZGlzcGxheVllYXIgfX1cbiAgICAgIDwvc3Bhbj5cbiAgICA8L3BvLWNhbGVuZGFyLWhlYWRlcj5cblxuICAgIDxkaXYgY2xhc3M9XCJwby1jYWxlbmRhci1jb250ZW50XCI+XG4gICAgICA8ZGl2IGNsYXNzPVwicG8tY2FsZW5kYXItbGFiZWxzXCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJwby1jYWxlbmRhci1sYWJlbFwiPlxuICAgICAgICAgIHt7IG1vbnRoTGFiZWwgfX1cbiAgICAgICAgPC9kaXY+XG4gICAgICA8L2Rpdj5cbiAgICAgIDxkaXYgY2xhc3M9XCJwby1jYWxlbmRhci1jb250ZW50LWxpc3QtbW9udGhcIj5cbiAgICAgICAgPGRpdlxuICAgICAgICAgICpuZ0Zvcj1cImxldCBtb250aCBvZiBkaXNwbGF5TW9udGhzOyBsZXQgaSA9IGluZGV4XCJcbiAgICAgICAgICBjbGFzcz1cInBvLWNhbGVuZGFyLW1vbnRoXCJcbiAgICAgICAgICBbbmdDbGFzc109XCJnZXRCYWNrZ3JvdW5kQ29sb3IoaSwgZGlzcGxheU1vbnRoTnVtYmVyKVwiXG4gICAgICAgICAgKGNsaWNrKT1cIm9uU2VsZWN0TW9udGgoZGlzcGxheVllYXIsIGkpXCJcbiAgICAgICAgICBhdHRyLWNhbGVuZGFyXG4gICAgICAgID5cbiAgICAgICAgICA8c3BhbiBbbmdDbGFzc109XCJnZXRGb3JlZ3JvdW5kQ29sb3IoaSwgZGlzcGxheU1vbnRoTnVtYmVyKVwiPlxuICAgICAgICAgICAge3sgbW9udGggfX1cbiAgICAgICAgICA8L3NwYW4+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9kaXY+XG4gICAgPC9kaXY+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc1llYXJWaXNpYmxlXCI+XG4gICAgPHBvLWNhbGVuZGFyLWhlYWRlciAocC1wcmV2aW91cyk9XCJ1cGRhdGVZZWFyKC0xMClcIiAocC1uZXh0KT1cInVwZGF0ZVllYXIoMTApXCI+XG4gICAgICB7eyBkaXNwbGF5U3RhcnREZWNhZGUgfX0gLSB7eyBkaXNwbGF5RmluYWxEZWNhZGUgfX1cbiAgICA8L3BvLWNhbGVuZGFyLWhlYWRlcj5cblxuICAgIDxkaXYgY2xhc3M9XCJwby1jYWxlbmRhci1jb250ZW50XCI+XG4gICAgICA8ZGl2IGNsYXNzPVwicG8tY2FsZW5kYXItbGFiZWxzXCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJwby1jYWxlbmRhci1sYWJlbFwiPlxuICAgICAgICAgIHt7IHllYXJMYWJlbCB9fVxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvZGl2PlxuXG4gICAgICA8ZGl2IGNsYXNzPVwicG8tY2FsZW5kYXItY29udGVudC1saXN0LXllYXJcIj5cbiAgICAgICAgPGRpdlxuICAgICAgICAgICpuZ0Zvcj1cImxldCB5ZWFyIG9mIGRpc3BsYXlEZWNhZGU7IGxldCBpID0gaW5kZXhcIlxuICAgICAgICAgIGNsYXNzPVwicG8tY2FsZW5kYXIteWVhclwiXG4gICAgICAgICAgW25nQ2xhc3NdPVwiZ2V0QmFja2dyb3VuZENvbG9yKHllYXIsIGN1cnJlbnRZZWFyKVwiXG4gICAgICAgICAgKGNsaWNrKT1cIm9uU2VsZWN0WWVhcih5ZWFyLCBkaXNwbGF5TW9udGhOdW1iZXIpXCJcbiAgICAgICAgICBhdHRyLWNhbGVuZGFyXG4gICAgICAgID5cbiAgICAgICAgICA8c3BhbiBbbmdDbGFzc109XCJnZXRGb3JlZ3JvdW5kQ29sb3IoeWVhciwgY3VycmVudFllYXIpXCI+XG4gICAgICAgICAgICB7eyB5ZWFyIH19XG4gICAgICAgICAgPC9zcGFuPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiIXJhbmdlXCI+XG4gICAgPGRpdiBjbGFzcz1cInBvLWNhbGVuZGFyLWZvb3RlclwiPlxuICAgICAgPGRpdiBjbGFzcz1cInBvLWNhbGVuZGFyLWZvb3Rlci10b2RheVwiPlxuICAgICAgICA8YnV0dG9uIGNsYXNzPVwicG8tY2FsZW5kYXItZm9vdGVyLXRvZGF5LWJ1dHRvblwiIChjbGljayk9XCJvblNlbGVjdERhdGUodG9kYXkpXCIgW2Rpc2FibGVkXT1cImlzVG9kYXlVbmF2YWlsYWJsZSgpXCI+XG4gICAgICAgICAge3sgZGlzcGxheVRvZGF5IH19XG4gICAgICAgIDwvYnV0dG9uPlxuICAgICAgPC9kaXY+XG4gICAgPC9kaXY+XG4gIDwvbmctY29udGFpbmVyPlxuPC9kaXY+XG4iXX0=
|