@farris/jit-engine 1.3.280 → 1.3.282

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 (673) hide show
  1. package/lib/mobileapp/vue/code-generator/app-manager/vue-app-model-provider-manager.js +17 -17
  2. package/lib/mobileapp/vue/code-generator/app-manager/vue-app-modelentity-manager.js +17 -17
  3. package/lib/mobileapp/vue/code-generator/app-manager/vue-app-modelproxy-manager.js +17 -17
  4. package/lib/mobileapp/vue/code-generator/app-manager/vue-app-modelrepository-manager.js +20 -20
  5. package/lib/mobileapp/vue/code-generator/devkit-manager/app-expression-manager.js +17 -17
  6. package/lib/mobileapp/vue/code-generator/devkit-manager/app-i18n-manager.js +18 -0
  7. package/lib/mobileapp/vue/code-generator/devkit-manager/app-i18n-manager.js.map +1 -0
  8. package/lib/mobileapp/vue/code-generator/devkit-manager/app-indexvue-manager.js +64 -65
  9. package/lib/mobileapp/vue/code-generator/devkit-manager/app-indexvue-manager.js.map +1 -1
  10. package/lib/mobileapp/vue/code-generator/devkit-manager/app-router-manager.js +30 -30
  11. package/lib/mobileapp/vue/code-generator/devkit-manager/app-services-manager.js +21 -21
  12. package/lib/mobileapp/vue/code-generator/devkit-manager/app-validation-rule-manager.js +16 -16
  13. package/lib/mobileapp/vue/code-generator/devkit-manager/devkit-file-manager.js +12 -12
  14. package/lib/mobileapp/vue/code-generator/devkit-manager/devkit-parameter-generator.js +6 -6
  15. package/lib/mobileapp/vue/code-generator/devkit-manager/index.js +14 -14
  16. package/lib/mobileapp/vue/code-generator/file-generator/abstract-file-generator.js +24 -24
  17. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/index.js +13 -13
  18. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-expression.js +73 -73
  19. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-filter-generator.js +16 -16
  20. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-index-extraImports-generator.js +18 -18
  21. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-index-resource-generator.js +17 -17
  22. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-index-vue-generator.js +95 -106
  23. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-index-vue-generator.js.map +1 -1
  24. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-model-entity-generator.js +192 -192
  25. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-model-provider-generator.js +28 -28
  26. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-model-proxy-generator.js +92 -92
  27. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-model-repository-generator.js +63 -63
  28. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-router-generator.js +41 -41
  29. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-services.js +19 -19
  30. package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-validation-rule.js +35 -35
  31. package/lib/mobileapp/vue/code-generator/file-generator/file-generator-context.js +14 -14
  32. package/lib/mobileapp/vue/code-generator/file-generator/file-generator-factory.js +38 -38
  33. package/lib/mobileapp/vue/code-generator/file-generator/file-generator-manager.js +13 -13
  34. package/lib/mobileapp/vue/code-generator/file-generator/file-generator-response.js +15 -15
  35. package/lib/mobileapp/vue/code-generator/file-generator/file-generator-type.js +11 -11
  36. package/lib/mobileapp/vue/code-generator/file-generator/i-file-generator.js +2 -2
  37. package/lib/mobileapp/vue/code-generator/file-generator/index.js +15 -15
  38. package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-bindingdata-generator.js +19 -19
  39. package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-component-generator.js +220 -220
  40. package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-form-generator.js +133 -133
  41. package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-handler-generator.js +74 -74
  42. package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-provider-generator.js +81 -81
  43. package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-statemachine-generator.js +53 -53
  44. package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-uistate-generator.js +115 -115
  45. package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-viewmodel-generator.js +64 -64
  46. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/app-vue-generator.js +14 -14
  47. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/babel-config-js-generator.js +14 -14
  48. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/farris-config-generator.js +54 -54
  49. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/gitignore-generator.js +14 -14
  50. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/main-ts-generator.js +14 -14
  51. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/package-json-generator.js +17 -17
  52. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/readme-md-generator.js +13 -13
  53. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/router-generator.js +68 -70
  54. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/router-generator.js.map +1 -1
  55. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/shims-tsx-d-ts-generator.js +13 -13
  56. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/shimx-vue-d-ts-generator.js +13 -13
  57. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/tsconfig-json-generator.js +14 -14
  58. package/lib/mobileapp/vue/code-generator/file-generator/project-generator/vue-config-js-generator.js +14 -14
  59. package/lib/mobileapp/vue/code-generator/file-generator-filter.js +17 -17
  60. package/lib/mobileapp/vue/code-generator/file-generator-path-manager.js +43 -43
  61. package/lib/mobileapp/vue/code-generator/index.js +14 -14
  62. package/lib/mobileapp/vue/code-generator/page-manager/page-binding-data-manager.js +21 -21
  63. package/lib/mobileapp/vue/code-generator/page-manager/page-command-handler-manager.js +20 -20
  64. package/lib/mobileapp/vue/code-generator/page-manager/page-component-manager.js +46 -46
  65. package/lib/mobileapp/vue/code-generator/page-manager/page-form-manager.js +20 -20
  66. package/lib/mobileapp/vue/code-generator/page-manager/page-parameter-generator.js +13 -13
  67. package/lib/mobileapp/vue/code-generator/page-manager/page-provider-manager.js +21 -21
  68. package/lib/mobileapp/vue/code-generator/page-manager/page-statemachine-manager.js +21 -21
  69. package/lib/mobileapp/vue/code-generator/page-manager/page-uistate-manager.js +10 -10
  70. package/lib/mobileapp/vue/code-generator/page-manager/page-viewmodel-manager.js +21 -21
  71. package/lib/mobileapp/vue/code-generator/workspace-manager/workspace-file-manager.js +58 -58
  72. package/lib/mobileapp/vue/domstructure/devkit/befproxy/index.js +13 -13
  73. package/lib/mobileapp/vue/domstructure/devkit/befproxy/vue-bef-proxy-content.js +45 -45
  74. package/lib/mobileapp/vue/domstructure/devkit/befproxy/vue-bef-proxy-operation-parameter.js +49 -49
  75. package/lib/mobileapp/vue/domstructure/devkit/befproxy/vue-bef-proxy-operation.js +53 -53
  76. package/lib/mobileapp/vue/domstructure/devkit/befproxy/vue-bef-proxy-service.js +37 -37
  77. package/lib/mobileapp/vue/domstructure/devkit/befproxy/vue-bef-proxy.js +31 -31
  78. package/lib/mobileapp/vue/domstructure/devkit/command/vue-command-config.js +79 -79
  79. package/lib/mobileapp/vue/domstructure/devkit/command/vue-handler.js +36 -36
  80. package/lib/mobileapp/vue/domstructure/devkit/command/vue-link.js +22 -22
  81. package/lib/mobileapp/vue/domstructure/devkit/command/vue-parameter-description.js +24 -24
  82. package/lib/mobileapp/vue/domstructure/devkit/command/vue-parameter.js +24 -24
  83. package/lib/mobileapp/vue/domstructure/devkit/command/vue-shortcut.js +27 -27
  84. package/lib/mobileapp/vue/domstructure/devkit/component/index.js +14 -14
  85. package/lib/mobileapp/vue/domstructure/devkit/component/vue-component-ref.js +40 -40
  86. package/lib/mobileapp/vue/domstructure/devkit/component/vue-component.js +45 -45
  87. package/lib/mobileapp/vue/domstructure/devkit/entity/vue-dynamic-object.js +10 -10
  88. package/lib/mobileapp/vue/domstructure/devkit/entity/vue-entity.js +69 -69
  89. package/lib/mobileapp/vue/domstructure/devkit/entity/vue-enum.js +24 -24
  90. package/lib/mobileapp/vue/domstructure/devkit/entity/vue-field.js +49 -49
  91. package/lib/mobileapp/vue/domstructure/devkit/entity/vue-list.js +10 -10
  92. package/lib/mobileapp/vue/domstructure/devkit/entity/vue-object.js +24 -24
  93. package/lib/mobileapp/vue/domstructure/devkit/entity/vue-valid-rule.js +24 -24
  94. package/lib/mobileapp/vue/domstructure/devkit/form/index.js +13 -13
  95. package/lib/mobileapp/vue/domstructure/devkit/form/vue-child-form.js +33 -33
  96. package/lib/mobileapp/vue/domstructure/devkit/form/vue-control.js +98 -98
  97. package/lib/mobileapp/vue/domstructure/devkit/form/vue-form-config.js +40 -40
  98. package/lib/mobileapp/vue/domstructure/devkit/form/vue-form-type.js +8 -8
  99. package/lib/mobileapp/vue/domstructure/devkit/form/vue-form-valid-rule.js +24 -24
  100. package/lib/mobileapp/vue/domstructure/devkit/i-devkit-entity.js +2 -2
  101. package/lib/mobileapp/vue/domstructure/devkit/index.js +17 -17
  102. package/lib/mobileapp/vue/domstructure/devkit/module/vue-language-config.js +19 -19
  103. package/lib/mobileapp/vue/domstructure/devkit/module/vue-module.js +32 -32
  104. package/lib/mobileapp/vue/domstructure/devkit/repository/vue-repository.js +24 -24
  105. package/lib/mobileapp/vue/domstructure/devkit/routing/routing.js +24 -24
  106. package/lib/mobileapp/vue/domstructure/devkit/service/vue-service.js +40 -40
  107. package/lib/mobileapp/vue/domstructure/devkit/statemachine/index.js +13 -13
  108. package/lib/mobileapp/vue/domstructure/devkit/statemachine/vue-action.js +24 -24
  109. package/lib/mobileapp/vue/domstructure/devkit/statemachine/vue-render-state.js +24 -24
  110. package/lib/mobileapp/vue/domstructure/devkit/statemachine/vue-state.js +24 -24
  111. package/lib/mobileapp/vue/domstructure/devkit/statemachine/vue-statemachine.js +47 -47
  112. package/lib/mobileapp/vue/domstructure/devkit/states/index.js +13 -13
  113. package/lib/mobileapp/vue/domstructure/devkit/states/vue-states.js +68 -68
  114. package/lib/mobileapp/vue/domstructure/devkit/viewmodel/index.js +13 -13
  115. package/lib/mobileapp/vue/domstructure/devkit/viewmodel/vue-viewmodel.js +117 -117
  116. package/lib/mobileapp/vue/domstructure/devkit/vue-appmodule.js +30 -30
  117. package/lib/mobileapp/vue/domstructure/devkit/vue-devkit.js +71 -71
  118. package/lib/mobileapp/vue/domstructure/devkit/vue-solution.js +38 -38
  119. package/lib/mobileapp/vue/domstructure/i-entity-tojson.js +2 -2
  120. package/lib/mobileapp/vue/domstructure/i-entity.js +2 -2
  121. package/lib/mobileapp/vue/domstructure/index.js +14 -14
  122. package/lib/mobileapp/vue/domstructure/internal-entity/contexts/index.js +15 -15
  123. package/lib/mobileapp/vue/domstructure/internal-entity/contexts/vue-base-context.js +23 -23
  124. package/lib/mobileapp/vue/domstructure/internal-entity/contexts/vue-component-context.js +15 -15
  125. package/lib/mobileapp/vue/domstructure/internal-entity/contexts/vue-module-context.js +14 -14
  126. package/lib/mobileapp/vue/domstructure/internal-entity/contexts/vue-ui-node-context.js +32 -32
  127. package/lib/mobileapp/vue/domstructure/internal-entity/i-project-data.js +2 -2
  128. package/lib/mobileapp/vue/domstructure/internal-entity/page-flow/index.js +13 -13
  129. package/lib/mobileapp/vue/domstructure/internal-entity/page-flow/vue-page-flow-convertor.js +10 -10
  130. package/lib/mobileapp/vue/domstructure/internal-entity/page-flow/vue-page-flow-entity.js +41 -41
  131. package/lib/mobileapp/vue/domstructure/internal-entity/page-flow/vue-page-flow-page.js +24 -24
  132. package/lib/mobileapp/vue/domstructure/internal-entity/page-flow/vue-page-flow-project.js +24 -24
  133. package/lib/mobileapp/vue/domstructure/internal-entity/vue-app-index-vue-parameter.js +6 -6
  134. package/lib/mobileapp/vue/domstructure/internal-entity/vue-app-index-vue-parameter.js.map +1 -1
  135. package/lib/mobileapp/vue/domstructure/internal-entity/vue-app-router-entity.js +14 -14
  136. package/lib/mobileapp/vue/domstructure/internal-entity/vue-engine-context.js +6 -6
  137. package/lib/mobileapp/vue/domstructure/internal-entity/vue-page-component-generate-parameter.js +6 -6
  138. package/lib/mobileapp/vue/domstructure/ui/basic/action-bar/action-bar.js +56 -56
  139. package/lib/mobileapp/vue/domstructure/ui/basic/action-bar/action-bar.js.map +1 -1
  140. package/lib/mobileapp/vue/domstructure/ui/basic/action-bar/index.js +13 -13
  141. package/lib/mobileapp/vue/domstructure/ui/basic/button/button.js +38 -48
  142. package/lib/mobileapp/vue/domstructure/ui/basic/button/button.js.map +1 -1
  143. package/lib/mobileapp/vue/domstructure/ui/basic/button/index.js +13 -13
  144. package/lib/mobileapp/vue/domstructure/ui/basic/icon/icon.js +40 -40
  145. package/lib/mobileapp/vue/domstructure/ui/basic/icon/index.js +13 -13
  146. package/lib/mobileapp/vue/domstructure/ui/basic/image/image.js +26 -26
  147. package/lib/mobileapp/vue/domstructure/ui/basic/image/image.js.map +1 -1
  148. package/lib/mobileapp/vue/domstructure/ui/basic/image/index.js +13 -13
  149. package/lib/mobileapp/vue/domstructure/ui/basic/index.js +20 -20
  150. package/lib/mobileapp/vue/domstructure/ui/{card → basic/label}/index.js +1 -1
  151. package/lib/mobileapp/vue/domstructure/ui/basic/label/index.js.map +1 -0
  152. package/lib/mobileapp/vue/domstructure/ui/basic/label/label.js +35 -0
  153. package/lib/mobileapp/vue/domstructure/ui/basic/label/label.js.map +1 -0
  154. package/lib/mobileapp/vue/domstructure/ui/basic/nav-bar/index.js +13 -13
  155. package/lib/mobileapp/vue/domstructure/ui/basic/nav-bar/vue-nav-bar.js +44 -58
  156. package/lib/mobileapp/vue/domstructure/ui/basic/nav-bar/vue-nav-bar.js.map +1 -1
  157. package/lib/mobileapp/vue/domstructure/ui/basic/search/index.js +13 -13
  158. package/lib/mobileapp/vue/domstructure/ui/basic/search/search.js +38 -48
  159. package/lib/mobileapp/vue/domstructure/ui/basic/search/search.js.map +1 -1
  160. package/lib/mobileapp/vue/domstructure/ui/basic/sidebar/index.js +14 -14
  161. package/lib/mobileapp/vue/domstructure/ui/basic/sidebar/sidebar-item.js +41 -38
  162. package/lib/mobileapp/vue/domstructure/ui/basic/sidebar/sidebar-item.js.map +1 -1
  163. package/lib/mobileapp/vue/domstructure/ui/basic/sidebar/sidebar.js +41 -38
  164. package/lib/mobileapp/vue/domstructure/ui/basic/sidebar/sidebar.js.map +1 -1
  165. package/lib/mobileapp/vue/domstructure/ui/basic/tab/index.js +13 -13
  166. package/lib/mobileapp/vue/domstructure/ui/basic/tab/vue-tab-bar.js +35 -54
  167. package/lib/mobileapp/vue/domstructure/ui/basic/tab/vue-tab-bar.js.map +1 -1
  168. package/lib/mobileapp/vue/domstructure/ui/{data/fields → basic/tag}/index.js +1 -1
  169. package/lib/mobileapp/vue/domstructure/ui/basic/tag/index.js.map +1 -0
  170. package/lib/mobileapp/vue/domstructure/ui/basic/tag/tag.js +42 -0
  171. package/lib/mobileapp/vue/domstructure/ui/basic/tag/tag.js.map +1 -0
  172. package/lib/mobileapp/vue/domstructure/ui/basic/toolbar/index.js +15 -15
  173. package/lib/mobileapp/vue/domstructure/ui/basic/toolbar/vue-toolbar-area.js +36 -36
  174. package/lib/mobileapp/vue/domstructure/ui/basic/toolbar/vue-toolbar-area.js.map +1 -1
  175. package/lib/mobileapp/vue/domstructure/ui/basic/toolbar/vue-toolbar-item.js +31 -44
  176. package/lib/mobileapp/vue/domstructure/ui/basic/toolbar/vue-toolbar-item.js.map +1 -1
  177. package/lib/mobileapp/vue/domstructure/ui/basic/toolbar/vue-toolbar.js +41 -38
  178. package/lib/mobileapp/vue/domstructure/ui/basic/toolbar/vue-toolbar.js.map +1 -1
  179. package/lib/mobileapp/vue/domstructure/ui/business/approval/approval-comments.js +26 -26
  180. package/lib/mobileapp/vue/domstructure/ui/business/approval/approval-comments.js.map +1 -1
  181. package/lib/mobileapp/vue/domstructure/ui/business/approval/approval-info.js +26 -38
  182. package/lib/mobileapp/vue/domstructure/ui/business/approval/approval-info.js.map +1 -1
  183. package/lib/mobileapp/vue/domstructure/ui/business/approval/approval-logs.js +45 -55
  184. package/lib/mobileapp/vue/domstructure/ui/business/approval/approval-logs.js.map +1 -1
  185. package/lib/mobileapp/vue/domstructure/ui/business/approval/index.js +15 -15
  186. package/lib/mobileapp/vue/domstructure/ui/business/attachment/attachment-entry.js +26 -26
  187. package/lib/mobileapp/vue/domstructure/ui/business/attachment/attachment-entry.js.map +1 -1
  188. package/lib/mobileapp/vue/domstructure/ui/business/attachment/attachment-file.js +33 -43
  189. package/lib/mobileapp/vue/domstructure/ui/business/attachment/attachment-file.js.map +1 -1
  190. package/lib/mobileapp/vue/domstructure/ui/business/attachment/attachment-uploader.js +26 -26
  191. package/lib/mobileapp/vue/domstructure/ui/business/attachment/attachment-uploader.js.map +1 -1
  192. package/lib/mobileapp/vue/domstructure/ui/business/attachment/attachment.js +28 -28
  193. package/lib/mobileapp/vue/domstructure/ui/business/attachment/attachment.js.map +1 -1
  194. package/lib/mobileapp/vue/domstructure/ui/business/attachment/image-uploader.js +26 -26
  195. package/lib/mobileapp/vue/domstructure/ui/business/attachment/image-uploader.js.map +1 -1
  196. package/lib/mobileapp/vue/domstructure/ui/business/attachment/index.js +17 -17
  197. package/lib/mobileapp/vue/domstructure/ui/business/filter/filter.js +38 -87
  198. package/lib/mobileapp/vue/domstructure/ui/business/filter/filter.js.map +1 -1
  199. package/lib/mobileapp/vue/domstructure/ui/business/filter/index.js +13 -13
  200. package/lib/mobileapp/vue/domstructure/ui/business/index.js +16 -16
  201. package/lib/mobileapp/vue/domstructure/ui/business/scroll-navbar.js +31 -31
  202. package/lib/mobileapp/vue/domstructure/ui/business/scroll-navbar.js.map +1 -1
  203. package/lib/mobileapp/vue/domstructure/ui/common/vue-appearance.js +24 -24
  204. package/lib/mobileapp/vue/domstructure/ui/common/vue-background.js +38 -0
  205. package/lib/mobileapp/vue/domstructure/ui/common/vue-background.js.map +1 -0
  206. package/lib/mobileapp/vue/domstructure/ui/common/vue-binding.js +41 -46
  207. package/lib/mobileapp/vue/domstructure/ui/common/vue-binding.js.map +1 -1
  208. package/lib/mobileapp/vue/domstructure/ui/common/vue-border-radius.js +29 -0
  209. package/lib/mobileapp/vue/domstructure/ui/common/vue-border-radius.js.map +1 -0
  210. package/lib/mobileapp/vue/domstructure/ui/common/vue-display.js +48 -48
  211. package/lib/mobileapp/vue/domstructure/ui/common/vue-margin.js +30 -30
  212. package/lib/mobileapp/vue/domstructure/ui/common/vue-padding.js +30 -30
  213. package/lib/mobileapp/vue/domstructure/ui/common/vue-position.js +38 -38
  214. package/lib/mobileapp/vue/domstructure/ui/common/vue-size.js +30 -30
  215. package/lib/mobileapp/vue/domstructure/ui/common/vue-state.js +22 -22
  216. package/lib/mobileapp/vue/domstructure/ui/common/vue-toolbar.js +31 -35
  217. package/lib/mobileapp/vue/domstructure/ui/common/vue-toolbar.js.map +1 -1
  218. package/lib/mobileapp/vue/domstructure/ui/common/vue-variable.js +61 -65
  219. package/lib/mobileapp/vue/domstructure/ui/common/vue-variable.js.map +1 -1
  220. package/lib/mobileapp/vue/domstructure/ui/container/card.js +39 -69
  221. package/lib/mobileapp/vue/domstructure/ui/container/card.js.map +1 -1
  222. package/lib/mobileapp/vue/domstructure/ui/container/field-set.js +26 -36
  223. package/lib/mobileapp/vue/domstructure/ui/container/field-set.js.map +1 -1
  224. package/lib/mobileapp/vue/domstructure/ui/container/index.js +26 -26
  225. package/lib/mobileapp/vue/domstructure/ui/container/vue-container.js +49 -46
  226. package/lib/mobileapp/vue/domstructure/ui/container/vue-container.js.map +1 -1
  227. package/lib/mobileapp/vue/domstructure/ui/container/vue-content-container.js +33 -33
  228. package/lib/mobileapp/vue/domstructure/ui/container/vue-content-container.js.map +1 -1
  229. package/lib/mobileapp/vue/domstructure/ui/container/vue-float-container.js +17 -17
  230. package/lib/mobileapp/vue/domstructure/ui/container/vue-float-container.js.map +1 -1
  231. package/lib/mobileapp/vue/domstructure/ui/container/vue-form.js +35 -35
  232. package/lib/mobileapp/vue/domstructure/ui/container/vue-form.js.map +1 -1
  233. package/lib/mobileapp/vue/domstructure/ui/container/vue-item-container.js +48 -45
  234. package/lib/mobileapp/vue/domstructure/ui/container/vue-item-container.js.map +1 -1
  235. package/lib/mobileapp/vue/domstructure/ui/{text-box/text-box.js → container/vue-layout-container-col.js} +6 -6
  236. package/lib/mobileapp/vue/domstructure/ui/container/vue-layout-container-col.js.map +1 -0
  237. package/lib/mobileapp/vue/domstructure/ui/{html-preview/html-preview.js → container/vue-layout-container-row.js} +6 -6
  238. package/lib/mobileapp/vue/domstructure/ui/container/vue-layout-container-row.js.map +1 -0
  239. package/lib/mobileapp/vue/domstructure/ui/{picker/area-picker.js → container/vue-layout-container.js} +6 -6
  240. package/lib/mobileapp/vue/domstructure/ui/container/vue-layout-container.js.map +1 -0
  241. package/lib/mobileapp/vue/domstructure/ui/container/vue-page-container.js +11 -11
  242. package/lib/mobileapp/vue/domstructure/ui/container/vue-page-container.js.map +1 -1
  243. package/lib/mobileapp/vue/domstructure/ui/container/vue-page-content-container.js +11 -11
  244. package/lib/mobileapp/vue/domstructure/ui/container/vue-page-content-container.js.map +1 -1
  245. package/lib/mobileapp/vue/domstructure/ui/container/vue-page-footer-container.js +11 -11
  246. package/lib/mobileapp/vue/domstructure/ui/container/vue-page-footer-container.js.map +1 -1
  247. package/lib/mobileapp/vue/domstructure/ui/container/vue-page-header-container.js +11 -11
  248. package/lib/mobileapp/vue/domstructure/ui/container/vue-page-header-container.js.map +1 -1
  249. package/lib/mobileapp/vue/domstructure/ui/container/vue-section.js +45 -42
  250. package/lib/mobileapp/vue/domstructure/ui/container/vue-section.js.map +1 -1
  251. package/lib/mobileapp/vue/domstructure/ui/container/vue-tab-page.js +26 -36
  252. package/lib/mobileapp/vue/domstructure/ui/container/vue-tab-page.js.map +1 -1
  253. package/lib/mobileapp/vue/domstructure/ui/container/vue-tabs.js +26 -26
  254. package/lib/mobileapp/vue/domstructure/ui/container/vue-tabs.js.map +1 -1
  255. package/lib/mobileapp/vue/domstructure/ui/{lookup/lookup-department.js → container/vue-template-container.js} +7 -6
  256. package/lib/mobileapp/vue/domstructure/ui/container/vue-template-container.js.map +1 -0
  257. package/lib/mobileapp/vue/domstructure/ui/display/avatar/avatar.js +57 -0
  258. package/lib/mobileapp/vue/domstructure/ui/display/avatar/avatar.js.map +1 -0
  259. package/lib/mobileapp/vue/domstructure/ui/{data → display/avatar}/index.js +1 -1
  260. package/lib/mobileapp/vue/domstructure/ui/display/avatar/index.js.map +1 -0
  261. package/lib/mobileapp/vue/domstructure/ui/display/banner/index.js +13 -13
  262. package/lib/mobileapp/vue/domstructure/ui/display/banner/vue-banner.js +26 -26
  263. package/lib/mobileapp/vue/domstructure/ui/display/banner/vue-banner.js.map +1 -1
  264. package/lib/mobileapp/vue/domstructure/ui/display/calendar/calendar.js +32 -32
  265. package/lib/mobileapp/vue/domstructure/ui/display/calendar/calendar.js.map +1 -1
  266. package/lib/mobileapp/vue/domstructure/ui/display/calendar/index.js +14 -14
  267. package/lib/mobileapp/vue/domstructure/ui/display/calendar/schedule.js +31 -60
  268. package/lib/mobileapp/vue/domstructure/ui/display/calendar/schedule.js.map +1 -1
  269. package/lib/mobileapp/vue/domstructure/ui/display/html-template/html-template.js +26 -26
  270. package/lib/mobileapp/vue/domstructure/ui/display/html-template/html-template.js.map +1 -1
  271. package/lib/mobileapp/vue/domstructure/ui/display/html-template/index.js +13 -13
  272. package/lib/mobileapp/vue/domstructure/ui/display/index.js +18 -18
  273. package/lib/mobileapp/vue/domstructure/ui/display/list-view/index.js +13 -13
  274. package/lib/mobileapp/vue/domstructure/ui/display/list-view/vue-list-view.js +54 -68
  275. package/lib/mobileapp/vue/domstructure/ui/display/list-view/vue-list-view.js.map +1 -1
  276. package/lib/mobileapp/vue/domstructure/ui/display/staff-info/index.js +13 -13
  277. package/lib/mobileapp/vue/domstructure/ui/display/staff-info/staff-info.js +48 -58
  278. package/lib/mobileapp/vue/domstructure/ui/display/staff-info/staff-info.js.map +1 -1
  279. package/lib/mobileapp/vue/domstructure/ui/display/static-text/index.js +13 -13
  280. package/lib/mobileapp/vue/domstructure/ui/display/static-text/static-text.js +26 -26
  281. package/lib/mobileapp/vue/domstructure/ui/display/static-text/static-text.js.map +1 -1
  282. package/lib/mobileapp/vue/domstructure/ui/{button → display/text}/index.js +1 -1
  283. package/lib/mobileapp/vue/domstructure/ui/display/text/index.js.map +1 -0
  284. package/lib/mobileapp/vue/domstructure/ui/display/text/vue-text.js +47 -0
  285. package/lib/mobileapp/vue/domstructure/ui/display/text/vue-text.js.map +1 -0
  286. package/lib/mobileapp/vue/domstructure/ui/i-ui-entity.js +2 -2
  287. package/lib/mobileapp/vue/domstructure/ui/index.js +17 -17
  288. package/lib/mobileapp/vue/domstructure/ui/input/area-picker.js +26 -26
  289. package/lib/mobileapp/vue/domstructure/ui/input/area-picker.js.map +1 -1
  290. package/lib/mobileapp/vue/domstructure/ui/input/calendar-input.js +32 -32
  291. package/lib/mobileapp/vue/domstructure/ui/input/calendar-input.js.map +1 -1
  292. package/lib/mobileapp/vue/domstructure/ui/input/checkbox-group.js +35 -53
  293. package/lib/mobileapp/vue/domstructure/ui/input/checkbox-group.js.map +1 -1
  294. package/lib/mobileapp/vue/domstructure/ui/input/common.js +79 -104
  295. package/lib/mobileapp/vue/domstructure/ui/input/common.js.map +1 -1
  296. package/lib/mobileapp/vue/domstructure/ui/input/custom-box.js +26 -26
  297. package/lib/mobileapp/vue/domstructure/ui/input/custom-box.js.map +1 -1
  298. package/lib/mobileapp/vue/domstructure/ui/input/date-picker.js +33 -33
  299. package/lib/mobileapp/vue/domstructure/ui/input/date-picker.js.map +1 -1
  300. package/lib/mobileapp/vue/domstructure/ui/input/html-preview.js +26 -26
  301. package/lib/mobileapp/vue/domstructure/ui/input/html-preview.js.map +1 -1
  302. package/lib/mobileapp/vue/domstructure/ui/input/index.js +32 -33
  303. package/lib/mobileapp/vue/domstructure/ui/input/index.js.map +1 -1
  304. package/lib/mobileapp/vue/domstructure/ui/input/lookup-department.js +36 -36
  305. package/lib/mobileapp/vue/domstructure/ui/input/lookup-department.js.map +1 -1
  306. package/lib/mobileapp/vue/domstructure/ui/input/lookup-employee.js +36 -36
  307. package/lib/mobileapp/vue/domstructure/ui/input/lookup-employee.js.map +1 -1
  308. package/lib/mobileapp/vue/domstructure/ui/input/lookup-input.js +32 -32
  309. package/lib/mobileapp/vue/domstructure/ui/input/lookup-input.js.map +1 -1
  310. package/lib/mobileapp/vue/domstructure/ui/input/number.js +26 -36
  311. package/lib/mobileapp/vue/domstructure/ui/input/number.js.map +1 -1
  312. package/lib/mobileapp/vue/domstructure/ui/input/picker-city.js +45 -45
  313. package/lib/mobileapp/vue/domstructure/ui/input/picker-relation.js +26 -26
  314. package/lib/mobileapp/vue/domstructure/ui/input/picker-relation.js.map +1 -1
  315. package/lib/mobileapp/vue/domstructure/ui/input/picker.js +35 -53
  316. package/lib/mobileapp/vue/domstructure/ui/input/picker.js.map +1 -1
  317. package/lib/mobileapp/vue/domstructure/ui/input/radio-group.js +35 -53
  318. package/lib/mobileapp/vue/domstructure/ui/input/radio-group.js.map +1 -1
  319. package/lib/mobileapp/vue/domstructure/ui/input/rich-text-editor.js +26 -26
  320. package/lib/mobileapp/vue/domstructure/ui/input/rich-text-editor.js.map +1 -1
  321. package/lib/mobileapp/vue/domstructure/ui/input/switch-input.js +26 -26
  322. package/lib/mobileapp/vue/domstructure/ui/input/switch-input.js.map +1 -1
  323. package/lib/mobileapp/vue/domstructure/ui/input/text-area.js +41 -41
  324. package/lib/mobileapp/vue/domstructure/ui/input/text-area.js.map +1 -1
  325. package/lib/mobileapp/vue/domstructure/ui/input/text-box-external.js +26 -26
  326. package/lib/mobileapp/vue/domstructure/ui/input/text-box-external.js.map +1 -1
  327. package/lib/mobileapp/vue/domstructure/ui/input/text-box.js +26 -26
  328. package/lib/mobileapp/vue/domstructure/ui/input/text-box.js.map +1 -1
  329. package/lib/mobileapp/vue/domstructure/ui/input/text-scan.js +26 -26
  330. package/lib/mobileapp/vue/domstructure/ui/input/text-scan.js.map +1 -1
  331. package/lib/mobileapp/vue/domstructure/ui/input/text-telphone.js +26 -26
  332. package/lib/mobileapp/vue/domstructure/ui/input/text-telphone.js.map +1 -1
  333. package/lib/mobileapp/vue/domstructure/ui/vue-base-component.js +93 -121
  334. package/lib/mobileapp/vue/domstructure/ui/vue-base-component.js.map +1 -1
  335. package/lib/mobileapp/vue/jit-engine-executor/index.js +13 -13
  336. package/lib/mobileapp/vue/jit-engine-executor/mobile-vue-engine-executor.js +42 -42
  337. package/lib/mobileapp/vue/jit-engine-executor/mobile-vue-engine-executor.js.map +1 -1
  338. package/lib/mobileapp/vue/pug-generator/i-pug-generator.js +2 -2
  339. package/lib/mobileapp/vue/pug-generator/index.js +15 -15
  340. package/lib/mobileapp/vue/pug-generator/pug-generator-context.js +10 -10
  341. package/lib/mobileapp/vue/pug-generator/pug-generator-manager.js +18 -18
  342. package/lib/mobileapp/vue/pug-generator/pug-generator-response.js +14 -14
  343. package/lib/mobileapp/vue/pug-generator/pug-generator.js +25 -25
  344. package/lib/mobileapp/vue/pug-generator/pug-template-type-enum.js +8 -8
  345. package/lib/mobileapp/vue/pug-template/config/devkit-template-config.js +19 -19
  346. package/lib/mobileapp/vue/pug-template/config/template-config-manager.js +25 -25
  347. package/lib/mobileapp/vue/pug-template/config/template-config-parameter.js +9 -9
  348. package/lib/mobileapp/vue/pug-template/config/template-config-type-enum.js +8 -8
  349. package/lib/mobileapp/vue/pug-template/config/ui-template-config.js +161 -165
  350. package/lib/mobileapp/vue/pug-template/config/ui-template-config.js.map +1 -1
  351. package/lib/mobileapp/vue/pug-template/pug-template-manager.js +20 -20
  352. package/lib/mobileapp/vue/sourcefile-operation/abstract-sourcefile-operation.js +39 -39
  353. package/lib/mobileapp/vue/sourcefile-operation/command-sourcefile-operation.js +14 -14
  354. package/lib/mobileapp/vue/sourcefile-operation/eapi-soucefile-operation.js +17 -17
  355. package/lib/mobileapp/vue/sourcefile-operation/frm-sourcefile-operation.js +14 -14
  356. package/lib/mobileapp/vue/sourcefile-operation/i-sourcefile-operation.js +2 -2
  357. package/lib/mobileapp/vue/sourcefile-operation/pageflow-sourcefile-operation.js +13 -13
  358. package/lib/mobileapp/vue/sourcefile-operation/resource-sourcefile-operation.js +14 -14
  359. package/lib/mobileapp/vue/sourcefile-operation/sourcefile-operation-factory.js +42 -42
  360. package/lib/mobileapp/vue/sourcefile-operation/sourcefile-operation-manager-parameter.js +13 -13
  361. package/lib/mobileapp/vue/sourcefile-operation/sourcefile-operation-manager.js +29 -29
  362. package/lib/mobileapp/vue/sourcefile-operation/sourcefile-operation-options.js +16 -16
  363. package/lib/mobileapp/vue/sourcefile-operation/sourcefile-operation-response.js +14 -14
  364. package/lib/mobileapp/vue/sourcefile-operation/sourcefile-operation-type.js +12 -12
  365. package/lib/mobileapp/vue/sourcefile-operation/statemachine-sourcefile-operation.js +15 -15
  366. package/lib/mobileapp/vue/static/src/app.vue +7 -7
  367. package/lib/mobileapp/vue/task/vue-engine-task.js +82 -82
  368. package/lib/mobileapp/vue/task/vue-recursiveGenerateDevkit.js +293 -301
  369. package/lib/mobileapp/vue/task/vue-recursiveGenerateDevkit.js.map +1 -1
  370. package/lib/mobileapp/vue/utility/devkit/form-file-executor.js +121 -124
  371. package/lib/mobileapp/vue/utility/devkit/form-file-executor.js.map +1 -1
  372. package/lib/mobileapp/vue/utility/devkit/vue-component-creator.js +126 -126
  373. package/lib/mobileapp/vue/utility/devkit/vue-component-creator.js.map +1 -1
  374. package/lib/mobileapp/vue/utility/devkit/vue-devkit-creator.js +21 -21
  375. package/lib/mobileapp/vue/utility/devkit/vue-devkit-object-name-creator.js +52 -52
  376. package/lib/mobileapp/vue/utility/devkit/vue-entities-creator.js +40 -40
  377. package/lib/mobileapp/vue/utility/devkit/vue-entity-creator.js +46 -46
  378. package/lib/mobileapp/vue/utility/devkit/vue-entity-name-creator.js +14 -10
  379. package/lib/mobileapp/vue/utility/devkit/vue-entity-name-creator.js.map +1 -1
  380. package/lib/mobileapp/vue/utility/devkit/vue-field-creator.js +222 -222
  381. package/lib/mobileapp/vue/utility/devkit/vue-form-creator.js +91 -91
  382. package/lib/mobileapp/vue/utility/devkit/vue-handlers-creator.js +38 -38
  383. package/lib/mobileapp/vue/utility/devkit/vue-module-creator.js +56 -56
  384. package/lib/mobileapp/vue/utility/devkit/vue-repository-creator.js +46 -46
  385. package/lib/mobileapp/vue/utility/devkit/vue-routing-creator.js +15 -15
  386. package/lib/mobileapp/vue/utility/devkit/vue-statemachine-creator.js +39 -39
  387. package/lib/mobileapp/vue/utility/devkit/vue-viewmodels-creator.js +671 -672
  388. package/lib/mobileapp/vue/utility/devkit/vue-viewmodels-creator.js.map +1 -1
  389. package/lib/mobileapp/vue/utility/helper/fs-helper.js +6 -6
  390. package/lib/mobileapp/vue/utility/helper/json-helper.js +6 -6
  391. package/lib/mobileapp/vue/utility/helper/string-helper.js +6 -6
  392. package/lib/mobileapp/vue/utility/i18n/i18n-resource-manager.js +120 -120
  393. package/lib/mobileapp/vue/utility/i18n/index.js +13 -13
  394. package/lib/mobileapp/vue/utility/index.js +15 -16
  395. package/lib/mobileapp/vue/utility/index.js.map +1 -1
  396. package/lib/mobileapp/vue/utility/mobileapp-vue-constant.js +41 -41
  397. package/lib/mobileapp/vue/utility/parameter-collector/abstract-vue-parameter-collector.js +6 -6
  398. package/lib/mobileapp/vue/utility/parameter-collector/i-vue-parameter-collector.js +2 -2
  399. package/lib/mobileapp/vue/utility/parameter-collector/page-component-collector/index.js +13 -13
  400. package/lib/mobileapp/vue/utility/parameter-collector/page-component-collector/page-component-control-collector-parameter.js +34 -34
  401. package/lib/mobileapp/vue/utility/parameter-collector/page-component-collector/page-component-control-collector.js +49 -49
  402. package/lib/mobileapp/vue/utility/parameter-collector/page-component-collector/page-component-ref-collector.js +35 -35
  403. package/lib/mobileapp/vue/utility/parameter-collector/page-component-collector/page-component-ref-parameter.js +28 -28
  404. package/lib/mobileapp/vue/utility/parameter-collector/vue-parameter-collector-options.js +6 -6
  405. package/lib/mobileapp/vue/utility/parameter-collector/vue-parameter-collector.response.js +9 -9
  406. package/lib/mobileapp/vue/utility/return-response.js +11 -11
  407. package/lib/mobileapp/vue/utility/template-generator/abstract-page-generator.js +14 -14
  408. package/lib/mobileapp/vue/utility/template-generator/page-child-component-generator.js +18 -18
  409. package/lib/mobileapp/vue/utility/template-generator/page-component-control-generator.js +22 -22
  410. package/lib/mobileapp/vue/utility/template-generator/page-component-external-generator.js +38 -38
  411. package/lib/mobileapp/vue/utility/template-generator/page-component-ref-generator.js +17 -17
  412. package/lib/mobileapp/vue/utility/template-generator/page-statemachine-generator.js +48 -48
  413. package/lib/mobileapp/vue/utility/type-convert.js +33 -33
  414. package/lib/mobileapp/vue/utility/vue-config-helper.js +31 -31
  415. package/lib/mobileapp/vue/utility/vue-content-type-creator.js +80 -82
  416. package/lib/mobileapp/vue/utility/vue-content-type-creator.js.map +1 -1
  417. package/lib/mobileapp/vue/utility/vue-control-dom-type-mapping.js +47 -47
  418. package/lib/mobileapp/vue/utility/vue-event-viewmodel-modifier.js +103 -103
  419. package/lib/mobileapp/vue/utility/vue-object-creator.js +34 -56
  420. package/lib/mobileapp/vue/utility/vue-object-creator.js.map +1 -1
  421. package/lib/template/ui/mobilevue/approval-comments.pug +10 -10
  422. package/lib/template/ui/mobilevue/approval-info.pug +18 -18
  423. package/lib/template/ui/mobilevue/approval-logs.pug +11 -11
  424. package/lib/template/ui/mobilevue/area-picker.pug +54 -54
  425. package/lib/template/ui/mobilevue/attachment-entry.pug +17 -17
  426. package/lib/template/ui/mobilevue/attachment-file.pug +1 -1
  427. package/lib/template/ui/mobilevue/attachment-uploader.pug +18 -18
  428. package/lib/template/ui/mobilevue/attachment.pug +28 -28
  429. package/lib/template/ui/mobilevue/avatar.pug +19 -0
  430. package/lib/template/ui/mobilevue/button.pug +23 -23
  431. package/lib/template/ui/mobilevue/calendar-input.pug +63 -64
  432. package/lib/template/ui/mobilevue/calendar.pug +30 -30
  433. package/lib/template/ui/mobilevue/card.pug +19 -19
  434. package/lib/template/ui/mobilevue/checkbox-group.pug +53 -53
  435. package/lib/template/ui/mobilevue/container.pug +9 -9
  436. package/lib/template/ui/mobilevue/contentcontainer.pug +11 -11
  437. package/lib/template/ui/mobilevue/custom-box.pug +58 -60
  438. package/lib/template/ui/mobilevue/date-time-picker.pug +57 -59
  439. package/lib/template/ui/mobilevue/field-set.pug +14 -14
  440. package/lib/template/ui/mobilevue/filter.pug +23 -23
  441. package/lib/template/ui/mobilevue/form.pug +9 -9
  442. package/lib/template/ui/mobilevue/html-preview.pug +25 -25
  443. package/lib/template/ui/mobilevue/icon.pug +10 -10
  444. package/lib/template/ui/mobilevue/image.pug +11 -11
  445. package/lib/template/ui/mobilevue/label.pug +9 -12
  446. package/lib/template/ui/mobilevue/layout-container-col.pug +11 -0
  447. package/lib/template/ui/mobilevue/layout-container-row.pug +12 -0
  448. package/lib/template/ui/mobilevue/layout-container.pug +11 -0
  449. package/lib/template/ui/mobilevue/list-view.pug +84 -84
  450. package/lib/template/ui/mobilevue/lookup-department.pug +94 -96
  451. package/lib/template/ui/mobilevue/lookup-employee.pug +95 -97
  452. package/lib/template/ui/mobilevue/lookup-input.pug +95 -97
  453. package/lib/template/ui/mobilevue/nav-bar.pug +30 -30
  454. package/lib/template/ui/mobilevue/number.pug +50 -52
  455. package/lib/template/ui/mobilevue/picker-area.pug +55 -55
  456. package/lib/template/ui/mobilevue/picker-city.pug +64 -64
  457. package/lib/template/ui/mobilevue/picker-relation.pug +33 -35
  458. package/lib/template/ui/mobilevue/picker.pug +60 -60
  459. package/lib/template/ui/mobilevue/radio-group.pug +54 -54
  460. package/lib/template/ui/mobilevue/rich-text-editor.pug +57 -59
  461. package/lib/template/ui/mobilevue/schedule.pug +13 -13
  462. package/lib/template/ui/mobilevue/scroll-navbar.pug +13 -13
  463. package/lib/template/ui/mobilevue/search.pug +19 -19
  464. package/lib/template/ui/mobilevue/section.pug +33 -33
  465. package/lib/template/ui/mobilevue/staff-info.pug +12 -12
  466. package/lib/template/ui/mobilevue/switch.pug +45 -45
  467. package/lib/template/ui/mobilevue/tab-bar.pug +13 -13
  468. package/lib/template/ui/mobilevue/tabpage.pug +14 -12
  469. package/lib/template/ui/mobilevue/tabs.pug +16 -16
  470. package/lib/template/ui/mobilevue/tag.pug +33 -0
  471. package/lib/template/ui/mobilevue/text-area.pug +46 -47
  472. package/lib/template/ui/mobilevue/text-box-external.pug +66 -68
  473. package/lib/template/ui/mobilevue/text-box.pug +60 -62
  474. package/lib/template/ui/mobilevue/text-scan.pug +53 -55
  475. package/lib/template/ui/mobilevue/text-telphone.pug +36 -38
  476. package/lib/template/ui/mobilevue/text.pug +105 -0
  477. package/lib/template/ui/mobilevue/toolbar-area.pug +9 -9
  478. package/lib/template/ui/mobilevue/toolbar-item.pug +15 -15
  479. package/package.json +1 -1
  480. package/lib/mobileapp/vue/domstructure/ui/action-bar/action-bar.js +0 -57
  481. package/lib/mobileapp/vue/domstructure/ui/action-bar/action-bar.js.map +0 -1
  482. package/lib/mobileapp/vue/domstructure/ui/action-bar/index.js +0 -14
  483. package/lib/mobileapp/vue/domstructure/ui/action-bar/index.js.map +0 -1
  484. package/lib/mobileapp/vue/domstructure/ui/approval/approval-info.js +0 -27
  485. package/lib/mobileapp/vue/domstructure/ui/approval/approval-info.js.map +0 -1
  486. package/lib/mobileapp/vue/domstructure/ui/approval/approval-logs.js +0 -46
  487. package/lib/mobileapp/vue/domstructure/ui/approval/approval-logs.js.map +0 -1
  488. package/lib/mobileapp/vue/domstructure/ui/approval/index.js +0 -15
  489. package/lib/mobileapp/vue/domstructure/ui/approval/index.js.map +0 -1
  490. package/lib/mobileapp/vue/domstructure/ui/attachment/attachment-entry.js +0 -27
  491. package/lib/mobileapp/vue/domstructure/ui/attachment/attachment-entry.js.map +0 -1
  492. package/lib/mobileapp/vue/domstructure/ui/attachment/attachment-file.js +0 -29
  493. package/lib/mobileapp/vue/domstructure/ui/attachment/attachment-file.js.map +0 -1
  494. package/lib/mobileapp/vue/domstructure/ui/attachment/attachment-uploader.js +0 -27
  495. package/lib/mobileapp/vue/domstructure/ui/attachment/attachment-uploader.js.map +0 -1
  496. package/lib/mobileapp/vue/domstructure/ui/attachment/attachment.js +0 -29
  497. package/lib/mobileapp/vue/domstructure/ui/attachment/attachment.js.map +0 -1
  498. package/lib/mobileapp/vue/domstructure/ui/attachment/image-uploader.js +0 -27
  499. package/lib/mobileapp/vue/domstructure/ui/attachment/image-uploader.js.map +0 -1
  500. package/lib/mobileapp/vue/domstructure/ui/attachment/index.js +0 -18
  501. package/lib/mobileapp/vue/domstructure/ui/attachment/index.js.map +0 -1
  502. package/lib/mobileapp/vue/domstructure/ui/banner/index.js +0 -14
  503. package/lib/mobileapp/vue/domstructure/ui/banner/index.js.map +0 -1
  504. package/lib/mobileapp/vue/domstructure/ui/banner/vue-banner.js +0 -27
  505. package/lib/mobileapp/vue/domstructure/ui/banner/vue-banner.js.map +0 -1
  506. package/lib/mobileapp/vue/domstructure/ui/button/button.js +0 -27
  507. package/lib/mobileapp/vue/domstructure/ui/button/button.js.map +0 -1
  508. package/lib/mobileapp/vue/domstructure/ui/button/index.js.map +0 -1
  509. package/lib/mobileapp/vue/domstructure/ui/calendar/calendar-input.js +0 -28
  510. package/lib/mobileapp/vue/domstructure/ui/calendar/calendar-input.js.map +0 -1
  511. package/lib/mobileapp/vue/domstructure/ui/calendar/calendar.js +0 -27
  512. package/lib/mobileapp/vue/domstructure/ui/calendar/calendar.js.map +0 -1
  513. package/lib/mobileapp/vue/domstructure/ui/calendar/index.js +0 -16
  514. package/lib/mobileapp/vue/domstructure/ui/calendar/index.js.map +0 -1
  515. package/lib/mobileapp/vue/domstructure/ui/calendar/schedule.js +0 -32
  516. package/lib/mobileapp/vue/domstructure/ui/calendar/schedule.js.map +0 -1
  517. package/lib/mobileapp/vue/domstructure/ui/card/card.js +0 -45
  518. package/lib/mobileapp/vue/domstructure/ui/card/card.js.map +0 -1
  519. package/lib/mobileapp/vue/domstructure/ui/card/index.js.map +0 -1
  520. package/lib/mobileapp/vue/domstructure/ui/checkbox/checkbox-group.js +0 -32
  521. package/lib/mobileapp/vue/domstructure/ui/checkbox/checkbox-group.js.map +0 -1
  522. package/lib/mobileapp/vue/domstructure/ui/checkbox/index.js +0 -14
  523. package/lib/mobileapp/vue/domstructure/ui/checkbox/index.js.map +0 -1
  524. package/lib/mobileapp/vue/domstructure/ui/common/vue-visible.js +0 -57
  525. package/lib/mobileapp/vue/domstructure/ui/common/vue-visible.js.map +0 -1
  526. package/lib/mobileapp/vue/domstructure/ui/data/fields/form/display/index.js +0 -14
  527. package/lib/mobileapp/vue/domstructure/ui/data/fields/form/display/index.js.map +0 -1
  528. package/lib/mobileapp/vue/domstructure/ui/data/fields/form/display/vue-display-fiels.js +0 -33
  529. package/lib/mobileapp/vue/domstructure/ui/data/fields/form/display/vue-display-fiels.js.map +0 -1
  530. package/lib/mobileapp/vue/domstructure/ui/data/fields/form/index.js +0 -15
  531. package/lib/mobileapp/vue/domstructure/ui/data/fields/form/index.js.map +0 -1
  532. package/lib/mobileapp/vue/domstructure/ui/data/fields/form/vue-form-field.js +0 -56
  533. package/lib/mobileapp/vue/domstructure/ui/data/fields/form/vue-form-field.js.map +0 -1
  534. package/lib/mobileapp/vue/domstructure/ui/data/fields/index.js.map +0 -1
  535. package/lib/mobileapp/vue/domstructure/ui/data/index.js.map +0 -1
  536. package/lib/mobileapp/vue/domstructure/ui/data/vue-data.js +0 -38
  537. package/lib/mobileapp/vue/domstructure/ui/data/vue-data.js.map +0 -1
  538. package/lib/mobileapp/vue/domstructure/ui/date-time-picker/date-picker.js +0 -28
  539. package/lib/mobileapp/vue/domstructure/ui/date-time-picker/date-picker.js.map +0 -1
  540. package/lib/mobileapp/vue/domstructure/ui/date-time-picker/index.js +0 -14
  541. package/lib/mobileapp/vue/domstructure/ui/date-time-picker/index.js.map +0 -1
  542. package/lib/mobileapp/vue/domstructure/ui/field-set/field-set.js +0 -42
  543. package/lib/mobileapp/vue/domstructure/ui/field-set/field-set.js.map +0 -1
  544. package/lib/mobileapp/vue/domstructure/ui/field-set/index.js +0 -14
  545. package/lib/mobileapp/vue/domstructure/ui/field-set/index.js.map +0 -1
  546. package/lib/mobileapp/vue/domstructure/ui/filter/filter.js +0 -41
  547. package/lib/mobileapp/vue/domstructure/ui/filter/filter.js.map +0 -1
  548. package/lib/mobileapp/vue/domstructure/ui/filter/index.js +0 -14
  549. package/lib/mobileapp/vue/domstructure/ui/filter/index.js.map +0 -1
  550. package/lib/mobileapp/vue/domstructure/ui/footer/footer.js +0 -42
  551. package/lib/mobileapp/vue/domstructure/ui/footer/footer.js.map +0 -1
  552. package/lib/mobileapp/vue/domstructure/ui/footer/index.js +0 -14
  553. package/lib/mobileapp/vue/domstructure/ui/footer/index.js.map +0 -1
  554. package/lib/mobileapp/vue/domstructure/ui/html-preview/html-preview.js.map +0 -1
  555. package/lib/mobileapp/vue/domstructure/ui/html-preview/index.js +0 -14
  556. package/lib/mobileapp/vue/domstructure/ui/html-preview/index.js.map +0 -1
  557. package/lib/mobileapp/vue/domstructure/ui/html-template/html-template.js +0 -27
  558. package/lib/mobileapp/vue/domstructure/ui/html-template/html-template.js.map +0 -1
  559. package/lib/mobileapp/vue/domstructure/ui/html-template/index.js +0 -14
  560. package/lib/mobileapp/vue/domstructure/ui/html-template/index.js.map +0 -1
  561. package/lib/mobileapp/vue/domstructure/ui/image/image.js +0 -27
  562. package/lib/mobileapp/vue/domstructure/ui/image/image.js.map +0 -1
  563. package/lib/mobileapp/vue/domstructure/ui/image/index.js +0 -14
  564. package/lib/mobileapp/vue/domstructure/ui/image/index.js.map +0 -1
  565. package/lib/mobileapp/vue/domstructure/ui/list-view/index.js +0 -14
  566. package/lib/mobileapp/vue/domstructure/ui/list-view/index.js.map +0 -1
  567. package/lib/mobileapp/vue/domstructure/ui/list-view/vue-list-view.js +0 -39
  568. package/lib/mobileapp/vue/domstructure/ui/list-view/vue-list-view.js.map +0 -1
  569. package/lib/mobileapp/vue/domstructure/ui/lookup/index.js +0 -16
  570. package/lib/mobileapp/vue/domstructure/ui/lookup/index.js.map +0 -1
  571. package/lib/mobileapp/vue/domstructure/ui/lookup/lookup-department.js.map +0 -1
  572. package/lib/mobileapp/vue/domstructure/ui/lookup/lookup-employee.js +0 -27
  573. package/lib/mobileapp/vue/domstructure/ui/lookup/lookup-employee.js.map +0 -1
  574. package/lib/mobileapp/vue/domstructure/ui/lookup/lookup-input.js +0 -33
  575. package/lib/mobileapp/vue/domstructure/ui/lookup/lookup-input.js.map +0 -1
  576. package/lib/mobileapp/vue/domstructure/ui/nav-bar/index.js +0 -14
  577. package/lib/mobileapp/vue/domstructure/ui/nav-bar/index.js.map +0 -1
  578. package/lib/mobileapp/vue/domstructure/ui/nav-bar/vue-nav-bar.js +0 -45
  579. package/lib/mobileapp/vue/domstructure/ui/nav-bar/vue-nav-bar.js.map +0 -1
  580. package/lib/mobileapp/vue/domstructure/ui/number/index.js +0 -14
  581. package/lib/mobileapp/vue/domstructure/ui/number/index.js.map +0 -1
  582. package/lib/mobileapp/vue/domstructure/ui/number/number.js +0 -27
  583. package/lib/mobileapp/vue/domstructure/ui/number/number.js.map +0 -1
  584. package/lib/mobileapp/vue/domstructure/ui/picker/area-picker.js.map +0 -1
  585. package/lib/mobileapp/vue/domstructure/ui/picker/index.js +0 -15
  586. package/lib/mobileapp/vue/domstructure/ui/picker/index.js.map +0 -1
  587. package/lib/mobileapp/vue/domstructure/ui/picker/picker.js +0 -27
  588. package/lib/mobileapp/vue/domstructure/ui/picker/picker.js.map +0 -1
  589. package/lib/mobileapp/vue/domstructure/ui/radio/index.js +0 -14
  590. package/lib/mobileapp/vue/domstructure/ui/radio/index.js.map +0 -1
  591. package/lib/mobileapp/vue/domstructure/ui/radio/radio-group.js +0 -32
  592. package/lib/mobileapp/vue/domstructure/ui/radio/radio-group.js.map +0 -1
  593. package/lib/mobileapp/vue/domstructure/ui/rich-text-editor/index.js +0 -14
  594. package/lib/mobileapp/vue/domstructure/ui/rich-text-editor/index.js.map +0 -1
  595. package/lib/mobileapp/vue/domstructure/ui/rich-text-editor/rich-text-editor.js +0 -27
  596. package/lib/mobileapp/vue/domstructure/ui/rich-text-editor/rich-text-editor.js.map +0 -1
  597. package/lib/mobileapp/vue/domstructure/ui/section/index.js +0 -14
  598. package/lib/mobileapp/vue/domstructure/ui/section/index.js.map +0 -1
  599. package/lib/mobileapp/vue/domstructure/ui/section/vue-section.js +0 -46
  600. package/lib/mobileapp/vue/domstructure/ui/section/vue-section.js.map +0 -1
  601. package/lib/mobileapp/vue/domstructure/ui/sidebar/index.js +0 -15
  602. package/lib/mobileapp/vue/domstructure/ui/sidebar/index.js.map +0 -1
  603. package/lib/mobileapp/vue/domstructure/ui/sidebar/sidebar-item.js +0 -42
  604. package/lib/mobileapp/vue/domstructure/ui/sidebar/sidebar-item.js.map +0 -1
  605. package/lib/mobileapp/vue/domstructure/ui/sidebar/sidebar.js +0 -42
  606. package/lib/mobileapp/vue/domstructure/ui/sidebar/sidebar.js.map +0 -1
  607. package/lib/mobileapp/vue/domstructure/ui/staff-info/index.js +0 -14
  608. package/lib/mobileapp/vue/domstructure/ui/staff-info/index.js.map +0 -1
  609. package/lib/mobileapp/vue/domstructure/ui/staff-info/staff-info.js +0 -49
  610. package/lib/mobileapp/vue/domstructure/ui/staff-info/staff-info.js.map +0 -1
  611. package/lib/mobileapp/vue/domstructure/ui/static-text/index.js +0 -14
  612. package/lib/mobileapp/vue/domstructure/ui/static-text/index.js.map +0 -1
  613. package/lib/mobileapp/vue/domstructure/ui/static-text/static-text.js +0 -27
  614. package/lib/mobileapp/vue/domstructure/ui/static-text/static-text.js.map +0 -1
  615. package/lib/mobileapp/vue/domstructure/ui/switch/index.js +0 -14
  616. package/lib/mobileapp/vue/domstructure/ui/switch/index.js.map +0 -1
  617. package/lib/mobileapp/vue/domstructure/ui/switch/switch-input.js +0 -27
  618. package/lib/mobileapp/vue/domstructure/ui/switch/switch-input.js.map +0 -1
  619. package/lib/mobileapp/vue/domstructure/ui/tab/index.js +0 -16
  620. package/lib/mobileapp/vue/domstructure/ui/tab/index.js.map +0 -1
  621. package/lib/mobileapp/vue/domstructure/ui/tab/vue-tab-bar.js +0 -33
  622. package/lib/mobileapp/vue/domstructure/ui/tab/vue-tab-bar.js.map +0 -1
  623. package/lib/mobileapp/vue/domstructure/ui/tab/vue-tab-page.js +0 -45
  624. package/lib/mobileapp/vue/domstructure/ui/tab/vue-tab-page.js.map +0 -1
  625. package/lib/mobileapp/vue/domstructure/ui/tab/vue-tabs.js +0 -45
  626. package/lib/mobileapp/vue/domstructure/ui/tab/vue-tabs.js.map +0 -1
  627. package/lib/mobileapp/vue/domstructure/ui/text-area/index.js +0 -14
  628. package/lib/mobileapp/vue/domstructure/ui/text-area/index.js.map +0 -1
  629. package/lib/mobileapp/vue/domstructure/ui/text-area/text-area.js +0 -37
  630. package/lib/mobileapp/vue/domstructure/ui/text-area/text-area.js.map +0 -1
  631. package/lib/mobileapp/vue/domstructure/ui/text-box/index.js +0 -17
  632. package/lib/mobileapp/vue/domstructure/ui/text-box/index.js.map +0 -1
  633. package/lib/mobileapp/vue/domstructure/ui/text-box/text-box-external.js +0 -27
  634. package/lib/mobileapp/vue/domstructure/ui/text-box/text-box-external.js.map +0 -1
  635. package/lib/mobileapp/vue/domstructure/ui/text-box/text-box.js.map +0 -1
  636. package/lib/mobileapp/vue/domstructure/ui/text-box/text-scan.js +0 -27
  637. package/lib/mobileapp/vue/domstructure/ui/text-box/text-scan.js.map +0 -1
  638. package/lib/mobileapp/vue/domstructure/ui/text-box/text-telphone.js +0 -27
  639. package/lib/mobileapp/vue/domstructure/ui/text-box/text-telphone.js.map +0 -1
  640. package/lib/mobileapp/vue/domstructure/ui/toolbar/index.js +0 -16
  641. package/lib/mobileapp/vue/domstructure/ui/toolbar/index.js.map +0 -1
  642. package/lib/mobileapp/vue/domstructure/ui/toolbar/vue-toolbar-area.js +0 -35
  643. package/lib/mobileapp/vue/domstructure/ui/toolbar/vue-toolbar-area.js.map +0 -1
  644. package/lib/mobileapp/vue/domstructure/ui/toolbar/vue-toolbar-item.js +0 -32
  645. package/lib/mobileapp/vue/domstructure/ui/toolbar/vue-toolbar-item.js.map +0 -1
  646. package/lib/mobileapp/vue/domstructure/ui/toolbar/vue-toolbar.js +0 -42
  647. package/lib/mobileapp/vue/domstructure/ui/toolbar/vue-toolbar.js.map +0 -1
  648. package/lib/mobileapp/vue/domstructure/ui/vue-input-component.js +0 -81
  649. package/lib/mobileapp/vue/domstructure/ui/vue-input-component.js.map +0 -1
  650. package/lib/mobileapp/vue/internal-entity/i-project-data.js +0 -3
  651. package/lib/mobileapp/vue/internal-entity/i-project-data.js.map +0 -1
  652. package/lib/mobileapp/vue/internal-entity/page-flow/index.js +0 -14
  653. package/lib/mobileapp/vue/internal-entity/page-flow/index.js.map +0 -1
  654. package/lib/mobileapp/vue/internal-entity/page-flow/vue-page-flow-convertor.js +0 -11
  655. package/lib/mobileapp/vue/internal-entity/page-flow/vue-page-flow-convertor.js.map +0 -1
  656. package/lib/mobileapp/vue/internal-entity/page-flow/vue-page-flow-entity.js +0 -44
  657. package/lib/mobileapp/vue/internal-entity/page-flow/vue-page-flow-entity.js.map +0 -1
  658. package/lib/mobileapp/vue/internal-entity/page-flow/vue-page-flow-page.js +0 -27
  659. package/lib/mobileapp/vue/internal-entity/page-flow/vue-page-flow-page.js.map +0 -1
  660. package/lib/mobileapp/vue/internal-entity/page-flow/vue-page-flow-project.js +0 -27
  661. package/lib/mobileapp/vue/internal-entity/page-flow/vue-page-flow-project.js.map +0 -1
  662. package/lib/mobileapp/vue/internal-entity/vue-app-index-vue-parameter.js +0 -7
  663. package/lib/mobileapp/vue/internal-entity/vue-app-index-vue-parameter.js.map +0 -1
  664. package/lib/mobileapp/vue/internal-entity/vue-app-router-entity.js +0 -15
  665. package/lib/mobileapp/vue/internal-entity/vue-app-router-entity.js.map +0 -1
  666. package/lib/mobileapp/vue/internal-entity/vue-engine-context.js +0 -7
  667. package/lib/mobileapp/vue/internal-entity/vue-engine-context.js.map +0 -1
  668. package/lib/mobileapp/vue/internal-entity/vue-page-component-generate-parameter.js +0 -7
  669. package/lib/mobileapp/vue/internal-entity/vue-page-component-generate-parameter.js.map +0 -1
  670. package/lib/mobileapp/vue/static/.npmignore +0 -13
  671. package/lib/template/ui/mobilevue/footer.pug +0 -10
  672. package/lib/template/ui/mobilevue/vant-tabpage.pug +0 -6
  673. package/lib/template/ui/mobilevue/vant-tabs.pug +0 -6
@@ -1,55 +1,53 @@
1
- //- -variable.readonly = variable.readonly?String(variable.readonly).replace(/"/g, "'")+"":undefined;
2
- -var attrs = {};
3
- -attrs.class = variable.appearance && variable.appearance.class;
4
- -attrs.style = variable.appearance && variable.appearance.style;
5
- -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
- -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
- -var require = variable.require ? String(variable.require.value) : undefined;
10
- -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
11
- -var disable = variable.disable ? String(variable.disable.value) : undefined;
12
- -var binding = variable.binding && variable.binding.path ? "form."+variable.binding.path+".value" : undefined
13
-
14
-
15
-
16
- div(
17
- v-if=visible
18
- class="fm-input-wrapper"
19
- )
20
- fm-scan-input(
21
- v-model=binding
22
- :label = variable.title? variable.i18nTitle : undefined
23
- :placeholder = variable.placeholder? variable.i18nPlaceholder : undefined
24
- :required=require
25
- :readonly=readonly
26
- :disabled=disable
27
- :modelValue=variable.modelValue ?variable.modelValue+"":undefined
28
- :clearable!=variable.clearable?variable.clearable+"":undefined
29
- :is-link!=variable.isLink?variable.isLink+"":undefined
30
- :labelWidth!=variable.labelWidth?variable.labelWidth+"":undefined
31
- direction=variable.direction?variable.direction+"":undefined
32
- input-align="right"
33
- extra=variable.suffix?variable.suffix+"":undefined
34
- :error-message!=variable.errorMessage
35
- error-message-align=variable.errorMessage ? "right" : undefined
36
- )&attributes(attrs)
37
- if(variable.leftTemplate)
38
- template(#left-icon)
39
- | !{variable.leftTemplate}
40
- if(variable.rightTemplate)
41
- template(#right-icon)
42
- | !{variable.rightTemplate}
43
- if(variable.extraTemplate)
44
- template(#extra)
45
- | !{variable.extraTemplate}
46
- if(variable.labelTips)
47
- template(#title)
48
- <span>!{variable.title}</span>
49
- <fm-popover :hasMask="false" placement="topLeft" className="fm-input-label-tips" :offset="{left: -5}">
50
- <fm-icon name="s-illustrate-o"/>
51
- <template #content>
52
- <div class="fm-input-label-tips-content"><span>!{variable.i18nLabelTips}</span></div>
53
- </template>
54
- </fm-popover>
55
-
1
+ //- -variable.readonly = variable.readonly?String(variable.readonly).replace(/"/g, "'")+"":undefined;
2
+ -var attrs = {};
3
+ -attrs.class = variable.appearance && variable.appearance.class;
4
+ -attrs.style = variable.appearance && variable.appearance.style;
5
+ -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
+ -attrs.placeholder = variable.placeholder? String(variable.placeholder) : undefined
7
+ -attrs.label = variable.title? String(variable.title) : undefined
8
+ -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
9
+ -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
10
+ -var visible = variable.visible ? String(variable.visible.value) : 'false';
11
+ -var require = variable.require ? String(variable.require.value) : undefined;
12
+ -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
13
+ -var disable = variable.disable ? String(variable.disable.value) : undefined;
14
+ -var binding = variable.binding && variable.binding.path ? "form."+variable.binding.path+".value" : undefined
15
+
16
+ div(
17
+ v-if=visible
18
+ class="fm-input-wrapper"
19
+ )
20
+ fm-scan-input(
21
+ v-model=binding
22
+ :required=require
23
+ :readonly=readonly
24
+ :disabled=disable
25
+ :modelValue=variable.modelValue ?variable.modelValue+"":undefined
26
+ :clearable!=variable.clearable?variable.clearable+"":undefined
27
+ :is-link!=variable.isLink?variable.isLink+"":undefined
28
+ :labelWidth!=variable.labelWidth?variable.labelWidth+"":undefined
29
+ direction=variable.direction?variable.direction+"":undefined
30
+ input-align="right"
31
+ extra=variable.suffix?variable.suffix+"":undefined
32
+ :error-message!=variable.errorMessage
33
+ error-message-align=variable.errorMessage ? "right" : undefined
34
+ )&attributes(attrs)
35
+ if(variable.leftTemplate)
36
+ template(#left-icon)
37
+ | !{variable.leftTemplate}
38
+ if(variable.rightTemplate)
39
+ template(#right-icon)
40
+ | !{variable.rightTemplate}
41
+ if(variable.extraTemplate)
42
+ template(#extra)
43
+ | !{variable.extraTemplate}
44
+ if(variable.labelTips)
45
+ template(#title)
46
+ <span>!{variable.title}</span>
47
+ <fm-popover :hasMask="false" placement="topLeft" className="fm-input-label-tips" :offset="{left: -5}">
48
+ <fm-icon name="s-illustrate-o"/>
49
+ <template #content>
50
+ <div class="fm-input-label-tips-content"><span>!{variable.labelTips}</span></div>
51
+ </template>
52
+ </fm-popover>
53
+
@@ -1,38 +1,36 @@
1
- //- -variable.readonly = variable.readonly?String(variable.readonly).replace(/"/g, "'")+"":undefined;
2
- -var attrs = {};
3
- -attrs.class = variable.appearance && variable.appearance.class;
4
- -attrs.style = variable.appearance && variable.appearance.style;
5
- -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
- -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
- -var require = variable.require ? String(variable.require.value) : undefined;
10
- -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
11
- -var disable = variable.disable ? String(variable.disable.value) : undefined;
12
- -var binding = variable.binding && variable.binding.path ? "form."+variable.binding.path+".value" : undefined
13
-
14
-
15
-
16
- div(
17
- v-if=visible
18
- class="fm-input-wrapper"
19
- )
20
- fm-telphone-input(
21
- v-model=binding
22
- :label = variable.title? variable.i18nTitle : undefined
23
- :placeholder = variable.placeholder? variable.i18nPlaceholder : undefined
24
- :required=require
25
- :readonly=readonly
26
- :disabled=disable
27
- :modelValue=variable.modelValue ?variable.modelValue+"":undefined
28
- :clearable!=variable.clearable?variable.clearable+"":undefined
29
- :is-link!=variable.isLink?variable.isLink+"":undefined
30
- :labelWidth!=variable.labelWidth?variable.labelWidth+"":undefined
31
- direction=variable.direction?variable.direction+"":undefined
32
- input-align="right"
33
- extra=variable.suffix?variable.suffix+"":undefined
34
- :error-message!=variable.errorMessage
35
- error-message-align=variable.errorMessage ? "right" : undefined
36
- )&attributes(attrs)
37
-
38
-
1
+ //- -variable.readonly = variable.readonly?String(variable.readonly).replace(/"/g, "'")+"":undefined;
2
+ -var attrs = {};
3
+ -attrs.class = variable.appearance && variable.appearance.class;
4
+ -attrs.style = variable.appearance && variable.appearance.style;
5
+ -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
+ -attrs.placeholder = variable.placeholder? String(variable.placeholder) : undefined
7
+ -attrs.label = variable.title? String(variable.title) : undefined
8
+ -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
9
+ -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
10
+ -var visible = variable.visible ? String(variable.visible.value) : 'false';
11
+ -var require = variable.require ? String(variable.require.value) : undefined;
12
+ -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
13
+ -var disable = variable.disable ? String(variable.disable.value) : undefined;
14
+ -var binding = variable.binding && variable.binding.path ? "form."+variable.binding.path+".value" : undefined
15
+
16
+ div(
17
+ v-if=visible
18
+ class="fm-input-wrapper"
19
+ )
20
+ fm-telphone-input(
21
+ v-model=binding
22
+ :required=require
23
+ :readonly=readonly
24
+ :disabled=disable
25
+ :modelValue=variable.modelValue ?variable.modelValue+"":undefined
26
+ :clearable!=variable.clearable?variable.clearable+"":undefined
27
+ :is-link!=variable.isLink?variable.isLink+"":undefined
28
+ :labelWidth!=variable.labelWidth?variable.labelWidth+"":undefined
29
+ direction=variable.direction?variable.direction+"":undefined
30
+ input-align="right"
31
+ extra=variable.suffix?variable.suffix+"":undefined
32
+ :error-message!=variable.errorMessage
33
+ error-message-align=variable.errorMessage ? "right" : undefined
34
+ )&attributes(attrs)
35
+
36
+
@@ -0,0 +1,105 @@
1
+ -var enableLabel = variable.enableLabel
2
+
3
+ -var visible = variable.visible ? String(variable.visible.value) : 'false';
4
+ -var binding = variable.binding? variable.binding : undefined
5
+ -var fontSize = variable.fontSize? String(variable.fontSize) : undefined
6
+ -var lineHeight = variable.lineHeight? String(variable.lineHeight) : undefined
7
+ -var fontWeight = variable.fontWeight? String(variable.fontWeight) : undefined
8
+ -var color = variable.color? String(variable.color) : undefined
9
+ -var formatter = variable.formatter ? variable.formatter:{}
10
+ -var displayType = variable.displayType? String(variable.displayType) : undefined
11
+ -var formatterType = 'string'
12
+ -var formBindingPrefix = variable.formBindingPrefix? String(variable.formBindingPrefix):undefined
13
+
14
+ -var wrapPosition = variable.wrapPosition? variable.wrapPosition : undefined
15
+ -var labelText = variable.labelText
16
+ -var labelFontSize = variable.labelFontSize
17
+ -var labelLineHeight = variable.labelLineHeight
18
+ -var labelColor = variable.labelColor
19
+ -var labelFontWeight = variable.labelFontWeight
20
+ -var labelWidth = variable.labelWidth
21
+
22
+ //--文本样式
23
+ -var textAttrs = {};
24
+ -textAttrs.id = variable.replacedId? String(variable.replacedId) : undefined
25
+ -textAttrs.class = displayType && displayType.startsWith('title-') ? 'fm-common-title ':'fm-common-text ';
26
+ -textAttrs.style = '';
27
+ if(displayType)
28
+ -textAttrs.class += ` fm-${displayType}`
29
+ if(enableLabel && wrapPosition === 'afterLabel')
30
+ -textAttrs.class += ' d-flex ';
31
+ if(variable.appearance && variable.appearance.class)
32
+ -textAttrs.class += variable.appearance.class;
33
+
34
+ if(color)
35
+ -textAttrs.style += `color:${color};`
36
+ if(variable.size && variable.size.width)
37
+ -textAttrs.style += `width:${variable.size.width}px;`
38
+ if(variable.size && variable.size.height)
39
+ -textAttrs.style += `height:${variable.size.height}px;`
40
+ if(fontSize)
41
+ -textAttrs.style += `font-size:${fontSize}px;`
42
+ if(lineHeight)
43
+ -textAttrs.style += `line-height:${lineHeight}px;`
44
+ if(fontWeight)
45
+ -textAttrs.style += `font-weight:${fontWeight};`
46
+ if(variable.appearance && variable.appearance.style)
47
+ -textAttrs.style += variable.appearance.style;
48
+
49
+ //--标签属性
50
+ -var labelAttrs = {};
51
+ if(enableLabel)
52
+ -labelAttrs.class = 'fm-common-label ';
53
+ -labelAttrs.style = '';
54
+ if(variable.labelAppearance && variable.labelAppearance.class)
55
+ -labelAttrs.class += variable.labelAppearance.class;
56
+ if(labelColor)
57
+ -labelAttrs.style += `color:${labelColor};`
58
+ if(labelFontSize)
59
+ -labelAttrs.style += `font-size:${labelFontSize}px;`
60
+ if(labelFontWeight)
61
+ -labelAttrs.style += `font-weight:${labelFontWeight};`
62
+ if(labelWidth)
63
+ -labelAttrs.style += `width:${labelWidth}px;`
64
+
65
+
66
+ //--文本内容属性
67
+ -var contenAtttrs = {};
68
+ -contenAtttrs.class = 'fm-common-content '
69
+
70
+ //--绑定值
71
+ -var contentStr = ''
72
+ if(binding && binding.type)
73
+ if(binding.type === 'Static')
74
+ -contentStr = `'${binding.value}'`;
75
+ if(binding.type === 'Form')
76
+ -contentStr = `${formBindingPrefix}${binding.bindingPath}`;
77
+ if(binding.type === 'Variable')
78
+ -contentStr = `uiState.${binding.code}`;
79
+
80
+ if(formatter && formatter.type)
81
+ -formatterType = formatter.type==='boolean'?'bool':formatter.type;
82
+ -delete formatter.type
83
+ -contentStr = `{{$formatUtils.${formatterType}(${contentStr},${JSON.stringify(formatter)})}}`
84
+ else if(binding.type === 'Form' || binding.type === 'Variable')
85
+ -contentStr = `{{ ${contentStr} }}`;
86
+
87
+ -var labelStr = ''
88
+ if(enableLabel)
89
+ if(typeof labelText==='string')
90
+ -labelStr = `${labelText}`;
91
+ else if(labelText && typeof labelText==='object' && labelText.path)
92
+ -labelStr = `{{ uiState.${labelText.path} }}`;
93
+ else
94
+ -labelStr = '';
95
+
96
+ div(
97
+ v-if=visible
98
+ @click=variable.click ? String(variable.click) : undefined
99
+ )&attributes(textAttrs)
100
+ if(enableLabel)
101
+ label()&attributes(labelAttrs)
102
+ | !{labelStr}
103
+ span(
104
+ )&attributes(textAttrs)
105
+ | !{contentStr}
@@ -1,10 +1,10 @@
1
- -var attrs = {};
2
- -attrs.class = variable.appearance && variable.appearance.class;
3
- -attrs.style = variable.appearance && variable.appearance.style;
4
- -attrs.type = variable.displayType ? String(variable.displayType) : undefined
5
- -var visible = variable.visible ? String(variable.visible.value) : 'false';
6
-
7
- fm-button-group(
8
- v-if=visible
9
- :items=variable.items?variable.items+"":undefined
1
+ -var attrs = {};
2
+ -attrs.class = variable.appearance && variable.appearance.class;
3
+ -attrs.style = variable.appearance && variable.appearance.style;
4
+ -attrs.type = variable.displayType ? String(variable.displayType) : undefined
5
+ -var visible = variable.visible ? String(variable.visible.value) : 'false';
6
+
7
+ fm-button-group(
8
+ v-if=visible
9
+ :items=variable.items?variable.items+"":undefined
10
10
  )&attributes(attrs)
@@ -1,15 +1,15 @@
1
- -var iconClass = "fm-popover-item-icon " + variable.iconType ? variable.iconType : '';
2
- -var visible = variable.visible ? String(variable.visible.value) : undefined;
3
- -var attrs = {};
4
- -attrs.class = variable.appearance && variable.appearance.class ? variable.appearance.class + " fm-popover-item" : "fm-popover-item";
5
- -attrs.style = variable.appearance && variable.appearance.style;
6
-
7
- div(
8
- v-if=visible
9
- @click=variable.click?""+variable.click:undefined
10
- )&attributes(attrs)
11
- div(class="fm-popover-item-container")
12
- if(variable.iconType)
13
- div(class=iconClass)
14
- div(class="fm-popover-item-content")
15
- | !{variable.text?variable.i18nText:""}
1
+ -var iconClass = "fm-popover-item-icon " + variable.iconType ? variable.iconType : '';
2
+ -var visible = variable.visible ? String(variable.visible.value) : undefined;
3
+ -var attrs = {};
4
+ -attrs.class = variable.appearance && variable.appearance.class ? variable.appearance.class + " fm-popover-item" : "fm-popover-item";
5
+ -attrs.style = variable.appearance && variable.appearance.style;
6
+
7
+ div(
8
+ v-if=visible
9
+ @click=variable.click?""+variable.click:undefined
10
+ )&attributes(attrs)
11
+ div(class="fm-popover-item-container")
12
+ if(variable.iconType)
13
+ div(class=iconClass)
14
+ div(class="fm-popover-item-content")
15
+ | !{variable.text?variable.text:""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farris/jit-engine",
3
- "version": "1.3.280",
3
+ "version": "1.3.282",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "bin": {
@@ -1,57 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VueActionBar = void 0;
4
- const vue_base_component_1 = require("../vue-base-component");
5
- class VueActionBar extends vue_base_component_1.VueBaseComponent {
6
- constructor(param) {
7
- super(param);
8
- let obj;
9
- if (typeof param === 'string') {
10
- obj = JSON.parse(param);
11
- }
12
- else {
13
- obj = param;
14
- }
15
- if (!obj) {
16
- return;
17
- }
18
- const keys = 'disabled,visible,toolbar';
19
- Object.keys(obj).forEach((key) => {
20
- if (keys.includes(key)) {
21
- if (key === 'toolbar') {
22
- this['btns'] = this.toString(this.genBtns(obj[key].items));
23
- }
24
- else {
25
- this[key] = obj[key];
26
- }
27
- }
28
- });
29
- }
30
- genBtns(items) {
31
- return items.map((item) => {
32
- return {
33
- text: item.text ? item.text : "''",
34
- icon: item.iconType ? item.iconType : "''",
35
- handler: item.click ? item.click : () => { },
36
- disabled: item.disabled ? item.disabled : false,
37
- visible: item.visible === false ? item.visible : true,
38
- type: item.showType ? item.showType : 'primary'
39
- };
40
- });
41
- }
42
- toString(arr) {
43
- return `[${arr.map(obj => {
44
- const keys = Object.keys(obj);
45
- return `{${keys.map(key => {
46
- if (key === 'handler' || key === 'disabled') {
47
- return `"${key}": ${obj[key]}`;
48
- }
49
- else {
50
- return `"${key}": "${obj[key]}"`;
51
- }
52
- }).join(',')}}`;
53
- }).join(',')}]`;
54
- }
55
- }
56
- exports.VueActionBar = VueActionBar;
57
- //# sourceMappingURL=action-bar.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"action-bar.js","sourceRoot":"","sources":["../../../../../../src/mobileapp/vue/domstructure/ui/action-bar/action-bar.ts"],"names":[],"mappings":";;;AAAA,8DAAwD;AAExD,MAAa,YAAa,SAAQ,qCAAgB;IAKhD,YAAY,KAAU;QACpB,KAAK,CAAC,KAAK,CAAC,CAAA;QAEZ,IAAI,GAAQ,CAAA;QACZ,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC7B,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;SACxB;aAAM;YACL,GAAG,GAAG,KAAK,CAAA;SACZ;QAED,IAAI,CAAC,GAAG,EAAE;YACR,OAAM;SACP;QAED,MAAM,IAAI,GAAG,0BAA0B,CAAA;QACvC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;YAC/B,IAAI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;gBACtB,IAAI,GAAG,KAAK,SAAS,EAAE;oBACrB,IAAI,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,CAAA;iBAC3D;qBAAM;oBACL,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,CAAA;iBACrB;aACF;QACH,CAAC,CAAC,CAAA;IACJ,CAAC;IACD,OAAO,CAAC,KAAY;QAClB,OAAO,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE;YACxB,OAAO;gBACL,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI;gBAClC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI;gBAC1C,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAA,CAAC,CAAC,GAAE,EAAE,GAAC,CAAC;gBACxC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAA,CAAC,CAAC,KAAK;gBAC9C,OAAO,EAAE,IAAI,CAAC,OAAO,KAAK,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAA,CAAC,CAAC,IAAI;gBACpD,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS;aAChD,CAAA;QACH,CAAC,CAAC,CAAA;IACJ,CAAC;IACD,QAAQ,CAAC,GAAU;QACjB,OAAO,IACH,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE;YACV,MAAM,IAAI,GAAI,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YAC/B,OAAO,IACH,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE;gBACX,IAAG,GAAG,KAAG,SAAS,IAAI,GAAG,KAAG,UAAU,EAAE;oBACpC,OAAO,IAAI,GAAG,MAAM,GAAG,CAAC,GAAG,CAAC,EAAE,CAAA;iBACjC;qBAAM;oBACH,OAAO,IAAI,GAAG,OAAO,GAAG,CAAC,GAAG,CAAC,GAAG,CAAA;iBACnC;YACL,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CACf,GAAG,CAAA;QACP,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CACf,GAAG,CAAA;IACL,CAAC;CACF;AA1DD,oCA0DC"}
@@ -1,14 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
- }) : (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- o[k2] = m[k];
8
- }));
9
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
- };
12
- Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./action-bar"), exports);
14
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/mobileapp/vue/domstructure/ui/action-bar/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAA8B"}
@@ -1,27 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VueApprovalInfo = void 0;
4
- const vue_base_component_1 = require("../vue-base-component");
5
- class VueApprovalInfo extends vue_base_component_1.VueBaseComponent {
6
- constructor(param) {
7
- super(param);
8
- let obj;
9
- if (typeof param === 'string') {
10
- obj = JSON.parse(param);
11
- }
12
- else {
13
- obj = param;
14
- }
15
- if (!obj) {
16
- return;
17
- }
18
- const keys = 'visible,code,name,icon,releaseDate,description';
19
- Object.keys(obj).forEach((key) => {
20
- if (keys.includes(key)) {
21
- this[key] = obj[key];
22
- }
23
- });
24
- }
25
- }
26
- exports.VueApprovalInfo = VueApprovalInfo;
27
- //# sourceMappingURL=approval-info.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"approval-info.js","sourceRoot":"","sources":["../../../../../../src/mobileapp/vue/domstructure/ui/approval/approval-info.ts"],"names":[],"mappings":";;;AAAA,8DAAwD;AAExD,MAAa,eAAgB,SAAQ,qCAAgB;IAGnD,YAAY,KAAU;QACpB,KAAK,CAAC,KAAK,CAAC,CAAA;QAEZ,IAAI,GAAQ,CAAA;QACZ,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC7B,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;SACxB;aAAM;YACL,GAAG,GAAG,KAAK,CAAA;SACZ;QAED,IAAI,CAAC,GAAG,EAAE;YACR,OAAM;SACP;QAED,MAAM,IAAI,GAAG,gDAAgD,CAAA;QAC7D,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;YAC/B,IAAI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;gBACtB,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,CAAA;aACrB;QACH,CAAC,CAAC,CAAA;IACJ,CAAC;CACF;AAxBD,0CAwBC"}
@@ -1,46 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VueApprovalLogs = void 0;
4
- const vue_base_component_1 = require("../vue-base-component");
5
- class VueApprovalLogs extends vue_base_component_1.VueBaseComponent {
6
- constructor(param) {
7
- super(param);
8
- let obj;
9
- if (typeof param === 'string') {
10
- obj = JSON.parse(param);
11
- }
12
- else {
13
- obj = param;
14
- }
15
- if (!obj) {
16
- return;
17
- }
18
- const keys = 'visible,title,dataId';
19
- Object.keys(obj).forEach(key => {
20
- if (keys.includes(key)) {
21
- if (key === 'dataId') {
22
- let dataType = '';
23
- switch (obj.dataId.type.toLowerCase()) {
24
- case 'form':
25
- dataType = 'currentEntityData';
26
- break;
27
- case 'variable':
28
- dataType = 'uiState';
29
- break;
30
- default:
31
- dataType = 'currentEntityData';
32
- break;
33
- }
34
- const bindingPath = obj.dataId.bindingPath;
35
- const dataId = bindingPath ? `${dataType}.${obj.dataId.bindingPath}` : undefined;
36
- this[key] = dataId;
37
- }
38
- else {
39
- this[key] = obj[key];
40
- }
41
- }
42
- });
43
- }
44
- }
45
- exports.VueApprovalLogs = VueApprovalLogs;
46
- //# sourceMappingURL=approval-logs.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"approval-logs.js","sourceRoot":"","sources":["../../../../../../src/mobileapp/vue/domstructure/ui/approval/approval-logs.ts"],"names":[],"mappings":";;;AAAA,8DAAyD;AAEzD,MAAa,eAAgB,SAAQ,qCAAgB;IAGjD,YAAY,KAAU;QAClB,KAAK,CAAC,KAAK,CAAC,CAAC;QAEb,IAAI,GAAQ,CAAC;QACb,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC3B,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;SAC3B;aAAM;YACH,GAAG,GAAG,KAAK,CAAC;SACf;QAED,IAAI,CAAC,GAAG,EAAE;YACN,OAAO;SACV;QAED,MAAM,IAAI,GAAG,sBAAsB,CAAC;QACpC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YAC3B,IAAI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;gBACpB,IAAG,GAAG,KAAK,QAAQ,EAAE;oBACjB,IAAI,QAAQ,GAAG,EAAE,CAAA;oBACjB,QAAQ,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE;wBACnC,KAAK,MAAM;4BACP,QAAQ,GAAG,mBAAmB,CAAA;4BAC9B,MAAM;wBACV,KAAK,UAAU;4BACX,QAAQ,GAAG,SAAS,CAAA;4BACpB,MAAM;wBACV;4BACI,QAAQ,GAAG,mBAAmB,CAAA;4BAC9B,MAAM;qBACb;oBACD,MAAM,WAAW,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAA;oBAC1C,MAAM,MAAM,GAAG,WAAW,CAAC,CAAC,CAAC,GAAG,QAAQ,IAAI,GAAG,CAAC,MAAM,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC,SAAS,CAAA;oBAChF,IAAI,CAAC,GAAG,CAAC,GAAG,MAAM,CAAA;iBACrB;qBAAM;oBACH,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC;iBACxB;aACJ;QACL,CAAC,CAAC,CAAC;IACP,CAAC;CAGJ;AA5CD,0CA4CC"}
@@ -1,15 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
- }) : (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- o[k2] = m[k];
8
- }));
9
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
- };
12
- Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./approval-logs"), exports);
14
- __exportStar(require("./approval-info"), exports);
15
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/mobileapp/vue/domstructure/ui/approval/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAiC;AACjC,kDAAiC"}
@@ -1,27 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VueAttachmentEntry = void 0;
4
- const vue_base_component_1 = require("../vue-base-component");
5
- class VueAttachmentEntry extends vue_base_component_1.VueBaseComponent {
6
- constructor(param) {
7
- super(param);
8
- let obj;
9
- if (typeof param === 'string') {
10
- obj = JSON.parse(param);
11
- }
12
- else {
13
- obj = param;
14
- }
15
- if (!obj) {
16
- return;
17
- }
18
- const keys = 'visible,attachmentPath,removable,upload,selectChange,remove,binding,disabled,rootId,direction,externalVideoUrl';
19
- Object.keys(obj).forEach(key => {
20
- if (keys.includes(key)) {
21
- this[key] = obj[key];
22
- }
23
- });
24
- }
25
- }
26
- exports.VueAttachmentEntry = VueAttachmentEntry;
27
- //# sourceMappingURL=attachment-entry.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"attachment-entry.js","sourceRoot":"","sources":["../../../../../../src/mobileapp/vue/domstructure/ui/attachment/attachment-entry.ts"],"names":[],"mappings":";;;AAAA,8DAAyD;AAEzD,MAAa,kBAAmB,SAAQ,qCAAgB;IASpD,YAAY,KAAmB;QAC3B,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,GAAQ,CAAC;QACb,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC3B,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;SAC3B;aAAM;YACH,GAAG,GAAG,KAAK,CAAC;SACf;QAED,IAAI,CAAC,GAAG,EAAE;YACN,OAAO;SACV;QAED,MAAM,IAAI,GAAG,gHAAgH,CAAC;QAC9H,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YAC3B,IAAI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;gBACpB,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC;aACxB;QACL,CAAC,CAAC,CAAC;IACP,CAAC;CACJ;AA7BD,gDA6BC"}
@@ -1,29 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VueAttachmentFile = void 0;
4
- const lodash_1 = require("lodash");
5
- const vue_base_component_1 = require("../vue-base-component");
6
- class VueAttachmentFile extends vue_base_component_1.VueBaseComponent {
7
- constructor(param) {
8
- super(param);
9
- let obj;
10
- if (typeof param === 'string') {
11
- obj = JSON.parse(param);
12
- }
13
- else {
14
- obj = param;
15
- }
16
- if (!obj) {
17
- return;
18
- }
19
- const keys = `title,visible,attachmentPath,disabled,removable,remove,afterAppendFile,
20
- binding,parentDirName,rootId,maxSize,maxCount,allowMaxSize,allowMaxCount,uploadOptions,data,sizeList`;
21
- Object.keys(obj).forEach((key) => {
22
- if (keys.includes(key)) {
23
- this[key] = lodash_1.isObject(obj[key]) ? JSON.stringify(obj[key]).replace(/"/g, "'") : obj[key];
24
- }
25
- });
26
- }
27
- }
28
- exports.VueAttachmentFile = VueAttachmentFile;
29
- //# sourceMappingURL=attachment-file.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"attachment-file.js","sourceRoot":"","sources":["../../../../../../src/mobileapp/vue/domstructure/ui/attachment/attachment-file.ts"],"names":[],"mappings":";;;AAAA,mCAAiC;AACjC,8DAAwD;AAExD,MAAa,iBAAkB,SAAQ,qCAAgB;IAYrD,YAAY,KAAmB;QAC7B,KAAK,CAAC,KAAK,CAAC,CAAA;QACZ,IAAI,GAAQ,CAAA;QACZ,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC7B,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;SACxB;aAAM;YACL,GAAG,GAAG,KAAK,CAAA;SACZ;QAED,IAAI,CAAC,GAAG,EAAE;YACR,OAAM;SACP;QAED,MAAM,IAAI,GAAE;yGACyF,CAAA;QACrG,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;YAC/B,IAAI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;gBACtB,IAAI,CAAC,GAAG,CAAC,GAAI,iBAAQ,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;aACzF;QACH,CAAC,CAAC,CAAA;IACJ,CAAC;CACF;AAjCD,8CAiCC"}
@@ -1,27 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VueAttachmentUploader = void 0;
4
- const attachment_file_1 = require("./attachment-file");
5
- class VueAttachmentUploader extends attachment_file_1.VueAttachmentFile {
6
- constructor(param) {
7
- super(param);
8
- let obj;
9
- if (typeof param === 'string') {
10
- obj = JSON.parse(param);
11
- }
12
- else {
13
- obj = param;
14
- }
15
- if (!obj) {
16
- return;
17
- }
18
- const keys = `title,binding`;
19
- Object.keys(obj).forEach((key) => {
20
- if (keys.includes(key)) {
21
- this[key] = obj[key];
22
- }
23
- });
24
- }
25
- }
26
- exports.VueAttachmentUploader = VueAttachmentUploader;
27
- //# sourceMappingURL=attachment-uploader.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"attachment-uploader.js","sourceRoot":"","sources":["../../../../../../src/mobileapp/vue/domstructure/ui/attachment/attachment-uploader.ts"],"names":[],"mappings":";;;AAAA,uDAAqD;AAErD,MAAa,qBAAsB,SAAQ,mCAAiB;IAE1D,YAAY,KAAmB;QAC7B,KAAK,CAAC,KAAK,CAAC,CAAA;QACZ,IAAI,GAAQ,CAAA;QACZ,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC7B,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;SACxB;aAAM;YACL,GAAG,GAAG,KAAK,CAAA;SACZ;QAED,IAAI,CAAC,GAAG,EAAE;YACR,OAAM;SACP;QAED,MAAM,IAAI,GAAG,eAAe,CAAA;QAC5B,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;YAC/B,IAAI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;gBACtB,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,CAAA;aACrB;QACH,CAAC,CAAC,CAAA;IACJ,CAAC;CACF;AAtBD,sDAsBC"}