@magic-xpa/angular 4.1200.0-dev4120.70 → 4.1200.0-dev4120.71
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 +12 -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 +4 -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.71",
|
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.71",
|
7
|
+
"@magic-xpa/angular-material-core": "4.1200.0-dev4120.71",
|
8
8
|
"ng-dynamic-component": "~10.7.0",
|
9
9
|
"rxjs": "7.8.1",
|
10
10
|
"@maskito/angular": "^1.4.0",
|
@@ -17,6 +17,7 @@ export declare class AccessorMagicService {
|
|
17
17
|
* @ignore
|
18
18
|
*/
|
19
19
|
constructor(task: TaskMagicService, magicColor: MagicColorService);
|
20
|
+
UploadFileToServer(fileContent: any, serverFileName: string): any;
|
20
21
|
/**
|
21
22
|
* Checks if the control is read-only
|
22
23
|
* @param controlId Id of control
|
@@ -17,6 +17,7 @@ export declare class EngineMagicService {
|
|
17
17
|
insertEvent(guiEvent: IGuiEvent): void;
|
18
18
|
GetRangedValue(taskId: string, controlName: string, value: string): string;
|
19
19
|
GetControlPictureMask(taskId: string, controlName: string): any;
|
20
|
+
UploadFileToServer(fileContent: any, serverFileName: string): any;
|
20
21
|
GetFormattedValue(taskId: string, controlName: string, value: any, rowId?: string): any;
|
21
22
|
ValidateControlValue(taskId: string, controlName: string, value: any): string;
|
22
23
|
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: (typeof
|
45
|
+
export declare const basicMagicProviders: (typeof TaskMagicService | ({
|
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: (typeof
|
77
|
+
})[] | typeof MagicServices | typeof SubformMagicService | typeof TitleMagicService | typeof AccessorMagicService)[];
|
78
|
+
export declare const magicProviders: (typeof TaskMagicService | ({
|
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 SubformMagicService | typeof TitleMagicService | typeof AccessorMagicService | typeof TableMagicService)[];
|
@@ -206,6 +206,10 @@ export declare class TaskMagicService {
|
|
206
206
|
* @ignore
|
207
207
|
*/
|
208
208
|
GetControlPictureMask(controlName: string): any;
|
209
|
+
/**
|
210
|
+
* @ignore
|
211
|
+
*/
|
212
|
+
UploadFileToServer(fileContent: any, serverFileName: string): any;
|
209
213
|
/**
|
210
214
|
* Validates the control value, using the Magic WebClient
|
211
215
|
* @param controlName Id of validated control
|