primeng 19.0.2 → 19.0.3
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.
@@ -801,7 +801,7 @@ function Button_span_5_Template(rf, ctx) { if (rf & 1) {
|
|
801
801
|
const ctx_r0 = i0.ɵɵnextContext();
|
802
802
|
i0.ɵɵattribute("aria-hidden", ctx_r0.icon && !ctx_r0.label)("data-pc-section", "label");
|
803
803
|
i0.ɵɵadvance();
|
804
|
-
i0.ɵɵtextInterpolate(ctx_r0.label);
|
804
|
+
i0.ɵɵtextInterpolate(ctx_r0.label || "nbsp;");
|
805
805
|
} }
|
806
806
|
function Button_p_badge_6_Template(rf, ctx) { if (rf & 1) {
|
807
807
|
i0.ɵɵelement(0, "p-badge", 13);
|
@@ -1481,7 +1481,7 @@ class Button extends BaseComponent {
|
|
1481
1481
|
i0.ɵɵadvance();
|
1482
1482
|
i0.ɵɵproperty("ngIf", !ctx.loading);
|
1483
1483
|
i0.ɵɵadvance();
|
1484
|
-
i0.ɵɵproperty("ngIf", !ctx.contentTemplate && !ctx._contentTemplate
|
1484
|
+
i0.ɵɵproperty("ngIf", !ctx.contentTemplate && !ctx._contentTemplate);
|
1485
1485
|
i0.ɵɵadvance();
|
1486
1486
|
i0.ɵɵproperty("ngIf", !ctx.contentTemplate && !ctx._contentTemplate && ctx.badge);
|
1487
1487
|
} }, dependencies: [CommonModule, i1.NgClass, i1.NgIf, i1.NgTemplateOutlet, i1.NgStyle, Ripple, AutoFocus, SpinnerIcon, BadgeModule, i2.Badge, SharedModule], encapsulation: 2, changeDetection: 0 });
|
@@ -1521,7 +1521,7 @@ class Button extends BaseComponent {
|
|
1521
1521
|
<span *ngIf="icon && !iconTemplate && !_iconTemplate" [class]="icon" [ngClass]="iconClass()" [attr.data-pc-section]="'icon'"></span>
|
1522
1522
|
<ng-template [ngIf]="!icon && (iconTemplate || _iconTemplate)" *ngTemplateOutlet="iconTemplate || _iconTemplate; context: { class: iconClass() }"></ng-template>
|
1523
1523
|
</ng-container>
|
1524
|
-
<span class="p-button-label" [attr.aria-hidden]="icon && !label" *ngIf="!contentTemplate && !_contentTemplate
|
1524
|
+
<span class="p-button-label" [attr.aria-hidden]="icon && !label" *ngIf="!contentTemplate && !_contentTemplate" [attr.data-pc-section]="'label'">{{ label || 'nbsp;' }}</span>
|
1525
1525
|
<p-badge *ngIf="!contentTemplate && !_contentTemplate && badge" [value]="badge" [severity]="badgeSeverity"></p-badge>
|
1526
1526
|
</button>
|
1527
1527
|
`,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"primeng-button.mjs","sources":["../../src/button/style/buttonstyle.ts","../../src/button/button.ts","../../src/button/primeng-button.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\nimport { BaseStyle } from 'primeng/base';\n\nconst theme = ({ dt }) => `\n.p-button {\n display: inline-flex;\n cursor: pointer;\n user-select: none;\n align-items: center;\n justify-content: center;\n overflow: hidden;\n position: relative;\n color: ${dt('button.primary.color')};\n background: ${dt('button.primary.background')};\n border: 1px solid ${dt('button.primary.border.color')};\n padding-block: ${dt('button.padding.y')};\n padding-inline: ${dt('button.padding.x')};\n font-size: 1rem;\n font-family: inherit;\n font-feature-settings: inherit;\n transition: background ${dt('button.transition.duration')}, color ${dt('button.transition.duration')}, border-color ${dt('button.transition.duration')},\n outline-color ${dt('button.transition.duration')}, box-shadow ${dt('button.transition.duration')};\n border-radius: ${dt('button.border.radius')};\n outline-color: transparent;\n gap: ${dt('button.gap')};\n}\n\n.p-button:disabled {\n cursor: default;\n}\n\n.p-button-icon-right {\n order: 1;\n}\n\n.p-button-icon-right:dir(rtl) {\n order: -1;\n}\n\n.p-button:not(.p-button-vertical) .p-button-icon:not(.p-button-icon-right):dir(rtl) {\n order: 1;\n}\n\n.p-button-icon-bottom {\n order: 2;\n}\n\n.p-button-icon-only {\n width: ${dt('button.icon.only.width')};\n padding-inline-start: 0;\n padding-inline-end: 0;\n gap: 0;\n}\n\n.p-button-icon-only.p-button-rounded {\n border-radius: 50%;\n height: ${dt('button.icon.only.width')};\n}\n\n.p-button-icon-only .p-button-label {\n visibility: hidden;\n width: 0;\n}\n\n.p-button-sm {\n font-size: ${dt('button.sm.font.size')};\n padding-block: ${dt('button.sm.padding.y')};\n padding-inline: ${dt('button.sm.padding.x')};\n}\n\n.p-button-sm .p-button-icon {\n font-size: ${dt('button.sm.font.size')};\n}\n\n.p-button-lg {\n font-size: ${dt('button.lg.font.size')};\n padding-block: ${dt('button.lg.padding.y')};\n padding-inline: ${dt('button.lg.padding.x')};\n}\n\n.p-button-lg .p-button-icon {\n font-size: ${dt('button.lg.font.size')};\n}\n\n.p-button-vertical {\n flex-direction: column;\n}\n\n.p-button-label {\n font-weight: ${dt('button.label.font.weight')};\n}\n\n.p-button-fluid {\n width: 100%;\n}\n\n.p-button-fluid.p-button-icon-only {\n width: ${dt('button.icon.only.width')};\n}\n\n.p-button:not(:disabled):hover {\n background: ${dt('button.primary.hover.background')};\n border: 1px solid ${dt('button.primary.hover.border.color')};\n color: ${dt('button.primary.hover.color')};\n}\n\n.p-button:not(:disabled):active {\n background: ${dt('button.primary.active.background')};\n border: 1px solid ${dt('button.primary.active.border.color')};\n color: ${dt('button.primary.active.color')};\n}\n\n.p-button:focus-visible {\n box-shadow: ${dt('button.primary.focus.ring.shadow')};\n outline: ${dt('button.focus.ring.width')} ${dt('button.focus.ring.style')} ${dt('button.primary.focus.ring.color')};\n outline-offset: ${dt('button.focus.ring.offset')};\n}\n\n.p-button .p-badge {\n min-width: ${dt('button.badge.size')};\n height: ${dt('button.badge.size')};\n line-height: ${dt('button.badge.size')};\n}\n\n.p-button-raised {\n box-shadow: ${dt('button.raised.shadow')};\n}\n\n.p-button-rounded {\n border-radius: ${dt('button.rounded.border.radius')};\n}\n\n.p-button-secondary {\n background: ${dt('button.secondary.background')};\n border: 1px solid ${dt('button.secondary.border.color')};\n color: ${dt('button.secondary.color')};\n}\n\n.p-button-secondary:not(:disabled):hover {\n background: ${dt('button.secondary.hover.background')};\n border: 1px solid ${dt('button.secondary.hover.border.color')};\n color: ${dt('button.secondary.hover.color')};\n}\n\n.p-button-secondary:not(:disabled):active {\n background: ${dt('button.secondary.active.background')};\n border: 1px solid ${dt('button.secondary.active.border.color')};\n color: ${dt('button.secondary.active.color')};\n}\n\n.p-button-secondary:focus-visible {\n outline-color: ${dt('button.secondary.focus.ring.color')};\n box-shadow: ${dt('button.secondary.focus.ring.shadow')};\n}\n\n.p-button-success {\n background: ${dt('button.success.background')};\n border: 1px solid ${dt('button.success.border.color')};\n color: ${dt('button.success.color')};\n}\n\n.p-button-success:not(:disabled):hover {\n background: ${dt('button.success.hover.background')};\n border: 1px solid ${dt('button.success.hover.border.color')};\n color: ${dt('button.success.hover.color')};\n}\n\n.p-button-success:not(:disabled):active {\n background: ${dt('button.success.active.background')};\n border: 1px solid ${dt('button.success.active.border.color')};\n color: ${dt('button.success.active.color')};\n}\n\n.p-button-success:focus-visible {\n outline-color: ${dt('button.success.focus.ring.color')};\n box-shadow: ${dt('button.success.focus.ring.shadow')};\n}\n\n.p-button-info {\n background: ${dt('button.info.background')};\n border: 1px solid ${dt('button.info.border.color')};\n color: ${dt('button.info.color')};\n}\n\n.p-button-info:not(:disabled):hover {\n background: ${dt('button.info.hover.background')};\n border: 1px solid ${dt('button.info.hover.border.color')};\n color: ${dt('button.info.hover.color')};\n}\n\n.p-button-info:not(:disabled):active {\n background: ${dt('button.info.active.background')};\n border: 1px solid ${dt('button.info.active.border.color')};\n color: ${dt('button.info.active.color')};\n}\n\n.p-button-info:focus-visible {\n outline-color: ${dt('button.info.focus.ring.color')};\n box-shadow: ${dt('button.info.focus.ring.shadow')};\n}\n\n.p-button-warn {\n background: ${dt('button.warn.background')};\n border: 1px solid ${dt('button.warn.border.color')};\n color: ${dt('button.warn.color')};\n}\n\n.p-button-warn:not(:disabled):hover {\n background: ${dt('button.warn.hover.background')};\n border: 1px solid ${dt('button.warn.hover.border.color')};\n color: ${dt('button.warn.hover.color')};\n}\n\n.p-button-warn:not(:disabled):active {\n background: ${dt('button.warn.active.background')};\n border: 1px solid ${dt('button.warn.active.border.color')};\n color: ${dt('button.warn.active.color')};\n}\n\n.p-button-warn:focus-visible {\n outline-color: ${dt('button.warn.focus.ring.color')};\n box-shadow: ${dt('button.warn.focus.ring.shadow')};\n}\n\n.p-button-help {\n background: ${dt('button.help.background')};\n border: 1px solid ${dt('button.help.border.color')};\n color: ${dt('button.help.color')};\n}\n\n.p-button-help:not(:disabled):hover {\n background: ${dt('button.help.hover.background')};\n border: 1px solid ${dt('button.help.hover.border.color')};\n color: ${dt('button.help.hover.color')};\n}\n\n.p-button-help:not(:disabled):active {\n background: ${dt('button.help.active.background')};\n border: 1px solid ${dt('button.help.active.border.color')};\n color: ${dt('button.help.active.color')};\n}\n\n.p-button-help:focus-visible {\n outline-color: ${dt('button.help.focus.ring.color')};\n box-shadow: ${dt('button.help.focus.ring.shadow')};\n}\n\n.p-button-danger {\n background: ${dt('button.danger.background')};\n border: 1px solid ${dt('button.danger.border.color')};\n color: ${dt('button.danger.color')};\n}\n\n.p-button-danger:not(:disabled):hover {\n background: ${dt('button.danger.hover.background')};\n border: 1px solid ${dt('button.danger.hover.border.color')};\n color: ${dt('button.danger.hover.color')};\n}\n\n.p-button-danger:not(:disabled):active {\n background: ${dt('button.danger.active.background')};\n border: 1px solid ${dt('button.danger.active.border.color')};\n color: ${dt('button.danger.active.color')};\n}\n\n.p-button-danger:focus-visible {\n outline-color: ${dt('button.danger.focus.ring.color')};\n box-shadow: ${dt('button.danger.focus.ring.shadow')};\n}\n\n.p-button-contrast {\n background: ${dt('button.contrast.background')};\n border: 1px solid ${dt('button.contrast.border.color')};\n color: ${dt('button.contrast.color')};\n}\n\n.p-button-contrast:not(:disabled):hover {\n background: ${dt('button.contrast.hover.background')};\n border: 1px solid ${dt('button.contrast.hover.border.color')};\n color: ${dt('button.contrast.hover.color')};\n}\n\n.p-button-contrast:not(:disabled):active {\n background: ${dt('button.contrast.active.background')};\n border: 1px solid ${dt('button.contrast.active.border.color')};\n color: ${dt('button.contrast.active.color')};\n}\n\n.p-button-contrast:focus-visible {\n outline-color: ${dt('button.contrast.focus.ring.color')};\n box-shadow: ${dt('button.contrast.focus.ring.shadow')};\n}\n\n.p-button-outlined {\n background: transparent;\n border-color: ${dt('button.outlined.primary.border.color')};\n color: ${dt('button.outlined.primary.color')};\n}\n\n.p-button-outlined:not(:disabled):hover {\n background: ${dt('button.outlined.primary.hover.background')};\n border-color: ${dt('button.outlined.primary.border.color')};\n color: ${dt('button.outlined.primary.color')};\n}\n\n.p-button-outlined:not(:disabled):active {\n background: ${dt('button.outlined.primary.active.background')};\n border-color: ${dt('button.outlined.primary.border.color')};\n color: ${dt('button.outlined.primary.color')};\n}\n\n.p-button-outlined.p-button-secondary {\n border-color: ${dt('button.outlined.secondary.border.color')};\n color: ${dt('button.outlined.secondary.color')};\n}\n\n.p-button-outlined.p-button-secondary:not(:disabled):hover {\n background: ${dt('button.outlined.secondary.hover.background')};\n border-color: ${dt('button.outlined.secondary.border.color')};\n color: ${dt('button.outlined.secondary.color')};\n}\n\n.p-button-outlined.p-button-secondary:not(:disabled):active {\n background: ${dt('button.outlined.secondary.active.background')};\n border-color: ${dt('button.outlined.secondary.border.color')};\n color: ${dt('button.outlined.secondary.color')};\n}\n\n.p-button-outlined.p-button-success {\n border-color: ${dt('button.outlined.success.border.color')};\n color: ${dt('button.outlined.success.color')};\n}\n\n.p-button-outlined.p-button-success:not(:disabled):hover {\n background: ${dt('button.outlined.success.hover.background')};\n border-color: ${dt('button.outlined.success.border.color')};\n color: ${dt('button.outlined.success.color')};\n}\n\n.p-button-outlined.p-button-success:not(:disabled):active {\n background: ${dt('button.outlined.success.active.background')};\n border-color: ${dt('button.outlined.success.border.color')};\n color: ${dt('button.outlined.success.color')};\n}\n\n.p-button-outlined.p-button-info {\n border-color: ${dt('button.outlined.info.border.color')};\n color: ${dt('button.outlined.info.color')};\n}\n\n.p-button-outlined.p-button-info:not(:disabled):hover {\n background: ${dt('button.outlined.info.hover.background')};\n border-color: ${dt('button.outlined.info.border.color')};\n color: ${dt('button.outlined.info.color')};\n}\n\n.p-button-outlined.p-button-info:not(:disabled):active {\n background: ${dt('button.outlined.info.active.background')};\n border-color: ${dt('button.outlined.info.border.color')};\n color: ${dt('button.outlined.info.color')};\n}\n\n.p-button-outlined.p-button-warn {\n border-color: ${dt('button.outlined.warn.border.color')};\n color: ${dt('button.outlined.warn.color')};\n}\n\n.p-button-outlined.p-button-warn:not(:disabled):hover {\n background: ${dt('button.outlined.warn.hover.background')};\n border-color: ${dt('button.outlined.warn.border.color')};\n color: ${dt('button.outlined.warn.color')};\n}\n\n.p-button-outlined.p-button-warn:not(:disabled):active {\n background: ${dt('button.outlined.warn.active.background')};\n border-color: ${dt('button.outlined.warn.border.color')};\n color: ${dt('button.outlined.warn.color')};\n}\n\n.p-button-outlined.p-button-help {\n border-color: ${dt('button.outlined.help.border.color')};\n color: ${dt('button.outlined.help.color')};\n}\n\n.p-button-outlined.p-button-help:not(:disabled):hover {\n background: ${dt('button.outlined.help.hover.background')};\n border-color: ${dt('button.outlined.help.border.color')};\n color: ${dt('button.outlined.help.color')};\n}\n\n.p-button-outlined.p-button-help:not(:disabled):active {\n background: ${dt('button.outlined.help.active.background')};\n border-color: ${dt('button.outlined.help.border.color')};\n color: ${dt('button.outlined.help.color')};\n}\n\n.p-button-outlined.p-button-danger {\n border-color: ${dt('button.outlined.danger.border.color')};\n color: ${dt('button.outlined.danger.color')};\n}\n\n.p-button-outlined.p-button-danger:not(:disabled):hover {\n background: ${dt('button.outlined.danger.hover.background')};\n border-color: ${dt('button.outlined.danger.border.color')};\n color: ${dt('button.outlined.danger.color')};\n}\n\n.p-button-outlined.p-button-danger:not(:disabled):active {\n background: ${dt('button.outlined.danger.active.background')};\n border-color: ${dt('button.outlined.danger.border.color')};\n color: ${dt('button.outlined.danger.color')};\n}\n\n.p-button-outlined.p-button-contrast {\n border-color: ${dt('button.outlined.contrast.border.color')};\n color: ${dt('button.outlined.contrast.color')};\n}\n\n.p-button-outlined.p-button-contrast:not(:disabled):hover {\n background: ${dt('button.outlined.contrast.hover.background')};\n border-color: ${dt('button.outlined.contrast.border.color')};\n color: ${dt('button.outlined.contrast.color')};\n}\n\n.p-button-outlined.p-button-contrast:not(:disabled):active {\n background: ${dt('button.outlined.contrast.active.background')};\n border-color: ${dt('button.outlined.contrast.border.color')};\n color: ${dt('button.outlined.contrast.color')};\n}\n\n.p-button-outlined.p-button-plain {\n border-color: ${dt('button.outlined.plain.border.color')};\n color: ${dt('button.outlined.plain.color')};\n}\n\n.p-button-outlined.p-button-plain:not(:disabled):hover {\n background: ${dt('button.outlined.plain.hover.background')};\n border-color: ${dt('button.outlined.plain.border.color')};\n color: ${dt('button.outlined.plain.color')};\n}\n\n.p-button-outlined.p-button-plain:not(:disabled):active {\n background: ${dt('button.outlined.plain.active.background')};\n border-color: ${dt('button.outlined.plain.border.color')};\n color: ${dt('button.outlined.plain.color')};\n}\n\n.p-button-text {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.primary.color')};\n}\n\n.p-button-text:not(:disabled):hover {\n background: ${dt('button.text.primary.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.primary.color')};\n}\n\n.p-button-text:not(:disabled):active {\n background: ${dt('button.text.primary.active.background')};\n border-color: transparent;\n color: ${dt('button.text.primary.color')};\n}\n\n.p-button-text.p-button-secondary {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.secondary.color')};\n}\n\n.p-button-text.p-button-secondary:not(:disabled):hover {\n background: ${dt('button.text.secondary.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.secondary.color')};\n}\n\n.p-button-text.p-button-secondary:not(:disabled):active {\n background: ${dt('button.text.secondary.active.background')};\n border-color: transparent;\n color: ${dt('button.text.secondary.color')};\n}\n\n.p-button-text.p-button-success {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.success.color')};\n}\n\n.p-button-text.p-button-success:not(:disabled):hover {\n background: ${dt('button.text.success.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.success.color')};\n}\n\n.p-button-text.p-button-success:not(:disabled):active {\n background: ${dt('button.text.success.active.background')};\n border-color: transparent;\n color: ${dt('button.text.success.color')};\n}\n\n.p-button-text.p-button-info {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.info.color')};\n}\n\n.p-button-text.p-button-info:not(:disabled):hover {\n background: ${dt('button.text.info.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.info.color')};\n}\n\n.p-button-text.p-button-info:not(:disabled):active {\n background: ${dt('button.text.info.active.background')};\n border-color: transparent;\n color: ${dt('button.text.info.color')};\n}\n\n.p-button-text.p-button-warn {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.warn.color')};\n}\n\n.p-button-text.p-button-warn:not(:disabled):hover {\n background: ${dt('button.text.warn.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.warn.color')};\n}\n\n.p-button-text.p-button-warn:not(:disabled):active {\n background: ${dt('button.text.warn.active.background')};\n border-color: transparent;\n color: ${dt('button.text.warn.color')};\n}\n\n.p-button-text.p-button-help {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.help.color')};\n}\n\n.p-button-text.p-button-help:not(:disabled):hover {\n background: ${dt('button.text.help.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.help.color')};\n}\n\n.p-button-text.p-button-help:not(:disabled):active {\n background: ${dt('button.text.help.active.background')};\n border-color: transparent;\n color: ${dt('button.text.help.color')};\n}\n\n.p-button-text.p-button-danger {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.danger.color')};\n}\n\n.p-button-text.p-button-danger:not(:disabled):hover {\n background: ${dt('button.text.danger.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.danger.color')};\n}\n\n.p-button-text.p-button-danger:not(:disabled):active {\n background: ${dt('button.text.danger.active.background')};\n border-color: transparent;\n color: ${dt('button.text.danger.color')};\n}\n\n.p-button-text.p-button-plain {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.plain.color')};\n}\n\n.p-button-text.p-button-plain:not(:disabled):hover {\n background: ${dt('button.text.plain.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.plain.color')};\n}\n\n.p-button-text.p-button-plain:not(:disabled):active {\n background: ${dt('button.text.plain.active.background')};\n border-color: transparent;\n color: ${dt('button.text.plain.color')};\n}\n\n.p-button-text.p-button-contrast {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.contrast.color')};\n}\n\n.p-button-text.p-button-contrast:not(:disabled):hover {\n background: ${dt('button.text.contrast.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.contrast.color')};\n}\n\n.p-button-text.p-button-contrast:not(:disabled):active {\n background: ${dt('button.text.contrast.active.background')};\n border-color: transparent;\n color: ${dt('button.text.contrast.color')};\n}\n\n.p-button-link {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.link.color')};\n}\n\n.p-button-link:not(:disabled):hover {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.link.hover.color')};\n}\n\n.p-button-link:not(:disabled):hover .p-button-label {\n text-decoration: underline;\n}\n\n.p-button-link:not(:disabled):active {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.link.active.color')};\n}\n\n/* For PrimeNG */\n.p-button-icon-right {\n order: 1;\n}\n\np-button[iconpos='right'] spinnericon {\n order: 1;\n}\n`;\n\nconst classes = {\n root: ({ instance, props }) => [\n 'p-button p-component',\n {\n 'p-button-icon-only': instance.hasIcon && !props.label && !props.badge,\n 'p-button-vertical': (props.iconPos === 'top' || props.iconPos === 'bottom') && props.label,\n 'p-button-loading': props.loading,\n 'p-button-link': props.link,\n [`p-button-${props.severity}`]: props.severity,\n 'p-button-raised': props.raised,\n 'p-button-rounded': props.rounded,\n 'p-button-text': props.text,\n 'p-button-outlined': props.outlined,\n 'p-button-sm': props.size === 'small',\n 'p-button-lg': props.size === 'large',\n 'p-button-plain': props.plain,\n 'p-button-fluid': props.fluid\n }\n ],\n loadingIcon: 'p-button-loading-icon',\n icon: ({ props }) => [\n 'p-button-icon',\n {\n [`p-button-icon-${props.iconPos}`]: props.label\n }\n ],\n label: 'p-button-label'\n};\n\n@Injectable()\nexport class ButtonStyle extends BaseStyle {\n name = 'button';\n\n theme = theme;\n\n classes = classes;\n}\n\n/**\n *\n * Button is an extension to standard button element with icons and theming.\n *\n * [Live Demo](https://www.primeng.org/button/)\n *\n * @module buttonstyle\n *\n */\nexport enum ButtonClasses {\n /**\n * Class name of the root element\n */\n root = 'p-button',\n /**\n * Class name of the loading icon element\n */\n loadingIcon = 'p-button-loading-icon',\n /**\n * Class name of the icon element\n */\n icon = 'p-button-icon',\n /**\n * Class name of the label element\n */\n label = 'p-button-label'\n}\n\nexport interface ButtonStyle extends BaseStyle {}\n","import { CommonModule } from '@angular/common';\nimport {\n AfterContentInit,\n AfterViewInit,\n booleanAttribute,\n ChangeDetectionStrategy,\n Component,\n computed,\n contentChild,\n ContentChild,\n ContentChildren,\n Directive,\n EventEmitter,\n inject,\n Input,\n NgModule,\n numberAttribute,\n OnDestroy,\n Output,\n QueryList,\n SimpleChanges,\n TemplateRef,\n ViewEncapsulation\n} from '@angular/core';\nimport { addClass, findSingle, isEmpty } from '@primeuix/utils';\nimport { PrimeTemplate, SharedModule } from 'primeng/api';\nimport { AutoFocus } from 'primeng/autofocus';\nimport { BadgeModule } from 'primeng/badge';\nimport { BaseComponent } from 'primeng/basecomponent';\nimport { SpinnerIcon } from 'primeng/icons';\nimport { Ripple } from 'primeng/ripple';\nimport { ButtonProps } from './button.interface';\nimport { ButtonStyle } from './style/buttonstyle';\n\ntype ButtonIconPosition = 'left' | 'right' | 'top' | 'bottom';\n\nconst INTERNAL_BUTTON_CLASSES = {\n button: 'p-button',\n component: 'p-component',\n iconOnly: 'p-button-icon-only',\n disabled: 'p-disabled',\n loading: 'p-button-loading',\n labelOnly: 'p-button-loading-label-only'\n} as const;\n\n@Directive({\n selector: '[pButtonLabel]',\n providers: [ButtonStyle],\n standalone: true,\n host: {\n '[class.p-button-label]': 'true'\n }\n})\nexport class ButtonLabel extends BaseComponent {\n _componentStyle = inject(ButtonStyle);\n}\n\n@Directive({\n selector: '[pButtonIcon]',\n providers: [ButtonStyle],\n standalone: true,\n host: {\n '[class.p-button-icon]': 'true'\n }\n})\nexport class ButtonIcon extends BaseComponent {\n _componentStyle = inject(ButtonStyle);\n}\n/**\n * Button directive is an extension to button component.\n * @group Components\n */\n@Directive({\n selector: '[pButton]',\n standalone: true,\n providers: [ButtonStyle],\n host: {\n '[class.p-button-icon-only]': 'isIconOnly()',\n '[class.p-button-text]': 'isTextButton()'\n }\n})\nexport class ButtonDirective extends BaseComponent implements AfterViewInit, OnDestroy {\n /**\n * Position of the icon.\n * @deprecated utilize pButtonIcon and pButtonLabel directives.\n * @group Props\n */\n @Input() iconPos: ButtonIconPosition = 'left';\n /**\n * Uses to pass attributes to the loading icon's DOM element.\n * @deprecated utilize pButonIcon instead.\n * @group Props\n */\n @Input() loadingIcon: string | undefined;\n\n set label(val: string) {\n this._label = val;\n\n if (this.initialized) {\n this.updateLabel();\n this.updateIcon();\n this.setStyleClass();\n }\n }\n\n set icon(val: string) {\n this._icon = val;\n\n if (this.initialized) {\n this.updateIcon();\n this.setStyleClass();\n }\n }\n /**\n * Whether the button is in loading state.\n * @group Props\n */\n @Input() get loading(): boolean {\n return this._loading;\n }\n set loading(val: boolean) {\n this._loading = val;\n\n if (this.initialized) {\n this.updateIcon();\n this.setStyleClass();\n }\n }\n _buttonProps!: ButtonProps;\n\n private iconSignal = contentChild(ButtonIcon);\n\n private labelSignal = contentChild(ButtonLabel);\n\n isIconOnly = computed(() => !!(!this.labelSignal() && this.iconSignal()));\n\n set buttonProps(val: ButtonProps) {\n this._buttonProps = val;\n\n if (val && typeof val === 'object') {\n //@ts-ignore\n Object.entries(val).forEach(([k, v]) => this[`_${k}`] !== v && (this[`_${k}`] = v));\n }\n }\n /**\n * Defines the style of the button.\n * @group Props\n */\n @Input() severity: 'success' | 'info' | 'warn' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined;\n /**\n * Add a shadow to indicate elevation.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) raised: boolean = false;\n /**\n * Add a circular border radius to the button.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) rounded: boolean = false;\n /**\n * Add a textual class to the button without a background initially.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) text: boolean = false;\n /**\n * Add a border class without a background initially.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) outlined: boolean = false;\n /**\n * Defines the size of the button.\n * @group Props\n */\n @Input() size: 'small' | 'large' | undefined | null = null;\n /**\n * Add a plain textual class to the button without a background initially.\n * @deprecated use variant property instead.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) plain: boolean = false;\n /**\n * Spans 100% width of the container when enabled.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) fluid: boolean | undefined;\n\n public _label: string | undefined;\n\n public _icon: string | undefined;\n\n public _loading: boolean = false;\n\n public initialized: boolean | undefined;\n\n private get htmlElement(): HTMLElement {\n return this.el.nativeElement as HTMLElement;\n }\n\n private _internalClasses: string[] = Object.values(INTERNAL_BUTTON_CLASSES);\n\n isTextButton = computed(() => !!(!this.iconSignal() && this.labelSignal() && this.text));\n\n /**\n * Text of the button.\n * @deprecated use pButtonLabel directive instead.\n * @group Props\n */\n @Input() get label(): string | undefined {\n return this._label as string;\n }\n\n /**\n * Name of the icon.\n * @deprecated use pButtonIcon directive instead\n * @group Props\n */\n @Input() get icon(): string {\n return this._icon as string;\n }\n\n /**\n * Used to pass all properties of the ButtonProps to the Button component.\n * @deprecated assign props directly to the button element.\n * @group Props\n */\n @Input() get buttonProps(): ButtonProps {\n return this._buttonProps;\n }\n\n spinnerIcon = `<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" class=\"p-icon-spin\">\n <g clip-path=\"url(#clip0_417_21408)\">\n <path\n d=\"M6.99701 14C5.85441 13.999 4.72939 13.7186 3.72012 13.1832C2.71084 12.6478 1.84795 11.8737 1.20673 10.9284C0.565504 9.98305 0.165424 8.89526 0.041387 7.75989C-0.0826496 6.62453 0.073125 5.47607 0.495122 4.4147C0.917119 3.35333 1.59252 2.4113 2.46241 1.67077C3.33229 0.930247 4.37024 0.413729 5.4857 0.166275C6.60117 -0.0811796 7.76026 -0.0520535 8.86188 0.251112C9.9635 0.554278 10.9742 1.12227 11.8057 1.90555C11.915 2.01493 11.9764 2.16319 11.9764 2.31778C11.9764 2.47236 11.915 2.62062 11.8057 2.73C11.7521 2.78503 11.688 2.82877 11.6171 2.85864C11.5463 2.8885 11.4702 2.90389 11.3933 2.90389C11.3165 2.90389 11.2404 2.8885 11.1695 2.85864C11.0987 2.82877 11.0346 2.78503 10.9809 2.73C9.9998 1.81273 8.73246 1.26138 7.39226 1.16876C6.05206 1.07615 4.72086 1.44794 3.62279 2.22152C2.52471 2.99511 1.72683 4.12325 1.36345 5.41602C1.00008 6.70879 1.09342 8.08723 1.62775 9.31926C2.16209 10.5513 3.10478 11.5617 4.29713 12.1803C5.48947 12.7989 6.85865 12.988 8.17414 12.7157C9.48963 12.4435 10.6711 11.7264 11.5196 10.6854C12.3681 9.64432 12.8319 8.34282 12.8328 7C12.8328 6.84529 12.8943 6.69692 13.0038 6.58752C13.1132 6.47812 13.2616 6.41667 13.4164 6.41667C13.5712 6.41667 13.7196 6.47812 13.8291 6.58752C13.9385 6.69692 14 6.84529 14 7C14 8.85651 13.2622 10.637 11.9489 11.9497C10.6356 13.2625 8.85432 14 6.99701 14Z\"\n fill=\"currentColor\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_417_21408\">\n <rect width=\"14\" height=\"14\" fill=\"white\" />\n </clipPath>\n </defs>\n </svg>`;\n\n _componentStyle = inject(ButtonStyle);\n\n ngAfterViewInit() {\n super.ngAfterViewInit();\n addClass(this.htmlElement, this.getStyleClass().join(' '));\n\n this.createIcon();\n this.createLabel();\n\n this.initialized = true;\n }\n\n ngOnChanges(simpleChanges: SimpleChanges) {\n super.ngOnChanges(simpleChanges);\n const { buttonProps } = simpleChanges;\n\n if (buttonProps) {\n const props = buttonProps.currentValue;\n\n for (const property in props) {\n this[property] = props[property];\n }\n }\n }\n\n getStyleClass(): string[] {\n const styleClass: string[] = [INTERNAL_BUTTON_CLASSES.button, INTERNAL_BUTTON_CLASSES.component];\n\n if (this.icon && !this.label && isEmpty(this.htmlElement.textContent)) {\n styleClass.push(INTERNAL_BUTTON_CLASSES.iconOnly);\n }\n\n if (this.loading) {\n styleClass.push(INTERNAL_BUTTON_CLASSES.disabled, INTERNAL_BUTTON_CLASSES.loading);\n\n if (!this.icon && this.label) {\n styleClass.push(INTERNAL_BUTTON_CLASSES.labelOnly);\n }\n\n if (this.icon && !this.label && !isEmpty(this.htmlElement.textContent)) {\n styleClass.push(INTERNAL_BUTTON_CLASSES.iconOnly);\n }\n }\n\n if (this.text) {\n styleClass.push('p-button-text');\n }\n\n if (this.severity) {\n styleClass.push(`p-button-${this.severity}`);\n }\n\n if (this.plain) {\n styleClass.push('p-button-plain');\n }\n\n if (this.raised) {\n styleClass.push('p-button-raised');\n }\n\n if (this.size) {\n styleClass.push(`p-button-${this.size}`);\n }\n\n if (this.outlined) {\n styleClass.push('p-button-outlined');\n }\n\n if (this.rounded) {\n styleClass.push('p-button-rounded');\n }\n\n if (this.size === 'small') {\n styleClass.push('p-button-sm');\n }\n\n if (this.size === 'large') {\n styleClass.push('p-button-lg');\n }\n\n if (this.hasFluid) {\n styleClass.push('p-button-fluid');\n }\n\n return styleClass;\n }\n\n get hasFluid() {\n const nativeElement = this.el.nativeElement;\n const fluidComponent = nativeElement.closest('p-fluid');\n\n return isEmpty(this.fluid) ? !!fluidComponent : this.fluid;\n }\n\n setStyleClass() {\n const styleClass = this.getStyleClass();\n this.htmlElement.classList.remove(...this._internalClasses);\n this.htmlElement.classList.add(...styleClass);\n }\n\n createLabel() {\n const created = findSingle(this.htmlElement, '.p-button-label');\n if (!created && this.label) {\n let labelElement = this.document.createElement('span');\n if (this.icon && !this.label) {\n labelElement.setAttribute('aria-hidden', 'true');\n }\n\n labelElement.className = 'p-button-label';\n labelElement.appendChild(this.document.createTextNode(this.label));\n\n this.htmlElement.appendChild(labelElement);\n }\n }\n\n createIcon() {\n const created = findSingle(this.htmlElement, '.p-button-icon');\n if (!created && (this.icon || this.loading)) {\n let iconElement = this.document.createElement('span');\n iconElement.className = 'p-button-icon';\n iconElement.setAttribute('aria-hidden', 'true');\n let iconPosClass = this.label ? 'p-button-icon-' + this.iconPos : null;\n\n if (iconPosClass) {\n addClass(iconElement, iconPosClass);\n }\n\n let iconClass = this.getIconClass();\n\n if (iconClass) {\n addClass(iconElement, iconClass);\n }\n\n if (!this.loadingIcon && this.loading) {\n iconElement.innerHTML = this.spinnerIcon;\n }\n\n this.htmlElement.insertBefore(iconElement, this.htmlElement.firstChild);\n }\n }\n\n updateLabel() {\n let labelElement = findSingle(this.htmlElement, '.p-button-label');\n\n if (!this.label) {\n labelElement && this.htmlElement.removeChild(labelElement);\n return;\n }\n\n labelElement ? (labelElement.textContent = this.label) : this.createLabel();\n }\n\n updateIcon() {\n let iconElement = findSingle(this.htmlElement, '.p-button-icon');\n let labelElement = findSingle(this.htmlElement, '.p-button-label');\n\n if (this.loading && !this.loadingIcon && iconElement) {\n iconElement.innerHTML = this.spinnerIcon;\n } else if (iconElement?.innerHTML) {\n iconElement.innerHTML = '';\n }\n\n if (iconElement) {\n if (this.iconPos) {\n iconElement.className = 'p-button-icon ' + (labelElement ? 'p-button-icon-' + this.iconPos : '') + ' ' + this.getIconClass();\n } else {\n iconElement.className = 'p-button-icon ' + this.getIconClass();\n }\n } else {\n this.createIcon();\n }\n }\n\n getIconClass() {\n return this.loading ? 'p-button-loading-icon ' + (this.loadingIcon ? this.loadingIcon : 'p-icon') : this.icon || 'p-hidden';\n }\n\n ngOnDestroy() {\n this.initialized = false;\n super.ngOnDestroy();\n }\n}\n/**\n * Button is an extension to standard button element with icons and theming.\n * @group Components\n */\n@Component({\n selector: 'p-button',\n standalone: true,\n imports: [CommonModule, Ripple, AutoFocus, SpinnerIcon, BadgeModule, SharedModule],\n template: `\n <button\n [attr.type]=\"type\"\n [attr.aria-label]=\"ariaLabel\"\n [ngStyle]=\"style\"\n [disabled]=\"disabled || loading\"\n [ngClass]=\"buttonClass\"\n (click)=\"onClick.emit($event)\"\n (focus)=\"onFocus.emit($event)\"\n (blur)=\"onBlur.emit($event)\"\n pRipple\n [attr.data-pc-name]=\"'button'\"\n [attr.data-pc-section]=\"'root'\"\n [attr.tabindex]=\"tabindex\"\n [pAutoFocus]=\"autofocus\"\n >\n <ng-content></ng-content>\n <ng-container *ngTemplateOutlet=\"contentTemplate || _contentTemplate\"></ng-container>\n <ng-container *ngIf=\"loading\">\n <ng-container *ngIf=\"!loadingIconTemplate && !_loadingIconTemplate\">\n <span *ngIf=\"loadingIcon\" [ngClass]=\"iconClass()\" [attr.aria-hidden]=\"true\" [attr.data-pc-section]=\"'loadingicon'\"></span>\n <SpinnerIcon *ngIf=\"!loadingIcon\" [styleClass]=\"spinnerIconClass()\" [spin]=\"true\" [attr.aria-hidden]=\"true\" [attr.data-pc-section]=\"'loadingicon'\" />\n </ng-container>\n <ng-template [ngIf]=\"loadingIconTemplate || _loadingIconTemplate\" *ngTemplateOutlet=\"loadingIconTemplate || _loadingIconTemplate; context: { class: iconClass() }\"></ng-template>\n </ng-container>\n <ng-container *ngIf=\"!loading\">\n <span *ngIf=\"icon && !iconTemplate && !_iconTemplate\" [class]=\"icon\" [ngClass]=\"iconClass()\" [attr.data-pc-section]=\"'icon'\"></span>\n <ng-template [ngIf]=\"!icon && (iconTemplate || _iconTemplate)\" *ngTemplateOutlet=\"iconTemplate || _iconTemplate; context: { class: iconClass() }\"></ng-template>\n </ng-container>\n <span class=\"p-button-label\" [attr.aria-hidden]=\"icon && !label\" *ngIf=\"!contentTemplate && !_contentTemplate && label\" [attr.data-pc-section]=\"'label'\">{{ label }}</span>\n <p-badge *ngIf=\"!contentTemplate && !_contentTemplate && badge\" [value]=\"badge\" [severity]=\"badgeSeverity\"></p-badge>\n </button>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n providers: [ButtonStyle]\n})\nexport class Button extends BaseComponent implements AfterContentInit {\n /**\n * Type of the button.\n * @group Props\n */\n @Input() type: string = 'button';\n /**\n * Position of the icon.\n * @group Props\n */\n @Input() iconPos: ButtonIconPosition = 'left';\n /**\n * Name of the icon.\n * @group Props\n */\n @Input() icon: string | undefined;\n /**\n * Value of the badge.\n * @group Props\n */\n @Input() badge: string | undefined;\n /**\n * Uses to pass attributes to the label's DOM element.\n * @group Props\n */\n @Input() label: string | undefined;\n /**\n * When present, it specifies that the component should be disabled.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) disabled: boolean | undefined;\n /**\n * Whether the button is in loading state.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) loading: boolean = false;\n /**\n * Icon to display in loading state.\n * @group Props\n */\n @Input() loadingIcon: string | undefined;\n /**\n * Add a shadow to indicate elevation.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) raised: boolean = false;\n /**\n * Add a circular border radius to the button.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) rounded: boolean = false;\n /**\n * Add a textual class to the button without a background initially.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) text: boolean = false;\n /**\n * Add a plain textual class to the button without a background initially.\n * @deprecated use variant property instead.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) plain: boolean = false;\n /**\n * Defines the style of the button.\n * @group Props\n */\n @Input() severity: 'success' | 'info' | 'warn' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined;\n /**\n * Add a border class without a background initially.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) outlined: boolean = false;\n /**\n * Add a link style to the button.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) link: boolean = false;\n /**\n * Add a tabindex to the button.\n * @group Props\n */\n @Input({ transform: numberAttribute }) tabindex: number | undefined;\n /**\n * Defines the size of the button.\n * @group Props\n */\n @Input() size: 'small' | 'large' | undefined;\n /**\n * Specifies the variant of the component.\n * @group Props\n */\n @Input() variant: 'outlined' | 'text' | undefined;\n /**\n * Inline style of the element.\n * @group Props\n */\n @Input() style: { [klass: string]: any } | null | undefined;\n /**\n * Class of the element.\n * @group Props\n */\n @Input() styleClass: string | undefined;\n /**\n * Style class of the badge.\n * @group Props\n * @deprecated use badgeSeverity instead.\n */\n @Input() badgeClass: string | undefined;\n /**\n * Severity type of the badge.\n * @group Props\n * @defaultValue secondary\n */\n @Input() badgeSeverity: 'success' | 'info' | 'warn' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined = 'secondary';\n /**\n * Used to define a string that autocomplete attribute the current element.\n * @group Props\n */\n @Input() ariaLabel: string | undefined;\n /**\n * When present, it specifies that the component should automatically get focus on load.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) autofocus: boolean | undefined;\n /**\n * Spans 100% width of the container when enabled.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) fluid: boolean | undefined;\n /**\n * Callback to execute when button is clicked.\n * This event is intended to be used with the <p-button> component. Using a regular <button> element, use (click).\n * @param {MouseEvent} event - Mouse event.\n * @group Emits\n */\n @Output() onClick: EventEmitter<MouseEvent> = new EventEmitter();\n /**\n * Callback to execute when button is focused.\n * This event is intended to be used with the <p-button> component. Using a regular <button> element, use (focus).\n * @param {FocusEvent} event - Focus event.\n * @group Emits\n */\n @Output() onFocus: EventEmitter<FocusEvent> = new EventEmitter<FocusEvent>();\n /**\n * Callback to execute when button loses focus.\n * This event is intended to be used with the <p-button> component. Using a regular <button> element, use (blur).\n * @param {FocusEvent} event - Focus event.\n * @group Emits\n */\n @Output() onBlur: EventEmitter<FocusEvent> = new EventEmitter<FocusEvent>();\n /**\n * Template of the content.\n * @group Templates\n **/\n @ContentChild('content') contentTemplate: TemplateRef<any> | undefined;\n /**\n * Template of the loading.\n * @group Templates\n **/\n @ContentChild('loading') loadingIconTemplate: TemplateRef<any> | undefined;\n /**\n * Template of the icon.\n * @group Templates\n **/\n @ContentChild('icon') iconTemplate: TemplateRef<any> | undefined;\n\n _buttonProps: any | undefined;\n /**\n * Used to pass all properties of the ButtonProps to the Button component.\n * @group Props\n */\n @Input() get buttonProps(): any | undefined {\n return this._buttonProps;\n }\n set buttonProps(val: any | undefined) {\n this._buttonProps = val;\n\n if (val && typeof val === 'object') {\n //@ts-ignore\n Object.entries(val).forEach(([k, v]) => this[`_${k}`] !== v && (this[`_${k}`] = v));\n }\n }\n\n get hasFluid() {\n const nativeElement = this.el.nativeElement;\n const fluidComponent = nativeElement.closest('p-fluid');\n\n return isEmpty(this.fluid) ? !!fluidComponent : this.fluid;\n }\n\n _componentStyle = inject(ButtonStyle);\n\n @ContentChildren(PrimeTemplate) templates: QueryList<PrimeTemplate> | undefined;\n\n _contentTemplate: TemplateRef<any> | undefined;\n\n _iconTemplate: TemplateRef<any> | undefined;\n\n _loadingIconTemplate: TemplateRef<any> | undefined;\n\n ngAfterContentInit() {\n this.templates?.forEach((item) => {\n switch (item.getType()) {\n case 'content':\n this.contentTemplate = item.template;\n break;\n\n case 'icon':\n this.iconTemplate = item.template;\n break;\n\n case 'loadingicon':\n this.loadingIconTemplate = item.template;\n break;\n\n default:\n this.contentTemplate = item.template;\n break;\n }\n });\n }\n\n ngOnChanges(simpleChanges: SimpleChanges) {\n super.ngOnChanges(simpleChanges);\n const { buttonProps } = simpleChanges;\n\n if (buttonProps) {\n const props = buttonProps.currentValue;\n\n for (const property in props) {\n this[property] = props[property];\n }\n }\n }\n\n spinnerIconClass(): string {\n return Object.entries(this.iconClass())\n .filter(([, value]) => !!value)\n .reduce((acc, [key]) => acc + ` ${key}`, 'p-button-loading-icon');\n }\n\n iconClass() {\n return {\n [`p-button-loading-icon pi-spin ${this.loadingIcon ?? ''}`]: this.loading,\n 'p-button-icon': true,\n 'p-button-icon-left': this.iconPos === 'left' && this.label,\n 'p-button-icon-right': this.iconPos === 'right' && this.label,\n 'p-button-icon-top': this.iconPos === 'top' && this.label,\n 'p-button-icon-bottom': this.iconPos === 'bottom' && this.label\n };\n }\n\n get buttonClass() {\n return {\n 'p-button p-component': true,\n 'p-button-icon-only': (this.icon || this.iconTemplate || this.loadingIcon || this.loadingIconTemplate || this._loadingIconTemplate) && !this.label,\n 'p-button-vertical': (this.iconPos === 'top' || this.iconPos === 'bottom') && this.label,\n 'p-button-loading': this.loading,\n 'p-button-loading-label-only': this.loading && !this.icon && this.label && !this.loadingIcon && this.iconPos === 'left',\n 'p-button-link': this.link,\n [`p-button-${this.severity}`]: this.severity,\n 'p-button-raised': this.raised,\n 'p-button-rounded': this.rounded,\n 'p-button-text': this.text || this.variant == 'text',\n 'p-button-outlined': this.outlined || this.variant == 'outlined',\n 'p-button-sm': this.size === 'small',\n 'p-button-lg': this.size === 'large',\n 'p-button-plain': this.plain,\n 'p-button-fluid': this.hasFluid,\n [`${this.styleClass}`]: this.styleClass\n };\n }\n}\n\n@NgModule({\n imports: [CommonModule, ButtonDirective, Button, SharedModule, ButtonLabel, ButtonIcon],\n exports: [ButtonDirective, Button, ButtonLabel, ButtonIcon, SharedModule]\n})\nexport class ButtonModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"primeng-button.mjs","sources":["../../src/button/style/buttonstyle.ts","../../src/button/button.ts","../../src/button/primeng-button.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\nimport { BaseStyle } from 'primeng/base';\n\nconst theme = ({ dt }) => `\n.p-button {\n display: inline-flex;\n cursor: pointer;\n user-select: none;\n align-items: center;\n justify-content: center;\n overflow: hidden;\n position: relative;\n color: ${dt('button.primary.color')};\n background: ${dt('button.primary.background')};\n border: 1px solid ${dt('button.primary.border.color')};\n padding-block: ${dt('button.padding.y')};\n padding-inline: ${dt('button.padding.x')};\n font-size: 1rem;\n font-family: inherit;\n font-feature-settings: inherit;\n transition: background ${dt('button.transition.duration')}, color ${dt('button.transition.duration')}, border-color ${dt('button.transition.duration')},\n outline-color ${dt('button.transition.duration')}, box-shadow ${dt('button.transition.duration')};\n border-radius: ${dt('button.border.radius')};\n outline-color: transparent;\n gap: ${dt('button.gap')};\n}\n\n.p-button:disabled {\n cursor: default;\n}\n\n.p-button-icon-right {\n order: 1;\n}\n\n.p-button-icon-right:dir(rtl) {\n order: -1;\n}\n\n.p-button:not(.p-button-vertical) .p-button-icon:not(.p-button-icon-right):dir(rtl) {\n order: 1;\n}\n\n.p-button-icon-bottom {\n order: 2;\n}\n\n.p-button-icon-only {\n width: ${dt('button.icon.only.width')};\n padding-inline-start: 0;\n padding-inline-end: 0;\n gap: 0;\n}\n\n.p-button-icon-only.p-button-rounded {\n border-radius: 50%;\n height: ${dt('button.icon.only.width')};\n}\n\n.p-button-icon-only .p-button-label {\n visibility: hidden;\n width: 0;\n}\n\n.p-button-sm {\n font-size: ${dt('button.sm.font.size')};\n padding-block: ${dt('button.sm.padding.y')};\n padding-inline: ${dt('button.sm.padding.x')};\n}\n\n.p-button-sm .p-button-icon {\n font-size: ${dt('button.sm.font.size')};\n}\n\n.p-button-lg {\n font-size: ${dt('button.lg.font.size')};\n padding-block: ${dt('button.lg.padding.y')};\n padding-inline: ${dt('button.lg.padding.x')};\n}\n\n.p-button-lg .p-button-icon {\n font-size: ${dt('button.lg.font.size')};\n}\n\n.p-button-vertical {\n flex-direction: column;\n}\n\n.p-button-label {\n font-weight: ${dt('button.label.font.weight')};\n}\n\n.p-button-fluid {\n width: 100%;\n}\n\n.p-button-fluid.p-button-icon-only {\n width: ${dt('button.icon.only.width')};\n}\n\n.p-button:not(:disabled):hover {\n background: ${dt('button.primary.hover.background')};\n border: 1px solid ${dt('button.primary.hover.border.color')};\n color: ${dt('button.primary.hover.color')};\n}\n\n.p-button:not(:disabled):active {\n background: ${dt('button.primary.active.background')};\n border: 1px solid ${dt('button.primary.active.border.color')};\n color: ${dt('button.primary.active.color')};\n}\n\n.p-button:focus-visible {\n box-shadow: ${dt('button.primary.focus.ring.shadow')};\n outline: ${dt('button.focus.ring.width')} ${dt('button.focus.ring.style')} ${dt('button.primary.focus.ring.color')};\n outline-offset: ${dt('button.focus.ring.offset')};\n}\n\n.p-button .p-badge {\n min-width: ${dt('button.badge.size')};\n height: ${dt('button.badge.size')};\n line-height: ${dt('button.badge.size')};\n}\n\n.p-button-raised {\n box-shadow: ${dt('button.raised.shadow')};\n}\n\n.p-button-rounded {\n border-radius: ${dt('button.rounded.border.radius')};\n}\n\n.p-button-secondary {\n background: ${dt('button.secondary.background')};\n border: 1px solid ${dt('button.secondary.border.color')};\n color: ${dt('button.secondary.color')};\n}\n\n.p-button-secondary:not(:disabled):hover {\n background: ${dt('button.secondary.hover.background')};\n border: 1px solid ${dt('button.secondary.hover.border.color')};\n color: ${dt('button.secondary.hover.color')};\n}\n\n.p-button-secondary:not(:disabled):active {\n background: ${dt('button.secondary.active.background')};\n border: 1px solid ${dt('button.secondary.active.border.color')};\n color: ${dt('button.secondary.active.color')};\n}\n\n.p-button-secondary:focus-visible {\n outline-color: ${dt('button.secondary.focus.ring.color')};\n box-shadow: ${dt('button.secondary.focus.ring.shadow')};\n}\n\n.p-button-success {\n background: ${dt('button.success.background')};\n border: 1px solid ${dt('button.success.border.color')};\n color: ${dt('button.success.color')};\n}\n\n.p-button-success:not(:disabled):hover {\n background: ${dt('button.success.hover.background')};\n border: 1px solid ${dt('button.success.hover.border.color')};\n color: ${dt('button.success.hover.color')};\n}\n\n.p-button-success:not(:disabled):active {\n background: ${dt('button.success.active.background')};\n border: 1px solid ${dt('button.success.active.border.color')};\n color: ${dt('button.success.active.color')};\n}\n\n.p-button-success:focus-visible {\n outline-color: ${dt('button.success.focus.ring.color')};\n box-shadow: ${dt('button.success.focus.ring.shadow')};\n}\n\n.p-button-info {\n background: ${dt('button.info.background')};\n border: 1px solid ${dt('button.info.border.color')};\n color: ${dt('button.info.color')};\n}\n\n.p-button-info:not(:disabled):hover {\n background: ${dt('button.info.hover.background')};\n border: 1px solid ${dt('button.info.hover.border.color')};\n color: ${dt('button.info.hover.color')};\n}\n\n.p-button-info:not(:disabled):active {\n background: ${dt('button.info.active.background')};\n border: 1px solid ${dt('button.info.active.border.color')};\n color: ${dt('button.info.active.color')};\n}\n\n.p-button-info:focus-visible {\n outline-color: ${dt('button.info.focus.ring.color')};\n box-shadow: ${dt('button.info.focus.ring.shadow')};\n}\n\n.p-button-warn {\n background: ${dt('button.warn.background')};\n border: 1px solid ${dt('button.warn.border.color')};\n color: ${dt('button.warn.color')};\n}\n\n.p-button-warn:not(:disabled):hover {\n background: ${dt('button.warn.hover.background')};\n border: 1px solid ${dt('button.warn.hover.border.color')};\n color: ${dt('button.warn.hover.color')};\n}\n\n.p-button-warn:not(:disabled):active {\n background: ${dt('button.warn.active.background')};\n border: 1px solid ${dt('button.warn.active.border.color')};\n color: ${dt('button.warn.active.color')};\n}\n\n.p-button-warn:focus-visible {\n outline-color: ${dt('button.warn.focus.ring.color')};\n box-shadow: ${dt('button.warn.focus.ring.shadow')};\n}\n\n.p-button-help {\n background: ${dt('button.help.background')};\n border: 1px solid ${dt('button.help.border.color')};\n color: ${dt('button.help.color')};\n}\n\n.p-button-help:not(:disabled):hover {\n background: ${dt('button.help.hover.background')};\n border: 1px solid ${dt('button.help.hover.border.color')};\n color: ${dt('button.help.hover.color')};\n}\n\n.p-button-help:not(:disabled):active {\n background: ${dt('button.help.active.background')};\n border: 1px solid ${dt('button.help.active.border.color')};\n color: ${dt('button.help.active.color')};\n}\n\n.p-button-help:focus-visible {\n outline-color: ${dt('button.help.focus.ring.color')};\n box-shadow: ${dt('button.help.focus.ring.shadow')};\n}\n\n.p-button-danger {\n background: ${dt('button.danger.background')};\n border: 1px solid ${dt('button.danger.border.color')};\n color: ${dt('button.danger.color')};\n}\n\n.p-button-danger:not(:disabled):hover {\n background: ${dt('button.danger.hover.background')};\n border: 1px solid ${dt('button.danger.hover.border.color')};\n color: ${dt('button.danger.hover.color')};\n}\n\n.p-button-danger:not(:disabled):active {\n background: ${dt('button.danger.active.background')};\n border: 1px solid ${dt('button.danger.active.border.color')};\n color: ${dt('button.danger.active.color')};\n}\n\n.p-button-danger:focus-visible {\n outline-color: ${dt('button.danger.focus.ring.color')};\n box-shadow: ${dt('button.danger.focus.ring.shadow')};\n}\n\n.p-button-contrast {\n background: ${dt('button.contrast.background')};\n border: 1px solid ${dt('button.contrast.border.color')};\n color: ${dt('button.contrast.color')};\n}\n\n.p-button-contrast:not(:disabled):hover {\n background: ${dt('button.contrast.hover.background')};\n border: 1px solid ${dt('button.contrast.hover.border.color')};\n color: ${dt('button.contrast.hover.color')};\n}\n\n.p-button-contrast:not(:disabled):active {\n background: ${dt('button.contrast.active.background')};\n border: 1px solid ${dt('button.contrast.active.border.color')};\n color: ${dt('button.contrast.active.color')};\n}\n\n.p-button-contrast:focus-visible {\n outline-color: ${dt('button.contrast.focus.ring.color')};\n box-shadow: ${dt('button.contrast.focus.ring.shadow')};\n}\n\n.p-button-outlined {\n background: transparent;\n border-color: ${dt('button.outlined.primary.border.color')};\n color: ${dt('button.outlined.primary.color')};\n}\n\n.p-button-outlined:not(:disabled):hover {\n background: ${dt('button.outlined.primary.hover.background')};\n border-color: ${dt('button.outlined.primary.border.color')};\n color: ${dt('button.outlined.primary.color')};\n}\n\n.p-button-outlined:not(:disabled):active {\n background: ${dt('button.outlined.primary.active.background')};\n border-color: ${dt('button.outlined.primary.border.color')};\n color: ${dt('button.outlined.primary.color')};\n}\n\n.p-button-outlined.p-button-secondary {\n border-color: ${dt('button.outlined.secondary.border.color')};\n color: ${dt('button.outlined.secondary.color')};\n}\n\n.p-button-outlined.p-button-secondary:not(:disabled):hover {\n background: ${dt('button.outlined.secondary.hover.background')};\n border-color: ${dt('button.outlined.secondary.border.color')};\n color: ${dt('button.outlined.secondary.color')};\n}\n\n.p-button-outlined.p-button-secondary:not(:disabled):active {\n background: ${dt('button.outlined.secondary.active.background')};\n border-color: ${dt('button.outlined.secondary.border.color')};\n color: ${dt('button.outlined.secondary.color')};\n}\n\n.p-button-outlined.p-button-success {\n border-color: ${dt('button.outlined.success.border.color')};\n color: ${dt('button.outlined.success.color')};\n}\n\n.p-button-outlined.p-button-success:not(:disabled):hover {\n background: ${dt('button.outlined.success.hover.background')};\n border-color: ${dt('button.outlined.success.border.color')};\n color: ${dt('button.outlined.success.color')};\n}\n\n.p-button-outlined.p-button-success:not(:disabled):active {\n background: ${dt('button.outlined.success.active.background')};\n border-color: ${dt('button.outlined.success.border.color')};\n color: ${dt('button.outlined.success.color')};\n}\n\n.p-button-outlined.p-button-info {\n border-color: ${dt('button.outlined.info.border.color')};\n color: ${dt('button.outlined.info.color')};\n}\n\n.p-button-outlined.p-button-info:not(:disabled):hover {\n background: ${dt('button.outlined.info.hover.background')};\n border-color: ${dt('button.outlined.info.border.color')};\n color: ${dt('button.outlined.info.color')};\n}\n\n.p-button-outlined.p-button-info:not(:disabled):active {\n background: ${dt('button.outlined.info.active.background')};\n border-color: ${dt('button.outlined.info.border.color')};\n color: ${dt('button.outlined.info.color')};\n}\n\n.p-button-outlined.p-button-warn {\n border-color: ${dt('button.outlined.warn.border.color')};\n color: ${dt('button.outlined.warn.color')};\n}\n\n.p-button-outlined.p-button-warn:not(:disabled):hover {\n background: ${dt('button.outlined.warn.hover.background')};\n border-color: ${dt('button.outlined.warn.border.color')};\n color: ${dt('button.outlined.warn.color')};\n}\n\n.p-button-outlined.p-button-warn:not(:disabled):active {\n background: ${dt('button.outlined.warn.active.background')};\n border-color: ${dt('button.outlined.warn.border.color')};\n color: ${dt('button.outlined.warn.color')};\n}\n\n.p-button-outlined.p-button-help {\n border-color: ${dt('button.outlined.help.border.color')};\n color: ${dt('button.outlined.help.color')};\n}\n\n.p-button-outlined.p-button-help:not(:disabled):hover {\n background: ${dt('button.outlined.help.hover.background')};\n border-color: ${dt('button.outlined.help.border.color')};\n color: ${dt('button.outlined.help.color')};\n}\n\n.p-button-outlined.p-button-help:not(:disabled):active {\n background: ${dt('button.outlined.help.active.background')};\n border-color: ${dt('button.outlined.help.border.color')};\n color: ${dt('button.outlined.help.color')};\n}\n\n.p-button-outlined.p-button-danger {\n border-color: ${dt('button.outlined.danger.border.color')};\n color: ${dt('button.outlined.danger.color')};\n}\n\n.p-button-outlined.p-button-danger:not(:disabled):hover {\n background: ${dt('button.outlined.danger.hover.background')};\n border-color: ${dt('button.outlined.danger.border.color')};\n color: ${dt('button.outlined.danger.color')};\n}\n\n.p-button-outlined.p-button-danger:not(:disabled):active {\n background: ${dt('button.outlined.danger.active.background')};\n border-color: ${dt('button.outlined.danger.border.color')};\n color: ${dt('button.outlined.danger.color')};\n}\n\n.p-button-outlined.p-button-contrast {\n border-color: ${dt('button.outlined.contrast.border.color')};\n color: ${dt('button.outlined.contrast.color')};\n}\n\n.p-button-outlined.p-button-contrast:not(:disabled):hover {\n background: ${dt('button.outlined.contrast.hover.background')};\n border-color: ${dt('button.outlined.contrast.border.color')};\n color: ${dt('button.outlined.contrast.color')};\n}\n\n.p-button-outlined.p-button-contrast:not(:disabled):active {\n background: ${dt('button.outlined.contrast.active.background')};\n border-color: ${dt('button.outlined.contrast.border.color')};\n color: ${dt('button.outlined.contrast.color')};\n}\n\n.p-button-outlined.p-button-plain {\n border-color: ${dt('button.outlined.plain.border.color')};\n color: ${dt('button.outlined.plain.color')};\n}\n\n.p-button-outlined.p-button-plain:not(:disabled):hover {\n background: ${dt('button.outlined.plain.hover.background')};\n border-color: ${dt('button.outlined.plain.border.color')};\n color: ${dt('button.outlined.plain.color')};\n}\n\n.p-button-outlined.p-button-plain:not(:disabled):active {\n background: ${dt('button.outlined.plain.active.background')};\n border-color: ${dt('button.outlined.plain.border.color')};\n color: ${dt('button.outlined.plain.color')};\n}\n\n.p-button-text {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.primary.color')};\n}\n\n.p-button-text:not(:disabled):hover {\n background: ${dt('button.text.primary.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.primary.color')};\n}\n\n.p-button-text:not(:disabled):active {\n background: ${dt('button.text.primary.active.background')};\n border-color: transparent;\n color: ${dt('button.text.primary.color')};\n}\n\n.p-button-text.p-button-secondary {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.secondary.color')};\n}\n\n.p-button-text.p-button-secondary:not(:disabled):hover {\n background: ${dt('button.text.secondary.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.secondary.color')};\n}\n\n.p-button-text.p-button-secondary:not(:disabled):active {\n background: ${dt('button.text.secondary.active.background')};\n border-color: transparent;\n color: ${dt('button.text.secondary.color')};\n}\n\n.p-button-text.p-button-success {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.success.color')};\n}\n\n.p-button-text.p-button-success:not(:disabled):hover {\n background: ${dt('button.text.success.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.success.color')};\n}\n\n.p-button-text.p-button-success:not(:disabled):active {\n background: ${dt('button.text.success.active.background')};\n border-color: transparent;\n color: ${dt('button.text.success.color')};\n}\n\n.p-button-text.p-button-info {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.info.color')};\n}\n\n.p-button-text.p-button-info:not(:disabled):hover {\n background: ${dt('button.text.info.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.info.color')};\n}\n\n.p-button-text.p-button-info:not(:disabled):active {\n background: ${dt('button.text.info.active.background')};\n border-color: transparent;\n color: ${dt('button.text.info.color')};\n}\n\n.p-button-text.p-button-warn {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.warn.color')};\n}\n\n.p-button-text.p-button-warn:not(:disabled):hover {\n background: ${dt('button.text.warn.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.warn.color')};\n}\n\n.p-button-text.p-button-warn:not(:disabled):active {\n background: ${dt('button.text.warn.active.background')};\n border-color: transparent;\n color: ${dt('button.text.warn.color')};\n}\n\n.p-button-text.p-button-help {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.help.color')};\n}\n\n.p-button-text.p-button-help:not(:disabled):hover {\n background: ${dt('button.text.help.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.help.color')};\n}\n\n.p-button-text.p-button-help:not(:disabled):active {\n background: ${dt('button.text.help.active.background')};\n border-color: transparent;\n color: ${dt('button.text.help.color')};\n}\n\n.p-button-text.p-button-danger {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.danger.color')};\n}\n\n.p-button-text.p-button-danger:not(:disabled):hover {\n background: ${dt('button.text.danger.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.danger.color')};\n}\n\n.p-button-text.p-button-danger:not(:disabled):active {\n background: ${dt('button.text.danger.active.background')};\n border-color: transparent;\n color: ${dt('button.text.danger.color')};\n}\n\n.p-button-text.p-button-plain {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.plain.color')};\n}\n\n.p-button-text.p-button-plain:not(:disabled):hover {\n background: ${dt('button.text.plain.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.plain.color')};\n}\n\n.p-button-text.p-button-plain:not(:disabled):active {\n background: ${dt('button.text.plain.active.background')};\n border-color: transparent;\n color: ${dt('button.text.plain.color')};\n}\n\n.p-button-text.p-button-contrast {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.text.contrast.color')};\n}\n\n.p-button-text.p-button-contrast:not(:disabled):hover {\n background: ${dt('button.text.contrast.hover.background')};\n border-color: transparent;\n color: ${dt('button.text.contrast.color')};\n}\n\n.p-button-text.p-button-contrast:not(:disabled):active {\n background: ${dt('button.text.contrast.active.background')};\n border-color: transparent;\n color: ${dt('button.text.contrast.color')};\n}\n\n.p-button-link {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.link.color')};\n}\n\n.p-button-link:not(:disabled):hover {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.link.hover.color')};\n}\n\n.p-button-link:not(:disabled):hover .p-button-label {\n text-decoration: underline;\n}\n\n.p-button-link:not(:disabled):active {\n background: transparent;\n border-color: transparent;\n color: ${dt('button.link.active.color')};\n}\n\n/* For PrimeNG */\n.p-button-icon-right {\n order: 1;\n}\n\np-button[iconpos='right'] spinnericon {\n order: 1;\n}\n`;\n\nconst classes = {\n root: ({ instance, props }) => [\n 'p-button p-component',\n {\n 'p-button-icon-only': instance.hasIcon && !props.label && !props.badge,\n 'p-button-vertical': (props.iconPos === 'top' || props.iconPos === 'bottom') && props.label,\n 'p-button-loading': props.loading,\n 'p-button-link': props.link,\n [`p-button-${props.severity}`]: props.severity,\n 'p-button-raised': props.raised,\n 'p-button-rounded': props.rounded,\n 'p-button-text': props.text,\n 'p-button-outlined': props.outlined,\n 'p-button-sm': props.size === 'small',\n 'p-button-lg': props.size === 'large',\n 'p-button-plain': props.plain,\n 'p-button-fluid': props.fluid\n }\n ],\n loadingIcon: 'p-button-loading-icon',\n icon: ({ props }) => [\n 'p-button-icon',\n {\n [`p-button-icon-${props.iconPos}`]: props.label\n }\n ],\n label: 'p-button-label'\n};\n\n@Injectable()\nexport class ButtonStyle extends BaseStyle {\n name = 'button';\n\n theme = theme;\n\n classes = classes;\n}\n\n/**\n *\n * Button is an extension to standard button element with icons and theming.\n *\n * [Live Demo](https://www.primeng.org/button/)\n *\n * @module buttonstyle\n *\n */\nexport enum ButtonClasses {\n /**\n * Class name of the root element\n */\n root = 'p-button',\n /**\n * Class name of the loading icon element\n */\n loadingIcon = 'p-button-loading-icon',\n /**\n * Class name of the icon element\n */\n icon = 'p-button-icon',\n /**\n * Class name of the label element\n */\n label = 'p-button-label'\n}\n\nexport interface ButtonStyle extends BaseStyle {}\n","import { CommonModule } from '@angular/common';\nimport {\n AfterContentInit,\n AfterViewInit,\n booleanAttribute,\n ChangeDetectionStrategy,\n Component,\n computed,\n contentChild,\n ContentChild,\n ContentChildren,\n Directive,\n EventEmitter,\n inject,\n Input,\n NgModule,\n numberAttribute,\n OnDestroy,\n Output,\n QueryList,\n SimpleChanges,\n TemplateRef,\n ViewEncapsulation\n} from '@angular/core';\nimport { addClass, findSingle, isEmpty } from '@primeuix/utils';\nimport { PrimeTemplate, SharedModule } from 'primeng/api';\nimport { AutoFocus } from 'primeng/autofocus';\nimport { BadgeModule } from 'primeng/badge';\nimport { BaseComponent } from 'primeng/basecomponent';\nimport { SpinnerIcon } from 'primeng/icons';\nimport { Ripple } from 'primeng/ripple';\nimport { ButtonProps } from './button.interface';\nimport { ButtonStyle } from './style/buttonstyle';\n\ntype ButtonIconPosition = 'left' | 'right' | 'top' | 'bottom';\n\nconst INTERNAL_BUTTON_CLASSES = {\n button: 'p-button',\n component: 'p-component',\n iconOnly: 'p-button-icon-only',\n disabled: 'p-disabled',\n loading: 'p-button-loading',\n labelOnly: 'p-button-loading-label-only'\n} as const;\n\n@Directive({\n selector: '[pButtonLabel]',\n providers: [ButtonStyle],\n standalone: true,\n host: {\n '[class.p-button-label]': 'true'\n }\n})\nexport class ButtonLabel extends BaseComponent {\n _componentStyle = inject(ButtonStyle);\n}\n\n@Directive({\n selector: '[pButtonIcon]',\n providers: [ButtonStyle],\n standalone: true,\n host: {\n '[class.p-button-icon]': 'true'\n }\n})\nexport class ButtonIcon extends BaseComponent {\n _componentStyle = inject(ButtonStyle);\n}\n/**\n * Button directive is an extension to button component.\n * @group Components\n */\n@Directive({\n selector: '[pButton]',\n standalone: true,\n providers: [ButtonStyle],\n host: {\n '[class.p-button-icon-only]': 'isIconOnly()',\n '[class.p-button-text]': 'isTextButton()'\n }\n})\nexport class ButtonDirective extends BaseComponent implements AfterViewInit, OnDestroy {\n /**\n * Position of the icon.\n * @deprecated utilize pButtonIcon and pButtonLabel directives.\n * @group Props\n */\n @Input() iconPos: ButtonIconPosition = 'left';\n /**\n * Uses to pass attributes to the loading icon's DOM element.\n * @deprecated utilize pButonIcon instead.\n * @group Props\n */\n @Input() loadingIcon: string | undefined;\n\n set label(val: string) {\n this._label = val;\n\n if (this.initialized) {\n this.updateLabel();\n this.updateIcon();\n this.setStyleClass();\n }\n }\n\n set icon(val: string) {\n this._icon = val;\n\n if (this.initialized) {\n this.updateIcon();\n this.setStyleClass();\n }\n }\n /**\n * Whether the button is in loading state.\n * @group Props\n */\n @Input() get loading(): boolean {\n return this._loading;\n }\n set loading(val: boolean) {\n this._loading = val;\n\n if (this.initialized) {\n this.updateIcon();\n this.setStyleClass();\n }\n }\n _buttonProps!: ButtonProps;\n\n private iconSignal = contentChild(ButtonIcon);\n\n private labelSignal = contentChild(ButtonLabel);\n\n isIconOnly = computed(() => !!(!this.labelSignal() && this.iconSignal()));\n\n set buttonProps(val: ButtonProps) {\n this._buttonProps = val;\n\n if (val && typeof val === 'object') {\n //@ts-ignore\n Object.entries(val).forEach(([k, v]) => this[`_${k}`] !== v && (this[`_${k}`] = v));\n }\n }\n /**\n * Defines the style of the button.\n * @group Props\n */\n @Input() severity: 'success' | 'info' | 'warn' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined;\n /**\n * Add a shadow to indicate elevation.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) raised: boolean = false;\n /**\n * Add a circular border radius to the button.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) rounded: boolean = false;\n /**\n * Add a textual class to the button without a background initially.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) text: boolean = false;\n /**\n * Add a border class without a background initially.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) outlined: boolean = false;\n /**\n * Defines the size of the button.\n * @group Props\n */\n @Input() size: 'small' | 'large' | undefined | null = null;\n /**\n * Add a plain textual class to the button without a background initially.\n * @deprecated use variant property instead.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) plain: boolean = false;\n /**\n * Spans 100% width of the container when enabled.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) fluid: boolean | undefined;\n\n public _label: string | undefined;\n\n public _icon: string | undefined;\n\n public _loading: boolean = false;\n\n public initialized: boolean | undefined;\n\n private get htmlElement(): HTMLElement {\n return this.el.nativeElement as HTMLElement;\n }\n\n private _internalClasses: string[] = Object.values(INTERNAL_BUTTON_CLASSES);\n\n isTextButton = computed(() => !!(!this.iconSignal() && this.labelSignal() && this.text));\n\n /**\n * Text of the button.\n * @deprecated use pButtonLabel directive instead.\n * @group Props\n */\n @Input() get label(): string | undefined {\n return this._label as string;\n }\n\n /**\n * Name of the icon.\n * @deprecated use pButtonIcon directive instead\n * @group Props\n */\n @Input() get icon(): string {\n return this._icon as string;\n }\n\n /**\n * Used to pass all properties of the ButtonProps to the Button component.\n * @deprecated assign props directly to the button element.\n * @group Props\n */\n @Input() get buttonProps(): ButtonProps {\n return this._buttonProps;\n }\n\n spinnerIcon = `<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" class=\"p-icon-spin\">\n <g clip-path=\"url(#clip0_417_21408)\">\n <path\n d=\"M6.99701 14C5.85441 13.999 4.72939 13.7186 3.72012 13.1832C2.71084 12.6478 1.84795 11.8737 1.20673 10.9284C0.565504 9.98305 0.165424 8.89526 0.041387 7.75989C-0.0826496 6.62453 0.073125 5.47607 0.495122 4.4147C0.917119 3.35333 1.59252 2.4113 2.46241 1.67077C3.33229 0.930247 4.37024 0.413729 5.4857 0.166275C6.60117 -0.0811796 7.76026 -0.0520535 8.86188 0.251112C9.9635 0.554278 10.9742 1.12227 11.8057 1.90555C11.915 2.01493 11.9764 2.16319 11.9764 2.31778C11.9764 2.47236 11.915 2.62062 11.8057 2.73C11.7521 2.78503 11.688 2.82877 11.6171 2.85864C11.5463 2.8885 11.4702 2.90389 11.3933 2.90389C11.3165 2.90389 11.2404 2.8885 11.1695 2.85864C11.0987 2.82877 11.0346 2.78503 10.9809 2.73C9.9998 1.81273 8.73246 1.26138 7.39226 1.16876C6.05206 1.07615 4.72086 1.44794 3.62279 2.22152C2.52471 2.99511 1.72683 4.12325 1.36345 5.41602C1.00008 6.70879 1.09342 8.08723 1.62775 9.31926C2.16209 10.5513 3.10478 11.5617 4.29713 12.1803C5.48947 12.7989 6.85865 12.988 8.17414 12.7157C9.48963 12.4435 10.6711 11.7264 11.5196 10.6854C12.3681 9.64432 12.8319 8.34282 12.8328 7C12.8328 6.84529 12.8943 6.69692 13.0038 6.58752C13.1132 6.47812 13.2616 6.41667 13.4164 6.41667C13.5712 6.41667 13.7196 6.47812 13.8291 6.58752C13.9385 6.69692 14 6.84529 14 7C14 8.85651 13.2622 10.637 11.9489 11.9497C10.6356 13.2625 8.85432 14 6.99701 14Z\"\n fill=\"currentColor\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_417_21408\">\n <rect width=\"14\" height=\"14\" fill=\"white\" />\n </clipPath>\n </defs>\n </svg>`;\n\n _componentStyle = inject(ButtonStyle);\n\n ngAfterViewInit() {\n super.ngAfterViewInit();\n addClass(this.htmlElement, this.getStyleClass().join(' '));\n\n this.createIcon();\n this.createLabel();\n\n this.initialized = true;\n }\n\n ngOnChanges(simpleChanges: SimpleChanges) {\n super.ngOnChanges(simpleChanges);\n const { buttonProps } = simpleChanges;\n\n if (buttonProps) {\n const props = buttonProps.currentValue;\n\n for (const property in props) {\n this[property] = props[property];\n }\n }\n }\n\n getStyleClass(): string[] {\n const styleClass: string[] = [INTERNAL_BUTTON_CLASSES.button, INTERNAL_BUTTON_CLASSES.component];\n\n if (this.icon && !this.label && isEmpty(this.htmlElement.textContent)) {\n styleClass.push(INTERNAL_BUTTON_CLASSES.iconOnly);\n }\n\n if (this.loading) {\n styleClass.push(INTERNAL_BUTTON_CLASSES.disabled, INTERNAL_BUTTON_CLASSES.loading);\n\n if (!this.icon && this.label) {\n styleClass.push(INTERNAL_BUTTON_CLASSES.labelOnly);\n }\n\n if (this.icon && !this.label && !isEmpty(this.htmlElement.textContent)) {\n styleClass.push(INTERNAL_BUTTON_CLASSES.iconOnly);\n }\n }\n\n if (this.text) {\n styleClass.push('p-button-text');\n }\n\n if (this.severity) {\n styleClass.push(`p-button-${this.severity}`);\n }\n\n if (this.plain) {\n styleClass.push('p-button-plain');\n }\n\n if (this.raised) {\n styleClass.push('p-button-raised');\n }\n\n if (this.size) {\n styleClass.push(`p-button-${this.size}`);\n }\n\n if (this.outlined) {\n styleClass.push('p-button-outlined');\n }\n\n if (this.rounded) {\n styleClass.push('p-button-rounded');\n }\n\n if (this.size === 'small') {\n styleClass.push('p-button-sm');\n }\n\n if (this.size === 'large') {\n styleClass.push('p-button-lg');\n }\n\n if (this.hasFluid) {\n styleClass.push('p-button-fluid');\n }\n\n return styleClass;\n }\n\n get hasFluid() {\n const nativeElement = this.el.nativeElement;\n const fluidComponent = nativeElement.closest('p-fluid');\n\n return isEmpty(this.fluid) ? !!fluidComponent : this.fluid;\n }\n\n setStyleClass() {\n const styleClass = this.getStyleClass();\n this.htmlElement.classList.remove(...this._internalClasses);\n this.htmlElement.classList.add(...styleClass);\n }\n\n createLabel() {\n const created = findSingle(this.htmlElement, '.p-button-label');\n if (!created && this.label) {\n let labelElement = this.document.createElement('span');\n if (this.icon && !this.label) {\n labelElement.setAttribute('aria-hidden', 'true');\n }\n\n labelElement.className = 'p-button-label';\n labelElement.appendChild(this.document.createTextNode(this.label));\n\n this.htmlElement.appendChild(labelElement);\n }\n }\n\n createIcon() {\n const created = findSingle(this.htmlElement, '.p-button-icon');\n if (!created && (this.icon || this.loading)) {\n let iconElement = this.document.createElement('span');\n iconElement.className = 'p-button-icon';\n iconElement.setAttribute('aria-hidden', 'true');\n let iconPosClass = this.label ? 'p-button-icon-' + this.iconPos : null;\n\n if (iconPosClass) {\n addClass(iconElement, iconPosClass);\n }\n\n let iconClass = this.getIconClass();\n\n if (iconClass) {\n addClass(iconElement, iconClass);\n }\n\n if (!this.loadingIcon && this.loading) {\n iconElement.innerHTML = this.spinnerIcon;\n }\n\n this.htmlElement.insertBefore(iconElement, this.htmlElement.firstChild);\n }\n }\n\n updateLabel() {\n let labelElement = findSingle(this.htmlElement, '.p-button-label');\n\n if (!this.label) {\n labelElement && this.htmlElement.removeChild(labelElement);\n return;\n }\n\n labelElement ? (labelElement.textContent = this.label) : this.createLabel();\n }\n\n updateIcon() {\n let iconElement = findSingle(this.htmlElement, '.p-button-icon');\n let labelElement = findSingle(this.htmlElement, '.p-button-label');\n\n if (this.loading && !this.loadingIcon && iconElement) {\n iconElement.innerHTML = this.spinnerIcon;\n } else if (iconElement?.innerHTML) {\n iconElement.innerHTML = '';\n }\n\n if (iconElement) {\n if (this.iconPos) {\n iconElement.className = 'p-button-icon ' + (labelElement ? 'p-button-icon-' + this.iconPos : '') + ' ' + this.getIconClass();\n } else {\n iconElement.className = 'p-button-icon ' + this.getIconClass();\n }\n } else {\n this.createIcon();\n }\n }\n\n getIconClass() {\n return this.loading ? 'p-button-loading-icon ' + (this.loadingIcon ? this.loadingIcon : 'p-icon') : this.icon || 'p-hidden';\n }\n\n ngOnDestroy() {\n this.initialized = false;\n super.ngOnDestroy();\n }\n}\n/**\n * Button is an extension to standard button element with icons and theming.\n * @group Components\n */\n@Component({\n selector: 'p-button',\n standalone: true,\n imports: [CommonModule, Ripple, AutoFocus, SpinnerIcon, BadgeModule, SharedModule],\n template: `\n <button\n [attr.type]=\"type\"\n [attr.aria-label]=\"ariaLabel\"\n [ngStyle]=\"style\"\n [disabled]=\"disabled || loading\"\n [ngClass]=\"buttonClass\"\n (click)=\"onClick.emit($event)\"\n (focus)=\"onFocus.emit($event)\"\n (blur)=\"onBlur.emit($event)\"\n pRipple\n [attr.data-pc-name]=\"'button'\"\n [attr.data-pc-section]=\"'root'\"\n [attr.tabindex]=\"tabindex\"\n [pAutoFocus]=\"autofocus\"\n >\n <ng-content></ng-content>\n <ng-container *ngTemplateOutlet=\"contentTemplate || _contentTemplate\"></ng-container>\n <ng-container *ngIf=\"loading\">\n <ng-container *ngIf=\"!loadingIconTemplate && !_loadingIconTemplate\">\n <span *ngIf=\"loadingIcon\" [ngClass]=\"iconClass()\" [attr.aria-hidden]=\"true\" [attr.data-pc-section]=\"'loadingicon'\"></span>\n <SpinnerIcon *ngIf=\"!loadingIcon\" [styleClass]=\"spinnerIconClass()\" [spin]=\"true\" [attr.aria-hidden]=\"true\" [attr.data-pc-section]=\"'loadingicon'\" />\n </ng-container>\n <ng-template [ngIf]=\"loadingIconTemplate || _loadingIconTemplate\" *ngTemplateOutlet=\"loadingIconTemplate || _loadingIconTemplate; context: { class: iconClass() }\"></ng-template>\n </ng-container>\n <ng-container *ngIf=\"!loading\">\n <span *ngIf=\"icon && !iconTemplate && !_iconTemplate\" [class]=\"icon\" [ngClass]=\"iconClass()\" [attr.data-pc-section]=\"'icon'\"></span>\n <ng-template [ngIf]=\"!icon && (iconTemplate || _iconTemplate)\" *ngTemplateOutlet=\"iconTemplate || _iconTemplate; context: { class: iconClass() }\"></ng-template>\n </ng-container>\n <span class=\"p-button-label\" [attr.aria-hidden]=\"icon && !label\" *ngIf=\"!contentTemplate && !_contentTemplate\" [attr.data-pc-section]=\"'label'\">{{ label || 'nbsp;' }}</span>\n <p-badge *ngIf=\"!contentTemplate && !_contentTemplate && badge\" [value]=\"badge\" [severity]=\"badgeSeverity\"></p-badge>\n </button>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n providers: [ButtonStyle]\n})\nexport class Button extends BaseComponent implements AfterContentInit {\n /**\n * Type of the button.\n * @group Props\n */\n @Input() type: string = 'button';\n /**\n * Position of the icon.\n * @group Props\n */\n @Input() iconPos: ButtonIconPosition = 'left';\n /**\n * Name of the icon.\n * @group Props\n */\n @Input() icon: string | undefined;\n /**\n * Value of the badge.\n * @group Props\n */\n @Input() badge: string | undefined;\n /**\n * Uses to pass attributes to the label's DOM element.\n * @group Props\n */\n @Input() label: string | undefined;\n /**\n * When present, it specifies that the component should be disabled.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) disabled: boolean | undefined;\n /**\n * Whether the button is in loading state.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) loading: boolean = false;\n /**\n * Icon to display in loading state.\n * @group Props\n */\n @Input() loadingIcon: string | undefined;\n /**\n * Add a shadow to indicate elevation.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) raised: boolean = false;\n /**\n * Add a circular border radius to the button.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) rounded: boolean = false;\n /**\n * Add a textual class to the button without a background initially.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) text: boolean = false;\n /**\n * Add a plain textual class to the button without a background initially.\n * @deprecated use variant property instead.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) plain: boolean = false;\n /**\n * Defines the style of the button.\n * @group Props\n */\n @Input() severity: 'success' | 'info' | 'warn' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined;\n /**\n * Add a border class without a background initially.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) outlined: boolean = false;\n /**\n * Add a link style to the button.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) link: boolean = false;\n /**\n * Add a tabindex to the button.\n * @group Props\n */\n @Input({ transform: numberAttribute }) tabindex: number | undefined;\n /**\n * Defines the size of the button.\n * @group Props\n */\n @Input() size: 'small' | 'large' | undefined;\n /**\n * Specifies the variant of the component.\n * @group Props\n */\n @Input() variant: 'outlined' | 'text' | undefined;\n /**\n * Inline style of the element.\n * @group Props\n */\n @Input() style: { [klass: string]: any } | null | undefined;\n /**\n * Class of the element.\n * @group Props\n */\n @Input() styleClass: string | undefined;\n /**\n * Style class of the badge.\n * @group Props\n * @deprecated use badgeSeverity instead.\n */\n @Input() badgeClass: string | undefined;\n /**\n * Severity type of the badge.\n * @group Props\n * @defaultValue secondary\n */\n @Input() badgeSeverity: 'success' | 'info' | 'warn' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined = 'secondary';\n /**\n * Used to define a string that autocomplete attribute the current element.\n * @group Props\n */\n @Input() ariaLabel: string | undefined;\n /**\n * When present, it specifies that the component should automatically get focus on load.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) autofocus: boolean | undefined;\n /**\n * Spans 100% width of the container when enabled.\n * @group Props\n */\n @Input({ transform: booleanAttribute }) fluid: boolean | undefined;\n /**\n * Callback to execute when button is clicked.\n * This event is intended to be used with the <p-button> component. Using a regular <button> element, use (click).\n * @param {MouseEvent} event - Mouse event.\n * @group Emits\n */\n @Output() onClick: EventEmitter<MouseEvent> = new EventEmitter();\n /**\n * Callback to execute when button is focused.\n * This event is intended to be used with the <p-button> component. Using a regular <button> element, use (focus).\n * @param {FocusEvent} event - Focus event.\n * @group Emits\n */\n @Output() onFocus: EventEmitter<FocusEvent> = new EventEmitter<FocusEvent>();\n /**\n * Callback to execute when button loses focus.\n * This event is intended to be used with the <p-button> component. Using a regular <button> element, use (blur).\n * @param {FocusEvent} event - Focus event.\n * @group Emits\n */\n @Output() onBlur: EventEmitter<FocusEvent> = new EventEmitter<FocusEvent>();\n /**\n * Template of the content.\n * @group Templates\n **/\n @ContentChild('content') contentTemplate: TemplateRef<any> | undefined;\n /**\n * Template of the loading.\n * @group Templates\n **/\n @ContentChild('loading') loadingIconTemplate: TemplateRef<any> | undefined;\n /**\n * Template of the icon.\n * @group Templates\n **/\n @ContentChild('icon') iconTemplate: TemplateRef<any> | undefined;\n\n _buttonProps: any | undefined;\n /**\n * Used to pass all properties of the ButtonProps to the Button component.\n * @group Props\n */\n @Input() get buttonProps(): any | undefined {\n return this._buttonProps;\n }\n set buttonProps(val: any | undefined) {\n this._buttonProps = val;\n\n if (val && typeof val === 'object') {\n //@ts-ignore\n Object.entries(val).forEach(([k, v]) => this[`_${k}`] !== v && (this[`_${k}`] = v));\n }\n }\n\n get hasFluid() {\n const nativeElement = this.el.nativeElement;\n const fluidComponent = nativeElement.closest('p-fluid');\n\n return isEmpty(this.fluid) ? !!fluidComponent : this.fluid;\n }\n\n _componentStyle = inject(ButtonStyle);\n\n @ContentChildren(PrimeTemplate) templates: QueryList<PrimeTemplate> | undefined;\n\n _contentTemplate: TemplateRef<any> | undefined;\n\n _iconTemplate: TemplateRef<any> | undefined;\n\n _loadingIconTemplate: TemplateRef<any> | undefined;\n\n ngAfterContentInit() {\n this.templates?.forEach((item) => {\n switch (item.getType()) {\n case 'content':\n this.contentTemplate = item.template;\n break;\n\n case 'icon':\n this.iconTemplate = item.template;\n break;\n\n case 'loadingicon':\n this.loadingIconTemplate = item.template;\n break;\n\n default:\n this.contentTemplate = item.template;\n break;\n }\n });\n }\n\n ngOnChanges(simpleChanges: SimpleChanges) {\n super.ngOnChanges(simpleChanges);\n const { buttonProps } = simpleChanges;\n\n if (buttonProps) {\n const props = buttonProps.currentValue;\n\n for (const property in props) {\n this[property] = props[property];\n }\n }\n }\n\n spinnerIconClass(): string {\n return Object.entries(this.iconClass())\n .filter(([, value]) => !!value)\n .reduce((acc, [key]) => acc + ` ${key}`, 'p-button-loading-icon');\n }\n\n iconClass() {\n return {\n [`p-button-loading-icon pi-spin ${this.loadingIcon ?? ''}`]: this.loading,\n 'p-button-icon': true,\n 'p-button-icon-left': this.iconPos === 'left' && this.label,\n 'p-button-icon-right': this.iconPos === 'right' && this.label,\n 'p-button-icon-top': this.iconPos === 'top' && this.label,\n 'p-button-icon-bottom': this.iconPos === 'bottom' && this.label\n };\n }\n\n get buttonClass() {\n return {\n 'p-button p-component': true,\n 'p-button-icon-only': (this.icon || this.iconTemplate || this.loadingIcon || this.loadingIconTemplate || this._loadingIconTemplate) && !this.label,\n 'p-button-vertical': (this.iconPos === 'top' || this.iconPos === 'bottom') && this.label,\n 'p-button-loading': this.loading,\n 'p-button-loading-label-only': this.loading && !this.icon && this.label && !this.loadingIcon && this.iconPos === 'left',\n 'p-button-link': this.link,\n [`p-button-${this.severity}`]: this.severity,\n 'p-button-raised': this.raised,\n 'p-button-rounded': this.rounded,\n 'p-button-text': this.text || this.variant == 'text',\n 'p-button-outlined': this.outlined || this.variant == 'outlined',\n 'p-button-sm': this.size === 'small',\n 'p-button-lg': this.size === 'large',\n 'p-button-plain': this.plain,\n 'p-button-fluid': this.hasFluid,\n [`${this.styleClass}`]: this.styleClass\n };\n }\n}\n\n@NgModule({\n imports: [CommonModule, ButtonDirective, Button, SharedModule, ButtonLabel, ButtonIcon],\n exports: [ButtonDirective, Button, ButtonLabel, ButtonIcon, SharedModule]\n})\nexport class ButtonModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
|
@@ -955,7 +955,7 @@ const _c5 = ["footer"];
|
|
955
955
|
const _c6 = ["footergrouped"];
|
956
956
|
const _c7 = ["summary"];
|
957
957
|
const _c8 = ["colgroup"];
|
958
|
-
const _c9 = ["
|
958
|
+
const _c9 = ["expandedrow"];
|
959
959
|
const _c10 = ["groupheader"];
|
960
960
|
const _c11 = ["groupfooter"];
|
961
961
|
const _c12 = ["frozenexpandedrow"];
|
@@ -2906,7 +2906,7 @@ class Table extends BaseComponent {
|
|
2906
2906
|
case 'colgroup':
|
2907
2907
|
this.colGroupTemplate = item.template;
|
2908
2908
|
break;
|
2909
|
-
case '
|
2909
|
+
case 'expandedrow':
|
2910
2910
|
this.expandedRowTemplate = item.template;
|
2911
2911
|
break;
|
2912
2912
|
case 'groupheader':
|
@@ -5258,7 +5258,7 @@ class Table extends BaseComponent {
|
|
5258
5258
|
args: ['colgroup', { descendants: false }]
|
5259
5259
|
}], _expandedRowTemplate: [{
|
5260
5260
|
type: ContentChild,
|
5261
|
-
args: ['
|
5261
|
+
args: ['expandedrow', { descendants: false }]
|
5262
5262
|
}], _groupHeaderTemplate: [{
|
5263
5263
|
type: ContentChild,
|
5264
5264
|
args: ['groupheader', { descendants: false }]
|