@magic-xpa/angular 4.1100.0-dev4110.106 → 4.1100.0-dev4110.109
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/index.mjs +59 -2
- package/esm2020/src/controls.metadata.model.mjs +180 -0
- package/esm2020/src/interfaces/sub-form-definition.iterface.mjs +2 -0
- package/esm2020/src/magic.core.module.mjs +160 -0
- package/esm2020/src/services/ISubformMagicService.mjs +2 -0
- package/esm2020/src/services/OverlayWindowService.mjs +236 -0
- package/esm2020/src/services/StylesMapManager.mjs +28 -0
- package/esm2020/src/services/accessor.magic.service.mjs +356 -0
- package/esm2020/src/services/commands-collector.magic.service.mjs +46 -0
- package/esm2020/src/services/component-list.magic.service.mjs +46 -0
- package/esm2020/src/services/confirmation.components.magic.provider.mjs +21 -0
- package/esm2020/src/services/engine.magic.service.mjs +82 -0
- package/esm2020/src/services/exit.magic.service.mjs +13 -0
- package/esm2020/src/services/magic-color.service.mjs +99 -0
- package/esm2020/src/services/magic.lazy.loader.service.mjs +16 -0
- package/esm2020/src/services/magic.providers.mjs +25 -0
- package/esm2020/src/services/magic.services.mjs +31 -0
- package/esm2020/src/services/mg-date-adapter.mjs +109 -0
- package/esm2020/src/services/overlay.conainer.magic.provider.mjs +14 -0
- package/esm2020/src/services/router-commands.magic.service.mjs +28 -0
- package/esm2020/src/services/subform.magic.service.mjs +184 -0
- package/esm2020/src/services/table.magic.service.mjs +77 -0
- package/esm2020/src/services/task.magics.service.mjs +624 -0
- package/esm2020/src/services/title.magic.service.mjs +18 -0
- package/esm2020/src/ui/GuiInteractiveExecutor.mjs +105 -0
- package/esm2020/src/ui/components/base-magic-alert.component.mjs +23 -0
- package/esm2020/src/ui/components/base-magic-confirm.component.mjs +23 -0
- package/esm2020/src/ui/components/magic-alert.component.mjs +35 -0
- package/esm2020/src/ui/components/magic-confirmation-box.component.mjs +41 -0
- package/esm2020/src/ui/directives/NonMagicControlDirective.mjs +49 -0
- package/esm2020/src/ui/directives/magic/checkbox-noformcontrol.magic.directive.mjs +28 -0
- package/esm2020/src/ui/directives/magic/checkbox.magic.directive.mjs +28 -0
- package/esm2020/src/ui/directives/magic/combobox.magic.directive.mjs +36 -0
- package/esm2020/src/ui/directives/magic/form-controls/control-value-accessors/checkbox.cva.directive.mjs +27 -0
- package/esm2020/src/ui/directives/magic/form-controls/control-value-accessors/date.cva.directive.mjs +52 -0
- package/esm2020/src/ui/directives/magic/form-controls/control-value-accessors/default.cva.directive.mjs +32 -0
- package/esm2020/src/ui/directives/magic/input.noformcontrol.magic.directive.mjs +27 -0
- package/esm2020/src/ui/directives/magic/nocontrol.magic.directive.mjs +193 -0
- package/esm2020/src/ui/directives/magic/row.magic.directive.mjs +58 -0
- package/esm2020/src/ui/directives/magic-focus.directive.mjs +19 -0
- package/esm2020/src/ui/directives/magic.directive.mjs +215 -0
- package/esm2020/src/ui/directives/magicViewContainerRef.directive.mjs +19 -0
- package/esm2020/src/ui/directives/mgformat.magic.directive.mjs +408 -0
- package/esm2020/src/ui/directives/range-validator.magic.directive.mjs +58 -0
- package/esm2020/src/ui/magic-confirmationBox.mjs +42 -0
- package/esm2020/src/ui/magic-modal/base-magic-overlay-container.mjs +22 -0
- package/esm2020/src/ui/magic-modal/magic-modal-form.mjs +8 -0
- package/esm2020/src/ui/magic-modal/magic-modal-interface.mjs +2 -0
- package/esm2020/src/ui/magic-modal/magic-overlay-container-wrapper.mjs +121 -0
- package/esm2020/src/ui/magic-modal/magic-overlay-container.mjs +159 -0
- package/esm2020/src/ui/magic-root.component.mjs +203 -0
- package/esm2020/src/ui/mgerror.magic.component.mjs +119 -0
- package/esm2020/src/ui/pipes/date.magic.pipe.mjs +105 -0
- package/esm2020/src/ui/pipes/time.magic.pipe.mjs +51 -0
- package/esm2020/src/ui/pipes/time24.magic.pipe.mjs +34 -0
- package/esm2020/src/ui/router-container.magic.component.mjs +108 -0
- package/esm2020/src/ui/subform.magic.component.mjs +52 -0
- package/esm2020/src/ui/task-base.magic.component.mjs +86 -0
- package/esm2020/src/ui/utils.mjs +54 -0
- package/fesm2015/magic-xpa-angular.mjs +4863 -0
- package/fesm2015/magic-xpa-angular.mjs.map +1 -1
- package/fesm2020/magic-xpa-angular.mjs +4681 -0
- package/fesm2020/magic-xpa-angular.mjs.map +1 -1
- package/index.d.ts +58 -1
- package/package.json +3 -3
- package/src/controls.metadata.model.d.ts +62 -0
- package/src/interfaces/sub-form-definition.iterface.d.ts +12 -0
- package/src/magic.core.module.d.ts +41 -0
- package/src/services/ISubformMagicService.d.ts +4 -0
- package/src/services/OverlayWindowService.d.ts +31 -0
- package/src/services/StylesMapManager.d.ts +5 -0
- package/src/services/accessor.magic.service.d.ts +69 -0
- package/src/services/commands-collector.magic.service.d.ts +15 -0
- package/src/services/component-list.magic.service.d.ts +23 -0
- package/src/services/confirmation.components.magic.provider.d.ts +8 -0
- package/src/services/engine.magic.service.d.ts +27 -0
- package/src/services/exit.magic.service.d.ts +6 -0
- package/src/services/magic-color.service.d.ts +19 -0
- package/src/services/magic.lazy.loader.service.d.ts +6 -0
- package/src/services/magic.providers.d.ts +107 -0
- package/src/services/magic.services.d.ts +16 -0
- package/src/services/mg-date-adapter.d.ts +40 -0
- package/src/services/overlay.conainer.magic.provider.d.ts +7 -0
- package/src/services/router-commands.magic.service.d.ts +17 -0
- package/src/services/subform.magic.service.d.ts +43 -0
- package/src/services/table.magic.service.d.ts +30 -0
- package/src/services/task.magics.service.d.ts +100 -0
- package/src/services/title.magic.service.d.ts +9 -0
- package/src/ui/GuiInteractiveExecutor.d.ts +22 -0
- package/src/ui/components/base-magic-alert.component.d.ts +10 -0
- package/src/ui/components/base-magic-confirm.component.d.ts +10 -0
- package/src/ui/components/magic-alert.component.d.ts +6 -0
- package/src/ui/components/magic-confirmation-box.component.d.ts +6 -0
- package/src/ui/directives/NonMagicControlDirective.d.ts +26 -0
- package/src/ui/directives/magic/checkbox-noformcontrol.magic.directive.d.ts +9 -0
- package/src/ui/directives/magic/checkbox.magic.directive.d.ts +9 -0
- package/src/ui/directives/magic/combobox.magic.directive.d.ts +10 -0
- package/src/ui/directives/magic/form-controls/control-value-accessors/checkbox.cva.directive.d.ts +7 -0
- package/src/ui/directives/magic/form-controls/control-value-accessors/date.cva.directive.d.ts +17 -0
- package/src/ui/directives/magic/form-controls/control-value-accessors/default.cva.directive.d.ts +7 -0
- package/src/ui/directives/magic/input.noformcontrol.magic.directive.d.ts +9 -0
- package/src/ui/directives/magic/nocontrol.magic.directive.d.ts +18 -0
- package/src/ui/directives/magic/row.magic.directive.d.ts +17 -0
- package/src/ui/directives/magic-focus.directive.d.ts +9 -0
- package/src/ui/directives/magic.directive.d.ts +44 -0
- package/src/ui/directives/magicViewContainerRef.directive.d.ts +8 -0
- package/src/ui/directives/mgformat.magic.directive.d.ts +31 -0
- package/src/ui/directives/range-validator.magic.directive.d.ts +17 -0
- package/src/ui/magic-confirmationBox.d.ts +6 -0
- package/src/ui/magic-modal/base-magic-overlay-container.d.ts +5 -0
- package/src/ui/magic-modal/magic-modal-form.d.ts +5 -0
- package/src/ui/magic-modal/magic-modal-interface.d.ts +10 -0
- package/src/ui/magic-modal/magic-overlay-container-wrapper.d.ts +31 -0
- package/src/ui/magic-modal/magic-overlay-container.d.ts +25 -0
- package/src/ui/magic-root.component.d.ts +40 -0
- package/src/ui/mgerror.magic.component.d.ts +20 -0
- package/src/ui/pipes/date.magic.pipe.d.ts +17 -0
- package/src/ui/pipes/time.magic.pipe.d.ts +11 -0
- package/src/ui/pipes/time24.magic.pipe.d.ts +10 -0
- package/src/ui/router-container.magic.component.d.ts +30 -0
- package/src/ui/subform.magic.component.d.ts +16 -0
- package/src/ui/task-base.magic.component.d.ts +34 -0
- package/src/ui/utils.d.ts +9 -0
package/index.d.ts
CHANGED
@@ -1 +1,58 @@
|
|
1
|
-
export * from "./
|
1
|
+
export * from "./src/controls.metadata.model";
|
2
|
+
export * from "./src/magic.core.module";
|
3
|
+
export * from "./src/interfaces/sub-form-definition.iterface";
|
4
|
+
export * from "./src/services/accessor.magic.service";
|
5
|
+
export * from "./src/services/commands-collector.magic.service";
|
6
|
+
export * from "./src/services/component-list.magic.service";
|
7
|
+
export * from "./src/services/confirmation.components.magic.provider";
|
8
|
+
export * from "./src/services/engine.magic.service";
|
9
|
+
export * from "./src/services/exit.magic.service";
|
10
|
+
export * from "./src/services/ISubformMagicService";
|
11
|
+
export * from "./src/services/magic-color.service";
|
12
|
+
export * from "./src/services/magic.lazy.loader.service";
|
13
|
+
export * from "./src/services/magic.providers";
|
14
|
+
export * from "./src/services/magic.services";
|
15
|
+
export * from "./src/services/mg-date-adapter";
|
16
|
+
export * from "./src/services/overlay.conainer.magic.provider";
|
17
|
+
export * from "./src/services/OverlayWindowService";
|
18
|
+
export * from "./src/services/router-commands.magic.service";
|
19
|
+
export * from "./src/services/StylesMapManager";
|
20
|
+
export * from "./src/services/subform.magic.service";
|
21
|
+
export * from "./src/services/table.magic.service";
|
22
|
+
export * from "./src/services/task.magics.service";
|
23
|
+
export * from "./src/services/title.magic.service";
|
24
|
+
export * from "./src/ui/GuiInteractiveExecutor";
|
25
|
+
export * from "./src/ui/magic-confirmationBox";
|
26
|
+
export * from "./src/ui/magic-root.component";
|
27
|
+
export * from "./src/ui/mgerror.magic.component";
|
28
|
+
export * from "./src/ui/router-container.magic.component";
|
29
|
+
export * from "./src/ui/subform.magic.component";
|
30
|
+
export * from "./src/ui/task-base.magic.component";
|
31
|
+
export * from "./src/ui/utils";
|
32
|
+
export * from "./src/ui/components/base-magic-alert.component";
|
33
|
+
export * from "./src/ui/components/base-magic-confirm.component";
|
34
|
+
export * from "./src/ui/components/magic-alert.component";
|
35
|
+
export * from "./src/ui/components/magic-confirmation-box.component";
|
36
|
+
export * from "./src/ui/directives/magic-focus.directive";
|
37
|
+
export * from "./src/ui/directives/magic.directive";
|
38
|
+
export * from "./src/ui/directives/magicViewContainerRef.directive";
|
39
|
+
export * from "./src/ui/directives/mgformat.magic.directive";
|
40
|
+
export * from "./src/ui/directives/NonMagicControlDirective";
|
41
|
+
export * from "./src/ui/directives/range-validator.magic.directive";
|
42
|
+
export * from "./src/ui/directives/magic/checkbox-noformcontrol.magic.directive";
|
43
|
+
export * from "./src/ui/directives/magic/checkbox.magic.directive";
|
44
|
+
export * from "./src/ui/directives/magic/combobox.magic.directive";
|
45
|
+
export * from "./src/ui/directives/magic/input.noformcontrol.magic.directive";
|
46
|
+
export * from "./src/ui/directives/magic/nocontrol.magic.directive";
|
47
|
+
export * from "./src/ui/directives/magic/row.magic.directive";
|
48
|
+
export * from "./src/ui/directives/magic/form-controls/control-value-accessors/checkbox.cva.directive";
|
49
|
+
export * from "./src/ui/directives/magic/form-controls/control-value-accessors/date.cva.directive";
|
50
|
+
export * from "./src/ui/directives/magic/form-controls/control-value-accessors/default.cva.directive";
|
51
|
+
export * from "./src/ui/magic-modal/base-magic-overlay-container";
|
52
|
+
export * from "./src/ui/magic-modal/magic-modal-form";
|
53
|
+
export * from "./src/ui/magic-modal/magic-modal-interface";
|
54
|
+
export * from "./src/ui/magic-modal/magic-overlay-container-wrapper";
|
55
|
+
export * from "./src/ui/magic-modal/magic-overlay-container";
|
56
|
+
export * from "./src/ui/pipes/date.magic.pipe";
|
57
|
+
export * from "./src/ui/pipes/time.magic.pipe";
|
58
|
+
export * from "./src/ui/pipes/time24.magic.pipe";
|
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.109",
|
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.109",
|
7
|
+
"@magic-xpa/angular-material-core": "4.1100.0-dev4110.109",
|
8
8
|
"ng-dynamic-component": "^10.1.0",
|
9
9
|
"rxjs": "^6.5.2",
|
10
10
|
"@maskito/angular": "^1.4.0",
|
@@ -0,0 +1,62 @@
|
|
1
|
+
import { StorageAttribute } from "@magic-xpa/utils";
|
2
|
+
import { HtmlProperties, CustomValidator } from "@magic-xpa/gui";
|
3
|
+
export declare class ControlMetadata {
|
4
|
+
controlType: string;
|
5
|
+
dataType: StorageAttribute;
|
6
|
+
properties: Map<HtmlProperties, any>;
|
7
|
+
classesMap: Map<HtmlClasses, any>;
|
8
|
+
stylesMap: Map<HtmlClasses, any>;
|
9
|
+
removedClass: string;
|
10
|
+
classes: string;
|
11
|
+
rangeValidator: boolean;
|
12
|
+
userProperties: Map<string, any>;
|
13
|
+
customValidators: Map<string, CustomValidator>;
|
14
|
+
setClass(key: any, value: any): void;
|
15
|
+
setStyle(key: any, value: any): void;
|
16
|
+
}
|
17
|
+
export declare class ControlsMetadata {
|
18
|
+
values: Map<string, string>;
|
19
|
+
ControlsProperties: Map<string, ControlMetadata>;
|
20
|
+
rowId: string;
|
21
|
+
isCreated: boolean;
|
22
|
+
isEditing: boolean;
|
23
|
+
get Values(): Map<string, string>;
|
24
|
+
getControlMetadata(controlId: string): ControlMetadata;
|
25
|
+
update(obj: any): void;
|
26
|
+
setValue(controlName: string, value: any): void;
|
27
|
+
getProperty(controlId: string, prop: HtmlProperties): any;
|
28
|
+
getValue(controlName: string): string;
|
29
|
+
}
|
30
|
+
export declare class Records {
|
31
|
+
data: Map<number, ControlsMetadata>;
|
32
|
+
list: ControlsMetadata[];
|
33
|
+
includesFirst: boolean;
|
34
|
+
includesLast: boolean;
|
35
|
+
guiTopIndex: number;
|
36
|
+
recordsBeforeCurrentView: number;
|
37
|
+
isEmptyDataView: boolean;
|
38
|
+
sizeUpdated: boolean;
|
39
|
+
getRow(dvRowId: number): ControlsMetadata;
|
40
|
+
markRowAsCreated(guiRowId: number): void;
|
41
|
+
markRowAsNotCreated(guiRowId: number): void;
|
42
|
+
isRowCreated(guiRowId: number): boolean;
|
43
|
+
startRowEditing(guiRowId: number): void;
|
44
|
+
stopRowEditing(guiRowId: number): void;
|
45
|
+
isRowInRowEditing(guiRowId: string): boolean;
|
46
|
+
update(obj: any): void;
|
47
|
+
updateSize(len: number): void;
|
48
|
+
clearFirstTableRecord(template: {
|
49
|
+
[id: string]: string;
|
50
|
+
}): void;
|
51
|
+
addRow(guiRowId: number): void;
|
52
|
+
createFirst(): void;
|
53
|
+
fromJson(data: string): void;
|
54
|
+
setGuiTopIndex(topIndex: number): void;
|
55
|
+
getGuiTopIndex(): number;
|
56
|
+
}
|
57
|
+
export declare enum HtmlClasses {
|
58
|
+
Color = "color",
|
59
|
+
font = "font",
|
60
|
+
FocusColor = "focuscolor",
|
61
|
+
HintColor = "hintcolor"
|
62
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { ViewContainerRef } from "@angular/core";
|
2
|
+
export interface SubformDefinition {
|
3
|
+
formName: string;
|
4
|
+
parameters: any;
|
5
|
+
}
|
6
|
+
export interface RouteDefinition {
|
7
|
+
formName: string;
|
8
|
+
parameters: any;
|
9
|
+
}
|
10
|
+
export interface IMagicViewContainerRef {
|
11
|
+
setViewContainerRef(vcRef: ViewContainerRef): any;
|
12
|
+
}
|
@@ -0,0 +1,41 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./ui/directives/magic.directive";
|
3
|
+
import * as i2 from "./ui/directives/magic/checkbox.magic.directive";
|
4
|
+
import * as i3 from "./ui/directives/magic/checkbox-noformcontrol.magic.directive";
|
5
|
+
import * as i4 from "./ui/directives/magic/input.noformcontrol.magic.directive";
|
6
|
+
import * as i5 from "./ui/directives/magic/combobox.magic.directive";
|
7
|
+
import * as i6 from "./ui/directives/magic/row.magic.directive";
|
8
|
+
import * as i7 from "./ui/directives/magic/form-controls/control-value-accessors/checkbox.cva.directive";
|
9
|
+
import * as i8 from "./ui/directives/magic/form-controls/control-value-accessors/default.cva.directive";
|
10
|
+
import * as i9 from "./ui/directives/magic/form-controls/control-value-accessors/date.cva.directive";
|
11
|
+
import * as i10 from "./ui/task-base.magic.component";
|
12
|
+
import * as i11 from "./ui/magic-modal/magic-overlay-container";
|
13
|
+
import * as i12 from "./ui/components/magic-alert.component";
|
14
|
+
import * as i13 from "./ui/components/magic-confirmation-box.component";
|
15
|
+
import * as i14 from "./ui/components/base-magic-alert.component";
|
16
|
+
import * as i15 from "./ui/components/base-magic-confirm.component";
|
17
|
+
import * as i16 from "./ui/magic-modal/magic-overlay-container-wrapper";
|
18
|
+
import * as i17 from "./ui/router-container.magic.component";
|
19
|
+
import * as i18 from "./ui/magic-root.component";
|
20
|
+
import * as i19 from "./ui/subform.magic.component";
|
21
|
+
import * as i20 from "./ui/mgerror.magic.component";
|
22
|
+
import * as i21 from "./ui/directives/magic/nocontrol.magic.directive";
|
23
|
+
import * as i22 from "./ui/directives/mgformat.magic.directive";
|
24
|
+
import * as i23 from "./ui/pipes/date.magic.pipe";
|
25
|
+
import * as i24 from "./ui/pipes/time.magic.pipe";
|
26
|
+
import * as i25 from "./ui/directives/range-validator.magic.directive";
|
27
|
+
import * as i26 from "./ui/directives/NonMagicControlDirective";
|
28
|
+
import * as i27 from "./ui/directives/magic-focus.directive";
|
29
|
+
import * as i28 from "./ui/directives/magicViewContainerRef.directive";
|
30
|
+
import * as i29 from "./ui/pipes/time24.magic.pipe";
|
31
|
+
import * as i30 from "@angular/common";
|
32
|
+
import * as i31 from "@angular/forms";
|
33
|
+
import * as i32 from "@angular/router";
|
34
|
+
import * as i33 from "ng-dynamic-component";
|
35
|
+
import * as i34 from "@angular/common/http";
|
36
|
+
import * as i35 from "@maskito/angular";
|
37
|
+
export declare class MagicModule {
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MagicModule, never>;
|
39
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MagicModule, [typeof i1.MagicDirective, typeof i2.CheckboxMagicDirective, typeof i3.CheckboxNoFormControlMagicDirective, typeof i4.InputNoFormControlMagicDirective, typeof i5.ComboboxMagicDirective, typeof i6.RowMagicDirective, typeof i7.MagicCheckboxControlValueAccessor, typeof i8.MagicDefaultValueAccessor, typeof i9.DateValueAccessor, typeof i10.TaskBaseMagicComponent, typeof i11.MagicOverlayContainer, typeof i12.MagicAlertComponent, typeof i13.MagicConfirmationBoxComponent, typeof i14.BaseMagicAlertComponent, typeof i15.BaseMagicConfirmComponent, typeof i16.MagicOverlayContainerWrapper, typeof i17.RouterContainerMagicComponent, typeof i18.MagicShellComponent, typeof i19.SubformMagicComponent, typeof i20.ErrorMagicComponent, typeof i21.NoControlMagicDirective, typeof i22.MgformatMagicDirective, typeof i23.DateMagicPipe, typeof i24.TimeMagicPipe, typeof i25.RangeValidatorMagicDirective, typeof i26.NonMagicControlDirective, typeof i27.MagicFocusDirective, typeof i28.MagicViewContainerRef, typeof i29.Time24MagicPipe], [typeof i30.CommonModule, typeof i31.FormsModule, typeof i31.ReactiveFormsModule, typeof i32.RouterModule, typeof i33.DynamicModule, typeof i34.HttpClientModule], [typeof i1.MagicDirective, typeof i2.CheckboxMagicDirective, typeof i3.CheckboxNoFormControlMagicDirective, typeof i4.InputNoFormControlMagicDirective, typeof i5.ComboboxMagicDirective, typeof i6.RowMagicDirective, typeof i7.MagicCheckboxControlValueAccessor, typeof i8.MagicDefaultValueAccessor, typeof i9.DateValueAccessor, typeof i10.TaskBaseMagicComponent, typeof i11.MagicOverlayContainer, typeof i12.MagicAlertComponent, typeof i13.MagicConfirmationBoxComponent, typeof i14.BaseMagicAlertComponent, typeof i15.BaseMagicConfirmComponent, typeof i16.MagicOverlayContainerWrapper, typeof i17.RouterContainerMagicComponent, typeof i18.MagicShellComponent, typeof i19.SubformMagicComponent, typeof i20.ErrorMagicComponent, typeof i21.NoControlMagicDirective, typeof i22.MgformatMagicDirective, typeof i23.DateMagicPipe, typeof i24.TimeMagicPipe, typeof i25.RangeValidatorMagicDirective, typeof i26.NonMagicControlDirective, typeof i27.MagicFocusDirective, typeof i28.MagicViewContainerRef, typeof i29.Time24MagicPipe, typeof i35.MaskitoModule]>;
|
40
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MagicModule>;
|
41
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import { ComponentFactoryResolver, Injector, ChangeDetectorRef, Compiler, ViewContainerRef } from "@angular/core";
|
2
|
+
import { ComponentListMagicService } from "./component-list.magic.service";
|
3
|
+
import { EngineMagicService } from "./engine.magic.service";
|
4
|
+
import { OverlayContainerMagicProvider } from "./overlay.conainer.magic.provider";
|
5
|
+
import { ConfirmationComponentsMagicProvider } from "./confirmation.components.magic.provider";
|
6
|
+
import { Styles } from "@magic-xpa/gui";
|
7
|
+
import { MagicLazyLoaderService } from "./magic.lazy.loader.service";
|
8
|
+
import * as i0 from "@angular/core";
|
9
|
+
export declare class OverlayWindowService {
|
10
|
+
private componentFactoryResolver;
|
11
|
+
protected componentList: ComponentListMagicService;
|
12
|
+
protected engineMagicService: EngineMagicService;
|
13
|
+
private magicLazyModuleLoader;
|
14
|
+
private injector;
|
15
|
+
private compiler;
|
16
|
+
private overlayContainerMagicProvider;
|
17
|
+
private confirmationComponentsMagicProvider;
|
18
|
+
constructor(componentFactoryResolver: ComponentFactoryResolver, componentList: ComponentListMagicService, engineMagicService: EngineMagicService, magicLazyModuleLoader: MagicLazyLoaderService, injector: Injector, compiler: Compiler, overlayContainerMagicProvider: OverlayContainerMagicProvider, confirmationComponentsMagicProvider: ConfirmationComponentsMagicProvider);
|
19
|
+
private overlayWindowsContainerViewRef;
|
20
|
+
private overlayWindowFocusManager;
|
21
|
+
private changeDetectorRef;
|
22
|
+
init(overlayWindowsContainerViewRef: ViewContainerRef, rootMagicElement: Element, changeDetectorRef: ChangeDetectorRef): void;
|
23
|
+
loadAndOpenModule(formName: string, taskId: string, taskDescription: string): void;
|
24
|
+
open(formName: string, taskId: string, taskDescription: string): void;
|
25
|
+
close(commandStr: string): void;
|
26
|
+
openConfirmationBox(title: string, msg: string, style: Styles): void;
|
27
|
+
finishConfirmation(style: Styles, result: boolean): void;
|
28
|
+
private createModalComponent;
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayWindowService, never>;
|
30
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OverlayWindowService>;
|
31
|
+
}
|
@@ -0,0 +1,69 @@
|
|
1
|
+
import { TaskMagicService } from './task.magics.service';
|
2
|
+
import { HtmlProperties } from '@magic-xpa/gui';
|
3
|
+
import { FormGroup } from '@angular/forms';
|
4
|
+
import { MagicColorService } from './magic-color.service';
|
5
|
+
import { MaskitoOptions } from "@maskito/core";
|
6
|
+
import * as i0 from "@angular/core";
|
7
|
+
export declare class AccessorMagicService {
|
8
|
+
protected task: TaskMagicService;
|
9
|
+
protected magicColor: MagicColorService;
|
10
|
+
Logger: any;
|
11
|
+
readonly hhmm: MaskitoOptions;
|
12
|
+
readonly hhmmss: MaskitoOptions;
|
13
|
+
constructor(task: TaskMagicService, magicColor: MagicColorService);
|
14
|
+
checkIsReadOnly(controlId: string): boolean;
|
15
|
+
getText(controlId: string, rowId?: string): string;
|
16
|
+
getTabpageText(controlId: string, layer: number): string;
|
17
|
+
getImage(controlId: string, rowId?: string): string;
|
18
|
+
isImageExists(controlId: string, rowId?: string): boolean;
|
19
|
+
getClasses(controlId: string, rowId?: string): string;
|
20
|
+
getStyle(controlId: string, styleName: string, rowId?: string): string;
|
21
|
+
getVisible(controlId: string, rowId?: string): string;
|
22
|
+
getAlphaMask(controlId: string, rowId?: string): string;
|
23
|
+
getNumericPicture(picture: string): any;
|
24
|
+
getMustInput(controlId: string, rowId?: string): string;
|
25
|
+
isDisabled(controlId: string, rowId?: string): any;
|
26
|
+
getProperty(controlId: string, prop: HtmlProperties, rowId?: string): any;
|
27
|
+
getTitle(controlId: string, rowId?: string): string;
|
28
|
+
getZoomButtonTitle(controlId: string, rowId?: string): string;
|
29
|
+
getSelectedValue(controlId: string, rowId?: string): string;
|
30
|
+
getPlaceholder(controlId: string, rowId?: string): string;
|
31
|
+
getType(controlId: string, rowId?: string): string;
|
32
|
+
getTabIndex(controlId: string, rowId?: string): number;
|
33
|
+
getValue(controlId: string, rowId?: string): any;
|
34
|
+
getFormattedValue(controlId: string, rowId?: string): string;
|
35
|
+
getPicture(controlId: string, rowId?: string): string;
|
36
|
+
getCustomProperty(controlId: string, propertyNameOrRowID?: string, rowId?: string): any;
|
37
|
+
getCustomProperty_1(controlId: string, propertyName: string, rowId?: string): any;
|
38
|
+
getItemListValues(id: string, rowId?: string): Array<{
|
39
|
+
index: number;
|
40
|
+
displayValue: string;
|
41
|
+
}>;
|
42
|
+
getFilteredList(controlId: string, rowId?: string): Array<{
|
43
|
+
index: number;
|
44
|
+
displayValue: string;
|
45
|
+
}>;
|
46
|
+
getDisplayValue(id: any, rowId?: any): string;
|
47
|
+
isOptionSelected(index: any, controlId: any): boolean;
|
48
|
+
isTabPageSelected(controlId: string, layer: number): boolean;
|
49
|
+
isTabPageLayerSelected(controlId: string, layer: number): boolean;
|
50
|
+
getTabSelectedIndex(controlId: string): any;
|
51
|
+
ifRowCreated(row: any): boolean;
|
52
|
+
getFormGroupByRow(id: string): FormGroup;
|
53
|
+
isRowSelected(controlId: any, rowId?: any): boolean;
|
54
|
+
isRowInRowEditing(row?: any): boolean;
|
55
|
+
isCurrentInRowEditing(): boolean;
|
56
|
+
guiTopIndex(): number;
|
57
|
+
getErrMsg(id: string, rowId: string): string;
|
58
|
+
setValueToControl(controlName: string, value: any, refreshDisplay?: boolean): void;
|
59
|
+
isDataviewEmpty(): boolean;
|
60
|
+
simulateClick(controlName: string, rowId?: number): void;
|
61
|
+
isLoggedIn(): boolean;
|
62
|
+
GetFormRecords(): any;
|
63
|
+
SetCookie(name: string, value: any, expires?: Date, path?: any, domain?: any, secure?: any, sameSite?: any): void;
|
64
|
+
GetCookie(name: string): any;
|
65
|
+
DeleteCookie(name: string): any;
|
66
|
+
getColor(colorNumber: number, colorType: any): any;
|
67
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccessorMagicService, never>;
|
68
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AccessorMagicService>;
|
69
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { EngineMagicService } from './engine.magic.service';
|
2
|
+
import { GuiCommand } from '@magic-xpa/gui';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare class CommandsCollectorMagicService {
|
5
|
+
protected magic: EngineMagicService;
|
6
|
+
private count;
|
7
|
+
private commands;
|
8
|
+
private subscription;
|
9
|
+
constructor(magic: EngineMagicService);
|
10
|
+
startCollecting(): void;
|
11
|
+
stopCollecting(): void;
|
12
|
+
GetCommands(taskId: string): GuiCommand[];
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommandsCollectorMagicService, never>;
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CommandsCollectorMagicService>;
|
15
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { NgModuleRef } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export interface ComponentData {
|
4
|
+
component: any;
|
5
|
+
moduleRef: NgModuleRef<any>;
|
6
|
+
}
|
7
|
+
export interface ModuleData {
|
8
|
+
moduleName: string;
|
9
|
+
modulePath: string;
|
10
|
+
}
|
11
|
+
export declare class ComponentListMagicService {
|
12
|
+
components: Map<string, ComponentData>;
|
13
|
+
dialogs: Map<string, any>;
|
14
|
+
lazyLoadModulesMap: any;
|
15
|
+
getData(name: string, mustHaveData: boolean): ComponentData;
|
16
|
+
getComponent(name: string, mustHaveData?: boolean): any;
|
17
|
+
addComponents(componentList: any, modulRef?: NgModuleRef<any>): void;
|
18
|
+
getModuleRef(name: string): NgModuleRef<any>;
|
19
|
+
getLazyLoadModuleData(name: string): ModuleData;
|
20
|
+
title: string;
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentListMagicService, never>;
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ComponentListMagicService>;
|
23
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class ConfirmationComponentsMagicProvider {
|
3
|
+
showDefaultConfirmations(): boolean;
|
4
|
+
getAlertComponent(): any;
|
5
|
+
getConfirmtionComponent(): any;
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationComponentsMagicProvider, never>;
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ConfirmationComponentsMagicProvider>;
|
8
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { Subject } from "rxjs";
|
2
|
+
import { IGuiEvent, MagicBridge } from "@magic-xpa/engine";
|
3
|
+
import { GuiCommand, GuiInteractive } from "@magic-xpa/gui";
|
4
|
+
import { HttpClient } from "@angular/common/http";
|
5
|
+
import * as i0 from "@angular/core";
|
6
|
+
export declare class EngineMagicService {
|
7
|
+
magicBridge: typeof MagicBridge;
|
8
|
+
isStub: boolean;
|
9
|
+
isLoggedIn: boolean;
|
10
|
+
refreshDom: Subject<GuiCommand>;
|
11
|
+
interactiveCommands: Subject<GuiInteractive>;
|
12
|
+
startMagicEngine(httpClient: HttpClient): void;
|
13
|
+
terminateMagic(): Promise<void>;
|
14
|
+
insertEvent(guiEvent: IGuiEvent): void;
|
15
|
+
GetRangedValue(taskId: string, controlName: string, value: string): string;
|
16
|
+
GetControlPictureMask(taskId: string, controlName: string): any;
|
17
|
+
GetFormattedValue(taskId: string, controlName: string, value: any, rowId?: string): any;
|
18
|
+
ValidateControlValue(taskId: string, controlName: string, value: any): string;
|
19
|
+
GetFldRanges(taskId: string, controlName: string): string;
|
20
|
+
saveData(data: string): void;
|
21
|
+
getIsLoggedIn(): boolean;
|
22
|
+
setIsLoggedIn(setIsLoggedIn: boolean): void;
|
23
|
+
TransCacheExists(): boolean;
|
24
|
+
TerminateContextUsingFetchAPI(): void;
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EngineMagicService, never>;
|
26
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EngineMagicService>;
|
27
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare let COLOR_FILE_NAME: InjectionToken<string>;
|
5
|
+
export declare const MAGIC_FG_COLOR: number;
|
6
|
+
export declare const MAGIC_BG_COLOR: number;
|
7
|
+
export declare class MagicColorService {
|
8
|
+
private http;
|
9
|
+
colorFileName: string;
|
10
|
+
getColorFilePath(): string;
|
11
|
+
private colorsData;
|
12
|
+
private fileNotFound;
|
13
|
+
constructor(http: HttpClient, colorFile1?: string);
|
14
|
+
private getColorData;
|
15
|
+
private hexToRgba;
|
16
|
+
getColor(colorIndex: number, colorType: number): any;
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MagicColorService, never>;
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MagicColorService>;
|
19
|
+
}
|
@@ -0,0 +1,107 @@
|
|
1
|
+
import { MagicServices } from "./magic.services";
|
2
|
+
import { TaskMagicService } from "./task.magics.service";
|
3
|
+
import { SubformMagicService } from "./subform.magic.service";
|
4
|
+
import { TableMagicService } from "./table.magic.service";
|
5
|
+
import { TitleMagicService } from "./title.magic.service";
|
6
|
+
import { AccessorMagicService } from "./accessor.magic.service";
|
7
|
+
import { MgDateAdapter } from "./mg-date-adapter";
|
8
|
+
import { DateAdapter } from '@angular/material/core';
|
9
|
+
export declare const matDateProviders: ({
|
10
|
+
provide: typeof DateAdapter;
|
11
|
+
useClass: typeof MgDateAdapter;
|
12
|
+
useValue?: undefined;
|
13
|
+
} | {
|
14
|
+
provide: import("@angular/core").InjectionToken<import("@angular/material/core").MatDateFormats>;
|
15
|
+
useValue: {
|
16
|
+
parse: {
|
17
|
+
dateInput: {
|
18
|
+
month: string;
|
19
|
+
year: string;
|
20
|
+
day: string;
|
21
|
+
};
|
22
|
+
};
|
23
|
+
display: {
|
24
|
+
dateInput: string;
|
25
|
+
monthYearLabel: {
|
26
|
+
year: string;
|
27
|
+
month: string;
|
28
|
+
};
|
29
|
+
dateA11yLabel: {
|
30
|
+
year: string;
|
31
|
+
month: string;
|
32
|
+
day: string;
|
33
|
+
};
|
34
|
+
monthYearA11yLabel: {
|
35
|
+
year: string;
|
36
|
+
month: string;
|
37
|
+
};
|
38
|
+
};
|
39
|
+
};
|
40
|
+
useClass?: undefined;
|
41
|
+
})[];
|
42
|
+
export declare const basicMagicProviders: (typeof SubformMagicService | typeof TitleMagicService | typeof AccessorMagicService | typeof TaskMagicService | typeof MagicServices | ({
|
43
|
+
provide: typeof DateAdapter;
|
44
|
+
useClass: typeof MgDateAdapter;
|
45
|
+
useValue?: undefined;
|
46
|
+
} | {
|
47
|
+
provide: import("@angular/core").InjectionToken<import("@angular/material/core").MatDateFormats>;
|
48
|
+
useValue: {
|
49
|
+
parse: {
|
50
|
+
dateInput: {
|
51
|
+
month: string;
|
52
|
+
year: string;
|
53
|
+
day: string;
|
54
|
+
};
|
55
|
+
};
|
56
|
+
display: {
|
57
|
+
dateInput: string;
|
58
|
+
monthYearLabel: {
|
59
|
+
year: string;
|
60
|
+
month: string;
|
61
|
+
};
|
62
|
+
dateA11yLabel: {
|
63
|
+
year: string;
|
64
|
+
month: string;
|
65
|
+
day: string;
|
66
|
+
};
|
67
|
+
monthYearA11yLabel: {
|
68
|
+
year: string;
|
69
|
+
month: string;
|
70
|
+
};
|
71
|
+
};
|
72
|
+
};
|
73
|
+
useClass?: undefined;
|
74
|
+
})[])[];
|
75
|
+
export declare const magicProviders: (typeof SubformMagicService | typeof TitleMagicService | typeof AccessorMagicService | typeof TaskMagicService | typeof TableMagicService | typeof MagicServices | ({
|
76
|
+
provide: typeof DateAdapter;
|
77
|
+
useClass: typeof MgDateAdapter;
|
78
|
+
useValue?: undefined;
|
79
|
+
} | {
|
80
|
+
provide: import("@angular/core").InjectionToken<import("@angular/material/core").MatDateFormats>;
|
81
|
+
useValue: {
|
82
|
+
parse: {
|
83
|
+
dateInput: {
|
84
|
+
month: string;
|
85
|
+
year: string;
|
86
|
+
day: string;
|
87
|
+
};
|
88
|
+
};
|
89
|
+
display: {
|
90
|
+
dateInput: string;
|
91
|
+
monthYearLabel: {
|
92
|
+
year: string;
|
93
|
+
month: string;
|
94
|
+
};
|
95
|
+
dateA11yLabel: {
|
96
|
+
year: string;
|
97
|
+
month: string;
|
98
|
+
day: string;
|
99
|
+
};
|
100
|
+
monthYearA11yLabel: {
|
101
|
+
year: string;
|
102
|
+
month: string;
|
103
|
+
};
|
104
|
+
};
|
105
|
+
};
|
106
|
+
useClass?: undefined;
|
107
|
+
})[])[];
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { SubformMagicService } from "./subform.magic.service";
|
2
|
+
import { TableMagicService } from "./table.magic.service";
|
3
|
+
import { TaskMagicService } from "./task.magics.service";
|
4
|
+
import { TitleMagicService } from "./title.magic.service";
|
5
|
+
import { AccessorMagicService } from "./accessor.magic.service";
|
6
|
+
import * as i0 from "@angular/core";
|
7
|
+
export declare class MagicServices {
|
8
|
+
task: TaskMagicService;
|
9
|
+
subformService: SubformMagicService;
|
10
|
+
tableService: TableMagicService;
|
11
|
+
titleService: TitleMagicService;
|
12
|
+
mgAccessorService: AccessorMagicService;
|
13
|
+
constructor(task: TaskMagicService, subformService: SubformMagicService, tableService: TableMagicService, titleService: TitleMagicService, mgAccessorService: AccessorMagicService);
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MagicServices, never>;
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MagicServices>;
|
16
|
+
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
import { NativeDateAdapter } from '@angular/material/core';
|
2
|
+
import { Platform } from '@angular/cdk/platform';
|
3
|
+
import { TaskMagicService } from "./task.magics.service";
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare const MG_FORMATS: {
|
6
|
+
parse: {
|
7
|
+
dateInput: {
|
8
|
+
month: string;
|
9
|
+
year: string;
|
10
|
+
day: string;
|
11
|
+
};
|
12
|
+
};
|
13
|
+
display: {
|
14
|
+
dateInput: string;
|
15
|
+
monthYearLabel: {
|
16
|
+
year: string;
|
17
|
+
month: string;
|
18
|
+
};
|
19
|
+
dateA11yLabel: {
|
20
|
+
year: string;
|
21
|
+
month: string;
|
22
|
+
day: string;
|
23
|
+
};
|
24
|
+
monthYearA11yLabel: {
|
25
|
+
year: string;
|
26
|
+
month: string;
|
27
|
+
};
|
28
|
+
};
|
29
|
+
};
|
30
|
+
export declare class MgDateAdapter extends NativeDateAdapter {
|
31
|
+
platform: Platform;
|
32
|
+
protected task: TaskMagicService;
|
33
|
+
localeId: string;
|
34
|
+
mgdtfmt: string;
|
35
|
+
constructor(platform: Platform, task: TaskMagicService, localeId: string);
|
36
|
+
parse(value: any): Date | null;
|
37
|
+
format(date: Date, displayFormat: Object): string;
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MgDateAdapter, never>;
|
39
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MgDateAdapter>;
|
40
|
+
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { MagicOverlayContainer } from "../ui/magic-modal/magic-overlay-container";
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class OverlayContainerMagicProvider {
|
4
|
+
getComponent(): typeof MagicOverlayContainer;
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayContainerMagicProvider, never>;
|
6
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OverlayContainerMagicProvider>;
|
7
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { List } from '@magic-xpa/mscorelib';
|
2
|
+
import { ISubformMagicService } from './ISubformMagicService';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare class RouteCommand {
|
5
|
+
callerMgSubformServiceRef: ISubformMagicService;
|
6
|
+
routerOutletName: string;
|
7
|
+
formName: string;
|
8
|
+
parameters: any;
|
9
|
+
routeParams: List<any>;
|
10
|
+
}
|
11
|
+
export declare class RouterCommandsMagicService {
|
12
|
+
private pendingRouteCommands;
|
13
|
+
AddRouteCommand(routeCommand: RouteCommand): void;
|
14
|
+
ExecuteNextCommand(): void;
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RouterCommandsMagicService, never>;
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RouterCommandsMagicService>;
|
17
|
+
}
|