@messaia/cdk 13.3.2 → 13.3.3-rc03
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/esm2020/lib/base/components/generic-form-base.component.mjs +5 -1
- package/esm2020/lib/base/components/generic-list.component.mjs +7 -1
- package/esm2020/lib/common/common.module.mjs +3 -1
- package/esm2020/lib/common/models/audit-entity.mjs +18 -0
- package/esm2020/lib/common/models/base-entity.mjs +18 -0
- package/esm2020/lib/common/services/service-locator.mjs +11 -1
- package/esm2020/lib/forms/directives/mat-form-field-editor.directive.mjs +162 -0
- package/esm2020/lib/forms/forms.module.mjs +6 -3
- package/esm2020/lib/layout/layout-nav/layout-nav.component.mjs +18 -7
- package/esm2020/lib/layout/layout-toggle.class.mjs +2 -2
- package/esm2020/lib/layout/navigation-drawer/navigation-drawer.component.mjs +1 -1
- package/esm2020/lib/menu/services/menu.resolve.mjs +3 -3
- package/esm2020/lib/table/components/filter-select.component.mjs +5 -5
- package/esm2020/lib/table/table.module.mjs +2 -7
- package/fesm2015/messaia-cdk.mjs +4636 -4424
- package/fesm2015/messaia-cdk.mjs.map +1 -1
- package/fesm2020/messaia-cdk.mjs +4559 -4349
- package/fesm2020/messaia-cdk.mjs.map +1 -1
- package/lib/base/components/generic-form-base.component.d.ts +2 -2
- package/lib/base/components/generic-list.component.d.ts +4 -0
- package/lib/common/common.module.d.ts +2 -0
- package/lib/common/models/audit-entity.d.ts +12 -0
- package/lib/common/models/base-entity.d.ts +10 -0
- package/lib/common/services/service-locator.d.ts +8 -1
- package/lib/forms/directives/mat-form-field-editor.directive.d.ts +82 -0
- package/lib/forms/forms.module.d.ts +21 -18
- package/lib/layout/layout-nav/layout-nav.component.d.ts +15 -1
- package/lib/table/table.module.d.ts +19 -21
- package/package.json +1 -1
|
@@ -195,12 +195,12 @@ export declare abstract class GenericFormBaseComponent<TEntity extends IEntity,
|
|
|
195
195
|
* Validates the form
|
|
196
196
|
* @param form
|
|
197
197
|
*/
|
|
198
|
-
|
|
198
|
+
validateForm(form?: NgForm | FormGroup): void;
|
|
199
199
|
/**
|
|
200
200
|
* Validates the form
|
|
201
201
|
* @param form
|
|
202
202
|
*/
|
|
203
|
-
|
|
203
|
+
isFormValid(form?: NgForm | FormGroup): boolean;
|
|
204
204
|
/**
|
|
205
205
|
* Resets form controls
|
|
206
206
|
* @param form
|
|
@@ -41,6 +41,10 @@ export declare abstract class GenericListComponent<TEntity extends IEntity | any
|
|
|
41
41
|
* The navigations to includes
|
|
42
42
|
*/
|
|
43
43
|
includes: Array<string>;
|
|
44
|
+
/**
|
|
45
|
+
* The navigations to includes
|
|
46
|
+
*/
|
|
47
|
+
excludedColumns: Array<string>;
|
|
44
48
|
/**
|
|
45
49
|
* Get params
|
|
46
50
|
*/
|
|
@@ -27,7 +27,9 @@ export { AppStorage } from './helpers/app-storage';
|
|
|
27
27
|
export { DynamicBuilder } from './helpers/dynamic-builder';
|
|
28
28
|
export { ActionMenuItem } from './models/action-menu-item';
|
|
29
29
|
export { AppSetting } from './models/app-setting';
|
|
30
|
+
export { AuditEntity } from './models/audit-entity';
|
|
30
31
|
export { AuditUser } from './models/audit-user';
|
|
32
|
+
export { BaseEntity } from './models/base-entity';
|
|
31
33
|
export { IEntity } from './models/entity';
|
|
32
34
|
export { KeyValue } from './models/key-value';
|
|
33
35
|
export { SaveAction } from './models/save-action';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BaseEntity } from "./base-entity";
|
|
2
|
+
export declare abstract class AuditEntity extends BaseEntity {
|
|
3
|
+
createdBy: string;
|
|
4
|
+
createdDate: Date;
|
|
5
|
+
updatedBy: string;
|
|
6
|
+
updatedDate: Date;
|
|
7
|
+
/**
|
|
8
|
+
* constructor
|
|
9
|
+
* @param init
|
|
10
|
+
*/
|
|
11
|
+
constructor(init?: Partial<AuditEntity>);
|
|
12
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { InjectionToken, Injector, Type } from "@angular/core";
|
|
1
|
+
import { InjectionToken, Injector, StaticProvider, Type } from "@angular/core";
|
|
2
2
|
export declare class ServiceLocator {
|
|
3
3
|
static injector: Injector;
|
|
4
4
|
/**
|
|
@@ -9,4 +9,11 @@ export declare class ServiceLocator {
|
|
|
9
9
|
* - Returns the `notFoundValue` otherwise
|
|
10
10
|
*/
|
|
11
11
|
static getService<T>(token: Type<T> | InjectionToken<T>, notFoundValue?: T): T;
|
|
12
|
+
/**
|
|
13
|
+
* Creates a new injector instance that provides one or more dependencies,
|
|
14
|
+
* according to a given type or types of `StaticProvider`.
|
|
15
|
+
*
|
|
16
|
+
* @param providers: An array of providers of the [StaticProvider type](api/core/StaticProvider).
|
|
17
|
+
*/
|
|
18
|
+
static create(providers: StaticProvider[]): void;
|
|
12
19
|
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { Platform } from '@angular/cdk/platform';
|
|
2
|
+
import { AutofillMonitor } from '@angular/cdk/text-field';
|
|
3
|
+
import { DoCheck, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
4
|
+
import { FormGroupDirective, NgControl, NgForm } from '@angular/forms';
|
|
5
|
+
import { CanUpdateErrorState, ErrorStateMatcher } from '@angular/material/core';
|
|
6
|
+
import { MatFormFieldControl } from '@angular/material/form-field';
|
|
7
|
+
import { EditorComponent } from '@tinymce/tinymce-angular';
|
|
8
|
+
import { Subject } from 'rxjs';
|
|
9
|
+
import { Editor } from 'tinymce';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
declare class EditorControlBase {
|
|
12
|
+
_defaultErrorStateMatcher: ErrorStateMatcher;
|
|
13
|
+
_parentForm: NgForm;
|
|
14
|
+
_parentFormGroup: FormGroupDirective;
|
|
15
|
+
ngControl: NgControl;
|
|
16
|
+
/**
|
|
17
|
+
* Constructor
|
|
18
|
+
* @param _defaultErrorStateMatcher
|
|
19
|
+
* @param _parentForm
|
|
20
|
+
* @param _parentFormGroup
|
|
21
|
+
* @param ngControl
|
|
22
|
+
*/
|
|
23
|
+
constructor(_defaultErrorStateMatcher: ErrorStateMatcher, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, ngControl: NgControl);
|
|
24
|
+
}
|
|
25
|
+
export interface EditorChange {
|
|
26
|
+
textContent: string;
|
|
27
|
+
displayContent: string;
|
|
28
|
+
}
|
|
29
|
+
declare const _EditorInputMixinBase: import("@angular/material/core")._Constructor<CanUpdateErrorState> & import("@angular/material/core")._AbstractConstructor<CanUpdateErrorState> & typeof EditorControlBase;
|
|
30
|
+
export declare class MatFormFieldEditorDirective extends _EditorInputMixinBase implements MatFormFieldControl<any>, CanUpdateErrorState, DoCheck {
|
|
31
|
+
private elementRef;
|
|
32
|
+
ngControl: NgControl;
|
|
33
|
+
private valueAccessor;
|
|
34
|
+
private platform;
|
|
35
|
+
private autofillMonitor;
|
|
36
|
+
private ngZone;
|
|
37
|
+
/**
|
|
38
|
+
* _disabled: boolean
|
|
39
|
+
*/
|
|
40
|
+
private _disabled;
|
|
41
|
+
get disabled(): boolean;
|
|
42
|
+
set disabled(value: boolean);
|
|
43
|
+
/**
|
|
44
|
+
* _id: string
|
|
45
|
+
*/
|
|
46
|
+
private _id;
|
|
47
|
+
get id(): string;
|
|
48
|
+
set id(value: string);
|
|
49
|
+
/**
|
|
50
|
+
* This input just provides the placeholder to the mat-form-field.
|
|
51
|
+
* Placeholder setup will still have to be done according to the
|
|
52
|
+
* TinyMCE placeholder plugin being used.
|
|
53
|
+
*/
|
|
54
|
+
placeholder: string;
|
|
55
|
+
private _required;
|
|
56
|
+
get required(): boolean;
|
|
57
|
+
set required(value: boolean);
|
|
58
|
+
get value(): string;
|
|
59
|
+
set value(value: string);
|
|
60
|
+
editorChange: EventEmitter<EditorChange>;
|
|
61
|
+
empty: boolean;
|
|
62
|
+
focused: boolean;
|
|
63
|
+
controlType: string;
|
|
64
|
+
readonly stateChanges: Subject<void>;
|
|
65
|
+
ariaDescribedby: string | null;
|
|
66
|
+
shouldLabelFloat: boolean;
|
|
67
|
+
autofilled: boolean;
|
|
68
|
+
private uid;
|
|
69
|
+
private editor;
|
|
70
|
+
private editorElement;
|
|
71
|
+
errorStateMatcher: ErrorStateMatcher;
|
|
72
|
+
constructor(elementRef: ElementRef<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement>, ngControl: NgControl, parentForm: NgForm, parentFormGroup: FormGroupDirective, errorStateMatcher: ErrorStateMatcher, valueAccessor: EditorComponent, platform: Platform, autofillMonitor: AutofillMonitor, ngZone: NgZone);
|
|
73
|
+
ngDoCheck(): void;
|
|
74
|
+
onEditorInit({ editor }: {
|
|
75
|
+
editor: Editor;
|
|
76
|
+
}): void;
|
|
77
|
+
setDescribedByIds(ids: string[]): void;
|
|
78
|
+
onContainerClick(): void;
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatFormFieldEditorDirective, [null, { optional: true; self: true; }, { optional: true; }, { optional: true; }, null, { self: true; }, null, null, null]>;
|
|
80
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatFormFieldEditorDirective, "[tinyMatFormControl]", never, { "disabled": "disabled"; "id": "id"; "placeholder": "placeholder"; "required": "required"; "value": "value"; "errorStateMatcher": "errorStateMatcher"; }, { "editorChange": "editorChange"; }, never>;
|
|
81
|
+
}
|
|
82
|
+
export {};
|
|
@@ -1,23 +1,27 @@
|
|
|
1
|
+
import { MatFormFieldEditorDirective } from './directives/mat-form-field-editor.directive';
|
|
2
|
+
import { NativeElementInjectorDirective } from './validators/native-element-injector.directive';
|
|
3
|
+
import { UniqueValidatorDirective } from './validators/unique-validator-directive';
|
|
1
4
|
import * as i0 from "@angular/core";
|
|
2
5
|
import * as i1 from "./validators/equal-validator.directive";
|
|
3
6
|
import * as i2 from "./validators/unique-validator-directive";
|
|
4
7
|
import * as i3 from "./validators/native-element-injector.directive";
|
|
5
8
|
import * as i4 from "./directives/mat-form-field-readonly.directive";
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "../
|
|
10
|
-
import * as i9 from "../
|
|
11
|
-
import * as i10 from "
|
|
12
|
-
import * as i11 from "@angular/
|
|
13
|
-
import * as i12 from "@angular/material/
|
|
14
|
-
import * as i13 from "@angular/material/
|
|
15
|
-
import * as i14 from "@angular/material/
|
|
16
|
-
import * as i15 from "@angular/material/
|
|
17
|
-
import * as i16 from "@angular/material/
|
|
18
|
-
import * as i17 from "@angular/material/
|
|
19
|
-
import * as i18 from "@angular/material/
|
|
20
|
-
import * as i19 from "@angular/material/
|
|
9
|
+
import * as i5 from "./directives/mat-form-field-editor.directive";
|
|
10
|
+
import * as i6 from "./components/generic-form/generic-form.component";
|
|
11
|
+
import * as i7 from "@angular/common";
|
|
12
|
+
import * as i8 from "../common/common.module";
|
|
13
|
+
import * as i9 from "../select/select.module";
|
|
14
|
+
import * as i10 from "../chips/chips.module";
|
|
15
|
+
import * as i11 from "@angular/forms";
|
|
16
|
+
import * as i12 from "@angular/material/form-field";
|
|
17
|
+
import * as i13 from "@angular/material/select";
|
|
18
|
+
import * as i14 from "@angular/material/icon";
|
|
19
|
+
import * as i15 from "@angular/material/input";
|
|
20
|
+
import * as i16 from "@angular/material/datepicker";
|
|
21
|
+
import * as i17 from "@angular/material/checkbox";
|
|
22
|
+
import * as i18 from "@angular/material/slide-toggle";
|
|
23
|
+
import * as i19 from "@angular/material/core";
|
|
24
|
+
import * as i20 from "@angular/material/autocomplete";
|
|
21
25
|
export { formFieldGroupMetadataKey } from './constants/constants';
|
|
22
26
|
export { FormFieldType } from './enums/form-field-type';
|
|
23
27
|
export { FormField, FormGroup } from './functions/decorators';
|
|
@@ -27,10 +31,9 @@ export { ValueAccessorBase } from './helpers/value-accessor-base';
|
|
|
27
31
|
export { FormFieldDefinition } from './models/form-field-definition';
|
|
28
32
|
export { FormFieldGroup } from './models/form-field-group';
|
|
29
33
|
export { EqualValidator } from './validators/equal-validator.directive';
|
|
30
|
-
export { NativeElementInjectorDirective
|
|
31
|
-
export { UniqueValidatorDirective } from './validators/unique-validator-directive';
|
|
34
|
+
export { NativeElementInjectorDirective, UniqueValidatorDirective, MatFormFieldEditorDirective };
|
|
32
35
|
export declare class VdFormsModule {
|
|
33
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdFormsModule, never>;
|
|
34
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<VdFormsModule, [typeof i1.EqualValidator, typeof i2.UniqueValidatorDirective, typeof i3.NativeElementInjectorDirective, typeof i4.MatFormFieldReadonlyDirective, typeof i5.VdEditorDirective, typeof
|
|
37
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<VdFormsModule, [typeof i1.EqualValidator, typeof i2.UniqueValidatorDirective, typeof i3.NativeElementInjectorDirective, typeof i4.MatFormFieldReadonlyDirective, typeof i5.MatFormFieldEditorDirective, typeof i6.VdEditorDirective, typeof i6.VdCodeDirective, typeof i6.VdFileDirective, typeof i6.VdCustomDirective, typeof i6.VdGenericFormComponent], [typeof i7.CommonModule, typeof i8.VdCommonModule, typeof i9.VdSelectModule, typeof i10.VdChipsModule, typeof i11.FormsModule, typeof i11.ReactiveFormsModule, typeof i12.MatFormFieldModule, typeof i13.MatSelectModule, typeof i14.MatIconModule, typeof i15.MatInputModule, typeof i16.MatDatepickerModule, typeof i17.MatCheckboxModule, typeof i18.MatSlideToggleModule, typeof i16.MatDatepickerModule, typeof i19.MatNativeDateModule, typeof i20.MatAutocompleteModule], [typeof i1.EqualValidator, typeof i2.UniqueValidatorDirective, typeof i3.NativeElementInjectorDirective, typeof i4.MatFormFieldReadonlyDirective, typeof i5.MatFormFieldEditorDirective, typeof i6.VdEditorDirective, typeof i6.VdCodeDirective, typeof i6.VdFileDirective, typeof i6.VdCustomDirective, typeof i6.VdGenericFormComponent]>;
|
|
35
38
|
static ɵinj: i0.ɵɵInjectorDeclaration<VdFormsModule>;
|
|
36
39
|
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { MenuItem } from '../../menu/models/menu-item';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
export declare class VdLayoutNavComponent {
|
|
4
6
|
private router;
|
|
@@ -9,6 +11,18 @@ export declare class VdLayoutNavComponent {
|
|
|
9
11
|
* Title set in toolbar.
|
|
10
12
|
*/
|
|
11
13
|
toolbarTitle: string;
|
|
14
|
+
/**
|
|
15
|
+
* editMode?: boolean
|
|
16
|
+
*/
|
|
17
|
+
editMode?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* menuItems: MenuItem[]
|
|
20
|
+
*/
|
|
21
|
+
menuItems: MenuItem[];
|
|
22
|
+
/**
|
|
23
|
+
* reload: EventEmitter<any>
|
|
24
|
+
*/
|
|
25
|
+
reload: EventEmitter<any>;
|
|
12
26
|
/**
|
|
13
27
|
* icon?: string
|
|
14
28
|
*
|
|
@@ -67,5 +81,5 @@ export declare class VdLayoutNavComponent {
|
|
|
67
81
|
*/
|
|
68
82
|
handleNavigationClick(): void;
|
|
69
83
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdLayoutNavComponent, [{ optional: true; }, { optional: true; }]>;
|
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VdLayoutNavComponent, "vd-layout-nav", never, { "toolbarTitle": "toolbarTitle"; "icon": "icon"; "logo": "logo"; "color": "color"; "hideToggle": "hideToggle"; "backNavigationRoute": "backNavigationRoute"; "navigationRoute": "navigationRoute"; }, {}, never, ["[vd-menu-button]", "[vd-toolbar-content]", "[vd-toolbar-content-right]", "*", "vd-layout-footer"]>;
|
|
84
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VdLayoutNavComponent, "vd-layout-nav", never, { "toolbarTitle": "toolbarTitle"; "editMode": "editMode"; "menuItems": "menuItems"; "icon": "icon"; "logo": "logo"; "color": "color"; "hideToggle": "hideToggle"; "backNavigationRoute": "backNavigationRoute"; "navigationRoute": "navigationRoute"; }, { "reload": "reload"; }, never, ["[vd-menu-button]", "[vd-toolbar-content]", "[vd-toolbar-content-right]", "*", "vd-layout-footer"]>;
|
|
71
85
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { VdLayoutManageListOpenDirective } from '../layout/layout-manage-list/layout-manage-list.directives';
|
|
2
1
|
import { VdDynamicTableComponent } from './components/dynamic-table/dynamic-table.component';
|
|
3
2
|
import { FilterClearComponent } from './components/filter-clear.component';
|
|
4
3
|
import { FilterDateComponent } from './components/filter-date.component';
|
|
@@ -13,24 +12,23 @@ import * as i5 from "./directives/data-source-filter.directive";
|
|
|
13
12
|
import * as i6 from "./components/dynamic-table/dynamic-table.component";
|
|
14
13
|
import * as i7 from "@angular/common";
|
|
15
14
|
import * as i8 from "../common/common.module";
|
|
16
|
-
import * as i9 from "
|
|
17
|
-
import * as i10 from "@angular/
|
|
18
|
-
import * as i11 from "@angular/material/
|
|
19
|
-
import * as i12 from "@angular/material/
|
|
20
|
-
import * as i13 from "@angular/material/
|
|
21
|
-
import * as i14 from "@angular/material/
|
|
22
|
-
import * as i15 from "@angular/material/
|
|
23
|
-
import * as i16 from "@angular/material/
|
|
24
|
-
import * as i17 from "@angular/material/
|
|
25
|
-
import * as i18 from "@angular/
|
|
26
|
-
import * as i19 from "@angular/
|
|
27
|
-
import * as i20 from "@angular/material/
|
|
28
|
-
import * as i21 from "@angular/material/
|
|
29
|
-
import * as i22 from "@angular/material/
|
|
30
|
-
import * as i23 from "@angular/material/
|
|
31
|
-
import * as i24 from "@angular/material/
|
|
32
|
-
import * as i25 from "@angular/material/
|
|
33
|
-
import * as i26 from "@angular/material/toolbar";
|
|
15
|
+
import * as i9 from "@angular/forms";
|
|
16
|
+
import * as i10 from "@angular/material/button";
|
|
17
|
+
import * as i11 from "@angular/material/form-field";
|
|
18
|
+
import * as i12 from "@angular/material/select";
|
|
19
|
+
import * as i13 from "@angular/material/icon";
|
|
20
|
+
import * as i14 from "@angular/material/input";
|
|
21
|
+
import * as i15 from "@angular/material/datepicker";
|
|
22
|
+
import * as i16 from "@angular/material/table";
|
|
23
|
+
import * as i17 from "@angular/material/sort";
|
|
24
|
+
import * as i18 from "@angular/cdk/table";
|
|
25
|
+
import * as i19 from "@angular/material/progress-bar";
|
|
26
|
+
import * as i20 from "@angular/material/checkbox";
|
|
27
|
+
import * as i21 from "@angular/material/menu";
|
|
28
|
+
import * as i22 from "@angular/material/slide-toggle";
|
|
29
|
+
import * as i23 from "@angular/material/paginator";
|
|
30
|
+
import * as i24 from "@angular/material/tooltip";
|
|
31
|
+
import * as i25 from "@angular/material/toolbar";
|
|
34
32
|
export { TableColumnType } from './enums/table-column-type';
|
|
35
33
|
export { Column, Table } from './functions/decorators';
|
|
36
34
|
export { getTableDefinition } from './functions/functions';
|
|
@@ -40,9 +38,9 @@ export { TableDefinition } from './models/table-definition';
|
|
|
40
38
|
export { TableMenuItem } from './models/table-menu-item';
|
|
41
39
|
export { TableDataSource } from './table.data-source';
|
|
42
40
|
export { TableStaticDataSource } from './table.static-data-source';
|
|
43
|
-
export { VdDynamicTableComponent, FilterClearComponent, FilterDateComponent, FilterInputComponent, DataSourceFilterDirective
|
|
41
|
+
export { VdDynamicTableComponent, FilterClearComponent, FilterDateComponent, FilterInputComponent, DataSourceFilterDirective };
|
|
44
42
|
export declare class VdTableModule {
|
|
45
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdTableModule, never>;
|
|
46
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<VdTableModule, [typeof i1.FilterInputComponent, typeof i2.FilterSelectComponent, typeof i3.FilterClearComponent, typeof i4.FilterDateComponent, typeof i5.DataSourceFilterDirective, typeof i2.VdFilterOptionDirective, typeof i6.VdDynamicTableComponent], [typeof i7.CommonModule, typeof i8.VdCommonModule, typeof i9.
|
|
44
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<VdTableModule, [typeof i1.FilterInputComponent, typeof i2.FilterSelectComponent, typeof i3.FilterClearComponent, typeof i4.FilterDateComponent, typeof i5.DataSourceFilterDirective, typeof i2.VdFilterOptionDirective, typeof i6.VdDynamicTableComponent], [typeof i7.CommonModule, typeof i8.VdCommonModule, typeof i9.FormsModule, typeof i10.MatButtonModule, typeof i11.MatFormFieldModule, typeof i12.MatSelectModule, typeof i13.MatIconModule, typeof i14.MatInputModule, typeof i15.MatDatepickerModule, typeof i16.MatTableModule, typeof i17.MatSortModule, typeof i18.CdkTableModule, typeof i19.MatProgressBarModule, typeof i20.MatCheckboxModule, typeof i10.MatButtonModule, typeof i21.MatMenuModule, typeof i22.MatSlideToggleModule, typeof i23.MatPaginatorModule, typeof i24.MatTooltipModule, typeof i25.MatToolbarModule], [typeof i1.FilterInputComponent, typeof i2.FilterSelectComponent, typeof i3.FilterClearComponent, typeof i4.FilterDateComponent, typeof i5.DataSourceFilterDirective, typeof i2.VdFilterOptionDirective, typeof i6.VdDynamicTableComponent]>;
|
|
47
45
|
static ɵinj: i0.ɵɵInjectorDeclaration<VdTableModule>;
|
|
48
46
|
}
|