@magic-xpa/angular 4.801.0-dev481.299 → 4.801.0-dev481.303
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/services/accessor.magic.service.mjs +1 -1
- package/esm2020/src/services/magic-color.service.mjs +25 -9
- package/esm2020/src/ui/components/magic-alert.component.mjs +3 -7
- package/esm2020/src/ui/components/magic-confirmation-box.component.mjs +4 -9
- package/esm2020/src/ui/magic-modal/magic-overlay-container.mjs +4 -8
- package/esm2020/src/ui/mgerror.magic.component.mjs +2 -3
- package/fesm2015/magic-xpa-angular.mjs +36 -32
- package/fesm2015/magic-xpa-angular.mjs.map +1 -1
- package/fesm2020/magic-xpa-angular.mjs +34 -32
- package/fesm2020/magic-xpa-angular.mjs.map +1 -1
- package/package.json +3 -3
- package/src/services/accessor.magic.service.d.ts +1 -1
- package/src/services/magic-color.service.d.ts +5 -2
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-xpa/angular",
|
|
3
|
-
"version": "4.801.0-dev481.
|
|
3
|
+
"version": "4.801.0-dev481.303",
|
|
4
4
|
"license": "SEE LICENSE IN EULA.pdf",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@magic-xpa/engine": "4.801.0-dev481.
|
|
7
|
-
"@magic-xpa/angular-material-core": "4.801.0-dev481.
|
|
6
|
+
"@magic-xpa/engine": "4.801.0-dev481.303",
|
|
7
|
+
"@magic-xpa/angular-material-core": "4.801.0-dev481.303",
|
|
8
8
|
"ng-dynamic-component": "^10.1.0",
|
|
9
9
|
"rxjs": "^6.5.2",
|
|
10
10
|
"tslib": "^2.3.0"
|
|
@@ -26,7 +26,7 @@ export declare class AccessorMagicService {
|
|
|
26
26
|
getPlaceholder(controlId: string, rowId?: string): string;
|
|
27
27
|
getType(controlId: string, rowId?: string): string;
|
|
28
28
|
getTabIndex(controlId: string, rowId?: string): number;
|
|
29
|
-
getValue(controlId: string, rowId?: string):
|
|
29
|
+
getValue(controlId: string, rowId?: string): any;
|
|
30
30
|
getFormattedValue(controlId: string, rowId?: string): string;
|
|
31
31
|
getPicture(controlId: string, rowId?: string): string;
|
|
32
32
|
getCustomProperty(controlId: string, propertyNameOrRowID?: string, rowId?: string): any;
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
1
2
|
import { HttpClient } from '@angular/common/http';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
export declare let COLOR_FILE_NAME: InjectionToken<string>;
|
|
3
5
|
export declare const MAGIC_FG_COLOR: number;
|
|
4
6
|
export declare const MAGIC_BG_COLOR: number;
|
|
5
7
|
export declare class MagicColorService {
|
|
6
8
|
private http;
|
|
7
|
-
|
|
9
|
+
colorFileName: string;
|
|
10
|
+
getColorFilePath(): string;
|
|
8
11
|
private colorsData;
|
|
9
|
-
constructor(http: HttpClient);
|
|
12
|
+
constructor(http: HttpClient, colorFile1?: string);
|
|
10
13
|
private getColorData;
|
|
11
14
|
private hexToRgba;
|
|
12
15
|
getColor(colorIndex: number, colorType: number): any;
|