ngx-wapp-components 3.1.1 → 3.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-wapp-components",
3
- "version": "3.1.1",
3
+ "version": "3.2.0",
4
4
  "description": "This is a Wapping reusable component library published by Wapping.",
5
5
  "keywords": [
6
6
  "code",
@@ -58,6 +58,5 @@
58
58
  "types": "./types/ngx-wapp-components.d.ts",
59
59
  "default": "./fesm2022/ngx-wapp-components.mjs"
60
60
  }
61
- },
62
- "type": "module"
61
+ }
63
62
  }
@@ -525,7 +525,8 @@ declare enum NotificationsEventEnum {
525
525
  }
526
526
  declare enum PeriodSelectEnum {
527
527
  Last24Hours = 1,
528
- Custom = 2
528
+ Last3Months = 2,
529
+ Custom = 10
529
530
  }
530
531
  declare enum CustomColor {
531
532
  darkBlue1 = 1,
@@ -811,6 +812,7 @@ declare class SessionStorageService {
811
812
  setComponentsTenantStorage(tenantId: string, tenantStorage: ComponentsTenantStorage): void;
812
813
  getComponentsTenantStorage(tenantId: string): ComponentsTenantStorage;
813
814
  setLastFilterPanelQuery(tenantId: string, storedQuery: StoredFilterPanelQuery | null): void;
815
+ setFilterPanelValue(tenantId: string, filterId: string, queryValue: StoredFilterPanelQuery | null): void;
814
816
  getAllLastFilterPanelQueries(tenantId: string): ComponentsTenantStorage;
815
817
  getLastFilterPanelQuery(tenantId: string, filterId: string): StoredFilterPanelQuery;
816
818
  removeLastFilterPanelQuery(tenantId: string, filterId: string): void;
@@ -1817,7 +1819,7 @@ declare class WFilterPanelComponent implements OnInit {
1817
1819
  clearPeriodSelectComponent(): void;
1818
1820
  handleEmptyFieldsQuery(queries: QueryResults): QueryResults;
1819
1821
  nullableFilterOperationHandle(query: any): void;
1820
- setLast24HoursPeriodSelectValue(query: any): void;
1822
+ setPeriodSelectValue(query: any): void;
1821
1823
  inverseNullableFilterOperationHandle(query: any): void;
1822
1824
  keepLocalDateFilterOperationHandle(query: any): void;
1823
1825
  modifyTreeListValueParentToNull(query: any): any;