@magic-xpa/angular 4.1100.0-dev4110.19 → 4.1100.0-dev4110.190

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.
Files changed (171) hide show
  1. package/{esm2020 → esm2022}/index.mjs +59 -59
  2. package/{esm2020 → esm2022}/magic-xpa-angular.mjs +1 -1
  3. package/esm2022/src/controls.metadata.model.mjs +183 -0
  4. package/{esm2020 → esm2022}/src/interfaces/sub-form-definition.iterface.mjs +1 -1
  5. package/{esm2020 → esm2022}/src/magic.core.module.mjs +159 -160
  6. package/{esm2020 → esm2022}/src/services/ISubformMagicService.mjs +1 -1
  7. package/esm2022/src/services/OverlayWindowService.mjs +244 -0
  8. package/esm2022/src/services/StylesMapManager.mjs +28 -0
  9. package/esm2022/src/services/accessor.magic.service.mjs +358 -0
  10. package/esm2022/src/services/commands-collector.magic.service.mjs +47 -0
  11. package/esm2022/src/services/component-list.magic.service.mjs +45 -0
  12. package/{esm2020 → esm2022}/src/services/confirmation.components.magic.provider.mjs +21 -21
  13. package/esm2022/src/services/engine.magic.service.mjs +80 -0
  14. package/{esm2020 → esm2022}/src/services/exit.magic.service.mjs +13 -13
  15. package/esm2022/src/services/magic-color.service.mjs +101 -0
  16. package/{esm2020 → esm2022}/src/services/magic.lazy.loader.service.mjs +16 -16
  17. package/{esm2020 → esm2022}/src/services/magic.providers.mjs +24 -24
  18. package/esm2022/src/services/magic.services.mjs +36 -0
  19. package/esm2022/src/services/mg-date-adapter.mjs +108 -0
  20. package/{esm2020 → esm2022}/src/services/overlay.conainer.magic.provider.mjs +14 -14
  21. package/esm2022/src/services/router-commands.magic.service.mjs +31 -0
  22. package/esm2022/src/services/subform.magic.service.mjs +194 -0
  23. package/esm2022/src/services/table.magic.service.mjs +81 -0
  24. package/esm2022/src/services/task.magics.service.mjs +637 -0
  25. package/esm2022/src/services/title.magic.service.mjs +19 -0
  26. package/esm2022/src/ui/GuiInteractiveExecutor.mjs +109 -0
  27. package/esm2022/src/ui/components/base-magic-alert.component.mjs +24 -0
  28. package/esm2022/src/ui/components/base-magic-confirm.component.mjs +24 -0
  29. package/esm2022/src/ui/components/magic-alert.component.mjs +36 -0
  30. package/esm2022/src/ui/components/magic-confirmation-box.component.mjs +42 -0
  31. package/esm2022/src/ui/directives/NonMagicControlDirective.mjs +58 -0
  32. package/esm2022/src/ui/directives/magic/checkbox-noformcontrol.magic.directive.mjs +29 -0
  33. package/esm2022/src/ui/directives/magic/checkbox.magic.directive.mjs +29 -0
  34. package/esm2022/src/ui/directives/magic/combobox.magic.directive.mjs +37 -0
  35. package/esm2022/src/ui/directives/magic/form-controls/control-value-accessors/checkbox.cva.directive.mjs +27 -0
  36. package/esm2022/src/ui/directives/magic/form-controls/control-value-accessors/date.cva.directive.mjs +85 -0
  37. package/esm2022/src/ui/directives/magic/form-controls/control-value-accessors/default.cva.directive.mjs +32 -0
  38. package/esm2022/src/ui/directives/magic/input.noformcontrol.magic.directive.mjs +28 -0
  39. package/esm2022/src/ui/directives/magic/nocontrol.magic.directive.mjs +193 -0
  40. package/esm2022/src/ui/directives/magic/row.magic.directive.mjs +62 -0
  41. package/esm2022/src/ui/directives/magic-focus.directive.mjs +20 -0
  42. package/esm2022/src/ui/directives/magic.directive.mjs +229 -0
  43. package/esm2022/src/ui/directives/magicViewContainerRef.directive.mjs +20 -0
  44. package/esm2022/src/ui/directives/mgformat.magic.directive.mjs +578 -0
  45. package/esm2022/src/ui/directives/range-validator.magic.directive.mjs +60 -0
  46. package/{esm2020 → esm2022}/src/ui/magic-confirmationBox.mjs +42 -42
  47. package/{esm2020 → esm2022}/src/ui/magic-modal/base-magic-overlay-container.mjs +22 -22
  48. package/esm2022/src/ui/magic-modal/magic-modal-form.mjs +6 -0
  49. package/{esm2020 → esm2022}/src/ui/magic-modal/magic-modal-interface.mjs +1 -1
  50. package/esm2022/src/ui/magic-modal/magic-overlay-container-wrapper.mjs +124 -0
  51. package/esm2022/src/ui/magic-modal/magic-overlay-container.mjs +162 -0
  52. package/esm2022/src/ui/magic-root.component.mjs +216 -0
  53. package/esm2022/src/ui/mgerror.magic.component.mjs +125 -0
  54. package/esm2022/src/ui/pipes/date.magic.pipe.mjs +106 -0
  55. package/esm2022/src/ui/pipes/time.magic.pipe.mjs +52 -0
  56. package/esm2022/src/ui/pipes/time24.magic.pipe.mjs +35 -0
  57. package/esm2022/src/ui/router-container.magic.component.mjs +115 -0
  58. package/{esm2020 → esm2022}/src/ui/subform.magic.component.mjs +50 -46
  59. package/esm2022/src/ui/task-base.magic.component.mjs +91 -0
  60. package/esm2022/src/ui/utils.mjs +54 -0
  61. package/{fesm2020 → fesm2022}/magic-xpa-angular.mjs +4807 -4443
  62. package/fesm2022/magic-xpa-angular.mjs.map +1 -0
  63. package/index.d.ts +58 -58
  64. package/package.json +7 -13
  65. package/src/controls.metadata.model.d.ts +62 -62
  66. package/src/interfaces/sub-form-definition.iterface.d.ts +12 -12
  67. package/src/magic.core.module.d.ts +41 -41
  68. package/src/services/ISubformMagicService.d.ts +4 -4
  69. package/src/services/OverlayWindowService.d.ts +30 -25
  70. package/src/services/StylesMapManager.d.ts +5 -5
  71. package/src/services/accessor.magic.service.d.ts +69 -69
  72. package/src/services/commands-collector.magic.service.d.ts +15 -15
  73. package/src/services/component-list.magic.service.d.ts +23 -23
  74. package/src/services/confirmation.components.magic.provider.d.ts +8 -8
  75. package/src/services/engine.magic.service.d.ts +27 -27
  76. package/src/services/exit.magic.service.d.ts +6 -6
  77. package/src/services/magic-color.service.d.ts +19 -19
  78. package/src/services/magic.lazy.loader.service.d.ts +6 -6
  79. package/src/services/magic.providers.d.ts +107 -107
  80. package/src/services/magic.services.d.ts +16 -16
  81. package/src/services/mg-date-adapter.d.ts +38 -40
  82. package/src/services/overlay.conainer.magic.provider.d.ts +7 -7
  83. package/src/services/router-commands.magic.service.d.ts +17 -17
  84. package/src/services/subform.magic.service.d.ts +43 -43
  85. package/src/services/table.magic.service.d.ts +30 -30
  86. package/src/services/task.magics.service.d.ts +100 -100
  87. package/src/services/title.magic.service.d.ts +9 -9
  88. package/src/ui/GuiInteractiveExecutor.d.ts +22 -21
  89. package/src/ui/components/base-magic-alert.component.d.ts +10 -10
  90. package/src/ui/components/base-magic-confirm.component.d.ts +10 -10
  91. package/src/ui/components/magic-alert.component.d.ts +6 -6
  92. package/src/ui/components/magic-confirmation-box.component.d.ts +6 -6
  93. package/src/ui/directives/NonMagicControlDirective.d.ts +26 -26
  94. package/src/ui/directives/magic/checkbox-noformcontrol.magic.directive.d.ts +9 -9
  95. package/src/ui/directives/magic/checkbox.magic.directive.d.ts +9 -9
  96. package/src/ui/directives/magic/combobox.magic.directive.d.ts +10 -10
  97. package/src/ui/directives/magic/form-controls/control-value-accessors/checkbox.cva.directive.d.ts +7 -7
  98. package/src/ui/directives/magic/form-controls/control-value-accessors/date.cva.directive.d.ts +23 -17
  99. package/src/ui/directives/magic/form-controls/control-value-accessors/default.cva.directive.d.ts +7 -7
  100. package/src/ui/directives/magic/input.noformcontrol.magic.directive.d.ts +9 -9
  101. package/src/ui/directives/magic/nocontrol.magic.directive.d.ts +18 -18
  102. package/src/ui/directives/magic/row.magic.directive.d.ts +17 -17
  103. package/src/ui/directives/magic-focus.directive.d.ts +9 -9
  104. package/src/ui/directives/magic.directive.d.ts +44 -44
  105. package/src/ui/directives/magicViewContainerRef.directive.d.ts +8 -8
  106. package/src/ui/directives/mgformat.magic.directive.d.ts +38 -31
  107. package/src/ui/directives/range-validator.magic.directive.d.ts +17 -17
  108. package/src/ui/magic-confirmationBox.d.ts +6 -6
  109. package/src/ui/magic-modal/base-magic-overlay-container.d.ts +5 -5
  110. package/src/ui/magic-modal/magic-modal-form.d.ts +5 -5
  111. package/src/ui/magic-modal/magic-modal-interface.d.ts +10 -10
  112. package/src/ui/magic-modal/magic-overlay-container-wrapper.d.ts +30 -31
  113. package/src/ui/magic-modal/magic-overlay-container.d.ts +24 -25
  114. package/src/ui/magic-root.component.d.ts +40 -40
  115. package/src/ui/mgerror.magic.component.d.ts +20 -20
  116. package/src/ui/pipes/date.magic.pipe.d.ts +17 -17
  117. package/src/ui/pipes/time.magic.pipe.d.ts +11 -11
  118. package/src/ui/pipes/time24.magic.pipe.d.ts +10 -10
  119. package/src/ui/router-container.magic.component.d.ts +29 -30
  120. package/src/ui/subform.magic.component.d.ts +16 -16
  121. package/src/ui/task-base.magic.component.d.ts +34 -34
  122. package/src/ui/utils.d.ts +9 -9
  123. package/esm2020/src/controls.metadata.model.mjs +0 -180
  124. package/esm2020/src/services/OverlayWindowService.mjs +0 -208
  125. package/esm2020/src/services/StylesMapManager.mjs +0 -28
  126. package/esm2020/src/services/accessor.magic.service.mjs +0 -356
  127. package/esm2020/src/services/commands-collector.magic.service.mjs +0 -46
  128. package/esm2020/src/services/component-list.magic.service.mjs +0 -46
  129. package/esm2020/src/services/engine.magic.service.mjs +0 -82
  130. package/esm2020/src/services/magic-color.service.mjs +0 -99
  131. package/esm2020/src/services/magic.services.mjs +0 -31
  132. package/esm2020/src/services/mg-date-adapter.mjs +0 -109
  133. package/esm2020/src/services/router-commands.magic.service.mjs +0 -28
  134. package/esm2020/src/services/subform.magic.service.mjs +0 -184
  135. package/esm2020/src/services/table.magic.service.mjs +0 -77
  136. package/esm2020/src/services/task.magics.service.mjs +0 -624
  137. package/esm2020/src/services/title.magic.service.mjs +0 -18
  138. package/esm2020/src/ui/GuiInteractiveExecutor.mjs +0 -98
  139. package/esm2020/src/ui/components/base-magic-alert.component.mjs +0 -23
  140. package/esm2020/src/ui/components/base-magic-confirm.component.mjs +0 -23
  141. package/esm2020/src/ui/components/magic-alert.component.mjs +0 -35
  142. package/esm2020/src/ui/components/magic-confirmation-box.component.mjs +0 -41
  143. package/esm2020/src/ui/directives/NonMagicControlDirective.mjs +0 -49
  144. package/esm2020/src/ui/directives/magic/checkbox-noformcontrol.magic.directive.mjs +0 -28
  145. package/esm2020/src/ui/directives/magic/checkbox.magic.directive.mjs +0 -28
  146. package/esm2020/src/ui/directives/magic/combobox.magic.directive.mjs +0 -36
  147. package/esm2020/src/ui/directives/magic/form-controls/control-value-accessors/checkbox.cva.directive.mjs +0 -27
  148. package/esm2020/src/ui/directives/magic/form-controls/control-value-accessors/date.cva.directive.mjs +0 -52
  149. package/esm2020/src/ui/directives/magic/form-controls/control-value-accessors/default.cva.directive.mjs +0 -32
  150. package/esm2020/src/ui/directives/magic/input.noformcontrol.magic.directive.mjs +0 -27
  151. package/esm2020/src/ui/directives/magic/nocontrol.magic.directive.mjs +0 -193
  152. package/esm2020/src/ui/directives/magic/row.magic.directive.mjs +0 -58
  153. package/esm2020/src/ui/directives/magic-focus.directive.mjs +0 -19
  154. package/esm2020/src/ui/directives/magic.directive.mjs +0 -215
  155. package/esm2020/src/ui/directives/magicViewContainerRef.directive.mjs +0 -19
  156. package/esm2020/src/ui/directives/mgformat.magic.directive.mjs +0 -408
  157. package/esm2020/src/ui/directives/range-validator.magic.directive.mjs +0 -58
  158. package/esm2020/src/ui/magic-modal/magic-modal-form.mjs +0 -8
  159. package/esm2020/src/ui/magic-modal/magic-overlay-container-wrapper.mjs +0 -121
  160. package/esm2020/src/ui/magic-modal/magic-overlay-container.mjs +0 -159
  161. package/esm2020/src/ui/magic-root.component.mjs +0 -203
  162. package/esm2020/src/ui/mgerror.magic.component.mjs +0 -119
  163. package/esm2020/src/ui/pipes/date.magic.pipe.mjs +0 -105
  164. package/esm2020/src/ui/pipes/time.magic.pipe.mjs +0 -51
  165. package/esm2020/src/ui/pipes/time24.magic.pipe.mjs +0 -34
  166. package/esm2020/src/ui/router-container.magic.component.mjs +0 -108
  167. package/esm2020/src/ui/task-base.magic.component.mjs +0 -86
  168. package/esm2020/src/ui/utils.mjs +0 -54
  169. package/fesm2015/magic-xpa-angular.mjs +0 -4832
  170. package/fesm2015/magic-xpa-angular.mjs.map +0 -1
  171. 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.1100.0-dev4110.19",
3
+ "version": "4.1100.0-dev4110.190",
4
4
  "license": "SEE LICENSE IN EULA.pdf",
5
5
  "dependencies": {
6
- "@magic-xpa/engine": "4.1100.0-dev4110.19",
7
- "@magic-xpa/angular-material-core": "4.1100.0-dev4110.19",
6
+ "@magic-xpa/engine": "4.1100.0-dev4110.190",
7
+ "@magic-xpa/angular-material-core": "4.1100.0-dev4110.190",
8
8
  "ng-dynamic-component": "^10.1.0",
9
9
  "rxjs": "^6.5.2",
10
10
  "@maskito/angular": "^1.4.0",
@@ -18,11 +18,7 @@
18
18
  "@angular/forms": "^15.2.2"
19
19
  },
20
20
  "schematics": "./schematics/collection.json",
21
- "module": "fesm2015/magic-xpa-angular.mjs",
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
- "esm2020": "./esm2020/magic-xpa-angular.mjs",
34
- "es2020": "./fesm2020/magic-xpa-angular.mjs",
35
- "es2015": "./fesm2015/magic-xpa-angular.mjs",
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,25 +1,30 @@
1
- import { ComponentFactoryResolver, 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 * as i0 from "@angular/core";
8
- export declare class OverlayWindowService {
9
- private componentFactoryResolver;
10
- protected componentList: ComponentListMagicService;
11
- protected engineMagicService: EngineMagicService;
12
- private overlayContainerMagicProvider;
13
- private confirmationComponentsMagicProvider;
14
- constructor(componentFactoryResolver: ComponentFactoryResolver, componentList: ComponentListMagicService, engineMagicService: EngineMagicService, overlayContainerMagicProvider: OverlayContainerMagicProvider, confirmationComponentsMagicProvider: ConfirmationComponentsMagicProvider);
15
- private overlayWindowsContainerViewRef;
16
- private overlayWindowFocusManager;
17
- init(overlayWindowsContainerViewRef: ViewContainerRef, rootMagicElement: Element): void;
18
- open(formName: string, taskId: string, taskDescription: string): void;
19
- close(commandStr: string): void;
20
- openConfirmationBox(title: string, msg: string, style: Styles): void;
21
- finishConfirmation(style: Styles, result: boolean): void;
22
- private createModalComponent;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<OverlayWindowService, never>;
24
- static ɵprov: i0.ɵɵInjectableDeclaration<OverlayWindowService>;
25
- }
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
+ }
@@ -1,69 +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
- }
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
+ }