ngx-vector-components 2.8.0 → 2.10.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.
@@ -6,6 +6,8 @@ export declare class CurrencyFieldComponent implements OnDestroy {
6
6
  placeholder: string;
7
7
  set control(_control: any);
8
8
  outlined: boolean;
9
+ rounded: boolean;
10
+ label?: string;
9
11
  get control(): any;
10
12
  private _control;
11
13
  private lastInvertedIndexTyped;
@@ -13,6 +15,7 @@ export declare class CurrencyFieldComponent implements OnDestroy {
13
15
  ngOnDestroy(): void;
14
16
  focusLastIndex($event: Event): void;
15
17
  inputNextChar($event: KeyboardEvent): void;
18
+ clearValue(): void;
16
19
  static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyFieldComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyFieldComponent, "vector-currency-field", never, { "minValue": "minValue"; "maxValue": "maxValue"; "placeholder": "placeholder"; "control": "control"; "outlined": "outlined"; }, {}, never, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyFieldComponent, "vector-currency-field", never, { "minValue": "minValue"; "maxValue": "maxValue"; "placeholder": "placeholder"; "control": "control"; "outlined": "outlined"; "rounded": "rounded"; "label": "label"; }, {}, never, never>;
18
21
  }
@@ -9,6 +9,7 @@ export declare class RadioButtonFieldComponent implements OnInit {
9
9
  options: RadioButtonOption[];
10
10
  control: any;
11
11
  layout: 'vertical' | 'horizontal';
12
+ justifySpaceBetween: boolean;
12
13
  constructor();
13
14
  ngOnInit(): void;
14
15
  get layoutClass(): {
@@ -16,5 +17,5 @@ export declare class RadioButtonFieldComponent implements OnInit {
16
17
  vertical: boolean;
17
18
  };
18
19
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonFieldComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonFieldComponent, "vector-radio-button-field", never, { "groupName": "groupName"; "options": "options"; "control": "control"; "layout": "layout"; }, {}, never, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonFieldComponent, "vector-radio-button-field", never, { "groupName": "groupName"; "options": "options"; "control": "control"; "layout": "layout"; "justifySpaceBetween": "justifySpaceBetween"; }, {}, never, never>;
20
21
  }
@@ -48,7 +48,6 @@ export declare class MenuComponent implements OnInit, OnDestroy {
48
48
  getMenuNotificationsCount(menu: MenuItem): number;
49
49
  private clearAndCloseMenu;
50
50
  private resizeMenu;
51
- resetMenus(clear?: boolean): void;
52
51
  static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
53
52
  static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "vector-menu", never, {}, { "onFinishMenuOptionsConfig": "onFinishMenuOptionsConfig"; }, never, never>;
54
53
  }
@@ -8,5 +8,6 @@ export declare class MaskUtil {
8
8
  static formatDocument(stringValue: string): string;
9
9
  static formatPostalCode(stringValue: string): string;
10
10
  static formatBoleto(stringValue: string): string;
11
+ static formatPhone(stringValue: string): string;
11
12
  private static doMaskString;
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-vector-components",
3
- "version": "2.8.0",
3
+ "version": "2.10.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^13.2.3",
6
6
  "@angular/core": "^13.2.3",
@@ -17,7 +17,8 @@
17
17
  "primeng": "^13.1.1",
18
18
  "rxjs": "~6.6.0",
19
19
  "luxon": "^2.0.2",
20
- "file-saver": "^2.0.5"
20
+ "file-saver": "^2.0.5",
21
+ "ngx-device-detector": "^3.0.0"
21
22
  },
22
23
  "dependencies": {
23
24
  "tslib": "^2.3.0"