@magic-xpa/angular 4.1200.0-dev4120.112 → 4.1200.0-dev4120.114
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.1200.0-dev4120.
|
3
|
+
"version": "4.1200.0-dev4120.114",
|
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.114",
|
7
|
+
"@magic-xpa/angular-material-core": "4.1200.0-dev4120.114",
|
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;
|
@@ -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
|