@magic-xpa/angular 4.900.0-dev491.7 → 4.1000.0-dev000.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.
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@magic-xpa/angular",
3
- "version": "4.900.0-dev491.7",
3
+ "version": "4.1000.0-dev000.0",
4
4
  "license": "SEE LICENSE IN EULA.pdf",
5
5
  "dependencies": {
6
- "@magic-xpa/engine": "4.900.0-dev491.7",
7
- "@magic-xpa/angular-material-core": "4.900.0-dev491.7",
6
+ "@magic-xpa/engine": "4.1000.0-dev000.0",
7
+ "@magic-xpa/angular-material-core": "4.1000.0-dev000.0",
8
8
  "ng-dynamic-component": "^10.1.0",
9
9
  "rxjs": "^6.5.2",
10
10
  "tslib": "^2.3.0"
@@ -16,6 +16,7 @@ export declare class AccessorMagicService {
16
16
  getClasses(controlId: string, rowId?: string): string;
17
17
  getStyle(controlId: string, styleName: string, rowId?: string): string;
18
18
  getVisible(controlId: string, rowId?: string): string;
19
+ getAlphaMask(controlId: string, rowId?: string): string;
19
20
  getNumericPicture(picture: string): any;
20
21
  getMustInput(controlId: string, rowId?: string): string;
21
22
  isDisabled(controlId: string, rowId?: string): any;
@@ -14,7 +14,7 @@ export declare class EngineMagicService {
14
14
  insertEvent(guiEvent: IGuiEvent): void;
15
15
  GetRangedValue(taskId: string, controlName: string, value: string): string;
16
16
  GetControlPictureMask(taskId: string, controlName: string): any;
17
- GetFormattedValue(taskId: string, controlName: string, value: any): any;
17
+ GetFormattedValue(taskId: string, controlName: string, value: any, rowId?: string): any;
18
18
  ValidateControlValue(taskId: string, controlName: string, value: any): string;
19
19
  GetFldRanges(taskId: string, controlName: string): string;
20
20
  saveData(data: string): void;
@@ -30,8 +30,9 @@ export declare const MG_FORMATS: {
30
30
  export declare class MgDateAdapter extends NativeDateAdapter {
31
31
  platform: Platform;
32
32
  protected task: TaskMagicService;
33
+ localeId: string;
33
34
  mgdtfmt: string;
34
- constructor(platform: Platform, task: TaskMagicService);
35
+ constructor(platform: Platform, task: TaskMagicService, localeId: string);
35
36
  parse(value: any): Date | null;
36
37
  format(date: Date, displayFormat: Object): string;
37
38
  static ɵfac: i0.ɵɵFactoryDeclaration<MgDateAdapter, never>;
@@ -18,7 +18,7 @@ export declare class TableMagicService {
18
18
  getDialog(): any;
19
19
  onScrollDown(): void;
20
20
  sortData(e: any): void;
21
- mgOnPaginateChange(e: any): void;
21
+ mgOnPaginateChange(e: any, changeSelectedRow?: boolean): void;
22
22
  mgOptionChanged(e: any): void;
23
23
  updateTableSize(size: number): void;
24
24
  setTableTopIndex(value: number): void;
@@ -67,7 +67,7 @@ export declare class TaskMagicService {
67
67
  getClasses(controlId: string, guiRowId?: string): string;
68
68
  getStyle(controlId: string, styleName: string, guiRowId?: string): string;
69
69
  getValue(controlId: string, guiRowId?: string): any;
70
- getFormattedValue(controlName: string, val: any): string;
70
+ getFormattedValue(controlName: string, val: any, rowId?: string): string;
71
71
  setValue(controlId: string, guiRowId: string, value: any): void;
72
72
  protected executeInteractiveCommand(guiInteractiveCommand: GuiInteractive): void;
73
73
  handleSetProperty(command: GuiCommand, isTableChild: boolean): void;
@@ -1,9 +1,9 @@
1
- import { ElementRef, OnDestroy, OnInit, Renderer2, ViewContainerRef } from '@angular/core';
2
- import { GuiCommand, GuiInteractive } from '@magic-xpa/gui';
3
- import { TaskBaseMagicComponent } from '../task-base.magic.component';
4
- import { TaskMagicService } from '../../services/task.magics.service';
5
- import { RowMagicDirective } from './magic/row.magic.directive';
6
- import { Subscription } from 'rxjs';
1
+ import { ElementRef, OnDestroy, OnInit, Renderer2, ViewContainerRef } from "@angular/core";
2
+ import { GuiCommand, GuiInteractive } from "@magic-xpa/gui";
3
+ import { TaskBaseMagicComponent } from "../task-base.magic.component";
4
+ import { TaskMagicService } from "../../services/task.magics.service";
5
+ import { RowMagicDirective } from "./magic/row.magic.directive";
6
+ import { Subscription } from "rxjs";
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class MagicDirective implements OnInit, OnDestroy {
9
9
  protected _task: TaskMagicService;
@@ -11,7 +11,9 @@ export declare class MgformatMagicDirective {
11
11
  constructor(magicDir: MagicDirective, _task: TaskMagicService);
12
12
  ngAfterViewInit(): void;
13
13
  onFocusEvent($event: any): void;
14
+ onInputEvent($event: any): void;
14
15
  onChangeEvent($event: any): void;
16
+ calculatePattern(): void;
15
17
  formatDate(pic: PIC): void;
16
18
  formatAlphaUnicode(control: AbstractControl): void;
17
19
  formatBoolean(control: AbstractControl): void;