@magic-xpa/angular 4.1100.0-dev4110.99 → 4.1101.0-dev4111.271
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/README.md +5 -5
- package/{esm2020 → esm2022}/index.mjs +59 -59
- package/{esm2020 → esm2022}/magic-xpa-angular.mjs +1 -1
- package/esm2022/src/controls.metadata.model.mjs +183 -0
- package/{esm2020 → esm2022}/src/interfaces/sub-form-definition.iterface.mjs +1 -1
- package/{esm2020 → esm2022}/src/magic.core.module.mjs +159 -160
- package/{esm2020 → esm2022}/src/services/ISubformMagicService.mjs +1 -1
- package/esm2022/src/services/OverlayWindowService.mjs +245 -0
- package/esm2022/src/services/StylesMapManager.mjs +28 -0
- package/esm2022/src/services/accessor.magic.service.mjs +358 -0
- package/esm2022/src/services/commands-collector.magic.service.mjs +47 -0
- package/esm2022/src/services/component-list.magic.service.mjs +45 -0
- package/{esm2020 → esm2022}/src/services/confirmation.components.magic.provider.mjs +21 -21
- package/esm2022/src/services/engine.magic.service.mjs +80 -0
- package/{esm2020 → esm2022}/src/services/exit.magic.service.mjs +13 -13
- package/esm2022/src/services/magic-color.service.mjs +101 -0
- package/{esm2020 → esm2022}/src/services/magic.lazy.loader.service.mjs +16 -16
- package/{esm2020 → esm2022}/src/services/magic.providers.mjs +24 -24
- package/esm2022/src/services/magic.services.mjs +36 -0
- package/esm2022/src/services/mg-date-adapter.mjs +108 -0
- package/{esm2020 → esm2022}/src/services/overlay.conainer.magic.provider.mjs +14 -14
- package/esm2022/src/services/router-commands.magic.service.mjs +31 -0
- package/esm2022/src/services/subform.magic.service.mjs +195 -0
- package/esm2022/src/services/table.magic.service.mjs +81 -0
- package/esm2022/src/services/task.magics.service.mjs +648 -0
- package/esm2022/src/services/title.magic.service.mjs +19 -0
- package/esm2022/src/ui/GuiInteractiveExecutor.mjs +114 -0
- package/esm2022/src/ui/components/base-magic-alert.component.mjs +24 -0
- package/esm2022/src/ui/components/base-magic-confirm.component.mjs +24 -0
- package/esm2022/src/ui/components/magic-alert.component.mjs +36 -0
- package/esm2022/src/ui/components/magic-confirmation-box.component.mjs +42 -0
- package/esm2022/src/ui/directives/NonMagicControlDirective.mjs +58 -0
- package/esm2022/src/ui/directives/magic/checkbox-noformcontrol.magic.directive.mjs +29 -0
- package/esm2022/src/ui/directives/magic/checkbox.magic.directive.mjs +100 -0
- package/esm2022/src/ui/directives/magic/combobox.magic.directive.mjs +37 -0
- package/esm2022/src/ui/directives/magic/form-controls/control-value-accessors/checkbox.cva.directive.mjs +27 -0
- package/esm2022/src/ui/directives/magic/form-controls/control-value-accessors/date.cva.directive.mjs +85 -0
- package/esm2022/src/ui/directives/magic/form-controls/control-value-accessors/default.cva.directive.mjs +32 -0
- package/esm2022/src/ui/directives/magic/input.noformcontrol.magic.directive.mjs +28 -0
- package/{esm2020 → esm2022}/src/ui/directives/magic/nocontrol.magic.directive.mjs +193 -193
- package/esm2022/src/ui/directives/magic/row.magic.directive.mjs +62 -0
- package/esm2022/src/ui/directives/magic-focus.directive.mjs +20 -0
- package/esm2022/src/ui/directives/magic.directive.mjs +232 -0
- package/esm2022/src/ui/directives/magicViewContainerRef.directive.mjs +20 -0
- package/esm2022/src/ui/directives/mgformat.magic.directive.mjs +579 -0
- package/esm2022/src/ui/directives/range-validator.magic.directive.mjs +60 -0
- package/{esm2020 → esm2022}/src/ui/magic-confirmationBox.mjs +41 -41
- package/{esm2020 → esm2022}/src/ui/magic-modal/base-magic-overlay-container.mjs +22 -22
- package/esm2022/src/ui/magic-modal/magic-modal-form.mjs +6 -0
- package/{esm2020 → esm2022}/src/ui/magic-modal/magic-modal-interface.mjs +1 -1
- package/esm2022/src/ui/magic-modal/magic-overlay-container-wrapper.mjs +125 -0
- package/esm2022/src/ui/magic-modal/magic-overlay-container.mjs +162 -0
- package/esm2022/src/ui/magic-root.component.mjs +236 -0
- package/esm2022/src/ui/mgerror.magic.component.mjs +125 -0
- package/esm2022/src/ui/pipes/date.magic.pipe.mjs +106 -0
- package/esm2022/src/ui/pipes/time.magic.pipe.mjs +52 -0
- package/esm2022/src/ui/pipes/time24.magic.pipe.mjs +35 -0
- package/esm2022/src/ui/router-container.magic.component.mjs +115 -0
- package/{esm2020 → esm2022}/src/ui/subform.magic.component.mjs +50 -46
- package/esm2022/src/ui/task-base.magic.component.mjs +91 -0
- package/{esm2020 → esm2022}/src/ui/utils.mjs +53 -53
- package/{fesm2020 → fesm2022}/magic-xpa-angular.mjs +4933 -4495
- package/fesm2022/magic-xpa-angular.mjs.map +1 -0
- package/index.d.ts +58 -58
- package/package.json +10 -16
- package/src/controls.metadata.model.d.ts +62 -62
- package/src/interfaces/sub-form-definition.iterface.d.ts +12 -12
- package/src/magic.core.module.d.ts +41 -41
- package/src/services/ISubformMagicService.d.ts +4 -4
- package/src/services/OverlayWindowService.d.ts +30 -31
- package/src/services/StylesMapManager.d.ts +5 -5
- package/src/services/accessor.magic.service.d.ts +69 -69
- package/src/services/commands-collector.magic.service.d.ts +15 -15
- package/src/services/component-list.magic.service.d.ts +23 -23
- package/src/services/confirmation.components.magic.provider.d.ts +8 -8
- package/src/services/engine.magic.service.d.ts +27 -27
- package/src/services/exit.magic.service.d.ts +6 -6
- package/src/services/magic-color.service.d.ts +19 -19
- package/src/services/magic.lazy.loader.service.d.ts +6 -6
- package/src/services/magic.providers.d.ts +107 -107
- package/src/services/magic.services.d.ts +16 -16
- package/src/services/mg-date-adapter.d.ts +38 -40
- package/src/services/overlay.conainer.magic.provider.d.ts +7 -7
- package/src/services/router-commands.magic.service.d.ts +17 -17
- package/src/services/subform.magic.service.d.ts +43 -43
- package/src/services/table.magic.service.d.ts +30 -30
- package/src/services/task.magics.service.d.ts +100 -100
- package/src/services/title.magic.service.d.ts +9 -9
- package/src/ui/GuiInteractiveExecutor.d.ts +22 -22
- package/src/ui/components/base-magic-alert.component.d.ts +10 -10
- package/src/ui/components/base-magic-confirm.component.d.ts +10 -10
- package/src/ui/components/magic-alert.component.d.ts +6 -6
- package/src/ui/components/magic-confirmation-box.component.d.ts +6 -6
- package/src/ui/directives/NonMagicControlDirective.d.ts +26 -26
- package/src/ui/directives/magic/checkbox-noformcontrol.magic.directive.d.ts +9 -9
- package/src/ui/directives/magic/checkbox.magic.directive.d.ts +22 -9
- package/src/ui/directives/magic/combobox.magic.directive.d.ts +10 -10
- package/src/ui/directives/magic/form-controls/control-value-accessors/checkbox.cva.directive.d.ts +7 -7
- package/src/ui/directives/magic/form-controls/control-value-accessors/date.cva.directive.d.ts +23 -17
- package/src/ui/directives/magic/form-controls/control-value-accessors/default.cva.directive.d.ts +7 -7
- package/src/ui/directives/magic/input.noformcontrol.magic.directive.d.ts +9 -9
- package/src/ui/directives/magic/nocontrol.magic.directive.d.ts +18 -18
- package/src/ui/directives/magic/row.magic.directive.d.ts +17 -17
- package/src/ui/directives/magic-focus.directive.d.ts +9 -9
- package/src/ui/directives/magic.directive.d.ts +45 -44
- package/src/ui/directives/magicViewContainerRef.directive.d.ts +8 -8
- package/src/ui/directives/mgformat.magic.directive.d.ts +38 -31
- package/src/ui/directives/range-validator.magic.directive.d.ts +17 -17
- package/src/ui/magic-confirmationBox.d.ts +6 -6
- package/src/ui/magic-modal/base-magic-overlay-container.d.ts +5 -5
- package/src/ui/magic-modal/magic-modal-form.d.ts +5 -5
- package/src/ui/magic-modal/magic-modal-interface.d.ts +10 -10
- package/src/ui/magic-modal/magic-overlay-container-wrapper.d.ts +30 -31
- package/src/ui/magic-modal/magic-overlay-container.d.ts +24 -25
- package/src/ui/magic-root.component.d.ts +43 -40
- package/src/ui/mgerror.magic.component.d.ts +20 -20
- package/src/ui/pipes/date.magic.pipe.d.ts +17 -17
- package/src/ui/pipes/time.magic.pipe.d.ts +11 -11
- package/src/ui/pipes/time24.magic.pipe.d.ts +10 -10
- package/src/ui/router-container.magic.component.d.ts +29 -30
- package/src/ui/subform.magic.component.d.ts +16 -16
- package/src/ui/task-base.magic.component.d.ts +34 -34
- package/src/ui/utils.d.ts +9 -9
- package/esm2020/src/controls.metadata.model.mjs +0 -180
- package/esm2020/src/services/OverlayWindowService.mjs +0 -236
- package/esm2020/src/services/StylesMapManager.mjs +0 -28
- package/esm2020/src/services/accessor.magic.service.mjs +0 -356
- package/esm2020/src/services/commands-collector.magic.service.mjs +0 -46
- package/esm2020/src/services/component-list.magic.service.mjs +0 -46
- package/esm2020/src/services/engine.magic.service.mjs +0 -82
- package/esm2020/src/services/magic-color.service.mjs +0 -99
- package/esm2020/src/services/magic.services.mjs +0 -31
- package/esm2020/src/services/mg-date-adapter.mjs +0 -109
- package/esm2020/src/services/router-commands.magic.service.mjs +0 -28
- package/esm2020/src/services/subform.magic.service.mjs +0 -184
- package/esm2020/src/services/table.magic.service.mjs +0 -77
- package/esm2020/src/services/task.magics.service.mjs +0 -624
- package/esm2020/src/services/title.magic.service.mjs +0 -18
- package/esm2020/src/ui/GuiInteractiveExecutor.mjs +0 -105
- package/esm2020/src/ui/components/base-magic-alert.component.mjs +0 -23
- package/esm2020/src/ui/components/base-magic-confirm.component.mjs +0 -23
- package/esm2020/src/ui/components/magic-alert.component.mjs +0 -35
- package/esm2020/src/ui/components/magic-confirmation-box.component.mjs +0 -41
- package/esm2020/src/ui/directives/NonMagicControlDirective.mjs +0 -49
- package/esm2020/src/ui/directives/magic/checkbox-noformcontrol.magic.directive.mjs +0 -28
- package/esm2020/src/ui/directives/magic/checkbox.magic.directive.mjs +0 -28
- package/esm2020/src/ui/directives/magic/combobox.magic.directive.mjs +0 -36
- package/esm2020/src/ui/directives/magic/form-controls/control-value-accessors/checkbox.cva.directive.mjs +0 -27
- package/esm2020/src/ui/directives/magic/form-controls/control-value-accessors/date.cva.directive.mjs +0 -52
- package/esm2020/src/ui/directives/magic/form-controls/control-value-accessors/default.cva.directive.mjs +0 -32
- package/esm2020/src/ui/directives/magic/input.noformcontrol.magic.directive.mjs +0 -27
- package/esm2020/src/ui/directives/magic/row.magic.directive.mjs +0 -58
- package/esm2020/src/ui/directives/magic-focus.directive.mjs +0 -19
- package/esm2020/src/ui/directives/magic.directive.mjs +0 -215
- package/esm2020/src/ui/directives/magicViewContainerRef.directive.mjs +0 -19
- package/esm2020/src/ui/directives/mgformat.magic.directive.mjs +0 -408
- package/esm2020/src/ui/directives/range-validator.magic.directive.mjs +0 -58
- package/esm2020/src/ui/magic-modal/magic-modal-form.mjs +0 -8
- package/esm2020/src/ui/magic-modal/magic-overlay-container-wrapper.mjs +0 -121
- package/esm2020/src/ui/magic-modal/magic-overlay-container.mjs +0 -159
- package/esm2020/src/ui/magic-root.component.mjs +0 -203
- package/esm2020/src/ui/mgerror.magic.component.mjs +0 -119
- package/esm2020/src/ui/pipes/date.magic.pipe.mjs +0 -105
- package/esm2020/src/ui/pipes/time.magic.pipe.mjs +0 -51
- package/esm2020/src/ui/pipes/time24.magic.pipe.mjs +0 -34
- package/esm2020/src/ui/router-container.magic.component.mjs +0 -108
- package/esm2020/src/ui/task-base.magic.component.mjs +0 -86
- package/fesm2015/magic-xpa-angular.mjs +0 -4865
- package/fesm2015/magic-xpa-angular.mjs.map +0 -1
- package/fesm2020/magic-xpa-angular.mjs.map +0 -1
package/index.d.ts
CHANGED
@@ -1,58 +1,58 @@
|
|
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";
|
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.
|
3
|
+
"version": "4.1101.0-dev4111.271",
|
4
4
|
"license": "SEE LICENSE IN EULA.pdf",
|
5
5
|
"dependencies": {
|
6
|
-
"@magic-xpa/engine": "4.
|
7
|
-
"@magic-xpa/angular-material-core": "4.
|
6
|
+
"@magic-xpa/engine": "4.1101.0-dev4111.271",
|
7
|
+
"@magic-xpa/angular-material-core": "4.1101.0-dev4111.271",
|
8
8
|
"ng-dynamic-component": "^10.1.0",
|
9
9
|
"rxjs": "^6.5.2",
|
10
10
|
"@maskito/angular": "^1.4.0",
|
@@ -13,16 +13,12 @@
|
|
13
13
|
"tslib": "^2.3.0"
|
14
14
|
},
|
15
15
|
"peerDependencies": {
|
16
|
-
"@angular/core": "^
|
17
|
-
"@angular/common": "^
|
18
|
-
"@angular/forms": "^
|
16
|
+
"@angular/core": "^17.3.6",
|
17
|
+
"@angular/common": "^17.3.6",
|
18
|
+
"@angular/forms": "^17.3.6"
|
19
19
|
},
|
20
20
|
"schematics": "./schematics/collection.json",
|
21
|
-
"module": "
|
22
|
-
"es2020": "fesm2020/magic-xpa-angular.mjs",
|
23
|
-
"esm2020": "esm2020/magic-xpa-angular.mjs",
|
24
|
-
"fesm2020": "fesm2020/magic-xpa-angular.mjs",
|
25
|
-
"fesm2015": "fesm2015/magic-xpa-angular.mjs",
|
21
|
+
"module": "fesm2022/magic-xpa-angular.mjs",
|
26
22
|
"typings": "index.d.ts",
|
27
23
|
"exports": {
|
28
24
|
"./package.json": {
|
@@ -30,11 +26,9 @@
|
|
30
26
|
},
|
31
27
|
".": {
|
32
28
|
"types": "./index.d.ts",
|
33
|
-
"
|
34
|
-
"
|
35
|
-
"
|
36
|
-
"node": "./fesm2015/magic-xpa-angular.mjs",
|
37
|
-
"default": "./fesm2020/magic-xpa-angular.mjs"
|
29
|
+
"esm2022": "./esm2022/magic-xpa-angular.mjs",
|
30
|
+
"esm": "./esm2022/magic-xpa-angular.mjs",
|
31
|
+
"default": "./fesm2022/magic-xpa-angular.mjs"
|
38
32
|
}
|
39
33
|
},
|
40
34
|
"sideEffects": false,
|
@@ -1,62 +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
|
-
}
|
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
|
+
}
|
@@ -1,12 +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
|
-
}
|
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
|
+
}
|
@@ -1,41 +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
|
-
}
|
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
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { RouteCommand } from "./router-commands.magic.service";
|
2
|
-
export interface ISubformMagicService {
|
3
|
-
ExecuteRouteCommand(routeCommand: RouteCommand): any;
|
4
|
-
}
|
1
|
+
import { RouteCommand } from "./router-commands.magic.service";
|
2
|
+
export interface ISubformMagicService {
|
3
|
+
ExecuteRouteCommand(routeCommand: RouteCommand): any;
|
4
|
+
}
|
@@ -1,31 +1,30 @@
|
|
1
|
-
import {
|
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
|
-
|
11
|
-
protected
|
12
|
-
|
13
|
-
private
|
14
|
-
private
|
15
|
-
private
|
16
|
-
private
|
17
|
-
|
18
|
-
|
19
|
-
private
|
20
|
-
private
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
static
|
30
|
-
|
31
|
-
}
|
1
|
+
import { 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
|
+
protected componentList: ComponentListMagicService;
|
11
|
+
protected engineMagicService: EngineMagicService;
|
12
|
+
private magicLazyModuleLoader;
|
13
|
+
private injector;
|
14
|
+
private compiler;
|
15
|
+
private overlayContainerMagicProvider;
|
16
|
+
private confirmationComponentsMagicProvider;
|
17
|
+
constructor(componentList: ComponentListMagicService, engineMagicService: EngineMagicService, magicLazyModuleLoader: MagicLazyLoaderService, injector: Injector, compiler: Compiler, overlayContainerMagicProvider: OverlayContainerMagicProvider, confirmationComponentsMagicProvider: ConfirmationComponentsMagicProvider);
|
18
|
+
private overlayWindowsContainerViewRef;
|
19
|
+
private overlayWindowFocusManager;
|
20
|
+
private changeDetectorRef;
|
21
|
+
init(overlayWindowsContainerViewRef: ViewContainerRef, rootMagicElement: Element, changeDetectorRef: ChangeDetectorRef): void;
|
22
|
+
loadAndOpenModule(formName: string, taskId: string, taskDescription: string): void;
|
23
|
+
open(formName: string, taskId: string, taskDescription: string): void;
|
24
|
+
close(commandStr: string): void;
|
25
|
+
openConfirmationBox(title: string, msg: string, style: Styles): void;
|
26
|
+
finishConfirmation(style: Styles, result: boolean): void;
|
27
|
+
private createModalComponent;
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayWindowService, never>;
|
29
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OverlayWindowService>;
|
30
|
+
}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
export declare class StylesMapManager {
|
2
|
-
static StylesMap: Map<string, any>;
|
3
|
-
static MagicPropertyToHtmlAttributeMap: Map<string, string>;
|
4
|
-
static magicValueGetStyle(styleName: string, magicValue: any): string;
|
5
|
-
}
|
1
|
+
export declare class StylesMapManager {
|
2
|
+
static StylesMap: Map<string, any>;
|
3
|
+
static MagicPropertyToHtmlAttributeMap: Map<string, string>;
|
4
|
+
static magicValueGetStyle(styleName: string, magicValue: any): string;
|
5
|
+
}
|