@enigmatry/entry-components 20.0.1-preview.3 → 20.0.1-preview.4
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/package.json +5 -5
- package/table/index.d.ts +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enigmatry/entry-components",
|
|
3
|
-
"version": "20.0.1-preview.
|
|
3
|
+
"version": "20.0.1-preview.4",
|
|
4
4
|
"author": "Enigmatry",
|
|
5
5
|
"description": "Enigmatry entry angular material components",
|
|
6
6
|
"homepage": "https://github.com/enigmatry/entry-angular-building-blocks/tree/master/libs/entry-components#readme",
|
|
@@ -61,14 +61,14 @@
|
|
|
61
61
|
"types": "./permissions/index.d.ts",
|
|
62
62
|
"default": "./fesm2022/enigmatry-entry-components-permissions.mjs"
|
|
63
63
|
},
|
|
64
|
-
"./spinner": {
|
|
65
|
-
"types": "./spinner/index.d.ts",
|
|
66
|
-
"default": "./fesm2022/enigmatry-entry-components-spinner.mjs"
|
|
67
|
-
},
|
|
68
64
|
"./search-filter": {
|
|
69
65
|
"types": "./search-filter/index.d.ts",
|
|
70
66
|
"default": "./fesm2022/enigmatry-entry-components-search-filter.mjs"
|
|
71
67
|
},
|
|
68
|
+
"./spinner": {
|
|
69
|
+
"types": "./spinner/index.d.ts",
|
|
70
|
+
"default": "./fesm2022/enigmatry-entry-components-spinner.mjs"
|
|
71
|
+
},
|
|
72
72
|
"./table": {
|
|
73
73
|
"types": "./table/index.d.ts",
|
|
74
74
|
"default": "./fesm2022/enigmatry-entry-components-table.mjs"
|
package/table/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _angular_material_paginator from '@angular/material/paginator';
|
|
2
2
|
import { PageEvent } from '@angular/material/paginator';
|
|
3
3
|
export { PageEvent } from '@angular/material/paginator';
|
|
4
4
|
import * as i8 from '@angular/material/sort';
|
|
@@ -7,7 +7,6 @@ export { SortDirection, Sort as SortEvent } from '@angular/material/sort';
|
|
|
7
7
|
import * as i0 from '@angular/core';
|
|
8
8
|
import { InjectionToken, Provider, TemplateRef, OnChanges, EventEmitter, SimpleChanges, OnInit } from '@angular/core';
|
|
9
9
|
import { Params } from '@angular/router';
|
|
10
|
-
import * as _angular_material_paginator_d_DuJ_oYgT from '@angular/material/paginator.d-DuJ-oYgT';
|
|
11
10
|
import { SelectionModel } from '@angular/cdk/collections';
|
|
12
11
|
import * as i7 from '@angular/material/table';
|
|
13
12
|
import { MatTableDataSource } from '@angular/material/table';
|
|
@@ -148,7 +147,7 @@ declare class EntryTableComponent<T> implements OnChanges {
|
|
|
148
147
|
private readonly _config;
|
|
149
148
|
private readonly _elementRef;
|
|
150
149
|
private readonly _changeDetectorRef;
|
|
151
|
-
dataSource: MatTableDataSource<T,
|
|
150
|
+
dataSource: MatTableDataSource<T, _angular_material_paginator.MatPaginator>;
|
|
152
151
|
displayedColumns: string[];
|
|
153
152
|
columns: ColumnDef[];
|
|
154
153
|
private _data;
|
|
@@ -253,7 +252,7 @@ declare class EntryCellFormattedValueComponent {
|
|
|
253
252
|
|
|
254
253
|
declare class EntryTableModule {
|
|
255
254
|
static ɵfac: i0.ɵɵFactoryDeclaration<EntryTableModule, never>;
|
|
256
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EntryTableModule, [typeof EntryTableComponent, typeof EntryCellComponent, typeof EntryCellContextMenuComponent, typeof EntryCellFormattedValueComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.MatTableModule, typeof i8.MatSortModule, typeof
|
|
255
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EntryTableModule, [typeof EntryTableComponent, typeof EntryCellComponent, typeof EntryCellContextMenuComponent, typeof EntryCellFormattedValueComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.MatTableModule, typeof i8.MatSortModule, typeof _angular_material_paginator.MatPaginatorModule, typeof i10.MatCheckboxModule, typeof i11.MatIconModule, typeof i12.MatMenuModule, typeof i13.MatRadioModule, typeof i5.CommonModule, typeof i14.MatButtonModule], [typeof EntryTableComponent, typeof EntryCellComponent, typeof EntryCellContextMenuComponent, typeof EntryCellFormattedValueComponent]>;
|
|
257
256
|
static ɵinj: i0.ɵɵInjectorDeclaration<EntryTableModule>;
|
|
258
257
|
}
|
|
259
258
|
|