@colijnit/transaction 12.1.56 → 12.1.58

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.
@@ -1,15 +1,17 @@
1
1
  import { EventEmitter } from "@angular/core";
2
2
  import { QuantityInHistoricState } from "@colijnit/transactionapi/build/enum/quantity-in-historic-state.enum";
3
+ import { DictionaryService } from "../../../service/dictionary.service";
3
4
  export interface HistoricStates {
4
- label: string;
5
- value: QuantityInHistoricState;
5
+ description: string;
6
+ code: QuantityInHistoricState;
6
7
  checked: boolean;
7
8
  }
8
9
  export declare class TransactionFilterHistoricStateComponent {
10
+ private _dictionary;
9
11
  set label(value: string);
10
12
  get label(): string;
11
13
  expanded: boolean;
12
- filterClicked: EventEmitter<number>;
14
+ collectionChange: EventEmitter<any>;
13
15
  showClass(): boolean;
14
16
  private _label;
15
17
  groupName: string;
@@ -17,6 +19,6 @@ export declare class TransactionFilterHistoricStateComponent {
17
19
  labelPartly: string;
18
20
  labelFully: string;
19
21
  states: HistoricStates[];
20
- handleStateChange(value: any): void;
22
+ constructor(_dictionary: DictionaryService);
21
23
  private _setStates;
22
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transaction",
3
- "version": "12.1.56",
3
+ "version": "12.1.58",
4
4
  "description": "Colijn IT transaction module for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {