@verisoft/ui-core 21.0.8 → 21.0.10
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.
|
@@ -219,10 +219,10 @@ class BaseFormInputComponent {
|
|
|
219
219
|
}
|
|
220
220
|
return this.required;
|
|
221
221
|
}
|
|
222
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
223
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.
|
|
222
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: BaseFormInputComponent, deps: [{ token: i1.NgControl }], target: i0.ɵɵFactoryTarget.Component });
|
|
223
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.3", type: BaseFormInputComponent, isStandalone: true, selector: "ng-component", inputs: { label: "label", required: "required", readonly: "readonly", disabled: "disabled", tooltip: "tooltip", formDisplay: "formDisplay", clearable: "clearable", placeholder: "placeholder", testId: "testId" }, ngImport: i0, template: '', isInline: true, dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }] });
|
|
224
224
|
}
|
|
225
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: BaseFormInputComponent, decorators: [{
|
|
226
226
|
type: Component,
|
|
227
227
|
args: [{
|
|
228
228
|
template: '',
|
|
@@ -264,10 +264,10 @@ class ScreenSizeService {
|
|
|
264
264
|
this.isMobileBlock.next(isMobile);
|
|
265
265
|
}
|
|
266
266
|
}
|
|
267
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
268
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
267
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: ScreenSizeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
268
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: ScreenSizeService, providedIn: 'root' });
|
|
269
269
|
}
|
|
270
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
270
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: ScreenSizeService, decorators: [{
|
|
271
271
|
type: Injectable,
|
|
272
272
|
args: [{
|
|
273
273
|
providedIn: 'root',
|
|
@@ -277,18 +277,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
|
|
|
277
277
|
class DialogService {
|
|
278
278
|
showEvent = new EventEmitter();
|
|
279
279
|
closeEvent = new EventEmitter();
|
|
280
|
+
currentDialogData = null;
|
|
280
281
|
showDialog(data) {
|
|
281
282
|
const mappedData = this.mapInputAndOutpus(data);
|
|
282
|
-
|
|
283
|
+
const dialogData = {
|
|
283
284
|
...data,
|
|
284
285
|
data: mappedData,
|
|
285
|
-
}
|
|
286
|
+
};
|
|
287
|
+
this.currentDialogData = dialogData;
|
|
288
|
+
this.showEvent.emit(dialogData);
|
|
289
|
+
}
|
|
290
|
+
updateDialog(patch) {
|
|
291
|
+
if (!this.currentDialogData) {
|
|
292
|
+
return;
|
|
293
|
+
}
|
|
294
|
+
const mergedDialogData = {
|
|
295
|
+
...this.currentDialogData,
|
|
296
|
+
...patch,
|
|
297
|
+
data: this.currentDialogData.data,
|
|
298
|
+
componentType: this.currentDialogData.componentType,
|
|
299
|
+
};
|
|
300
|
+
this.currentDialogData = mergedDialogData;
|
|
301
|
+
this.showEvent.emit(mergedDialogData);
|
|
286
302
|
}
|
|
287
303
|
mapInputAndOutpus(data) {
|
|
288
304
|
const inputsAndOutputs = data.data;
|
|
289
305
|
return {
|
|
290
306
|
...data.data,
|
|
291
|
-
...
|
|
307
|
+
...Object.keys(inputsAndOutputs ?? {})
|
|
292
308
|
.filter((key) => typeof inputsAndOutputs[key] === 'function')
|
|
293
309
|
.reduce((acc, key) => {
|
|
294
310
|
acc[key] = (value) => {
|
|
@@ -297,16 +313,17 @@ class DialogService {
|
|
|
297
313
|
}
|
|
298
314
|
};
|
|
299
315
|
return acc;
|
|
300
|
-
}, {})
|
|
316
|
+
}, {}),
|
|
301
317
|
};
|
|
302
318
|
}
|
|
303
319
|
closeModal() {
|
|
320
|
+
this.currentDialogData = null;
|
|
304
321
|
this.closeEvent.emit();
|
|
305
322
|
}
|
|
306
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
307
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
323
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: DialogService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
324
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: DialogService, providedIn: 'root' });
|
|
308
325
|
}
|
|
309
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
326
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: DialogService, decorators: [{
|
|
310
327
|
type: Injectable,
|
|
311
328
|
args: [{
|
|
312
329
|
providedIn: 'root',
|
|
@@ -354,10 +371,10 @@ class PreventUnsavedChangesDirective {
|
|
|
354
371
|
});
|
|
355
372
|
return resultSubject.asObservable();
|
|
356
373
|
}
|
|
357
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
358
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
374
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: PreventUnsavedChangesDirective, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
375
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: PreventUnsavedChangesDirective, providedIn: 'root' });
|
|
359
376
|
}
|
|
360
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: PreventUnsavedChangesDirective, decorators: [{
|
|
361
378
|
type: Injectable,
|
|
362
379
|
args: [{
|
|
363
380
|
providedIn: 'root',
|
|
@@ -379,10 +396,10 @@ class TableService {
|
|
|
379
396
|
this.reload.set(Symbol());
|
|
380
397
|
}
|
|
381
398
|
}
|
|
382
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
383
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
399
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: TableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
400
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: TableService, providedIn: 'root' });
|
|
384
401
|
}
|
|
385
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: TableService, decorators: [{
|
|
386
403
|
type: Injectable,
|
|
387
404
|
args: [{
|
|
388
405
|
providedIn: 'root'
|
|
@@ -562,10 +579,10 @@ class BaseFormDirective {
|
|
|
562
579
|
}
|
|
563
580
|
}
|
|
564
581
|
}
|
|
565
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
566
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
582
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: BaseFormDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
583
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.3", type: BaseFormDirective, isStandalone: true, selector: "[v-baseForm]", inputs: { data: "data" }, outputs: { dataChange: "dataChange", statusChange: "statusChange", formSubmit: "formSubmit", formClear: "formClear" }, host: { listeners: { "window:beforeunload": "unloadHandler($event)" } }, usesOnChanges: true, ngImport: i0 });
|
|
567
584
|
}
|
|
568
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
585
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: BaseFormDirective, decorators: [{
|
|
569
586
|
type: Directive,
|
|
570
587
|
args: [{
|
|
571
588
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -593,10 +610,10 @@ class UnsubscribeComponent {
|
|
|
593
610
|
this.destroyed$.next();
|
|
594
611
|
this.destroyed$.complete();
|
|
595
612
|
}
|
|
596
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
597
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
613
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: UnsubscribeComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
614
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.3", type: UnsubscribeComponent, isStandalone: true, ngImport: i0 });
|
|
598
615
|
}
|
|
599
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: UnsubscribeComponent, decorators: [{
|
|
600
617
|
type: Directive
|
|
601
618
|
}] });
|
|
602
619
|
|
|
@@ -723,10 +740,10 @@ class DetailStoreDirective extends UnsubscribeComponent {
|
|
|
723
740
|
isStateChanged(item) {
|
|
724
741
|
return item !== this.itemCache;
|
|
725
742
|
}
|
|
726
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
727
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
743
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: DetailStoreDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
744
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.3", type: DetailStoreDirective, isStandalone: true, selector: "[v-useDetailStore]", inputs: { form: "form", detailsRepository: "detailsRepository", autoBind: "autoBind", detailId: "detailId", ngrxFeatureKey: "ngrxFeatureKey", destroyForm: "destroyForm", readonly: "readonly", readonlyControlNames: "readonlyControlNames" }, exportAs: ["useDetailStore"], usesInheritance: true, ngImport: i0 });
|
|
728
745
|
}
|
|
729
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
746
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: DetailStoreDirective, decorators: [{
|
|
730
747
|
type: Directive,
|
|
731
748
|
args: [{
|
|
732
749
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -759,10 +776,10 @@ const BREADCRUMB_COMPONENT_TOKEN = new InjectionToken('BreadcrumbComponentToken'
|
|
|
759
776
|
|
|
760
777
|
class BreadcrumbService {
|
|
761
778
|
routeChange = new EventEmitter();
|
|
762
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
763
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
779
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: BreadcrumbService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
780
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: BreadcrumbService, providedIn: 'root' });
|
|
764
781
|
}
|
|
765
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
782
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: BreadcrumbService, decorators: [{
|
|
766
783
|
type: Injectable,
|
|
767
784
|
args: [{
|
|
768
785
|
providedIn: 'root',
|
|
@@ -839,10 +856,10 @@ class BreadcrumbCoreComponent extends UnsubscribeComponent {
|
|
|
839
856
|
return this.createBreadcrumbs(child, routerLink, breadcrumbs);
|
|
840
857
|
}
|
|
841
858
|
}
|
|
842
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
843
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
859
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: BreadcrumbCoreComponent, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
860
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.3", type: BreadcrumbCoreComponent, isStandalone: true, inputs: { items: "items", homeRoute: "homeRoute", useHomeRoute: "useHomeRoute" }, usesInheritance: true, ngImport: i0 });
|
|
844
861
|
}
|
|
845
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
862
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: BreadcrumbCoreComponent, decorators: [{
|
|
846
863
|
type: Directive,
|
|
847
864
|
args: [{}]
|
|
848
865
|
}], propDecorators: { items: [{
|
|
@@ -896,10 +913,10 @@ const PAGE_HEADER_COMPONENT_TOKEN = new InjectionToken('PageHeaderComponentToken
|
|
|
896
913
|
|
|
897
914
|
class PageHeaderService {
|
|
898
915
|
pageHeader = new EventEmitter();
|
|
899
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
900
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
916
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: PageHeaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
917
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: PageHeaderService, providedIn: 'root' });
|
|
901
918
|
}
|
|
902
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: PageHeaderService, decorators: [{
|
|
903
920
|
type: Injectable,
|
|
904
921
|
args: [{
|
|
905
922
|
providedIn: 'root',
|
|
@@ -935,10 +952,10 @@ class PageHeaderCoreComponent extends UnsubscribeComponent {
|
|
|
935
952
|
locationBack() {
|
|
936
953
|
history.back();
|
|
937
954
|
}
|
|
938
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
939
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
955
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: PageHeaderCoreComponent, deps: [{ token: i1$1.Router }, { token: i0.ChangeDetectorRef }, { token: PageHeaderService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
956
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.3", type: PageHeaderCoreComponent, isStandalone: true, inputs: { title: "title", subtitle: "subtitle", showBackButton: "showBackButton", size: "size" }, usesInheritance: true, ngImport: i0 });
|
|
940
957
|
}
|
|
941
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
958
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: PageHeaderCoreComponent, decorators: [{
|
|
942
959
|
type: Directive,
|
|
943
960
|
args: [{}]
|
|
944
961
|
}], ctorParameters: () => [{ type: i1$1.Router }, { type: i0.ChangeDetectorRef }, { type: PageHeaderService }], propDecorators: { title: [{
|
|
@@ -1008,10 +1025,10 @@ class SideMenuService {
|
|
|
1008
1025
|
}
|
|
1009
1026
|
}
|
|
1010
1027
|
}
|
|
1011
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1012
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
1028
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: SideMenuService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1029
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: SideMenuService, providedIn: 'root' });
|
|
1013
1030
|
}
|
|
1014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1031
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: SideMenuService, decorators: [{
|
|
1015
1032
|
type: Injectable,
|
|
1016
1033
|
args: [{ providedIn: 'root' }]
|
|
1017
1034
|
}] });
|
|
@@ -1024,10 +1041,10 @@ class SideMenuProviderService {
|
|
|
1024
1041
|
this.menuService = menuService;
|
|
1025
1042
|
menuService.setMenu(menu);
|
|
1026
1043
|
}
|
|
1027
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1028
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
1044
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: SideMenuProviderService, deps: [{ token: MENU_TOKEN, optional: true }, { token: SideMenuService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1045
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: SideMenuProviderService });
|
|
1029
1046
|
}
|
|
1030
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1047
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: SideMenuProviderService, decorators: [{
|
|
1031
1048
|
type: Injectable
|
|
1032
1049
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
1033
1050
|
type: Optional
|
|
@@ -1048,10 +1065,10 @@ class MenuServiceDirective extends UnsubscribeComponent {
|
|
|
1048
1065
|
});
|
|
1049
1066
|
this.cdr.detectChanges();
|
|
1050
1067
|
}
|
|
1051
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1052
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
1068
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: MenuServiceDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1069
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.3", type: MenuServiceDirective, isStandalone: true, selector: "v-side-menu[useMenuService]", exportAs: ["useMenuService"], usesInheritance: true, ngImport: i0 });
|
|
1053
1070
|
}
|
|
1054
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1071
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: MenuServiceDirective, decorators: [{
|
|
1055
1072
|
type: Directive,
|
|
1056
1073
|
args: [{
|
|
1057
1074
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -1249,8 +1266,8 @@ class TableColumnDirective {
|
|
|
1249
1266
|
visible: this.visible,
|
|
1250
1267
|
};
|
|
1251
1268
|
}
|
|
1252
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1253
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
1269
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: TableColumnDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1270
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.3", type: TableColumnDirective, isStandalone: true, selector: "v-table-column", inputs: { index: "index", id: "id", columnClass: "columnClass", sortable: "sortable", routerLink: "routerLink", queryParams: "queryParams", headerName: "headerName", width: "width", textAlign: "textAlign", format: "format", forceVisibility: "forceVisibility", visible: "visible" }, providers: [
|
|
1254
1271
|
{
|
|
1255
1272
|
provide: TABLE_COLUMN_PROVIDER,
|
|
1256
1273
|
useExisting: TableColumnDirective,
|
|
@@ -1258,7 +1275,7 @@ class TableColumnDirective {
|
|
|
1258
1275
|
},
|
|
1259
1276
|
], queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0 });
|
|
1260
1277
|
}
|
|
1261
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: TableColumnDirective, decorators: [{
|
|
1262
1279
|
type: Directive,
|
|
1263
1280
|
args: [{
|
|
1264
1281
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -1374,10 +1391,10 @@ class TableBuilder {
|
|
|
1374
1391
|
build() {
|
|
1375
1392
|
return this.columns;
|
|
1376
1393
|
}
|
|
1377
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1378
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
1394
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: TableBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1395
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: TableBuilder, providedIn: 'root' });
|
|
1379
1396
|
}
|
|
1380
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1397
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: TableBuilder, decorators: [{
|
|
1381
1398
|
type: Injectable,
|
|
1382
1399
|
args: [{
|
|
1383
1400
|
providedIn: 'root',
|
|
@@ -1414,15 +1431,15 @@ class IconsComponent {
|
|
|
1414
1431
|
size = input(...(ngDevMode ? [undefined, { debugName: "size" }] : []));
|
|
1415
1432
|
severity = input(...(ngDevMode ? [undefined, { debugName: "severity" }] : []));
|
|
1416
1433
|
class = input(...(ngDevMode ? [undefined, { debugName: "class" }] : []));
|
|
1417
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1418
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.
|
|
1434
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: IconsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1435
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.3", type: IconsComponent, isStandalone: true, selector: "ng-component", inputs: { library: { classPropertyName: "library", publicName: "library", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: true, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, severity: { classPropertyName: "severity", publicName: "severity", isSignal: true, isRequired: false, transformFunction: null }, class: { classPropertyName: "class", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
1419
1436
|
{
|
|
1420
1437
|
provide: ICONS_COMPONENT_TOKEN,
|
|
1421
1438
|
useExisting: IconsComponent
|
|
1422
1439
|
}
|
|
1423
1440
|
], ngImport: i0, template: '', isInline: true });
|
|
1424
1441
|
}
|
|
1425
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: IconsComponent, decorators: [{
|
|
1426
1443
|
type: Component,
|
|
1427
1444
|
args: [{
|
|
1428
1445
|
standalone: true,
|
|
@@ -1581,10 +1598,10 @@ class DatasourceDirective extends UnsubscribeComponent {
|
|
|
1581
1598
|
setComponentProperties(component, value);
|
|
1582
1599
|
this.changeDetectorRef.detectChanges();
|
|
1583
1600
|
}
|
|
1584
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1585
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
1601
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: DatasourceDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1602
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.3", type: DatasourceDirective, isStandalone: true, selector: "v-dropdown[useDatasource], v-multiselect[useDatasource], v-generic-field[useDatasource]", inputs: { datasource: "datasource", autoBind: "autoBind", loadingText: "loadingText", filterField: "filterField", transformFn: "transformFn", extraFilter: "extraFilter" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
1586
1603
|
}
|
|
1587
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: DatasourceDirective, decorators: [{
|
|
1588
1605
|
type: Directive,
|
|
1589
1606
|
args: [{
|
|
1590
1607
|
selector:
|
|
@@ -1696,10 +1713,10 @@ class TableDatasourceDirective extends UnsubscribeComponent {
|
|
|
1696
1713
|
total,
|
|
1697
1714
|
});
|
|
1698
1715
|
}
|
|
1699
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1700
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
1716
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: TableDatasourceDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1717
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.3", type: TableDatasourceDirective, isStandalone: true, selector: "v-table[useDatasource]", inputs: { autoBind: "autoBind", tableName: "tableName", debounceTime: "debounceTime", datasource: "datasource", extraFilter: "extraFilter", transformFn: "transformFn" }, exportAs: ["useDatasource"], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
1701
1718
|
}
|
|
1702
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1719
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: TableDatasourceDirective, decorators: [{
|
|
1703
1720
|
type: Directive,
|
|
1704
1721
|
args: [{
|
|
1705
1722
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -1743,10 +1760,10 @@ class ButtonShortCutDirective {
|
|
|
1743
1760
|
}
|
|
1744
1761
|
}
|
|
1745
1762
|
}
|
|
1746
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1747
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
1763
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: ButtonShortCutDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1764
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.3", type: ButtonShortCutDirective, isStandalone: true, selector: "v-button[useShortCut]", inputs: { shortCutFn: "shortCutFn", shortCutKey: "shortCutKey" }, host: { listeners: { "document:keydown": "onKeyDown($event)", "document:keyup": "onKeyUp($event)" } }, exportAs: ["useShortCut"], ngImport: i0 });
|
|
1748
1765
|
}
|
|
1749
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1766
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: ButtonShortCutDirective, decorators: [{
|
|
1750
1767
|
type: Directive,
|
|
1751
1768
|
args: [{
|
|
1752
1769
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -1801,10 +1818,10 @@ class TableFilterDirective {
|
|
|
1801
1818
|
.pipe(debounceTime(this.filterComponent.debounceTime ? 0 : DEFAULT_DEBOUNCE_TIME))
|
|
1802
1819
|
.subscribe((value) => this.onFilterChange(value));
|
|
1803
1820
|
}
|
|
1804
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1805
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
1821
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: TableFilterDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1822
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.1.3", type: TableFilterDirective, isStandalone: true, selector: "v-table[useFilter]", inputs: { filterComponent: "filterComponent" }, exportAs: ["tableFilterDirective"], usesOnChanges: true, ngImport: i0 });
|
|
1806
1823
|
}
|
|
1807
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1824
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: TableFilterDirective, decorators: [{
|
|
1808
1825
|
type: Directive,
|
|
1809
1826
|
args: [{
|
|
1810
1827
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -1864,10 +1881,10 @@ class ErrorPipe {
|
|
|
1864
1881
|
}
|
|
1865
1882
|
return EMPTY$1;
|
|
1866
1883
|
}
|
|
1867
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1868
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
1884
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: ErrorPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1885
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.1.3", ngImport: i0, type: ErrorPipe, isStandalone: true, name: "error" });
|
|
1869
1886
|
}
|
|
1870
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1887
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: ErrorPipe, decorators: [{
|
|
1871
1888
|
type: Pipe,
|
|
1872
1889
|
args: [{
|
|
1873
1890
|
name: 'error',
|
|
@@ -1895,10 +1912,10 @@ class WarningPipe {
|
|
|
1895
1912
|
}
|
|
1896
1913
|
return EMPTY;
|
|
1897
1914
|
}
|
|
1898
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1899
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
1915
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: WarningPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1916
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.1.3", ngImport: i0, type: WarningPipe, isStandalone: true, name: "warning" });
|
|
1900
1917
|
}
|
|
1901
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1918
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: WarningPipe, decorators: [{
|
|
1902
1919
|
type: Pipe,
|
|
1903
1920
|
args: [{
|
|
1904
1921
|
name: 'warning',
|
|
@@ -1923,10 +1940,10 @@ class KeyOrFunctionPipe {
|
|
|
1923
1940
|
}
|
|
1924
1941
|
return '';
|
|
1925
1942
|
}
|
|
1926
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1927
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
1943
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: KeyOrFunctionPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1944
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.1.3", ngImport: i0, type: KeyOrFunctionPipe, isStandalone: true, name: "keyOrFn", pure: false });
|
|
1928
1945
|
}
|
|
1929
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1946
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: KeyOrFunctionPipe, decorators: [{
|
|
1930
1947
|
type: Pipe,
|
|
1931
1948
|
args: [{
|
|
1932
1949
|
name: 'keyOrFn',
|
|
@@ -1944,10 +1961,10 @@ class EnumToListPipe {
|
|
|
1944
1961
|
value: data[key],
|
|
1945
1962
|
}));
|
|
1946
1963
|
}
|
|
1947
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1948
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
1964
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: EnumToListPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1965
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.1.3", ngImport: i0, type: EnumToListPipe, isStandalone: true, name: "enumToList" });
|
|
1949
1966
|
}
|
|
1950
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1967
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: EnumToListPipe, decorators: [{
|
|
1951
1968
|
type: Pipe,
|
|
1952
1969
|
args: [{
|
|
1953
1970
|
name: 'enumToList',
|