nira-falcon 0.1.13 → 0.1.15

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,13 +1,13 @@
1
1
  import { ChangeDetectorRef, OnInit } from '@angular/core';
2
- import { FormControl, FormGroup } from '@angular/forms';
2
+ import { FormControl } from '@angular/forms';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class CoreDatePickerComponent implements OnInit {
5
5
  private changeDetectorRef;
6
+ _inputFormControl: FormControl<string | null>;
6
7
  canSelectToday: boolean;
7
8
  defaultDate: string;
8
9
  label: string;
9
- inputFormControl: FormControl;
10
- niraDatePickerForm: FormGroup;
10
+ set inputFormControl(value: FormControl);
11
11
  isOpenCalendar: boolean;
12
12
  date: string;
13
13
  constructor(changeDetectorRef: ChangeDetectorRef);
@@ -5,6 +5,7 @@ type InputType = 'number' | 'password' | 'text';
5
5
  export declare class CoreInputComponent {
6
6
  inputType: InputType;
7
7
  isDisable: boolean;
8
+ lastValue: string;
8
9
  set type(value: InputType);
9
10
  canShowWordifyFa: boolean;
10
11
  canSplitNumber: boolean;
@@ -15,6 +16,7 @@ export declare class CoreInputComponent {
15
16
  placeholder: string;
16
17
  onChange: EventEmitter<string>;
17
18
  onBlurEmit: EventEmitter<string>;
19
+ ngOnInit(): void;
18
20
  change(event: any): void;
19
21
  onPaste(event: any): void;
20
22
  onBlur(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nira-falcon",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.1.0",
6
6
  "@angular/core": "^16.1.0",
@@ -23,4 +23,4 @@
23
23
  "default": "./fesm2022/nira-falcon.mjs"
24
24
  }
25
25
  }
26
- }
26
+ }