@magic-xpa/angular 4.1100.0-dev4110.1 → 4.1100.0-dev4110.3
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/esm2020/src/ui/directives/magic/nocontrol.magic.directive.mjs +8 -6
- package/esm2020/src/ui/directives/magic.directive.mjs +10 -5
- package/fesm2015/magic-xpa-angular.mjs +13 -10
- package/fesm2015/magic-xpa-angular.mjs.map +1 -1
- package/fesm2020/magic-xpa-angular.mjs +13 -10
- package/fesm2020/magic-xpa-angular.mjs.map +1 -1
- package/package.json +3 -3
- package/src/ui/directives/magic/nocontrol.magic.directive.d.ts +3 -2
- package/src/ui/directives/magic.directive.d.ts +4 -2
package/package.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "@magic-xpa/angular",
|
3
|
-
"version": "4.1100.0-dev4110.
|
3
|
+
"version": "4.1100.0-dev4110.3",
|
4
4
|
"license": "SEE LICENSE IN EULA.pdf",
|
5
5
|
"dependencies": {
|
6
|
-
"@magic-xpa/engine": "4.1100.0-dev4110.
|
7
|
-
"@magic-xpa/angular-material-core": "4.1100.0-dev4110.
|
6
|
+
"@magic-xpa/engine": "4.1100.0-dev4110.3",
|
7
|
+
"@magic-xpa/angular-material-core": "4.1100.0-dev4110.3",
|
8
8
|
"ng-dynamic-component": "^10.1.0",
|
9
9
|
"rxjs": "^6.5.2",
|
10
10
|
"@maskito/angular": "^1.4.0",
|
@@ -3,15 +3,16 @@ import { GuiCommand } from "@magic-xpa/gui";
|
|
3
3
|
import { MagicDirective } from "../magic.directive";
|
4
4
|
import { TaskMagicService } from "../../../services/task.magics.service";
|
5
5
|
import { RowMagicDirective } from "./row.magic.directive";
|
6
|
+
import { Platform } from "@angular/cdk/platform";
|
6
7
|
import * as i0 from "@angular/core";
|
7
8
|
export declare class NoControlMagicDirective extends MagicDirective {
|
8
9
|
set magic(val: any);
|
9
|
-
constructor(_task: TaskMagicService, element: ElementRef, renderer: Renderer2, vcRef: ViewContainerRef, magicRow: RowMagicDirective);
|
10
|
+
constructor(_task: TaskMagicService, element: ElementRef, renderer: Renderer2, vcRef: ViewContainerRef, platform: Platform, magicRow: RowMagicDirective);
|
10
11
|
regEvents(): void;
|
11
12
|
isTabControl(): boolean;
|
12
13
|
isRadio(): boolean;
|
13
14
|
handleCommand(command: GuiCommand): void;
|
14
15
|
handleSetProperty(command: GuiCommand): void;
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NoControlMagicDirective, [null, null, null, null, { optional: true; }]>;
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NoControlMagicDirective, [null, null, null, null, null, { optional: true; }]>;
|
16
17
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NoControlMagicDirective, "[magicnc]", never, { "magic": "magicnc"; }, {}, never, never, false, never>;
|
17
18
|
}
|
@@ -4,12 +4,14 @@ import { TaskBaseMagicComponent } from "../task-base.magic.component";
|
|
4
4
|
import { TaskMagicService } from "../../services/task.magics.service";
|
5
5
|
import { RowMagicDirective } from "./magic/row.magic.directive";
|
6
6
|
import { Subscription } from "rxjs";
|
7
|
+
import { Platform } from "@angular/cdk/platform";
|
7
8
|
import * as i0 from "@angular/core";
|
8
9
|
export declare class MagicDirective implements OnInit, OnDestroy {
|
9
10
|
protected _task: TaskMagicService;
|
10
11
|
protected element: ElementRef;
|
11
12
|
protected renderer: Renderer2;
|
12
13
|
protected vcRef: ViewContainerRef;
|
14
|
+
platform: Platform;
|
13
15
|
protected magicRow: RowMagicDirective;
|
14
16
|
set magic(val: any);
|
15
17
|
set eventsOnly(val: any);
|
@@ -25,7 +27,7 @@ export declare class MagicDirective implements OnInit, OnDestroy {
|
|
25
27
|
static opened: boolean;
|
26
28
|
static noOfAutoCompleteBoxesOpened: number;
|
27
29
|
subscribeInteractiveCommands: Subscription;
|
28
|
-
constructor(_task: TaskMagicService, element: ElementRef, renderer: Renderer2, vcRef: ViewContainerRef, magicRow: RowMagicDirective);
|
30
|
+
constructor(_task: TaskMagicService, element: ElementRef, renderer: Renderer2, vcRef: ViewContainerRef, platform: Platform, magicRow: RowMagicDirective);
|
29
31
|
get task(): TaskMagicService;
|
30
32
|
protected regEvents(): void;
|
31
33
|
private OnFocus;
|
@@ -37,6 +39,6 @@ export declare class MagicDirective implements OnInit, OnDestroy {
|
|
37
39
|
handleInteractiveCommands(command: GuiInteractive): void;
|
38
40
|
handleSetProperty(command: GuiCommand): void;
|
39
41
|
ngOnDestroy(): void;
|
40
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MagicDirective, [null, null, null, null, { optional: true; }]>;
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MagicDirective, [null, null, null, null, null, { optional: true; }]>;
|
41
43
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MagicDirective, "[magic]", never, { "magic": "magic"; "eventsOnly": "eventsOnly"; "rowId": "rowId"; }, {}, never, never, false, never>;
|
42
44
|
}
|