@js-smart/ng-kit 20.4.0 → 20.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/js-smart-ng-kit.mjs +240 -224
- package/fesm2022/js-smart-ng-kit.mjs.map +1 -1
- package/index.d.ts +85 -77
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { inject, ChangeDetectorRef, input, signal, output, effect, Component,
|
|
3
|
-
import
|
|
4
|
-
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
2
|
+
import { inject, ChangeDetectorRef, input, signal, output, effect, Component, Pipe, Injectable, HostListener, ViewChild, forwardRef, Input, Optional, Directive, ElementRef, Renderer2, Inject, computed } from '@angular/core';
|
|
3
|
+
import { trigger, state, transition, style, animate } from '@angular/animations';
|
|
5
4
|
import { BehaviorSubject, Subject, throttleTime } from 'rxjs';
|
|
6
5
|
import { filter, takeUntil, startWith, map } from 'rxjs/operators';
|
|
7
|
-
import
|
|
8
|
-
import * as i1$1 from '@angular/
|
|
6
|
+
import * as i1 from '@angular/platform-browser';
|
|
7
|
+
import * as i1$1 from '@angular/material/progress-spinner';
|
|
8
|
+
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
9
9
|
import { AsyncPipe } from '@angular/common';
|
|
10
10
|
import * as i1$2 from '@angular/forms';
|
|
11
11
|
import { FormControl, ReactiveFormsModule, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
@@ -117,33 +117,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImpor
|
|
|
117
117
|
args: [{ selector: 'lib-alert, alert', template: "@if (open()) {\n\t<div class=\"row {{ class() }}\">\n\t\t<div class=\"col-xs-12 col-sm-12 col-md-auto mx-auto\">\n\t\t\t<div class=\"alert alert-{{ type() }} alert-dismissible alert_div\" role=\"alert\">\n\t\t\t\t<ng-content></ng-content>\n\t\t\t\t@if (dismissible()) {\n\t\t\t\t\t<button (click)=\"closeAlert()\" aria-label=\"Close\" class=\"btn-close\" data-bs-dismiss=\"alert\" type=\"button\"></button>\n\t\t\t\t}\n\t\t\t</div>\n\t\t</div>\n\t</div>\n}\n", styles: [".alert_div{display:flex;align-items:center;justify-content:center}\n"] }]
|
|
118
118
|
}], ctorParameters: () => [] });
|
|
119
119
|
|
|
120
|
-
class SpinnerComponent {
|
|
121
|
-
constructor() {
|
|
122
|
-
/**
|
|
123
|
-
* Use Boostrap Spinner. Default `true`
|
|
124
|
-
*/
|
|
125
|
-
this.bootstrapSpinner = input(true, ...(ngDevMode ? [{ debugName: "bootstrapSpinner" }] : []));
|
|
126
|
-
/**
|
|
127
|
-
* Diameter of the Angular Material spinner
|
|
128
|
-
*/
|
|
129
|
-
this.diameter = input(50, ...(ngDevMode ? [{ debugName: "diameter" }] : []));
|
|
130
|
-
/**
|
|
131
|
-
* Color of the Angular Material spinner
|
|
132
|
-
*/
|
|
133
|
-
this.color = input('primary', ...(ngDevMode ? [{ debugName: "color" }] : []));
|
|
134
|
-
/**
|
|
135
|
-
* Stroke Width of the Angular Material spinner
|
|
136
|
-
*/
|
|
137
|
-
this.strokeWidth = input(5, ...(ngDevMode ? [{ debugName: "strokeWidth" }] : []));
|
|
138
|
-
}
|
|
139
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SpinnerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
140
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.0", type: SpinnerComponent, isStandalone: true, selector: "spinner,lib-spinner", inputs: { bootstrapSpinner: { classPropertyName: "bootstrapSpinner", publicName: "bootstrapSpinner", isSignal: true, isRequired: false, transformFunction: null }, diameter: { classPropertyName: "diameter", publicName: "diameter", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null }, strokeWidth: { classPropertyName: "strokeWidth", publicName: "strokeWidth", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<!-- Angular Material Spinner -->\n@if (!bootstrapSpinner()) {\n\t<mat-spinner [color]=\"color()\" [diameter]=\"diameter()\" [strokeWidth]=\"strokeWidth()\" class=\"mx-auto\"> </mat-spinner>\n}\n\n<!-- Bootstrap Spinner -->\n@if (bootstrapSpinner()) {\n\t<div class=\"d-flex justify-content-center\">\n\t\t<div class=\"spinner-border bs-spinner\" role=\"status\"></div>\n\t</div>\n}\n", styles: [".bs-spinner-sm{color:#3f51b5;margin-bottom:20px}.bs-spinner{color:#3f51b5;width:3rem;height:3rem;margin-bottom:20px}.bs-spinner-lg{color:#3f51b5;width:5rem;height:5rem;margin-bottom:20px}\n"], dependencies: [{ kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i1.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }] }); }
|
|
141
|
-
}
|
|
142
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SpinnerComponent, decorators: [{
|
|
143
|
-
type: Component,
|
|
144
|
-
args: [{ selector: 'spinner,lib-spinner', imports: [MatProgressSpinnerModule], template: "<!-- Angular Material Spinner -->\n@if (!bootstrapSpinner()) {\n\t<mat-spinner [color]=\"color()\" [diameter]=\"diameter()\" [strokeWidth]=\"strokeWidth()\" class=\"mx-auto\"> </mat-spinner>\n}\n\n<!-- Bootstrap Spinner -->\n@if (bootstrapSpinner()) {\n\t<div class=\"d-flex justify-content-center\">\n\t\t<div class=\"spinner-border bs-spinner\" role=\"status\"></div>\n\t</div>\n}\n", styles: [".bs-spinner-sm{color:#3f51b5;margin-bottom:20px}.bs-spinner{color:#3f51b5;width:3rem;height:3rem;margin-bottom:20px}.bs-spinner-lg{color:#3f51b5;width:5rem;height:5rem;margin-bottom:20px}\n"] }]
|
|
145
|
-
}] });
|
|
146
|
-
|
|
147
120
|
const LOADERS = {
|
|
148
121
|
'ball-clip-rotate': 1,
|
|
149
122
|
};
|
|
@@ -160,6 +133,27 @@ class NgxSpinner {
|
|
|
160
133
|
}
|
|
161
134
|
}
|
|
162
135
|
|
|
136
|
+
class SafeHtmlPipe {
|
|
137
|
+
constructor(_sanitizer) {
|
|
138
|
+
this._sanitizer = _sanitizer;
|
|
139
|
+
}
|
|
140
|
+
transform(v) {
|
|
141
|
+
if (v) {
|
|
142
|
+
return this._sanitizer.bypassSecurityTrustHtml(v);
|
|
143
|
+
}
|
|
144
|
+
return undefined;
|
|
145
|
+
}
|
|
146
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SafeHtmlPipe, deps: [{ token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
147
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.0", ngImport: i0, type: SafeHtmlPipe, isStandalone: true, name: "safeHtml" }); }
|
|
148
|
+
}
|
|
149
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SafeHtmlPipe, decorators: [{
|
|
150
|
+
type: Pipe,
|
|
151
|
+
args: [{
|
|
152
|
+
name: 'safeHtml',
|
|
153
|
+
standalone: true,
|
|
154
|
+
}]
|
|
155
|
+
}], ctorParameters: () => [{ type: i1.DomSanitizer }] });
|
|
156
|
+
|
|
163
157
|
class NgxSpinnerService {
|
|
164
158
|
constructor() {
|
|
165
159
|
/**
|
|
@@ -226,27 +220,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImpor
|
|
|
226
220
|
}]
|
|
227
221
|
}] });
|
|
228
222
|
|
|
229
|
-
class SafeHtmlPipe {
|
|
230
|
-
constructor(_sanitizer) {
|
|
231
|
-
this._sanitizer = _sanitizer;
|
|
232
|
-
}
|
|
233
|
-
transform(v) {
|
|
234
|
-
if (v) {
|
|
235
|
-
return this._sanitizer.bypassSecurityTrustHtml(v);
|
|
236
|
-
}
|
|
237
|
-
return undefined;
|
|
238
|
-
}
|
|
239
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SafeHtmlPipe, deps: [{ token: i1$1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
240
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.0", ngImport: i0, type: SafeHtmlPipe, isStandalone: true, name: "safeHtml" }); }
|
|
241
|
-
}
|
|
242
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SafeHtmlPipe, decorators: [{
|
|
243
|
-
type: Pipe,
|
|
244
|
-
args: [{
|
|
245
|
-
name: 'safeHtml',
|
|
246
|
-
standalone: true,
|
|
247
|
-
}]
|
|
248
|
-
}], ctorParameters: () => [{ type: i1$1.DomSanitizer }] });
|
|
249
|
-
|
|
250
223
|
class NgxSpinnerComponent {
|
|
251
224
|
/**
|
|
252
225
|
* Creates an instance of NgxSpinnerComponent.
|
|
@@ -422,6 +395,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImpor
|
|
|
422
395
|
args: ['document:keydown', ['$event']]
|
|
423
396
|
}] } });
|
|
424
397
|
|
|
398
|
+
class SpinnerComponent {
|
|
399
|
+
constructor() {
|
|
400
|
+
/**
|
|
401
|
+
* Use Boostrap Spinner. Default `true`
|
|
402
|
+
*/
|
|
403
|
+
this.bootstrapSpinner = input(true, ...(ngDevMode ? [{ debugName: "bootstrapSpinner" }] : []));
|
|
404
|
+
/**
|
|
405
|
+
* Diameter of the Angular Material spinner
|
|
406
|
+
*/
|
|
407
|
+
this.diameter = input(50, ...(ngDevMode ? [{ debugName: "diameter" }] : []));
|
|
408
|
+
/**
|
|
409
|
+
* Color of the Angular Material spinner
|
|
410
|
+
*/
|
|
411
|
+
this.color = input('primary', ...(ngDevMode ? [{ debugName: "color" }] : []));
|
|
412
|
+
/**
|
|
413
|
+
* Stroke Width of the Angular Material spinner
|
|
414
|
+
*/
|
|
415
|
+
this.strokeWidth = input(5, ...(ngDevMode ? [{ debugName: "strokeWidth" }] : []));
|
|
416
|
+
}
|
|
417
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SpinnerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
418
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.0", type: SpinnerComponent, isStandalone: true, selector: "spinner,lib-spinner", inputs: { bootstrapSpinner: { classPropertyName: "bootstrapSpinner", publicName: "bootstrapSpinner", isSignal: true, isRequired: false, transformFunction: null }, diameter: { classPropertyName: "diameter", publicName: "diameter", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null }, strokeWidth: { classPropertyName: "strokeWidth", publicName: "strokeWidth", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<!-- Angular Material Spinner -->\n@if (!bootstrapSpinner()) {\n\t<mat-spinner [color]=\"color()\" [diameter]=\"diameter()\" [strokeWidth]=\"strokeWidth()\" class=\"mx-auto\"> </mat-spinner>\n}\n\n<!-- Bootstrap Spinner -->\n@if (bootstrapSpinner()) {\n\t<div class=\"d-flex justify-content-center\">\n\t\t<div class=\"spinner-border bs-spinner\" role=\"status\"></div>\n\t</div>\n}\n", styles: [".bs-spinner-sm{color:#3f51b5;margin-bottom:20px}.bs-spinner{color:#3f51b5;width:3rem;height:3rem;margin-bottom:20px}.bs-spinner-lg{color:#3f51b5;width:5rem;height:5rem;margin-bottom:20px}\n"], dependencies: [{ kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i1$1.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }] }); }
|
|
419
|
+
}
|
|
420
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SpinnerComponent, decorators: [{
|
|
421
|
+
type: Component,
|
|
422
|
+
args: [{ selector: 'spinner,lib-spinner', imports: [MatProgressSpinnerModule], template: "<!-- Angular Material Spinner -->\n@if (!bootstrapSpinner()) {\n\t<mat-spinner [color]=\"color()\" [diameter]=\"diameter()\" [strokeWidth]=\"strokeWidth()\" class=\"mx-auto\"> </mat-spinner>\n}\n\n<!-- Bootstrap Spinner -->\n@if (bootstrapSpinner()) {\n\t<div class=\"d-flex justify-content-center\">\n\t\t<div class=\"spinner-border bs-spinner\" role=\"status\"></div>\n\t</div>\n}\n", styles: [".bs-spinner-sm{color:#3f51b5;margin-bottom:20px}.bs-spinner{color:#3f51b5;width:3rem;height:3rem;margin-bottom:20px}.bs-spinner-lg{color:#3f51b5;width:5rem;height:5rem;margin-bottom:20px}\n"] }]
|
|
423
|
+
}] });
|
|
424
|
+
|
|
425
425
|
/**
|
|
426
426
|
* Reusable Auto Complete component that extends MatAutoComplete to show Clear icon and Arrow buttons
|
|
427
427
|
*
|
|
@@ -1023,6 +1023,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImpor
|
|
|
1023
1023
|
`, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"] }]
|
|
1024
1024
|
}], ctorParameters: () => [] });
|
|
1025
1025
|
|
|
1026
|
+
class CloseButtonDirective {
|
|
1027
|
+
constructor() {
|
|
1028
|
+
this.elementRef = inject(ElementRef);
|
|
1029
|
+
this.renderer = inject(Renderer2);
|
|
1030
|
+
this.renderer.addClass(this.elementRef.nativeElement, 'secondary-button');
|
|
1031
|
+
}
|
|
1032
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: CloseButtonDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1033
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.0", type: CloseButtonDirective, isStandalone: true, selector: "[closeButton]", ngImport: i0 }); }
|
|
1034
|
+
}
|
|
1035
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: CloseButtonDirective, decorators: [{
|
|
1036
|
+
type: Directive,
|
|
1037
|
+
args: [{
|
|
1038
|
+
selector: '[closeButton]',
|
|
1039
|
+
}]
|
|
1040
|
+
}], ctorParameters: () => [] });
|
|
1041
|
+
|
|
1026
1042
|
class DeleteButtonComponent extends BaseButtonComponent {
|
|
1027
1043
|
constructor() {
|
|
1028
1044
|
super();
|
|
@@ -1081,16 +1097,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImpor
|
|
|
1081
1097
|
`, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"] }]
|
|
1082
1098
|
}], ctorParameters: () => [] });
|
|
1083
1099
|
|
|
1084
|
-
|
|
1100
|
+
const EDIT_ICON = `
|
|
1101
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
1102
|
+
<path d="M490.3 40.4C512.2 62.27 512.2 97.73 490.3 119.6L460.3 149.7L362.3 51.72L392.4 21.66C414.3-.2135 449.7-.2135 471.6 21.66L490.3 40.4zM172.4 241.7L339.7 74.34L437.7 172.3L270.3 339.6C264.2 345.8 256.7 350.4 248.4 353.2L159.6 382.8C150.1 385.6 141.5 383.4 135 376.1C128.6 370.5 126.4 361 129.2 352.4L158.8 263.6C161.6 255.3 166.2 247.8 172.4 241.7V241.7zM192 63.1C209.7 63.1 224 78.33 224 95.1C224 113.7 209.7 127.1 192 127.1H96C78.33 127.1 64 142.3 64 159.1V416C64 433.7 78.33 448 96 448H352C369.7 448 384 433.7 384 416V319.1C384 302.3 398.3 287.1 416 287.1C433.7 287.1 448 302.3 448 319.1V416C448 469 405 512 352 512H96C42.98 512 0 469 0 416V159.1C0 106.1 42.98 63.1 96 63.1H192z"/>
|
|
1103
|
+
</svg>
|
|
1104
|
+
`;
|
|
1105
|
+
class EditSolidSvgComponent {
|
|
1106
|
+
constructor(iconRegistry, sanitizer) {
|
|
1107
|
+
iconRegistry.addSvgIconLiteral('edit-solid', sanitizer.bypassSecurityTrustHtml(EDIT_ICON));
|
|
1108
|
+
}
|
|
1109
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EditSolidSvgComponent, deps: [{ token: i1$4.MatIconRegistry }, { token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1110
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.0", type: EditSolidSvgComponent, isStandalone: true, selector: "edit-solid-svg", ngImport: i0, template: ` <mat-icon aria-hidden="false" aria-label="Edit" svgIcon="edit-solid"></mat-icon> `, isInline: true, styles: [".mat-icon{vertical-align:bottom;padding-left:5px}\n"], dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i1$4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); }
|
|
1111
|
+
}
|
|
1112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EditSolidSvgComponent, decorators: [{
|
|
1113
|
+
type: Component,
|
|
1114
|
+
args: [{ selector: 'edit-solid-svg', imports: [MatIconModule], template: ` <mat-icon aria-hidden="false" aria-label="Edit" svgIcon="edit-solid"></mat-icon> `, styles: [".mat-icon{vertical-align:bottom;padding-left:5px}\n"] }]
|
|
1115
|
+
}], ctorParameters: () => [{ type: i1$4.MatIconRegistry }, { type: i1.DomSanitizer }] });
|
|
1116
|
+
|
|
1117
|
+
class EditBsButtonComponent extends BaseButtonComponent {
|
|
1085
1118
|
constructor() {
|
|
1086
1119
|
super();
|
|
1087
1120
|
this.label = input('Edit', ...(ngDevMode ? [{ debugName: "label" }] : []));
|
|
1088
|
-
this.
|
|
1089
|
-
this.classes = input('primary-button', ...(ngDevMode ? [{ debugName: "classes" }] : []));
|
|
1121
|
+
this.classes = input('text-primary', ...(ngDevMode ? [{ debugName: "classes" }] : []));
|
|
1090
1122
|
}
|
|
1091
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type:
|
|
1092
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.1.0", type:
|
|
1123
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EditBsButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1124
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.1.0", type: EditBsButtonComponent, isStandalone: true, selector: "edit-bs-button", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, classes: { classPropertyName: "classes", publicName: "classes", isSignal: true, isRequired: false, transformFunction: null } }, usesInheritance: true, ngImport: i0, template: `
|
|
1093
1125
|
<button
|
|
1126
|
+
color="primary"
|
|
1127
|
+
type="{{ type() }}"
|
|
1094
1128
|
class="{{ classes() }}"
|
|
1095
1129
|
(click)="onClick.emit($event)"
|
|
1096
1130
|
(focus)="onFocus.emit($event)"
|
|
@@ -1100,17 +1134,19 @@ class EditButtonComponent extends BaseButtonComponent {
|
|
|
1100
1134
|
[disabled]="disabled()"
|
|
1101
1135
|
[type]="type()"
|
|
1102
1136
|
[style]="style()"
|
|
1103
|
-
[attr.data-cy]="'edit-button'"
|
|
1104
|
-
mat-
|
|
1105
|
-
<
|
|
1137
|
+
[attr.data-cy]="'edit-bs-button'"
|
|
1138
|
+
mat-button>
|
|
1139
|
+
<edit-solid-svg></edit-solid-svg>
|
|
1106
1140
|
{{ label() }}
|
|
1107
1141
|
</button>
|
|
1108
|
-
`, isInline: true, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"], dependencies: [{ kind: "component", type: MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "
|
|
1142
|
+
`, isInline: true, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$3.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: EditSolidSvgComponent, selector: "edit-solid-svg" }] }); }
|
|
1109
1143
|
}
|
|
1110
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type:
|
|
1144
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EditBsButtonComponent, decorators: [{
|
|
1111
1145
|
type: Component,
|
|
1112
|
-
args: [{ selector: 'edit-button', imports: [
|
|
1146
|
+
args: [{ selector: 'edit-bs-button', imports: [MatButtonModule, MatIconModule, EditSolidSvgComponent], template: `
|
|
1113
1147
|
<button
|
|
1148
|
+
color="primary"
|
|
1149
|
+
type="{{ type() }}"
|
|
1114
1150
|
class="{{ classes() }}"
|
|
1115
1151
|
(click)="onClick.emit($event)"
|
|
1116
1152
|
(focus)="onFocus.emit($event)"
|
|
@@ -1120,42 +1156,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImpor
|
|
|
1120
1156
|
[disabled]="disabled()"
|
|
1121
1157
|
[type]="type()"
|
|
1122
1158
|
[style]="style()"
|
|
1123
|
-
[attr.data-cy]="'edit-button'"
|
|
1124
|
-
mat-
|
|
1125
|
-
<
|
|
1159
|
+
[attr.data-cy]="'edit-bs-button'"
|
|
1160
|
+
mat-button>
|
|
1161
|
+
<edit-solid-svg></edit-solid-svg>
|
|
1126
1162
|
{{ label() }}
|
|
1127
1163
|
</button>
|
|
1128
1164
|
`, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"] }]
|
|
1129
1165
|
}], ctorParameters: () => [] });
|
|
1130
1166
|
|
|
1131
|
-
|
|
1132
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
1133
|
-
<path d="M490.3 40.4C512.2 62.27 512.2 97.73 490.3 119.6L460.3 149.7L362.3 51.72L392.4 21.66C414.3-.2135 449.7-.2135 471.6 21.66L490.3 40.4zM172.4 241.7L339.7 74.34L437.7 172.3L270.3 339.6C264.2 345.8 256.7 350.4 248.4 353.2L159.6 382.8C150.1 385.6 141.5 383.4 135 376.1C128.6 370.5 126.4 361 129.2 352.4L158.8 263.6C161.6 255.3 166.2 247.8 172.4 241.7V241.7zM192 63.1C209.7 63.1 224 78.33 224 95.1C224 113.7 209.7 127.1 192 127.1H96C78.33 127.1 64 142.3 64 159.1V416C64 433.7 78.33 448 96 448H352C369.7 448 384 433.7 384 416V319.1C384 302.3 398.3 287.1 416 287.1C433.7 287.1 448 302.3 448 319.1V416C448 469 405 512 352 512H96C42.98 512 0 469 0 416V159.1C0 106.1 42.98 63.1 96 63.1H192z"/>
|
|
1134
|
-
</svg>
|
|
1135
|
-
`;
|
|
1136
|
-
class EditSolidSvgComponent {
|
|
1137
|
-
constructor(iconRegistry, sanitizer) {
|
|
1138
|
-
iconRegistry.addSvgIconLiteral('edit-solid', sanitizer.bypassSecurityTrustHtml(EDIT_ICON));
|
|
1139
|
-
}
|
|
1140
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EditSolidSvgComponent, deps: [{ token: i1$4.MatIconRegistry }, { token: i1$1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1141
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.0", type: EditSolidSvgComponent, isStandalone: true, selector: "edit-solid-svg", ngImport: i0, template: ` <mat-icon aria-hidden="false" aria-label="Edit" svgIcon="edit-solid"></mat-icon> `, isInline: true, styles: [".mat-icon{vertical-align:bottom;padding-left:5px}\n"], dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i1$4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); }
|
|
1142
|
-
}
|
|
1143
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EditSolidSvgComponent, decorators: [{
|
|
1144
|
-
type: Component,
|
|
1145
|
-
args: [{ selector: 'edit-solid-svg', imports: [MatIconModule], template: ` <mat-icon aria-hidden="false" aria-label="Edit" svgIcon="edit-solid"></mat-icon> `, styles: [".mat-icon{vertical-align:bottom;padding-left:5px}\n"] }]
|
|
1146
|
-
}], ctorParameters: () => [{ type: i1$4.MatIconRegistry }, { type: i1$1.DomSanitizer }] });
|
|
1147
|
-
|
|
1148
|
-
class EditBsButtonComponent extends BaseButtonComponent {
|
|
1167
|
+
class EditButtonComponent extends BaseButtonComponent {
|
|
1149
1168
|
constructor() {
|
|
1150
1169
|
super();
|
|
1151
1170
|
this.label = input('Edit', ...(ngDevMode ? [{ debugName: "label" }] : []));
|
|
1152
|
-
this.
|
|
1171
|
+
this.icon = input('edit', ...(ngDevMode ? [{ debugName: "icon" }] : []));
|
|
1172
|
+
this.classes = input('primary-button', ...(ngDevMode ? [{ debugName: "classes" }] : []));
|
|
1153
1173
|
}
|
|
1154
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type:
|
|
1155
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.1.0", type:
|
|
1174
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EditButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1175
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.1.0", type: EditButtonComponent, isStandalone: true, selector: "edit-button", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, classes: { classPropertyName: "classes", publicName: "classes", isSignal: true, isRequired: false, transformFunction: null } }, usesInheritance: true, ngImport: i0, template: `
|
|
1156
1176
|
<button
|
|
1157
|
-
color="primary"
|
|
1158
|
-
type="{{ type() }}"
|
|
1159
1177
|
class="{{ classes() }}"
|
|
1160
1178
|
(click)="onClick.emit($event)"
|
|
1161
1179
|
(focus)="onFocus.emit($event)"
|
|
@@ -1165,19 +1183,17 @@ class EditBsButtonComponent extends BaseButtonComponent {
|
|
|
1165
1183
|
[disabled]="disabled()"
|
|
1166
1184
|
[type]="type()"
|
|
1167
1185
|
[style]="style()"
|
|
1168
|
-
[attr.data-cy]="'edit-
|
|
1169
|
-
mat-button>
|
|
1170
|
-
<
|
|
1186
|
+
[attr.data-cy]="'edit-button'"
|
|
1187
|
+
mat-raised-button>
|
|
1188
|
+
<mat-icon>{{ icon() }}</mat-icon>
|
|
1171
1189
|
{{ label() }}
|
|
1172
1190
|
</button>
|
|
1173
|
-
`, isInline: true, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"], dependencies: [{ kind: "
|
|
1191
|
+
`, isInline: true, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"], dependencies: [{ kind: "component", type: MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); }
|
|
1174
1192
|
}
|
|
1175
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type:
|
|
1193
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EditButtonComponent, decorators: [{
|
|
1176
1194
|
type: Component,
|
|
1177
|
-
args: [{ selector: 'edit-
|
|
1195
|
+
args: [{ selector: 'edit-button', imports: [MatButton, MatIcon], template: `
|
|
1178
1196
|
<button
|
|
1179
|
-
color="primary"
|
|
1180
|
-
type="{{ type() }}"
|
|
1181
1197
|
class="{{ classes() }}"
|
|
1182
1198
|
(click)="onClick.emit($event)"
|
|
1183
1199
|
(focus)="onFocus.emit($event)"
|
|
@@ -1187,9 +1203,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImpor
|
|
|
1187
1203
|
[disabled]="disabled()"
|
|
1188
1204
|
[type]="type()"
|
|
1189
1205
|
[style]="style()"
|
|
1190
|
-
[attr.data-cy]="'edit-
|
|
1191
|
-
mat-button>
|
|
1192
|
-
<
|
|
1206
|
+
[attr.data-cy]="'edit-button'"
|
|
1207
|
+
mat-raised-button>
|
|
1208
|
+
<mat-icon>{{ icon() }}</mat-icon>
|
|
1193
1209
|
{{ label() }}
|
|
1194
1210
|
</button>
|
|
1195
1211
|
`, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"] }]
|
|
@@ -1244,6 +1260,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImpor
|
|
|
1244
1260
|
`, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"] }]
|
|
1245
1261
|
}], ctorParameters: () => [] });
|
|
1246
1262
|
|
|
1263
|
+
class ExcelExportButtonComponent {
|
|
1264
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ExcelExportButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1265
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.0", type: ExcelExportButtonComponent, isStandalone: true, selector: "excel-export-button", ngImport: i0, template: ` <button class="excel-export-button" mat-raised-button type="button" data-cy="excel-export-button">Excel</button> `, isInline: true, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n", ".excel-export-button{margin-left:20px!important;margin-right:20px!important;width:100px;color:#fff!important;background-color:#006400!important;border-radius:24px!important}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$3.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); }
|
|
1266
|
+
}
|
|
1267
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ExcelExportButtonComponent, decorators: [{
|
|
1268
|
+
type: Component,
|
|
1269
|
+
args: [{ selector: 'excel-export-button', imports: [MatButtonModule], template: ` <button class="excel-export-button" mat-raised-button type="button" data-cy="excel-export-button">Excel</button> `, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n", ".excel-export-button{margin-left:20px!important;margin-right:20px!important;width:100px;color:#fff!important;background-color:#006400!important;border-radius:24px!important}\n"] }]
|
|
1270
|
+
}] });
|
|
1271
|
+
|
|
1247
1272
|
class ManageButtonComponent extends BaseButtonComponent {
|
|
1248
1273
|
constructor() {
|
|
1249
1274
|
super();
|
|
@@ -1287,6 +1312,74 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImpor
|
|
|
1287
1312
|
`, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"] }]
|
|
1288
1313
|
}], ctorParameters: () => [] });
|
|
1289
1314
|
|
|
1315
|
+
class PdfExportButtonComponent {
|
|
1316
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: PdfExportButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1317
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.0", type: PdfExportButtonComponent, isStandalone: true, selector: "pdf-export-button", ngImport: i0, template: ` <button class="pdf-export-button" mat-raised-button type="button" data-cy="pdf-export-button">PDF</button> `, isInline: true, styles: [".pdf-export-button{margin-left:20px!important;width:100px;color:#fff!important;background-color:#a3071b!important;border-radius:24px!important}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$3.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); }
|
|
1318
|
+
}
|
|
1319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: PdfExportButtonComponent, decorators: [{
|
|
1320
|
+
type: Component,
|
|
1321
|
+
args: [{ selector: 'pdf-export-button', imports: [MatButtonModule], template: ` <button class="pdf-export-button" mat-raised-button type="button" data-cy="pdf-export-button">PDF</button> `, styles: [".pdf-export-button{margin-left:20px!important;width:100px;color:#fff!important;background-color:#a3071b!important;border-radius:24px!important}\n"] }]
|
|
1322
|
+
}] });
|
|
1323
|
+
|
|
1324
|
+
class PrimaryButtonComponent extends BaseButtonComponent {
|
|
1325
|
+
constructor() {
|
|
1326
|
+
super();
|
|
1327
|
+
this.loadingLabel = input('Saving...', ...(ngDevMode ? [{ debugName: "loadingLabel" }] : []));
|
|
1328
|
+
this.label = input('Save', ...(ngDevMode ? [{ debugName: "label" }] : []));
|
|
1329
|
+
this.icon = input('save', ...(ngDevMode ? [{ debugName: "icon" }] : []));
|
|
1330
|
+
this.showIcon = input(false, ...(ngDevMode ? [{ debugName: "showIcon" }] : []));
|
|
1331
|
+
this.classes = input('btn-primary primary-button', ...(ngDevMode ? [{ debugName: "classes" }] : []));
|
|
1332
|
+
}
|
|
1333
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: PrimaryButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1334
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.0", type: PrimaryButtonComponent, isStandalone: true, selector: "primary-button", inputs: { loadingLabel: { classPropertyName: "loadingLabel", publicName: "loadingLabel", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, classes: { classPropertyName: "classes", publicName: "classes", isSignal: true, isRequired: false, transformFunction: null } }, usesInheritance: true, ngImport: i0, template: `
|
|
1335
|
+
<button
|
|
1336
|
+
mat-raised-button
|
|
1337
|
+
class="btn {{ classes() }}"
|
|
1338
|
+
(click)="onClick.emit($event)"
|
|
1339
|
+
(focus)="onFocus.emit($event)"
|
|
1340
|
+
(blur)="onBlur.emit($event)"
|
|
1341
|
+
(keydown)="onKeyDown.emit($event)"
|
|
1342
|
+
(keyup)="onKeyUp.emit($event)"
|
|
1343
|
+
[disabled]="disabled() || loading()"
|
|
1344
|
+
[type]="type()"
|
|
1345
|
+
[style]="style()"
|
|
1346
|
+
[attr.data-cy]="'primary-button'">
|
|
1347
|
+
@if (loading()) {
|
|
1348
|
+
<span aria-hidden="true" class="spinner-border spinner-border-sm" role="status"></span>
|
|
1349
|
+
}
|
|
1350
|
+
@if (!loading() && showIcon()) {
|
|
1351
|
+
<mat-icon>{{ icon() }}</mat-icon>
|
|
1352
|
+
}
|
|
1353
|
+
{{ loading() ? loadingLabel() : label() }}
|
|
1354
|
+
</button>
|
|
1355
|
+
`, isInline: true, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"], dependencies: [{ kind: "component", type: MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); }
|
|
1356
|
+
}
|
|
1357
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: PrimaryButtonComponent, decorators: [{
|
|
1358
|
+
type: Component,
|
|
1359
|
+
args: [{ selector: 'primary-button', imports: [MatButton, MatIcon], template: `
|
|
1360
|
+
<button
|
|
1361
|
+
mat-raised-button
|
|
1362
|
+
class="btn {{ classes() }}"
|
|
1363
|
+
(click)="onClick.emit($event)"
|
|
1364
|
+
(focus)="onFocus.emit($event)"
|
|
1365
|
+
(blur)="onBlur.emit($event)"
|
|
1366
|
+
(keydown)="onKeyDown.emit($event)"
|
|
1367
|
+
(keyup)="onKeyUp.emit($event)"
|
|
1368
|
+
[disabled]="disabled() || loading()"
|
|
1369
|
+
[type]="type()"
|
|
1370
|
+
[style]="style()"
|
|
1371
|
+
[attr.data-cy]="'primary-button'">
|
|
1372
|
+
@if (loading()) {
|
|
1373
|
+
<span aria-hidden="true" class="spinner-border spinner-border-sm" role="status"></span>
|
|
1374
|
+
}
|
|
1375
|
+
@if (!loading() && showIcon()) {
|
|
1376
|
+
<mat-icon>{{ icon() }}</mat-icon>
|
|
1377
|
+
}
|
|
1378
|
+
{{ loading() ? loadingLabel() : label() }}
|
|
1379
|
+
</button>
|
|
1380
|
+
`, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"] }]
|
|
1381
|
+
}], ctorParameters: () => [] });
|
|
1382
|
+
|
|
1290
1383
|
class SavePrimaryButtonComponent extends BaseButtonComponent {
|
|
1291
1384
|
constructor() {
|
|
1292
1385
|
super();
|
|
@@ -1548,83 +1641,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImpor
|
|
|
1548
1641
|
`, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"] }]
|
|
1549
1642
|
}], ctorParameters: () => [] });
|
|
1550
1643
|
|
|
1551
|
-
class PrimaryButtonComponent extends BaseButtonComponent {
|
|
1552
|
-
constructor() {
|
|
1553
|
-
super();
|
|
1554
|
-
this.loadingLabel = input('Saving...', ...(ngDevMode ? [{ debugName: "loadingLabel" }] : []));
|
|
1555
|
-
this.label = input('Save', ...(ngDevMode ? [{ debugName: "label" }] : []));
|
|
1556
|
-
this.icon = input('save', ...(ngDevMode ? [{ debugName: "icon" }] : []));
|
|
1557
|
-
this.showIcon = input(false, ...(ngDevMode ? [{ debugName: "showIcon" }] : []));
|
|
1558
|
-
this.classes = input('btn-primary primary-button', ...(ngDevMode ? [{ debugName: "classes" }] : []));
|
|
1559
|
-
}
|
|
1560
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: PrimaryButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1561
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.0", type: PrimaryButtonComponent, isStandalone: true, selector: "primary-button", inputs: { loadingLabel: { classPropertyName: "loadingLabel", publicName: "loadingLabel", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, classes: { classPropertyName: "classes", publicName: "classes", isSignal: true, isRequired: false, transformFunction: null } }, usesInheritance: true, ngImport: i0, template: `
|
|
1562
|
-
<button
|
|
1563
|
-
mat-raised-button
|
|
1564
|
-
class="btn {{ classes() }}"
|
|
1565
|
-
(click)="onClick.emit($event)"
|
|
1566
|
-
(focus)="onFocus.emit($event)"
|
|
1567
|
-
(blur)="onBlur.emit($event)"
|
|
1568
|
-
(keydown)="onKeyDown.emit($event)"
|
|
1569
|
-
(keyup)="onKeyUp.emit($event)"
|
|
1570
|
-
[disabled]="disabled() || loading()"
|
|
1571
|
-
[type]="type()"
|
|
1572
|
-
[style]="style()"
|
|
1573
|
-
[attr.data-cy]="'primary-button'">
|
|
1574
|
-
@if (loading()) {
|
|
1575
|
-
<span aria-hidden="true" class="spinner-border spinner-border-sm" role="status"></span>
|
|
1576
|
-
}
|
|
1577
|
-
@if (!loading() && showIcon()) {
|
|
1578
|
-
<mat-icon>{{ icon() }}</mat-icon>
|
|
1579
|
-
}
|
|
1580
|
-
{{ loading() ? loadingLabel() : label() }}
|
|
1581
|
-
</button>
|
|
1582
|
-
`, isInline: true, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"], dependencies: [{ kind: "component", type: MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); }
|
|
1583
|
-
}
|
|
1584
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: PrimaryButtonComponent, decorators: [{
|
|
1585
|
-
type: Component,
|
|
1586
|
-
args: [{ selector: 'primary-button', imports: [MatButton, MatIcon], template: `
|
|
1587
|
-
<button
|
|
1588
|
-
mat-raised-button
|
|
1589
|
-
class="btn {{ classes() }}"
|
|
1590
|
-
(click)="onClick.emit($event)"
|
|
1591
|
-
(focus)="onFocus.emit($event)"
|
|
1592
|
-
(blur)="onBlur.emit($event)"
|
|
1593
|
-
(keydown)="onKeyDown.emit($event)"
|
|
1594
|
-
(keyup)="onKeyUp.emit($event)"
|
|
1595
|
-
[disabled]="disabled() || loading()"
|
|
1596
|
-
[type]="type()"
|
|
1597
|
-
[style]="style()"
|
|
1598
|
-
[attr.data-cy]="'primary-button'">
|
|
1599
|
-
@if (loading()) {
|
|
1600
|
-
<span aria-hidden="true" class="spinner-border spinner-border-sm" role="status"></span>
|
|
1601
|
-
}
|
|
1602
|
-
@if (!loading() && showIcon()) {
|
|
1603
|
-
<mat-icon>{{ icon() }}</mat-icon>
|
|
1604
|
-
}
|
|
1605
|
-
{{ loading() ? loadingLabel() : label() }}
|
|
1606
|
-
</button>
|
|
1607
|
-
`, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n"] }]
|
|
1608
|
-
}], ctorParameters: () => [] });
|
|
1609
|
-
|
|
1610
|
-
class PdfExportButtonComponent {
|
|
1611
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: PdfExportButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1612
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.0", type: PdfExportButtonComponent, isStandalone: true, selector: "pdf-export-button", ngImport: i0, template: ` <button class="pdf-export-button" mat-raised-button type="button" data-cy="pdf-export-button">PDF</button> `, isInline: true, styles: [".pdf-export-button{margin-left:20px!important;width:100px;color:#fff!important;background-color:#a3071b!important;border-radius:24px!important}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$3.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); }
|
|
1613
|
-
}
|
|
1614
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: PdfExportButtonComponent, decorators: [{
|
|
1615
|
-
type: Component,
|
|
1616
|
-
args: [{ selector: 'pdf-export-button', imports: [MatButtonModule], template: ` <button class="pdf-export-button" mat-raised-button type="button" data-cy="pdf-export-button">PDF</button> `, styles: [".pdf-export-button{margin-left:20px!important;width:100px;color:#fff!important;background-color:#a3071b!important;border-radius:24px!important}\n"] }]
|
|
1617
|
-
}] });
|
|
1618
|
-
|
|
1619
|
-
class ExcelExportButtonComponent {
|
|
1620
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ExcelExportButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1621
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.0", type: ExcelExportButtonComponent, isStandalone: true, selector: "excel-export-button", ngImport: i0, template: ` <button class="excel-export-button" mat-raised-button type="button" data-cy="excel-export-button">Excel</button> `, isInline: true, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n", ".excel-export-button{margin-left:20px!important;margin-right:20px!important;width:100px;color:#fff!important;background-color:#006400!important;border-radius:24px!important}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$3.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); }
|
|
1622
|
-
}
|
|
1623
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ExcelExportButtonComponent, decorators: [{
|
|
1624
|
-
type: Component,
|
|
1625
|
-
args: [{ selector: 'excel-export-button', imports: [MatButtonModule], template: ` <button class="excel-export-button" mat-raised-button type="button" data-cy="excel-export-button">Excel</button> `, styles: [".primary-button,.primary-button:hover,.primary-button:active,.primary-button:visited{color:#fff!important;background-color:var(--primary-color)!important}.secondary-button,.secondary-button:hover,.secondary-button:active,.secondary-button:visited{color:#fff!important;background-color:var(--secondary-color)!important}.success-button,.success-button:hover,.success-button:active,.success-button:visited{color:#fff!important;background-color:var(--success-color)!important}.delete-button,.delete-button:hover,.delete-button:active,.success-button:visited{color:#fff!important;background-color:var(--delete-color)!important}\n", ".excel-export-button{margin-left:20px!important;margin-right:20px!important;width:100px;color:#fff!important;background-color:#006400!important;border-radius:24px!important}\n"] }]
|
|
1626
|
-
}] });
|
|
1627
|
-
|
|
1628
1644
|
class ConfirmDialogComponent {
|
|
1629
1645
|
constructor(data, dialogRef) {
|
|
1630
1646
|
this.data = data;
|
|
@@ -1839,51 +1855,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImpor
|
|
|
1839
1855
|
}]
|
|
1840
1856
|
}] });
|
|
1841
1857
|
|
|
1842
|
-
/**
|
|
1843
|
-
* A core store class that can be used to store any object
|
|
1844
|
-
*
|
|
1845
|
-
* @author Pavan Kumar Jadda
|
|
1846
|
-
* @since 17.1.0
|
|
1847
|
-
*/
|
|
1848
|
-
class Store {
|
|
1849
|
-
constructor() {
|
|
1850
|
-
this._data = signal(null, ...(ngDevMode ? [{ debugName: "_data" }] : []));
|
|
1851
|
-
// The data property is a computed property that returns the value of the _data signal
|
|
1852
|
-
this.data = computed(() => this._data(), ...(ngDevMode ? [{ debugName: "data" }] : []));
|
|
1853
|
-
}
|
|
1854
|
-
// Add initialization method
|
|
1855
|
-
initialize(initialData) {
|
|
1856
|
-
this._data.set(initialData);
|
|
1857
|
-
}
|
|
1858
|
-
/**
|
|
1859
|
-
* Update the data in the store with the new data
|
|
1860
|
-
*
|
|
1861
|
-
* @param newData The new data to be stored/updated
|
|
1862
|
-
*
|
|
1863
|
-
* @author Pavan Kumar Jadda
|
|
1864
|
-
* @since 17.1.0
|
|
1865
|
-
*/
|
|
1866
|
-
update(newData) {
|
|
1867
|
-
this._data.set(newData);
|
|
1868
|
-
}
|
|
1869
|
-
// Add clear method
|
|
1870
|
-
clear() {
|
|
1871
|
-
this._data.set(null);
|
|
1872
|
-
}
|
|
1873
|
-
// Add getter with null check
|
|
1874
|
-
getData() {
|
|
1875
|
-
return this._data();
|
|
1876
|
-
}
|
|
1877
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: Store, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1878
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: Store, providedIn: 'root' }); }
|
|
1879
|
-
}
|
|
1880
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: Store, decorators: [{
|
|
1881
|
-
type: Injectable,
|
|
1882
|
-
args: [{
|
|
1883
|
-
providedIn: 'root',
|
|
1884
|
-
}]
|
|
1885
|
-
}] });
|
|
1886
|
-
|
|
1887
1858
|
/**
|
|
1888
1859
|
* A core entity store class that stores a list of objects. This has list of methods to perform CRUD operations on the list of objects.
|
|
1889
1860
|
*
|
|
@@ -1971,6 +1942,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImpor
|
|
|
1971
1942
|
}]
|
|
1972
1943
|
}] });
|
|
1973
1944
|
|
|
1945
|
+
/**
|
|
1946
|
+
* A core store class that can be used to store any object
|
|
1947
|
+
*
|
|
1948
|
+
* @author Pavan Kumar Jadda
|
|
1949
|
+
* @since 17.1.0
|
|
1950
|
+
*/
|
|
1951
|
+
class Store {
|
|
1952
|
+
constructor() {
|
|
1953
|
+
this._data = signal(null, ...(ngDevMode ? [{ debugName: "_data" }] : []));
|
|
1954
|
+
// The data property is a computed property that returns the value of the _data signal
|
|
1955
|
+
this.data = computed(() => this._data(), ...(ngDevMode ? [{ debugName: "data" }] : []));
|
|
1956
|
+
}
|
|
1957
|
+
// Add initialization method
|
|
1958
|
+
initialize(initialData) {
|
|
1959
|
+
this._data.set(initialData);
|
|
1960
|
+
}
|
|
1961
|
+
/**
|
|
1962
|
+
* Update the data in the store with the new data
|
|
1963
|
+
*
|
|
1964
|
+
* @param newData The new data to be stored/updated
|
|
1965
|
+
*
|
|
1966
|
+
* @author Pavan Kumar Jadda
|
|
1967
|
+
* @since 17.1.0
|
|
1968
|
+
*/
|
|
1969
|
+
update(newData) {
|
|
1970
|
+
this._data.set(newData);
|
|
1971
|
+
}
|
|
1972
|
+
// Add clear method
|
|
1973
|
+
clear() {
|
|
1974
|
+
this._data.set(null);
|
|
1975
|
+
}
|
|
1976
|
+
// Add getter with null check
|
|
1977
|
+
getData() {
|
|
1978
|
+
return this._data();
|
|
1979
|
+
}
|
|
1980
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: Store, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1981
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: Store, providedIn: 'root' }); }
|
|
1982
|
+
}
|
|
1983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: Store, decorators: [{
|
|
1984
|
+
type: Injectable,
|
|
1985
|
+
args: [{
|
|
1986
|
+
providedIn: 'root',
|
|
1987
|
+
}]
|
|
1988
|
+
}] });
|
|
1989
|
+
|
|
1974
1990
|
/**
|
|
1975
1991
|
* Initialize Loading or Update ProgressState
|
|
1976
1992
|
*
|
|
@@ -2054,5 +2070,5 @@ const markError = (progressState, message) => {
|
|
|
2054
2070
|
* Generated bundle index. Do not edit.
|
|
2055
2071
|
*/
|
|
2056
2072
|
|
|
2057
|
-
export { AlertComponent, AutocompleteComponent, BsLinkButtonComponent, ConfirmDialogComponent, DeleteButtonComponent, EditBsButtonComponent, EditButtonComponent, EditSolidSvgComponent, EditSvgIconButtonComponent, EntityStore, ExcelExportButtonComponent, ManageButtonComponent, MatSnackBarService, NgxPrintDirective, NgxSpinnerComponent, NgxSpinnerService, PdfExportButtonComponent, PreventMultipleClicksDirective, PrimaryButtonComponent, SavePrimaryButtonComponent, SearchButtonComponent, SpinnerComponent, Store, SuccessButtonComponent, ViewButtonComponent, ViewPrimaryButtonComponent, initializeState, markError, markLoading, markSuccess };
|
|
2073
|
+
export { AlertComponent, AutocompleteComponent, BsLinkButtonComponent, CloseButtonDirective, ConfirmDialogComponent, DeleteButtonComponent, EditBsButtonComponent, EditButtonComponent, EditSolidSvgComponent, EditSvgIconButtonComponent, EntityStore, ExcelExportButtonComponent, ManageButtonComponent, MatSnackBarService, NgxPrintDirective, NgxSpinnerComponent, NgxSpinnerService, PdfExportButtonComponent, PreventMultipleClicksDirective, PrimaryButtonComponent, SavePrimaryButtonComponent, SearchButtonComponent, SpinnerComponent, Store, SuccessButtonComponent, ViewButtonComponent, ViewPrimaryButtonComponent, initializeState, markError, markLoading, markSuccess };
|
|
2058
2074
|
//# sourceMappingURL=js-smart-ng-kit.mjs.map
|