@magic-xpa/cli 4.801.0-dev481.255 → 4.801.0-dev481.256

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": "@magic-xpa/cli",
3
- "version": "4.801.0-dev481.255",
3
+ "version": "4.801.0-dev481.256",
4
4
  "license": "SEE LICENSE IN EULA.pdf",
5
5
  "description": "Magic CLI for MagicWeb applications",
6
6
  "keywords": [
@@ -4,7 +4,7 @@ import { MagicLazyLoaderService } from '@magic-xpa/angular';
4
4
  @Injectable()
5
5
 
6
6
  export class LazyLoaderService extends MagicLazyLoaderService {
7
- Load(path: string): Promise<any> {
7
+ override Load(path: string): Promise<any> {
8
8
  return import( './' + path + '/magic.gen.lib.module');
9
9
  }
10
10
  }
@@ -27,9 +27,9 @@ import {MatTabsModule} from "@angular/material/tabs";
27
27
  import {MatTooltipModule} from "@angular/material/tooltip";
28
28
  import {MatButtonModule} from "@angular/material/button";
29
29
  import {MatAutocompleteModule} from "@angular/material/autocomplete";
30
- import {CurrencyMaskInputMode, NgxCurrencyModule } from "ngx-currency";
30
+ import {CurrencyMaskConfig, CurrencyMaskInputMode, NgxCurrencyModule} from "ngx-currency";
31
31
 
32
- export const customCurrencyMaskConfig = {
32
+ export const customCurrencyMaskConfig: CurrencyMaskConfig = {
33
33
  align: "right",
34
34
  allowNegative: true,
35
35
  allowZero: true,
@@ -39,8 +39,8 @@ export const customCurrencyMaskConfig = {
39
39
  suffix: "",
40
40
  thousands: ",",
41
41
  nullable: true,
42
- min: null,
43
- max: null,
42
+ min: undefined,
43
+ max: undefined,
44
44
  inputMode: CurrencyMaskInputMode.FINANCIAL
45
45
  };
46
46
 
@@ -38,14 +38,14 @@ export class <%- id %> extends <% if(useMatGrid) { %> BaseMatTableMagicComponen
38
38
  <% if(!magicConfig.no_controls_accessor) { %>
39
39
  mgc = MgControlName;
40
40
  mgcp = MgCustomProperties;
41
- mgfc: MgFormControlsAccessor;
41
+ mgfc!: MgFormControlsAccessor;
42
42
 
43
43
  <% if(useMatGrid) { -%>
44
44
  mgdp= MgDisplayedColumns;
45
45
  <%}-%>
46
46
 
47
47
 
48
- createFormControlsAccessor(formGroup: FormGroup)
48
+ override createFormControlsAccessor(formGroup: FormGroup)
49
49
  {
50
50
  this.mgfc = new MgFormControlsAccessor(formGroup, this.magicServices);
51
51
  }
@@ -94,7 +94,7 @@ export class <%- id %> extends <% if(useMatGrid) { %> BaseMatTableMagicComponen
94
94
  }
95
95
  <%}-%>
96
96
  <% if(useMatGrid) { -%>
97
- displayedColumns = this.mgdp;
97
+ override displayedColumns = this.mgdp;
98
98
  <%}-%>
99
99
  }
100
100