taxtank-core 0.30.122 → 0.30.123

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.
@@ -46,4 +46,8 @@ export declare abstract class AbstractForm<Model> extends UntypedFormGroup {
46
46
  */
47
47
  emitValues(): void;
48
48
  private listenValueChanges;
49
+ /**
50
+ * upgraded version of patchValue to skip duplicated changes
51
+ */
52
+ patchField(name: string, value: any, distinctUntilChanged?: boolean): void;
49
53
  }
@@ -1,8 +1,8 @@
1
1
  import { Firm as FirmBase } from '../../db/Models/firm/firm';
2
2
  import { Phone } from '../phone/phone';
3
- import { Address } from '../address/address';
4
- import { User } from '../user/user';
5
- import { Photoable } from '../../interfaces/photoable';
3
+ import { Address } from '../address';
4
+ import { User } from '../user';
5
+ import { Photoable } from '../../interfaces';
6
6
  export declare class Firm extends FirmBase implements Photoable {
7
7
  owner: User;
8
8
  address: Address;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.30.122",
3
+ "version": "0.30.123",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^15.1.5",