integra-ng 21.0.22 → 21.0.24
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/integra-ng.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { take, takeUntil, switchMap, map } from 'rxjs/operators';
|
|
|
8
8
|
import { Subject, BehaviorSubject, of, forkJoin, filter } from 'rxjs';
|
|
9
9
|
import * as i2 from '@angular/router';
|
|
10
10
|
import { RouterLink, RouterLinkActive, NavigationEnd, RouterOutlet } from '@angular/router';
|
|
11
|
-
import { trigger, state,
|
|
11
|
+
import { trigger, state, style, transition, animate } from '@angular/animations';
|
|
12
12
|
import { CdkVirtualScrollViewport, CdkVirtualForOf, CdkFixedSizeVirtualScroll } from '@angular/cdk/scrolling';
|
|
13
13
|
import { Chart, registerables } from 'chart.js';
|
|
14
14
|
import * as i1$2 from '@angular/platform-browser';
|
|
@@ -2146,11 +2146,11 @@ class IDialogActions {
|
|
|
2146
2146
|
this.submitEvent.emit();
|
|
2147
2147
|
}
|
|
2148
2148
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.3", ngImport: i0, type: IDialogActions, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2149
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.0.3", type: IDialogActions, isStandalone: true, selector: "i-dialog-actions", inputs: { submitLabel: "submitLabel", cancelLabel: "cancelLabel", severity: "severity", showCancel: "showCancel", showSubmit: "showSubmit", submitDisabled: "submitDisabled" }, outputs: { cancelEvent: "cancelEvent", submitEvent: "submitEvent" }, ngImport: i0, template: "<div class=\"dialog-actions\">\n @if (showCancel) {\n <i-button [text]=\"true\" severity=\"secondary\" (click)=\"onCancel()\">{{\n cancelLabel\n }}</i-button>\n }\n @if (showSubmit) {\n <i-button\n [outlined]=\"true\"\n [severity]=\"severity\"\n [disabled]=\"submitDisabled\"\n (click)=\"onSubmit()\"\n >{{ submitLabel }}</i-button\n >\n }\n</div>\n", styles: [".dialog-actions{display:flex;justify-content:flex-end;flex-wrap:wrap;gap:6px}\n"], dependencies: [{ kind: "component", type: IButton, selector: "i-button", inputs: ["severity", "size", "type", "disabled", "outlined", "raised", "text", "icon", "fluid", "loading"], outputs: ["clicked"] }] });
|
|
2149
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.0.3", type: IDialogActions, isStandalone: true, selector: "i-dialog-actions", inputs: { submitLabel: "submitLabel", cancelLabel: "cancelLabel", severity: "severity", showCancel: "showCancel", showSubmit: "showSubmit", submitDisabled: "submitDisabled" }, outputs: { cancelEvent: "cancelEvent", submitEvent: "submitEvent" }, ngImport: i0, template: "<div class=\"dialog-actions\">\n @if (showCancel) {\n <i-button [text]=\"true\" severity=\"secondary\" (click)=\"onCancel()\">{{\n cancelLabel\n }}</i-button>\n }\n @if (showSubmit) {\n <i-button\n [outlined]=\"true\"\n [severity]=\"severity\"\n [disabled]=\"submitDisabled\"\n type=\"submit\"\n (click)=\"onSubmit()\"\n >{{ submitLabel }}</i-button\n >\n }\n</div>\n", styles: [".dialog-actions{display:flex;justify-content:flex-end;flex-wrap:wrap;gap:6px}\n"], dependencies: [{ kind: "component", type: IButton, selector: "i-button", inputs: ["severity", "size", "type", "disabled", "outlined", "raised", "text", "icon", "fluid", "loading"], outputs: ["clicked"] }] });
|
|
2150
2150
|
}
|
|
2151
2151
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.3", ngImport: i0, type: IDialogActions, decorators: [{
|
|
2152
2152
|
type: Component,
|
|
2153
|
-
args: [{ selector: 'i-dialog-actions', imports: [IButton], template: "<div class=\"dialog-actions\">\n @if (showCancel) {\n <i-button [text]=\"true\" severity=\"secondary\" (click)=\"onCancel()\">{{\n cancelLabel\n }}</i-button>\n }\n @if (showSubmit) {\n <i-button\n [outlined]=\"true\"\n [severity]=\"severity\"\n [disabled]=\"submitDisabled\"\n (click)=\"onSubmit()\"\n >{{ submitLabel }}</i-button\n >\n }\n</div>\n", styles: [".dialog-actions{display:flex;justify-content:flex-end;flex-wrap:wrap;gap:6px}\n"] }]
|
|
2153
|
+
args: [{ selector: 'i-dialog-actions', imports: [IButton], template: "<div class=\"dialog-actions\">\n @if (showCancel) {\n <i-button [text]=\"true\" severity=\"secondary\" (click)=\"onCancel()\">{{\n cancelLabel\n }}</i-button>\n }\n @if (showSubmit) {\n <i-button\n [outlined]=\"true\"\n [severity]=\"severity\"\n [disabled]=\"submitDisabled\"\n type=\"submit\"\n (click)=\"onSubmit()\"\n >{{ submitLabel }}</i-button\n >\n }\n</div>\n", styles: [".dialog-actions{display:flex;justify-content:flex-end;flex-wrap:wrap;gap:6px}\n"] }]
|
|
2154
2154
|
}], propDecorators: { submitLabel: [{
|
|
2155
2155
|
type: Input
|
|
2156
2156
|
}], cancelLabel: [{
|