@enigmatry/entry-components 20.0.1-preview.2 → 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.
@@ -0,0 +1,3 @@
1
+ /* eslint-disable */
2
+ // ReSharper disable InconsistentNaming
3
+ // @ts-nocheck
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enigmatry/entry-components",
3
- "version": "20.0.1-preview.2",
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",
@@ -37,6 +37,10 @@
37
37
  "types": "./index.d.ts",
38
38
  "default": "./fesm2022/enigmatry-entry-components.mjs"
39
39
  },
40
+ "./button": {
41
+ "types": "./button/index.d.ts",
42
+ "default": "./fesm2022/enigmatry-entry-components-button.mjs"
43
+ },
40
44
  "./common": {
41
45
  "types": "./common/index.d.ts",
42
46
  "default": "./fesm2022/enigmatry-entry-components-common.mjs"
@@ -53,22 +57,18 @@
53
57
  "types": "./file-input/index.d.ts",
54
58
  "default": "./fesm2022/enigmatry-entry-components-file-input.mjs"
55
59
  },
56
- "./button": {
57
- "types": "./button/index.d.ts",
58
- "default": "./fesm2022/enigmatry-entry-components-button.mjs"
59
- },
60
60
  "./permissions": {
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 i9 from '@angular/material/paginator';
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, _angular_material_paginator_d_DuJ_oYgT.M>;
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 i9.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]>;
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