@magic-xpa/angular 4.1200.0-dev4120.112 → 4.1200.0-dev4120.113
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/fesm2022/magic-xpa-angular.mjs +9 -0
- package/fesm2022/magic-xpa-angular.mjs.map +1 -1
- package/package.json +3 -3
- package/src/services/accessor.magic.service.d.ts +1 -0
- package/src/services/engine.magic.service.d.ts +1 -0
- package/src/services/magic.providers.d.ts +4 -4
- package/src/services/task.magics.service.d.ts +1 -0
package/package.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "@magic-xpa/angular",
|
3
|
-
"version": "4.1200.0-dev4120.
|
3
|
+
"version": "4.1200.0-dev4120.113",
|
4
4
|
"license": "SEE LICENSE IN EULA.pdf",
|
5
5
|
"dependencies": {
|
6
|
-
"@magic-xpa/engine": "4.1200.0-dev4120.
|
7
|
-
"@magic-xpa/angular-material-core": "4.1200.0-dev4120.
|
6
|
+
"@magic-xpa/engine": "4.1200.0-dev4120.113",
|
7
|
+
"@magic-xpa/angular-material-core": "4.1200.0-dev4120.113",
|
8
8
|
"ng-dynamic-component": "~10.7.0",
|
9
9
|
"rxjs": "7.8.1",
|
10
10
|
"@maskito/angular": "^1.4.0",
|
@@ -18,6 +18,7 @@ export declare class AccessorMagicService {
|
|
18
18
|
*/
|
19
19
|
constructor(task: TaskMagicService, magicColor: MagicColorService);
|
20
20
|
UploadFileToServer(fileContent: any, serverFileName: string): any;
|
21
|
+
DownloadFileFromServer(serverFileName: string): Promise<ArrayBuffer>;
|
21
22
|
/**
|
22
23
|
* Checks if the control is read-only
|
23
24
|
* @param controlId Id of control
|
@@ -18,6 +18,7 @@ export declare class EngineMagicService {
|
|
18
18
|
GetRangedValue(taskId: string, controlName: string, value: string): string;
|
19
19
|
GetControlPictureMask(taskId: string, controlName: string): any;
|
20
20
|
UploadFileToServer(fileContent: any, serverFileName: string): any;
|
21
|
+
DownloadFileFromServer(serverFileName: string): Promise<ArrayBuffer>;
|
21
22
|
GetFormattedValue(taskId: string, controlName: string, value: any, rowId?: string): any;
|
22
23
|
ValidateControlValue(taskId: string, controlName: string, value: any): string;
|
23
24
|
GetFldRanges(taskId: string, controlName: string): string;
|
@@ -42,7 +42,7 @@ export declare const matDateProviders: ({
|
|
42
42
|
/**
|
43
43
|
* Magic service providers
|
44
44
|
*/
|
45
|
-
export declare const basicMagicProviders: (
|
45
|
+
export declare const basicMagicProviders: (({
|
46
46
|
provide: typeof DateAdapter;
|
47
47
|
useClass: typeof MgDateAdapter;
|
48
48
|
useValue?: undefined;
|
@@ -74,8 +74,8 @@ export declare const basicMagicProviders: (typeof SubformMagicService | typeof T
|
|
74
74
|
};
|
75
75
|
};
|
76
76
|
useClass?: undefined;
|
77
|
-
})[])[];
|
78
|
-
export declare const magicProviders: (
|
77
|
+
})[] | typeof MagicServices | typeof TaskMagicService | typeof SubformMagicService | typeof TitleMagicService | typeof AccessorMagicService)[];
|
78
|
+
export declare const magicProviders: (({
|
79
79
|
provide: typeof DateAdapter;
|
80
80
|
useClass: typeof MgDateAdapter;
|
81
81
|
useValue?: undefined;
|
@@ -107,4 +107,4 @@ export declare const magicProviders: (typeof SubformMagicService | typeof TitleM
|
|
107
107
|
};
|
108
108
|
};
|
109
109
|
useClass?: undefined;
|
110
|
-
})[])[];
|
110
|
+
})[] | typeof MagicServices | typeof TaskMagicService | typeof SubformMagicService | typeof TitleMagicService | typeof AccessorMagicService | typeof TableMagicService)[];
|
@@ -210,6 +210,7 @@ export declare class TaskMagicService {
|
|
210
210
|
* @ignore
|
211
211
|
*/
|
212
212
|
UploadFileToServer(fileContent: any, serverFileName: string): any;
|
213
|
+
DownloadFileFromServer(serverFileName: string): Promise<ArrayBuffer>;
|
213
214
|
/**
|
214
215
|
* Validates the control value, using the Magic WebClient
|
215
216
|
* @param controlName Id of validated control
|