@saydar/table-builder 1.0.1 → 1.0.2-beta.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/saydar-table-builder.mjs +1327 -1607
- package/fesm2022/saydar-table-builder.mjs.map +1 -1
- package/package.json +1 -1
- package/types/saydar-table-builder.d.ts +223 -269
|
@@ -1,65 +1,39 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { TemplateRef, ViewContainerRef, Injector, OnDestroy, PipeTransform, Predicate,
|
|
2
|
+
import { TemplateRef, ViewContainerRef, Injector, OnDestroy, PipeTransform, Predicate, ElementRef, AfterViewInit, EventEmitter, QueryList, Renderer2, SimpleChanges, AfterContentInit, OnInit, ComponentFactoryResolver, ChangeDetectorRef, ModuleWithProviders } from '@angular/core';
|
|
3
3
|
import * as rxjs from 'rxjs';
|
|
4
4
|
import { Observable, Subscription, Subject, Unsubscribable, ReplaySubject, BehaviorSubject, OperatorFunction, MonoTypeOperatorFunction } from 'rxjs';
|
|
5
5
|
import { ComponentStore } from '@ngrx/component-store';
|
|
6
6
|
import { HttpErrorResponse } from '@angular/common/http';
|
|
7
7
|
import * as _saydar_table_builder from '@saydar/table-builder';
|
|
8
|
-
import * as
|
|
8
|
+
import * as i5 from '@angular/router';
|
|
9
9
|
import { QueryParamsHandling } from '@angular/router';
|
|
10
|
-
import * as i23 from '@angular/material/sort';
|
|
11
10
|
import { Sort, SortDirection as SortDirection$1, MatSort } from '@angular/material/sort';
|
|
12
|
-
import * as
|
|
11
|
+
import * as i1 from '@angular/common';
|
|
12
|
+
import { DatePipe, CurrencyPipe } from '@angular/common';
|
|
13
|
+
import * as _ngrx_store from '@ngrx/store';
|
|
14
|
+
import { Store, Action, MemoizedSelector } from '@ngrx/store';
|
|
15
|
+
import * as i3 from '@ngrx/effects';
|
|
16
|
+
import * as i4 from '@angular/forms';
|
|
17
|
+
import { NgControl, ControlValueAccessor } from '@angular/forms';
|
|
18
|
+
import * as i6 from '@ngrx/component';
|
|
19
|
+
import * as i7 from '@angular/cdk/drag-drop';
|
|
20
|
+
import { CdkDragDrop, CdkDropList } from '@angular/cdk/drag-drop';
|
|
21
|
+
import { MatDialogRef, MatDialogConfig, MatDialog } from '@angular/material/dialog';
|
|
22
|
+
import { MatSlideToggle } from '@angular/material/slide-toggle';
|
|
23
|
+
import * as _ngrx_entity from '@ngrx/entity';
|
|
24
|
+
import { Dictionary as Dictionary$1, Predicate as Predicate$1, EntityState } from '@ngrx/entity';
|
|
25
|
+
import * as i9 from '@angular/cdk/scrolling';
|
|
26
|
+
import * as i10 from 'ng-table-virtual-scroll';
|
|
27
|
+
import { TableVirtualScrollDataSource } from 'ng-table-virtual-scroll';
|
|
13
28
|
import { MatRowDef, MatColumnDef, MatTable, MatTableDataSource } from '@angular/material/table';
|
|
14
29
|
import { CdkColumnDef } from '@angular/cdk/table';
|
|
15
|
-
import * as i1 from '@angular/material/slide-toggle';
|
|
16
|
-
import { MatSlideToggle } from '@angular/material/slide-toggle';
|
|
17
|
-
import * as i6 from '@angular/material/radio';
|
|
18
30
|
import { MatRadioButton } from '@angular/material/radio';
|
|
19
31
|
import { MatButtonToggle } from '@angular/material/button-toggle';
|
|
20
|
-
import * as i19 from '@angular/material/checkbox';
|
|
21
32
|
import { MatCheckbox } from '@angular/material/checkbox';
|
|
22
|
-
import * as i33 from '@angular/forms';
|
|
23
|
-
import { NgControl, ControlValueAccessor } from '@angular/forms';
|
|
24
|
-
import * as i12 from '@angular/material/core';
|
|
25
33
|
import { MatOption } from '@angular/material/core';
|
|
26
|
-
import * as i29 from '@angular/common';
|
|
27
|
-
import { DatePipe, CurrencyPipe } from '@angular/common';
|
|
28
|
-
import * as _ngrx_store from '@ngrx/store';
|
|
29
|
-
import { Store, Action, MemoizedSelector } from '@ngrx/store';
|
|
30
34
|
import { SelectionModel } from '@angular/cdk/collections';
|
|
31
|
-
import * as _ngrx_entity from '@ngrx/entity';
|
|
32
|
-
import { Dictionary as Dictionary$1, Predicate as Predicate$1, EntityState } from '@ngrx/entity';
|
|
33
|
-
import * as i36 from '@angular/cdk/drag-drop';
|
|
34
|
-
import { CdkDragDrop, CdkDropList } from '@angular/cdk/drag-drop';
|
|
35
|
-
import * as i25 from '@angular/material/paginator';
|
|
36
35
|
import { MatPaginator } from '@angular/material/paginator';
|
|
37
|
-
import * as i39 from 'ng-table-virtual-scroll';
|
|
38
|
-
import { TableVirtualScrollDataSource } from 'ng-table-virtual-scroll';
|
|
39
|
-
import * as i20 from '@angular/material/menu';
|
|
40
36
|
import { MatMenuTrigger } from '@angular/material/menu';
|
|
41
|
-
import * as i3 from '@angular/material/select';
|
|
42
|
-
import * as i4 from '@angular/material/dialog';
|
|
43
|
-
import { MatDialogRef, MatDialogConfig, MatDialog } from '@angular/material/dialog';
|
|
44
|
-
import * as i5 from '@angular/material/datepicker';
|
|
45
|
-
import * as i7 from '@angular/material/button';
|
|
46
|
-
import * as i8 from '@angular/material/expansion';
|
|
47
|
-
import * as i9 from '@angular/material/stepper';
|
|
48
|
-
import * as i10 from '@angular/material/toolbar';
|
|
49
|
-
import * as i11 from '@angular/material/tooltip';
|
|
50
|
-
import * as i13 from '@angular/material/progress-spinner';
|
|
51
|
-
import * as i14 from '@angular/material/grid-list';
|
|
52
|
-
import * as i15 from '@angular/material/card';
|
|
53
|
-
import * as i16 from '@angular/material/sidenav';
|
|
54
|
-
import * as i17 from '@angular/material/tabs';
|
|
55
|
-
import * as i18 from '@angular/material/input';
|
|
56
|
-
import * as i21 from '@angular/material/icon';
|
|
57
|
-
import * as i22 from '@angular/material/badge';
|
|
58
|
-
import * as i24 from '@angular/material/autocomplete';
|
|
59
|
-
import * as i26 from '@angular/material/chips';
|
|
60
|
-
import * as i32 from '@ngrx/effects';
|
|
61
|
-
import * as i35 from '@ngrx/component';
|
|
62
|
-
import * as i38 from '@angular/cdk/scrolling';
|
|
63
37
|
|
|
64
38
|
declare enum HttpRequestStatus {
|
|
65
39
|
notStarted = 0,
|
|
@@ -257,13 +231,6 @@ declare function httpRequest<T = any>(req: Observable<T>): HttpRequestState$<T>;
|
|
|
257
231
|
declare function httpRequestor<TParam extends any[], T>(req: HttpRequestFactory<TParam, T>): HttpRequestor<T, (...params: [...TParam]) => Observable<HttpRequestState<T>>>;
|
|
258
232
|
declare function chainRequest<TParam extends any[], T, TT>(httpState$: Observable<HttpRequestState<T>>, request: HttpRequestFactory<TParam, TT>, requestParams: ((responseFromPrevious: T) => [...TParam]) | (() => [...TParam])): Observable<HttpRequestState<TT>>;
|
|
259
233
|
|
|
260
|
-
/** @deprecated Import the standalone directives directly instead. */
|
|
261
|
-
declare class HttpRequestModule {
|
|
262
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HttpRequestModule, never>;
|
|
263
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<HttpRequestModule, never, [typeof HttpSuccessStateDirective, typeof HttpRequestStateDirective, typeof HttpErrorStateDirective, typeof HttpInProgressStateDirective, typeof HttpNotStartedStateDirective], [typeof HttpSuccessStateDirective, typeof HttpRequestStateDirective, typeof HttpErrorStateDirective, typeof HttpInProgressStateDirective, typeof HttpNotStartedStateDirective]>;
|
|
264
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<HttpRequestModule>;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
234
|
declare class HttpRequestStateFactory implements OnDestroy {
|
|
268
235
|
constructor();
|
|
269
236
|
ngOnDestroy(): void;
|
|
@@ -592,10 +559,176 @@ interface TableBuilderExport {
|
|
|
592
559
|
prepend?: string;
|
|
593
560
|
}
|
|
594
561
|
|
|
562
|
+
declare class SpaceCasePipe implements PipeTransform {
|
|
563
|
+
transform(value: string): string;
|
|
564
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpaceCasePipe, never>;
|
|
565
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SpaceCasePipe, "spaceCase", true>;
|
|
566
|
+
}
|
|
567
|
+
/**
|
|
568
|
+
* Adds a space before uppercase letters that either
|
|
569
|
+
* 1. follows a lowercase letter or digit
|
|
570
|
+
* 2. or precedes a lowercase letter and follows an alpha-numeric character
|
|
571
|
+
*
|
|
572
|
+
* Uppercases the first digit
|
|
573
|
+
*
|
|
574
|
+
* Turns underscores into spaces
|
|
575
|
+
*/
|
|
576
|
+
declare function spaceCase(value: string): string;
|
|
577
|
+
|
|
578
|
+
declare class PhoneNumberPipe implements PipeTransform {
|
|
579
|
+
transform(phoneNum: string): any;
|
|
580
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneNumberPipe, never>;
|
|
581
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PhoneNumberPipe, "phone", true>;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
declare class FunctionPipe implements PipeTransform {
|
|
585
|
+
transform(func: ((...args: any[]) => any) | string, ...args: any[]): any;
|
|
586
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FunctionPipe, never>;
|
|
587
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FunctionPipe, "func", true>;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
declare class StopPropagationDirective {
|
|
591
|
+
onClick(event: any): void;
|
|
592
|
+
onMousedown(event: any): void;
|
|
593
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StopPropagationDirective, never>;
|
|
594
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<StopPropagationDirective, "[stop-propagation]", never, {}, {}, never, never, true, never>;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
declare class StylerDirective {
|
|
598
|
+
private el;
|
|
599
|
+
set styler(styles: any);
|
|
600
|
+
constructor(el: ElementRef);
|
|
601
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StylerDirective, never>;
|
|
602
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<StylerDirective, "[styler]", never, { "styler": { "alias": "styler"; "required": false; }; }, {}, never, never, true, never>;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
declare class PreventEnterDirective {
|
|
606
|
+
onKeyDown(): boolean;
|
|
607
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PreventEnterDirective, never>;
|
|
608
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PreventEnterDirective, "preventEnter", never, {}, {}, never, never, true, never>;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
declare class AutoFocusDirective implements AfterViewInit {
|
|
612
|
+
private elementRef;
|
|
613
|
+
autoFocus: boolean;
|
|
614
|
+
constructor(elementRef: ElementRef);
|
|
615
|
+
ngAfterViewInit(): void;
|
|
616
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoFocusDirective, never>;
|
|
617
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AutoFocusDirective, "[autoFocus]", never, { "autoFocus": { "alias": "autoFocus"; "required": false; }; }, {}, never, never, true, never>;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
declare class TrimWhitespaceDirective {
|
|
621
|
+
private elem;
|
|
622
|
+
constructor(elem: ElementRef);
|
|
623
|
+
onBlur(): void;
|
|
624
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TrimWhitespaceDirective, never>;
|
|
625
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TrimWhitespaceDirective, "input[trimWhitespace]", never, {}, {}, never, never, true, never>;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
declare class ClickSubjectDirective<T = boolean> extends Subject<T> {
|
|
629
|
+
constructor();
|
|
630
|
+
_val: T;
|
|
631
|
+
set clickSubject(val: T);
|
|
632
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClickSubjectDirective<any>, never>;
|
|
633
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickSubjectDirective<any>, "[clickSubject]", ["clickSubject"], { "clickSubject": { "alias": "clickSubject"; "required": false; }; }, {}, never, never, true, never>;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
declare class ClickEmitterDirective extends Subject<boolean> {
|
|
637
|
+
constructor();
|
|
638
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClickEmitterDirective, never>;
|
|
639
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickEmitterDirective, "[clickEmitter]", ["clickEmitter"], {}, {}, never, never, true, never>;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
declare class DialogService {
|
|
643
|
+
allOpenOpDialogs: MatDialogRef<any>[];
|
|
644
|
+
addDialogRef(ref: MatDialogRef<any>): void;
|
|
645
|
+
removeDialogRef(ref: MatDialogRef<any>): void;
|
|
646
|
+
closeAllOpDialogs(): void;
|
|
647
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
|
|
648
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
interface DialogViewContext<T> {
|
|
652
|
+
$implicit: T;
|
|
653
|
+
opDialog: T;
|
|
654
|
+
close: () => void;
|
|
655
|
+
}
|
|
656
|
+
declare class DialogWrapper<T = any> {
|
|
657
|
+
private vcr;
|
|
658
|
+
viewEmbeded: boolean;
|
|
659
|
+
viewContext: DialogViewContext<T>;
|
|
660
|
+
set template(tmpl: TemplateRef<DialogViewContext<T>>);
|
|
661
|
+
set close(closeMethod: () => void);
|
|
662
|
+
set data(value: T);
|
|
663
|
+
constructor(vcr: ViewContainerRef);
|
|
664
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogWrapper<any>, never>;
|
|
665
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogWrapper<any>, "app-dialog-content", never, {}, {}, never, never, false, never>;
|
|
666
|
+
}
|
|
667
|
+
declare class DialogDirective<T> implements OnDestroy {
|
|
668
|
+
private templateRef;
|
|
669
|
+
private dialog;
|
|
670
|
+
private service;
|
|
671
|
+
opDialogClosed: EventEmitter<boolean>;
|
|
672
|
+
_dialogConfig: MatDialogConfig<T>;
|
|
673
|
+
add_opDialog_Class: boolean;
|
|
674
|
+
set opDialogConfig(config: MatDialogConfig<T>);
|
|
675
|
+
get opDialogConfig(): MatDialogConfig<T>;
|
|
676
|
+
set state(open_close: Observable<T>);
|
|
677
|
+
nativeElement?: HTMLElement;
|
|
678
|
+
dialogRef?: MatDialogRef<any, boolean>;
|
|
679
|
+
subscription: Subscription;
|
|
680
|
+
componentWrapper?: DialogWrapper<T>;
|
|
681
|
+
constructor(templateRef: TemplateRef<DialogViewContext<T>>, dialog: MatDialog, service: DialogService);
|
|
682
|
+
_data: Subject<Observable<T>>;
|
|
683
|
+
close(): void;
|
|
684
|
+
initDialog(): void;
|
|
685
|
+
setDialogState(open: boolean): void;
|
|
686
|
+
ngOnDestroy(): void;
|
|
687
|
+
static ngTemplateContextGuard<T>(dir: DialogDirective<T>, ctx: any): ctx is DialogViewContext<Exclude<T, false | 0 | '' | null | undefined>>;
|
|
688
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogDirective<any>, never>;
|
|
689
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DialogDirective<any>, "[opDialog]", never, { "add_opDialog_Class": { "alias": "add_opDialog_Class"; "required": false; }; "opDialogConfig": { "alias": "opDialogConfig"; "required": false; }; "state": { "alias": "opDialog"; "required": false; }; "nativeElement": { "alias": "opDialogOrigin"; "required": false; }; }, { "opDialogClosed": "opDialogClosed"; }, never, never, true, never>;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
declare class MatSlideToggleGroupDirective {
|
|
693
|
+
allowMultiple: boolean;
|
|
694
|
+
_toggles: QueryList<MatSlideToggle>;
|
|
695
|
+
set toggles(val: QueryList<MatSlideToggle>);
|
|
696
|
+
private _ready;
|
|
697
|
+
get valueEmitter(): Observable<{
|
|
698
|
+
[key: string]: boolean;
|
|
699
|
+
}>;
|
|
700
|
+
getInitValue(): {
|
|
701
|
+
[k: string]: boolean;
|
|
702
|
+
};
|
|
703
|
+
getObs(): Observable<{
|
|
704
|
+
[k: string]: boolean;
|
|
705
|
+
}>;
|
|
706
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatSlideToggleGroupDirective, never>;
|
|
707
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatSlideToggleGroupDirective, "[opMatSlideToggleGroup]", never, { "allowMultiple": { "alias": "allowMultiple"; "required": false; }; }, { "valueEmitter": "valueEmitter"; }, ["toggles"], never, true, never>;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
declare class ConditionalClassesDirective {
|
|
711
|
+
private el;
|
|
712
|
+
private renderer;
|
|
713
|
+
constructor(el: ElementRef, renderer: Renderer2);
|
|
714
|
+
element?: any;
|
|
715
|
+
classes?: Dictionary$1<Predicate$1<any>>;
|
|
716
|
+
classesApplied: string[];
|
|
717
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
718
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConditionalClassesDirective, never>;
|
|
719
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ConditionalClassesDirective, "[conditionalClasses]", never, { "element": { "alias": "element"; "required": false; }; "classes": { "alias": "conditionalClasses"; "required": false; }; }, {}, never, never, true, never>;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
declare class UtilitiesModule {
|
|
723
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UtilitiesModule, never>;
|
|
724
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UtilitiesModule, never, [typeof SpaceCasePipe, typeof PhoneNumberPipe, typeof FunctionPipe, typeof StopPropagationDirective, typeof StylerDirective, typeof PreventEnterDirective, typeof AutoFocusDirective, typeof TrimWhitespaceDirective, typeof ClickSubjectDirective, typeof ClickEmitterDirective, typeof DialogDirective, typeof MatSlideToggleGroupDirective, typeof ConditionalClassesDirective], [typeof StopPropagationDirective, typeof PreventEnterDirective, typeof SpaceCasePipe, typeof PhoneNumberPipe, typeof FunctionPipe, typeof StopPropagationDirective, typeof TrimWhitespaceDirective, typeof StylerDirective, typeof PreventEnterDirective, typeof AutoFocusDirective, typeof ClickSubjectDirective, typeof ClickEmitterDirective, typeof DialogDirective, typeof MatSlideToggleGroupDirective, typeof ConditionalClassesDirective]>;
|
|
725
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<UtilitiesModule>;
|
|
726
|
+
}
|
|
727
|
+
|
|
595
728
|
declare class ColumnTotalPipe implements PipeTransform {
|
|
596
729
|
transform(data: any[], metaData: MetaData): number | null;
|
|
597
730
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnTotalPipe, never>;
|
|
598
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<ColumnTotalPipe, "columnTotal",
|
|
731
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ColumnTotalPipe, "columnTotal", true>;
|
|
599
732
|
}
|
|
600
733
|
|
|
601
734
|
declare class TableBuilder<T = any> {
|
|
@@ -623,7 +756,7 @@ declare class CustomCellDirective implements AfterContentInit {
|
|
|
623
756
|
ngAfterContentInit(): void;
|
|
624
757
|
getMetaData(metaData?: MetaData): MetaData;
|
|
625
758
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomCellDirective, [{ optional: true; }, { optional: true; }]>;
|
|
626
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CustomCellDirective, "[customCell]", never, { "customCell": { "alias": "customCell"; "required": false; }; "displayName": { "alias": "displayName"; "required": false; }; "preSort": { "alias": "preSort"; "required": false; }; "TemplateRef": { "alias": "TemplateRef"; "required": false; }; "customCellOrder": { "alias": "customCellOrder"; "required": false; }; "customCellWidth": { "alias": "customCellWidth"; "required": false; }; }, {}, never, never,
|
|
759
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CustomCellDirective, "[customCell]", never, { "customCell": { "alias": "customCell"; "required": false; }; "displayName": { "alias": "displayName"; "required": false; }; "preSort": { "alias": "preSort"; "required": false; }; "TemplateRef": { "alias": "TemplateRef"; "required": false; }; "customCellOrder": { "alias": "customCellOrder"; "required": false; }; "customCellWidth": { "alias": "customCellWidth"; "required": false; }; }, {}, never, never, true, never>;
|
|
627
760
|
}
|
|
628
761
|
|
|
629
762
|
declare function stateIs(initializationState: InitializationState): (state: TableState) => boolean;
|
|
@@ -735,7 +868,7 @@ declare class MultiSortDirective extends MatSort implements OnInit, OnDestroy {
|
|
|
735
868
|
rules: Sort[];
|
|
736
869
|
constructor(state: TableStore);
|
|
737
870
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSortDirective, never>;
|
|
738
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MultiSortDirective, "[multiSort]", ["multiSort"], { "disabled": { "alias": "matSortDisabled"; "required": false; }; }, {}, never, never,
|
|
871
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MultiSortDirective, "[multiSort]", ["multiSort"], { "disabled": { "alias": "matSortDisabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
739
872
|
}
|
|
740
873
|
|
|
741
874
|
declare class ResizeColumnDirective implements OnInit {
|
|
@@ -770,7 +903,7 @@ declare class ResizeColumnDirective implements OnInit {
|
|
|
770
903
|
};
|
|
771
904
|
getElementWidth: (elem: HTMLElement) => number;
|
|
772
905
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResizeColumnDirective, never>;
|
|
773
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizeColumnDirective, "[resizeColumn]", never, { "resizable": { "alias": "resizeColumn"; "required": false; }; "key": { "alias": "key"; "required": false; }; }, {}, never, never,
|
|
906
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizeColumnDirective, "[resizeColumn]", never, { "resizable": { "alias": "resizeColumn"; "required": false; }; "key": { "alias": "key"; "required": false; }; }, {}, never, never, true, never>;
|
|
774
907
|
}
|
|
775
908
|
interface MouseDowmData {
|
|
776
909
|
startPageX: number;
|
|
@@ -809,7 +942,7 @@ declare class TableFilterDirective extends ComponentStore<FilterInfo> {
|
|
|
809
942
|
protected setFilter(filter: FilterInfo): void;
|
|
810
943
|
update(): void;
|
|
811
944
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableFilterDirective, [{ optional: true; }, { optional: true; }]>;
|
|
812
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableFilterDirective, "[tbFilter]", never, { "filterType": { "alias": "filterType"; "required": false; }; "key": { "alias": "key"; "required": false; }; "fieldType": { "alias": "fieldType"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; "active": { "alias": "active"; "required": false; }; "filterValue": { "alias": "filterValue"; "required": false; }; }, {}, never, never,
|
|
945
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableFilterDirective, "[tbFilter]", never, { "filterType": { "alias": "filterType"; "required": false; }; "key": { "alias": "key"; "required": false; }; "fieldType": { "alias": "fieldType"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; "active": { "alias": "active"; "required": false; }; "filterValue": { "alias": "filterValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
813
946
|
}
|
|
814
947
|
declare class TableFilterStringContainsDirective extends TableFilterDirective {
|
|
815
948
|
constructor(model: NgControl, wrapper: TableWrapperDirective);
|
|
@@ -817,7 +950,7 @@ declare class TableFilterStringContainsDirective extends TableFilterDirective {
|
|
|
817
950
|
setFilter(filter: FilterInfo): void;
|
|
818
951
|
ngOnChanges(changes: SimpleChanges): void;
|
|
819
952
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableFilterStringContainsDirective, [{ optional: true; }, { optional: true; }]>;
|
|
820
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableFilterStringContainsDirective, "[tbFilterStringContains]", never, { "key": { "alias": "tbFilterStringContains"; "required": false; }; "filterValue": { "alias": "filterValue"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, {}, never, never,
|
|
953
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableFilterStringContainsDirective, "[tbFilterStringContains]", never, { "key": { "alias": "tbFilterStringContains"; "required": false; }; "filterValue": { "alias": "filterValue"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, {}, never, never, true, never>;
|
|
821
954
|
}
|
|
822
955
|
declare abstract class TableCustomFilterDirectiveBase<T = any> extends TableCustomFilterDirective<T> {
|
|
823
956
|
filter$: Subject<CustomFilter>;
|
|
@@ -850,7 +983,7 @@ declare class MatCheckboxTbFilterDirective extends TbSelectedFilterDirective {
|
|
|
850
983
|
set active(val: boolean);
|
|
851
984
|
constructor(matCheckbox: MatCheckbox, wrapper: TableWrapperDirective);
|
|
852
985
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatCheckboxTbFilterDirective, [null, { optional: true; }]>;
|
|
853
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatCheckboxTbFilterDirective, "mat-checkbox[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; }, {}, never, never,
|
|
986
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatCheckboxTbFilterDirective, "mat-checkbox[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; }, {}, never, never, true, never>;
|
|
854
987
|
}
|
|
855
988
|
declare class MatSlideToggleTbFilterDirective<T = any> extends TbSelectedFilterDirective<T> {
|
|
856
989
|
private matSlideToggle;
|
|
@@ -858,7 +991,7 @@ declare class MatSlideToggleTbFilterDirective<T = any> extends TbSelectedFilterD
|
|
|
858
991
|
constructor(matSlideToggle: MatSlideToggle, wrapper: TableWrapperDirective);
|
|
859
992
|
ngOnInit(): void;
|
|
860
993
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatSlideToggleTbFilterDirective<any>, [null, { optional: true; }]>;
|
|
861
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatSlideToggleTbFilterDirective<any>, "mat-slide-toggle[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; }, {}, never, never,
|
|
994
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatSlideToggleTbFilterDirective<any>, "mat-slide-toggle[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; }, {}, never, never, true, never>;
|
|
862
995
|
}
|
|
863
996
|
declare class MatRadioButtonTbFilterDirective extends TbSelectedFilterDirective {
|
|
864
997
|
private matRadioButton;
|
|
@@ -866,7 +999,7 @@ declare class MatRadioButtonTbFilterDirective extends TbSelectedFilterDirective
|
|
|
866
999
|
constructor(matRadioButton: MatRadioButton, wrapper: TableWrapperDirective);
|
|
867
1000
|
ngOnInit(): void;
|
|
868
1001
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatRadioButtonTbFilterDirective, [null, { optional: true; }]>;
|
|
869
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatRadioButtonTbFilterDirective, "mat-radio-button[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; }, {}, never, never,
|
|
1002
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatRadioButtonTbFilterDirective, "mat-radio-button[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; }, {}, never, never, true, never>;
|
|
870
1003
|
}
|
|
871
1004
|
declare class MatOptionTbFilterDirective extends TbSelectedFilterDirective {
|
|
872
1005
|
private matOption;
|
|
@@ -874,7 +1007,7 @@ declare class MatOptionTbFilterDirective extends TbSelectedFilterDirective {
|
|
|
874
1007
|
constructor(matOption: MatOption, wrapper: TableWrapperDirective);
|
|
875
1008
|
ngOnInit(): void;
|
|
876
1009
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatOptionTbFilterDirective, [null, { optional: true; }]>;
|
|
877
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatOptionTbFilterDirective, "mat-option[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; }, {}, never, never,
|
|
1010
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatOptionTbFilterDirective, "mat-option[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; }, {}, never, never, true, never>;
|
|
878
1011
|
}
|
|
879
1012
|
declare class MatButtonToggleFilterDirective extends TbSelectedFilterDirective {
|
|
880
1013
|
private matButtonToggle;
|
|
@@ -882,7 +1015,7 @@ declare class MatButtonToggleFilterDirective extends TbSelectedFilterDirective {
|
|
|
882
1015
|
constructor(matButtonToggle: MatButtonToggle, wrapper: TableWrapperDirective);
|
|
883
1016
|
ngOnInit(): void;
|
|
884
1017
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatButtonToggleFilterDirective, [null, { optional: true; }]>;
|
|
885
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatButtonToggleFilterDirective, "mat-button-toggle[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; }, {}, never, never,
|
|
1018
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatButtonToggleFilterDirective, "mat-button-toggle[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; }, {}, never, never, true, never>;
|
|
886
1019
|
}
|
|
887
1020
|
|
|
888
1021
|
declare class TableWrapperDirective {
|
|
@@ -891,7 +1024,7 @@ declare class TableWrapperDirective {
|
|
|
891
1024
|
registerations: (TableCustomFilterDirective | TableFilterDirective)[];
|
|
892
1025
|
register(filter: TableCustomFilterDirective | TableFilterDirective): void;
|
|
893
1026
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableWrapperDirective, never>;
|
|
894
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableWrapperDirective, "[tbWrapper]", never, {}, {}, ["customFilters", "filters"], never,
|
|
1027
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableWrapperDirective, "[tbWrapper]", never, {}, {}, ["customFilters", "filters"], never, true, never>;
|
|
895
1028
|
}
|
|
896
1029
|
|
|
897
1030
|
declare class ExportToCsvService<T> {
|
|
@@ -968,173 +1101,7 @@ declare class TableContainerComponent<T = any> {
|
|
|
968
1101
|
setDisplay: (data: any[], groups: Group[]) => any[];
|
|
969
1102
|
shouldDisplay: (currentGroup?: Group, groups?: Group[]) => boolean;
|
|
970
1103
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableContainerComponent<any>, [null, null, null, null, { optional: true; }]>;
|
|
971
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableContainerComponent<any>, "tb-table-container", never, { "tableId": { "alias": "tableId"; "required": false; }; "tableBuilder": { "alias": "tableBuilder"; "required": false; }; "IndexColumn": { "alias": "IndexColumn"; "required": false; }; "SelectionColumn": { "alias": "SelectionColumn"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "isSticky": { "alias": "isSticky"; "required": false; }; "isVs": { "alias": "isVs"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "inputFilters": { "alias": "inputFilters"; "required": false; }; "groupHeaderTemplate": { "alias": "groupHeaderTemplate"; "required": false; }; "compareWithKey": { "alias": "compareWithKey"; "required": false; }; }, { "selection$": "selection$"; "data": "data"; "paginatorChange": "paginatorChange"; "OnStateReset": "OnStateReset"; "OnSaveState": "OnSaveState"; "state$": "state$"; }, ["customFilters", "filters", "customRows", "customCells"], ["[before]", ".tb-header-title"],
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
declare class PhoneNumberPipe implements PipeTransform {
|
|
975
|
-
transform(phoneNum: string): any;
|
|
976
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneNumberPipe, never>;
|
|
977
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<PhoneNumberPipe, "phone", false>;
|
|
978
|
-
}
|
|
979
|
-
|
|
980
|
-
declare class PreventEnterDirective {
|
|
981
|
-
onKeyDown(): boolean;
|
|
982
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PreventEnterDirective, never>;
|
|
983
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PreventEnterDirective, "preventEnter", never, {}, {}, never, never, false, never>;
|
|
984
|
-
}
|
|
985
|
-
|
|
986
|
-
declare class StopPropagationDirective {
|
|
987
|
-
onClick(event: any): void;
|
|
988
|
-
onMousedown(event: any): void;
|
|
989
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StopPropagationDirective, never>;
|
|
990
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<StopPropagationDirective, "[stop-propagation]", never, {}, {}, never, never, false, never>;
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
declare class AutoFocusDirective implements AfterViewInit {
|
|
994
|
-
private elementRef;
|
|
995
|
-
autoFocus: boolean;
|
|
996
|
-
constructor(elementRef: ElementRef);
|
|
997
|
-
ngAfterViewInit(): void;
|
|
998
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AutoFocusDirective, never>;
|
|
999
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AutoFocusDirective, "[autoFocus]", never, { "autoFocus": { "alias": "autoFocus"; "required": false; }; }, {}, never, never, false, never>;
|
|
1000
|
-
}
|
|
1001
|
-
|
|
1002
|
-
declare class ClickSubjectDirective<T = boolean> extends Subject<T> {
|
|
1003
|
-
constructor();
|
|
1004
|
-
_val: T;
|
|
1005
|
-
set clickSubject(val: T);
|
|
1006
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ClickSubjectDirective<any>, never>;
|
|
1007
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickSubjectDirective<any>, "[clickSubject]", ["clickSubject"], { "clickSubject": { "alias": "clickSubject"; "required": false; }; }, {}, never, never, false, never>;
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
declare class ClickEmitterDirective extends Subject<boolean> {
|
|
1011
|
-
constructor();
|
|
1012
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ClickEmitterDirective, never>;
|
|
1013
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickEmitterDirective, "[clickEmitter]", ["clickEmitter"], {}, {}, never, never, false, never>;
|
|
1014
|
-
}
|
|
1015
|
-
|
|
1016
|
-
declare class DialogService {
|
|
1017
|
-
allOpenOpDialogs: MatDialogRef<any>[];
|
|
1018
|
-
addDialogRef(ref: MatDialogRef<any>): void;
|
|
1019
|
-
removeDialogRef(ref: MatDialogRef<any>): void;
|
|
1020
|
-
closeAllOpDialogs(): void;
|
|
1021
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
|
|
1022
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
|
|
1023
|
-
}
|
|
1024
|
-
|
|
1025
|
-
interface DialogViewContext<T> {
|
|
1026
|
-
$implicit: T;
|
|
1027
|
-
opDialog: T;
|
|
1028
|
-
close: () => void;
|
|
1029
|
-
}
|
|
1030
|
-
declare class DialogWrapper<T = any> {
|
|
1031
|
-
private vcr;
|
|
1032
|
-
viewEmbeded: boolean;
|
|
1033
|
-
viewContext: DialogViewContext<T>;
|
|
1034
|
-
set template(tmpl: TemplateRef<DialogViewContext<T>>);
|
|
1035
|
-
set close(closeMethod: () => void);
|
|
1036
|
-
set data(value: T);
|
|
1037
|
-
constructor(vcr: ViewContainerRef);
|
|
1038
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DialogWrapper<any>, never>;
|
|
1039
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DialogWrapper<any>, "app-dialog-content", never, {}, {}, never, never, false, never>;
|
|
1040
|
-
}
|
|
1041
|
-
declare class DialogDirective<T> implements OnDestroy {
|
|
1042
|
-
private templateRef;
|
|
1043
|
-
private dialog;
|
|
1044
|
-
private service;
|
|
1045
|
-
opDialogClosed: EventEmitter<boolean>;
|
|
1046
|
-
_dialogConfig: MatDialogConfig<T>;
|
|
1047
|
-
add_opDialog_Class: boolean;
|
|
1048
|
-
set opDialogConfig(config: MatDialogConfig<T>);
|
|
1049
|
-
get opDialogConfig(): MatDialogConfig<T>;
|
|
1050
|
-
set state(open_close: Observable<T>);
|
|
1051
|
-
nativeElement?: HTMLElement;
|
|
1052
|
-
dialogRef?: MatDialogRef<any, boolean>;
|
|
1053
|
-
subscription: Subscription;
|
|
1054
|
-
componentWrapper?: DialogWrapper<T>;
|
|
1055
|
-
constructor(templateRef: TemplateRef<DialogViewContext<T>>, dialog: MatDialog, service: DialogService);
|
|
1056
|
-
_data: Subject<Observable<T>>;
|
|
1057
|
-
close(): void;
|
|
1058
|
-
initDialog(): void;
|
|
1059
|
-
setDialogState(open: boolean): void;
|
|
1060
|
-
ngOnDestroy(): void;
|
|
1061
|
-
static ngTemplateContextGuard<T>(dir: DialogDirective<T>, ctx: any): ctx is DialogViewContext<Exclude<T, false | 0 | '' | null | undefined>>;
|
|
1062
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DialogDirective<any>, never>;
|
|
1063
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DialogDirective<any>, "[opDialog]", never, { "add_opDialog_Class": { "alias": "add_opDialog_Class"; "required": false; }; "opDialogConfig": { "alias": "opDialogConfig"; "required": false; }; "state": { "alias": "opDialog"; "required": false; }; "nativeElement": { "alias": "opDialogOrigin"; "required": false; }; }, { "opDialogClosed": "opDialogClosed"; }, never, never, false, never>;
|
|
1064
|
-
}
|
|
1065
|
-
|
|
1066
|
-
declare class StylerDirective {
|
|
1067
|
-
private el;
|
|
1068
|
-
set styler(styles: any);
|
|
1069
|
-
constructor(el: ElementRef);
|
|
1070
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StylerDirective, never>;
|
|
1071
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<StylerDirective, "[styler]", never, { "styler": { "alias": "styler"; "required": false; }; }, {}, never, never, false, never>;
|
|
1072
|
-
}
|
|
1073
|
-
|
|
1074
|
-
declare class MatSlideToggleGroupDirective {
|
|
1075
|
-
allowMultiple: boolean;
|
|
1076
|
-
_toggles: QueryList<MatSlideToggle>;
|
|
1077
|
-
set toggles(val: QueryList<MatSlideToggle>);
|
|
1078
|
-
private _ready;
|
|
1079
|
-
get valueEmitter(): Observable<{
|
|
1080
|
-
[key: string]: boolean;
|
|
1081
|
-
}>;
|
|
1082
|
-
getInitValue(): {
|
|
1083
|
-
[k: string]: boolean;
|
|
1084
|
-
};
|
|
1085
|
-
getObs(): Observable<{
|
|
1086
|
-
[k: string]: boolean;
|
|
1087
|
-
}>;
|
|
1088
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatSlideToggleGroupDirective, never>;
|
|
1089
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatSlideToggleGroupDirective, "[opMatSlideToggleGroup]", never, { "allowMultiple": { "alias": "allowMultiple"; "required": false; }; }, { "valueEmitter": "valueEmitter"; }, ["toggles"], never, false, never>;
|
|
1090
|
-
}
|
|
1091
|
-
|
|
1092
|
-
declare class TrimWhitespaceDirective {
|
|
1093
|
-
private elem;
|
|
1094
|
-
constructor(elem: ElementRef);
|
|
1095
|
-
onBlur(): void;
|
|
1096
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TrimWhitespaceDirective, never>;
|
|
1097
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TrimWhitespaceDirective, "input[trimWhitespace]", never, {}, {}, never, never, false, never>;
|
|
1098
|
-
}
|
|
1099
|
-
|
|
1100
|
-
declare class FunctionPipe implements PipeTransform {
|
|
1101
|
-
transform(func: ((...args: any[]) => any) | string, ...args: any[]): any;
|
|
1102
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FunctionPipe, never>;
|
|
1103
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<FunctionPipe, "func", false>;
|
|
1104
|
-
}
|
|
1105
|
-
|
|
1106
|
-
declare class SpaceCasePipe implements PipeTransform {
|
|
1107
|
-
transform(value: string): string;
|
|
1108
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SpaceCasePipe, never>;
|
|
1109
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<SpaceCasePipe, "spaceCase", false>;
|
|
1110
|
-
}
|
|
1111
|
-
/**
|
|
1112
|
-
* Adds a space before uppercase letters that either
|
|
1113
|
-
* 1. follows a lowercase letter or digit
|
|
1114
|
-
* 2. or precedes a lowercase letter and follows an alpha-numeric character
|
|
1115
|
-
*
|
|
1116
|
-
* Uppercases the first digit
|
|
1117
|
-
*
|
|
1118
|
-
* Turns underscores into spaces
|
|
1119
|
-
*/
|
|
1120
|
-
declare function spaceCase(value: string): string;
|
|
1121
|
-
|
|
1122
|
-
declare class ConditionalClassesDirective {
|
|
1123
|
-
private el;
|
|
1124
|
-
private renderer;
|
|
1125
|
-
constructor(el: ElementRef, renderer: Renderer2);
|
|
1126
|
-
element?: any;
|
|
1127
|
-
classes?: Dictionary$1<Predicate$1<any>>;
|
|
1128
|
-
classesApplied: string[];
|
|
1129
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1130
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ConditionalClassesDirective, never>;
|
|
1131
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ConditionalClassesDirective, "[conditionalClasses]", never, { "element": { "alias": "element"; "required": false; }; "classes": { "alias": "conditionalClasses"; "required": false; }; }, {}, never, never, false, never>;
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
declare class UtilitiesModule {
|
|
1135
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UtilitiesModule, never>;
|
|
1136
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UtilitiesModule, [typeof SpaceCasePipe, typeof PhoneNumberPipe, typeof FunctionPipe, typeof StopPropagationDirective, typeof StylerDirective, typeof PreventEnterDirective, typeof AutoFocusDirective, typeof TrimWhitespaceDirective, typeof ClickSubjectDirective, typeof ClickEmitterDirective, typeof DialogDirective, typeof MatSlideToggleGroupDirective, typeof ConditionalClassesDirective], never, [typeof StopPropagationDirective, typeof PreventEnterDirective, typeof SpaceCasePipe, typeof PhoneNumberPipe, typeof FunctionPipe, typeof StopPropagationDirective, typeof TrimWhitespaceDirective, typeof StylerDirective, typeof PreventEnterDirective, typeof AutoFocusDirective, typeof ClickSubjectDirective, typeof ClickEmitterDirective, typeof DialogDirective, typeof MatSlideToggleGroupDirective, typeof ConditionalClassesDirective]>;
|
|
1137
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<UtilitiesModule>;
|
|
1104
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableContainerComponent<any>, "tb-table-container", never, { "tableId": { "alias": "tableId"; "required": false; }; "tableBuilder": { "alias": "tableBuilder"; "required": false; }; "IndexColumn": { "alias": "IndexColumn"; "required": false; }; "SelectionColumn": { "alias": "SelectionColumn"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "isSticky": { "alias": "isSticky"; "required": false; }; "isVs": { "alias": "isVs"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "inputFilters": { "alias": "inputFilters"; "required": false; }; "groupHeaderTemplate": { "alias": "groupHeaderTemplate"; "required": false; }; "compareWithKey": { "alias": "compareWithKey"; "required": false; }; }, { "selection$": "selection$"; "data": "data"; "paginatorChange": "paginatorChange"; "OnStateReset": "OnStateReset"; "OnSaveState": "OnSaveState"; "state$": "state$"; }, ["customFilters", "filters", "customRows", "customCells"], ["[before]", ".tb-header-title"], true, never>;
|
|
1138
1105
|
}
|
|
1139
1106
|
|
|
1140
1107
|
declare class TransformCreator {
|
|
@@ -1157,7 +1124,7 @@ declare class InitializationComponent {
|
|
|
1157
1124
|
defaultTemplate: TemplateRef<any>;
|
|
1158
1125
|
defaultWithIcon: TemplateRef<any>;
|
|
1159
1126
|
static ɵfac: i0.ɵɵFactoryDeclaration<InitializationComponent, never>;
|
|
1160
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InitializationComponent, "ng-component", never, {}, {}, never, never,
|
|
1127
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InitializationComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
1161
1128
|
}
|
|
1162
1129
|
|
|
1163
1130
|
declare class TableTemplateService {
|
|
@@ -1206,7 +1173,7 @@ declare class ColumnBuilderComponent implements OnInit {
|
|
|
1206
1173
|
mapWidth: ([previousUserDefinedWidth, currentUserDefinedWidth]: [number, number]) => widthStyle;
|
|
1207
1174
|
styles$: Observable<allStyles>;
|
|
1208
1175
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnBuilderComponent, never>;
|
|
1209
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnBuilderComponent, "tb-column-builder", never, { "metaData": { "alias": "metaData"; "required": false; }; "customCell": { "alias": "customCell"; "required": false; }; "data$": { "alias": "data$"; "required": false; }; }, {}, never, never,
|
|
1176
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnBuilderComponent, "tb-column-builder", never, { "metaData": { "alias": "metaData"; "required": false; }; "customCell": { "alias": "customCell"; "required": false; }; "data$": { "alias": "data$"; "required": false; }; }, {}, never, never, true, never>;
|
|
1210
1177
|
}
|
|
1211
1178
|
|
|
1212
1179
|
declare class MatTableObservableDataSource<T> extends MatTableDataSource<T> {
|
|
@@ -1243,7 +1210,7 @@ declare class PaginatorComponent implements OnInit, AfterViewInit {
|
|
|
1243
1210
|
paginatorChange(): void;
|
|
1244
1211
|
ourPageEvent: boolean;
|
|
1245
1212
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaginatorComponent, never>;
|
|
1246
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "tb-paginator", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "tableElRef": { "alias": "tableElRef"; "required": false; }; "data$": { "alias": "data$"; "required": false; }; }, { "paginatorChangeEmitter": "paginatorChangeEmitter"; }, never, never,
|
|
1213
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "tb-paginator", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "tableElRef": { "alias": "tableElRef"; "required": false; }; "data$": { "alias": "data$"; "required": false; }; }, { "paginatorChangeEmitter": "paginatorChangeEmitter"; }, never, never, true, never>;
|
|
1247
1214
|
}
|
|
1248
1215
|
interface CurrentPageDetails {
|
|
1249
1216
|
currentStart: number;
|
|
@@ -1312,12 +1279,12 @@ declare class GenericTableComponent implements OnInit {
|
|
|
1312
1279
|
}>;
|
|
1313
1280
|
collapseFooter$: Observable<boolean>;
|
|
1314
1281
|
static ɵfac: i0.ɵɵFactoryDeclaration<GenericTableComponent, never>;
|
|
1315
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GenericTableComponent, "tb-generic-table", never, { "data$": { "alias": "data$"; "required": false; }; "IndexColumn": { "alias": "IndexColumn"; "required": false; }; "SelectionColumn": { "alias": "SelectionColumn"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "isSticky": { "alias": "isSticky"; "required": false; }; "columnBuilders": { "alias": "columnBuilders"; "required": false; }; "columnInfos": { "alias": "columnInfos"; "required": false; }; "groupHeaderTemplate": { "alias": "groupHeaderTemplate"; "required": false; }; "compareWithKey": { "alias": "compareWithKey"; "required": false; }; "disableSort": { "alias": "disableSort"; "required": false; }; }, { "paginatorChange": "paginatorChange"; "selection$": "selection$"; }, never, never,
|
|
1282
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GenericTableComponent, "tb-generic-table", never, { "data$": { "alias": "data$"; "required": false; }; "IndexColumn": { "alias": "IndexColumn"; "required": false; }; "SelectionColumn": { "alias": "SelectionColumn"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "isSticky": { "alias": "isSticky"; "required": false; }; "columnBuilders": { "alias": "columnBuilders"; "required": false; }; "columnInfos": { "alias": "columnInfos"; "required": false; }; "groupHeaderTemplate": { "alias": "groupHeaderTemplate"; "required": false; }; "compareWithKey": { "alias": "compareWithKey"; "required": false; }; "disableSort": { "alias": "disableSort"; "required": false; }; }, { "paginatorChange": "paginatorChange"; "selection$": "selection$"; }, never, never, true, never>;
|
|
1316
1283
|
}
|
|
1317
1284
|
declare class GenericTableVsComponent extends GenericTableComponent {
|
|
1318
1285
|
createDataSource(): void;
|
|
1319
1286
|
static ɵfac: i0.ɵɵFactoryDeclaration<GenericTableVsComponent, never>;
|
|
1320
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GenericTableVsComponent, "tb-generic-table-vs", never, {}, {}, never, never,
|
|
1287
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GenericTableVsComponent, "tb-generic-table-vs", never, {}, {}, never, never, true, never>;
|
|
1321
1288
|
}
|
|
1322
1289
|
|
|
1323
1290
|
interface DisplayCol {
|
|
@@ -1335,7 +1302,7 @@ declare class GenColDisplayerComponent {
|
|
|
1335
1302
|
unset(displayCols: DisplayCol[]): void;
|
|
1336
1303
|
emit(displayCols: DisplayCol[]): void;
|
|
1337
1304
|
static ɵfac: i0.ɵɵFactoryDeclaration<GenColDisplayerComponent, never>;
|
|
1338
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GenColDisplayerComponent, "tb-col-displayer", never, {}, {}, never, never,
|
|
1305
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GenColDisplayerComponent, "tb-col-displayer", never, {}, {}, never, never, true, never>;
|
|
1339
1306
|
}
|
|
1340
1307
|
|
|
1341
1308
|
declare class WrapperFilterStore extends ComponentStore<{
|
|
@@ -1357,7 +1324,7 @@ declare class GenFilterDisplayerComponent {
|
|
|
1357
1324
|
filterCols$: Observable<MetaData[]>;
|
|
1358
1325
|
addFilter(metaData: MetaData): void;
|
|
1359
1326
|
static ɵfac: i0.ɵɵFactoryDeclaration<GenFilterDisplayerComponent, never>;
|
|
1360
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GenFilterDisplayerComponent, "tb-filter-displayer", never, {}, {}, never, never,
|
|
1327
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GenFilterDisplayerComponent, "tb-filter-displayer", never, {}, {}, never, never, true, never>;
|
|
1361
1328
|
}
|
|
1362
1329
|
|
|
1363
1330
|
declare class DateFilterComponent {
|
|
@@ -1365,7 +1332,7 @@ declare class DateFilterComponent {
|
|
|
1365
1332
|
info: PartialFilter;
|
|
1366
1333
|
CurrentFilterType: FilterType;
|
|
1367
1334
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateFilterComponent, never>;
|
|
1368
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateFilterComponent, "tb-date-filter", never, { "info": { "alias": "info"; "required": false; }; "CurrentFilterType": { "alias": "CurrentFilterType"; "required": false; }; }, {}, never, never,
|
|
1335
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateFilterComponent, "tb-date-filter", never, { "info": { "alias": "info"; "required": false; }; "CurrentFilterType": { "alias": "CurrentFilterType"; "required": false; }; }, {}, never, never, true, never>;
|
|
1369
1336
|
}
|
|
1370
1337
|
|
|
1371
1338
|
declare class FilterComponent<T extends mappedFieldTypes = any> {
|
|
@@ -1731,7 +1698,7 @@ declare class FilterComponent<T extends mappedFieldTypes = any> {
|
|
|
1731
1698
|
ngOnInit(): void;
|
|
1732
1699
|
onEnter(filter: FilterInfo, event: any): void;
|
|
1733
1700
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterComponent<any>, never>;
|
|
1734
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent<any>, "tb-filter", never, { "filter": { "alias": "filter"; "required": false; }; }, { "close": "close"; }, never, never,
|
|
1701
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent<any>, "tb-filter", never, { "filter": { "alias": "filter"; "required": false; }; }, { "close": "close"; }, never, never, true, never>;
|
|
1735
1702
|
}
|
|
1736
1703
|
|
|
1737
1704
|
declare class NumberFilterComponent {
|
|
@@ -1740,7 +1707,7 @@ declare class NumberFilterComponent {
|
|
|
1740
1707
|
CurrentFilterType: FilterType;
|
|
1741
1708
|
info: PartialFilter;
|
|
1742
1709
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumberFilterComponent, never>;
|
|
1743
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NumberFilterComponent, "tb-number-filter", never, { "CurrentFilterType": { "alias": "CurrentFilterType"; "required": false; }; "info": { "alias": "info"; "required": false; }; }, {}, never, never,
|
|
1710
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumberFilterComponent, "tb-number-filter", never, { "CurrentFilterType": { "alias": "CurrentFilterType"; "required": false; }; "info": { "alias": "info"; "required": false; }; }, {}, never, never, true, never>;
|
|
1744
1711
|
}
|
|
1745
1712
|
|
|
1746
1713
|
declare class ArrayColumnComponent {
|
|
@@ -1752,7 +1719,7 @@ declare class ArrayColumnComponent {
|
|
|
1752
1719
|
constructor(config: TableBuilderConfig);
|
|
1753
1720
|
ngOnInit(): void;
|
|
1754
1721
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArrayColumnComponent, never>;
|
|
1755
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ArrayColumnComponent, "tb-array-column", never, { "array": { "alias": "array"; "required": false; }; "metaData": { "alias": "metaData"; "required": false; }; }, {}, never, never,
|
|
1722
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArrayColumnComponent, "tb-array-column", never, { "array": { "alias": "array"; "required": false; }; "metaData": { "alias": "metaData"; "required": false; }; }, {}, never, never, true, never>;
|
|
1756
1723
|
}
|
|
1757
1724
|
|
|
1758
1725
|
declare class LinkColumnComponent {
|
|
@@ -1767,7 +1734,7 @@ declare class LinkColumnComponent {
|
|
|
1767
1734
|
target: _saydar_table_builder.Target;
|
|
1768
1735
|
}>;
|
|
1769
1736
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinkColumnComponent, never>;
|
|
1770
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinkColumnComponent, "tb-link-column", never, { "metaData": { "alias": "metaData"; "required": false; }; "element": { "alias": "element"; "required": false; }; "transform": { "alias": "transform"; "required": false; }; }, {}, never, never,
|
|
1737
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkColumnComponent, "tb-link-column", never, { "metaData": { "alias": "metaData"; "required": false; }; "element": { "alias": "element"; "required": false; }; "transform": { "alias": "transform"; "required": false; }; }, {}, never, never, true, never>;
|
|
1771
1738
|
}
|
|
1772
1739
|
|
|
1773
1740
|
declare class HeaderMenuComponent {
|
|
@@ -1787,7 +1754,7 @@ declare class HeaderMenuComponent {
|
|
|
1787
1754
|
setFilterType(filterType: FilterType): void;
|
|
1788
1755
|
onEnter(filter: FilterInfo): void;
|
|
1789
1756
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderMenuComponent, never>;
|
|
1790
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderMenuComponent, "tb-header-menu", never, { "filter": { "alias": "filter"; "required": false; }; "metaData": { "alias": "metaData"; "required": false; }; }, {}, never, never,
|
|
1757
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderMenuComponent, "tb-header-menu", never, { "filter": { "alias": "filter"; "required": false; }; "metaData": { "alias": "metaData"; "required": false; }; }, {}, never, never, true, never>;
|
|
1791
1758
|
}
|
|
1792
1759
|
|
|
1793
1760
|
declare class KeyDisplayPipe implements PipeTransform {
|
|
@@ -1795,7 +1762,7 @@ declare class KeyDisplayPipe implements PipeTransform {
|
|
|
1795
1762
|
constructor(tableState: TableStore);
|
|
1796
1763
|
transform(key: string): Observable<string>;
|
|
1797
1764
|
static ɵfac: i0.ɵɵFactoryDeclaration<KeyDisplayPipe, never>;
|
|
1798
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<KeyDisplayPipe, "keyDisplay",
|
|
1765
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<KeyDisplayPipe, "keyDisplay", true>;
|
|
1799
1766
|
}
|
|
1800
1767
|
|
|
1801
1768
|
declare class FormatFilterValuePipe implements PipeTransform {
|
|
@@ -1804,13 +1771,13 @@ declare class FormatFilterValuePipe implements PipeTransform {
|
|
|
1804
1771
|
constructor(tableState: TableStore, datePipe: DatePipe);
|
|
1805
1772
|
transform(value: any, key: string, filterType: FilterType): Observable<string>;
|
|
1806
1773
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormatFilterValuePipe, never>;
|
|
1807
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<FormatFilterValuePipe, "formatFilterValue",
|
|
1774
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FormatFilterValuePipe, "formatFilterValue", true>;
|
|
1808
1775
|
}
|
|
1809
1776
|
|
|
1810
1777
|
declare class FormatFilterTypePipe implements PipeTransform {
|
|
1811
1778
|
transform(filterType: FilterType, value: any): FilterType | "Is Not Blank";
|
|
1812
1779
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormatFilterTypePipe, never>;
|
|
1813
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<FormatFilterTypePipe, "formatFilterType",
|
|
1780
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FormatFilterTypePipe, "formatFilterType", true>;
|
|
1814
1781
|
}
|
|
1815
1782
|
|
|
1816
1783
|
declare class InFilterComponent implements ControlValueAccessor {
|
|
@@ -1828,7 +1795,7 @@ declare class InFilterComponent implements ControlValueAccessor {
|
|
|
1828
1795
|
removeInput(index: number): void;
|
|
1829
1796
|
onValueChange(i: number, value: number | string): void;
|
|
1830
1797
|
static ɵfac: i0.ɵɵFactoryDeclaration<InFilterComponent, never>;
|
|
1831
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InFilterComponent, "lib-in-filter", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, never,
|
|
1798
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InFilterComponent, "lib-in-filter", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
|
|
1832
1799
|
}
|
|
1833
1800
|
|
|
1834
1801
|
declare class InListFilterComponent implements ControlValueAccessor {
|
|
@@ -1849,7 +1816,7 @@ declare class InListFilterComponent implements ControlValueAccessor {
|
|
|
1849
1816
|
ngOnInit(): void;
|
|
1850
1817
|
selectFilterChanged($event: any, val: any): void;
|
|
1851
1818
|
static ɵfac: i0.ɵɵFactoryDeclaration<InListFilterComponent, never>;
|
|
1852
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InListFilterComponent, "tb-in-list-filter , [tb-in-list-filter]", never, { "key": { "alias": "key"; "required": false; }; }, {}, never, never,
|
|
1819
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InListFilterComponent, "tb-in-list-filter , [tb-in-list-filter]", never, { "key": { "alias": "key"; "required": false; }; }, {}, never, never, true, never>;
|
|
1853
1820
|
}
|
|
1854
1821
|
|
|
1855
1822
|
declare class SortMenuComponentStore extends ComponentStore<ComponenStoreState> {
|
|
@@ -1888,7 +1855,7 @@ declare class SortMenuComponent implements OnInit {
|
|
|
1888
1855
|
apply: (observableOrValue: Observable<null> | null) => rxjs.Subscription;
|
|
1889
1856
|
setDirection(sort: SortWithName): void;
|
|
1890
1857
|
static ɵfac: i0.ɵɵFactoryDeclaration<SortMenuComponent, never>;
|
|
1891
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SortMenuComponent, "tb-sort-menu", never, {}, {}, never, never,
|
|
1858
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SortMenuComponent, "tb-sort-menu", never, {}, {}, never, never, true, never>;
|
|
1892
1859
|
}
|
|
1893
1860
|
|
|
1894
1861
|
declare class FilterChipsComponent {
|
|
@@ -1901,7 +1868,7 @@ declare class FilterChipsComponent {
|
|
|
1901
1868
|
clearAll(): void;
|
|
1902
1869
|
currentFilters$: Observable<_saydar_table_builder.PartialFilter<any>[]>;
|
|
1903
1870
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterChipsComponent, never>;
|
|
1904
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterChipsComponent, "lib-filter-list", never, {}, {}, never, never,
|
|
1871
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterChipsComponent, "lib-filter-list", never, {}, {}, never, never, true, never>;
|
|
1905
1872
|
}
|
|
1906
1873
|
|
|
1907
1874
|
declare class GroupByListComponent implements OnInit {
|
|
@@ -1909,7 +1876,7 @@ declare class GroupByListComponent implements OnInit {
|
|
|
1909
1876
|
constructor(tableStore: TableStore);
|
|
1910
1877
|
ngOnInit(): void;
|
|
1911
1878
|
static ɵfac: i0.ɵɵFactoryDeclaration<GroupByListComponent, never>;
|
|
1912
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GroupByListComponent, "group-by-list", never, {}, {}, never, never,
|
|
1879
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GroupByListComponent, "group-by-list", never, {}, {}, never, never, true, never>;
|
|
1913
1880
|
}
|
|
1914
1881
|
|
|
1915
1882
|
declare class DateTimeFilterComponent {
|
|
@@ -1917,19 +1884,13 @@ declare class DateTimeFilterComponent {
|
|
|
1917
1884
|
info: PartialFilter;
|
|
1918
1885
|
CurrentFilterType: FilterType;
|
|
1919
1886
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateTimeFilterComponent, never>;
|
|
1920
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateTimeFilterComponent, "tb-date-time-filter", never, { "info": { "alias": "info"; "required": false; }; "CurrentFilterType": { "alias": "CurrentFilterType"; "required": false; }; }, {}, never, never,
|
|
1921
|
-
}
|
|
1922
|
-
|
|
1923
|
-
declare class MaterialModule {
|
|
1924
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
|
|
1925
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.MatSlideToggleModule, typeof i2.MatTableModule, typeof i3.MatSelectModule, typeof i4.MatDialogModule, typeof i5.MatDatepickerModule, typeof i6.MatRadioModule, typeof i7.MatButtonModule, typeof i8.MatExpansionModule, typeof i9.MatStepperModule, typeof i10.MatToolbarModule, typeof i11.MatTooltipModule, typeof i12.MatNativeDateModule, typeof i13.MatProgressSpinnerModule, typeof i14.MatGridListModule, typeof i15.MatCardModule, typeof i16.MatSidenavModule, typeof i17.MatTabsModule, typeof i18.MatInputModule, typeof i17.MatTabsModule, typeof i19.MatCheckboxModule, typeof i20.MatMenuModule, typeof i21.MatIconModule, typeof i22.MatBadgeModule, typeof i23.MatSortModule, typeof i24.MatAutocompleteModule, typeof i25.MatPaginatorModule, typeof i26.MatChipsModule, typeof i4.MatDialogModule], [typeof i1.MatSlideToggleModule, typeof i2.MatTableModule, typeof i3.MatSelectModule, typeof i4.MatDialogModule, typeof i5.MatDatepickerModule, typeof i6.MatRadioModule, typeof i7.MatButtonModule, typeof i8.MatExpansionModule, typeof i9.MatStepperModule, typeof i10.MatToolbarModule, typeof i11.MatTooltipModule, typeof i12.MatNativeDateModule, typeof i13.MatProgressSpinnerModule, typeof i14.MatGridListModule, typeof i15.MatCardModule, typeof i16.MatSidenavModule, typeof i17.MatTabsModule, typeof i18.MatInputModule, typeof i17.MatTabsModule, typeof i19.MatCheckboxModule, typeof i20.MatMenuModule, typeof i21.MatIconModule, typeof i22.MatBadgeModule, typeof i23.MatSortModule, typeof i24.MatAutocompleteModule, typeof i25.MatPaginatorModule, typeof i26.MatChipsModule, typeof i4.MatDialogModule]>;
|
|
1926
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
|
|
1887
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateTimeFilterComponent, "tb-date-time-filter", never, { "info": { "alias": "info"; "required": false; }; "CurrentFilterType": { "alias": "CurrentFilterType"; "required": false; }; }, {}, never, never, true, never>;
|
|
1927
1888
|
}
|
|
1928
1889
|
|
|
1929
1890
|
declare class TableBuilderModule {
|
|
1930
1891
|
static forRoot(config: TableBuilderConfig): ModuleWithProviders<TableBuilderModule>;
|
|
1931
1892
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableBuilderModule, never>;
|
|
1932
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TableBuilderModule,
|
|
1893
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TableBuilderModule, never, [typeof i1.CommonModule, typeof _ngrx_store.StoreFeatureModule, typeof i3.EffectsFeatureModule, typeof i4.FormsModule, typeof i5.RouterModule, typeof i6.LetDirective, typeof i7.DragDropModule, typeof UtilitiesModule, typeof i9.ScrollingModule, typeof i10.TableVirtualScrollModule, typeof ColumnTotalPipe, typeof TableContainerComponent, typeof GenericTableComponent, typeof GenericTableVsComponent, typeof PaginatorComponent, typeof CustomCellDirective, typeof GenColDisplayerComponent, typeof GenFilterDisplayerComponent, typeof DateFilterComponent, typeof FilterComponent, typeof MultiSortDirective, typeof NumberFilterComponent, typeof ColumnBuilderComponent, typeof ArrayColumnComponent, typeof LinkColumnComponent, typeof HeaderMenuComponent, typeof KeyDisplayPipe, typeof FormatFilterValuePipe, typeof FormatFilterTypePipe, typeof ResizeColumnDirective, typeof InFilterComponent, typeof InitializationComponent, typeof InListFilterComponent, typeof SortMenuComponent, typeof FilterChipsComponent, typeof MatSlideToggleTbFilterDirective, typeof MatRadioButtonTbFilterDirective, typeof MatOptionTbFilterDirective, typeof MatCheckboxTbFilterDirective, typeof MatButtonToggleFilterDirective, typeof TableFilterDirective, typeof TableFilterStringContainsDirective, typeof TableWrapperDirective, typeof GroupByListComponent, typeof DateTimeFilterComponent], [typeof GenericTableComponent, typeof GenericTableVsComponent, typeof PaginatorComponent, typeof TableContainerComponent, typeof CustomCellDirective, typeof GenColDisplayerComponent, typeof GenFilterDisplayerComponent, typeof FilterComponent, typeof MultiSortDirective, typeof ResizeColumnDirective, typeof MatSlideToggleTbFilterDirective, typeof MatRadioButtonTbFilterDirective, typeof MatOptionTbFilterDirective, typeof MatCheckboxTbFilterDirective, typeof MatButtonToggleFilterDirective, typeof TableFilterDirective, typeof TableFilterStringContainsDirective, typeof TableWrapperDirective, typeof GroupByListComponent]>;
|
|
1933
1894
|
static ɵinj: i0.ɵɵInjectorDeclaration<TableBuilderModule>;
|
|
1934
1895
|
}
|
|
1935
1896
|
|
|
@@ -1993,7 +1954,7 @@ declare function actionStatusReducer(state: StatusState | undefined, action: Act
|
|
|
1993
1954
|
|
|
1994
1955
|
declare class NgrxExtModule {
|
|
1995
1956
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgrxExtModule, never>;
|
|
1996
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NgrxExtModule, never, [typeof
|
|
1957
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NgrxExtModule, never, [typeof i1.CommonModule, typeof _ngrx_store.StoreFeatureModule], never>;
|
|
1997
1958
|
static ɵinj: i0.ɵɵInjectorDeclaration<NgrxExtModule>;
|
|
1998
1959
|
}
|
|
1999
1960
|
|
|
@@ -2006,13 +1967,6 @@ declare class ActionStateSpinnerComponent implements OnInit {
|
|
|
2006
1967
|
static ɵcmp: i0.ɵɵComponentDeclaration<ActionStateSpinnerComponent, "lib-action-state-spinner", never, { "status$": { "alias": "status$"; "required": false; }; }, {}, never, never, true, never>;
|
|
2007
1968
|
}
|
|
2008
1969
|
|
|
2009
|
-
/** @deprecated Import ActionStateSpinnerComponent directly instead. */
|
|
2010
|
-
declare class ActionStateUiModule {
|
|
2011
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ActionStateUiModule, never>;
|
|
2012
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ActionStateUiModule, never, [typeof ActionStateSpinnerComponent], [typeof ActionStateSpinnerComponent]>;
|
|
2013
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ActionStateUiModule>;
|
|
2014
|
-
}
|
|
2015
|
-
|
|
2016
1970
|
declare function setUpStoreFactory(store: Store): () => Promise<unknown>;
|
|
2017
1971
|
/**
|
|
2018
1972
|
* Creates a selector that can dispatch an action if conditions are met.
|
|
@@ -2027,5 +1981,5 @@ type ActionableMemoizedSelector<State, Result> = MemoizedSelector<State, Result>
|
|
|
2027
1981
|
type ActionReturner<Props> = (props: Props) => Action;
|
|
2028
1982
|
declare function defaultFilter(data: any): boolean;
|
|
2029
1983
|
|
|
2030
|
-
export { ActionStateSpinnerComponent,
|
|
1984
|
+
export { ActionStateSpinnerComponent, ActionStatus, AppStatusState, ArrayStyle, AutoFocusDirective, CancellationToken, ClickEmitterDirective, ClickSubjectDirective, ConditionalClassesDirective, CreateTableBuilder, CustomCellDirective, DateFilterComponent, DialogDirective, DialogService, DialogWrapper, FieldType, FilterChipsComponent, FilterComponent, FilterType, FunctionPipe, GenColDisplayerComponent, GenFilterDisplayerComponent, GeneralTableSettings, GenericTableComponent, GenericTableVsComponent, GroupByListComponent, HttpErrorStateDirective, HttpInProgressStateDirective, HttpNotStartedStateDirective, HttpRequestStateDirective, HttpRequestStateFactory, HttpRequestStateStore, HttpRequestStatus, HttpRequestStrategy, HttpSuccessStateDirective, InitializationState, MatButtonToggleFilterDirective, MatCheckboxTbFilterDirective, MatOptionTbFilterDirective, MatRadioButtonTbFilterDirective, MatSlideToggleGroupDirective, MatSlideToggleTbFilterDirective, MatTableObservableDataSource, MultiSortDirective, NgrxExtModule, NotPersisitedTableSettings, PaginatorComponent, PesrsistedTableSettings, PhoneNumberPipe, PreventEnterDirective, ResizeColumnDirective, SortDirection, SpaceCasePipe, StopPropagationDirective, StylerDirective, Subjectifier, TableBuilder, TableBuilderModule, TableColumnHeaderSettings, TableContainerComponent, TableCustomFilterDirective, TableCustomFilterDirectiveBase, TableFilterDirective, TableFilterStringContainsDirective, TableStore, TableVirtualScrollObservableDataSource, TableWrapperDirective, TableWrapperFooterSettings, TableWrapperHeaderSettings, Target, TbSelectedFilterDirective, TrimWhitespaceDirective, UtilitiesModule, actionStatusReducer, chainRequest, combineArrays, createActionableSelector, createFailure, createFilterFunc, createSuccess, defaultFilter, defaultShareReplay, defaultTableState, delayOn, filterArray, filterTypeMap, getRequestorBody, getRequestorStatus, getStatusState, httpRequest, httpRequestor, inProgress, initialState, isCustomFilter, isErrorState, isFilterInfo, isSuccessOrErrorState, isSuccessState, keysToDelete, mapArray, mapError, notNull, notStarted, onWait, onceWhen, orderMetaData, orderViewableMetaData, previousAndCurrent, selectAll, selectEntities, selectEntity, selectIds, selectTotal, serverStatusTypes, setUpStoreFactory, skipOneWhen, spaceCase, stateIs, statusAdapter, statusIsSuccessOrInProgress, switchOff, tapError, tapSuccess };
|
|
2031
1985
|
export type { ActionReturner, Additional, ArrayAdditional, CustomFilter, DateTimeOptions, FilterFunc, FilterInfo, FilterOptions, FilterState, Group, HttpRequestFactory, HttpRequestState, HttpRequestState$, HttpRequestStateAny, HttpRequestStateCancelled, HttpRequestStateError, HttpRequestStateInProgress, HttpRequestStateNotStarted, HttpRequestStateSuccess, HttpRequestStateViewContext, HttpRequestor, HttpSuccessStateViewContext, MetaData, PartialFilter, PersistedTableState, Range, ReportDef, RequestResponse, RequestStateOptions, SortDef, State, StatusState, TableBuilderSettings, TableState, UnmappedTypes, mappedFieldTypes };
|