@po-ui/ng-components 21.11.0 → 21.12.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/fesm2022/po-ui-ng-components.mjs +282 -13
- package/fesm2022/po-ui-ng-components.mjs.map +1 -1
- package/lib/components/po-chart/interfaces/po-chart-options.interface.d.ts +15 -0
- package/lib/components/po-chart/po-chart-base.component.d.ts +2 -0
- package/lib/components/po-progress/enums/po-progress-shape.enum.d.ts +13 -0
- package/lib/components/po-progress/enums/po-progress-status.enum.d.ts +1 -1
- package/lib/components/po-progress/index.d.ts +1 -0
- package/lib/components/po-progress/po-progress-bar/po-progress-bar.component.d.ts +1 -0
- package/lib/components/po-progress/po-progress-base.component.d.ts +70 -0
- package/lib/components/po-progress/po-progress-circle/po-progress-circle.component.d.ts +31 -0
- package/lib/components/po-progress/po-progress.component.d.ts +19 -2
- package/package.json +4 -4
- package/po-ui-ng-components-21.12.0.tgz +0 -0
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-update/v14/index.js +1 -1
- package/schematics/ng-update/v15/index.js +1 -1
- package/schematics/ng-update/v16/index.js +1 -1
- package/schematics/ng-update/v17/index.js +1 -1
- package/schematics/ng-update/v18/index.js +2 -2
- package/schematics/ng-update/v19/index.js +2 -2
- package/schematics/ng-update/v2/index.js +1 -1
- package/schematics/ng-update/v20/index.js +2 -2
- package/schematics/ng-update/v21/index.js +1 -1
- package/schematics/ng-update/v3/index.js +1 -1
- package/schematics/ng-update/v4/index.js +1 -1
- package/schematics/ng-update/v5/index.js +1 -1
- package/schematics/ng-update/v6/index.js +1 -1
- package/types/po-ui-ng-components.d.ts +159 -6
- package/po-ui-ng-components-21.11.0.tgz +0 -0
|
@@ -15035,6 +15035,8 @@ const poChartDefaultHeight = 400;
|
|
|
15035
15035
|
* | `--font-size-grid` | Tamanho da fonte usada nos valores dos eixos | `var(--font-size-xs)` |
|
|
15036
15036
|
* | `--font-weight-grid` | Peso da fonte usada nos valores dos eixos | `var(--font-weight-normal)` |
|
|
15037
15037
|
* | `--color-legend` | Cor da fonte da legenda | `var(--color-neutral-dark-70)` |
|
|
15038
|
+
* | `--color-legend-scroll-icon-active` | Cor do ícone de scroll da legenda no estado ativo, pro tipo `scroll` | `var(--color-action-default)` |
|
|
15039
|
+
* | `--color-legend-scroll-icon-inactive` | Cor do ícone de scroll da legenda no estado inativo, pro tipo `scroll` | `var(--color-action-disabled)` |
|
|
15038
15040
|
* | `--border-radius-bar` | Tamanho da borda nos graficos `Bar` e `Column` | `var(--border-radius-none)` |
|
|
15039
15041
|
* | `--border-color` | Cor da borda do gráfico nos Gráficos `Donut` e `Pie` | `var(--color-neutral-light-00)` |
|
|
15040
15042
|
* | `--color-hightlight-value` | Cor do valor de destaque nos Gráficos `Donut` e `Gauge` | `var(--color-neutral-dark-70)` |
|
|
@@ -16460,10 +16462,17 @@ class PoChartComponent extends PoChartBaseComponent {
|
|
|
16460
16462
|
}
|
|
16461
16463
|
setOptionLegend(options) {
|
|
16462
16464
|
options.legend = {
|
|
16465
|
+
type: this.options?.legendType || 'plain',
|
|
16466
|
+
pageIconColor: this.options?.legendType === 'scroll'
|
|
16467
|
+
? this.getCSSVariable('--color-legend-scroll-icon-active', '.po-chart')
|
|
16468
|
+
: '',
|
|
16469
|
+
pageIconInactiveColor: this.options?.legendType === 'scroll'
|
|
16470
|
+
? this.getCSSVariable('--color-legend-scroll-icon-inactive', '.po-chart')
|
|
16471
|
+
: '',
|
|
16463
16472
|
show: true,
|
|
16464
16473
|
selectedMode: !this.isTypeGauge,
|
|
16465
16474
|
orient: 'horizontal',
|
|
16466
|
-
left: this.options?.legendPosition || 'center',
|
|
16475
|
+
left: this.options?.legendType === 'scroll' ? 32 : this.options?.legendPosition || 'center',
|
|
16467
16476
|
top: this.options?.legendVerticalPosition || 'bottom',
|
|
16468
16477
|
bottom: 0,
|
|
16469
16478
|
padding: [0, 16, 0, 16],
|
|
@@ -25956,18 +25965,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
|
|
|
25956
25965
|
}] });
|
|
25957
25966
|
|
|
25958
25967
|
class PoProgressBarComponent {
|
|
25968
|
+
ariaLabel;
|
|
25959
25969
|
indeterminate;
|
|
25960
25970
|
value;
|
|
25961
25971
|
get valueScale() {
|
|
25962
25972
|
return `${this.value / 100}`;
|
|
25963
25973
|
}
|
|
25964
25974
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: PoProgressBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
25965
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.10", type: PoProgressBarComponent, isStandalone: false, selector: "po-progress-bar", inputs: { indeterminate: ["p-indeterminate", "indeterminate"], value: ["p-value", "value"] }, ngImport: i0, template: "@if (!indeterminate) {\n <div\n role=\"progressbar\"\n [attr.aria-valuenow]=\"value\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n aria-live=\"polite\"\n class=\"po-progress-bar-default\"\n >\n <div class=\"po-progress-bar-element po-progress-bar-primary\"></div>\n <div class=\"po-progress-bar-element po-progress-bar-secondary\" [style.left]=\"'-' + (100 - value) + '%'\"></div>\n </div>\n}\n\n@if (indeterminate) {\n <div
|
|
25975
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.10", type: PoProgressBarComponent, isStandalone: false, selector: "po-progress-bar", inputs: { ariaLabel: ["p-aria-label", "ariaLabel"], indeterminate: ["p-indeterminate", "indeterminate"], value: ["p-value", "value"] }, ngImport: i0, template: "@if (!indeterminate) {\n <div\n role=\"progressbar\"\n [attr.aria-label]=\"ariaLabel\"\n [attr.aria-valuenow]=\"value\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n aria-live=\"polite\"\n class=\"po-progress-bar-default\"\n >\n <div class=\"po-progress-bar-element po-progress-bar-primary\"></div>\n <div class=\"po-progress-bar-element po-progress-bar-secondary\" [style.left]=\"'-' + (100 - value) + '%'\"></div>\n </div>\n}\n\n@if (indeterminate) {\n <div\n class=\"po-progress-bar-indeterminate-track\"\n role=\"progressbar\"\n [attr.aria-label]=\"ariaLabel\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n aria-live=\"polite\"\n >\n <div class=\"po-progress-bar-indeterminate-track-bar\"></div>\n </div>\n}\n", changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
25966
25976
|
}
|
|
25967
25977
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: PoProgressBarComponent, decorators: [{
|
|
25968
25978
|
type: Component,
|
|
25969
|
-
args: [{ selector: 'po-progress-bar', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "@if (!indeterminate) {\n <div\n role=\"progressbar\"\n [attr.aria-valuenow]=\"value\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n aria-live=\"polite\"\n class=\"po-progress-bar-default\"\n >\n <div class=\"po-progress-bar-element po-progress-bar-primary\"></div>\n <div class=\"po-progress-bar-element po-progress-bar-secondary\" [style.left]=\"'-' + (100 - value) + '%'\"></div>\n </div>\n}\n\n@if (indeterminate) {\n <div
|
|
25970
|
-
}], propDecorators: {
|
|
25979
|
+
args: [{ selector: 'po-progress-bar', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "@if (!indeterminate) {\n <div\n role=\"progressbar\"\n [attr.aria-label]=\"ariaLabel\"\n [attr.aria-valuenow]=\"value\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n aria-live=\"polite\"\n class=\"po-progress-bar-default\"\n >\n <div class=\"po-progress-bar-element po-progress-bar-primary\"></div>\n <div class=\"po-progress-bar-element po-progress-bar-secondary\" [style.left]=\"'-' + (100 - value) + '%'\"></div>\n </div>\n}\n\n@if (indeterminate) {\n <div\n class=\"po-progress-bar-indeterminate-track\"\n role=\"progressbar\"\n [attr.aria-label]=\"ariaLabel\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n aria-live=\"polite\"\n >\n <div class=\"po-progress-bar-indeterminate-track-bar\"></div>\n </div>\n}\n" }]
|
|
25980
|
+
}], propDecorators: { ariaLabel: [{
|
|
25981
|
+
type: Input,
|
|
25982
|
+
args: ['p-aria-label']
|
|
25983
|
+
}], indeterminate: [{
|
|
25971
25984
|
type: Input,
|
|
25972
25985
|
args: ['p-indeterminate']
|
|
25973
25986
|
}], value: [{
|
|
@@ -25975,12 +25988,86 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
|
|
|
25975
25988
|
args: ['p-value']
|
|
25976
25989
|
}] } });
|
|
25977
25990
|
|
|
25991
|
+
const CIRCLE_STROKE_MEDIUM = 4;
|
|
25992
|
+
const CIRCLE_STROKE_LARGE = 8;
|
|
25993
|
+
const CIRCLE_MIN_RADIUS_WITH_CENTER_CONTENT = 24;
|
|
25994
|
+
const CIRCLE_DEFAULT_RADIUS$1 = 45;
|
|
25995
|
+
class PoProgressCircleComponent {
|
|
25996
|
+
indeterminate = input(false, { ...(ngDevMode ? { debugName: "indeterminate" } : /* istanbul ignore next */ {}), alias: 'p-indeterminate', transform: convertToBoolean });
|
|
25997
|
+
showPercentage = input(false, { ...(ngDevMode ? { debugName: "showPercentage" } : /* istanbul ignore next */ {}), alias: 'p-show-percentage', transform: convertToBoolean });
|
|
25998
|
+
size = input('large', { ...(ngDevMode ? { debugName: "size" } : /* istanbul ignore next */ {}), alias: 'p-size',
|
|
25999
|
+
transform: (value) => (value === 'medium' ? 'medium' : 'large') });
|
|
26000
|
+
status = input('default', { ...(ngDevMode ? { debugName: "status" } : /* istanbul ignore next */ {}), alias: 'p-status',
|
|
26001
|
+
transform: (value) => (['default', 'success', 'error'].includes(value) ? value : 'default') });
|
|
26002
|
+
ariaLabelInput = input('', { ...(ngDevMode ? { debugName: "ariaLabelInput" } : /* istanbul ignore next */ {}), alias: 'p-aria-label' });
|
|
26003
|
+
ariaLabel = computed(() => {
|
|
26004
|
+
const status = this.status() !== 'default' ? this.status() : '';
|
|
26005
|
+
const custom = this.ariaLabelInput();
|
|
26006
|
+
if (custom) {
|
|
26007
|
+
return `${status} ${custom}`;
|
|
26008
|
+
}
|
|
26009
|
+
return status;
|
|
26010
|
+
}, ...(ngDevMode ? [{ debugName: "ariaLabel" }] : /* istanbul ignore next */ []));
|
|
26011
|
+
value = input(0, { ...(ngDevMode ? { debugName: "value" } : /* istanbul ignore next */ {}), alias: 'p-value' });
|
|
26012
|
+
// 0 = não informado pelo usuário (usa lógica automática)
|
|
26013
|
+
radius = input(0, { ...(ngDevMode ? { debugName: "radius" } : /* istanbul ignore next */ {}), alias: 'p-radius' });
|
|
26014
|
+
// Dimensão do container pai (fornecida pelo ResizeObserver do po-progress.component)
|
|
26015
|
+
parentSize = input(0, { ...(ngDevMode ? { debugName: "parentSize" } : /* istanbul ignore next */ {}), alias: 'p-parent-size' });
|
|
26016
|
+
strokeWidth = computed(() => (this.size() === 'medium' ? CIRCLE_STROKE_MEDIUM : CIRCLE_STROKE_LARGE), ...(ngDevMode ? [{ debugName: "strokeWidth" }] : /* istanbul ignore next */ []));
|
|
26017
|
+
/**
|
|
26018
|
+
* Raio base calculado de acordo com as regras de prioridade:
|
|
26019
|
+
*
|
|
26020
|
+
* 1. Se `radius > 0` (usuário informou radius explicitamente):
|
|
26021
|
+
* - Se o pai tem dimensão: limita ao máximo que cabe no pai (evita estouro)
|
|
26022
|
+
* - Se o pai não tem dimensão: usa o radius informado diretamente
|
|
26023
|
+
*
|
|
26024
|
+
* 2. Se `radius === 0` (usuário NÃO informou radius):
|
|
26025
|
+
* - Se o pai tem dimensão: ocupa o máximo disponível no pai
|
|
26026
|
+
* - Se o pai não tem dimensão: usa o default de 45
|
|
26027
|
+
*/
|
|
26028
|
+
baseRadius = computed(() => {
|
|
26029
|
+
const parentDimension = this.parentSize();
|
|
26030
|
+
const userRadius = this.radius();
|
|
26031
|
+
if (userRadius > 0) {
|
|
26032
|
+
if (parentDimension > 0) {
|
|
26033
|
+
const maxFitRadius = parentDimension / 2 - this.strokeWidth();
|
|
26034
|
+
return Math.min(userRadius, Math.max(maxFitRadius, 0));
|
|
26035
|
+
}
|
|
26036
|
+
return userRadius;
|
|
26037
|
+
}
|
|
26038
|
+
if (parentDimension > 0) {
|
|
26039
|
+
return parentDimension / 2 - this.strokeWidth();
|
|
26040
|
+
}
|
|
26041
|
+
return CIRCLE_DEFAULT_RADIUS$1;
|
|
26042
|
+
}, ...(ngDevMode ? [{ debugName: "baseRadius" }] : /* istanbul ignore next */ []));
|
|
26043
|
+
hasCenterContent = computed(() => !this.indeterminate() && (this.showPercentage() || this.status() === 'error'), ...(ngDevMode ? [{ debugName: "hasCenterContent" }] : /* istanbul ignore next */ []));
|
|
26044
|
+
effectiveRadius = computed(() => this.hasCenterContent() ? Math.max(this.baseRadius(), CIRCLE_MIN_RADIUS_WITH_CENTER_CONTENT) : this.baseRadius(), ...(ngDevMode ? [{ debugName: "effectiveRadius" }] : /* istanbul ignore next */ []));
|
|
26045
|
+
viewBoxSize = computed(() => (this.effectiveRadius() + this.strokeWidth()) * 2, ...(ngDevMode ? [{ debugName: "viewBoxSize" }] : /* istanbul ignore next */ []));
|
|
26046
|
+
center = computed(() => this.effectiveRadius() + this.strokeWidth(), ...(ngDevMode ? [{ debugName: "center" }] : /* istanbul ignore next */ []));
|
|
26047
|
+
circumference = computed(() => 2 * Math.PI * this.effectiveRadius(), ...(ngDevMode ? [{ debugName: "circumference" }] : /* istanbul ignore next */ []));
|
|
26048
|
+
dashOffset = computed(() => {
|
|
26049
|
+
const clampedValue = Math.max(0, Math.min(100, this.value() || 0));
|
|
26050
|
+
return this.circumference() - (clampedValue / 100) * this.circumference();
|
|
26051
|
+
}, ...(ngDevMode ? [{ debugName: "dashOffset" }] : /* istanbul ignore next */ []));
|
|
26052
|
+
naturalSize = computed(() => {
|
|
26053
|
+
const vb = this.viewBoxSize();
|
|
26054
|
+
const ps = this.parentSize();
|
|
26055
|
+
return ps > 0 && vb > ps ? `${ps}px` : `${vb}px`;
|
|
26056
|
+
}, ...(ngDevMode ? [{ debugName: "naturalSize" }] : /* istanbul ignore next */ []));
|
|
26057
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: PoProgressCircleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
26058
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.10", type: PoProgressCircleComponent, isStandalone: true, selector: "po-progress-circle", inputs: { indeterminate: { classPropertyName: "indeterminate", publicName: "p-indeterminate", isSignal: true, isRequired: false, transformFunction: null }, showPercentage: { classPropertyName: "showPercentage", publicName: "p-show-percentage", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "p-size", isSignal: true, isRequired: false, transformFunction: null }, status: { classPropertyName: "status", publicName: "p-status", isSignal: true, isRequired: false, transformFunction: null }, ariaLabelInput: { classPropertyName: "ariaLabelInput", publicName: "p-aria-label", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "p-value", isSignal: true, isRequired: false, transformFunction: null }, radius: { classPropertyName: "radius", publicName: "p-radius", isSignal: true, isRequired: false, transformFunction: null }, parentSize: { classPropertyName: "parentSize", publicName: "p-parent-size", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "@if (!indeterminate()) {\n <div\n class=\"po-progress-circle-svg-wrapper\"\n role=\"progressbar\"\n [attr.aria-valuenow]=\"value()\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n aria-live=\"polite\"\n [attr.aria-label]=\"ariaLabel()\"\n [style.max-height]=\"naturalSize()\"\n [style.max-width]=\"naturalSize()\"\n >\n <svg\n class=\"po-progress-circle-svg\"\n [attr.viewBox]=\"'0 0 ' + viewBoxSize() + ' ' + viewBoxSize()\"\n [attr.width]=\"viewBoxSize()\"\n [attr.height]=\"viewBoxSize()\"\n >\n <circle\n class=\"po-progress-circle-tray\"\n [attr.cx]=\"center()\"\n [attr.cy]=\"center()\"\n [attr.r]=\"effectiveRadius()\"\n fill=\"none\"\n />\n\n <circle\n class=\"po-progress-circle-indicator\"\n [attr.cx]=\"center()\"\n [attr.cy]=\"center()\"\n [attr.r]=\"effectiveRadius()\"\n fill=\"none\"\n [attr.stroke-dasharray]=\"circumference()\"\n [attr.stroke-dashoffset]=\"dashOffset()\"\n />\n </svg>\n\n @if (showPercentage() && status() !== 'error') {\n <span class=\"po-progress-circle-info po-progress-circle-info-percentage\">{{ value() }}%</span>\n }\n\n @if (status() === 'error') {\n <span class=\"po-progress-circle-info po-progress-circle-info-error po-progress-circle-info-error-{{ size() }}\">\n <span class=\"an an-warning-circle\"></span>\n </span>\n }\n </div>\n}\n\n@if (indeterminate()) {\n <div\n class=\"po-progress-circle-indeterminate\"\n role=\"progressbar\"\n [attr.aria-label]=\"ariaLabel()\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n aria-live=\"polite\"\n >\n <div class=\"po-progress-circle-svg-wrapper\" [style.max-width]=\"naturalSize()\" [style.max-height]=\"naturalSize()\">\n <svg\n class=\"po-progress-circle-svg\"\n [attr.viewBox]=\"'0 0 ' + viewBoxSize() + ' ' + viewBoxSize()\"\n [attr.width]=\"viewBoxSize()\"\n [attr.height]=\"viewBoxSize()\"\n >\n <circle\n class=\"po-progress-circle-tray\"\n [attr.cx]=\"center()\"\n [attr.cy]=\"center()\"\n [attr.r]=\"effectiveRadius()\"\n fill=\"none\"\n />\n\n <circle\n class=\"po-progress-circle-indicator\"\n [attr.cx]=\"center()\"\n [attr.cy]=\"center()\"\n [attr.r]=\"effectiveRadius()\"\n [attr.pathLength]=\"100\"\n fill=\"none\"\n />\n </svg>\n </div>\n </div>\n}\n", changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
26059
|
+
}
|
|
26060
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: PoProgressCircleComponent, decorators: [{
|
|
26061
|
+
type: Component,
|
|
26062
|
+
args: [{ selector: 'po-progress-circle', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, template: "@if (!indeterminate()) {\n <div\n class=\"po-progress-circle-svg-wrapper\"\n role=\"progressbar\"\n [attr.aria-valuenow]=\"value()\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n aria-live=\"polite\"\n [attr.aria-label]=\"ariaLabel()\"\n [style.max-height]=\"naturalSize()\"\n [style.max-width]=\"naturalSize()\"\n >\n <svg\n class=\"po-progress-circle-svg\"\n [attr.viewBox]=\"'0 0 ' + viewBoxSize() + ' ' + viewBoxSize()\"\n [attr.width]=\"viewBoxSize()\"\n [attr.height]=\"viewBoxSize()\"\n >\n <circle\n class=\"po-progress-circle-tray\"\n [attr.cx]=\"center()\"\n [attr.cy]=\"center()\"\n [attr.r]=\"effectiveRadius()\"\n fill=\"none\"\n />\n\n <circle\n class=\"po-progress-circle-indicator\"\n [attr.cx]=\"center()\"\n [attr.cy]=\"center()\"\n [attr.r]=\"effectiveRadius()\"\n fill=\"none\"\n [attr.stroke-dasharray]=\"circumference()\"\n [attr.stroke-dashoffset]=\"dashOffset()\"\n />\n </svg>\n\n @if (showPercentage() && status() !== 'error') {\n <span class=\"po-progress-circle-info po-progress-circle-info-percentage\">{{ value() }}%</span>\n }\n\n @if (status() === 'error') {\n <span class=\"po-progress-circle-info po-progress-circle-info-error po-progress-circle-info-error-{{ size() }}\">\n <span class=\"an an-warning-circle\"></span>\n </span>\n }\n </div>\n}\n\n@if (indeterminate()) {\n <div\n class=\"po-progress-circle-indeterminate\"\n role=\"progressbar\"\n [attr.aria-label]=\"ariaLabel()\"\n aria-valuemin=\"0\"\n aria-valuemax=\"100\"\n aria-live=\"polite\"\n >\n <div class=\"po-progress-circle-svg-wrapper\" [style.max-width]=\"naturalSize()\" [style.max-height]=\"naturalSize()\">\n <svg\n class=\"po-progress-circle-svg\"\n [attr.viewBox]=\"'0 0 ' + viewBoxSize() + ' ' + viewBoxSize()\"\n [attr.width]=\"viewBoxSize()\"\n [attr.height]=\"viewBoxSize()\"\n >\n <circle\n class=\"po-progress-circle-tray\"\n [attr.cx]=\"center()\"\n [attr.cy]=\"center()\"\n [attr.r]=\"effectiveRadius()\"\n fill=\"none\"\n />\n\n <circle\n class=\"po-progress-circle-indicator\"\n [attr.cx]=\"center()\"\n [attr.cy]=\"center()\"\n [attr.r]=\"effectiveRadius()\"\n [attr.pathLength]=\"100\"\n fill=\"none\"\n />\n </svg>\n </div>\n </div>\n}\n" }]
|
|
26063
|
+
}], propDecorators: { indeterminate: [{ type: i0.Input, args: [{ isSignal: true, alias: "p-indeterminate", required: false }] }], showPercentage: [{ type: i0.Input, args: [{ isSignal: true, alias: "p-show-percentage", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "p-size", required: false }] }], status: [{ type: i0.Input, args: [{ isSignal: true, alias: "p-status", required: false }] }], ariaLabelInput: [{ type: i0.Input, args: [{ isSignal: true, alias: "p-aria-label", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "p-value", required: false }] }], radius: [{ type: i0.Input, args: [{ isSignal: true, alias: "p-radius", required: false }] }], parentSize: [{ type: i0.Input, args: [{ isSignal: true, alias: "p-parent-size", required: false }] }] } });
|
|
26064
|
+
|
|
25978
26065
|
/**
|
|
25979
26066
|
* @usedBy PoProgressComponent
|
|
25980
26067
|
*
|
|
25981
26068
|
* @description
|
|
25982
26069
|
*
|
|
25983
|
-
*
|
|
26070
|
+
* Enum `PoProgressStatus` para os status de barra de progresso.
|
|
25984
26071
|
*/
|
|
25985
26072
|
var PoProgressStatus;
|
|
25986
26073
|
(function (PoProgressStatus) {
|
|
@@ -26011,6 +26098,21 @@ const poProgressLiterals = {
|
|
|
26011
26098
|
}
|
|
26012
26099
|
};
|
|
26013
26100
|
|
|
26101
|
+
/**
|
|
26102
|
+
* @usedBy PoProgressComponent
|
|
26103
|
+
*
|
|
26104
|
+
* @description
|
|
26105
|
+
*
|
|
26106
|
+
* Enum `PoProgressShape` para definir o formato visual do componente de progresso.
|
|
26107
|
+
*/
|
|
26108
|
+
var PoProgressShape;
|
|
26109
|
+
(function (PoProgressShape) {
|
|
26110
|
+
/** Formato barra de progresso (padrão). */
|
|
26111
|
+
PoProgressShape["bar"] = "bar";
|
|
26112
|
+
/** Formato circular de progresso. */
|
|
26113
|
+
PoProgressShape["circle"] = "circle";
|
|
26114
|
+
})(PoProgressShape || (PoProgressShape = {}));
|
|
26115
|
+
|
|
26014
26116
|
/**
|
|
26015
26117
|
* @usedBy PoProgressComponent
|
|
26016
26118
|
*
|
|
@@ -26028,6 +26130,8 @@ var PoProgressSize;
|
|
|
26028
26130
|
|
|
26029
26131
|
const poProgressMaxValue = 100;
|
|
26030
26132
|
const poProgressMinValue = 0;
|
|
26133
|
+
const CIRCLE_DEFAULT_RADIUS = 0;
|
|
26134
|
+
const CIRCLE_MIN_RADIUS = 24;
|
|
26031
26135
|
/**
|
|
26032
26136
|
* @description
|
|
26033
26137
|
*
|
|
@@ -26052,9 +26156,22 @@ const poProgressMinValue = 0;
|
|
|
26052
26156
|
* | **po-progress-bar** | | |
|
|
26053
26157
|
* | `--background-color-tray` | Cor do background | `var(--color-brand-01-lightest)` |
|
|
26054
26158
|
* | `--background-color-indicator` | Cor do background do indicador | `var(--color-action-default)` |
|
|
26159
|
+
* | **po-progress-circle** | | |
|
|
26160
|
+
* | `--background-color-tray` | Cor do background | `var(--color-brand-01-lightest)` |
|
|
26161
|
+
* | `--background-color-indicator` | Cor do background do indicador | `var(--color-action-default)` |
|
|
26055
26162
|
*
|
|
26056
26163
|
*/
|
|
26057
26164
|
class PoProgressBaseComponent {
|
|
26165
|
+
/**
|
|
26166
|
+
* @optional
|
|
26167
|
+
*
|
|
26168
|
+
* @description
|
|
26169
|
+
*
|
|
26170
|
+
* Define um nome acessível para o elemento com `role="progressbar"`.
|
|
26171
|
+
*
|
|
26172
|
+
* Quando não informado, o componente utiliza o valor de `p-text` como alternativa, se disponível.
|
|
26173
|
+
*/
|
|
26174
|
+
ariaLabel;
|
|
26058
26175
|
/**
|
|
26059
26176
|
* @optional
|
|
26060
26177
|
*
|
|
@@ -26065,6 +26182,8 @@ class PoProgressBaseComponent {
|
|
|
26065
26182
|
* > Se nenhuma função for passada para o evento `(p-cancel)` ou a barra de progresso estiver com o status `PoProgressStatus.Success`,
|
|
26066
26183
|
* o ícone de cancelamento não será exibido.
|
|
26067
26184
|
*
|
|
26185
|
+
* > Não compatível com `p-shape="circle"`.
|
|
26186
|
+
*
|
|
26068
26187
|
* @default `false`
|
|
26069
26188
|
*/
|
|
26070
26189
|
disabledCancel = false;
|
|
@@ -26074,6 +26193,8 @@ class PoProgressBaseComponent {
|
|
|
26074
26193
|
* @description
|
|
26075
26194
|
*
|
|
26076
26195
|
* Informação adicional que aparecerá abaixo da barra de progresso ao lado direito.
|
|
26196
|
+
*
|
|
26197
|
+
* > Não compatível com `p-shape="circle"`.
|
|
26077
26198
|
*/
|
|
26078
26199
|
info;
|
|
26079
26200
|
/**
|
|
@@ -26084,6 +26205,8 @@ class PoProgressBaseComponent {
|
|
|
26084
26205
|
* Ícone que aparecerá ao lado do texto da propriedade `p-info`.
|
|
26085
26206
|
*
|
|
26086
26207
|
* Exemplo: `an an-check`.
|
|
26208
|
+
*
|
|
26209
|
+
* > Não compatível com `p-shape="circle"`.
|
|
26087
26210
|
*/
|
|
26088
26211
|
infoIcon;
|
|
26089
26212
|
/**
|
|
@@ -26103,6 +26226,8 @@ class PoProgressBaseComponent {
|
|
|
26103
26226
|
* @description
|
|
26104
26227
|
*
|
|
26105
26228
|
* Texto principal que aparecerá abaixo da barra de progresso no lado esquerdo.
|
|
26229
|
+
*
|
|
26230
|
+
* > Não compatível com `p-shape="circle"`.
|
|
26106
26231
|
*/
|
|
26107
26232
|
text;
|
|
26108
26233
|
/**
|
|
@@ -26119,6 +26244,8 @@ class PoProgressBaseComponent {
|
|
|
26119
26244
|
* - **`disabled`**: Indica se o botão deve estar desabilitado (opcional).
|
|
26120
26245
|
* - **`visible`**: Determina se o botão será exibido. Pode ser um valor booleano ou uma função que retorna um booleano (opcional).
|
|
26121
26246
|
*
|
|
26247
|
+
* > Não compatível com `p-shape="circle"`.
|
|
26248
|
+
*
|
|
26122
26249
|
* @example
|
|
26123
26250
|
* **Exemplo de uso:**
|
|
26124
26251
|
* ```html
|
|
@@ -26155,6 +26282,8 @@ class PoProgressBaseComponent {
|
|
|
26155
26282
|
* Evento emitido quando o botão definido em `p-custom-action` é clicado. Este evento retorna informações
|
|
26156
26283
|
* relacionadas à barra de progresso ou ao arquivo/processo associado, permitindo executar ações específicas.
|
|
26157
26284
|
*
|
|
26285
|
+
* > Não compatível com `p-shape="circle"`.
|
|
26286
|
+
*
|
|
26158
26287
|
* @example
|
|
26159
26288
|
* **Exemplo de uso:**
|
|
26160
26289
|
*
|
|
@@ -26195,6 +26324,8 @@ class PoProgressBaseComponent {
|
|
|
26195
26324
|
*
|
|
26196
26325
|
* > Se nenhuma função for passada para o evento ou a barra de progresso estiver com o status `PoProgressStatus.Success`,
|
|
26197
26326
|
* o ícone de cancelamento não será exibido.
|
|
26327
|
+
*
|
|
26328
|
+
* > Não compatível com `p-shape="circle"`.
|
|
26198
26329
|
*/
|
|
26199
26330
|
cancel = new EventEmitter();
|
|
26200
26331
|
/**
|
|
@@ -26206,6 +26337,8 @@ class PoProgressBaseComponent {
|
|
|
26206
26337
|
*
|
|
26207
26338
|
* > o ícone será exibido apenas se informar uma função neste evento e o status da barra de progresso for
|
|
26208
26339
|
* `PoProgressStatus.Error`.
|
|
26340
|
+
*
|
|
26341
|
+
* > Não compatível com `p-shape="circle"`.
|
|
26209
26342
|
*/
|
|
26210
26343
|
retry = new EventEmitter();
|
|
26211
26344
|
_indeterminate;
|
|
@@ -26213,6 +26346,53 @@ class PoProgressBaseComponent {
|
|
|
26213
26346
|
_size = 'large';
|
|
26214
26347
|
_sizeActions = undefined;
|
|
26215
26348
|
_initialSizeActions = undefined;
|
|
26349
|
+
/**
|
|
26350
|
+
* @optional
|
|
26351
|
+
*
|
|
26352
|
+
* @description
|
|
26353
|
+
*
|
|
26354
|
+
* Define o formato visual do componente de progresso.
|
|
26355
|
+
*
|
|
26356
|
+
* Valores válidos:
|
|
26357
|
+
* - `bar`: exibe o progresso em formato de barra.
|
|
26358
|
+
* - `circle`: exibe o progresso em formato circular.
|
|
26359
|
+
*
|
|
26360
|
+
* @example
|
|
26361
|
+
* ```html
|
|
26362
|
+
* <po-progress p-shape="circle" [p-value]="50"></po-progress>
|
|
26363
|
+
* ```
|
|
26364
|
+
*
|
|
26365
|
+
* @default `bar`
|
|
26366
|
+
*/
|
|
26367
|
+
shape = input(PoProgressShape.bar, { ...(ngDevMode ? { debugName: "shape" } : /* istanbul ignore next */ {}), alias: 'p-shape',
|
|
26368
|
+
transform: (value) => (PoProgressShape[value] ? PoProgressShape[value] : PoProgressShape.bar) });
|
|
26369
|
+
/**
|
|
26370
|
+
* @optional
|
|
26371
|
+
*
|
|
26372
|
+
* @description
|
|
26373
|
+
*
|
|
26374
|
+
* Define o raio do círculo SVG em pixels. Permite ao usuário customizar o tamanho
|
|
26375
|
+
* do indicador circular ao utilizar `p-shape="circle"`.
|
|
26376
|
+
*
|
|
26377
|
+
* > O valor mínimo aceito é **24**.
|
|
26378
|
+
*
|
|
26379
|
+
* > Quando não informado, o componente calcula o raio automaticamente a partir do container pai.
|
|
26380
|
+
* Caso o container pai não possua dimensões definidas, o valor padrão de **45** será utilizado.
|
|
26381
|
+
*
|
|
26382
|
+
* > Não compatível com `p-shape="bar"`.
|
|
26383
|
+
*
|
|
26384
|
+
* @default `45` (automático)
|
|
26385
|
+
*/
|
|
26386
|
+
radius = input(CIRCLE_DEFAULT_RADIUS, { ...(ngDevMode ? { debugName: "radius" } : /* istanbul ignore next */ {}), alias: 'p-radius',
|
|
26387
|
+
transform: (value) => {
|
|
26388
|
+
// Se nenhum valor foi fornecido (undefined/null), retorna 0 para indicar "não informado"
|
|
26389
|
+
if (value === undefined || value === null) {
|
|
26390
|
+
return CIRCLE_DEFAULT_RADIUS;
|
|
26391
|
+
}
|
|
26392
|
+
const intValue = convertToInt(value, CIRCLE_DEFAULT_RADIUS);
|
|
26393
|
+
// Quando o usuário informa um valor, aplica o mínimo de CIRCLE_MIN_RADIUS
|
|
26394
|
+
return intValue > 0 ? Math.max(intValue, CIRCLE_MIN_RADIUS) : CIRCLE_DEFAULT_RADIUS;
|
|
26395
|
+
} });
|
|
26216
26396
|
/**
|
|
26217
26397
|
* @optional
|
|
26218
26398
|
*
|
|
@@ -26282,6 +26462,8 @@ class PoProgressBaseComponent {
|
|
|
26282
26462
|
* > Caso a acessibilidade AA não esteja configurada, o tamanho `medium` será mantido.
|
|
26283
26463
|
* Para mais detalhes, consulte a documentação do [po-theme](https://po-ui.io/documentation/po-theme).
|
|
26284
26464
|
*
|
|
26465
|
+
* > Não compatível com `p-shape="circle"`.
|
|
26466
|
+
*
|
|
26285
26467
|
* @default `medium`
|
|
26286
26468
|
*/
|
|
26287
26469
|
set sizeActions(value) {
|
|
@@ -26298,6 +26480,8 @@ class PoProgressBaseComponent {
|
|
|
26298
26480
|
*
|
|
26299
26481
|
* Ativa a exibição da porcentagem atual da barra de progresso.
|
|
26300
26482
|
*
|
|
26483
|
+
* > Se utilizada no `p-shape="circle"` e o status estiver como `error`, a porcentagem não será exibida.
|
|
26484
|
+
*
|
|
26301
26485
|
* @default `false`
|
|
26302
26486
|
*/
|
|
26303
26487
|
showPercentage = false;
|
|
@@ -26311,11 +26495,14 @@ class PoProgressBaseComponent {
|
|
|
26311
26495
|
return value >= poProgressMinValue && value <= poProgressMaxValue;
|
|
26312
26496
|
}
|
|
26313
26497
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: PoProgressBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
26314
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
26498
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.10", type: PoProgressBaseComponent, isStandalone: true, inputs: { ariaLabel: { classPropertyName: "ariaLabel", publicName: "p-aria-label", isSignal: false, isRequired: false, transformFunction: null }, disabledCancel: { classPropertyName: "disabledCancel", publicName: "p-disabled-cancel", isSignal: false, isRequired: false, transformFunction: convertToBoolean }, info: { classPropertyName: "info", publicName: "p-info", isSignal: false, isRequired: false, transformFunction: null }, infoIcon: { classPropertyName: "infoIcon", publicName: "p-info-icon", isSignal: false, isRequired: false, transformFunction: null }, status: { classPropertyName: "status", publicName: "p-status", isSignal: false, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "p-text", isSignal: false, isRequired: false, transformFunction: null }, customAction: { classPropertyName: "customAction", publicName: "p-custom-action", isSignal: false, isRequired: false, transformFunction: null }, shape: { classPropertyName: "shape", publicName: "p-shape", isSignal: true, isRequired: false, transformFunction: null }, radius: { classPropertyName: "radius", publicName: "p-radius", isSignal: true, isRequired: false, transformFunction: null }, indeterminate: { classPropertyName: "indeterminate", publicName: "p-indeterminate", isSignal: false, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "p-value", isSignal: false, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "p-size", isSignal: false, isRequired: false, transformFunction: null }, sizeActions: { classPropertyName: "sizeActions", publicName: "p-size-actions", isSignal: false, isRequired: false, transformFunction: null }, showPercentage: { classPropertyName: "showPercentage", publicName: "p-show-percentage", isSignal: false, isRequired: false, transformFunction: convertToBoolean } }, outputs: { customActionClick: "p-custom-action-click", cancel: "p-cancel", retry: "p-retry" }, host: { listeners: { "window:PoUiThemeChange": "onThemeChange()" }, properties: { "attr.p-size-actions": "this.sizeActions" } }, ngImport: i0 });
|
|
26315
26499
|
}
|
|
26316
26500
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: PoProgressBaseComponent, decorators: [{
|
|
26317
26501
|
type: Directive
|
|
26318
|
-
}], propDecorators: {
|
|
26502
|
+
}], propDecorators: { ariaLabel: [{
|
|
26503
|
+
type: Input,
|
|
26504
|
+
args: ['p-aria-label']
|
|
26505
|
+
}], disabledCancel: [{
|
|
26319
26506
|
type: Input,
|
|
26320
26507
|
args: [{ alias: 'p-disabled-cancel', transform: convertToBoolean }]
|
|
26321
26508
|
}], info: [{
|
|
@@ -26342,7 +26529,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
|
|
|
26342
26529
|
}], retry: [{
|
|
26343
26530
|
type: Output,
|
|
26344
26531
|
args: ['p-retry']
|
|
26345
|
-
}], indeterminate: [{
|
|
26532
|
+
}], shape: [{ type: i0.Input, args: [{ isSignal: true, alias: "p-shape", required: false }] }], radius: [{ type: i0.Input, args: [{ isSignal: true, alias: "p-radius", required: false }] }], indeterminate: [{
|
|
26346
26533
|
type: Input,
|
|
26347
26534
|
args: ['p-indeterminate']
|
|
26348
26535
|
}], value: [{
|
|
@@ -26384,10 +26571,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
|
|
|
26384
26571
|
* <file name="sample-po-progress-publication/sample-po-progress-publication.component.html"> </file>
|
|
26385
26572
|
* <file name="sample-po-progress-publication/sample-po-progress-publication.component.ts"> </file>
|
|
26386
26573
|
* </example>
|
|
26574
|
+
*
|
|
26575
|
+
* <example name="po-progress-circle" title="PO Progress Circle">
|
|
26576
|
+
* <file name="sample-po-progress-circle/sample-po-progress-circle.component.html"> </file>
|
|
26577
|
+
* <file name="sample-po-progress-circle/sample-po-progress-circle.component.ts"> </file>
|
|
26578
|
+
* <file name="sample-po-progress-circle/sample-po-progress-circle.component.css"> </file>
|
|
26579
|
+
* </example>
|
|
26580
|
+
*
|
|
26387
26581
|
*/
|
|
26388
26582
|
class PoProgressComponent extends PoProgressBaseComponent {
|
|
26389
26583
|
language;
|
|
26390
26584
|
literals;
|
|
26585
|
+
elementRef = inject(ElementRef);
|
|
26586
|
+
resizeObserver;
|
|
26587
|
+
observeTarget = null;
|
|
26391
26588
|
get isAllowCancel() {
|
|
26392
26589
|
return !!this.cancel.observers.length && this.status !== PoProgressStatus.Success;
|
|
26393
26590
|
}
|
|
@@ -26408,11 +26605,44 @@ class PoProgressComponent extends PoProgressBaseComponent {
|
|
|
26408
26605
|
}
|
|
26409
26606
|
poLanguageService = inject(PoLanguageService);
|
|
26410
26607
|
router = inject(Router);
|
|
26608
|
+
parentSize = signal(0, ...(ngDevMode ? [{ debugName: "parentSize" }] : /* istanbul ignore next */ []));
|
|
26411
26609
|
ngOnInit() {
|
|
26412
26610
|
this.language = this.poLanguageService.getShortLanguage();
|
|
26413
26611
|
this.literals = {
|
|
26414
26612
|
...poProgressLiterals[this.language]
|
|
26415
26613
|
};
|
|
26614
|
+
if (this.shape() === 'circle') {
|
|
26615
|
+
const parent = this.elementRef.nativeElement.parentElement;
|
|
26616
|
+
if (parent) {
|
|
26617
|
+
if (this.hasAllocatedHeight(parent)) {
|
|
26618
|
+
this.measureAndSetParentSize(parent);
|
|
26619
|
+
this.observeTarget = parent;
|
|
26620
|
+
}
|
|
26621
|
+
else {
|
|
26622
|
+
const constrained = this.findConstrainedAncestor(parent);
|
|
26623
|
+
if (this.hasExplicitHeight(constrained)) {
|
|
26624
|
+
this.measureAndSetParentSize(constrained);
|
|
26625
|
+
this.observeTarget = constrained;
|
|
26626
|
+
}
|
|
26627
|
+
}
|
|
26628
|
+
}
|
|
26629
|
+
}
|
|
26630
|
+
}
|
|
26631
|
+
ngAfterViewInit() {
|
|
26632
|
+
if (this.shape() !== 'circle' || !this.observeTarget) {
|
|
26633
|
+
return;
|
|
26634
|
+
}
|
|
26635
|
+
this.resizeObserver = new ResizeObserver(entries => {
|
|
26636
|
+
const { width, height } = entries[0].contentRect;
|
|
26637
|
+
const size = Math.min(width, height);
|
|
26638
|
+
if (size > 0) {
|
|
26639
|
+
this.parentSize.set(size);
|
|
26640
|
+
}
|
|
26641
|
+
});
|
|
26642
|
+
this.resizeObserver.observe(this.observeTarget);
|
|
26643
|
+
}
|
|
26644
|
+
ngOnDestroy() {
|
|
26645
|
+
this.resizeObserver?.disconnect();
|
|
26416
26646
|
}
|
|
26417
26647
|
emitCancellation() {
|
|
26418
26648
|
this.cancel.emit(this.status);
|
|
@@ -26435,12 +26665,51 @@ class PoProgressComponent extends PoProgressBaseComponent {
|
|
|
26435
26665
|
: true;
|
|
26436
26666
|
}
|
|
26437
26667
|
}
|
|
26668
|
+
hasExplicitHeight(element) {
|
|
26669
|
+
const h = element.style.height;
|
|
26670
|
+
return !!h;
|
|
26671
|
+
}
|
|
26672
|
+
hasAllocatedHeight(element) {
|
|
26673
|
+
const parent = element.parentElement;
|
|
26674
|
+
if (!parent) {
|
|
26675
|
+
return false;
|
|
26676
|
+
}
|
|
26677
|
+
return this.hasExplicitHeight(parent);
|
|
26678
|
+
}
|
|
26679
|
+
measureAndSetParentSize(element) {
|
|
26680
|
+
const computedStyle = getComputedStyle(element);
|
|
26681
|
+
const paddingTop = parseFloat(computedStyle.paddingTop) || 0;
|
|
26682
|
+
const paddingBottom = parseFloat(computedStyle.paddingBottom) || 0;
|
|
26683
|
+
const paddingLeft = parseFloat(computedStyle.paddingLeft) || 0;
|
|
26684
|
+
const paddingRight = parseFloat(computedStyle.paddingRight) || 0;
|
|
26685
|
+
const width = element.clientWidth - paddingLeft - paddingRight;
|
|
26686
|
+
const height = element.clientHeight - paddingTop - paddingBottom;
|
|
26687
|
+
const size = Math.min(width, height);
|
|
26688
|
+
if (size > 0) {
|
|
26689
|
+
this.parentSize.set(size);
|
|
26690
|
+
}
|
|
26691
|
+
}
|
|
26692
|
+
findConstrainedAncestor(start) {
|
|
26693
|
+
let element = start;
|
|
26694
|
+
let depth = 0;
|
|
26695
|
+
while (element && depth < 10) {
|
|
26696
|
+
if (this.hasExplicitHeight(element)) {
|
|
26697
|
+
return element;
|
|
26698
|
+
}
|
|
26699
|
+
if (!element.parentElement) {
|
|
26700
|
+
break;
|
|
26701
|
+
}
|
|
26702
|
+
element = element.parentElement;
|
|
26703
|
+
depth++;
|
|
26704
|
+
}
|
|
26705
|
+
return start;
|
|
26706
|
+
}
|
|
26438
26707
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: PoProgressComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
26439
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.10", type: PoProgressComponent, isStandalone: false, selector: "po-progress", usesInheritance: true, ngImport: i0, template: "<div class=\"po-progress\" [ngClass]=\"statusClass\">\n @if (text) {\n
|
|
26708
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.10", type: PoProgressComponent, isStandalone: false, selector: "po-progress", usesInheritance: true, ngImport: i0, template: "<div class=\"po-progress\" [ngClass]=\"statusClass\">\n @if (shape() === 'bar') {\n @if (text) {\n <div class=\"po-progress-description\">\n <po-label [p-label]=\"text\"></po-label>\n </div>\n }\n <po-progress-bar\n class=\"po-progress-bar po-progress-bar-{{ size }}\"\n [p-aria-label]=\"ariaLabel || text\"\n [p-indeterminate]=\"indeterminate\"\n [p-value]=\"value\"\n >\n </po-progress-bar>\n\n <div class=\"po-progress-info\">\n <div class=\"po-progress-info-left\">\n @if (infoIcon) {\n <po-icon [p-icon]=\"infoIcon\" [class.po-progress-info-icon-error]=\"status === 'error'\"></po-icon>\n }\n @if (isAllowInfoError) {\n <po-icon p-icon=\"ICON_EXCLAMATION\" class=\"po-progress-info-icon-error\"></po-icon>\n }\n @if (info) {\n <span class=\"po-progress-info-text\" [class.po-progress-info-text-error]=\"status === 'error'\">{{ info }}</span>\n }\n </div>\n\n <div class=\"po-progress-info-right\">\n @if (showPercentage && !indeterminate) {\n <span>{{ value }}%</span>\n }\n\n @if (isAllowRetry) {\n <po-button\n p-icon=\"ICON_REFRESH\"\n (p-click)=\"emitRetry()\"\n [p-aria-label]=\"literals.retry\"\n p-kind=\"tertiary\"\n [p-size]=\"sizeActions\"\n ></po-button>\n }\n\n @if (isActionVisible(customAction)) {\n <po-button\n class=\"po-progress-custom-button\"\n [p-danger]=\"customAction.type === 'danger'\"\n [p-disabled]=\"actionIsDisabled(customAction)\"\n [p-label]=\"customAction.label || ''\"\n [p-icon]=\"customAction.icon\"\n [p-size]=\"sizeActions\"\n (p-click)=\"callAction()\"\n >\n </po-button>\n }\n\n @if (isAllowCancel) {\n <po-button\n p-icon=\"ICON_CLOSE\"\n (p-click)=\"emitCancellation()\"\n p-kind=\"secondary\"\n [p-disabled]=\"disabledCancel\"\n [p-aria-label]=\"literals.cancel\"\n [p-danger]=\"true\"\n [p-size]=\"sizeActions\"\n ></po-button>\n }\n </div>\n </div>\n }\n\n @if (shape() === 'circle') {\n <po-progress-circle\n class=\"po-progress-circle po-progress-circle-{{ size }}\"\n [p-aria-label]=\"ariaLabel || text\"\n [p-indeterminate]=\"indeterminate\"\n [p-value]=\"value\"\n [p-size]=\"size\"\n [p-status]=\"status\"\n [p-show-percentage]=\"showPercentage\"\n [p-radius]=\"radius()\"\n [p-parent-size]=\"parentSize()\"\n >\n </po-progress-circle>\n }\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: PoButtonComponent, selector: "po-button" }, { kind: "component", type: PoIconComponent, selector: "po-icon", inputs: ["p-icon"] }, { kind: "component", type: PoLabelComponent, selector: "po-label", inputs: ["p-disabled", "p-field", "p-for", "p-label", "p-requirement", "p-text-wrap"] }, { kind: "component", type: PoProgressCircleComponent, selector: "po-progress-circle", inputs: ["p-indeterminate", "p-show-percentage", "p-size", "p-status", "p-aria-label", "p-value", "p-radius", "p-parent-size"] }, { kind: "component", type: PoProgressBarComponent, selector: "po-progress-bar", inputs: ["p-aria-label", "p-indeterminate", "p-value"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
26440
26709
|
}
|
|
26441
26710
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: PoProgressComponent, decorators: [{
|
|
26442
26711
|
type: Component,
|
|
26443
|
-
args: [{ selector: 'po-progress', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "<div class=\"po-progress\" [ngClass]=\"statusClass\">\n @if (text) {\n
|
|
26712
|
+
args: [{ selector: 'po-progress', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "<div class=\"po-progress\" [ngClass]=\"statusClass\">\n @if (shape() === 'bar') {\n @if (text) {\n <div class=\"po-progress-description\">\n <po-label [p-label]=\"text\"></po-label>\n </div>\n }\n <po-progress-bar\n class=\"po-progress-bar po-progress-bar-{{ size }}\"\n [p-aria-label]=\"ariaLabel || text\"\n [p-indeterminate]=\"indeterminate\"\n [p-value]=\"value\"\n >\n </po-progress-bar>\n\n <div class=\"po-progress-info\">\n <div class=\"po-progress-info-left\">\n @if (infoIcon) {\n <po-icon [p-icon]=\"infoIcon\" [class.po-progress-info-icon-error]=\"status === 'error'\"></po-icon>\n }\n @if (isAllowInfoError) {\n <po-icon p-icon=\"ICON_EXCLAMATION\" class=\"po-progress-info-icon-error\"></po-icon>\n }\n @if (info) {\n <span class=\"po-progress-info-text\" [class.po-progress-info-text-error]=\"status === 'error'\">{{ info }}</span>\n }\n </div>\n\n <div class=\"po-progress-info-right\">\n @if (showPercentage && !indeterminate) {\n <span>{{ value }}%</span>\n }\n\n @if (isAllowRetry) {\n <po-button\n p-icon=\"ICON_REFRESH\"\n (p-click)=\"emitRetry()\"\n [p-aria-label]=\"literals.retry\"\n p-kind=\"tertiary\"\n [p-size]=\"sizeActions\"\n ></po-button>\n }\n\n @if (isActionVisible(customAction)) {\n <po-button\n class=\"po-progress-custom-button\"\n [p-danger]=\"customAction.type === 'danger'\"\n [p-disabled]=\"actionIsDisabled(customAction)\"\n [p-label]=\"customAction.label || ''\"\n [p-icon]=\"customAction.icon\"\n [p-size]=\"sizeActions\"\n (p-click)=\"callAction()\"\n >\n </po-button>\n }\n\n @if (isAllowCancel) {\n <po-button\n p-icon=\"ICON_CLOSE\"\n (p-click)=\"emitCancellation()\"\n p-kind=\"secondary\"\n [p-disabled]=\"disabledCancel\"\n [p-aria-label]=\"literals.cancel\"\n [p-danger]=\"true\"\n [p-size]=\"sizeActions\"\n ></po-button>\n }\n </div>\n </div>\n }\n\n @if (shape() === 'circle') {\n <po-progress-circle\n class=\"po-progress-circle po-progress-circle-{{ size }}\"\n [p-aria-label]=\"ariaLabel || text\"\n [p-indeterminate]=\"indeterminate\"\n [p-value]=\"value\"\n [p-size]=\"size\"\n [p-status]=\"status\"\n [p-show-percentage]=\"showPercentage\"\n [p-radius]=\"radius()\"\n [p-parent-size]=\"parentSize()\"\n >\n </po-progress-circle>\n }\n</div>\n" }]
|
|
26444
26713
|
}] });
|
|
26445
26714
|
|
|
26446
26715
|
/**
|
|
@@ -26450,13 +26719,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
|
|
|
26450
26719
|
*/
|
|
26451
26720
|
class PoProgressModule {
|
|
26452
26721
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: PoProgressModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
26453
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.2.10", ngImport: i0, type: PoProgressModule, declarations: [PoProgressBarComponent, PoProgressComponent], imports: [CommonModule, PoButtonModule, PoIconModule, PoLabelModule], exports: [PoProgressComponent] });
|
|
26722
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.2.10", ngImport: i0, type: PoProgressModule, declarations: [PoProgressBarComponent, PoProgressComponent], imports: [CommonModule, PoButtonModule, PoIconModule, PoLabelModule, PoProgressCircleComponent], exports: [PoProgressComponent] });
|
|
26454
26723
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: PoProgressModule, imports: [CommonModule, PoButtonModule, PoIconModule, PoLabelModule] });
|
|
26455
26724
|
}
|
|
26456
26725
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: PoProgressModule, decorators: [{
|
|
26457
26726
|
type: NgModule,
|
|
26458
26727
|
args: [{
|
|
26459
|
-
imports: [CommonModule, PoButtonModule, PoIconModule, PoLabelModule],
|
|
26728
|
+
imports: [CommonModule, PoButtonModule, PoIconModule, PoLabelModule, PoProgressCircleComponent],
|
|
26460
26729
|
exports: [PoProgressComponent],
|
|
26461
26730
|
declarations: [PoProgressBarComponent, PoProgressComponent]
|
|
26462
26731
|
}]
|
|
@@ -66451,5 +66720,5 @@ function validateProperty(property, target) {
|
|
|
66451
66720
|
* Generated bundle index. Do not edit.
|
|
66452
66721
|
*/
|
|
66453
66722
|
|
|
66454
|
-
export { AnimaliaIconDictionary, ForceBooleanComponentEnum, ForceOptionComponentEnum, I18N_CONFIG, InputBoolean, InputRequired, LOADING_ICON_COMPONENT, PO_CALENDAR_DEFAULT_RANGE_PRESETS, PO_CONTROL_POSITIONS, PoAccordionComponent, PoAccordionItemComponent, PoAccordionModule, PoActiveOverlayModule, PoActiveOverlayService, PoAvatarComponent, PoAvatarModule, PoBadgeComponent, PoBadgeModule, PoBreadcrumbComponent, PoBreadcrumbModule, PoButtonComponent, PoButtonGroupComponent, PoButtonGroupModule, PoButtonGroupToggle, PoButtonKind, PoButtonModule, PoButtonSize, PoButtonType, PoCalendarComponent, PoCalendarMode, PoCalendarModule, PoChartComponent, PoChartLabelFormat, PoChartModule, PoChartType, PoCheckboxComponent, PoCheckboxGroupComponent, PoCheckboxGroupModule, PoCheckboxModule, PoCheckboxSize, PoCleanComponent, PoCleanModule, PoColorPaletteModule, PoColorPaletteService, PoComboComponent, PoComboFilterMode, PoComboModule, PoComboOptionTemplateDirective, PoComponentInjectorModule, PoComponentInjectorService, PoComponentsModule, PoContainerComponent, PoContainerModule, PoContextMenuComponent, PoContextMenuModule, PoContextTabButtonComponent, PoContextTabsComponent, PoContextTabsModule, PoControlPositionModule, PoDateService, PoDateTimeModule, PoDatepickerComponent, PoDatepickerIsoFormat, PoDatepickerModule, PoDatepickerRangeComponent, PoDecimalComponent, PoDialogComponent, PoDialogModule, PoDialogService, PoDialogType, PoDirectivesModule, PoDisclaimerComponent, PoDisclaimerGroupComponent, PoDisclaimerGroupModule, PoDisclaimerModule, PoDividerComponent, PoDividerModule, PoDividerSize, PoDropdownComponent, PoDropdownModule, PoDynamicContainerComponent, PoDynamicFieldType, PoDynamicFormComponent, PoDynamicModule, PoDynamicSharedBase, PoDynamicViewComponent, PoEmailComponent, PoFieldContainerBottomComponent, PoFieldContainerComponent, PoFieldContainerModule, PoFieldModule, PoGaugeComponent, PoGaugeModule, PoGridComponent, PoGridModule, PoGuardsModule, PoHeaderComponent, PoHeaderModule, PoHelperComponent, PoHelperModule, PoHttpInterceptorModule, PoHttpInterceptorService, PoHttpRequestInterceptorService, PoHttpRequestModule, PoI18nModule, PoI18nPipe, PoI18nService, PoIconComponent, PoIconModule, PoImageComponent, PoImageModule, PoInfoComponent, PoInfoModule, PoInfoOrientation, PoInputComponent, PoInterceptorsModule, PoItemListComponent, PoLabelComponent, PoLabelModule, PoLanguageModule, PoLanguageService, PoLinkComponent, PoLinkModule, PoListBoxComponent, PoListBoxModule, PoListViewComponent, PoListViewContentTemplateDirective, PoListViewDetailTemplateDirective, PoListViewModule, PoLoadingComponent, PoLoadingIconComponent, PoLoadingModule, PoLoadingOverlayComponent, PoLoginComponent, PoLogoComponent, PoLogoModule, PoLookupComponent, PoLookupModalComponent, PoMask, PoMediaQueryModule, PoMediaQueryService, PoMenuComponent, PoMenuGlobalService, PoMenuHeaderTemplateDirective, PoMenuModule, PoMenuPanelComponent, PoMenuPanelModule, PoModalComponent, PoModalFooterComponent, PoModalModule, PoModule, PoMultiselectComponent, PoMultiselectFilterMode, PoMultiselectOptionTemplateDirective, PoNavbarComponent, PoNavbarModule, PoNotificationModule, PoNotificationService, PoNumberComponent, PoOverlayComponent, PoOverlayModule, PoPageDefaultComponent, PoPageDetailComponent, PoPageEditComponent, PoPageListComponent, PoPageModule, PoPageSlideComponent, PoPageSlideFooterComponent, PoPageSlideModule, PoPasswordComponent, PoPipesModule, PoPopoverComponent, PoPopoverModule, PoPopupComponent, PoPopupModule, PoProgressComponent, PoProgressModule, PoProgressSize, PoProgressStatus, PoRadioComponent, PoRadioGroupComponent, PoRadioGroupModule, PoRadioModule, PoRichTextComponent, PoRichTextToolbarActions, PoSearchComponent, PoSearchFilterMode, PoSearchListComponent, PoSearchModule, PoSelectComponent, PoServicesModule, PoSkeletonAnimation, PoSkeletonComponent, PoSkeletonModule, PoSkeletonSize, PoSkeletonType, PoSkeletonVariant, PoSlideComponent, PoSlideContentTemplateDirective, PoSlideModule, PoStepComponent, PoStepperComponent, PoStepperModule, PoStepperOrientation, PoStepperStatus, PoSwitchComponent, PoSwitchLabelPosition, PoSwitchModule, PoTabButtonComponent, PoTabComponent, PoTabDropdownComponent, PoTableCellTemplateDirective, PoTableColumnFrozenDirective, PoTableColumnSortType, PoTableColumnSpacing, PoTableColumnTemplateDirective, PoTableComponent, PoTableModule, PoTableRowTemplateArrowDirection, PoTableRowTemplateDirective, PoTabsComponent, PoTabsModule, PoTabsService, PoTagComponent, PoTagModule, PoTagOrientation, PoTagType, PoTextareaComponent, PoThemeA11yEnum, PoThemeModule, PoThemeService, PoThemeTypeEnum, PoTimeModule, PoTimePipe, PoTimepickerComponent, PoTimepickerModelFormat, PoTimepickerModule, PoTimerBaseComponent, PoTimerComponent, PoTimerFormat, PoTimerModule, PoToasterComponent, PoToasterMode, PoToasterModule, PoToasterOrientation, PoToasterType, PoToolbarComponent, PoToolbarModule, PoTooltipDirective, PoTooltipModule, PoTreeViewComponent, PoTreeViewModule, PoUploadComponent, PoUploadFile, PoUploadStatus, PoUrlComponent, PoWidgetComponent, PoWidgetModule, initializeLanguageDefault, mergePoI18nConfigs, poBreadcrumbLiterals, poChartLiteralsDefault, poDialogAlertLiteralsDefault, poDialogConfirmLiteralsDefault, poLanguageDefault, poLocaleDateSeparatorList, poLocaleDecimalSeparatorList, poLocaleDefault, poLocaleThousandSeparatorList, poLocales, poPageSlideLiteralsDefault, poTabsLiterals, poThemeDefault, poThemeDefaultAA, poThemeDefaultAAA, poThemeDefaultActions, poThemeDefaultActionsDark, poThemeDefaultBrands, poThemeDefaultBrandsDark, poThemeDefaultCategoricals, poThemeDefaultCategoricalsAA, poThemeDefaultCategoricalsDark, poThemeDefaultCategoricalsDarkAA, poThemeDefaultCategoricalsOverlayDark, poThemeDefaultCategoricalsOverlayDarkAA, poThemeDefaultDark, poThemeDefaultDarkValues, poThemeDefaultDarkValuesAA, poThemeDefaultFeedback, poThemeDefaultFeedbackDark, poThemeDefaultLight, poThemeDefaultLightValues, poThemeDefaultLightValuesAA, poThemeDefaultNeutrals, poThemeDefaultNeutralsDark, poThemeDefaultOverlayCategoricals, poThemeDefaultOverlayCategoricalsAA, poToasterLiterals, returnPoI18nService };
|
|
66723
|
+
export { AnimaliaIconDictionary, ForceBooleanComponentEnum, ForceOptionComponentEnum, I18N_CONFIG, InputBoolean, InputRequired, LOADING_ICON_COMPONENT, PO_CALENDAR_DEFAULT_RANGE_PRESETS, PO_CONTROL_POSITIONS, PoAccordionComponent, PoAccordionItemComponent, PoAccordionModule, PoActiveOverlayModule, PoActiveOverlayService, PoAvatarComponent, PoAvatarModule, PoBadgeComponent, PoBadgeModule, PoBreadcrumbComponent, PoBreadcrumbModule, PoButtonComponent, PoButtonGroupComponent, PoButtonGroupModule, PoButtonGroupToggle, PoButtonKind, PoButtonModule, PoButtonSize, PoButtonType, PoCalendarComponent, PoCalendarMode, PoCalendarModule, PoChartComponent, PoChartLabelFormat, PoChartModule, PoChartType, PoCheckboxComponent, PoCheckboxGroupComponent, PoCheckboxGroupModule, PoCheckboxModule, PoCheckboxSize, PoCleanComponent, PoCleanModule, PoColorPaletteModule, PoColorPaletteService, PoComboComponent, PoComboFilterMode, PoComboModule, PoComboOptionTemplateDirective, PoComponentInjectorModule, PoComponentInjectorService, PoComponentsModule, PoContainerComponent, PoContainerModule, PoContextMenuComponent, PoContextMenuModule, PoContextTabButtonComponent, PoContextTabsComponent, PoContextTabsModule, PoControlPositionModule, PoDateService, PoDateTimeModule, PoDatepickerComponent, PoDatepickerIsoFormat, PoDatepickerModule, PoDatepickerRangeComponent, PoDecimalComponent, PoDialogComponent, PoDialogModule, PoDialogService, PoDialogType, PoDirectivesModule, PoDisclaimerComponent, PoDisclaimerGroupComponent, PoDisclaimerGroupModule, PoDisclaimerModule, PoDividerComponent, PoDividerModule, PoDividerSize, PoDropdownComponent, PoDropdownModule, PoDynamicContainerComponent, PoDynamicFieldType, PoDynamicFormComponent, PoDynamicModule, PoDynamicSharedBase, PoDynamicViewComponent, PoEmailComponent, PoFieldContainerBottomComponent, PoFieldContainerComponent, PoFieldContainerModule, PoFieldModule, PoGaugeComponent, PoGaugeModule, PoGridComponent, PoGridModule, PoGuardsModule, PoHeaderComponent, PoHeaderModule, PoHelperComponent, PoHelperModule, PoHttpInterceptorModule, PoHttpInterceptorService, PoHttpRequestInterceptorService, PoHttpRequestModule, PoI18nModule, PoI18nPipe, PoI18nService, PoIconComponent, PoIconModule, PoImageComponent, PoImageModule, PoInfoComponent, PoInfoModule, PoInfoOrientation, PoInputComponent, PoInterceptorsModule, PoItemListComponent, PoLabelComponent, PoLabelModule, PoLanguageModule, PoLanguageService, PoLinkComponent, PoLinkModule, PoListBoxComponent, PoListBoxModule, PoListViewComponent, PoListViewContentTemplateDirective, PoListViewDetailTemplateDirective, PoListViewModule, PoLoadingComponent, PoLoadingIconComponent, PoLoadingModule, PoLoadingOverlayComponent, PoLoginComponent, PoLogoComponent, PoLogoModule, PoLookupComponent, PoLookupModalComponent, PoMask, PoMediaQueryModule, PoMediaQueryService, PoMenuComponent, PoMenuGlobalService, PoMenuHeaderTemplateDirective, PoMenuModule, PoMenuPanelComponent, PoMenuPanelModule, PoModalComponent, PoModalFooterComponent, PoModalModule, PoModule, PoMultiselectComponent, PoMultiselectFilterMode, PoMultiselectOptionTemplateDirective, PoNavbarComponent, PoNavbarModule, PoNotificationModule, PoNotificationService, PoNumberComponent, PoOverlayComponent, PoOverlayModule, PoPageDefaultComponent, PoPageDetailComponent, PoPageEditComponent, PoPageListComponent, PoPageModule, PoPageSlideComponent, PoPageSlideFooterComponent, PoPageSlideModule, PoPasswordComponent, PoPipesModule, PoPopoverComponent, PoPopoverModule, PoPopupComponent, PoPopupModule, PoProgressComponent, PoProgressModule, PoProgressShape, PoProgressSize, PoProgressStatus, PoRadioComponent, PoRadioGroupComponent, PoRadioGroupModule, PoRadioModule, PoRichTextComponent, PoRichTextToolbarActions, PoSearchComponent, PoSearchFilterMode, PoSearchListComponent, PoSearchModule, PoSelectComponent, PoServicesModule, PoSkeletonAnimation, PoSkeletonComponent, PoSkeletonModule, PoSkeletonSize, PoSkeletonType, PoSkeletonVariant, PoSlideComponent, PoSlideContentTemplateDirective, PoSlideModule, PoStepComponent, PoStepperComponent, PoStepperModule, PoStepperOrientation, PoStepperStatus, PoSwitchComponent, PoSwitchLabelPosition, PoSwitchModule, PoTabButtonComponent, PoTabComponent, PoTabDropdownComponent, PoTableCellTemplateDirective, PoTableColumnFrozenDirective, PoTableColumnSortType, PoTableColumnSpacing, PoTableColumnTemplateDirective, PoTableComponent, PoTableModule, PoTableRowTemplateArrowDirection, PoTableRowTemplateDirective, PoTabsComponent, PoTabsModule, PoTabsService, PoTagComponent, PoTagModule, PoTagOrientation, PoTagType, PoTextareaComponent, PoThemeA11yEnum, PoThemeModule, PoThemeService, PoThemeTypeEnum, PoTimeModule, PoTimePipe, PoTimepickerComponent, PoTimepickerModelFormat, PoTimepickerModule, PoTimerBaseComponent, PoTimerComponent, PoTimerFormat, PoTimerModule, PoToasterComponent, PoToasterMode, PoToasterModule, PoToasterOrientation, PoToasterType, PoToolbarComponent, PoToolbarModule, PoTooltipDirective, PoTooltipModule, PoTreeViewComponent, PoTreeViewModule, PoUploadComponent, PoUploadFile, PoUploadStatus, PoUrlComponent, PoWidgetComponent, PoWidgetModule, initializeLanguageDefault, mergePoI18nConfigs, poBreadcrumbLiterals, poChartLiteralsDefault, poDialogAlertLiteralsDefault, poDialogConfirmLiteralsDefault, poLanguageDefault, poLocaleDateSeparatorList, poLocaleDecimalSeparatorList, poLocaleDefault, poLocaleThousandSeparatorList, poLocales, poPageSlideLiteralsDefault, poTabsLiterals, poThemeDefault, poThemeDefaultAA, poThemeDefaultAAA, poThemeDefaultActions, poThemeDefaultActionsDark, poThemeDefaultBrands, poThemeDefaultBrandsDark, poThemeDefaultCategoricals, poThemeDefaultCategoricalsAA, poThemeDefaultCategoricalsDark, poThemeDefaultCategoricalsDarkAA, poThemeDefaultCategoricalsOverlayDark, poThemeDefaultCategoricalsOverlayDarkAA, poThemeDefaultDark, poThemeDefaultDarkValues, poThemeDefaultDarkValuesAA, poThemeDefaultFeedback, poThemeDefaultFeedbackDark, poThemeDefaultLight, poThemeDefaultLightValues, poThemeDefaultLightValuesAA, poThemeDefaultNeutrals, poThemeDefaultNeutralsDark, poThemeDefaultOverlayCategoricals, poThemeDefaultOverlayCategoricalsAA, poToasterLiterals, returnPoI18nService };
|
|
66455
66724
|
//# sourceMappingURL=po-ui-ng-components.mjs.map
|