@seniorsistemas/exclusion-process-component 0.0.1-40efacd8-8a6c-4d38-8102-8c977c14410a → 0.0.1-c049d10c-e93a-4d63-9c2a-b17bca40c324

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.
Files changed (31) hide show
  1. package/bundles/seniorsistemas-exclusion-process-component.umd.js +5 -463
  2. package/bundles/seniorsistemas-exclusion-process-component.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-exclusion-process-component.umd.min.js +2 -2
  4. package/bundles/seniorsistemas-exclusion-process-component.umd.min.js.map +1 -1
  5. package/esm2015/public-api.js +1 -2
  6. package/esm2015/seniorsistemas-exclusion-process-component.js +2 -4
  7. package/esm5/public-api.js +1 -2
  8. package/esm5/seniorsistemas-exclusion-process-component.js +2 -4
  9. package/fesm2015/seniorsistemas-exclusion-process-component.js +5 -427
  10. package/fesm2015/seniorsistemas-exclusion-process-component.js.map +1 -1
  11. package/fesm5/seniorsistemas-exclusion-process-component.js +5 -456
  12. package/fesm5/seniorsistemas-exclusion-process-component.js.map +1 -1
  13. package/package.json +1 -1
  14. package/public-api.d.ts +0 -1
  15. package/seniorsistemas-exclusion-process-component.d.ts +1 -3
  16. package/seniorsistemas-exclusion-process-component.metadata.json +1 -1
  17. package/esm2015/exclusions-list/exclusions-list.component.js +0 -299
  18. package/esm2015/exclusions-list/exclusions-list.module.js +0 -47
  19. package/esm2015/exclusions-list/exclusions-list.routing.js +0 -115
  20. package/esm2015/exclusions-list/index.js +0 -4
  21. package/esm2015/services/index.js +0 -2
  22. package/esm5/exclusions-list/exclusions-list.component.js +0 -313
  23. package/esm5/exclusions-list/exclusions-list.module.js +0 -50
  24. package/esm5/exclusions-list/exclusions-list.routing.js +0 -127
  25. package/esm5/exclusions-list/index.js +0 -4
  26. package/esm5/services/index.js +0 -2
  27. package/exclusions-list/exclusions-list.component.d.ts +0 -59
  28. package/exclusions-list/exclusions-list.module.d.ts +0 -2
  29. package/exclusions-list/exclusions-list.routing.d.ts +0 -29
  30. package/exclusions-list/index.d.ts +0 -3
  31. package/services/index.d.ts +0 -1
@@ -1,59 +0,0 @@
1
- import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
- import { FormBuilder, FormGroup } from '@angular/forms';
3
- import { TranslateService } from '@ngx-translate/core';
4
- import { LazyLoadEvent } from 'primeng/api';
5
- import { FormField, IToken, TableColumnLocaleOptions } from '@seniorsistemas/angular-components';
6
- import { ExclusionProcess } from '../models';
7
- import { Table } from 'primeng/table';
8
- import { LogicalDeleteService } from '../services';
9
- import { ActivatedRoute } from '@angular/router';
10
- import { ListParams } from '../models/list-params';
11
- import { LogicalDeleteConfigService } from '../services/logical-delete-config.service';
12
- import { ExclusionDetailsComponent } from '../exclusion-details';
13
- import { FilterService } from '../services/filter.service';
14
- export declare class ExclusionsListComponent implements OnInit, OnDestroy {
15
- private readonly route;
16
- private readonly translate;
17
- private readonly formBuilder;
18
- private readonly changeDetectorRef;
19
- private readonly logicalDeleteService;
20
- private readonly filterService;
21
- private readonly projectConfigs;
22
- locale: TableColumnLocaleOptions;
23
- entityName: string;
24
- entityDescription: string;
25
- currentListParams: ListParams;
26
- gridData: ExclusionProcess[];
27
- gridColumns: any[];
28
- showLoader: boolean;
29
- totalRecords: number;
30
- filterFields: FormField[];
31
- filterFormGroup: FormGroup;
32
- filtersPanelCollapsed: boolean;
33
- searchTokens: IToken[];
34
- serverError: boolean;
35
- table: Table;
36
- exclusionDetailsComponent: ExclusionDetailsComponent;
37
- private ngUnsubscribe;
38
- constructor(route: ActivatedRoute, translate: TranslateService, formBuilder: FormBuilder, changeDetectorRef: ChangeDetectorRef, logicalDeleteService: LogicalDeleteService, filterService: FilterService, projectConfigs: LogicalDeleteConfigService);
39
- ngOnInit(): void;
40
- ngOnDestroy(): void;
41
- private getFormBuilder;
42
- private getGridColumns;
43
- private getFilterFields;
44
- getEmptyStateTitle(): any;
45
- getEmptyStateDescription(): any;
46
- getTitle(): any;
47
- getDetailsButtonTitle(): any;
48
- onSearch(): void;
49
- onClear(): void;
50
- onRemoveToken(token: IToken): void;
51
- onGridChange(event: LazyLoadEvent): void;
52
- private getFilterTokens;
53
- private getFilterQuery;
54
- private updateGrid;
55
- listExclusions(params: any): void;
56
- focusInput(elementId: string): void;
57
- resetGrid(listParams?: ListParams): void;
58
- onClickDetails(rowData: ExclusionProcess): void;
59
- }
@@ -1,2 +0,0 @@
1
- export declare class ExclusionsListModule {
2
- }
@@ -1,29 +0,0 @@
1
- import { Routes, CanActivate } from "@angular/router";
2
- import { TranslateService } from "@ngx-translate/core";
3
- import { PermissionsService } from "@seniorsistemas/platform-components";
4
- import { LocaleService } from "@seniorsistemas/angular-components";
5
- import { LogicalDeleteConfigService } from "../services/logical-delete-config.service";
6
- export declare class ExclusionsListFeatureRoutingGuard implements CanActivate {
7
- canActivate(): boolean;
8
- }
9
- export declare class ExclusionsListFeatureRoutingListTitleResolver {
10
- private readonly translate;
11
- private readonly projectConfigs;
12
- constructor(translate: TranslateService, projectConfigs: LogicalDeleteConfigService);
13
- resolve(): import("rxjs").Observable<any>;
14
- }
15
- export declare class ExclusionsListFeatureRoutingPermissionResolver {
16
- private readonly permissionsService;
17
- constructor(permissionsService: PermissionsService);
18
- resolve(): import("rxjs").Observable<any>;
19
- }
20
- export declare class ExclusionsListFeatureRoutingLocaleResolver {
21
- private readonly localeService;
22
- constructor(localeService: LocaleService);
23
- resolve(): import("rxjs").Observable<import("@seniorsistemas/angular-components").LocaleOptions>;
24
- }
25
- export declare class EmptyComponent {
26
- }
27
- export declare const routes: Routes;
28
- export declare class ExclusionsListFeatureRouting {
29
- }
@@ -1,3 +0,0 @@
1
- export * from "./exclusions-list.module";
2
- export * from "./exclusions-list.component";
3
- export * from "./exclusions-list.routing";
@@ -1 +0,0 @@
1
- export * from "./logical-delete.service";